From cd90b1025afd9a5ca67d428adb05cec74587e151 Mon Sep 17 00:00:00 2001
From: Jocelyne <jocelyne@dhcp-172-21-44-199.wlan.uni-hamburg.de.local>
Date: Thu, 16 Nov 2023 16:26:02 +0100
Subject: [PATCH] preprocessing of dataset GSE48350

---
 .../AD-GSE48350-preprocess.ipynb              | 31379 +++++++++++++
 ...-GSE48350.RMA.maxRowVariance.log2exprs.tsv | 18167 ++++++++
 preprocessing-of-data/AD-GSE48350.pData.tsv   |   254 +
 .../AD_GSE48350_GPL570probe_mapping.tsv       | 37299 ++++++++++++++++
 4 files changed, 87099 insertions(+)
 create mode 100644 preprocessing-of-data/AD-GSE48350-preprocess.ipynb
 create mode 100644 preprocessing-of-data/AD-GSE48350.RMA.maxRowVariance.log2exprs.tsv
 create mode 100644 preprocessing-of-data/AD-GSE48350.pData.tsv
 create mode 100644 preprocessing-of-data/AD_GSE48350_GPL570probe_mapping.tsv

diff --git a/preprocessing-of-data/AD-GSE48350-preprocess.ipynb b/preprocessing-of-data/AD-GSE48350-preprocess.ipynb
new file mode 100644
index 0000000..2b6546e
--- /dev/null
+++ b/preprocessing-of-data/AD-GSE48350-preprocess.ipynb
@@ -0,0 +1,31379 @@
+{
+ "cells": [
+  {
+   "cell_type": "code",
+   "execution_count": 2,
+   "metadata": {
+    "vscode": {
+     "languageId": "r"
+    }
+   },
+   "outputs": [],
+   "source": [
+    "myboxplot <- function(eset, title){\n",
+    "    options(repr.plot.width = 10, repr.plot.height = 4)\n",
+    "    title <- paste0(title, '/', annotation(eset))\n",
+    "    boxplot(exprs(eset), boxwex = 0.6, notch = T, main = title, outline = FALSE, las =2)\n",
+    "}\n",
+    "\n",
+    "myhist <- function(eset, title = \"Histogram\", xlabel = \"RMAlog2\"){\n",
+    "    i = 1\n",
+    "    plot(density((exprs(eset)[,i]), na.rm = T), main = title, xlab = xlabel)\n",
+    "    for(i in 2:dim(exprs(eset))[2]){\n",
+    "        lines(density((exprs(eset)[,i]), na.rm = T),)\n",
+    "    }\n",
+    "}\n",
+    "\n",
+    "getSnames <- function(sname, ext =\".CEL.gz\"){\n",
+    "    sname <- sub(ext, \"\", sname)\n",
+    "    sname <- unlist(sname)[1]\n",
+    "    return(sname)\n",
+    "}"
+   ]
+  },
+  {
+   "cell_type": "code",
+   "execution_count": 3,
+   "metadata": {
+    "vscode": {
+     "languageId": "r"
+    }
+   },
+   "outputs": [
+    {
+     "name": "stderr",
+     "output_type": "stream",
+     "text": [
+      "Warning message:\n",
+      "\"package 'biomaRt' was built under R version 4.1.2\"\n"
+     ]
+    }
+   ],
+   "source": [
+    "library(biomaRt)"
+   ]
+  },
+  {
+   "cell_type": "code",
+   "execution_count": 4,
+   "metadata": {
+    "vscode": {
+     "languageId": "r"
+    }
+   },
+   "outputs": [
+    {
+     "data": {
+      "text/html": [
+       "<table class=\"dataframe\">\n",
+       "<caption>A data.frame: 4 x 2</caption>\n",
+       "<thead>\n",
+       "\t<tr><th scope=col>biomart</th><th scope=col>version</th></tr>\n",
+       "\t<tr><th scope=col>&lt;chr&gt;</th><th scope=col>&lt;chr&gt;</th></tr>\n",
+       "</thead>\n",
+       "<tbody>\n",
+       "\t<tr><td>genes        </td><td>Ensembl Genes 110     </td></tr>\n",
+       "\t<tr><td>mouse_strains</td><td>Mouse strains 110     </td></tr>\n",
+       "\t<tr><td>snps         </td><td>Ensembl Variation 110 </td></tr>\n",
+       "\t<tr><td>regulation   </td><td>Ensembl Regulation 110</td></tr>\n",
+       "</tbody>\n",
+       "</table>\n"
+      ],
+      "text/latex": [
+       "A data.frame: 4 x 2\n",
+       "\\begin{tabular}{ll}\n",
+       " biomart & version\\\\\n",
+       " <chr> & <chr>\\\\\n",
+       "\\hline\n",
+       "\t genes         & Ensembl Genes 110     \\\\\n",
+       "\t mouse\\_strains & Mouse strains 110     \\\\\n",
+       "\t snps          & Ensembl Variation 110 \\\\\n",
+       "\t regulation    & Ensembl Regulation 110\\\\\n",
+       "\\end{tabular}\n"
+      ],
+      "text/markdown": [
+       "\n",
+       "A data.frame: 4 x 2\n",
+       "\n",
+       "| biomart &lt;chr&gt; | version &lt;chr&gt; |\n",
+       "|---|---|\n",
+       "| genes         | Ensembl Genes 110      |\n",
+       "| mouse_strains | Mouse strains 110      |\n",
+       "| snps          | Ensembl Variation 110  |\n",
+       "| regulation    | Ensembl Regulation 110 |\n",
+       "\n"
+      ],
+      "text/plain": [
+       "  biomart       version               \n",
+       "1 genes         Ensembl Genes 110     \n",
+       "2 mouse_strains Mouse strains 110     \n",
+       "3 snps          Ensembl Variation 110 \n",
+       "4 regulation    Ensembl Regulation 110"
+      ]
+     },
+     "metadata": {},
+     "output_type": "display_data"
+    }
+   ],
+   "source": [
+    "listEnsembl()"
+   ]
+  },
+  {
+   "cell_type": "code",
+   "execution_count": 5,
+   "metadata": {
+    "vscode": {
+     "languageId": "r"
+    }
+   },
+   "outputs": [
+    {
+     "name": "stderr",
+     "output_type": "stream",
+     "text": [
+      "Warning message:\n",
+      "\"package 'GEOquery' was built under R version 4.1.2\"\n"
+     ]
+    },
+    {
+     "name": "stderr",
+     "output_type": "stream",
+     "text": [
+      "Loading required package: Biobase\n",
+      "\n",
+      "Warning message:\n",
+      "\"package 'Biobase' was built under R version 4.1.1\"\n",
+      "Loading required package: BiocGenerics\n",
+      "\n",
+      "Warning message:\n",
+      "\"package 'BiocGenerics' was built under R version 4.1.1\"\n",
+      "\n",
+      "Attaching package: 'BiocGenerics'\n",
+      "\n",
+      "\n",
+      "The following objects are masked from 'package:stats':\n",
+      "\n",
+      "    IQR, mad, sd, var, xtabs\n",
+      "\n",
+      "\n",
+      "The following objects are masked from 'package:base':\n",
+      "\n",
+      "    Filter, Find, Map, Position, Reduce, anyDuplicated, append,\n",
+      "    as.data.frame, basename, cbind, colnames, dirname, do.call,\n",
+      "    duplicated, eval, evalq, get, grep, grepl, intersect, is.unsorted,\n",
+      "    lapply, mapply, match, mget, order, paste, pmax, pmax.int, pmin,\n",
+      "    pmin.int, rank, rbind, rownames, sapply, setdiff, sort, table,\n",
+      "    tapply, union, unique, unsplit, which.max, which.min\n",
+      "\n",
+      "\n",
+      "Welcome to Bioconductor\n",
+      "\n",
+      "    Vignettes contain introductory material; view with\n",
+      "    'browseVignettes()'. To cite Bioconductor, see\n",
+      "    'citation(\"Biobase\")', and for packages 'citation(\"pkgname\")'.\n",
+      "\n",
+      "\n",
+      "Setting options('download.file.method.GEOquery'='auto')\n",
+      "\n",
+      "Setting options('GEOquery.inmemory.gpl'=FALSE)\n",
+      "\n"
+     ]
+    }
+   ],
+   "source": [
+    "library(GEOquery)"
+   ]
+  },
+  {
+   "cell_type": "code",
+   "execution_count": 6,
+   "metadata": {
+    "vscode": {
+     "languageId": "r"
+    }
+   },
+   "outputs": [
+    {
+     "name": "stderr",
+     "output_type": "stream",
+     "text": [
+      "Found 1 file(s)\n",
+      "\n",
+      "GSE48350_series_matrix.txt.gz\n",
+      "\n"
+     ]
+    }
+   ],
+   "source": [
+    "gse <- getGEO(\n",
+    "    GEO = \"GSE48350\"\n",
+    ")"
+   ]
+  },
+  {
+   "cell_type": "code",
+   "execution_count": 7,
+   "metadata": {
+    "vscode": {
+     "languageId": "r"
+    }
+   },
+   "outputs": [
+    {
+     "data": {
+      "text/html": [
+       "<table class=\"dataframe\">\n",
+       "<caption>A data.frame: 253 x 50</caption>\n",
+       "<thead>\n",
+       "\t<tr><th></th><th scope=col>title</th><th scope=col>geo_accession</th><th scope=col>status</th><th scope=col>submission_date</th><th scope=col>last_update_date</th><th scope=col>type</th><th scope=col>channel_count</th><th scope=col>source_name_ch1</th><th scope=col>organism_ch1</th><th scope=col>characteristics_ch1</th><th scope=col>...</th><th scope=col>relation</th><th scope=col>relation.1</th><th scope=col>relation.2</th><th scope=col>age (yrs):ch1</th><th scope=col>apoe genotype:ch1</th><th scope=col>braak stage:ch1</th><th scope=col>brain region:ch1</th><th scope=col>gender:ch1</th><th scope=col>individual:ch1</th><th scope=col>mmse:ch1</th></tr>\n",
+       "\t<tr><th></th><th scope=col>&lt;chr&gt;</th><th scope=col>&lt;chr&gt;</th><th scope=col>&lt;chr&gt;</th><th scope=col>&lt;chr&gt;</th><th scope=col>&lt;chr&gt;</th><th scope=col>&lt;chr&gt;</th><th scope=col>&lt;chr&gt;</th><th scope=col>&lt;chr&gt;</th><th scope=col>&lt;chr&gt;</th><th scope=col>&lt;chr&gt;</th><th scope=col>...</th><th scope=col>&lt;chr&gt;</th><th scope=col>&lt;chr&gt;</th><th scope=col>&lt;chr&gt;</th><th scope=col>&lt;chr&gt;</th><th scope=col>&lt;chr&gt;</th><th scope=col>&lt;chr&gt;</th><th scope=col>&lt;chr&gt;</th><th scope=col>&lt;chr&gt;</th><th scope=col>&lt;chr&gt;</th><th scope=col>&lt;chr&gt;</th></tr>\n",
+       "</thead>\n",
+       "<tbody>\n",
+       "\t<tr><th scope=row>GSM300166</th><td>PostcentralGyrus_female_91yrs_indiv10    </td><td>GSM300166</td><td>Public on Oct 09 2008</td><td>Jun 25 2008</td><td>Jun 26 2019</td><td>RNA</td><td>1</td><td>brain, postcentral gyrus, female, 91 years     </td><td>Homo sapiens</td><td>individual: 10, C   </td><td>...</td><td>Reanalyzed by: GSE119087</td><td>Reanalyzed by: GSE133349</td><td></td><td>91</td><td>NA</td><td>NA</td><td>postcentral gyrus     </td><td>female</td><td>10, C   </td><td>NA</td></tr>\n",
+       "\t<tr><th scope=row>GSM300167</th><td>SuperiorFrontalGyrus_female_91yrs_indiv10</td><td>GSM300167</td><td>Public on Oct 09 2008</td><td>Jun 25 2008</td><td>Jun 26 2019</td><td>RNA</td><td>1</td><td>brain, superior frontal gyrus, female, 91 years</td><td>Homo sapiens</td><td>individual: 10, C   </td><td>...</td><td>Reanalyzed by: GSE119087</td><td>Reanalyzed by: GSE133349</td><td></td><td>91</td><td>NA</td><td>NA</td><td>superior frontal gyrus</td><td>female</td><td>10, C   </td><td>NA</td></tr>\n",
+       "\t<tr><th scope=row>GSM300168</th><td>Hippocampus_female_96yrs_indiv105        </td><td>GSM300168</td><td>Public on Oct 09 2008</td><td>Jun 25 2008</td><td>Jun 26 2019</td><td>RNA</td><td>1</td><td>brain, hippocampus, female, 96 years           </td><td>Homo sapiens</td><td>individual: 105, C  </td><td>...</td><td>Reanalyzed by: GSE119087</td><td>Reanalyzed by: GSE133349</td><td></td><td>96</td><td>NA</td><td>NA</td><td>hippocampus           </td><td>female</td><td>105, C  </td><td>NA</td></tr>\n",
+       "\t<tr><th scope=row>GSM300169</th><td>Hippocampus_male_82yrs_indiv106          </td><td>GSM300169</td><td>Public on Oct 09 2008</td><td>Jun 25 2008</td><td>Jun 26 2019</td><td>RNA</td><td>1</td><td>brain, hippocampus, male, 82 years             </td><td>Homo sapiens</td><td>individual: 106, C  </td><td>...</td><td>Reanalyzed by: GSE119087</td><td>Reanalyzed by: GSE133349</td><td></td><td>82</td><td>NA</td><td>NA</td><td>hippocampus           </td><td>male  </td><td>106, C  </td><td>NA</td></tr>\n",
+       "\t<tr><th scope=row>GSM300170</th><td>Hippocampus_male_84yrs_indiv108          </td><td>GSM300170</td><td>Public on Oct 09 2008</td><td>Jun 25 2008</td><td>Jun 26 2019</td><td>RNA</td><td>1</td><td>brain, hippocampus, male, 84 years             </td><td>Homo sapiens</td><td>individual: 108, C  </td><td>...</td><td>Reanalyzed by: GSE119087</td><td>Reanalyzed by: GSE133349</td><td></td><td>84</td><td>NA</td><td>NA</td><td>hippocampus           </td><td>male  </td><td>108, C  </td><td>NA</td></tr>\n",
+       "\t<tr><th scope=row>GSM300171</th><td>Hippocampus_female_87yrs_indiv109        </td><td>GSM300171</td><td>Public on Oct 09 2008</td><td>Jun 25 2008</td><td>Jun 26 2019</td><td>RNA</td><td>1</td><td>brain, hippocampus, female, 87 years           </td><td>Homo sapiens</td><td>individual: 109, C  </td><td>...</td><td>Reanalyzed by: GSE119087</td><td>Reanalyzed by: GSE133349</td><td></td><td>87</td><td>NA</td><td>NA</td><td>hippocampus           </td><td>female</td><td>109, C  </td><td>NA</td></tr>\n",
+       "\t<tr><th scope=row>GSM300172</th><td>Hippocampus_female_82yrs_indiv111        </td><td>GSM300172</td><td>Public on Oct 09 2008</td><td>Jun 25 2008</td><td>Jun 26 2019</td><td>RNA</td><td>1</td><td>brain, hippocampus, female, 82 years           </td><td>Homo sapiens</td><td>individual: 111, C  </td><td>...</td><td>Reanalyzed by: GSE119087</td><td>Reanalyzed by: GSE133349</td><td></td><td>82</td><td>NA</td><td>NA</td><td>hippocampus           </td><td>female</td><td>111, C  </td><td>NA</td></tr>\n",
+       "\t<tr><th scope=row>GSM300173</th><td>EntorhinalCortex_male_45yrs_indiv12      </td><td>GSM300173</td><td>Public on Oct 09 2008</td><td>Jun 25 2008</td><td>Jun 26 2019</td><td>RNA</td><td>1</td><td>brain, entorhinal cortex, male, 45 years       </td><td>Homo sapiens</td><td>individual: 12, AA  </td><td>...</td><td>Reanalyzed by: GSE119087</td><td>Reanalyzed by: GSE133349</td><td></td><td>45</td><td>NA</td><td>NA</td><td>entorhinal cortex     </td><td>male  </td><td>12, AA  </td><td>NA</td></tr>\n",
+       "\t<tr><th scope=row>GSM300174</th><td>Hippocampus_male_45yrs_indiv12           </td><td>GSM300174</td><td>Public on Oct 09 2008</td><td>Jun 25 2008</td><td>Jun 26 2019</td><td>RNA</td><td>1</td><td>brain, hippocampus, male, 45 years             </td><td>Homo sapiens</td><td>individual: 12, AA  </td><td>...</td><td>Reanalyzed by: GSE119087</td><td>Reanalyzed by: GSE133349</td><td></td><td>45</td><td>NA</td><td>NA</td><td>hippocampus           </td><td>male  </td><td>12, AA  </td><td>NA</td></tr>\n",
+       "\t<tr><th scope=row>GSM300175</th><td>PostcentralGyrus_male_45yrs_indiv12      </td><td>GSM300175</td><td>Public on Oct 09 2008</td><td>Jun 25 2008</td><td>Jun 26 2019</td><td>RNA</td><td>1</td><td>brain, postcentral gyrus, male, 45 years       </td><td>Homo sapiens</td><td>individual: 12, AA  </td><td>...</td><td>Reanalyzed by: GSE119087</td><td>Reanalyzed by: GSE133349</td><td></td><td>45</td><td>NA</td><td>NA</td><td>postcentral gyrus     </td><td>male  </td><td>12, AA  </td><td>NA</td></tr>\n",
+       "\t<tr><th scope=row>GSM300176</th><td>SuperiorFrontalGyrus_male_45yrs_indiv12  </td><td>GSM300176</td><td>Public on Oct 09 2008</td><td>Jun 25 2008</td><td>Jun 26 2019</td><td>RNA</td><td>1</td><td>brain, superior frontal gyrus, male, 45 years  </td><td>Homo sapiens</td><td>individual: 12, AA  </td><td>...</td><td>Reanalyzed by: GSE119087</td><td>Reanalyzed by: GSE133349</td><td></td><td>45</td><td>NA</td><td>NA</td><td>superior frontal gyrus</td><td>male  </td><td>12, AA  </td><td>NA</td></tr>\n",
+       "\t<tr><th scope=row>GSM300177</th><td>EntorhinalCortex_male_95yrs_indiv14      </td><td>GSM300177</td><td>Public on Oct 09 2008</td><td>Jun 25 2008</td><td>Jun 26 2019</td><td>RNA</td><td>1</td><td>brain, entorhinal cortex, male, 95 years       </td><td>Homo sapiens</td><td>individual: 14, C   </td><td>...</td><td>Reanalyzed by: GSE119087</td><td>Reanalyzed by: GSE133349</td><td></td><td>95</td><td>NA</td><td>NA</td><td>entorhinal cortex     </td><td>male  </td><td>14, C   </td><td>NA</td></tr>\n",
+       "\t<tr><th scope=row>GSM300178</th><td>Hippocampus_male_95yrs_indiv14           </td><td>GSM300178</td><td>Public on Oct 09 2008</td><td>Jun 25 2008</td><td>Jun 26 2019</td><td>RNA</td><td>1</td><td>brain, hippocampus, male, 95 years             </td><td>Homo sapiens</td><td>individual: 14, C   </td><td>...</td><td>Reanalyzed by: GSE119087</td><td>Reanalyzed by: GSE133349</td><td></td><td>95</td><td>NA</td><td>NA</td><td>hippocampus           </td><td>male  </td><td>14, C   </td><td>NA</td></tr>\n",
+       "\t<tr><th scope=row>GSM300179</th><td>PostcentralGyrus_male_95yrs_indiv14      </td><td>GSM300179</td><td>Public on Oct 09 2008</td><td>Jun 25 2008</td><td>Jun 26 2019</td><td>RNA</td><td>1</td><td>brain, postcentral gyrus, male, 95 years       </td><td>Homo sapiens</td><td>individual: 14, C   </td><td>...</td><td>Reanalyzed by: GSE119087</td><td>Reanalyzed by: GSE133349</td><td></td><td>95</td><td>NA</td><td>NA</td><td>postcentral gyrus     </td><td>male  </td><td>14, C   </td><td>NA</td></tr>\n",
+       "\t<tr><th scope=row>GSM300180</th><td>SuperiorFrontalGyrus_male_95yrs_indiv14  </td><td>GSM300180</td><td>Public on Oct 09 2008</td><td>Jun 25 2008</td><td>Jun 26 2019</td><td>RNA</td><td>1</td><td>brain, superior frontal gyrus, male, 95 years  </td><td>Homo sapiens</td><td>individual: 14, C   </td><td>...</td><td>Reanalyzed by: GSE119087</td><td>Reanalyzed by: GSE133349</td><td></td><td>95</td><td>NA</td><td>NA</td><td>superior frontal gyrus</td><td>male  </td><td>14, C   </td><td>NA</td></tr>\n",
+       "\t<tr><th scope=row>GSM300181</th><td>EntorhinalCortex_male_80yrs_indiv15      </td><td>GSM300181</td><td>Public on Oct 09 2008</td><td>Jun 25 2008</td><td>Jun 26 2019</td><td>RNA</td><td>1</td><td>brain, entorhinal cortex, male, 80 years       </td><td>Homo sapiens</td><td>individual: 15, C   </td><td>...</td><td>Reanalyzed by: GSE119087</td><td>Reanalyzed by: GSE133349</td><td></td><td>80</td><td>NA</td><td>NA</td><td>entorhinal cortex     </td><td>male  </td><td>15, C   </td><td>NA</td></tr>\n",
+       "\t<tr><th scope=row>GSM300182</th><td>Hippocampus_male_80yrs_indiv15           </td><td>GSM300182</td><td>Public on Oct 09 2008</td><td>Jun 25 2008</td><td>Jun 26 2019</td><td>RNA</td><td>1</td><td>brain, hippocampus, male, 80 years             </td><td>Homo sapiens</td><td>individual: 15, C   </td><td>...</td><td>Reanalyzed by: GSE119087</td><td>Reanalyzed by: GSE133349</td><td></td><td>80</td><td>NA</td><td>NA</td><td>hippocampus           </td><td>male  </td><td>15, C   </td><td>NA</td></tr>\n",
+       "\t<tr><th scope=row>GSM300183</th><td>PostcentralGyrus_male_80yrs_indiv15      </td><td>GSM300183</td><td>Public on Oct 09 2008</td><td>Jun 25 2008</td><td>Jun 26 2019</td><td>RNA</td><td>1</td><td>brain, postcentral gyrus, male, 80 years       </td><td>Homo sapiens</td><td>individual: 15, C   </td><td>...</td><td>Reanalyzed by: GSE119087</td><td>Reanalyzed by: GSE133349</td><td></td><td>80</td><td>NA</td><td>NA</td><td>postcentral gyrus     </td><td>male  </td><td>15, C   </td><td>NA</td></tr>\n",
+       "\t<tr><th scope=row>GSM300185</th><td>Hippocampus_male_91yrs_indiv16-07        </td><td>GSM300185</td><td>Public on Oct 09 2008</td><td>Jun 25 2008</td><td>Jun 26 2019</td><td>RNA</td><td>1</td><td>brain, hippocampus, male, 91 years             </td><td>Homo sapiens</td><td>individual: 16-07, C</td><td>...</td><td>Reanalyzed by: GSE119087</td><td>Reanalyzed by: GSE133349</td><td></td><td>91</td><td>NA</td><td>NA</td><td>hippocampus           </td><td>male  </td><td>16-07, C</td><td>NA</td></tr>\n",
+       "\t<tr><th scope=row>GSM300186</th><td>EntorhinalCortex_female_45yrs_indiv17    </td><td>GSM300186</td><td>Public on Oct 09 2008</td><td>Jun 25 2008</td><td>Jun 26 2019</td><td>RNA</td><td>1</td><td>brain, entorhinal cortex, female, 45 years     </td><td>Homo sapiens</td><td>individual: 17, C   </td><td>...</td><td>Reanalyzed by: GSE119087</td><td>Reanalyzed by: GSE133349</td><td></td><td>45</td><td>NA</td><td>NA</td><td>entorhinal cortex     </td><td>female</td><td>17, C   </td><td>NA</td></tr>\n",
+       "\t<tr><th scope=row>GSM300187</th><td>Hippocampus_female_45yrs_indiv17         </td><td>GSM300187</td><td>Public on Oct 09 2008</td><td>Jun 25 2008</td><td>Jun 26 2019</td><td>RNA</td><td>1</td><td>brain, hippocampus, female, 45 years           </td><td>Homo sapiens</td><td>individual: 17, C   </td><td>...</td><td>Reanalyzed by: GSE119087</td><td>Reanalyzed by: GSE133349</td><td></td><td>45</td><td>NA</td><td>NA</td><td>hippocampus           </td><td>female</td><td>17, C   </td><td>NA</td></tr>\n",
+       "\t<tr><th scope=row>GSM300188</th><td>SuperiorFrontalGyrus_female_45yrs_indiv17</td><td>GSM300188</td><td>Public on Oct 09 2008</td><td>Jun 25 2008</td><td>Jun 26 2019</td><td>RNA</td><td>1</td><td>brain, superior frontal gyrus, female, 45 years</td><td>Homo sapiens</td><td>individual: 17, C   </td><td>...</td><td>Reanalyzed by: GSE119087</td><td>Reanalyzed by: GSE133349</td><td></td><td>45</td><td>NA</td><td>NA</td><td>superior frontal gyrus</td><td>female</td><td>17, C   </td><td>NA</td></tr>\n",
+       "\t<tr><th scope=row>GSM300189</th><td>EntorhinalCortex_female_74yrs_indiv18    </td><td>GSM300189</td><td>Public on Oct 09 2008</td><td>Jun 25 2008</td><td>Jun 26 2019</td><td>RNA</td><td>1</td><td>brain, entorhinal cortex, female, 74 years     </td><td>Homo sapiens</td><td>individual: 18, C   </td><td>...</td><td>Reanalyzed by: GSE119087</td><td>Reanalyzed by: GSE133349</td><td></td><td>74</td><td>NA</td><td>NA</td><td>entorhinal cortex     </td><td>female</td><td>18, C   </td><td>NA</td></tr>\n",
+       "\t<tr><th scope=row>GSM300190</th><td>Hippocampus_female_74yrs_indiv18         </td><td>GSM300190</td><td>Public on Oct 09 2008</td><td>Jun 25 2008</td><td>Jun 26 2019</td><td>RNA</td><td>1</td><td>brain, hippocampus, female, 74 years           </td><td>Homo sapiens</td><td>individual: 18, C   </td><td>...</td><td>Reanalyzed by: GSE119087</td><td>Reanalyzed by: GSE133349</td><td></td><td>74</td><td>NA</td><td>NA</td><td>hippocampus           </td><td>female</td><td>18, C   </td><td>NA</td></tr>\n",
+       "\t<tr><th scope=row>GSM300191</th><td>SuperiorFrontalGyrus_female_74yrs_indiv18</td><td>GSM300191</td><td>Public on Oct 09 2008</td><td>Jun 25 2008</td><td>Jun 26 2019</td><td>RNA</td><td>1</td><td>brain, superior frontal gyrus, female, 74 years</td><td>Homo sapiens</td><td>individual: 18, C   </td><td>...</td><td>Reanalyzed by: GSE119087</td><td>Reanalyzed by: GSE133349</td><td></td><td>74</td><td>NA</td><td>NA</td><td>superior frontal gyrus</td><td>female</td><td>18, C   </td><td>NA</td></tr>\n",
+       "\t<tr><th scope=row>GSM300192</th><td>EntorhinalCortex_female_99yrs_indiv2     </td><td>GSM300192</td><td>Public on Oct 09 2008</td><td>Jun 25 2008</td><td>Jun 26 2019</td><td>RNA</td><td>1</td><td>brain, entorhinal cortex, female, 99 years     </td><td>Homo sapiens</td><td>individual: 2, C    </td><td>...</td><td>Reanalyzed by: GSE119087</td><td>Reanalyzed by: GSE133349</td><td></td><td>99</td><td>NA</td><td>NA</td><td>entorhinal cortex     </td><td>female</td><td>2, C    </td><td>NA</td></tr>\n",
+       "\t<tr><th scope=row>GSM300193</th><td>Hippocampus_female_99yrs_indiv2          </td><td>GSM300193</td><td>Public on Oct 09 2008</td><td>Jun 25 2008</td><td>Jun 26 2019</td><td>RNA</td><td>1</td><td>brain, hippocampus, female, 99 years           </td><td>Homo sapiens</td><td>individual: 2, C    </td><td>...</td><td>Reanalyzed by: GSE119087</td><td>Reanalyzed by: GSE133349</td><td></td><td>99</td><td>NA</td><td>NA</td><td>hippocampus           </td><td>female</td><td>2, C    </td><td>NA</td></tr>\n",
+       "\t<tr><th scope=row>GSM300194</th><td>PostcentralGyrus_female_99yrs_indiv2     </td><td>GSM300194</td><td>Public on Oct 09 2008</td><td>Jun 25 2008</td><td>Jun 26 2019</td><td>RNA</td><td>1</td><td>brain, postcentral gyrus, female, 99 years     </td><td>Homo sapiens</td><td>individual: 2, C    </td><td>...</td><td>Reanalyzed by: GSE119087</td><td>Reanalyzed by: GSE133349</td><td></td><td>99</td><td>NA</td><td>NA</td><td>postcentral gyrus     </td><td>female</td><td>2, C    </td><td>NA</td></tr>\n",
+       "\t<tr><th scope=row>GSM300195</th><td>SuperiorFrontalGyrus_female_99yrs_indiv2 </td><td>GSM300195</td><td>Public on Oct 09 2008</td><td>Jun 25 2008</td><td>Jun 26 2019</td><td>RNA</td><td>1</td><td>brain, superior frontal gyrus, female, 99 years</td><td>Homo sapiens</td><td>individual: 2, C    </td><td>...</td><td>Reanalyzed by: GSE119087</td><td>Reanalyzed by: GSE133349</td><td></td><td>99</td><td>NA</td><td>NA</td><td>superior frontal gyrus</td><td>female</td><td>2, C    </td><td>NA</td></tr>\n",
+       "\t<tr><th scope=row>GSM300196</th><td>EntorhinalCortex_female_74yrs_indiv21    </td><td>GSM300196</td><td>Public on Oct 09 2008</td><td>Jun 25 2008</td><td>Jun 26 2019</td><td>RNA</td><td>1</td><td>brain, entorhinal cortex, female, 74 years     </td><td>Homo sapiens</td><td>individual: 21, C   </td><td>...</td><td>Reanalyzed by: GSE119087</td><td>Reanalyzed by: GSE133349</td><td></td><td>74</td><td>NA</td><td>NA</td><td>entorhinal cortex     </td><td>female</td><td>21, C   </td><td>NA</td></tr>\n",
+       "\t<tr><th scope=row>...</th><td>...</td><td>...</td><td>...</td><td>...</td><td>...</td><td>...</td><td>...</td><td>...</td><td>...</td><td>...</td><td></td><td>...</td><td>...</td><td>...</td><td>...</td><td>...</td><td>...</td><td>...</td><td>...</td><td>...</td><td>...</td></tr>\n",
+       "\t<tr><th scope=row>GSM1176246</th><td>post-central gyrus_male_76_AD_69      </td><td>GSM1176246</td><td>Public on Apr 21 2014</td><td>Jun 27 2013</td><td>Jun 26 2019</td><td>RNA</td><td>1</td><td>post-central gyrus_male_AD      </td><td>Homo sapiens</td><td>gender: male  </td><td>...</td><td>Reanalyzed by: GSE133349</td><td></td><td></td><td>76</td><td>4,4</td><td>III    </td><td>post-central gyrus    </td><td>male  </td><td>NA</td><td>no info</td></tr>\n",
+       "\t<tr><th scope=row>GSM1176247</th><td>post-central gyrus_male_79_AD_7       </td><td>GSM1176247</td><td>Public on Apr 21 2014</td><td>Jun 27 2013</td><td>Jun 26 2019</td><td>RNA</td><td>1</td><td>post-central gyrus_male_AD      </td><td>Homo sapiens</td><td>gender: male  </td><td>...</td><td>Reanalyzed by: GSE133349</td><td></td><td></td><td>79</td><td>3,4</td><td>VI     </td><td>post-central gyrus    </td><td>male  </td><td>NA</td><td>6      </td></tr>\n",
+       "\t<tr><th scope=row>GSM1176248</th><td>post-central gyrus_male_85_AD_51      </td><td>GSM1176248</td><td>Public on Apr 21 2014</td><td>Jun 27 2013</td><td>Jun 26 2019</td><td>RNA</td><td>1</td><td>post-central gyrus_male_AD      </td><td>Homo sapiens</td><td>gender: male  </td><td>...</td><td>Reanalyzed by: GSE133349</td><td></td><td></td><td>85</td><td>3,3</td><td>III    </td><td>post-central gyrus    </td><td>male  </td><td>NA</td><td>22     </td></tr>\n",
+       "\t<tr><th scope=row>GSM1176249</th><td>post-central gyrus_male_85_AD_74      </td><td>GSM1176249</td><td>Public on Apr 21 2014</td><td>Jun 27 2013</td><td>Jun 26 2019</td><td>RNA</td><td>1</td><td>post-central gyrus_male_AD      </td><td>Homo sapiens</td><td>gender: male  </td><td>...</td><td>Reanalyzed by: GSE133349</td><td></td><td></td><td>85</td><td>3,4</td><td>II     </td><td>post-central gyrus    </td><td>male  </td><td>NA</td><td>no info</td></tr>\n",
+       "\t<tr><th scope=row>GSM1176250</th><td>post-central gyrus_male_86_AD_92      </td><td>GSM1176250</td><td>Public on Apr 21 2014</td><td>Jun 27 2013</td><td>Jun 26 2019</td><td>RNA</td><td>1</td><td>post-central gyrus_male_AD      </td><td>Homo sapiens</td><td>gender: male  </td><td>...</td><td>Reanalyzed by: GSE133349</td><td></td><td></td><td>86</td><td>3,3</td><td>IV     </td><td>post-central gyrus    </td><td>male  </td><td>NA</td><td>19     </td></tr>\n",
+       "\t<tr><th scope=row>GSM1176251</th><td>post-central gyrus_male_87_AD_19      </td><td>GSM1176251</td><td>Public on Apr 21 2014</td><td>Jun 27 2013</td><td>Jun 26 2019</td><td>RNA</td><td>1</td><td>post-central gyrus_male_AD      </td><td>Homo sapiens</td><td>gender: male  </td><td>...</td><td>Reanalyzed by: GSE133349</td><td></td><td></td><td>87</td><td>3,4</td><td>V      </td><td>post-central gyrus    </td><td>male  </td><td>NA</td><td>12     </td></tr>\n",
+       "\t<tr><th scope=row>GSM1176252</th><td>post-central gyrus_male_94_AD_44      </td><td>GSM1176252</td><td>Public on Apr 21 2014</td><td>Jun 27 2013</td><td>Jun 26 2019</td><td>RNA</td><td>1</td><td>post-central gyrus_male_AD      </td><td>Homo sapiens</td><td>gender: male  </td><td>...</td><td>Reanalyzed by: GSE133349</td><td></td><td></td><td>94</td><td>3,4</td><td>IV     </td><td>post-central gyrus    </td><td>male  </td><td>NA</td><td>18     </td></tr>\n",
+       "\t<tr><th scope=row>GSM1176253</th><td>post-central gyrus_male_94_AD_5       </td><td>GSM1176253</td><td>Public on Apr 21 2014</td><td>Jun 27 2013</td><td>Jun 26 2019</td><td>RNA</td><td>1</td><td>post-central gyrus_male_AD      </td><td>Homo sapiens</td><td>gender: male  </td><td>...</td><td>Reanalyzed by: GSE133349</td><td></td><td></td><td>94</td><td>3,3</td><td>VI     </td><td>post-central gyrus    </td><td>male  </td><td>NA</td><td>15     </td></tr>\n",
+       "\t<tr><th scope=row>GSM1176254</th><td>post-central gyrus_male_94_AD_90      </td><td>GSM1176254</td><td>Public on Apr 21 2014</td><td>Jun 27 2013</td><td>Jun 26 2019</td><td>RNA</td><td>1</td><td>post-central gyrus_male_AD      </td><td>Homo sapiens</td><td>gender: male  </td><td>...</td><td>Reanalyzed by: GSE133349</td><td></td><td></td><td>94</td><td>3,3</td><td>IV     </td><td>post-central gyrus    </td><td>male  </td><td>NA</td><td>no info</td></tr>\n",
+       "\t<tr><th scope=row>GSM1176255</th><td>superior frontal gyrus_female_74_AD_37</td><td>GSM1176255</td><td>Public on Apr 21 2014</td><td>Jun 27 2013</td><td>Jun 26 2019</td><td>RNA</td><td>1</td><td>superior frontal gyrus_female_AD</td><td>Homo sapiens</td><td>gender: female</td><td>...</td><td>Reanalyzed by: GSE133349</td><td></td><td></td><td>74</td><td>2,4</td><td>VI     </td><td>superior frontal gyrus</td><td>female</td><td>NA</td><td>17     </td></tr>\n",
+       "\t<tr><th scope=row>GSM1176256</th><td>superior frontal gyrus_female_76_AD_48</td><td>GSM1176256</td><td>Public on Apr 21 2014</td><td>Jun 27 2013</td><td>Jun 26 2019</td><td>RNA</td><td>1</td><td>superior frontal gyrus_female_AD</td><td>Homo sapiens</td><td>gender: female</td><td>...</td><td>Reanalyzed by: GSE133349</td><td></td><td></td><td>76</td><td>3,3</td><td>V      </td><td>superior frontal gyrus</td><td>female</td><td>NA</td><td>3      </td></tr>\n",
+       "\t<tr><th scope=row>GSM1176257</th><td>superior frontal gyrus_female_86_AD_15</td><td>GSM1176257</td><td>Public on Apr 21 2014</td><td>Jun 27 2013</td><td>Jun 26 2019</td><td>RNA</td><td>1</td><td>superior frontal gyrus_female_AD</td><td>Homo sapiens</td><td>gender: female</td><td>...</td><td>Reanalyzed by: GSE133349</td><td></td><td></td><td>86</td><td>4,4</td><td>VI     </td><td>superior frontal gyrus</td><td>female</td><td>NA</td><td>9      </td></tr>\n",
+       "\t<tr><th scope=row>GSM1176258</th><td>superior frontal gyrus_female_82_AD_9 </td><td>GSM1176258</td><td>Public on Apr 21 2014</td><td>Jun 27 2013</td><td>Jun 26 2019</td><td>RNA</td><td>1</td><td>superior frontal gyrus_female_AD</td><td>Homo sapiens</td><td>gender: female</td><td>...</td><td>Reanalyzed by: GSE133349</td><td></td><td></td><td>82</td><td>3,4</td><td>VI     </td><td>superior frontal gyrus</td><td>female</td><td>NA</td><td>0      </td></tr>\n",
+       "\t<tr><th scope=row>GSM1176259</th><td>superior frontal gyrus_female_85_AD_24</td><td>GSM1176259</td><td>Public on Apr 21 2014</td><td>Jun 27 2013</td><td>Jun 26 2019</td><td>RNA</td><td>1</td><td>superior frontal gyrus_female_AD</td><td>Homo sapiens</td><td>gender: female</td><td>...</td><td>Reanalyzed by: GSE133349</td><td></td><td></td><td>85</td><td>3,4</td><td>IV     </td><td>superior frontal gyrus</td><td>female</td><td>NA</td><td>26     </td></tr>\n",
+       "\t<tr><th scope=row>GSM1176260</th><td>superior frontal gyrus_female_85_AD_57</td><td>GSM1176260</td><td>Public on Apr 21 2014</td><td>Jun 27 2013</td><td>Jun 26 2019</td><td>RNA</td><td>1</td><td>superior frontal gyrus_female_AD</td><td>Homo sapiens</td><td>gender: female</td><td>...</td><td>Reanalyzed by: GSE133349</td><td></td><td></td><td>85</td><td>3,3</td><td>V      </td><td>superior frontal gyrus</td><td>female</td><td>NA</td><td>no info</td></tr>\n",
+       "\t<tr><th scope=row>GSM1176261</th><td>superior frontal gyrus_female_88_AD_91</td><td>GSM1176261</td><td>Public on Apr 21 2014</td><td>Jun 27 2013</td><td>Jun 26 2019</td><td>RNA</td><td>1</td><td>superior frontal gyrus_female_AD</td><td>Homo sapiens</td><td>gender: female</td><td>...</td><td>Reanalyzed by: GSE133349</td><td></td><td></td><td>88</td><td>3,4</td><td>IV     </td><td>superior frontal gyrus</td><td>female</td><td>NA</td><td>27     </td></tr>\n",
+       "\t<tr><th scope=row>GSM1176262</th><td>superior frontal gyrus_female_90_AD_23</td><td>GSM1176262</td><td>Public on Apr 21 2014</td><td>Jun 27 2013</td><td>Jun 26 2019</td><td>RNA</td><td>1</td><td>superior frontal gyrus_female_AD</td><td>Homo sapiens</td><td>gender: female</td><td>...</td><td>Reanalyzed by: GSE133349</td><td></td><td></td><td>90</td><td>3,4</td><td>VI     </td><td>superior frontal gyrus</td><td>female</td><td>NA</td><td>12     </td></tr>\n",
+       "\t<tr><th scope=row>GSM1176263</th><td>superior frontal gyrus_female_90_AD_36</td><td>GSM1176263</td><td>Public on Apr 21 2014</td><td>Jun 27 2013</td><td>Jun 26 2019</td><td>RNA</td><td>1</td><td>superior frontal gyrus_female_AD</td><td>Homo sapiens</td><td>gender: female</td><td>...</td><td>Reanalyzed by: GSE133349</td><td></td><td></td><td>90</td><td>3,4</td><td>IV     </td><td>superior frontal gyrus</td><td>female</td><td>NA</td><td>17     </td></tr>\n",
+       "\t<tr><th scope=row>GSM1176264</th><td>superior frontal gyrus_female_90_AD_6 </td><td>GSM1176264</td><td>Public on Apr 21 2014</td><td>Jun 27 2013</td><td>Jun 26 2019</td><td>RNA</td><td>1</td><td>superior frontal gyrus_female_AD</td><td>Homo sapiens</td><td>gender: female</td><td>...</td><td>Reanalyzed by: GSE133349</td><td></td><td></td><td>90</td><td>3,4</td><td>V      </td><td>superior frontal gyrus</td><td>female</td><td>NA</td><td>20     </td></tr>\n",
+       "\t<tr><th scope=row>GSM1176265</th><td>superior frontal gyrus_female_90_AD_75</td><td>GSM1176265</td><td>Public on Apr 21 2014</td><td>Jun 27 2013</td><td>Jun 26 2019</td><td>RNA</td><td>1</td><td>superior frontal gyrus_female_AD</td><td>Homo sapiens</td><td>gender: female</td><td>...</td><td>Reanalyzed by: GSE133349</td><td></td><td></td><td>90</td><td>4,4</td><td>III    </td><td>superior frontal gyrus</td><td>female</td><td>NA</td><td>no info</td></tr>\n",
+       "\t<tr><th scope=row>GSM1176266</th><td>superior frontal gyrus_female_91_AD_11</td><td>GSM1176266</td><td>Public on Apr 21 2014</td><td>Jun 27 2013</td><td>Jun 26 2019</td><td>RNA</td><td>1</td><td>superior frontal gyrus_female_AD</td><td>Homo sapiens</td><td>gender: female</td><td>...</td><td>Reanalyzed by: GSE133349</td><td></td><td></td><td>91</td><td>4,4</td><td>V-VI   </td><td>superior frontal gyrus</td><td>female</td><td>NA</td><td>11     </td></tr>\n",
+       "\t<tr><th scope=row>GSM1176267</th><td>superior frontal gyrus_female_94_AD_70</td><td>GSM1176267</td><td>Public on Apr 21 2014</td><td>Jun 27 2013</td><td>Jun 26 2019</td><td>RNA</td><td>1</td><td>superior frontal gyrus_female_AD</td><td>Homo sapiens</td><td>gender: female</td><td>...</td><td>Reanalyzed by: GSE133349</td><td></td><td></td><td>94</td><td>3,3</td><td>I      </td><td>superior frontal gyrus</td><td>female</td><td>NA</td><td>no info</td></tr>\n",
+       "\t<tr><th scope=row>GSM1176268</th><td>superior frontal gyrus_female_95_AD_64</td><td>GSM1176268</td><td>Public on Apr 21 2014</td><td>Jun 27 2013</td><td>Jun 26 2019</td><td>RNA</td><td>1</td><td>superior frontal gyrus_female_AD</td><td>Homo sapiens</td><td>gender: female</td><td>...</td><td>Reanalyzed by: GSE133349</td><td></td><td></td><td>95</td><td>3,3</td><td>no info</td><td>superior frontal gyrus</td><td>female</td><td>NA</td><td>no info</td></tr>\n",
+       "\t<tr><th scope=row>GSM1176269</th><td>superior frontal gyrus_male_76_AD_33  </td><td>GSM1176269</td><td>Public on Apr 21 2014</td><td>Jun 27 2013</td><td>Jun 26 2019</td><td>RNA</td><td>1</td><td>superior frontal gyrus_male_AD  </td><td>Homo sapiens</td><td>gender: male  </td><td>...</td><td>Reanalyzed by: GSE133349</td><td></td><td></td><td>76</td><td>4,4</td><td>V      </td><td>superior frontal gyrus</td><td>male  </td><td>NA</td><td>0      </td></tr>\n",
+       "\t<tr><th scope=row>GSM1176270</th><td>superior frontal gyrus_male_85_AD_51  </td><td>GSM1176270</td><td>Public on Apr 21 2014</td><td>Jun 27 2013</td><td>Jun 26 2019</td><td>RNA</td><td>1</td><td>superior frontal gyrus_male_AD  </td><td>Homo sapiens</td><td>gender: male  </td><td>...</td><td>Reanalyzed by: GSE133349</td><td></td><td></td><td>85</td><td>3,3</td><td>III    </td><td>superior frontal gyrus</td><td>male  </td><td>NA</td><td>22     </td></tr>\n",
+       "\t<tr><th scope=row>GSM1176271</th><td>superior frontal gyrus_male_85_AD_74  </td><td>GSM1176271</td><td>Public on Apr 21 2014</td><td>Jun 27 2013</td><td>Jun 26 2019</td><td>RNA</td><td>1</td><td>superior frontal gyrus_male_AD  </td><td>Homo sapiens</td><td>gender: male  </td><td>...</td><td>Reanalyzed by: GSE133349</td><td></td><td></td><td>85</td><td>3,4</td><td>II     </td><td>superior frontal gyrus</td><td>male  </td><td>NA</td><td>no info</td></tr>\n",
+       "\t<tr><th scope=row>GSM1176272</th><td>superior frontal gyrus_male_86_AD_92  </td><td>GSM1176272</td><td>Public on Apr 21 2014</td><td>Jun 27 2013</td><td>Jun 26 2019</td><td>RNA</td><td>1</td><td>superior frontal gyrus_male_AD  </td><td>Homo sapiens</td><td>gender: male  </td><td>...</td><td>Reanalyzed by: GSE133349</td><td></td><td></td><td>86</td><td>3,3</td><td>IV     </td><td>superior frontal gyrus</td><td>male  </td><td>NA</td><td>19     </td></tr>\n",
+       "\t<tr><th scope=row>GSM1176273</th><td>superior frontal gyrus_male_94_AD_44  </td><td>GSM1176273</td><td>Public on Apr 21 2014</td><td>Jun 27 2013</td><td>Jun 26 2019</td><td>RNA</td><td>1</td><td>superior frontal gyrus_male_AD  </td><td>Homo sapiens</td><td>gender: male  </td><td>...</td><td>Reanalyzed by: GSE133349</td><td></td><td></td><td>94</td><td>3,4</td><td>IV     </td><td>superior frontal gyrus</td><td>male  </td><td>NA</td><td>18     </td></tr>\n",
+       "\t<tr><th scope=row>GSM1176274</th><td>superior frontal gyrus_male_94_AD_5   </td><td>GSM1176274</td><td>Public on Apr 21 2014</td><td>Jun 27 2013</td><td>Jun 26 2019</td><td>RNA</td><td>1</td><td>superior frontal gyrus_male_AD  </td><td>Homo sapiens</td><td>gender: male  </td><td>...</td><td>Reanalyzed by: GSE133349</td><td></td><td></td><td>94</td><td>3,3</td><td>VI     </td><td>superior frontal gyrus</td><td>male  </td><td>NA</td><td>15     </td></tr>\n",
+       "\t<tr><th scope=row>GSM1176275</th><td>superior frontal gyrus_male_94_AD_90  </td><td>GSM1176275</td><td>Public on Apr 21 2014</td><td>Jun 27 2013</td><td>Jun 26 2019</td><td>RNA</td><td>1</td><td>superior frontal gyrus_male_AD  </td><td>Homo sapiens</td><td>gender: male  </td><td>...</td><td>Reanalyzed by: GSE133349</td><td></td><td></td><td>94</td><td>3,3</td><td>IV     </td><td>superior frontal gyrus</td><td>male  </td><td>NA</td><td>no info</td></tr>\n",
+       "</tbody>\n",
+       "</table>\n"
+      ],
+      "text/latex": [
+       "A data.frame: 253 x 50\n",
+       "\\begin{tabular}{r|lllllllllllllllllllll}\n",
+       "  & title & geo\\_accession & status & submission\\_date & last\\_update\\_date & type & channel\\_count & source\\_name\\_ch1 & organism\\_ch1 & characteristics\\_ch1 & ... & relation & relation.1 & relation.2 & age (yrs):ch1 & apoe genotype:ch1 & braak stage:ch1 & brain region:ch1 & gender:ch1 & individual:ch1 & mmse:ch1\\\\\n",
+       "  & <chr> & <chr> & <chr> & <chr> & <chr> & <chr> & <chr> & <chr> & <chr> & <chr> & ... & <chr> & <chr> & <chr> & <chr> & <chr> & <chr> & <chr> & <chr> & <chr> & <chr>\\\\\n",
+       "\\hline\n",
+       "\tGSM300166 & PostcentralGyrus\\_female\\_91yrs\\_indiv10     & GSM300166 & Public on Oct 09 2008 & Jun 25 2008 & Jun 26 2019 & RNA & 1 & brain, postcentral gyrus, female, 91 years      & Homo sapiens & individual: 10, C    & ... & Reanalyzed by: GSE119087 & Reanalyzed by: GSE133349 &  & 91 & NA & NA & postcentral gyrus      & female & 10, C    & NA\\\\\n",
+       "\tGSM300167 & SuperiorFrontalGyrus\\_female\\_91yrs\\_indiv10 & GSM300167 & Public on Oct 09 2008 & Jun 25 2008 & Jun 26 2019 & RNA & 1 & brain, superior frontal gyrus, female, 91 years & Homo sapiens & individual: 10, C    & ... & Reanalyzed by: GSE119087 & Reanalyzed by: GSE133349 &  & 91 & NA & NA & superior frontal gyrus & female & 10, C    & NA\\\\\n",
+       "\tGSM300168 & Hippocampus\\_female\\_96yrs\\_indiv105         & GSM300168 & Public on Oct 09 2008 & Jun 25 2008 & Jun 26 2019 & RNA & 1 & brain, hippocampus, female, 96 years            & Homo sapiens & individual: 105, C   & ... & Reanalyzed by: GSE119087 & Reanalyzed by: GSE133349 &  & 96 & NA & NA & hippocampus            & female & 105, C   & NA\\\\\n",
+       "\tGSM300169 & Hippocampus\\_male\\_82yrs\\_indiv106           & GSM300169 & Public on Oct 09 2008 & Jun 25 2008 & Jun 26 2019 & RNA & 1 & brain, hippocampus, male, 82 years              & Homo sapiens & individual: 106, C   & ... & Reanalyzed by: GSE119087 & Reanalyzed by: GSE133349 &  & 82 & NA & NA & hippocampus            & male   & 106, C   & NA\\\\\n",
+       "\tGSM300170 & Hippocampus\\_male\\_84yrs\\_indiv108           & GSM300170 & Public on Oct 09 2008 & Jun 25 2008 & Jun 26 2019 & RNA & 1 & brain, hippocampus, male, 84 years              & Homo sapiens & individual: 108, C   & ... & Reanalyzed by: GSE119087 & Reanalyzed by: GSE133349 &  & 84 & NA & NA & hippocampus            & male   & 108, C   & NA\\\\\n",
+       "\tGSM300171 & Hippocampus\\_female\\_87yrs\\_indiv109         & GSM300171 & Public on Oct 09 2008 & Jun 25 2008 & Jun 26 2019 & RNA & 1 & brain, hippocampus, female, 87 years            & Homo sapiens & individual: 109, C   & ... & Reanalyzed by: GSE119087 & Reanalyzed by: GSE133349 &  & 87 & NA & NA & hippocampus            & female & 109, C   & NA\\\\\n",
+       "\tGSM300172 & Hippocampus\\_female\\_82yrs\\_indiv111         & GSM300172 & Public on Oct 09 2008 & Jun 25 2008 & Jun 26 2019 & RNA & 1 & brain, hippocampus, female, 82 years            & Homo sapiens & individual: 111, C   & ... & Reanalyzed by: GSE119087 & Reanalyzed by: GSE133349 &  & 82 & NA & NA & hippocampus            & female & 111, C   & NA\\\\\n",
+       "\tGSM300173 & EntorhinalCortex\\_male\\_45yrs\\_indiv12       & GSM300173 & Public on Oct 09 2008 & Jun 25 2008 & Jun 26 2019 & RNA & 1 & brain, entorhinal cortex, male, 45 years        & Homo sapiens & individual: 12, AA   & ... & Reanalyzed by: GSE119087 & Reanalyzed by: GSE133349 &  & 45 & NA & NA & entorhinal cortex      & male   & 12, AA   & NA\\\\\n",
+       "\tGSM300174 & Hippocampus\\_male\\_45yrs\\_indiv12            & GSM300174 & Public on Oct 09 2008 & Jun 25 2008 & Jun 26 2019 & RNA & 1 & brain, hippocampus, male, 45 years              & Homo sapiens & individual: 12, AA   & ... & Reanalyzed by: GSE119087 & Reanalyzed by: GSE133349 &  & 45 & NA & NA & hippocampus            & male   & 12, AA   & NA\\\\\n",
+       "\tGSM300175 & PostcentralGyrus\\_male\\_45yrs\\_indiv12       & GSM300175 & Public on Oct 09 2008 & Jun 25 2008 & Jun 26 2019 & RNA & 1 & brain, postcentral gyrus, male, 45 years        & Homo sapiens & individual: 12, AA   & ... & Reanalyzed by: GSE119087 & Reanalyzed by: GSE133349 &  & 45 & NA & NA & postcentral gyrus      & male   & 12, AA   & NA\\\\\n",
+       "\tGSM300176 & SuperiorFrontalGyrus\\_male\\_45yrs\\_indiv12   & GSM300176 & Public on Oct 09 2008 & Jun 25 2008 & Jun 26 2019 & RNA & 1 & brain, superior frontal gyrus, male, 45 years   & Homo sapiens & individual: 12, AA   & ... & Reanalyzed by: GSE119087 & Reanalyzed by: GSE133349 &  & 45 & NA & NA & superior frontal gyrus & male   & 12, AA   & NA\\\\\n",
+       "\tGSM300177 & EntorhinalCortex\\_male\\_95yrs\\_indiv14       & GSM300177 & Public on Oct 09 2008 & Jun 25 2008 & Jun 26 2019 & RNA & 1 & brain, entorhinal cortex, male, 95 years        & Homo sapiens & individual: 14, C    & ... & Reanalyzed by: GSE119087 & Reanalyzed by: GSE133349 &  & 95 & NA & NA & entorhinal cortex      & male   & 14, C    & NA\\\\\n",
+       "\tGSM300178 & Hippocampus\\_male\\_95yrs\\_indiv14            & GSM300178 & Public on Oct 09 2008 & Jun 25 2008 & Jun 26 2019 & RNA & 1 & brain, hippocampus, male, 95 years              & Homo sapiens & individual: 14, C    & ... & Reanalyzed by: GSE119087 & Reanalyzed by: GSE133349 &  & 95 & NA & NA & hippocampus            & male   & 14, C    & NA\\\\\n",
+       "\tGSM300179 & PostcentralGyrus\\_male\\_95yrs\\_indiv14       & GSM300179 & Public on Oct 09 2008 & Jun 25 2008 & Jun 26 2019 & RNA & 1 & brain, postcentral gyrus, male, 95 years        & Homo sapiens & individual: 14, C    & ... & Reanalyzed by: GSE119087 & Reanalyzed by: GSE133349 &  & 95 & NA & NA & postcentral gyrus      & male   & 14, C    & NA\\\\\n",
+       "\tGSM300180 & SuperiorFrontalGyrus\\_male\\_95yrs\\_indiv14   & GSM300180 & Public on Oct 09 2008 & Jun 25 2008 & Jun 26 2019 & RNA & 1 & brain, superior frontal gyrus, male, 95 years   & Homo sapiens & individual: 14, C    & ... & Reanalyzed by: GSE119087 & Reanalyzed by: GSE133349 &  & 95 & NA & NA & superior frontal gyrus & male   & 14, C    & NA\\\\\n",
+       "\tGSM300181 & EntorhinalCortex\\_male\\_80yrs\\_indiv15       & GSM300181 & Public on Oct 09 2008 & Jun 25 2008 & Jun 26 2019 & RNA & 1 & brain, entorhinal cortex, male, 80 years        & Homo sapiens & individual: 15, C    & ... & Reanalyzed by: GSE119087 & Reanalyzed by: GSE133349 &  & 80 & NA & NA & entorhinal cortex      & male   & 15, C    & NA\\\\\n",
+       "\tGSM300182 & Hippocampus\\_male\\_80yrs\\_indiv15            & GSM300182 & Public on Oct 09 2008 & Jun 25 2008 & Jun 26 2019 & RNA & 1 & brain, hippocampus, male, 80 years              & Homo sapiens & individual: 15, C    & ... & Reanalyzed by: GSE119087 & Reanalyzed by: GSE133349 &  & 80 & NA & NA & hippocampus            & male   & 15, C    & NA\\\\\n",
+       "\tGSM300183 & PostcentralGyrus\\_male\\_80yrs\\_indiv15       & GSM300183 & Public on Oct 09 2008 & Jun 25 2008 & Jun 26 2019 & RNA & 1 & brain, postcentral gyrus, male, 80 years        & Homo sapiens & individual: 15, C    & ... & Reanalyzed by: GSE119087 & Reanalyzed by: GSE133349 &  & 80 & NA & NA & postcentral gyrus      & male   & 15, C    & NA\\\\\n",
+       "\tGSM300185 & Hippocampus\\_male\\_91yrs\\_indiv16-07         & GSM300185 & Public on Oct 09 2008 & Jun 25 2008 & Jun 26 2019 & RNA & 1 & brain, hippocampus, male, 91 years              & Homo sapiens & individual: 16-07, C & ... & Reanalyzed by: GSE119087 & Reanalyzed by: GSE133349 &  & 91 & NA & NA & hippocampus            & male   & 16-07, C & NA\\\\\n",
+       "\tGSM300186 & EntorhinalCortex\\_female\\_45yrs\\_indiv17     & GSM300186 & Public on Oct 09 2008 & Jun 25 2008 & Jun 26 2019 & RNA & 1 & brain, entorhinal cortex, female, 45 years      & Homo sapiens & individual: 17, C    & ... & Reanalyzed by: GSE119087 & Reanalyzed by: GSE133349 &  & 45 & NA & NA & entorhinal cortex      & female & 17, C    & NA\\\\\n",
+       "\tGSM300187 & Hippocampus\\_female\\_45yrs\\_indiv17          & GSM300187 & Public on Oct 09 2008 & Jun 25 2008 & Jun 26 2019 & RNA & 1 & brain, hippocampus, female, 45 years            & Homo sapiens & individual: 17, C    & ... & Reanalyzed by: GSE119087 & Reanalyzed by: GSE133349 &  & 45 & NA & NA & hippocampus            & female & 17, C    & NA\\\\\n",
+       "\tGSM300188 & SuperiorFrontalGyrus\\_female\\_45yrs\\_indiv17 & GSM300188 & Public on Oct 09 2008 & Jun 25 2008 & Jun 26 2019 & RNA & 1 & brain, superior frontal gyrus, female, 45 years & Homo sapiens & individual: 17, C    & ... & Reanalyzed by: GSE119087 & Reanalyzed by: GSE133349 &  & 45 & NA & NA & superior frontal gyrus & female & 17, C    & NA\\\\\n",
+       "\tGSM300189 & EntorhinalCortex\\_female\\_74yrs\\_indiv18     & GSM300189 & Public on Oct 09 2008 & Jun 25 2008 & Jun 26 2019 & RNA & 1 & brain, entorhinal cortex, female, 74 years      & Homo sapiens & individual: 18, C    & ... & Reanalyzed by: GSE119087 & Reanalyzed by: GSE133349 &  & 74 & NA & NA & entorhinal cortex      & female & 18, C    & NA\\\\\n",
+       "\tGSM300190 & Hippocampus\\_female\\_74yrs\\_indiv18          & GSM300190 & Public on Oct 09 2008 & Jun 25 2008 & Jun 26 2019 & RNA & 1 & brain, hippocampus, female, 74 years            & Homo sapiens & individual: 18, C    & ... & Reanalyzed by: GSE119087 & Reanalyzed by: GSE133349 &  & 74 & NA & NA & hippocampus            & female & 18, C    & NA\\\\\n",
+       "\tGSM300191 & SuperiorFrontalGyrus\\_female\\_74yrs\\_indiv18 & GSM300191 & Public on Oct 09 2008 & Jun 25 2008 & Jun 26 2019 & RNA & 1 & brain, superior frontal gyrus, female, 74 years & Homo sapiens & individual: 18, C    & ... & Reanalyzed by: GSE119087 & Reanalyzed by: GSE133349 &  & 74 & NA & NA & superior frontal gyrus & female & 18, C    & NA\\\\\n",
+       "\tGSM300192 & EntorhinalCortex\\_female\\_99yrs\\_indiv2      & GSM300192 & Public on Oct 09 2008 & Jun 25 2008 & Jun 26 2019 & RNA & 1 & brain, entorhinal cortex, female, 99 years      & Homo sapiens & individual: 2, C     & ... & Reanalyzed by: GSE119087 & Reanalyzed by: GSE133349 &  & 99 & NA & NA & entorhinal cortex      & female & 2, C     & NA\\\\\n",
+       "\tGSM300193 & Hippocampus\\_female\\_99yrs\\_indiv2           & GSM300193 & Public on Oct 09 2008 & Jun 25 2008 & Jun 26 2019 & RNA & 1 & brain, hippocampus, female, 99 years            & Homo sapiens & individual: 2, C     & ... & Reanalyzed by: GSE119087 & Reanalyzed by: GSE133349 &  & 99 & NA & NA & hippocampus            & female & 2, C     & NA\\\\\n",
+       "\tGSM300194 & PostcentralGyrus\\_female\\_99yrs\\_indiv2      & GSM300194 & Public on Oct 09 2008 & Jun 25 2008 & Jun 26 2019 & RNA & 1 & brain, postcentral gyrus, female, 99 years      & Homo sapiens & individual: 2, C     & ... & Reanalyzed by: GSE119087 & Reanalyzed by: GSE133349 &  & 99 & NA & NA & postcentral gyrus      & female & 2, C     & NA\\\\\n",
+       "\tGSM300195 & SuperiorFrontalGyrus\\_female\\_99yrs\\_indiv2  & GSM300195 & Public on Oct 09 2008 & Jun 25 2008 & Jun 26 2019 & RNA & 1 & brain, superior frontal gyrus, female, 99 years & Homo sapiens & individual: 2, C     & ... & Reanalyzed by: GSE119087 & Reanalyzed by: GSE133349 &  & 99 & NA & NA & superior frontal gyrus & female & 2, C     & NA\\\\\n",
+       "\tGSM300196 & EntorhinalCortex\\_female\\_74yrs\\_indiv21     & GSM300196 & Public on Oct 09 2008 & Jun 25 2008 & Jun 26 2019 & RNA & 1 & brain, entorhinal cortex, female, 74 years      & Homo sapiens & individual: 21, C    & ... & Reanalyzed by: GSE119087 & Reanalyzed by: GSE133349 &  & 74 & NA & NA & entorhinal cortex      & female & 21, C    & NA\\\\\n",
+       "\t... & ... & ... & ... & ... & ... & ... & ... & ... & ... & ... &  & ... & ... & ... & ... & ... & ... & ... & ... & ... & ...\\\\\n",
+       "\tGSM1176246 & post-central gyrus\\_male\\_76\\_AD\\_69       & GSM1176246 & Public on Apr 21 2014 & Jun 27 2013 & Jun 26 2019 & RNA & 1 & post-central gyrus\\_male\\_AD       & Homo sapiens & gender: male   & ... & Reanalyzed by: GSE133349 &  &  & 76 & 4,4 & III     & post-central gyrus     & male   & NA & no info\\\\\n",
+       "\tGSM1176247 & post-central gyrus\\_male\\_79\\_AD\\_7        & GSM1176247 & Public on Apr 21 2014 & Jun 27 2013 & Jun 26 2019 & RNA & 1 & post-central gyrus\\_male\\_AD       & Homo sapiens & gender: male   & ... & Reanalyzed by: GSE133349 &  &  & 79 & 3,4 & VI      & post-central gyrus     & male   & NA & 6      \\\\\n",
+       "\tGSM1176248 & post-central gyrus\\_male\\_85\\_AD\\_51       & GSM1176248 & Public on Apr 21 2014 & Jun 27 2013 & Jun 26 2019 & RNA & 1 & post-central gyrus\\_male\\_AD       & Homo sapiens & gender: male   & ... & Reanalyzed by: GSE133349 &  &  & 85 & 3,3 & III     & post-central gyrus     & male   & NA & 22     \\\\\n",
+       "\tGSM1176249 & post-central gyrus\\_male\\_85\\_AD\\_74       & GSM1176249 & Public on Apr 21 2014 & Jun 27 2013 & Jun 26 2019 & RNA & 1 & post-central gyrus\\_male\\_AD       & Homo sapiens & gender: male   & ... & Reanalyzed by: GSE133349 &  &  & 85 & 3,4 & II      & post-central gyrus     & male   & NA & no info\\\\\n",
+       "\tGSM1176250 & post-central gyrus\\_male\\_86\\_AD\\_92       & GSM1176250 & Public on Apr 21 2014 & Jun 27 2013 & Jun 26 2019 & RNA & 1 & post-central gyrus\\_male\\_AD       & Homo sapiens & gender: male   & ... & Reanalyzed by: GSE133349 &  &  & 86 & 3,3 & IV      & post-central gyrus     & male   & NA & 19     \\\\\n",
+       "\tGSM1176251 & post-central gyrus\\_male\\_87\\_AD\\_19       & GSM1176251 & Public on Apr 21 2014 & Jun 27 2013 & Jun 26 2019 & RNA & 1 & post-central gyrus\\_male\\_AD       & Homo sapiens & gender: male   & ... & Reanalyzed by: GSE133349 &  &  & 87 & 3,4 & V       & post-central gyrus     & male   & NA & 12     \\\\\n",
+       "\tGSM1176252 & post-central gyrus\\_male\\_94\\_AD\\_44       & GSM1176252 & Public on Apr 21 2014 & Jun 27 2013 & Jun 26 2019 & RNA & 1 & post-central gyrus\\_male\\_AD       & Homo sapiens & gender: male   & ... & Reanalyzed by: GSE133349 &  &  & 94 & 3,4 & IV      & post-central gyrus     & male   & NA & 18     \\\\\n",
+       "\tGSM1176253 & post-central gyrus\\_male\\_94\\_AD\\_5        & GSM1176253 & Public on Apr 21 2014 & Jun 27 2013 & Jun 26 2019 & RNA & 1 & post-central gyrus\\_male\\_AD       & Homo sapiens & gender: male   & ... & Reanalyzed by: GSE133349 &  &  & 94 & 3,3 & VI      & post-central gyrus     & male   & NA & 15     \\\\\n",
+       "\tGSM1176254 & post-central gyrus\\_male\\_94\\_AD\\_90       & GSM1176254 & Public on Apr 21 2014 & Jun 27 2013 & Jun 26 2019 & RNA & 1 & post-central gyrus\\_male\\_AD       & Homo sapiens & gender: male   & ... & Reanalyzed by: GSE133349 &  &  & 94 & 3,3 & IV      & post-central gyrus     & male   & NA & no info\\\\\n",
+       "\tGSM1176255 & superior frontal gyrus\\_female\\_74\\_AD\\_37 & GSM1176255 & Public on Apr 21 2014 & Jun 27 2013 & Jun 26 2019 & RNA & 1 & superior frontal gyrus\\_female\\_AD & Homo sapiens & gender: female & ... & Reanalyzed by: GSE133349 &  &  & 74 & 2,4 & VI      & superior frontal gyrus & female & NA & 17     \\\\\n",
+       "\tGSM1176256 & superior frontal gyrus\\_female\\_76\\_AD\\_48 & GSM1176256 & Public on Apr 21 2014 & Jun 27 2013 & Jun 26 2019 & RNA & 1 & superior frontal gyrus\\_female\\_AD & Homo sapiens & gender: female & ... & Reanalyzed by: GSE133349 &  &  & 76 & 3,3 & V       & superior frontal gyrus & female & NA & 3      \\\\\n",
+       "\tGSM1176257 & superior frontal gyrus\\_female\\_86\\_AD\\_15 & GSM1176257 & Public on Apr 21 2014 & Jun 27 2013 & Jun 26 2019 & RNA & 1 & superior frontal gyrus\\_female\\_AD & Homo sapiens & gender: female & ... & Reanalyzed by: GSE133349 &  &  & 86 & 4,4 & VI      & superior frontal gyrus & female & NA & 9      \\\\\n",
+       "\tGSM1176258 & superior frontal gyrus\\_female\\_82\\_AD\\_9  & GSM1176258 & Public on Apr 21 2014 & Jun 27 2013 & Jun 26 2019 & RNA & 1 & superior frontal gyrus\\_female\\_AD & Homo sapiens & gender: female & ... & Reanalyzed by: GSE133349 &  &  & 82 & 3,4 & VI      & superior frontal gyrus & female & NA & 0      \\\\\n",
+       "\tGSM1176259 & superior frontal gyrus\\_female\\_85\\_AD\\_24 & GSM1176259 & Public on Apr 21 2014 & Jun 27 2013 & Jun 26 2019 & RNA & 1 & superior frontal gyrus\\_female\\_AD & Homo sapiens & gender: female & ... & Reanalyzed by: GSE133349 &  &  & 85 & 3,4 & IV      & superior frontal gyrus & female & NA & 26     \\\\\n",
+       "\tGSM1176260 & superior frontal gyrus\\_female\\_85\\_AD\\_57 & GSM1176260 & Public on Apr 21 2014 & Jun 27 2013 & Jun 26 2019 & RNA & 1 & superior frontal gyrus\\_female\\_AD & Homo sapiens & gender: female & ... & Reanalyzed by: GSE133349 &  &  & 85 & 3,3 & V       & superior frontal gyrus & female & NA & no info\\\\\n",
+       "\tGSM1176261 & superior frontal gyrus\\_female\\_88\\_AD\\_91 & GSM1176261 & Public on Apr 21 2014 & Jun 27 2013 & Jun 26 2019 & RNA & 1 & superior frontal gyrus\\_female\\_AD & Homo sapiens & gender: female & ... & Reanalyzed by: GSE133349 &  &  & 88 & 3,4 & IV      & superior frontal gyrus & female & NA & 27     \\\\\n",
+       "\tGSM1176262 & superior frontal gyrus\\_female\\_90\\_AD\\_23 & GSM1176262 & Public on Apr 21 2014 & Jun 27 2013 & Jun 26 2019 & RNA & 1 & superior frontal gyrus\\_female\\_AD & Homo sapiens & gender: female & ... & Reanalyzed by: GSE133349 &  &  & 90 & 3,4 & VI      & superior frontal gyrus & female & NA & 12     \\\\\n",
+       "\tGSM1176263 & superior frontal gyrus\\_female\\_90\\_AD\\_36 & GSM1176263 & Public on Apr 21 2014 & Jun 27 2013 & Jun 26 2019 & RNA & 1 & superior frontal gyrus\\_female\\_AD & Homo sapiens & gender: female & ... & Reanalyzed by: GSE133349 &  &  & 90 & 3,4 & IV      & superior frontal gyrus & female & NA & 17     \\\\\n",
+       "\tGSM1176264 & superior frontal gyrus\\_female\\_90\\_AD\\_6  & GSM1176264 & Public on Apr 21 2014 & Jun 27 2013 & Jun 26 2019 & RNA & 1 & superior frontal gyrus\\_female\\_AD & Homo sapiens & gender: female & ... & Reanalyzed by: GSE133349 &  &  & 90 & 3,4 & V       & superior frontal gyrus & female & NA & 20     \\\\\n",
+       "\tGSM1176265 & superior frontal gyrus\\_female\\_90\\_AD\\_75 & GSM1176265 & Public on Apr 21 2014 & Jun 27 2013 & Jun 26 2019 & RNA & 1 & superior frontal gyrus\\_female\\_AD & Homo sapiens & gender: female & ... & Reanalyzed by: GSE133349 &  &  & 90 & 4,4 & III     & superior frontal gyrus & female & NA & no info\\\\\n",
+       "\tGSM1176266 & superior frontal gyrus\\_female\\_91\\_AD\\_11 & GSM1176266 & Public on Apr 21 2014 & Jun 27 2013 & Jun 26 2019 & RNA & 1 & superior frontal gyrus\\_female\\_AD & Homo sapiens & gender: female & ... & Reanalyzed by: GSE133349 &  &  & 91 & 4,4 & V-VI    & superior frontal gyrus & female & NA & 11     \\\\\n",
+       "\tGSM1176267 & superior frontal gyrus\\_female\\_94\\_AD\\_70 & GSM1176267 & Public on Apr 21 2014 & Jun 27 2013 & Jun 26 2019 & RNA & 1 & superior frontal gyrus\\_female\\_AD & Homo sapiens & gender: female & ... & Reanalyzed by: GSE133349 &  &  & 94 & 3,3 & I       & superior frontal gyrus & female & NA & no info\\\\\n",
+       "\tGSM1176268 & superior frontal gyrus\\_female\\_95\\_AD\\_64 & GSM1176268 & Public on Apr 21 2014 & Jun 27 2013 & Jun 26 2019 & RNA & 1 & superior frontal gyrus\\_female\\_AD & Homo sapiens & gender: female & ... & Reanalyzed by: GSE133349 &  &  & 95 & 3,3 & no info & superior frontal gyrus & female & NA & no info\\\\\n",
+       "\tGSM1176269 & superior frontal gyrus\\_male\\_76\\_AD\\_33   & GSM1176269 & Public on Apr 21 2014 & Jun 27 2013 & Jun 26 2019 & RNA & 1 & superior frontal gyrus\\_male\\_AD   & Homo sapiens & gender: male   & ... & Reanalyzed by: GSE133349 &  &  & 76 & 4,4 & V       & superior frontal gyrus & male   & NA & 0      \\\\\n",
+       "\tGSM1176270 & superior frontal gyrus\\_male\\_85\\_AD\\_51   & GSM1176270 & Public on Apr 21 2014 & Jun 27 2013 & Jun 26 2019 & RNA & 1 & superior frontal gyrus\\_male\\_AD   & Homo sapiens & gender: male   & ... & Reanalyzed by: GSE133349 &  &  & 85 & 3,3 & III     & superior frontal gyrus & male   & NA & 22     \\\\\n",
+       "\tGSM1176271 & superior frontal gyrus\\_male\\_85\\_AD\\_74   & GSM1176271 & Public on Apr 21 2014 & Jun 27 2013 & Jun 26 2019 & RNA & 1 & superior frontal gyrus\\_male\\_AD   & Homo sapiens & gender: male   & ... & Reanalyzed by: GSE133349 &  &  & 85 & 3,4 & II      & superior frontal gyrus & male   & NA & no info\\\\\n",
+       "\tGSM1176272 & superior frontal gyrus\\_male\\_86\\_AD\\_92   & GSM1176272 & Public on Apr 21 2014 & Jun 27 2013 & Jun 26 2019 & RNA & 1 & superior frontal gyrus\\_male\\_AD   & Homo sapiens & gender: male   & ... & Reanalyzed by: GSE133349 &  &  & 86 & 3,3 & IV      & superior frontal gyrus & male   & NA & 19     \\\\\n",
+       "\tGSM1176273 & superior frontal gyrus\\_male\\_94\\_AD\\_44   & GSM1176273 & Public on Apr 21 2014 & Jun 27 2013 & Jun 26 2019 & RNA & 1 & superior frontal gyrus\\_male\\_AD   & Homo sapiens & gender: male   & ... & Reanalyzed by: GSE133349 &  &  & 94 & 3,4 & IV      & superior frontal gyrus & male   & NA & 18     \\\\\n",
+       "\tGSM1176274 & superior frontal gyrus\\_male\\_94\\_AD\\_5    & GSM1176274 & Public on Apr 21 2014 & Jun 27 2013 & Jun 26 2019 & RNA & 1 & superior frontal gyrus\\_male\\_AD   & Homo sapiens & gender: male   & ... & Reanalyzed by: GSE133349 &  &  & 94 & 3,3 & VI      & superior frontal gyrus & male   & NA & 15     \\\\\n",
+       "\tGSM1176275 & superior frontal gyrus\\_male\\_94\\_AD\\_90   & GSM1176275 & Public on Apr 21 2014 & Jun 27 2013 & Jun 26 2019 & RNA & 1 & superior frontal gyrus\\_male\\_AD   & Homo sapiens & gender: male   & ... & Reanalyzed by: GSE133349 &  &  & 94 & 3,3 & IV      & superior frontal gyrus & male   & NA & no info\\\\\n",
+       "\\end{tabular}\n"
+      ],
+      "text/markdown": [
+       "\n",
+       "A data.frame: 253 x 50\n",
+       "\n",
+       "| <!--/--> | title &lt;chr&gt; | geo_accession &lt;chr&gt; | status &lt;chr&gt; | submission_date &lt;chr&gt; | last_update_date &lt;chr&gt; | type &lt;chr&gt; | channel_count &lt;chr&gt; | source_name_ch1 &lt;chr&gt; | organism_ch1 &lt;chr&gt; | characteristics_ch1 &lt;chr&gt; | ... ... | relation &lt;chr&gt; | relation.1 &lt;chr&gt; | relation.2 &lt;chr&gt; | age (yrs):ch1 &lt;chr&gt; | apoe genotype:ch1 &lt;chr&gt; | braak stage:ch1 &lt;chr&gt; | brain region:ch1 &lt;chr&gt; | gender:ch1 &lt;chr&gt; | individual:ch1 &lt;chr&gt; | mmse:ch1 &lt;chr&gt; |\n",
+       "|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|\n",
+       "| GSM300166 | PostcentralGyrus_female_91yrs_indiv10     | GSM300166 | Public on Oct 09 2008 | Jun 25 2008 | Jun 26 2019 | RNA | 1 | brain, postcentral gyrus, female, 91 years      | Homo sapiens | individual: 10, C    | ... | Reanalyzed by: GSE119087 | Reanalyzed by: GSE133349 | <!----> | 91 | NA | NA | postcentral gyrus      | female | 10, C    | NA |\n",
+       "| GSM300167 | SuperiorFrontalGyrus_female_91yrs_indiv10 | GSM300167 | Public on Oct 09 2008 | Jun 25 2008 | Jun 26 2019 | RNA | 1 | brain, superior frontal gyrus, female, 91 years | Homo sapiens | individual: 10, C    | ... | Reanalyzed by: GSE119087 | Reanalyzed by: GSE133349 | <!----> | 91 | NA | NA | superior frontal gyrus | female | 10, C    | NA |\n",
+       "| GSM300168 | Hippocampus_female_96yrs_indiv105         | GSM300168 | Public on Oct 09 2008 | Jun 25 2008 | Jun 26 2019 | RNA | 1 | brain, hippocampus, female, 96 years            | Homo sapiens | individual: 105, C   | ... | Reanalyzed by: GSE119087 | Reanalyzed by: GSE133349 | <!----> | 96 | NA | NA | hippocampus            | female | 105, C   | NA |\n",
+       "| GSM300169 | Hippocampus_male_82yrs_indiv106           | GSM300169 | Public on Oct 09 2008 | Jun 25 2008 | Jun 26 2019 | RNA | 1 | brain, hippocampus, male, 82 years              | Homo sapiens | individual: 106, C   | ... | Reanalyzed by: GSE119087 | Reanalyzed by: GSE133349 | <!----> | 82 | NA | NA | hippocampus            | male   | 106, C   | NA |\n",
+       "| GSM300170 | Hippocampus_male_84yrs_indiv108           | GSM300170 | Public on Oct 09 2008 | Jun 25 2008 | Jun 26 2019 | RNA | 1 | brain, hippocampus, male, 84 years              | Homo sapiens | individual: 108, C   | ... | Reanalyzed by: GSE119087 | Reanalyzed by: GSE133349 | <!----> | 84 | NA | NA | hippocampus            | male   | 108, C   | NA |\n",
+       "| GSM300171 | Hippocampus_female_87yrs_indiv109         | GSM300171 | Public on Oct 09 2008 | Jun 25 2008 | Jun 26 2019 | RNA | 1 | brain, hippocampus, female, 87 years            | Homo sapiens | individual: 109, C   | ... | Reanalyzed by: GSE119087 | Reanalyzed by: GSE133349 | <!----> | 87 | NA | NA | hippocampus            | female | 109, C   | NA |\n",
+       "| GSM300172 | Hippocampus_female_82yrs_indiv111         | GSM300172 | Public on Oct 09 2008 | Jun 25 2008 | Jun 26 2019 | RNA | 1 | brain, hippocampus, female, 82 years            | Homo sapiens | individual: 111, C   | ... | Reanalyzed by: GSE119087 | Reanalyzed by: GSE133349 | <!----> | 82 | NA | NA | hippocampus            | female | 111, C   | NA |\n",
+       "| GSM300173 | EntorhinalCortex_male_45yrs_indiv12       | GSM300173 | Public on Oct 09 2008 | Jun 25 2008 | Jun 26 2019 | RNA | 1 | brain, entorhinal cortex, male, 45 years        | Homo sapiens | individual: 12, AA   | ... | Reanalyzed by: GSE119087 | Reanalyzed by: GSE133349 | <!----> | 45 | NA | NA | entorhinal cortex      | male   | 12, AA   | NA |\n",
+       "| GSM300174 | Hippocampus_male_45yrs_indiv12            | GSM300174 | Public on Oct 09 2008 | Jun 25 2008 | Jun 26 2019 | RNA | 1 | brain, hippocampus, male, 45 years              | Homo sapiens | individual: 12, AA   | ... | Reanalyzed by: GSE119087 | Reanalyzed by: GSE133349 | <!----> | 45 | NA | NA | hippocampus            | male   | 12, AA   | NA |\n",
+       "| GSM300175 | PostcentralGyrus_male_45yrs_indiv12       | GSM300175 | Public on Oct 09 2008 | Jun 25 2008 | Jun 26 2019 | RNA | 1 | brain, postcentral gyrus, male, 45 years        | Homo sapiens | individual: 12, AA   | ... | Reanalyzed by: GSE119087 | Reanalyzed by: GSE133349 | <!----> | 45 | NA | NA | postcentral gyrus      | male   | 12, AA   | NA |\n",
+       "| GSM300176 | SuperiorFrontalGyrus_male_45yrs_indiv12   | GSM300176 | Public on Oct 09 2008 | Jun 25 2008 | Jun 26 2019 | RNA | 1 | brain, superior frontal gyrus, male, 45 years   | Homo sapiens | individual: 12, AA   | ... | Reanalyzed by: GSE119087 | Reanalyzed by: GSE133349 | <!----> | 45 | NA | NA | superior frontal gyrus | male   | 12, AA   | NA |\n",
+       "| GSM300177 | EntorhinalCortex_male_95yrs_indiv14       | GSM300177 | Public on Oct 09 2008 | Jun 25 2008 | Jun 26 2019 | RNA | 1 | brain, entorhinal cortex, male, 95 years        | Homo sapiens | individual: 14, C    | ... | Reanalyzed by: GSE119087 | Reanalyzed by: GSE133349 | <!----> | 95 | NA | NA | entorhinal cortex      | male   | 14, C    | NA |\n",
+       "| GSM300178 | Hippocampus_male_95yrs_indiv14            | GSM300178 | Public on Oct 09 2008 | Jun 25 2008 | Jun 26 2019 | RNA | 1 | brain, hippocampus, male, 95 years              | Homo sapiens | individual: 14, C    | ... | Reanalyzed by: GSE119087 | Reanalyzed by: GSE133349 | <!----> | 95 | NA | NA | hippocampus            | male   | 14, C    | NA |\n",
+       "| GSM300179 | PostcentralGyrus_male_95yrs_indiv14       | GSM300179 | Public on Oct 09 2008 | Jun 25 2008 | Jun 26 2019 | RNA | 1 | brain, postcentral gyrus, male, 95 years        | Homo sapiens | individual: 14, C    | ... | Reanalyzed by: GSE119087 | Reanalyzed by: GSE133349 | <!----> | 95 | NA | NA | postcentral gyrus      | male   | 14, C    | NA |\n",
+       "| GSM300180 | SuperiorFrontalGyrus_male_95yrs_indiv14   | GSM300180 | Public on Oct 09 2008 | Jun 25 2008 | Jun 26 2019 | RNA | 1 | brain, superior frontal gyrus, male, 95 years   | Homo sapiens | individual: 14, C    | ... | Reanalyzed by: GSE119087 | Reanalyzed by: GSE133349 | <!----> | 95 | NA | NA | superior frontal gyrus | male   | 14, C    | NA |\n",
+       "| GSM300181 | EntorhinalCortex_male_80yrs_indiv15       | GSM300181 | Public on Oct 09 2008 | Jun 25 2008 | Jun 26 2019 | RNA | 1 | brain, entorhinal cortex, male, 80 years        | Homo sapiens | individual: 15, C    | ... | Reanalyzed by: GSE119087 | Reanalyzed by: GSE133349 | <!----> | 80 | NA | NA | entorhinal cortex      | male   | 15, C    | NA |\n",
+       "| GSM300182 | Hippocampus_male_80yrs_indiv15            | GSM300182 | Public on Oct 09 2008 | Jun 25 2008 | Jun 26 2019 | RNA | 1 | brain, hippocampus, male, 80 years              | Homo sapiens | individual: 15, C    | ... | Reanalyzed by: GSE119087 | Reanalyzed by: GSE133349 | <!----> | 80 | NA | NA | hippocampus            | male   | 15, C    | NA |\n",
+       "| GSM300183 | PostcentralGyrus_male_80yrs_indiv15       | GSM300183 | Public on Oct 09 2008 | Jun 25 2008 | Jun 26 2019 | RNA | 1 | brain, postcentral gyrus, male, 80 years        | Homo sapiens | individual: 15, C    | ... | Reanalyzed by: GSE119087 | Reanalyzed by: GSE133349 | <!----> | 80 | NA | NA | postcentral gyrus      | male   | 15, C    | NA |\n",
+       "| GSM300185 | Hippocampus_male_91yrs_indiv16-07         | GSM300185 | Public on Oct 09 2008 | Jun 25 2008 | Jun 26 2019 | RNA | 1 | brain, hippocampus, male, 91 years              | Homo sapiens | individual: 16-07, C | ... | Reanalyzed by: GSE119087 | Reanalyzed by: GSE133349 | <!----> | 91 | NA | NA | hippocampus            | male   | 16-07, C | NA |\n",
+       "| GSM300186 | EntorhinalCortex_female_45yrs_indiv17     | GSM300186 | Public on Oct 09 2008 | Jun 25 2008 | Jun 26 2019 | RNA | 1 | brain, entorhinal cortex, female, 45 years      | Homo sapiens | individual: 17, C    | ... | Reanalyzed by: GSE119087 | Reanalyzed by: GSE133349 | <!----> | 45 | NA | NA | entorhinal cortex      | female | 17, C    | NA |\n",
+       "| GSM300187 | Hippocampus_female_45yrs_indiv17          | GSM300187 | Public on Oct 09 2008 | Jun 25 2008 | Jun 26 2019 | RNA | 1 | brain, hippocampus, female, 45 years            | Homo sapiens | individual: 17, C    | ... | Reanalyzed by: GSE119087 | Reanalyzed by: GSE133349 | <!----> | 45 | NA | NA | hippocampus            | female | 17, C    | NA |\n",
+       "| GSM300188 | SuperiorFrontalGyrus_female_45yrs_indiv17 | GSM300188 | Public on Oct 09 2008 | Jun 25 2008 | Jun 26 2019 | RNA | 1 | brain, superior frontal gyrus, female, 45 years | Homo sapiens | individual: 17, C    | ... | Reanalyzed by: GSE119087 | Reanalyzed by: GSE133349 | <!----> | 45 | NA | NA | superior frontal gyrus | female | 17, C    | NA |\n",
+       "| GSM300189 | EntorhinalCortex_female_74yrs_indiv18     | GSM300189 | Public on Oct 09 2008 | Jun 25 2008 | Jun 26 2019 | RNA | 1 | brain, entorhinal cortex, female, 74 years      | Homo sapiens | individual: 18, C    | ... | Reanalyzed by: GSE119087 | Reanalyzed by: GSE133349 | <!----> | 74 | NA | NA | entorhinal cortex      | female | 18, C    | NA |\n",
+       "| GSM300190 | Hippocampus_female_74yrs_indiv18          | GSM300190 | Public on Oct 09 2008 | Jun 25 2008 | Jun 26 2019 | RNA | 1 | brain, hippocampus, female, 74 years            | Homo sapiens | individual: 18, C    | ... | Reanalyzed by: GSE119087 | Reanalyzed by: GSE133349 | <!----> | 74 | NA | NA | hippocampus            | female | 18, C    | NA |\n",
+       "| GSM300191 | SuperiorFrontalGyrus_female_74yrs_indiv18 | GSM300191 | Public on Oct 09 2008 | Jun 25 2008 | Jun 26 2019 | RNA | 1 | brain, superior frontal gyrus, female, 74 years | Homo sapiens | individual: 18, C    | ... | Reanalyzed by: GSE119087 | Reanalyzed by: GSE133349 | <!----> | 74 | NA | NA | superior frontal gyrus | female | 18, C    | NA |\n",
+       "| GSM300192 | EntorhinalCortex_female_99yrs_indiv2      | GSM300192 | Public on Oct 09 2008 | Jun 25 2008 | Jun 26 2019 | RNA | 1 | brain, entorhinal cortex, female, 99 years      | Homo sapiens | individual: 2, C     | ... | Reanalyzed by: GSE119087 | Reanalyzed by: GSE133349 | <!----> | 99 | NA | NA | entorhinal cortex      | female | 2, C     | NA |\n",
+       "| GSM300193 | Hippocampus_female_99yrs_indiv2           | GSM300193 | Public on Oct 09 2008 | Jun 25 2008 | Jun 26 2019 | RNA | 1 | brain, hippocampus, female, 99 years            | Homo sapiens | individual: 2, C     | ... | Reanalyzed by: GSE119087 | Reanalyzed by: GSE133349 | <!----> | 99 | NA | NA | hippocampus            | female | 2, C     | NA |\n",
+       "| GSM300194 | PostcentralGyrus_female_99yrs_indiv2      | GSM300194 | Public on Oct 09 2008 | Jun 25 2008 | Jun 26 2019 | RNA | 1 | brain, postcentral gyrus, female, 99 years      | Homo sapiens | individual: 2, C     | ... | Reanalyzed by: GSE119087 | Reanalyzed by: GSE133349 | <!----> | 99 | NA | NA | postcentral gyrus      | female | 2, C     | NA |\n",
+       "| GSM300195 | SuperiorFrontalGyrus_female_99yrs_indiv2  | GSM300195 | Public on Oct 09 2008 | Jun 25 2008 | Jun 26 2019 | RNA | 1 | brain, superior frontal gyrus, female, 99 years | Homo sapiens | individual: 2, C     | ... | Reanalyzed by: GSE119087 | Reanalyzed by: GSE133349 | <!----> | 99 | NA | NA | superior frontal gyrus | female | 2, C     | NA |\n",
+       "| GSM300196 | EntorhinalCortex_female_74yrs_indiv21     | GSM300196 | Public on Oct 09 2008 | Jun 25 2008 | Jun 26 2019 | RNA | 1 | brain, entorhinal cortex, female, 74 years      | Homo sapiens | individual: 21, C    | ... | Reanalyzed by: GSE119087 | Reanalyzed by: GSE133349 | <!----> | 74 | NA | NA | entorhinal cortex      | female | 21, C    | NA |\n",
+       "| ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | <!----> | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... |\n",
+       "| GSM1176246 | post-central gyrus_male_76_AD_69       | GSM1176246 | Public on Apr 21 2014 | Jun 27 2013 | Jun 26 2019 | RNA | 1 | post-central gyrus_male_AD       | Homo sapiens | gender: male   | ... | Reanalyzed by: GSE133349 | <!----> | <!----> | 76 | 4,4 | III     | post-central gyrus     | male   | NA | no info |\n",
+       "| GSM1176247 | post-central gyrus_male_79_AD_7        | GSM1176247 | Public on Apr 21 2014 | Jun 27 2013 | Jun 26 2019 | RNA | 1 | post-central gyrus_male_AD       | Homo sapiens | gender: male   | ... | Reanalyzed by: GSE133349 | <!----> | <!----> | 79 | 3,4 | VI      | post-central gyrus     | male   | NA | 6       |\n",
+       "| GSM1176248 | post-central gyrus_male_85_AD_51       | GSM1176248 | Public on Apr 21 2014 | Jun 27 2013 | Jun 26 2019 | RNA | 1 | post-central gyrus_male_AD       | Homo sapiens | gender: male   | ... | Reanalyzed by: GSE133349 | <!----> | <!----> | 85 | 3,3 | III     | post-central gyrus     | male   | NA | 22      |\n",
+       "| GSM1176249 | post-central gyrus_male_85_AD_74       | GSM1176249 | Public on Apr 21 2014 | Jun 27 2013 | Jun 26 2019 | RNA | 1 | post-central gyrus_male_AD       | Homo sapiens | gender: male   | ... | Reanalyzed by: GSE133349 | <!----> | <!----> | 85 | 3,4 | II      | post-central gyrus     | male   | NA | no info |\n",
+       "| GSM1176250 | post-central gyrus_male_86_AD_92       | GSM1176250 | Public on Apr 21 2014 | Jun 27 2013 | Jun 26 2019 | RNA | 1 | post-central gyrus_male_AD       | Homo sapiens | gender: male   | ... | Reanalyzed by: GSE133349 | <!----> | <!----> | 86 | 3,3 | IV      | post-central gyrus     | male   | NA | 19      |\n",
+       "| GSM1176251 | post-central gyrus_male_87_AD_19       | GSM1176251 | Public on Apr 21 2014 | Jun 27 2013 | Jun 26 2019 | RNA | 1 | post-central gyrus_male_AD       | Homo sapiens | gender: male   | ... | Reanalyzed by: GSE133349 | <!----> | <!----> | 87 | 3,4 | V       | post-central gyrus     | male   | NA | 12      |\n",
+       "| GSM1176252 | post-central gyrus_male_94_AD_44       | GSM1176252 | Public on Apr 21 2014 | Jun 27 2013 | Jun 26 2019 | RNA | 1 | post-central gyrus_male_AD       | Homo sapiens | gender: male   | ... | Reanalyzed by: GSE133349 | <!----> | <!----> | 94 | 3,4 | IV      | post-central gyrus     | male   | NA | 18      |\n",
+       "| GSM1176253 | post-central gyrus_male_94_AD_5        | GSM1176253 | Public on Apr 21 2014 | Jun 27 2013 | Jun 26 2019 | RNA | 1 | post-central gyrus_male_AD       | Homo sapiens | gender: male   | ... | Reanalyzed by: GSE133349 | <!----> | <!----> | 94 | 3,3 | VI      | post-central gyrus     | male   | NA | 15      |\n",
+       "| GSM1176254 | post-central gyrus_male_94_AD_90       | GSM1176254 | Public on Apr 21 2014 | Jun 27 2013 | Jun 26 2019 | RNA | 1 | post-central gyrus_male_AD       | Homo sapiens | gender: male   | ... | Reanalyzed by: GSE133349 | <!----> | <!----> | 94 | 3,3 | IV      | post-central gyrus     | male   | NA | no info |\n",
+       "| GSM1176255 | superior frontal gyrus_female_74_AD_37 | GSM1176255 | Public on Apr 21 2014 | Jun 27 2013 | Jun 26 2019 | RNA | 1 | superior frontal gyrus_female_AD | Homo sapiens | gender: female | ... | Reanalyzed by: GSE133349 | <!----> | <!----> | 74 | 2,4 | VI      | superior frontal gyrus | female | NA | 17      |\n",
+       "| GSM1176256 | superior frontal gyrus_female_76_AD_48 | GSM1176256 | Public on Apr 21 2014 | Jun 27 2013 | Jun 26 2019 | RNA | 1 | superior frontal gyrus_female_AD | Homo sapiens | gender: female | ... | Reanalyzed by: GSE133349 | <!----> | <!----> | 76 | 3,3 | V       | superior frontal gyrus | female | NA | 3       |\n",
+       "| GSM1176257 | superior frontal gyrus_female_86_AD_15 | GSM1176257 | Public on Apr 21 2014 | Jun 27 2013 | Jun 26 2019 | RNA | 1 | superior frontal gyrus_female_AD | Homo sapiens | gender: female | ... | Reanalyzed by: GSE133349 | <!----> | <!----> | 86 | 4,4 | VI      | superior frontal gyrus | female | NA | 9       |\n",
+       "| GSM1176258 | superior frontal gyrus_female_82_AD_9  | GSM1176258 | Public on Apr 21 2014 | Jun 27 2013 | Jun 26 2019 | RNA | 1 | superior frontal gyrus_female_AD | Homo sapiens | gender: female | ... | Reanalyzed by: GSE133349 | <!----> | <!----> | 82 | 3,4 | VI      | superior frontal gyrus | female | NA | 0       |\n",
+       "| GSM1176259 | superior frontal gyrus_female_85_AD_24 | GSM1176259 | Public on Apr 21 2014 | Jun 27 2013 | Jun 26 2019 | RNA | 1 | superior frontal gyrus_female_AD | Homo sapiens | gender: female | ... | Reanalyzed by: GSE133349 | <!----> | <!----> | 85 | 3,4 | IV      | superior frontal gyrus | female | NA | 26      |\n",
+       "| GSM1176260 | superior frontal gyrus_female_85_AD_57 | GSM1176260 | Public on Apr 21 2014 | Jun 27 2013 | Jun 26 2019 | RNA | 1 | superior frontal gyrus_female_AD | Homo sapiens | gender: female | ... | Reanalyzed by: GSE133349 | <!----> | <!----> | 85 | 3,3 | V       | superior frontal gyrus | female | NA | no info |\n",
+       "| GSM1176261 | superior frontal gyrus_female_88_AD_91 | GSM1176261 | Public on Apr 21 2014 | Jun 27 2013 | Jun 26 2019 | RNA | 1 | superior frontal gyrus_female_AD | Homo sapiens | gender: female | ... | Reanalyzed by: GSE133349 | <!----> | <!----> | 88 | 3,4 | IV      | superior frontal gyrus | female | NA | 27      |\n",
+       "| GSM1176262 | superior frontal gyrus_female_90_AD_23 | GSM1176262 | Public on Apr 21 2014 | Jun 27 2013 | Jun 26 2019 | RNA | 1 | superior frontal gyrus_female_AD | Homo sapiens | gender: female | ... | Reanalyzed by: GSE133349 | <!----> | <!----> | 90 | 3,4 | VI      | superior frontal gyrus | female | NA | 12      |\n",
+       "| GSM1176263 | superior frontal gyrus_female_90_AD_36 | GSM1176263 | Public on Apr 21 2014 | Jun 27 2013 | Jun 26 2019 | RNA | 1 | superior frontal gyrus_female_AD | Homo sapiens | gender: female | ... | Reanalyzed by: GSE133349 | <!----> | <!----> | 90 | 3,4 | IV      | superior frontal gyrus | female | NA | 17      |\n",
+       "| GSM1176264 | superior frontal gyrus_female_90_AD_6  | GSM1176264 | Public on Apr 21 2014 | Jun 27 2013 | Jun 26 2019 | RNA | 1 | superior frontal gyrus_female_AD | Homo sapiens | gender: female | ... | Reanalyzed by: GSE133349 | <!----> | <!----> | 90 | 3,4 | V       | superior frontal gyrus | female | NA | 20      |\n",
+       "| GSM1176265 | superior frontal gyrus_female_90_AD_75 | GSM1176265 | Public on Apr 21 2014 | Jun 27 2013 | Jun 26 2019 | RNA | 1 | superior frontal gyrus_female_AD | Homo sapiens | gender: female | ... | Reanalyzed by: GSE133349 | <!----> | <!----> | 90 | 4,4 | III     | superior frontal gyrus | female | NA | no info |\n",
+       "| GSM1176266 | superior frontal gyrus_female_91_AD_11 | GSM1176266 | Public on Apr 21 2014 | Jun 27 2013 | Jun 26 2019 | RNA | 1 | superior frontal gyrus_female_AD | Homo sapiens | gender: female | ... | Reanalyzed by: GSE133349 | <!----> | <!----> | 91 | 4,4 | V-VI    | superior frontal gyrus | female | NA | 11      |\n",
+       "| GSM1176267 | superior frontal gyrus_female_94_AD_70 | GSM1176267 | Public on Apr 21 2014 | Jun 27 2013 | Jun 26 2019 | RNA | 1 | superior frontal gyrus_female_AD | Homo sapiens | gender: female | ... | Reanalyzed by: GSE133349 | <!----> | <!----> | 94 | 3,3 | I       | superior frontal gyrus | female | NA | no info |\n",
+       "| GSM1176268 | superior frontal gyrus_female_95_AD_64 | GSM1176268 | Public on Apr 21 2014 | Jun 27 2013 | Jun 26 2019 | RNA | 1 | superior frontal gyrus_female_AD | Homo sapiens | gender: female | ... | Reanalyzed by: GSE133349 | <!----> | <!----> | 95 | 3,3 | no info | superior frontal gyrus | female | NA | no info |\n",
+       "| GSM1176269 | superior frontal gyrus_male_76_AD_33   | GSM1176269 | Public on Apr 21 2014 | Jun 27 2013 | Jun 26 2019 | RNA | 1 | superior frontal gyrus_male_AD   | Homo sapiens | gender: male   | ... | Reanalyzed by: GSE133349 | <!----> | <!----> | 76 | 4,4 | V       | superior frontal gyrus | male   | NA | 0       |\n",
+       "| GSM1176270 | superior frontal gyrus_male_85_AD_51   | GSM1176270 | Public on Apr 21 2014 | Jun 27 2013 | Jun 26 2019 | RNA | 1 | superior frontal gyrus_male_AD   | Homo sapiens | gender: male   | ... | Reanalyzed by: GSE133349 | <!----> | <!----> | 85 | 3,3 | III     | superior frontal gyrus | male   | NA | 22      |\n",
+       "| GSM1176271 | superior frontal gyrus_male_85_AD_74   | GSM1176271 | Public on Apr 21 2014 | Jun 27 2013 | Jun 26 2019 | RNA | 1 | superior frontal gyrus_male_AD   | Homo sapiens | gender: male   | ... | Reanalyzed by: GSE133349 | <!----> | <!----> | 85 | 3,4 | II      | superior frontal gyrus | male   | NA | no info |\n",
+       "| GSM1176272 | superior frontal gyrus_male_86_AD_92   | GSM1176272 | Public on Apr 21 2014 | Jun 27 2013 | Jun 26 2019 | RNA | 1 | superior frontal gyrus_male_AD   | Homo sapiens | gender: male   | ... | Reanalyzed by: GSE133349 | <!----> | <!----> | 86 | 3,3 | IV      | superior frontal gyrus | male   | NA | 19      |\n",
+       "| GSM1176273 | superior frontal gyrus_male_94_AD_44   | GSM1176273 | Public on Apr 21 2014 | Jun 27 2013 | Jun 26 2019 | RNA | 1 | superior frontal gyrus_male_AD   | Homo sapiens | gender: male   | ... | Reanalyzed by: GSE133349 | <!----> | <!----> | 94 | 3,4 | IV      | superior frontal gyrus | male   | NA | 18      |\n",
+       "| GSM1176274 | superior frontal gyrus_male_94_AD_5    | GSM1176274 | Public on Apr 21 2014 | Jun 27 2013 | Jun 26 2019 | RNA | 1 | superior frontal gyrus_male_AD   | Homo sapiens | gender: male   | ... | Reanalyzed by: GSE133349 | <!----> | <!----> | 94 | 3,3 | VI      | superior frontal gyrus | male   | NA | 15      |\n",
+       "| GSM1176275 | superior frontal gyrus_male_94_AD_90   | GSM1176275 | Public on Apr 21 2014 | Jun 27 2013 | Jun 26 2019 | RNA | 1 | superior frontal gyrus_male_AD   | Homo sapiens | gender: male   | ... | Reanalyzed by: GSE133349 | <!----> | <!----> | 94 | 3,3 | IV      | superior frontal gyrus | male   | NA | no info |\n",
+       "\n"
+      ],
+      "text/plain": [
+       "           title                                     geo_accession\n",
+       "GSM300166  PostcentralGyrus_female_91yrs_indiv10     GSM300166    \n",
+       "GSM300167  SuperiorFrontalGyrus_female_91yrs_indiv10 GSM300167    \n",
+       "GSM300168  Hippocampus_female_96yrs_indiv105         GSM300168    \n",
+       "GSM300169  Hippocampus_male_82yrs_indiv106           GSM300169    \n",
+       "GSM300170  Hippocampus_male_84yrs_indiv108           GSM300170    \n",
+       "GSM300171  Hippocampus_female_87yrs_indiv109         GSM300171    \n",
+       "GSM300172  Hippocampus_female_82yrs_indiv111         GSM300172    \n",
+       "GSM300173  EntorhinalCortex_male_45yrs_indiv12       GSM300173    \n",
+       "GSM300174  Hippocampus_male_45yrs_indiv12            GSM300174    \n",
+       "GSM300175  PostcentralGyrus_male_45yrs_indiv12       GSM300175    \n",
+       "GSM300176  SuperiorFrontalGyrus_male_45yrs_indiv12   GSM300176    \n",
+       "GSM300177  EntorhinalCortex_male_95yrs_indiv14       GSM300177    \n",
+       "GSM300178  Hippocampus_male_95yrs_indiv14            GSM300178    \n",
+       "GSM300179  PostcentralGyrus_male_95yrs_indiv14       GSM300179    \n",
+       "GSM300180  SuperiorFrontalGyrus_male_95yrs_indiv14   GSM300180    \n",
+       "GSM300181  EntorhinalCortex_male_80yrs_indiv15       GSM300181    \n",
+       "GSM300182  Hippocampus_male_80yrs_indiv15            GSM300182    \n",
+       "GSM300183  PostcentralGyrus_male_80yrs_indiv15       GSM300183    \n",
+       "GSM300185  Hippocampus_male_91yrs_indiv16-07         GSM300185    \n",
+       "GSM300186  EntorhinalCortex_female_45yrs_indiv17     GSM300186    \n",
+       "GSM300187  Hippocampus_female_45yrs_indiv17          GSM300187    \n",
+       "GSM300188  SuperiorFrontalGyrus_female_45yrs_indiv17 GSM300188    \n",
+       "GSM300189  EntorhinalCortex_female_74yrs_indiv18     GSM300189    \n",
+       "GSM300190  Hippocampus_female_74yrs_indiv18          GSM300190    \n",
+       "GSM300191  SuperiorFrontalGyrus_female_74yrs_indiv18 GSM300191    \n",
+       "GSM300192  EntorhinalCortex_female_99yrs_indiv2      GSM300192    \n",
+       "GSM300193  Hippocampus_female_99yrs_indiv2           GSM300193    \n",
+       "GSM300194  PostcentralGyrus_female_99yrs_indiv2      GSM300194    \n",
+       "GSM300195  SuperiorFrontalGyrus_female_99yrs_indiv2  GSM300195    \n",
+       "GSM300196  EntorhinalCortex_female_74yrs_indiv21     GSM300196    \n",
+       "...        ...                                       ...          \n",
+       "GSM1176246 post-central gyrus_male_76_AD_69          GSM1176246   \n",
+       "GSM1176247 post-central gyrus_male_79_AD_7           GSM1176247   \n",
+       "GSM1176248 post-central gyrus_male_85_AD_51          GSM1176248   \n",
+       "GSM1176249 post-central gyrus_male_85_AD_74          GSM1176249   \n",
+       "GSM1176250 post-central gyrus_male_86_AD_92          GSM1176250   \n",
+       "GSM1176251 post-central gyrus_male_87_AD_19          GSM1176251   \n",
+       "GSM1176252 post-central gyrus_male_94_AD_44          GSM1176252   \n",
+       "GSM1176253 post-central gyrus_male_94_AD_5           GSM1176253   \n",
+       "GSM1176254 post-central gyrus_male_94_AD_90          GSM1176254   \n",
+       "GSM1176255 superior frontal gyrus_female_74_AD_37    GSM1176255   \n",
+       "GSM1176256 superior frontal gyrus_female_76_AD_48    GSM1176256   \n",
+       "GSM1176257 superior frontal gyrus_female_86_AD_15    GSM1176257   \n",
+       "GSM1176258 superior frontal gyrus_female_82_AD_9     GSM1176258   \n",
+       "GSM1176259 superior frontal gyrus_female_85_AD_24    GSM1176259   \n",
+       "GSM1176260 superior frontal gyrus_female_85_AD_57    GSM1176260   \n",
+       "GSM1176261 superior frontal gyrus_female_88_AD_91    GSM1176261   \n",
+       "GSM1176262 superior frontal gyrus_female_90_AD_23    GSM1176262   \n",
+       "GSM1176263 superior frontal gyrus_female_90_AD_36    GSM1176263   \n",
+       "GSM1176264 superior frontal gyrus_female_90_AD_6     GSM1176264   \n",
+       "GSM1176265 superior frontal gyrus_female_90_AD_75    GSM1176265   \n",
+       "GSM1176266 superior frontal gyrus_female_91_AD_11    GSM1176266   \n",
+       "GSM1176267 superior frontal gyrus_female_94_AD_70    GSM1176267   \n",
+       "GSM1176268 superior frontal gyrus_female_95_AD_64    GSM1176268   \n",
+       "GSM1176269 superior frontal gyrus_male_76_AD_33      GSM1176269   \n",
+       "GSM1176270 superior frontal gyrus_male_85_AD_51      GSM1176270   \n",
+       "GSM1176271 superior frontal gyrus_male_85_AD_74      GSM1176271   \n",
+       "GSM1176272 superior frontal gyrus_male_86_AD_92      GSM1176272   \n",
+       "GSM1176273 superior frontal gyrus_male_94_AD_44      GSM1176273   \n",
+       "GSM1176274 superior frontal gyrus_male_94_AD_5       GSM1176274   \n",
+       "GSM1176275 superior frontal gyrus_male_94_AD_90      GSM1176275   \n",
+       "           status                submission_date last_update_date type\n",
+       "GSM300166  Public on Oct 09 2008 Jun 25 2008     Jun 26 2019      RNA \n",
+       "GSM300167  Public on Oct 09 2008 Jun 25 2008     Jun 26 2019      RNA \n",
+       "GSM300168  Public on Oct 09 2008 Jun 25 2008     Jun 26 2019      RNA \n",
+       "GSM300169  Public on Oct 09 2008 Jun 25 2008     Jun 26 2019      RNA \n",
+       "GSM300170  Public on Oct 09 2008 Jun 25 2008     Jun 26 2019      RNA \n",
+       "GSM300171  Public on Oct 09 2008 Jun 25 2008     Jun 26 2019      RNA \n",
+       "GSM300172  Public on Oct 09 2008 Jun 25 2008     Jun 26 2019      RNA \n",
+       "GSM300173  Public on Oct 09 2008 Jun 25 2008     Jun 26 2019      RNA \n",
+       "GSM300174  Public on Oct 09 2008 Jun 25 2008     Jun 26 2019      RNA \n",
+       "GSM300175  Public on Oct 09 2008 Jun 25 2008     Jun 26 2019      RNA \n",
+       "GSM300176  Public on Oct 09 2008 Jun 25 2008     Jun 26 2019      RNA \n",
+       "GSM300177  Public on Oct 09 2008 Jun 25 2008     Jun 26 2019      RNA \n",
+       "GSM300178  Public on Oct 09 2008 Jun 25 2008     Jun 26 2019      RNA \n",
+       "GSM300179  Public on Oct 09 2008 Jun 25 2008     Jun 26 2019      RNA \n",
+       "GSM300180  Public on Oct 09 2008 Jun 25 2008     Jun 26 2019      RNA \n",
+       "GSM300181  Public on Oct 09 2008 Jun 25 2008     Jun 26 2019      RNA \n",
+       "GSM300182  Public on Oct 09 2008 Jun 25 2008     Jun 26 2019      RNA \n",
+       "GSM300183  Public on Oct 09 2008 Jun 25 2008     Jun 26 2019      RNA \n",
+       "GSM300185  Public on Oct 09 2008 Jun 25 2008     Jun 26 2019      RNA \n",
+       "GSM300186  Public on Oct 09 2008 Jun 25 2008     Jun 26 2019      RNA \n",
+       "GSM300187  Public on Oct 09 2008 Jun 25 2008     Jun 26 2019      RNA \n",
+       "GSM300188  Public on Oct 09 2008 Jun 25 2008     Jun 26 2019      RNA \n",
+       "GSM300189  Public on Oct 09 2008 Jun 25 2008     Jun 26 2019      RNA \n",
+       "GSM300190  Public on Oct 09 2008 Jun 25 2008     Jun 26 2019      RNA \n",
+       "GSM300191  Public on Oct 09 2008 Jun 25 2008     Jun 26 2019      RNA \n",
+       "GSM300192  Public on Oct 09 2008 Jun 25 2008     Jun 26 2019      RNA \n",
+       "GSM300193  Public on Oct 09 2008 Jun 25 2008     Jun 26 2019      RNA \n",
+       "GSM300194  Public on Oct 09 2008 Jun 25 2008     Jun 26 2019      RNA \n",
+       "GSM300195  Public on Oct 09 2008 Jun 25 2008     Jun 26 2019      RNA \n",
+       "GSM300196  Public on Oct 09 2008 Jun 25 2008     Jun 26 2019      RNA \n",
+       "...        ...                   ...             ...              ... \n",
+       "GSM1176246 Public on Apr 21 2014 Jun 27 2013     Jun 26 2019      RNA \n",
+       "GSM1176247 Public on Apr 21 2014 Jun 27 2013     Jun 26 2019      RNA \n",
+       "GSM1176248 Public on Apr 21 2014 Jun 27 2013     Jun 26 2019      RNA \n",
+       "GSM1176249 Public on Apr 21 2014 Jun 27 2013     Jun 26 2019      RNA \n",
+       "GSM1176250 Public on Apr 21 2014 Jun 27 2013     Jun 26 2019      RNA \n",
+       "GSM1176251 Public on Apr 21 2014 Jun 27 2013     Jun 26 2019      RNA \n",
+       "GSM1176252 Public on Apr 21 2014 Jun 27 2013     Jun 26 2019      RNA \n",
+       "GSM1176253 Public on Apr 21 2014 Jun 27 2013     Jun 26 2019      RNA \n",
+       "GSM1176254 Public on Apr 21 2014 Jun 27 2013     Jun 26 2019      RNA \n",
+       "GSM1176255 Public on Apr 21 2014 Jun 27 2013     Jun 26 2019      RNA \n",
+       "GSM1176256 Public on Apr 21 2014 Jun 27 2013     Jun 26 2019      RNA \n",
+       "GSM1176257 Public on Apr 21 2014 Jun 27 2013     Jun 26 2019      RNA \n",
+       "GSM1176258 Public on Apr 21 2014 Jun 27 2013     Jun 26 2019      RNA \n",
+       "GSM1176259 Public on Apr 21 2014 Jun 27 2013     Jun 26 2019      RNA \n",
+       "GSM1176260 Public on Apr 21 2014 Jun 27 2013     Jun 26 2019      RNA \n",
+       "GSM1176261 Public on Apr 21 2014 Jun 27 2013     Jun 26 2019      RNA \n",
+       "GSM1176262 Public on Apr 21 2014 Jun 27 2013     Jun 26 2019      RNA \n",
+       "GSM1176263 Public on Apr 21 2014 Jun 27 2013     Jun 26 2019      RNA \n",
+       "GSM1176264 Public on Apr 21 2014 Jun 27 2013     Jun 26 2019      RNA \n",
+       "GSM1176265 Public on Apr 21 2014 Jun 27 2013     Jun 26 2019      RNA \n",
+       "GSM1176266 Public on Apr 21 2014 Jun 27 2013     Jun 26 2019      RNA \n",
+       "GSM1176267 Public on Apr 21 2014 Jun 27 2013     Jun 26 2019      RNA \n",
+       "GSM1176268 Public on Apr 21 2014 Jun 27 2013     Jun 26 2019      RNA \n",
+       "GSM1176269 Public on Apr 21 2014 Jun 27 2013     Jun 26 2019      RNA \n",
+       "GSM1176270 Public on Apr 21 2014 Jun 27 2013     Jun 26 2019      RNA \n",
+       "GSM1176271 Public on Apr 21 2014 Jun 27 2013     Jun 26 2019      RNA \n",
+       "GSM1176272 Public on Apr 21 2014 Jun 27 2013     Jun 26 2019      RNA \n",
+       "GSM1176273 Public on Apr 21 2014 Jun 27 2013     Jun 26 2019      RNA \n",
+       "GSM1176274 Public on Apr 21 2014 Jun 27 2013     Jun 26 2019      RNA \n",
+       "GSM1176275 Public on Apr 21 2014 Jun 27 2013     Jun 26 2019      RNA \n",
+       "           channel_count source_name_ch1                                \n",
+       "GSM300166  1             brain, postcentral gyrus, female, 91 years     \n",
+       "GSM300167  1             brain, superior frontal gyrus, female, 91 years\n",
+       "GSM300168  1             brain, hippocampus, female, 96 years           \n",
+       "GSM300169  1             brain, hippocampus, male, 82 years             \n",
+       "GSM300170  1             brain, hippocampus, male, 84 years             \n",
+       "GSM300171  1             brain, hippocampus, female, 87 years           \n",
+       "GSM300172  1             brain, hippocampus, female, 82 years           \n",
+       "GSM300173  1             brain, entorhinal cortex, male, 45 years       \n",
+       "GSM300174  1             brain, hippocampus, male, 45 years             \n",
+       "GSM300175  1             brain, postcentral gyrus, male, 45 years       \n",
+       "GSM300176  1             brain, superior frontal gyrus, male, 45 years  \n",
+       "GSM300177  1             brain, entorhinal cortex, male, 95 years       \n",
+       "GSM300178  1             brain, hippocampus, male, 95 years             \n",
+       "GSM300179  1             brain, postcentral gyrus, male, 95 years       \n",
+       "GSM300180  1             brain, superior frontal gyrus, male, 95 years  \n",
+       "GSM300181  1             brain, entorhinal cortex, male, 80 years       \n",
+       "GSM300182  1             brain, hippocampus, male, 80 years             \n",
+       "GSM300183  1             brain, postcentral gyrus, male, 80 years       \n",
+       "GSM300185  1             brain, hippocampus, male, 91 years             \n",
+       "GSM300186  1             brain, entorhinal cortex, female, 45 years     \n",
+       "GSM300187  1             brain, hippocampus, female, 45 years           \n",
+       "GSM300188  1             brain, superior frontal gyrus, female, 45 years\n",
+       "GSM300189  1             brain, entorhinal cortex, female, 74 years     \n",
+       "GSM300190  1             brain, hippocampus, female, 74 years           \n",
+       "GSM300191  1             brain, superior frontal gyrus, female, 74 years\n",
+       "GSM300192  1             brain, entorhinal cortex, female, 99 years     \n",
+       "GSM300193  1             brain, hippocampus, female, 99 years           \n",
+       "GSM300194  1             brain, postcentral gyrus, female, 99 years     \n",
+       "GSM300195  1             brain, superior frontal gyrus, female, 99 years\n",
+       "GSM300196  1             brain, entorhinal cortex, female, 74 years     \n",
+       "...        ...           ...                                            \n",
+       "GSM1176246 1             post-central gyrus_male_AD                     \n",
+       "GSM1176247 1             post-central gyrus_male_AD                     \n",
+       "GSM1176248 1             post-central gyrus_male_AD                     \n",
+       "GSM1176249 1             post-central gyrus_male_AD                     \n",
+       "GSM1176250 1             post-central gyrus_male_AD                     \n",
+       "GSM1176251 1             post-central gyrus_male_AD                     \n",
+       "GSM1176252 1             post-central gyrus_male_AD                     \n",
+       "GSM1176253 1             post-central gyrus_male_AD                     \n",
+       "GSM1176254 1             post-central gyrus_male_AD                     \n",
+       "GSM1176255 1             superior frontal gyrus_female_AD               \n",
+       "GSM1176256 1             superior frontal gyrus_female_AD               \n",
+       "GSM1176257 1             superior frontal gyrus_female_AD               \n",
+       "GSM1176258 1             superior frontal gyrus_female_AD               \n",
+       "GSM1176259 1             superior frontal gyrus_female_AD               \n",
+       "GSM1176260 1             superior frontal gyrus_female_AD               \n",
+       "GSM1176261 1             superior frontal gyrus_female_AD               \n",
+       "GSM1176262 1             superior frontal gyrus_female_AD               \n",
+       "GSM1176263 1             superior frontal gyrus_female_AD               \n",
+       "GSM1176264 1             superior frontal gyrus_female_AD               \n",
+       "GSM1176265 1             superior frontal gyrus_female_AD               \n",
+       "GSM1176266 1             superior frontal gyrus_female_AD               \n",
+       "GSM1176267 1             superior frontal gyrus_female_AD               \n",
+       "GSM1176268 1             superior frontal gyrus_female_AD               \n",
+       "GSM1176269 1             superior frontal gyrus_male_AD                 \n",
+       "GSM1176270 1             superior frontal gyrus_male_AD                 \n",
+       "GSM1176271 1             superior frontal gyrus_male_AD                 \n",
+       "GSM1176272 1             superior frontal gyrus_male_AD                 \n",
+       "GSM1176273 1             superior frontal gyrus_male_AD                 \n",
+       "GSM1176274 1             superior frontal gyrus_male_AD                 \n",
+       "GSM1176275 1             superior frontal gyrus_male_AD                 \n",
+       "           organism_ch1 characteristics_ch1  ... relation                \n",
+       "GSM300166  Homo sapiens individual: 10, C    ... Reanalyzed by: GSE119087\n",
+       "GSM300167  Homo sapiens individual: 10, C    ... Reanalyzed by: GSE119087\n",
+       "GSM300168  Homo sapiens individual: 105, C   ... Reanalyzed by: GSE119087\n",
+       "GSM300169  Homo sapiens individual: 106, C   ... Reanalyzed by: GSE119087\n",
+       "GSM300170  Homo sapiens individual: 108, C   ... Reanalyzed by: GSE119087\n",
+       "GSM300171  Homo sapiens individual: 109, C   ... Reanalyzed by: GSE119087\n",
+       "GSM300172  Homo sapiens individual: 111, C   ... Reanalyzed by: GSE119087\n",
+       "GSM300173  Homo sapiens individual: 12, AA   ... Reanalyzed by: GSE119087\n",
+       "GSM300174  Homo sapiens individual: 12, AA   ... Reanalyzed by: GSE119087\n",
+       "GSM300175  Homo sapiens individual: 12, AA   ... Reanalyzed by: GSE119087\n",
+       "GSM300176  Homo sapiens individual: 12, AA   ... Reanalyzed by: GSE119087\n",
+       "GSM300177  Homo sapiens individual: 14, C    ... Reanalyzed by: GSE119087\n",
+       "GSM300178  Homo sapiens individual: 14, C    ... Reanalyzed by: GSE119087\n",
+       "GSM300179  Homo sapiens individual: 14, C    ... Reanalyzed by: GSE119087\n",
+       "GSM300180  Homo sapiens individual: 14, C    ... Reanalyzed by: GSE119087\n",
+       "GSM300181  Homo sapiens individual: 15, C    ... Reanalyzed by: GSE119087\n",
+       "GSM300182  Homo sapiens individual: 15, C    ... Reanalyzed by: GSE119087\n",
+       "GSM300183  Homo sapiens individual: 15, C    ... Reanalyzed by: GSE119087\n",
+       "GSM300185  Homo sapiens individual: 16-07, C ... Reanalyzed by: GSE119087\n",
+       "GSM300186  Homo sapiens individual: 17, C    ... Reanalyzed by: GSE119087\n",
+       "GSM300187  Homo sapiens individual: 17, C    ... Reanalyzed by: GSE119087\n",
+       "GSM300188  Homo sapiens individual: 17, C    ... Reanalyzed by: GSE119087\n",
+       "GSM300189  Homo sapiens individual: 18, C    ... Reanalyzed by: GSE119087\n",
+       "GSM300190  Homo sapiens individual: 18, C    ... Reanalyzed by: GSE119087\n",
+       "GSM300191  Homo sapiens individual: 18, C    ... Reanalyzed by: GSE119087\n",
+       "GSM300192  Homo sapiens individual: 2, C     ... Reanalyzed by: GSE119087\n",
+       "GSM300193  Homo sapiens individual: 2, C     ... Reanalyzed by: GSE119087\n",
+       "GSM300194  Homo sapiens individual: 2, C     ... Reanalyzed by: GSE119087\n",
+       "GSM300195  Homo sapiens individual: 2, C     ... Reanalyzed by: GSE119087\n",
+       "GSM300196  Homo sapiens individual: 21, C    ... Reanalyzed by: GSE119087\n",
+       "...        ...          ...                      ...                     \n",
+       "GSM1176246 Homo sapiens gender: male         ... Reanalyzed by: GSE133349\n",
+       "GSM1176247 Homo sapiens gender: male         ... Reanalyzed by: GSE133349\n",
+       "GSM1176248 Homo sapiens gender: male         ... Reanalyzed by: GSE133349\n",
+       "GSM1176249 Homo sapiens gender: male         ... Reanalyzed by: GSE133349\n",
+       "GSM1176250 Homo sapiens gender: male         ... Reanalyzed by: GSE133349\n",
+       "GSM1176251 Homo sapiens gender: male         ... Reanalyzed by: GSE133349\n",
+       "GSM1176252 Homo sapiens gender: male         ... Reanalyzed by: GSE133349\n",
+       "GSM1176253 Homo sapiens gender: male         ... Reanalyzed by: GSE133349\n",
+       "GSM1176254 Homo sapiens gender: male         ... Reanalyzed by: GSE133349\n",
+       "GSM1176255 Homo sapiens gender: female       ... Reanalyzed by: GSE133349\n",
+       "GSM1176256 Homo sapiens gender: female       ... Reanalyzed by: GSE133349\n",
+       "GSM1176257 Homo sapiens gender: female       ... Reanalyzed by: GSE133349\n",
+       "GSM1176258 Homo sapiens gender: female       ... Reanalyzed by: GSE133349\n",
+       "GSM1176259 Homo sapiens gender: female       ... Reanalyzed by: GSE133349\n",
+       "GSM1176260 Homo sapiens gender: female       ... Reanalyzed by: GSE133349\n",
+       "GSM1176261 Homo sapiens gender: female       ... Reanalyzed by: GSE133349\n",
+       "GSM1176262 Homo sapiens gender: female       ... Reanalyzed by: GSE133349\n",
+       "GSM1176263 Homo sapiens gender: female       ... Reanalyzed by: GSE133349\n",
+       "GSM1176264 Homo sapiens gender: female       ... Reanalyzed by: GSE133349\n",
+       "GSM1176265 Homo sapiens gender: female       ... Reanalyzed by: GSE133349\n",
+       "GSM1176266 Homo sapiens gender: female       ... Reanalyzed by: GSE133349\n",
+       "GSM1176267 Homo sapiens gender: female       ... Reanalyzed by: GSE133349\n",
+       "GSM1176268 Homo sapiens gender: female       ... Reanalyzed by: GSE133349\n",
+       "GSM1176269 Homo sapiens gender: male         ... Reanalyzed by: GSE133349\n",
+       "GSM1176270 Homo sapiens gender: male         ... Reanalyzed by: GSE133349\n",
+       "GSM1176271 Homo sapiens gender: male         ... Reanalyzed by: GSE133349\n",
+       "GSM1176272 Homo sapiens gender: male         ... Reanalyzed by: GSE133349\n",
+       "GSM1176273 Homo sapiens gender: male         ... Reanalyzed by: GSE133349\n",
+       "GSM1176274 Homo sapiens gender: male         ... Reanalyzed by: GSE133349\n",
+       "GSM1176275 Homo sapiens gender: male         ... Reanalyzed by: GSE133349\n",
+       "           relation.1               relation.2 age (yrs):ch1 apoe genotype:ch1\n",
+       "GSM300166  Reanalyzed by: GSE133349            91            NA               \n",
+       "GSM300167  Reanalyzed by: GSE133349            91            NA               \n",
+       "GSM300168  Reanalyzed by: GSE133349            96            NA               \n",
+       "GSM300169  Reanalyzed by: GSE133349            82            NA               \n",
+       "GSM300170  Reanalyzed by: GSE133349            84            NA               \n",
+       "GSM300171  Reanalyzed by: GSE133349            87            NA               \n",
+       "GSM300172  Reanalyzed by: GSE133349            82            NA               \n",
+       "GSM300173  Reanalyzed by: GSE133349            45            NA               \n",
+       "GSM300174  Reanalyzed by: GSE133349            45            NA               \n",
+       "GSM300175  Reanalyzed by: GSE133349            45            NA               \n",
+       "GSM300176  Reanalyzed by: GSE133349            45            NA               \n",
+       "GSM300177  Reanalyzed by: GSE133349            95            NA               \n",
+       "GSM300178  Reanalyzed by: GSE133349            95            NA               \n",
+       "GSM300179  Reanalyzed by: GSE133349            95            NA               \n",
+       "GSM300180  Reanalyzed by: GSE133349            95            NA               \n",
+       "GSM300181  Reanalyzed by: GSE133349            80            NA               \n",
+       "GSM300182  Reanalyzed by: GSE133349            80            NA               \n",
+       "GSM300183  Reanalyzed by: GSE133349            80            NA               \n",
+       "GSM300185  Reanalyzed by: GSE133349            91            NA               \n",
+       "GSM300186  Reanalyzed by: GSE133349            45            NA               \n",
+       "GSM300187  Reanalyzed by: GSE133349            45            NA               \n",
+       "GSM300188  Reanalyzed by: GSE133349            45            NA               \n",
+       "GSM300189  Reanalyzed by: GSE133349            74            NA               \n",
+       "GSM300190  Reanalyzed by: GSE133349            74            NA               \n",
+       "GSM300191  Reanalyzed by: GSE133349            74            NA               \n",
+       "GSM300192  Reanalyzed by: GSE133349            99            NA               \n",
+       "GSM300193  Reanalyzed by: GSE133349            99            NA               \n",
+       "GSM300194  Reanalyzed by: GSE133349            99            NA               \n",
+       "GSM300195  Reanalyzed by: GSE133349            99            NA               \n",
+       "GSM300196  Reanalyzed by: GSE133349            74            NA               \n",
+       "...        ...                      ...        ...           ...              \n",
+       "GSM1176246                                     76            4,4              \n",
+       "GSM1176247                                     79            3,4              \n",
+       "GSM1176248                                     85            3,3              \n",
+       "GSM1176249                                     85            3,4              \n",
+       "GSM1176250                                     86            3,3              \n",
+       "GSM1176251                                     87            3,4              \n",
+       "GSM1176252                                     94            3,4              \n",
+       "GSM1176253                                     94            3,3              \n",
+       "GSM1176254                                     94            3,3              \n",
+       "GSM1176255                                     74            2,4              \n",
+       "GSM1176256                                     76            3,3              \n",
+       "GSM1176257                                     86            4,4              \n",
+       "GSM1176258                                     82            3,4              \n",
+       "GSM1176259                                     85            3,4              \n",
+       "GSM1176260                                     85            3,3              \n",
+       "GSM1176261                                     88            3,4              \n",
+       "GSM1176262                                     90            3,4              \n",
+       "GSM1176263                                     90            3,4              \n",
+       "GSM1176264                                     90            3,4              \n",
+       "GSM1176265                                     90            4,4              \n",
+       "GSM1176266                                     91            4,4              \n",
+       "GSM1176267                                     94            3,3              \n",
+       "GSM1176268                                     95            3,3              \n",
+       "GSM1176269                                     76            4,4              \n",
+       "GSM1176270                                     85            3,3              \n",
+       "GSM1176271                                     85            3,4              \n",
+       "GSM1176272                                     86            3,3              \n",
+       "GSM1176273                                     94            3,4              \n",
+       "GSM1176274                                     94            3,3              \n",
+       "GSM1176275                                     94            3,3              \n",
+       "           braak stage:ch1 brain region:ch1       gender:ch1 individual:ch1\n",
+       "GSM300166  NA              postcentral gyrus      female     10, C         \n",
+       "GSM300167  NA              superior frontal gyrus female     10, C         \n",
+       "GSM300168  NA              hippocampus            female     105, C        \n",
+       "GSM300169  NA              hippocampus            male       106, C        \n",
+       "GSM300170  NA              hippocampus            male       108, C        \n",
+       "GSM300171  NA              hippocampus            female     109, C        \n",
+       "GSM300172  NA              hippocampus            female     111, C        \n",
+       "GSM300173  NA              entorhinal cortex      male       12, AA        \n",
+       "GSM300174  NA              hippocampus            male       12, AA        \n",
+       "GSM300175  NA              postcentral gyrus      male       12, AA        \n",
+       "GSM300176  NA              superior frontal gyrus male       12, AA        \n",
+       "GSM300177  NA              entorhinal cortex      male       14, C         \n",
+       "GSM300178  NA              hippocampus            male       14, C         \n",
+       "GSM300179  NA              postcentral gyrus      male       14, C         \n",
+       "GSM300180  NA              superior frontal gyrus male       14, C         \n",
+       "GSM300181  NA              entorhinal cortex      male       15, C         \n",
+       "GSM300182  NA              hippocampus            male       15, C         \n",
+       "GSM300183  NA              postcentral gyrus      male       15, C         \n",
+       "GSM300185  NA              hippocampus            male       16-07, C      \n",
+       "GSM300186  NA              entorhinal cortex      female     17, C         \n",
+       "GSM300187  NA              hippocampus            female     17, C         \n",
+       "GSM300188  NA              superior frontal gyrus female     17, C         \n",
+       "GSM300189  NA              entorhinal cortex      female     18, C         \n",
+       "GSM300190  NA              hippocampus            female     18, C         \n",
+       "GSM300191  NA              superior frontal gyrus female     18, C         \n",
+       "GSM300192  NA              entorhinal cortex      female     2, C          \n",
+       "GSM300193  NA              hippocampus            female     2, C          \n",
+       "GSM300194  NA              postcentral gyrus      female     2, C          \n",
+       "GSM300195  NA              superior frontal gyrus female     2, C          \n",
+       "GSM300196  NA              entorhinal cortex      female     21, C         \n",
+       "...        ...             ...                    ...        ...           \n",
+       "GSM1176246 III             post-central gyrus     male       NA            \n",
+       "GSM1176247 VI              post-central gyrus     male       NA            \n",
+       "GSM1176248 III             post-central gyrus     male       NA            \n",
+       "GSM1176249 II              post-central gyrus     male       NA            \n",
+       "GSM1176250 IV              post-central gyrus     male       NA            \n",
+       "GSM1176251 V               post-central gyrus     male       NA            \n",
+       "GSM1176252 IV              post-central gyrus     male       NA            \n",
+       "GSM1176253 VI              post-central gyrus     male       NA            \n",
+       "GSM1176254 IV              post-central gyrus     male       NA            \n",
+       "GSM1176255 VI              superior frontal gyrus female     NA            \n",
+       "GSM1176256 V               superior frontal gyrus female     NA            \n",
+       "GSM1176257 VI              superior frontal gyrus female     NA            \n",
+       "GSM1176258 VI              superior frontal gyrus female     NA            \n",
+       "GSM1176259 IV              superior frontal gyrus female     NA            \n",
+       "GSM1176260 V               superior frontal gyrus female     NA            \n",
+       "GSM1176261 IV              superior frontal gyrus female     NA            \n",
+       "GSM1176262 VI              superior frontal gyrus female     NA            \n",
+       "GSM1176263 IV              superior frontal gyrus female     NA            \n",
+       "GSM1176264 V               superior frontal gyrus female     NA            \n",
+       "GSM1176265 III             superior frontal gyrus female     NA            \n",
+       "GSM1176266 V-VI            superior frontal gyrus female     NA            \n",
+       "GSM1176267 I               superior frontal gyrus female     NA            \n",
+       "GSM1176268 no info         superior frontal gyrus female     NA            \n",
+       "GSM1176269 V               superior frontal gyrus male       NA            \n",
+       "GSM1176270 III             superior frontal gyrus male       NA            \n",
+       "GSM1176271 II              superior frontal gyrus male       NA            \n",
+       "GSM1176272 IV              superior frontal gyrus male       NA            \n",
+       "GSM1176273 IV              superior frontal gyrus male       NA            \n",
+       "GSM1176274 VI              superior frontal gyrus male       NA            \n",
+       "GSM1176275 IV              superior frontal gyrus male       NA            \n",
+       "           mmse:ch1\n",
+       "GSM300166  NA      \n",
+       "GSM300167  NA      \n",
+       "GSM300168  NA      \n",
+       "GSM300169  NA      \n",
+       "GSM300170  NA      \n",
+       "GSM300171  NA      \n",
+       "GSM300172  NA      \n",
+       "GSM300173  NA      \n",
+       "GSM300174  NA      \n",
+       "GSM300175  NA      \n",
+       "GSM300176  NA      \n",
+       "GSM300177  NA      \n",
+       "GSM300178  NA      \n",
+       "GSM300179  NA      \n",
+       "GSM300180  NA      \n",
+       "GSM300181  NA      \n",
+       "GSM300182  NA      \n",
+       "GSM300183  NA      \n",
+       "GSM300185  NA      \n",
+       "GSM300186  NA      \n",
+       "GSM300187  NA      \n",
+       "GSM300188  NA      \n",
+       "GSM300189  NA      \n",
+       "GSM300190  NA      \n",
+       "GSM300191  NA      \n",
+       "GSM300192  NA      \n",
+       "GSM300193  NA      \n",
+       "GSM300194  NA      \n",
+       "GSM300195  NA      \n",
+       "GSM300196  NA      \n",
+       "...        ...     \n",
+       "GSM1176246 no info \n",
+       "GSM1176247 6       \n",
+       "GSM1176248 22      \n",
+       "GSM1176249 no info \n",
+       "GSM1176250 19      \n",
+       "GSM1176251 12      \n",
+       "GSM1176252 18      \n",
+       "GSM1176253 15      \n",
+       "GSM1176254 no info \n",
+       "GSM1176255 17      \n",
+       "GSM1176256 3       \n",
+       "GSM1176257 9       \n",
+       "GSM1176258 0       \n",
+       "GSM1176259 26      \n",
+       "GSM1176260 no info \n",
+       "GSM1176261 27      \n",
+       "GSM1176262 12      \n",
+       "GSM1176263 17      \n",
+       "GSM1176264 20      \n",
+       "GSM1176265 no info \n",
+       "GSM1176266 11      \n",
+       "GSM1176267 no info \n",
+       "GSM1176268 no info \n",
+       "GSM1176269 0       \n",
+       "GSM1176270 22      \n",
+       "GSM1176271 no info \n",
+       "GSM1176272 19      \n",
+       "GSM1176273 18      \n",
+       "GSM1176274 15      \n",
+       "GSM1176275 no info "
+      ]
+     },
+     "metadata": {},
+     "output_type": "display_data"
+    }
+   ],
+   "source": [
+    "pData(gse[[1]])"
+   ]
+  },
+  {
+   "cell_type": "code",
+   "execution_count": 8,
+   "metadata": {
+    "vscode": {
+     "languageId": "r"
+    }
+   },
+   "outputs": [],
+   "source": [
+    "#samples annotation\n",
+    "write.table(pData(gse[[1]]), file = paste0(\"AD-GSE48350.pData.tsv\"), sep = \"\\t\")"
+   ]
+  },
+  {
+   "cell_type": "code",
+   "execution_count": 9,
+   "metadata": {
+    "vscode": {
+     "languageId": "r"
+    }
+   },
+   "outputs": [
+    {
+     "data": {
+      "text/html": [
+       "<style>\n",
+       ".list-inline {list-style: none; margin:0; padding: 0}\n",
+       ".list-inline>li {display: inline-block}\n",
+       ".list-inline>li:not(:last-child)::after {content: \"\\00b7\"; padding: 0 .5ex}\n",
+       "</style>\n",
+       "<ol class=list-inline><li>'GSM1176255'</li><li>'GSM1176256'</li><li>'GSM1176257'</li><li>'GSM1176258'</li><li>'GSM1176259'</li><li>'GSM1176260'</li><li>'GSM1176261'</li><li>'GSM1176262'</li><li>'GSM1176263'</li><li>'GSM1176264'</li><li>'GSM1176265'</li><li>'GSM1176266'</li><li>'GSM1176267'</li><li>'GSM1176268'</li><li>'GSM1176269'</li><li>'GSM1176270'</li><li>'GSM1176271'</li><li>'GSM1176272'</li><li>'GSM1176273'</li><li>'GSM1176274'</li><li>'GSM1176275'</li></ol>\n"
+      ],
+      "text/latex": [
+       "\\begin{enumerate*}\n",
+       "\\item 'GSM1176255'\n",
+       "\\item 'GSM1176256'\n",
+       "\\item 'GSM1176257'\n",
+       "\\item 'GSM1176258'\n",
+       "\\item 'GSM1176259'\n",
+       "\\item 'GSM1176260'\n",
+       "\\item 'GSM1176261'\n",
+       "\\item 'GSM1176262'\n",
+       "\\item 'GSM1176263'\n",
+       "\\item 'GSM1176264'\n",
+       "\\item 'GSM1176265'\n",
+       "\\item 'GSM1176266'\n",
+       "\\item 'GSM1176267'\n",
+       "\\item 'GSM1176268'\n",
+       "\\item 'GSM1176269'\n",
+       "\\item 'GSM1176270'\n",
+       "\\item 'GSM1176271'\n",
+       "\\item 'GSM1176272'\n",
+       "\\item 'GSM1176273'\n",
+       "\\item 'GSM1176274'\n",
+       "\\item 'GSM1176275'\n",
+       "\\end{enumerate*}\n"
+      ],
+      "text/markdown": [
+       "1. 'GSM1176255'\n",
+       "2. 'GSM1176256'\n",
+       "3. 'GSM1176257'\n",
+       "4. 'GSM1176258'\n",
+       "5. 'GSM1176259'\n",
+       "6. 'GSM1176260'\n",
+       "7. 'GSM1176261'\n",
+       "8. 'GSM1176262'\n",
+       "9. 'GSM1176263'\n",
+       "10. 'GSM1176264'\n",
+       "11. 'GSM1176265'\n",
+       "12. 'GSM1176266'\n",
+       "13. 'GSM1176267'\n",
+       "14. 'GSM1176268'\n",
+       "15. 'GSM1176269'\n",
+       "16. 'GSM1176270'\n",
+       "17. 'GSM1176271'\n",
+       "18. 'GSM1176272'\n",
+       "19. 'GSM1176273'\n",
+       "20. 'GSM1176274'\n",
+       "21. 'GSM1176275'\n",
+       "\n",
+       "\n"
+      ],
+      "text/plain": [
+       " [1] \"GSM1176255\" \"GSM1176256\" \"GSM1176257\" \"GSM1176258\" \"GSM1176259\"\n",
+       " [6] \"GSM1176260\" \"GSM1176261\" \"GSM1176262\" \"GSM1176263\" \"GSM1176264\"\n",
+       "[11] \"GSM1176265\" \"GSM1176266\" \"GSM1176267\" \"GSM1176268\" \"GSM1176269\"\n",
+       "[16] \"GSM1176270\" \"GSM1176271\" \"GSM1176272\" \"GSM1176273\" \"GSM1176274\"\n",
+       "[21] \"GSM1176275\""
+      ]
+     },
+     "metadata": {},
+     "output_type": "display_data"
+    }
+   ],
+   "source": [
+    "#reading raw data\n",
+    "raw_data_dir <- paste0(\"GSE48350_RAW\")\n",
+    "fnames <- list.files(raw_data_dir, pattern = \".gz\")\n",
+    "snames <- unlist(lapply(fnames, getSnames, ext = \".CEL.gz\"))\n",
+    "snames <- sapply(strsplit(snames,\"_\"), '[', 1)\n",
+    "snames"
+   ]
+  },
+  {
+   "cell_type": "code",
+   "execution_count": 10,
+   "metadata": {
+    "vscode": {
+     "languageId": "r"
+    }
+   },
+   "outputs": [
+    {
+     "name": "stderr",
+     "output_type": "stream",
+     "text": [
+      "Warning message:\n",
+      "\"package 'affy' was built under R version 4.1.1\"\n",
+      "Warning message:\n",
+      "\"package 'affyio' was built under R version 4.1.1\"\n"
+     ]
+    }
+   ],
+   "source": [
+    "library(affy)\n",
+    "library(affyio)"
+   ]
+  },
+  {
+   "cell_type": "code",
+   "execution_count": 11,
+   "metadata": {
+    "vscode": {
+     "languageId": "r"
+    }
+   },
+   "outputs": [
+    {
+     "name": "stderr",
+     "output_type": "stream",
+     "text": [
+      "Warning message:\n",
+      "\"replacing previous import 'AnnotationDbi::tail' by 'utils::tail' when loading 'hgu133plus2cdf'\"\n",
+      "Warning message:\n",
+      "\"replacing previous import 'AnnotationDbi::head' by 'utils::head' when loading 'hgu133plus2cdf'\"\n",
+      "\n",
+      "\n"
+     ]
+    },
+    {
+     "data": {
+      "text/plain": [
+       "ExpressionSet (storageMode: lockedEnvironment)\n",
+       "assayData: 54675 features, 21 samples \n",
+       "  element names: exprs, se.exprs \n",
+       "protocolData\n",
+       "  sampleNames: GSM1176255 GSM1176256 ... GSM1176275 (21 total)\n",
+       "  varLabels: ScanDate\n",
+       "  varMetadata: labelDescription\n",
+       "phenoData\n",
+       "  sampleNames: GSM1176255 GSM1176256 ... GSM1176275 (21 total)\n",
+       "  varLabels: sample\n",
+       "  varMetadata: labelDescription\n",
+       "featureData: none\n",
+       "experimentData: use 'experimentData(object)'\n",
+       "Annotation: hgu133plus2 "
+      ]
+     },
+     "metadata": {},
+     "output_type": "display_data"
+    }
+   ],
+   "source": [
+    "eset_rma <- justRMA(filenames = fnames, celfile.path = raw_data_dir, sampleNames = snames)\n",
+    "eset_rma"
+   ]
+  },
+  {
+   "cell_type": "code",
+   "execution_count": 12,
+   "metadata": {
+    "vscode": {
+     "languageId": "r"
+    }
+   },
+   "outputs": [
+    {
+     "data": {
+      "image/png": "iVBORw0KGgoAAAANSUhEUgAABLAAAAHgCAYAAAC1l5SfAAAEDmlDQ1BrQ0dDb2xvclNwYWNlR2VuZXJpY1JHQgAAOI2NVV1oHFUUPpu5syskzoPUpqaSDv41lLRsUtGE2uj+ZbNt3CyTbLRBkMns3Z1pJjPj/KRpKT4UQRDBqOCT4P9bwSchaqvtiy2itFCiBIMo+ND6R6HSFwnruTOzu5O4a73L3PnmnO9+595z7t4LkLgsW5beJQIsGq4t5dPis8fmxMQ6dMF90A190C0rjpUqlSYBG+PCv9rt7yDG3tf2t/f/Z+uuUEcBiN2F2Kw4yiLiZQD+FcWyXYAEQfvICddi+AnEO2ycIOISw7UAVxieD/Cyz5mRMohfRSwoqoz+xNuIB+cj9loEB3Pw2448NaitKSLLRck2q5pOI9O9g/t/tkXda8Tbg0+PszB9FN8DuPaXKnKW4YcQn1Xk3HSIry5ps8UQ/2W5aQnxIwBdu7yFcgrxPsRjVXu8HOh0qao30cArp9SZZxDfg3h1wTzKxu5E/LUxX5wKdX5SnAzmDx4A4OIqLbB69yMesE1pKojLjVdoNsfyiPi45hZmAn3uLWdpOtfQOaVmikEs7ovj8hFWpz7EV6mel0L9Xy23FMYlPYZenAx0yDB1/PX6dledmQjikjkXCxqMJS9WtfFCyH9XtSekEF+2dH+P4tzITduTygGfv58a5VCTH5PtXD7EFZiNyUDBhHnsFTBgE0SQIA9pfFtgo6cKGuhooeilaKH41eDs38Ip+f4At1Rq/sjr6NEwQqb/I/DQqsLvaFUjvAx+eWirddAJZnAj1DFJL0mSg/gcIpPkMBkhoyCSJ8lTZIxk0TpKDjXHliJzZPO50dR5ASNSnzeLvIvod0HG/mdkmOC0z8VKnzcQ2M/Yz2vKldduXjp9bleLu0ZWn7vWc+l0JGcaai10yNrUnXLP/8Jf59ewX+c3Wgz+B34Df+vbVrc16zTMVgp9um9bxEfzPU5kPqUtVWxhs6OiWTVW+gIfywB9uXi7CGcGW/zk98k/kmvJ95IfJn/j3uQ+4c5zn3Kfcd+AyF3gLnJfcl9xH3OfR2rUee80a+6vo7EK5mmXUdyfQlrYLTwoZIU9wsPCZEtP6BWGhAlhL3p2N6sTjRdduwbHsG9kq32sgBepc+xurLPW4T9URpYGJ3ym4+8zA05u44QjST8ZIoVtu3qE7fWmdn5LPdqvgcZz8Ww8BWJ8X3w0PhQ/wnCDGd+LvlHs8dRy6bLLDuKMaZ20tZrqisPJ5ONiCq8yKhYM5cCgKOu66Lsc0aYOtZdo5QCwezI4wm9J/v0X23mlZXOfBjj8Jzv3WrY5D+CsA9D7aMs2gGfjve8ArD6mePZSeCfEYt8CONWDw8FXTxrPqx/r9Vt4biXeANh8vV7/+/16ffMD1N8AuKD/A/8leAvFY9bLAAAAOGVYSWZNTQAqAAAACAABh2kABAAAAAEAAAAaAAAAAAACoAIABAAAAAEAAASwoAMABAAAAAEAAAHgAAAAAAty/iQAAEAASURBVHgB7J0HmCRV1YZ7NhGXzJJhySJKBhEJawAJKgooUYIighgQkSCi8IuIiAICiqggSFAURESUJKDknHNYMixLTpvn/77Zvkttb/V0V3d1dd/u9zzPmaq66Zz7Vk2FU7dul0oIBCAAAQhAAAIQgAAEIAABCEAAAhCAAAQgAAEIQAACEIAABCAAAQhAAAIQgAAEIAABCEAAAhCAAAQgAAEIQAACEIAABCAAAQhAAAIQgAAEIAABCEAAAhCAAAQgAAEIQAACEIAABCAAAQhAAAIQgAAEIAABCEAAAhCAAAQgAAEIQAACEIAABCAAAQhAAAIQgAAEIAABCEAAAhCAAAQgAAEIQAACEIAABCAAAQhAAAIQgAAEIAABCEAAAhCAAAQgAAEIQAACEIAABCAAAQhAAAIQgAAEIAABCEAAAhCAAAQgAAEIQAACEIAABCAAAQhAAAIQgAAEIAABCEAAAhCAAAQgAAEIQAACEIAABCAAAQhAAAIQgAAEIAABCEAAAhCAAAQgAAEIQAACEIAABCAAAQhAAAIQgAAEIAABCEAAAhCAAAQgAAEIQAACEIAABCAAAQhAAAIQgAAEIAABCEAAAhCAAAQgAAEIQAACEIAABCAAAQhAAAIQgAAEIAABCEAAAhCAAAQgAAEIQAACEIAABCAAAQhAAAIQgAAEIAABCEAAAhCAAAQgAAEIQAACEIAABCAAAQhAAAIQgAAEIAABCEAAAhCAAAQgAAEIQAACEIAABCAAAQhAAAIQgAAEIAABCEAAAhCAAAQgAAEIQAACEIAABCAAAQhAAAIQgAAEIAABCEAAAhCAAAQgAAEIQAACEIAABCAAAQhAAAIQgAAEIAABCEAAAhCAAAQgAAEIQAACEIAABCAAAQhAAAIQgAAEIAABCEAAAhCAAAQgAAEIQAACEIAABCAAAQhAAAIQgAAEIAABCEAAAhCAAAQgAAEIQAACEIAABCAAAQhAAAIQgAAEIAABCEAAAhCAAAQgAAEIQAACEIAABCAAAQhAAAIQgAAEIAABCEAAAhCAAAQgAAEIQAACEIAABCAAAQhAAAIQgAAEIAABCEAAAhCAAAQgAAEIQAACEIAABCAAAQhAAAIQgAAEIAABCEAAAhCAAAQgAAEIQAACEIAABCAAAQhAAAIQgAAEIAABCEAAAhCAAAQgAAEIQAACEIAABCAAAQhAAAIQgAAEIAABCEAAAhCAAAQgAAEIQAACEIAABCAAAQhAAAIQgAAEIAABCEAAAhCAAAQgAAEIQAACEIAABCAAAQhAAAIQgAAEIAABCEAAAhCAAAQgAAEIQAACEIAABCAAAQhAAAIQgAAEIAABCEAAAhCAAAQgAAEIQAACEIAABCAAAQhAAAIQgAAEIAABCEAAAhCAAAQgAAEIQAACEIAABCAAAQhAAAIQgAAEIAABCEAAAhCAAAQgAAEIQAACEIAABCAAAQhAAAIQgAAEIAABCEAAAhCAAAQgAAEIQAACEGgNgb7WNEurEIAABCAAAQi0kMDSanst6aLSEdKnpU9J75FOktYjC6jQatJVpe9Ix0oflj4rTZO5lLh8WsYgaS8ob9wg+c5yu+uWy7js/eX1tMXsSrQPw6SPSt+W1hLf66wsnSZ9TDpV2kpZTo3bzweltllLvqICC0m97y6WriCdU2p5sawDGxH98bE5j3SK9No6/J5XZdxv75/X6ijvIo3UqbPpgWJz66/3ZZC7w0oHLBeWD6OlL0n9f1/PcaZiCAQgAAEIQAACEIAABCAAAQhAoBgCG8iMAwJ+YO1P0WeUtr90Dmk1WVsZDlSl1Xdw5yxpWqBqTJU6ae2EtENVp5b8XgVC+fOqFF5F6f+SVvb7OqWtV6WOg3sXSV+XhvYdqPutdKS0mjgg8MYgekdKxSFKO1L6ijTYekvrp0tDMEqrs4jzHHB0nQPKuTeVt512eDktpsVKcnay1P6b42Di4F0I9Lm81cfmZtJq0kidam0Nlm4fgk9eDh2scAF5w2VjH6mPz6Rf72r7V9IFpAgEIAABCEAAAhCAAAQgAAEIQKDtBH4gDzyiJfnwWm39cpXzyKxK2UEJDuJUqxfSX1aZpSsqj6mjXqgflrUCWJ+qaDMtgLWiyjgYFNqsXJrJR6RJ+aA2HMyrLBu2PdIn7YHffQ5lqi098qtS/q6EauXvVJ5HmaXJR5UY6oVAXMwBLPfz2kSfBgtgnZAoFxgkl/spv1IaqVPZRr3bnRbAOl2OJ/lUrj+p/Pnr7RzlIAABCEAAAhCAAAQgAAEIQAACrSDgkReVD6y3KO130l9Lx0or852XFI/g8OdZoZw/v/u39HvSU6WPS0Oel9dIkzJGG8n8G7V9aQ3dSfnVZEFlPC9NtpkWwLKNUOZVrZ8s9WinZIDqIW0n5W/aCHXe1Ppvpf+QTk6ke+RXpWythFCv2rIygDWmos6F2j5DOiGR/nWtp4mDkrZjH4eVC8QawFpW/ieDV+5XtQDW6spL8r1N28dJHYQJ6ea3gjRII3VC3UaWnRTA2l4dCFy8fFp6ktTckulnahuBAAQgAAEIQAACEIAABCAAAQi0hcAqspoMhjjos1WKJx6F5M+JwgPtJK2PSpT7eEWeAw5J6dOGRwuF+l46yBRkjFaSeWHEUMjPuvxzRXtuuzKA5U/zkqOvdk0Ysf2kP6GvXrrvIe9DiTp+6A/pLybSw+oPE/lnaN2fUlaqR2klxYGx0Ob5iYyfJNId9HJfKuVyJbjuZYmM2AJYI+X70dLkMRp4VAtgJUdS/SvR90W1PkUa6u+TyGukTqJ65tVOCmD9JcHkCq0nj6XfJfJezdxLKkAAAhCAAAQiIhDe9kXkMq5CAAIQgAAEeoqAH+JnS/R4B61fk9gOq9dp5VDpz6Ue0XOXdGXpOKnFI1iCONjg0VhJcdDAI4KOlXp0lnUZ6cvSvMV9+EK5UQcsqt2PeNTY0HI5L65OrN+m9Xekc5bTPHG6xf34qvQDUn/S5oBQEI9aC+J2HbRz+SBrhBUtb5D6U8PBxAG+ZDDxV4nCx2v94PK2g2AOMP6vvO2F+/zh8vZ/y8tqC39qubF0tNT79eLyUotZxMx2lK4n9WeS10v/Ln1a+g2p8y0OfIQAk4+T0I+JWvcot6R4JNRnygneX79MZB6j9b0T289ofcnEdtrq35T4nNT76LREgRe0bj9Hl9OCr95spI7rfVk6r1ckZ0kdEP2k9GNSp98s/bP0JWm90gwv2xgp3U3qdpaS+v/Rfb9a6n1rxkkx/8lS8zhHOk0a5DytuI+W+aSLSF/0BgIBCEAAAhCAAAQgAAEIQAACECiKgB9Yx0sdZLF6tM9g4pEZy0kdmKmUjyshtOOlH9w/K51TWo+MUaFkfQdIGpHFVMlBMbflB+1Ty+vediChUi5VQrC7byLTQYiQfl8ifbDVaxJ1zkwpODaRv7nWbWM/6WZSBwcqZQ0lBB+8XLyiQHLf7VKRZ36hroNTQW7SSkj/mdb/lNgO6Q4y7SmtFO9779dQLiztx4elDt6EtGW0HsQBxZD+ekhMLD+XyHewJSm/0YbretTbd6Q7lredltaWkqvKR5UT/PDS/aklteo8rgZCm5tqPY3Ps0rfqMKQ93mo5+XQRH4zvLZUO+H4T7Yf1m9Rvv/vK8X/06Oklf+v+ygt1HXg2uUQCEAAAhCAAAQgAAEIQAACEIBAoQRWlLXwcOrlAU1Yn0N1H6xoz206IHGpdH/p+6XVZIwykr6cpO2DBtEwKkRFZpJ/aiu048DIjxPbaQEsBxbCA79Hpri+y9lvtzNRur20mjjw4BFDj0iD3Se1voo0KfNrI+R76VEuyW37sK00KQ5GJMtUBh4eSOQfmKyodQd7XNf9mF0a5CathDbdX6+/LbXPIT3Uc0AjyBCt3CVNlhmn7afKae9oGdpzmWWkQXbQSqiXFnTyfgr59jcpx2vj11Ifq5ZabU0vNfNfB1f/JbWPwY6Dd4NJvXWSAawQUPRoJo8+C7a8dHBvMWmQVgSwFlXjr0mD3We17uP5dunURPpRWq9X/quCob1r6q1EOQhAAAIQgAAEIAABCEAAAhCAQJ4EPqrGwsOplw4kVIoDMetV0ZUqCn9Q28kH6GTbYf1mlXFwoFLGKCGUqWd5f2UD2v5Koo2zy/k/TqQ5MJUmyyrxeWmlXQcikqOXqtVN1ntMhRxIqJQxSkiWq7buAE0Qj4IK5RwcqpQ7lBDyj6vIvLCc5wBEUpIBLNf9iXS2coGttUwG1vYqp3vxZWmw5eU3nFgWjyTz6Jxk/uhynhe1gk6DBbAcOEtKrbaSZcP6GVpJ+vbdkDHIst46yQCWbTiYOYe0T7qdNBk0+622g7QigLWTGg/9vDwYKi+9j5z3jPQi6TzSWnKwCoT2vNy0VgXyIQABCEAAAhCAAAQgAAEIQAACrSCwjRpNPqCmBZaSIzCSZb1+SYpTiyrtNKlHnFSWD9v+HMyBiKSM0UbIr2dZGcByECoEUZ7T+gJSS60A1jCVcdChms1rlOc+VRMzq6x7vtKWrqiwX6KcRyF9S7qO9HvSZ6WhDc9VNJ/UcpA0pHuUVKU4GBjy/5jIdPAkjAY6MpHu1WQA615tVwaIHlJaaPMIVyiLRzCF9CtDYmKZ5OxyoxN53tehrvteKYMFsCrL1mqrsry3/ycN9r18Ubq71JyqSb11kgGsu9RYZZs/VVqw7f+JIK0IYH1JjQdb/l/4gXQ1afBpXq3XK/urYGjLy7/UW5FyEIAABCAAAQhAAAIQgAAEIACBvAlsoAaTD6l+AK6UrAGsUN+jUByY8KgTj0pK2vG6P2laQxpkjFaSZX6ubY/yqaa7KC+IgzDXSEP9T4cMLZOBlT8n0sPqRVoJ9W7Q+seknlDcQZqQ/rzW55emyYJKXFL6Aek50lDHwYplpUEcKFtR6s8CVwiJ5aX9DfW8/Hw5fa9EukeDVcqdSgj1jk9krppId6AkKTdpI9RJ43F9Iv+niYrJwJaDbpWykRJCu16OThSoFXTaJlF3QqJe2mqtttLqrKxE778vS5+TBj9P1no1qbdOMoBVGSx02x+WBntehs8IvV+S6UO1HaRWH6vxWl4N+DhJtuv1l6TnSHeS1jPy6hCVS7bhQGe1419ZCAQgAAEIQAACEIAABCAAAQhAoLUEllLzyQfVtAdwB4AuSOgriTppI7CUnSrvU+p50qS9AxMlx1TkrZfIq7X61UTd+7TuB/WgFybybiynf1JLi4MJSX8cAAgyXCsvS0O+gwq1ZDYVeE0a6pxUq0I5fw4t30nU+2E53YG00JaXySCHizyYyPdorSB7a8Xl/dnh3CGxvEwGsI6pyPPm1dJgM5k/MZH+Za1XioNyoZ6XoxMFkgEZjwyqlO2VEOrazmCSbOv1wQpWyUuOajOfRaqUSyYPVicZwPpaslJ5vfJ/bINyer0BrKy8dlP77lfgWbl0MCstUF12a2BEYLLOXcoYFTJZQgACEIAABLqZgN+IIhCAAAQgAAEIdCaBp+XW/QnXdtS6AzdJOVQbHvER9JFkZnl9di09wuMqqYMqbqdSnP4F6R2JjDGJ9WZWV0pUfr/Wz06o53UK8iGtOC8E6jYNGVp6lMljiW2PZHHgLshWYWWQpYMv/07kr5ZYH2z1XWU+lCjgUV2WF6cvZvwN6SFhobCi5XOJdY+Gspj1WwNr6X8cNKsUBy/SJBksWjilQFpaSrFZji+XceAvSDX7Ib/Z5d8TDTgg6NFqtaTeOsn9EdqsDCC+GjLqXFb+P7raYLzOUP7y0qOl/p+rFPv4O+lHKzO0fYj0x4l0BzvHSMcl0liFAAQgAAEIdC0BAlhdu2vpGAQgAAEIdAmBPyX6sZzW901sp62mPVBPUME1pGOkK0v3kFaTNxIZIxPr7VhNBoSWlAOVfVss4ZRHSVkcEHNA407p5dJKSQZEPIIriEdFHS/9i3TPkJhY2n6QECR8JiSUlw7OBXEgIum/g5FBNi6v/Dck5LAcm2hj/cR6WB0TVlKWkxJpI7Q+LLHt1UUrtpvZdNunS6+WPiH9pDQpyf3jdO+jRuok2wzrq4eVxHLFxPo0rXvEVi1plteTMnCodBXpEtJdpA7GTpVa+qQOSCdle20clUi4RuufkGYNuCWaYBUCEIAABCAAAQhAAAIQgAAEIJAfgfnU1DNSj3yx+iH7J1IHGpKynjb+Iw3lvPxXooCDM8k8t7F4It8PzQ7iJMuckMgfU5Fne/XKp1XwmCp6o9KDTY9IcblvSi0eqRTyvNzKiWWZR0sH5kL+D8vpWybSnPeRcroXa0tDeS8Pc2JZztEy5L2g9dlDhpbbJfLM3/NpBXEQKtT7a0jU8vuJ9LFa92giy2hpKO9gW6V4VE3IP7wyU9tXJfLNKsgPtRLq2cdPhQwt15E60BHyvRwtDeL+JPNcPog53CEN+R7FNpjsoMxQ9vUqBW9OlLksUWaI1i9M5Hn/hqBlI3Xc9OOJ9qZofQ0nlsX2rpQGf+8NGVpulkh3fth/LtIorx+p7nXS8dLkqDFtDsil+ht8OaWc5sUK0jelIc/ng6Wl86ao+4RAAAIQgAAEIAABCEAAAhCAAATaQmBzWfXDd3iA9dIP97dI/yOtDE6EcqcrL4hHerwkDXleOtBxg/Rv0kekyTy3nxydMqYif5y2n62hyeCEiqbKj5Ua7P65ooRHVT2RyHfw5Azp4dLnpaGeP/F7n9TiOmOlIc/9OFvqANXkRLr9X0QaZAuthDpemsfB0qOkbj/kVfpYGdyyrV9J307U+bbWg3xRK27L7BcIiYnlTVoPtg5PpIfVqxL5x4RELReSvpXIm6r166X/k3rEUGgzLEcrLcgIrSSPr/u1vat0d2kyQOe6eQSw9lE7wQ8vH5T+TPpYRfr/aTtII3Vc93Fp0paDakdI95Img1cus600yGZaSdZLBrAa5XVgRZs/1/bGUgeDvys122BzR60HOVYrIb3W0sEuBAIQgAAEIAABCEAAAhCAAAQg0DYCH5NlB11qPcA638GTI6XDpEn5pDYc0KnVhoNDH0pW1PoYaa16lfkeuVNLBgtgua5HzCSDQZU2vL2/CybEI62SQafKOmaQHM0VqjqgUFk2uX218iuDTg5sXDpIvYeUN1Ia5FStuM17QkLFstEAlpvZROoATdJnr78jPagifRltJ+UUbVTWC9snJvIcZBlMdlBmqGdfqsl5ygjl0pZXKb/y+G2kTjKAdfcgNi+qcHSwAJaLNsLLo9n+LU3rbzLNo9D6pBYvn5Im8wdbJ4BlaggEIAABCEAAAhCAAAQgAAEItJXAIrLuT9OSD+XhYXaa0j0i6zDpwtJqsrQyTpNOkIa6Xrr+WKnn4llSWiljlJAsX896HgEs+/FBqQMMlTY9YmdLaZqsrMRLpMk67uNV0jBaS6sziYMFu0mflibrvajtk6UeeZMmDmIdI31DGup5tNdfpfNKk/KgNlzG7aVJMwEst+eAn/evR5A9J/2TdH3pqtLgm5ejpEkZoo3fSN+UhnKPan13qY+nkObjZjDZQZmh7GABLAenvi7153ShvJevSr8jNdNKaaTO42oktL+v1reVJm161Nr/Sd3/pNQKYDXKazYZOVj6jDT4FZbjlLa/1IGuIB/RSsivZ0kAK5BjCQEIQAACEIAABCAAAQhAAAIdQcBBhbWkn5CuLp1fmkX8AL6UdGOpP2GaW9rp4mDQ2tIx0kWl9YhHP60jdR/nqqeCyjiQ5SCe2SwrrVfM1IGidaXJIESyvgNu1tHJxBzWfTwMtg83Un4yAFLNPweJzHgJaRFi1qOlY8pLb9eSLHUqA1hu2/XfJ/X/TVqgTMl1S6O8fKyY8fpl9fFcT99VDIEABCAAAQhAAAIQgAAEIAABCEAAAnESOEpuO0D1svR26UelSTlcGyGA5ZFrvSJpAaxe6Tv9hAAEIAABCHQVAb81QiAAAQhAAAIQgAAE4iZwXdn9BbS0niO9WPqG1COqNpQG+V1YYQkBCEAAAhCAAAQgAAEIQAACEIAABCAAgSIJnCVjYZRVtaVHZ40o0qk222IEVpt3AOYhAAEIQAACeRFo9rv/vPygHQhAAAIQgAAEIACB5gj41+vuki4o9T3enFLPq/Ss1OnHSPeWTpb2inj+s3FSB7KukPpXIREIQAACEIAABCAAAQhAAAIQgAAEIACBDiHg4BXTRXTIzsANCEAAAhCAAAQgAAEIQAACEIAABCAAAQhAAAIQgAAEIAABCEAAAhCAAAQgAAEIQAACEIAABCAAAQhAAAIQgAAEIAABCEAAAhCAAAQgAAEIQAACEIAABCAAAQhAAAIQgAAEIAABCEAAAhCAAAQgAAEIQAACEIAABCAAAQhAAAIQgAAEIAABCEAAAhCAAAQgAAEIQAACEIAABCAAAQhAAAIQgAAEIAABCEAAAhCAAAQgAAEIQAACEIAABCAAAQhAAAIQgAAEIAABCEAAAhCAAAQgAAEIQAACEIAABCAAAQhAAAIQgAAEIAABCEAAAhCAAAQgAAEIQAACEIAABCAAAQhAAAIQgAAEIAABCEAAAhCAAAQgAAEIQAACEIAABCAAAQhAAAIQgAAEIAABCEAAAhCAAAQgAAEIQAACEIAABCAAAQhAAAIQgAAEIAABCEAAAhCAAAQgAAEIQAACEIAABCAAAQhAAAIQgAAEIAABCEAAAhCAAAQgAAEIQAACEIAABCAAAQhAAAIQgAAEIAABCEAAAhCAAAQgAAEIQAACEIAABCAAAQhAAAIQgAAEIAABCEAAAhCAAAQgAAEIQAACEIAABCAAAQhAAAIQgAAEIAABCEAAAhCAAAQgAAEIQAACEIAABCAAAQhAAAIQgAAEIAABCEAAAhCAAAQgAAEIQAACEIAABCAAAQhAAAIQgAAEIAABCEAAAhCAAAQgAAEIQAACEIAABCAAAQhAAAIQgAAEIAABCEAAAhCAAAQgAAEIQAACEIAABCAAAQhAAAIQgAAEIAABCEAAAhCAAAQgAAEIQAACEIAABCAAAQhAAAIQgAAEIAABCEAAAhCAAAQgAAEIQAACEIAABCAAAQhAAAIQgAAEIAABCEAAAhCAAAQgAAEIQAACEIAABCAAAQhAAAIQgAAEIAABCEAAAhCAAAQgAAEIQAACEIAABCAAAQhAAAIQgAAEIAABCEAAAhCAAAQgAAEIQAACEIAABCAAAQhAAAIQgAAEIAABCEAAAhCAAAQgAAEIQAACEIAABCAAAQhAAAIQgAAEIAABCEAAAhCAAAQgAAEIQAACEIAABCAAAQhAAAIQgAAEIAABCEAAAhCAAAQgAAEIQAACEIAABCAAAQhAAAIQaAGBvha0SZONEVhH1YY3VpVaEIAABCAAAQhAAAIQgAAEIAABCEBgFgKTlHLbLKkRJhDA6oyd5uDVLZ3hCl5AAAIQgAAEIAABCEAAAhCAAAQg0EUEHHOIPog1rIt2SMxdCSOvRqoTjo4iEIAABCAAAQhAAAIQgAAEIAABCECgGQIjVPlNqZfRCwGsztqFDl4RwOqsfYI3EIAABCAAAQhAAAIQgAAEIAABCLSZwJA228c8BCAAAQhAAAIQgAAEIAABCEAAAhCAAAQGJUAAa1A8ZEIAAhCAAAQgAAEIQAACEIAABCAAAQi0mwABrHbvAexDAAIQgAAEIAABCEAAAhCAAAQgAAEIDEqAANageMiEAAQgAAEIQAACEIAABCAAAQhAAAIQaDcBAljt3gPYhwAEIAABCEAAAhCAAAQgAAEIQAACEBiUAAGsQfGQCQEIQAACEIAABCAAAQhAAAIQgAAEINBuAsPa7QD2IQABCEAAAhCAAAQgAAEIQAACVQjMrvSfS+dKyffz7OrS21LynPSS9LtV8kiGAAQiI8AIrMh2GO5CAAIQgAAEIAABCEAAAhCAwACBkfr7AekIeEAAAhCAQDEEPiwz/VJOvMXwxgoEIAABCEAAAhCAAAQgED+B1dQFP0fNH39X6AEEWkLAMQb/jzjmEL0wAiv6XUgHIAABCEAAAhCAAAQgAAEIQAACEIBAdxNgDqzu3r+d0rtRciTtm3X752G/b3olRd5R2osp6SRBAAIQgAAEIAABCEAAAhCAAAQg0EMECGD10M5uU1eHy+5Y6RwN2J+oOvNJJzRQt9ereHRlXwMQpjZQhyoQgAAEIAABCEAAAhCAAAQgAIGWEiCA1VK8NC4Ck6VLS+dMobGY0m6UbiR9KiXfI7AIXqWAqZG0qfIvq1GmWvbflLFNtUzSIQABCECgMAK7yNLXq1jzyGbLuOmLWf6eqJSzZ0klAQIQgAAEIFAfAX8l8xFp2gtxf1nj/BekafKAEsemZZAGgWYJEMBqliD16yEwvkohTyZneU6aFsAayORPZgJXq4YvOGlz3H1O6dZdpWnyZFoiaRCAAAQgUDiBu2XRLxXS5PPlxGr596RVIg0CEIBAFxKYUu4TXxHku3M/oebOkqYFsBxD8HPGJGma/EGJX0vLIA0CzRLopQDWZwXrEel9VaB5hNAHpctIn5XeK31dikAgNgIe9XZ9FadXV7pHtl1bJZ/kxgj4Ir1DlapLKP1d6Ssp+Q7i/lja6Ii5lCZJggAEuoSAA1jWNFmlnPjTtEzSIAABCPQQgfvV13Wlb/RQn4voql+QVJvD+FDlbSHdsAhHsAGBJIFeCWB9RZ0+VXqANC2A5dEoP5OGIflaHZhY/Pta/tIbSE8SGKpez12l586r9qbHQQkuolXAdWmyRzssWKVvX1T6y9IrquSPrZJOcncS+JG65Ru/RuQbqnRyIxWpAwEIQAACuRLYTa35pWCafECJHtH+Zkqm7x1/IX0+JY+kxgnc2nhVakIAAjER6IUA1tbaIYPd8G+q/D9IfaH5nvQf0o9JPaLiBOmr0j9Kkd4jcJq6XO1Tu1o0dlSBP9UqRH7XEPifemJNk48o8Q6pAxcIBPxS5D9VMByudAc7T6ySf3uVdJIHJ/ADZS9fpYgfQB+Sps236E8jDpKmjZ5UMgIBCPQwgaXU92rnFV/3/VLrmRQ+05RWbVRLSnGSIAABCEAgSaCbA1i+cDgAtbPUv2ZXTRy08re9X5VeVi7kzwdvkN4sPVj6RynSewS+rS4fV6Xbpyv9WunvU/I9AsvDmREIQAAClQReUsJVlYnl7X219Fv5avlVqpFcg4BHPFjTxCMlPAnt2ymZftBEshPwveU20hEpVZ23gvTBlDwnPS29pkoeyRDoJAJHDuKMX4r7ZcUZg5QhCwIQgAAEGiDgG4lulUvUsfWkf5FeLE27iHjyOb8FcbDhSmlSbtGG38quLB0qrXbzqyykQQJ+q+1981KD9Vtdzf5Ve/Puhx0/9NzZaidoHwIQgAAEmiLgeeaqiV9y/UIaXmBVK0d6/QSWVNGjpcNTqsymtIWkz6bkOcn3YwSwqsAhGQI5EPAL/k2qtDOv0j0nsF+kpInveR9PyyBtUAJjlLtalRIrKd2830zJ9wvxc6XjU/JIqk7AL0/Okc6TUsTP/u+X+lqT9pLK81/7K5opUqRDCXRzAOs2MT9U6nlnPlOFvw9cB7nSZHYlLiYdKyV4JQgtEAeBPt2CdmmyOoEnlHVP9ey253xVHvjhJk3WVqJvntL+H99Rut92puUpGalCYFWl/1bqIH2lOLjvfeE3yWlynRL3T8sgrSsJrKxeXShNO1ZmU/oC0uelaeLrsW8IkfwIpI0Yy6/15loaq+rLVWliM6X/Q7pUlXySe4vAguruX6W+564UB0BHSx+pzChvP6Xl9lXySK5OwP+DJ0r7UorMoTSf499KyXPSKVI/W3WirCOnOnUerK3km7mnyUpK9NQB1krxc+pNUgJYlWQG33bw6RZpWgBrPqV/XHq+9A1ppTiAxbNEJZUO2+7mAJbnsGpGPO+FD3yfrLOKL7q+qI6os+KKdZajGASaJXCJGrB2qvgXTdICWL6hWl86WupgVaU4zYGYajddleXZnk7AAYcLpGlBibWU7hsu56fJfWmJpHUtAT8sHiNNu29YU+m7Sn8mTZPH0hJJa4rAd5qqTWUIdAaBN+XGRVIHwStlaSWsLf2F1A/ylfJcZQLbdRE4V6WsafITJfp8vnlaZgeneUSNAxYeQZYWlGi369+VA9Y0uVeJv5aenJbZwWkeIPJCh/rn88VPq/jmlyuOEfh+xfc1SIQE0m5EI+xG7i5/QS3+QOq3PodLs4pHbn1fWm8Aa+6yAe8PTxqLQKBXCXy2SsfnV/or0t2ld0tjknflrLUTxUyPreLYbkp30LDaTUCVaiR3KQEfw6dX6ds2St9e6iAyUgyBCcWY6Tkrh6nHH6jSa6d7FPPbKfl+43+g9NmUPJKqE/A9b7W5RjdQ3j5SP2hOliIQqEYgPM+mvYyrVof05gjcpOpWBAKFEwj/8IUb7mCDu8u3U6UvSbeWNvLg6Yju+6T1yldU0DbThvPW2wblIACBziTgQBAPm525bzrNK780ebHTnMIfCPQQgVfV17RPeYzAb+59f5eW7wCWgzEIBEzAI0DSRo1BBwIQgAAEmiRAAGtmgB51dYTUb9g8fPZhKQKBNAK3KvGBtAzSIFBBoBOHs1e4GOXmEvLaI/PSZEElpj1kuqyDiY96pQPlkA70qdtdcuCB+S66fS/X37+TBikaRhlW+6x6kKotzxolCxtI016E+jzpqS3GSdPE9zNPp2WQ1jCBnVXTn4YhEIAABCCQMwECWNOB+oJ/vPSbUn9D/Wkpb8EFocUyl9r/i9Q3hZ4HISbZLyZn8RUCXUjgRvVpyQb65bfirvd8A3Wp0n0E/NB/X/d1ix71GIHPqL+eoy4tgDVHOd1zRabJsUr8cVoGaQ0TuL7hmlSEAAQgAIFBCRDAKpWGiNDvpbtLL5T6rUm1i7yykBwJLKC2tpAuLI0tgJUjhkKbWkvWPDH30YVaxRgE8iewspr0g1ml+Lr2gtTnFr+QqJTJSmBUXCWV3t2+K9Kur1n2+47I/L9N/nquKCRfAr9Tc9Y0OVGJnpt1u7RM0iAAgbYT6G+7B73jwER11by9RCIlQACrVPqq9t3u0r9JPy/lUwJBQLqWwIfVs12ksQWwwsU9LLt2B3VQxzxRsbVTxS8a0l42+FMZi4NU1T4jHCjAn9wIvK6WXsutNRqqh4BHjFv2mL6I5q//J0+IxlscbScBn9/9kMlcUsXthYtk6vbizGFJBA6VxvYiwjtuN+knpF/0RkTyrHxdSvpiRD7jagWBXg9geZ6Uo8pM5tXy/Ao+YdMP/G+FDZYQgEDhBPxwvKP0wcItN2/wQ2pivPSx5psqtAWfDy8r1CLGYiVwpRz3iDikOAJpn4oVZx1LEGg9gTtlYjHp1NabwkKZwA2RknhCfvsTWr9MiU3+HpvDZX+X1HLZSH13EAuJmECvB7A21L6br7z/PjbIfgxv9AcpQhYEINBiAn9qcfutav5wNey3a99rlYEWtevRbnxq1yK4VZrdSekO1l5SJb+Tk6d0snP4BoEcCPjzY47zHEBmaOLVDGU7qejScuZ5qY8ZpPUEPA3JQa03gwUIQKATCHj+p14QD4n128qfV3TWUW+n19JYL6AV3WUzRwK+UH48x/ZoqnsJhPNL9/aQnuVFYBs15Lm7kOIIrClTvf4yrzjacVvaWO7HGFyOm3qc3ntUKnOOxbnv8BoCEOhwAr0SwOrw3YB7ERL4tHxeP0K/cRkCEIAABN4jcJ1WN3lvkzUIVCXwsHIYgVUVDxkJAiO0bkUgAAEIQCBnAgSwcgZKc5kITFBp3wymTcScqSEKQwACECgT8DnlbKnnxEAgUIvAUBWwIsUQWFdmni7GFFbKBC7Q8o/QgAAEOpJA2q8pd6SjXeKUv4rYWuolEikBAliR7rgucfsl9WMBqX/yHimGgOdjiHVOBv/oAlIcgVEy5ZGGsYnn7tpF6vlHkGII+Fj5UjGmsFIm4OPcGpvML4d9vCDFEbhKpmKcKHp2+b1DcZiwJALfkp4GiUIJ+P9z10It9raxZdT9C6VL9DaGuHtPACvu/dcN3nviRaQ4AmfKlN88xCZzy2H/5O2KsTkesb+by/cTI/Yf14sjsKFM+RegkOIInCRTVgQC3UrA89OdK2WOuuL28KIytXhx5nKztKRaelzqoGds4vvbkbE5LX+flT4Zod8h9hGWEXYBl9l5HAMQ6C0C/mzzqQi7PFw++zOfGIdaxzhKwocIk8+bAlIvAYbj10sqn3K3qRkrUhyB9WQqxgfk4gjlaymcU8Iy39ZprZsI+GuOZaUx3iPGuh/+IMd3jtV5/I6bAAGsuPcf3kMAAp1P4Fi5eFbnu4mHHUDAn/d6Di8EAhDoPAIXyyWPTEUgAAEIQAACEGgTAYbltgk8ZqMnMFE9sCIQqEXAP6eNQKAeAvurEOeVekhRBgLFE/AoYF78Fs89RotnymlGSMa45/AZAhDoeAJciDt+F3W1gz7+9pD6pjA22V4OMz9QbHsNf3uBgD83cdDQE3XGJp54/pXYnI7c36Pk/92R9wH3ITAYgUOUecJgBcjLncBhavHe3FulQQhAAAIQ4E0Sx0BbCfgXIPxrJ0u31YvGjI9XtRhHSvgXoNZurMvUgkAUBDyy+GNSfmEmit3VdiePkAcvtN2L7A6MUBVrbOKJf2+KzenI/fWk3JwPI9+JuA8BCORCIMxLG5a5NEojxRJgBFaxvLGWTsAjJpBiCPgnqU8vxhRWIifgizsX+Mh3YkHu+ziZVpAtzEwn8AstrLHJfXJ449icxt+2EOD6Uzz2J2TykeLN9rTFa9T7+yMksK583iNCv5+Wz/tJn4vQd1wuE2AOLA4FCPQWAQetYwxcvyW/L5D67X1s4lESnpg7tgf8S+XzG7HBxt+2ELhCVndqi+XeNeqfXkcg0M0E7lLndpdO7uZOdljfTu0wf+p1x5/eO/j2br0VOqjcvh3kSxZXNlPhLaSnZ6nUAWV9P84n1R2wI5pxIcYH2Wb6S10IQCBOAr6B3Vb6coTuny2fD47Q7xfl84UR+h2zy8vL+Rg/9XlTfl8eM3h8hwAEOo7AO/LojI7zCoc6kcAzcmo56YROdA6fIACBfAkQwMqXJ631DoEPqasxPmj2zh7qnJ6OlCtWBAK1CBylAgfWKkQ+BCDQFgJHyirzd7UFfXRGPWKcT2Wj2204DAEIxECAAFYMewkfO5HAsXJqt050DJ8gAIFoCfgXWbkuF7v7/EthaxRrEmuREjhOfsf4GXukuKN22z+Ws2zUPcB5CEAAAh1KgBvlDt0xPeZWf4T97ZPPVgQCEOgsAlPljudM82dtCARqEVhRBUbVKkR+bgSWUkvMP5Ibzroa8txAj9VVkkIQgAAEup8Ac4BHvo8JYEW+AyN3328yPYrpycj7gfsQ6FYCMU4U7cnyF5Te0607pQP75WD+Yh3oFy51HoFV5NLenedWV3vkX6s8KNIexngNihT1gNsf0989Yu5AhL4fI58/EqHfsbrsF1avS32fiERKgABWpDuuS9z2g+aZ0th+nS1m/J5o2Z8/xib+Jb/LpAvH5njE/m4r32Od72VSxNxjdH1LOX1bjI5H7PON8t2KQKBbCayujo2T+tNqpBgCm8rM9sWYytWK5xn9qTTG51pfP2P8jN2j3a2xiYPic0rnis1x/H2PAEPo3mPBGgR6gcDD6qQ1NvGFxjdWHuXxUmzOR+qvL/K8/Y505xXs9myyZ0WKI3BKcaawBIG2EPB1fw6pgxIxPii3BVqPGl1W/fYPoBwtfbVHGRTdbV+Dzi/aKPYgYAIxRqrZcxCAAARiIuBREnfF5DC+QgACEIDALATuVspGs6SSAAEIQKD3CLymLj/Se92mx51AgBFYnbAX8AECEOhmAod3c+foW64E/Em152ZAIACBziOwhFziM/bO2y+d6NF4OWVFIAABCEAgZwIEsHIGSnOZCcyrGjE+sP1Mfsf4KV7mHUQFCERI4Kvy+Szp25H5flFk/naDuw+pEy92Q0foAwSqENhc6fNJ/1Qln+T8Caydf5O0CAEIQAACJsAnhBwH7STgN5kvS2P89aq/y+8H2gkP2xCAQCqB4Ur13AyeABiBQC0Cq6kAn/jWopRf/mQ1xY8s5Meznpa2UqHt6ilIGQhAAAIQgECnEyCA1el7qLv9m13d86/LeJJOpBgCX5CZ/xRjCisQgAAEINAiAnupXWtscrUcJrgc217D314hMEUdtSLFEXhXpqyxiUd1Lh+b0/LXAyeulzLZf4Q7L7jMJ4SBBEsI9AYBj3obFWFX/cZ+ovStCH2P1WWPMLw0Vufxu1AC98na2YVaxNgGZQSnRoaiX/4+HpnPuNseAk/L7D+lBFSK4/9zmYrx14fDMRLjr1X6F7bfKG4X52Zpb7W0hXST3FospiFPW/ORYkxhpVUECGC1iiztQgACeRJ4W40tIH0nz0YLausA2fEvtfiz05jkZjlrRSBQi4DnkfpmrULkQwACEMhAwAGsT2UoT9HmCfiX5ayxyf1yeF1pjIGgGHn7+PAXNFYEAoUT4BPCwpFjsEsIEPwtfkfGGLwypU9I1y8eFxYjJHCifD40Qr9xGQK9QOAedfLZXugofWyawJ5qYZmmW6GBLARuzVKYshCAQLwECGDFu+/wvL0ELpT5fdvrAtYhAIEuI+AftFi0y/rU6d05Auadvos6xr8x8uSmjvEGRzqZwPflXGyfVnUyT3yDAAQgMIMAAawZKFiBQCYC86m0FYEABDqLgOfYsYTl9C3+QiCdwMFK9i8RIsUQmE1mxhRjCitlAp4fKMwRBJRiCPTJjBWBAAQgAIGcCRDAyhkozWUi8IpKXyx9KVMtCkMAAhCoTsAPap+V3l69CDkQgECbCGwku/9qk+1eNftjdXz/Xu08/c5EYBGVXilTDQo3S8DTTDDyulmK9defS0XPks5RfxVKdhoBAlidtkd6yx9PzP1p6Zu91e229vYJWfc8HjGK55QYEaPjkfq8jvz+daS+e8J8/2olUgyBtWTGn1UjxRHw9dMam/i+k3vPYvfaeJl7rliTuVhbQq2cL2UkUy4462rEP8ZxXF0lO6+Q71liFPPeJkbHI/XZQdqdpQtH6j9ui8AwKEAAAj1F4BL11hqbzC+Hfyv1/COxBuBiY76qHN4yNqfxty0ERsuqR9YgxRH4TnGmsASBthBYRlb9YO9nlclt8aD3jDq4HOMvy71fft8inVf6hjQmifVz0ysE+YWYQONr9xDgLVj37Et6AoFeIBDjm9h3tWOsCAQgAIG8CExQQ1akOAI/kqllizOHJQhAoE4CYUBGjMG3OrvYccX8Qvn3HecVDvUEgfAP3wud9Zwoj0jvq9JZn/Q+JPWvQN0tdVkEAhCAQLMEdlMDPGg2S7E36vu682JvdJVeQiA6Al+Tx3dI/Sk+AoHBCExTphWBAAQgAIGcCfRKAOsr4naq9ABpWgBrRaVfJH2fNMj9Wtlc+nRIYAmBBIFbtf5AYptVCFQjENtw9mr9iCndE6LGOLT9kJggd4mvnvR/apf0hW5AII3A4kr0rz8SeEuj05q0ndXsva1pmlYhAAEI9DaBXviEcGvt4pMH2c3+JMlDIJeQflHqYNZeUg8Tv1bqXytAWkPAbD0f08jWNN/SVvdT6xe01AKNQwACjRDwaNqnpGs1Upk6PUdgA/X4mp7rNR3uJQIHqbNH91KHO6Cv18sHXl51wI7ABQhAoPsIdHMAa0HtrrOk/mWkwYbx7q38jaTflbr8o9LfSr8lXVq6ixRpDYEF1OwW0oVb0zytphDwQ/3BKekkQaBbCPi6Nlw6e7d0iH60lMBdat2jsGKTNeWwNTa5TQ4fGJvTkfvrcyJzA0W+E3G/qwn0d3XvOqtz/oVq8+aXqjtrv2TyppsDWB7Z4yG8f5F6RFU12V0ZPoj/XFHA2563Zs+KdDYhEDOBD8v5GIOy4eIeljHvg1h8f1uOWhEI1CLwugq8VqsQ+bkS8M/dW2OTl+XwCbE5jb9tIfCOrPr+fLCX0G1xrIuNXqS++asUpDgCh8rUxcWZy83Sbmrpj7m1VlxDz8rUUlLmGy2Oee6WujmA5bd8m0q/IK12Y+239GtIH04p46G/D0pXl7ocAgEItI+A/4d3lPp/Mjbxj0MsH5vT8vd86foR+o3LxRO4UiZXLt5sT1v09AdWBALdSuBOdWwx6dRu7WAH9usG+eQX/7HJE3L4GKlfpsQmf5fDT8XmtPxdUurpdmIUB7GQiAkMi9j3Wq7712JqyfwqMELqN4Jp8ooSHbzyJ27PpRWokrao0v0Go97Al+ffQiAAgcEJ/Gnw7I7NPVye+ZervtexHqY75tFuDuQjxRHYSaYcrPUI4tgkxs/wYmOMv+0lMFnmOc6L3QevFmsuN2ueguR5qY8ZpPUE3pQJz/WGQAACPUCgmwNY9ey+ecqFxlcp7ACWJetE7m+pzs1SB8fqEV/g3l9PQcp0DAFfKP1LhB55gEBgMAKMlBiMDnlJAttoww89MQawkv2IaX1NOXuPlMBETHutPb5uLLOPt8c0ViMj4HvDH0jPjcxv3IUABCDQ8QR6PYA1obyHqn1KGSa9zDp82QGsIzLs/a+o7JYZylO0/QQ+LRf8/0MAq/37Ag8gAAEINErgOlX0+ZxzeaMEe6eep5tAIFAPAb/Arvcldj3tUQYCEIAABMoEqgVuegXQC+qoP5NZoEqHQ3qM31RX6VJHJTuA6LfenqgTgQAEIJAHAZ9TzpZ6TgwEArUI+EVVeFlVqyz5zRNYV0083XwztJCBwAUq+8cM5SkKAQgUR2CO4kxhSQT8VcTW5SVAIiXQ6wEsP+iMk4ZAVeVudLqDK56TBMmfwEtq0owdSESKIeDPVWOdk2HBYhBhpUxglJYemRKb+KXELlJ/iocUQ8DHypeKMYWVMgEf59bYxHOP+nhBiiNwlUz9vThzuVmaXS3tkFtrNFQPgW+p0Gn1FKRMbgT8/7lrbq3RUC0Cy6jAhdIlahUkv3MJ9HoAy3vmAannn1rIGwnxxO2rSG+TZv2EMNEMqzUIeOJFpDgCZ8qU3zzEJnPLYf/k7YqxOR6xv5vL9xMj9h/XiyOwoUwdU5w5LInASWUFBgS6lYDnp/McUr0+3UmR+9c/QrV4kQZzsrWk2vH8dA56xia+vx0Zm9Py91npkxH6HWIfYRlhF3CZnTf9Ac0Xxy9VHA5f1rbTf1mRziYEYibgzzafirADw+WzP/OJcah1jKMkfIgw+bwpIPUS8PGCFEfAL9esSHEE1pOpGB+QiyOUr6VwTgnLfFuntW4i4K85lpXGeI8Y6374gxzfOVbn8TtuArzVmD6M0KOwfiJ1BPwa6RjpIdK/Sf8qRSAAAQg0SuBYVXyh0crU6ykC/rzXn7YjEIBA5xG4WC7tJfXnJwgEIAABCEAAAm0gQACrVJom7htLPcHlodLvSy2XSb82sMYfCMxKYKKSrAgEahHg181qESI/ENhfK5xXAg2WEOgsAh4FzJcLnbVPOtWbM+UYIyQ7de/gFwQgEDWBXglgXaS9NNgQ5PHK30LqEVgrSf1dLyMmBKHF4hvB3aS+0Mc2z9j28pn5uwQBgUCHEfC5/grpl6RPdphvtdxh4vlahPLPP0pN3p1/s7QIgY4h4C8KPLeRJ+hGiiFwWDFmsAIBCECg9wg4gIC8R8ABCb8xIXj1HpNWrvkXIE6TLt1KIy1q20HPGEdK+Beg1m4RE5qFQCcQ8IuZj0l9fkEgUIvAESoQ4zV/hPy2xiZ+QXhTbE5H7q8n5eZ8GPlOxH0IQCAXAmFe2rDMpVEaKZYAAaxieWMtncBgo+PSa5DaKAH/JPXpjVamXk8R8MWdC3xP7fKGO+vjxJ/jI8UR+IVMWWOT++Swp21AIFCLANefWoTyz39CTT6Sf7O0OAiBa5R3/yD5nZq1rhzbo1OdG8Svp5W3n/S5QcqQ1eEEeuUTwg7fDbgHgcIIOGgdY+D6Lfl9gdRv72MTj5LwxNyxPeBfKp/fiA02/raFgD/Z3KktlnvX6Ny923V63iME7lI/d5dO7pH+dkI3T+0EJxrw4RXVcfDt3QbqtrvKvu12oEH7m6mep985vcH67arm+/ET2mUcu/kQiPFBNp+e0woEIBATAd/Abit9OSany76ereXBEfr9onzm17aK3XHLy1yMn/r48/vLi0WFNQhAoMsJvKP+ndHlfaR7+RB4Rs0sJ52QT3O0AgEIdDIBAlidvHfwrZMJfEjOxfig2clMu9U3/ziEFYFALQJHqcCBtQqRDwEItIXAkbLK/F1tQR+dUY8Y51PZ6HYbDkMAAjEQIIAVw17Cx04kcKyc2q0THcMnCEAgWgJD5TnX5WJ3370yt0axJrEWKYHj5HeMn7FHijtqt/1jOctG3QOchwAEINChBLhR7tAd02Nu9UfY3z75bEUgAIHOIjBV7njONH/WhkCgFoEVVWBUrULk50ZgKbXE/CO54ayrIc8N9FhdJSkEAQhAoPsJMAd45PuYAFbkOzBy9/0m06OYnoy8H7gPgW4lEONE0Z4sf0HpPd26UzqwXw7mL9aBfuFS5xFYRS7t3XludbVH/rXKgyLtYYzXoEhRD7j9Mf3dI+YOROj7MfL5IxH6HavLfmH1utT3iUikBAhgRbrjusRtP2ieKY3t19lixu+Jlv35Y2ziX/K7TLpwbI5H7O+28j3W+V4mRcw9Rte3lNO3xeh4xD7fKN+tCAS6lcDq6tg4qT+tRoohsKnMbF+MqVyteJ7Rn0pjfK719TPGz9g92t0amzgoPqd0rtgcx9/3CDCE7j0WrEGgFwg8rE5aYxNfaHxj5VEeL8XmfKT++iLP2+9Id17Bbs8me1akOAKnFGcKSxBoCwFf9+eQOigR44NyW6D1qNFl1W//AMrR0ld7lEHR3fY16PyijWIPAiYQY6SaPQcBCEAgJgIeJXFXTA7jKwQgAAEIzELgbqVsNEsqCRCAAAR6j8Br6vIjvddtetwJBBiB1Ql7AR8gAIFuJnB4N3eOvuVKwJ9Ue24GBAIQ6DwCS8glPmPvvP3SiR6Nl1NWBAIQgAAEciZAACtnoDSXmcC8qhHjA9vP5HeMn+Jl3kFUgECEBL4qn8+Svh2Z7xdF5m83uPuQOvFiN3SEPkCgCoHNlT6f9E9V8knOn8Da+TdJixCAAAQgYAJ8Qshx0E4CfpP5sjTGX6/6u/x+oJ3wsA0BCKQSGK5Uz83gCYARCNQisJoK8IlvLUr55U9WU/zIQn4862lpKxXarp6ClIEABCAAAQh0OgECWJ2+h7rbv9nVPf+6jCfpRIoh8AWZ+U8xprACAQhAAAItIrCX2rXGJlfLYYLLse01/O0VAlPUUStSHIF3Zcoam3hU5/KxOS1/PXDieimT/Ue484LLfEIYSLCEQG8Q8Ki3URF21W/sJ0rfitD3WF32CMNLY3UevwslcJ+snV2oRYxtUEZwamQo+uXv45H5jLvtIfC0zP5TSkClOP4/l6kYf304HCMx/lqlf2H7jeJ2cW6W9lZLW0g3ya3FYhrytDUfKcYUVlpFgABWq8jSLgQgkCeBt9XYAtJ38my0oLYOkB3/Uos/O41JbpazVgQCtQh4Hqlv1ipEPgQgAIEMBBzA+lSG8hRtnoB/Wc4am9wvh9eVxhgIipG3jw9/QWNFIFA4AT4hLBw5BruEAMHf4ndkjMErU/qEdP3icWExQgInyudDI/QblyHQCwTuUSef7YWO0semCeypFpZpuhUayELg1iyFKQsBCMRLgABWvPsOz9tL4EKZ37e9LmAdAhDoMgL+QYtFu6xPnd6dI2De6buoY/wbI09u6hhvcKSTCXxfzsX2aVUn88Q3CEAAAjMIEMCagYIVCGQiMJ9KWxEIQKCzCHiOHUtYTt/iLwTSCRysZP8SIVIMgdlkZkwxprBSJuD5gcIcQUAphkCfzFgRCEAAAhDImQABrJyB0lwmAq/Q8BoUAABAAElEQVSo9MXSlzLVojAEIACB6gT8oPZZ6e3Vi5ADAQi0icBGsvuvNtnuVbM/Vsf379XO0+9MBBZR6ZUy1aBwswQ8zQQjr5ulWH/9uVT0LOkc9VehZKcRIIDVaXukt/zxxNyflr7ZW91ua2+fkHXP4xGjeE6JETE6HqnP68jvX0fquyfM969WIsUQWEtm/Fk1UhwBXz+tsYnvO7n3LHavjZe554o1mYu1JdTK+VJGMuWCs65G/GMcx9VVsvMK+Z4lRjHvbWJ0PFKfHaTdWbpwpP7jtggMgwIEINBTBC5Rb62xyfxy+LdSzz8SawAuNuaryuEtY3Maf9tCYLSsemQNUhyB7xRnCksQaAuBZWTVD/Z+VpncFg96z6iDyzH+stz75fct0nmlb0hjklg/N71CkF+ICTS+dg8B3oJ1z76kJxDoBQIxvol9VzvGikAAAhDIi8AENWRFiiPwI5latjhzWIIABOokEAZkxBh8q7OLHVfML5R/33Fe4VBPEAj/8D3RWToJAQhAoA0EdpNNHjTbAD5Ck4/I5xcj9BuXIdALBL6mTt4h9af4CAQGIzBNmVYEAhCAAARyJkAAK2egNNczBG5VTx/omd7S0WYIxDacvZm+dkpdT4ga49D2QzoFYA/54Un/p/ZQf+lq7xFYXF32rz8SeCtu33uOnXuLM4clCEAAAr1DgE8Ie2dfd2JP/UsQno9pZCc6V8On/ZR/QY0yZEMAAsUT8CcET0nXKt40FiMksIF8viZCv3EZAvUSOEgFj663MOVyIXC9WuHlVS4oaQQCEIDAzAQIYM3Mg61iCSwgc1tI+SWI4rj7of7g4sxhCQKFE/B1bbh09sItYzBGAnfJaY/Cik3WlMPW2OQ2OXxgbE5H7q/PicwNFPlOxP2uJtDf1b3rrM75F6rNm1+q7qz9kskbAliZcFEYAtET+LB6sEuEvQgX97CMsAvRufy2PLYiEKhF4HUVeK1WIfJzJeCfu7fGJi/L4RNicxp/20LgHVn1QyZzSRWH/yKZYmLu4njb0qHSi4s1mYu13dTKH3NpqdhGnpW5paTMN1os91ytMQdWrjhpDAIQaBEBPxzvKH2wRe23stkPqfHx0sdaaaQFbZ+vNi9rQbs02X0ErlSXVu6+bnV0j2L8RdaOBopzHUfgTnm0mHRqx3nWvQ7dEGnXnpDfx0j9MiU2+XtsDpf9XVLLWH+V1UEsJGICjMCKeOfhOgR6jMCf1N/JEfb5cPn85Qj99mg35vAodsftJHNbFmsyN2sxfoaXW+dpqCcI+PrDcV7srn61WHO5WVtaLflTdqQYAm/KjOd6Y7ReMbyxAoG2EiCA9R5+z5fikRKfl64n9S+2IBCoRsAXyo9XyyQdAgkCHinBaIkEEFarEthGOZ4XECmOwJoyxWj04njHbGljOe8fnkEgUIuAR6VuV6sQ+RCAAAQgkJ0AAazpzD6mhT9NulF6nvSm8rbTEQikEfi0EtdPyyANAhCAAASiIXCdPN0kGm9xtJ0EHpZxRmC1cw/EY3uEXLUiEIAABCCQMwECWKWSh/leIJ1X6lE1H5D6F3Lmkf5NOlqKtIbABDXrm0FP1IlAAAIQyIOAzylnSz0nBgKBWgT862xWpBgC68rM08WYwkqZgO9x/wgNCECgIwnM0ZFeda9T/iJiaylfRkS8jwlglUpf0P5z8OpEqScAvE/6s/K2g1i7SJHWEHhJzS4gfaE1zdNqCgHP4RHjPFLuyoIp/SGpdQRGqWmPNIxNPHeXz9vPx+Z4xP76WPlSxP7H6LqPc2tsMr8c9vGCFEfgKpmKcaJoT+2xQ3GYsCQC35KeBolCCfj/c9dCLfa2sWXU/QulS/Q2hrh7TwCrVFqovAtvrdiV/y1v+xdQkNYR8MSLSHEEzpQpv3mITeaWw/7J2xVjczxifzeX7w7sIxCoRWBDFfALIKQ4AifJlBWBQLcS8Px050qZo664PbyoTC1enLncLC2plh6XOugZm/j+dmRsTsvfZ6VPRuh3iH2EZYRdwGV2Xql0efkw2L3icNitvB3yK7LZhECUBPzZ5lMRej5cPvsznxiHWvdHyNsue3g1Q6wj3XltcJtjpVjot8mcFSmOwHoyFeMDcnGE8rUUzilhmW/rtNZNBPw1x7LSGO8RY90Pf5DjO8fqPH7HTYC3GqXS1dqF/yc9VHqv9GLpZtI1pL+Q/lPaiPizxHr5ztWIAepAAAJREDhWXr4Qhac42W4Ck+XAlHY7gX0IQCCVgO8P95L68xMEAhCAAAQgAIE2EKg3wNIG1wozOVWWzpR+TvpB6apSy2PSU6R+oMgqK6iCf62Gt0ZZycVTfqJctSIQqEXAP6eNQKAeAvurEOeVekhRBgLFE/AoYL5cKJ57jBb9XMEIyRj3HD5DAAIdT4AA1vRJ3P+gPXWX1MPD75e+X3qc9E7pHtLzpFnkURV+n7Ten9DdVmUPl/aa+EbQn2r6Qu9AYkyyvZxl/q6Y9hi+9goBvzi4Qvol6ZORdZqJ54vfYUfJ5N3Fm8UiBAojcIgseW4jT9CNFEPgsGLMYAUCEIBA7xEggFUqfVu7/R3pVtJXyofALeXtB7T0p4VZA1huxiOw6pUP11uwy8otof74106ulj4hjUnGx+Rswtf5tb6clDeDCSisdhUBX9c+JvX5JbYAVlftiEg6c0Qkfla6GV6QTarM6PBtT/x7U4f72G3ueVLuxbqtU/QHAhCAQAMEwry0YdlAE1RpN4Eh7XagzfYXln2PuvqfNASvgkuva+Vy6WrSpUMiy5YQ8IgJpBgCO8jM6cWYwkrkBHxx5wIf+U4syH0fJ9MKsoWZ6QQ8R6c1NrlPDm8cm9P42xYCXH+Kx/6ETD5SvNmetniNeu+vf2KTdeXwHrE5LX+flu4nfS5C33G5TKDXR2D5szUH8UZVOSLCG07Pe4BAoBsI+HiPMXD9lvy+QOq397GJzyOemDu2B/xL5fMbscHG37YQ8CebO7XFcu8a9U+vIxDoZgKe2mN36eRu7mSH9e3UDvDHz6ZZn0/fVp2xUt9nZf2lUB9f7ZzGZF/Zj1E2k9NbSE+PzHnfj58Qmc+4W0Eg6wmionr0m6+oB456O4q8jvRWaZAltOJ/TD8w+40EAgEItI+AbzA8V1yMcracvkN6VGTOvyh/+bWtYnfa8jI3QRpboNbzAV5eLCqsQQACXU7gHfXvjC7vI92bmcDIvr6+F/v7++eYObnurdfqLlkuOGTIkHHTpk1bJGs9ykMAAu0j0OsBLJPfW3q19DLpT6U3S/0Q4QkY55XyVlkQasiQoUOHPqqLzsI1ys2UrQtU39SpU0uqe7fqZhoqrrovq673U7vemnxItp+RtutB06z91ibraCoHal33/6RZ5QZV+FfWSpQvjRQDKwKBWgQc5HxBymTLtUh1T75HUq3aQHcWKtfxtSir3KcKHtWKZCNwpIrflK0KpXuUgEeMHy/9b4/2v9Fuz+7g1Y9+9KPS4osv3mgbdde79957S8cff/wCdVfozoLLqFtfk2adzmV91XHdY6RZxS+8eOmVlRrlZxAggDV9/qsxIvIr6dEzyEyfhN3DI/kHS0CpsjpUwaRl99lnn9Lo0aOrFElPHjt2rOvMlZ6bnvrUU0+VTj75ZN/0j5C+m16q7lSP6vlU3aXfK7iFVh3Auue9pLrWPLzZJ/uH6ipdvdBGCvodttpqq02qXmTWnLfffnvIG2+8MWSxxRb77qy51VOef/75Ya+++uoNkydP7uUA1hEKtmbiZqL63xihffVxveXLFJTQTVy/3gruqibOr75nyOlQAtsMHz58X+3zTO5NmjTpA6owacSIEV7WLTpOpul/08Gvq+qu1H0F36cuLdFAt36nOj+RPpax7kSVvzZjnbTiPqf8IC2jzrSt6iyXLOYXGD9MJrBeF4Hj6ipFoa4hoHP40TqXb561QxMnTlxF9dZW/Vez1NWpfJLO5TuqTtbzURYzHV92hRVWKC233HIt9/Ott4jjC/LHdazuv+aaa2YaEOBnCT1T9Ol54ptZdpSe+4a9/PLLK+remOfrLOAoOxMBAljTcfxPiw9KF5SOlj4lfUmKZCCw1lprlRRQyVCjsaL33eeXx/mIAhK7LLnkkp9dddVsL8Cffvrp0siRIxeZb7751s7iyZVXXjlFNzbXq06zAazS7LPPPuXUU0+dPYv9RNlM//unnHJK6Zxzzsn6diZhbqbVnbXV+ldr75n0PE6nSvvfS2pobRld4OfYcUffW9YvulCXZpttttLcc8+diflPf/rTiePGjVuyfktVSy6vm5NzdCPtgG8hohvwf+tG/JBCjM1qxDdhvit9c9aswlI+uuiii46RZIpgKVBc0r4qLbTQQpn2+z//+c8pr7zyytXqXbMBLI/q+bmOldmKIqXjxKOef9GsPXG7dMqUKUupnUz/54oTK77cd0oD9bxvfeHwNATNyAhdOydqFEAhzPfbb7+Jt99+ex7ngkXF/FodK3M20/ksdfXAc4v28dZZ6lB2gMAT+uvP8dolPt6OkBZ2rMjW49Km57nRMb65/j9X9/1tFnn88cdLugYsPeeccy6dpd6vfvWraSrvrwuaDWBtpBchP9X/59As9pspO2HCBJ9HT2+mjcjrfn3YsGFbFtUHXbum6Jy4v+w92qTNvvnnn3/yiSee2Ohnm5nubY899tjSBRd4gGLTMkS8L5Qu0nRLdTag68/z0s+peKb7jDqbp1gGApkOugztxlr0ZTluRXqIwHrrrVc64IADCunxrbfeOllBiUJsdaoRPSyerhu7abqx841aS0UjWvoUbHSQz1fLpoPSo0aNKm244YYt9Tk0/stf/jIvPsvrgruORkhmCqYEP7Iu9XBcuuOOO/oUqM0jgOUb+VFZfVB530R6lOaHM9b1Q54nDm5a9PZ42te//vVCmN9yyy2TFcBq2mc1sJJ010996lMlPfjk0d6gbfgh76GHHlpHx0rTASwH3Q477LC+rbbaqtFAe9319Oa5tOmmm7pvudxD6Zw4EOQeFFZOmbaVk4xSoHp5XzvnmKPR5576PbnrrrtKl1566Yd0Lqu/UpWSeuD5r9rZqEp2K5LttF+SPthk42uq/p5NtHFyA3X/rDr/baBessqS2jh43XXXnaIXby1/8Bs/fnzfww8//K4e7psOYLkTDl7tuuuuyf60bF0vC/vldx7tryXW62y//fbD82isVhtXX3116ZFHHnlA5Xo2gKUXldtr5NiGRbzI9/74y1/+4gPlD9JHpb0os+k8/mld80u+N2+1vPjii6WLLrrIZnzdn9xqe7Q/OIFcbr4GN0EuBCAAgZkI9B188MGzrb++P59vrfgBOeuIqdZ61J7W9XDfv9tuuxVi3A/ICmDlYksjJG/UzbxHBRUpS8nYM0Ua7DRbBx10UEkP+S13SzfgDmC13A4GWkfgk5/8ZGmeeeZpnYFyyz6vKICVix2dVxbfbrvtSptsskku7Q3WiIMRCmT7n2mBwcrVmbelRvLupUBQncWbK3b33Xf3aQSxX6Q0G8AacOT73//+ML28as6pOmpfddVVJdmqo2R3F9Gomil77rlnIQGsZ5991gGs7gZaR+/8Qnzvvfeuo2TzRS688MKpeQT0m/ekvS1svfXWpaxf0TTisc6HIYDVSHXq5Eyg9XeoOTtMcxCAAAQg0BsE9NA625FHHlnSp3gt77Dfrm277ba2k8fnVS33FwMQgEDjBDR1wMDImsZbqK9m3g+Y8nvy0Ucf3fohb+regQceOOWaa66pr6OUggAEIAABCBREgABWQaAxAwEIQAAC2Ql4JJDnhWq1FGGj1X2gfQhAAAIQgAAEIAABCHQzgdZPctHN9OgbBCAAAQhAAAIQgAAEIAABCEAAAhCAQMsJEMBqOWIMQAACEIAABCAAAQhAAAIQgAAEIAABCDRDgABWM/SoCwEIQAACEIAABCAAAQhAAAIQgAAEINByAgSwWo4YAxCAAAQgAAEIQAACEIAABCAAAQhAAALNECCA1Qw96kIAAhCAAAQgAAEIQAACEIAABCAAAQi0nAABrJYjxgAEIAABCEAAAhCAAAQgAAEIQAACEIBAMwQIYDVDj7oQgAAEIAABCEAAAhCAAAQgAAEIQAACLSdAAKvliDEAAQhAAAIQgAAEIAABCEAAAhCAAAQg0AwBAljN0KMuBCAAAQhAAAIQgAAEIAABCEAAAhCAQMsJEMBqOWIMQAACEIAABCAAAQhAAAIQgAAEIAABCDRDgABWM/SoCwEIQAACEIAABCAAAQhAAAIQgAAEINByAgSwWo4YAxCAAAQgAAEIQAACEIAABCAAAQhAAALNECCA1Qw96kIAAhCAAAQgAAEIQAACEIAABCAAAQi0nAABrJYjxgAEIAABCEAAAhCAAAQgAAEIQAACEIBAMwQIYDVDj7oQgAAEIAABCEAAAhCAAAQgAAEIQAACLSdAAKvliDEAAQhAAAIQgAAEIAABCEAAAhCAAAQg0AwBAljN0KMuBCAAAQhAAAIQgAAEIAABCEAAAhCAQMsJEMBqOWIMQAACEIAABCAAAQhAAAIQgAAEIAABCDRDgABWM/SoCwEIQAACEIAABCAAAQhAAAIQgAAEINByAgSwWo4YAxCAAAQgAAEIQAACEIAABCAAAQhAAALNECCA1Qw96kIAAhCAAAQgAAEIQAACEIAABCAAAQi0nAABrJYjxgAEIAABCEAAAhCAAAQgAAEIQAACEIBAMwQIYDVDj7oQgAAEIAABCEAAAhCAAAQgAAEIQAACLSdAAKvliDEAAQhAAAIQgAAEIAABCEAAAhCAAAQg0AwBAljN0KMuBCAAAQhAAAIQgAAEIAABCEAAAhCAQMsJEMBqOWIMQAACEIAABCAAAQhAAAIQgAAEIAABCDRDgABWM/SoCwEIQAACEIAABCAAAQhAAAIQgAAEINByAgSwWo4YAxCAAAQgAAEIQAACEIAABCAAAQhAAALNEBjWTOUurLuo+rS2dIr0Duk4KQIBCEAAAh1G4Mknnyxdd911mb163/veV1prrbUy16MCBCAAgU4mcNxxx5XeeuutzC4edthhmetQAQIQgAAEINAuAgSwppOfR4s/SD83fXPg7wT9/T/pTxJprDZA4JFHHindfffdmWt+8IMfLK200kqZ6+VV4Y033igdeuihmZtbcsklSwcddFDmer1UYfLkyandvfTSS0snn3xyat5giTvssENpp512mqVINTuzFOzhhNNPP730wAMPZCbwzW9+s+RjvdXyt7/9rXTfffeVRo4cOaDzzDPPwPL+++8vnXLKKZnNb7XVVqWpU6eW3nzzzQH1/7kf+l588cXMbTVa4cQTT8xcdc455yx9+ctfzlwvzwqXX355yefzrLL11luXllhiiazVcivvfT127NjM7S2wwAJt9dsOv/7665n9doV55523oXp5VXrwwQdLzz77bObmVl999dJCCy2UuV7WCq+++mpp/PjxA+eS2WabbUb122+/vbTPPvvM2K53ZbPNNiv96Ec/mlF82rRpA+cX28lRpj3xxBPD99prrwnzzTffMO3jYeF86OUll1xS8vksq6y66qoznQ/VxpTXXnttysMPP+xnhGlZ28ta3uf3xx9/PGu1gRcR7TyvZHa4gyr87ne/K2kfZ/boW9/6Vmn48OGZ6/VKBd9bpInPhd/4xjfSsgZN83PQEUccMUsZn1+KkjvvvLP09ttvZza33nrrtfVYueOOO0o33HBDZr8/8pGPlHwdQjqbAAGs6fvnCi3WlTpYda7Uo7C+Kz1K+oT0T1KkBoGzzjqrtMwyywzcOPtmyjfQXl5//fWlM888s0btWbN32WWXgZOmb8isvpH30iMvcpSJF1544dT//ve/k8o+D9FDy3D5PmTYsGGlm2++ObOpp59+uvSrX/1qwFfdIEyVTpb2y/e+l19+eXY1OClzoxkr3HLLLSXZylirVNpwww1Lc889d+Z6WSr09fW9fcABB8w7ZMiQaXoon6zAxLTAXhfJ4QokZP60+V//+lf/TTfdZM5TfYzogXXIO++8M0w3E0Plm0dUOiDdMnGg7Pjjj8/cvh5CSl/5ylcy18tYYYo5bLPNNu+Kc9/8888/RHaHe93cdeyX/LCZVRZddNHS7LPPHv43B45z/Y/2a/8N6+/vz+UYl9/Pab+uLM3qXtXy//73v/v/+c9/9lUp0K/08VXysiT3++bpu9/97mSz9rnQATjztvpcmVXcxujRo2ecB8vnxH4d81N0TvQThX1vVgbaOPjgg6foOBl4OLa/9t32L7744tKNN96Y2cZcc81VGjVq1MCxYr/L/6PTHnroId+F5+H3gE9m7mMycA6++wZc55zMfjvw9p3vfGcmv+173sFOn6/uueeeAb/DsTJ0qE9dpZJ9ePfddzP5Psccc5SuvvrqgTp+oHIAL1w/bStTYzUKn3322aWFF154xjESmP/5z38eCKjUqD5L9g9/+MPSKqusEo6RGX573+YlYvLy73//++WlA03qWj/V1yKz18P5CCVmZqT916+XKJPFeZoC4kMnTJjg++vkeSaPSNarEydOHHbXXXfNdO+ua2m/rtv9kyZNyuy3AehFgH3uE5fgr9sPNvLw22ZKZ5xxRmmxxRab6Vzo4+Wiiy4q6T5soEyWP9/+9rdLq6222oz/Tx/n/v/0y4085ZVXXhn4n7ev/t8K4hc/e+yxR9ise7nRRhuVfvazn80oH/5H7buunWEfzMhvcGXac889N/zrX//6RN/Tyvch4X8zMG/kPLbiiiuWdAzOYC6f+xWknax7CB97LY+qOOj80ksvZUbi4873W60U7cc3/Kyjc+JUHSdTwr2t7A7VeWWYgliZ/z91v1w65JBDpojxVJ9bxLsvcX7xuSp7ZCkFgtocfs4558y4BvkYCepj9dFHH02pNXiSrwG+jvm4DurrUCMvTAezdMIJJ0zRy9Sh8rcvXD/t+2233dbQecXnkRdeeGHguhn81rJfz3aOTobz4mAukVcAgbxOlAW42jITW6nli6W/ke6dsPJ+rd8nvUY6RtpK8RPsqVJHDnI5GbXS2Spte/jCqCp5fkBp5FgbrN4ranPBKvbqTtaN36l6kzFTBEFvYyfr5DdNN4TD9LZz+lNE3S2WSnrw84Vysi44AzeyU6ZMqTzhfVbN/T1Dk2lFt9FN93kK8g31Cdsn67D0+tFHH13yQ1tW8cgQP6yGhx2fvL3uIKRGXlyrG5eNsrZZWV7MXxfzecoPDeEiPxBY8UVUo/UyHyv6LKxfb+0HLvK+0Ej7HMBSYMnsfdFZQJr91fTMzp8mtl/UqMCpIchp1lY/NP/kJ45/Z5NFFlmkpLfpAxd3cy7rVB07U+69996h8n9/tZh9uM7Mbjggf+vMSaV++TzVvmtfDNVNYWbmuiGcJsZTfTOlG7eZbsx003Kp0javsJl5U8fIGxrZMNJvw0IAyEvrrbfeWjrqKL9jyCaf//znSw6O+9j2jUpQ3eyXTjvtNDe2vPTxbK3OUtpDN4+cJVUJuiHVM0r2hxSPEtED6mB1v6zmBzqQZrfONPe96p2qAlH9CjJnPlb8gK3jLLWeeFytTn20Tv+qFlM7t6idddIKDGY/rXxI00NIv4JHqX6rjK9Pi0l97WtGvq3Kv6hooF+2p+qc3qf/zaG6hlRkD76p/xuPYvIDj/33NayyD7Z5/OCt1MxdRCWel1a2PVBRD2z9On+l5tVsuXoBR7LXr55dX458u1fHxMri6xcovnYOccBWy6E6p5UU5K6voUQpB93KwRQHlWd6maJzzWwquq608jycaKGu1UOXWmqpH+iBdkTyfOgAsWWLLbYoOdiSVcILAvc9nA+91GjoqQrM/VrtZR86MrMTI7X5mnSm60QooutFv64XeR8rjmKtGmw0utT/0mX6/9s01JevDnZO0bHia+hwPdj7/yuT6OWPA44+RqoFO/M4VnaUU+ekOeb/zREjRvQ1MqpG16F+3QdW21fHyN5BaTYzpC2ssuP8Ym/55ZcfuK8V6xn3t3/4wx9KIfCcoU0HgUqbb755uMeacY+rYHDpvPPOm6Jrx/As7aWV1bHyDx0rn1Kej40p2se+v/XzQJ94D9f/WeZjZfHFF+/XiysHxv2S0P+fAy9nZSe0tZnsXZ7mT4a0LVT2kmrlPfrb54ac5Zdq71tNtunziQPs/opqFtH+6BenasfqLOVDQo16tudnz9xevAW7BSwd8Jwo3UB6QwH2Wmqi8sG6pcY6tHG/lvWFdb8K/3zx+7j0zYp0Nmcl4BP/qC233HLGBccPxr7oeHnVVVf1nXqq43PZRJ/L9H3iE5+YKXLvh04PNddIAAck5pBmezVd4YIeehb++Mc/Xtp7770HfNUFp6ST18CFzCOY3Kes4s8fNMJixsUwvK3yDaE+TZioi9BCWdtMKf+sL2C+mKeJLjiDBf/Sqgyk1Rji3OxD/YAN3SjM+fOf/9yjvXwBDhfhgTx/ouQ3bFlFNyZ9O+64o5nP4O42/LmTg3xa9QNEszJOx98wBU5mOW/qZqUh3gr+ONhY+aCX5DKuWadVf0E9rE3TJwMDb2D9P6njvE834gP98AiTa6+9NrMZBeyG6KFt4IFEow0Gbgh9jJ9//vkljXBaVA8kmdtMq7DxxhuXPvrRj86SpRvC0rHHHjtLeq0Ef3Li0WPWpPhtdDmAlUxudH1Rvameuuuuu/qt4IxzYWC//vrZn8H9kKpRNX1m7PNgUvWgOVn+O5jSrDgoUfre9743EIgvP9zPCB4eeeSRfZdddllmGwqM93nuMQdo7X/owzXXXOM+LeVzZLOih7Il9HA/ZYUVVvBxPsTXn/CQ/8wzz/Q18tCzzjrr9H3yk5+cwdr+i3u/zlFT9DDic80oabMBrAV0zZmqgPAk+exA/lCpR+0NjIDzpz4612fCo//t0rbbbjvUx4h99giJ8hv8/ueff36E2vMNeLPiY6XvM5/5zMAnf5XHyl//+tc+n8+zyv777z9wH2HffZyUmQ+8tdfLjWUUxM3a5CzldT6cXde6YQpmz3Iu12dzA2/fZ6lUI8Gfy5Q/8fUDkx8UBsT7zp+kSGakTc9p7K/OA1PXXtvvJGYV3w9kPVaSrfhB1eoXKxa9qMnrIc1BiSHbbbfdwHnX50Fr+P/UNaOvkRFYPlYcNAznk3BO9AgszY+4VDMsBgDoj+4RR/r/U/462NnvYISDnVr6BVlDI1N8/dU8jCPk9zQFHP255oTyuXGIgkq+V5kekQxONLYcteCCC07SdBYjKnnrfqVP54eGPgtTcLdP59oZ58Twf/rHP/7RL02nHziN+Rtq+Xnsrd/+9rdzh4Tk0gE0bWcOSuheoV/3LKn1tI+fTtpodF3n3fk8ncXXvvY131/NdD+qa1BDnybrHqtPL+pmOXf4nkv3vZP0gsLB4WZlMd1PTdHLQr8QHxiZ72PG11Avfb+ul/mZbRxzjOOZ0z+DD/+bXuoLkWm6Di2Vwz2i/1fm2X333Uu+vwjnk3C8+7xy0kknDfiQ5c++++7b99nPfnamY9x++0sFjSKdX235ujE5S5uUzZ/ALBfv/E10fIu+E7haOkHqk9v7pX6AdADrP1KkTgKf+9znBm4mKovr4j/waWFleq1tD1X2J4mV4vkS/ClLXqKbtNLSSy89S3O6+Dc0SXRlQx454U8srLpITKvMb3B7CV0gp37hC18YeEAOJ+xwwdFkrn1+s5RVHBBwEC88NISlP6XUBWy5PB407ZOPiTTZdNNNS9a8xA9yOcqia6yxRmnnnXceuKgnL/AeaZAWZKllWzfCDvj0+WYkeYH3ui7+kxREnTnKUqvBKvm6Qev3PCdpoqBEQw89ftAJohvigVFofvDxUP0iJPxPFWGrERt+c+p5cdLE845lFf/P6MF74KbS/+dJ0dD/KY18DpJsI7nuecLS/kf9VlznnGTRutaXXXbZgfOKzy1J8WgRBbCSSQ2v6xgfov/NYfa9UsaOHVvyw2ZW8f/MmDFjKqv16f9zePk8lfpAVFmhxvYwjTCcos/O/UJmFnnssccGPtmZJWOQBF9zFDxNlpjxMKWHq4n6tCL9BJysUee6X3r4XFgpfjhpZB4RB3v0v1PZnIPiJY0GyoP3LG0nEzzv5m9+85tkUjTrIfDUqQ5/8YtfnOXFgX31w6IDUVllzTXXTD1W9NI0l3s3+6Nz7hx77rnnUL+MqPTP01k0Ms+b+6qH5IHm9Wem4MQGG2ygf52pebxw8zl36iabbFLp9sC2J/xv5Jzoa72vQ74/tga58sorGxr1H+onlr64zb3yyitP1EsmB/M9MnLGdU/Bj75GRkjqGOvz/7bvaYM6sK/AUr+uD0sk7De16uBe2n2n5wv9xz/+0VTbycreDzlKn78a0Y85pF4X/H/byMhOB/WTn9wGf/WcMeSCCy7I7Vzul5xp97ceced79qzie9gQzE++6PTgBH8GjXQGgdSDtTNcK8QL33U5ev2U9HNSDxMKo2Ne0fpe0vOlWcUXn92lvmmsRz5cT6FYyzg4lBYgiqE/aQ9xneK3gmFT99tvv1luquzfbrvt1tBIJt8QVj5kuj1fkBt5A+O63SR+sPLFslJ8nJx77rmVyTW3fbNjCQEgzxMURA+0UxuZxyzUr3eZdoNRb13KNUbg/e/3e5L4JNbzuOcOKz8wRgc9bQLfGDrhUULVRgrF4D8+FkfAn19aYxO/YI012NnB5/KBwMbhhx8+23LLLTfLIeEggl86ZxV/afGBD3ygstpwz+mo++hsQ1wrW+ny7bSXQjF0udNfcsbAsJN97PUAVoi6e16fPaUnS6+VLi89RPpXqedxuVSaRTxc2sGvmd6sDNLAfIPkkQWBzATKnyxkrkeFxgho9Ecp7WarsdaoBQEIQAACEIAABCCQJODP7xv5BD/ZBusQgED8BHo9gBXGvXvs8m7SMxO79A6tXyE9Xpr11dAzqpM+SYEyUuQrSvPoLwQCEIAABCAAAQhAAAIQgAAEIAABCECggsCQiu1e23y+3OGXtEwGr5x8lfQF6fukjJASBAQCEIAABCAAAQhAAAIQgAAEIAABCLSDQK8HsJ4TdE+qPS4FvtMdxLL4k0AEAhCAAAQgAAEIQAACEIAABCAAAQhAoA0Eej2A5Yn7HpWuLH3vJ7Xe2xGLafVVqcsgEIAABCAAAQhAAAIQgAAEIAABCEAAAm0g0OsBLCM/Tuq5wA70RkI8L5Ynd79O2p9IZxUCEIAABCAAAQhAAAIQgAAEIAABCECgQAK9Pom7UZ8u/ab0h1J/KvgP6VLSI6Xjpd+SIhCAAAQgAAEIQAACEIAABCAAAQhAAAJtIkAAq1SaKPYfkp4i3VP6Nak/LbxZ+g3p41IEAhCAAAQgAAEIQAACEIAABCAAAQhAoE0ECGBNB/+mFjtL95D6VwefkDoNgQAEIAABCEAAAhCAAAQgAAEIQAACEGgzAQJYM++ASdq8e+YktiAAAQhAAAIQgAAEIAABCEAAAhCAAATaSYBJ3NtJH9sQgAAEIAABCEAAAhCAAAQgAAEIQAACNQkQwKqJiAIQgAAEIAABCEAAAhCAAAQgAAEIQAAC7SRAAKud9LENAQhAAAIQgAAEIAABCEAAAhCAAAQgUJMAAayaiCgAAQhAAAIQgAAEIAABCEAAAhCAAAQg0E4CBLDaSR/bEIAABCAAAQhAAAIQgAAEIAABCEAAAjUJEMCqiYgCEIAABCAAAQhAAAIQgAAEIAABCEAAAu0kQACrnfSxDQEIQAACEIAABCAAAQhAAAIQgAAEIFCTAAGsmogoAAEIQAACEIAABCAAAQhAAAIQgAAEINBOAgSw2kkf2xCAAAQgAAEIQAACEIAABCAAAQhAAAI1CRDAqomIAhCAAAQgAAEIQAACEIAABCAAAQhAAALtJEAAq530sQ0BCEAAAhCAAAQgAAEIQAACEIAABCBQkwABrJqIKAABCEAAAhCAAAQgAAEIQAACEIAABCDQTgIEsNpJH9sQgAAEIAABCEAAAhCAAAQgAAEIQAACNQkQwKqJiAIQgAAEIAABCEAAAhCAAAQgAAEIQAAC7SRAAKud9LENAQhAAAIQgAAEIAABCEAAAhCAAAQgUJMAAayaiCgAAQhAAAIQgAAEIAABCEAAAhCAAAQg0E4CBLDaSR/bEIAABCAAAQhAAAIQgAAEIAABCEAAAjUJEMCqiYgCEIAABCAAAQhAAAIQgAAEIAABCEAAAu0kQACrnfSxDQEIQAACEIAABCAAAQhAAAIQgAAEIFCTwLCaJSgAAQhAAAIQaBOBsWPHlu66666WW3/llVdabgMDEIAABJoh8OSTTw7fZ599JjbTRr11H3300aH1lqUcBCAAAQhAoCgCBLCKIo0dCEBgBoGrr7665MBEq+Xll19utYko2p86deqQQw89dGoRzj7xxBN9ednp7+8fd8opp4zMq71a7fT19U2UzTdrlev2/PPOO680ZEjrB2jfeeed3Y6S/nUgAf2PTz3ppJOmnHrqqYWcE4VgNum0HFD87d13353z9ttvz+0cW4dPF9ZRpq4il156aWmeeeapq2wzhR566KFmqndN3bfeemvo5ZdfXkh/nn/++ULsdLqRd955pzRu3LhC3NR5rMjzQCF9asTIa6+9Vho/fnwjVTPVsR2kcwgQwOqcfYEn7SEw+fzzz5924YUX5nFzWbMHkydPnl2FptQs2MUFhg4desUll1yybFFdHD58+KvinktQ4rnnniv9+9//LsR133zmZMhRgl9dccUVRZ7vb8jDdwXeVlQ7eXGo6ZJuCH0eyOVc8Pjjjw/5zW9+U9NmHgV0wzw8j3bUxtP6f7lLQUOfpwqRKVOmXJOHIe27/nPPPXfqf/7zn1z232A+yWdn58V8MFOdnDfAeccdd5ygYGd/qx1V4Gaozge5BJwmTZr0Rfm74oQJE1rtdmh/0v+3dx7gklTl1mZgYMgZGTJDUJEsIAIiKCCCAREuSUTES7gGvIAJ9XEGr4mLBBEVUAaGnyCIREGvCgNIVkQySJIgMOQgGYZ/LejCmqb7dJ1zdu+q75z3e551unrX7r1XvfXVrqrdfbq18JfiyTAeb9JrvzGM19f10kc1rtx4zDHHZHszQhtqVsMOnxNOOOGEl84555ws121KcY+9KY6nu5588smnDzjggP6/E/FvyqN65lD77ulTTjllJitT+Bz0XIq+PL6ee+65KZrq2UbCN699TL6877775ry2fUl99v0aoydEKsyUc6eDe+QSeO1kO3HixBdmn332vh/YL7zwgk/Ifkdz2Cd5nXC+pHaOmz6977aLvW/PSW7YdPE9drfddkty8irMdXucNm3arGKUBJJu/rZo3QB2666p5TffeOONj0hZ/LUmU+5I0JnfDvx8gnbqaMLHS5Ybh8Qb9ydNKq1x4oknZnmHtHVsXplgG+7VZO8aCdrJ3oQmJQ647bbb3i7l6tv/xnV7is40vs6iybcUTfVsw331rFStws2qtrPe+c422an+7qxmrWetq1TDIvIQeFLjyip5ukrbi8aVfaTVNRmUtuHurfl8d1n31ZXXnK3rrIUr16bisAmI9/ZqZNFhN1S9AV+TpxgT79QE1iMHHnhgqnNDzy3Qvdd1PSv1ruDJpKWlnBPjfjM8yRspvTePGgMRyHJxPZAB1r1GYHf9PVqaW3rmtZJ4fz4lyzlPlv7CmmPjYUrm2Kz3lIby7prftfHAP9i4Qi/4w2BfRH0IQKAyAR/PnrSzooWvJyL6rpvz9uPGjZskE7mux17Vm0AT1d+pdW84/UMAAhBoI7CInj+0ww47zLTAAgu0rUr/9N57751Jnzx6WW8YjvZP1KaHS4tNIzCbDPmNt/WlJP8lUecG5rpgqnMbI/Q9EiawhsLZnwD8ivRDyR+xjxSfkll/FOcvkUzLq31/Vlo3mG/b9btDvPORb8f56nF16cJ8XSbrabxaejBZa/ka+rm6ekD6Vr4uk/T0PrXi/5d8a5LW8jbiL+V5Km+Xo7o3v/ni89DBo5pC3o3fX935kyH/nbfbYfc2QS2cKG0gvTrs1vI24OvbiJ8e9icqrbq+8Gfc2LFjz9VXTSyYa3fp00B36dNT2+Tqj35qJ+APixwv7Sw9W7ubfAZG1ARWPmz0NBABT2D55DzXQJVG4LqlWtvti5RocYkMfyOaafn9nHRDQN9zyrM/urtsQO8nyPN+AX1/Up7vCujbE52eEH9nQO+nyfOPA/r+uDw/GtC3LfvTvL5BjhaLy7AVLT4gw34XOGL4y208qR8tPKZ4bIkW68uwr40jfjrGP527VTTg8jtROjOgb0+Mny1FzJVfyveWAZlvIc+TAvpeTp49rvjfD0dTeALL273eSNjoofz70UjYbrahWQTGNMsObhpIYJw8+V2T/v+EUfqN94WVFS18foh4jrBnX8T6XWQCAr0I+I2jiG8efVu+LSIfgU3V1fL5uqOnwATml3crWhSfwIrm25P5H5F8nRgtVpHhiG/k+01Cj4kEBLITGJu9RzqEAAQgAAEIQAACEBgOAa7fhkOP10IAAhCAAAQgEJJAxHfXQ4LGNAQgAAEIQAACEIAABCAAAQhAAAIQgMDQCDCBNTRuvAoCEIAABCAAAQhAAAIQgAAEIAABCEAgEwEmsDKBphsIQAACEIAABCAAAQhAAAIQgAAEIACBoRHgOxQ6c/OXAa4rXST5F4qI/hDwryE4pr/+EOrvK3JrRQv/AuEF0UzjtxYCPj6LY7QWA6OwU/9y1cMBt/tueb4yoG8s5yfg833Ec35+Uul6/Ieaei5dc9laekI9PS5FvNbKBomOIACBQRF4XrV9DvIjEZQAE1hv3nH+CXb/3LB/ZtI/4Xu5RPSHwH1qdjPpH/1pvq+t7qHWI95oelLWihbPyrCPxWnRjMvvjdJtAX17ojPijebL8n2idFdA5v8T0LMtXy1F/Blwez9LutMLRBYCF6sXn/cjxtMybUWLg6MZbvm9SY/+Bd+I56HL5Pv21nZEerDvhyIZbnn1NeJL0osBvZt3VObmHi3ul+G3SI9GM45fCAxE4FtaWXzywJNYOWJ3deI+I/6Udw4+9AEBCEAAAhCAwL8JfFiLFpGPwBz5uqInCEBgkATmG2R9qg+PgD8EM8/wmuDVGQnMpr4815BrbiPjptHVu4TAM/ieCc+5k5nAIvcgAAEIQAACEIAABCAAAQhAAAIQSElgRE1g8SXu/04Nf/rJ/3ZyhTSlVexJLAICEIAABCAAAQhAAAIQgAAEIAABCECgRgJMYP0b/qFaXFTaReILI//NhSUIQAACEIAABCAAAQhAAAIQgAAEIFArAb7E/XX8W+nB/8b3Gemu14uG9de/YniSNGvFVvxlco7R+ImvFbXdEb/geoJ8+wsAn5IixYYy+zFpv0im8VobAZ8j/KXoRB4C/6lu/Mu3p+fpLlkvHsf3khhXkiEdsQ35jdPlpYjn/ag75YMy7u8HOiXYBvj7dTwm+g1mAgIQgEAKAj4HbS/9UhqN990pGNbeBp/Ammmm8doLv5D8S0STE+0R//Tvb6RzK+pC1XOMthtFs/+7tKQ3PlgcK7//Fcyz7a4mbR7QtydS/K+9CwT0vqc8bxbQtyf2/xLQ9xh5Pl9aJqB332i+L6DvVeV514C+bflUaYWg3iPa3kimr4loXJ53kvyreNHiQzL8H9FMy6/HlUOkqm8GN2kTD5KZ1ZtkqKIX53jEX8N1jnyy4jY2rdqnZehtTTNVwc+yqrNxhXpNq+JrQ3/IJOK9Z9NY1ubHN4WjPTxpNV3aPSEI/6zoDwfRnn8RwO8yjbYoLkr8xXLRwscOx0++veZ3Yv3vvQdLj+frNklPW6sV37D9IUlr+RqZX11FnDD0cfl+aQnpbomAwEAEttJKv4l1+0CVGrju2/L0qjSxgd4GsuTzfnHuH6heE9cdLlN7SNE+IdlEliPd03bawBuka4NtqCcN1wzm2XbfLh0v+cMD0a4R/cnlOaVbpUjhyc4tJP9nR6Twm5yO4vH1Z/wNRWC034B/TnvLB98O0jOSBxBHcXE1u5Zd9pzkC0UCAhCAAAQgAAEI1E1g6boNjML+ueEZhTudTQ5BgGMz/24yc7jn506PIjDaJ7C2aWWB/w+2U0xtFXpmP9rMeKftoQwCEIAABCAAAQhAAAIQgAAEIAABCIQjMNonsM7QHvNHfNtjAxW8U/qV9KAU7eOoskxAAAIQgAAEIAABCEAAAhCAAAQgAIGRQWC0T2D9uMtu/IHKPYHlL4+8oksdiiEAAQhAAAIQgAAEIAABCEAAAhCAAAQyEJg5Qx90AQEINIeAf2DAIiAAgeYReEGWXmyerZ6O7Dmi754bRgUIjAACL2sbrGjhH1hy8B20r3PgLwQgMHwCxXhSPA6/RVrITmC0fwIrO3A6nIHAw3p2tOR/04wW/rWT66KZlt8p0q8D+vbFty9mfYMfLV6SYSta+FfZLotmWn5fkf4lPRXQ++flOWKunCff6wbkbcv+AReLyEPgJnVzRJ6ukvfiG56INz3fle9xyWn0v8Gr1cXmUsTJt+fl24oWPm8+Gc20/EY8LgvMvrYtJmuLsgiPUcfDewTXvyb7zwiQ8QiBJhNYT+Y8EMzWZJN4g0DNBJaquf+hdj9eL5xnqC/mdUMiwFg6JGyj8kXzBt3qb8v3AUG9R7X9YRmfL6p5fGcl4PP+LFl7TNOZf1Wu+CX2NC3macXn/F3zdJW8F39lzfzJW+1/gyuoi8363w09JCLgY8RzDZ5zICCQhAATWEkw0ggEIAABCEAAAhCAAAQgAAEIQAACLQIjagKL78AiryEAAQhAAAIQgAAEIAABCEAAAhCAAAQaTYAJrEbvHsxBAAIQgAAEIAABCEAAAhCAAAQgAAEIMIFFDkBgdBFYXJvrL0UlIACB5hFYRZaWb56tno7mUo2NetaiAgQgUAeBxdTpsnV0nKDPqL4TbDpNQAACfSIwZ5/apVkIjCoCo/U7sPzluX+TFgi4t/1rfp8M6Puz8nx9QN+27C/QjfilqCvLtycOo8XqMvy/0Uy3/O6lx7kDej9Vng8P6HtrefavykaM7WWaH1nIt+c8SXtZvu6S9rRQ0tbyNfYjdXVKvu6S9bS2WvKvskY8779PviNe264q31G/mDvqOL6MmM8uRQt/CGaOaKbl1z+w8IK0cEDvw7HMd2ANhx6vhUCJgH/NxzfJEU/y/pTE0qVtibLoX5ixooV/oeUcaaVoxuX3IOlzAX2vIc++uY8W/gWln0mrRTMuv74gjHh82nPUT3RPkfd3S9HCE/pWtPBk/lrRTLf8XqvHLQJ697EZcRLIN1xjpYhjy2T5jnh87iTf+0nRwtfkj0pzRTMuv2dKuwT0/QV5PiOgb3/6ymOLH4mgBCKeFIKixjYEIDAMAsVNfcQxy54j+h7G7uKlEAhDwGNLMb6EMS2j27YUyXN0r/60QcRPHETnHtE/5/28e80TV37zyhMT0cK+rWgxtwxbBASyE+CmKjtyOoQABCAAAQhAAAIQgAAEIAABCEAAAhAYDAEmsAZDi7oQgAAEIAABCEAAAhCAAAQgAAEIQAAC2QkwgZUdOR1CAAIQgAAEIAABCEAAAhCAAAQgAAEIDIYAE1iDoUVdCMQn8Gr8TWALIAABCEAAAhCAAAQgAAEIQGC0EfCvexAQqIvAM+r4cenpugwMo9/79Nr7h/H6ul56tjq+u67O6TcUgefl1ooWxSRt8RjJ/5EyG3E8vEy+vx4JdMmr8yRirpQ2IdSifynsgVCO45v1L4XNG3Az7pDnX0gvBfQedVyJ6jtgimC5JgKPqN8/So/V1D/dQmDEEFhPW+KTRsRfzxgxO4ENaTQB/0rYf0uzN9plZ3MfU/E6nVc1utQ/uz6+0Q67m9tKq8Z1X80aCLxBYHstzfPGszgLvrG3iHwEjlZX78jXHT0FJrCzvC8R0P8EeY54vbKIfJ8rRfw1v6/K9zulaPFhGf5eNNOj2K/nGDzX4DkHAgJJCDCBlQQjjUAAAhCAAARGBYHFtZUWAQEIQAACEIAABAYiMKImsPgXwoF2NesgAAEIQAACEIBA8wjc3zxLOIIABCAAAQhAAAL9JcCXuPeXL61DAAIQgAAEIAABCEAAAhCAAAQgAAEIDJMAE1jDBMjLIRCMgL9Laq5gnrELgdFCwOdkH6MRI6rviKzxDAEIQAACEIAABEYlASawRuVub8xG+19Y/ctV/r/caPEpGV47mmn53UW6IKBvW/aXihP5CCygrjbO113SnqJ++fxRonBAUhJ5Gnufurk1T1fJe4n462zJIWRscGH1tV/G/uhqppn2F4TDAoKYIM+XSREnx6N+RYt/KGf+gLmCZQhUJTC3Kp4uzVn1BdRrHgEmsJq3T0aTo8W0sd+VIv5Sy+7yvXnAneWBO+InsHyieUJaVooWJ8hwxBs2/8LMsdFgy68nOu+RIv6qjycNrWhhzwtFM93y+w89bhDQe9Qvcfdx+b2AvG35FGn1gN6dK0sG9O1rxPWkiJNBV8u3fw03WvgX8Y6LZlp+PTF+thTxVwh/Kd9bStFiCxmeFM20/L5F2lpyzhBBCTCBFXTHjTDbEd9dG2G7oPGbM04OPfkW8dMSPklGPFH6/BDxHGHPvoj1O8kEBHoR8IR+xEn9b8u3ReQjsKm6Wj5fd/QUmIA/xRTxk0w+b0Y8d3qS9iOSrxOjxSoy7E8bRgu/GeExkYBAdgIR39XIDokOIQABCEAAAhCAQIMIcP3WoJ2BFQhAAAIQgAAE8hCI+O56HjL0AgEIQAACEIAABCAAAQhAAAIQgAAEINAIAkxgNWI3YAICEIAABCAAAQhAAAIQgAAEIAABCECgGwE+gt6NDOUQiEtgEVnfWer03WL+smJ/2fK+Uqe4VoXnd1pBGQQgkITA29RKty8NX0br/L0pu3Xp6Y8qv6fLun4X+3tRtpE6XTespXL/mqx/nbVT3KnCP3VaQRkEIJCEgM/763dpyd+v4x9a6Pal4n/Vunu7vDZH8WrqxN9z2R5vbxV4fHmlfaWePybd0aGcIghAAAIe8zp9n5vHSoe/zP2l15Zm/POcnvpHo4gGE+h0Idpgu1gLSMBfpuxJkfk6eC8+AeifSe50cfKUyteQXujw2hxFP1Ynn+zSkb/01xdVX+6w/lWV7Sqd1WFdjqJl1clOUsG33Ke/4NLlnygXlpY9oJ9fep570RfYnb7wvPi52621fp0Opp5RmX8hyuzrCE9KOB86hX9JyTnsfdIe9mveD7WvyPTcvg+TZunQn337RP/7DutcdIX0rS7rchTvqU4W79BRkfef0brNO6z3vjhY8mMd4V8b+nyXjj155bGw2xe6vqh1J3R5bb+Ll1UHB0idrhs8eeUc8vpO8RcV/qnTikxl26mfZbr05XzZVlq9w3rzPlryBS1RncCyqnqx5LxoD5f5uuDB9hWt5zfqcZMu63IU+/yzUJeOnCseczxutoeP29vbCzM+/5j6OqhLf2Zu71O6rPfrvttlXb+LzdMTaB4/usXlXVbco/Jux3WXlyQtfq9a65QL7sTXiBtJnY4B58qvpKelOsITgzt26fg9Kh8vdRvLp2rdhVJd4WvUTpMS9uxYUprntaUZ//xLTz3hWVcspY6X7dK5r2+XlzbssH66yv4s+VxUR4xRpz5G/dge86rA+W3mneIRFT7faUWGMufIA9K4Afoy107h873vWTtNbnWqT1kNBDolZA02Rn2X64nAZZIPtLoGqX7uBN+w+casU6yiwhs6rVCZJ7B+02VdjuIV1MnKXTrygG5/Pim2x6squFDyemJwBK5Q9YW7vGQJlT8o+eKvPZ5VgS+86mJ+gPr+z3ZTrec+yftE2Okm2Lmyj+SL2TrCF4NfkHxz0x6+CFxG6nZ8Xq91v2x/UcbnU9SXLwo7aSzpjwAAOeZJREFUxUoqvEPqNJ76gmpnqc6LWXVPZCTw/9RXtxtN3zjcJ3Wa0PRx68mvf0p1xGbqdCep07XaBi1Dl3Yw5nHlROmPHdblKPIk50cl39y0hycqfG69tX1F67n3xSVd1uUo9k3N2kPsaE297m9DfO1ofpnzxDnTKZz7zudO4fH95U4rMpUdo3427NKXJ1SekDrdwHtSYgeprlzZVH3vL3UaVzx5O4fk47BTnKrCIzutyFDm+whPingMGWx4Xyww2BclrP9rtfXxIbTn3N9c+sMQXpviJTuqkZOG2JDPu7sM8bUpXraEGpmrS0POJedEp/B93f2dVgQv8zjr65z1pcuDb0vHwSv6NkX0v55MXyaN1AmsiPsEzxCAAAQgAIE6CQw0gbVky1inG826J7DqZDbcvv1pCL/p0Cn8rn6nCQnX9USKb64JCECgfwTGq2lPsHUKv+nW7VNtnpR4uNOLMpZ1eqOwV/cey7tN4PZ6bYr19rys1Gmy0xOJHhP9HxCdYpoKzZ1oBoERNYHVDKS48ASWBygnFwEBCEAAAhCAAAQgAAEIQAACEIAABIZLwHMMnmvwnEP4GMpscPiNZgMgAAEIQAACEIAABCAAAQhAAAIQgAAE4hBgAivOvsIpBCAAAQhAAAIQgAAEIAABCEAAAhAYlQSYwBqVu52NhgAEIAABCEAAAhCAAAQgAAEIQAACcQgwgRVnX+EUAhCAAAQgAAEIQAACEIAABCAAAQiMSgJMYI3K3c5GQwACEIAABCAAAQhAAAIQgAAEIACBOASYwIqzr3AKAQhAAAIQgAAEIAABCEAAAhCAAARGJYGxo3Krm7vR/onL0RaeRJ1ltG002wsBCEAAAhCAAAQgAAEIQAACWQm8ot6mZ+2x/s5G1BwDE1j1J5QdvNSy8XQz7OACAhCAAAQgAAEIQAACEIAABCAAgRFC4MWRsB1jRsJGjJBtWFvbMesI2Zaqm/EWVTxT+rr0SNUXNaTeV+TjBum8hvipamNjVdxIOqDqCxpSb075OKzl+58N8VTVxt6qeK90RtUXNKTeu+VjK2n/hvipasOf6jxSOlC6o+qLGlJvT/l4UvplQ/xUtbGmKu4i7VP1BQ2q91N5OUK6qUGeqljZtVXpuCqVG1TnHfLyeemzDfJU1cqhqni8dE3VFzSk3g7yMZ90VEP8VLWxvCp+VdpLivZpie/L81nSFVKk2Fpml5IOj2RaXpeQJkr/LT0rRQr7vki6MJJped1SWkX632C+F5bf70nO9WnBvA/Xrievrh5uI7weAqOdgE+Sr0rLBQRxiTx/I6Dvz8mzJ96ixQIy7FxZLZpx+f2d5IvZaPEpGb47mmn59RsBzpX1A3o/TZ5/HND3x+X50YC+bfkF6QMBvR8nz1a0MGszjxjOced6tPCY4rElWngM91ge8c1dnzt9Do0WvlbxNUu08LWhc8XXitHC1+S+No8WvgfyvVC08D2nc2XpaMbx+28CfqeagAAEIAABCEAAAhCAAAQgAAEIQAACEIBAYwkwgdXYXYMxCEAAAhCAAAQgAAEIQAACEIAABCAAARNgAos8gAAEIAABCEAAAhCAAAQgAAEIQAACEGg0ASawGr17MAcBCEAAAhCAAAQgAAEIQAACEIAABCDABBY5AAEIQAACEIAABCAAAQhAAAIQgAAEINBoAkxgNXr3YA4CEIAABCAAAQhAAAIQgAAEIAABCECACSxyAAIQgAAEIAABCEAAAhCAAAQgAAEIQKDRBJjAavTuwRwEIAABCEAAAhCAAAQgAAEIQAACEIAAE1jkAAQgAAEIQAACEIAABCAAAQhAAAIQgECjCYxttDvMjXQCL7U28MWAG2rvEX3bc8E9EvaXZfbVwMyj5kpE39OVJ68EzpWIx2fU8VBp8to4HjHPI3o27+i5wvHpvZgnnOMeyz2mRwt7j3iMRj0+zdrXiL5WjBaRmUfM8cJz8RgtX/ALAQg0gMAKDfAwFAuL60VzDuWFNb9mnPpfsmYPQ+0+aq4sqg2ee6gbXePrZlXfy9TY/3C6Xn44L67xtQur7/lq7H+oXc+iFy471BfX/Lrl1P+Ymj0MpfsF9SIrWpi1mUeMCTLtXI8WHlM8tkSMqGO5z50+h0YLX6v4miViRL1GXEqwfW0eLXwPtFg00y2/UXMlKG5sQwACEIAABCAAAQhAAAIQgAAEIAABCEAAAhCAAAQgAAEIQAACEIAABCAAAQhAAAIQgAAEIAABCEAAAhCAAAQgAAEIQAACEIAABCAAAQhAAAIQgAAEIAABCEAAAhCAAAQgAAEIQAACEIAABCAAAQhAAAIQgAAEIAABCEAAAhCAAAQgAAEIQAACEIAABCAAAQhAAAIQgAAEIAABCEAAAhCAAAQgAAEIQAACEIAABCAAAQhAAAIQgAAEIAABCEAAAhCAAAQgAAEIQAACEIAABCAAAQhAAAIQgAAEIAABCEAAAhCAAAQgAAEIQAACEIAABCAAAQhAAAIQgAAEIAABCEAAAhCAAAQgAAEIQAACEIAABCAAAQhAAAIQgIAIzAIFCDSAwDLysK40j/Sk9LIUJeaX0aWkxxtkeJy8rC29ID3bIF+prMymhlaR/iW9lKrRPrSzhNpcVlpBWlCaQ3pGmi41OWaVufEtOb9nll6UXpWI9AR8Hu7Fdm7VmUt6Pn33yVtcWi16m55L3nJ/G1xEzdv7Y1Kv/dFfJ9Vbd06sIa0keSx8SooSzpHlJY+HTcrr5eTHeTBNGonhbfP56IkGb5zz2teFzg9fX/na0MdkhDFlAfn0+XNRaXbJ+d3k6xTZCx2+PhlovPY44+sYR9PvLXzt7pz3sTnQNml1o2KM3Lxd8r7wNW6U8BgT9d4zCmN8QiA0gT3l/iTJN/DlWFVP/ix5oC7kgfurkk86TYkdZORCaZ2Soc21fLNU+PZNzzmSL37rjgkyYF/3S+vVbWaI/W+v1x0hORc8AeTwTfwpkm/SvH2vSMdL80lNCV+AHCaZfZEb5Uef3C+Q3is1KXzD4OPUx2MxWdXu+2Kt21Yi0hDYWc3cKPmi+nbpQKl9jFTRa3Gm/np/NCGc45tJe0srlwztoeXrpSJvrtHymqX1TV80f3v3zX1TYmEZOUlyrpRjrJ58U/LET8Hbj+dLq0lNibfIyJHSsSVDHq9/JhXePY5fJ+0nNSGmyIRZHiXN1gRDg/SwrOo7N34ibS35DQnHdtK1UpEv92l5S6lJsaHMXCp5wqfwWX68Q+U/lLqNk1pVS3ic+4X0kFT2Wyzbt/NpEYkYPoFF1cQpkq+7/UbmVGkDqVOsoULvh4mdVtZQ5uvzvSQfm76mdSwmnSY9LdmrrxO/KxXHrhYbHT4e7fvwhrn0Na3Pn+3jRZR7z4bhxA4ERh+BydpkD27liYal9NyTVS73TbMvcj3Q+KLKZYdITYj9ZcJ+/C7a+1uGtmmVufwByb6nSi9LD0rvlOqMYgLL/l6QJkm+6YwQM8vkWZK9F3pcy0tLP2+Vna9HXwxe1Xr+Jz2OkeqO8TJwueRcuUm6QnpF8nZcJPkC9wLJ+8Tl35HGSnWHj8W7Jft8TvLEgxn/SjpdulDyDWZxU+EybysxdAJ766VFft+s5Sdbz/+ux5Wk9mjKBJYnJG6TCu9+/LLkC8IiP5z3l0nOcef66lLdsZoMrNdDJ2i9t2fzUr0ltVxneNyzp0PbTBzSKvc51MfpTyWPLR57HpV8Dqg7PPl2n2T/Hv8cviG7WnKZ82OqZP/F+OOJLZ8D6owp6tz+LHtdS4oSvkYpxpJiGw5W2YqSb4rvl7x9J0vF9ddmWm5C7C4TfvPkMekSyddS3gZPdB4h+Qb/DsllPr82YVyRjZm+JRWsncce+34j/VL6rXSl9IDkOo9IO0nE0Al40uceyTyd67dIHvc8nnxXao81VOC6E9tX1PB8n5YX+7HukjypeUrr+eN6PE/ycer1Lq87FpSBXufOjVXHfk9tq6untcZk9W5f85VcLKXlYuxr8r1nyTKLEIBAXQQ6DSInyowHls+3mZpTz4t1m7aty/3UN2u+ob9Reker87F69A2CtYlUvtj2TdI06VKpzpigzs32BMkXfV6+VdpemlVqcuwpc/b7B+kj0melOyXfNPsiZVupHN/UE9ffsVxY0/Lv1e8/pXeV+vdEjz9Z4HfW3tMq943dQZJ9/7hVVueD8/tZaXdp3gGM+ELra5IvFP9vgHq5Vtmv2Q5WvhirM3wx9ZTkC+91WkZm1+NEyWx94/ZWqRxn6onzpe7wzZnHxGOlT0qnS/bs4/N6aWWpCHP2DcblRUGNj39T3+Y3WE2s0bO7Xrrl+dCSj7dp2cxvkDy+lGMDPXla8qR+3XGIDJi3x4xxLTPFDdzRel72Ppue/0hy/c2kOqOYwPL48rD0svQTaXmpyWHGd0m+NpkkeTLL2+Lz5u3SJVL5Rm4JPf+HdKtUd6wvA973h0tztMz42moj6XLJ48ws0hhpY8nXBB6HlpTqjP9Q5/b9W+mdAxix7/dKvmF2fW9vneFxerDnzaJ+nb7d9wGSGU6S5pEca0nXSi73uFOOpkxgfVCmfCx63N5b2lfyserjz76/IhW57+uB41vlm+uxzviYOre/oahO3+57cst3edw7sVXW5HtPeycgAIEGEOg0iNwlX1d28eZB/BHpe13W5yr2icOD9q6lDldrlX2pVFZe9EXvS1JxYi2vy7U8QR3Zd3HTs6OWfaJ02f3SJGlxqYlxnkzZq0/gRXxUC/Z+blFQevRF7j2SbzDqDO/vF6Vtupj4fyr3DUQ5jtGT56W5yoWZl1dUf2brvK0a31FFv6Z8A1r1tSnrXdPyYS+D0cSUJobQlicZ7NcXse2xnQqcR3dKi5ZWNmECazH5se8yP9+Y/bVVvoce2+PLKvBr5m9fkfn5XurPN7z2cpb0gw7y+cjrPZFSrN9Uy3XG0urcnoqx3F4+1Srbwk86hG+EPOniN4PqDE88OI89RhdxuhYel2YtCkqPxVh+YKmsjsUp6tTM55N8DJ7Rej5djz4/fUgqb5OeNiLeJRf27WOuHMXxuU65sLX8n3r0axbpsC5n0ffVmScgPJ60hycO7bF8LC6r557E9bmozjhRnd8hjatoYgHV85sXR1as369qW6lhMx2K+uWpart/UMVp0ti2F/h4vVjyNpWPgaZMYB0lX09L5eu9YnLoXpXPIpVjDj15WDqsXFjDsu8VLpPM9SHpIKk4PxaPB7fWX922Tk9rjcnq3b6dG0XcpYUriydtj2behHvPNls87USgfQDoVIcyCPSDwLxq9PwuDftG4xZplS7rcxUXx4cH5SJ80eTwRUun8InIr/Mk0nWdKtRQdrL6nCodKPkGeaL0DckX5r6Z8ztC5v2CVHcsIwMXSM+XjDhPfPNwU6msWHS5T0hLFwU1PW6kfn1Tdk2X/n1xvoM0t/SvVh3z301aQfL6OmK1VqdTB9H5harr/FlCelCqK7ZQx74hXk9yHk+WqsStVSr1sY65OS54/WGGv6fqmScejpXOkTaWnpWaEOu2TJxWMvOqln8jrSl5H7SHb54dK0p/fm2pnj9Hqts/SSdJm0l/lI6Q7L8Ij4+eBDhAeqwobODjvC1P13fxZua+GXq7VPDvUrWvxT4Pejz0GF2Ez5/3SC8VBaVH1/MbLM6VpsQ0Gdla2kn6puQxx7pTOka6SrpRekCqO5ZpGTivzcjv9dzHZ6fzZ3Eds7TW+2a5rvAxea1UPh4LL/b4jLSp5OPW8Q/JubWyVGesps4vl6peOz2uur4uLM4BWqwlPFb7DYefSD7uvPyEFCHMzmO5J+nL8aSefFjyOo/ld0s+nzYlfP78neRcLsLHpq91fQ712FiO4j6o7vHQY/KG0telb0nvlnaR7pKKmEML/kTZpdLXisKGPvr8eX4XbwXzuu89u9ijGAIQyE1gsjr0hcl8pY49cF9Zel5eXEhPfEFwVLmwhuXx6tO+v1fq2+8Q+kLP7zh0Ct8U2ftsnVZmKvPkmX0f2qG/BVS2t+SbH9cp5IuBm6W647cy8Jg0e8nItlq2z3NLZcWib5Keln5cFNT06JO6PX6yS//Hq9wXKHOV1n9By37NW0tluRfXb3nYeRAd/4/qelvmGcRr+lV1nBq+QvIxt2a/Oknc7rpqz/t9/wHa9YWi65wheTLizNZzPdQWG6lne9q9zcE79Pxoacm2cj/1jYRfU/cNm704nC8/lKZLPgeVfRVeF1R5U2JpGTG/8lheHLNbdDHpc5Nfs1iX9bmKj1RHT0k+nxfhMc83CYsUBaVHn299HppYKqtjcYo6Nb/y9Urh4z1a8HpPKrtOoUe1vIdUZxTjylfaTNyg5/a5Tlu5n35V8rryPnJ57vidOrxF8vm8PZZTgT3+oLTCY+I06aRSWR2LHkNulmat2Lmvv3xMHFSxfr+rbaUOzLZJEz29tvm3quDJtvI1Yvk1HtM9Sf6ctIG0huRtnCjVGVPVuX3N3GZiPz33NXl7zK+C56Wft6+o8fm71PffJefwbiUfc2jZjA8vlTVhMeq9ZxPY4QECEBCBYhC5VcsnSvtKkyTfBH9UKocv2E+WPBjuVF5R0/LpLS9H6rE4YW6tZZ9YdpGKmFMLkyT79jbWGQNNYJV9vVtPviGdIP1V8kV53bGXDJjhBZI5+yb/PukaabpUzglfCBwruf42Up3hE/hD0iOSb3LKsZ2eONevKhVuqGVfCDwgjS2V5170jYAvwH1Bsqfki6ZusbBW+ObI2+KLyKaE34V/QbqkKYZ6+PBY4Zuvu6QPSN4HneJHKnRueww6v7Wsh9rCE5aevL9d+pA0Rhoo1tRKHxO3DFSppnXvV7/3So9JO7Q8HKhH816w9bwJDz4f2tPT0lTJN77267HjYqk4J2nxtRsjjzUeg7y+7lhbBnxcmrPHO4dz38ept2VxqQjfZNrz89KqRWFNjwNNYBWWPLn1aekw6f8kb+NEqc5wLvxDelz6tvRRyWOHJwWvky6Xyrnt/eP8v16qO3wT7zw/RpqrZGYhLV8oed2WksPsfyC57PNSnfEJdW4fZ0vrDmDEY6WPgSsl7w9PrDQlTpARb8OmTTHUw8eXWn4P0WN5DCm/7G164nPPk5Kvcb19E6U642vq3D48ZozvYcQToj+VXH/HHnVzr/bxebRkb2dKfjPC179+frjUpJgsM/Z1qxTt3rNJHPECgVFLYFttuS+k7pQ8mJR1j54X4ZuilySvv1TqdYOkKn2PedXDVZI9+cLQFypHSNdJLvNJ8gap8H2Tln2jV2dMUOf2duggTcw8yPr9qG4PPinafyEzXlQqTpq+CPy19E/JdX4vNSG2kglPstnT1ZI9/q313DdyvqF3fEZyHV/I+ma07lhRBi6W7Mk3kM7tqdKvJG/DBdK1UjnHF9bzJoVvgOx71SaZGsDLLlpX5MqNXep5/DtW8n4p1KVqtmJfTDtv7ccTPt3COfOK5Jxp6o3RAvJ2iuRt8Sc5ivFlQS03JXz+8Y3MZdK/pCIPisfdVFaE67jc3LcsCmt+/LT6f05yrnsMmSz9vPX8RT36fDlNsm/X2V2qO6bIgP14omQw0YTz5/tl+AmpyA8/HiAtLz0reXLT51dfX5m/c8UTK3XHWBnwed1+H5b8Bonlay6XnSoV4clCl/1Vmq0orOnRY/Q+0jOSPd0nXSGdK53cevTE4f2S13s8/KLUpPAkodl7nIkQnqj1OdM8nb/drqHW0Loif1x3klRn2LevC+3F11k+/3SKbVRYjIk+jzrHmhhbyZSPVXvdXvJ2HS41KbaVmaj3nk3iiBcIQEAE5pM2knwSP1Y6Tirio1p4SjpKmrMobMijJ9emSvbngbosn0Q9w7+XNE6qOybIgP0dWreRYfS/tV57kPRf0hKtdubX43GST5rePl+Q+4Q5h9SU2EBG/iwVN/m+YJ0qlSdWnOenSRtJTQlfJJn1lZIn28y3kPP7Qcnb8XGpCTdqshE+NtMWmOlVA2yJWXu/PCZ5fzQh3isTv5F2H8DM7Vrni/X3DFCnKas+KSNPSkW+L9gUY20+nAv+ZIFvFr4v/U7aUCrCvK+XmjZhuKg82e89UjEuFqz96Im5k6VVpCbEFJmwL1+rRIylZfpL0g+kTaRZJMd20uWSx3NvnycByvmjp7WGr/n+VyrGOnt8SPqaNKtUxK+18G3J9ZsSy8mIc/ifkn2X5cmt26QfSktJxPAJzK0mfiTdJfmapFt44tYTod4fk6S6w9eq35GuGsDILlr3uOTt86RXk2O8zJ0nFfnu6/GmhsfzjaQvSsdKx0lFNPnes/DIIwQg0GACHtzLFypNtTqvjK0krSv5YnGs1KTwZMQ80rgmmUroxTdynqQrLswTNp2sKbO3xwj53L7R9vwWaQVpSalp+S1LIyqcz73C75Jv1atSg9b7BiNSLCuzv5KmSh47I0YE3x6z/YbEuyRPWPlNiaaFbxojsBwqt0X0wqZO0hbb5Btj+4wYvj70RNWKkm+aif4SqHL+XEcWVu2vjWSt+z6oyde2nTb0cyr0ufMLnVYGKIty7xkAJRYhMLoILKPN/YDkj/x6IIkSc8moT4ybSL7RjxJRfZsvuZI/y3yT6YtxT4xGCl8EehKuiTfJvThGZR7VN7nSKyPTr4/KPKpv70GOz7R57E9erZ62ySyt+Q02vwG7cJbe0nYSlXlU3+RK2vylNQhAIBCBPeX1JKl9csrviPxZerWkJ7T8VckXiXWHT+72vXObEX8i5ZvS81LZ+/l6vppUd0T1bW7kSj3Zs4O6vVDyhGwRm2vhZqnI8ce0fI7kC7GmhD8pdqR0bMmQ3/X+mVQcn69o+TppP6lJEZV5VN/kSv7sj8o8qm/vYY7PfHk+RV35/OivvZgtX7fD7smfDrfv+6X1ht1a3gaiMo/qm1zJm9/0BgEINIjAZHnxybL8cWp/xNqTVS73JNaRkieL7pNcdohUd/jfA+3l0DYj9uZy+/+V9FPpAmm69KjkAb/OiOrbzCZLZkuumEae2F/dmLnz9/2tLrdplbn8AcnH5lTpZcnfh/VOqe7wRG0xXlzUMuN/f7xasm9PXNmzj9G7JZd5Ymtmqe6Iyjyqb3Ilf8ZHZR7Vt/cwx2fePJ+i7nxesXzeWUuKEL5GLXy/oOVJ0jgpQkRlHtU3uRLhqMAjBCDQFwKdJiVOVE8+gX6+rUd/MWexbtO2dbmfdpoIeptM+Mb4Bml8myF/gffT0p/aynM/jerbnMiVvNniTxo8J90ovaPV9Vg9eiLW2kQqT/j4E4bTpEuluqOYSP6ajBQX3/to2eOKf1GufHz63XF/KarXbSbVGVGZR/XtfU2u5M/4qMyj+ub4zJ/jxaTE7ur6Yclv8PxEWl5qchSTEifI5GmSz4u3SttLs0pNjqjMo/omV5p8NOANAhDoK4FOkxJ3qccru/TqfzV8RPpel/W5ijtNBH1Knftkv0UXE19RuS9i6vyFnKi+jZRcMYV8sbm6cj7vWupytVbZl0pl5UVfrPvXFecpF9awfLn6vFMqT7CdruePS50uwl3vHulAqc6Iyjyqb+9rciV/xkdlHtU3x2f+HC8mJfyJ8UWlMySfT6dL50kfksrnJz1tRBSTEoe23OyoR79hZe/3S5OkxaUmRlTmUX2TK008CvDUyIGV3TI6CMyrzby+y6b6EyG3SP6VoqaFfTu6ef+r1s0ivd2VGhRRfRshudK/RPKnrRxXv/7w2l9/wtBxx+sPb/p7r0r8Ol/Y1Bn2cI3km4Ui7N2TVJ5gaw/X88X5iu0rMj+Pyjyqb+9eciVzkgdnzriSN1+iHp9lStP0ZGvpE5KvX/0m52+k26SvS5tKi0lNjJNlamXpeGkBaaJ0t3Sq5O1ZXRonNS2iMo/q2/ufXGnaUYAfCECgbwQmq2W/szNfqYffa/nK0vPy4kJ64v/LP6pcWMPy0urTvg8t9b1+q8wXJ53iYBX6NXVeqET1bZ7kiinkC/+bnfO1/GnHMXruf4dwLneKI1To43O2Tiszlh2pvp6SPF4U8QUteAJ8kaKg9Oht9acjJ5bK6liMyjyqb+9jciV/pkdlHtU3x2f+HJ+iLn3+LF/bFi7eowWvf1ZynUKPankPqc6YoM7tp3xtW/jxBNbekt+kLTz70efOm6W6IyrzqL7Jlboznv4hAIHaCBSTErfKwYnSvtIkyZ+W+KhUDk++eIbfJ8ydyitqWC4mgp5W31Olg6QdpL9LF0uzS0X4Y+LbSf7XR6+vM6L6NjNyJX/mnK4ufbz5xq3Iab+T/Ly0i1SE/y12kuS6Po7rjrVlwBNp/kTYhi0z9niJ5ON18VaZH9aQfFx6m1aV6o6ozKP6JlfyZ3xU5lF9ew9zfObN84EmJQonntz6tHSY9H+Sz1cTpTpjoEmJsq9368k3pBOkv0qejKs7ojKP6ptcqTvj6R8CEKiNwLbq2RdWd0q++S3L/+5ThL8v4CXJ6y+Vxkh1xrzq/KfSZdK/pLJvL+8mFeE6LvOk3JZFYU2PUX0bF7mSP2mcL1dJzt/HpbOlI6TrJJc9JN0gFcfmTVqeR2pCfFom/Imr6dK1kidAf956/qIe7dUf1/d2uM7uUhMiKvOovr3PyZX8mR+VeVTfHJ95c3yKuvO5pdMnsAZy4jc864wJ6ty+O30CayBfdfu2t6jMo/omVwY6IlgHAQiMGgI+0W8kfVE6VjpOKuKjWvC/BB0l+ZMUTQqfuN8mbS99X/qdVHzqQ4uvfYeQP3K9qZ80KKL6NkJyJW8ieQJ5quRj0Be3ZXli1p+g3EsaJzUpFpUZH5P3SP43h7JvL3vy+WSpid+pF5V5VN/kig6EzBGVeVTf3r0cn3mSfKiTEnncde9lqJMS3VvMtyYq86i+yZV8uU1PgyAwZhB1qQqBfhOYQx34BtSf9IgW/kSK/9UwWkT1Ta70N9P8Tv4Skh8fkO6XfGw2PfwDCuMle/e/O9wnPSFFiKjMo/omV/IfFVGZR/XtPczx2b8897/czypFu/bzvd/ckj+l7H/DjxRRmUf1Ta5EOjrwCgEI9JVAr48h+2LRXyTpAb9JYV+9whcF9t6kiOrbDMmVvJlEruTl7d6iMo/q28wZV0whb0RlHtU3x2fe/HZv5ArMqxIgV6qSSlcvKvN0BGgJAhAYNAF/HP8U6THJ/9IzVdpA6hT+wmX/68/ETitrKNtZfd4o+RMot0sHSv4EUKc4U4X23oSI6ptcyZ895ArMqxIgV6qSSlcP5ulYVmmJc1AVSmnrRGUe1bf3HuNK2hzu1Rq50otQ+vWRmaenQYsQgMCgCPhTSfdInth5UrpF8hcq+3t1viu1R5MmsPaWOfu2bpbs38v+RbOVpPZoygRWVN/kSntG9f85udJ/xu09RGUe1TfjSnsG9v95VOZRfXuPcnz2P6/LPZArZRp5lqMyj+rbe5VxJU9u0wsEINAwAgfIjyd9JknFr5etpeVrJZcfIpWjKRNY/hJxf6G1J9zWaRn0vzVOlDz59qD0VqkcTZjAiurbHMmVcjb1f5lc6T/j9h6iMo/q2/wZV9qzsP/PozKP6pvjs/853d4DudJOpP/PozKP6ptxpf85TQ8QgEBDCfxBvqZJY9v8eWC8WPIk1pdL65oygeV/cbQ3v/vQHtupwF+Aeafkj6gW0YQJrKi+zZBcKTIpzyO5kodzuZeozKP6NnvGlXIG5lmOyjyqb47PPHld7oVcKdPIsxyVeVTfjCt58ppeIACBBhK4SZ5O6+JrXpX7k1j+l0JPCjmaMoFlP57AWsWmOsSuKvP6q6Q5JUcTJrCi+jY/csUU8gW5ko910VNU5lF9mzvjSpF9+R6jMo/qm+MzX24XPZErBYl8j1GZR/XNuJIvt+lpEAR6fSP/IJqiKgS6ErhbazaVOv2qoP9Fb0vJP3c/RfJsf1PCvh0fef3hTX+PU8lEyf9eeKJU5Vd/VK3vEdW3wZArfU+PGTogV2bAkeVJVOZRfXunMq5kSe0ZOonMnOuVGXZl35+QK31HPEMHjOUz4MjyJHKOG1C0+yB7jsrc3gkIQKABBL4kD/6kkr/ravEuft6m8ockf0n6NyTX9+RQneFPVflfH++SPiB1m6D6kdbZ7+nS+a1lPdQWUX0bGLmSN23Ilby83VtU5lF9mznjiinkjajMo/rm+Myb3+6NXIF5VQLkSlVS6epFZZ6OAC1BAALDIuBPXt0oeZLHX36+g9Qp/K+Dj0uuZ02S6o5dZMD/3mg/3oZOMUaFx0qFbz/WHVF9kyv5M4dcgXlVAuRKVVLp6sE8HcsqLXEOqkIpbZ2ozKP69t5jXEmbw71aI1d6EUq/PjLz9DRoEQIQGBIB/4SsP6l0l/TxAVpYXut+K3kSaJLUhNhMJqZKVw1gxv+O+1/SY1ITJrBsNapvcsV7L2+QK3l5u7eozKP6ZlzJn+NRmUf1HXlcico8qm9yhfFwMAQ47w+GFnUhAIERSaDKd6/5e6VWbdjWV/G9kDxvhe9kBKowJ1eS4Z6pCu8m5rgJVPFOrpAr5Eq6HBhMSyP5+GRcGUwm9K5LrvRmlLJGFd6c91MS53olLc1qrVXJ8yaO5dW2jloQgAAEIAABCEAAAhCAAAQgAAEIQAACEIAABCAAgTIBfzn6CtL85cIgy/a8ouTvwYoUUX2TK/mzjFyBeVUC5EpVUunqwTwdyyotcQ6qQiltnajMo/r23mNcSZvDvVojV3oRSr8+MvP0NGgRAhDoSOAtKj1SOra0dj4t/0x6XvL3RvkL3q+T9pOaFP7S+Qslf7S0iM21cLNk35a/++ocaTmpKRHVN7mSP4PIFZhXJUCuVCWVrh7M07Gs0hLnoCqU0taJyjyqb+89xpW0OdyrNXKlF6H06yMzT0+DFiEAgUERWFi175M80XNR65Wz6vHqVpknrqZKv5LubpV5YqvK/yurWl9jf7Vu39Ol97d62qZV5vIHpJMk+39ZelB6p1R3RPVNruTPHHIF5lUJkCtVSaWrB/N0LKu0xDmoCqW0daIyj+rbe49xJW0O92qNXOlFKP36yMzT06BFCEBg0AQO0Ss82fM1aVzr1fu0yo7W4/hWmR9mk/xrha7vX72oMzxz/5x0o/SOlpGxeny0pU30WJ5kW03Pp0mXSnVGVN9mRq7kzRxyJS9v9xaVeVTfZs64Ygp5IyrzqL45PvPmt3sjV2BelQC5UpVUunpRmacjQEsQgMCwCFyuV98plSd7TtfzxyV/Eqs9XO8e6cD2FZmf+98EPZG2a6nf1VplXyqVlRd315OXpHnKhZmXo/o2JnIlb7KQK3l5u7eozKP6NnPGFVPIG1GZR/XN8Zk3v90buQLzqgTIlaqk0tWLyjwdgRHcUnlCYQRvJptWMwF/aukayf+GV4T/bdCTVJ7saQ/Xu19asX1F5uf27fC/OhZh3447Xn940997VeLXTXjTmnwFUX2bELmSL08K3n6MluOFd8YVk8gTjCt5OJd7gXmZRp5lzkF5OJd7icycc1B5T/Z/mVzpP+NyD5yDyjRYbgwBJrAasytGtBHfHG8mLVTayou1/FZpkVJZseh/KVxburYoqOmxuKnfsdT/TVp+RHpPqay8+GE9eVG6pVyYeTmqb2MiV/ImC7mSl3eR435kXMnHnnElH+uip8jMuV4p9mKeR3IlD+eiF877BYl8j5Fz3JSiXa/Yc1Tm9k5AAAINIODJqBckfzppw5afOfV4ieQvP1+8VeaHNaS/S89Lq0p1h//V0f9GeKQ0e8vM1nq0v11az/3g7Zkkue6JUt0R1Te5kj9zyBWYVyVArlQlla4ezNOxrNIS56AqlNLWico8qm/vPcaVtDncqzVypReh9OsjM09PgxYhAIEhEfi0XuUvRPe/B/qTVZOln7ee+xNL/mSTvwDdE0Cus7vUhJhXJq6S7Mvf2XW2dIR0neSyh6QbJP8rpJ97O+aR6o6ovs2NXMmbPeRKXt7uLSrzqL7NnHHFFPJGVOZRfXN85s1v90auwLwqAXKlKql09aIyT0eAliAAgWETWFQtfF/yd1+9LHnCp6x/6fnJ0ipS0+JDMjRVekoqe/ayvxfrVmkvaZzUpIjqm1zJn0XkCsyrEiBXqpJKVw/m6VhWaYlzUBVKaetEZR7Vt/ce40raHO7VGrnSi1D69ZGZp6cxQlocM0K2g82IR2AWWR4vLSE9K90nPSFFCL/Lad9+fEDyF857Qq7pEdU3uZI/s8gVmFclQK5UJZWuHszTsazSEuegKpTS1onKPKpv7z3GlbQ53Ks1cqUXofTrIzNPT4MWIQCBAQksp7WrD1ijmSv9aap1pYWbaa+rq6i+vUHkStfd2pcV5EpfsA7YaFTmUX17ZzCuDJiSfVkZlXlU3xyffUnjARslVwbE05eVUZlH9c240pc0plEIQCACgSky6X+1O0qaLYLhlscJerRvf8JqvVZZhIeovs2WXMmbYeRKXt7uLSrzqL7NnHHFFPJGVOZRfXN85s1v90auwLwqAXKlKql09aIyT0eAliAAgWERKAYRTwb5Z03XGlZr+V48QV3Zs+VfUZwk+d2IpkdU3+ZKruTNLnIlL2/3FpV5VN9mzrhiCnkjKvOovjk+8+a3eyNXYF6VALlSlVS6elGZpyNASxCAwLAIFIOIf1nwYcnfF/UTaXmpyTFB5jx5dYJ0WmvZX9a+vTSr1NSI6ts8yZW8WUWu5OXt3qIyj+rbzBlXTCFvRGUe1TfHZ978dm/kCsyrEiBXqpJKVy8q83QEaAkCEBgWgWIQmU+t+NcgzpA8MTRdOk/yr6DMLDUtJsiQfR7aMrajHh9tlfnfCidJi0tNi6i+zZFcyZtN5Epe3u4tKvOovs2cccUU8kZU5lF9c3zmzW/3Rq7AvCoBcqUqqXT1ojJPR4CWIACBYREoDyJFQztp4SbJE0TWHdLXpU2lxaQmxASZKE9g2ZN/OdHb85zkdS9Jp0qfkPxF9U34F8OovoVvhgtCP3eQK69z6MdfcqUfVAduMyrzqL69N6ZIHq/9JkoRjCsFif48RmUe1TfHZ3/yeKBWyZWB6PRnXVTmUX0zrvQnj2kVAhAIQKDTwF3Yfo8WvP5ZyTcYhfxJpz2kOqPTwF34WUALe0vXS4VnP/rfI2+W6oyovs2MXMmbOeRKXt7uLSrzqL7NnHHFFPJGVOZRfXN85s1v90auwLwqAXKlKql09aIyT0dgBLc0dgRvG5sWg8Alsml5Mujjkj/FtJL0Dqkpn8SSlTfF4yo5vKV363ETqfD9di03NaL6Nk9yJW9WkSt5ebu3qMyj+jZzxhVTyBtRmUf1zfGZN7/dG7kC86oEyJWqpNLVi8o8HYHgLY0N7h/7I4fAk9qUY9s2p4nfi9Vm8bWnV+ivVQS+CxL9eSRX+sN1oFaj5ji5MtBe7c86cqU/XAdqFeYD0Um/jnElPdNeLUZlHtW39wfjSq+sTLueXEnLs0prkZlX2b4RWyfKjfaI3QFs2IAE/CXvEQPf+fcazPMyj8rblKJ6x3feHCdX8vOGeX7mUccVcoVcGQyBqHmO78Hs5TR1ozJPs/W0AgEIvEFgdi3N88azOAtjWr6b8MXsg6EW1be3kVwZzJ4efl1yZfgMB9tCVOZRfXv/MK4MNkuHXz8q86i+OT6Hn7ODbYFcGSyx4dePyjyqb8aV4ecsLUAAAhCAAAQgAAEIQAACEIAABCAAAQhAAAIQgAAEIAABCEAAAhCAAAQgAAEIQAACEIAABCAAAQhAAAIQgAAEIAABCEAAAhCAAAQgAAEIVCPg/20lINBvArurg3mH0Mlles3lQ3hdqpesrIY+OMTGDh7i61K8LKpvbzu5kiIDqrdBrlRnlapmVOZRfXu/Ma6kyt7q7URlHtU3x2f13ExVk1xJRbJ6O1GZR/XNuFI9N6kJAQiMMALXaHteHYIm1sxhqyF4LrazTutRfZsZuZI3c8iVvLzdW1TmUX2bOeOKKeSNqMyj+ub4zJvf7o1cgXlVAuRKVVLp6kVlno7ACG6JT2CN4J3boE0bLy+nS+tJZ0mTpSpxqypZdYbfNfmJ5J9V3UN6QqoSZ1ep1Mc6UX2TK31Mii5NkytdwPSxOCrzqL4ZV/qYzF2ajso8qm/vBo7PLsnYp2JypU9gB2g2KvOovr0rGFcGSEhWQQACI5vAOG3eFdIL0prBNrV4Z/NUfGchQK5kwTxDJ1FznFyZYTdmeUKuZME8QycwnwFH358wrvQd8Zs6iMo8qm/vAMaVN6VhXwvIlb7i7dh4ZOYdN4hCCEAgPwH/L7UnsC7J3/WwezxBLfjfAzcddkt5G4jqm1zJmyfujVyBeVUC5EpVUunqwTwdyyotcQ6qQiltnajMo/r23mNcSZvDvVojV3oRSr8+MvP0NEZIi7OMkO1gM2IQeFg2n5PWlS6RHpKixEUyurE0v3SuFCWi+iZX8mcYuQLzqgTIlaqk0tWDeTqWVVriHFSFUto6UZlH9e29x7iSNod7tUau9CKUfn1k5ulp0CIEIAABCEAAAhCAAAQgAAEIQAACEIAABCAAAQhAAAIQgAAEIAABCEAAAhCAAAQgAAEIQAACEIAABCAAAQhAAAIQgAAEIAABCEAAAhCAAAQgAAEIQAACEIAABCAAAQhAAAIQgAAEIAABCEAAAhCAAAQgAAEIQAACEIAABCAAAQiMPAJjRt4msUUNJLC7PM07BF+X6TWXD+F1qV6yshr64BAbO3iIr0vxsqi+ve3kSooMqN4GuVKdVaqaUZlH9e39xriSKnurtxOVeVTfHJ/VczNVTXIlFcnq7URlHtU340r13KQmBCAwwghco+15dQiaWDOHrYbgudjOOq1H9W1m5ErezCFX8vJ2b1GZR/Vt5owrppA3ojKP6pvjM29+uzdyBeZVCZArVUmlqxeVeToCI7glPoE1gndugzZtvLycLq0nnSVNlqrErapk1Rl+1+Qn0nRpD+kJqUqcXaVSH+tE9U2u9DEpujRNrnQB08fiqMyj+mZc6WMyd2k6KvOovr0bOD67JGOfismVPoEdoNmozKP69q5gXBkgIVkFAQiMbALjtHlXSC9Iawbb1OKdzVPxnYUAuZIF8wydRM1xcmWG3ZjlCbmSBfMMncB8Bhx9f8K40nfEb+ogKvOovr0DGFfelIZ9LSBX+oq3Y+ORmXfcIAohAIH8BPy/1J7AuiR/18Pu8QS14H8P3HTYLeVtIKpvciVvnrg3cgXmVQmQK1VJpasH83Qsq7TEOagKpbR1ojKP6tt7j3ElbQ73ao1c6UUo/frIzNPTGCEtzjJCtoPNiEHgYdl8TlpXukR6SIoSF8noxtL80rlSlIjqm1zJn2HkCsyrEiBXqpJKVw/m6VhWaYlzUBVKaetEZR7Vt/ce40raHO7VGrnSi1D69ZGZp6dBixCAAAQgAAEIQAACEIAABCAAAQhAAAIQgAAEIAABCEAAAhCAAAQgAAEIQAACEIAABCAAAQhAAAIQgAAEIAABCEAAAhCAAAQgAAEIQKC5BMY01xrORhCBpbUt/iWIwcajesFjg31Rwvpzqa3Fh9jebUN8XYqXRfXtbSdXUmRA9TbIleqsUtWMyjyqb+83xpVU2Vu9najMo/rm+Kyem6lqkiupSFZvJyrzqL4ZV6rnJjUhAIERRuBv2h7/gt9gNbFmDh8bgudiG+u0HtW3mZEreTOHXMnL271FZR7Vt5kzrphC3ojKPKpvjs+8+e3eyBWYVyVArlQlla5eVObpCIzglsaO4G1j05pH4FlZ8i+e+JcIq8TNVSplqnOT+rklU18pu4nqm1xJmQXV2iJXqnFKWSsq86i+GVdSZm+1tqIyj+rbe4Xjs1pupqpFrqQiWb2dqMyj+vaeYVypnp/UhAAERgCBfbQNf5f86aQnpSnSB6WmT6CuII+nS89L9v5X6cvSUlKTI6pvMyVX8mYWuZKXt3uLyjyqbzNnXDGFvBGVeVTfHJ9589u9kSswr0qAXKlKKl29qMzTEaAlCEAgCYG11MpB0t2SJ4Qeln4mvVdq8vexzSt/n5J+K70kTZf+JH1WWkRqakT1bZ7kSt6sIlfy8nZvUZlH9W3mjCumkDeiMo/qm+Mzb367N3IF5lUJkCtVSaWrF5V5OgK0BAEIJCHgyaoNpB9LD0qezLpX+qHkgabJsZDM7SlNlV6RXpZ+J+0qzSc1NaL6JlfyZxS5AvOqBMiVqqTS1YN5OpZVWuIcVIVS2jpRmUf17b3HuJI2h3u1Rq70IpR+fWTm6WnQIgQgMCwCs+jVm0g/l/yrg57M8r8bHiAtIzU5FpO5L0qXS/btfzU8XfoPqckR1Te5kj+ryBWYVyVArlQlla4ezNOxrNIS56AqlNLWico8qm/vPcaVtDncqzVypReh9OsjM09PgxYhAIFhEZhVr/6M9LjkCaFJUpRYTkbPk+zbihJRfZMr+TOMXIF5VQLkSlVS6erBPB3LKi1xDqpCKW2dqMyj+vbeY1xJm8O9WiNXehFKvz4y8/Q0aBECEKhMYGnV3E+6QvL3S3kC6B5pa6nJ4UHPX0Y/WSo+PebvyPJ3ZTU5ovo2U3Ilb2aRK3l5u7eozKP6NnPGFVPIG1GZR/XN8Zk3v90buQLzqgTIlaqk0tWLyjwdAVqCAAQGTcADx76SJ62KTy3dr+UfSetL/l/lJsZYmdpcOkYqJq38PVh/lHaX/D0CTYyovs2SXMmbUeRKXt7uLSrzqL7NnHHFFPJGVOZRfXN85s1v90auwLwqAXKlKql09aIyT0eAliAAgUETWEqv8M+a+jujpkueuJom/VTaSJpZamL4IvAD0i+kYtLKX+B+keRfIlxUamJE9W2W5ErejCJX8vJ2b1GZR/Vt5owrppA3ojKP6pvjM29+uzdyBeZVCZArVUmlqxeVeToCtAQBCAyJwG561WVSMWnlSSB/afumkr9Ir6mxjIzZ5yOSJ9vs39vhL25fXGpqRPVtnuRK3qwiV/Lydm9RmUf1beaMK6aQN6Iyj+qb4zNvfrs3cgXmVQmQK1VJpasXlXk6AiO4pab+m9YIRj4qN+1v2urVJU8E/Vryv9v5u6J6xS2qcGuvSn1c/zG1fYb0quSJq1Olu6UqcVaVSn2qE9W3cZArfUqKLs2SK13A9LE4KvOovr0rGVf6mNBdmo7KPKpvjs8uidjHYnKlj3C7NB2VeVTfjCtdEpFiCEBg5BPwwO1JoMFqYs1oPHAP1nNRv07rUX2bGbmSN3PIlby83VtU5lF9mznjiinkjajMo/rm+Myb3+6NXIF5VQLkSlVS6epFZZ6OwAhuyf8rT0Cg3wT8b3jjh9DJxUN4TcqX+NNf30nZYKa2ovo2HnIlU5K0uiFX8vJ2b1GZR/Vt5owrppA3ojKP6pvjM29+uzdyBeZVCZArVUmlqxeVeToCtAQBCEAAAhCAAAQgAAEIQAACEIAABCAAAQhAAAKjm8Bc2vx3S+MCYlhJnifgOxsBciUb6jc6iprj5MobuzDbArmSDfUbHcH8DRRZFhhXsmCeoZOozKP6NnzGlRlSsO9PyJW+I35TB5GZv2ljKIAABNIT8L+rbiudIK1Tan5mLR8vPS/5+6Oelvyxzyb9OuEK8vNN6UdSOTbSkzul4nuvrtfye8sVal6O6ptcyZ845ArMqxIgV6qSSlcP5ulYVmmJc1AVSmnrRGUe1bf3HuNK2hzu1Rq50otQ+vWRmaenQYsQgMCgCRyuVxQTPVuXXv39Vvn9epws3dB6fpgemxA+wT8m2fu1JUNLavkhabrkX1U8RXpG8i8tLi/VHVF9mxu5kjd7yJW8vN1bVOZRfZs544op5I2ozKP65vjMm9/ujVyBeVUC5EpVUunqRWWejsAIben/A/14aIYNl/gLAAAAAElFTkSuQmCC",
+      "text/plain": [
+       "Plot with title \"GSE48350/hgu133plus2\""
+      ]
+     },
+     "metadata": {
+      "image/png": {
+       "height": 240,
+       "width": 600
+      }
+     },
+     "output_type": "display_data"
+    }
+   ],
+   "source": [
+    "myboxplot(eset_rma, \"GSE48350\")"
+   ]
+  },
+  {
+   "cell_type": "code",
+   "execution_count": 13,
+   "metadata": {
+    "vscode": {
+     "languageId": "r"
+    }
+   },
+   "outputs": [
+    {
+     "data": {
+      "image/png": "iVBORw0KGgoAAAANSUhEUgAABLAAAAHgCAYAAAC1l5SfAAAEDmlDQ1BrQ0dDb2xvclNwYWNlR2VuZXJpY1JHQgAAOI2NVV1oHFUUPpu5syskzoPUpqaSDv41lLRsUtGE2uj+ZbNt3CyTbLRBkMns3Z1pJjPj/KRpKT4UQRDBqOCT4P9bwSchaqvtiy2itFCiBIMo+ND6R6HSFwnruTOzu5O4a73L3PnmnO9+595z7t4LkLgsW5beJQIsGq4t5dPis8fmxMQ6dMF90A190C0rjpUqlSYBG+PCv9rt7yDG3tf2t/f/Z+uuUEcBiN2F2Kw4yiLiZQD+FcWyXYAEQfvICddi+AnEO2ycIOISw7UAVxieD/Cyz5mRMohfRSwoqoz+xNuIB+cj9loEB3Pw2448NaitKSLLRck2q5pOI9O9g/t/tkXda8Tbg0+PszB9FN8DuPaXKnKW4YcQn1Xk3HSIry5ps8UQ/2W5aQnxIwBdu7yFcgrxPsRjVXu8HOh0qao30cArp9SZZxDfg3h1wTzKxu5E/LUxX5wKdX5SnAzmDx4A4OIqLbB69yMesE1pKojLjVdoNsfyiPi45hZmAn3uLWdpOtfQOaVmikEs7ovj8hFWpz7EV6mel0L9Xy23FMYlPYZenAx0yDB1/PX6dledmQjikjkXCxqMJS9WtfFCyH9XtSekEF+2dH+P4tzITduTygGfv58a5VCTH5PtXD7EFZiNyUDBhHnsFTBgE0SQIA9pfFtgo6cKGuhooeilaKH41eDs38Ip+f4At1Rq/sjr6NEwQqb/I/DQqsLvaFUjvAx+eWirddAJZnAj1DFJL0mSg/gcIpPkMBkhoyCSJ8lTZIxk0TpKDjXHliJzZPO50dR5ASNSnzeLvIvod0HG/mdkmOC0z8VKnzcQ2M/Yz2vKldduXjp9bleLu0ZWn7vWc+l0JGcaai10yNrUnXLP/8Jf59ewX+c3Wgz+B34Df+vbVrc16zTMVgp9um9bxEfzPU5kPqUtVWxhs6OiWTVW+gIfywB9uXi7CGcGW/zk98k/kmvJ95IfJn/j3uQ+4c5zn3Kfcd+AyF3gLnJfcl9xH3OfR2rUee80a+6vo7EK5mmXUdyfQlrYLTwoZIU9wsPCZEtP6BWGhAlhL3p2N6sTjRdduwbHsG9kq32sgBepc+xurLPW4T9URpYGJ3ym4+8zA05u44QjST8ZIoVtu3qE7fWmdn5LPdqvgcZz8Ww8BWJ8X3w0PhQ/wnCDGd+LvlHs8dRy6bLLDuKMaZ20tZrqisPJ5ONiCq8yKhYM5cCgKOu66Lsc0aYOtZdo5QCwezI4wm9J/v0X23mlZXOfBjj8Jzv3WrY5D+CsA9D7aMs2gGfjve8ArD6mePZSeCfEYt8CONWDw8FXTxrPqx/r9Vt4biXeANh8vV7/+/16ffMD1N8AuKD/A/8leAvFY9bLAAAAOGVYSWZNTQAqAAAACAABh2kABAAAAAEAAAAaAAAAAAACoAIABAAAAAEAAASwoAMABAAAAAEAAAHgAAAAAAty/iQAAEAASURBVHgB7J0HmJxl3Xel9957qKGKdAKELiAIiIIFVEBRQVFeERRRX1QUBBtFkN57772EltB7C6RBCr130dfvd/jmxsdhd7NJNrMzs+d/XSdPb2dmnp37N/dMPvUpSwMa0IAGNKABDWhAAxrQgAY0oAENaEADGtCABjSgAQ1oQAMa0IAGNKABDWhAAxrQgAY0oAENaEADGtCABjSgAQ1oQAMa0IAGNKABDWhAAxrQgAY0oAENaEADGtCABjSgAQ1oQAMa0IAGNKABDWhAAxrQgAY0oAENaEADGtCABjSgAQ1oQAMa0IAGNKABDWhAAxrQgAY0oAENaEADGtCABjSgAQ1oQAMa0IAGNKABDWhAAxrQgAY0oAENaEADGtCABjSgAQ1oQAMa0IAGNKABDWhAAxrQgAY0oAENaEADGtCABjSgAQ1oQAMa0IAGNKABDWhAAxrQgAY0oAENaEADGtCABjSgAQ1oQAMa0IAGNKABDWhAAxrQgAY0oAENaEADGtCABjSgAQ1oQAMa0IAGNKABDWhAAxrQgAY0oAENaEADGtCABjSgAQ1oQAMa0IAGNKABDWhAAxrQgAY0oAENaEADGtCABjSgAQ1oQAMa0IAGNKABDWhAAxrQgAY0oAENaEADGtCABjSgAQ1oQAMa0IAGNKABDWhAAxrQgAY0oAENaEADGtCABjSgAQ1oQAMa0IAGNKABDWhAAxrQgAY0oAENaEADGtCABjSgAQ1oQAMa0IAGNKABDWhAAxrQgAY0oAENaEADGtCABjSgAQ1oQAMa0IAGNKABDWhAAxrQgAY0oAENaEADGtCABjSgAQ1oQAMa0IAGNKABDWhAAxrQgAY0oAENaEADGtCABjSgAQ1oQAMa0IAGNKABDWhAAxrQgAY0oAENaEADGtCABjSgAQ1oQAMa0IAGNKABDWhAAxrQgAY0oAENaEADGtCABjSgAQ1oQAMa0IAGNKABDWhAAxrQgAY0oAENaEADGtCABjSgAQ1oQAMa0IAGNKABDWhAAxrQgAY0oAENaEADGtCABjSgAQ1oQAMa0IAGNKABDWhAAxrQgAY0oAENaEADGtCABjSgAQ1oQAMa0IAGNKABDWhAAxrQgAY0oAENaEADGtCABjSgAQ1oQAMa0IAGNKABDWhAAxrQgAY0oAENaEADGtCABjSgAQ1oQAMa0IAGNKABDWhAAxrQgAY0oAENaEADGtCABjSgAQ1oQAMa0IAGNKABDWhAAxrQgAY0oAENaEADGtCABjSgAQ1oQAMa0IAGNKABDWhAAxrQgAY0oAENaEADGtCABjSgAQ1oQAMa0IAGNKABDWhAAxrQgAY0oAENaEADGtCABjSgAQ1oQAMa0IAGNKABDWhAAxrQgAY0oAENaEADGtCABjSgAQ1oQAMa0IAGNKABDWhAAxrQgAY0oAENaEADGtCABjSgAQ1oQAMa0IAGNKABDWhAAxrQgAY0oAENaEADGtCABjSgAQ1MHgNTTJ7dulcNaEADGtCABjTQNAamzpmsExYN84TXwrNhaBgbulNTZaVlwkph/jA6jAqPhX+EjmqJzJy5owWdzPt35j/SybLq7BUywXVQd4d3Pxrr+J8FMnuR8FwYEzjG+Ir3h/3D/4Xh4V9hctVM2THHGhl4XCwNaEADGtCABjSgAQ1oQAMa0IAGNNCnDEyfqz0kvBwIbuohoLkorB46K8Kvw8L7oX57pkeFXQMBV30NyoyOtuls3of1O+hgmhCNwKrsY/kO1uGcfxTqr/utzDsgzBA6KoK5y8IboeyfYx0fZgmdFWHgm13wQAcbrph59wbCsXKspzO+abA0oAENaEADGtCABjSgAQ1oQAMa0ECfMECvHnozlXCkqyE9qLbowMocmXdjN/fxxw62H9TNbcu5jS/AIiS7s26fHQVYx9WtU/ZfhldneX0vfHqWlR5aZb3qkJ5Yc4b6oldbdb2OxofVbTQw0293st0/M3/nuvWd1IAGNKABDWhAAxrQgAY0oAENaEADbWdg1lwRvXmqYcpLmb48/ClcHz4I1eXvZJrQq1r7ZqK6Dl85PDr8MtwQ3gtlOb25Ng7VGpSJspzjXzseCJa6qv2zsOyvDOsDrHXq1hmcaa7jisA5lu2+lvFqXZyJsoyeWscHfBGqlfknZry+ts2MsryzYX2ANaiyDV/FPCI8WpnH1zqnDZYGNKABDWhAAxrQgAY0oAENaEADGmhbA6fmyqphymmZnq3uamfO9Fl16/FVwWrdlomyHwKd+touM8pyhgQx1RqUibL8quqCiRhfOdvQU6zsrwzrA6yfVtah11S1pxXnULYjiCs1b0aq+16rLMjwb6Fs80Jlfhk9oLIc70t2AL20Sq2WkbI/AjWui5o7EJyVZd9kpqUBDWhAAxrQgAaKAX4jwdKABjSgAQ1oQAPtYmC+XMiOlYu5OeMdhSFvZ/4eYb2wcCDsqf9tqBKuZNGnnuefurok0/TEWjDQg2tyFb2RTg/ThH+Grt6/Va/hlqxLIFTq1ox8rjbB74OVYp3vBX6Xih9VvyuUuqeMZDhVIBCr7vMzleVDMo7HrmrnysI7Mv5QbfrlDM8Iu9emWY/g0dKABjSgAQ1oQAMa0IAGNKABDWhAA21nYO9cEQFLgR4/XdUCWdjZD5RXe2C9m/X+EJbpamd1ywZlupwHvZ8mtg7OhmU/B1bGmbdc3U4HVJY/l/Fq2EXAVPazQ912nU2WEIztOgqURmV+2ecWGd88/E/YLMwe6ovQr6x/XN3CPSvLhtUtc1IDGtCABjSgAQ1oQAMa0IAGNKABDbSNgTNzJSUg4Stpk1K7ZuOyr+qQXkZ8BW/bQI+lzmpQFpTtnsz4z8bDslleXwRS9LpiP/eGGWvjZb/1ARa9pM6urPNsxo8JHL9sc3vGZw6dFfvg65BPh7LNMxmvPxY/cl+WM+QrgdXpVzL9pVCtuzNR1vl9dUHGv1JZNjl7tNUd1kkNaEADGtCABjSgAQ1oQAMa0IAGNNBYA9UeQ+XradUz4Afe1+yC+kDqxKxbApeOhm9mOWHPDKG+BmVGR9t0Nu/LdTsgrHqqto8PMlwx8DXC6vb1oVIWf1T0FquuV8Yvz3y+kthVLZ6FZX2GBHbzd7DBhplXXa+z8a9Wth1T2eaXlfmMEghW9zFb3XInNaABDWhAAxrQgAY0oAENaEADGtBAWxh4OFdRQhC+AlhfG2dGWd7RkHCrvgiWqv9LXkfbcaz6wGVQ5nW0bmfz6gOs6g+o75d9Ud0JsFbNeqNDR8d5L/O/FbqqTbKwftsLM2/Ruo34qmBZ742M7xVWD/uHsaEsez7j5euEHL/M539HrNaWmSjLGC5ZXei4BjSgAQ1oQAMa0IAGNKABDWhAAxpoFwPX5UJKCMLX5+prYgKssg++4keQdEOoBjHleBeVFWvDQRmWZY9n/IfjYeksL7VpRspX8u7K+FS1BeMLsNbLeu8GjvuPsE8gVDowvBrK+ZRALLM+UXNlzsKBHl9nhbLN2xmnd1Ypfl+LcyZ4WqrMrA23zrBsx7D85ta4yvxf1NYtgy9UlrFNCb3Kcoca0IAGNKABDWhAAxrQgAY0oAENaKAtDFS/8vevXFH91+VWyjyCpsLgjFeDljUz3Z3iK4O7BnoXle35OmEJmjL6qUGhLLuKGd0sQirCt7LtbzO+Y41vVOaznF5MLFswUMeGst1pH835zz97V5Y9+Z/ZXY5Nl6WvV7b7W5dr/2chfkqQxvkcUFt0f4bl/AjVqvXVTJRlbGtpQAMa0IAGNKABDWhAAxrQgAY0oIG2NEBPnxKCMPz2eK7yc3XrlwCLMIXfi+KH0+8MndU2WVA9Xtme9QdVll3FjG7WLFmvus/ujG9V2/eIyrb1P6C+UGUZ+1yyts34BudUtrt1fCtXlj9Q2e6I2vyrK/OOrqzL6J6VZfzulqUBDWhAAxrQgAY+NjDlx2OOaEADGtCABjSggdY3cEUuga+6lfp1RmYuEx0M6e3UUfH1vc+H1cJaYZ3QUdHrqlqET71Zc1YOvkRlnNEF6qbpJUVtGy4ND4brQ32tUJnxSmV894wfFs4Pu1Xml1G+hliK/9GQGvP/Bx/9u3xlnNFlK9OjK+OOakADGtCABjSgAQ1oQAMa0IAGNKCBtjPA1+qqvZaGZnrVuqsk1OJ3oKpfj2MbwiqKIIivIJb9DMv4RmGqUIqv7d0XyjofZnzesjDDQaEsm5AeWHxt79BO+HNln+z7pNp6y2VI3RjKMe/O+BTMrNXBGZZl/K+GJbzjN6zKfIbrhlIEeNVlvyoLMjyrsuz5jE9fWbZ9ZRlh4Iq1ZRvXzf90bT4/gE84Vo41vp5ztc0caEADGtCABjSgAQ1oQAMa0IAGNKCB1jRAD/NbQglDypDeP9eGx0M1nCrL38/8/qHUQRkpy8rw5cy7MNwc6n/I/cTMq9agTJTt2PfYbrB51umqCJ3KPhmW4Kpss0fd8icz/dNwZSBIKtuenPFS9MQaFcoyzvXMQEBFKFfmv5jx+UKpz2WkLGNIL6v9At6qbs7NdLUeyUTZjmCQYO2eyrwXMj5dsDSgAQ1oQAMa0IAGNKABDWhAAxrQQFsbmDFXd3ooQcn4hvSkWqXOCL2tbujmPo7NeqVHU9nNoG5uWz03vs7XVY0vwGJbwqfqPuvHn8ny2VmxUvS0qoZO9dsQapXf2aps9qn6HmH12w3KytWvNbItId07oX5dpgnZ+GqipQENaEADGtCABjSgAQ1oQAMa0IAG+owBegnxPw7+I9QHJnxljV5GBCqdFV/B2zHwNcT67fmtLXoO7RE6qkGZWb/N+KZ7IsCaNsfdK9CTqXq8f2b6+DBH6Kj6ZyZfdaxuQ6B0c6j+PlUmPy787BxGh+p2HPuowLl0VCtn5kOh2ivsuUyP7/o72pfzNKABDWhAAxroAwZ402FpQAMa0IAGNKCBdjcwXS5w4RoEOfxm06jAVwm7W/xu1uKBr9END6MCoU2zFj3IFg2cM1//eyoQ5I2vZskK/QNfxXws0FtqfMV7yoUCPxxPmDUydKfoCbZSYP3qD7x3Z1vX0YAGNKABDWhAAxrQgAY0oAENaEADGtCABjSgAQ1oQAMa0IAGNKABDWhAAxrQgAY0oAENaEADGtCABjSgAQ1oQAMa0IAGNKABDWhAAxrQgAY0oAENaEADGtCABjSgAQ1oQAMa0IAGNKABDWhAAxrQgAY0oAENaEADGtCABjSgAQ1oQAMa0IAGNKABDWhAAxrQgAY0oAENaEADGtCABjSgAQ1oQAMa0IAGNKABDWhAAxrQgAY0oAENaEADGtCABjSgAQ1oQAMa0IAGNKABDWhAAxrQgAY0oAENaEADGtCABjSgAQ1oQAMa0IAGNKABDWhAAxrQgAY0oAENaEADGtCABjSgAQ1oQAMa0IAGNKABDWhAAxrQgAY0oAENaEADGtCABjSgAQ1oQAMa0IAGNKABDWhAAxrQgAY0oAENaEADGtCABjSgAQ1oQAMa0IAGNKABDWhAAxrQgAY0oAENaEADGtCABjSgAQ1oQAMa0IAGNKABDWhAAxrQgAY0oAENaEADGtCABjSgAQ1oQAMa0IAGNKABDWhAAxrQgAY0oAENaEADGtCABjSgAQ1oQAMa0IAGNKABDWhAAxrQgAY0oAENaEADGtCABjSgAQ1oQAMa0IAGNKABDWhAAxrQgAY0oAENaEADGtCABjSgAQ1oQAMa0IAGNKABDWhAAxrQgAY0oAENaEADGtCABjSgAQ1oQAMa0IAGNKABDWhAAxrQgAY0oAENaEADGtCABjSgAQ1oQAMa0IAGNKABDWhAAxrQgAY0oAENaEADGtCABjSgAQ1oQAMa0IAGNKABDWhAAxrQgAY0oAENaEADGtCABjSgAQ1oQAMa0IAGNKABDWhAAxrQgAY0oAENaEADGtCABjSgAQ1oQAMa0IAGNKABDWhAAxrQgAY0oAENaEADGtCABjSgAQ1oQAMa0IAGNKABDWhAAxrQgAY0oAENaEADGtCABjSgAQ1oQAMa0IAGNKABDWhAAxrQgAY0oAENaEADGtCABjSgAQ1oQAMa0IAGNKABDWhAAxrQgAY0oAENaEADGtCABjSgAQ1oQAMa0IAGNKABDWhAAxrQgAY0oAENaEADGtCABjSgAQ1oQAMa0IAGNKABDWhAAxrQgAY0oAENaEADGtCABjSgAQ1oQAMa0IAGNKABDWhAAxrQgAY0oAENaEADGtCABjSgAQ1oQAMa0IAGNKABDWhAAxrQgAY0oAENaEADGtCABjSgAQ1oQAMa0IAGNKABDWhAAxrQgAY0oAENaEADGtCABjSgAQ1oQAMa0IAGNKABDWhAAxrQgAY0oAENaEADGtCABj42MMXHY470toHVcwLT9PZJeHwNaEADGtCABjSgAQ1oQAMa0IAG2sbAP3Il97XD1RhgNcejSHh1T3OcimehAQ1oQAMa0IAGNKABDWhAAxrQQBsZIHNo+RBr6jZ6QFr5UkrPq1lyEaSjlgY0oIFmNTBdTuyL4cCwcO0kP8jw/8KM4d+BD0eqw0x+XCxj3Q8D9z7Wezv8M7DvmQPFPl8O48LY8FyYKswTlg79w5ThX2Ha8FIYE14N04fZw2xhjjBTKMVxXgxlvxyD43M+/E2cP5T9cy7lOjL60f352QwHhYvDiMC+2L6z4pwXDP3CugF3ywWuvRQ+uJZyrKEZPzIMCQPDZmGDgN8HwqBwa7gjvBVYfkD4dDg5/CGMCz1Vm2ZHRwScThv4wGWngGtLAxrQgAY0oAENaKB5DfDejfeLDFu+7IHVHA/hgJzG4EDjzQCrOR4Tz0IDGvhvA6tk8jvhW6H8ASyBS31gxR9JilC+LGNdgh7CJcIa7nUEMhTL3qtBmEO4w3rcE6t/p8rxyvrv15bPmiFFmEUINTwQ/jweOBZBFMHXvGG+2vhcGbIdy9kfxbHY5+jwYLg+XBgI6r4atgnLBM6PbV4LHIMgCQjQng+vhPHdyxfKOj8PBEEEbeU6CdiKA47xSLgq3Bo+DOuGjcLagfN4KLDslkBQt08gIDsu9GSQNUP298uwb3g38BhvFR4OlgY0oAENaEADGtBAcxrgfTsfDK8TeH/c0lXeMLf0RbTByRtgtcGD6CVooA0NEFrsGH4Wlg4l6Mnox8EU4xQ9kc4LOwRCIv6+sD5hDEOCJQImAp6nakN6P71QGWcf42oQ1rAPwh3CJsKnBcIKgXPpFzjOnIGAqqOwK7M/OjbHBc6lnE/1WjL74+KYwPmWoI7zfDrcGQi26FW1elgrLBsI6tgf25UqIQ+hHeMEY7x5KDANLPtHWCN8OpRjsi/OmYCNdbg+zp03HteHQYHzGBg2CLwpIRAk8Ho2rBjmDyeEQwOhXE/U8tnJcYFr53x2ChcESwMa0IAGNKABDWig+Qzw3pL3n7xXNMBqvsenJc9oQM56cKCBQkPG0oAGNNAbBghECCj4mtuuYZFAkAIl8CFUgXK/ujbjo8K3A4EXVR/msD1Frx3CoDdCCajYDwEQQVTpSUUwQtBFEPNMDcbp4TQ2PBdeDOyjFOfO1wXXDN8KWwZ6M/EHe+7weCD4occSf8inDxy7wDwguAL2x7IFAh4WDvRw4pgs55q4nqFhROBY9PJaKvQLOBpTg3PluumxxXrlmPiaMbBfrp2wjuPNGzg+VbxzPMbfCeyb9fF4dbgicG1Lhg3DJmG9wD7eCxzj/HBAeDpManEuu4YjAvs+MXwnWBrQgAY0oAENaEADzWWA97e8HzbAaq7HpaXPZkDOfnCgUWOA1dIPpSevgZYyMHPOdt2wfvhs+EyYJpTQJKMf1+sZY32WjwuXBf4QrhgINEqVcYKa+8MZ4a5AcEKA01URKi0YFg6LhsVqMA7MJ+wqRYDEPksvJ+6fhDucA/dT9kUYROD0f2HKUM4vox8V89meoIc/7mxPcZ0ETIRKbE99GAiNSvA0MuNcIz2plg/LBZZxXoRX7Jc3DQRrnAv7YfunwtCAkyosK0WPrD+FgYFzKoFWRj+qch08VsA053NqODm8FDYKW4WvhLkCRQ+yn4YbmJjEYp9nh03DqLBheDZYGtCABjSgAQ1oQAPNYcAAqzkeh7Y6CwOstno4vRgNNLWBT+fsPh+2CNx7CD4ISPjjRhDCOEEL4xRhTPmKHL2YCKYIa8r6Gf2veiZTB4aT/mtuz01wLnw1jmCKXluEQwRr9ATinAh6OHfOk0AKCJY2qQ05P0Imtrs4HB4Gh66K3k4LhMXCUoHrJ1hiiCuCLYKsI8NDYenAMugflgkleMMn4JmQjPn0wKJeDSMCnu8NjwSu5ddhvTAuLBwoHrc3AuvOHpYIhHal3s3InYFeUtcHHvd9wtYBTwRcfw2EZLialPpGNj4hEBAeEP4QCAYtDWhAAxrQgAY0oIHeNcD7Pt4PrxOG9O6pTPrReQNs9b6BATmFwYHGxz96/3Q8Aw1ooM0MrJbroRfOlwMhDL2p6O1EgELvIQIdir8JQGjCvYh7EuEMvZMIWUo4xPLqukzfGA4Jz4eybwINirCG/fHHk2CFr8ER4nDsRtaqOdie4WuB3lEERoRND4dTwzWB4AUvBFPl/JlHyMP544Jt3wws583AT8KmAY9c66BwcrgssC7F1wuXCIuFRcJCgSCuMF/GCaLKMXFK4Zl90NOM5cy/Kawb5g4U5/TncETYPnwzfCZwPmU/YzLO9d0WFg+7BcIwHpdzw77hxTCxtUA2vCNwfUPDzuGeYGlAAxrQgAY0oAEN9J4BA6zec9+2Rx6QKzPAatuH1wvTQK8YIFAgRPhOIDihtw49lQiP6CXUPxCAEJgQcgBhSbWYLvMJngiw+CNYLcITgi6WTWgRjhEEcW5VmEfARXDD+XKM98MHgSAJOC+K8ydsInTiPAjPCG5mDIRuQC8nrp0hzBrmCqxXAqOMTlBxfM7zpfBCICDi2GsE3HOOhFmXhtPCdYF5XRW+5wyEWdAvrB7oPbVUmCeUEJF9Dw2cP48l2zLv8vCNgLdlwi8DoRbnRuGcx3B0eCSw7RKB6xkZdg4EURNT+D89bBc4r7+H/QOeLA1oQAMa0IAGNKCBxhvgfR/vofnQdUjjD9+zR+QNr9X7BgbkFAYH3vzzabilAQ1oYGIMcE//QvhZIEgh0CDYGREIUghb6IFEwEKxPsFFdUhvIyAUotcPy2arDVmXYvnLgYCJYIieQdy/OipCG8Kn9wKhFPsk8Hk2EJgQbhCqcAwgXIISOhFAEUaxf+B6CHE4L4pz4Rjsgz/OQNhW4ByBY5dhGWd68fDZsElg/yybOzwSzggXhFcCx+UNQAnGuOY5wryBsGmRsFggaGLIOeKL82Kc6zw9nBDY98TW8tlw90BIVR4XHLwRODfOkXosfC08Gjg+z4sDw7KB8+LaRwd6gM0VuG4eS+rp8JfA9ROETWj9JBscErhmHvcfhEuCpQENaEADGtCABjTQWANtFWA1Vp1H68zAgCygQVEaHp2t53wNaEAD9QYImjYJVwZCG8IMQpMhYc+wQjgtEI6zDLjfMCTgqs4jbHi9bllZt6zHcGi4MPwtnBSuCk8EwiPWJ7AaGe4Ld4TB4f4wPLwcOL+yX4Yc98FwaNg8EMQ0ugivCHnODIQ5hGKcF45w+d1AWNWdYl8rh33CQ4F9FX9c79hAwDN3mJTaNhuPCwRFPG7sG6rHw/cuodTAjNweuC6WcV73hPPCmNo083iM8HBYWCpMaG2WDV4NIwL7Yv/zBEsDGtCABjSgAQ1ooHEGps2heH9I5mBpoEcMGGD1iEZ3ooE+Y2DFXOle4bpAWETgQEB1W9g+0MvmkkDvGZbxR4shEFyUcYYl2Ho748NC2aasw7YEENcG9r1LOCGMCix7PhBm7Re2CIuE0jsqo53WolnC/o4NjweOwTE5PwKYB8P+YfnQ6KK31aaBXkgjA9dZvI3KOOe8Xpg6dKfmykq/CfTk+iDgmH1yvcPDL8L0YWKKHmp/DPi7OVwcOEYJ4crjyON8cuBNDLV5eCSwHiEjQ/ZxYjgnEN5xjoSiXPvlYcMwIbVEVuZxJLAbGuh594VgaUADGtCABjSgAQ00xoABVmM896mjDMjV0lAoDYs+dfFerAY0MF4Di2SNb4UzA4ER9wu+MkbQ82z4YVgn3BoIL0powZB1GbIuQUR1GT1vCJ+e7mAZ6xFq/Sn8NLBv9sFxLwrfD/1DTxW9ltYPBwZCD8IUzoHzJ/ihBw+h0lSh0bVADrhTIBx6MRSH+BgVOLddw2Khq/COe/w3At7ZxzPhtdo4jw3X/e0wMWHWStmOIIpw7Lfhd4F9PxdGhuKSIWHSwIBLHkfWo6fY0WFIwDn7ujFwjTwWJci6L+MEj1OG7tSMWem0QNB6RWB/xweCN0sDGtCABjSgAQ1oYPIaMMCavH775N4NsPrkw+5Fa6BTAzT6twpHhCcDgQLB1TWBAIEQ4u5AT5mnA6EA6wDLgNCh9KaqLmMe2w0OhF0sIzxhm7I988cEeuUwj20IQkYEjjcqjK5BCDMsPBzYJyHFKeH3YfewSVg4TGjNkA0IrP4eRoVyXfQk4lgHhcVCo2vWHJDw54+Bx+L1gD88Vf3hjsdseLgrXBLYhoBq3bBxOCnglq/yPR4IDLlOHrvbws5hvtDdIjz7VngpEFJ9MRwY2C/hGEFS6VnFuTJ+WFg/nBl4Hl0bVg9/C4SVfA3wxcD1EHQRZPEY8LzcMUwZulN7ZCVCrKvDqPBEWCFYGtCABjSgAQ1oQAOTz0BbBVhdfVI8+RS653oDAzKDht90gYaBpQEN9D0DS+eStwpbBgIFAoZbw3XhzbBrWDsQKhDucL9gnVKEEcxnHkHENIFimnt9CUbYjqre/8t+GAKhBKEFwRTByuhAcEEAQbhFwEJoQ7Eux5oxzBzmCvOEhcKiYfEwdSD8eCDcGbjfcW2EIt2tWbLiFuGbAQ8ch2vgugmJ7gg3B4KRkWFC9p3VPy7+yHPuiwXOfYmwZA3G5w4UodCzYWwgqMJbueYFMo4LHJXHYsqMUzwOnDfwuOKWIftdOrBPauHAulOFh8MNgeu7PfAc6KrmyMLfBkKja8JBYdfwrXBZoAfdoWG+QHEuTwZCrs+H58IugePuFPYMywfWeyhwnTyPYET4ZWCf46vVs8L5gceMgHTd8L1wRrA0oAENaEADGtCABnreAO9tef++ThjS87tv7B55M2r1vgEDrN5/DDwDDTTaAIEGf0i2DVuH/oEw4MpwdRgVfhh2DPT6Kfdr/gARCBGYAOHHnIFiHeZR9eOEISwjUOEPGcU8inMhnOLY9BTi+PS86YniXAmAVg6rBcKnNQPz7w5XhSsCwciEFIHZzmG7sGqoOsjkRz2bxmVIwER4RuBEcML1U9OE6QPB2GyB0G2+QJCEO8IntuUxAUKywsiMvxK6KkKejcKmYbNAqPVEuC+MCiwnFFoscEx8UBz3w8C5vRM4T875ucA2PHaPhDvCkBqcV0e1Umb+NawfjgkXhN+FNcIfwqXh7NA/UDwfuPZnwqLhT+F/wz/CBuHAsF7A421hYHg94I7r2jtwTl3V7Fl4SsALz7WvhCPDvoFrtzSgAQ1oQAMa0IAGes4A7x3bJsDqOS3uaVIMEGD9O/DksjSggfY1wGv8c+H48GKgwU4QQON99fDFwDICF+4JBAowMhAQECTQE4rtoCxn2NE067LshcAfrrJP1mWcIOLa8NlQApSMTvaaLkfYMBwcCK44l+HhkLBKmJgiRPlSOCo8ELh29st143pEeDzcHwaH6wKBzrGBYOaHgTCFgKZf6GkfhHe/CY8GzovHc68wV6AIszgPzp3AivPm8WHd8jgTbN0Z8HZZ4KuCLGd4ZfhV2CwQElVr60w8EQib9gu7hOfD04HHfpHwYOA47I/nGefAkDDrM6EU1zEqsC5e8cm6jwXmnRUWDOOrH2cF9s95c/7XBIJaSwMa0IAGNKABDWig5wzQ/uD93YCe22Xv7WmK3ju0R64Y4MlEg4pGHW/oLQ1ooH0MTJNLIVT4ctgmzBBuCBcFApX1wufDuoGa6v8PPur9c17GBwZCA4p7NvBHqFT9NCEH4ctbgT9Y9OShWI+AgSIkoXfNuaG6r0z2Si2eo24XcLRWGBrOrDEiw4kpepWxX4Kh/mHJsFggrFkg0GMLJ6Xeycib4Y3aEH9M1w/LPOYD28G7gcCJezgQ6vwrFL+cD8fj8eWcvhq4XnpfXRaODbcFtp0tEDqxfPPwQSB8mi+UNyGcx9mBEG7+gDcgbOI590S4I9webg1jwm7hgMDz4NCwTNg98DwgUJolXBGYT3Fc9sW589W/nQLXxXUcGH4eON+3A8853OFi0cBxDg846KzWzgKO/V5gexxuFUYHSwMa0IAGNKABDWhg0g3w3pH3dOuEIZO+u97dQ/XNe++eSe8cncYMDZsXw9DAm+jeqAE56OAwXaAxYGlAA61tgHvrBmHH8KUwU6CHyXmBxvkW4Yth2UDvE0KtmQPhAMu5FxBKEBxQ//7/g4//5Y8QYcE8odzHCSVYDwgDynwChKnCk+GEcEZ4ITRrLZ4TwxthyXKBEIZzxt2roacKR3PVmCPD2QPBEb2ACgQ6jJdhGWe6gNueLB5HwqnXAo8Tf58IkRYL5e8VIeVCoYRiPIfODccH/patGvi7sl5YN8wbngk3BsKspcOege1ODTxH+4WfBfaxQbgkcL08f6YIHIvn3V7huEBtFDguwRP+WGfGcFUYGIaHb4eHQmc1ZxacHlj/2cAxNw8EcJYGNKABDWhAAxrQwKQZaKsAa9JUNP/W38spnhVmqDvVlTJ9TyiNPYavB96893RjJLscb9HQ4Bx4clka0EDrGiCQOjjQECeMIrTaOawVfh+GBV7rT4exgXCAwKKET/VDlrOfsh4Bdxkv25Uh+y3jZT+EGb8KnFcrFkHMX8NzgWu/PBBuER41S02XEyGEWTgQDK0YOO81wtqB+zvwHFgzrBZWCSsH/hYB49uGC8MHYXQ4JvwiHBV4Ho0MPK48/vR44vEmxPww8Bwpj/kzGWe7hUKp5TKyR2D/rwX2cXe4JbwXHg4nBvZ7Z9gsUPwNZR77ZrvyHOMYnDfFcQaH5wNB1PuBc2KfVwQeN56DBIad1RRZsH/gOp4KLwf8WRrQgAY0oAENaEADk2aAjIH3cLwftZrcwEk5Px6s2SrnuUjGCauYT4hFI+GsMCYw7y+h0cWTiWPz5LI0oIHWMjBLTvc7YUjgdXx/2CusHA4IwwPzXwnce0rQwLB+nGlCiXG1ZWWd+iH7Y96/OhgOzbz9wmKhXYoPFjYLJwccErpcEnYN9C5qp5ovF3NoeCc8FrYNpfhbtmEg7CF8IhziOVCeD/SEIjwC5hN8bRnoGVUKl+sGAtVHAtu+Flif5x0BEuOcw0yB4IlginmEa9XnJgEVHxBNG44OnM8vwwWB5yeP058DgRSB2VKhq9o0C+kVRrj7ZuA8LQ1oQAMa0IAGNKCBiTfA+zTe7xlgTbzDhm15Uu3B4k1/qTMzwgO4Z5lRG86YYVnGm+hGlgFWI217LA30jAF60hwf6KFCo5vxvQON9xcCDXjuNTT8CRaYLvPKOA1+KNOsXz/OvOp81mefZT2GT4dfBe5j7V78Ef58OCm8GLj+e8PBYYvAV9DaoQjmDg883reF1UN9TZ8ZXPPZgechLniufBhKmEWvphHhB6Gj58eSmb9vKGEW+yCk4jlNT6svBmrp8FRgOT0M36qNE2oRWhGS7RIIrU4NGwV6ZbE+QRdhGtvsErqqxbLwgUCQS4g3MFga0IAGNKABDWhAAxNnwABr4rz1ylYn5ai8ma8GWCMzfVcnZ8MnyS+HgzpZPrlmG2BNLrPuVwM9a2C67O7b4dHAvYWGPL1k6C3CNI11AgN6tND4Zpr59byfeawHNPhZr1D2w5D12Hc1sGIblg0PvwgLhL5ahCZrhwPCrQFfeHwynBX2D9sFvu5GT7lWrCVy0ucHngMnB4KtjmqqzPxsuClUny+MA0ETz0ueM9W/iZn8uBbP2F8Dz12eY4RiPN9uCP0DtVdgX8x/KJTnLaHtl8JqgeCLnoj9wimBdVj+h8C2p4aZQmdF0HZeYF2CuHWDpQENaEADGtCABjQw4QYMsCbcWa9tcVKOzJvw6pt1vsZzQhdndHuWXdbF8smxaEB2ynny5LI0oIHmMTBzTmW98L+Bxjo9W2iM83ol7KaHSQlNCAmYX5aXcRrhQ8OIwLrML8vKkG2A/ZeeNGUe65RAgnMglFkmWJ80MH1mrRN+FE4Kd4c3QnHO1w8fDzeFc8NR4cCwd9g1fCGsH1YIBEWEQs1SnBePP9fww0B411nRC+3YUJ6bhKD/COW5xHOSgIhwrLPaLQtKD6oSgp2Tefw9hcHh/wLB1Ku1cda7L2wZbgy8RgjVPhcIogi9Dg8jAsFvCcUy+omaInN+G9gnIe/qwdKABjSgAQ1oQAMamDADBlgT5qtX1z4pR+cNezXAui7Td3VyVnNlPm/seePfyBqQg3GeBliNtO6xNPBJA3NkFiHGYeHeQAO9QCN6bCiN9RIG0Cgv6zBkPvNosFcDr7KM5WV9xoGvVg0P40J1G0KHGwK9vhYI1sQZmCebEYBsF34QCEb+HujZRNByfxgZCIeqjxPhCSEOyy8JhC8/CgQy/QIhSyOLQI3w6o3A85PeTl3VNFnIOZcgi+cu18jzk2vjucdzmnV2CLOGanF9BFmvhdJTkOfnhWG+sGPgec6+Hg+44znLkIDsmMCx9gs8BsMCy24L1wSCte1CV7VrFrL/d8LyXa3oMg1oQAMa0IAGNKCBTxgwwPqEkuadcVJOjTfoQ8OZgU/Zfx14M7xNqNaimeB3RFifN+WNLAOsRtr2WBr4bwOfziQN+EcD94YPwiuhNPq5JzBO45/lNOAZMp/GeBmWcabLvDIsyxgC27PPF2vDsg3zafDTE3ST0FUvmyy2JoMBQiLCFsKSDcNXw08Cz5FLA88THjseM4LHIeGo8K1Az61GPGaEmecGnit/CTOFrmqOLDwm8NwlYCJ0eiMQCnEtJYRi+U1hv/CZUIoPgY4MPD8JWRnCoLBpuDXwvH4hsE/GR4e3A3978XRxmCsQBLLtS+G4wDX8JnQVBm6Z5Zwb++sXLA1oQAMa0IAGNKCB7hloqwCrqzeM3dPR3Gttn9MjjOKN+OJ1p8qb60Vr87bKkDfVU4fBYb1A46RRRYDFcacLNC4sDWjgvw3Qk2TOMGuYOfBVMV4v3JDnr0HjeJZQXU4YAYQKZZxtaJCzHUNe9xSveRry1IyBBja9ThYO3CsL5d5QvX+WeTTcoRyzzC/Dso+s8lEjnoY9DXPOfXQ4IpwUXg9W8xrg+bR4WDGsHFYNq4eFAsEQ9/Pbws2BnlKENJOjCHboScZz7nvhutBV9cvCg8JXAkFTCb4IsWYII8I9YaWwQhgXrgqXhxsC13t8WDCMClw3z+mRgRDra4HX6tjA6+aZwGv25cDrjuf6l8J24YDA6+KUsEO4KXw9cF4d1cDMvDHwmlwmEJZZGtCABjSgAQ1oQANdG+A9GB/QrxOGdL2qS5vJAA3VDcJe4eRwSii1TUbeDMcGGq6NLgIs3sjz5LI00FcNzJ0LpzcHr9GjwjXhsfBa4PVRD412YD5DenUQFNBIJgjmRl2FeSyvblO/z66my/HKsKxbpst+q/MZL8sJNu4OF4Q7A+dJw55AYP1AEGC1tgFCG8IYgsgHA489f1sIgH4U+oeerpmzw8MDz/9TwhxhfLVyViCY4vwIgqrPUfZzblg7fDdcGgh24eKwSzg48Hpi2RWB7QnB3gov1qYJgNkXgdTNgdfek4H97By+HHh9sp+rw/CAs0VCZ7VWFrA+PSQJxiwNaEADGtCABjSgga4NkDHQJiFzsNrEAJ88T9OL18KTiSeVAVYvPggeuuEGlssRvx/ODqMCrwEap4RWhDyHhl8GAh4CHxq+NIhZfkr4fTgwHBbOCzR+3w7sB14NNJjvD/QEYd+ERs+FkYFgjP2V9WmEM14a8x0Nq8vLdgzLfmiQ03AvoRvHuiXQO+WNwLqPhj+HjUPp/ZVRqw0NzJVrosfR38PwwOM/KjC9dZgx9FTxd+TxwHOOY3an1stKwwLP31G1Ic97nqsEUrzGCMj4G7lNOCXwumLZoDAm0HNw53BlYFvCpfLaIbRiXfZ/e+DcxgVeiyeEDQLrE3Jx7kMC66weOivOubyOp+tsJedrQAMa0IAGNKABDXxkwADLJ0KPGzDA6nGl7rAJDZRG8HE5Nxq+NOZHhFPDd8MqYZowd9gr3BVKg/+sjB8ZzggPhfcCywi1ng00fh8OhFuEVfR6YXmBBjWNaRrSjJf51WFpdJflZZp1GGd7GvYvBgIqGuEsY1i2YfnYUAIsznNw+EvYPswbrL5rYKlc+p6BsIfnLuHO1eH7YZEwqUWg87tAwEMIPH/oThGm8pVHXh/DAtvz3CaQ5bm8R5gyULxGPxd43fI6Yx2243W9drgm8HogiCqvIfZHSMW+eF3zmiEI47W8SXgqvBVeDrhh3S+EzmqzLOCYw8PUna3kfA1oQAMa0IAGNKCBjzrJ8L6OzMHSQI8YMMDqEY3upAkNzJRz+nI4P7wdaLRfHr4XFg/V2jITN4TS2CUoIhCioVpCJIbAOvzvcCMDAdYLgcZ0aXiX9RiWcKk0psu8+ukyv35bGugEUeU8aGiPCTS6gXNkG67v9kDQtmtYOdi4jgSrQwMzZC7P+aMDvZh4Dt0XfhVWDJNSPPfYFyERz8Xu1oZZkdcgrw1eXwwJmxjSU+onoQRZGf2oZ9bXMnwgsA6vjf0CoVQJsnhdsgx4Hb0fHg68Xnjdss13wqBAcMXr7bxAYPyj0FlxXPbJsavn1Nn6zteABjSgAQ1oQAN90cC0uWjeZw7oixfvNU8eAzyZeFLx5LI00OoGeB5vG84JNEhpwJ4RtgszhinCMuGHgWBrXCjhEK8DoBFLT6bB4fjw4/CHcF2gsc/ysi6NWBq7wDymaXS/HmgwM90RZd0yZJ3qOF8FvC2cFU4Pl4XHAuvRCB8SDg9fD8sGG9GRYE20gVWz5W/CQ4HnIeHoQWGVMDE1VTb6aSA0vjEsFbpba2RFenDxuuS5zmuYsInnPq+pkwLnW62BmaDXFa9DwileG/SiujywXRXCae4NhM+vBYLnE8Npgdc2++DewPifAveMjopAjf3eEDpbp6PtnKcBDWhAAxrQgAb6ioFpc6G8txzQDhfc7m/4+FR31ol4oGg00zhtVPFk4pjTBRrelgZazQD3EhqwO4UdwvThinBleCasFTYKK4T5Q+mZxM2UouF7fQ3GCYQ2DWuGeQNfW6JYn2PRaKXhS0OY8UXDzKFarFfWL/PLNEMgdGJIQ/3hQAP6scBrknNYIywdOBZhFtwR6N3iazUSrMliYMns9Uth+8Bz8OlwTjg7PBEmpNjXsWHd8PtwaOjuc5dt9w3fCrxmCdWmCszn9TU8nBHODZwXr3uO9bUwNiwSCKIIw74TNgulyuuOoHmOQEhW7gOE27yurwvcV64KO4eOzvtvmf/9gJ8dg6UBDWhAAxrQgAY08B8DBFgfhHXCkP/MdqwZDTyQk+JN8oRyQIMvZkDtHHlyWRpoJQMEUgeH0YFeE0PDbeGewFeDeO3REGVITxAauSx/KdCz49ZwXmB9GrDV1yrbESyx7r3h/HBReDSwr7Lvsv/xTbOvKhz/2rBr+Fo4KjwWyrnelfG9wsqBxrqlgd4w0C8H/Vl4MPDcJDz9nzBPmJD6RlamF9WT4bMTsmHWJWA6MhAg8Xrj9UioxjQhMudFAPyLsHTYI7Ds4nBjYBte59uFZ2rTzHsv8Jrk3vFhYBmv7aMDy2BQIAyjl9UsoaO6KjPZ3yEdLXSeBjSgAQ1oQAMa6MMGyBh4r0bmYDW5AXp6DA48YJeEbbpJ/6zXyOLJxDkaYDXSuseaWAMLZcPfhmcDz1uCoDJ8JOMExy+H0tD9Y8ZpgF8YCLWYz/pvhOGBXhelEcsyGrA0jh8P1RCMZWVbtq9Osz3zaAiX8bIuDWP2yXLO69JAr43TwlOhnMuVGd8nrBamDJYGms3A8jkhAmNeewRE/F3bOkwVulMEUUcHXiMXhH5hQmqGrMzruLy2CMPGhLfDLYFpXk/3h78Hwuebwha1Ia/P4wLnUF6/DN+pTfNaHRe4p1xTGeeeMjSw3/lCfU2TGdx72NcP6hc6rQENaEADGtCABvqwAQOsFnvwp8v53hk+CKs06bkbYDXpA+NpfWxg1oztHQiWaCTSSCVcujzQ22LnQA8pGqjDA70tCIpeCKxbGqgERteH0guDhnTZH+vRC4seHfS8KPMZFliH8bJdWYf5ZVlZXvZHw5Z7wGOBhjHzRwa+cvTDsGowsIoEq2UM8HzlK7ZnBV4r9FA6MCwWulM8528PbHtQ4PU9IbV6VuZewOua1xTBMPD6PT78OZRwmHCLIGv98NlATzLuHacEQrgPQwmemeb1yz5HBV6nDwfWGRHuDcPCkqG+5syM5wP3hm3qFzqtAQ1oQAMa0IAG+qgBA6wWfOBXyDkTYPGGvRHFp9xHBd7Id4ersh6Nap5clgaaxQC9OrYI1wcamDQsXw+nhNXCFGGzcGtgGQ1NoAFJY3ZQeCjQKOX1xzo8zxkCjee7AkHX6FAfSrEO25b51W3LPhhW59PwfbW2HfOZ5pzOCvuFzcM8wdJAuxjg782PwqOB18oVYcvQnVD2q1lvVCA0JsydkL9BrPv7QLhEKDU28Jrm9cfwyLBV+Gsg6OK1el/4evh+4JgjA8vYB+fPOuX1zvjQwL1jcGCaIOzmQFC1cqiv/plBb0vuG2vXL3RaAxrQgAY0oAEN9EEDvGejXTSgD157S1/yT3L2NGRXasBVzJVjnBzO6CZDsh5PqpmCpYHeNrB4TuB3gQZmaUzyHN0sEFpR6waCK4ItelPRAH0tPB5oXPJ8ZluWEyKVhulbGT89XBBo6DK/wPqsy77KPPZTYDmN2dJLo8xnXfY7KNBY3jMQvNFLgxDO0kBfMbBeLvTMwOtkeNg7zB66qumycJ/wSiAg+k2YOnS3VsuK/G3lfnFYIKTitcr+eP2fE9YIpwbmEzC9WZs+vzKPZX8LzwXOv9wDWJdt2C/7I/C6KhCmDwz1tUlmsC+2W7p+odMa0IAGNKABDWigjxkwwOpjD3gjLvc7OQiNcQOsRtj2GB0ZIJgi9Lky0PgjXGJ4WVgxlOqXEcInlr0daFDSUOT5OyacFe4NLC8NUBqfF4aLAiFXmV+GbFvGGZZp9gFM02hlPyx/OhCeEVoNDVsHSwMa+I+B+TL6y8BrktfOMWH50FXNloW8RnldjQjfDYRb3alpstKvA+HyxWGHcH3g9UqgzfCOcESgd9ZN4cbAfF7PnGcJrk/J+CGBewvrsg4QiI0OXA/rXhm4J3w+1Bdfa+bewX7nqV/otAY0oAENaEADGuhDBgyw+tCD3ahLNcBqlGmPU29g6szYOfD1HRqftwdCJr4SNDCU4sb3q0DPCBqPNA5pVN4Z6L2xcaBBSaOTwIl1rg9/DTQ6SyOUZVC2L/PLkGUcgxDs2jAsMO/h8LNAw3REoKfI9wPnb2lAAx0b4PXx5cDrmtfRDWGb0NXXC/lKIr2wCLHHhZ+HOUN3aqWsdHegdxQB2BrhisDrm9ftO4GeWoTe9OpcPfwhMK8aVvHV4o3CfaEE1+yDexS8HJgmFONes1Oor6Mzg3UfCDPUL3RaAxrQgAY0oAEN9BEDBlh95IFu5GUaYDXStsfCAA3YbwYCIhqTfw7nBhp8BFXThFL8lgwNTBqMwFd89gvrhF+GZ0JZRsOSoOnyQMOSRnNZVg2tGCeoYhnrcFwaraeExwLzHg80pFcI6wfCMhq5NHhnDZYGNNB9A6tm1VMCX9MdEX4SCKs6q5mzYO8wKhA8HR9WCeMrvrbLdm+H2wKvX4KsawKvewKucs9gHYIuenrtHJ4M5X5BgEbAxf2Ec/5nKMvYDz2ymB4eWPb9UC3O4+bAfeay0FVol8WWBjSgAQ1oQAMaaEsDBlht+bD27kUZYPWu/7529A1zwfRKoPH4u/CZ8GgYGdYMpbjZXR9Ko5HG5dcCDUp6aBEy0XCkMUmPiwMC+yjrlyHrAQ1JGp3VYItGKo1celSxPiHV/mG5QK0Urggc47SwaLA0oIGJNzBPNv1FGBMIpgiOuQd0VgRB24ebAq9jekfuEboKv7L4o/8RsQTZh2aaQGyDwGucQOqCMDrwuh8X9glzh60C58V8XveE2MsEtmO6zGfIPYV70Nu14X4ZVmu2TAwPBOT0BrU0oAENaEADGtBAXzNggNXGjzhvyh8Kuzf4Gg2wGiy8jx6OxuGpgUbgCWGBsG6gd9W1YfZQateM0DikkfhCODDcXJt+OUO+1kMjk30RQL0ZWLce9jEslICqNEDZlsYwxz4rfDPMG0rRYGU+618VVg6WBjTQcwb4eiGvu2cDr8XBYecwQ+is+mcBYdTzgRDqwrB96GqbbbN8VBgbdgrUDmF44L5wZeB1/kZgn2eGDcN9odxPOMfVwz6BwIr55f7EOPMKh2S8Wktlgn2z/IfVBY5rQAMa0IAGNKCBPmBg2lwj7/UG9IFr7XOX+OtcMQ/uAQ2+cgOsBgvvg4fbPNf8XHg4lJvXlhnnK3lHBxqz1AKB3lWlUXhrxuklRQ8rxl8JBFrAPHo2lEZmGdIYHRYerSxjHsvpfUXgRUN0lTBFqNaymTgj0NgcFAYGSwMamLwGls/ujwiv1Tgyw65CY+4X3D8Im94Ob4VzwpfDLKG+CLjoScX9ZkhYO/Bmat9A+M39gvsJ955rA/cL7h93B+4F5d5yUcY3DiUQ535SljFkX2x7dqjWRplgXZZtU13guAY0oAENaEADGmhzAwZYbfwAz5dr+3Rg2MgywGqk7b51rClzuQcHGm5/CtzAKHpAED79OpTieVgahDRIaTjeHw4PT4dXw42BfUFpOBL6Mk7j94HwbqguZ9kj4ethmtBRrZmZFwa2GxRopFoa0EBjDcyYw+0cbg+8rnn97xXmDZ0V22wfCI0IkD4I1wR6Oy0RqrVYJliPe8J5YanA39uTA699eneOC18MvwsE5eyv3E+4PzF9aBgcyj2IeWWc+xTj94SpQqnvZYR7GiHa6mWmQw1oQAMa0IAGNNDmBmj/8b5uQJtfp5fXQAMGWA2U3YcONVuu9epAg26LynVvm3EagvvU5s2Z4fWhNAAZ3hAInK4KrHtKeDZU1ynjIzKfrxRxYwTm81UgGp3nhuVDR0XjkoYqPbLY5vKwbrA0oIHeN7BMToHwe3TgHsC94Buhox5Wmf1R8QZp8/C3MCpwPxgaCMG3DDMFaq1wayBEPyYsGOiVRWBGGEXQ9PPA/nYKzwTuESXIeiXj3HOur81n2TuVce4/zCMAq4ZoR2SaAIseXP2CpQENaEADGtCABtrdgAFWiz/Cc+T8+4X+YaFQ3lBntNfKAKvX1LftgRfIlT0UHgtLVq7ysxmncbd/bd6ADF8MNPZgaNg48NUeGnqDwmWhLK8OCbRYh0bq24H9Mk3j87TAa6yjmj8zOT6N0nfD8aGzkCuLLA1ooBcNTJljc084IRCG8zq/JBBmzR66Kl7Xe4frAveGD8JN4WdhlbBVoNcmyw4LBFk/CNxPuI/cGbhfUL8JJcDiPkSwRmg1rDKf+0m5R3Es1v9H+HqgpgrXBnqYcq/j/YClAQ1oQAMa0IAG2tmAAVYLPrq8UebNNw310kukOhye+ceGeUJvlAFWb1hv32MunksbGe4I1Qbaypl+M/whUN8KNBJp8NHQI7RaJtBofC2cHWj88VopjUKG9H4o2z2a8VG1afZxalg61BcNRxqrFwX2OSxwvDmDpQENtIYB3gBCYS6XAABAAElEQVTxOj4lEGbxWqYXFF8X5L7TVfE7WJuHPwfuG9xX6EXFPeMv4bFAkHVk4G/2xYH7DaHU1wK1aeAeVoKqDzJ+T+B+VO5JnFO5X42tjXNvOjnMFGYLhFfs55YwXbA0oAENaEADGtBAuxowwGqxR/Z/c768UYZnwuBwRTgnXB3uCs8FlvP7GzuGRtd3ckCOz5trSwOTYmDRbDwqXBNoMJZaOCNjwplhikAjsjTy3sh4v7BboOfDE7VhWV6G9LygkUhjkNfOubVxll8Qlg71tUJmHBLGBbZnm88GzsHSgAZa18DUOXUCJQKnUYG/YYRQ/NbeJmF8wRA9oL8dzg/cgz4Mj4TRgRDqpLBr4O8y95hbwqyBe8qo8EIo96ZhGecDKu5N7IchsHxIbcj95/FAr7ClAgEcPbHODt6PIsHSgAY0oAENaKAtDRhgtdDDukPOlTfVNLZX7eK8efO6frgnsP46oZFlgNVI2+17rPlzacPDjWH6ymXSkOS5fWuYMfD1n9LwezLjcwUacTT8CLAYluVlWOZdm2U0KmlwsoxAmAZhtebNxF7hvsDriWPvGextFQmWBtrUwIq5rp+FQYEA6p1wVfhxWCl0VdNkIV9T5GuEowL3DXpIcY+5JnDPIpB6LxB6zRfuCIRbHIv1WE5AxXi5XzGP6ctqQ+5v8NWwUWDbd8OhwdKABjSgAQ1oQAPtaMAAq4Ue1TNzrsMDDfju1BxZiTfNx3Rn5R5cxwCrB2X20V0RTBEUDQmMV+vETNCrgV5YfD2QBh3cEvqHMYEGH6FUafCVdehxxfgTYc1AYMU0X/3ZJJTixvilQEORfXG8g0N9uJVZlgY00OYGZsn1bRuOCnxdj0CKe8ZZgQCqX+iqVstCem4+F8q9aETGS6+rBzO+WDglvB/K1xkJpF4LDMu9rNzD6P3JPHpdMY/Q6nuB+xUQslsa0IAGNKABDWig3QwYYLXQI/pIzvWMCTzf27P+5RO4zaSuboA1qQb79vZT5vIvDcPDPHUqaCzyOzEDA68HGoM04q4MuwUabjTm7g+loVgd0uOB38r6YWA/rEvDstRyGflreCnQ4+K0QLDFOVka0IAGMLBIoOcmf4/HBQItAqnjA72h6u9bmfVRTZF/1w/nh9LTivsM96FyL6K3J/cxQnPCrHJPo2dVuZexLuPnBcbphUVgf1U4KvDBFfO3C5YGNKABDWhAAxpoJwMGWC30aF6Xc6XnyDTdPOc5sh5vZP/YzfV7ajUDrJ4y2Tf38+tc9uthmbrLXzbTNPZo4D0ZaMDRuLs6XFibHpbho7Xx0tgrw5szf4lQwq2nMr5omCp8MQwKNETvCoRh9LqwNKABDYzPAME3PZ4uDq8F7jn0qvpT2DzMEOqL+8s+4YXA+gTxDF8MBOwMxwSCKHgllNC9uj4fULEt4fwzgWCfex37Zd66wdKABjSgAQ1oQAPtYsAAq4UeyZ1yrjSw+VrTWl2cN5/yDgx3Bd74NvoNrAFWpFsTZeBz2Yrn7DZ1W0+X6QcCjbXHAw04GnN8hXBkbfrMDOk5xbIqhFz0lii9t2jsHRSmD3uEEYHeDceHzwRLAxrQwMQaIBBfM+wfCJK4TxEk8QHUT8IKob62yownQvW+NTjTdwfC/H8EPowi1OL+xT2yuu6Ntfkci+CMryoODwRaBF/LBUsDGtCABjSgAQ20gwEDrBZ6FAmmfhzohUKQxaezNOCvDGfXhkMyHBdYTsOd3iqNLgOsRhtvj+MtmMugsUW4VF+HZAbP64cCDTcCJxpoDGnQ/aI2Xm3UMc42NBivCqzH/geE3QOvH340+YAwV7A0oAEN9LSBGbPDLcPhgZ6j/G0mWPp7+HyYIZRaPSP3hnIfI6gixOJv+RuB38binsd7gLJOGZb1WPe2QOBF+PV04HjcXy0NaEADGtCABjTQ6gamzQXwfoo2ndUiBvgaFIHV2MCDV4U3trxh5asLi4TeKAOs3rDe2scknL02EMDSg6Faa2eChlxp2PEcpyFHIEXPhO8HGm2lIVeG12femuH5wPa3h6+EoYGv+fwizBwsDWhAA40ysHgO9IPAB0/0zCKQolf1bmG+QK0S+CpguZexDusSwBNMcT9jvCwvw6cyj/W4H14VPqiNM5/wf7ZgaUADGtCABjSggVY2YIDVyo9ezn3WQFC1dGiWN6cGWHkwrAkysGfW5oeIl6rbiq/50Wuh/OYV4RWNMsIrhnwFsKPw6qDM/25tGeseHfj6IevSE2KOYGlAAxroTQMz5uB8Xfr4QNDOvYqgfe/QLwwMzC8B1fsZfyNwH6N31cuBZWxX1nkp4wT0hFzn14asPzLcFHjTZ2lAAxrQgAY0oIFWNWCA1aqPXBOftwFWEz84TXhq/XJOBFPf6+Dcfp95NMZonJXgioYZDTlCL8ZLw40hDbldw7GBZWxzQiAco2G4fLA0oAENNJsB/qfTdcIfw/BAz+p7wr6B387inlfuddznCKWeC9zbyvwypBfWmMA98NTA+qzH+ueEKYKlAQ1oQAMa0IAGWtGAAVYrPmpNfs4GWE3+ADXZ6fFVl1tDfaOKsIlGWgmm+BoNDTLm/SgQTpUGG0OWfSHcFGjs8TVDQivCsR+E+v1nlqUBDWigKQ2skrMiwH86EGbdWaN6zyOoeiFw7wOWEVaVIUEY98vja/NYl55bfwmWBjSgAQ1oQAMaaEUDBlit+Kg1+TkbYDX5A9REp/eVnAtB1HJ150TYdHcojTEaXjTKaKTRI4Ewq9qQo5HGV3GeqC0bneG4cH/oHywNaEADrWpgtZz4nwO9qrjXEcqX+x/3SKb5PUCWlfCqLH8m87jHHldb9nRtmq8pWhrQgAY0oAENaKDVDBhgtdoj1gLna4DVAg9SE5ziTDmHseG3HZzLbplXwit6EdAYoxF2YHipNl0aaDTctg+EVgRbowLzaLBNHywNaEAD7WCArxluGk4L9T1QuV/yNcGOQiy+hk1vrVMC902+msiHAXyAYGlAAxrQgAY0oIFWMmCA1UqPVoucqwFWizxQvXyav8nxCZ34IeNqzZKJ0sOKXlQ0uOhhQKNtaG26hFc01r4R+DFj1hkVmLd7sDSgAQ20q4FZc2H8Nla5V5Z7Il+f7ijEYh7rXhhY9+bAuhsESwMa0IAGNKABDbSKAQOsVnmkWug8DbBa6MHqpVNdOMclcPp6B8e/OvNoYNHDoDS6bsv4lbX5paFGj4M9Av+dPA0zvl7D/9BFDwVLAxrQQF8x8IdcKPfDcm9kWKbLkHspPVMJrQYH1rkh0Dur/ivcmWVpQAMa0IAGNKCBpjRggNWUD0trn5QBVms/fo04+1NzEH7jit+6qtbmmSiNsBczztdcng+HVOaX5T/LPMIrgrDnAr+TtWqwNKABDfQ1A/Pkggnxy/2xOiwhFl8j5Efcua/S+5X5fDgwMswXLA1oQAMa0IAGNNDsBgywmv0RasHzM8BqwQetgae8bI5Fw2mjumNOl+k3Aw2vUbUhDS1+bLjaGGOc/0WLYIvwiuHYsEywNKABDfRlA9wb6++XTJcQ662Mj6utQ89VemU9GPhAof7r3JllaUADGtCABjSggaYyYIDVVA9He5yMAVZ7PI6T6yrOyY5v6mDnZ2UeDS2+4sKQr7wcHAipmC5ckPERgR8sppcWjbFlgqUBDWhAA5/61PKRUH7kvQRX5f7JkF5YhP70yGI599JRgd/Hqu8Vm1mWBjSgAQ1oQAMaaBoDBlhN81C0z4kYYLXPY9nTV7JSdkgDat26HQ+szS+NKxpVt4ZHK/NZRk+B+wINLv43Qn68nR5dlgY0oAEN/LeBpzLJfbOjEIvfvuIeygcA5b5LsMXXtS0NaEADGtCABjTQrAYMsJr1kWnh8zLAauEHbzKf+vnZ/zV1x5gh0/SkohHF71gx5Gsuh9fGmQYaXFcHwqtXa8O1MrQ0oAENaKBjA3/L7HIPrR/yFULupw/V1uE/waDn6y7B0oAGNKABDWhAA81owACrGR+VFj8nA6wWfwAn0+kvk/3SE4DeVtX6YyaYX+WXma42tlh2cuArL4Rb/DbWVsHSgAY0oIGuDWyZxdxDq/fUMs58Qqs7asu5x/K7WPW9ZDPL0oAGNKABDWhAA71uwACr1x+C9jsBA6z2e0x74oqOz05oJFVrlUyUhhX/oyCNqhsDXw0sDSyGbEtoRUOL33b5n2BpQAMa0ED3DCyc1QinqvfV6jj34ftryxnnP9RYJFga0IAGNKABDWigmQwYYDXTo9Em52KA1SYPZA9exoLZF8HT1pV98mPB/KYVjSg+8WfID7ifWRsvjavba/MJsPgaIWGWpQENaEADE2aA/+l1bCj31jIsP/jO9HO15YRYfFV73mBpQAMa0IAGNKCBZjFggNUsj0QbnYcBVhs9mD10Kfww8KOh+j9c8TwhlKLRVHoG/Kk2XRpWfF1wdOC3WsaEuwONMEsDGtCABibOwF3ZrNxjy/D5yjwCrdLjlZ5YKwdLAxrQgAY0oAENNIMBA6xmeBTa7BwMsNrsAZ3Ey5kx2/NJ/rcr+5kz4/yPVzSe6HXFcETgf8UqDSqGNwdCLHoN8LXCRYOlAQ1oQAOTZuDMbF691zL+ZKDnVZnPBwsEWQRaOwdLAxrQgAY0oAEN9LYBA6zefgTa8PgGWG34oE7CJX0v2xI+TV/ZB/8zVvnaSumFdULmlYYTwztr6/ij7RFhaUADGuhhA7/N/qr3XMafCtUQ651Ml95Yx2ScN42WBjSgAQ1oQAMa6C0DBli9Zb6Nj2uA1cYP7kRc2mPZ5qDKdstmnAYRjaTS+4qeVtVGE5/884PtzOPH3Q8LlgY0oAEN9KyB3bK7+hDrhdq88tuEfNjAfZjfx+KDhYWDpQENaEADGtCABnrDgAFWb1hv82MaYLX5AzwBl7dp1iWIqjZ4rsh0Ca5oOBFmPRKqjaiRmX47DA/80Lu/exUJlgY0oIHJYOBL2Wf1/st4uUfTA5ZpPkzgXnxrIOBaP1ga0IAGNKABDWig0QYMsBptvA8czwCrDzzI3bzEC7Pe+ZV1N844DSEon+5fmvFq4+nFTBNejQt88v/pYGlAAxrQwOQzwP8QW70PV8f5Ifcyzf36yMAHE3sGSwMa0IAGNKABDTTSgAFWI233kWMZYPWRB3o8lzl/ltPIoRdWqXsywv8oWBpDfMpfPuEv8wi36JX1Rtg/WBrQgAY0MPkNfDWHKPfhMuR+zHjpkcX42WGX2rwTM+SNpKUBDWhAAxrQgAYaYcAAqxGW+9gxDLD62APeyeUSPg0LU9SWfyFDAi0goKIhdEttWBpLfNJP76snA2HXVMHSgAY0oIHGGPhJDlPux2XIPZvxEmYxfk1YK4wNd4T5gqUBDWhAAxrQgAYmtwEDrMltuA/u3wCrDz7odZc8Zab5Hauf1eYzzY+5E06VRhE/1F6CrNI4YjkNIhpMnwmWBjSgAQ001sAJOVy5T5d7c/29mvn8JtYi4a7wbFglWBrQgAY0oAENaGByGjDAmpx2++i+DbD66ANfuezNM85vXM1bm7dThnwFhXnlU3waP/WNJJbxG1iHBEsDGtCABnrHwJActnp/JsDi/lzu32UZHzjQ++qMwAcQ2wVLAxrQgAY0oAENTC4DBliTy2wf3q8BVh9+8GuXzm+kXFQbp/fVE+HlUBo91d9TYR6NIn7z6tFAz60ZgqUBDWhAA71jgK9+Px/KPZthR18lJNji3r14+EVguvS8zailAQ1oQAMa0IAGetSAAVaP6nRnGDDA6tvPg9ly+Xw9cJuahq9kSGBV/QrK6ExXG0alEUQPLX4ry9KABjSggd41MEsOX/9hA/do7t3cs8s9nf8tlvXWDNsH/qOOE8I0wdKABjSgAQ1oQAM9acAAqydtuq+PDBhg9e0nwndz+XwNcOrAp/iPhDGhfHpfGkDVAIsGz5Ph6mBpQAMa0EBzGFg+p1G9V5fwiiE9Z8t9nQCL8c8Hgix6b10fZg2WBjSgAQ1oQAMa6CkDBlg9ZdL9fGzAAOtjFX1yZHCu+q+1K+f3UPh0/t+hNIJeqYwzj+X8ADDB1tLB0oAGNKCB5jHwpZxKuX+XYfW3sBjn/g2Mfy/0C48HPsBYJFga0IAGNKABDWigJwwYYPWERffxXwYMsP5LR5+aIIAirFq5dtX8EDA9q/hKIQ2faqOHadblayh8pfCwYGlAAxrQQPMZ+ENOqYRX9cNyX6fnbRk/MOOzh0GBHrgrBUsDGtCABjSgAQ1MqgEDrEk16PafMGCA9QklfWbGr3OlD9eudmCGNGaqPbDeynS18cMn9o+FV8OcwdKABjSggeY0cEtOi/t3+e2r6r2cez3QA7fMPzXj/Icc5wR+6H3DYGlAAxrQgAY0oIFJMWCANSn23LZDAwZYHWrpEzOH5ip/XrvSyzLk6yP8vlVp0NQPafC8Fn4cLA1oQAMaaF4DU+XUngvcx9+pDav39BJiHZdl/B4W04PCzOEvgd/J4kfeLQ1oQAMa0IAGNDCxBgywJtac23VqwACrUzVtvWC1XB1fCewXlgs0bGjs0IhhvD7I4lN8ems9E6YLlgY0oAENNLeBOXJ69Krlns5XBqsBVhnnnv+TwD2fcT7YWDDsG7jv7x4sDWhAAxrQgAY0MDEGDLAmxloTbcObyX6hf1gozBR6uwywevsR6J3j/zmHvaN26L9nyFcD+RS+NGrqhzRk+ErhrsHSgAY0oIHWMMAHFOWDibEZr7+3s4yQ68uBrw6y/OXA72DtEvi78ItgaUADGtCABjSggQk1YIA1ocaaYP1Vcg4nBD79pMdLPcMz79gwT+iNMsDqDeu9e8wpc3h+qHfPwA/3vh3uDHxlhMYLv3VV38h5IvOAr6VYGtCABjTQOga2y6mWe/oLlfEyr3xA8dksI7xiPn8PNgvb1sb/lKGlAQ1oQAMa0IAGJsSAAdaE2GqCdf8351ACK756NThcEfiR1KvDXYGvbbEObxp3DI0uA6xGG+/9462fU6DBMm/YO4wLHfW+4nnJp/PwXuATeksDGtCABlrPwCE55RJY0Zu2jJchfxN4H7JuKP9DIff+74eNA9vwe1l8AGJpQAMa0IAGNKCB7hgwwOqOpSZZZ4ecBwEAQdWqXZzTFFlGoHBPYP11QiPLAKuRtpvjWEfkNG4KNERGhGvCO6E0ZEpwVaZZh68Y2nCJBEsDGtBAixoYlPPmvk4wRWBV7vFlyHx6564RCLPohcW8I8Pagf/E44xgT9xIsDSgAQ1oQAMaGK8BA6zxKmqeFc7MqQwP3f3Ba34f681wTGhkGWA10nbvH4vAdGzYI2wVaKDwPKWRUhox9UN+3PdrwdKABjSggdY1MH1OnYCKezxfFYf6+z3TT4fVw6uB38Ui7Lo2EGLRO+uCME2wNKABDWhAAxrQQFcGDLC6stNkyx7J+fBJ5YTU7Vn58gnZoAfWNcDqAYkttAu+HkJYNX+4LFwTOmrAlAYOjZUng72vIsHSgAY00OIGFsz585Vw7vHvBwKq6t+A0jOLXrdrBT5Y40MPvmb+RNg48NMHlwTelFoa0IAGNKABDWigMwNtFWC1e4OYN3irhe5+SkkPrE8HwgJLA5PLwPbZMUEpz8stA72raMxQfHWwWlNngv8p8+BAA8fSgAY0oIHWNjAupz8wcL/nTSW9xHm/Uor3ZoRYy4VjAj11+c8+hoWlwnlhr8DXDC8MhliRYGlAAxrQgAY0oIFWN7BTLoA3iPRy4VPMzoqvdPFmkh90500jPWQaWfbAaqTt3j0Wz7XRYc/wm8Cn6fymSfXT9zL+TubzvxOOCd0NYbOqpQENaEADLWBgx5xjud9/kHE+PKt+lZzeWSy/N2wRmB4S6InFVw/3Dfx9oNe4IVYkWBrQgAY0oAENfMIA7xHIRAZ8YkkfmHFkrpH/zrlVGtOEBT8OBAE8aLzRuzNcGc6uDXkzOC6wnDeFfKrZ6DLAarTx3jveGjk0DZKFA8/HEwMNEZ5/pSFTHfLVkZ8ESwMa0IAG2s/Awbmkcs/nAzTCqmqIRe9cljN/h8Dfi2sC6wJ/Q8YGPqhrlfdmOVVLAxrQgAY0oIEGGejTAdbwSKahzW/yHBY+E1qhlshJEljxJo/zr0K49XT4U1gk9EYZYPWG9d455u9zWHr6lR9vvyLjfPJeGjAMeX7S84pGzOthlmBpQAMa0EB7Grgql1X9G3Bbprn/l3nlb8SDmbdLILi6oDZ8K0PWfy5cFKYOlgY0oAENaEADGigG+nSANW8s0EPpvlBCIN5Q/U9gWSvUrDlJgqqlw2xNcsIGWE3yQDTgNB7LMX4e+N0SGhs0THgtleCqNFj4lJ1w9ZBgaUADGtBA+xrgjeXjodz/GQ4K1RCLHuIEV6y3Z2389NpwdIbPhJfDOWGqYGlAAxrQgAY0oAEM9OkAq/oUWCETNK75GhQNcN5cXRq2C9MEq/sGDLC676qV1yQ05bUyIBBc0euvfD2k2nAhvGKaxsqiwdKABjSggfY2wH8iQwBV/Vtwa900gRZ/O4aFnwb+RpxUG96TIR968LXzUwI/oWBpQAMa0IAGNKABA6y65wD/W84G4S/hhUAD/aXaNA12a/wGDLDG76gd1tg3FzE00IuRT8yvDTRAaLDwuikNF742SCB8QbA0oAENaKBvGFg8l1n9UIPA6u5Q/jYwZB5fG+TDw98E/oYcXxvyN4Np9vH3YGlAAxrQgAY0oAEDrLrnACHVr0L5WiFvsPiaVHmj9b8Zt7o2YIDVtZ92WXpHLoReiw+Fv4YSXvFa6Yj1Mt/SgAY0oIG+Y2CdXCp/Gwiqyt+FpyrjZR6/RcqHhfxNYf0SYtGz943AhyCHB0sDGtCABjSggb5toK0CrIn9sc958hz4avh6WLP2fOD3F34bTg0jAp8k0kjnE8Jnwymh0UUwxG9eTWgNzgb874SWBnrKAK+ZtcOxga9+8PtXNDCmC6WmyAhfIZkr0FPr9mBpQAMa0EDfMcD7D95bnRUIq/i7sFR4NcwZSs2dkZFh9/C3sGc4NfCbpHsHevr+MLD9j4KlAQ1oQAMa0IAG+pyBL+WKrww0vPnK07vhjLBJ4E1Sfc2XGax3ev2CBk0/UDs+5zAhHNCg8yuHsQdWMdG+w51zaXxa/sdwZxgUyifsPDdpqDDk96+Yv1uwNKABDWigbxrYL5fN34XqbyK+X5vH/AK933kvdlSgJxbvyXiP9pVwe2C9E4KlAQ1oQAMa0EDfNDBtLpt25oC+ePkjahdP76TvhtnGI4GeJKPCj8ez3uRaPH92PDjwgF0Stukm/bNeI8sAq5G2e+dY5+ewp4Ux4eehhFc0LkqAxe+W0FihkTJjsDSgAQ1ooO8aOCaXzt+IElzxN6L6t4NlcH34IBwbCLH4e8P0ZoH/lZB1Lg38ZqmlAQ1oQAMa0EDfMtCnAyy6pS/bYo83X9Gixwtv5lZp0nM3wGrSB6aHTmua7OeNwFds+WR8n0BDpDQ+ypAeWoRZZwdLAxrQgAY0QK93/kbQy4ohf0vK34zqkNCKvy8nBkKsq8M7Yb1wdGDdu8KswdKABjSgAQ1ooO8YaKsAq6Ov/XX1UC6Rhbx5eqWTlfh0b2BtnQc7Wac3Zq+Qg94f7gm8mZvcNUcOcFAguOhO0eOL85o58IbTai8DfMWWxsR5YfZAqLpx6Oj1xzyer48HSwMa0IAGNMDXBFcJfPAxQ3g98LeE4kOP8rfklIx/M/CzDd8Ig8Onw0Zh1/CD8GzYNAwPlgY0oAENaEAD7W+AAIvOPOuEIa1+uQROE1I3ZGV+KLSzomE+KHy3sxV6af5jOe7+gU8eV2rAOeCVJwo+usPUDTgnD9F7Bj6fQw8OW4dLAo0JGhxQilCYT89pXBheFSsONaABDWhgrSgYFaYPfMhFePVWoPg7QohF7RKOC4RXZ4YBYUS4JvBD7yeGhcK9YYNgaUADGtCABjSggZYyML7gZOlczfqVK5ol46uGb1fmlVFCm8/UJl4tM5to+OecCzSiCCM6ctTZsb+TBWt3ttD5LW9gq1zB7WGNQK+8fwYCzmrRMGHeCdWZjmtAAxrQQJ83wN8M3l8NC/y2KOEV78f4NJUPyUqIxXD3wG9n8b7irPDVMCpcH9YLfJDHhypMs86pwdKABjSgAQ1oQANtYYA3OuMCn+51l7ez7mrB6r4B3kTid6bub+KaLWJgyZwnj+1V4dxwRfhX4PdICvS8oiHCfJ8DkWBpQAMa0MAnDNB7ip9xINB6PfA3hPHyt6Q6fkLm85+CnB7eDWMCvXvnC9eGFwPr/zZYGtCABjSgAQ20rwE6SdAepWd2y9f4emC9mSvkk7rla1f6lwxvCxfXpqsD3kDxJun+wNegLA1o4FOf+lwk8HrYIOwWTg58Sl4+Mc/op14Kc4ZHgr+BFgmWBjSgAQ18wsDYzFkv3B3ogcV7ND5oLEVPeN6LMfxW4HcXdwgXhK0DPX0vDdsEPkwhDNs7LBr4II0PUywNaEADGtCABjTQNgYOy5V8sW2upnkuxB5YzfNY9PSZXJkdXhdoaPBVDj4Rp4FBCs4QyqfmNDgsDWhAAxrQQFcGNsxCwiZ67RJC8Xek2rO3/E1h/vWBDxfPDPy8AV8/pAfW/OHJwP9M+Hy4JtgDOBIsDWhAAxrQQJsZaKseWON7bObICvOG0lNrrto087qiVd8E7ZHreijwGxKNLAOsRtpu3LH4bRJ6VA0OfI0Dqo0MGhc0LFiHYMvSgAY0oAENdMcAPav4e0JYRSjVWYjFcnrGs87ZgbDq/cBX2hcLYwO9sZ4OhFlzB0sDGtCABjSggfYx0KcCrAfzuNFTZPXa4zeiNs28rjigtn6rDX5du65Gn78BVqs9U7p3vptlNX7biv/6nK9s8Jsl5XVDY4PxcYHw6vZgaUADGtCABrprgA/dCKj4IAT4u1KlfGDC35hnAiEWwRXj9OA6JqwYXgsnhvvC42GhYGlAAxrQgAY00B4G2irAKj2rOntobsgCPpXjzQ11dZj3o7Gu/+ENUCvW33PSF4UXWvHkPeemM/C5nNFTYbFAA2LmUC0CrAUCw8OrCxzXgAY0oAENjMcA71n+X3vnAe9YWe5dgRlpOjRpIjAgRUVRQEXpKoIFEL2KFEWvHeXqJ1iuFwVsoIKAXkVABZUiFoqIgiBVqSK9ClMoQy/DpUhTv//C/eomJGdy5iQ5ycl6fr81u2ZnZyVz9pNnv+8bWsZ/PtCSd74wOZRgrEWCXG/JQLGL69Ip4WWBm2fkd4yPxbr9woaBGyqbhmnB0IAGNKABDWhAAxrQwFMM2ALrKTomzMI1eSV0ST0qUKDiy0P97jh3wxkbi+IWXzwMDWhAAxrQwGgN7JMHUMC6IdCyqn6dqc8/WG3n2nN84GYj23cLtBLmsR8Lvw2zwguDoQENaEADGtDAYBuYUC2wOvVWcHdv9VDu9nXquN04zmI56NTA+S4X+mG8LgtYeSMmWCyf10PLKr5U/EeYGepfJNh2V+ALA3e7DQ1oQAMa0MDcGvhuHnh/OCfUrzWN8xSvGAPr4UCrem6ysM+u4T8DN1reGUpr9DUzb2hAAxrQgAY0MLgGhr6AxZfxg2vvH03PSZr4Qn5roHl6v8VaOaEfhDsD59kIzeR5TTSxH4+wgDUe1rv7nO/P4e8NFLDWDvXPXPlCwTrmtw2GBjSgAQ1oYG4NcAPxkMBYiwzWXq4zzaZcl8iHGKORGyiXBPbbJXw2UOCiCyHHuTvQ3dDQgAY0oAENaGAwDQx1AWvrvGd86f5rIFlaJJAskfj8LlDIYvn5oV9i95xIKR7cmPlzA7+4c3Tg7uMF4bbAPiRq24dehwWsXhvv/vP9LE9BYfSX4TOBllb1LxL8XwHudi8UDA1oQAMa0MBYDJCXfT+Qh9Eiq37NaZyn6zpdCLkGXRkYwJ19KGDtG+je/spwRLgncCPQ0IAGNKABDWhg8AwMdQGLu3TTQ2lSvmPmKfx8IxArB5Zpit4P8Y6cBOdDoYpWMK2CpG+j8KfA/uuFXoYFrF7a7v5zzZunIOFnvBEKotzh5otBgc8Y3Qf54nBhMDSgAQ1oQAOdMEA+c2Cgq+Ccilh/yz5nBa5NtKAvLbG+nPnDAtcpxsE6PHBNe2kwNKABDWhAAxoYLANDW8DiSzktr75ae79oxcSX8XVr67ijd2RteTxnOQ9awczf5kkslv2468hPS/cyLGD10nb3n4u71nwh4A731EChimX+r5QiFlO+PHw4GBrQgAY0oIFOGtgvByNnOyZwralfe+rzXJ+4yceUmy60xmI7xa/jws1haiCfopX6S4KhAQ1oQAMa0MDgGJhQBSyKUu3Gs7PjAuH26gHzZbpZYJwfWi6VYB8k9UPQUuy8wDgP7cR92enywODuhgbm1gD/L0j0ubO9fu0gFLAI7ozDPOFXwdCABjSgAQ100sAuOdjeYatAXkM39mbBdeg1gesV16jVw4zwkcBNmOvDKeFT4fcVtMoyNKABDWhAAxrQQM8NjKaAxXg9FKs2rM7y9ZnSYunkwN06Yq2wUpjOQh/EbTmHdcLkNs+F10PR69o293c3DTQzwP+N+cPx4U2h/v+MLwt8kXhW+EsoBeHMGhrQgAY0oIGOGfhSjvSJQKspcjhamDcG16RJ4VWB3OfWQB5Hvve2QFGLMbXI9XYOdIk/LawaDA1oQAMa0IAGNNDXBr6VsyOZOTPQwoTC1caB+EJ4KNBUvV/uzu2Qc+F8Twj1bo5ZfEqQwFGYuyDQjH790Mv4YJ6M81y4l0/qc3XFAO8hBSrez+UDrfqY5/9KgWU+Z3sEQwMa0IAGNNBNA2/NwelOSGv0G0O5FtWnj2Q9XQinhfOqfVhm/SWBroXkSNzo+3W4KUwNhgY0oAENaEAD/W2A3nF8/3x1f59md86O7oE/CSRCd4aPhRI0LX84vKus6IMphalPBgprvGm3hPPDb8JPqymJGncc2U7hgbuVvQ4LWL023r3no8UVn6M/h1cFviDw2SpfFLgDfn+17mWZGhrQgAY0oIFuGyBp5YYK1yKKUeWaxJQbj0y5PpEvcYPy54F1XM/I7WYEiltnhkXCqYHl5YKhAQ1oQAMa0ED/GhjqAlZ5W5BAcagedL1jnKx+jJVzUhSsZgWKCXVI1q4P+4blw3iEBazxsN6d59wvh+VLwBcC3Tf+FvgSUD5zd1XrKAAbGtCABjSggV4ZmJonuiPQAvjywLWpUK5V3NDjJiW50XdCWV8KW9wIZEysRcPZ4ZqwVDA0oAENaEADGuhPAxaw+vN9afuspmTP5cOqgbuI/RAWsPrhXejMOZDMU6yiddUloRSvypcEtjEw7sHB0IAGNKABDfTSADcaGXuRItZ1oVybmJZiFdcxWl7BPuHRwHYKW7TG4gbMiWHxQLfCy6r5TAwNaEADGtCABvrMwNAXsF6bN+Sw8JtwejijCe/JOqN9Axaw2nfVz3sunZOjQMWXA+ZJ+FlmCiT+tM7iS8EWwdCABjSgAQ302gDjWN0TuC7dVk3LdaoUsRisnXmgiMX+zHMDhuIX3RF/FZYMl4YLAzcIDQ1oQAMa0IAG+svAUBewtsl7wRfyObFnf71nfX82FrD6/i1q6wR3yF7cqf5e2DGULwLliwF3rUn82WehYGhAAxrQgAbGw8BL8qS0qHqwolynmJZr1wmZ53rF8rcCv5zLNYxlpg+E48Ky4Zrwh7BwMDSgAQ1oQAMa6B8DQ13Aui7vA8nO9oGEZb4WNI6Pld2MEQxYwBpBzgBtOjznSlL/5nBU4ItAvQUWy9y95ufIDQ1oQAMa0MB4Gnhnnpxr1pWBlsHNilhHZv3swH6HhjNCKXDxGMbGOj6sEG4Ivw/84I+hAQ1oQAMa0EB/GBjaAhZ31UhuaF1idNaABazO+hyvo9HCirvVCwa6V9SLV6ynCyEF4J2DoQENaEADGhhvA3QP5FcHDw7keKU4xXzh0MzPDBSxjgkss419uSlDS64TwyrhxsAQEyTLhgY0oAENaEAD429gaAtY88Y9d+H4tT6jswYsYHXW53gcjcSdgtVp4RWhJP5lSnGLRJ99Vg6GBjSgAQ1oYLwN0JKeVlMXB4aJaGyJVa5hP8k2BmynaHV6+ExgG0UtHsNNmlPDC8OsQKusycHQgAY0oAENaGB8DQxtAQvtDNhJYkIxy+icAQtYnXM5Xkf6cJ6YRJ7pFwKJPcWqAsUrtl8bDA1oQAMa0EC/GHhOTmRmoBt8GRurFK7qU8bE+nlgHQWvrQPXNopapZDF4O8vC/yYyS/CpGBoQAMa0IAGNDB+Boa6gLVUvF8fjg0bhRXCEk2gC5XRvgELWO276tc9T8mJUaxaPpwbSPBZZkpiT5J/V9gvGBrQgAY0oIF+MrB2ToaugJ8ItKJigHauX42cn3V7V+unZUqxana1XApZFLdeGWh5fHSglZehAQ1oQAMa0MD4GBjqAhaJy/2htCppNd1zfN6bgX1WC1gD+9Y9eeL8aAFjW90cFg0UrErxiuT/3vBIoJvFZsHQgAY0oAEN9JuBd+eEuE5tEihoUcTietZYxJqedR8LFKwoUq0UuLlZ9mM9rY03CNy4OSpYxIoEQwMa0IAGNDAOBiZUAWu0TbsvifBb25B+TRv7uIsGJoqBl+aFLBx+HF4bKGgRZcr/M/5wcHf7rGBoQAMa0IAG+s0AXQjXCXQTfHl4Y6B1McNGcA0rMTUzXw7vC98PlwfGftw/bB649q0WjgzbBlphHRHeFShuGRrQgAY0oAENaEADA2zAFlgD/Obl1HcL3HneOBxUzddbYLHtjsCvNBka0IAGNKCBfjXADZczwp8Dw0G8PtCCuFmXQgZuJ395KDC/SSjdCylUce2jhRaFMFpi/SyM9sZpHmJoQAMa0IAGNDAGA9yE4rvpq8dwjAnxUBIbBvtct3o1tEAx5s6ABay589YvjyLRJ8EnMZ8V6sUruhY+HOhGuHMwNKABDWhAA/1s4Dk5uZmBVlPEWwJdC+8LpZtgmVKo2rPaxvz7wzah3vWQoSfeFu4Ix4bJwdCABjSgAQ1ooDcGhr6AtUI807yc5IUv6n8IxHHhK2F+FoxRGbCANSpdfbUzRSsGaD83rBLqxSvm76nWMf/8YGhAAxrQgAb63cBaOUFuvnyqOtHtMqUoRUuqUrwqUwpXPw23Vdv2y3SNUG+1RRf6HcKtgdbICwRDAxrQgAY0oIHuGxjqAtay8Xt34Mv41WFmKAWs4zPP+iuDiUkkjCIsYI1CVp/t+qqcD0n8f4WPVvOluFumtL66Phga0IAGNKCBQTGwbU6UotXm1Ql/oFqmJVUpXpUp+10Ubgy01jopLBOmhbIPN3s+FNjntGDL/UgwNKABDWhAA102MNQFrF9ELmMdbFBJpil4KWDNl3laYFHE+nAw2jdgAat9V/225//mhPjMLxco4pZEnSljgtC1cHpgP0MDGtCABjQwSAb2zsnSdXC16qQ/nikFqltD/XrHfFk/I/O0uLou8LjfhrIvrbVo1XV9OC8sFgwNaEADGtCABrpnYKgLWLQk+UbNbb2AxWrGNZgdDmPBaNuABay2VfXdjiThdKmgKyEJO8WskqjTWpFknSLWFsHQgAY0oAENDJIBfoHwhEAxatHqxD+XKTdobg7lelemtMSi6yGtrMgHGf/qTeFLoezDdfGr4bLALxguGwwNaEADGtCABrpjYEIVsEhM2o0p2ZE7ZSQxrYK7b1cF76i1MuT6iWRg/ryYlcLZ4VWBPw7EPP+cPOPZmdJlguUzqnVONKABDWhAA4NigKLTDoH8jvFPaW1Pq6x9wxLhplCCGzjklVwbnxe4qUMxiwIY89sE9uGa+NlACyzGyTonMIakoQENaEADGtCABkY0MJoC1v/lSLeHV4xwRIpcDNx57Qj7uEkDE8XAa/JC+D/0o/D6UApXJOhAos8d6j8Gut4aGtCABjSggUEzQJFpy7BW+HZ18rtlekhYPMwMBNdACl1MgW0Usyhysf87w8aBFlhcO98fyCvJGSlirRMMDWhAAxrQgAY00DEDh+ZINA/fOTwr1LsQ0rT8+MAX99cFo30DH8yueHNA0/ad9cOeR+ck+P9Agn5xKN0jmN4faH11S/h0MDSgAQ1oQAODbGCDnDxdB8kBCYpUFLHuDTeEcg3khk2ZfzDzcH2YHq4Irwl0rWcfCl5nhSMDhbLNgqEBDWhAAxrQQOcMTKguhKPVQpGKO2kUW/iCzp2zWYHC1T2B9YcFY3QGLGCNzle/7H1rToSkfJHAHWU+/yTkTGfX5tfMvKEBDWhAAxoYdAM75gVw4+bN1QuhJRXFpzsD10OugUCOWOYpaFGwYvvvA4PC/2cohS6un1eHbwVu/LwnGBrQgAY0oAENdMbAUBewUPiccFDgLhxf1AsUsP4r0G3KGJ0BC1ij89UPey+UkyA5/27YupovyTpT/l/cGChyGRrQgAY0oIGJYuCLeSG0llqrekH8iAkt8rmh+ZfANZCiFPuU6yI5I62tZob9A0UwpmUf9r8t7BnY9oVgaEADGtCABjQwdgNDX8AqCilUrRzWC88tK53OlQELWHOlbVwfxB1iilQvDQeGkqQz5U4zyfoV4UfB0IAGNKABDUwkA4fnxVCwWqF6USTHJ4UZ4brAtZBCFIO3l+sjRapSqHp/5hlb9bRQiljsx/ynAq2zDg2Tg6EBDWhAAxrQwNwbsIA19+58ZAsDFrBaiOnj1Sfn3EjMiTsCxSySb6alOy3J+XbB0IAGNKABDUwkAyTDFJ+uCotVL2zBTM8MFLDoEsg1kZs5tLxivg7jZr02XBNmhtKdkH3oRvj/AsNU0OVwkWBoQAMa0IAGNDB3Boa+gLVUvG0StgnrhiWDMTYDFrDG5m88Hk3y/ecwNVC0KpTku4z/QZdbQwMa0IAGNDDRDFBYujz8IVC8Ip4dzg+0QAauiQ9XU1pk1YtYFK1eEeh+yDytl9leWmr9T+avqlgpU0MDGtCABjSggdEbGMoCFonJAeHuUL6o16dXZv2OgXEQjNEbsIA1emfj+QjuNpNk7x4+UM3z/6GeeF+S5T8FQwMa0IAGNDBRDTCExMzwq8DQEgTXyEsD10CuhVwbaZFMy6rG1lgsbxAoVlHgKtspYvG4/cIpgUHiXx0MDWhAAxrQgAZGZ2DoClhrxQ9NvPmCzt2x08MR4YfhjHBTKMWs32V+gWCMzoAFrNH5Gu+9P5MTILGmNSJ3jpkv3J95kvBrw1eDoQENaEADGpjIBlbLi7sr/CjME4glA7njHwOFLApS9wVaWpUiVbluMqXL4OaBa2gpXpXpT7PuoEAOun0wNKABDWhAAxpo38BQFbBoUTUjUKD6UeCuWrPYKCu5y8Z+32+2g+tGNGABa0Q9fbfxvJzR7DBvIKHmc08CzpQEnQIW8P/C0IAGNKABDUx0A+vkBVJ8+nbthT4389PC78M5gesi10iun6U4xbWzFLS4CfqiwGNYX+eMLH8ycIwvhVIoy6yhAQ1oQAMa0MAIBoaqgPXeiOBL+QmhNA3PbNOg5dWMwBd6x/1pqqjlSgtYLdX05YYHc1anBxJ2/n+UJJt5+Eugu8TkYGhAAxrQgAaGwcCGeZG0sNq79mKnZp6W+r8NZwaKVVwfGUeyjI3FNZTckSkFrq3DWdUyhS6KVmxjPKytAo//RVgoGBrQgAY0oAENjGxgqApYNNvmCzlNwduJXbIT+7+lnZ3d518GLGD9S0XfzzCQLIn0R8Jnq3mWofzaEi20fhUMDWhAAxrQwDAZeH1eLMWoL9Ze9KqZvzUcE04KXCspXlGIuj6Ua2gpYlG0Iv88utrG8l+r+VsyXTdMD/yQynLB0IAGNKABDWigtYGhKmCdGg/3tHbxtC0UrihgffRpW1wxkgELWCPZ6a9t38jpkGzT4vCiwOedZab8X2FKou7/gUgwNKABDWhg6Ay8Ka+YItXutVf+oszfGShMHRcoSNEai+kvA9dRYB1Tilv8cBD7skwR675qnuka4ezA9faVwdCABjSgAQ1ooLmBoSpgXRwHNzb30HTty7OWL/C7N93qylYGLGC1MtN/6/lZ8DsCv8xJt4ZSwCLBJhGnWwTrVgmGBjSgAQ1oYBgNbJEXTRFrz9qLXzPz3Oj5caCQRXdDClMUrb5SzZdiFdPbA62y+KXrsv62zPMYWnC9JPwgcO3dIRga0IAGNKABDTzdwFAVsC7N65/xdAct17wsW/jyvkfLPdzQzIAFrGZW+nMdCTl3hDcLJNR83pkWLsj8tGBoQAMa0IAGhtkALbEoQO1dk8DYkbSg+n44LFDE4rrKNfTz4YFqvlxT+XVDWjuzX1k3PfMUsXgcra/+X+CG0tcCP65iaEADGtCABjTwbwMTqoDlhf7fb6xzGpiTgXWzA38ADg+vr3amgEUwsDvJNT928LtgaEADGtCABobZwG/z4rcMHw/fCvOEP4fNwzaBAtShgWIURa0vhZ+Ea0KJxTPzgkDBiyIVMTVwo2hSOCdcHSiWfTgw/uSUYGhAAxrQgAY0MAENcPGfU5AIcHernViunZ36aJ8Vcy6rB8ZluC7QDN3QQCsDH8oGilQkyAcGknGCIlZJrEm06QphaEADGtCABobdwKkR8MZwYiCf/EC4MLwhcLPnyLB/+FTgF3x3CmeFy8K2gessXfY/Fj4bPhpWDqsEWmIxf1Jg33XDCeH8sFW4IRga0IAGNKABDQyRAboQ8uV8tOzRJ464G3dUIPmpB+Mm/CnUX9fsLJMc0YKm12EXwl4bn7vnm5GHzQxLBQpZ9c8PyxRBHw/e/Y0EQwMa0IAGNFAZoOsg3QHpgr9Ate7VmTJY+/fCroEbQb8PXE9vCntW8ywX9sr8z2vLN1bztOKiOLZI+G24N5SW0pk1NKABDWhAA0NrgB5EfG/lujvwMWkOr4C7YkvOYZ9mm89ttnIc1nE3brvAHb2/Vs+/fKZ/CCQ5jKtAc3YKDhuFr4Wlwy7B0EDdAP9XVgg/DpvWNvDHgMSZu8S3hjsCCbmhAQ1oQAMa0MA/DZBrbRhOqaCF1Hlh83By+FmgAEVXwV+Et4bPhC+F3UOJ/84Mrbk+F/YO5HQUqxYPh4RFAwPIs+2kwDH2C4YGNKABDWhAAxroewOH5gwpMFCsKkFzddbtXFZU04UyLdvqBYqG3bqyaAusrmjt6EFJpvncbBBIrv9ewbp7AtNrw27B0IAGNKABDWjg6QaWy6orKp5XbeZmI63gDwsUnxiwnYLW3YFrLfO0zirXXabXh+0DN5BYfrg2/+XME2xn/eGhtPrKrKEBDWhAAxoYKgMTqgXWRH/nDs0LpLBQL2DNyPIFLV74gllPwrRXi+3dWm0Bq1tmO3fc43KoxwItrWjNx+eKpJkpyfZ91fLLMzU0oAENaEADGmhugFZSZ4ZbwksDQRdDbgb9NLwq3BFOCZcGrrXXhUereZbhgfCu8Hi1TJGrFLq+k3li7UA3w4sCrbUMDWhAAxrQwLAZsIA1QO/4oTnXxgIWCdIPRngNf8y2E0bY3o1NFrC6YbWzx7wzh7s6vDDwmSoFLJJo5s8NjO8xbzA0oAENaEADGmhtgGT6qECX+zdWu62ZKYWr48MLAq2aaa11dKClFTePGotYrKc7IS2tSmGrFLRoVU8wFMaZgev4xsHQgAY0oAENDJMBrrl8X331ML3oQX2tzQpY3NG7oMULWiLrSY4ObrG9W6stYHXLbGeOy91iEuN9wyeq+ZIoP5hlEuizAneODQ1oQAMa0IAG5myAFs1fCbSa2rnaffVMbw6nhuXC6eH28PXAflxvaQ3NtFyHmf4yzK6tYx/W/zbwPJPCtwLFLa7jhgY0oAENaGBYDFjAGqB3+tCcK9XG6wJ34nYJewYSHwYQrccKWaAAwf7b1zf0YN4CVg8kj+Epdspj+VysES6v5lkmOaZFH58nWl+9Nxga0IAGNKABDbRvYMfsys3DAwOFphXD9YGbjUuHg8IjYe9Ad31aW3Hd5TFchwvkerfVlksR67ysmy8QPBePPyIw9qmhAQ1oQAMamOgGLGAN0Dv89pzrsWF6oOBQh59oLvHmzHBXju3nBO7W9TIsYPXS9uifi9ZVJLz85ydprn+OuCNMos26ZYOhAQ1oQAMa0MDoDKyf3enid1qgNTyFq0vC1WH58LFAnvajQLdCuh5SuOLaXApYTGkVTc5X1vEY5q8MZSD3tTJ/R+DG0/ODoQENaEADGpjIBixgDei7u0jOe+NA0/HDwo9CCVpjkQwdHMbjjpwFrPJO9OeUhJg7wXx+SIQpVjEt3RlOzfxlwdCABjSgAQ1oYO4MrJiHMWj7tPCSMCWcEW4JLw4bBQpP54RfBVplcVOpsSUW666vtpVrNdMbA7kgsULg5tR9YYtgaEADGtCABiaqAQtYE/CdXTCvafI4vi4LWOMofw5PvWq2U7D6TNg/kAQX7s082/4cvh4MDWhAAxrQgAbm3gA3EX8euHG0TZi/WqbQtElYLpwbGBfre4EWVqWrYLk2lymFL4pZLJfp3ZkvraX50ZUvB25GfTWUboaZNTSgAQ1oQAMTxoAFrAF/KxfL+U8NqwcSoYXDeIcFrPF+B1o/P0ktRarnhVKwIhlmHa327g8k0K8JhgY0oAENaEADYzfw2RyCwtK+YXLYL9DSaodqmRtKbD8s0CqLIhbX4lKoKkUsrtGN6yiOkQOWeFNmuL6fFpYqK51qQAMa0IAGJogBC1gD+EaulXP+QbgzUHhoZFrW0X2Qn1oej7CANR7W23tOxtrgzu9zQilc8fkp8+dn/oHAHwZDAxrQgAY0oIHOGNg0h2GcqjMDY2J9PFC02iMQbwkUnhik/U+BQlUZG6sUsJg2K2xRDNsglJiaGY4xK2wYDA1oQAMa0MBEMWABa8Deyd1zvqVgxfgH54YTw9HhpHBBuC2wD03Le/0LhHnKZ1jAwkL/xaScEonvyWG7UE+IGTiWZPnUcEIwNKABDWhAAxrorIHlc7iSp22c+S0DLaiODAzKzvYylhW5Hdfp2YFCV/2azTxFK67bZT3z7wwl5s/MgYHrPi3A5gmGBjSgAQ1oYNANWMAaoHfwHTlXClMUqtYe4bxJUjYK3H1j//VCL8MCVi9tt/9cm2RXEt0dw2mBz0ZJfLkrTPJ7c/hoMDSgAQ1oQAMa6LwBEu//DRSl/ie8LPBL0rSAXiYwlhXrHwt/qKbcZOKmZLlml+lfq+1lmSmPrce2WaBlNQWxJeobnNeABjSgAQ0MoAELWAP0pnGHblrgrlo7wfhYND8/qJ2dO7iPBawOyuzgoX6UY5Hc8rngjmy9gEWizGeLdSsFQwMa0IAGNKCB7hngpiRjWv0urBHoOshA7a8IBMNFXBkYLoJWWtxkYrlerGKe63djCy1aU9PqusRqmbksUChbr6x0qgENaEADGhhAAxawBuhNuyLnesQoz/eP2f/Xo3zMWHe3gDVWg915/KwcluSYn/OmUFUKWCTFJMGnhGuDoQENaEADGtBA9w08P09xUWDoBwZfPzTQquo9geCG5V6BAhWtqJj+pZrWC1nlOl5fd072WzSUoIviIcEuhcWIUw1oQAMaGEQDFrAG6F2jwHBNmNzmOdPShhZY+7S5f6d2s4DVKZOdO85zcigS2x+F3ar5UsBiUHfm6b7ALyEZGtCABjSgAQ30xgCJ+DcDRahvhE+Ex8J3Q8n3Xp55bmKynrGvKGYxNla9YMV8Y0sshgVYPdSDMTDJDRmOYsn6Buc1oAENaEADA2DAAtYAvEnlFHfIDIWGE8K6ZWWTKWNgbRgYKJRkZv0wlqAQRjfEQ9uEMRs4z4WD0R8G/jOnQXL72nBrKMUrpvcHklmS4s2CoQENaEADGtBAbw28IU93e/hz2D7QKuu8sHwgKGbtGcjraEXFNZvreWMRq7E1Fi26aN1Vj1WywPPw+NfUNzivAQ1oQAMa6HMDz8z54qWdGwAAPrFJREFU8R321X1+nm2dHgNfTuQ4Ki9ul/C6QGsZuoMx/U34aTUl2ZkVzg5rh13DOWEsQUFsUphvFIzl+Xxs5w1Q/CSpvTgsUx2e95X//FPCVYGkmM+NoQENaEADGtBAbw2cnKdbM1C4+n44INDiius2xS2KVnsGhgG4J1DQAlpjcS0vwbW9HvNn4cTwpVC23ZD59cIvwqmBbeR4hgY0oAENaEADGui4gZVzRApWFKpIWuo8lOXrw76h3LXLbE/jg3k2zskWWD3VPuKTPZitl4ctQv1uLb9sRGHrd4EE19CABjSgAQ1oYHwN7JSnJ5+jm993AjeY9g7cTCQoRLGN6zktqNn+SLVcv8Y3zp+bferjYmXxGVsFCmK0nh+vvDFPbWhAAxrQgAbaMjChWmC19Yon2E60niHhWDUs0ievzQJWn7wR1WlwR5eC4hfDb6v5ktTelWUKWDeHjwZDAxrQgAY0oIHxN7BaToGhIO4OFK+4XlOAmhpK7JYZruFc0xkTi+6C5fpepmV7WWbYgMZuF8/LOlpg3xveGgwNaEADGtBAvxqwgNWv78wAn5cFrP56876W06GAtUagOwLzJLJMWabFHvNTg6EBDWhAAxrQQH8YoMXV7uHxcFygyEShavtQ4j8yQ+srCl1MGwtWPLYUr+pTWurXgy6EewZacx0YFgiGBjSgAQ1ooN8MWMDqt3dkApyPBaz+ehOvzenQxYBWehSqSgGLJJVklu6DjIFlaEADGtCABjTQfwYY0/TKcGs4LHDz6chQugO+MvO3BW5Isa1c30vBqrGoVdb/JfsuE+qxURZuCleEF9c3OK8BDWhAAxroAwMWsPrgTejWKTCGwmXhI916ghbHtYDVQsw4rH52npPElbEydgskraWIxZgXzF8U+OluQwMa0IAGNKCB/jQwf07r64Hi1PHhukD3/00DsXy4OLDuzFCKVPVpYyGLZQpeHwr1WDwLxwa6JDq8QN2M8xrQgAY0MN4GLGCN9zvQxeffM8emQLFHF5+j2aEtYDWzMj7r6FpA8rp9uCPweShFLMbBYLwLkuGNg6EBDWhAAxrQQH8bWC+nR8spWkkdEyhC0eWPH85ZMDDWJesYPmBWNV8vYjW2zirLf8y+C4V6fDgLD4dfhefUNzivAQ1oQAMaGCcDFrDGSXwvnnbpPMmagWkvwwJWL22P/FwknSSuy1VTClj1IhYJK+NpTAqGBjSgAQ1oQAP9b4BC07cDhSpaSs0I08NrA/HZwNhXh4T9AvvVi1jN5tmHXz7cKtTjRVm4NNwaSmuv+nbnNaABDWhAA700YAGrl7aH5LksYPXPG00rK5LarUM9YX2gWj49058FQwMa0IAGNKCBwTLwmpzuzHBD+GWgCHVQmBLWD3QnpPj0hkCXw3oewHxpfVXWl+VfZxuDupeg++L+geMz+DtfHgwNaEADGtDAeBiwgDUe1jv4nIvlWFPD6oFWNjQhH++wgDXe78A/n5/BV2ltdUA4p5ovSSo/x/1YuDe8Kxga0IAGNKABDQyeAYpVPwwUn44I14c7wyfCEoFiFC2rPhRomUURquQCTOvL9fnZ2UaBrB6bZ+G2QFGMXzY2NKABDWhAA702YAGr18Y78Hxr5Rg/CCQopUtYfTot6w8OS4bxCAtY42H96c/55awiOV03kNjWPyMsX1GtZ7BWQwMa0IAGNKCBwTWwZU799kBx6ezAdf6nYamwc2AsqxPCmuGGUC9iNRay6stHZ996iyvGwjo+/DVQJJsnGBrQgAY0oIFeGbCA1SvTHXqe3XOcUoi4MfPnhhMDCcZJ4YLA3TH2uTtsH3odFrB6bbz5812b1dx1fVng81CS1Uer+VMyPSsYGtCABjSgAQ0MvgFuXJITcr3fL1DM4heH3xteGP4UWCY3/O9Qb3FVL1o1zt+XfRvHv/pA1j0QTg3PC4YGNKABDWigFwYsYPXCcoee4x05DoUIClVrj3BM7oZtFEhU2H+90MuwgNVL282fi66lJKAnh++FUsBiSvdBttFSb9dgaEADGtCABjQwcQx8Ji+F4hI3qr4SaH31+7Ba+HzgRtavAze4aM1PTtAOx2a/JUKJ52eGIQoocO1QVjrVgAY0oAENdNGABawuyu30oY/MASk6zN/mgSli/F9gQM9ehgWsXtpu/lzcXSUZ3S7QCqsUsFhHIsvPb7OOZNbQgAY0oAENaGBiGVglL+f8wE2rD4XTAtf/z4aXhPMCOSLdC/83lAJWY6ss1tfXkVPQ+qp0HWSwd1pzURQ7JtAKzNCABjSgAQ10y4AFrG6Z7cJxr8gxjxjlcf+Y/bnL1suwgNVL282fi7uuJJwvCCUprSehp2f9tcHQgAY0oAENaGBiGpiUl8V4mE+EAwOFLLoQXhJeHiheUcS6MGwRKE7Vc4ZW8+QXFweOUYKxtTguLbreUVY61YAGNKABDXTYgAWsDgvt5uEoSlwTJrf5JKUF1j5t7t+p3Sxgdcrk3B2Hu6HcZb0u7BLqCSiJKy2vGBfja8HQgAY0oAENaGBiG9goL4+W11cG5hk3laLWNwLdAH9eLX8n0xNCPW8YaZ5C1vdDaXVFfvrF8Fj4RVg6GBrQgAY0oIFOGrCA1UmbXT4W4wtQfCC5WHeE56JZ94aBAd1JUNYPvQwLWL20/fTnIjkl4fxSuCOU7oNMZ4d7A9tH+gxls6EBDWhAAxrQwAQxwE1Nuvj9NXwkbBluDteHjcPm4S+BvGGP8EgYqXhVtlGsohXXrqHcYH1p5mmhxU2zHYOhAQ1oQAMa6JQBC1idMtmD41CY+mSgiTfFiFvC+eE34afVlDENbg1sfzx8IvQ6LGD12vhTn+8HWeT9XyeQYDJfEk3mzw2zQhm/IrOGBjSgAQ1oQANDYIDiFUUsilkrhIMDLanoYrh4+J9Ankl+eU4o+UPjlMfU11HwmhbeEgi6LzI2Fs91alg5GBrQgAY0oIGxGrCANVaD4/B4kgAKVhQhKEjUIengbtq+YfkwHmEBazys//s5GX+CQVsZwL2eXNL6iuULw3eDoQENaEADGtDA8Bl4cV4y3QlvDOuH1wSKTzPDpoH88Wfhb+G4QG5Zzyfq8+xTlmn1D2eGtQOxajg9MLQBxbHJwdCABjSgAQ3MrQELWHNrrk8eNyXnQaJBgrBIn5yTBazxeyNemKemoPnDQFcA5ktieXfmSUJp7k+CamhAAxrQgAY0MJwGFszLpvUVrfU/H54Vvh0oSLH+2WHjcFm4P9Aiq+QTjVOOUV/3aJY5zo8DOSrxnsDNtasDBTNDAxrQgAY0MDcGLGDNjTUfM6IBC1gj6unqxi/m6CSRr6umFLDqRSzGpGAMLJr2GxrQgAY0oAENDLeBt+fl3xfOCMuFjcINYWYgl5gv7BS4CTYtUISqF6vq83QXrC/TrZBi1tcCN1mXCIcEiltHBZ7P0IAGNKABDYzGgAWs0dhy37YMWMBqS1NXdqLVFc303xJIIkvx6oFqmTuohwZDAxrQgAY0oAENYGDFcE5g0PWtw8LhfwOFJoYcYJlB4A8ItLa6pprWi1X1eYpW9WVaflMkYxxXvnisG/4UyE0YJ2v+YGhAAxrQgAbaMWABqx1L7jMqAxawRqWrYzs/N0ciYfxtoKVVKV6xjnGxSCi5G/rGYGhAAxrQgAY0oIFigJZWtOJmDKuDw0KBrn4zAi2vNgrEC8JvAvvdEuqFqsZ5CmD1dTzmtrBDmDd8INwROP7bgqEBDWhAAxqYkwELWHMy5PZRG7CANWplHXnA/8tRSBbfWk0pYJUiFuuvCHQfnBwMDWhAAxrQgAY00Ghgg6ygaHVteHlgbCwKWuQR+wfGziI2C+QVtPpmfE1aZrEPBauSe9SLV2wvy+zHc7wh0LVw38BNtrPCOsHQgAY0oAENtDJgAauVGdfPtQELWHOtbkwPJJEkAXxzqCeQD1bLF2T6w2BoQAMa0IAGNKCBVgYoKh0eKDp9IdA6i4LVzeG6sF4gWE/Od3t4IJB7UNCipVUpVjVO2V5fNy3LFM2eH46pth2R6YrB0IAGNKABDTQasIDVaMTlMRuwgDVmhaM+wJJ5BHc0TwsXhfrdz9J9kOLW5sHQgAY0oAENaEADczKwTXZgXKwLA10HKWwdGihQ0WqqtMaildaegeIUkG9Q0GpVyCJf4bj1QtbMLL82UMw6PzDkAc+xeDA0oAENaEADxYAFrGLCaccMWMDqmMq2D7RT9iQh3K6aUsAqRSzWXxXuDpOCoQENaEADGtCABtoxsGx2OjHwC4OfDrS6emO4JfDDMRScSiydmQMDhStab90VSsusUqwquQnL7EerrrKN6axA4YxfR+T4s8PnAmNyGRrQgAY0oAELWH4GOm7AAlbHlc7xgAzaTrL4jkACWBLEkjhemnUklYYGNKABDWhAAxoYrYH35gH3BYYjeEmgNdb3AzfJvhOeHUrQHfDnoRSmrsv8/bXlsr5MKWTd0LCd5/pE2Dkw8Put4SNhcjA0oAENaGB4DVjAGt73vmuv3AJW19Q2PXDpPnh2tl4ZSvGKxJDugzTDJ8FcPxga0IAGNKABDWhgbgzwa8fHhcfCVwNdCF8XpoWbwlahHi/KwqmBfIQ8hOIXhalSuGqcss/0wLRso+XX1wPPx2MpdG0f5gmGBjSgAQ0MnwELWMP3nnf9FVvA6rripzwBdyhJ9nYIJHwUsOpFLIpaM4LJXiQYGtCABjSgAQ2MycB/5NGzAsWmLQLd+/YJj4djwvNCPV6chT8EchT2OSPcEUquUi9YlcIVN+DYtywzf3g4JDwULgtbBkMDGtCABobLgAWs4Xq/e/JqLWD1RPO/nuSazD0aPhBI9EpCWJrr03SfO5eGBjSgAQ1oQAMa6IQBugzuHygs/SasGl4WGICd4Qs+FSaHetAi65xQClmnZp4bbKVI1ayQxbHIcco+TE8OFMpoCXZeYPB3QwMa0IAGhsOABazheJ97+io/mGejiLJwT591OJ9shbxskrnfBsaIKMUr1jFo+4PVOpJGQwMa0IAGNKABDXTSwBo52GmBYtIBYYnwoUAOwg22Zr9+vHLW8xgKVox/dVa4PJC71PMYlgscv7GQ9aesowjGcX4f1g2GBjSgAQ1MbAMWsCb2+zsur84CVu+0756nIrnbrpqWRI9kjnm6D14YDA1oQAMa0IAGNNAtA4x/dW3gVwN3C3QjLL9ISAutF4bGYAzPYwOtuMhZrgh0NaSoVQpZ5DNlninLjO1Zz3d4Xlpise6E8NJgaEADGtDAxDRgAWtivq/j+qosYPVO/815KsaC2DuUZI4EjzufZcqv9hga0IAGNKABDWigmwYm5eC0vpoVGMPq0+EV4ZRAUergsGxojAWy4juBfIZc5q5AyyoGcC/Fq5Lj1Kf1FlkUtsiJ+NVl9vl5aFY0y2pDAxrQgAYG2IAFrAF+8/r11C1g9eadWSdPQ2L341C/G0niRtdBkseHwyLB0IAGNKABDWhAA70wQEGKH5i5NdwT9gzbBIpL5CXfCHQ1bIz5suLjgSERyGVomUXLKo5RL1w1zpcWXKynkEUBjO6LzB8RVguGBjSgAQ1MDAMWsCbG+9hXr8ICVm/ejp/kaShgbV9Ny11KxokgiaP7IImboQENaEADGtCABnptgEIWrcBvCLSm+kH47/CX8ECg9fiSoVlsmpWMcVWKVRS1bqwtl5ynbC/Fq7JM8er/As9N6y9yJgtZkWBoQAMaGHADFrAG/A3sx9O3gNX9d4X/uNzFvCn8MZSEjSk/TU2yxh3J1wZDAxrQgAY0oAENjJeBefPEW4czAoWnC8Kh4fpALkP3wZVDs1glK38YaGlObkNhikIWOU5jEassl2nJjSie0b2Qx3Nj70XB0IAGNKCBwTRgAWsw37e+PmsLWN1/e96RpyCJ+3wgQSNZKwkbCdqMwB3OeYKhAQ1oQAMa0IAG+sEA41LtFxjmgMLS+WFaIKc5JmwcmsWzsnKnQH5D3kOuQ/GLllwl/ykFq2ZT9qHoxU0+tvNcjM9laEADGtDAYBmwgDVY79dAnK0FrO6/TRfmKUj2/ieQiJXk7f5qmcTwk8HQgAY0oAENaEAD/WZgck5oi0CLKLr6MSD77YHc5rqwc2g1hudG2fbzQEGKllnkQBSzeGwpXpW8qHFatt9X7Xtapm8M3vCLBEMDGtDAABiwgDUAb9KgnaIFrO6+YzSzJwEj6SJhK8kYSRp3IvkJa9YvFgwNaEADGtCABjTQzwbmz8lRRDow0NWPfIYWVhSoGMT9PYEB3huD8bM+FaYHileliMXjyI1KQasUsUq+VJ/yGJ6LQd8/HBYKhgY0oAEN9K8BC1j9+94M7JlZwOruW0eCR/L10WpaErOSsN2Q9T8MhgY0oAENaEADGhg0A6vlhD8W/hDoZkieQzFqWjg4vD403qTbKOt+HNgfyIkoTJViVZkvOVNZX6Ycn1Zg3AjcP6weDA1oQAMa6D8DFrD67z0Z+DOygNW9t5C7lA+FW8PVoSReTPnZ6JKgrZ15QwMa0IAGNKABDQy6gXXyAg4Lt4SS91CImhXoSrhr2DgwTtaUQB56bmCfBwPFqQLr6sco8/Upv+bMfozP9Z7AcQ0NaEADGugPAxaw+uN9mFBnYQGre28niRRJ2J6hJFv1ZIxf5jkjGBrQgAY0oAENaGCiGVgmL4jxsShQ0cqKYhPjf5YC1eWZPyS8L7w+7BmmB3Km0pqLeR5b8iemZb7kVmXKfjzuqPCmMDkYGtCABjQwfgYsYI2f+wn7zBawuvfWTs+haeL+y1BPtu7JMskW294cDA1oQAMa0IAGNDCRDdAyautwUJgRyIsYB/SmasrynYFfHNw30MXwtkC+RGGKKfuUeZbLusZ5CmS0cqdYdmjYIiwQDA1oQAMa6K0BC1i99T0Uz2YBqztv82tyWBKqH1XTklwxJfkiKaNb4TzB0IAGNKABDWhAA8NkgB+5+UA4PNAineIUY1oxz40+lu8IJ4eTAr96yDqKU+RSrYpZrC/bmafVF3kXQzocG2jt9dxgaEADGtBA9w1YwOq+46F7BgtY3XnLL8xhSbLKIO6lgMXPTzNPkkYSZWhAAxrQgAY0oIFhN7B8BGwXvh3+FCg8kS/RiopugcxPD2eGGYFlINcqsEzRqhSxyj5lSst3CllsvzR8I2waFgyGBjSgAQ103oAFrM47HfojWsDq/EdgjRySZOk3gaSqJE5MScLuCzPD5GBoQAMa0IAGNKABDTzVAF3+Xh0+EY4ItMyq51MM+E5L9mtCKUqxndZWjQWselGrbKNAdm9g+kg4PXwhbBD4wmVoQAMa0MDYDVjAGrtDj9BgwAJWg5AOLP4uxyCJOqCaloSLZIt5Wl/h3dCABjSgAQ1oQAMaaM/AotmNFlN7hUsCNwVLQYrxs24IdDvk5iHr6y2zyL/KvmVa8jP2IzdjeAfmHw6nhd3DJsEWWpFgaEADGpgLAxaw5kKaDxnZgAWskf2MdusL8gASojMDSVBJjphyh48BS2cGW19FgqEBDWhAAxrQgAbGYIC8a/9wbWDgdvIt8i8KWjcHilEUrOZU0CpFrbIfBa27A8ek6+E54WuBAeEXC4YGNKABDczZgAWsOTtyj1EasIA1SmFz2P2MbCd5+n41LQWs0vqKZu7vD4YGNKABDWhAAxrQQOcM8EVp6/DrUMYcpZgFtK4CuhiW3KxxWi9isY3lsq4MBF8eT/fFg8K7w/ODoQENaEADTzdgAevpTlwzRgMWsMYosPbwF2eehOfkalpPjLh7x0CkV4T5gqEBDWhAAxrQgAY00B0D8+awjKG1T5gZKETR5ZBiFi3irw83BfKzUqSqF61K8apM6zld2Y9j0UKLfcjx/hj2ChsFux1GgqEBDQy9AQtYQ/8R6LwAC1idc8p4DCQzvwv1RIekhmWSnDcEQwMa0IAGNKABDWigdwZWyVP9v3BGYOB2oHU8xSe6G9JF8OLAwO71HK4+z74sM63PN9uHdRzrokBLrbeHZwVDAxrQwDAZsIA14O82feanhtXDcmHhMN5hAasz7wBN1klWjqqm9WSGohZJDIUtQwMa0IAGNKABDWhg/AxQSHpL+F7g1w0pRjFWFkUtcrbLAr98eFyYHkq3QXK7xuJVWa5Py371XJDtLNMK7IZwfKCgxi9X2zI/EgwNaGBCGrCANYBv61o55x8E7u7UL25lflrWHxyWDOMRFrDGbn1SDnFXYLwFpvWE5b4skwzRRJ2BRg0NaEADGtCABjSggf4xwBhWHwo/D9xwJEevdzc8O8t7hAPCVYEuiPUiFfuX3K/k9/Vp47bGZfLEW8Mp4b/DS4JFrUgwNKCBgTdgAWvA3sLdc77lAsYdnnPDieHocFK4IDCgJPvcHbYPvQ4LWGM3/s0cgmTk+9W0JCbljh0Dt+8ZDA1oQAMa0IAGNKCB/jUwT07txeFjgRZYpaBVcjoKW+Tznw97hj8H1pH7lZy/5IFlXeOU/RrXlceUY5Si1q+y705hqWBoQAMaGDQDFrAG6B17R86VixCFqrVHOG8ulBuFPwX2Xy/0Mixgjc02rapIMmhuXpKPMuUOHUnNNWH+YGhAAxrQgAY0oAENDJaBVXK67w2HBwZ+J88j92NKYevacEjYLfw+lNb3bG9WrGpcV/ZjfX1b4/xj2U73Q3p2bBb4DmFoQAMa6GcDFrD6+d1pOLcjszwttFu4WCz70gXtoNDLsIA197b5hZuZge6BswIJSOGBap7EZt1gaEADGtCABjSgAQ0MvoFF8xI2D3sFbkDT0r5ebJqd5XMCLfQPDRS4uKE5p0JVySHLser7N5tnHce9PHwhPDcYGtCABvrJgAWsfno35nAuV2T7EXPYp3HzH7Pi140ru7xsAWvuBR+Yh5I8/KaaMg9PVFMKW/8TDA1oQAMa0IAGNKCBiWuAcbS2Cz8O1wVywHoh6p4snxd+EhhO5MbAPuSN9f3KPNNC2adsqy+XferbuInKd4r3BW62GhrQgAbGy4AFrPEyPxfPe0oeQ9exyW0+trTA2qfN/Tu1mwWsuTO5VR5GAnFhNWW+QAGL7oNnBBOHSDA0oAENaEADGtDAEBmge99q4d2BrodXhcaWWrSemhEurbbfnmnpmsi0FKdKflmWy7SsZ1rWNU7LPvzKIjnrh8LzgqEBDWigFwYsYPXCcoeeY4cch4vICWHdEY7JBW7DwIDuFD7WD70MC1ijt71iHkKB6q5QEoMyJRnhfeTO2hLB0IAGNKABDWhAAxrQAAbIDV8XvhpODeSL5JT1whPDTzwYaEnFPDkm3RJvCncEcs1S6Ko/rnGexzWuK8ts4xiM13V6+FR4WVgwGBrQgAY6ZWBCFbAmdcpKnx7nqJwXvxjylbBlmBVuCTQhZqyrKWHxsGJYNlD02DWcE4z+NbBoTo07ZRQeF2k4TZqCM+YZd9jeEHivDQ1oQAMa0IAGNKABDWCA3PC0CpZLkFO+JGwQ1gqrhOXC5DBfYDtQgCIHZUrhi+8UFLcoahGMg0WRjMcQ7EfwmHqwDOS1r6nI5F/7U+CiiHZDODcwXMblgVZi5ZiZNTSgAQ1oYKIZWDkv6KeBAhZ/8OtQ6Lg+7BuWD+MRH8yTck4Lj8eTD9hzLpTz5X2k2EjSwMW98Fg1z3qSD0MDGtCABjSgAQ1oQANjNUALBn71eofw9cAYWn8J94WSf9a/X5Cb0rqKG6u04ro70HKL/Uv+yv4lhy3z9WO0mi+PoWUYhbNrwy/DJ8OG4dnB0IAGNFAMTKgWWOVFDdOUVlcUqlYN3EXph7CA1d67QGs5Lv4kBFy0ywWcaVkmUdgkGBrQgAY0oAENaEADGuiVAb5jbB0OCKeHaYECEzlqKUaV3LUslynryW+5QQvMt9q3PGakaf143Ky/MZwWKL5tE14YHCM2EgwNDIGBCVXAmuhdCJt9HmnOC/zRflbgIsEfdqO/DayZ0/tDKK3USrNszpqLNMu8j5sFfmHG0IAGNKABDWhAAxrQQK8M0JXw+IrG5+Q7x4phhWpKa67VwvKB7oYUvxYI9fw2i08GhSqiTJmn62GJMs/2Ms+0zNN7geeF14YS9eOVdUzJq4GWZXSLpAjHmLPcRGZ6WwVdMYHWZXdWU75XGRrQgAa6ZmBYClj0Y/9Y2Cos2cTm9Kz7ffh84A+z0V8Gds7pcDeLu1GNd4u4+LKOboWbhGnB0IAGNKABDWhAAxrQQL8YYCyrqypGOidaSixasUymK4blAvN8h6HYxXZ6kVD0ojBGgYrvdKVgRfGJKMtlWi9w1bc/uXPtH4poMDksHJ4TGA+sHvXiV/345Or0hqCrJIWuGYGultdV0xsyvTcYGtCABubKQPmDM1cPHpAH7Z7z/GJ1rjdlSqGDP5xcSPjjT7e0FQIXBu4ifDwcFXoZdCE8JHARohWR8U8DS2dycnhp4GLcWLzKqifj2Py7Y+DniQ0NaEADGtCABjSgAQ0MkwG+01Dg4serKDgxzxRY99xAXs36KYHWXnwPHI/vgvXiV07hyZZl5PmPhNvD+eFX1fSWTA0NaGBsBiiMU1heLwx8T6WJ3gLrHXmTKF5RBNktXByaBX+8NwzfDEeGmeHcYIyPAQp5h4a3hVK0KtP6GVGE3CH8ur7SeQ1oQAMa0IAGNKABDQyRgfvzWoEWTu0GLaxozUVB69kVFLto8VVafVEAK/uQn7MfxS++EJfujqMthDUWzVgmz+f4tPSCdwWisdj1z7X/Xk+LL7o50trr+nBZBQPn16F7JzweDA1oYIANTPQC1tZ5b6YHplQdWwV/HM8Om4UbA615LGBFQo9j/TzfXmGD0Hhxq58KF6v9wh6BuzWGBjSgAQ1oQAMa0IAGNNC+AYo5DJ3SieFTKGjRlXHB2pSCFAWx54WpYbmwbKAVGEUxuieyf+my2Cz3b7YuD/nX9wQKXxTiKMKtHrYIBN/tmj22XhBjnpZfTwS+T9wbaAE2I9wcGNeL3jlwdwXFMr5TFiyIRYahgV4amOgFrDUjk2ZyIxWv6r7pr3154A+s0X0DXLh2qHh1plyA6hec+kWGi9BD4YCwdzWfiaEBDWhAAxrQgAY0oAENjKOBx/LcMLvD50BR7JVh3cD3OlpnLRPoMklLML7L1ntplKJVmWbzU6K+nnkeyzE4FkW1lQPdrNqN+neVdh5T3595CmiliMb3VQpptBSjmEbhjELaLWFWuKmaUmTjOxGPMzQwdAb4DzuRg+ak6wQKI+1UyBfLfvxxPDgYnTGwbA7DT/VuHN4anh+4SNQvIFn81zLr+YNetvOH/JzwuXBRMDSgAQ1oQAMa0IAGNKCBiW/g4bzEMyvaebUUvFYMU8MqFStkWlp90QWSlmHzB74fUsCC8r0js0+Lud32tANlReOxaH1GcD7c2Cee+8/JHP/l+9Joo/4Y5oGeLUBLNIqQOKdARjGSQhoFMwpoMwJFNJZp9ME+7M9jy7EoqjFvaKBrBiZ6AevHMXdEOCZ8NVwQmgV/TOi2tm/gD9/xYSyxeB78tcAfxnZi1fnmm+8Z73//+6dsuumm4/qe7LLLLmvNmjXr6//4xz+m5sQp6I31fBr/UDfzUf7oMeWP4ZULL7zwsZtvvvnR2267Lf3XS3C3xdCABjSgAQ1oQAMa0IAGNNDMwK1ZCec22zjaddOmTZs3PHPmzJnz33PPPc966KGHFn744YcXfuSRRxb++9//vlBY+PHHH1/kb3/726L5/rTIE088sWjWLZHneXI5U4pmFKe4gc93Q75b8f2oXjib0/elZtubrcthR4xmjxnrd71mT2gR65+FvEfnmWeeK1ZcccXPfOMb37i0maherLv66qsnf/nLX35GPqO9eLquP0c3PrBdP+lRPMFR2Ze+118JWwaqx7eEewLNM6cEik0rBloKUXneNZwTOhHN/kg0O+5D+XA/Y+rUqU9Mnjy53cc0O86Y102aNOkf8847bz7ff+tUBb0Upzg3jvlo4KJyyYILLnjhEksscVGKZlestNJKbGsW4+qj2Qm5TgMa0IAGNKABDWhAAxqY+AZe8IIX/CPw/QX4/jgucdlll0266aabnvnAAw9MSgFt0uzZsydnfnIKavOHKQ8++OBiFM4oouV73JRMKZwtlPkFs555Wp4x5hjQ4uuZNagJUFyjRRiU4lqZjvR9bKRtOVTLmNvHtTxgP27I9+onT2s8v+M/85nPTKlhKHT340dgrs9p5Tzyp4ECVimolCktfq4PtL5aPoxHvDpPyvnwh8TQgAY0oAENaEADGtCABjSgAQ1oQANjNUCNgVoDNYeBj4neAqu8QdMzs121QKurMvAfvy5xf7XeiQY0oAENaEADGtCABjSgAQ1oQAMa0EAfGhiWAlZdPU0/x635Z/1EnNeABjSgAQ1oQAMa0IAGNKABDWhAAxqYs4F/dsqc837uoQENaEADGtCABjSgAQ1oQAMa0IAGNKCBcTFgAeup2nfK4mXhI09d7ZIGNKABDWhAAxrQgAY0oAENaEADGtDAeBmwgPVU80tncc3A1NCABjSgAQ1oQAMa0IAGNKABDWhAAxroAwPDOAbWSNq/l43HhjtG2sltGtCABjSgAQ1oQAMa0IAGNKABDWhAA70zYAHrqa4pXI1n8YqfuOz3mCcn6Oem398lz08DGtCABjSgAQ1oQAMa0MBTDTz+1EWXhsDAINQY2n4bhrEQsVjsLBLmDw+G2eGhMJ5R/pA8MJ4n4XNrQAMa0IAGNKABDWhAAxrQgAY0MOEMPDYRXhGtaYYh1sqL/FjYKizZ5AVPz7rfh8+Hu5ps78Wql+dJJvfiicb4HGfk8QeFq8Z4HB+ugb2i4IRwvio0MEYDn8vj/xxOGeNxfLgGdo6C28IxqtDAGA3smMfPFw4b43F8uAbeGgXLh2+rQgNjNPC6PJ7vnO8e43F8+OAZoHhFrmwMgIHdc47/qLgx03PDieHocFK4IJCsss/dYftgtDbwcDa9sfVmt2igbQMzs+d72t7bHTXQ2sCF2fTp1pvdooG2DZAf7NP23u6ogdYGDs2mH7fe7BYNtG3ga9nz5Lb3dkcNtDbwyWy6uPVmt2ig/w1M9C6E78hb8MXAH/3dQqv/sLRE2zB8MxwZZgYKXYYGNKABDWhAAxrQgAY0oAENaEADGtDAOBuYd5yfv9tPv3WegO6BTFsVrzgHWl+dHTYLjENFs29DAxrQgAY0oAENaEADGtCABjSgAQ1ooA8MTPQC1ppxfF54tE3X92W/y8Nybe7vbhrQgAY0oAENaEADGtCABjSgAQ1oQANdNjDRC1iMbbVOaHdwdH6hkKLXtcHQgAY0oAENaEADGtCABjSgAQ1oQAMa6AMDE72AxeCZLwj8mtC6I/guY2AxVtZC4fgR9nWTBjSgAQ1oQAMa0IAGNKABDWhAAxrQQA8NTPRB3I+Ky6XCV8KWYVa4JdwT/i9MCYuHFcOy4YmwazgnGBrQgAY0oAENaEADGtCABjSgAQ1oQAN9YGCiF7AYnH3/8Kvw1bBRaGyJ9XDW3Rr4BcJvhZuDoQENaEADGtCABjSgAQ1oQAMa0IAGNNAnBiZ6Aato5pcIt6sWaHW1SFgg3BnuD4YGNKABDWhAAxrQgAY0oAENaEADGtBAnxoYlgJWXT9dB8HQgAY0oAENaEADGtCABjSgAQ1oQAMaGAADw1jAGoC3pa9P8fGc3WN9fYae3KAY8LM0KO9U/58nf5P8u9T/79MgnCGfI/42GRoYqwE+S+bZY7Xo4zHgNc7PQacMmHt3yqTH0YAGBsbAyjnTif7rlQPzZgz4ifLjCZMH/DV4+v1hYLmcxoL9cSqexYAb4Idfnj3gr8HT7w8Di+U0+KEgQwNjNcDfpKXHehAfr4EYYAgdciZDAxrQgAY0oAENaEADGtCABjSgAQ1oQAMa0IAGNKABDWhAAxrQgAY0oAENaEADGtCABjSgAQ1oQAMa0IAGNKABDWhAAxrQgAY0oAENaEADGtCABjSgAQ1oQAMa0IAGNKABDWhAAxrQgAY0oAENaEADGtCABjSgAQ1oQAMa0IAGNKABDWhAAxrQgAY0oAENaEADGtCABjSgAQ1oQAMa0IAGNKABDWhAAxrQgAY0oAENaEADGtCABjSgAQ1oQAMa0IAGNKABDWhAAxrQgAY0oAENaEADGtCABjSgAQ1oQAMa0IAGNKABDWhAAxrQgAY0oAENaEADGtCABjSgAQ1oQAMa0IAGNKABDWhAAxrQgAY0oAENaEADGtCABjSgAQ1oQAMa0IAGNKABDWhAAxrQgAY0oAENaEADGtCABjSgAQ1oQAMa0IAGNKABDWhAAxrQgAY0oAENaEADGtCABjSgAQ1oQAMa0IAGNKABDWhAAxrQgAY0oAENaEADGtCABjSgAQ1oYOIamG/ivjRfWYcNLJTjrR3WD4uG/wuPBkMDYzHw3Dx403Bn+OtYDuRjh9bAMnnlG4eVwwPhoWBoYLQGFsgD1gnrhWeFu8PfgqGBdgxMzU5vDleMsDM596vDK8MT4d5gaKDRwNSsmNNnyZy80ZrLrQxsnQ387bmr1Q619ebkNRnOakADg21gx5z+HeEfNShgfTwYGphbA1xQzw18rkjqDQ2MxsCU7HxsqP9dogj6udEcxH01EAOvDTND/bM0o1qfiaGBEQ3wt+jqQAG9VayaDdeE+mfsqiwv3+oBrh9KA+18lszJh/KjMVcv+oN5FH9zdm3j0ebkbUhyFw1oYDAMvD6n+fdAMs8XwxeHj4drA38U3x0MDcyNgd3zoJLMW8CaG4PD/ZgLq8/PXpm+JLw38IWQz9S2wdBAOwZWyE6zw33hM2GN8OlwT7g/TA2GBloZWCwbTg783WlVwJon284O3Ph7V1gl8MXy4XBjWDgYGmjns2RO7uekXQNvyY6PBf42tVPAMidv16z7aUADfW/gjJwhf/w2azjTV1Tr+cJoaGC0BuhC8Xig6yCfLwtYkWC0bYDuFXxuDmp4xIuq9Wc2rHdRA60MfCob+Cx9qWGHPav1n29Y76IGioG3ZubWwOfn0dCqgLVTtc+HM61HaR3RuL6+j/PDYaDdz9IZ0cHnzZx8OD4Xc/Mql8iDjgh8Th6ppnMqYJmTR5ShAQ1MDAPz5mXQyoEiFU1LG+ParGAch2bbGvd1WQPFAHebrw9/CPsELrKvCoYG2jVAEk+LGcYtagy6g1FgNzTQjoGvZSf+Bm3VsDOfI9Z/t2G9ixrAwBsDnw/GSuOzc3FoVcC6INv4Isn4ofWYkgW6Pf+pvtL5oTPQ7mfJnHzoPhpz9YL5e8Pfpp+HHav5kQpY5uSRZGhAA8NhgC+O94cbhuPl+io7aOCQHIuuFCuF8uXRAlYHBQ/Bofj8nFC9TrrnrBHWDJOqdU400K6B12VHkv1jGx7w42o9A+AaGmg0QFeuL4fFqw2tCliTs53WWZdX+zVOLskKuvmwnzGcBtr9LI1kx5x8JDvDte3AvFx+HInYKnB9G6mAZU6OKUMDGhgKA3vkVfJH8etD8Wp9kZ0yQJ98Pjfvqw5oAatTZofnOFPyUvkMfSfQ7eKuapl1jFv0H8HQQLsGaEH8xUBr4isDf5MoRvw9fDNYWIgEY44GWhWwlsoj+dt0RosjnFZtf26L7a4ePgOtPksjmdgjG/mcmZOPZGn4tm1VfS5aFbDMyYfvM+Er1sDQGtgmr5yfF/9LWHBoLfjCR2tgmTyAYsPxtQdawKrJcLYtAy/MXiTqlwW65VBkoJDFWEYUsNi2eTA00K6B52dHWsjw2SnQunjVYGigHQOtig4M2M5n6hctDsJ6tvtZayFoCFe3+iy1UmFO3sqM60cqYJmT+/kYWAP0pzY0MBoD783ODA5IIYLKPeM3GBpox8Ch2YlWDR9sZ2f30UALA1Oq9Wtm+qHAncXjwr6BRJ444J8T/9XAHA3wmbkiPBReGZ5VTW/P9NJQPlOZNTQwagMU2YlW+TYtAAluChoaGK2B9+YB5uSjteb+GDAn93OgAQ0MhYHd8yq5Uzg9rDYUr9gX2SkDH8uB+Oy8MyxUg9YzrN+kWsd4RoYGRjKwQjbymbmzyU58Sbyt2r5ok+2u0kCjgfOygoG4y1hGZfsimeEX5mjpZ2hgTgZatZqZlAf+PZzR4gBnZj1/z5Zosd3Vw2eg1Wep0YQ5eaMRlxsNbJUV/H1p7EJoTt5oymUNaGDCGaCo8K3AH0F+lXDpYGhgNAZOz858fubE6qM5qPsOpQG+ENJagfGKmsVRWcnnzC45zey4rm5gySzwWaIFX7MoA7lTNDU0MJKBkYoOtOZrVQil6yqt/0pLrJGew23DYWCkzxIGzMmH43PQiVfZqoBlTt4Jux5j3AzwRcDQwEgGaNHww/DewNhFO4SHg6GB0RjgC2KzgsP6Wb92YBwQkvz7gqGBkQww2DbjE1HspDVf49+jZbOOzxH7GBoYyQDFK65xS7XY6ZnVeosLLQS5ui0D12SvDcJzAq39SlBAZUw/WgHyWTQ0MCcD5uRzMuT2dgyYk7djyX00oIGBNbBTzpzWDMcGk/iBfRv79sQdxL1v35q+PrGP5Oz4u7Rnw1mumWUKXL9uWO+iBloZuCobHgsvb9hhuSzPDrc0rHdRA80MjNRq5m15AH+vPtPwwP+u1r+9Yb2Lw21gpM+SOflwfzZG++q3ygP429PYhbDVcczJW5lxfV8ZsAVWX70dfXcyjMmwV3VWi2R6TIszfFfWP9him6s1oAENdNrAYTngx8MegVYMFKyWD18JtHD4RDA00I4BiqFnhlPC1wPd5J8fvhC47m0fDA2MxQCt12mFtXd4djgrbBI+F2gJ8ctgaGBOBszJ52TI7RrQgAY0MPQG3hIDVO7nxGJDb0oBc2vAuz1za87H8UXwyPBo4G/U4+GcQJdUQwOjMbBhdr4i1K9112X59aM5iPsOtYGRWs0ghu6DJ4W/h/I5+13m+Sl7QwN1A60+S+bkdUvOt2PAFljtWHIfDWhAAxrQgAY00EMDjFO0ZqCgZWhgLAZo4bBOoFWfoYFuGODvFJ8xC1fdsOsxNaABDWhAAxrQgAY0oAENaEADGtCABjSgAQ1oQAMa0IAGNKABDWhAAxrQgAY0oAENaEADGtCABjSgAQ1oQAMa0IAGNKABDWhAAxrQgAY0oAENaEADGtCABjSgAQ1oQAMa0IAGNKABDWhAAxrQgAY0oAENaEADGtCABjSgAQ1oQAMa0IAGNKABDWhAAxrQgAY0oAENaEADGtCABjSgAQ1oQAMa0IAGNKABDWhAAxrQgAY0oAENaEADGtCABjSgAQ1oQAMa0IAGNKABDWhAAxrQgAY0oAENaEADGtCABjSgAQ1oQAMa0IAGNKABDWhAAxrQgAY0oAENaEADGtCABjSgAQ1oQAMa0IAGNKABDWhAAxrQgAY0oAENaEADGtCABjSgAQ1oQAMa0IAGNKABDWhAAxrQgAY0oAENaEADGtCABjSgAQ1oQAMa0IAGNKABDWhAAxrQgAY0oAENaEADGtCABjSgAQ1oQAMa0IAGNKABDWhAAxrQgAY0oAENaEADGtCABjSgAQ1oQAMa0IAGNKABDWhAAxrQgAY0oAENaEADGtCABjSgAQ1oQAMa0IAGNKABDWhAAxrQgAY0oAENaEADGtCABjSgAQ1oQAMa0IAGNKABDWhAAxrQgAY0oAENaEADGtCABjSgAQ1oQAMa0IAGNKABDWhAAxrQgAY0oAENaEADGtCABjSgAQ1oQAMa0IAGNKABDWhAAxrQgAY0oAENaEADGtCABjSgAQ1oQAMa0IAGNKABDWhAAxrQgAY0oAENaEADGtCABjSgAQ1oQAMa0IAGNKABDWhAAxrQgAY0oAENaEADGtCABjSgAQ1oQAMa0IAGNKABDWhAAxrQgAY0oAENaEADGtCABjSgAQ1oQAMa0IAGNKABDWhAAxrQgAY0oAENaEADGtCABjSgAQ1oQAMa0IAGNKABDWhAAxrQgAY0oAENaEADGtCABjSgAQ1oQAMa0IAGNKABDWhAAxrQgAY0oAENaEADGtCABjSgAQ1oQAMa0IAGNKABDWhAAxrQgAY0oAENaEADGtCABjSgAQ1oQAMa0IAGNKABDWhAAxrQgAY0oAENaEADGtCABjSgAQ1oQAMa0IAGumZgnq4d2QNrQAMa0IAGNKCBiWHgVXkZy4YTw+M9fkkr5/le2uQ5/5F1j4R7w+XVfCb/CnK8raulv2Z68r+2NJ/ZMqsnhZvDRc13ecbLsn6lMC3wnIYGNKABDWhAAxrQgAY0oAENaEADGtBAnxg4PudBwWjRLp/Pi3P8Ixue47+yzHOPBAWqdzU8br7aY/6e+eUbttcXKZCV4zc+f32/a6v9rqmvdF4DGtCABjSgAQ30wgB32gwNaEADGtCABjSggdYGLs2mBcMTrXfpyJbjcpQFWhzpB1l/dMM2Cmprh53D4dW2I6ppmVCYojXW28P+ZWXDdNuG5WaL62Xl6oHWWS8Pm4Qzg6EBDWhAAxrQgAY0oAENaEADGtCABjQwRAauz2ulC189Sgusz9ZXNsx/NMsUqk6qrS8tsK7KOroZnlfb1jg7PSvYj2O0aoH1w2z7W1gr0KLrZ8HQgAY0oAENaEADPTMwb8+eySfSgAY0oAENaEADg2ngNTnt94RnVqf/nGp5nWq5PnlltW2x2kpaQL0xfDF8M3wwrBZKTMkMx2e6cDW/Uabtxk+yI0WlDZo84LGso2XXuqFZN0LWrxR+GlrFs7Jhm/DncEk4J7w1LBMMDWhAAxrQgAY0oAENaEADGtCABjSggT4w0DgG1qtyTrRW+nqTc/tWte2l1bbJmdIyiv3pgnhHNf9opnT9I1YNFKDYB5gvBaV2WmBRNONxtOAqUVpgUXDaLLB9l7KxNt0/87TQolsg+xwZGuM/s4Jtn642fKRa3q1adqIBDWhAAxrQgAa6bsAWWF1X7BNoQAMa0IAGNDDEBrbLa39D2CfQKmvpsEa4J7COcawoPJGT3RBuqeZ53EhBgWrFsHU4rtrxoGraODk9K+4O72jYwHPSsurYQEGtVbwvG+g+eHi1A2NxPRI+GMwlKylONKABDWhAAxrorgGTju769ega0IAGNKABDQy3AQY+J2iF9cCTc894xtWZvjd8Kswf2omvZSdaQRVozTUzULyiKLZXOCA0C/Y9JqwbVqjtsGHmnxtKa6/apn/Ncv4bhN+F26u1szM9PlBAe1O1zokGNKABDWhAAxroqgELWF3V68E1oAENaEADGhhyA6dVr/+ETA8MWwbGuTolfDfQpbCduDQ70b3vqEAxrLSY2i/zFKHozkcrqVbxs2xgLK6313bYNvMUpc6srWucpfsg8aMn//33P2V5p3+vck4DGtCABjSgAQ1oQAMa0IAGNKABDWhgvAzQ2oiWT4tWJzCaMbB4yPvD7FBaT9H97sRAi6h60JXw5vqKzLcaA2vlbJsZKFq9JzTGfFnB8zEGFsFNS4pV57OQmBTuCozZRbwksH99DCz2ubVaT9fGG2twnuzP808NhgY0oAENaEADGuiqAVtgdVWvB9eABjSgAQ1oYAIboEVTY/CLfY3xw6xYJtD66juBYtCbw9lhkzA3MT0P2iI8Hg4J64WRgoHhfxFKN8LXZf45YaTug2/I9mXDVeHccEGN8zJ/USCX/FAwNKABDWhAAxrQgAY0oAENaEADGtCABsbRQGMLrJflXGh99O0m53RWte2l1bZVMm02TtRnq/0OrvZjMpoWWOVhu2aGc6EoNqWszLSxBRabNgzs+8lAUW1GKNGsBRbja7H/JmWnhimvje10g3xmwzYXNaABDWhAAxrQQEcNcNfM0IAGNKABDWhAAxpo3wC/6EdsFCgUlaAItE61UFpn7ZPl3wRaXNXj4mrh4dpKWlMtXFtuZ3b/7ERrqOXC1+fwgD9m+6zwzrB1ODq0iqWygXO+KVCUaxb8aiLb2PdtzXZwnQY0oAENaEADGuiUAQtYnTLpcTSgAQ1oQAMaGBYDtHZiLClaWR0T3hW+GPilPgpE9aCVFt33aGn11UC3vM+F74VHw1GhxJ2ZWSwcFt5XVs5hyrE/GCh+fTjwi4GtgtZSvwh0I1w8jNR98N3ZPjkcGXhcq6AlF+Fg7v/04L8a0IAGNKABDWhAAxrQgAY0oAENaGBcDDR2IeQkVgxnB4o7cH/YPVB4Yrl0Iczsky2eZmZa9qXoxLhSFJLqsXEW6I7HfldWG/6rWv5stdxq8qVqv2synT8060LIY8sA9Dx/PRq7ELKd83hRfacm8wtlHa+9nX2bPNxVGtCABjSgAQ1oQAMa0IAGNKABDWhAA50wcEIOQoFmkSYHo8XUGqHelbDJbk8Odv68bFg71Meqarbv0lm5QLMNrtOABjSgAQ1oQAMa0IAGNKABDWhAAxrQQDMDtLR6IpRxrZrt4zoNaEADGtCABjSggS4amNTFY3toDWhAAxrQgAY0MMgGXp+Tp8XUKwNd82iFZWhAAxrQgAY0oAENaEADGtCABjSgAQ1ooG8M/DlnQtHqwcDg64YGNKABDWhAAxrQgAY0oAENaEADGtCABvrKwBI5GwYxZ1B0QwMa0IAGNKABDWhAAxrQgAY0oAENaEADGtCABjSgAQ1oQAMa0IAGNKABDWhAAxrQgAY0oAENaEADGtCABjSgAQ1oQAMa0IAGNKABDWhAAxrQgAY0oAENaEADGtCABjSgAQ1oQAMa0IAGNKABDWhAAxrQgAY0oAENaEADGtCABjSgAQ1oQAMa0IAGNKABDWhAAxrQgAY0oAENaEADGtCABjSgAQ1oQAMa0IAGNKABDWhAAxrQgAY0oAENaEADGtCABjSgAQ1oQAMa0IAGNKABDWhAAxrQgAY0oAENaEADGtCABjSgAQ1oQAMa0IAGNKABDWhAAxrQgAY0oAENaEADGtCABjSgAQ1oQAMa0IAGNKABDWhAAxrQgAY0oAENaEADGtCABjSgAQ1oQAMa0IAGNKABDWhAAxrQgAY0oAENaEADGtCABjSgAQ1oQAMa0IAGNKABDWhAAxrQgAY0oAENaEADGtCABjSgAQ1oQAMa0IAGNKABDWhAAxrQgAY0oAENaEADGtCABjSgAQ1oQAMa0IAGNKABDWhAAxrQgAY0oAENaEADGtCABjSgAQ1oQAMa0IAGNKABDWhAAxrQgAY0oAENaEADGtCABjSgAQ1oQAMa0IAGNKABDWhAAxrQgAY0oAENaEADGtCABjSgAQ1oQAMa0IAGNKABDWhAAxrQgAY0oAENaEADGtCABjSgAQ1oQAMa0IAGNKABDWhAAxrQgAY0oAENaEADGtCABjSgAQ1oQAMa0IAGNKABDWhAAxrQgAY0oAENaEADGtCABjSgAQ1oQAMa0IAGNKABDWhAAxrQgAY0oAENaEADGtCABjSgAQ1oQAMa0IAGNKABDWhAAxrQgAY0oAENaEADGtCABjSgAQ1oQAMa0IAGNKABDWhAAxrQgAY6auD/Az5Dv4uQAYLvAAAAAElFTkSuQmCC",
+      "text/plain": [
+       "Plot with title \"GSE48350\""
+      ]
+     },
+     "metadata": {
+      "image/png": {
+       "height": 240,
+       "width": 600
+      }
+     },
+     "output_type": "display_data"
+    }
+   ],
+   "source": [
+    "myhist(eset_rma, title = \"GSE48350\", xlabel = \"justRMA\")"
+   ]
+  },
+  {
+   "cell_type": "code",
+   "execution_count": 44,
+   "metadata": {
+    "vscode": {
+     "languageId": "r"
+    }
+   },
+   "outputs": [
+    {
+     "data": {
+      "text/html": [
+       "<table class=\"dataframe\">\n",
+       "<caption>A matrix: 54675 x 21 of type dbl</caption>\n",
+       "<thead>\n",
+       "\t<tr><th></th><th scope=col>GSM1176255</th><th scope=col>GSM1176256</th><th scope=col>GSM1176257</th><th scope=col>GSM1176258</th><th scope=col>GSM1176259</th><th scope=col>GSM1176260</th><th scope=col>GSM1176261</th><th scope=col>GSM1176262</th><th scope=col>GSM1176263</th><th scope=col>GSM1176264</th><th scope=col>...</th><th scope=col>GSM1176266</th><th scope=col>GSM1176267</th><th scope=col>GSM1176268</th><th scope=col>GSM1176269</th><th scope=col>GSM1176270</th><th scope=col>GSM1176271</th><th scope=col>GSM1176272</th><th scope=col>GSM1176273</th><th scope=col>GSM1176274</th><th scope=col>GSM1176275</th></tr>\n",
+       "</thead>\n",
+       "<tbody>\n",
+       "\t<tr><th scope=row>1007_s_at</th><td>11.715161</td><td>11.273620</td><td>10.508958</td><td>10.930439</td><td>10.555628</td><td>11.074348</td><td>11.413331</td><td>11.056907</td><td>10.478296</td><td>10.614361</td><td>...</td><td>10.950073</td><td>10.501268</td><td>11.136377</td><td>10.467003</td><td>11.718392</td><td>10.790970</td><td>11.319858</td><td>10.776361</td><td>10.334913</td><td>10.416789</td></tr>\n",
+       "\t<tr><th scope=row>1053_at</th><td> 6.318927</td><td> 6.332438</td><td> 6.351773</td><td> 6.248771</td><td> 6.573906</td><td> 5.982559</td><td> 5.999747</td><td> 6.474815</td><td> 6.540567</td><td> 6.742131</td><td>...</td><td> 6.535896</td><td> 6.212934</td><td> 6.245565</td><td> 6.408864</td><td> 6.530506</td><td> 6.411202</td><td> 6.470390</td><td> 6.419380</td><td> 6.574940</td><td> 6.668882</td></tr>\n",
+       "\t<tr><th scope=row>117_at</th><td> 6.237154</td><td> 5.873304</td><td> 5.540912</td><td> 5.938872</td><td> 5.695414</td><td> 5.609305</td><td> 6.239065</td><td> 6.285355</td><td> 5.909607</td><td> 5.895048</td><td>...</td><td> 5.935832</td><td> 6.518781</td><td> 6.049684</td><td> 5.951591</td><td> 6.061524</td><td> 5.983000</td><td> 5.619935</td><td> 6.250090</td><td> 6.154772</td><td> 6.296866</td></tr>\n",
+       "\t<tr><th scope=row>121_at</th><td> 8.037731</td><td> 8.055693</td><td> 7.657945</td><td> 8.324510</td><td> 7.929910</td><td> 8.091168</td><td> 8.081502</td><td> 7.855752</td><td> 8.242146</td><td> 8.040336</td><td>...</td><td> 8.138732</td><td> 8.093533</td><td> 8.089327</td><td> 8.066675</td><td> 8.164637</td><td> 8.266291</td><td> 7.572720</td><td> 8.200812</td><td> 8.018520</td><td> 8.244127</td></tr>\n",
+       "\t<tr><th scope=row>1255_g_at</th><td> 3.819819</td><td> 3.945889</td><td> 3.868008</td><td> 3.988359</td><td> 3.737851</td><td> 3.796640</td><td> 3.732672</td><td> 3.683059</td><td> 4.021211</td><td> 3.950353</td><td>...</td><td> 3.836916</td><td> 3.875336</td><td> 4.081044</td><td> 3.881884</td><td> 3.741611</td><td> 3.945731</td><td> 3.750488</td><td> 3.793629</td><td> 3.838652</td><td> 3.918923</td></tr>\n",
+       "\t<tr><th scope=row>1294_at</th><td> 7.369075</td><td> 7.193545</td><td> 6.992804</td><td> 6.923932</td><td> 6.750610</td><td> 7.197197</td><td> 7.320394</td><td> 6.973735</td><td> 6.851890</td><td> 6.832457</td><td>...</td><td> 6.800074</td><td> 6.987080</td><td> 7.432148</td><td> 6.872634</td><td> 7.167685</td><td> 6.857970</td><td> 7.029640</td><td> 6.960049</td><td> 6.940760</td><td> 6.994505</td></tr>\n",
+       "\t<tr><th scope=row>1316_at</th><td> 6.601119</td><td> 6.586982</td><td> 6.825374</td><td> 7.203972</td><td> 6.899376</td><td> 7.134999</td><td> 6.668674</td><td> 6.756066</td><td> 6.874190</td><td> 6.810718</td><td>...</td><td> 6.702531</td><td> 7.339148</td><td> 7.234046</td><td> 7.131753</td><td> 6.387715</td><td> 6.816890</td><td> 6.633612</td><td> 6.853167</td><td> 6.354731</td><td> 6.596720</td></tr>\n",
+       "\t<tr><th scope=row>1320_at</th><td> 6.150733</td><td> 5.606746</td><td> 5.091461</td><td> 5.504215</td><td> 5.424244</td><td> 5.534967</td><td> 5.841806</td><td> 5.628757</td><td> 5.528641</td><td> 5.647755</td><td>...</td><td> 5.576175</td><td> 5.529603</td><td> 5.568394</td><td> 5.395282</td><td> 5.657006</td><td> 5.716537</td><td> 5.552141</td><td> 5.551413</td><td> 5.532686</td><td> 5.617723</td></tr>\n",
+       "\t<tr><th scope=row>1405_i_at</th><td> 3.782331</td><td> 3.728325</td><td> 3.571723</td><td> 3.184415</td><td> 3.557341</td><td> 3.825010</td><td> 3.615014</td><td> 3.650234</td><td> 3.274420</td><td> 3.284271</td><td>...</td><td> 3.362552</td><td> 3.562881</td><td> 3.639149</td><td> 3.447854</td><td> 3.300229</td><td> 3.309696</td><td> 3.153574</td><td> 3.354396</td><td> 3.703154</td><td> 3.638859</td></tr>\n",
+       "\t<tr><th scope=row>1431_at</th><td> 4.847049</td><td> 5.469413</td><td> 5.798242</td><td> 5.151788</td><td> 5.640904</td><td> 5.255664</td><td> 4.704552</td><td> 4.989192</td><td> 4.596708</td><td> 5.392479</td><td>...</td><td> 5.591802</td><td> 4.948590</td><td> 4.810177</td><td> 4.854039</td><td> 5.290745</td><td> 5.181874</td><td> 5.453751</td><td> 5.170753</td><td> 5.456397</td><td> 5.505757</td></tr>\n",
+       "\t<tr><th scope=row>1438_at</th><td> 6.774806</td><td> 6.686807</td><td> 6.604931</td><td> 6.587042</td><td> 6.511757</td><td> 6.298790</td><td> 6.702173</td><td> 6.546596</td><td> 6.619511</td><td> 6.555939</td><td>...</td><td> 6.453791</td><td> 6.455532</td><td> 6.515195</td><td> 6.504984</td><td> 6.577480</td><td> 6.584722</td><td> 6.383714</td><td> 6.379987</td><td> 6.971332</td><td> 6.868749</td></tr>\n",
+       "\t<tr><th scope=row>1487_at</th><td> 7.706115</td><td> 7.828210</td><td> 7.819315</td><td> 7.912187</td><td> 8.081897</td><td> 8.285492</td><td> 8.268455</td><td> 7.636757</td><td> 7.923816</td><td> 7.951651</td><td>...</td><td> 7.791367</td><td> 8.442272</td><td> 8.215463</td><td> 8.110887</td><td> 7.640591</td><td> 7.832205</td><td> 7.817042</td><td> 7.690468</td><td> 7.786445</td><td> 8.068235</td></tr>\n",
+       "\t<tr><th scope=row>1494_f_at</th><td> 6.390373</td><td> 6.577887</td><td> 6.288943</td><td> 6.478263</td><td> 6.585678</td><td> 6.513600</td><td> 6.715245</td><td> 6.366885</td><td> 6.504828</td><td> 6.413843</td><td>...</td><td> 6.449829</td><td> 6.475083</td><td> 6.629924</td><td> 6.417927</td><td> 6.636063</td><td> 6.393027</td><td> 6.294682</td><td> 6.535359</td><td> 6.417300</td><td> 6.543502</td></tr>\n",
+       "\t<tr><th scope=row>1552256_a_at</th><td> 9.362331</td><td> 8.718513</td><td> 8.591590</td><td> 8.592559</td><td> 8.329391</td><td> 9.397464</td><td> 8.829132</td><td> 8.447496</td><td> 8.271936</td><td> 8.543581</td><td>...</td><td> 8.601963</td><td> 8.949789</td><td> 9.048324</td><td> 8.476308</td><td> 8.809367</td><td> 8.870874</td><td> 8.949219</td><td> 8.449392</td><td> 8.929093</td><td> 8.435116</td></tr>\n",
+       "\t<tr><th scope=row>1552257_a_at</th><td> 8.697499</td><td> 8.414870</td><td> 8.847506</td><td> 8.196645</td><td> 8.568110</td><td> 8.601528</td><td> 8.490217</td><td> 8.612535</td><td> 8.501805</td><td> 8.624339</td><td>...</td><td> 8.162377</td><td> 8.538727</td><td> 8.593224</td><td> 8.511024</td><td> 7.955478</td><td> 8.522465</td><td> 8.347364</td><td> 8.355304</td><td> 8.590359</td><td> 8.498711</td></tr>\n",
+       "\t<tr><th scope=row>1552258_at</th><td> 4.313353</td><td> 4.327252</td><td> 4.398854</td><td> 4.482609</td><td> 4.495425</td><td> 4.455037</td><td> 4.549402</td><td> 4.381214</td><td> 4.350495</td><td> 4.604430</td><td>...</td><td> 4.541372</td><td> 4.535059</td><td> 4.425425</td><td> 4.604328</td><td> 4.614390</td><td> 4.423873</td><td> 4.521535</td><td> 4.382313</td><td> 4.315008</td><td> 4.783441</td></tr>\n",
+       "\t<tr><th scope=row>1552261_at</th><td> 5.797263</td><td> 5.831505</td><td> 6.022026</td><td> 5.894776</td><td> 5.894776</td><td> 5.974027</td><td> 5.901981</td><td> 5.846366</td><td> 5.870412</td><td> 5.761259</td><td>...</td><td> 6.204443</td><td> 5.963474</td><td> 5.610246</td><td> 5.764205</td><td> 5.921528</td><td> 6.104317</td><td> 5.530204</td><td> 6.224809</td><td> 5.894776</td><td> 6.179204</td></tr>\n",
+       "\t<tr><th scope=row>1552263_at</th><td> 5.675409</td><td> 5.146800</td><td> 5.058240</td><td> 5.103935</td><td> 4.654277</td><td> 5.076807</td><td> 5.127467</td><td> 5.137724</td><td> 5.107533</td><td> 4.828835</td><td>...</td><td> 4.581400</td><td> 5.386770</td><td> 5.370842</td><td> 5.429385</td><td> 5.094331</td><td> 5.107947</td><td> 4.666272</td><td> 4.995322</td><td> 5.062052</td><td> 5.133024</td></tr>\n",
+       "\t<tr><th scope=row>1552264_a_at</th><td> 8.324661</td><td> 8.340505</td><td> 6.973281</td><td> 7.972402</td><td> 8.366196</td><td> 7.102428</td><td> 8.088234</td><td> 8.171386</td><td> 8.101570</td><td> 8.879456</td><td>...</td><td> 8.625262</td><td> 7.794456</td><td> 7.624301</td><td> 7.588305</td><td> 8.188726</td><td> 8.267261</td><td> 8.074125</td><td> 8.175175</td><td> 8.552087</td><td> 8.687885</td></tr>\n",
+       "\t<tr><th scope=row>1552266_at</th><td> 3.820735</td><td> 3.955640</td><td> 3.977324</td><td> 3.929908</td><td> 4.143071</td><td> 3.813509</td><td> 3.711120</td><td> 3.840705</td><td> 3.824750</td><td> 4.095737</td><td>...</td><td> 3.766496</td><td> 3.933370</td><td> 3.787524</td><td> 3.996983</td><td> 3.951336</td><td> 3.809711</td><td> 3.992155</td><td> 3.795446</td><td> 4.099049</td><td> 3.809711</td></tr>\n",
+       "\t<tr><th scope=row>1552269_at</th><td> 3.919705</td><td> 3.734443</td><td> 3.657639</td><td> 3.721431</td><td> 3.817650</td><td> 3.569603</td><td> 3.883896</td><td> 3.569189</td><td> 3.764275</td><td> 3.719527</td><td>...</td><td> 3.637961</td><td> 3.814737</td><td> 3.930892</td><td> 3.727087</td><td> 3.617505</td><td> 3.731545</td><td> 3.523330</td><td> 3.764384</td><td> 3.629525</td><td> 3.679676</td></tr>\n",
+       "\t<tr><th scope=row>1552271_at</th><td> 6.110168</td><td> 6.334092</td><td> 6.402241</td><td> 6.145285</td><td> 6.181203</td><td> 6.027597</td><td> 6.004122</td><td> 6.006540</td><td> 6.042873</td><td> 6.332343</td><td>...</td><td> 6.083506</td><td> 6.159245</td><td> 6.314294</td><td> 5.751871</td><td> 6.488354</td><td> 6.029530</td><td> 6.123723</td><td> 6.128323</td><td> 5.874709</td><td> 6.306192</td></tr>\n",
+       "\t<tr><th scope=row>1552272_a_at</th><td> 5.892740</td><td> 6.296684</td><td> 6.399330</td><td> 5.895347</td><td> 6.084049</td><td> 6.377178</td><td> 6.012381</td><td> 5.745249</td><td> 5.875956</td><td> 5.952970</td><td>...</td><td> 5.796880</td><td> 5.916038</td><td> 5.825430</td><td> 5.508971</td><td> 6.328999</td><td> 5.960116</td><td> 5.891691</td><td> 5.753524</td><td> 6.068135</td><td> 6.134740</td></tr>\n",
+       "\t<tr><th scope=row>1552274_at</th><td> 8.750927</td><td> 9.062672</td><td> 8.645766</td><td> 8.964666</td><td> 8.698250</td><td> 8.771156</td><td> 8.359881</td><td> 8.516994</td><td> 7.948101</td><td> 7.776840</td><td>...</td><td> 8.473600</td><td> 8.360724</td><td> 8.519857</td><td> 8.935342</td><td>10.065768</td><td> 8.371472</td><td> 9.948759</td><td> 8.793044</td><td> 8.040068</td><td> 8.482872</td></tr>\n",
+       "\t<tr><th scope=row>1552275_s_at</th><td> 8.785358</td><td> 9.611767</td><td> 8.689897</td><td> 9.176437</td><td> 8.891458</td><td> 8.909551</td><td> 8.382955</td><td> 8.608337</td><td> 7.844931</td><td> 8.422443</td><td>...</td><td> 9.087027</td><td> 8.586831</td><td> 8.331773</td><td> 8.805994</td><td>10.862696</td><td> 8.777363</td><td>11.010732</td><td> 9.174584</td><td> 8.352657</td><td> 8.838630</td></tr>\n",
+       "\t<tr><th scope=row>1552276_a_at</th><td> 6.254009</td><td> 6.044629</td><td> 5.795907</td><td> 6.044629</td><td> 6.056319</td><td> 6.082581</td><td> 6.290385</td><td> 5.991400</td><td> 5.976458</td><td> 6.140199</td><td>...</td><td> 6.323999</td><td> 6.044629</td><td> 6.093164</td><td> 5.635828</td><td> 6.029205</td><td> 6.044629</td><td> 5.758098</td><td> 6.044629</td><td> 6.399440</td><td> 6.308159</td></tr>\n",
+       "\t<tr><th scope=row>1552277_a_at</th><td> 7.594721</td><td> 7.589296</td><td> 7.464715</td><td> 7.308178</td><td> 7.855467</td><td> 7.190385</td><td> 7.108467</td><td> 7.461946</td><td> 7.410497</td><td> 8.125045</td><td>...</td><td> 7.570590</td><td> 7.296906</td><td> 7.116702</td><td> 7.521706</td><td> 7.593237</td><td> 7.411462</td><td> 7.727254</td><td> 7.314019</td><td> 7.815433</td><td> 7.885769</td></tr>\n",
+       "\t<tr><th scope=row>1552278_a_at</th><td> 5.697786</td><td> 5.590875</td><td> 5.621722</td><td> 5.650539</td><td> 5.429471</td><td> 5.310799</td><td> 5.262553</td><td> 5.208677</td><td> 4.979963</td><td> 5.522697</td><td>...</td><td> 5.425018</td><td> 5.179512</td><td> 5.686408</td><td> 5.560351</td><td> 5.345122</td><td> 5.364508</td><td> 5.527396</td><td> 5.714584</td><td> 6.202156</td><td> 5.701994</td></tr>\n",
+       "\t<tr><th scope=row>1552279_a_at</th><td> 8.121292</td><td> 7.895979</td><td> 7.595977</td><td> 7.793645</td><td> 7.673699</td><td> 7.865108</td><td> 7.980892</td><td> 7.567007</td><td> 7.478499</td><td> 7.808391</td><td>...</td><td> 7.761978</td><td> 7.726665</td><td> 7.933197</td><td> 7.640038</td><td> 7.991422</td><td> 7.707419</td><td> 7.628095</td><td> 7.843268</td><td> 7.861883</td><td> 7.649558</td></tr>\n",
+       "\t<tr><th scope=row>1552280_at</th><td> 3.779434</td><td> 3.989585</td><td> 4.023921</td><td> 4.107412</td><td> 4.168360</td><td> 3.959540</td><td> 4.091007</td><td> 3.967799</td><td> 3.938910</td><td> 3.800059</td><td>...</td><td> 3.919995</td><td> 3.937926</td><td> 3.952089</td><td> 3.708196</td><td> 3.896885</td><td> 3.948478</td><td> 3.724873</td><td> 4.013579</td><td> 3.948478</td><td> 4.073936</td></tr>\n",
+       "\t<tr><th scope=row>...</th><td>...</td><td>...</td><td>...</td><td>...</td><td>...</td><td>...</td><td>...</td><td>...</td><td>...</td><td>...</td><td></td><td>...</td><td>...</td><td>...</td><td>...</td><td>...</td><td>...</td><td>...</td><td>...</td><td>...</td><td>...</td></tr>\n",
+       "\t<tr><th scope=row>AFFX-PheX-5_at</th><td> 7.753865</td><td> 5.087429</td><td> 5.177416</td><td> 4.917430</td><td> 4.953915</td><td> 6.386600</td><td> 5.490563</td><td> 6.939214</td><td> 6.105304</td><td> 4.528936</td><td>...</td><td> 4.303124</td><td> 5.653855</td><td> 6.621218</td><td> 6.739218</td><td> 4.352966</td><td> 4.475231</td><td> 4.836996</td><td> 4.617618</td><td> 4.320077</td><td> 4.868290</td></tr>\n",
+       "\t<tr><th scope=row>AFFX-PheX-M_at</th><td> 8.611980</td><td> 6.075300</td><td> 6.330502</td><td> 5.523431</td><td> 6.010015</td><td> 7.472272</td><td> 6.594336</td><td> 7.903279</td><td> 6.891795</td><td> 5.190437</td><td>...</td><td> 5.053801</td><td> 6.453178</td><td> 7.550527</td><td> 7.823544</td><td> 4.792931</td><td> 5.273350</td><td> 5.876605</td><td> 5.451922</td><td> 5.518959</td><td> 5.602110</td></tr>\n",
+       "\t<tr><th scope=row>AFFX-ThrX-3_at</th><td>10.582326</td><td> 8.081044</td><td> 8.899869</td><td> 7.596045</td><td> 8.466992</td><td>10.246990</td><td> 9.441946</td><td> 9.735075</td><td> 9.126939</td><td> 7.116208</td><td>...</td><td> 6.751450</td><td> 8.385291</td><td> 9.906039</td><td> 9.629002</td><td> 6.889579</td><td> 7.297441</td><td> 8.268442</td><td> 7.525707</td><td> 7.992584</td><td> 7.635090</td></tr>\n",
+       "\t<tr><th scope=row>AFFX-ThrX-5_at</th><td> 8.268824</td><td> 5.748661</td><td> 5.830651</td><td> 5.385794</td><td> 5.596389</td><td> 6.823877</td><td> 6.074154</td><td> 7.455655</td><td> 7.029249</td><td> 5.211148</td><td>...</td><td> 4.901815</td><td> 6.188948</td><td> 7.569088</td><td> 7.496334</td><td> 4.981539</td><td> 5.208556</td><td> 5.353289</td><td> 5.389969</td><td> 5.144873</td><td> 5.687565</td></tr>\n",
+       "\t<tr><th scope=row>AFFX-ThrX-M_at</th><td> 9.175363</td><td> 6.531044</td><td> 6.944570</td><td> 6.162669</td><td> 6.428577</td><td> 8.012215</td><td> 7.157134</td><td> 8.454932</td><td> 7.786200</td><td> 5.529158</td><td>...</td><td> 4.945069</td><td> 6.973724</td><td> 8.429400</td><td> 8.319929</td><td> 5.157822</td><td> 5.658759</td><td> 6.397538</td><td> 5.906092</td><td> 5.663223</td><td> 6.076720</td></tr>\n",
+       "\t<tr><th scope=row>AFFX-TrpnX-3_at</th><td> 2.971427</td><td> 2.936306</td><td> 3.084930</td><td> 3.098125</td><td> 2.847959</td><td> 3.187383</td><td> 3.309404</td><td> 3.030723</td><td> 3.176019</td><td> 3.129184</td><td>...</td><td> 3.119100</td><td> 2.919815</td><td> 3.112240</td><td> 3.035649</td><td> 3.013416</td><td> 3.001819</td><td> 2.971770</td><td> 3.103154</td><td> 2.960769</td><td> 3.009697</td></tr>\n",
+       "\t<tr><th scope=row>AFFX-TrpnX-5_at</th><td> 3.793256</td><td> 3.738941</td><td> 3.884290</td><td> 3.831968</td><td> 3.753779</td><td> 3.653643</td><td> 3.820788</td><td> 3.882141</td><td> 3.758519</td><td> 3.775818</td><td>...</td><td> 3.823010</td><td> 3.810282</td><td> 3.873248</td><td> 3.842521</td><td> 3.837225</td><td> 3.849942</td><td> 3.791484</td><td> 3.752834</td><td> 3.805844</td><td> 3.838224</td></tr>\n",
+       "\t<tr><th scope=row>AFFX-TrpnX-M_at</th><td> 3.586808</td><td> 3.699143</td><td> 3.797787</td><td> 3.921248</td><td> 3.676281</td><td> 3.977565</td><td> 4.140764</td><td> 3.794589</td><td> 3.924411</td><td> 3.831404</td><td>...</td><td> 3.918006</td><td> 4.120546</td><td> 3.976871</td><td> 3.891728</td><td> 3.817679</td><td> 3.881876</td><td> 3.759550</td><td> 3.995358</td><td> 3.646415</td><td> 4.027466</td></tr>\n",
+       "\t<tr><th scope=row>AFFX-hum_alu_at</th><td>14.566045</td><td>14.618384</td><td>14.546660</td><td>14.625548</td><td>14.513824</td><td>14.588642</td><td>14.601224</td><td>14.630576</td><td>14.635498</td><td>14.574806</td><td>...</td><td>14.588855</td><td>14.597288</td><td>14.588642</td><td>14.597288</td><td>14.568665</td><td>14.617603</td><td>14.522156</td><td>14.601224</td><td>14.535137</td><td>14.554458</td></tr>\n",
+       "\t<tr><th scope=row>AFFX-r2-Bs-dap-3_at</th><td>11.410977</td><td> 9.448124</td><td> 9.983545</td><td> 9.205226</td><td> 9.595558</td><td>11.231852</td><td>10.498969</td><td>10.986092</td><td>10.544919</td><td> 8.436107</td><td>...</td><td> 7.666732</td><td>10.201282</td><td>10.934100</td><td>11.094863</td><td> 8.226814</td><td> 8.852264</td><td> 9.496438</td><td> 8.924229</td><td> 8.963801</td><td> 9.041300</td></tr>\n",
+       "\t<tr><th scope=row>AFFX-r2-Bs-dap-5_at</th><td> 9.976872</td><td> 7.267021</td><td> 7.145449</td><td> 6.898534</td><td> 6.561842</td><td> 8.038808</td><td> 7.178967</td><td> 9.279901</td><td> 8.810423</td><td> 6.482534</td><td>...</td><td> 5.833645</td><td> 8.055644</td><td> 8.940422</td><td> 9.485966</td><td> 5.589927</td><td> 6.627732</td><td> 6.730237</td><td> 6.836962</td><td> 5.795105</td><td> 7.048327</td></tr>\n",
+       "\t<tr><th scope=row>AFFX-r2-Bs-dap-M_at</th><td>10.871564</td><td> 8.451830</td><td> 8.732436</td><td> 8.255073</td><td> 8.588369</td><td> 9.752247</td><td> 9.026129</td><td>10.376856</td><td> 9.892273</td><td> 7.409603</td><td>...</td><td> 6.803270</td><td> 9.177587</td><td>10.167854</td><td>10.203665</td><td> 7.165208</td><td> 7.723737</td><td> 8.347360</td><td> 7.983539</td><td> 7.577300</td><td> 8.211389</td></tr>\n",
+       "\t<tr><th scope=row>AFFX-r2-Bs-lys-3_at</th><td> 8.008636</td><td> 5.622182</td><td> 6.404322</td><td> 5.112151</td><td> 6.003597</td><td> 8.037970</td><td> 6.954087</td><td> 6.936265</td><td> 6.744464</td><td> 5.055491</td><td>...</td><td> 4.487732</td><td> 5.993812</td><td> 7.139189</td><td> 7.305628</td><td> 4.775616</td><td> 5.057790</td><td> 6.009910</td><td> 5.208711</td><td> 5.795500</td><td> 5.421912</td></tr>\n",
+       "\t<tr><th scope=row>AFFX-r2-Bs-lys-5_at</th><td> 8.075753</td><td> 4.903934</td><td> 5.235062</td><td> 4.282676</td><td> 5.229519</td><td> 6.856097</td><td> 5.770748</td><td> 7.274403</td><td> 6.410631</td><td> 4.590119</td><td>...</td><td> 3.987658</td><td> 5.625004</td><td> 6.837261</td><td> 7.208497</td><td> 4.037665</td><td> 4.245147</td><td> 4.983173</td><td> 4.697197</td><td> 4.078701</td><td> 4.289088</td></tr>\n",
+       "\t<tr><th scope=row>AFFX-r2-Bs-lys-M_at</th><td> 8.066866</td><td> 5.180663</td><td> 6.175080</td><td> 5.438911</td><td> 5.877276</td><td> 7.484622</td><td> 6.468593</td><td> 7.244033</td><td> 6.520814</td><td> 4.491910</td><td>...</td><td> 4.181556</td><td> 6.163382</td><td> 7.408022</td><td> 7.522169</td><td> 4.114757</td><td> 4.849459</td><td> 5.563243</td><td> 4.298629</td><td> 4.894816</td><td> 4.891261</td></tr>\n",
+       "\t<tr><th scope=row>AFFX-r2-Bs-phe-3_at</th><td> 9.510853</td><td> 7.266315</td><td> 7.841255</td><td> 6.693504</td><td> 7.693326</td><td> 9.068351</td><td> 8.398361</td><td> 8.789336</td><td> 7.943606</td><td> 6.284697</td><td>...</td><td> 5.467548</td><td> 7.742471</td><td> 8.669393</td><td> 8.647518</td><td> 6.150494</td><td> 6.475302</td><td> 7.281304</td><td> 6.704694</td><td> 7.028392</td><td> 6.888921</td></tr>\n",
+       "\t<tr><th scope=row>AFFX-r2-Bs-phe-5_at</th><td> 8.514929</td><td> 5.343768</td><td> 5.888240</td><td> 5.198029</td><td> 5.466486</td><td> 6.969828</td><td> 5.872758</td><td> 7.545012</td><td> 6.598480</td><td> 4.962651</td><td>...</td><td> 4.666759</td><td> 6.085156</td><td> 7.224356</td><td> 7.723034</td><td> 4.589823</td><td> 4.911464</td><td> 5.321648</td><td> 4.529445</td><td> 4.706481</td><td> 5.293696</td></tr>\n",
+       "\t<tr><th scope=row>AFFX-r2-Bs-phe-M_at</th><td> 8.869874</td><td> 6.290796</td><td> 6.735115</td><td> 6.086613</td><td> 6.272251</td><td> 7.856569</td><td> 7.051055</td><td> 8.149247</td><td> 7.493264</td><td> 5.453053</td><td>...</td><td> 4.934678</td><td> 6.677291</td><td> 7.914306</td><td> 8.199506</td><td> 4.584651</td><td> 5.443351</td><td> 5.980611</td><td> 5.390966</td><td> 5.522687</td><td> 5.594173</td></tr>\n",
+       "\t<tr><th scope=row>AFFX-r2-Bs-thr-3_s_at</th><td>10.939619</td><td> 8.346147</td><td> 9.232065</td><td> 7.982263</td><td> 8.945963</td><td>10.639913</td><td> 9.722875</td><td>10.186336</td><td> 9.447309</td><td> 7.468169</td><td>...</td><td> 6.821701</td><td> 8.708765</td><td>10.220752</td><td>10.033351</td><td> 7.158162</td><td> 7.564540</td><td> 8.743150</td><td> 7.829487</td><td> 8.361200</td><td> 8.042726</td></tr>\n",
+       "\t<tr><th scope=row>AFFX-r2-Bs-thr-5_s_at</th><td> 9.181312</td><td> 6.525439</td><td> 6.663722</td><td> 6.134065</td><td> 5.979761</td><td> 7.735731</td><td> 6.865726</td><td> 8.435383</td><td> 7.697690</td><td> 5.861029</td><td>...</td><td> 5.309116</td><td> 6.906879</td><td> 8.573490</td><td> 8.477676</td><td> 5.383403</td><td> 5.739718</td><td> 5.965031</td><td> 5.989336</td><td> 5.892345</td><td> 6.087177</td></tr>\n",
+       "\t<tr><th scope=row>AFFX-r2-Bs-thr-M_s_at</th><td> 9.952070</td><td> 7.300751</td><td> 7.622274</td><td> 6.821974</td><td> 7.285899</td><td> 8.796732</td><td> 8.059699</td><td> 9.145913</td><td> 8.566722</td><td> 6.548489</td><td>...</td><td> 6.170361</td><td> 7.704222</td><td> 9.218303</td><td> 8.991092</td><td> 6.161949</td><td> 6.793152</td><td> 7.187525</td><td> 6.905292</td><td> 6.885350</td><td> 7.062640</td></tr>\n",
+       "\t<tr><th scope=row>AFFX-r2-Ec-bioB-3_at</th><td> 8.679083</td><td> 8.282167</td><td> 8.706168</td><td> 8.487556</td><td> 7.942436</td><td> 9.366093</td><td> 9.121303</td><td> 8.891166</td><td> 8.851962</td><td> 8.220907</td><td>...</td><td> 8.363878</td><td> 8.927124</td><td> 9.291020</td><td> 8.815105</td><td> 8.134356</td><td> 8.296001</td><td> 8.492442</td><td> 8.552419</td><td> 8.158692</td><td> 8.185058</td></tr>\n",
+       "\t<tr><th scope=row>AFFX-r2-Ec-bioB-5_at</th><td> 8.472914</td><td> 8.087888</td><td> 8.453219</td><td> 8.221732</td><td> 7.546716</td><td> 9.148523</td><td> 8.915800</td><td> 8.748165</td><td> 8.455820</td><td> 7.739492</td><td>...</td><td> 8.044479</td><td> 8.593133</td><td> 9.034046</td><td> 8.551207</td><td> 7.629477</td><td> 8.099967</td><td> 8.428393</td><td> 8.113851</td><td> 7.835044</td><td> 7.871678</td></tr>\n",
+       "\t<tr><th scope=row>AFFX-r2-Ec-bioB-M_at</th><td> 8.138846</td><td> 7.803547</td><td> 8.176353</td><td> 7.921736</td><td> 7.157207</td><td> 8.450128</td><td> 8.161739</td><td> 8.401908</td><td> 8.209351</td><td> 7.536998</td><td>...</td><td> 7.760487</td><td> 8.186198</td><td> 8.538407</td><td> 8.370121</td><td> 7.586960</td><td> 7.626970</td><td> 8.277210</td><td> 7.833928</td><td> 7.427514</td><td> 7.578554</td></tr>\n",
+       "\t<tr><th scope=row>AFFX-r2-Ec-bioC-3_at</th><td> 9.729550</td><td> 9.607061</td><td> 9.665548</td><td> 9.828510</td><td> 8.764607</td><td>10.511100</td><td>10.336114</td><td> 9.909891</td><td>10.124248</td><td> 9.435038</td><td>...</td><td> 9.678988</td><td> 9.998565</td><td>10.203119</td><td>10.150541</td><td> 9.251748</td><td> 9.515532</td><td> 9.464394</td><td> 9.668392</td><td> 9.239707</td><td> 9.414715</td></tr>\n",
+       "\t<tr><th scope=row>AFFX-r2-Ec-bioC-5_at</th><td> 9.443262</td><td> 9.287833</td><td> 9.453447</td><td> 9.585416</td><td> 8.307960</td><td> 9.965821</td><td> 9.757906</td><td> 9.675825</td><td> 9.835681</td><td> 9.155918</td><td>...</td><td> 9.381289</td><td> 9.785571</td><td> 9.927797</td><td> 9.897539</td><td> 9.226843</td><td> 9.257708</td><td> 9.242057</td><td> 9.438409</td><td> 8.979709</td><td> 9.221727</td></tr>\n",
+       "\t<tr><th scope=row>AFFX-r2-Ec-bioD-3_at</th><td>12.086754</td><td>11.806535</td><td>12.061832</td><td>12.055097</td><td>11.367981</td><td>12.529221</td><td>12.374249</td><td>12.240145</td><td>12.200857</td><td>11.611514</td><td>...</td><td>11.786142</td><td>12.299527</td><td>12.587375</td><td>12.216209</td><td>11.565119</td><td>11.779647</td><td>11.842112</td><td>11.945873</td><td>11.597732</td><td>11.776464</td></tr>\n",
+       "\t<tr><th scope=row>AFFX-r2-Ec-bioD-5_at</th><td>11.709715</td><td>11.408607</td><td>11.686138</td><td>11.679503</td><td>10.899228</td><td>12.110184</td><td>12.075080</td><td>11.988298</td><td>11.854230</td><td>11.213257</td><td>...</td><td>11.441561</td><td>11.905166</td><td>12.194392</td><td>11.885306</td><td>11.162417</td><td>11.400982</td><td>11.558277</td><td>11.531237</td><td>11.147191</td><td>11.402756</td></tr>\n",
+       "\t<tr><th scope=row>AFFX-r2-P1-cre-3_at</th><td>13.632617</td><td>13.449448</td><td>13.697584</td><td>13.661466</td><td>13.222939</td><td>13.821708</td><td>13.727460</td><td>13.787072</td><td>13.657255</td><td>13.324372</td><td>...</td><td>13.448898</td><td>13.693984</td><td>13.848986</td><td>13.754332</td><td>13.288882</td><td>13.525171</td><td>13.641620</td><td>13.465233</td><td>13.392018</td><td>13.413832</td></tr>\n",
+       "\t<tr><th scope=row>AFFX-r2-P1-cre-5_at</th><td>13.420402</td><td>13.236806</td><td>13.489278</td><td>13.421223</td><td>12.915797</td><td>13.627229</td><td>13.368026</td><td>13.512995</td><td>13.533677</td><td>13.141010</td><td>...</td><td>13.275303</td><td>13.516524</td><td>13.668968</td><td>13.457694</td><td>13.024730</td><td>13.308660</td><td>13.439947</td><td>13.255931</td><td>13.173852</td><td>13.210520</td></tr>\n",
+       "</tbody>\n",
+       "</table>\n"
+      ],
+      "text/latex": [
+       "A matrix: 54675 x 21 of type dbl\n",
+       "\\begin{tabular}{r|lllllllllllllllllllll}\n",
+       "  & GSM1176255 & GSM1176256 & GSM1176257 & GSM1176258 & GSM1176259 & GSM1176260 & GSM1176261 & GSM1176262 & GSM1176263 & GSM1176264 & ... & GSM1176266 & GSM1176267 & GSM1176268 & GSM1176269 & GSM1176270 & GSM1176271 & GSM1176272 & GSM1176273 & GSM1176274 & GSM1176275\\\\\n",
+       "\\hline\n",
+       "\t1007\\_s\\_at & 11.715161 & 11.273620 & 10.508958 & 10.930439 & 10.555628 & 11.074348 & 11.413331 & 11.056907 & 10.478296 & 10.614361 & ... & 10.950073 & 10.501268 & 11.136377 & 10.467003 & 11.718392 & 10.790970 & 11.319858 & 10.776361 & 10.334913 & 10.416789\\\\\n",
+       "\t1053\\_at &  6.318927 &  6.332438 &  6.351773 &  6.248771 &  6.573906 &  5.982559 &  5.999747 &  6.474815 &  6.540567 &  6.742131 & ... &  6.535896 &  6.212934 &  6.245565 &  6.408864 &  6.530506 &  6.411202 &  6.470390 &  6.419380 &  6.574940 &  6.668882\\\\\n",
+       "\t117\\_at &  6.237154 &  5.873304 &  5.540912 &  5.938872 &  5.695414 &  5.609305 &  6.239065 &  6.285355 &  5.909607 &  5.895048 & ... &  5.935832 &  6.518781 &  6.049684 &  5.951591 &  6.061524 &  5.983000 &  5.619935 &  6.250090 &  6.154772 &  6.296866\\\\\n",
+       "\t121\\_at &  8.037731 &  8.055693 &  7.657945 &  8.324510 &  7.929910 &  8.091168 &  8.081502 &  7.855752 &  8.242146 &  8.040336 & ... &  8.138732 &  8.093533 &  8.089327 &  8.066675 &  8.164637 &  8.266291 &  7.572720 &  8.200812 &  8.018520 &  8.244127\\\\\n",
+       "\t1255\\_g\\_at &  3.819819 &  3.945889 &  3.868008 &  3.988359 &  3.737851 &  3.796640 &  3.732672 &  3.683059 &  4.021211 &  3.950353 & ... &  3.836916 &  3.875336 &  4.081044 &  3.881884 &  3.741611 &  3.945731 &  3.750488 &  3.793629 &  3.838652 &  3.918923\\\\\n",
+       "\t1294\\_at &  7.369075 &  7.193545 &  6.992804 &  6.923932 &  6.750610 &  7.197197 &  7.320394 &  6.973735 &  6.851890 &  6.832457 & ... &  6.800074 &  6.987080 &  7.432148 &  6.872634 &  7.167685 &  6.857970 &  7.029640 &  6.960049 &  6.940760 &  6.994505\\\\\n",
+       "\t1316\\_at &  6.601119 &  6.586982 &  6.825374 &  7.203972 &  6.899376 &  7.134999 &  6.668674 &  6.756066 &  6.874190 &  6.810718 & ... &  6.702531 &  7.339148 &  7.234046 &  7.131753 &  6.387715 &  6.816890 &  6.633612 &  6.853167 &  6.354731 &  6.596720\\\\\n",
+       "\t1320\\_at &  6.150733 &  5.606746 &  5.091461 &  5.504215 &  5.424244 &  5.534967 &  5.841806 &  5.628757 &  5.528641 &  5.647755 & ... &  5.576175 &  5.529603 &  5.568394 &  5.395282 &  5.657006 &  5.716537 &  5.552141 &  5.551413 &  5.532686 &  5.617723\\\\\n",
+       "\t1405\\_i\\_at &  3.782331 &  3.728325 &  3.571723 &  3.184415 &  3.557341 &  3.825010 &  3.615014 &  3.650234 &  3.274420 &  3.284271 & ... &  3.362552 &  3.562881 &  3.639149 &  3.447854 &  3.300229 &  3.309696 &  3.153574 &  3.354396 &  3.703154 &  3.638859\\\\\n",
+       "\t1431\\_at &  4.847049 &  5.469413 &  5.798242 &  5.151788 &  5.640904 &  5.255664 &  4.704552 &  4.989192 &  4.596708 &  5.392479 & ... &  5.591802 &  4.948590 &  4.810177 &  4.854039 &  5.290745 &  5.181874 &  5.453751 &  5.170753 &  5.456397 &  5.505757\\\\\n",
+       "\t1438\\_at &  6.774806 &  6.686807 &  6.604931 &  6.587042 &  6.511757 &  6.298790 &  6.702173 &  6.546596 &  6.619511 &  6.555939 & ... &  6.453791 &  6.455532 &  6.515195 &  6.504984 &  6.577480 &  6.584722 &  6.383714 &  6.379987 &  6.971332 &  6.868749\\\\\n",
+       "\t1487\\_at &  7.706115 &  7.828210 &  7.819315 &  7.912187 &  8.081897 &  8.285492 &  8.268455 &  7.636757 &  7.923816 &  7.951651 & ... &  7.791367 &  8.442272 &  8.215463 &  8.110887 &  7.640591 &  7.832205 &  7.817042 &  7.690468 &  7.786445 &  8.068235\\\\\n",
+       "\t1494\\_f\\_at &  6.390373 &  6.577887 &  6.288943 &  6.478263 &  6.585678 &  6.513600 &  6.715245 &  6.366885 &  6.504828 &  6.413843 & ... &  6.449829 &  6.475083 &  6.629924 &  6.417927 &  6.636063 &  6.393027 &  6.294682 &  6.535359 &  6.417300 &  6.543502\\\\\n",
+       "\t1552256\\_a\\_at &  9.362331 &  8.718513 &  8.591590 &  8.592559 &  8.329391 &  9.397464 &  8.829132 &  8.447496 &  8.271936 &  8.543581 & ... &  8.601963 &  8.949789 &  9.048324 &  8.476308 &  8.809367 &  8.870874 &  8.949219 &  8.449392 &  8.929093 &  8.435116\\\\\n",
+       "\t1552257\\_a\\_at &  8.697499 &  8.414870 &  8.847506 &  8.196645 &  8.568110 &  8.601528 &  8.490217 &  8.612535 &  8.501805 &  8.624339 & ... &  8.162377 &  8.538727 &  8.593224 &  8.511024 &  7.955478 &  8.522465 &  8.347364 &  8.355304 &  8.590359 &  8.498711\\\\\n",
+       "\t1552258\\_at &  4.313353 &  4.327252 &  4.398854 &  4.482609 &  4.495425 &  4.455037 &  4.549402 &  4.381214 &  4.350495 &  4.604430 & ... &  4.541372 &  4.535059 &  4.425425 &  4.604328 &  4.614390 &  4.423873 &  4.521535 &  4.382313 &  4.315008 &  4.783441\\\\\n",
+       "\t1552261\\_at &  5.797263 &  5.831505 &  6.022026 &  5.894776 &  5.894776 &  5.974027 &  5.901981 &  5.846366 &  5.870412 &  5.761259 & ... &  6.204443 &  5.963474 &  5.610246 &  5.764205 &  5.921528 &  6.104317 &  5.530204 &  6.224809 &  5.894776 &  6.179204\\\\\n",
+       "\t1552263\\_at &  5.675409 &  5.146800 &  5.058240 &  5.103935 &  4.654277 &  5.076807 &  5.127467 &  5.137724 &  5.107533 &  4.828835 & ... &  4.581400 &  5.386770 &  5.370842 &  5.429385 &  5.094331 &  5.107947 &  4.666272 &  4.995322 &  5.062052 &  5.133024\\\\\n",
+       "\t1552264\\_a\\_at &  8.324661 &  8.340505 &  6.973281 &  7.972402 &  8.366196 &  7.102428 &  8.088234 &  8.171386 &  8.101570 &  8.879456 & ... &  8.625262 &  7.794456 &  7.624301 &  7.588305 &  8.188726 &  8.267261 &  8.074125 &  8.175175 &  8.552087 &  8.687885\\\\\n",
+       "\t1552266\\_at &  3.820735 &  3.955640 &  3.977324 &  3.929908 &  4.143071 &  3.813509 &  3.711120 &  3.840705 &  3.824750 &  4.095737 & ... &  3.766496 &  3.933370 &  3.787524 &  3.996983 &  3.951336 &  3.809711 &  3.992155 &  3.795446 &  4.099049 &  3.809711\\\\\n",
+       "\t1552269\\_at &  3.919705 &  3.734443 &  3.657639 &  3.721431 &  3.817650 &  3.569603 &  3.883896 &  3.569189 &  3.764275 &  3.719527 & ... &  3.637961 &  3.814737 &  3.930892 &  3.727087 &  3.617505 &  3.731545 &  3.523330 &  3.764384 &  3.629525 &  3.679676\\\\\n",
+       "\t1552271\\_at &  6.110168 &  6.334092 &  6.402241 &  6.145285 &  6.181203 &  6.027597 &  6.004122 &  6.006540 &  6.042873 &  6.332343 & ... &  6.083506 &  6.159245 &  6.314294 &  5.751871 &  6.488354 &  6.029530 &  6.123723 &  6.128323 &  5.874709 &  6.306192\\\\\n",
+       "\t1552272\\_a\\_at &  5.892740 &  6.296684 &  6.399330 &  5.895347 &  6.084049 &  6.377178 &  6.012381 &  5.745249 &  5.875956 &  5.952970 & ... &  5.796880 &  5.916038 &  5.825430 &  5.508971 &  6.328999 &  5.960116 &  5.891691 &  5.753524 &  6.068135 &  6.134740\\\\\n",
+       "\t1552274\\_at &  8.750927 &  9.062672 &  8.645766 &  8.964666 &  8.698250 &  8.771156 &  8.359881 &  8.516994 &  7.948101 &  7.776840 & ... &  8.473600 &  8.360724 &  8.519857 &  8.935342 & 10.065768 &  8.371472 &  9.948759 &  8.793044 &  8.040068 &  8.482872\\\\\n",
+       "\t1552275\\_s\\_at &  8.785358 &  9.611767 &  8.689897 &  9.176437 &  8.891458 &  8.909551 &  8.382955 &  8.608337 &  7.844931 &  8.422443 & ... &  9.087027 &  8.586831 &  8.331773 &  8.805994 & 10.862696 &  8.777363 & 11.010732 &  9.174584 &  8.352657 &  8.838630\\\\\n",
+       "\t1552276\\_a\\_at &  6.254009 &  6.044629 &  5.795907 &  6.044629 &  6.056319 &  6.082581 &  6.290385 &  5.991400 &  5.976458 &  6.140199 & ... &  6.323999 &  6.044629 &  6.093164 &  5.635828 &  6.029205 &  6.044629 &  5.758098 &  6.044629 &  6.399440 &  6.308159\\\\\n",
+       "\t1552277\\_a\\_at &  7.594721 &  7.589296 &  7.464715 &  7.308178 &  7.855467 &  7.190385 &  7.108467 &  7.461946 &  7.410497 &  8.125045 & ... &  7.570590 &  7.296906 &  7.116702 &  7.521706 &  7.593237 &  7.411462 &  7.727254 &  7.314019 &  7.815433 &  7.885769\\\\\n",
+       "\t1552278\\_a\\_at &  5.697786 &  5.590875 &  5.621722 &  5.650539 &  5.429471 &  5.310799 &  5.262553 &  5.208677 &  4.979963 &  5.522697 & ... &  5.425018 &  5.179512 &  5.686408 &  5.560351 &  5.345122 &  5.364508 &  5.527396 &  5.714584 &  6.202156 &  5.701994\\\\\n",
+       "\t1552279\\_a\\_at &  8.121292 &  7.895979 &  7.595977 &  7.793645 &  7.673699 &  7.865108 &  7.980892 &  7.567007 &  7.478499 &  7.808391 & ... &  7.761978 &  7.726665 &  7.933197 &  7.640038 &  7.991422 &  7.707419 &  7.628095 &  7.843268 &  7.861883 &  7.649558\\\\\n",
+       "\t1552280\\_at &  3.779434 &  3.989585 &  4.023921 &  4.107412 &  4.168360 &  3.959540 &  4.091007 &  3.967799 &  3.938910 &  3.800059 & ... &  3.919995 &  3.937926 &  3.952089 &  3.708196 &  3.896885 &  3.948478 &  3.724873 &  4.013579 &  3.948478 &  4.073936\\\\\n",
+       "\t... & ... & ... & ... & ... & ... & ... & ... & ... & ... & ... &  & ... & ... & ... & ... & ... & ... & ... & ... & ... & ...\\\\\n",
+       "\tAFFX-PheX-5\\_at &  7.753865 &  5.087429 &  5.177416 &  4.917430 &  4.953915 &  6.386600 &  5.490563 &  6.939214 &  6.105304 &  4.528936 & ... &  4.303124 &  5.653855 &  6.621218 &  6.739218 &  4.352966 &  4.475231 &  4.836996 &  4.617618 &  4.320077 &  4.868290\\\\\n",
+       "\tAFFX-PheX-M\\_at &  8.611980 &  6.075300 &  6.330502 &  5.523431 &  6.010015 &  7.472272 &  6.594336 &  7.903279 &  6.891795 &  5.190437 & ... &  5.053801 &  6.453178 &  7.550527 &  7.823544 &  4.792931 &  5.273350 &  5.876605 &  5.451922 &  5.518959 &  5.602110\\\\\n",
+       "\tAFFX-ThrX-3\\_at & 10.582326 &  8.081044 &  8.899869 &  7.596045 &  8.466992 & 10.246990 &  9.441946 &  9.735075 &  9.126939 &  7.116208 & ... &  6.751450 &  8.385291 &  9.906039 &  9.629002 &  6.889579 &  7.297441 &  8.268442 &  7.525707 &  7.992584 &  7.635090\\\\\n",
+       "\tAFFX-ThrX-5\\_at &  8.268824 &  5.748661 &  5.830651 &  5.385794 &  5.596389 &  6.823877 &  6.074154 &  7.455655 &  7.029249 &  5.211148 & ... &  4.901815 &  6.188948 &  7.569088 &  7.496334 &  4.981539 &  5.208556 &  5.353289 &  5.389969 &  5.144873 &  5.687565\\\\\n",
+       "\tAFFX-ThrX-M\\_at &  9.175363 &  6.531044 &  6.944570 &  6.162669 &  6.428577 &  8.012215 &  7.157134 &  8.454932 &  7.786200 &  5.529158 & ... &  4.945069 &  6.973724 &  8.429400 &  8.319929 &  5.157822 &  5.658759 &  6.397538 &  5.906092 &  5.663223 &  6.076720\\\\\n",
+       "\tAFFX-TrpnX-3\\_at &  2.971427 &  2.936306 &  3.084930 &  3.098125 &  2.847959 &  3.187383 &  3.309404 &  3.030723 &  3.176019 &  3.129184 & ... &  3.119100 &  2.919815 &  3.112240 &  3.035649 &  3.013416 &  3.001819 &  2.971770 &  3.103154 &  2.960769 &  3.009697\\\\\n",
+       "\tAFFX-TrpnX-5\\_at &  3.793256 &  3.738941 &  3.884290 &  3.831968 &  3.753779 &  3.653643 &  3.820788 &  3.882141 &  3.758519 &  3.775818 & ... &  3.823010 &  3.810282 &  3.873248 &  3.842521 &  3.837225 &  3.849942 &  3.791484 &  3.752834 &  3.805844 &  3.838224\\\\\n",
+       "\tAFFX-TrpnX-M\\_at &  3.586808 &  3.699143 &  3.797787 &  3.921248 &  3.676281 &  3.977565 &  4.140764 &  3.794589 &  3.924411 &  3.831404 & ... &  3.918006 &  4.120546 &  3.976871 &  3.891728 &  3.817679 &  3.881876 &  3.759550 &  3.995358 &  3.646415 &  4.027466\\\\\n",
+       "\tAFFX-hum\\_alu\\_at & 14.566045 & 14.618384 & 14.546660 & 14.625548 & 14.513824 & 14.588642 & 14.601224 & 14.630576 & 14.635498 & 14.574806 & ... & 14.588855 & 14.597288 & 14.588642 & 14.597288 & 14.568665 & 14.617603 & 14.522156 & 14.601224 & 14.535137 & 14.554458\\\\\n",
+       "\tAFFX-r2-Bs-dap-3\\_at & 11.410977 &  9.448124 &  9.983545 &  9.205226 &  9.595558 & 11.231852 & 10.498969 & 10.986092 & 10.544919 &  8.436107 & ... &  7.666732 & 10.201282 & 10.934100 & 11.094863 &  8.226814 &  8.852264 &  9.496438 &  8.924229 &  8.963801 &  9.041300\\\\\n",
+       "\tAFFX-r2-Bs-dap-5\\_at &  9.976872 &  7.267021 &  7.145449 &  6.898534 &  6.561842 &  8.038808 &  7.178967 &  9.279901 &  8.810423 &  6.482534 & ... &  5.833645 &  8.055644 &  8.940422 &  9.485966 &  5.589927 &  6.627732 &  6.730237 &  6.836962 &  5.795105 &  7.048327\\\\\n",
+       "\tAFFX-r2-Bs-dap-M\\_at & 10.871564 &  8.451830 &  8.732436 &  8.255073 &  8.588369 &  9.752247 &  9.026129 & 10.376856 &  9.892273 &  7.409603 & ... &  6.803270 &  9.177587 & 10.167854 & 10.203665 &  7.165208 &  7.723737 &  8.347360 &  7.983539 &  7.577300 &  8.211389\\\\\n",
+       "\tAFFX-r2-Bs-lys-3\\_at &  8.008636 &  5.622182 &  6.404322 &  5.112151 &  6.003597 &  8.037970 &  6.954087 &  6.936265 &  6.744464 &  5.055491 & ... &  4.487732 &  5.993812 &  7.139189 &  7.305628 &  4.775616 &  5.057790 &  6.009910 &  5.208711 &  5.795500 &  5.421912\\\\\n",
+       "\tAFFX-r2-Bs-lys-5\\_at &  8.075753 &  4.903934 &  5.235062 &  4.282676 &  5.229519 &  6.856097 &  5.770748 &  7.274403 &  6.410631 &  4.590119 & ... &  3.987658 &  5.625004 &  6.837261 &  7.208497 &  4.037665 &  4.245147 &  4.983173 &  4.697197 &  4.078701 &  4.289088\\\\\n",
+       "\tAFFX-r2-Bs-lys-M\\_at &  8.066866 &  5.180663 &  6.175080 &  5.438911 &  5.877276 &  7.484622 &  6.468593 &  7.244033 &  6.520814 &  4.491910 & ... &  4.181556 &  6.163382 &  7.408022 &  7.522169 &  4.114757 &  4.849459 &  5.563243 &  4.298629 &  4.894816 &  4.891261\\\\\n",
+       "\tAFFX-r2-Bs-phe-3\\_at &  9.510853 &  7.266315 &  7.841255 &  6.693504 &  7.693326 &  9.068351 &  8.398361 &  8.789336 &  7.943606 &  6.284697 & ... &  5.467548 &  7.742471 &  8.669393 &  8.647518 &  6.150494 &  6.475302 &  7.281304 &  6.704694 &  7.028392 &  6.888921\\\\\n",
+       "\tAFFX-r2-Bs-phe-5\\_at &  8.514929 &  5.343768 &  5.888240 &  5.198029 &  5.466486 &  6.969828 &  5.872758 &  7.545012 &  6.598480 &  4.962651 & ... &  4.666759 &  6.085156 &  7.224356 &  7.723034 &  4.589823 &  4.911464 &  5.321648 &  4.529445 &  4.706481 &  5.293696\\\\\n",
+       "\tAFFX-r2-Bs-phe-M\\_at &  8.869874 &  6.290796 &  6.735115 &  6.086613 &  6.272251 &  7.856569 &  7.051055 &  8.149247 &  7.493264 &  5.453053 & ... &  4.934678 &  6.677291 &  7.914306 &  8.199506 &  4.584651 &  5.443351 &  5.980611 &  5.390966 &  5.522687 &  5.594173\\\\\n",
+       "\tAFFX-r2-Bs-thr-3\\_s\\_at & 10.939619 &  8.346147 &  9.232065 &  7.982263 &  8.945963 & 10.639913 &  9.722875 & 10.186336 &  9.447309 &  7.468169 & ... &  6.821701 &  8.708765 & 10.220752 & 10.033351 &  7.158162 &  7.564540 &  8.743150 &  7.829487 &  8.361200 &  8.042726\\\\\n",
+       "\tAFFX-r2-Bs-thr-5\\_s\\_at &  9.181312 &  6.525439 &  6.663722 &  6.134065 &  5.979761 &  7.735731 &  6.865726 &  8.435383 &  7.697690 &  5.861029 & ... &  5.309116 &  6.906879 &  8.573490 &  8.477676 &  5.383403 &  5.739718 &  5.965031 &  5.989336 &  5.892345 &  6.087177\\\\\n",
+       "\tAFFX-r2-Bs-thr-M\\_s\\_at &  9.952070 &  7.300751 &  7.622274 &  6.821974 &  7.285899 &  8.796732 &  8.059699 &  9.145913 &  8.566722 &  6.548489 & ... &  6.170361 &  7.704222 &  9.218303 &  8.991092 &  6.161949 &  6.793152 &  7.187525 &  6.905292 &  6.885350 &  7.062640\\\\\n",
+       "\tAFFX-r2-Ec-bioB-3\\_at &  8.679083 &  8.282167 &  8.706168 &  8.487556 &  7.942436 &  9.366093 &  9.121303 &  8.891166 &  8.851962 &  8.220907 & ... &  8.363878 &  8.927124 &  9.291020 &  8.815105 &  8.134356 &  8.296001 &  8.492442 &  8.552419 &  8.158692 &  8.185058\\\\\n",
+       "\tAFFX-r2-Ec-bioB-5\\_at &  8.472914 &  8.087888 &  8.453219 &  8.221732 &  7.546716 &  9.148523 &  8.915800 &  8.748165 &  8.455820 &  7.739492 & ... &  8.044479 &  8.593133 &  9.034046 &  8.551207 &  7.629477 &  8.099967 &  8.428393 &  8.113851 &  7.835044 &  7.871678\\\\\n",
+       "\tAFFX-r2-Ec-bioB-M\\_at &  8.138846 &  7.803547 &  8.176353 &  7.921736 &  7.157207 &  8.450128 &  8.161739 &  8.401908 &  8.209351 &  7.536998 & ... &  7.760487 &  8.186198 &  8.538407 &  8.370121 &  7.586960 &  7.626970 &  8.277210 &  7.833928 &  7.427514 &  7.578554\\\\\n",
+       "\tAFFX-r2-Ec-bioC-3\\_at &  9.729550 &  9.607061 &  9.665548 &  9.828510 &  8.764607 & 10.511100 & 10.336114 &  9.909891 & 10.124248 &  9.435038 & ... &  9.678988 &  9.998565 & 10.203119 & 10.150541 &  9.251748 &  9.515532 &  9.464394 &  9.668392 &  9.239707 &  9.414715\\\\\n",
+       "\tAFFX-r2-Ec-bioC-5\\_at &  9.443262 &  9.287833 &  9.453447 &  9.585416 &  8.307960 &  9.965821 &  9.757906 &  9.675825 &  9.835681 &  9.155918 & ... &  9.381289 &  9.785571 &  9.927797 &  9.897539 &  9.226843 &  9.257708 &  9.242057 &  9.438409 &  8.979709 &  9.221727\\\\\n",
+       "\tAFFX-r2-Ec-bioD-3\\_at & 12.086754 & 11.806535 & 12.061832 & 12.055097 & 11.367981 & 12.529221 & 12.374249 & 12.240145 & 12.200857 & 11.611514 & ... & 11.786142 & 12.299527 & 12.587375 & 12.216209 & 11.565119 & 11.779647 & 11.842112 & 11.945873 & 11.597732 & 11.776464\\\\\n",
+       "\tAFFX-r2-Ec-bioD-5\\_at & 11.709715 & 11.408607 & 11.686138 & 11.679503 & 10.899228 & 12.110184 & 12.075080 & 11.988298 & 11.854230 & 11.213257 & ... & 11.441561 & 11.905166 & 12.194392 & 11.885306 & 11.162417 & 11.400982 & 11.558277 & 11.531237 & 11.147191 & 11.402756\\\\\n",
+       "\tAFFX-r2-P1-cre-3\\_at & 13.632617 & 13.449448 & 13.697584 & 13.661466 & 13.222939 & 13.821708 & 13.727460 & 13.787072 & 13.657255 & 13.324372 & ... & 13.448898 & 13.693984 & 13.848986 & 13.754332 & 13.288882 & 13.525171 & 13.641620 & 13.465233 & 13.392018 & 13.413832\\\\\n",
+       "\tAFFX-r2-P1-cre-5\\_at & 13.420402 & 13.236806 & 13.489278 & 13.421223 & 12.915797 & 13.627229 & 13.368026 & 13.512995 & 13.533677 & 13.141010 & ... & 13.275303 & 13.516524 & 13.668968 & 13.457694 & 13.024730 & 13.308660 & 13.439947 & 13.255931 & 13.173852 & 13.210520\\\\\n",
+       "\\end{tabular}\n"
+      ],
+      "text/markdown": [
+       "\n",
+       "A matrix: 54675 x 21 of type dbl\n",
+       "\n",
+       "| <!--/--> | GSM1176255 | GSM1176256 | GSM1176257 | GSM1176258 | GSM1176259 | GSM1176260 | GSM1176261 | GSM1176262 | GSM1176263 | GSM1176264 | ... | GSM1176266 | GSM1176267 | GSM1176268 | GSM1176269 | GSM1176270 | GSM1176271 | GSM1176272 | GSM1176273 | GSM1176274 | GSM1176275 |\n",
+       "|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|\n",
+       "| 1007_s_at | 11.715161 | 11.273620 | 10.508958 | 10.930439 | 10.555628 | 11.074348 | 11.413331 | 11.056907 | 10.478296 | 10.614361 | ... | 10.950073 | 10.501268 | 11.136377 | 10.467003 | 11.718392 | 10.790970 | 11.319858 | 10.776361 | 10.334913 | 10.416789 |\n",
+       "| 1053_at |  6.318927 |  6.332438 |  6.351773 |  6.248771 |  6.573906 |  5.982559 |  5.999747 |  6.474815 |  6.540567 |  6.742131 | ... |  6.535896 |  6.212934 |  6.245565 |  6.408864 |  6.530506 |  6.411202 |  6.470390 |  6.419380 |  6.574940 |  6.668882 |\n",
+       "| 117_at |  6.237154 |  5.873304 |  5.540912 |  5.938872 |  5.695414 |  5.609305 |  6.239065 |  6.285355 |  5.909607 |  5.895048 | ... |  5.935832 |  6.518781 |  6.049684 |  5.951591 |  6.061524 |  5.983000 |  5.619935 |  6.250090 |  6.154772 |  6.296866 |\n",
+       "| 121_at |  8.037731 |  8.055693 |  7.657945 |  8.324510 |  7.929910 |  8.091168 |  8.081502 |  7.855752 |  8.242146 |  8.040336 | ... |  8.138732 |  8.093533 |  8.089327 |  8.066675 |  8.164637 |  8.266291 |  7.572720 |  8.200812 |  8.018520 |  8.244127 |\n",
+       "| 1255_g_at |  3.819819 |  3.945889 |  3.868008 |  3.988359 |  3.737851 |  3.796640 |  3.732672 |  3.683059 |  4.021211 |  3.950353 | ... |  3.836916 |  3.875336 |  4.081044 |  3.881884 |  3.741611 |  3.945731 |  3.750488 |  3.793629 |  3.838652 |  3.918923 |\n",
+       "| 1294_at |  7.369075 |  7.193545 |  6.992804 |  6.923932 |  6.750610 |  7.197197 |  7.320394 |  6.973735 |  6.851890 |  6.832457 | ... |  6.800074 |  6.987080 |  7.432148 |  6.872634 |  7.167685 |  6.857970 |  7.029640 |  6.960049 |  6.940760 |  6.994505 |\n",
+       "| 1316_at |  6.601119 |  6.586982 |  6.825374 |  7.203972 |  6.899376 |  7.134999 |  6.668674 |  6.756066 |  6.874190 |  6.810718 | ... |  6.702531 |  7.339148 |  7.234046 |  7.131753 |  6.387715 |  6.816890 |  6.633612 |  6.853167 |  6.354731 |  6.596720 |\n",
+       "| 1320_at |  6.150733 |  5.606746 |  5.091461 |  5.504215 |  5.424244 |  5.534967 |  5.841806 |  5.628757 |  5.528641 |  5.647755 | ... |  5.576175 |  5.529603 |  5.568394 |  5.395282 |  5.657006 |  5.716537 |  5.552141 |  5.551413 |  5.532686 |  5.617723 |\n",
+       "| 1405_i_at |  3.782331 |  3.728325 |  3.571723 |  3.184415 |  3.557341 |  3.825010 |  3.615014 |  3.650234 |  3.274420 |  3.284271 | ... |  3.362552 |  3.562881 |  3.639149 |  3.447854 |  3.300229 |  3.309696 |  3.153574 |  3.354396 |  3.703154 |  3.638859 |\n",
+       "| 1431_at |  4.847049 |  5.469413 |  5.798242 |  5.151788 |  5.640904 |  5.255664 |  4.704552 |  4.989192 |  4.596708 |  5.392479 | ... |  5.591802 |  4.948590 |  4.810177 |  4.854039 |  5.290745 |  5.181874 |  5.453751 |  5.170753 |  5.456397 |  5.505757 |\n",
+       "| 1438_at |  6.774806 |  6.686807 |  6.604931 |  6.587042 |  6.511757 |  6.298790 |  6.702173 |  6.546596 |  6.619511 |  6.555939 | ... |  6.453791 |  6.455532 |  6.515195 |  6.504984 |  6.577480 |  6.584722 |  6.383714 |  6.379987 |  6.971332 |  6.868749 |\n",
+       "| 1487_at |  7.706115 |  7.828210 |  7.819315 |  7.912187 |  8.081897 |  8.285492 |  8.268455 |  7.636757 |  7.923816 |  7.951651 | ... |  7.791367 |  8.442272 |  8.215463 |  8.110887 |  7.640591 |  7.832205 |  7.817042 |  7.690468 |  7.786445 |  8.068235 |\n",
+       "| 1494_f_at |  6.390373 |  6.577887 |  6.288943 |  6.478263 |  6.585678 |  6.513600 |  6.715245 |  6.366885 |  6.504828 |  6.413843 | ... |  6.449829 |  6.475083 |  6.629924 |  6.417927 |  6.636063 |  6.393027 |  6.294682 |  6.535359 |  6.417300 |  6.543502 |\n",
+       "| 1552256_a_at |  9.362331 |  8.718513 |  8.591590 |  8.592559 |  8.329391 |  9.397464 |  8.829132 |  8.447496 |  8.271936 |  8.543581 | ... |  8.601963 |  8.949789 |  9.048324 |  8.476308 |  8.809367 |  8.870874 |  8.949219 |  8.449392 |  8.929093 |  8.435116 |\n",
+       "| 1552257_a_at |  8.697499 |  8.414870 |  8.847506 |  8.196645 |  8.568110 |  8.601528 |  8.490217 |  8.612535 |  8.501805 |  8.624339 | ... |  8.162377 |  8.538727 |  8.593224 |  8.511024 |  7.955478 |  8.522465 |  8.347364 |  8.355304 |  8.590359 |  8.498711 |\n",
+       "| 1552258_at |  4.313353 |  4.327252 |  4.398854 |  4.482609 |  4.495425 |  4.455037 |  4.549402 |  4.381214 |  4.350495 |  4.604430 | ... |  4.541372 |  4.535059 |  4.425425 |  4.604328 |  4.614390 |  4.423873 |  4.521535 |  4.382313 |  4.315008 |  4.783441 |\n",
+       "| 1552261_at |  5.797263 |  5.831505 |  6.022026 |  5.894776 |  5.894776 |  5.974027 |  5.901981 |  5.846366 |  5.870412 |  5.761259 | ... |  6.204443 |  5.963474 |  5.610246 |  5.764205 |  5.921528 |  6.104317 |  5.530204 |  6.224809 |  5.894776 |  6.179204 |\n",
+       "| 1552263_at |  5.675409 |  5.146800 |  5.058240 |  5.103935 |  4.654277 |  5.076807 |  5.127467 |  5.137724 |  5.107533 |  4.828835 | ... |  4.581400 |  5.386770 |  5.370842 |  5.429385 |  5.094331 |  5.107947 |  4.666272 |  4.995322 |  5.062052 |  5.133024 |\n",
+       "| 1552264_a_at |  8.324661 |  8.340505 |  6.973281 |  7.972402 |  8.366196 |  7.102428 |  8.088234 |  8.171386 |  8.101570 |  8.879456 | ... |  8.625262 |  7.794456 |  7.624301 |  7.588305 |  8.188726 |  8.267261 |  8.074125 |  8.175175 |  8.552087 |  8.687885 |\n",
+       "| 1552266_at |  3.820735 |  3.955640 |  3.977324 |  3.929908 |  4.143071 |  3.813509 |  3.711120 |  3.840705 |  3.824750 |  4.095737 | ... |  3.766496 |  3.933370 |  3.787524 |  3.996983 |  3.951336 |  3.809711 |  3.992155 |  3.795446 |  4.099049 |  3.809711 |\n",
+       "| 1552269_at |  3.919705 |  3.734443 |  3.657639 |  3.721431 |  3.817650 |  3.569603 |  3.883896 |  3.569189 |  3.764275 |  3.719527 | ... |  3.637961 |  3.814737 |  3.930892 |  3.727087 |  3.617505 |  3.731545 |  3.523330 |  3.764384 |  3.629525 |  3.679676 |\n",
+       "| 1552271_at |  6.110168 |  6.334092 |  6.402241 |  6.145285 |  6.181203 |  6.027597 |  6.004122 |  6.006540 |  6.042873 |  6.332343 | ... |  6.083506 |  6.159245 |  6.314294 |  5.751871 |  6.488354 |  6.029530 |  6.123723 |  6.128323 |  5.874709 |  6.306192 |\n",
+       "| 1552272_a_at |  5.892740 |  6.296684 |  6.399330 |  5.895347 |  6.084049 |  6.377178 |  6.012381 |  5.745249 |  5.875956 |  5.952970 | ... |  5.796880 |  5.916038 |  5.825430 |  5.508971 |  6.328999 |  5.960116 |  5.891691 |  5.753524 |  6.068135 |  6.134740 |\n",
+       "| 1552274_at |  8.750927 |  9.062672 |  8.645766 |  8.964666 |  8.698250 |  8.771156 |  8.359881 |  8.516994 |  7.948101 |  7.776840 | ... |  8.473600 |  8.360724 |  8.519857 |  8.935342 | 10.065768 |  8.371472 |  9.948759 |  8.793044 |  8.040068 |  8.482872 |\n",
+       "| 1552275_s_at |  8.785358 |  9.611767 |  8.689897 |  9.176437 |  8.891458 |  8.909551 |  8.382955 |  8.608337 |  7.844931 |  8.422443 | ... |  9.087027 |  8.586831 |  8.331773 |  8.805994 | 10.862696 |  8.777363 | 11.010732 |  9.174584 |  8.352657 |  8.838630 |\n",
+       "| 1552276_a_at |  6.254009 |  6.044629 |  5.795907 |  6.044629 |  6.056319 |  6.082581 |  6.290385 |  5.991400 |  5.976458 |  6.140199 | ... |  6.323999 |  6.044629 |  6.093164 |  5.635828 |  6.029205 |  6.044629 |  5.758098 |  6.044629 |  6.399440 |  6.308159 |\n",
+       "| 1552277_a_at |  7.594721 |  7.589296 |  7.464715 |  7.308178 |  7.855467 |  7.190385 |  7.108467 |  7.461946 |  7.410497 |  8.125045 | ... |  7.570590 |  7.296906 |  7.116702 |  7.521706 |  7.593237 |  7.411462 |  7.727254 |  7.314019 |  7.815433 |  7.885769 |\n",
+       "| 1552278_a_at |  5.697786 |  5.590875 |  5.621722 |  5.650539 |  5.429471 |  5.310799 |  5.262553 |  5.208677 |  4.979963 |  5.522697 | ... |  5.425018 |  5.179512 |  5.686408 |  5.560351 |  5.345122 |  5.364508 |  5.527396 |  5.714584 |  6.202156 |  5.701994 |\n",
+       "| 1552279_a_at |  8.121292 |  7.895979 |  7.595977 |  7.793645 |  7.673699 |  7.865108 |  7.980892 |  7.567007 |  7.478499 |  7.808391 | ... |  7.761978 |  7.726665 |  7.933197 |  7.640038 |  7.991422 |  7.707419 |  7.628095 |  7.843268 |  7.861883 |  7.649558 |\n",
+       "| 1552280_at |  3.779434 |  3.989585 |  4.023921 |  4.107412 |  4.168360 |  3.959540 |  4.091007 |  3.967799 |  3.938910 |  3.800059 | ... |  3.919995 |  3.937926 |  3.952089 |  3.708196 |  3.896885 |  3.948478 |  3.724873 |  4.013579 |  3.948478 |  4.073936 |\n",
+       "| ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | <!----> | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... |\n",
+       "| AFFX-PheX-5_at |  7.753865 |  5.087429 |  5.177416 |  4.917430 |  4.953915 |  6.386600 |  5.490563 |  6.939214 |  6.105304 |  4.528936 | ... |  4.303124 |  5.653855 |  6.621218 |  6.739218 |  4.352966 |  4.475231 |  4.836996 |  4.617618 |  4.320077 |  4.868290 |\n",
+       "| AFFX-PheX-M_at |  8.611980 |  6.075300 |  6.330502 |  5.523431 |  6.010015 |  7.472272 |  6.594336 |  7.903279 |  6.891795 |  5.190437 | ... |  5.053801 |  6.453178 |  7.550527 |  7.823544 |  4.792931 |  5.273350 |  5.876605 |  5.451922 |  5.518959 |  5.602110 |\n",
+       "| AFFX-ThrX-3_at | 10.582326 |  8.081044 |  8.899869 |  7.596045 |  8.466992 | 10.246990 |  9.441946 |  9.735075 |  9.126939 |  7.116208 | ... |  6.751450 |  8.385291 |  9.906039 |  9.629002 |  6.889579 |  7.297441 |  8.268442 |  7.525707 |  7.992584 |  7.635090 |\n",
+       "| AFFX-ThrX-5_at |  8.268824 |  5.748661 |  5.830651 |  5.385794 |  5.596389 |  6.823877 |  6.074154 |  7.455655 |  7.029249 |  5.211148 | ... |  4.901815 |  6.188948 |  7.569088 |  7.496334 |  4.981539 |  5.208556 |  5.353289 |  5.389969 |  5.144873 |  5.687565 |\n",
+       "| AFFX-ThrX-M_at |  9.175363 |  6.531044 |  6.944570 |  6.162669 |  6.428577 |  8.012215 |  7.157134 |  8.454932 |  7.786200 |  5.529158 | ... |  4.945069 |  6.973724 |  8.429400 |  8.319929 |  5.157822 |  5.658759 |  6.397538 |  5.906092 |  5.663223 |  6.076720 |\n",
+       "| AFFX-TrpnX-3_at |  2.971427 |  2.936306 |  3.084930 |  3.098125 |  2.847959 |  3.187383 |  3.309404 |  3.030723 |  3.176019 |  3.129184 | ... |  3.119100 |  2.919815 |  3.112240 |  3.035649 |  3.013416 |  3.001819 |  2.971770 |  3.103154 |  2.960769 |  3.009697 |\n",
+       "| AFFX-TrpnX-5_at |  3.793256 |  3.738941 |  3.884290 |  3.831968 |  3.753779 |  3.653643 |  3.820788 |  3.882141 |  3.758519 |  3.775818 | ... |  3.823010 |  3.810282 |  3.873248 |  3.842521 |  3.837225 |  3.849942 |  3.791484 |  3.752834 |  3.805844 |  3.838224 |\n",
+       "| AFFX-TrpnX-M_at |  3.586808 |  3.699143 |  3.797787 |  3.921248 |  3.676281 |  3.977565 |  4.140764 |  3.794589 |  3.924411 |  3.831404 | ... |  3.918006 |  4.120546 |  3.976871 |  3.891728 |  3.817679 |  3.881876 |  3.759550 |  3.995358 |  3.646415 |  4.027466 |\n",
+       "| AFFX-hum_alu_at | 14.566045 | 14.618384 | 14.546660 | 14.625548 | 14.513824 | 14.588642 | 14.601224 | 14.630576 | 14.635498 | 14.574806 | ... | 14.588855 | 14.597288 | 14.588642 | 14.597288 | 14.568665 | 14.617603 | 14.522156 | 14.601224 | 14.535137 | 14.554458 |\n",
+       "| AFFX-r2-Bs-dap-3_at | 11.410977 |  9.448124 |  9.983545 |  9.205226 |  9.595558 | 11.231852 | 10.498969 | 10.986092 | 10.544919 |  8.436107 | ... |  7.666732 | 10.201282 | 10.934100 | 11.094863 |  8.226814 |  8.852264 |  9.496438 |  8.924229 |  8.963801 |  9.041300 |\n",
+       "| AFFX-r2-Bs-dap-5_at |  9.976872 |  7.267021 |  7.145449 |  6.898534 |  6.561842 |  8.038808 |  7.178967 |  9.279901 |  8.810423 |  6.482534 | ... |  5.833645 |  8.055644 |  8.940422 |  9.485966 |  5.589927 |  6.627732 |  6.730237 |  6.836962 |  5.795105 |  7.048327 |\n",
+       "| AFFX-r2-Bs-dap-M_at | 10.871564 |  8.451830 |  8.732436 |  8.255073 |  8.588369 |  9.752247 |  9.026129 | 10.376856 |  9.892273 |  7.409603 | ... |  6.803270 |  9.177587 | 10.167854 | 10.203665 |  7.165208 |  7.723737 |  8.347360 |  7.983539 |  7.577300 |  8.211389 |\n",
+       "| AFFX-r2-Bs-lys-3_at |  8.008636 |  5.622182 |  6.404322 |  5.112151 |  6.003597 |  8.037970 |  6.954087 |  6.936265 |  6.744464 |  5.055491 | ... |  4.487732 |  5.993812 |  7.139189 |  7.305628 |  4.775616 |  5.057790 |  6.009910 |  5.208711 |  5.795500 |  5.421912 |\n",
+       "| AFFX-r2-Bs-lys-5_at |  8.075753 |  4.903934 |  5.235062 |  4.282676 |  5.229519 |  6.856097 |  5.770748 |  7.274403 |  6.410631 |  4.590119 | ... |  3.987658 |  5.625004 |  6.837261 |  7.208497 |  4.037665 |  4.245147 |  4.983173 |  4.697197 |  4.078701 |  4.289088 |\n",
+       "| AFFX-r2-Bs-lys-M_at |  8.066866 |  5.180663 |  6.175080 |  5.438911 |  5.877276 |  7.484622 |  6.468593 |  7.244033 |  6.520814 |  4.491910 | ... |  4.181556 |  6.163382 |  7.408022 |  7.522169 |  4.114757 |  4.849459 |  5.563243 |  4.298629 |  4.894816 |  4.891261 |\n",
+       "| AFFX-r2-Bs-phe-3_at |  9.510853 |  7.266315 |  7.841255 |  6.693504 |  7.693326 |  9.068351 |  8.398361 |  8.789336 |  7.943606 |  6.284697 | ... |  5.467548 |  7.742471 |  8.669393 |  8.647518 |  6.150494 |  6.475302 |  7.281304 |  6.704694 |  7.028392 |  6.888921 |\n",
+       "| AFFX-r2-Bs-phe-5_at |  8.514929 |  5.343768 |  5.888240 |  5.198029 |  5.466486 |  6.969828 |  5.872758 |  7.545012 |  6.598480 |  4.962651 | ... |  4.666759 |  6.085156 |  7.224356 |  7.723034 |  4.589823 |  4.911464 |  5.321648 |  4.529445 |  4.706481 |  5.293696 |\n",
+       "| AFFX-r2-Bs-phe-M_at |  8.869874 |  6.290796 |  6.735115 |  6.086613 |  6.272251 |  7.856569 |  7.051055 |  8.149247 |  7.493264 |  5.453053 | ... |  4.934678 |  6.677291 |  7.914306 |  8.199506 |  4.584651 |  5.443351 |  5.980611 |  5.390966 |  5.522687 |  5.594173 |\n",
+       "| AFFX-r2-Bs-thr-3_s_at | 10.939619 |  8.346147 |  9.232065 |  7.982263 |  8.945963 | 10.639913 |  9.722875 | 10.186336 |  9.447309 |  7.468169 | ... |  6.821701 |  8.708765 | 10.220752 | 10.033351 |  7.158162 |  7.564540 |  8.743150 |  7.829487 |  8.361200 |  8.042726 |\n",
+       "| AFFX-r2-Bs-thr-5_s_at |  9.181312 |  6.525439 |  6.663722 |  6.134065 |  5.979761 |  7.735731 |  6.865726 |  8.435383 |  7.697690 |  5.861029 | ... |  5.309116 |  6.906879 |  8.573490 |  8.477676 |  5.383403 |  5.739718 |  5.965031 |  5.989336 |  5.892345 |  6.087177 |\n",
+       "| AFFX-r2-Bs-thr-M_s_at |  9.952070 |  7.300751 |  7.622274 |  6.821974 |  7.285899 |  8.796732 |  8.059699 |  9.145913 |  8.566722 |  6.548489 | ... |  6.170361 |  7.704222 |  9.218303 |  8.991092 |  6.161949 |  6.793152 |  7.187525 |  6.905292 |  6.885350 |  7.062640 |\n",
+       "| AFFX-r2-Ec-bioB-3_at |  8.679083 |  8.282167 |  8.706168 |  8.487556 |  7.942436 |  9.366093 |  9.121303 |  8.891166 |  8.851962 |  8.220907 | ... |  8.363878 |  8.927124 |  9.291020 |  8.815105 |  8.134356 |  8.296001 |  8.492442 |  8.552419 |  8.158692 |  8.185058 |\n",
+       "| AFFX-r2-Ec-bioB-5_at |  8.472914 |  8.087888 |  8.453219 |  8.221732 |  7.546716 |  9.148523 |  8.915800 |  8.748165 |  8.455820 |  7.739492 | ... |  8.044479 |  8.593133 |  9.034046 |  8.551207 |  7.629477 |  8.099967 |  8.428393 |  8.113851 |  7.835044 |  7.871678 |\n",
+       "| AFFX-r2-Ec-bioB-M_at |  8.138846 |  7.803547 |  8.176353 |  7.921736 |  7.157207 |  8.450128 |  8.161739 |  8.401908 |  8.209351 |  7.536998 | ... |  7.760487 |  8.186198 |  8.538407 |  8.370121 |  7.586960 |  7.626970 |  8.277210 |  7.833928 |  7.427514 |  7.578554 |\n",
+       "| AFFX-r2-Ec-bioC-3_at |  9.729550 |  9.607061 |  9.665548 |  9.828510 |  8.764607 | 10.511100 | 10.336114 |  9.909891 | 10.124248 |  9.435038 | ... |  9.678988 |  9.998565 | 10.203119 | 10.150541 |  9.251748 |  9.515532 |  9.464394 |  9.668392 |  9.239707 |  9.414715 |\n",
+       "| AFFX-r2-Ec-bioC-5_at |  9.443262 |  9.287833 |  9.453447 |  9.585416 |  8.307960 |  9.965821 |  9.757906 |  9.675825 |  9.835681 |  9.155918 | ... |  9.381289 |  9.785571 |  9.927797 |  9.897539 |  9.226843 |  9.257708 |  9.242057 |  9.438409 |  8.979709 |  9.221727 |\n",
+       "| AFFX-r2-Ec-bioD-3_at | 12.086754 | 11.806535 | 12.061832 | 12.055097 | 11.367981 | 12.529221 | 12.374249 | 12.240145 | 12.200857 | 11.611514 | ... | 11.786142 | 12.299527 | 12.587375 | 12.216209 | 11.565119 | 11.779647 | 11.842112 | 11.945873 | 11.597732 | 11.776464 |\n",
+       "| AFFX-r2-Ec-bioD-5_at | 11.709715 | 11.408607 | 11.686138 | 11.679503 | 10.899228 | 12.110184 | 12.075080 | 11.988298 | 11.854230 | 11.213257 | ... | 11.441561 | 11.905166 | 12.194392 | 11.885306 | 11.162417 | 11.400982 | 11.558277 | 11.531237 | 11.147191 | 11.402756 |\n",
+       "| AFFX-r2-P1-cre-3_at | 13.632617 | 13.449448 | 13.697584 | 13.661466 | 13.222939 | 13.821708 | 13.727460 | 13.787072 | 13.657255 | 13.324372 | ... | 13.448898 | 13.693984 | 13.848986 | 13.754332 | 13.288882 | 13.525171 | 13.641620 | 13.465233 | 13.392018 | 13.413832 |\n",
+       "| AFFX-r2-P1-cre-5_at | 13.420402 | 13.236806 | 13.489278 | 13.421223 | 12.915797 | 13.627229 | 13.368026 | 13.512995 | 13.533677 | 13.141010 | ... | 13.275303 | 13.516524 | 13.668968 | 13.457694 | 13.024730 | 13.308660 | 13.439947 | 13.255931 | 13.173852 | 13.210520 |\n",
+       "\n"
+      ],
+      "text/plain": [
+       "                      GSM1176255 GSM1176256 GSM1176257 GSM1176258 GSM1176259\n",
+       "1007_s_at             11.715161  11.273620  10.508958  10.930439  10.555628 \n",
+       "1053_at                6.318927   6.332438   6.351773   6.248771   6.573906 \n",
+       "117_at                 6.237154   5.873304   5.540912   5.938872   5.695414 \n",
+       "121_at                 8.037731   8.055693   7.657945   8.324510   7.929910 \n",
+       "1255_g_at              3.819819   3.945889   3.868008   3.988359   3.737851 \n",
+       "1294_at                7.369075   7.193545   6.992804   6.923932   6.750610 \n",
+       "1316_at                6.601119   6.586982   6.825374   7.203972   6.899376 \n",
+       "1320_at                6.150733   5.606746   5.091461   5.504215   5.424244 \n",
+       "1405_i_at              3.782331   3.728325   3.571723   3.184415   3.557341 \n",
+       "1431_at                4.847049   5.469413   5.798242   5.151788   5.640904 \n",
+       "1438_at                6.774806   6.686807   6.604931   6.587042   6.511757 \n",
+       "1487_at                7.706115   7.828210   7.819315   7.912187   8.081897 \n",
+       "1494_f_at              6.390373   6.577887   6.288943   6.478263   6.585678 \n",
+       "1552256_a_at           9.362331   8.718513   8.591590   8.592559   8.329391 \n",
+       "1552257_a_at           8.697499   8.414870   8.847506   8.196645   8.568110 \n",
+       "1552258_at             4.313353   4.327252   4.398854   4.482609   4.495425 \n",
+       "1552261_at             5.797263   5.831505   6.022026   5.894776   5.894776 \n",
+       "1552263_at             5.675409   5.146800   5.058240   5.103935   4.654277 \n",
+       "1552264_a_at           8.324661   8.340505   6.973281   7.972402   8.366196 \n",
+       "1552266_at             3.820735   3.955640   3.977324   3.929908   4.143071 \n",
+       "1552269_at             3.919705   3.734443   3.657639   3.721431   3.817650 \n",
+       "1552271_at             6.110168   6.334092   6.402241   6.145285   6.181203 \n",
+       "1552272_a_at           5.892740   6.296684   6.399330   5.895347   6.084049 \n",
+       "1552274_at             8.750927   9.062672   8.645766   8.964666   8.698250 \n",
+       "1552275_s_at           8.785358   9.611767   8.689897   9.176437   8.891458 \n",
+       "1552276_a_at           6.254009   6.044629   5.795907   6.044629   6.056319 \n",
+       "1552277_a_at           7.594721   7.589296   7.464715   7.308178   7.855467 \n",
+       "1552278_a_at           5.697786   5.590875   5.621722   5.650539   5.429471 \n",
+       "1552279_a_at           8.121292   7.895979   7.595977   7.793645   7.673699 \n",
+       "1552280_at             3.779434   3.989585   4.023921   4.107412   4.168360 \n",
+       "...                   ...        ...        ...        ...        ...       \n",
+       "AFFX-PheX-5_at         7.753865   5.087429   5.177416   4.917430   4.953915 \n",
+       "AFFX-PheX-M_at         8.611980   6.075300   6.330502   5.523431   6.010015 \n",
+       "AFFX-ThrX-3_at        10.582326   8.081044   8.899869   7.596045   8.466992 \n",
+       "AFFX-ThrX-5_at         8.268824   5.748661   5.830651   5.385794   5.596389 \n",
+       "AFFX-ThrX-M_at         9.175363   6.531044   6.944570   6.162669   6.428577 \n",
+       "AFFX-TrpnX-3_at        2.971427   2.936306   3.084930   3.098125   2.847959 \n",
+       "AFFX-TrpnX-5_at        3.793256   3.738941   3.884290   3.831968   3.753779 \n",
+       "AFFX-TrpnX-M_at        3.586808   3.699143   3.797787   3.921248   3.676281 \n",
+       "AFFX-hum_alu_at       14.566045  14.618384  14.546660  14.625548  14.513824 \n",
+       "AFFX-r2-Bs-dap-3_at   11.410977   9.448124   9.983545   9.205226   9.595558 \n",
+       "AFFX-r2-Bs-dap-5_at    9.976872   7.267021   7.145449   6.898534   6.561842 \n",
+       "AFFX-r2-Bs-dap-M_at   10.871564   8.451830   8.732436   8.255073   8.588369 \n",
+       "AFFX-r2-Bs-lys-3_at    8.008636   5.622182   6.404322   5.112151   6.003597 \n",
+       "AFFX-r2-Bs-lys-5_at    8.075753   4.903934   5.235062   4.282676   5.229519 \n",
+       "AFFX-r2-Bs-lys-M_at    8.066866   5.180663   6.175080   5.438911   5.877276 \n",
+       "AFFX-r2-Bs-phe-3_at    9.510853   7.266315   7.841255   6.693504   7.693326 \n",
+       "AFFX-r2-Bs-phe-5_at    8.514929   5.343768   5.888240   5.198029   5.466486 \n",
+       "AFFX-r2-Bs-phe-M_at    8.869874   6.290796   6.735115   6.086613   6.272251 \n",
+       "AFFX-r2-Bs-thr-3_s_at 10.939619   8.346147   9.232065   7.982263   8.945963 \n",
+       "AFFX-r2-Bs-thr-5_s_at  9.181312   6.525439   6.663722   6.134065   5.979761 \n",
+       "AFFX-r2-Bs-thr-M_s_at  9.952070   7.300751   7.622274   6.821974   7.285899 \n",
+       "AFFX-r2-Ec-bioB-3_at   8.679083   8.282167   8.706168   8.487556   7.942436 \n",
+       "AFFX-r2-Ec-bioB-5_at   8.472914   8.087888   8.453219   8.221732   7.546716 \n",
+       "AFFX-r2-Ec-bioB-M_at   8.138846   7.803547   8.176353   7.921736   7.157207 \n",
+       "AFFX-r2-Ec-bioC-3_at   9.729550   9.607061   9.665548   9.828510   8.764607 \n",
+       "AFFX-r2-Ec-bioC-5_at   9.443262   9.287833   9.453447   9.585416   8.307960 \n",
+       "AFFX-r2-Ec-bioD-3_at  12.086754  11.806535  12.061832  12.055097  11.367981 \n",
+       "AFFX-r2-Ec-bioD-5_at  11.709715  11.408607  11.686138  11.679503  10.899228 \n",
+       "AFFX-r2-P1-cre-3_at   13.632617  13.449448  13.697584  13.661466  13.222939 \n",
+       "AFFX-r2-P1-cre-5_at   13.420402  13.236806  13.489278  13.421223  12.915797 \n",
+       "                      GSM1176260 GSM1176261 GSM1176262 GSM1176263 GSM1176264\n",
+       "1007_s_at             11.074348  11.413331  11.056907  10.478296  10.614361 \n",
+       "1053_at                5.982559   5.999747   6.474815   6.540567   6.742131 \n",
+       "117_at                 5.609305   6.239065   6.285355   5.909607   5.895048 \n",
+       "121_at                 8.091168   8.081502   7.855752   8.242146   8.040336 \n",
+       "1255_g_at              3.796640   3.732672   3.683059   4.021211   3.950353 \n",
+       "1294_at                7.197197   7.320394   6.973735   6.851890   6.832457 \n",
+       "1316_at                7.134999   6.668674   6.756066   6.874190   6.810718 \n",
+       "1320_at                5.534967   5.841806   5.628757   5.528641   5.647755 \n",
+       "1405_i_at              3.825010   3.615014   3.650234   3.274420   3.284271 \n",
+       "1431_at                5.255664   4.704552   4.989192   4.596708   5.392479 \n",
+       "1438_at                6.298790   6.702173   6.546596   6.619511   6.555939 \n",
+       "1487_at                8.285492   8.268455   7.636757   7.923816   7.951651 \n",
+       "1494_f_at              6.513600   6.715245   6.366885   6.504828   6.413843 \n",
+       "1552256_a_at           9.397464   8.829132   8.447496   8.271936   8.543581 \n",
+       "1552257_a_at           8.601528   8.490217   8.612535   8.501805   8.624339 \n",
+       "1552258_at             4.455037   4.549402   4.381214   4.350495   4.604430 \n",
+       "1552261_at             5.974027   5.901981   5.846366   5.870412   5.761259 \n",
+       "1552263_at             5.076807   5.127467   5.137724   5.107533   4.828835 \n",
+       "1552264_a_at           7.102428   8.088234   8.171386   8.101570   8.879456 \n",
+       "1552266_at             3.813509   3.711120   3.840705   3.824750   4.095737 \n",
+       "1552269_at             3.569603   3.883896   3.569189   3.764275   3.719527 \n",
+       "1552271_at             6.027597   6.004122   6.006540   6.042873   6.332343 \n",
+       "1552272_a_at           6.377178   6.012381   5.745249   5.875956   5.952970 \n",
+       "1552274_at             8.771156   8.359881   8.516994   7.948101   7.776840 \n",
+       "1552275_s_at           8.909551   8.382955   8.608337   7.844931   8.422443 \n",
+       "1552276_a_at           6.082581   6.290385   5.991400   5.976458   6.140199 \n",
+       "1552277_a_at           7.190385   7.108467   7.461946   7.410497   8.125045 \n",
+       "1552278_a_at           5.310799   5.262553   5.208677   4.979963   5.522697 \n",
+       "1552279_a_at           7.865108   7.980892   7.567007   7.478499   7.808391 \n",
+       "1552280_at             3.959540   4.091007   3.967799   3.938910   3.800059 \n",
+       "...                   ...        ...        ...        ...        ...       \n",
+       "AFFX-PheX-5_at         6.386600   5.490563   6.939214   6.105304   4.528936 \n",
+       "AFFX-PheX-M_at         7.472272   6.594336   7.903279   6.891795   5.190437 \n",
+       "AFFX-ThrX-3_at        10.246990   9.441946   9.735075   9.126939   7.116208 \n",
+       "AFFX-ThrX-5_at         6.823877   6.074154   7.455655   7.029249   5.211148 \n",
+       "AFFX-ThrX-M_at         8.012215   7.157134   8.454932   7.786200   5.529158 \n",
+       "AFFX-TrpnX-3_at        3.187383   3.309404   3.030723   3.176019   3.129184 \n",
+       "AFFX-TrpnX-5_at        3.653643   3.820788   3.882141   3.758519   3.775818 \n",
+       "AFFX-TrpnX-M_at        3.977565   4.140764   3.794589   3.924411   3.831404 \n",
+       "AFFX-hum_alu_at       14.588642  14.601224  14.630576  14.635498  14.574806 \n",
+       "AFFX-r2-Bs-dap-3_at   11.231852  10.498969  10.986092  10.544919   8.436107 \n",
+       "AFFX-r2-Bs-dap-5_at    8.038808   7.178967   9.279901   8.810423   6.482534 \n",
+       "AFFX-r2-Bs-dap-M_at    9.752247   9.026129  10.376856   9.892273   7.409603 \n",
+       "AFFX-r2-Bs-lys-3_at    8.037970   6.954087   6.936265   6.744464   5.055491 \n",
+       "AFFX-r2-Bs-lys-5_at    6.856097   5.770748   7.274403   6.410631   4.590119 \n",
+       "AFFX-r2-Bs-lys-M_at    7.484622   6.468593   7.244033   6.520814   4.491910 \n",
+       "AFFX-r2-Bs-phe-3_at    9.068351   8.398361   8.789336   7.943606   6.284697 \n",
+       "AFFX-r2-Bs-phe-5_at    6.969828   5.872758   7.545012   6.598480   4.962651 \n",
+       "AFFX-r2-Bs-phe-M_at    7.856569   7.051055   8.149247   7.493264   5.453053 \n",
+       "AFFX-r2-Bs-thr-3_s_at 10.639913   9.722875  10.186336   9.447309   7.468169 \n",
+       "AFFX-r2-Bs-thr-5_s_at  7.735731   6.865726   8.435383   7.697690   5.861029 \n",
+       "AFFX-r2-Bs-thr-M_s_at  8.796732   8.059699   9.145913   8.566722   6.548489 \n",
+       "AFFX-r2-Ec-bioB-3_at   9.366093   9.121303   8.891166   8.851962   8.220907 \n",
+       "AFFX-r2-Ec-bioB-5_at   9.148523   8.915800   8.748165   8.455820   7.739492 \n",
+       "AFFX-r2-Ec-bioB-M_at   8.450128   8.161739   8.401908   8.209351   7.536998 \n",
+       "AFFX-r2-Ec-bioC-3_at  10.511100  10.336114   9.909891  10.124248   9.435038 \n",
+       "AFFX-r2-Ec-bioC-5_at   9.965821   9.757906   9.675825   9.835681   9.155918 \n",
+       "AFFX-r2-Ec-bioD-3_at  12.529221  12.374249  12.240145  12.200857  11.611514 \n",
+       "AFFX-r2-Ec-bioD-5_at  12.110184  12.075080  11.988298  11.854230  11.213257 \n",
+       "AFFX-r2-P1-cre-3_at   13.821708  13.727460  13.787072  13.657255  13.324372 \n",
+       "AFFX-r2-P1-cre-5_at   13.627229  13.368026  13.512995  13.533677  13.141010 \n",
+       "                      ... GSM1176266 GSM1176267 GSM1176268 GSM1176269\n",
+       "1007_s_at             ... 10.950073  10.501268  11.136377  10.467003 \n",
+       "1053_at               ...  6.535896   6.212934   6.245565   6.408864 \n",
+       "117_at                ...  5.935832   6.518781   6.049684   5.951591 \n",
+       "121_at                ...  8.138732   8.093533   8.089327   8.066675 \n",
+       "1255_g_at             ...  3.836916   3.875336   4.081044   3.881884 \n",
+       "1294_at               ...  6.800074   6.987080   7.432148   6.872634 \n",
+       "1316_at               ...  6.702531   7.339148   7.234046   7.131753 \n",
+       "1320_at               ...  5.576175   5.529603   5.568394   5.395282 \n",
+       "1405_i_at             ...  3.362552   3.562881   3.639149   3.447854 \n",
+       "1431_at               ...  5.591802   4.948590   4.810177   4.854039 \n",
+       "1438_at               ...  6.453791   6.455532   6.515195   6.504984 \n",
+       "1487_at               ...  7.791367   8.442272   8.215463   8.110887 \n",
+       "1494_f_at             ...  6.449829   6.475083   6.629924   6.417927 \n",
+       "1552256_a_at          ...  8.601963   8.949789   9.048324   8.476308 \n",
+       "1552257_a_at          ...  8.162377   8.538727   8.593224   8.511024 \n",
+       "1552258_at            ...  4.541372   4.535059   4.425425   4.604328 \n",
+       "1552261_at            ...  6.204443   5.963474   5.610246   5.764205 \n",
+       "1552263_at            ...  4.581400   5.386770   5.370842   5.429385 \n",
+       "1552264_a_at          ...  8.625262   7.794456   7.624301   7.588305 \n",
+       "1552266_at            ...  3.766496   3.933370   3.787524   3.996983 \n",
+       "1552269_at            ...  3.637961   3.814737   3.930892   3.727087 \n",
+       "1552271_at            ...  6.083506   6.159245   6.314294   5.751871 \n",
+       "1552272_a_at          ...  5.796880   5.916038   5.825430   5.508971 \n",
+       "1552274_at            ...  8.473600   8.360724   8.519857   8.935342 \n",
+       "1552275_s_at          ...  9.087027   8.586831   8.331773   8.805994 \n",
+       "1552276_a_at          ...  6.323999   6.044629   6.093164   5.635828 \n",
+       "1552277_a_at          ...  7.570590   7.296906   7.116702   7.521706 \n",
+       "1552278_a_at          ...  5.425018   5.179512   5.686408   5.560351 \n",
+       "1552279_a_at          ...  7.761978   7.726665   7.933197   7.640038 \n",
+       "1552280_at            ...  3.919995   3.937926   3.952089   3.708196 \n",
+       "...                       ...        ...        ...        ...       \n",
+       "AFFX-PheX-5_at        ...  4.303124   5.653855   6.621218   6.739218 \n",
+       "AFFX-PheX-M_at        ...  5.053801   6.453178   7.550527   7.823544 \n",
+       "AFFX-ThrX-3_at        ...  6.751450   8.385291   9.906039   9.629002 \n",
+       "AFFX-ThrX-5_at        ...  4.901815   6.188948   7.569088   7.496334 \n",
+       "AFFX-ThrX-M_at        ...  4.945069   6.973724   8.429400   8.319929 \n",
+       "AFFX-TrpnX-3_at       ...  3.119100   2.919815   3.112240   3.035649 \n",
+       "AFFX-TrpnX-5_at       ...  3.823010   3.810282   3.873248   3.842521 \n",
+       "AFFX-TrpnX-M_at       ...  3.918006   4.120546   3.976871   3.891728 \n",
+       "AFFX-hum_alu_at       ... 14.588855  14.597288  14.588642  14.597288 \n",
+       "AFFX-r2-Bs-dap-3_at   ...  7.666732  10.201282  10.934100  11.094863 \n",
+       "AFFX-r2-Bs-dap-5_at   ...  5.833645   8.055644   8.940422   9.485966 \n",
+       "AFFX-r2-Bs-dap-M_at   ...  6.803270   9.177587  10.167854  10.203665 \n",
+       "AFFX-r2-Bs-lys-3_at   ...  4.487732   5.993812   7.139189   7.305628 \n",
+       "AFFX-r2-Bs-lys-5_at   ...  3.987658   5.625004   6.837261   7.208497 \n",
+       "AFFX-r2-Bs-lys-M_at   ...  4.181556   6.163382   7.408022   7.522169 \n",
+       "AFFX-r2-Bs-phe-3_at   ...  5.467548   7.742471   8.669393   8.647518 \n",
+       "AFFX-r2-Bs-phe-5_at   ...  4.666759   6.085156   7.224356   7.723034 \n",
+       "AFFX-r2-Bs-phe-M_at   ...  4.934678   6.677291   7.914306   8.199506 \n",
+       "AFFX-r2-Bs-thr-3_s_at ...  6.821701   8.708765  10.220752  10.033351 \n",
+       "AFFX-r2-Bs-thr-5_s_at ...  5.309116   6.906879   8.573490   8.477676 \n",
+       "AFFX-r2-Bs-thr-M_s_at ...  6.170361   7.704222   9.218303   8.991092 \n",
+       "AFFX-r2-Ec-bioB-3_at  ...  8.363878   8.927124   9.291020   8.815105 \n",
+       "AFFX-r2-Ec-bioB-5_at  ...  8.044479   8.593133   9.034046   8.551207 \n",
+       "AFFX-r2-Ec-bioB-M_at  ...  7.760487   8.186198   8.538407   8.370121 \n",
+       "AFFX-r2-Ec-bioC-3_at  ...  9.678988   9.998565  10.203119  10.150541 \n",
+       "AFFX-r2-Ec-bioC-5_at  ...  9.381289   9.785571   9.927797   9.897539 \n",
+       "AFFX-r2-Ec-bioD-3_at  ... 11.786142  12.299527  12.587375  12.216209 \n",
+       "AFFX-r2-Ec-bioD-5_at  ... 11.441561  11.905166  12.194392  11.885306 \n",
+       "AFFX-r2-P1-cre-3_at   ... 13.448898  13.693984  13.848986  13.754332 \n",
+       "AFFX-r2-P1-cre-5_at   ... 13.275303  13.516524  13.668968  13.457694 \n",
+       "                      GSM1176270 GSM1176271 GSM1176272 GSM1176273 GSM1176274\n",
+       "1007_s_at             11.718392  10.790970  11.319858  10.776361  10.334913 \n",
+       "1053_at                6.530506   6.411202   6.470390   6.419380   6.574940 \n",
+       "117_at                 6.061524   5.983000   5.619935   6.250090   6.154772 \n",
+       "121_at                 8.164637   8.266291   7.572720   8.200812   8.018520 \n",
+       "1255_g_at              3.741611   3.945731   3.750488   3.793629   3.838652 \n",
+       "1294_at                7.167685   6.857970   7.029640   6.960049   6.940760 \n",
+       "1316_at                6.387715   6.816890   6.633612   6.853167   6.354731 \n",
+       "1320_at                5.657006   5.716537   5.552141   5.551413   5.532686 \n",
+       "1405_i_at              3.300229   3.309696   3.153574   3.354396   3.703154 \n",
+       "1431_at                5.290745   5.181874   5.453751   5.170753   5.456397 \n",
+       "1438_at                6.577480   6.584722   6.383714   6.379987   6.971332 \n",
+       "1487_at                7.640591   7.832205   7.817042   7.690468   7.786445 \n",
+       "1494_f_at              6.636063   6.393027   6.294682   6.535359   6.417300 \n",
+       "1552256_a_at           8.809367   8.870874   8.949219   8.449392   8.929093 \n",
+       "1552257_a_at           7.955478   8.522465   8.347364   8.355304   8.590359 \n",
+       "1552258_at             4.614390   4.423873   4.521535   4.382313   4.315008 \n",
+       "1552261_at             5.921528   6.104317   5.530204   6.224809   5.894776 \n",
+       "1552263_at             5.094331   5.107947   4.666272   4.995322   5.062052 \n",
+       "1552264_a_at           8.188726   8.267261   8.074125   8.175175   8.552087 \n",
+       "1552266_at             3.951336   3.809711   3.992155   3.795446   4.099049 \n",
+       "1552269_at             3.617505   3.731545   3.523330   3.764384   3.629525 \n",
+       "1552271_at             6.488354   6.029530   6.123723   6.128323   5.874709 \n",
+       "1552272_a_at           6.328999   5.960116   5.891691   5.753524   6.068135 \n",
+       "1552274_at            10.065768   8.371472   9.948759   8.793044   8.040068 \n",
+       "1552275_s_at          10.862696   8.777363  11.010732   9.174584   8.352657 \n",
+       "1552276_a_at           6.029205   6.044629   5.758098   6.044629   6.399440 \n",
+       "1552277_a_at           7.593237   7.411462   7.727254   7.314019   7.815433 \n",
+       "1552278_a_at           5.345122   5.364508   5.527396   5.714584   6.202156 \n",
+       "1552279_a_at           7.991422   7.707419   7.628095   7.843268   7.861883 \n",
+       "1552280_at             3.896885   3.948478   3.724873   4.013579   3.948478 \n",
+       "...                   ...        ...        ...        ...        ...       \n",
+       "AFFX-PheX-5_at         4.352966   4.475231   4.836996   4.617618   4.320077 \n",
+       "AFFX-PheX-M_at         4.792931   5.273350   5.876605   5.451922   5.518959 \n",
+       "AFFX-ThrX-3_at         6.889579   7.297441   8.268442   7.525707   7.992584 \n",
+       "AFFX-ThrX-5_at         4.981539   5.208556   5.353289   5.389969   5.144873 \n",
+       "AFFX-ThrX-M_at         5.157822   5.658759   6.397538   5.906092   5.663223 \n",
+       "AFFX-TrpnX-3_at        3.013416   3.001819   2.971770   3.103154   2.960769 \n",
+       "AFFX-TrpnX-5_at        3.837225   3.849942   3.791484   3.752834   3.805844 \n",
+       "AFFX-TrpnX-M_at        3.817679   3.881876   3.759550   3.995358   3.646415 \n",
+       "AFFX-hum_alu_at       14.568665  14.617603  14.522156  14.601224  14.535137 \n",
+       "AFFX-r2-Bs-dap-3_at    8.226814   8.852264   9.496438   8.924229   8.963801 \n",
+       "AFFX-r2-Bs-dap-5_at    5.589927   6.627732   6.730237   6.836962   5.795105 \n",
+       "AFFX-r2-Bs-dap-M_at    7.165208   7.723737   8.347360   7.983539   7.577300 \n",
+       "AFFX-r2-Bs-lys-3_at    4.775616   5.057790   6.009910   5.208711   5.795500 \n",
+       "AFFX-r2-Bs-lys-5_at    4.037665   4.245147   4.983173   4.697197   4.078701 \n",
+       "AFFX-r2-Bs-lys-M_at    4.114757   4.849459   5.563243   4.298629   4.894816 \n",
+       "AFFX-r2-Bs-phe-3_at    6.150494   6.475302   7.281304   6.704694   7.028392 \n",
+       "AFFX-r2-Bs-phe-5_at    4.589823   4.911464   5.321648   4.529445   4.706481 \n",
+       "AFFX-r2-Bs-phe-M_at    4.584651   5.443351   5.980611   5.390966   5.522687 \n",
+       "AFFX-r2-Bs-thr-3_s_at  7.158162   7.564540   8.743150   7.829487   8.361200 \n",
+       "AFFX-r2-Bs-thr-5_s_at  5.383403   5.739718   5.965031   5.989336   5.892345 \n",
+       "AFFX-r2-Bs-thr-M_s_at  6.161949   6.793152   7.187525   6.905292   6.885350 \n",
+       "AFFX-r2-Ec-bioB-3_at   8.134356   8.296001   8.492442   8.552419   8.158692 \n",
+       "AFFX-r2-Ec-bioB-5_at   7.629477   8.099967   8.428393   8.113851   7.835044 \n",
+       "AFFX-r2-Ec-bioB-M_at   7.586960   7.626970   8.277210   7.833928   7.427514 \n",
+       "AFFX-r2-Ec-bioC-3_at   9.251748   9.515532   9.464394   9.668392   9.239707 \n",
+       "AFFX-r2-Ec-bioC-5_at   9.226843   9.257708   9.242057   9.438409   8.979709 \n",
+       "AFFX-r2-Ec-bioD-3_at  11.565119  11.779647  11.842112  11.945873  11.597732 \n",
+       "AFFX-r2-Ec-bioD-5_at  11.162417  11.400982  11.558277  11.531237  11.147191 \n",
+       "AFFX-r2-P1-cre-3_at   13.288882  13.525171  13.641620  13.465233  13.392018 \n",
+       "AFFX-r2-P1-cre-5_at   13.024730  13.308660  13.439947  13.255931  13.173852 \n",
+       "                      GSM1176275\n",
+       "1007_s_at             10.416789 \n",
+       "1053_at                6.668882 \n",
+       "117_at                 6.296866 \n",
+       "121_at                 8.244127 \n",
+       "1255_g_at              3.918923 \n",
+       "1294_at                6.994505 \n",
+       "1316_at                6.596720 \n",
+       "1320_at                5.617723 \n",
+       "1405_i_at              3.638859 \n",
+       "1431_at                5.505757 \n",
+       "1438_at                6.868749 \n",
+       "1487_at                8.068235 \n",
+       "1494_f_at              6.543502 \n",
+       "1552256_a_at           8.435116 \n",
+       "1552257_a_at           8.498711 \n",
+       "1552258_at             4.783441 \n",
+       "1552261_at             6.179204 \n",
+       "1552263_at             5.133024 \n",
+       "1552264_a_at           8.687885 \n",
+       "1552266_at             3.809711 \n",
+       "1552269_at             3.679676 \n",
+       "1552271_at             6.306192 \n",
+       "1552272_a_at           6.134740 \n",
+       "1552274_at             8.482872 \n",
+       "1552275_s_at           8.838630 \n",
+       "1552276_a_at           6.308159 \n",
+       "1552277_a_at           7.885769 \n",
+       "1552278_a_at           5.701994 \n",
+       "1552279_a_at           7.649558 \n",
+       "1552280_at             4.073936 \n",
+       "...                   ...       \n",
+       "AFFX-PheX-5_at         4.868290 \n",
+       "AFFX-PheX-M_at         5.602110 \n",
+       "AFFX-ThrX-3_at         7.635090 \n",
+       "AFFX-ThrX-5_at         5.687565 \n",
+       "AFFX-ThrX-M_at         6.076720 \n",
+       "AFFX-TrpnX-3_at        3.009697 \n",
+       "AFFX-TrpnX-5_at        3.838224 \n",
+       "AFFX-TrpnX-M_at        4.027466 \n",
+       "AFFX-hum_alu_at       14.554458 \n",
+       "AFFX-r2-Bs-dap-3_at    9.041300 \n",
+       "AFFX-r2-Bs-dap-5_at    7.048327 \n",
+       "AFFX-r2-Bs-dap-M_at    8.211389 \n",
+       "AFFX-r2-Bs-lys-3_at    5.421912 \n",
+       "AFFX-r2-Bs-lys-5_at    4.289088 \n",
+       "AFFX-r2-Bs-lys-M_at    4.891261 \n",
+       "AFFX-r2-Bs-phe-3_at    6.888921 \n",
+       "AFFX-r2-Bs-phe-5_at    5.293696 \n",
+       "AFFX-r2-Bs-phe-M_at    5.594173 \n",
+       "AFFX-r2-Bs-thr-3_s_at  8.042726 \n",
+       "AFFX-r2-Bs-thr-5_s_at  6.087177 \n",
+       "AFFX-r2-Bs-thr-M_s_at  7.062640 \n",
+       "AFFX-r2-Ec-bioB-3_at   8.185058 \n",
+       "AFFX-r2-Ec-bioB-5_at   7.871678 \n",
+       "AFFX-r2-Ec-bioB-M_at   7.578554 \n",
+       "AFFX-r2-Ec-bioC-3_at   9.414715 \n",
+       "AFFX-r2-Ec-bioC-5_at   9.221727 \n",
+       "AFFX-r2-Ec-bioD-3_at  11.776464 \n",
+       "AFFX-r2-Ec-bioD-5_at  11.402756 \n",
+       "AFFX-r2-P1-cre-3_at   13.413832 \n",
+       "AFFX-r2-P1-cre-5_at   13.210520 "
+      ]
+     },
+     "metadata": {},
+     "output_type": "display_data"
+    }
+   ],
+   "source": [
+    "log2_exprs <- exprs(eset_rma)\n",
+    "#head(log2_exprs, 20)\n",
+    "log2_exprs"
+   ]
+  },
+  {
+   "cell_type": "code",
+   "execution_count": 15,
+   "metadata": {
+    "vscode": {
+     "languageId": "r"
+    }
+   },
+   "outputs": [],
+   "source": [
+    "mart <- useEnsembl(biomart = \"ensembl\", dataset = \"hsapiens_gene_ensembl\")"
+   ]
+  },
+  {
+   "cell_type": "code",
+   "execution_count": 16,
+   "metadata": {
+    "vscode": {
+     "languageId": "r"
+    }
+   },
+   "outputs": [
+    {
+     "data": {
+      "text/plain": [
+       "Object of class 'Mart':\n",
+       "  Using the ENSEMBL_MART_ENSEMBL BioMart database\n",
+       "  Using the hsapiens_gene_ensembl dataset"
+      ]
+     },
+     "metadata": {},
+     "output_type": "display_data"
+    }
+   ],
+   "source": [
+    "mart"
+   ]
+  },
+  {
+   "cell_type": "code",
+   "execution_count": 17,
+   "metadata": {
+    "vscode": {
+     "languageId": "r"
+    }
+   },
+   "outputs": [
+    {
+     "data": {
+      "text/html": [
+       "'GPL570'"
+      ],
+      "text/latex": [
+       "'GPL570'"
+      ],
+      "text/markdown": [
+       "'GPL570'"
+      ],
+      "text/plain": [
+       "[1] \"GPL570\""
+      ]
+     },
+     "metadata": {},
+     "output_type": "display_data"
+    }
+   ],
+   "source": [
+    "annotation(gse[[1]])\n",
+    "platform <- \"affy_hg_u133_plus_2\"\n",
+    "mapped_id <- getBM(attributes = c(platform, \"hgnc_symbol\", \"entrezgene_id\", \"ensembl_gene_id\"),\n",
+    "            filters = platform,\n",
+    "            values = rownames(log2_exprs),\n",
+    "            mart = mart\n",
+    ")"
+   ]
+  },
+  {
+   "cell_type": "code",
+   "execution_count": 18,
+   "metadata": {
+    "vscode": {
+     "languageId": "r"
+    }
+   },
+   "outputs": [
+    {
+     "data": {
+      "text/html": [
+       "<table class=\"dataframe\">\n",
+       "<caption>A data.frame: 55719 x 4</caption>\n",
+       "<thead>\n",
+       "\t<tr><th scope=col>affy_hg_u133_plus_2</th><th scope=col>hgnc_symbol</th><th scope=col>entrezgene_id</th><th scope=col>ensembl_gene_id</th></tr>\n",
+       "\t<tr><th scope=col>&lt;chr&gt;</th><th scope=col>&lt;chr&gt;</th><th scope=col>&lt;int&gt;</th><th scope=col>&lt;chr&gt;</th></tr>\n",
+       "</thead>\n",
+       "<tbody>\n",
+       "\t<tr><td>1553551_s_at</td><td>MT-ND1   </td><td>     4535</td><td>ENSG00000198888</td></tr>\n",
+       "\t<tr><td>1553551_s_at</td><td>MT-TI    </td><td>       NA</td><td>ENSG00000210100</td></tr>\n",
+       "\t<tr><td>1553551_s_at</td><td>MT-TM    </td><td>       NA</td><td>ENSG00000210112</td></tr>\n",
+       "\t<tr><td>1553551_s_at</td><td>MT-ND2   </td><td>     4536</td><td>ENSG00000198763</td></tr>\n",
+       "\t<tr><td>1553538_s_at</td><td>MT-CO1   </td><td>     4512</td><td>ENSG00000198804</td></tr>\n",
+       "\t<tr><td>1553570_x_at</td><td>MT-CO1   </td><td>     4512</td><td>ENSG00000198804</td></tr>\n",
+       "\t<tr><td>1553569_at  </td><td>MT-CO1   </td><td>     4512</td><td>ENSG00000198804</td></tr>\n",
+       "\t<tr><td>1553570_x_at</td><td>MT-TD    </td><td>       NA</td><td>ENSG00000210154</td></tr>\n",
+       "\t<tr><td>1553567_s_at</td><td>MT-TD    </td><td>       NA</td><td>ENSG00000210154</td></tr>\n",
+       "\t<tr><td>1553569_at  </td><td>MT-TD    </td><td>       NA</td><td>ENSG00000210154</td></tr>\n",
+       "\t<tr><td>1553570_x_at</td><td>MT-CO2   </td><td>     4513</td><td>ENSG00000198712</td></tr>\n",
+       "\t<tr><td>1553567_s_at</td><td>MT-CO2   </td><td>     4513</td><td>ENSG00000198712</td></tr>\n",
+       "\t<tr><td>1553569_at  </td><td>MT-CO2   </td><td>     4513</td><td>ENSG00000198712</td></tr>\n",
+       "\t<tr><td>1553567_s_at</td><td>MT-TK    </td><td>       NA</td><td>ENSG00000210156</td></tr>\n",
+       "\t<tr><td>1553567_s_at</td><td>MT-ATP8  </td><td>     4509</td><td>ENSG00000228253</td></tr>\n",
+       "\t<tr><td>1553588_at  </td><td>MT-ATP6  </td><td>     4508</td><td>ENSG00000198899</td></tr>\n",
+       "\t<tr><td>1553567_s_at</td><td>MT-ATP6  </td><td>     4508</td><td>ENSG00000198899</td></tr>\n",
+       "\t<tr><td>1553588_at  </td><td>MT-CO3   </td><td>     4514</td><td>ENSG00000198938</td></tr>\n",
+       "\t<tr><td>1553588_at  </td><td>MT-TG    </td><td>       NA</td><td>ENSG00000210164</td></tr>\n",
+       "\t<tr><td>1553588_at  </td><td>MT-ND3   </td><td>     4537</td><td>ENSG00000198840</td></tr>\n",
+       "\t<tr><td>1553588_at  </td><td>MT-TR    </td><td>       NA</td><td>ENSG00000210174</td></tr>\n",
+       "\t<tr><td>1553588_at  </td><td>MT-ND4L  </td><td>     4539</td><td>ENSG00000212907</td></tr>\n",
+       "\t<tr><td>1555653_at  </td><td>MT-ND5   </td><td>     4540</td><td>ENSG00000198786</td></tr>\n",
+       "\t<tr><td>1553575_at  </td><td>MT-ND6   </td><td>     4541</td><td>ENSG00000198695</td></tr>\n",
+       "\t<tr><td>1553575_at  </td><td>MT-TE    </td><td>       NA</td><td>ENSG00000210194</td></tr>\n",
+       "\t<tr><td>1553474_at  </td><td>         </td><td>100288966</td><td>ENSG00000277630</td></tr>\n",
+       "\t<tr><td>1555865_at  </td><td>TOLLIP-DT</td><td>   255512</td><td>ENSG00000291427</td></tr>\n",
+       "\t<tr><td>1553633_s_at</td><td>SLC9B1P1 </td><td>       NA</td><td>ENSG00000183704</td></tr>\n",
+       "\t<tr><td>1552690_a_at</td><td>CACNA2D4 </td><td>    93589</td><td>ENSG00000284953</td></tr>\n",
+       "\t<tr><td>1558530_at  </td><td>LRTM2    </td><td>   654429</td><td>ENSG00000285383</td></tr>\n",
+       "\t<tr><td>...</td><td>...</td><td>...</td><td>...</td></tr>\n",
+       "\t<tr><td>37005_at   </td><td>NBL1     </td><td>100532736</td><td>ENSG00000158747</td></tr>\n",
+       "\t<tr><td>240634_x_at</td><td>         </td><td>    84809</td><td>ENSG00000291072</td></tr>\n",
+       "\t<tr><td>244848_at  </td><td>         </td><td>       NA</td><td>ENSG00000237188</td></tr>\n",
+       "\t<tr><td>244472_at  </td><td>TRABD2B  </td><td>   388630</td><td>ENSG00000269113</td></tr>\n",
+       "\t<tr><td>241707_at  </td><td>TRABD2B  </td><td>   388630</td><td>ENSG00000269113</td></tr>\n",
+       "\t<tr><td>242086_at  </td><td>SPATA6   </td><td>    54558</td><td>ENSG00000132122</td></tr>\n",
+       "\t<tr><td>37892_at   </td><td>COL11A1  </td><td>     1301</td><td>ENSG00000060718</td></tr>\n",
+       "\t<tr><td>242882_at  </td><td>RNF207   </td><td>   388591</td><td>ENSG00000158286</td></tr>\n",
+       "\t<tr><td>64942_at   </td><td>GPR153   </td><td>   387509</td><td>ENSG00000158292</td></tr>\n",
+       "\t<tr><td>244489_at  </td><td>THBS3-AS1</td><td>105371450</td><td>ENSG00000231064</td></tr>\n",
+       "\t<tr><td>242327_x_at</td><td>ESPN     </td><td>    83715</td><td>ENSG00000187017</td></tr>\n",
+       "\t<tr><td>242410_s_at</td><td>CACNA1E  </td><td>      777</td><td>ENSG00000198216</td></tr>\n",
+       "\t<tr><td>243707_at  </td><td>PRKACB-DT</td><td>       NA</td><td>ENSG00000271576</td></tr>\n",
+       "\t<tr><td>241290_at  </td><td>         </td><td>       NA</td><td>ENSG00000225605</td></tr>\n",
+       "\t<tr><td>39650_s_at </td><td>PCNX2    </td><td>    80003</td><td>ENSG00000135749</td></tr>\n",
+       "\t<tr><td>241450_at  </td><td>RSPO1    </td><td>   284654</td><td>ENSG00000169218</td></tr>\n",
+       "\t<tr><td>243717_at  </td><td>EPHA10   </td><td>   284656</td><td>ENSG00000183317</td></tr>\n",
+       "\t<tr><td>242381_x_at</td><td>         </td><td>       NA</td><td>ENSG00000227994</td></tr>\n",
+       "\t<tr><td>243623_at  </td><td>SLC1A7   </td><td>     6512</td><td>ENSG00000162383</td></tr>\n",
+       "\t<tr><td>240692_at  </td><td>         </td><td>       NA</td><td>ENSG00000223920</td></tr>\n",
+       "\t<tr><td>241853_at  </td><td>RTCA-AS1 </td><td>       NA</td><td>ENSG00000224616</td></tr>\n",
+       "\t<tr><td>241456_at  </td><td>FAM78B   </td><td>   149297</td><td>ENSG00000188859</td></tr>\n",
+       "\t<tr><td>241544_at  </td><td>FAM78B   </td><td>   149297</td><td>ENSG00000188859</td></tr>\n",
+       "\t<tr><td>243873_at  </td><td>TMCC2-AS1</td><td>       NA</td><td>ENSG00000225063</td></tr>\n",
+       "\t<tr><td>244080_at  </td><td>         </td><td>       NA</td><td>ENSG00000260805</td></tr>\n",
+       "\t<tr><td>244555_at  </td><td>         </td><td>       NA</td><td>ENSG00000288999</td></tr>\n",
+       "\t<tr><td>241753_at  </td><td>         </td><td>105373170</td><td>ENSG00000286071</td></tr>\n",
+       "\t<tr><td>244225_x_at</td><td>LMNA     </td><td>     4000</td><td>ENSG00000160789</td></tr>\n",
+       "\t<tr><td>243042_at  </td><td>MIGA1    </td><td>   374986</td><td>ENSG00000180488</td></tr>\n",
+       "\t<tr><td>242947_at  </td><td>         </td><td>       NA</td><td>ENSG00000272510</td></tr>\n",
+       "</tbody>\n",
+       "</table>\n"
+      ],
+      "text/latex": [
+       "A data.frame: 55719 x 4\n",
+       "\\begin{tabular}{llll}\n",
+       " affy\\_hg\\_u133\\_plus\\_2 & hgnc\\_symbol & entrezgene\\_id & ensembl\\_gene\\_id\\\\\n",
+       " <chr> & <chr> & <int> & <chr>\\\\\n",
+       "\\hline\n",
+       "\t 1553551\\_s\\_at & MT-ND1    &      4535 & ENSG00000198888\\\\\n",
+       "\t 1553551\\_s\\_at & MT-TI     &        NA & ENSG00000210100\\\\\n",
+       "\t 1553551\\_s\\_at & MT-TM     &        NA & ENSG00000210112\\\\\n",
+       "\t 1553551\\_s\\_at & MT-ND2    &      4536 & ENSG00000198763\\\\\n",
+       "\t 1553538\\_s\\_at & MT-CO1    &      4512 & ENSG00000198804\\\\\n",
+       "\t 1553570\\_x\\_at & MT-CO1    &      4512 & ENSG00000198804\\\\\n",
+       "\t 1553569\\_at   & MT-CO1    &      4512 & ENSG00000198804\\\\\n",
+       "\t 1553570\\_x\\_at & MT-TD     &        NA & ENSG00000210154\\\\\n",
+       "\t 1553567\\_s\\_at & MT-TD     &        NA & ENSG00000210154\\\\\n",
+       "\t 1553569\\_at   & MT-TD     &        NA & ENSG00000210154\\\\\n",
+       "\t 1553570\\_x\\_at & MT-CO2    &      4513 & ENSG00000198712\\\\\n",
+       "\t 1553567\\_s\\_at & MT-CO2    &      4513 & ENSG00000198712\\\\\n",
+       "\t 1553569\\_at   & MT-CO2    &      4513 & ENSG00000198712\\\\\n",
+       "\t 1553567\\_s\\_at & MT-TK     &        NA & ENSG00000210156\\\\\n",
+       "\t 1553567\\_s\\_at & MT-ATP8   &      4509 & ENSG00000228253\\\\\n",
+       "\t 1553588\\_at   & MT-ATP6   &      4508 & ENSG00000198899\\\\\n",
+       "\t 1553567\\_s\\_at & MT-ATP6   &      4508 & ENSG00000198899\\\\\n",
+       "\t 1553588\\_at   & MT-CO3    &      4514 & ENSG00000198938\\\\\n",
+       "\t 1553588\\_at   & MT-TG     &        NA & ENSG00000210164\\\\\n",
+       "\t 1553588\\_at   & MT-ND3    &      4537 & ENSG00000198840\\\\\n",
+       "\t 1553588\\_at   & MT-TR     &        NA & ENSG00000210174\\\\\n",
+       "\t 1553588\\_at   & MT-ND4L   &      4539 & ENSG00000212907\\\\\n",
+       "\t 1555653\\_at   & MT-ND5    &      4540 & ENSG00000198786\\\\\n",
+       "\t 1553575\\_at   & MT-ND6    &      4541 & ENSG00000198695\\\\\n",
+       "\t 1553575\\_at   & MT-TE     &        NA & ENSG00000210194\\\\\n",
+       "\t 1553474\\_at   &           & 100288966 & ENSG00000277630\\\\\n",
+       "\t 1555865\\_at   & TOLLIP-DT &    255512 & ENSG00000291427\\\\\n",
+       "\t 1553633\\_s\\_at & SLC9B1P1  &        NA & ENSG00000183704\\\\\n",
+       "\t 1552690\\_a\\_at & CACNA2D4  &     93589 & ENSG00000284953\\\\\n",
+       "\t 1558530\\_at   & LRTM2     &    654429 & ENSG00000285383\\\\\n",
+       "\t ... & ... & ... & ...\\\\\n",
+       "\t 37005\\_at    & NBL1      & 100532736 & ENSG00000158747\\\\\n",
+       "\t 240634\\_x\\_at &           &     84809 & ENSG00000291072\\\\\n",
+       "\t 244848\\_at   &           &        NA & ENSG00000237188\\\\\n",
+       "\t 244472\\_at   & TRABD2B   &    388630 & ENSG00000269113\\\\\n",
+       "\t 241707\\_at   & TRABD2B   &    388630 & ENSG00000269113\\\\\n",
+       "\t 242086\\_at   & SPATA6    &     54558 & ENSG00000132122\\\\\n",
+       "\t 37892\\_at    & COL11A1   &      1301 & ENSG00000060718\\\\\n",
+       "\t 242882\\_at   & RNF207    &    388591 & ENSG00000158286\\\\\n",
+       "\t 64942\\_at    & GPR153    &    387509 & ENSG00000158292\\\\\n",
+       "\t 244489\\_at   & THBS3-AS1 & 105371450 & ENSG00000231064\\\\\n",
+       "\t 242327\\_x\\_at & ESPN      &     83715 & ENSG00000187017\\\\\n",
+       "\t 242410\\_s\\_at & CACNA1E   &       777 & ENSG00000198216\\\\\n",
+       "\t 243707\\_at   & PRKACB-DT &        NA & ENSG00000271576\\\\\n",
+       "\t 241290\\_at   &           &        NA & ENSG00000225605\\\\\n",
+       "\t 39650\\_s\\_at  & PCNX2     &     80003 & ENSG00000135749\\\\\n",
+       "\t 241450\\_at   & RSPO1     &    284654 & ENSG00000169218\\\\\n",
+       "\t 243717\\_at   & EPHA10    &    284656 & ENSG00000183317\\\\\n",
+       "\t 242381\\_x\\_at &           &        NA & ENSG00000227994\\\\\n",
+       "\t 243623\\_at   & SLC1A7    &      6512 & ENSG00000162383\\\\\n",
+       "\t 240692\\_at   &           &        NA & ENSG00000223920\\\\\n",
+       "\t 241853\\_at   & RTCA-AS1  &        NA & ENSG00000224616\\\\\n",
+       "\t 241456\\_at   & FAM78B    &    149297 & ENSG00000188859\\\\\n",
+       "\t 241544\\_at   & FAM78B    &    149297 & ENSG00000188859\\\\\n",
+       "\t 243873\\_at   & TMCC2-AS1 &        NA & ENSG00000225063\\\\\n",
+       "\t 244080\\_at   &           &        NA & ENSG00000260805\\\\\n",
+       "\t 244555\\_at   &           &        NA & ENSG00000288999\\\\\n",
+       "\t 241753\\_at   &           & 105373170 & ENSG00000286071\\\\\n",
+       "\t 244225\\_x\\_at & LMNA      &      4000 & ENSG00000160789\\\\\n",
+       "\t 243042\\_at   & MIGA1     &    374986 & ENSG00000180488\\\\\n",
+       "\t 242947\\_at   &           &        NA & ENSG00000272510\\\\\n",
+       "\\end{tabular}\n"
+      ],
+      "text/markdown": [
+       "\n",
+       "A data.frame: 55719 x 4\n",
+       "\n",
+       "| affy_hg_u133_plus_2 &lt;chr&gt; | hgnc_symbol &lt;chr&gt; | entrezgene_id &lt;int&gt; | ensembl_gene_id &lt;chr&gt; |\n",
+       "|---|---|---|---|\n",
+       "| 1553551_s_at | MT-ND1    |      4535 | ENSG00000198888 |\n",
+       "| 1553551_s_at | MT-TI     |        NA | ENSG00000210100 |\n",
+       "| 1553551_s_at | MT-TM     |        NA | ENSG00000210112 |\n",
+       "| 1553551_s_at | MT-ND2    |      4536 | ENSG00000198763 |\n",
+       "| 1553538_s_at | MT-CO1    |      4512 | ENSG00000198804 |\n",
+       "| 1553570_x_at | MT-CO1    |      4512 | ENSG00000198804 |\n",
+       "| 1553569_at   | MT-CO1    |      4512 | ENSG00000198804 |\n",
+       "| 1553570_x_at | MT-TD     |        NA | ENSG00000210154 |\n",
+       "| 1553567_s_at | MT-TD     |        NA | ENSG00000210154 |\n",
+       "| 1553569_at   | MT-TD     |        NA | ENSG00000210154 |\n",
+       "| 1553570_x_at | MT-CO2    |      4513 | ENSG00000198712 |\n",
+       "| 1553567_s_at | MT-CO2    |      4513 | ENSG00000198712 |\n",
+       "| 1553569_at   | MT-CO2    |      4513 | ENSG00000198712 |\n",
+       "| 1553567_s_at | MT-TK     |        NA | ENSG00000210156 |\n",
+       "| 1553567_s_at | MT-ATP8   |      4509 | ENSG00000228253 |\n",
+       "| 1553588_at   | MT-ATP6   |      4508 | ENSG00000198899 |\n",
+       "| 1553567_s_at | MT-ATP6   |      4508 | ENSG00000198899 |\n",
+       "| 1553588_at   | MT-CO3    |      4514 | ENSG00000198938 |\n",
+       "| 1553588_at   | MT-TG     |        NA | ENSG00000210164 |\n",
+       "| 1553588_at   | MT-ND3    |      4537 | ENSG00000198840 |\n",
+       "| 1553588_at   | MT-TR     |        NA | ENSG00000210174 |\n",
+       "| 1553588_at   | MT-ND4L   |      4539 | ENSG00000212907 |\n",
+       "| 1555653_at   | MT-ND5    |      4540 | ENSG00000198786 |\n",
+       "| 1553575_at   | MT-ND6    |      4541 | ENSG00000198695 |\n",
+       "| 1553575_at   | MT-TE     |        NA | ENSG00000210194 |\n",
+       "| 1553474_at   | <!----> | 100288966 | ENSG00000277630 |\n",
+       "| 1555865_at   | TOLLIP-DT |    255512 | ENSG00000291427 |\n",
+       "| 1553633_s_at | SLC9B1P1  |        NA | ENSG00000183704 |\n",
+       "| 1552690_a_at | CACNA2D4  |     93589 | ENSG00000284953 |\n",
+       "| 1558530_at   | LRTM2     |    654429 | ENSG00000285383 |\n",
+       "| ... | ... | ... | ... |\n",
+       "| 37005_at    | NBL1      | 100532736 | ENSG00000158747 |\n",
+       "| 240634_x_at | <!----> |     84809 | ENSG00000291072 |\n",
+       "| 244848_at   | <!----> |        NA | ENSG00000237188 |\n",
+       "| 244472_at   | TRABD2B   |    388630 | ENSG00000269113 |\n",
+       "| 241707_at   | TRABD2B   |    388630 | ENSG00000269113 |\n",
+       "| 242086_at   | SPATA6    |     54558 | ENSG00000132122 |\n",
+       "| 37892_at    | COL11A1   |      1301 | ENSG00000060718 |\n",
+       "| 242882_at   | RNF207    |    388591 | ENSG00000158286 |\n",
+       "| 64942_at    | GPR153    |    387509 | ENSG00000158292 |\n",
+       "| 244489_at   | THBS3-AS1 | 105371450 | ENSG00000231064 |\n",
+       "| 242327_x_at | ESPN      |     83715 | ENSG00000187017 |\n",
+       "| 242410_s_at | CACNA1E   |       777 | ENSG00000198216 |\n",
+       "| 243707_at   | PRKACB-DT |        NA | ENSG00000271576 |\n",
+       "| 241290_at   | <!----> |        NA | ENSG00000225605 |\n",
+       "| 39650_s_at  | PCNX2     |     80003 | ENSG00000135749 |\n",
+       "| 241450_at   | RSPO1     |    284654 | ENSG00000169218 |\n",
+       "| 243717_at   | EPHA10    |    284656 | ENSG00000183317 |\n",
+       "| 242381_x_at | <!----> |        NA | ENSG00000227994 |\n",
+       "| 243623_at   | SLC1A7    |      6512 | ENSG00000162383 |\n",
+       "| 240692_at   | <!----> |        NA | ENSG00000223920 |\n",
+       "| 241853_at   | RTCA-AS1  |        NA | ENSG00000224616 |\n",
+       "| 241456_at   | FAM78B    |    149297 | ENSG00000188859 |\n",
+       "| 241544_at   | FAM78B    |    149297 | ENSG00000188859 |\n",
+       "| 243873_at   | TMCC2-AS1 |        NA | ENSG00000225063 |\n",
+       "| 244080_at   | <!----> |        NA | ENSG00000260805 |\n",
+       "| 244555_at   | <!----> |        NA | ENSG00000288999 |\n",
+       "| 241753_at   | <!----> | 105373170 | ENSG00000286071 |\n",
+       "| 244225_x_at | LMNA      |      4000 | ENSG00000160789 |\n",
+       "| 243042_at   | MIGA1     |    374986 | ENSG00000180488 |\n",
+       "| 242947_at   | <!----> |        NA | ENSG00000272510 |\n",
+       "\n"
+      ],
+      "text/plain": [
+       "      affy_hg_u133_plus_2 hgnc_symbol entrezgene_id ensembl_gene_id\n",
+       "1     1553551_s_at        MT-ND1           4535     ENSG00000198888\n",
+       "2     1553551_s_at        MT-TI              NA     ENSG00000210100\n",
+       "3     1553551_s_at        MT-TM              NA     ENSG00000210112\n",
+       "4     1553551_s_at        MT-ND2           4536     ENSG00000198763\n",
+       "5     1553538_s_at        MT-CO1           4512     ENSG00000198804\n",
+       "6     1553570_x_at        MT-CO1           4512     ENSG00000198804\n",
+       "7     1553569_at          MT-CO1           4512     ENSG00000198804\n",
+       "8     1553570_x_at        MT-TD              NA     ENSG00000210154\n",
+       "9     1553567_s_at        MT-TD              NA     ENSG00000210154\n",
+       "10    1553569_at          MT-TD              NA     ENSG00000210154\n",
+       "11    1553570_x_at        MT-CO2           4513     ENSG00000198712\n",
+       "12    1553567_s_at        MT-CO2           4513     ENSG00000198712\n",
+       "13    1553569_at          MT-CO2           4513     ENSG00000198712\n",
+       "14    1553567_s_at        MT-TK              NA     ENSG00000210156\n",
+       "15    1553567_s_at        MT-ATP8          4509     ENSG00000228253\n",
+       "16    1553588_at          MT-ATP6          4508     ENSG00000198899\n",
+       "17    1553567_s_at        MT-ATP6          4508     ENSG00000198899\n",
+       "18    1553588_at          MT-CO3           4514     ENSG00000198938\n",
+       "19    1553588_at          MT-TG              NA     ENSG00000210164\n",
+       "20    1553588_at          MT-ND3           4537     ENSG00000198840\n",
+       "21    1553588_at          MT-TR              NA     ENSG00000210174\n",
+       "22    1553588_at          MT-ND4L          4539     ENSG00000212907\n",
+       "23    1555653_at          MT-ND5           4540     ENSG00000198786\n",
+       "24    1553575_at          MT-ND6           4541     ENSG00000198695\n",
+       "25    1553575_at          MT-TE              NA     ENSG00000210194\n",
+       "26    1553474_at                      100288966     ENSG00000277630\n",
+       "27    1555865_at          TOLLIP-DT      255512     ENSG00000291427\n",
+       "28    1553633_s_at        SLC9B1P1           NA     ENSG00000183704\n",
+       "29    1552690_a_at        CACNA2D4        93589     ENSG00000284953\n",
+       "30    1558530_at          LRTM2          654429     ENSG00000285383\n",
+       "...   ...                 ...         ...           ...            \n",
+       "55690 37005_at            NBL1        100532736     ENSG00000158747\n",
+       "55691 240634_x_at                         84809     ENSG00000291072\n",
+       "55692 244848_at                              NA     ENSG00000237188\n",
+       "55693 244472_at           TRABD2B        388630     ENSG00000269113\n",
+       "55694 241707_at           TRABD2B        388630     ENSG00000269113\n",
+       "55695 242086_at           SPATA6          54558     ENSG00000132122\n",
+       "55696 37892_at            COL11A1          1301     ENSG00000060718\n",
+       "55697 242882_at           RNF207         388591     ENSG00000158286\n",
+       "55698 64942_at            GPR153         387509     ENSG00000158292\n",
+       "55699 244489_at           THBS3-AS1   105371450     ENSG00000231064\n",
+       "55700 242327_x_at         ESPN            83715     ENSG00000187017\n",
+       "55701 242410_s_at         CACNA1E           777     ENSG00000198216\n",
+       "55702 243707_at           PRKACB-DT          NA     ENSG00000271576\n",
+       "55703 241290_at                              NA     ENSG00000225605\n",
+       "55704 39650_s_at          PCNX2           80003     ENSG00000135749\n",
+       "55705 241450_at           RSPO1          284654     ENSG00000169218\n",
+       "55706 243717_at           EPHA10         284656     ENSG00000183317\n",
+       "55707 242381_x_at                            NA     ENSG00000227994\n",
+       "55708 243623_at           SLC1A7           6512     ENSG00000162383\n",
+       "55709 240692_at                              NA     ENSG00000223920\n",
+       "55710 241853_at           RTCA-AS1           NA     ENSG00000224616\n",
+       "55711 241456_at           FAM78B         149297     ENSG00000188859\n",
+       "55712 241544_at           FAM78B         149297     ENSG00000188859\n",
+       "55713 243873_at           TMCC2-AS1          NA     ENSG00000225063\n",
+       "55714 244080_at                              NA     ENSG00000260805\n",
+       "55715 244555_at                              NA     ENSG00000288999\n",
+       "55716 241753_at                       105373170     ENSG00000286071\n",
+       "55717 244225_x_at         LMNA             4000     ENSG00000160789\n",
+       "55718 243042_at           MIGA1          374986     ENSG00000180488\n",
+       "55719 242947_at                              NA     ENSG00000272510"
+      ]
+     },
+     "metadata": {},
+     "output_type": "display_data"
+    }
+   ],
+   "source": [
+    "mapped_id"
+   ]
+  },
+  {
+   "cell_type": "code",
+   "execution_count": 19,
+   "metadata": {
+    "vscode": {
+     "languageId": "r"
+    }
+   },
+   "outputs": [],
+   "source": [
+    "#remove duplicates\n",
+    "unique_probes <- mapped_id[!(duplicated(mapped_id[,platform]) | duplicated(mapped_id[,platform], fromLast = TRUE)), ]\n",
+    "rownames(unique_probes) <- unique_probes$affy_hg_u133_plus2\n",
+    "write.table(unique_probes, paste0(\"AD_GSE48350_\", annotation(gse[[1]]),\"probe_mapping.tsv\"), sep = \"\\t\", row.names = F)"
+   ]
+  },
+  {
+   "cell_type": "code",
+   "execution_count": 30,
+   "metadata": {
+    "vscode": {
+     "languageId": "r"
+    }
+   },
+   "outputs": [
+    {
+     "data": {
+      "text/html": [
+       "<style>\n",
+       ".list-inline {list-style: none; margin:0; padding: 0}\n",
+       ".list-inline>li {display: inline-block}\n",
+       ".list-inline>li:not(:last-child)::after {content: \"\\00b7\"; padding: 0 .5ex}\n",
+       "</style>\n",
+       "<ol class=list-inline><li>'1553551_s_at'</li><li>'1553551_s_at'</li><li>'1553551_s_at'</li><li>'1553551_s_at'</li><li>'1553538_s_at'</li><li>'1553570_x_at'</li><li>'1553569_at'</li><li>'1553570_x_at'</li><li>'1553567_s_at'</li><li>'1553569_at'</li><li>'1553570_x_at'</li><li>'1553567_s_at'</li><li>'1553569_at'</li><li>'1553567_s_at'</li><li>'1553567_s_at'</li><li>'1553588_at'</li><li>'1553567_s_at'</li><li>'1553588_at'</li><li>'1553588_at'</li><li>'1553588_at'</li><li>'1553588_at'</li><li>'1553588_at'</li><li>'1555653_at'</li><li>'1553575_at'</li><li>'1553575_at'</li><li>'1553474_at'</li><li>'1555865_at'</li><li>'1553633_s_at'</li><li>'1552690_a_at'</li><li>'1558530_at'</li><li>'1556677_at'</li><li>'1558938_at'</li><li>'1558938_at'</li><li>'1554125_a_at'</li><li>'1555444_a_at'</li><li>'1555743_s_at'</li><li>'1555390_at'</li><li>'1552952_at'</li><li>'1559133_at'</li><li>'1559134_a_at'</li><li>'1552872_at'</li><li>'1554821_a_at'</li><li>'1556445_at'</li><li>'1557480_a_at'</li><li>'1559566_at'</li><li>'1556195_a_at'</li><li>'1554385_a_at'</li><li>'1554384_at'</li><li>'1552841_s_at'</li><li>'1555399_a_at'</li><li>'1555846_a_at'</li><li>'1559075_s_at'</li><li>'1559049_a_at'</li><li>'1559048_at'</li><li>'1555336_a_at'</li><li>'1555335_at'</li><li>'1556794_at'</li><li>'1553633_s_at'</li><li>'1559471_s_at'</li><li>'1559470_at'</li><li>'1555716_a_at'</li><li>'1553044_at'</li><li>'1556794_at'</li><li>'1554983_at'</li><li>'1552466_x_at'</li><li>'1554405_a_at'</li><li>'1557470_at'</li><li>'1555188_at'</li><li>'1554787_at'</li><li>'1556414_at'</li><li>'1553608_a_at'</li><li>'1553607_at'</li><li>'1553313_s_at'</li><li>'1559603_at'</li><li>'1554428_s_at'</li><li>'1555778_a_at'</li><li>'1553340_s_at'</li><li>'1556911_at'</li><li>'1555373_at'</li><li>'1556794_at'</li><li>'1552576_at'</li><li>'1552576_at'</li><li>'1555935_s_at'</li><li>'1552605_s_at'</li><li>'1552604_at'</li><li>'1555125_at'</li><li>'1555994_at'</li><li>'1555995_a_at'</li><li>'1552468_a_at'</li><li>'1552467_at'</li><li>'1557279_at'</li><li>'1557280_s_at'</li><li>'1557717_at'</li><li>'1554921_a_at'</li><li>'1554920_at'</li><li>'1557918_s_at'</li><li>'1553846_at'</li><li>'1553847_a_at'</li><li>'1557470_at'</li><li>'1554886_a_at'</li><li>'1556888_at'</li><li>'1556889_s_at'</li><li>'1553822_at'</li><li>'1553823_a_at'</li><li>'1553519_at'</li><li>'1553608_a_at'</li><li>'1552401_a_at'</li><li>'1553608_a_at'</li><li>'1552401_a_at'</li><li>'1552816_at'</li><li>'1556301_at'</li><li>'1554767_s_at'</li><li>'1552347_at'</li><li>'1553619_a_at'</li><li>'1553618_at'</li><li>'1556183_at'</li><li>'1554741_s_at'</li><li>'1558636_s_at'</li><li>'1554339_a_at'</li><li>'1556183_at'</li><li>'1555613_a_at'</li><li>'1554942_a_at'</li><li>'1554941_at'</li><li>'1553282_at'</li><li>'1555522_s_at'</li><li>'1553440_at'</li><li>'1552998_at'</li><li>'1556940_at'</li><li>'1556941_a_at'</li><li>'1553235_at'</li><li>'1553237_x_at'</li><li>'1556477_a_at'</li><li>'1556476_at'</li><li>'1556502_at'</li><li>'1555638_a_at'</li><li>'1554432_x_at'</li><li>'1554430_at'</li><li>'1554432_x_at'</li><li>'1554430_at'</li><li>'1557900_at'</li><li>'1557483_at'</li><li>'1557720_s_at'</li><li>'1553673_at'</li><li>'1554085_at'</li><li>'1555446_s_at'</li><li>'1553794_at'</li><li>'1553686_at'</li><li>'1554692_at'</li><li>'1555202_a_at'</li><li>'1554086_at'</li><li>'1552414_at'</li><li>'1552415_a_at'</li><li>'1557404_at'</li><li>'1552307_a_at'</li><li>'1557545_s_at'</li><li>'1553087_at'</li><li>'1552608_at'</li><li>'1553721_at'</li><li>'1553722_s_at'</li><li>'1554857_at'</li><li>'1556711_at'</li><li>'1558930_at'</li><li>'1553633_s_at'</li><li>'1553972_a_at'</li><li>'1553972_a_at'</li><li>'1557112_a_at'</li><li>'1559108_at'</li><li>'1559109_a_at'</li><li>'1556578_a_at'</li><li>'1553550_at'</li><li>'1553474_at'</li><li>'1555953_at'</li><li>'1555952_at'</li><li>'1554700_at'</li><li>'1558477_at'</li><li>'1553474_at'</li><li>'1553474_at'</li><li>'1556739_at'</li><li>'1558990_at'</li><li>'1552822_at'</li><li>'1553239_at'</li><li>'1554657_a_at'</li><li>'1557465_at'</li><li>'1557193_at'</li><li>'1555740_a_at'</li><li>'1554044_a_at'</li><li>'1555741_at'</li><li>'1555403_a_at'</li><li>'1558849_at'</li><li>'1558850_s_at'</li><li>'1558849_at'</li><li>'1558850_s_at'</li><li>'1556288_at'</li><li>'1552458_at'</li><li>'1552459_a_at'</li><li>'1559535_s_at'</li><li>'1559534_at'</li><li>'1553614_a_at'</li><li>'1558990_at'</li><li>'1554702_at'</li><li>...</li><li>'243484_x_at'</li><li>'242610_x_at'</li><li>'242787_at'</li><li>'40560_at'</li><li>'240570_at'</li><li>'43934_at'</li><li>'241198_s_at'</li><li>'241836_x_at'</li><li>'244571_s_at'</li><li>'56256_at'</li><li>'241828_x_at'</li><li>'240889_at'</li><li>'244735_at'</li><li>'57540_at'</li><li>'241824_at'</li><li>'244824_at'</li><li>'AFFX-HUMISGF3A/M97935_MA_at'</li><li>'AFFX-HUMISGF3A/M97935_5_at'</li><li>'AFFX-HUMISGF3A/M97935_MB_at'</li><li>'AFFX-HUMISGF3A/M97935_3_at'</li><li>'241049_at'</li><li>'243209_at'</li><li>'38487_at'</li><li>'244032_at'</li><li>'242561_at'</li><li>'244703_x_at'</li><li>'242986_at'</li><li>'244611_at'</li><li>'242413_at'</li><li>'243902_at'</li><li>'242030_at'</li><li>'240781_x_at'</li><li>'243396_at'</li><li>'242220_at'</li><li>'242482_at'</li><li>'242785_at'</li><li>'240806_at'</li><li>'37793_r_at'</li><li>'241896_at'</li><li>'242243_at'</li><li>'244319_at'</li><li>'243346_at'</li><li>'243864_at'</li><li>'244215_at'</li><li>'243921_at'</li><li>'241325_at'</li><li>'241325_at'</li><li>'32088_at'</li><li>'243100_at'</li><li>'244159_at'</li><li>'242049_s_at'</li><li>'240579_at'</li><li>'241879_at'</li><li>'242835_s_at'</li><li>'242313_at'</li><li>'241234_at'</li><li>'243699_at'</li><li>'244797_at'</li><li>'244174_at'</li><li>'243355_at'</li><li>'244448_at'</li><li>'243549_at'</li><li>'241535_at'</li><li>'242679_at'</li><li>'242771_at'</li><li>'242679_at'</li><li>'242771_at'</li><li>'244728_at'</li><li>'240891_at'</li><li>'62212_at'</li><li>'244438_at'</li><li>'241282_at'</li><li>'62212_at'</li><li>'242665_at'</li><li>'241393_at'</li><li>'244377_at'</li><li>'244690_at'</li><li>'243501_at'</li><li>'243836_at'</li><li>'242896_at'</li><li>'243052_at'</li><li>'244675_at'</li><li>'36499_at'</li><li>'241504_at'</li><li>'241075_at'</li><li>'241895_at'</li><li>'241895_at'</li><li>'242418_at'</li><li>'244352_at'</li><li>'243367_at'</li><li>'242133_s_at'</li><li>'243367_at'</li><li>'242133_s_at'</li><li>'241752_at'</li><li>'241379_at'</li><li>'241526_at'</li><li>'243244_at'</li><li>'244848_at'</li><li>'243902_at'</li><li>'243902_at'</li><li>'242569_at'</li><li>'243036_at'</li><li>'241895_at'</li><li>'244182_at'</li><li>'244419_at'</li><li>'244796_at'</li><li>'243087_at'</li><li>'242308_at'</li><li>'242825_at'</li><li>'244709_at'</li><li>'243433_at'</li><li>'244075_at'</li><li>'241607_at'</li><li>'244732_at'</li><li>'244744_at'</li><li>'243440_at'</li><li>'242054_s_at'</li><li>'241859_at'</li><li>'240821_at'</li><li>'242013_at'</li><li>'241918_at'</li><li>'242459_at'</li><li>'243648_at'</li><li>'242989_at'</li><li>'244354_at'</li><li>'242989_at'</li><li>'244354_at'</li><li>'241612_at'</li><li>'242284_at'</li><li>'243093_at'</li><li>'241372_at'</li><li>'244865_at'</li><li>'241389_at'</li><li>'244040_at'</li><li>'240696_at'</li><li>'243484_x_at'</li><li>'242610_x_at'</li><li>'243292_at'</li><li>'52078_at'</li><li>'243976_at'</li><li>'243484_x_at'</li><li>'242610_x_at'</li><li>'242610_x_at'</li><li>'244313_at'</li><li>'241091_at'</li><li>'244504_x_at'</li><li>'40829_at'</li><li>'244422_at'</li><li>'244718_at'</li><li>'242269_at'</li><li>'242269_at'</li><li>'242038_at'</li><li>'243297_at'</li><li>'240681_at'</li><li>'32625_at'</li><li>'244049_at'</li><li>'244618_at'</li><li>'243150_at'</li><li>'240819_at'</li><li>'243463_s_at'</li><li>'243551_at'</li><li>'243551_at'</li><li>'240700_at'</li><li>'240634_x_at'</li><li>'244379_at'</li><li>'244379_at'</li><li>'37022_at'</li><li>'243558_at'</li><li>'37012_at'</li><li>'37005_at'</li><li>'37005_at'</li><li>'240634_x_at'</li><li>'244848_at'</li><li>'244472_at'</li><li>'241707_at'</li><li>'242086_at'</li><li>'37892_at'</li><li>'242882_at'</li><li>'64942_at'</li><li>'244489_at'</li><li>'242327_x_at'</li><li>'242410_s_at'</li><li>'243707_at'</li><li>'241290_at'</li><li>'39650_s_at'</li><li>'241450_at'</li><li>'243717_at'</li><li>'242381_x_at'</li><li>'243623_at'</li><li>'240692_at'</li><li>'241853_at'</li><li>'241456_at'</li><li>'241544_at'</li><li>'243873_at'</li><li>'244080_at'</li><li>'244555_at'</li><li>'241753_at'</li><li>'244225_x_at'</li><li>'243042_at'</li><li>'242947_at'</li></ol>\n"
+      ],
+      "text/latex": [
+       "\\begin{enumerate*}\n",
+       "\\item '1553551\\_s\\_at'\n",
+       "\\item '1553551\\_s\\_at'\n",
+       "\\item '1553551\\_s\\_at'\n",
+       "\\item '1553551\\_s\\_at'\n",
+       "\\item '1553538\\_s\\_at'\n",
+       "\\item '1553570\\_x\\_at'\n",
+       "\\item '1553569\\_at'\n",
+       "\\item '1553570\\_x\\_at'\n",
+       "\\item '1553567\\_s\\_at'\n",
+       "\\item '1553569\\_at'\n",
+       "\\item '1553570\\_x\\_at'\n",
+       "\\item '1553567\\_s\\_at'\n",
+       "\\item '1553569\\_at'\n",
+       "\\item '1553567\\_s\\_at'\n",
+       "\\item '1553567\\_s\\_at'\n",
+       "\\item '1553588\\_at'\n",
+       "\\item '1553567\\_s\\_at'\n",
+       "\\item '1553588\\_at'\n",
+       "\\item '1553588\\_at'\n",
+       "\\item '1553588\\_at'\n",
+       "\\item '1553588\\_at'\n",
+       "\\item '1553588\\_at'\n",
+       "\\item '1555653\\_at'\n",
+       "\\item '1553575\\_at'\n",
+       "\\item '1553575\\_at'\n",
+       "\\item '1553474\\_at'\n",
+       "\\item '1555865\\_at'\n",
+       "\\item '1553633\\_s\\_at'\n",
+       "\\item '1552690\\_a\\_at'\n",
+       "\\item '1558530\\_at'\n",
+       "\\item '1556677\\_at'\n",
+       "\\item '1558938\\_at'\n",
+       "\\item '1558938\\_at'\n",
+       "\\item '1554125\\_a\\_at'\n",
+       "\\item '1555444\\_a\\_at'\n",
+       "\\item '1555743\\_s\\_at'\n",
+       "\\item '1555390\\_at'\n",
+       "\\item '1552952\\_at'\n",
+       "\\item '1559133\\_at'\n",
+       "\\item '1559134\\_a\\_at'\n",
+       "\\item '1552872\\_at'\n",
+       "\\item '1554821\\_a\\_at'\n",
+       "\\item '1556445\\_at'\n",
+       "\\item '1557480\\_a\\_at'\n",
+       "\\item '1559566\\_at'\n",
+       "\\item '1556195\\_a\\_at'\n",
+       "\\item '1554385\\_a\\_at'\n",
+       "\\item '1554384\\_at'\n",
+       "\\item '1552841\\_s\\_at'\n",
+       "\\item '1555399\\_a\\_at'\n",
+       "\\item '1555846\\_a\\_at'\n",
+       "\\item '1559075\\_s\\_at'\n",
+       "\\item '1559049\\_a\\_at'\n",
+       "\\item '1559048\\_at'\n",
+       "\\item '1555336\\_a\\_at'\n",
+       "\\item '1555335\\_at'\n",
+       "\\item '1556794\\_at'\n",
+       "\\item '1553633\\_s\\_at'\n",
+       "\\item '1559471\\_s\\_at'\n",
+       "\\item '1559470\\_at'\n",
+       "\\item '1555716\\_a\\_at'\n",
+       "\\item '1553044\\_at'\n",
+       "\\item '1556794\\_at'\n",
+       "\\item '1554983\\_at'\n",
+       "\\item '1552466\\_x\\_at'\n",
+       "\\item '1554405\\_a\\_at'\n",
+       "\\item '1557470\\_at'\n",
+       "\\item '1555188\\_at'\n",
+       "\\item '1554787\\_at'\n",
+       "\\item '1556414\\_at'\n",
+       "\\item '1553608\\_a\\_at'\n",
+       "\\item '1553607\\_at'\n",
+       "\\item '1553313\\_s\\_at'\n",
+       "\\item '1559603\\_at'\n",
+       "\\item '1554428\\_s\\_at'\n",
+       "\\item '1555778\\_a\\_at'\n",
+       "\\item '1553340\\_s\\_at'\n",
+       "\\item '1556911\\_at'\n",
+       "\\item '1555373\\_at'\n",
+       "\\item '1556794\\_at'\n",
+       "\\item '1552576\\_at'\n",
+       "\\item '1552576\\_at'\n",
+       "\\item '1555935\\_s\\_at'\n",
+       "\\item '1552605\\_s\\_at'\n",
+       "\\item '1552604\\_at'\n",
+       "\\item '1555125\\_at'\n",
+       "\\item '1555994\\_at'\n",
+       "\\item '1555995\\_a\\_at'\n",
+       "\\item '1552468\\_a\\_at'\n",
+       "\\item '1552467\\_at'\n",
+       "\\item '1557279\\_at'\n",
+       "\\item '1557280\\_s\\_at'\n",
+       "\\item '1557717\\_at'\n",
+       "\\item '1554921\\_a\\_at'\n",
+       "\\item '1554920\\_at'\n",
+       "\\item '1557918\\_s\\_at'\n",
+       "\\item '1553846\\_at'\n",
+       "\\item '1553847\\_a\\_at'\n",
+       "\\item '1557470\\_at'\n",
+       "\\item '1554886\\_a\\_at'\n",
+       "\\item '1556888\\_at'\n",
+       "\\item '1556889\\_s\\_at'\n",
+       "\\item '1553822\\_at'\n",
+       "\\item '1553823\\_a\\_at'\n",
+       "\\item '1553519\\_at'\n",
+       "\\item '1553608\\_a\\_at'\n",
+       "\\item '1552401\\_a\\_at'\n",
+       "\\item '1553608\\_a\\_at'\n",
+       "\\item '1552401\\_a\\_at'\n",
+       "\\item '1552816\\_at'\n",
+       "\\item '1556301\\_at'\n",
+       "\\item '1554767\\_s\\_at'\n",
+       "\\item '1552347\\_at'\n",
+       "\\item '1553619\\_a\\_at'\n",
+       "\\item '1553618\\_at'\n",
+       "\\item '1556183\\_at'\n",
+       "\\item '1554741\\_s\\_at'\n",
+       "\\item '1558636\\_s\\_at'\n",
+       "\\item '1554339\\_a\\_at'\n",
+       "\\item '1556183\\_at'\n",
+       "\\item '1555613\\_a\\_at'\n",
+       "\\item '1554942\\_a\\_at'\n",
+       "\\item '1554941\\_at'\n",
+       "\\item '1553282\\_at'\n",
+       "\\item '1555522\\_s\\_at'\n",
+       "\\item '1553440\\_at'\n",
+       "\\item '1552998\\_at'\n",
+       "\\item '1556940\\_at'\n",
+       "\\item '1556941\\_a\\_at'\n",
+       "\\item '1553235\\_at'\n",
+       "\\item '1553237\\_x\\_at'\n",
+       "\\item '1556477\\_a\\_at'\n",
+       "\\item '1556476\\_at'\n",
+       "\\item '1556502\\_at'\n",
+       "\\item '1555638\\_a\\_at'\n",
+       "\\item '1554432\\_x\\_at'\n",
+       "\\item '1554430\\_at'\n",
+       "\\item '1554432\\_x\\_at'\n",
+       "\\item '1554430\\_at'\n",
+       "\\item '1557900\\_at'\n",
+       "\\item '1557483\\_at'\n",
+       "\\item '1557720\\_s\\_at'\n",
+       "\\item '1553673\\_at'\n",
+       "\\item '1554085\\_at'\n",
+       "\\item '1555446\\_s\\_at'\n",
+       "\\item '1553794\\_at'\n",
+       "\\item '1553686\\_at'\n",
+       "\\item '1554692\\_at'\n",
+       "\\item '1555202\\_a\\_at'\n",
+       "\\item '1554086\\_at'\n",
+       "\\item '1552414\\_at'\n",
+       "\\item '1552415\\_a\\_at'\n",
+       "\\item '1557404\\_at'\n",
+       "\\item '1552307\\_a\\_at'\n",
+       "\\item '1557545\\_s\\_at'\n",
+       "\\item '1553087\\_at'\n",
+       "\\item '1552608\\_at'\n",
+       "\\item '1553721\\_at'\n",
+       "\\item '1553722\\_s\\_at'\n",
+       "\\item '1554857\\_at'\n",
+       "\\item '1556711\\_at'\n",
+       "\\item '1558930\\_at'\n",
+       "\\item '1553633\\_s\\_at'\n",
+       "\\item '1553972\\_a\\_at'\n",
+       "\\item '1553972\\_a\\_at'\n",
+       "\\item '1557112\\_a\\_at'\n",
+       "\\item '1559108\\_at'\n",
+       "\\item '1559109\\_a\\_at'\n",
+       "\\item '1556578\\_a\\_at'\n",
+       "\\item '1553550\\_at'\n",
+       "\\item '1553474\\_at'\n",
+       "\\item '1555953\\_at'\n",
+       "\\item '1555952\\_at'\n",
+       "\\item '1554700\\_at'\n",
+       "\\item '1558477\\_at'\n",
+       "\\item '1553474\\_at'\n",
+       "\\item '1553474\\_at'\n",
+       "\\item '1556739\\_at'\n",
+       "\\item '1558990\\_at'\n",
+       "\\item '1552822\\_at'\n",
+       "\\item '1553239\\_at'\n",
+       "\\item '1554657\\_a\\_at'\n",
+       "\\item '1557465\\_at'\n",
+       "\\item '1557193\\_at'\n",
+       "\\item '1555740\\_a\\_at'\n",
+       "\\item '1554044\\_a\\_at'\n",
+       "\\item '1555741\\_at'\n",
+       "\\item '1555403\\_a\\_at'\n",
+       "\\item '1558849\\_at'\n",
+       "\\item '1558850\\_s\\_at'\n",
+       "\\item '1558849\\_at'\n",
+       "\\item '1558850\\_s\\_at'\n",
+       "\\item '1556288\\_at'\n",
+       "\\item '1552458\\_at'\n",
+       "\\item '1552459\\_a\\_at'\n",
+       "\\item '1559535\\_s\\_at'\n",
+       "\\item '1559534\\_at'\n",
+       "\\item '1553614\\_a\\_at'\n",
+       "\\item '1558990\\_at'\n",
+       "\\item '1554702\\_at'\n",
+       "\\item ...\n",
+       "\\item '243484\\_x\\_at'\n",
+       "\\item '242610\\_x\\_at'\n",
+       "\\item '242787\\_at'\n",
+       "\\item '40560\\_at'\n",
+       "\\item '240570\\_at'\n",
+       "\\item '43934\\_at'\n",
+       "\\item '241198\\_s\\_at'\n",
+       "\\item '241836\\_x\\_at'\n",
+       "\\item '244571\\_s\\_at'\n",
+       "\\item '56256\\_at'\n",
+       "\\item '241828\\_x\\_at'\n",
+       "\\item '240889\\_at'\n",
+       "\\item '244735\\_at'\n",
+       "\\item '57540\\_at'\n",
+       "\\item '241824\\_at'\n",
+       "\\item '244824\\_at'\n",
+       "\\item 'AFFX-HUMISGF3A/M97935\\_MA\\_at'\n",
+       "\\item 'AFFX-HUMISGF3A/M97935\\_5\\_at'\n",
+       "\\item 'AFFX-HUMISGF3A/M97935\\_MB\\_at'\n",
+       "\\item 'AFFX-HUMISGF3A/M97935\\_3\\_at'\n",
+       "\\item '241049\\_at'\n",
+       "\\item '243209\\_at'\n",
+       "\\item '38487\\_at'\n",
+       "\\item '244032\\_at'\n",
+       "\\item '242561\\_at'\n",
+       "\\item '244703\\_x\\_at'\n",
+       "\\item '242986\\_at'\n",
+       "\\item '244611\\_at'\n",
+       "\\item '242413\\_at'\n",
+       "\\item '243902\\_at'\n",
+       "\\item '242030\\_at'\n",
+       "\\item '240781\\_x\\_at'\n",
+       "\\item '243396\\_at'\n",
+       "\\item '242220\\_at'\n",
+       "\\item '242482\\_at'\n",
+       "\\item '242785\\_at'\n",
+       "\\item '240806\\_at'\n",
+       "\\item '37793\\_r\\_at'\n",
+       "\\item '241896\\_at'\n",
+       "\\item '242243\\_at'\n",
+       "\\item '244319\\_at'\n",
+       "\\item '243346\\_at'\n",
+       "\\item '243864\\_at'\n",
+       "\\item '244215\\_at'\n",
+       "\\item '243921\\_at'\n",
+       "\\item '241325\\_at'\n",
+       "\\item '241325\\_at'\n",
+       "\\item '32088\\_at'\n",
+       "\\item '243100\\_at'\n",
+       "\\item '244159\\_at'\n",
+       "\\item '242049\\_s\\_at'\n",
+       "\\item '240579\\_at'\n",
+       "\\item '241879\\_at'\n",
+       "\\item '242835\\_s\\_at'\n",
+       "\\item '242313\\_at'\n",
+       "\\item '241234\\_at'\n",
+       "\\item '243699\\_at'\n",
+       "\\item '244797\\_at'\n",
+       "\\item '244174\\_at'\n",
+       "\\item '243355\\_at'\n",
+       "\\item '244448\\_at'\n",
+       "\\item '243549\\_at'\n",
+       "\\item '241535\\_at'\n",
+       "\\item '242679\\_at'\n",
+       "\\item '242771\\_at'\n",
+       "\\item '242679\\_at'\n",
+       "\\item '242771\\_at'\n",
+       "\\item '244728\\_at'\n",
+       "\\item '240891\\_at'\n",
+       "\\item '62212\\_at'\n",
+       "\\item '244438\\_at'\n",
+       "\\item '241282\\_at'\n",
+       "\\item '62212\\_at'\n",
+       "\\item '242665\\_at'\n",
+       "\\item '241393\\_at'\n",
+       "\\item '244377\\_at'\n",
+       "\\item '244690\\_at'\n",
+       "\\item '243501\\_at'\n",
+       "\\item '243836\\_at'\n",
+       "\\item '242896\\_at'\n",
+       "\\item '243052\\_at'\n",
+       "\\item '244675\\_at'\n",
+       "\\item '36499\\_at'\n",
+       "\\item '241504\\_at'\n",
+       "\\item '241075\\_at'\n",
+       "\\item '241895\\_at'\n",
+       "\\item '241895\\_at'\n",
+       "\\item '242418\\_at'\n",
+       "\\item '244352\\_at'\n",
+       "\\item '243367\\_at'\n",
+       "\\item '242133\\_s\\_at'\n",
+       "\\item '243367\\_at'\n",
+       "\\item '242133\\_s\\_at'\n",
+       "\\item '241752\\_at'\n",
+       "\\item '241379\\_at'\n",
+       "\\item '241526\\_at'\n",
+       "\\item '243244\\_at'\n",
+       "\\item '244848\\_at'\n",
+       "\\item '243902\\_at'\n",
+       "\\item '243902\\_at'\n",
+       "\\item '242569\\_at'\n",
+       "\\item '243036\\_at'\n",
+       "\\item '241895\\_at'\n",
+       "\\item '244182\\_at'\n",
+       "\\item '244419\\_at'\n",
+       "\\item '244796\\_at'\n",
+       "\\item '243087\\_at'\n",
+       "\\item '242308\\_at'\n",
+       "\\item '242825\\_at'\n",
+       "\\item '244709\\_at'\n",
+       "\\item '243433\\_at'\n",
+       "\\item '244075\\_at'\n",
+       "\\item '241607\\_at'\n",
+       "\\item '244732\\_at'\n",
+       "\\item '244744\\_at'\n",
+       "\\item '243440\\_at'\n",
+       "\\item '242054\\_s\\_at'\n",
+       "\\item '241859\\_at'\n",
+       "\\item '240821\\_at'\n",
+       "\\item '242013\\_at'\n",
+       "\\item '241918\\_at'\n",
+       "\\item '242459\\_at'\n",
+       "\\item '243648\\_at'\n",
+       "\\item '242989\\_at'\n",
+       "\\item '244354\\_at'\n",
+       "\\item '242989\\_at'\n",
+       "\\item '244354\\_at'\n",
+       "\\item '241612\\_at'\n",
+       "\\item '242284\\_at'\n",
+       "\\item '243093\\_at'\n",
+       "\\item '241372\\_at'\n",
+       "\\item '244865\\_at'\n",
+       "\\item '241389\\_at'\n",
+       "\\item '244040\\_at'\n",
+       "\\item '240696\\_at'\n",
+       "\\item '243484\\_x\\_at'\n",
+       "\\item '242610\\_x\\_at'\n",
+       "\\item '243292\\_at'\n",
+       "\\item '52078\\_at'\n",
+       "\\item '243976\\_at'\n",
+       "\\item '243484\\_x\\_at'\n",
+       "\\item '242610\\_x\\_at'\n",
+       "\\item '242610\\_x\\_at'\n",
+       "\\item '244313\\_at'\n",
+       "\\item '241091\\_at'\n",
+       "\\item '244504\\_x\\_at'\n",
+       "\\item '40829\\_at'\n",
+       "\\item '244422\\_at'\n",
+       "\\item '244718\\_at'\n",
+       "\\item '242269\\_at'\n",
+       "\\item '242269\\_at'\n",
+       "\\item '242038\\_at'\n",
+       "\\item '243297\\_at'\n",
+       "\\item '240681\\_at'\n",
+       "\\item '32625\\_at'\n",
+       "\\item '244049\\_at'\n",
+       "\\item '244618\\_at'\n",
+       "\\item '243150\\_at'\n",
+       "\\item '240819\\_at'\n",
+       "\\item '243463\\_s\\_at'\n",
+       "\\item '243551\\_at'\n",
+       "\\item '243551\\_at'\n",
+       "\\item '240700\\_at'\n",
+       "\\item '240634\\_x\\_at'\n",
+       "\\item '244379\\_at'\n",
+       "\\item '244379\\_at'\n",
+       "\\item '37022\\_at'\n",
+       "\\item '243558\\_at'\n",
+       "\\item '37012\\_at'\n",
+       "\\item '37005\\_at'\n",
+       "\\item '37005\\_at'\n",
+       "\\item '240634\\_x\\_at'\n",
+       "\\item '244848\\_at'\n",
+       "\\item '244472\\_at'\n",
+       "\\item '241707\\_at'\n",
+       "\\item '242086\\_at'\n",
+       "\\item '37892\\_at'\n",
+       "\\item '242882\\_at'\n",
+       "\\item '64942\\_at'\n",
+       "\\item '244489\\_at'\n",
+       "\\item '242327\\_x\\_at'\n",
+       "\\item '242410\\_s\\_at'\n",
+       "\\item '243707\\_at'\n",
+       "\\item '241290\\_at'\n",
+       "\\item '39650\\_s\\_at'\n",
+       "\\item '241450\\_at'\n",
+       "\\item '243717\\_at'\n",
+       "\\item '242381\\_x\\_at'\n",
+       "\\item '243623\\_at'\n",
+       "\\item '240692\\_at'\n",
+       "\\item '241853\\_at'\n",
+       "\\item '241456\\_at'\n",
+       "\\item '241544\\_at'\n",
+       "\\item '243873\\_at'\n",
+       "\\item '244080\\_at'\n",
+       "\\item '244555\\_at'\n",
+       "\\item '241753\\_at'\n",
+       "\\item '244225\\_x\\_at'\n",
+       "\\item '243042\\_at'\n",
+       "\\item '242947\\_at'\n",
+       "\\end{enumerate*}\n"
+      ],
+      "text/markdown": [
+       "1. '1553551_s_at'\n",
+       "2. '1553551_s_at'\n",
+       "3. '1553551_s_at'\n",
+       "4. '1553551_s_at'\n",
+       "5. '1553538_s_at'\n",
+       "6. '1553570_x_at'\n",
+       "7. '1553569_at'\n",
+       "8. '1553570_x_at'\n",
+       "9. '1553567_s_at'\n",
+       "10. '1553569_at'\n",
+       "11. '1553570_x_at'\n",
+       "12. '1553567_s_at'\n",
+       "13. '1553569_at'\n",
+       "14. '1553567_s_at'\n",
+       "15. '1553567_s_at'\n",
+       "16. '1553588_at'\n",
+       "17. '1553567_s_at'\n",
+       "18. '1553588_at'\n",
+       "19. '1553588_at'\n",
+       "20. '1553588_at'\n",
+       "21. '1553588_at'\n",
+       "22. '1553588_at'\n",
+       "23. '1555653_at'\n",
+       "24. '1553575_at'\n",
+       "25. '1553575_at'\n",
+       "26. '1553474_at'\n",
+       "27. '1555865_at'\n",
+       "28. '1553633_s_at'\n",
+       "29. '1552690_a_at'\n",
+       "30. '1558530_at'\n",
+       "31. '1556677_at'\n",
+       "32. '1558938_at'\n",
+       "33. '1558938_at'\n",
+       "34. '1554125_a_at'\n",
+       "35. '1555444_a_at'\n",
+       "36. '1555743_s_at'\n",
+       "37. '1555390_at'\n",
+       "38. '1552952_at'\n",
+       "39. '1559133_at'\n",
+       "40. '1559134_a_at'\n",
+       "41. '1552872_at'\n",
+       "42. '1554821_a_at'\n",
+       "43. '1556445_at'\n",
+       "44. '1557480_a_at'\n",
+       "45. '1559566_at'\n",
+       "46. '1556195_a_at'\n",
+       "47. '1554385_a_at'\n",
+       "48. '1554384_at'\n",
+       "49. '1552841_s_at'\n",
+       "50. '1555399_a_at'\n",
+       "51. '1555846_a_at'\n",
+       "52. '1559075_s_at'\n",
+       "53. '1559049_a_at'\n",
+       "54. '1559048_at'\n",
+       "55. '1555336_a_at'\n",
+       "56. '1555335_at'\n",
+       "57. '1556794_at'\n",
+       "58. '1553633_s_at'\n",
+       "59. '1559471_s_at'\n",
+       "60. '1559470_at'\n",
+       "61. '1555716_a_at'\n",
+       "62. '1553044_at'\n",
+       "63. '1556794_at'\n",
+       "64. '1554983_at'\n",
+       "65. '1552466_x_at'\n",
+       "66. '1554405_a_at'\n",
+       "67. '1557470_at'\n",
+       "68. '1555188_at'\n",
+       "69. '1554787_at'\n",
+       "70. '1556414_at'\n",
+       "71. '1553608_a_at'\n",
+       "72. '1553607_at'\n",
+       "73. '1553313_s_at'\n",
+       "74. '1559603_at'\n",
+       "75. '1554428_s_at'\n",
+       "76. '1555778_a_at'\n",
+       "77. '1553340_s_at'\n",
+       "78. '1556911_at'\n",
+       "79. '1555373_at'\n",
+       "80. '1556794_at'\n",
+       "81. '1552576_at'\n",
+       "82. '1552576_at'\n",
+       "83. '1555935_s_at'\n",
+       "84. '1552605_s_at'\n",
+       "85. '1552604_at'\n",
+       "86. '1555125_at'\n",
+       "87. '1555994_at'\n",
+       "88. '1555995_a_at'\n",
+       "89. '1552468_a_at'\n",
+       "90. '1552467_at'\n",
+       "91. '1557279_at'\n",
+       "92. '1557280_s_at'\n",
+       "93. '1557717_at'\n",
+       "94. '1554921_a_at'\n",
+       "95. '1554920_at'\n",
+       "96. '1557918_s_at'\n",
+       "97. '1553846_at'\n",
+       "98. '1553847_a_at'\n",
+       "99. '1557470_at'\n",
+       "100. '1554886_a_at'\n",
+       "101. '1556888_at'\n",
+       "102. '1556889_s_at'\n",
+       "103. '1553822_at'\n",
+       "104. '1553823_a_at'\n",
+       "105. '1553519_at'\n",
+       "106. '1553608_a_at'\n",
+       "107. '1552401_a_at'\n",
+       "108. '1553608_a_at'\n",
+       "109. '1552401_a_at'\n",
+       "110. '1552816_at'\n",
+       "111. '1556301_at'\n",
+       "112. '1554767_s_at'\n",
+       "113. '1552347_at'\n",
+       "114. '1553619_a_at'\n",
+       "115. '1553618_at'\n",
+       "116. '1556183_at'\n",
+       "117. '1554741_s_at'\n",
+       "118. '1558636_s_at'\n",
+       "119. '1554339_a_at'\n",
+       "120. '1556183_at'\n",
+       "121. '1555613_a_at'\n",
+       "122. '1554942_a_at'\n",
+       "123. '1554941_at'\n",
+       "124. '1553282_at'\n",
+       "125. '1555522_s_at'\n",
+       "126. '1553440_at'\n",
+       "127. '1552998_at'\n",
+       "128. '1556940_at'\n",
+       "129. '1556941_a_at'\n",
+       "130. '1553235_at'\n",
+       "131. '1553237_x_at'\n",
+       "132. '1556477_a_at'\n",
+       "133. '1556476_at'\n",
+       "134. '1556502_at'\n",
+       "135. '1555638_a_at'\n",
+       "136. '1554432_x_at'\n",
+       "137. '1554430_at'\n",
+       "138. '1554432_x_at'\n",
+       "139. '1554430_at'\n",
+       "140. '1557900_at'\n",
+       "141. '1557483_at'\n",
+       "142. '1557720_s_at'\n",
+       "143. '1553673_at'\n",
+       "144. '1554085_at'\n",
+       "145. '1555446_s_at'\n",
+       "146. '1553794_at'\n",
+       "147. '1553686_at'\n",
+       "148. '1554692_at'\n",
+       "149. '1555202_a_at'\n",
+       "150. '1554086_at'\n",
+       "151. '1552414_at'\n",
+       "152. '1552415_a_at'\n",
+       "153. '1557404_at'\n",
+       "154. '1552307_a_at'\n",
+       "155. '1557545_s_at'\n",
+       "156. '1553087_at'\n",
+       "157. '1552608_at'\n",
+       "158. '1553721_at'\n",
+       "159. '1553722_s_at'\n",
+       "160. '1554857_at'\n",
+       "161. '1556711_at'\n",
+       "162. '1558930_at'\n",
+       "163. '1553633_s_at'\n",
+       "164. '1553972_a_at'\n",
+       "165. '1553972_a_at'\n",
+       "166. '1557112_a_at'\n",
+       "167. '1559108_at'\n",
+       "168. '1559109_a_at'\n",
+       "169. '1556578_a_at'\n",
+       "170. '1553550_at'\n",
+       "171. '1553474_at'\n",
+       "172. '1555953_at'\n",
+       "173. '1555952_at'\n",
+       "174. '1554700_at'\n",
+       "175. '1558477_at'\n",
+       "176. '1553474_at'\n",
+       "177. '1553474_at'\n",
+       "178. '1556739_at'\n",
+       "179. '1558990_at'\n",
+       "180. '1552822_at'\n",
+       "181. '1553239_at'\n",
+       "182. '1554657_a_at'\n",
+       "183. '1557465_at'\n",
+       "184. '1557193_at'\n",
+       "185. '1555740_a_at'\n",
+       "186. '1554044_a_at'\n",
+       "187. '1555741_at'\n",
+       "188. '1555403_a_at'\n",
+       "189. '1558849_at'\n",
+       "190. '1558850_s_at'\n",
+       "191. '1558849_at'\n",
+       "192. '1558850_s_at'\n",
+       "193. '1556288_at'\n",
+       "194. '1552458_at'\n",
+       "195. '1552459_a_at'\n",
+       "196. '1559535_s_at'\n",
+       "197. '1559534_at'\n",
+       "198. '1553614_a_at'\n",
+       "199. '1558990_at'\n",
+       "200. '1554702_at'\n",
+       "201. ...\n",
+       "202. '243484_x_at'\n",
+       "203. '242610_x_at'\n",
+       "204. '242787_at'\n",
+       "205. '40560_at'\n",
+       "206. '240570_at'\n",
+       "207. '43934_at'\n",
+       "208. '241198_s_at'\n",
+       "209. '241836_x_at'\n",
+       "210. '244571_s_at'\n",
+       "211. '56256_at'\n",
+       "212. '241828_x_at'\n",
+       "213. '240889_at'\n",
+       "214. '244735_at'\n",
+       "215. '57540_at'\n",
+       "216. '241824_at'\n",
+       "217. '244824_at'\n",
+       "218. 'AFFX-HUMISGF3A/M97935_MA_at'\n",
+       "219. 'AFFX-HUMISGF3A/M97935_5_at'\n",
+       "220. 'AFFX-HUMISGF3A/M97935_MB_at'\n",
+       "221. 'AFFX-HUMISGF3A/M97935_3_at'\n",
+       "222. '241049_at'\n",
+       "223. '243209_at'\n",
+       "224. '38487_at'\n",
+       "225. '244032_at'\n",
+       "226. '242561_at'\n",
+       "227. '244703_x_at'\n",
+       "228. '242986_at'\n",
+       "229. '244611_at'\n",
+       "230. '242413_at'\n",
+       "231. '243902_at'\n",
+       "232. '242030_at'\n",
+       "233. '240781_x_at'\n",
+       "234. '243396_at'\n",
+       "235. '242220_at'\n",
+       "236. '242482_at'\n",
+       "237. '242785_at'\n",
+       "238. '240806_at'\n",
+       "239. '37793_r_at'\n",
+       "240. '241896_at'\n",
+       "241. '242243_at'\n",
+       "242. '244319_at'\n",
+       "243. '243346_at'\n",
+       "244. '243864_at'\n",
+       "245. '244215_at'\n",
+       "246. '243921_at'\n",
+       "247. '241325_at'\n",
+       "248. '241325_at'\n",
+       "249. '32088_at'\n",
+       "250. '243100_at'\n",
+       "251. '244159_at'\n",
+       "252. '242049_s_at'\n",
+       "253. '240579_at'\n",
+       "254. '241879_at'\n",
+       "255. '242835_s_at'\n",
+       "256. '242313_at'\n",
+       "257. '241234_at'\n",
+       "258. '243699_at'\n",
+       "259. '244797_at'\n",
+       "260. '244174_at'\n",
+       "261. '243355_at'\n",
+       "262. '244448_at'\n",
+       "263. '243549_at'\n",
+       "264. '241535_at'\n",
+       "265. '242679_at'\n",
+       "266. '242771_at'\n",
+       "267. '242679_at'\n",
+       "268. '242771_at'\n",
+       "269. '244728_at'\n",
+       "270. '240891_at'\n",
+       "271. '62212_at'\n",
+       "272. '244438_at'\n",
+       "273. '241282_at'\n",
+       "274. '62212_at'\n",
+       "275. '242665_at'\n",
+       "276. '241393_at'\n",
+       "277. '244377_at'\n",
+       "278. '244690_at'\n",
+       "279. '243501_at'\n",
+       "280. '243836_at'\n",
+       "281. '242896_at'\n",
+       "282. '243052_at'\n",
+       "283. '244675_at'\n",
+       "284. '36499_at'\n",
+       "285. '241504_at'\n",
+       "286. '241075_at'\n",
+       "287. '241895_at'\n",
+       "288. '241895_at'\n",
+       "289. '242418_at'\n",
+       "290. '244352_at'\n",
+       "291. '243367_at'\n",
+       "292. '242133_s_at'\n",
+       "293. '243367_at'\n",
+       "294. '242133_s_at'\n",
+       "295. '241752_at'\n",
+       "296. '241379_at'\n",
+       "297. '241526_at'\n",
+       "298. '243244_at'\n",
+       "299. '244848_at'\n",
+       "300. '243902_at'\n",
+       "301. '243902_at'\n",
+       "302. '242569_at'\n",
+       "303. '243036_at'\n",
+       "304. '241895_at'\n",
+       "305. '244182_at'\n",
+       "306. '244419_at'\n",
+       "307. '244796_at'\n",
+       "308. '243087_at'\n",
+       "309. '242308_at'\n",
+       "310. '242825_at'\n",
+       "311. '244709_at'\n",
+       "312. '243433_at'\n",
+       "313. '244075_at'\n",
+       "314. '241607_at'\n",
+       "315. '244732_at'\n",
+       "316. '244744_at'\n",
+       "317. '243440_at'\n",
+       "318. '242054_s_at'\n",
+       "319. '241859_at'\n",
+       "320. '240821_at'\n",
+       "321. '242013_at'\n",
+       "322. '241918_at'\n",
+       "323. '242459_at'\n",
+       "324. '243648_at'\n",
+       "325. '242989_at'\n",
+       "326. '244354_at'\n",
+       "327. '242989_at'\n",
+       "328. '244354_at'\n",
+       "329. '241612_at'\n",
+       "330. '242284_at'\n",
+       "331. '243093_at'\n",
+       "332. '241372_at'\n",
+       "333. '244865_at'\n",
+       "334. '241389_at'\n",
+       "335. '244040_at'\n",
+       "336. '240696_at'\n",
+       "337. '243484_x_at'\n",
+       "338. '242610_x_at'\n",
+       "339. '243292_at'\n",
+       "340. '52078_at'\n",
+       "341. '243976_at'\n",
+       "342. '243484_x_at'\n",
+       "343. '242610_x_at'\n",
+       "344. '242610_x_at'\n",
+       "345. '244313_at'\n",
+       "346. '241091_at'\n",
+       "347. '244504_x_at'\n",
+       "348. '40829_at'\n",
+       "349. '244422_at'\n",
+       "350. '244718_at'\n",
+       "351. '242269_at'\n",
+       "352. '242269_at'\n",
+       "353. '242038_at'\n",
+       "354. '243297_at'\n",
+       "355. '240681_at'\n",
+       "356. '32625_at'\n",
+       "357. '244049_at'\n",
+       "358. '244618_at'\n",
+       "359. '243150_at'\n",
+       "360. '240819_at'\n",
+       "361. '243463_s_at'\n",
+       "362. '243551_at'\n",
+       "363. '243551_at'\n",
+       "364. '240700_at'\n",
+       "365. '240634_x_at'\n",
+       "366. '244379_at'\n",
+       "367. '244379_at'\n",
+       "368. '37022_at'\n",
+       "369. '243558_at'\n",
+       "370. '37012_at'\n",
+       "371. '37005_at'\n",
+       "372. '37005_at'\n",
+       "373. '240634_x_at'\n",
+       "374. '244848_at'\n",
+       "375. '244472_at'\n",
+       "376. '241707_at'\n",
+       "377. '242086_at'\n",
+       "378. '37892_at'\n",
+       "379. '242882_at'\n",
+       "380. '64942_at'\n",
+       "381. '244489_at'\n",
+       "382. '242327_x_at'\n",
+       "383. '242410_s_at'\n",
+       "384. '243707_at'\n",
+       "385. '241290_at'\n",
+       "386. '39650_s_at'\n",
+       "387. '241450_at'\n",
+       "388. '243717_at'\n",
+       "389. '242381_x_at'\n",
+       "390. '243623_at'\n",
+       "391. '240692_at'\n",
+       "392. '241853_at'\n",
+       "393. '241456_at'\n",
+       "394. '241544_at'\n",
+       "395. '243873_at'\n",
+       "396. '244080_at'\n",
+       "397. '244555_at'\n",
+       "398. '241753_at'\n",
+       "399. '244225_x_at'\n",
+       "400. '243042_at'\n",
+       "401. '242947_at'\n",
+       "\n",
+       "\n"
+      ],
+      "text/plain": [
+       "    [1] \"1553551_s_at\"                \"1553551_s_at\"               \n",
+       "    [3] \"1553551_s_at\"                \"1553551_s_at\"               \n",
+       "    [5] \"1553538_s_at\"                \"1553570_x_at\"               \n",
+       "    [7] \"1553569_at\"                  \"1553570_x_at\"               \n",
+       "    [9] \"1553567_s_at\"                \"1553569_at\"                 \n",
+       "   [11] \"1553570_x_at\"                \"1553567_s_at\"               \n",
+       "   [13] \"1553569_at\"                  \"1553567_s_at\"               \n",
+       "   [15] \"1553567_s_at\"                \"1553588_at\"                 \n",
+       "   [17] \"1553567_s_at\"                \"1553588_at\"                 \n",
+       "   [19] \"1553588_at\"                  \"1553588_at\"                 \n",
+       "   [21] \"1553588_at\"                  \"1553588_at\"                 \n",
+       "   [23] \"1555653_at\"                  \"1553575_at\"                 \n",
+       "   [25] \"1553575_at\"                  \"1553474_at\"                 \n",
+       "   [27] \"1555865_at\"                  \"1553633_s_at\"               \n",
+       "   [29] \"1552690_a_at\"                \"1558530_at\"                 \n",
+       "   [31] \"1556677_at\"                  \"1558938_at\"                 \n",
+       "   [33] \"1558938_at\"                  \"1554125_a_at\"               \n",
+       "   [35] \"1555444_a_at\"                \"1555743_s_at\"               \n",
+       "   [37] \"1555390_at\"                  \"1552952_at\"                 \n",
+       "   [39] \"1559133_at\"                  \"1559134_a_at\"               \n",
+       "   [41] \"1552872_at\"                  \"1554821_a_at\"               \n",
+       "   [43] \"1556445_at\"                  \"1557480_a_at\"               \n",
+       "   [45] \"1559566_at\"                  \"1556195_a_at\"               \n",
+       "   [47] \"1554385_a_at\"                \"1554384_at\"                 \n",
+       "   [49] \"1552841_s_at\"                \"1555399_a_at\"               \n",
+       "   [51] \"1555846_a_at\"                \"1559075_s_at\"               \n",
+       "   [53] \"1559049_a_at\"                \"1559048_at\"                 \n",
+       "   [55] \"1555336_a_at\"                \"1555335_at\"                 \n",
+       "   [57] \"1556794_at\"                  \"1553633_s_at\"               \n",
+       "   [59] \"1559471_s_at\"                \"1559470_at\"                 \n",
+       "   [61] \"1555716_a_at\"                \"1553044_at\"                 \n",
+       "   [63] \"1556794_at\"                  \"1554983_at\"                 \n",
+       "   [65] \"1552466_x_at\"                \"1554405_a_at\"               \n",
+       "   [67] \"1557470_at\"                  \"1555188_at\"                 \n",
+       "   [69] \"1554787_at\"                  \"1556414_at\"                 \n",
+       "   [71] \"1553608_a_at\"                \"1553607_at\"                 \n",
+       "   [73] \"1553313_s_at\"                \"1559603_at\"                 \n",
+       "   [75] \"1554428_s_at\"                \"1555778_a_at\"               \n",
+       "   [77] \"1553340_s_at\"                \"1556911_at\"                 \n",
+       "   [79] \"1555373_at\"                  \"1556794_at\"                 \n",
+       "   [81] \"1552576_at\"                  \"1552576_at\"                 \n",
+       "   [83] \"1555935_s_at\"                \"1552605_s_at\"               \n",
+       "   [85] \"1552604_at\"                  \"1555125_at\"                 \n",
+       "   [87] \"1555994_at\"                  \"1555995_a_at\"               \n",
+       "   [89] \"1552468_a_at\"                \"1552467_at\"                 \n",
+       "   [91] \"1557279_at\"                  \"1557280_s_at\"               \n",
+       "   [93] \"1557717_at\"                  \"1554921_a_at\"               \n",
+       "   [95] \"1554920_at\"                  \"1557918_s_at\"               \n",
+       "   [97] \"1553846_at\"                  \"1553847_a_at\"               \n",
+       "   [99] \"1557470_at\"                  \"1554886_a_at\"               \n",
+       "  [101] \"1556888_at\"                  \"1556889_s_at\"               \n",
+       "  [103] \"1553822_at\"                  \"1553823_a_at\"               \n",
+       "  [105] \"1553519_at\"                  \"1553608_a_at\"               \n",
+       "  [107] \"1552401_a_at\"                \"1553608_a_at\"               \n",
+       "  [109] \"1552401_a_at\"                \"1552816_at\"                 \n",
+       "  [111] \"1556301_at\"                  \"1554767_s_at\"               \n",
+       "  [113] \"1552347_at\"                  \"1553619_a_at\"               \n",
+       "  [115] \"1553618_at\"                  \"1556183_at\"                 \n",
+       "  [117] \"1554741_s_at\"                \"1558636_s_at\"               \n",
+       "  [119] \"1554339_a_at\"                \"1556183_at\"                 \n",
+       "  [121] \"1555613_a_at\"                \"1554942_a_at\"               \n",
+       "  [123] \"1554941_at\"                  \"1553282_at\"                 \n",
+       "  [125] \"1555522_s_at\"                \"1553440_at\"                 \n",
+       "  [127] \"1552998_at\"                  \"1556940_at\"                 \n",
+       "  [129] \"1556941_a_at\"                \"1553235_at\"                 \n",
+       "  [131] \"1553237_x_at\"                \"1556477_a_at\"               \n",
+       "  [133] \"1556476_at\"                  \"1556502_at\"                 \n",
+       "  [135] \"1555638_a_at\"                \"1554432_x_at\"               \n",
+       "  [137] \"1554430_at\"                  \"1554432_x_at\"               \n",
+       "  [139] \"1554430_at\"                  \"1557900_at\"                 \n",
+       "  [141] \"1557483_at\"                  \"1557720_s_at\"               \n",
+       "  [143] \"1553673_at\"                  \"1554085_at\"                 \n",
+       "  [145] \"1555446_s_at\"                \"1553794_at\"                 \n",
+       "  [147] \"1553686_at\"                  \"1554692_at\"                 \n",
+       "  [149] \"1555202_a_at\"                \"1554086_at\"                 \n",
+       "  [151] \"1552414_at\"                  \"1552415_a_at\"               \n",
+       "  [153] \"1557404_at\"                  \"1552307_a_at\"               \n",
+       "  [155] \"1557545_s_at\"                \"1553087_at\"                 \n",
+       "  [157] \"1552608_at\"                  \"1553721_at\"                 \n",
+       "  [159] \"1553722_s_at\"                \"1554857_at\"                 \n",
+       "  [161] \"1556711_at\"                  \"1558930_at\"                 \n",
+       "  [163] \"1553633_s_at\"                \"1553972_a_at\"               \n",
+       "  [165] \"1553972_a_at\"                \"1557112_a_at\"               \n",
+       "  [167] \"1559108_at\"                  \"1559109_a_at\"               \n",
+       "  [169] \"1556578_a_at\"                \"1553550_at\"                 \n",
+       "  [171] \"1553474_at\"                  \"1555953_at\"                 \n",
+       "  [173] \"1555952_at\"                  \"1554700_at\"                 \n",
+       "  [175] \"1558477_at\"                  \"1553474_at\"                 \n",
+       "  [177] \"1553474_at\"                  \"1556739_at\"                 \n",
+       "  [179] \"1558990_at\"                  \"1552822_at\"                 \n",
+       "  [181] \"1553239_at\"                  \"1554657_a_at\"               \n",
+       "  [183] \"1557465_at\"                  \"1557193_at\"                 \n",
+       "  [185] \"1555740_a_at\"                \"1554044_a_at\"               \n",
+       "  [187] \"1555741_at\"                  \"1555403_a_at\"               \n",
+       "  [189] \"1558849_at\"                  \"1558850_s_at\"               \n",
+       "  [191] \"1558849_at\"                  \"1558850_s_at\"               \n",
+       "  [193] \"1556288_at\"                  \"1552458_at\"                 \n",
+       "  [195] \"1552459_a_at\"                \"1559535_s_at\"               \n",
+       "  [197] \"1559534_at\"                  \"1553614_a_at\"               \n",
+       "  [199] \"1558990_at\"                  \"1554702_at\"                 \n",
+       "  [201] \"1558142_at\"                  \"1555460_a_at\"               \n",
+       "  [203] \"1556551_s_at\"                \"1554305_at\"                 \n",
+       "  [205] \"1552394_a_at\"                \"1552393_at\"                 \n",
+       "  [207] \"1558211_s_at\"                \"1555822_at\"                 \n",
+       "  [209] \"1553227_s_at\"                \"1557893_a_at\"               \n",
+       "  [211] \"1557892_at\"                  \"1558847_at\"                 \n",
+       "  [213] \"1556909_at\"                  \"1553633_s_at\"               \n",
+       "  [215] \"1555141_a_at\"                \"1556222_at\"                 \n",
+       "  [217] \"1554863_s_at\"                \"1554544_a_at\"               \n",
+       "  [219] \"1553300_a_at\"                \"1558890_at\"                 \n",
+       "  [221] \"1554163_at\"                  \"1556377_s_at\"               \n",
+       "  [223] \"1558606_s_at\"                \"1558605_at\"                 \n",
+       "  [225] \"1556684_at\"                  \"1553850_at\"                 \n",
+       "  [227] \"1555231_a_at\"                \"1555162_at\"                 \n",
+       "  [229] \"1558606_s_at\"                \"1558605_at\"                 \n",
+       "  [231] \"1556684_at\"                  \"1556684_at\"                 \n",
+       "  [233] \"1553918_at\"                  \"1559678_s_at\"               \n",
+       "  [235] \"1552340_at\"                  \"1552448_a_at\"               \n",
+       "  [237] \"1553493_a_at\"                \"1555151_s_at\"               \n",
+       "  [239] \"1553494_at\"                  \"1552563_a_at\"               \n",
+       "  [241] \"1556580_a_at\"                \"1556046_a_at\"               \n",
+       "  [243] \"1552332_at\"                  \"1552334_at\"                 \n",
+       "  [245] \"1552609_s_at\"                \"1552609_s_at\"               \n",
+       "  [247] \"1552915_at\"                  \"1552917_at\"                 \n",
+       "  [249] \"1554102_a_at\"                \"1554101_a_at\"               \n",
+       "  [251] \"1553304_at\"                  \"1552412_a_at\"               \n",
+       "  [253] \"1552411_at\"                  \"1552412_a_at\"               \n",
+       "  [255] \"1552411_at\"                  \"1553521_at\"                 \n",
+       "  [257] \"1553521_at\"                  \"1553582_a_at\"               \n",
+       "  [259] \"1553582_a_at\"                \"1553518_at\"                 \n",
+       "  [261] \"1552257_a_at\"                \"1553002_at\"                 \n",
+       "  [263] \"1553002_at\"                  \"1553002_at\"                 \n",
+       "  [265] \"1552412_a_at\"                \"1552411_at\"                 \n",
+       "  [267] \"1552412_a_at\"                \"1552411_at\"                 \n",
+       "  [269] \"1553521_at\"                  \"1553521_at\"                 \n",
+       "  [271] \"1553582_a_at\"                \"1553579_a_at\"               \n",
+       "  [273] \"1554949_at\"                  \"1553002_at\"                 \n",
+       "  [275] \"1553002_at\"                  \"1557588_at\"                 \n",
+       "  [277] \"1556661_at\"                  \"1554173_at\"                 \n",
+       "  [279] \"1554175_at\"                  \"1553298_at\"                 \n",
+       "  [281] \"1553131_a_at\"                \"1553111_a_at\"               \n",
+       "  [283] \"1552955_at\"                  \"1553340_s_at\"               \n",
+       "  [285] \"1553340_s_at\"                \"1559307_s_at\"               \n",
+       "  [287] \"1555004_a_at\"                \"1555003_at\"                 \n",
+       "  [289] \"1553640_at\"                  \"1552563_a_at\"               \n",
+       "  [291] \"1555450_a_at\"                \"1555245_s_at\"               \n",
+       "  [293] \"1552670_a_at\"                \"1557647_a_at\"               \n",
+       "  [295] \"1557646_at\"                  \"1553761_at\"                 \n",
+       "  [297] \"1558097_at\"                  \"1556808_at\"                 \n",
+       "  [299] \"1556809_a_at\"                \"1557763_at\"                 \n",
+       "  [301] \"1558139_at\"                  \"1552991_at\"                 \n",
+       "  [303] \"1553078_at\"                  \"1553534_at\"                 \n",
+       "  [305] \"1558954_at\"                  \"1558954_at\"                 \n",
+       "  [307] \"1552872_at\"                  \"1552991_at\"                 \n",
+       "  [309] \"1553078_at\"                  \"1553534_at\"                 \n",
+       "  [311] \"1553326_at\"                  \"1555904_at\"                 \n",
+       "  [313] \"1553303_at\"                  \"1553303_at\"                 \n",
+       "  [315] \"1559261_a_at\"                \"1554371_at\"                 \n",
+       "  [317] \"1554768_a_at\"                \"1553067_a_at\"               \n",
+       "  [319] \"1556262_at\"                  \"1556263_s_at\"               \n",
+       "  [321] \"1556262_at\"                  \"1556263_s_at\"               \n",
+       "  [323] \"1558568_a_at\"                \"1552736_a_at\"               \n",
+       "  [325] \"1552904_at\"                  \"1558903_at\"                 \n",
+       "  [327] \"1558793_at\"                  \"1554634_at\"                 \n",
+       "  [329] \"1553024_at\"                  \"1553461_at\"                 \n",
+       "  [331] \"1555538_s_at\"                \"1552971_at\"                 \n",
+       "  [333] \"1553174_at\"                  \"1552344_s_at\"               \n",
+       "  [335] \"1556262_at\"                  \"1556263_s_at\"               \n",
+       "  [337] \"1554689_a_at\"                \"1555133_at\"                 \n",
+       "  [339] \"1554386_at\"                  \"1554624_a_at\"               \n",
+       "  [341] \"1559546_s_at\"                \"1559342_a_at\"               \n",
+       "  [343] \"1559545_at\"                  \"1559343_at\"                 \n",
+       "  [345] \"1556102_x_at\"                \"1558046_x_at\"               \n",
+       "  [347] \"1558045_a_at\"                \"1557117_at\"                 \n",
+       "  [349] \"1557118_a_at\"                \"1552718_at\"                 \n",
+       "  [351] \"1557117_at\"                  \"1556356_at\"                 \n",
+       "  [353] \"1556357_s_at\"                \"1554755_a_at\"               \n",
+       "  [355] \"1552675_at\"                  \"1553842_at\"                 \n",
+       "  [357] \"1553873_at\"                  \"1553558_at\"                 \n",
+       "  [359] \"1556304_s_at\"                \"1555822_at\"                 \n",
+       "  [361] \"1556872_s_at\"                \"1553949_at\"                 \n",
+       "  [363] \"1554607_at\"                  \"1554691_a_at\"               \n",
+       "  [365] \"1555514_a_at\"                \"1556492_a_at\"               \n",
+       "  [367] \"1555513_at\"                  \"1557098_s_at\"               \n",
+       "  [369] \"1553432_s_at\"                \"1552570_at\"                 \n",
+       "  [371] \"1555048_a_at\"                \"1555049_at\"                 \n",
+       "  [373] \"1554953_a_at\"                \"1553945_at\"                 \n",
+       "  [375] \"1554953_a_at\"                \"1554954_at\"                 \n",
+       "  [377] \"1557439_at\"                  \"1557053_s_at\"               \n",
+       "  [379] \"1553561_at\"                  \"1559254_at\"                 \n",
+       "  [381] \"1552877_s_at\"                \"1552876_at\"                 \n",
+       "  [383] \"1555546_a_at\"                \"1559005_s_at\"               \n",
+       "  [385] \"1553832_at\"                  \"1556362_at\"                 \n",
+       "  [387] \"1555233_at\"                  \"1555234_a_at\"               \n",
+       "  [389] \"1552792_at\"                  \"1556835_s_at\"               \n",
+       "  [391] \"1556834_at\"                  \"1555304_a_at\"               \n",
+       "  [393] \"1555074_a_at\"                \"1553178_a_at\"               \n",
+       "  [395] \"1553114_a_at\"                \"1553033_at\"                 \n",
+       "  [397] \"1554933_at\"                  \"1553319_at\"                 \n",
+       "  [399] \"1553474_at\"                  \"1556722_a_at\"               \n",
+       "  [401] \"1556722_a_at\"                \"1556793_a_at\"               \n",
+       "  [403] \"1554264_at\"                  \"1555517_at\"                 \n",
+       "  [405] \"1557085_at\"                  \"1554892_a_at\"               \n",
+       "  [407] \"1556874_a_at\"                \"1556873_at\"                 \n",
+       "  [409] \"1555662_s_at\"                \"1555640_at\"                 \n",
+       "  [411] \"1552938_at\"                  \"1558372_at\"                 \n",
+       "  [413] \"1558373_s_at\"                \"1555676_s_at\"               \n",
+       "  [415] \"1557080_s_at\"                \"1555688_s_at\"               \n",
+       "  [417] \"1552719_at\"                  \"1559635_at\"                 \n",
+       "  [419] \"1559672_a_at\"                \"1553433_at\"                 \n",
+       "  [421] \"1558082_at\"                  \"1558160_at\"                 \n",
+       "  [423] \"1555448_at\"                  \"1552264_a_at\"               \n",
+       "  [425] \"1552263_at\"                  \"1558201_s_at\"               \n",
+       "  [427] \"1553348_a_at\"                \"1553103_at\"                 \n",
+       "  [429] \"1558421_a_at\"                \"1558420_at\"                 \n",
+       "  [431] \"1555106_a_at\"                \"1555358_a_at\"               \n",
+       "  [433] \"1554507_at\"                  \"1554504_at\"                 \n",
+       "  [435] \"1554506_x_at\"                \"1554930_a_at\"               \n",
+       "  [437] \"1557845_at\"                  \"1554604_at\"                 \n",
+       "  [439] \"1557211_a_at\"                \"1556000_s_at\"               \n",
+       "  [441] \"1554579_a_at\"                \"1553053_at\"                 \n",
+       "  [443] \"1552676_at\"                  \"1555832_s_at\"               \n",
+       "  [445] \"1556266_a_at\"                \"1556265_at\"                 \n",
+       "  [447] \"1553474_at\"                  \"1552846_s_at\"               \n",
+       "  [449] \"1555682_at\"                  \"1553183_at\"                 \n",
+       "  [451] \"1559034_at\"                  \"1558660_at\"                 \n",
+       "  [453] \"1553961_s_at\"                \"1553960_at\"                 \n",
+       "  [455] \"1557421_at\"                  \"1559229_at\"                 \n",
+       "  [457] \"1558431_at\"                  \"1555559_s_at\"               \n",
+       "  [459] \"1555357_at\"                  \"1553561_at\"                 \n",
+       "  [461] \"1552848_a_at\"                \"1553243_at\"                 \n",
+       "  [463] \"1556344_at\"                  \"1557633_at\"                 \n",
+       "  [465] \"1553900_s_at\"                \"1556739_at\"                 \n",
+       "  [467] \"1556739_at\"                  \"1553142_at\"                 \n",
+       "  [469] \"1553141_at\"                  \"1553905_at\"                 \n",
+       "  [471] \"1553466_at\"                  \"1559653_at\"                 \n",
+       "  [473] \"1559654_s_at\"                \"1320_at\"                    \n",
+       "  [475] \"1556623_at\"                  \"1555786_s_at\"               \n",
+       "  [477] \"1553831_at\"                  \"1557885_at\"                 \n",
+       "  [479] \"1557261_at\"                  \"1556114_a_at\"               \n",
+       "  [481] \"1556113_at\"                  \"1553163_at\"                 \n",
+       "  [483] \"1554026_a_at\"                \"1554509_a_at\"               \n",
+       "  [485] \"1556883_a_at\"                \"1556378_a_at\"               \n",
+       "  [487] \"1554560_at\"                  \"1558401_at\"                 \n",
+       "  [489] \"1556846_at\"                  \"1556847_s_at\"               \n",
+       "  [491] \"1555359_at\"                  \"1552671_a_at\"               \n",
+       "  [493] \"1558105_a_at\"                \"1553986_at\"                 \n",
+       "  [495] \"1556004_at\"                  \"1556003_a_at\"               \n",
+       "  [497] \"1555445_at\"                  \"1557370_s_at\"               \n",
+       "  [499] \"1557755_at\"                  \"1557756_a_at\"               \n",
+       "  [501] \"1553457_at\"                  \"1555347_at\"                 \n",
+       "  [503] \"1555196_at\"                  \"1487_at\"                    \n",
+       "  [505] \"1555347_at\"                  \"1553845_x_at\"               \n",
+       "  [507] \"1553843_at\"                  \"1553844_a_at\"               \n",
+       "  [509] \"1553132_a_at\"                \"1557176_a_at\"               \n",
+       "  [511] \"1558686_at\"                  \"1559167_x_at\"               \n",
+       "  [513] \"1554819_a_at\"                \"1553614_a_at\"               \n",
+       "  [515] \"1558697_a_at\"                \"1553614_a_at\"               \n",
+       "  [517] \"1556072_at\"                  \"1556377_s_at\"               \n",
+       "  [519] \"1558438_a_at\"                \"1558438_a_at\"               \n",
+       "  [521] \"1559006_at\"                  \"1559007_s_at\"               \n",
+       "  [523] \"1558354_s_at\"                \"1554321_a_at\"               \n",
+       "  [525] \"1557540_at\"                  \"1559270_at\"                 \n",
+       "  [527] \"1559508_at\"                  \"1555708_a_at\"               \n",
+       "  [529] \"1553075_a_at\"                \"1553076_at\"                 \n",
+       "  [531] \"1553633_s_at\"                \"1555141_a_at\"               \n",
+       "  [533] \"1553126_a_at\"                \"1558494_at\"                 \n",
+       "  [535] \"1554741_s_at\"                \"1552716_at\"                 \n",
+       "  [537] \"1558858_at\"                  \"1555197_a_at\"               \n",
+       "  [539] \"1553789_a_at\"                \"1555198_x_at\"               \n",
+       "  [541] \"1559439_s_at\"                \"1559438_at\"                 \n",
+       "  [543] \"1559665_at\"                  \"1553150_at\"                 \n",
+       "  [545] \"1553474_at\"                  \"1552677_a_at\"               \n",
+       "  [547] \"1554969_x_at\"                \"1554967_at\"                 \n",
+       "  [549] \"1555301_a_at\"                \"1556127_at\"                 \n",
+       "  [551] \"1557008_at\"                  \"1557009_a_at\"               \n",
+       "  [553] \"1557787_at\"                  \"1556778_at\"                 \n",
+       "  [555] \"1556779_s_at\"                \"1559276_at\"                 \n",
+       "  [557] \"1559316_at\"                  \"1559485_at\"                 \n",
+       "  [559] \"1557068_at\"                  \"1555673_at\"                 \n",
+       "  [561] \"1557113_at\"                  \"1554319_at\"                 \n",
+       "  [563] \"1552422_at\"                  \"1553734_at\"                 \n",
+       "  [565] \"1552449_a_at\"                \"1557657_a_at\"               \n",
+       "  [567] \"1557656_at\"                  \"1554741_s_at\"               \n",
+       "  [569] \"1557618_at\"                  \"1556555_at\"                 \n",
+       "  [571] \"1555167_s_at\"                \"1554486_a_at\"               \n",
+       "  [573] \"1555578_at\"                  \"1555579_s_at\"               \n",
+       "  [575] \"1554233_at\"                  \"1556378_a_at\"               \n",
+       "  [577] \"1556883_a_at\"                \"1556378_a_at\"               \n",
+       "  [579] \"1556883_a_at\"                \"1555241_at\"                 \n",
+       "  [581] \"1555243_x_at\"                \"1554594_at\"                 \n",
+       "  [583] \"1557345_at\"                  \"1555964_at\"                 \n",
+       "  [585] \"1554245_x_at\"                \"1554245_x_at\"               \n",
+       "  [587] \"1554245_x_at\"                \"1554686_at\"                 \n",
+       "  [589] \"1554643_at\"                  \"1555752_at\"                 \n",
+       "  [591] \"1554699_at\"                  \"1553646_at\"                 \n",
+       "  [593] \"1559067_a_at\"                \"1559066_at\"                 \n",
+       "  [595] \"1553252_a_at\"                \"1556994_at\"                 \n",
+       "  [597] \"1558586_at\"                  \"1553882_at\"                 \n",
+       "  [599] \"1558801_at\"                  \"1555383_a_at\"               \n",
+       "  [601] \"1555382_at\"                  \"1554594_at\"                 \n",
+       "  [603] \"1553027_a_at\"                \"1559284_at\"                 \n",
+       "  [605] \"1552973_at\"                  \"1553465_a_at\"               \n",
+       "  [607] \"1555476_at\"                  \"1556190_s_at\"               \n",
+       "  [609] \"1556047_s_at\"                \"1553399_a_at\"               \n",
+       "  [611] \"1553400_a_at\"                \"1558611_at\"                 \n",
+       "  [613] \"1552935_at\"                  \"1556445_at\"                 \n",
+       "  [615] \"1555463_a_at\"                \"1553112_s_at\"               \n",
+       "  [617] \"1553113_s_at\"                \"1555893_at\"                 \n",
+       "  [619] \"1558440_at\"                  \"1554192_s_at\"               \n",
+       "  [621] \"1553009_s_at\"                \"1558378_a_at\"               \n",
+       "  [623] \"1553089_a_at\"                \"1552261_at\"                 \n",
+       "  [625] \"1554279_a_at\"                \"1558688_at\"                 \n",
+       "  [627] \"1558689_a_at\"                \"1555349_a_at\"               \n",
+       "  [629] \"1552396_at\"                  \"1552396_at\"                 \n",
+       "  [631] \"1553060_at\"                  \"1553254_at\"                 \n",
+       "  [633] \"1558275_at\"                  \"1554078_s_at\"               \n",
+       "  [635] \"1555396_s_at\"                \"1552954_at\"                 \n",
+       "  [637] \"1556374_s_at\"                \"1556754_at\"                 \n",
+       "  [639] \"1556754_at\"                  \"1556754_at\"                 \n",
+       "  [641] \"1556754_at\"                  \"1555122_at\"                 \n",
+       "  [643] \"1555822_at\"                  \"1553267_a_at\"               \n",
+       "  [645] \"1553346_a_at\"                \"1553063_at\"                 \n",
+       "  [647] \"1558279_a_at\"                \"1555627_s_at\"               \n",
+       "  [649] \"1552528_at\"                  \"1555393_s_at\"               \n",
+       "  [651] \"1556410_a_at\"                \"1555264_a_at\"               \n",
+       "  [653] \"1554927_at\"                  \"1555264_a_at\"               \n",
+       "  [655] \"1554927_at\"                  \"1556149_at\"                 \n",
+       "  [657] \"1558745_at\"                  \"1554577_a_at\"               \n",
+       "  [659] \"1558775_s_at\"                \"1559543_at\"                 \n",
+       "  [661] \"1559544_s_at\"                \"1553613_s_at\"               \n",
+       "  [663] \"1557070_at\"                  \"1555551_at\"                 \n",
+       "  [665] \"1557037_a_at\"                \"1557038_s_at\"               \n",
+       "  [667] \"1555127_at\"                  \"1558438_a_at\"               \n",
+       "  [669] \"1553856_s_at\"                \"1555430_at\"                 \n",
+       "  [671] \"1554465_s_at\"                \"1555457_at\"                 \n",
+       "  [673] \"1554332_a_at\"                \"1552390_a_at\"               \n",
+       "  [675] \"1552389_at\"                  \"1556421_at\"                 \n",
+       "  [677] \"1558975_at\"                  \"1558976_x_at\"               \n",
+       "  [679] \"1555021_a_at\"                \"1553199_at\"                 \n",
+       "  [681] \"1553197_at\"                  \"1557275_a_at\"               \n",
+       "  [683] \"1553435_at\"                  \"1553914_at\"                 \n",
+       "  [685] \"1553914_at\"                  \"1556789_a_at\"               \n",
+       "  [687] \"1557068_at\"                  \"1556496_a_at\"               \n",
+       "  [689] \"1554099_a_at\"                \"1554098_at\"                 \n",
+       "  [691] \"1555882_at\"                  \"1555883_s_at\"               \n",
+       "  [693] \"1555691_a_at\"                \"1559656_a_at\"               \n",
+       "  [695] \"1559655_at\"                  \"1557874_at\"                 \n",
+       "  [697] \"1555976_s_at\"                \"1555978_s_at\"               \n",
+       "  [699] \"1555976_s_at\"                \"1555977_at\"                 \n",
+       "  [701] \"1552665_at\"                  \"1556320_at\"                 \n",
+       "  [703] \"1559252_a_at\"                \"1559252_a_at\"               \n",
+       "  [705] \"1554383_a_at\"                \"1553117_a_at\"               \n",
+       "  [707] \"1558028_x_at\"                \"1555407_s_at\"               \n",
+       "  [709] \"1559412_at\"                  \"1559521_at\"                 \n",
+       "  [711] \"1556333_at\"                  \"1556334_s_at\"               \n",
+       "  [713] \"1558686_at\"                  \"1559167_x_at\"               \n",
+       "  [715] \"1552772_at\"                  \"1552773_at\"                 \n",
+       "  [717] \"1552365_at\"                  \"1552367_a_at\"               \n",
+       "  [719] \"1552818_a_at\"                \"1558117_s_at\"               \n",
+       "  [721] \"1552882_a_at\"                \"1556151_at\"                 \n",
+       "  [723] \"1556784_at\"                  \"1555268_a_at\"               \n",
+       "  [725] \"1558202_at\"                  \"1558570_at\"                 \n",
+       "  [727] \"1557986_s_at\"                \"1552484_at\"                 \n",
+       "  [729] \"1555862_s_at\"                \"1559444_at\"                 \n",
+       "  [731] \"1555568_at\"                  \"1554199_at\"                 \n",
+       "  [733] \"1553003_at\"                  \"1554714_at\"                 \n",
+       "  [735] \"1559136_s_at\"                \"1555314_at\"                 \n",
+       "  [737] \"1559627_at\"                  \"1557857_a_at\"               \n",
+       "  [739] \"1557856_at\"                  \"1554132_a_at\"               \n",
+       "  [741] \"1554131_at\"                  \"1555673_at\"                 \n",
+       "  [743] \"1553269_at\"                  \"1557615_a_at\"               \n",
+       "  [745] \"1558574_at\"                  \"1552993_at\"                 \n",
+       "  [747] \"1554884_at\"                  \"1554885_a_at\"               \n",
+       "  [749] \"1559427_at\"                  \"1552743_at\"                 \n",
+       "  [751] \"1557782_s_at\"                \"1557481_a_at\"               \n",
+       "  [753] \"1556026_at\"                  \"1559136_s_at\"               \n",
+       "  [755] \"1559369_at\"                  \"1554508_at\"                 \n",
+       "  [757] \"1555155_at\"                  \"1554571_at\"                 \n",
+       "  [759] \"1555756_a_at\"                \"1554406_a_at\"               \n",
+       "  [761] \"1555214_a_at\"                \"1555213_a_at\"               \n",
+       "  [763] \"1552944_a_at\"                \"1554419_x_at\"               \n",
+       "  [765] \"1556899_at\"                  \"1556213_a_at\"               \n",
+       "  [767] \"1553048_a_at\"                \"1555400_at\"                 \n",
+       "  [769] \"1554030_at\"                  \"1554032_at\"                 \n",
+       "  [771] \"1559213_at\"                  \"1556233_s_at\"               \n",
+       "  [773] \"1556232_at\"                  \"1552538_a_at\"               \n",
+       "  [775] \"1559501_at\"                  \"1553465_a_at\"               \n",
+       "  [777] \"1553378_a_at\"                \"1558292_s_at\"               \n",
+       "  [779] \"1555759_a_at\"                \"1405_i_at\"                  \n",
+       "  [781] \"1554759_at\"                  \"1557826_at\"                 \n",
+       "  [783] \"1553165_at\"                  \"1553486_a_at\"               \n",
+       "  [785] \"1554679_a_at\"                \"1556165_at\"                 \n",
+       "  [787] \"1556166_x_at\"                \"1556325_at\"                 \n",
+       "  [789] \"1553505_at\"                  \"1558356_at\"                 \n",
+       "  [791] \"1553977_a_at\"                \"1552895_a_at\"               \n",
+       "  [793] \"1554142_at\"                  \"1554143_a_at\"               \n",
+       "  [795] \"1554212_s_at\"                \"1554680_s_at\"               \n",
+       "  [797] \"1557034_s_at\"                \"1556740_at\"                 \n",
+       "  [799] \"1555822_at\"                  \"1553614_a_at\"               \n",
+       "  [801] \"1555691_a_at\"                \"1555691_a_at\"               \n",
+       "  [803] \"1556954_at\"                  \"1556954_at\"                 \n",
+       "  [805] \"1556340_at\"                  \"1556341_s_at\"               \n",
+       "  [807] \"1553411_s_at\"                \"1553148_a_at\"               \n",
+       "  [809] \"1557818_x_at\"                \"1557817_a_at\"               \n",
+       "  [811] \"1556962_at\"                  \"1559161_at\"                 \n",
+       "  [813] \"1555408_at\"                  \"1555409_a_at\"               \n",
+       "  [815] \"1552557_a_at\"                \"1555408_at\"                 \n",
+       "  [817] \"1555409_a_at\"                \"1556206_at\"                 \n",
+       "  [819] \"1556207_a_at\"                \"1553006_at\"                 \n",
+       "  [821] \"1552895_a_at\"                \"1553974_at\"                 \n",
+       "  [823] \"1554208_at\"                  \"1553394_a_at\"               \n",
+       "  [825] \"1556904_at\"                  \"1558225_at\"                 \n",
+       "  [827] \"1558226_a_at\"                \"1552583_s_at\"               \n",
+       "  [829] \"1552693_at\"                  \"1552691_at\"                 \n",
+       "  [831] \"1552892_at\"                  \"1559258_a_at\"               \n",
+       "  [833] \"1554604_at\"                  \"1557080_s_at\"               \n",
+       "  [835] \"1557079_at\"                  \"1557219_at\"                 \n",
+       "  [837] \"1555265_at\"                  \"1552583_s_at\"               \n",
+       "  [839] \"1552582_at\"                  \"1552514_at\"                 \n",
+       "  [841] \"1555256_at\"                  \"1554786_at\"                 \n",
+       "  [843] \"1555250_a_at\"                \"1553264_a_at\"               \n",
+       "  [845] \"1555041_a_at\"                \"1553442_a_at\"               \n",
+       "  [847] \"1554377_a_at\"                \"1553441_at\"                 \n",
+       "  [849] \"1557263_s_at\"                \"1557262_at\"                 \n",
+       "  [851] \"1555865_at\"                  \"1554172_a_at\"               \n",
+       "  [853] \"1554171_at\"                  \"1554203_at\"                 \n",
+       "  [855] \"1556935_at\"                  \"1556128_a_at\"               \n",
+       "  [857] \"1553972_a_at\"                \"1557595_at\"                 \n",
+       "  [859] \"1554432_x_at\"                \"1559579_at\"                 \n",
+       "  [861] \"1554685_a_at\"                \"1557388_at\"                 \n",
+       "  [863] \"1553277_at\"                  \"1554116_s_at\"               \n",
+       "  [865] \"1557981_at\"                  \"1555643_s_at\"               \n",
+       "  [867] \"1555634_a_at\"                \"1554343_a_at\"               \n",
+       "  [869] \"1554589_at\"                  \"1557915_s_at\"               \n",
+       "  [871] \"1559311_at\"                  \"1554206_at\"                 \n",
+       "  [873] \"1555510_at\"                  \"1554503_a_at\"               \n",
+       "  [875] \"1552841_s_at\"                \"1554258_a_at\"               \n",
+       "  [877] \"1554079_at\"                  \"1559126_at\"                 \n",
+       "  [879] \"1559127_x_at\"                \"1553720_a_at\"               \n",
+       "  [881] \"1552310_at\"                  \"1559180_at\"                 \n",
+       "  [883] \"1553727_at\"                  \"1554503_a_at\"               \n",
+       "  [885] \"1555401_at\"                  \"1555345_at\"                 \n",
+       "  [887] \"1553139_s_at\"                \"1553295_at\"                 \n",
+       "  [889] \"1553604_at\"                  \"1553605_a_at\"               \n",
+       "  [891] \"1553215_s_at\"                \"1554582_a_at\"               \n",
+       "  [893] \"1554583_a_at\"                \"1552518_s_at\"               \n",
+       "  [895] \"1552463_at\"                  \"1556097_at\"                 \n",
+       "  [897] \"1559180_at\"                  \"1554394_at\"                 \n",
+       "  [899] \"1555452_at\"                  \"1554745_at\"                 \n",
+       "  [901] \"1555643_s_at\"                \"1555634_a_at\"               \n",
+       "  [903] \"1552931_a_at\"                \"1558662_s_at\"               \n",
+       "  [905] \"1554503_a_at\"                \"1553258_at\"                 \n",
+       "  [907] \"1556884_a_at\"                \"1554065_at\"                 \n",
+       "  [909] \"1558011_at\"                  \"1555159_at\"                 \n",
+       "  [911] \"1552520_at\"                  \"1552521_a_at\"               \n",
+       "  [913] \"1559400_s_at\"                \"1553468_at\"                 \n",
+       "  [915] \"1554907_a_at\"                \"1554908_at\"                 \n",
+       "  [917] \"1555052_a_at\"                \"1555053_at\"                 \n",
+       "  [919] \"1553976_a_at\"                \"1553443_at\"                 \n",
+       "  [921] \"1557424_at\"                  \"1555792_a_at\"               \n",
+       "  [923] \"1559322_at\"                  \"1556021_at\"                 \n",
+       "  [925] \"1556019_at\"                  \"1553019_at\"                 \n",
+       "  [927] \"1552695_a_at\"                \"1552694_at\"                 \n",
+       "  [929] \"1554918_a_at\"                \"1555039_a_at\"               \n",
+       "  [931] \"1554516_at\"                  \"1554517_x_at\"               \n",
+       "  [933] \"1554516_at\"                  \"1554517_x_at\"               \n",
+       "  [935] \"1553424_at\"                  \"1553448_at\"                 \n",
+       "  [937] \"1554589_at\"                  \"1559073_at\"                 \n",
+       "  [939] \"1553052_at\"                  \"1557981_at\"                 \n",
+       "  [941] \"1554503_a_at\"                \"1557581_x_at\"               \n",
+       "  [943] \"1552930_at\"                  \"1558846_at\"                 \n",
+       "  [945] \"1558080_s_at\"                \"1554424_at\"                 \n",
+       "  [947] \"1555643_s_at\"                \"1555634_a_at\"               \n",
+       "  [949] \"1557203_at\"                  \"1555561_a_at\"               \n",
+       "  [951] \"1555560_at\"                  \"1557443_s_at\"               \n",
+       "  [953] \"1554503_a_at\"                \"1559126_at\"                 \n",
+       "  [955] \"1559127_x_at\"                \"1557867_s_at\"               \n",
+       "  [957] \"1557866_at\"                  \"1554494_at\"                 \n",
+       "  [959] \"1554495_s_at\"                \"1552768_at\"                 \n",
+       "  [961] \"1554547_at\"                  \"1552480_s_at\"               \n",
+       "  [963] \"1552842_at\"                  \"1553141_at\"                 \n",
+       "  [965] \"1552667_a_at\"                \"1555164_at\"                 \n",
+       "  [967] \"1559631_at\"                  \"1554503_a_at\"               \n",
+       "  [969] \"1556616_a_at\"                \"1558673_s_at\"               \n",
+       "  [971] \"1557544_at\"                  \"1556494_at\"                 \n",
+       "  [973] \"1556291_at\"                  \"1556292_s_at\"               \n",
+       "  [975] \"1555515_a_at\"                \"1554518_at\"                 \n",
+       "  [977] \"1555025_at\"                  \"1554503_a_at\"               \n",
+       "  [979] \"1555500_s_at\"                \"1552717_s_at\"               \n",
+       "  [981] \"1552717_s_at\"                \"1553034_at\"                 \n",
+       "  [983] \"1554237_at\"                  \"1554042_s_at\"               \n",
+       "  [985] \"1554041_at\"                  \"1554042_s_at\"               \n",
+       "  [987] \"1556285_s_at\"                \"1556284_at\"                 \n",
+       "  [989] \"1554499_s_at\"                \"1554503_a_at\"               \n",
+       "  [991] \"1557807_a_at\"                \"1558606_s_at\"               \n",
+       "  [993] \"1558605_at\"                  \"1558950_at\"                 \n",
+       "  [995] \"1554165_at\"                  \"1558606_s_at\"               \n",
+       "  [997] \"1558605_at\"                  \"1556684_at\"                 \n",
+       "  [999] \"1556684_at\"                  \"1556684_at\"                 \n",
+       " [1001] \"1553691_at\"                  \"1552566_at\"                 \n",
+       " [1003] \"1554445_at\"                  \"1552511_a_at\"               \n",
+       " [1005] \"1553946_at\"                  \"1559079_at\"                 \n",
+       " [1007] \"1557984_s_at\"                \"1553752_at\"                 \n",
+       " [1009] \"1555441_at\"                  \"1552378_s_at\"               \n",
+       " [1011] \"1555336_a_at\"                \"1555335_at\"                 \n",
+       " [1013] \"1557782_s_at\"                \"1555153_s_at\"               \n",
+       " [1015] \"1557511_at\"                  \"1555788_a_at\"               \n",
+       " [1017] \"1557024_at\"                  \"1557025_a_at\"               \n",
+       " [1019] \"1556976_s_at\"                \"1555096_at\"                 \n",
+       " [1021] \"1556404_a_at\"                \"1556213_a_at\"               \n",
+       " [1023] \"1555373_at\"                  \"1554757_a_at\"               \n",
+       " [1025] \"1558553_at\"                  \"1555343_at\"                 \n",
+       " [1027] \"1553690_at\"                  \"1553057_at\"                 \n",
+       " [1029] \"1552605_s_at\"                \"1552604_at\"                 \n",
+       " [1031] \"1555141_a_at\"                \"1555142_at\"                 \n",
+       " [1033] \"1553633_s_at\"                \"1556876_s_at\"               \n",
+       " [1035] \"1556496_a_at\"                \"1558649_at\"                 \n",
+       " [1037] \"1553234_at\"                  \"1553226_at\"                 \n",
+       " [1039] \"1553151_at\"                  \"1553153_at\"                 \n",
+       " [1041] \"1553155_x_at\"                \"1555580_at\"                 \n",
+       " [1043] \"1557981_at\"                  \"1556346_at\"                 \n",
+       " [1045] \"1558333_at\"                  \"1558334_a_at\"               \n",
+       " [1047] \"1559333_at\"                  \"1558540_s_at\"               \n",
+       " [1049] \"1556316_s_at\"                \"1554474_a_at\"               \n",
+       " [1051] \"1553316_at\"                  \"1553317_s_at\"               \n",
+       " [1053] \"1553193_at\"                  \"1553192_at\"                 \n",
+       " [1055] \"1559190_s_at\"                \"1553940_a_at\"               \n",
+       " [1057] \"1558176_at\"                  \"1553678_a_at\"               \n",
+       " [1059] \"1553530_a_at\"                \"1558826_at\"                 \n",
+       " [1061] \"1558827_a_at\"                \"1555847_a_at\"               \n",
+       " [1063] \"1554637_a_at\"                \"1555344_at\"                 \n",
+       " [1065] \"1554589_at\"                  \"1554940_a_at\"               \n",
+       " [1067] \"1554503_a_at\"                \"1553403_at\"                 \n",
+       " [1069] \"1558412_at\"                  \"1553482_at\"                 \n",
+       " [1071] \"1553647_at\"                  \"1558621_at\"                 \n",
+       " [1073] \"1556351_at\"                  \"1553442_a_at\"               \n",
+       " [1075] \"1554377_a_at\"                \"1555643_s_at\"               \n",
+       " [1077] \"1555634_a_at\"                \"1559540_at\"                 \n",
+       " [1079] \"1553074_at\"                  \"1556319_at\"                 \n",
+       " [1081] \"1553101_a_at\"                \"1553893_at\"                 \n",
+       " [1083] \"1552747_a_at\"                \"1558594_at\"                 \n",
+       " [1085] \"1555486_a_at\"                \"1555244_at\"                 \n",
+       " [1087] \"1553037_a_at\"                \"1557094_at\"                 \n",
+       " [1089] \"1553619_a_at\"                \"1553618_at\"                 \n",
+       " [1091] \"1552797_s_at\"                \"1555038_at\"                 \n",
+       " [1093] \"1554317_s_at\"                \"1556473_at\"                 \n",
+       " [1095] \"1556474_a_at\"                \"1553318_at\"                 \n",
+       " [1097] \"1552830_at\"                  \"1553802_a_at\"               \n",
+       " [1099] \"1556429_a_at\"                \"1553046_s_at\"               \n",
+       " [1101] \"1559617_at\"                  \"1558211_s_at\"               \n",
+       " [1103] \"1553875_s_at\"                \"1553874_a_at\"               \n",
+       " [1105] \"1555540_at\"                  \"1555461_at\"                 \n",
+       " [1107] \"1553679_s_at\"                \"1558628_at\"                 \n",
+       " [1109] \"1556505_at\"                  \"1556216_s_at\"               \n",
+       " [1111] \"1558845_at\"                  \"1559689_a_at\"               \n",
+       " [1113] \"1559688_at\"                  \"1556706_at\"                 \n",
+       " [1115] \"1557161_at\"                  \"1556133_s_at\"               \n",
+       " [1117] \"1557371_a_at\"                \"1557293_at\"                 \n",
+       " [1119] \"1557488_at\"                  \"1558747_at\"                 \n",
+       " [1121] \"1555914_a_at\"                \"1557293_at\"                 \n",
+       " [1123] \"1557089_at\"                  \"1557383_a_at\"               \n",
+       " [1125] \"1553931_at\"                  \"1555555_at\"                 \n",
+       " [1127] \"1559392_s_at\"                \"1556269_at\"                 \n",
+       " [1129] \"1555492_a_at\"                \"1559674_at\"                 \n",
+       " [1131] \"1552375_at\"                  \"1557293_at\"                 \n",
+       " [1133] \"1559568_at\"                  \"1552750_at\"                 \n",
+       " [1135] \"1552751_a_at\"                \"1552755_at\"                 \n",
+       " [1137] \"1552757_s_at\"                \"1558761_a_at\"               \n",
+       " [1139] \"1557889_at\"                  \"1554352_s_at\"               \n",
+       " [1141] \"1558643_s_at\"                \"1557293_at\"                 \n",
+       " [1143] \"1557560_at\"                  \"1558868_a_at\"               \n",
+       " [1145] \"1558867_at\"                  \"1554394_at\"                 \n",
+       " [1147] \"1556161_a_at\"                \"1555886_at\"                 \n",
+       " [1149] \"1554646_at\"                  \"1554597_at\"                 \n",
+       " [1151] \"1554599_x_at\"                \"1555169_at\"                 \n",
+       " [1153] \"1554867_a_at\"                \"1557293_at\"                 \n",
+       " [1155] \"1558275_at\"                  \"1552592_at\"                 \n",
+       " [1157] \"1554982_a_at\"                \"1554981_at\"                 \n",
+       " [1159] \"1558647_at\"                  \"1556473_at\"                 \n",
+       " [1161] \"1556474_a_at\"                \"1556630_at\"                 \n",
+       " [1163] \"1559124_at\"                  \"1554916_a_at\"               \n",
+       " [1165] \"1554179_s_at\"                \"1556220_at\"                 \n",
+       " [1167] \"1556221_a_at\"                \"1554012_at\"                 \n",
+       " [1169] \"1553881_at\"                  \"1553584_at\"                 \n",
+       " [1171] \"1552799_at\"                  \"1553352_x_at\"               \n",
+       " [1173] \"1555299_s_at\"                \"1559044_at\"                 \n",
+       " [1175] \"1553411_s_at\"                \"1558144_at\"                 \n",
+       " [1177] \"1554078_s_at\"                \"1559388_a_at\"               \n",
+       " [1179] \"1558474_at\"                  \"1556336_at\"                 \n",
+       " [1181] \"1553474_at\"                  \"1553080_at\"                 \n",
+       " [1183] \"1555745_a_at\"                \"1559388_a_at\"               \n",
+       " [1185] \"1554179_s_at\"                \"1552658_a_at\"               \n",
+       " [1187] \"1559593_a_at\"                \"1552421_a_at\"               \n",
+       " [1189] \"1553544_at\"                  \"1557591_at\"                 \n",
+       " [1191] \"1559039_at\"                  \"1559002_at\"                 \n",
+       " [1193] \"1552742_at\"                  \"1554696_s_at\"               \n",
+       " [1195] \"1557985_s_at\"                \"1553851_at\"                 \n",
+       " [1197] \"1557077_a_at\"                \"1553831_at\"                 \n",
+       " [1199] \"1556368_at\"                  \"1556369_a_at\"               \n",
+       " [1201] \"1557169_x_at\"                \"1557167_at\"                 \n",
+       " [1203] \"1557169_x_at\"                \"1557167_at\"                 \n",
+       " [1205] \"1553328_a_at\"                \"1554768_a_at\"               \n",
+       " [1207] \"1553271_at\"                  \"1557845_at\"                 \n",
+       " [1209] \"1552953_a_at\"                \"1557293_at\"                 \n",
+       " [1211] \"1553559_at\"                  \"1554400_at\"                 \n",
+       " [1213] \"1554401_a_at\"                \"1557945_at\"                 \n",
+       " [1215] \"1555533_at\"                  \"1553586_at\"                 \n",
+       " [1217] \"1555600_s_at\"                \"1557709_at\"                 \n",
+       " [1219] \"1553864_at\"                  \"1553865_a_at\"               \n",
+       " [1221] \"1554216_at\"                  \"1554217_a_at\"               \n",
+       " [1223] \"1557301_a_at\"                \"1559399_s_at\"               \n",
+       " [1225] \"1554445_at\"                  \"1552717_s_at\"               \n",
+       " [1227] \"1558972_s_at\"                \"1558971_at\"                 \n",
+       " [1229] \"1555332_at\"                  \"1554360_at\"                 \n",
+       " [1231] \"1557820_at\"                  \"1554113_a_at\"               \n",
+       " [1233] \"1557293_at\"                  \"1554828_at\"                 \n",
+       " [1235] \"1553809_a_at\"                \"1553323_a_at\"               \n",
+       " [1237] \"1558938_at\"                  \"1559315_s_at\"               \n",
+       " [1239] \"1556318_s_at\"                \"1557022_at\"                 \n",
+       " [1241] \"1558967_s_at\"                \"1557286_at\"                 \n",
+       " [1243] \"1553911_at\"                  \"1555505_a_at\"               \n",
+       " [1245] \"1555504_at\"                  \"1553765_a_at\"               \n",
+       " [1247] \"1554460_at\"                  \"1552289_a_at\"               \n",
+       " [1249] \"1552288_at\"                  \"1552943_at\"                 \n",
+       " [1251] \"1556841_a_at\"                \"1559393_at\"                 \n",
+       " [1253] \"1552555_at\"                  \"1558938_at\"                 \n",
+       " [1255] \"1554507_at\"                  \"1554504_at\"                 \n",
+       " [1257] \"1554506_x_at\"                \"1559621_at\"                 \n",
+       " [1259] \"1555852_at\"                  \"1555853_at\"                 \n",
+       " [1261] \"1553876_at\"                  \"1555215_a_at\"               \n",
+       " [1263] \"1555715_a_at\"                \"1552370_at\"                 \n",
+       " [1265] \"1552372_at\"                  \"1552373_s_at\"               \n",
+       " [1267] \"1556916_a_at\"                \"1556917_a_at\"               \n",
+       " [1269] \"1553335_x_at\"                \"1553938_a_at\"               \n",
+       " [1271] \"1559624_at\"                  \"1555807_a_at\"               \n",
+       " [1273] \"1557753_at\"                  \"1559689_a_at\"               \n",
+       " [1275] \"1559688_at\"                  \"1553079_at\"                 \n",
+       " [1277] \"1553383_at\"                  \"1552639_at\"                 \n",
+       " [1279] \"1558020_at\"                  \"1557741_at\"                 \n",
+       " [1281] \"1557742_a_at\"                \"1558214_s_at\"               \n",
+       " [1283] \"1554976_a_at\"                \"1552510_at\"                 \n",
+       " [1285] \"1554487_a_at\"                \"1555443_at\"                 \n",
+       " [1287] \"1557287_at\"                  \"1558967_s_at\"               \n",
+       " [1289] \"1553486_a_at\"                \"1553079_at\"                 \n",
+       " [1291] \"1553511_at\"                  \"1555456_at\"                 \n",
+       " [1293] \"1559050_at\"                  \"1557709_at\"                 \n",
+       " [1295] \"1554533_at\"                  \"1553542_at\"                 \n",
+       " [1297] \"1556001_at\"                  \"1557325_at\"                 \n",
+       " [1299] \"1554533_at\"                  \"1555565_s_at\"               \n",
+       " [1301] \"1552828_at\"                  \"1556987_s_at\"               \n",
+       " [1303] \"1556986_at\"                  \"1007_s_at\"                  \n",
+       " [1305] \"1007_s_at\"                   \"1553140_at\"                 \n",
+       " [1307] \"1552925_at\"                  \"1556328_at\"                 \n",
+       " [1309] \"1556329_a_at\"                \"1559449_a_at\"               \n",
+       " [1311] \"1555807_a_at\"                \"1555203_s_at\"               \n",
+       " [1313] \"1556987_s_at\"                \"1556986_at\"                 \n",
+       " [1315] \"1554533_at\"                  \"1559611_at\"                 \n",
+       " [1317] \"1552955_at\"                  \"1554957_at\"                 \n",
+       " [1319] \"1552995_at\"                  \"1554800_at\"                 \n",
+       " [1321] \"1555852_at\"                  \"1555853_at\"                 \n",
+       " [1323] \"1555470_a_at\"                \"1555091_at\"                 \n",
+       " [1325] \"1552493_s_at\"                \"1553079_at\"                 \n",
+       " [1327] \"1559658_at\"                  \"1555390_at\"                 \n",
+       " [1329] \"1559036_at\"                  \"1554290_at\"                 \n",
+       " [1331] \"1555137_a_at\"                \"1555136_at\"                 \n",
+       " [1333] \"1556405_s_at\"                \"1554894_a_at\"               \n",
+       " [1335] \"1552343_s_at\"                \"1556859_a_at\"               \n",
+       " [1337] \"1558512_at\"                  \"1558967_s_at\"               \n",
+       " [1339] \"1559050_at\"                  \"1555807_a_at\"               \n",
+       " [1341] \"1559036_at\"                  \"1559036_at\"                 \n",
+       " [1343] \"1555612_s_at\"                \"1558176_at\"                 \n",
+       " [1345] \"1555580_at\"                  \"1555436_a_at\"               \n",
+       " [1347] \"1555435_at\"                  \"1552793_at\"                 \n",
+       " [1349] \"1555677_s_at\"                \"1555565_s_at\"               \n",
+       " [1351] \"1559303_at\"                  \"1559036_at\"                 \n",
+       " [1353] \"1553533_at\"                  \"1557679_at\"                 \n",
+       " [1355] \"1554978_at\"                  \"1555852_at\"                 \n",
+       " [1357] \"1555853_at\"                  \"1556210_at\"                 \n",
+       " [1359] \"1556211_a_at\"                \"1556212_x_at\"               \n",
+       " [1361] \"1554378_a_at\"                \"1556987_s_at\"               \n",
+       " [1363] \"1556986_at\"                  \"1558452_at\"                 \n",
+       " [1365] \"1559297_at\"                  \"1558803_at\"                 \n",
+       " [1367] \"1554413_s_at\"                \"1553079_at\"                 \n",
+       " [1369] \"1558967_s_at\"                \"1554741_s_at\"               \n",
+       " [1371] \"1558484_s_at\"                \"1558483_at\"                 \n",
+       " [1373] \"1007_s_at\"                   \"1555419_a_at\"               \n",
+       " [1375] \"1553521_at\"                  \"1553521_at\"                 \n",
+       " [1377] \"1553002_at\"                  \"1553002_at\"                 \n",
+       " [1379] \"1553002_at\"                  \"1555203_s_at\"               \n",
+       " [1381] \"1557149_at\"                  \"1553582_a_at\"               \n",
+       " [1383] \"1553579_a_at\"                \"1553582_a_at\"               \n",
+       " [1385] \"1553579_a_at\"                \"1552412_a_at\"               \n",
+       " [1387] \"1552411_at\"                  \"1552412_a_at\"               \n",
+       " [1389] \"1552411_at\"                  \"1552745_at\"                 \n",
+       " [1391] \"1555587_at\"                  \"1554487_a_at\"               \n",
+       " [1393] \"1555852_at\"                  \"1555853_at\"                 \n",
+       " [1395] \"1555203_s_at\"                \"1555056_at\"                 \n",
+       " [1397] \"1558529_s_at\"                \"1552490_at\"                 \n",
+       " [1399] \"1554973_a_at\"                \"1557116_at\"                 \n",
+       " [1401] \"1557236_at\"                  \"1554400_at\"                 \n",
+       " [1403] \"1554401_a_at\"                \"1557945_at\"                 \n",
+       " [1405] \"1556987_s_at\"                \"1556986_at\"                 \n",
+       " [1407] \"1552266_at\"                  \"1552687_a_at\"               \n",
+       " [1409] \"1552686_at\"                  \"1557267_s_at\"               \n",
+       " [1411] \"1554403_a_at\"                \"1557531_a_at\"               \n",
+       " [1413] \"1553279_at\"                  \"1559256_at\"                 \n",
+       " [1415] \"1559257_a_at\"                \"1555282_a_at\"               \n",
+       " [1417] \"1553639_a_at\"                \"1557919_a_at\"               \n",
+       " [1419] \"1552999_a_at\"                \"1552948_at\"                 \n",
+       " [1421] \"1556266_a_at\"                \"1556265_at\"                 \n",
+       " [1423] \"1554128_at\"                  \"1554156_a_at\"               \n",
+       " [1425] \"1554157_a_at\"                \"1556531_at\"                 \n",
+       " [1427] \"1552930_at\"                  \"1558807_at\"                 \n",
+       " [1429] \"1556371_at\"                  \"1552388_at\"                 \n",
+       " [1431] \"1552801_at\"                  \"1559566_at\"                 \n",
+       " [1433] \"1558529_s_at\"                \"1559265_at\"                 \n",
+       " [1435] \"1559266_s_at\"                \"1558540_s_at\"               \n",
+       " [1437] \"1553830_s_at\"                \"1553830_s_at\"               \n",
+       " [1439] \"1553044_at\"                  \"1555426_a_at\"               \n",
+       " [1441] \"1556987_s_at\"                \"1556986_at\"                 \n",
+       " [1443] \"1556636_at\"                  \"1557562_at\"                 \n",
+       " [1445] \"1553474_at\"                  \"1556180_at\"                 \n",
+       " [1447] \"1559277_at\"                  \"1552729_at\"                 \n",
+       " [1449] \"1552729_at\"                  \"1552729_at\"                 \n",
+       " [1451] \"1552729_at\"                  \"1554741_s_at\"               \n",
+       " [1453] \"1553079_at\"                  \"1554773_at\"                 \n",
+       " [1455] \"1552657_a_at\"                \"1557692_a_at\"               \n",
+       " [1457] \"1554487_a_at\"                \"1553474_at\"                 \n",
+       " [1459] \"1557321_a_at\"                \"1559050_at\"                 \n",
+       " [1461] \"1554806_a_at\"                \"1555773_at\"                 \n",
+       " [1463] \"1556842_at\"                  \"1559036_at\"                 \n",
+       " [1465] \"1559036_at\"                  \"1554566_at\"                 \n",
+       " [1467] \"1554703_at\"                  \"1554213_at\"                 \n",
+       " [1469] \"1554887_at\"                  \"1554533_at\"                 \n",
+       " [1471] \"1553768_a_at\"                \"1558820_a_at\"               \n",
+       " [1473] \"1556406_at\"                  \"1555807_a_at\"               \n",
+       " [1475] \"1555247_a_at\"                \"1553642_at\"                 \n",
+       " [1477] \"1556445_at\"                  \"1558777_at\"                 \n",
+       " [1479] \"1558778_s_at\"                \"1552897_a_at\"               \n",
+       " [1481] \"1552898_a_at\"                \"1552796_a_at\"               \n",
+       " [1483] \"1556300_s_at\"                \"1554292_a_at\"               \n",
+       " [1485] \"1554291_at\"                  \"1553593_a_at\"               \n",
+       " [1487] \"1559728_at\"                  \"1554480_a_at\"               \n",
+       " [1489] \"1555787_at\"                  \"1553453_at\"                 \n",
+       " [1491] \"1554234_at\"                  \"1555565_s_at\"               \n",
+       " [1493] \"1554480_a_at\"                \"1555203_s_at\"               \n",
+       " [1495] \"1553634_a_at\"                \"1558967_s_at\"               \n",
+       " [1497] \"1554533_at\"                  \"1559050_at\"                 \n",
+       " [1499] \"1553079_at\"                  \"1555498_at\"                 \n",
+       " [1501] \"1552277_a_at\"                \"1555841_at\"                 \n",
+       " [1503] \"1553651_at\"                  \"1553652_a_at\"               \n",
+       " [1505] \"1555852_at\"                  \"1555853_at\"                 \n",
+       " [1507] \"1556445_at\"                  \"1559036_at\"                 \n",
+       " [1509] \"1553084_at\"                  \"1554807_a_at\"               \n",
+       " [1511] \"1559517_a_at\"                \"1555562_a_at\"               \n",
+       " [1513] \"1559683_at\"                  \"1555359_at\"                 \n",
+       " [1515] \"1555565_s_at\"                \"1554128_at\"                 \n",
+       " [1517] \"1554129_a_at\"                \"1558421_a_at\"               \n",
+       " [1519] \"1558420_at\"                  \"1552950_at\"                 \n",
+       " [1521] \"1556950_s_at\"                \"1559050_at\"                 \n",
+       " [1523] \"1556231_a_at\"                \"1555042_at\"                 \n",
+       " [1525] \"1556987_s_at\"                \"1556986_at\"                 \n",
+       " [1527] \"1554549_a_at\"                \"1557322_at\"                 \n",
+       " [1529] \"1555807_a_at\"                \"1559656_a_at\"               \n",
+       " [1531] \"1559655_at\"                  \"1553061_at\"                 \n",
+       " [1533] \"1553061_at\"                  \"1554523_a_at\"               \n",
+       " [1535] \"1554522_at\"                  \"1558451_at\"                 \n",
+       " [1537] \"1007_s_at\"                   \"1556737_at\"                 \n",
+       " [1539] \"1558631_at\"                  \"1556064_at\"                 \n",
+       " [1541] \"1557369_a_at\"                \"1559036_at\"                 \n",
+       " [1543] \"1559036_at\"                  \"1554728_at\"                 \n",
+       " [1545] \"1555526_a_at\"                \"1556942_at\"                 \n",
+       " [1547] \"1552721_a_at\"                \"1557609_s_at\"               \n",
+       " [1549] \"1555852_at\"                  \"1555853_at\"                 \n",
+       " [1551] \"1559036_at\"                  \"1553146_at\"                 \n",
+       " [1553] \"1555852_at\"                  \"1555853_at\"                 \n",
+       " [1555] \"1554110_at\"                  \"1554533_at\"                 \n",
+       " [1557] \"1555412_at\"                  \"1553500_at\"                 \n",
+       " [1559] \"1555413_s_at\"                \"1554519_at\"                 \n",
+       " [1561] \"1555689_at\"                  \"1558590_at\"                 \n",
+       " [1563] \"1554864_a_at\"                \"1555780_a_at\"               \n",
+       " [1565] \"1557094_at\"                  \"1555807_a_at\"               \n",
+       " [1567] \"1552602_at\"                  \"1554574_a_at\"               \n",
+       " [1569] \"1554354_at\"                  \"1554355_a_at\"               \n",
+       " [1571] \"1554149_at\"                  \"1553079_at\"                 \n",
+       " [1573] \"1556987_s_at\"                \"1556986_at\"                 \n",
+       " [1575] \"1557744_at\"                  \"1557448_a_at\"               \n",
+       " [1577] \"1555203_s_at\"                \"1555203_s_at\"               \n",
+       " [1579] \"1552368_at\"                  \"1558967_s_at\"               \n",
+       " [1581] \"1554574_a_at\"                \"1552338_at\"                 \n",
+       " [1583] \"1557429_s_at\"                \"1553799_at\"                 \n",
+       " [1585] \"1555140_a_at\"                \"1555210_at\"                 \n",
+       " [1587] \"1557094_at\"                  \"1494_f_at\"                  \n",
+       " [1589] \"1553838_at\"                  \"1556099_at\"                 \n",
+       " [1591] \"1555071_at\"                  \"1552314_a_at\"               \n",
+       " [1593] \"1554844_at\"                  \"1557338_x_at\"               \n",
+       " [1595] \"1557336_at\"                  \"1557620_a_at\"               \n",
+       " [1597] \"1556061_at\"                  \"1556063_s_at\"               \n",
+       " [1599] \"1553456_at\"                  \"1553456_at\"                 \n",
+       " [1601] \"1555807_a_at\"                \"1553432_s_at\"               \n",
+       " [1603] \"1558277_at\"                  \"1558062_at\"                 \n",
+       " [1605] \"1553497_at\"                  \"1554375_a_at\"               \n",
+       " [1607] \"1558062_at\"                  \"1554249_a_at\"               \n",
+       " [1609] \"1557383_a_at\"                \"1558449_at\"                 \n",
+       " [1611] \"1557458_s_at\"                \"1552860_at\"                 \n",
+       " [1613] \"1553303_at\"                  \"1552860_at\"                 \n",
+       " [1615] \"1552860_at\"                  \"1552860_at\"                 \n",
+       " [1617] \"1557897_at\"                  \"1557731_at\"                 \n",
+       " [1619] \"1559685_at\"                  \"1559686_a_at\"               \n",
+       " [1621] \"1559138_a_at\"                \"1553417_at\"                 \n",
+       " [1623] \"1555645_at\"                  \"1558750_a_at\"               \n",
+       " [1625] \"1557064_s_at\"                \"1554616_at\"                 \n",
+       " [1627] \"1559661_at\"                  \"1552445_a_at\"               \n",
+       " [1629] \"1553947_at\"                  \"1558044_s_at\"               \n",
+       " [1631] \"1558534_at\"                  \"1553934_at\"                 \n",
+       " [1633] \"1555315_a_at\"                \"1557677_a_at\"               \n",
+       " [1635] \"1554214_at\"                  \"1554820_at\"                 \n",
+       " [1637] \"1557214_at\"                  \"1554978_at\"                 \n",
+       " [1639] \"1557679_at\"                  \"1552326_a_at\"               \n",
+       " [1641] \"1552325_at\"                  \"1554418_s_at\"               \n",
+       " [1643] \"1553246_a_at\"                \"1552969_a_at\"               \n",
+       " [1645] \"1552970_s_at\"                \"1554462_a_at\"               \n",
+       " [1647] \"1554472_a_at\"                \"1557241_a_at\"               \n",
+       " [1649] \"1555002_at\"                  \"1557664_at\"                 \n",
+       " [1651] \"1556638_at\"                  \"1552306_at\"                 \n",
+       " [1653] \"1552304_at\"                  \"1554453_at\"                 \n",
+       " [1655] \"1555848_at\"                  \"1552972_at\"                 \n",
+       " [1657] \"1554224_at\"                  \"1554225_a_at\"               \n",
+       " [1659] \"1555193_a_at\"                \"1555192_at\"                 \n",
+       " [1661] \"1555545_at\"                  \"1555571_at\"                 \n",
+       " [1663] \"1553780_at\"                  \"1557415_s_at\"               \n",
+       " [1665] \"1552546_a_at\"                \"1557631_at\"                 \n",
+       " [1667] \"1553732_s_at\"                \"1554513_s_at\"               \n",
+       " [1669] \"1554512_a_at\"                \"1557430_at\"                 \n",
+       " [1671] \"1553587_a_at\"                \"1552502_s_at\"               \n",
+       " [1673] \"1554895_a_at\"                \"1554897_s_at\"               \n",
+       " [1675] \"1553947_at\"                  \"1554558_at\"                 \n",
+       " [1677] \"1553675_at\"                  \"1553666_at\"                 \n",
+       " [1679] \"1553146_at\"                  \"1557057_a_at\"               \n",
+       " [1681] \"1557056_at\"                  \"1557181_s_at\"               \n",
+       " [1683] \"1557180_at\"                  \"1554329_x_at\"               \n",
+       " [1685] \"1554328_at\"                  \"1552715_a_at\"               \n",
+       " [1687] \"1555702_a_at\"                \"1553120_at\"                 \n",
+       " [1689] \"1559701_s_at\"                \"1559701_s_at\"               \n",
+       " [1691] \"1552504_a_at\"                \"1555324_at\"                 \n",
+       " [1693] \"1554480_a_at\"                \"1553900_s_at\"               \n",
+       " [1695] \"1554114_s_at\"                \"1555423_at\"                 \n",
+       " [1697] \"1555425_x_at\"                \"1553545_at\"                 \n",
+       " [1699] \"1555755_at\"                  \"1558578_a_at\"               \n",
+       " [1701] \"1554912_at\"                  \"1557793_at\"                 \n",
+       " [1703] \"1557875_at\"                  \"1553499_s_at\"               \n",
+       " [1705] \"1554638_at\"                  \"1555011_at\"                 \n",
+       " [1707] \"1557502_at\"                  \"1559078_at\"                 \n",
+       " [1709] \"1552544_at\"                  \"1557542_at\"                 \n",
+       " [1711] \"1557283_a_at\"                \"1554268_at\"                 \n",
+       " [1713] \"1553978_at\"                  \"1554777_at\"                 \n",
+       " [1715] \"1554776_at\"                  \"1554762_a_at\"               \n",
+       " [1717] \"1554039_at\"                  \"1558603_at\"                 \n",
+       " [1719] \"1556627_at\"                  \"1554195_a_at\"               \n",
+       " [1721] \"1553900_s_at\"                \"1554668_a_at\"               \n",
+       " [1723] \"1558848_at\"                  \"1555292_at\"                 \n",
+       " [1725] \"1557590_at\"                  \"1558630_at\"                 \n",
+       " [1727] \"1558348_at\"                  \"1553205_at\"                 \n",
+       " [1729] \"1553204_at\"                  \"1555617_x_at\"               \n",
+       " [1731] \"1555616_at\"                  \"1552913_at\"                 \n",
+       " [1733] \"1558906_a_at\"                \"1552858_at\"                 \n",
+       " [1735] \"1558645_at\"                  \"1556333_at\"                 \n",
+       " [1737] \"1556334_s_at\"                \"1555679_a_at\"               \n",
+       " [1739] \"1556220_at\"                  \"1556221_a_at\"               \n",
+       " [1741] \"1553340_s_at\"                \"1557233_at\"                 \n",
+       " [1743] \"1552895_a_at\"                \"1555611_s_at\"               \n",
+       " [1745] \"1558711_at\"                  \"1556639_at\"                 \n",
+       " [1747] \"1558414_at\"                  \"1552917_at\"                 \n",
+       " [1749] \"1554812_at\"                  \"1555815_a_at\"               \n",
+       " [1751] \"1554489_a_at\"                \"1554488_at\"                 \n",
+       " [1753] \"1555982_at\"                  \"1557610_at\"                 \n",
+       " [1755] \"1557123_a_at\"                \"1559537_at\"                 \n",
+       " [1757] \"1556156_at\"                  \"1554112_a_at\"               \n",
+       " [1759] \"1558407_at\"                  \"1556227_at\"                 \n",
+       " [1761] \"1556228_a_at\"                \"1553132_a_at\"               \n",
+       " [1763] \"1556592_at\"                  \"1556593_s_at\"               \n",
+       " [1765] \"1553225_s_at\"                \"1557876_at\"                 \n",
+       " [1767] \"1557877_s_at\"                \"1552457_a_at\"               \n",
+       " [1769] \"1552808_at\"                  \"1558034_s_at\"               \n",
+       " [1771] \"1555535_at\"                  \"1554246_at\"                 \n",
+       " [1773] \"1553701_a_at\"                \"1553329_at\"                 \n",
+       " [1775] \"1553330_at\"                  \"1553474_at\"                 \n",
+       " [1777] \"1556771_a_at\"                \"1558624_at\"                 \n",
+       " [1779] \"1559280_a_at\"                \"1552359_at\"                 \n",
+       " [1781] \"1553711_a_at\"                \"1553710_at\"                 \n",
+       " [1783] \"1553391_at\"                  \"1556255_a_at\"               \n",
+       " [1785] \"1553891_at\"                  \"1559681_a_at\"               \n",
+       " [1787] \"1556958_at\"                  \"1555902_at\"                 \n",
+       " [1789] \"1557366_at\"                  \"1559324_at\"                 \n",
+       " [1791] \"1552652_at\"                  \"1555286_at\"                 \n",
+       " [1793] \"1556718_s_at\"                \"1552914_a_at\"               \n",
+       " [1795] \"1559583_at\"                  \"1553970_s_at\"               \n",
+       " [1797] \"1555620_a_at\"                \"1553630_at\"                 \n",
+       " [1799] \"1556917_a_at\"                \"1553362_at\"                 \n",
+       " [1801] \"1552957_at\"                  \"1552579_a_at\"               \n",
+       " [1803] \"1559477_s_at\"                \"1556015_a_at\"               \n",
+       " [1805] \"1556014_at\"                  \"1556224_a_at\"               \n",
+       " [1807] \"1554670_at\"                  \"1555078_at\"                 \n",
+       " [1809] \"1559170_at\"                  \"1554568_at\"                 \n",
+       " [1811] \"1559028_at\"                  \"1554989_at\"                 \n",
+       " [1813] \"1554239_s_at\"                \"1554283_at\"                 \n",
+       " [1815] \"1556769_a_at\"                \"1557710_at\"                 \n",
+       " [1817] \"1557710_at\"                  \"1558666_at\"                 \n",
+       " [1819] \"1552967_at\"                  \"1554595_at\"                 \n",
+       " [1821] \"1557129_a_at\"                \"1557128_at\"                 \n",
+       " [1823] \"1558411_at\"                  \"1554872_a_at\"               \n",
+       " [1825] \"1557065_at\"                  \"1555082_a_at\"               \n",
+       " [1827] \"1554380_at\"                  \"1554787_at\"                 \n",
+       " [1829] \"1557472_a_at\"                \"1554145_a_at\"               \n",
+       " [1831] \"1553955_at\"                  \"1556365_at\"                 \n",
+       " [1833] \"1556366_s_at\"                \"1557767_at\"                 \n",
+       " [1835] \"1553997_a_at\"                \"1558651_at\"                 \n",
+       " [1837] \"1554429_a_at\"                \"1555046_at\"                 \n",
+       " [1839] \"1554376_s_at\"                \"1555931_at\"                 \n",
+       " [1841] \"1555932_at\"                  \"1557099_at\"                 \n",
+       " [1843] \"1556508_s_at\"                \"1556507_at\"                 \n",
+       " [1845] \"1553706_at\"                  \"1558116_x_at\"               \n",
+       " [1847] \"1558115_at\"                  \"1558093_s_at\"               \n",
+       " [1849] \"1552266_at\"                  \"1552491_at\"                 \n",
+       " [1851] \"1554045_at\"                  \"1554335_at\"                 \n",
+       " [1853] \"1553568_a_at\"                \"1558128_at\"                 \n",
+       " [1855] \"1554231_a_at\"                \"1552825_at\"                 \n",
+       " [1857] \"1554985_at\"                  \"1555166_a_at\"               \n",
+       " [1859] \"1557275_a_at\"                \"1559716_at\"                 \n",
+       " [1861] \"1553202_at\"                  \"1553105_s_at\"               \n",
+       " [1863] \"1559072_a_at\"                \"1556444_a_at\"               \n",
+       " [1865] \"1552644_a_at\"                \"1558021_at\"                 \n",
+       " [1867] \"1554873_at\"                  \"1558253_x_at\"               \n",
+       " [1869] \"1558251_a_at\"                \"1552783_at\"                 \n",
+       " [1871] \"1553998_at\"                  \"1552436_a_at\"               \n",
+       " [1873] \"1554821_a_at\"                \"1559142_at\"                 \n",
+       " [1875] \"1552910_at\"                  \"1552911_at\"                 \n",
+       " [1877] \"1555837_s_at\"                \"1552910_at\"                 \n",
+       " [1879] \"1553011_at\"                  \"1555752_at\"                 \n",
+       " [1881] \"1555465_at\"                  \"1553489_a_at\"               \n",
+       " [1883] \"1553488_at\"                  \"1554062_at\"                 \n",
+       " [1885] \"1559494_at\"                  \"1558679_at\"                 \n",
+       " [1887] \"1555780_a_at\"                \"1555763_x_at\"               \n",
+       " [1889] \"1555090_x_at\"                \"1553301_a_at\"               \n",
+       " [1891] \"1558742_at\"                  \"1553217_s_at\"               \n",
+       " [1893] \"1553216_at\"                  \"1558794_at\"                 \n",
+       " [1895] \"1554117_at\"                  \"1555822_at\"                 \n",
+       " [1897] \"1556883_a_at\"                \"1556378_a_at\"               \n",
+       " [1899] \"1554465_s_at\"                \"1559069_at\"                 \n",
+       " [1901] \"1559670_at\"                  \"1559069_at\"                 \n",
+       " [1903] \"1559467_at\"                  \"1556588_at\"                 \n",
+       " [1905] \"1553998_at\"                  \"1553354_a_at\"               \n",
+       " [1907] \"1554441_a_at\"                \"1555822_at\"                 \n",
+       " [1909] \"1555822_at\"                  \"1553861_at\"                 \n",
+       " [1911] \"1559413_at\"                  \"1555437_at\"                 \n",
+       " [1913] \"1553634_a_at\"                \"1553081_at\"                 \n",
+       " [1915] \"1556247_a_at\"                \"1559355_at\"                 \n",
+       " [1917] \"1556378_a_at\"                \"1556883_a_at\"               \n",
+       " [1919] \"1554222_at\"                  \"1555900_at\"                 \n",
+       " [1921] \"1556646_at\"                  \"1556039_s_at\"               \n",
+       " [1923] \"1556038_at\"                  \"1555610_at\"                 \n",
+       " [1925] \"1558764_at\"                  \"1558765_a_at\"               \n",
+       " [1927] \"1555353_at\"                  \"1556646_at\"                 \n",
+       " [1929] \"1557342_a_at\"                \"1557342_a_at\"               \n",
+       " [1931] \"1553093_a_at\"                \"1555259_at\"                 \n",
+       " [1933] \"1555793_a_at\"                \"1553492_a_at\"               \n",
+       " [1935] \"1558700_s_at\"                \"1553532_a_at\"               \n",
+       " [1937] \"1553238_a_at\"                \"1559629_at\"                 \n",
+       " [1939] \"1557421_at\"                  \"1552988_at\"                 \n",
+       " [1941] \"1557434_at\"                  \"1555487_a_at\"               \n",
+       " [1943] \"1556065_at\"                  \"1556064_at\"                 \n",
+       " [1945] \"1555097_a_at\"                \"1553709_a_at\"               \n",
+       " [1947] \"1555394_at\"                  \"1558653_at\"                 \n",
+       " [1949] \"1558342_x_at\"                \"1558340_at\"                 \n",
+       " [1951] \"1557518_a_at\"                \"1552311_a_at\"               \n",
+       " [1953] \"1555871_at\"                  \"1557486_at\"                 \n",
+       " [1955] \"1552906_at\"                  \"1555803_a_at\"               \n",
+       " [1957] \"1552927_at\"                  \"1552928_s_at\"               \n",
+       " [1959] \"1558518_at\"                  \"1555871_at\"                 \n",
+       " [1961] \"1557334_a_at\"                \"1557721_at\"                 \n",
+       " [1963] \"1553585_a_at\"                \"1552664_at\"                 \n",
+       " [1965] \"1554281_at\"                  \"1553169_at\"                 \n",
+       " [1967] \"1553171_x_at\"                \"1558001_s_at\"               \n",
+       " [1969] \"1558000_at\"                  \"1556831_at\"                 \n",
+       " [1971] \"1559361_at\"                  \"1555680_a_at\"               \n",
+       " [1973] \"1558697_a_at\"                \"1556362_at\"                 \n",
+       " [1975] \"1556316_s_at\"                \"1555180_at\"                 \n",
+       " [1977] \"1556316_s_at\"                \"1557451_at\"                 \n",
+       " [1979] \"1558118_at\"                  \"1554818_s_at\"               \n",
+       " [1981] \"1553080_at\"                  \"1552903_at\"                 \n",
+       " [1983] \"1552421_a_at\"                \"1552609_s_at\"               \n",
+       " [1985] \"1552915_at\"                  \"1555961_a_at\"               \n",
+       " [1987] \"1555960_at\"                  \"1554017_at\"                 \n",
+       " [1989] \"1553909_x_at\"                \"1553535_a_at\"               \n",
+       " [1991] \"1555326_a_at\"                \"1554196_at\"                 \n",
+       " [1993] \"1555015_a_at\"                \"1553241_at\"                 \n",
+       " [1995] \"1558387_at\"                  \"1558388_a_at\"               \n",
+       " [1997] \"1554300_a_at\"                \"1555624_a_at\"               \n",
+       " [1999] \"1554274_a_at\"                \"1552426_a_at\"               \n",
+       " [2001] \"1554076_s_at\"                \"1557701_s_at\"               \n",
+       " [2003] \"1557700_at\"                  \"1556269_at\"                 \n",
+       " [2005] \"1316_at\"                     \"1555434_a_at\"               \n",
+       " [2007] \"1555433_at\"                  \"1553900_s_at\"               \n",
+       " [2009] \"1555236_a_at\"                \"1554382_at\"                 \n",
+       " [2011] \"1558497_a_at\"                \"1558496_at\"                 \n",
+       " [2013] \"1557998_at\"                  \"1554977_at\"                 \n",
+       " [2015] \"1553531_at\"                  \"1556823_s_at\"               \n",
+       " [2017] \"1557409_at\"                  \"1557409_at\"                 \n",
+       " [2019] \"1554824_at\"                  \"1559039_at\"                 \n",
+       " [2021] \"1553194_at\"                  \"1557302_at\"                 \n",
+       " [2023] \"1559712_at\"                  \"1556914_at\"                 \n",
+       " [2025] \"1555379_at\"                  \"1556896_at\"                 \n",
+       " [2027] \"1553311_at\"                  \"1556887_at\"                 \n",
+       " [2029] \"1552698_at\"                  \"1552698_at\"                 \n",
+       " [2031] \"1557475_at\"                  \"1553830_s_at\"               \n",
+       " [2033] \"1553830_s_at\"                \"1554428_s_at\"               \n",
+       " [2035] \"1554940_a_at\"                \"1554516_at\"                 \n",
+       " [2037] \"1554517_x_at\"                \"1553830_s_at\"               \n",
+       " [2039] \"1553619_a_at\"                \"1553618_at\"                 \n",
+       " [2041] \"1556081_at\"                  \"1556082_a_at\"               \n",
+       " [2043] \"1558804_at\"                  \"1554303_at\"                 \n",
+       " [2045] \"1552711_a_at\"                \"1554578_at\"                 \n",
+       " [2047] \"1552711_a_at\"                \"1558333_at\"                 \n",
+       " [2049] \"1558334_a_at\"                \"1553555_at\"                 \n",
+       " [2051] \"1554816_at\"                  \"1553367_a_at\"               \n",
+       " [2053] \"1552990_at\"                  \"1552594_at\"                 \n",
+       " [2055] \"1553523_at\"                  \"1555416_a_at\"               \n",
+       " [2057] \"1554242_a_at\"                \"1554241_at\"                 \n",
+       " [2059] \"1559731_x_at\"                \"1554259_at\"                 \n",
+       " [2061] \"1558728_at\"                  \"1553564_at\"                 \n",
+       " [2063] \"1553527_at\"                  \"1554878_a_at\"               \n",
+       " [2065] \"1553249_at\"                  \"1552474_a_at\"               \n",
+       " [2067] \"1552473_at\"                  \"1559459_at\"                 \n",
+       " [2069] \"1554170_a_at\"                \"1554710_at\"                 \n",
+       " [2071] \"1555230_a_at\"                \"1553954_at\"                 \n",
+       " [2073] \"1553822_at\"                  \"1553823_a_at\"               \n",
+       " [2075] \"1554148_a_at\"                \"1553303_at\"                 \n",
+       " [2077] \"1555991_s_at\"                \"1555990_at\"                 \n",
+       " [2079] \"1556814_a_at\"                \"1558493_at\"                 \n",
+       " [2081] \"1558493_at\"                  \"1555102_at\"                 \n",
+       " [2083] \"1555103_s_at\"                \"1554741_s_at\"               \n",
+       " [2085] \"1557067_s_at\"                \"1557066_at\"                 \n",
+       " [2087] \"1552409_a_at\"                \"1552408_at\"                 \n",
+       " [2089] \"1554346_at\"                  \"1558856_at\"                 \n",
+       " [2091] \"1558533_at\"                  \"1554018_at\"                 \n",
+       " [2093] \"1558876_at\"                  \"1552258_at\"                 \n",
+       " [2095] \"1555839_a_at\"                \"1552731_at\"                 \n",
+       " [2097] \"1552732_at\"                  \"1554105_at\"                 \n",
+       " [2099] \"1559133_at\"                  \"1559134_a_at\"               \n",
+       " [2101] \"1552432_at\"                  \"1558770_a_at\"               \n",
+       " [2103] \"1556436_at\"                  \"1558905_at\"                 \n",
+       " [2105] \"1553276_at\"                  \"1552396_at\"                 \n",
+       " [2107] \"1552396_at\"                  \"1556629_a_at\"               \n",
+       " [2109] \"1553221_at\"                  \"1556392_a_at\"               \n",
+       " [2111] \"1554619_at\"                  \"1553415_at\"                 \n",
+       " [2113] \"1553658_at\"                  \"1556030_at\"                 \n",
+       " [2115] \"1557382_x_at\"                \"1557380_at\"                 \n",
+       " [2117] \"1552626_a_at\"                \"1553082_at\"                 \n",
+       " [2119] \"1557382_x_at\"                \"1557380_at\"                 \n",
+       " [2121] \"1557382_x_at\"                \"1557380_at\"                 \n",
+       " [2123] \"1554950_at\"                  \"1555491_a_at\"               \n",
+       " [2125] \"1557235_at\"                  \"1554649_at\"                 \n",
+       " [2127] \"1554650_a_at\"                \"1554534_at\"                 \n",
+       " [2129] \"1554536_at\"                  \"1559298_a_at\"               \n",
+       " [2131] \"1559186_at\"                  \"1559188_x_at\"               \n",
+       " [2133] \"1556960_a_at\"                \"1556959_at\"                 \n",
+       " [2135] \"1553991_s_at\"                \"1553620_at\"                 \n",
+       " [2137] \"1553656_at\"                  \"1553599_a_at\"               \n",
+       " [2139] \"1559006_at\"                  \"1559007_s_at\"               \n",
+       " [2141] \"1554606_at\"                  \"1553115_at\"                 \n",
+       " [2143] \"1553750_a_at\"                \"1556283_s_at\"               \n",
+       " [2145] \"1555275_a_at\"                \"1554476_x_at\"               \n",
+       " [2147] \"1555695_a_at\"                \"1558280_s_at\"               \n",
+       " [2149] \"1554736_at\"                  \"1558280_s_at\"               \n",
+       " [2151] \"1554736_at\"                  \"1555632_at\"                 \n",
+       " [2153] \"1559059_s_at\"                \"1552725_s_at\"               \n",
+       " [2155] \"1552726_at\"                  \"1552727_s_at\"               \n",
+       " [2157] \"1554697_at\"                  \"1555248_a_at\"               \n",
+       " [2159] \"1554456_a_at\"                \"1554455_at\"                 \n",
+       " [2161] \"1557431_at\"                  \"1552690_a_at\"               \n",
+       " [2163] \"1553756_at\"                  \"1555179_at\"                 \n",
+       " [2165] \"1553644_at\"                  \"1554252_a_at\"               \n",
+       " [2167] \"1554253_a_at\"                \"1555162_at\"                 \n",
+       " [2169] \"1557122_s_at\"                \"1553039_a_at\"               \n",
+       " [2171] \"1559094_at\"                  \"1559096_x_at\"               \n",
+       " [2173] \"1554835_a_at\"                \"1556134_a_at\"               \n",
+       " [2175] \"1553696_s_at\"                \"1558122_s_at\"               \n",
+       " [2177] \"1555798_at\"                  \"1558699_a_at\"               \n",
+       " [2179] \"1552628_a_at\"                \"1558595_at\"                 \n",
+       " [2181] \"1556750_at\"                  \"1555800_at\"                 \n",
+       " [2183] \"1555801_s_at\"                \"1553772_at\"                 \n",
+       " [2185] \"1555083_at\"                  \"1558050_at\"                 \n",
+       " [2187] \"1559514_at\"                  \"1558530_at\"                 \n",
+       " [2189] \"1558077_s_at\"                \"1557883_a_at\"               \n",
+       " [2191] \"1557882_at\"                  \"1552335_at\"                 \n",
+       " [2193] \"1553257_at\"                  \"1558230_at\"                 \n",
+       " [2195] \"1555009_a_at\"                \"1559481_at\"                 \n",
+       " [2197] \"1557786_s_at\"                \"1558423_at\"                 \n",
+       " [2199] \"1558425_x_at\"                \"1552763_at\"                 \n",
+       " [2201] \"1552765_x_at\"                \"1557522_x_at\"               \n",
+       " [2203] \"1556867_at\"                  \"1557521_a_at\"               \n",
+       " [2205] \"1553467_at\"                  \"1553723_at\"                 \n",
+       " [2207] \"1552481_s_at\"                \"1555040_at\"                 \n",
+       " [2209] \"1557211_a_at\"                \"1552584_at\"                 \n",
+       " [2211] \"1557463_at\"                  \"1559000_at\"                 \n",
+       " [2213] \"1557548_at\"                  \"1554235_at\"                 \n",
+       " [2215] \"1553053_at\"                  \"1555682_at\"                 \n",
+       " [2217] \"1557192_at\"                  \"1556715_at\"                 \n",
+       " [2219] \"1554007_at\"                  \"1553668_at\"                 \n",
+       " [2221] \"1553540_a_at\"                \"1553852_at\"                 \n",
+       " [2223] \"1552315_at\"                  \"1552316_a_at\"               \n",
+       " [2225] \"1552318_at\"                  \"1555247_a_at\"               \n",
+       " [2227] \"1556536_at\"                  \"1555165_a_at\"               \n",
+       " [2229] \"1559502_s_at\"                \"1554814_at\"                 \n",
+       " [2231] \"1555912_at\"                  \"1559208_at\"                 \n",
+       " [2233] \"1553572_a_at\"                \"1559208_at\"                 \n",
+       " [2235] \"1556727_at\"                  \"1553920_at\"                 \n",
+       " [2237] \"1552585_s_at\"                \"1555823_at\"                 \n",
+       " [2239] \"1555824_a_at\"                \"1553364_at\"                 \n",
+       " [2241] \"1554932_at\"                  \"1554880_at\"                 \n",
+       " [2243] \"1557047_at\"                  \"1555852_at\"                 \n",
+       " [2245] \"1555853_at\"                  \"1559051_s_at\"               \n",
+       " [2247] \"1558581_at\"                  \"1552427_at\"                 \n",
+       " [2249] \"1557881_at\"                  \"1557004_at\"                 \n",
+       " [2251] \"1558345_a_at\"                \"1553147_at\"                 \n",
+       " [2253] \"1559705_s_at\"                \"1553681_a_at\"               \n",
+       " [2255] \"1553127_a_at\"                \"1552684_a_at\"               \n",
+       " [2257] \"1555385_at\"                  \"1553952_at\"                 \n",
+       " [2259] \"1553993_s_at\"                \"1552887_at\"                 \n",
+       " [2261] \"1558790_s_at\"                \"1557206_at\"                 \n",
+       " [2263] \"1555907_at\"                  \"1554367_at\"                 \n",
+       " [2265] \"1554711_at\"                  \"1557389_at\"                 \n",
+       " [2267] \"1555378_at\"                  \"1559239_s_at\"               \n",
+       " [2269] \"1554947_at\"                  \"1558438_a_at\"               \n",
+       " [2271] \"1553917_at\"                  \"1557719_at\"                 \n",
+       " [2273] \"1559715_at\"                  \"1554450_s_at\"               \n",
+       " [2275] \"1553336_a_at\"                \"1554449_at\"                 \n",
+       " [2277] \"1553340_s_at\"                \"1555821_a_at\"               \n",
+       " [2279] \"1556921_at\"                  \"1553235_at\"                 \n",
+       " [2281] \"1553237_x_at\"                \"1557136_at\"                 \n",
+       " [2283] \"1559571_a_at\"                \"1553340_s_at\"               \n",
+       " [2285] \"1553493_a_at\"                \"1555151_s_at\"               \n",
+       " [2287] \"1553494_at\"                  \"1552448_a_at\"               \n",
+       " [2289] \"1558186_s_at\"                \"1558185_at\"                 \n",
+       " [2291] \"1554423_a_at\"                \"1558561_at\"                 \n",
+       " [2293] \"1557148_at\"                  \"1556426_at\"                 \n",
+       " [2295] \"1555426_a_at\"                \"1559429_a_at\"               \n",
+       " [2297] \"1557759_at\"                  \"1554703_at\"                 \n",
+       " [2299] \"1554213_at\"                  \"1558179_at\"                 \n",
+       " [2301] \"1559331_x_at\"                \"1554177_a_at\"               \n",
+       " [2303] \"1553728_at\"                  \"1553730_x_at\"               \n",
+       " [2305] \"1553729_s_at\"                \"1558762_a_at\"               \n",
+       " [2307] \"1553729_s_at\"                \"1554176_a_at\"               \n",
+       " [2309] \"1553447_at\"                  \"1554176_a_at\"               \n",
+       " [2311] \"1554148_a_at\"                \"1554726_at\"                 \n",
+       " [2313] \"1438_at\"                     \"1555758_a_at\"               \n",
+       " [2315] \"1559344_at\"                  \"1554308_s_at\"               \n",
+       " [2317] \"1553046_s_at\"                \"1431_at\"                    \n",
+       " [2319] \"1555120_at\"                  \"1559272_at\"                 \n",
+       " [2321] \"1558041_a_at\"                \"1554675_a_at\"               \n",
+       " [2323] \"1554937_x_at\"                \"1559272_at\"                 \n",
+       " [2325] \"1553907_a_at\"                \"1552879_a_at\"               \n",
+       " [2327] \"1552878_at\"                  \"1555175_a_at\"               \n",
+       " [2329] \"1554154_at\"                  \"1552627_a_at\"               \n",
+       " [2331] \"1557593_at\"                  \"1557606_at\"                 \n",
+       " [2333] \"1556267_at\"                  \"1555724_s_at\"               \n",
+       " [2335] \"1552562_at\"                  \"1557169_x_at\"               \n",
+       " [2337] \"1557167_at\"                  \"1557169_x_at\"               \n",
+       " [2339] \"1557167_at\"                  \"1554280_a_at\"               \n",
+       " [2341] \"1554127_s_at\"                \"1554126_at\"                 \n",
+       " [2343] \"1559092_at\"                  \"1553296_at\"                 \n",
+       " [2345] \"1553590_at\"                  \"1558953_s_at\"               \n",
+       " [2347] \"1552985_at\"                  \"1554830_a_at\"               \n",
+       " [2349] \"1552327_at\"                  \"1557726_at\"                 \n",
+       " [2351] \"1553079_at\"                  \"1555203_s_at\"               \n",
+       " [2353] \"1557532_at\"                  \"1554487_a_at\"               \n",
+       " [2355] \"1559141_s_at\"                \"1559140_at\"                 \n",
+       " [2357] \"1555185_x_at\"                \"1555183_at\"                 \n",
+       " [2359] \"1556084_at\"                  \"1555575_a_at\"               \n",
+       " [2361] \"1556552_a_at\"                \"1553450_s_at\"               \n",
+       " [2363] \"1553131_a_at\"                \"1554155_at\"                 \n",
+       " [2365] \"1557347_at\"                  \"1554868_s_at\"               \n",
+       " [2367] \"1553450_s_at\"                \"1553449_at\"                 \n",
+       " [2369] \"1556411_s_at\"                \"1553736_at\"                 \n",
+       " [2371] \"1553385_at\"                  \"1556129_at\"                 \n",
+       " [2373] \"1556581_at\"                  \"1553740_a_at\"               \n",
+       " [2375] \"1552417_a_at\"                \"1559651_at\"                 \n",
+       " [2377] \"1557091_at\"                  \"1558401_at\"                 \n",
+       " [2379] \"1556846_at\"                  \"1556847_s_at\"               \n",
+       " [2381] \"1552845_at\"                  \"1552919_at\"                 \n",
+       " [2383] \"1556925_at\"                  \"1552919_at\"                 \n",
+       " [2385] \"1556645_s_at\"                \"1554586_a_at\"               \n",
+       " [2387] \"1556355_x_at\"                \"1556354_s_at\"               \n",
+       " [2389] \"1559532_at\"                  \"1558103_a_at\"               \n",
+       " [2391] \"1558102_at\"                  \"1552487_a_at\"               \n",
+       " [2393] \"1558839_at\"                  \"1558785_a_at\"               \n",
+       " [2395] \"1559340_at\"                  \"1555602_a_at\"               \n",
+       " [2397] \"1552648_a_at\"                \"1557576_at\"                 \n",
+       " [2399] \"1554482_a_at\"                \"1557597_at\"                 \n",
+       " [2401] \"1559559_at\"                  \"1555238_at\"                 \n",
+       " [2403] \"1553107_s_at\"                \"1556467_at\"                 \n",
+       " [2405] \"1557536_at\"                  \"1557498_a_at\"               \n",
+       " [2407] \"1553106_at\"                  \"1553107_s_at\"               \n",
+       " [2409] \"1553108_at\"                  \"1553015_a_at\"               \n",
+       " [2411] \"1556984_at\"                  \"1553181_at\"                 \n",
+       " [2413] \"1558088_a_at\"                \"1559174_at\"                 \n",
+       " [2415] \"1555288_s_at\"                \"1554468_s_at\"               \n",
+       " [2417] \"1559136_s_at\"                \"1552766_at\"                 \n",
+       " [2419] \"1552767_a_at\"                \"1557399_at\"                 \n",
+       " [2421] \"1557135_at\"                  \"1553811_at\"                 \n",
+       " [2423] \"1557312_at\"                  \"1554769_at\"                 \n",
+       " [2425] \"1554770_x_at\"                \"1552541_at\"                 \n",
+       " [2427] \"1552542_s_at\"                \"1559397_s_at\"               \n",
+       " [2429] \"1559522_at\"                  \"1555107_a_at\"               \n",
+       " [2431] \"1557582_at\"                  \"1554240_a_at\"               \n",
+       " [2433] \"1559623_at\"                  \"1554809_at\"                 \n",
+       " [2435] \"1557227_s_at\"                \"1555554_at\"                 \n",
+       " [2437] \"1555822_at\"                  \"1555411_a_at\"               \n",
+       " [2439] \"1555827_at\"                  \"1557513_a_at\"               \n",
+       " [2441] \"1555854_at\"                  \"1552364_s_at\"               \n",
+       " [2443] \"1553405_a_at\"                \"1553984_s_at\"               \n",
+       " [2445] \"1553129_at\"                  \"1554827_a_at\"               \n",
+       " [2447] \"1554791_a_at\"                \"1559057_at\"                 \n",
+       " [2449] \"1558329_at\"                  \"1558330_x_at\"               \n",
+       " [2451] \"1559288_at\"                  \"1557350_at\"                 \n",
+       " [2453] \"1556900_at\"                  \"1556901_s_at\"               \n",
+       " [2455] \"1559433_at\"                  \"1552880_at\"                 \n",
+       " [2457] \"1553479_at\"                  \"1553778_at\"                 \n",
+       " [2459] \"1552455_at\"                  \"1558249_s_at\"               \n",
+       " [2461] \"1555738_at\"                  \"1554161_at\"                 \n",
+       " [2463] \"1552774_a_at\"                \"1555738_at\"                 \n",
+       " [2465] \"1557218_s_at\"                \"1557217_a_at\"               \n",
+       " [2467] \"1553244_at\"                  \"1555705_a_at\"               \n",
+       " [2469] \"1554452_a_at\"                \"1553392_at\"                 \n",
+       " [2471] \"1553392_at\"                  \"1553655_at\"                 \n",
+       " [2473] \"1555346_at\"                  \"1554677_s_at\"               \n",
+       " [2475] \"1557411_s_at\"                \"1558238_at\"                 \n",
+       " [2477] \"1552321_a_at\"                \"1552320_a_at\"               \n",
+       " [2479] \"1554919_s_at\"                \"1553713_a_at\"               \n",
+       " [2481] \"1552730_at\"                  \"1556528_at\"                 \n",
+       " [2483] \"1556529_a_at\"                \"1559036_at\"                 \n",
+       " [2485] \"1555864_s_at\"                \"1558766_at\"                 \n",
+       " [2487] \"1556159_at\"                  \"1556160_a_at\"               \n",
+       " [2489] \"1555306_a_at\"                \"1557137_at\"                 \n",
+       " [2491] \"1552893_at\"                  \"1552629_a_at\"               \n",
+       " [2493] \"1552613_s_at\"                \"1552612_at\"                 \n",
+       " [2495] \"1555926_a_at\"                \"1555925_at\"                 \n",
+       " [2497] \"1555929_s_at\"                \"1555928_at\"                 \n",
+       " [2499] \"1557132_at\"                  \"1552430_at\"                 \n",
+       " [2501] \"1553560_at\"                  \"1558943_x_at\"               \n",
+       " [2503] \"1558942_at\"                  \"1555199_at\"                 \n",
+       " [2505] \"1552506_at\"                  \"1553528_a_at\"               \n",
+       " [2507] \"1553464_at\"                  \"1552712_a_at\"               \n",
+       " [2509] \"1556029_s_at\"                \"1555866_a_at\"               \n",
+       " [2511] \"1553968_a_at\"                \"1553967_at\"                 \n",
+       " [2513] \"1555920_at\"                  \"1553871_at\"                 \n",
+       " [2515] \"1558392_at\"                  \"1553504_at\"                 \n",
+       " [2517] \"1557888_at\"                  \"1554053_at\"                 \n",
+       " [2519] \"1553219_a_at\"                \"1557599_a_at\"               \n",
+       " [2521] \"1557598_at\"                  \"1553759_at\"                 \n",
+       " [2523] \"1555820_a_at\"                \"1554629_at\"                 \n",
+       " [2525] \"1553479_at\"                  \"1556459_at\"                 \n",
+       " [2527] \"1556460_a_at\"                \"1556096_s_at\"               \n",
+       " [2529] \"1556095_at\"                  \"1552660_a_at\"               \n",
+       " [2531] \"1559102_at\"                  \"1559103_s_at\"               \n",
+       " [2533] \"1555754_s_at\"                \"1557642_at\"                 \n",
+       " [2535] \"1555027_at\"                  \"1558703_at\"                 \n",
+       " [2537] \"1552278_a_at\"                \"1552279_a_at\"               \n",
+       " [2539] \"1553430_a_at\"                \"1557014_a_at\"               \n",
+       " [2541] \"1557541_at\"                  \"1555404_a_at\"               \n",
+       " [2543] \"1554648_a_at\"                \"1553541_at\"                 \n",
+       " [2545] \"1552961_at\"                  \"1554721_a_at\"               \n",
+       " [2547] \"1553858_at\"                  \"1557843_at\"                 \n",
+       " [2549] \"1556126_s_at\"                \"1553007_a_at\"               \n",
+       " [2551] \"1558123_at\"                  \"1554311_a_at\"               \n",
+       " [2553] \"1559194_a_at\"                \"1554801_at\"                 \n",
+       " [2555] \"1554801_at\"                  \"1554448_at\"                 \n",
+       " [2557] \"1554447_at\"                  \"1555217_at\"                 \n",
+       " [2559] \"1557827_at\"                  \"1554337_at\"                 \n",
+       " [2561] \"1559348_a_at\"                \"1553637_s_at\"               \n",
+       " [2563] \"1553636_at\"                  \"1557133_at\"                 \n",
+       " [2565] \"1554569_a_at\"                \"1555630_a_at\"               \n",
+       " [2567] \"1555725_a_at\"                \"1554342_s_at\"               \n",
+       " [2569] \"1554341_a_at\"                \"1552399_a_at\"               \n",
+       " [2571] \"1552646_at\"                  \"1552269_at\"                 \n",
+       " [2573] \"1558623_at\"                  \"1558486_at\"                 \n",
+       " [2575] \"1555729_a_at\"                \"1556730_at\"                 \n",
+       " [2577] \"1554483_at\"                  \"1554485_s_at\"               \n",
+       " [2579] \"1556454_a_at\"                \"1556453_at\"                 \n",
+       " [2581] \"1556121_at\"                  \"1554093_a_at\"               \n",
+       " [2583] \"1554591_at\"                  \"1555536_at\"                 \n",
+       " [2585] \"1557172_x_at\"                \"1557170_at\"                 \n",
+       " [2587] \"1552976_at\"                  \"1555550_at\"                 \n",
+       " [2589] \"1554063_at\"                  \"1554063_at\"                 \n",
+       " [2591] \"1554510_s_at\"                \"1555019_at\"                 \n",
+       " [2593] \"1053_at\"                     \"1554660_a_at\"               \n",
+       " [2595] \"1554661_s_at\"                \"1559714_at\"                 \n",
+       " [2597] \"1555219_at\"                  \"1559479_at\"                 \n",
+       " [2599] \"1553167_a_at\"                \"1555201_a_at\"               \n",
+       " [2601] \"1554922_at\"                  \"1554842_at\"                 \n",
+       " [2603] \"1554988_at\"                  \"1558324_a_at\"               \n",
+       " [2605] \"1558323_at\"                  \"1552775_at\"                 \n",
+       " [2607] \"1557837_a_at\"                \"1557836_at\"                 \n",
+       " [2609] \"1553928_at\"                  \"1559163_at\"                 \n",
+       " [2611] \"1557850_at\"                  \"1552673_at\"                 \n",
+       " [2613] \"1558977_at\"                  \"1558914_at\"                 \n",
+       " [2615] \"1555564_a_at\"                \"1558712_at\"                 \n",
+       " [2617] \"1554451_s_at\"                \"1557402_at\"                 \n",
+       " [2619] \"1557682_a_at\"                \"1555042_at\"                 \n",
+       " [2621] \"1555164_at\"                  \"1557330_at\"                 \n",
+       " [2623] \"1553957_at\"                  \"1555780_a_at\"               \n",
+       " [2625] \"1554541_a_at\"                \"1553957_at\"                 \n",
+       " [2627] \"1557265_at\"                  \"1553704_x_at\"               \n",
+       " [2629] \"1553703_at\"                  \"1556321_a_at\"               \n",
+       " [2631] \"1552439_s_at\"                \"1553863_at\"                 \n",
+       " [2633] \"1555973_at\"                  \"1555974_a_at\"               \n",
+       " [2635] \"1558507_at\"                  \"1558508_a_at\"               \n",
+       " [2637] \"1553600_at\"                  \"1553601_a_at\"               \n",
+       " [2639] \"1556017_at\"                  \"1553077_at\"                 \n",
+       " [2641] \"1552440_at\"                  \"1554747_a_at\"               \n",
+       " [2643] \"1559038_at\"                  \"1554190_s_at\"               \n",
+       " [2645] \"1555553_a_at\"                \"1552617_a_at\"               \n",
+       " [2647] \"1555881_s_at\"                \"1559548_at\"                 \n",
+       " [2649] \"1552312_a_at\"                \"1555220_a_at\"               \n",
+       " [2651] \"1558216_at\"                  \"1555854_at\"                 \n",
+       " [2653] \"1555855_at\"                  \"1555856_s_at\"               \n",
+       " [2655] \"1555888_at\"                  \"1556573_s_at\"               \n",
+       " [2657] \"1558372_at\"                  \"1558373_s_at\"               \n",
+       " [2659] \"1487_at\"                     \"1552503_at\"                 \n",
+       " [2661] \"1552816_at\"                  \"1554853_at\"                 \n",
+       " [2663] \"1554356_at\"                  \"1558397_at\"                 \n",
+       " [2665] \"1555590_a_at\"                \"1554316_at\"                 \n",
+       " [2667] \"1555738_at\"                  \"1554167_a_at\"               \n",
+       " [2669] \"1558612_a_at\"                \"1553542_at\"                 \n",
+       " [2671] \"1552960_at\"                  \"1554168_a_at\"               \n",
+       " [2673] \"1552777_a_at\"                \"1555322_at\"                 \n",
+       " [2675] \"1557693_at\"                  \"1558212_at\"                 \n",
+       " [2677] \"1555765_a_at\"                \"1555867_at\"                 \n",
+       " [2679] \"1559645_at\"                  \"1559646_a_at\"               \n",
+       " [2681] \"1553429_at\"                  \"1553919_at\"                 \n",
+       " [2683] \"1559026_at\"                  \"1552295_a_at\"               \n",
+       " [2685] \"1556490_a_at\"                \"1556489_at\"                 \n",
+       " [2687] \"1557372_at\"                  \"1552286_at\"                 \n",
+       " [2689] \"1559390_a_at\"                \"1556662_at\"                 \n",
+       " [2691] \"1556663_s_at\"                \"1554970_at\"                 \n",
+       " [2693] \"1552476_s_at\"                \"1554514_at\"                 \n",
+       " [2695] \"1553403_at\"                  \"1559500_at\"                 \n",
+       " [2697] \"1557162_at\"                  \"1555058_a_at\"               \n",
+       " [2699] \"1554438_at\"                  \"1554833_at\"                 \n",
+       " [2701] \"1554555_a_at\"                \"1557026_at\"                 \n",
+       " [2703] \"1554052_at\"                  \"1555375_at\"                 \n",
+       " [2705] \"1554609_at\"                  \"1555313_a_at\"               \n",
+       " [2707] \"1559249_at\"                  \"1557303_at\"                 \n",
+       " [2709] \"1554530_at\"                  \"1558522_at\"                 \n",
+       " [2711] \"1553274_a_at\"                \"1553524_at\"                 \n",
+       " [2713] \"1555764_s_at\"                \"1552461_at\"                 \n",
+       " [2715] \"1558750_a_at\"                \"1557944_s_at\"               \n",
+       " [2717] \"1556987_s_at\"                \"1556986_at\"                 \n",
+       " [2719] \"1554910_at\"                  \"1007_s_at\"                  \n",
+       " [2721] \"1552400_a_at\"                \"1555784_s_at\"               \n",
+       " [2723] \"1555114_at\"                  \"1553351_at\"                 \n",
+       " [2725] \"1552482_at\"                  \"1555817_s_at\"               \n",
+       " [2727] \"1555816_at\"                  \"1557954_at\"                 \n",
+       " [2729] \"1553286_at\"                  \"1556188_a_at\"               \n",
+       " [2731] \"1556187_at\"                  \"1553180_at\"                 \n",
+       " [2733] \"1553179_at\"                  \"1552322_at\"                 \n",
+       " [2735] \"1552323_s_at\"                \"1557617_at\"                 \n",
+       " [2737] \"1557455_s_at\"                \"1554345_a_at\"               \n",
+       " [2739] \"1556773_at\"                  \"1555270_a_at\"               \n",
+       " [2741] \"1557961_s_at\"                \"1558960_a_at\"               \n",
+       " [2743] \"1552826_at\"                  \"1552827_s_at\"               \n",
+       " [2745] \"1553944_at\"                  \"1556607_at\"                 \n",
+       " [2747] \"1556608_a_at\"                \"1554287_at\"                 \n",
+       " [2749] \"1557863_at\"                  \"1557864_x_at\"               \n",
+       " [2751] \"1552485_at\"                  \"1552486_s_at\"               \n",
+       " [2753] \"1554276_at\"                  \"1559497_at\"                 \n",
+       " [2755] \"1556158_at\"                  \"1557164_a_at\"               \n",
+       " [2757] \"1559589_a_at\"                \"1553717_at\"                 \n",
+       " [2759] \"1555569_a_at\"                \"1554986_a_at\"               \n",
+       " [2761] \"1554572_a_at\"                \"1554883_a_at\"               \n",
+       " [2763] \"1554882_at\"                  \"1554043_a_at\"               \n",
+       " [2765] \"1556452_a_at\"                \"1554763_at\"                 \n",
+       " [2767] \"1558791_at\"                  \"1556903_at\"                 \n",
+       " [2769] \"1555766_a_at\"                \"1552890_a_at\"               \n",
+       " [2771] \"1554202_x_at\"                \"1554201_at\"                 \n",
+       " [2773] \"1555884_at\"                  \"1553485_at\"                 \n",
+       " [2775] \"1552739_s_at\"                \"1552738_a_at\"               \n",
+       " [2777] \"1559648_at\"                  \"1555728_a_at\"               \n",
+       " [2779] \"1553574_at\"                  \"1554414_a_at\"               \n",
+       " [2781] \"1559065_a_at\"                \"1555729_a_at\"               \n",
+       " [2783] \"1553979_at\"                  \"1552580_at\"                 \n",
+       " [2785] \"1553369_at\"                  \"1554193_s_at\"               \n",
+       " [2787] \"1555227_a_at\"                \"1554094_at\"                 \n",
+       " [2789] \"1553995_a_at\"                \"1553994_at\"                 \n",
+       " [2791] \"1555730_a_at\"                \"1553034_at\"                 \n",
+       " [2793] \"1552623_at\"                  \"1552299_at\"                 \n",
+       " [2795] \"1554181_at\"                  \"1552889_a_at\"               \n",
+       " [2797] \"1557002_x_at\"                \"1557000_at\"                 \n",
+       " [2799] \"1557604_at\"                  \"1557605_a_at\"               \n",
+       " [2801] \"1557604_at\"                  \"1557605_a_at\"               \n",
+       " [2803] \"1552276_a_at\"                \"1555167_s_at\"               \n",
+       " [2805] \"1556755_s_at\"                \"1554408_a_at\"               \n",
+       " [2807] \"1552733_at\"                  \"1555135_at\"                 \n",
+       " [2809] \"1558675_s_at\"                \"1557950_at\"                 \n",
+       " [2811] \"1553781_at\"                  \"1558533_at\"                 \n",
+       " [2813] \"1559045_at\"                  \"1558964_at\"                 \n",
+       " [2815] \"1554782_at\"                  \"1557938_s_at\"               \n",
+       " [2817] \"1554433_a_at\"                \"1559375_s_at\"               \n",
+       " [2819] \"1559374_at\"                  \"1554672_at\"                 \n",
+       " [2821] \"1553507_a_at\"                \"1554771_at\"                 \n",
+       " [2823] \"1555191_a_at\"                \"1558787_a_at\"               \n",
+       " [2825] \"1558786_at\"                  \"1553133_at\"                 \n",
+       " [2827] \"1553134_s_at\"                \"1553793_a_at\"               \n",
+       " [2829] \"1553792_at\"                  \"1557710_at\"                 \n",
+       " [2831] \"1558934_a_at\"                \"1553890_s_at\"               \n",
+       " [2833] \"1558247_s_at\"                \"1556092_s_at\"               \n",
+       " [2835] \"1559542_a_at\"                \"1559131_a_at\"               \n",
+       " [2837] \"1555948_s_at\"                \"1555945_s_at\"               \n",
+       " [2839] \"1555908_at\"                  \"1555189_a_at\"               \n",
+       " [2841] \"1558365_at\"                  \"1552724_at\"                 \n",
+       " [2843] \"1552724_at\"                  \"1552661_at\"                 \n",
+       " [2845] \"1552662_a_at\"                \"1557060_at\"                 \n",
+       " [2847] \"1559021_at\"                  \"1556739_at\"                 \n",
+       " [2849] \"1556739_at\"                  \"1554741_s_at\"               \n",
+       " [2851] \"1553625_at\"                  \"1554797_at\"                 \n",
+       " [2853] \"1552809_at\"                  \"1557865_at\"                 \n",
+       " [2855] \"1552524_at\"                  \"1553878_at\"                 \n",
+       " [2857] \"1553879_a_at\"                \"1557186_s_at\"               \n",
+       " [2859] \"1557185_at\"                  \"1553878_at\"                 \n",
+       " [2861] \"1553879_a_at\"                \"1552940_at\"                 \n",
+       " [2863] \"1557384_at\"                  \"1554003_at\"                 \n",
+       " [2865] \"1554004_a_at\"                \"1558565_at\"                 \n",
+       " [2867] \"1553458_at\"                  \"1558897_at\"                 \n",
+       " [2869] \"1557660_s_at\"                \"1554331_a_at\"               \n",
+       " [2871] \"1559585_at\"                  \"1556595_at\"                 \n",
+       " [2873] \"1556035_s_at\"                \"1555808_a_at\"               \n",
+       " [2875] \"1554846_at\"                  \"1553322_s_at\"               \n",
+       " [2877] \"1558177_at\"                  \"1554471_a_at\"               \n",
+       " [2879] \"1557141_at\"                  \"1557141_at\"                 \n",
+       " [2881] \"1554849_at\"                  \"1552543_a_at\"               \n",
+       " [2883] \"1558648_at\"                  \"1559228_at\"                 \n",
+       " [2885] \"1552680_a_at\"                \"1552682_a_at\"               \n",
+       " [2887] \"1556345_s_at\"                \"1558945_s_at\"               \n",
+       " [2889] \"1558944_at\"                  \"1557649_at\"                 \n",
+       " [2891] \"1557651_x_at\"                \"1557921_s_at\"               \n",
+       " [2893] \"1555878_at\"                  \"1554735_a_at\"               \n",
+       " [2895] \"1553553_at\"                  \"1553556_at\"                 \n",
+       " [2897] \"1555253_at\"                  \"1556464_a_at\"               \n",
+       " [2899] \"1555962_at\"                  \"1555963_x_at\"               \n",
+       " [2901] \"1552965_a_at\"                \"1557562_at\"                 \n",
+       " [2903] \"1557680_at\"                  \"1557681_s_at\"               \n",
+       " [2905] \"1553785_at\"                  \"1554999_at\"                 \n",
+       " [2907] \"1553770_a_at\"                \"1553769_at\"                 \n",
+       " [2909] \"1552329_at\"                  \"1556633_at\"                 \n",
+       " [2911] \"1552599_at\"                  \"1556633_at\"                 \n",
+       " [2913] \"1559214_at\"                  \"1559009_at\"                 \n",
+       " [2915] \"1557165_s_at\"                \"1554705_at\"                 \n",
+       " [2917] \"1559097_at\"                  \"1552449_a_at\"               \n",
+       " [2919] \"1557100_s_at\"                \"1555996_s_at\"               \n",
+       " [2921] \"1552932_at\"                  \"1558780_a_at\"               \n",
+       " [2923] \"1558779_at\"                  \"1554344_s_at\"               \n",
+       " [2925] \"1559575_a_at\"                \"1554962_a_at\"               \n",
+       " [2927] \"1554961_at\"                  \"1554640_at\"                 \n",
+       " [2929] \"1553502_a_at\"                \"1553558_at\"                 \n",
+       " [2931] \"1556350_a_at\"                \"1555996_s_at\"               \n",
+       " [2933] \"1555996_s_at\"                \"1557879_at\"                 \n",
+       " [2935] \"1557783_at\"                  \"1556969_at\"                 \n",
+       " [2937] \"1553886_at\"                  \"1553804_a_at\"               \n",
+       " [2939] \"1553803_at\"                  \"1552798_a_at\"               \n",
+       " [2941] \"1553265_at\"                  \"1555311_at\"                 \n",
+       " [2943] \"1554537_at\"                  \"1553228_at\"                 \n",
+       " [2945] \"1557583_at\"                  \"1555310_a_at\"               \n",
+       " [2947] \"1555310_a_at\"                \"1553583_a_at\"               \n",
+       " [2949] \"1557158_s_at\"                \"1555408_at\"                 \n",
+       " [2951] \"1555409_a_at\"                \"1553808_a_at\"               \n",
+       " [2953] \"1552362_a_at\"                \"1557685_at\"                 \n",
+       " [2955] \"1555591_at\"                  \"1556648_a_at\"               \n",
+       " [2957] \"1553253_at\"                  \"1559285_at\"                 \n",
+       " [2959] \"1558215_s_at\"                \"1554050_at\"                 \n",
+       " [2961] \"1554365_a_at\"                \"1557718_at\"                 \n",
+       " [2963] \"1554364_at\"                  \"1556936_at\"                 \n",
+       " [2965] \"1552977_a_at\"                \"1552964_at\"                 \n",
+       " [2967] \"1555573_at\"                  \"1558941_at\"                 \n",
+       " [2969] \"1557147_a_at\"                \"1557480_a_at\"               \n",
+       " [2971] \"1554097_a_at\"                \"1556148_s_at\"               \n",
+       " [2973] \"1556147_at\"                  \"1555923_a_at\"               \n",
+       " [2975] \"1555922_at\"                  \"1559003_a_at\"               \n",
+       " [2977] \"1554516_at\"                  \"1554517_x_at\"               \n",
+       " [2979] \"1557788_a_at\"                \"1556000_s_at\"               \n",
+       " [2981] \"1556487_a_at\"                \"1554147_s_at\"               \n",
+       " [2983] \"1554528_at\"                  \"1555719_a_at\"               \n",
+       " [2985] \"1556488_s_at\"                \"1553880_at\"                 \n",
+       " [2987] \"1552833_at\"                  \"1552834_at\"                 \n",
+       " [2989] \"1552908_at\"                  \"1555108_at\"                 \n",
+       " [2991] \"1559406_at\"                  \"1559313_at\"                 \n",
+       " [2993] \"1554147_s_at\"                \"1556487_a_at\"               \n",
+       " [2995] \"1555719_a_at\"                \"1553021_s_at\"               \n",
+       " [2997] \"1557638_at\"                  \"1553267_a_at\"               \n",
+       " [2999] \"1553266_at\"                  \"1558794_at\"                 \n",
+       " [3001] \"1557733_a_at\"                \"1554559_at\"                 \n",
+       " [3003] \"1559634_at\"                  \"1559633_a_at\"               \n",
+       " [3005] \"1553705_a_at\"                \"1554741_s_at\"               \n",
+       " [3007] \"1557848_at\"                  \"1558756_at\"                 \n",
+       " [3009] \"1557710_at\"                  \"1553521_at\"                 \n",
+       " [3011] \"1553521_at\"                  \"1552412_a_at\"               \n",
+       " [3013] \"1552411_at\"                  \"1552412_a_at\"               \n",
+       " [3015] \"1552411_at\"                  \"1557779_at\"                 \n",
+       " [3017] \"1557779_at\"                  \"1553002_at\"                 \n",
+       " [3019] \"1553002_at\"                  \"1553002_at\"                 \n",
+       " [3021] \"1555033_a_at\"                \"1555032_at\"                 \n",
+       " [3023] \"1555022_at\"                  \"1553002_at\"                 \n",
+       " [3025] \"1553002_at\"                  \"1552412_a_at\"               \n",
+       " [3027] \"1552411_at\"                  \"1552412_a_at\"               \n",
+       " [3029] \"1552411_at\"                  \"1553663_a_at\"               \n",
+       " [3031] \"1553521_at\"                  \"1553521_at\"                 \n",
+       " [3033] \"1554302_s_at\"                \"1554301_at\"                 \n",
+       " [3035] \"1554034_a_at\"                \"1554033_at\"                 \n",
+       " [3037] \"1554785_at\"                  \"1556665_at\"                 \n",
+       " [3039] \"1556666_a_at\"                \"1559116_s_at\"               \n",
+       " [3041] \"1557790_at\"                  \"1559060_a_at\"               \n",
+       " [3043] \"1555874_x_at\"                \"1555872_a_at\"               \n",
+       " [3045] \"1556185_a_at\"                \"1555024_at\"                 \n",
+       " [3047] \"1554277_s_at\"                \"1554652_s_at\"               \n",
+       " [3049] \"1558881_at\"                  \"1558758_s_at\"               \n",
+       " [3051] \"1558757_at\"                  \"1557405_at\"                 \n",
+       " [3053] \"1557406_s_at\"                \"1554550_at\"                 \n",
+       " [3055] \"1555522_s_at\"                \"1555388_s_at\"               \n",
+       " [3057] \"1554783_s_at\"                \"1559352_a_at\"               \n",
+       " [3059] \"1557189_at\"                  \"1555195_at\"                 \n",
+       " [3061] \"1559441_s_at\"                \"1553215_s_at\"               \n",
+       " [3063] \"1553214_a_at\"                \"1559458_at\"                 \n",
+       " [3065] \"1554206_at\"                  \"1554206_at\"                 \n",
+       " [3067] \"1552839_at\"                  \"1554730_at\"                 \n",
+       " [3069] \"1557353_at\"                  \"1554891_at\"                 \n",
+       " [3071] \"1557395_at\"                  \"1555735_a_at\"               \n",
+       " [3073] \"1559237_a_at\"                \"1556564_at\"                 \n",
+       " [3075] \"1554716_s_at\"                \"1554715_at\"                 \n",
+       " [3077] \"1553585_a_at\"                \"1553915_at\"                 \n",
+       " [3079] \"1554159_a_at\"                \"1554158_at\"                 \n",
+       " [3081] \"1552987_a_at\"                \"1555205_at\"                 \n",
+       " [3083] \"1556839_s_at\"                \"1556613_s_at\"               \n",
+       " [3085] \"1556643_at\"                  \"1556024_at\"                 \n",
+       " [3087] \"1552696_at\"                  \"1553341_at\"                 \n",
+       " [3089] \"1552598_at\"                  \"1558117_s_at\"               \n",
+       " [3091] \"1559687_at\"                  \"1553755_at\"                 \n",
+       " [3093] \"1556571_at\"                  \"1553755_at\"                 \n",
+       " [3095] \"1552283_s_at\"                \"1557226_a_at\"               \n",
+       " [3097] \"1557225_at\"                  \"1553840_a_at\"               \n",
+       " [3099] \"1553839_at\"                  \"1553158_at\"                 \n",
+       " [3101] \"1559052_s_at\"                \"1553158_at\"                 \n",
+       " [3103] \"1552752_a_at\"                \"1552754_a_at\"               \n",
+       " [3105] \"1555544_a_at\"                \"1553589_a_at\"               \n",
+       " [3107] \"1556484_at\"                  \"1552672_a_at\"               \n",
+       " [3109] \"1556163_a_at\"                \"1553582_a_at\"               \n",
+       " [3111] \"1553579_a_at\"                \"1555564_a_at\"               \n",
+       " [3113] \"1553517_at\"                  \"1553357_at\"                 \n",
+       " [3115] \"1556768_at\"                  \"1556879_at\"                 \n",
+       " [3117] \"1559528_at\"                  \"1557523_at\"                 \n",
+       " [3119] \"1556911_at\"                  \"1559259_at\"                 \n",
+       " [3121] \"1555890_at\"                  \"1556670_at\"                 \n",
+       " [3123] \"1556671_s_at\"                \"1558819_at\"                 \n",
+       " [3125] \"1554229_at\"                  \"1557081_at\"                 \n",
+       " [3127] \"1554096_a_at\"                \"1554095_at\"                 \n",
+       " [3129] \"1552649_a_at\"                \"1552651_a_at\"               \n",
+       " [3131] \"1552666_a_at\"                \"1553581_s_at\"               \n",
+       " [3133] \"1554642_at\"                  \"1554732_at\"                 \n",
+       " [3135] \"1554733_at\"                  \"1552649_a_at\"               \n",
+       " [3137] \"1552651_a_at\"                \"1553849_at\"                 \n",
+       " [3139] \"1553849_at\"                  \"1553849_at\"                 \n",
+       " [3141] \"1556997_a_at\"                \"1555495_a_at\"               \n",
+       " [3143] \"1558841_at\"                  \"1553929_at\"                 \n",
+       " [3145] \"1552340_at\"                  \"1553685_s_at\"               \n",
+       " [3147] \"1555509_a_at\"                \"1553055_a_at\"               \n",
+       " [3149] \"1557078_at\"                  \"1554296_at\"                 \n",
+       " [3151] \"1558641_at\"                  \"1552386_at\"                 \n",
+       " [3153] \"1553927_at\"                  \"1552573_s_at\"               \n",
+       " [3155] \"1552572_a_at\"                \"1557112_a_at\"               \n",
+       " [3157] \"1559108_at\"                  \"1559109_a_at\"               \n",
+       " [3159] \"1555035_a_at\"                \"1555695_a_at\"               \n",
+       " [3161] \"1555034_at\"                  \"1554869_at\"                 \n",
+       " [3163] \"1554228_a_at\"                \"1555678_at\"                 \n",
+       " [3165] \"1555702_a_at\"                \"1555703_at\"                 \n",
+       " [3167] \"1555171_at\"                  \"1555181_a_at\"               \n",
+       " [3169] \"1556301_at\"                  \"1552349_a_at\"               \n",
+       " [3171] \"1552348_at\"                  \"1559264_at\"                 \n",
+       " [3173] \"1555557_a_at\"                \"1554183_s_at\"               \n",
+       " [3175] \"1554182_at\"                  \"1554318_at\"                 \n",
+       " [3177] \"1552587_at\"                  \"1552588_a_at\"               \n",
+       " [3179] \"1555311_at\"                  \"1555098_a_at\"               \n",
+       " [3181] \"1554021_a_at\"                \"1552470_a_at\"               \n",
+       " [3183] \"1552800_at\"                  \"1557746_at\"                 \n",
+       " [3185] \"1558515_at\"                  \"1554841_at\"                 \n",
+       " [3187] \"1557050_at\"                  \"1557051_s_at\"               \n",
+       " [3189] \"1554295_x_at\"                \"1557073_s_at\"               \n",
+       " [3191] \"1554294_s_at\"                \"1554293_at\"                 \n",
+       " [3193] \"1557051_s_at\"                \"1557050_at\"                 \n",
+       " [3195] \"1555790_a_at\"                \"1554210_at\"                 \n",
+       " [3197] \"1557873_at\"                  \"1557873_at\"                 \n",
+       " [3199] \"1556554_at\"                  \"1553973_a_at\"               \n",
+       " [3201] \"1554635_a_at\"                \"1554553_s_at\"               \n",
+       " [3203] \"1559584_a_at\"                \"1559125_at\"                 \n",
+       " [3205] \"1554410_a_at\"                \"1554409_at\"                 \n",
+       " [3207] \"1553122_s_at\"                \"1555371_at\"                 \n",
+       " [3209] \"1557029_at\"                  \"1552978_a_at\"               \n",
+       " [3211] \"1556066_at\"                  \"1556067_a_at\"               \n",
+       " [3213] \"1555306_a_at\"                \"1558587_at\"                 \n",
+       " [3215] \"1553344_at\"                  \"1557068_at\"                 \n",
+       " [3217] \"1552632_a_at\"                \"1552632_a_at\"               \n",
+       " [3219] \"1554314_at\"                  \"1552575_a_at\"               \n",
+       " [3221] \"1553660_at\"                  \"1553661_a_at\"               \n",
+       " [3223] \"1555659_a_at\"                \"1559326_at\"                 \n",
+       " [3225] \"1556427_s_at\"                \"1556697_at\"                 \n",
+       " [3227] \"1556698_a_at\"                \"1557746_at\"                 \n",
+       " [3229] \"1553031_at\"                  \"1555809_at\"                 \n",
+       " [3231] \"1558304_s_at\"                \"1553123_at\"                 \n",
+       " [3233] \"1553125_x_at\"                \"1552856_at\"                 \n",
+       " [3235] \"1554440_at\"                  \"1554006_a_at\"               \n",
+       " [3237] \"1556178_x_at\"                \"1556176_at\"                 \n",
+       " [3239] \"1556978_a_at\"                \"1552494_at\"                 \n",
+       " [3241] \"1555350_at\"                  \"1555351_s_at\"               \n",
+       " [3243] \"1557963_at\"                  \"1559370_at\"                 \n",
+       " [3245] \"1558463_s_at\"                \"1558136_s_at\"               \n",
+       " [3247] \"1558135_at\"                  \"1558893_a_at\"               \n",
+       " [3249] \"1554071_at\"                  \"1558894_a_at\"               \n",
+       " [3251] \"1554072_s_at\"                \"1553293_at\"                 \n",
+       " [3253] \"1555785_a_at\"                \"1553023_a_at\"               \n",
+       " [3255] \"1558238_at\"                  \"1558949_at\"                 \n",
+       " [3257] \"1554911_at\"                  \"1557821_at\"                 \n",
+       " [3259] \"1558685_a_at\"                \"1559222_at\"                 \n",
+       " [3261] \"1555894_s_at\"                \"1555661_at\"                 \n",
+       " [3263] \"1555367_at\"                  \"1555368_x_at\"               \n",
+       " [3265] \"1557981_at\"                  \"1555212_at\"                 \n",
+       " [3267] \"1552843_at\"                  \"1554325_at\"                 \n",
+       " [3269] \"1552777_a_at\"                \"1553229_at\"                 \n",
+       " [3271] \"1556242_a_at\"                \"1553815_a_at\"               \n",
+       " [3273] \"1556739_at\"                  \"1554312_at\"                 \n",
+       " [3275] \"1557222_at\"                  \"1559363_at\"                 \n",
+       " [3277] \"1555177_at\"                  \"1558315_s_at\"               \n",
+       " [3279] \"1553323_a_at\"                \"1556927_at\"                 \n",
+       " [3281] \"1553209_at\"                  \"1555377_at\"                 \n",
+       " [3283] \"1559652_at\"                  \"1558919_a_at\"               \n",
+       " [3285] \"1558683_a_at\"                \"1558682_at\"                 \n",
+       " [3287] \"1494_f_at\"                   \"1553036_at\"                 \n",
+       " [3289] \"1554348_s_at\"                \"1558972_s_at\"               \n",
+       " [3291] \"1558971_at\"                  \"1553633_s_at\"               \n",
+       " [3293] \"1557672_s_at\"                \"1555490_s_at\"               \n",
+       " [3295] \"1555334_s_at\"                \"1555780_a_at\"               \n",
+       " [3297] \"1556222_at\"                  \"1559503_a_at\"               \n",
+       " [3299] \"1552280_at\"                  \"1559510_at\"                 \n",
+       " [3301] \"1553629_a_at\"                \"1555585_a_at\"               \n",
+       " [3303] \"1558147_a_at\"                \"1555037_a_at\"               \n",
+       " [3305] \"1556145_a_at\"                \"1553912_at\"                 \n",
+       " [3307] \"1559713_at\"                  \"1557791_at\"                 \n",
+       " [3309] \"1557802_at\"                  \"1552884_at\"                 \n",
+       " [3311] \"1552885_a_at\"                \"1552607_at\"                 \n",
+       " [3313] \"1552607_at\"                  \"1553207_at\"                 \n",
+       " [3315] \"1555257_a_at\"                \"1552578_a_at\"               \n",
+       " [3317] \"1558722_at\"                  \"1558722_at\"                 \n",
+       " [3319] \"1554526_at\"                  \"1554524_a_at\"               \n",
+       " [3321] \"1554067_at\"                  \"1554068_s_at\"               \n",
+       " [3323] \"1553438_at\"                  \"1554758_a_at\"               \n",
+       " [3325] \"1552536_at\"                  \"1553099_at\"                 \n",
+       " [3327] \"1552590_a_at\"                \"1553410_a_at\"               \n",
+       " [3329] \"1554391_at\"                  \"1554621_at\"                 \n",
+       " [3331] \"1554623_x_at\"                \"1553585_a_at\"               \n",
+       " [3333] \"1552770_s_at\"                \"1554974_at\"                 \n",
+       " [3335] \"1553247_a_at\"                \"1553247_a_at\"               \n",
+       " [3337] \"1558587_at\"                  \"1553459_at\"                 \n",
+       " [3339] \"1555726_at\"                  \"1552980_at\"                 \n",
+       " [3341] \"1557676_at\"                  \"1557261_at\"                 \n",
+       " [3343] \"1557450_s_at\"                \"1555439_at\"                 \n",
+       " [3345] \"1552863_a_at\"                \"1556739_at\"                 \n",
+       " [3347] \"1557261_at\"                  \"1557450_s_at\"               \n",
+       " [3349] \"1554285_at\"                  \"1555628_a_at\"               \n",
+       " [3351] \"1555629_at\"                  \"1558954_at\"                 \n",
+       " [3353] \"1554334_a_at\"                \"1554333_at\"                 \n",
+       " [3355] \"1556704_s_at\"                \"1556704_s_at\"               \n",
+       " [3357] \"1556704_s_at\"                \"1559514_at\"                 \n",
+       " [3359] \"1553058_at\"                  \"1554015_a_at\"               \n",
+       " [3361] \"1554014_at\"                  \"1559313_at\"                 \n",
+       " [3363] \"1556704_s_at\"                \"1555380_at\"                 \n",
+       " [3365] \"1554899_s_at\"                \"1554741_s_at\"               \n",
+       " [3367] \"1554741_s_at\"                \"1553028_at\"                 \n",
+       " [3369] \"1557996_at\"                  \"1552621_at\"                 \n",
+       " [3371] \"1552622_s_at\"                \"1556704_s_at\"               \n",
+       " [3373] \"1554047_at\"                  \"1555655_at\"                 \n",
+       " [3375] \"1554741_s_at\"                \"1554741_s_at\"               \n",
+       " [3377] \"1559292_s_at\"                \"1559293_x_at\"               \n",
+       " [3379] \"1559291_at\"                  \"1553708_at\"                 \n",
+       " [3381] \"1556749_at\"                  \"1557636_a_at\"               \n",
+       " [3383] \"1553004_at\"                  \"1553619_a_at\"               \n",
+       " [3385] \"1553618_at\"                  \"1559620_at\"                 \n",
+       " [3387] \"1556744_a_at\"                \"1556743_at\"                 \n",
+       " [3389] \"1553446_at\"                  \"1553566_at\"                 \n",
+       " [3391] \"1555581_a_at\"                \"1559507_at\"                 \n",
+       " [3393] \"1558754_at\"                  \"1558755_x_at\"               \n",
+       " [3395] \"1555485_s_at\"                \"1552769_at\"                 \n",
+       " [3397] \"1552793_at\"                  \"1552749_a_at\"               \n",
+       " [3399] \"1557215_at\"                  \"1555016_at\"                 \n",
+       " [3401] \"1555910_at\"                  \"1554690_a_at\"               \n",
+       " [3403] \"1553764_a_at\"                \"1558549_s_at\"               \n",
+       " [3405] \"1553801_a_at\"                \"1556314_a_at\"               \n",
+       " [3407] \"1556314_a_at\"                \"1555819_s_at\"               \n",
+       " [3409] \"1552552_s_at\"                \"1555687_a_at\"               \n",
+       " [3411] \"1552939_at\"                  \"1556499_s_at\"               \n",
+       " [3413] \"1558295_a_at\"                \"1559062_at\"                 \n",
+       " [3415] \"1555337_a_at\"                \"1554478_a_at\"               \n",
+       " [3417] \"1556037_s_at\"                \"1554588_a_at\"               \n",
+       " [3419] \"1552274_at\"                  \"1552275_s_at\"               \n",
+       " [3421] \"1554929_at\"                  \"1558948_a_at\"               \n",
+       " [3423] \"1553392_at\"                  \"1557795_s_at\"               \n",
+       " [3425] \"1555043_at\"                  \"1553530_a_at\"               \n",
+       " [3427] \"1553678_a_at\"                \"1555639_a_at\"               \n",
+       " [3429] \"1553102_a_at\"                \"1554496_at\"                 \n",
+       " [3431] \"1557223_at\"                  \"1552564_at\"                 \n",
+       " [3433] \"1556200_a_at\"                \"1559668_s_at\"               \n",
+       " [3435] \"1559667_at\"                  \"1554681_a_at\"               \n",
+       " [3437] \"1554683_a_at\"                \"1552713_a_at\"               \n",
+       " [3439] \"1552922_at\"                  \"1553323_a_at\"               \n",
+       " [3441] \"1555255_a_at\"                \"1553515_at\"                 \n",
+       " [3443] \"1557644_at\"                  \"1553086_at\"                 \n",
+       " [3445] \"1555655_at\"                  \"1555548_at\"                 \n",
+       " [3447] \"1554719_at\"                  \"1559725_at\"                 \n",
+       " [3449] \"1552803_a_at\"                \"1557103_a_at\"               \n",
+       " [3451] \"1554077_a_at\"                \"1553023_a_at\"               \n",
+       " [3453] \"1554592_a_at\"                \"1554593_s_at\"               \n",
+       " [3455] \"1552330_at\"                  \"1553165_at\"                 \n",
+       " [3457] \"1557042_at\"                  \"1552296_at\"                 \n",
+       " [3459] \"1554876_a_at\"                \"1555330_at\"                 \n",
+       " [3461] \"1557871_at\"                  \"1557823_s_at\"               \n",
+       " [3463] \"1557822_at\"                  \"1554789_a_at\"               \n",
+       " [3465] \"1554789_a_at\"                \"1552256_a_at\"               \n",
+       " [3467] \"1556992_at\"                  \"1556736_at\"                 \n",
+       " [3469] \"1553388_at\"                  \"1554084_a_at\"               \n",
+       " [3471] \"1554082_a_at\"                \"1557289_s_at\"               \n",
+       " [3473] \"1555417_a_at\"                \"1554636_at\"                 \n",
+       " [3475] \"1553622_a_at\"                \"1558517_s_at\"               \n",
+       " [3477] \"1554069_at\"                  \"1558773_s_at\"               \n",
+       " [3479] \"1556348_at\"                  \"1558887_at\"                 \n",
+       " [3481] \"1558888_x_at\"                \"1555814_a_at\"               \n",
+       " [3483] \"1557235_at\"                  \"1553549_at\"                 \n",
+       " [3485] \"1553560_at\"                  \"1554424_at\"                 \n",
+       " [3487] \"1559701_s_at\"                \"1559679_a_at\"               \n",
+       " [3489] \"1553263_at\"                  \"1558532_at\"                 \n",
+       " [3491] \"1558844_at\"                  \"1555830_s_at\"               \n",
+       " [3493] \"1558511_s_at\"                \"1555829_at\"                 \n",
+       " [3495] \"1555998_at\"                  \"1558541_at\"                 \n",
+       " [3497] \"1557944_s_at\"                \"1553906_s_at\"               \n",
+       " [3499] \"1559091_s_at\"                \"1555366_at\"                 \n",
+       " [3501] \"1558667_at\"                  \"1558668_s_at\"               \n",
+       " [3503] \"1558668_s_at\"                \"1552586_at\"                 \n",
+       " [3505] \"1554385_a_at\"                \"1554384_at\"                 \n",
+       " [3507] \"1553159_at\"                  \"1555173_at\"                 \n",
+       " [3509] \"1559205_s_at\"                \"1558504_at\"                 \n",
+       " [3511] \"1552685_a_at\"                \"1552523_a_at\"               \n",
+       " [3513] \"1552522_at\"                  \"1555774_at\"                 \n",
+       " [3515] \"1555775_a_at\"                \"1554260_a_at\"               \n",
+       " [3517] \"1554625_at\"                  \"1553137_s_at\"               \n",
+       " [3519] \"1552807_a_at\"                \"1552806_a_at\"               \n",
+       " [3521] \"1555252_a_at\"                \"1554722_at\"                 \n",
+       " [3523] \"1553327_a_at\"                \"1553684_at\"                 \n",
+       " [3525] \"1557878_at\"                  \"1559474_at\"                 \n",
+       " [3527] \"1559678_s_at\"                \"1553887_at\"                 \n",
+       " [3529] \"1553518_at\"                  \"1553518_at\"                 \n",
+       " [3531] \"1553032_at\"                  \"1555431_a_at\"               \n",
+       " [3533] \"1553582_a_at\"                \"1553579_a_at\"               \n",
+       " [3535] \"1553582_a_at\"                \"1553579_a_at\"               \n",
+       " [3537] \"1555044_a_at\"                \"1554037_a_at\"               \n",
+       " [3539] \"1555643_s_at\"                \"1555634_a_at\"               \n",
+       " [3541] \"1558404_at\"                  \"1553702_at\"                 \n",
+       " [3543] \"1554023_s_at\"                \"1553396_a_at\"               \n",
+       " [3545] \"1554022_at\"                  \"1553397_at\"                 \n",
+       " [3547] \"1554436_a_at\"                \"1554023_s_at\"               \n",
+       " [3549] \"1553396_a_at\"                \"1554022_at\"                 \n",
+       " [3551] \"1557652_a_at\"                \"1553746_a_at\"               \n",
+       " [3553] \"1552997_a_at\"                \"1554708_s_at\"               \n",
+       " [3555] \"1554707_at\"                  \"1555079_at\"                 \n",
+       " [3557] \"1553175_s_at\"                \"1555892_s_at\"               \n",
+       " [3559] \"1554589_at\"                  \"1556046_a_at\"               \n",
+       " [3561] \"1553962_s_at\"                \"1557825_at\"                 \n",
+       " [3563] \"1556580_a_at\"                \"1557570_a_at\"               \n",
+       " [3565] \"1555245_s_at\"                \"1556136_at\"                 \n",
+       " [3567] \"1556375_at\"                  \"1555595_at\"                 \n",
+       " [3569] \"1553640_at\"                  \"1557436_at\"                 \n",
+       " [3571] \"1552563_a_at\"                \"1556907_at\"                 \n",
+       " [3573] \"1558305_at\"                  \"1553689_s_at\"               \n",
+       " [3575] \"1553688_at\"                  \"1557991_at\"                 \n",
+       " [3577] \"1555789_s_at\"                \"1554923_at\"                 \n",
+       " [3579] \"1554678_s_at\"                \"1554542_at\"                 \n",
+       " [3581] \"1559018_at\"                  \"1556194_a_at\"               \n",
+       " [3583] \"1557838_at\"                  \"1552596_at\"                 \n",
+       " [3585] \"1559036_at\"                  \"1559036_at\"                 \n",
+       " [3587] \"1559443_s_at\"                \"1553285_s_at\"               \n",
+       " [3589] \"1553378_a_at\"                \"1559526_at\"                 \n",
+       " [3591] \"1555028_at\"                  \"1555565_s_at\"               \n",
+       " [3593] \"1557734_s_at\"                \"1558821_s_at\"               \n",
+       " [3595] \"1556864_at\"                  \"1552271_at\"                 \n",
+       " [3597] \"1552272_a_at\"                \"1559129_a_at\"               \n",
+       " [3599] \"1555958_at\"                  \"1555681_at\"                 \n",
+       " [3601] \"1556883_a_at\"                \"1556378_a_at\"               \n",
+       " [3603] \"1556970_at\"                  \"1556971_a_at\"               \n",
+       " [3605] \"1552670_a_at\"                \"1553552_at\"                 \n",
+       " [3607] \"1553066_at\"                  \"1554038_at\"                 \n",
+       " [3609] \"1554662_at\"                  \"1558619_at\"                 \n",
+       " [3611] \"1552729_at\"                  \"1558619_at\"                 \n",
+       " [3613] \"1552729_at\"                  \"1553691_at\"                 \n",
+       " [3615] \"1557174_a_at\"                \"1557535_at\"                 \n",
+       " [3617] \"117_at\"                      \"1553693_s_at\"               \n",
+       " [3619] \"117_at\"                      \"1554397_s_at\"               \n",
+       " [3621] \"1554396_at\"                  \"1555539_at\"                 \n",
+       " [3623] \"1552862_at\"                  \"1557062_at\"                 \n",
+       " [3625] \"1558262_at\"                  \"1559313_at\"                 \n",
+       " [3627] \"1559406_at\"                  \"1559313_at\"                 \n",
+       " [3629] \"1559406_at\"                  \"1559117_at\"                 \n",
+       " [3631] \"1556465_at\"                  \"1559313_at\"                 \n",
+       " [3633] \"1555520_at\"                  \"1553715_s_at\"               \n",
+       " [3635] \"1554027_a_at\"                \"1557565_a_at\"               \n",
+       " [3637] \"1557564_at\"                  \"1553030_a_at\"               \n",
+       " [3639] \"1557611_at\"                  \"1553363_at\"                 \n",
+       " [3641] \"1554288_at\"                  \"1559064_at\"                 \n",
+       " [3643] \"1559287_at\"                  \"1556365_at\"                 \n",
+       " [3645] \"1556366_s_at\"                \"1553428_at\"                 \n",
+       " [3647] \"1553262_a_at\"                \"1555095_at\"                 \n",
+       " [3649] \"1552674_at\"                  \"1556891_at\"                 \n",
+       " [3651] \"1557289_s_at\"                \"1553390_at\"                 \n",
+       " [3653] \"1557359_at\"                  \"1558504_at\"                 \n",
+       " [3655] \"1558967_s_at\"                \"1552868_at\"                 \n",
+       " [3657] \"1554001_at\"                  \"1556257_at\"                 \n",
+       " [3659] \"1553425_at\"                  \"1555609_a_at\"               \n",
+       " [3661] \"1555606_a_at\"                \"1556420_s_at\"               \n",
+       " [3663] \"1556679_at\"                  \"1556832_at\"                 \n",
+       " [3665] \"1553914_at\"                  \"1558661_at\"                 \n",
+       " [3667] \"1552291_at\"                  \"1558426_x_at\"               \n",
+       " [3669] \"1554173_at\"                  \"1554175_at\"                 \n",
+       " [3671] \"1553298_at\"                  \"1553172_at\"                 \n",
+       " [3673] \"1557003_at\"                  \"1552281_at\"                 \n",
+       " [3675] \"1552740_at\"                  \"1554029_a_at\"               \n",
+       " [3677] \"1556676_a_at\"                \"1554862_at\"                 \n",
+       " [3679] \"1557898_at\"                  \"1554906_a_at\"               \n",
+       " [3681] \"1553633_s_at\"                \"1555141_a_at\"               \n",
+       " [3683] \"1555868_at\"                  \"1555869_a_at\"               \n",
+       " [3685] \"1553514_a_at\"                \"1553513_at\"                 \n",
+       " [3687] \"1558795_at\"                  \"1558796_a_at\"               \n",
+       " [3689] \"1557993_at\"                  \"1555673_at\"                 \n",
+       " [3691] \"1559263_s_at\"                \"1558199_at\"                 \n",
+       " [3693] \"1555833_a_at\"                \"1558445_at\"                 \n",
+       " [3695] \"1558768_at\"                  \"1558769_s_at\"               \n",
+       " [3697] \"1553325_at\"                  \"1553612_at\"                 \n",
+       " [3699] \"1556956_at\"                  \"1557621_at\"                 \n",
+       " [3701] \"1553612_at\"                  \"1557798_at\"                 \n",
+       " [3703] \"1555209_at\"                  \"1557208_at\"                 \n",
+       " [3705] \"1255_g_at\"                   \"1553427_at\"                 \n",
+       " [3707] \"1255_g_at\"                   \"1555880_at\"                 \n",
+       " [3709] \"1555651_at\"                  \"1556675_s_at\"               \n",
+       " [3711] \"1557276_at\"                  \"1557277_a_at\"               \n",
+       " [3713] \"1555501_s_at\"                \"1553320_s_at\"               \n",
+       " [3715] \"1558281_a_at\"                \"1558402_at\"                 \n",
+       " [3717] \"1552301_a_at\"                \"1555271_a_at\"               \n",
+       " [3719] \"1553389_at\"                  \"1554016_a_at\"               \n",
+       " [3721] \"1554119_at\"                  \"1553288_a_at\"               \n",
+       " [3723] \"1554618_at\"                  \"1559681_a_at\"               \n",
+       " [3725] \"1556144_at\"                  \"1558369_at\"                 \n",
+       " [3727] \"1557684_at\"                  \"1555772_a_at\"               \n",
+       " [3729] \"1559403_at\"                  \"1559404_a_at\"               \n",
+       " [3731] \"1553413_at\"                  \"1555051_at\"                 \n",
+       " [3733] \"1554133_at\"                  \"1558537_x_at\"               \n",
+       " [3735] \"1553943_at\"                  \"1553478_at\"                 \n",
+       " [3737] \"1555020_a_at\"                \"1552456_a_at\"               \n",
+       " [3739] \"1552456_a_at\"                \"1552456_a_at\"               \n",
+       " [3741] \"1554501_at\"                  \"1554183_s_at\"               \n",
+       " [3743] \"1554182_at\"                  \"1552937_s_at\"               \n",
+       " [3745] \"1555851_s_at\"                \"1554627_a_at\"               \n",
+       " [3747] \"1558140_at\"                  \"1557444_at\"                 \n",
+       " [3749] \"1557446_x_at\"                \"1557444_at\"                 \n",
+       " [3751] \"1557446_x_at\"                \"1552787_at\"                 \n",
+       " [3753] \"1552788_a_at\"                \"1558322_a_at\"               \n",
+       " [3755] \"1554781_at\"                  \"1559321_at\"                 \n",
+       " [3757] \"1554628_at\"                  \"1558217_at\"                 \n",
+       " [3759] \"1553423_a_at\"                \"1557260_a_at\"               \n",
+       " [3761] \"1559033_at\"                  \"1557729_at\"                 \n",
+       " [3763] \"1559336_at\"                  \"1557466_at\"                 \n",
+       " [3765] \"1554533_at\"                  \"1554451_s_at\"               \n",
+       " [3767] \"1556204_a_at\"                \"1557248_at\"                 \n",
+       " [3769] \"1553426_at\"                  \"1558924_s_at\"               \n",
+       " [3771] \"1557512_at\"                  \"1558167_a_at\"               \n",
+       " [3773] \"1558166_at\"                  \"1556696_s_at\"               \n",
+       " [3775] \"1556695_a_at\"                \"1559650_at\"                 \n",
+       " [3777] \"1554089_s_at\"                \"1559616_x_at\"               \n",
+       " [3779] \"1552643_at\"                  \"1553314_a_at\"               \n",
+       " [3781] \"1553885_x_at\"                \"1553883_at\"                 \n",
+       " [3783] \"1558724_at\"                  \"1554327_a_at\"               \n",
+       " [3785] \"1559297_at\"                  \"1557027_at\"                 \n",
+       " [3787] \"1552456_a_at\"                \"1553611_s_at\"               \n",
+       " [3789] \"1553191_at\"                  \"1552569_a_at\"               \n",
+       " [3791] \"1552568_at\"                  \"1558604_a_at\"               \n",
+       " [3793] \"1553694_a_at\"                \"1555068_at\"                 \n",
+       " [3795] \"1558412_at\"                  \"1553168_at\"                 \n",
+       " [3797] \"1553255_at\"                  \"1556154_a_at\"               \n",
+       " [3799] \"1553525_at\"                  \"1559065_a_at\"               \n",
+       " [3801] \"1554520_at\"                  \"1552283_s_at\"               \n",
+       " [3803] \"1553923_at\"                  \"1558954_at\"                 \n",
+       " [3805] \"1554153_a_at\"                \"1554704_at\"                 \n",
+       " [3807] \"1556533_at\"                  \"1556060_a_at\"               \n",
+       " [3809] \"1557507_at\"                  \"1557507_at\"                 \n",
+       " [3811] \"1554712_a_at\"                \"1552609_s_at\"               \n",
+       " [3813] \"1558678_s_at\"                \"1558076_at\"                 \n",
+       " [3815] \"1559382_at\"                  \"1559284_at\"                 \n",
+       " [3817] \"1558611_at\"                  \"1559171_at\"                 \n",
+       " [3819] \"1553399_a_at\"                \"1553400_a_at\"               \n",
+       " [3821] \"1555985_at\"                  \"1557228_at\"                 \n",
+       " [3823] \"1553868_a_at\"                \"1559591_s_at\"               \n",
+       " [3825] \"1559590_at\"                  \"1555527_at\"                 \n",
+       " [3827] \"1556709_a_at\"                \"1558984_at\"                 \n",
+       " [3829] \"1558007_s_at\"                \"1559702_at\"                 \n",
+       " [3831] \"1558093_s_at\"                \"1552424_at\"                 \n",
+       " [3833] \"1552425_a_at\"                \"1552630_a_at\"               \n",
+       " [3835] \"1556945_a_at\"                \"1556944_at\"                 \n",
+       " [3837] \"1558237_x_at\"                \"1558236_at\"                 \n",
+       " [3839] \"1558400_x_at\"                \"1558398_at\"                 \n",
+       " [3841] \"1557943_at\"                  \"1552991_at\"                 \n",
+       " [3843] \"1556053_at\"                  \"1555269_a_at\"               \n",
+       " [3845] \"1559221_at\"                  \"1553338_at\"                 \n",
+       " [3847] \"1555568_at\"                  \"1552689_at\"                 \n",
+       " [3849] \"1558652_at\"                  \"1556742_at\"                 \n",
+       " [3851] \"1558937_s_at\"                \"1558640_a_at\"               \n",
+       " [3853] \"1554663_a_at\"                \"1557417_s_at\"               \n",
+       " [3855] \"1555272_at\"                  \"1552558_a_at\"               \n",
+       " [3857] \"1553366_s_at\"                \"1557417_s_at\"               \n",
+       " [3859] \"1555272_at\"                  \"1553366_s_at\"               \n",
+       " [3861] \"1553062_at\"                  \"1553990_at\"                 \n",
+       " [3863] \"1557712_x_at\"                \"1557710_at\"                 \n",
+       " [3865] \"1558899_s_at\"                \"1557357_at\"                 \n",
+       " [3867] \"1556006_s_at\"                \"1556007_s_at\"               \n",
+       " [3869] \"1555399_a_at\"                \"1556006_s_at\"               \n",
+       " [3871] \"1556007_s_at\"                \"1553594_a_at\"               \n",
+       " [3873] \"1552526_at\"                  \"1555594_a_at\"               \n",
+       " [3875] \"1558111_at\"                  \"1557948_at\"                 \n",
+       " [3877] \"1555368_x_at\"                \"1557869_at\"                 \n",
+       " [3879] \"1558238_at\"                  \"1558896_at\"                 \n",
+       " [3881] \"1557363_a_at\"                \"1557362_at\"                 \n",
+       " [3883] \"1559050_at\"                  \"1557119_a_at\"               \n",
+       " [3885] \"1553826_a_at\"                \"1553422_s_at\"               \n",
+       " [3887] \"1554543_at\"                  \"1557529_at\"                 \n",
+       " [3889] \"1554737_at\"                  \"1553051_s_at\"               \n",
+       " [3891] \"1552535_at\"                  \"1554804_a_at\"               \n",
+       " [3893] \"1554805_at\"                  \"1553888_at\"                 \n",
+       " [3895] \"1556531_at\"                  \"1557799_at\"                 \n",
+       " [3897] \"1557801_x_at\"                \"1557190_at\"                 \n",
+       " [3899] \"1558459_s_at\"                \"1558458_at\"                 \n",
+       " [3901] \"1558859_at\"                  \"1552355_s_at\"               \n",
+       " [3903] \"1552354_at\"                  \"1558603_at\"                 \n",
+       " [3905] \"1554503_a_at\"                \"1556514_at\"                 \n",
+       " [3907] \"1553432_s_at\"                \"1553432_s_at\"               \n",
+       " [3909] \"1559489_a_at\"                \"1559488_at\"                 \n",
+       " [3911] \"1554115_at\"                  \"1552923_a_at\"               \n",
+       " [3913] \"1552924_a_at\"                \"1558999_x_at\"               \n",
+       " [3915] \"1559573_at\"                  \"1554831_x_at\"               \n",
+       " [3917] \"1556757_a_at\"                \"1553260_s_at\"               \n",
+       " [3919] \"1558428_at\"                  \"1555317_at\"                 \n",
+       " [3921] \"1555737_a_at\"                \"1555697_at\"                 \n",
+       " [3923] \"1555021_a_at\"                \"1553365_at\"                 \n",
+       " [3925] \"1552395_at\"                  \"1558534_at\"                 \n",
+       " [3927] \"1552489_s_at\"                \"1555099_at\"                 \n",
+       " [3929] \"1552496_a_at\"                \"1554185_at\"                 \n",
+       " [3931] \"1554185_at\"                  \"1558890_at\"                 \n",
+       " [3933] \"1552559_a_at\"                \"1554826_at\"                 \n",
+       " [3935] \"1557030_at\"                  \"1557905_s_at\"               \n",
+       " [3937] \"1557107_at\"                  \"1553657_at\"                 \n",
+       " [3939] \"1555284_at\"                  \"1558534_at\"                 \n",
+       " [3941] \"1552722_at\"                  \"1556598_at\"                 \n",
+       " [3943] \"1556599_s_at\"                \"1557479_at\"                 \n",
+       " [3945] \"1553982_a_at\"                \"1554761_a_at\"               \n",
+       " [3947] \"1552737_s_at\"                \"1557493_x_at\"               \n",
+       " [3949] \"1557491_at\"                  \"1553898_a_at\"               \n",
+       " [3951] \"1555647_a_at\"                \"1552902_a_at\"               \n",
+       " [3953] \"1555516_at\"                  \"1555648_at\"                 \n",
+       " [3955] \"1555352_at\"                  \"1558525_at\"                 \n",
+       " [3957] \"1556199_a_at\"                \"1553526_at\"                 \n",
+       " [3959] \"1552405_at\"                  \"1558733_at\"                 \n",
+       " [3961] \"1554836_at\"                  \"1554717_a_at\"               \n",
+       " [3963] \"1555347_at\"                  \"1556500_a_at\"               \n",
+       " [3965] \"1555568_at\"                  \"1552929_at\"                 \n",
+       " [3967] \"1557769_at\"                  \"1557891_s_at\"               \n",
+       " [3969] \"1557890_at\"                  \"1556404_a_at\"               \n",
+       " [3971] \"1552540_s_at\"                \"1559283_a_at\"               \n",
+       " [3973] \"1559283_a_at\"                \"1558815_at\"                 \n",
+       " [3975] \"1555155_at\"                  \"1552319_a_at\"               \n",
+       " [3977] \"1555155_at\"                  \"1553726_s_at\"               \n",
+       " [3979] \"1555469_a_at\"                \"1558759_s_at\"               \n",
+       " [3981] \"1553213_a_at\"                \"1553212_at\"                 \n",
+       " [3983] \"1553048_a_at\"                \"1553047_at\"                 \n",
+       " [3985] \"1558011_at\"                  \"1558011_at\"                 \n",
+       " [3987] \"1558011_at\"                  \"1557374_at\"                 \n",
+       " [3989] \"1553162_x_at\"                \"1552630_a_at\"               \n",
+       " [3991] \"1559426_at\"                  \"1552761_at\"                 \n",
+       " [3993] \"1555110_a_at\"                \"1554966_a_at\"               \n",
+       " [3995] \"1554965_at\"                  \"1556913_a_at\"               \n",
+       " [3997] \"1556912_at\"                  \"1554413_s_at\"               \n",
+       " [3999] \"1555288_s_at\"                \"1556131_s_at\"               \n",
+       " [4001] \"1553321_a_at\"                \"1558738_at\"                 \n",
+       " [4003] \"1556299_s_at\"                \"1558557_at\"                 \n",
+       " [4005] \"1553340_s_at\"                \"1558168_at\"                 \n",
+       " [4007] \"1559409_a_at\"                \"1553064_at\"                 \n",
+       " [4009] \"1552634_a_at\"                \"1552633_at\"                 \n",
+       " [4011] \"1555812_a_at\"                \"1553471_at\"                 \n",
+       " [4013] \"1553340_s_at\"                \"1553375_at\"                 \n",
+       " [4015] \"1556382_a_at\"                \"1556381_at\"                 \n",
+       " [4017] \"1558300_at\"                  \"1558301_a_at\"               \n",
+       " [4019] \"1552621_at\"                  \"1552622_s_at\"               \n",
+       " [4021] \"1554641_a_at\"                \"1554273_a_at\"               \n",
+       " [4023] \"1554272_at\"                  \"1552621_at\"                 \n",
+       " [4025] \"1552622_s_at\"                \"1552621_at\"                 \n",
+       " [4027] \"1552622_s_at\"                \"1557031_at\"                 \n",
+       " [4029] \"1554554_at\"                  \"1553248_at\"                 \n",
+       " [4031] \"1557089_at\"                  \"1553078_at\"                 \n",
+       " [4033] \"1556579_s_at\"                \"1555668_a_at\"               \n",
+       " [4035] \"1554855_at\"                  \"1554952_s_at\"               \n",
+       " [4037] \"1555905_a_at\"                \"1555906_s_at\"               \n",
+       " [4039] \"1554739_at\"                  \"1552287_s_at\"               \n",
+       " [4041] \"1555154_a_at\"                \"1553130_at\"                 \n",
+       " [4043] \"1553472_at\"                  \"1555105_a_at\"               \n",
+       " [4045] \"1555368_x_at\"                \"1555368_x_at\"               \n",
+       " [4047] \"1556224_a_at\"                \"1556224_a_at\"               \n",
+       " [4049] \"1556844_at\"                  \"1553061_at\"                 \n",
+       " [4051] \"1553061_at\"                  \"1552637_at\"                 \n",
+       " [4053] \"1555890_at\"                  \"1555890_at\"                 \n",
+       " [4055] \"1556056_at\"                  \"1556299_s_at\"               \n",
+       " [4057] \"1554493_s_at\"                \"1558306_at\"                 \n",
+       " [4059] \"1554492_at\"                  \"1554362_at\"                 \n",
+       " [4061] \"1558336_at\"                  \"1556619_at\"                 \n",
+       " [4063] \"1559190_s_at\"                \"1553857_at\"                 \n",
+       " [4065] \"1554318_at\"                  \"1555065_x_at\"               \n",
+       " [4067] \"1555063_at\"                  \"1558996_at\"                 \n",
+       " [4069] \"1553889_at\"                  \"1553401_at\"                 \n",
+       " [4071] \"1553401_at\"                  \"1556069_s_at\"               \n",
+       " [4073] \"1555318_at\"                  \"1553409_at\"                 \n",
+       " [4075] \"1559535_s_at\"                \"1559534_at\"                 \n",
+       " [4077] \"1552895_a_at\"                \"1555522_s_at\"               \n",
+       " [4079] \"1552852_a_at\"                \"1552851_at\"                 \n",
+       " [4081] \"1557290_at\"                  \"1553402_a_at\"               \n",
+       " [4083] \"1554631_at\"                  \"1553387_at\"                 \n",
+       " [4085] \"1554089_s_at\"                \"1554089_s_at\"               \n",
+       " [4087] \"1552621_at\"                  \"1552622_s_at\"               \n",
+       " [4089] \"1552621_at\"                  \"1552622_s_at\"               \n",
+       " [4091] \"1556924_at\"                  \"1552452_at\"                 \n",
+       " [4093] \"1552453_a_at\"                \"1556277_a_at\"               \n",
+       " [4095] \"1555273_at\"                  \"1555427_s_at\"               \n",
+       " [4097] \"1558293_at\"                  \"1554324_s_at\"               \n",
+       " [4099] \"1559261_a_at\"                \"1554371_at\"                 \n",
+       " [4101] \"1557714_at\"                  \"1554108_at\"                 \n",
+       " [4103] \"1555391_a_at\"                \"1552811_at\"                 \n",
+       " [4105] \"1554466_a_at\"                \"1555323_at\"                 \n",
+       " [4107] \"1557360_at\"                  \"1555342_a_at\"               \n",
+       " [4109] \"1555341_at\"                  \"1553626_a_at\"               \n",
+       " [4111] \"1554772_at\"                  \"1553627_s_at\"               \n",
+       " [4113] \"1554671_a_at\"                \"1553292_s_at\"               \n",
+       " [4115] \"1554850_at\"                  \"1559240_at\"                 \n",
+       " [4117] \"1554909_at\"                  \"1554803_s_at\"               \n",
+       " [4119] \"1555542_at\"                  \"1557910_at\"                 \n",
+       " [4121] \"1558527_at\"                  \"1554796_at\"                 \n",
+       " [4123] \"1558828_s_at\"                \"1553071_a_at\"               \n",
+       " [4125] \"1553070_a_at\"                \"1553602_at\"                 \n",
+       " [4127] \"1555384_a_at\"                \"1554938_a_at\"               \n",
+       " [4129] \"1555321_at\"                  \"1558504_at\"                 \n",
+       " [4131] \"1552449_a_at\"                \"1557314_at\"                 \n",
+       " [4133] \"1553272_at\"                  \"1555779_a_at\"               \n",
+       " [4135] \"1553451_at\"                  \"1558254_s_at\"               \n",
+       " [4137] \"1552381_at\"                  \"1557290_at\"                 \n",
+       " [4139] \"1556471_at\"                  \"1556472_s_at\"               \n",
+       " [4141] \"1555356_a_at\"                \"1555485_s_at\"               \n",
+       " [4143] \"1554019_s_at\"                \"1556256_a_at\"               \n",
+       " [4145] \"1554511_at\"                  \"1553935_at\"                 \n",
+       " [4147] \"1553936_a_at\"                \"1554601_at\"                 \n",
+       " [4149] \"1552519_at\"                  \"1556229_at\"                 \n",
+       " [4151] \"1554008_at\"                  \"1554188_at\"                 \n",
+       " [4153] \"1553805_at\"                  \"1552734_at\"                 \n",
+       " [4155] \"1554318_at\"                  \"1554780_a_at\"               \n",
+       " [4157] \"1554822_at\"                  \"1557970_s_at\"               \n",
+       " [4159] \"1552337_s_at\"                \"1557737_s_at\"               \n",
+       " [4161] \"1557736_at\"                  \"1552615_at\"                 \n",
+       " [4163] \"1552616_a_at\"                \"1552791_a_at\"               \n",
+       " [4165] \"1557366_at\"                  \"1552982_a_at\"               \n",
+       " [4167] \"1557366_at\"                  \"1557765_at\"                 \n",
+       " [4169] \"1553798_a_at\"                \"1557721_at\"                 \n",
+       " [4171] \"1552973_at\"                  \"1557126_a_at\"               \n",
+       " [4173] \"1554997_a_at\"                \"1553565_s_at\"               \n",
+       " [4175] \"1557918_s_at\"                \"1559083_x_at\"               \n",
+       " [4177] \"1555980_a_at\"                \"1555979_at\"                 \n",
+       " [4179] \"1559139_at\"                  \"1558647_at\"                 \n",
+       " [4181] \"1552438_a_at\"                \"1554655_a_at\"               \n",
+       " [4183] \"1552293_at\"                  \"1557386_at\"                 \n",
+       " [4185] \"1558094_s_at\"                \"1557862_at\"                 \n",
+       " [4187] \"1555467_a_at\"                \"1557528_at\"                 \n",
+       " [4189] \"1554491_a_at\"                \"1554810_at\"                 \n",
+       " [4191] \"1554539_a_at\"                \"1554538_at\"                 \n",
+       " [4193] \"1556042_s_at\"                \"1553534_at\"                 \n",
+       " [4195] \"1553810_a_at\"                \"1554479_a_at\"               \n",
+       " [4197] \"1557146_a_at\"                \"1557702_at\"                 \n",
+       " [4199] \"1558487_a_at\"                \"1558052_at\"                 \n",
+       " [4201] \"1558053_s_at\"                \"1554152_a_at\"               \n",
+       " [4203] \"1554151_at\"                  \"1559105_at\"                 \n",
+       " [4205] \"1552947_x_at\"                \"1552946_at\"                 \n",
+       " [4207] \"1552760_at\"                  \"1552758_at\"                 \n",
+       " [4209] \"1558262_at\"                  \"1559617_at\"                 \n",
+       " [4211] \"1554744_at\"                  \"1552703_s_at\"               \n",
+       " [4213] \"1552701_a_at\"                \"1559022_at\"                 \n",
+       " [4215] \"1559023_a_at\"                \"1556473_at\"                 \n",
+       " [4217] \"1556474_a_at\"                \"1553683_s_at\"               \n",
+       " [4219] \"1553682_at\"                  \"1552663_a_at\"               \n",
+       " [4221] \"1555294_a_at\"                \"1555300_a_at\"               \n",
+       " [4223] \"1553436_at\"                  \"1552531_a_at\"               \n",
+       " [4225] \"1553560_at\"                  \"1552835_at\"                 \n",
+       " [4227] \"1557309_at\"                  \"1555618_s_at\"               \n",
+       " [4229] \"1556209_at\"                  \"1552621_at\"                 \n",
+       " [4231] \"1552622_s_at\"                \"1552398_a_at\"               \n",
+       " [4233] \"1558292_s_at\"                \"1554419_x_at\"               \n",
+       " [4235] \"1556057_s_at\"                \"1556621_a_at\"               \n",
+       " [4237] \"1555748_x_at\"                \"1555746_at\"                 \n",
+       " [4239] \"1555325_s_at\"                \"1558460_at\"                 \n",
+       " [4241] \"1558687_a_at\"                \"1555060_a_at\"               \n",
+       " [4243] \"1554987_at\"                  \"1559075_s_at\"               \n",
+       " [4245] \"1559049_a_at\"                \"1559048_at\"                 \n",
+       " [4247] \"1555751_a_at\"                \"1555088_x_at\"               \n",
+       " [4249] \"1555086_at\"                  \"1553418_a_at\"               \n",
+       " [4251] \"1553013_at\"                  \"1554106_at\"                 \n",
+       " [4253] \"1554667_s_at\"                \"1555462_at\"                 \n",
+       " [4255] \"1552789_at\"                  \"1552790_a_at\"               \n",
+       " [4257] \"1554475_a_at\"                \"1554178_a_at\"               \n",
+       " [4259] \"1558959_at\"                  \"1559432_at\"                 \n",
+       " [4261] \"1557550_at\"                  \"1556796_at\"                 \n",
+       " [4263] \"1555948_s_at\"                \"1556422_at\"                 \n",
+       " [4265] \"1556405_s_at\"                \"1558186_s_at\"               \n",
+       " [4267] \"1558185_at\"                  \"1557021_s_at\"               \n",
+       " [4269] \"1559595_at\"                  \"1559141_s_at\"               \n",
+       " [4271] \"1559140_at\"                  \"1556272_a_at\"               \n",
+       " [4273] \"1556271_at\"                  \"1552576_at\"                 \n",
+       " [4275] \"1555608_at\"                  \"1557044_at\"                 \n",
+       " [4277] \"1557046_x_at\"                \"1554322_a_at\"               \n",
+       " [4279] \"1558256_at\"                  \"1552507_at\"                 \n",
+       " [4281] \"1552508_at\"                  \"1552621_at\"                 \n",
+       " [4283] \"1552622_s_at\"                \"1556724_at\"                 \n",
+       " [4285] \"1556725_a_at\"                \"1557246_at\"                 \n",
+       " [4287] \"1553992_s_at\"                \"1294_at\"                    \n",
+       " [4289] \"1294_at\"                     \"1552302_at\"                 \n",
+       " [4291] \"1552303_a_at\"                \"1552622_s_at\"               \n",
+       " [4293] \"1559538_at\"                  \"1553347_s_at\"               \n",
+       " [4295] \"1553573_s_at\"                \"1555875_at\"                 \n",
+       " [4297] \"1555876_at\"                  \"1554473_at\"                 \n",
+       " [4299] \"1556678_a_at\"                \"1559061_at\"                 \n",
+       " [4301] \"1553211_at\"                  \"1559640_at\"                 \n",
+       " [4303] \"1558233_s_at\"                \"1553361_x_at\"               \n",
+       " [4305] \"1553359_at\"                  \"1552703_s_at\"               \n",
+       " [4307] \"1555305_at\"                  \"1558390_at\"                 \n",
+       " [4309] \"1558391_s_at\"                \"1555363_s_at\"               \n",
+       " [4311] \"1553828_at\"                  \"1559495_at\"                 \n",
+       " [4313] \"1556905_at\"                  \"1558250_s_at\"               \n",
+       " [4315] \"1553380_at\"                  \"1552619_a_at\"               \n",
+       " [4317] \"1556822_s_at\"                \"1552921_a_at\"               \n",
+       " [4319] \"1552391_at\"                  \"1553674_at\"                 \n",
+       " [4321] \"1554160_a_at\"                \"1555988_a_at\"               \n",
+       " [4323] \"1557796_at\"                  \"1557953_at\"                 \n",
+       " [4325] \"1553220_at\"                  \"1553218_a_at\"               \n",
+       " [4327] \"1557410_at\"                  \"1557224_at\"                 \n",
+       " [4329] \"1555523_a_at\"                \"1559302_at\"                 \n",
+       " [4331] \"1558195_at\"                  \"1555262_a_at\"               \n",
+       " [4333] \"1559256_at\"                  \"1559257_a_at\"               \n",
+       " [4335] \"1558393_at\"                  \"1558394_s_at\"               \n",
+       " [4337] \"1554344_s_at\"                \"1559575_a_at\"               \n",
+       " [4339] \"1553539_at\"                  \"1553537_at\"                 \n",
+       " [4341] \"1557114_a_at\"                \"1556294_at\"                 \n",
+       " [4343] \"1555146_at\"                  \"1555842_at\"                 \n",
+       " [4345] \"1554615_at\"                  \"1555206_at\"                 \n",
+       " [4347] \"1557007_a_at\"                \"1554794_a_at\"               \n",
+       " [4349] \"1555405_at\"                  \"1554793_at\"                 \n",
+       " [4351] \"1558792_x_at\"                \"1553641_a_at\"               \n",
+       " [4353] \"1552813_at\"                  \"1552814_a_at\"               \n",
+       " [4355] \"1557601_s_at\"                \"1554852_a_at\"               \n",
+       " [4357] \"1555168_a_at\"                \"1553670_at\"                 \n",
+       " [4359] \"1554060_s_at\"                \"1554059_at\"                 \n",
+       " [4361] \"1554743_x_at\"                \"1554742_at\"                 \n",
+       " [4363] \"1552785_at\"                  \"1556183_at\"                 \n",
+       " [4365] \"1555916_at\"                  \"1552678_a_at\"               \n",
+       " [4367] \"1556624_at\"                  \"1556625_a_at\"               \n",
+       " [4369] \"1558816_at\"                  \"1559093_at\"                 \n",
+       " [4371] \"1553968_a_at\"                \"1553967_at\"                 \n",
+       " [4373] \"1553869_at\"                  \"1554994_at\"                 \n",
+       " [4375] \"1555274_a_at\"                \"1558809_s_at\"               \n",
+       " [4377] \"1553284_s_at\"                \"1555229_a_at\"               \n",
+       " [4379] \"1554903_at\"                  \"1554905_x_at\"               \n",
+       " [4381] \"1553512_at\"                  \"1558708_at\"                 \n",
+       " [4383] \"1553452_at\"                  \"1556538_at\"                 \n",
+       " [4385] \"1558381_a_at\"                \"1556777_a_at\"               \n",
+       " [4387] \"1556776_a_at\"                \"1559410_at\"                 \n",
+       " [4389] \"1556582_at\"                  \"1559244_at\"                 \n",
+       " [4391] \"1555471_a_at\"                \"1556582_at\"                 \n",
+       " [4393] \"1554469_at\"                  \"1554470_s_at\"               \n",
+       " [4395] \"1555907_at\"                  \"1553787_at\"                 \n",
+       " [4397] \"1556518_at\"                  \"1555666_at\"                 \n",
+       " [4399] \"1554633_a_at\"                \"1556182_x_at\"               \n",
+       " [4401] \"1556181_at\"                  \"1559492_at\"                 \n",
+       " [4403] \"1558331_at\"                  \"1554946_at\"                 \n",
+       " [4405] \"1557354_at\"                  \"1558739_at\"                 \n",
+       " [4407] \"1558740_s_at\"                \"1557124_at\"                 \n",
+       " [4409] \"1555762_s_at\"                \"1555760_a_at\"               \n",
+       " [4411] \"1557994_at\"                  \"1553834_at\"                 \n",
+       " [4413] \"1553835_a_at\"                \"1556584_at\"                 \n",
+       " [4415] \"1556586_x_at\"                \"1553437_at\"                 \n",
+       " [4417] \"1556012_at\"                  \"1558189_a_at\"               \n",
+       " [4419] \"1556155_at\"                  \"1557754_at\"                 \n",
+       " [4421] \"1558289_at\"                  \"1553483_at\"                 \n",
+       " [4423] \"1554085_at\"                  \"1553042_a_at\"               \n",
+       " [4425] \"1553118_at\"                  \"1559226_x_at\"               \n",
+       " [4427] \"1559224_at\"                  \"1555348_at\"                 \n",
+       " [4429] \"1555118_at\"                  \"1559169_at\"                 \n",
+       " [4431] \"1552836_at\"                  \"1553333_at\"                 \n",
+       " [4433] \"1554091_a_at\"                \"1552360_a_at\"               \n",
+       " [4435] \"1557908_at\"                  \"1552804_a_at\"               \n",
+       " [4437] \"1558620_at\"                  \"1554411_at\"                 \n",
+       " [4439] \"1554122_a_at\"                \"1554121_at\"                 \n",
+       " [4441] \"1553016_at\"                  \"1556088_at\"                 \n",
+       " [4443] \"1558719_s_at\"                \"1557296_at\"                 \n",
+       " [4445] \"1557131_at\"                  \"1553645_at\"                 \n",
+       " [4447] \"1553561_at\"                  \"1557177_at\"                 \n",
+       " [4449] \"1559518_at\"                  \"1553698_a_at\"               \n",
+       " [4451] \"1553697_at\"                  \"1552846_s_at\"               \n",
+       " [4453] \"1556872_s_at\"                \"1554871_at\"                 \n",
+       " [4455] \"1558014_s_at\"                \"1557774_at\"                 \n",
+       " [4457] \"1553901_x_at\"                \"1555656_at\"                 \n",
+       " [4459] \"1555636_at\"                  \"1552509_a_at\"               \n",
+       " [4461] \"1552377_s_at\"                \"1556567_at\"                 \n",
+       " [4463] \"1552458_at\"                  \"1552459_a_at\"               \n",
+       " [4465] \"1553484_at\"                  \"1552498_at\"                 \n",
+       " [4467] \"1552499_a_at\"                \"1554790_at\"                 \n",
+       " [4469] \"1556401_a_at\"                \"1556400_at\"                 \n",
+       " [4471] \"1555847_a_at\"                \"1554774_at\"                 \n",
+       " [4473] \"1558626_at\"                  \"1552450_a_at\"               \n",
+       " [4475] \"1553837_at\"                  \"1555943_at\"                 \n",
+       " [4477] \"1557484_at\"                  \"1556435_at\"                 \n",
+       " [4479] \"1556851_at\"                  \"1556852_a_at\"               \n",
+       " [4481] \"1555822_at\"                  \"1555822_at\"                 \n",
+       " [4483] \"1553956_at\"                  \"1553813_s_at\"               \n",
+       " [4485] \"1553812_at\"                  \"1557192_at\"                 \n",
+       " [4487] \"1552875_a_at\"                \"1553395_a_at\"               \n",
+       " [4489] \"1554666_at\"                  \"1558234_at\"                 \n",
+       " [4491] \"1556183_at\"                  \"1554020_at\"                 \n",
+       " [4493] \"1556051_a_at\"                \"1554784_at\"                 \n",
+       " [4495] \"1553072_at\"                  \"1554286_at\"                 \n",
+       " [4497] \"1552456_a_at\"                \"1556123_a_at\"               \n",
+       " [4499] \"1556122_at\"                  \"1555844_s_at\"               \n",
+       " [4501] \"1555843_at\"                  \"1557139_at\"                 \n",
+       " [4503] \"1557710_at\"                  \"1553138_a_at\"               \n",
+       " [4505] \"1556183_at\"                  \"1552641_s_at\"               \n",
+       " [4507] \"1555675_at\"                  \"1555804_a_at\"               \n",
+       " [4509] \"1555557_a_at\"                \"1555062_s_at\"               \n",
+       " [4511] \"1556312_at\"                  \"1557758_at\"                 \n",
+       " [4513] \"1557758_at\"                  \"1552785_at\"                 \n",
+       " [4515] \"1553373_at\"                  \"1553895_at\"                 \n",
+       " [4517] \"1553635_s_at\"                \"1554141_s_at\"               \n",
+       " [4519] \"1554140_at\"                  \"1552625_a_at\"               \n",
+       " [4521] \"1558695_at\"                  \"1556784_at\"                 \n",
+       " [4523] \"1557986_s_at\"                \"1552484_at\"                 \n",
+       " [4525] \"1554958_at\"                  \"1554594_at\"                 \n",
+       " [4527] \"1553022_at\"                  \"1558698_at\"                 \n",
+       " [4529] \"1554540_at\"                  \"1552794_a_at\"               \n",
+       " [4531] \"1558995_at\"                  \"1558622_a_at\"               \n",
+       " [4533] \"1558622_a_at\"                \"1553719_s_at\"               \n",
+       " [4535] \"1553718_at\"                  \"1554759_at\"                 \n",
+       " [4537] \"1557964_at\"                  \"1552501_a_at\"               \n",
+       " [4539] \"1555279_at\"                  \"1555281_x_at\"               \n",
+       " [4541] \"1555895_at\"                  \"1558028_x_at\"               \n",
+       " [4543] \"1557016_a_at\"                \"1555355_a_at\"               \n",
+       " [4545] \"1553910_at\"                  \"1556195_a_at\"               \n",
+       " [4547] \"1556195_a_at\"                \"1555116_s_at\"               \n",
+       " [4549] \"1556195_a_at\"                \"1554945_x_at\"               \n",
+       " [4551] \"1554943_at\"                  \"1559372_at\"                 \n",
+       " [4553] \"1556931_at\"                  \"1554834_a_at\"               \n",
+       " [4555] \"1556195_a_at\"                \"1555092_at\"                 \n",
+       " [4557] \"1552865_a_at\"                \"1555397_at\"                 \n",
+       " [4559] \"1554271_a_at\"                \"1554725_at\"                 \n",
+       " [4561] \"1552812_a_at\"                \"1557675_at\"                 \n",
+       " [4563] \"1553776_at\"                  \"1556753_s_at\"               \n",
+       " [4565] \"1555981_at\"                  \"1555749_at\"                 \n",
+       " [4567] \"1558215_s_at\"                \"1553695_a_at\"               \n",
+       " [4569] \"1554261_at\"                  \"1554262_s_at\"               \n",
+       " [4571] \"1559203_s_at\"                \"1559204_x_at\"               \n",
+       " [4573] \"1558009_at\"                  \"1558010_s_at\"               \n",
+       " [4575] \"1556747_a_at\"                \"1556748_x_at\"               \n",
+       " [4577] \"1552618_at\"                  \"1552618_at\"                 \n",
+       " [4579] \"1558814_s_at\"                \"1553043_a_at\"               \n",
+       " [4581] \"1552472_a_at\"                \"1555123_at\"                 \n",
+       " [4583] \"1556167_at\"                  \"1556168_s_at\"               \n",
+       " [4585] \"1552620_at\"                  \"1555993_at\"                 \n",
+       " [4587] \"1555499_a_at\"                \"1552979_at\"                 \n",
+       " [4589] \"1559605_a_at\"                \"1554860_at\"                 \n",
+       " [4591] \"1557684_at\"                  \"1554847_at\"                 \n",
+       " [4593] \"1559469_s_at\"                \"1557602_at\"                 \n",
+       " [4595] \"1556249_a_at\"                \"1556248_at\"                 \n",
+       " [4597] \"1557212_at\"                  \"1557366_at\"                 \n",
+       " [4599] \"1557366_at\"                  \"1553491_at\"                 \n",
+       " [4601] \"1559681_a_at\"                \"1557613_at\"                 \n",
+       " [4603] \"1556387_at\"                  \"1556388_a_at\"               \n",
+       " [4605] \"1552423_at\"                  \"1557143_at\"                 \n",
+       " [4607] \"1556364_at\"                  \"1559296_at\"                 \n",
+       " [4609] \"1557607_at\"                  \"1557608_a_at\"               \n",
+       " [4611] \"1553222_at\"                  \"1558920_at\"                 \n",
+       " [4613] \"1552797_s_at\"                \"1558760_at\"                 \n",
+       " [4615] \"1555007_s_at\"                \"1558552_s_at\"               \n",
+       " [4617] \"1557357_at\"                  \"1555860_x_at\"               \n",
+       " [4619] \"1555858_at\"                  \"1554886_a_at\"               \n",
+       " [4621] \"1559220_at\"                  \"1557584_at\"                 \n",
+       " [4623] \"1557584_at\"                  \"1553989_a_at\"               \n",
+       " [4625] \"1552532_a_at\"                \"1553860_at\"                 \n",
+       " [4627] \"1555896_a_at\"                \"1558066_s_at\"               \n",
+       " [4629] \"1554701_a_at\"                \"1553987_at\"                 \n",
+       " [4631] \"1553349_at\"                  \"1559144_x_at\"               \n",
+       " [4633] \"1556545_at\"                  \"1556437_at\"                 \n",
+       " [4635] \"1554576_a_at\"                \"1556034_s_at\"               \n",
+       " [4637] \"1556928_at\"                  \"1555964_at\"                 \n",
+       " [4639] \"1554245_x_at\"                \"1555964_at\"                 \n",
+       " [4641] \"1554245_x_at\"                \"1555139_a_at\"               \n",
+       " [4643] \"1553743_at\"                  \"1555964_at\"                 \n",
+       " [4645] \"1554245_x_at\"                \"1555144_at\"                 \n",
+       " [4647] \"1555964_at\"                  \"1554245_x_at\"               \n",
+       " [4649] \"1555144_at\"                  \"1555964_at\"                 \n",
+       " [4651] \"1554245_x_at\"                \"1555144_at\"                 \n",
+       " [4653] \"1554398_at\"                  \"1558680_s_at\"               \n",
+       " [4655] \"1555278_a_at\"                \"1555277_a_at\"               \n",
+       " [4657] \"1555277_a_at\"                \"1553412_at\"                 \n",
+       " [4659] \"1555997_s_at\"                \"1553094_at\"                 \n",
+       " [4661] \"1558588_at\"                  \"1553619_a_at\"               \n",
+       " [4663] \"1553618_at\"                  \"1557771_at\"                 \n",
+       " [4665] \"1553306_at\"                  \"1554310_a_at\"               \n",
+       " [4667] \"1554309_at\"                  \"1555475_x_at\"               \n",
+       " [4669] \"1555474_at\"                  \"1559601_at\"                 \n",
+       " [4671] \"1554306_at\"                  \"1557487_at\"                 \n",
+       " [4673] \"1553454_at\"                  \"1554764_a_at\"               \n",
+       " [4675] \"1554765_a_at\"                \"1558327_at\"                 \n",
+       " [4677] \"1555309_a_at\"                \"1555308_at\"                 \n",
+       " [4679] \"1555814_a_at\"                \"1557886_at\"                 \n",
+       " [4681] \"1554500_a_at\"                \"1555939_at\"                 \n",
+       " [4683] \"1555940_a_at\"                \"1558220_at\"                 \n",
+       " [4685] \"1557293_at\"                  \"1554299_at\"                 \n",
+       " [4687] \"1557385_at\"                  \"1557293_at\"                 \n",
+       " [4689] \"1558502_s_at\"                \"1558501_at\"                 \n",
+       " [4691] \"1557674_s_at\"                \"1555464_at\"                 \n",
+       " [4693] \"1555235_s_at\"                \"1555235_s_at\"               \n",
+       " [4695] \"1555626_a_at\"                \"1556103_at\"                 \n",
+       " [4697] \"1552553_a_at\"                \"1552554_a_at\"               \n",
+       " [4699] \"1556798_a_at\"                \"1556797_at\"                 \n",
+       " [4701] \"1559145_at\"                  \"1554839_at\"                 \n",
+       " [4703] \"1552586_at\"                  \"1555291_at\"                 \n",
+       " [4705] \"1555076_at\"                  \"1556153_s_at\"               \n",
+       " [4707] \"1557121_s_at\"                \"1555148_a_at\"               \n",
+       " [4709] \"1552849_at\"                  \"1554915_a_at\"               \n",
+       " [4711] \"1557085_at\"                  \"1554892_a_at\"               \n",
+       " [4713] \"1554443_s_at\"                \"1554442_at\"                 \n",
+       " [4715] \"1555216_a_at\"                \"1555478_at\"                 \n",
+       " [4717] \"1556504_at\"                  \"1559680_at\"                 \n",
+       " [4719] \"1555374_at\"                  \"1555759_a_at\"               \n",
+       " [4721] \"1405_i_at\"                   \"1557331_at\"                 \n",
+       " [4723] \"1556448_a_at\"                \"1556447_at\"                 \n",
+       " [4725] \"1554724_at\"                  \"1554531_at\"                 \n",
+       " [4727] \"1554531_at\"                  \"1554205_s_at\"               \n",
+       " [4729] \"1555671_at\"                  \"1553725_s_at\"               \n",
+       " [4731] \"1559086_at\"                  \"1554931_at\"                 \n",
+       " [4733] \"1554837_a_at\"                \"1557366_at\"                 \n",
+       " [4735] \"1559324_at\"                  \"1555650_at\"                 \n",
+       " [4737] \"1557017_at\"                  \"1557018_a_at\"               \n",
+       " [4739] \"1554890_a_at\"                \"1554889_at\"                 \n",
+       " [4741] \"1557207_s_at\"                \"1556654_at\"                 \n",
+       " [4743] \"1556655_s_at\"                \"1555246_a_at\"               \n",
+       " [4745] \"1556718_s_at\"                \"1556717_at\"                 \n",
+       " [4747] \"1558678_s_at\"                \"1558705_at\"                 \n",
+       " [4749] \"1558706_a_at\"                \"1553020_at\"                 \n",
+       " [4751] \"1558875_at\"                  \"1553775_at\"                 \n",
+       " [4753] \"1559111_a_at\"                \"1559110_at\"                 \n",
+       " [4755] \"1554584_at\"                  \"1559309_at\"                 \n",
+       " [4757] \"1552880_at\"                  \"1555289_at\"                 \n",
+       " [4759] \"1552880_at\"                  \"1555289_at\"                 \n",
+       " [4761] \"1553460_at\"                  \"1555018_at\"                 \n",
+       " [4763] \"1555018_at\"                  \"1557366_at\"                 \n",
+       " [4765] \"1555694_a_at\"                \"1555132_at\"                 \n",
+       " [4767] \"1553872_at\"                  \"1554749_s_at\"               \n",
+       " [4769] \"1554748_at\"                  \"1557346_a_at\"               \n",
+       " [4771] \"1553268_at\"                  \"1552853_at\"                 \n",
+       " [4773] \"1552854_a_at\"                \"1556558_s_at\"               \n",
+       " [4775] \"1554074_s_at\"                \"1553315_at\"                 \n",
+       " [4777] \"1556641_at\"                  \"1555320_a_at\"               \n",
+       " [4779] \"1555319_at\"                  \"1555222_a_at\"               \n",
+       " [4781] \"1555221_at\"                  \"1555613_a_at\"               \n",
+       " [4783] \"1554602_at\"                  \"1554602_at\"                 \n",
+       " [4785] \"1559578_at\"                  \"1558556_at\"                 \n",
+       " [4787] \"1557476_at\"                  \"1554613_a_at\"               \n",
+       " [4789] \"1554612_at\"                  \"1553470_at\"                 \n",
+       " [4791] \"1554557_at\"                  \"1554556_a_at\"               \n",
+       " [4793] \"1558201_s_at\"                \"1557427_at\"                 \n",
+       " [4795] \"1554575_a_at\"                \"1556308_at\"                 \n",
+       " [4797] \"1554298_a_at\"                \"1556920_s_at\"               \n",
+       " [4799] \"1553280_at\"                  \"1558164_s_at\"               \n",
+       " [4801] \"1558163_at\"                  \"1556009_at\"                 \n",
+       " [4803] \"1554610_at\"                  \"1553407_at\"                 \n",
+       " [4805] \"1555567_s_at\"                \"1558602_a_at\"               \n",
+       " [4807] \"1558601_at\"                  \"1558602_a_at\"               \n",
+       " [4809] \"1558601_at\"                  \"1556617_a_at\"               \n",
+       " [4811] \"1557400_at\"                  \"1558320_at\"                 \n",
+       " [4813] \"1554464_a_at\"                \"1555889_a_at\"               \n",
+       " [4815] \"1554960_at\"                  \"1555734_x_at\"               \n",
+       " [4817] \"1555731_a_at\"                \"1555733_s_at\"               \n",
+       " [4819] \"1555734_x_at\"                \"1555731_a_at\"               \n",
+       " [4821] \"1555733_s_at\"                \"1557194_a_at\"               \n",
+       " [4823] \"1558969_a_at\"                \"1558560_s_at\"               \n",
+       " [4825] \"1554368_at\"                  \"1555112_a_at\"               \n",
+       " [4827] \"1555111_at\"                  \"1555913_at\"                 \n",
+       " [4829] \"1558732_at\"                  \"1553281_at\"                 \n",
+       " [4831] \"1554779_s_at\"                \"1554778_at\"                 \n",
+       " [4833] \"1557578_at\"                  \"1559077_at\"                 \n",
+       " [4835] \"1556999_at\"                  \"1555846_a_at\"               \n",
+       " [4837] \"1555845_at\"                  \"1559227_s_at\"               \n",
+       " [4839] \"1556827_at\"                  \"1558469_at\"                 \n",
+       " [4841] \"1554874_at\"                  \"1557472_a_at\"               \n",
+       " [4843] \"1556775_at\"                  \"1558956_s_at\"               \n",
+       " [4845] \"1555783_x_at\"                \"1555781_at\"                 \n",
+       " [4847] \"1556274_at\"                  \"1558577_at\"                 \n",
+       " [4849] \"1553797_a_at\"                \"1553796_at\"                 \n",
+       " [4851] \"1553420_at\"                  \"1556043_a_at\"               \n",
+       " [4853] \"1556043_a_at\"                \"1557059_at\"                 \n",
+       " [4855] \"1555360_a_at\"                \"1557727_at\"                 \n",
+       " [4857] \"1556186_s_at\"                \"1555797_a_at\"               \n",
+       " [4859] \"1554545_at\"                  \"1556667_at\"                 \n",
+       " [4861] \"1553506_at\"                  \"1555420_a_at\"               \n",
+       " [4863] \"1552410_at\"                  \"1552708_a_at\"               \n",
+       " [4865] \"1555598_a_at\"                \"1552705_at\"                 \n",
+       " [4867] \"1558834_s_at\"                \"1552933_at\"                 \n",
+       " [4869] \"1555543_a_at\"                \"1557433_at\"                 \n",
+       " [4871] \"1554740_a_at\"                \"1554739_at\"                 \n",
+       " [4873] \"1552402_at\"                  \"1558015_s_at\"               \n",
+       " [4875] \"1554390_s_at\"                \"1555736_a_at\"               \n",
+       " [4877] \"1552779_a_at\"                \"1552782_at\"                 \n",
+       " [4879] \"1556560_a_at\"                \"1559218_s_at\"               \n",
+       " [4881] \"1555942_a_at\"                \"1553508_at\"                 \n",
+       " [4883] \"1554198_at\"                  \"1554808_at\"                 \n",
+       " [4885] \"1555124_at\"                  \"1557049_at\"                 \n",
+       " [4887] \"1552714_at\"                  \"1558603_at\"                 \n",
+       " [4889] \"1558436_a_at\"                \"1554459_s_at\"               \n",
+       " [4891] \"1552477_a_at\"                \"1552477_a_at\"               \n",
+       " [4893] \"1552478_a_at\"                \"1554049_s_at\"               \n",
+       " [4895] \"1552576_at\"                  \"1552576_at\"                 \n",
+       " [4897] \"1554049_s_at\"                \"1556704_s_at\"               \n",
+       " [4899] \"1552497_a_at\"                \"1556183_at\"                 \n",
+       " [4901] \"1556183_at\"                  \"1556583_a_at\"               \n",
+       " [4903] \"1555100_at\"                  \"1558027_s_at\"               \n",
+       " [4905] \"1555483_x_at\"                \"1554795_a_at\"               \n",
+       " [4907] \"1555480_a_at\"                \"1558825_s_at\"               \n",
+       " [4909] \"1553136_at\"                  \"1559159_at\"                 \n",
+       " [4911] \"1557292_a_at\"                \"121_at\"                     \n",
+       " [4913] \"1555338_s_at\"                \"1556244_s_at\"               \n",
+       " [4915] \"1554783_s_at\"                \"1555799_at\"                 \n",
+       " [4917] \"1553196_a_at\"                \"1553350_at\"                 \n",
+       " [4919] \"1555224_at\"                  \"1553176_at\"                 \n",
+       " [4921] \"1553177_at\"                  \"1552656_s_at\"               \n",
+       " [4923] \"1557506_a_at\"                \"1553672_at\"                 \n",
+       " [4925] \"1557924_s_at\"                \"1554459_s_at\"               \n",
+       " [4927] \"1555226_s_at\"                \"1555225_at\"                 \n",
+       " [4929] \"1555468_at\"                  \"1554379_a_at\"               \n",
+       " [4931] \"1553190_s_at\"                \"1553188_s_at\"               \n",
+       " [4933] \"1555113_at\"                  \"1555316_a_at\"               \n",
+       " [4935] \"1554875_at\"                  \"1554798_at\"                 \n",
+       " [4937] \"1559421_at\"                  \"1557966_x_at\"               \n",
+       " [4939] \"1557965_at\"                  \"1552516_a_at\"               \n",
+       " [4941] \"1552515_at\"                  \"1552912_a_at\"               \n",
+       " [4943] \"1558375_at\"                  \"1554444_s_at\"               \n",
+       " [4945] \"1553232_at\"                  \"1558368_s_at\"               \n",
+       " [4947] \"1556826_s_at\"                \"1554340_a_at\"               \n",
+       " [4949] \"1553829_at\"                  \"1553603_s_at\"               \n",
+       " [4951] \"1553088_a_at\"                \"1553096_s_at\"               \n",
+       " [4953] \"1558143_a_at\"                \"1555298_a_at\"               \n",
+       " [4955] \"1558470_at\"                  \"1557274_at\"                 \n",
+       " [4957] \"1552480_s_at\"                \"1554057_at\"                 \n",
+       " [4959] \"1553510_s_at\"                \"1554080_at\"                 \n",
+       " [4961] \"1554163_at\"                  \"1558692_at\"                 \n",
+       " [4963] \"1558693_s_at\"                \"1552942_at\"                 \n",
+       " [4965] \"1555240_s_at\"                \"1555266_a_at\"               \n",
+       " [4967] \"1553059_at\"                  \"1553959_a_at\"               \n",
+       " [4969] \"1554417_s_at\"                \"1552631_a_at\"               \n",
+       " [4971] \"1559638_at\"                  \"1555131_a_at\"               \n",
+       " [4973] \"1555130_at\"                  \"1553444_a_at\"               \n",
+       " [4975] \"1552610_a_at\"                \"1552611_a_at\"               \n",
+       " [4977] \"1555950_a_at\"                \"1556107_at\"                 \n",
+       " [4979] \"1553654_at\"                  \"1553045_at\"                 \n",
+       " [4981] \"1554706_at\"                  \"1553529_at\"                 \n",
+       " [4983] \"1554415_at\"                  \"1556510_at\"                 \n",
+       " [4985] \"1556511_a_at\"                \"1558101_at\"                 \n",
+       " [4987] \"1557639_at\"                  \"1554580_a_at\"               \n",
+       " [4989] \"1559376_at\"                  \"1552870_s_at\"               \n",
+       " [4991] \"1553376_a_at\"                \"1557757_at\"                 \n",
+       " [4993] \"1557557_at\"                  \"1557558_s_at\"               \n",
+       " [4995] \"1556048_at\"                  \"1556235_at\"                 \n",
+       " [4997] \"1557373_at\"                  \"1559522_at\"                 \n",
+       " [4999] \"1557776_at\"                  \"1559506_x_at\"               \n",
+       " [5001] \"1559504_at\"                  \"1554103_at\"                 \n",
+       " [5003] \"1558832_at\"                  \"1557341_x_at\"               \n",
+       " [5005] \"1557761_s_at\"                \"1556801_at\"                 \n",
+       " [5007] \"1558782_a_at\"                \"1558208_at\"                 \n",
+       " [5009] \"1552309_a_at\"                \"1553538_s_at\"               \n",
+       " [5011] \"1553567_s_at\"                \"1553567_s_at\"               \n",
+       " [5013] \"1553567_s_at\"                \"1557055_s_at\"               \n",
+       " [5015] \"1552717_s_at\"                \"1552717_s_at\"               \n",
+       " [5017] \"1555572_at\"                  \"1557349_at\"                 \n",
+       " [5019] \"1556059_s_at\"                \"1556058_s_at\"               \n",
+       " [5021] \"1553550_at\"                  \"1556309_s_at\"               \n",
+       " [5023] \"1558544_at\"                  \"1556457_s_at\"               \n",
+       " [5025] \"1556456_at\"                  \"1556033_at\"                 \n",
+       " [5027] \"1557896_at\"                  \"1555444_a_at\"               \n",
+       " [5029] \"1557553_at\"                  \"1553156_at\"                 \n",
+       " [5031] \"1553157_at\"                  \"1558862_at\"                 \n",
+       " [5033] \"1558862_at\"                  \"1553924_at\"                 \n",
+       " [5035] \"1558588_at\"                  \"1552857_a_at\"               \n",
+       " [5037] \"1553067_a_at\"                \"1556235_at\"                 \n",
+       " [5039] \"1556988_s_at\"                \"1556988_s_at\"               \n",
+       " [5041] \"1554481_a_at\"                \"1555870_at\"                 \n",
+       " [5043] \"1553741_at\"                  \"1554614_a_at\"               \n",
+       " [5045] \"1552418_at\"                  \"1552419_s_at\"               \n",
+       " [5047] \"1555515_a_at\"                \"1558173_a_at\"               \n",
+       " [5049] \"1553224_at\"                  \"1558584_at\"                 \n",
+       " [5051] \"1554256_a_at\"                \"1555497_a_at\"               \n",
+       " [5053] \"1554931_at\"                  \"1554837_a_at\"               \n",
+       " [5055] \"1554393_a_at\"                \"1559607_s_at\"               \n",
+       " [5057] \"1559606_at\"                  \"1555370_a_at\"               \n",
+       " [5059] \"1552549_a_at\"                \"1552548_at\"                 \n",
+       " [5061] \"1552641_s_at\"                \"1555933_at\"                 \n",
+       " [5063] \"1553371_at\"                  \"1555831_s_at\"               \n",
+       " [5065] \"1558983_at\"                  \"1557623_at\"                 \n",
+       " [5067] \"1558802_at\"                  \"1558113_at\"                 \n",
+       " [5069] \"1555085_at\"                  \"1555503_a_at\"               \n",
+       " [5071] \"1554980_a_at\"                \"1554420_at\"                 \n",
+       " [5073] \"1552383_at\"                  \"1552384_a_at\"               \n",
+       " [5075] \"1559483_at\"                  \"1555971_s_at\"               \n",
+       " [5077] \"1555972_s_at\"                \"1554600_s_at\"               \n",
+       " [5079] \"1554351_a_at\"                \"1553677_a_at\"               \n",
+       " [5081] \"1553297_a_at\"                \"1562681_at\"                 \n",
+       " [5083] \"1565320_at\"                  \"1565320_at\"                 \n",
+       " [5085] \"1570360_s_at\"                \"1570359_at\"                 \n",
+       " [5087] \"1569787_at\"                  \"1569294_at\"                 \n",
+       " [5089] \"1563420_at\"                  \"1563420_at\"                 \n",
+       " [5091] \"1562313_at\"                  \"1562313_at\"                 \n",
+       " [5093] \"1562313_at\"                  \"1562916_at\"                 \n",
+       " [5095] \"1568838_at\"                  \"1564299_at\"                 \n",
+       " [5097] \"1569297_at\"                  \"1560489_at\"                 \n",
+       " [5099] \"1570241_at\"                  \"1570242_x_at\"               \n",
+       " [5101] \"1569291_at\"                  \"1569293_x_at\"               \n",
+       " [5103] \"1569291_at\"                  \"1569293_x_at\"               \n",
+       " [5105] \"1569291_at\"                  \"1569293_x_at\"               \n",
+       " [5107] \"1569719_at\"                  \"1561361_at\"                 \n",
+       " [5109] \"1562386_s_at\"                \"1564662_at\"                 \n",
+       " [5111] \"1563635_at\"                  \"1560281_a_at\"               \n",
+       " [5113] \"1564224_x_at\"                \"1560320_a_at\"               \n",
+       " [5115] \"1560500_at\"                  \"1569607_s_at\"               \n",
+       " [5117] \"1570255_s_at\"                \"1569608_x_at\"               \n",
+       " [5119] \"1560633_a_at\"                \"1563346_at\"                 \n",
+       " [5121] \"1563107_at\"                  \"1563296_at\"                 \n",
+       " [5123] \"1562634_at\"                  \"1564263_at\"                 \n",
+       " [5125] \"1563069_at\"                  \"1562418_at\"                 \n",
+       " [5127] \"1561290_at\"                  \"1563362_at\"                 \n",
+       " [5129] \"1561029_at\"                  \"1563385_at\"                 \n",
+       " [5131] \"1562236_at\"                  \"1560633_a_at\"               \n",
+       " [5133] \"1562596_at\"                  \"1564561_at\"                 \n",
+       " [5135] \"1568943_at\"                  \"1564056_at\"                 \n",
+       " [5137] \"1562722_at\"                  \"1562722_at\"                 \n",
+       " [5139] \"1562722_at\"                  \"1568807_a_at\"               \n",
+       " [5141] \"1564429_at\"                  \"1562722_at\"                 \n",
+       " [5143] \"1563563_at\"                  \"1561481_at\"                 \n",
+       " [5145] \"1569790_at\"                  \"1564709_at\"                 \n",
+       " [5147] \"1564709_at\"                  \"1566927_at\"                 \n",
+       " [5149] \"1560863_a_at\"                \"1561478_at\"                 \n",
+       " [5151] \"1560609_at\"                  \"1569416_at\"                 \n",
+       " [5153] \"1569334_at\"                  \"1569335_a_at\"               \n",
+       " [5155] \"1561229_at\"                  \"1562292_at\"                 \n",
+       " [5157] \"1563190_at\"                  \"1561083_at\"                 \n",
+       " [5159] \"1562585_at\"                  \"1564552_at\"                 \n",
+       " [5161] \"1560751_at\"                  \"1570350_at\"                 \n",
+       " [5163] \"1563591_at\"                  \"1570350_at\"                 \n",
+       " [5165] \"1563591_at\"                  \"1561474_at\"                 \n",
+       " [5167] \"1563127_at\"                  \"1569794_at\"                 \n",
+       " [5169] \"1564049_at\"                  \"1560548_at\"                 \n",
+       " [5171] \"1562722_at\"                  \"1566656_a_at\"               \n",
+       " [5173] \"1565602_at\"                  \"1561540_at\"                 \n",
+       " [5175] \"1560964_at\"                  \"1563246_at\"                 \n",
+       " [5177] \"1562760_at\"                  \"1560994_x_at\"               \n",
+       " [5179] \"1562696_at\"                  \"1561678_at\"                 \n",
+       " [5181] \"1561978_at\"                  \"1566671_a_at\"               \n",
+       " [5183] \"1562585_at\"                  \"1570316_at\"                 \n",
+       " [5185] \"1563088_a_at\"                \"1560784_x_at\"               \n",
+       " [5187] \"1560782_at\"                  \"1562990_at\"                 \n",
+       " [5189] \"1569983_at\"                  \"1570552_at\"                 \n",
+       " [5191] \"1562821_a_at\"                \"1562653_at\"                 \n",
+       " [5193] \"1563643_at\"                  \"1562829_at\"                 \n",
+       " [5195] \"1560620_at\"                  \"1569859_at\"                 \n",
+       " [5197] \"1561339_at\"                  \"1568249_at\"                 \n",
+       " [5199] \"1564017_at\"                  \"1559748_at\"                 \n",
+       " [5201] \"1566658_at\"                  \"1563062_at\"                 \n",
+       " [5203] \"1560941_a_at\"                \"1560940_at\"                 \n",
+       " [5205] \"1563229_at\"                  \"1569679_at\"                 \n",
+       " [5207] \"1561455_at\"                  \"1563178_at\"                 \n",
+       " [5209] \"1569617_at\"                  \"1564017_at\"                 \n",
+       " [5211] \"1560735_s_at\"                \"1563038_at\"                 \n",
+       " [5213] \"1560790_at\"                  \"1561170_at\"                 \n",
+       " [5215] \"1561171_a_at\"                \"1560735_s_at\"               \n",
+       " [5217] \"1562030_at\"                  \"1566080_at\"                 \n",
+       " [5219] \"1569987_at\"                  \"1566080_at\"                 \n",
+       " [5221] \"1569987_at\"                  \"1562770_at\"                 \n",
+       " [5223] \"1560063_a_at\"                \"1560617_at\"                 \n",
+       " [5225] \"1570316_at\"                  \"1564400_at\"                 \n",
+       " [5227] \"1560676_at\"                  \"1563969_at\"                 \n",
+       " [5229] \"1562173_a_at\"                \"1566665_at\"                 \n",
+       " [5231] \"1561846_s_at\"                \"1565080_at\"                 \n",
+       " [5233] \"1565082_x_at\"                \"1569289_at\"                 \n",
+       " [5235] \"1562815_at\"                  \"1598_g_at\"                  \n",
+       " [5237] \"1570447_at\"                  \"1563224_at\"                 \n",
+       " [5239] \"1562264_at\"                  \"1561431_at\"                 \n",
+       " [5241] \"1569061_at\"                  \"1569062_s_at\"               \n",
+       " [5243] \"1563753_at\"                  \"1562586_at\"                 \n",
+       " [5245] \"1562311_at\"                  \"1569069_s_at\"               \n",
+       " [5247] \"1562821_a_at\"                \"1560832_at\"                 \n",
+       " [5249] \"1562426_a_at\"                \"1562425_at\"                 \n",
+       " [5251] \"1560881_a_at\"                \"1562661_at\"                 \n",
+       " [5253] \"1563274_at\"                  \"1563610_at\"                 \n",
+       " [5255] \"1563371_at\"                  \"1562904_s_at\"               \n",
+       " [5257] \"1563450_at\"                  \"1563450_at\"                 \n",
+       " [5259] \"1563450_at\"                  \"1562924_at\"                 \n",
+       " [5261] \"1563450_at\"                  \"1563450_at\"                 \n",
+       " [5263] \"1563450_at\"                  \"1561165_a_at\"               \n",
+       " [5265] \"1561354_at\"                  \"1570276_a_at\"               \n",
+       " [5267] \"1569912_at\"                  \"1559870_at\"                 \n",
+       " [5269] \"1559871_s_at\"                \"1565424_at\"                 \n",
+       " [5271] \"1563274_at\"                  \"1569246_a_at\"               \n",
+       " [5273] \"1569245_at\"                  \"1570274_at\"                 \n",
+       " [5275] \"1569391_at\"                  \"1569906_s_at\"               \n",
+       " [5277] \"1560988_a_at\"                \"1565859_at\"                 \n",
+       " [5279] \"1566222_at\"                  \"1561626_at\"                 \n",
+       " [5281] \"1566277_at\"                  \"1567251_at\"                 \n",
+       " [5283] \"1564683_at\"                  \"1559992_a_at\"               \n",
+       " [5285] \"1562122_at\"                  \"1562973_at\"                 \n",
+       " [5287] \"1567251_at\"                  \"1566277_at\"                 \n",
+       " [5289] \"1561257_at\"                  \"1570271_at\"                 \n",
+       " [5291] \"1564421_at\"                  \"1561353_at\"                 \n",
+       " [5293] \"1561562_at\"                  \"1561256_at\"                 \n",
+       " [5295] \"1561277_at\"                  \"1561849_at\"                 \n",
+       " [5297] \"1562681_at\"                  \"1561514_at\"                 \n",
+       " [5299] \"1569264_at\"                  \"1569819_at\"                 \n",
+       " [5301] \"1562873_at\"                  \"1569819_at\"                 \n",
+       " [5303] \"1562873_at\"                  \"1568971_at\"                 \n",
+       " [5305] \"1561624_at\"                  \"1562713_a_at\"               \n",
+       " [5307] \"1570208_at\"                  \"1561587_at\"                 \n",
+       " [5309] \"1563265_at\"                  \"1570327_at\"                 \n",
+       " [5311] \"1570328_s_at\"                \"1570327_at\"                 \n",
+       " [5313] \"1570328_s_at\"                \"1570119_at\"                 \n",
+       " [5315] \"1562460_at\"                  \"1570136_at\"                 \n",
+       " [5317] \"1560717_at\"                  \"1560735_s_at\"               \n",
+       " [5319] \"1560734_at\"                  \"1564856_s_at\"               \n",
+       " [5321] \"1561170_at\"                  \"1561171_a_at\"               \n",
+       " [5323] \"1561170_at\"                  \"1561171_a_at\"               \n",
+       " [5325] \"1561170_at\"                  \"1561171_a_at\"               \n",
+       " [5327] \"1562972_at\"                  \"1561237_at\"                 \n",
+       " [5329] \"1564855_at\"                  \"1564855_at\"                 \n",
+       " [5331] \"1564855_at\"                  \"1568695_s_at\"               \n",
+       " [5333] \"1568827_at\"                  \"1569453_a_at\"               \n",
+       " [5335] \"1561355_at\"                  \"1569452_at\"                 \n",
+       " [5337] \"1564855_at\"                  \"1564856_s_at\"               \n",
+       " [5339] \"1569741_at\"                  \"1561170_at\"                 \n",
+       " [5341] \"1561171_a_at\"                \"1565852_at\"                 \n",
+       " [5343] \"1569802_at\"                  \"1569099_at\"                 \n",
+       " [5345] \"1569100_a_at\"                \"1561985_at\"                 \n",
+       " [5347] \"1569629_x_at\"                \"1564232_at\"                 \n",
+       " [5349] \"1562477_at\"                  \"1563825_at\"                 \n",
+       " [5351] \"1564736_a_at\"                \"1564878_at\"                 \n",
+       " [5353] \"1562222_at\"                  \"1570085_at\"                 \n",
+       " [5355] \"1568907_at\"                  \"1563315_s_at\"               \n",
+       " [5357] \"1562247_at\"                  \"1562249_at\"                 \n",
+       " [5359] \"1561090_at\"                  \"1562073_at\"                 \n",
+       " [5361] \"1562251_a_at\"                \"1562655_at\"                 \n",
+       " [5363] \"1563247_at\"                  \"1564027_a_at\"               \n",
+       " [5365] \"1564028_s_at\"                \"1570105_at\"                 \n",
+       " [5367] \"1560618_at\"                  \"1564242_at\"                 \n",
+       " [5369] \"1560510_at\"                  \"1561075_at\"                 \n",
+       " [5371] \"1560897_a_at\"                \"1561099_at\"                 \n",
+       " [5373] \"1562841_at\"                  \"1562841_at\"                 \n",
+       " [5375] \"1570384_at\"                  \"1560595_at\"                 \n",
+       " [5377] \"1562034_at\"                  \"1568849_at\"                 \n",
+       " [5379] \"1562724_at\"                  \"1561699_a_at\"               \n",
+       " [5381] \"1568921_at\"                  \"1561330_at\"                 \n",
+       " [5383] \"1566809_a_at\"                \"1561536_at\"                 \n",
+       " [5385] \"1568663_a_at\"                \"1568662_at\"                 \n",
+       " [5387] \"1569887_a_at\"                \"1561414_at\"                 \n",
+       " [5389] \"1570070_at\"                  \"1564855_at\"                 \n",
+       " [5391] \"1564856_s_at\"                \"1560735_s_at\"               \n",
+       " [5393] \"1560734_at\"                  \"1569590_at\"                 \n",
+       " [5395] \"1570078_a_at\"                \"1562054_at\"                 \n",
+       " [5397] \"1562598_at\"                  \"1560404_a_at\"               \n",
+       " [5399] \"1569065_s_at\"                \"1569064_at\"                 \n",
+       " [5401] \"1561418_at\"                  \"1559813_at\"                 \n",
+       " [5403] \"1563805_a_at\"                \"1562557_at\"                 \n",
+       " [5405] \"1570156_s_at\"                \"1563559_at\"                 \n",
+       " [5407] \"1569750_at\"                  \"1561341_at\"                 \n",
+       " [5409] \"1562590_at\"                  \"1569607_s_at\"               \n",
+       " [5411] \"1561988_at\"                  \"1562960_at\"                 \n",
+       " [5413] \"1560339_s_at\"                \"1563245_at\"                 \n",
+       " [5415] \"1562436_at\"                  \"1560827_at\"                 \n",
+       " [5417] \"1561644_x_at\"                \"1561320_at\"                 \n",
+       " [5419] \"1562263_at\"                  \"1565666_s_at\"               \n",
+       " [5421] \"1560297_at\"                  \"1561442_at\"                 \n",
+       " [5423] \"1569470_a_at\"                \"1569615_at\"                 \n",
+       " [5425] \"1560542_at\"                  \"1562681_at\"                 \n",
+       " [5427] \"1562499_at\"                  \"1564209_at\"                 \n",
+       " [5429] \"1560794_at\"                  \"1560673_at\"                 \n",
+       " [5431] \"1569698_s_at\"                \"1560673_at\"                 \n",
+       " [5433] \"1560472_at\"                  \"1561309_x_at\"               \n",
+       " [5435] \"1561307_at\"                  \"1570120_at\"                 \n",
+       " [5437] \"1562885_at\"                  \"1570111_at\"                 \n",
+       " [5439] \"1562152_at\"                  \"1569828_at\"                 \n",
+       " [5441] \"1565666_s_at\"                \"1559756_at\"                 \n",
+       " [5443] \"1562671_s_at\"                \"1562670_at\"                 \n",
+       " [5445] \"1563524_a_at\"                \"1561352_at\"                 \n",
+       " [5447] \"1564970_at\"                  \"1564972_x_at\"               \n",
+       " [5449] \"1570405_at\"                  \"1560162_at\"                 \n",
+       " [5451] \"1562081_a_at\"                \"1562080_at\"                 \n",
+       " [5453] \"1564338_at\"                  \"1561262_at\"                 \n",
+       " [5455] \"1564974_at\"                  \"1564960_at\"                 \n",
+       " [5457] \"1564803_at\"                  \"1562718_at\"                 \n",
+       " [5459] \"1560337_at\"                  \"1563969_at\"                 \n",
+       " [5461] \"1561170_at\"                  \"1561171_a_at\"               \n",
+       " [5463] \"1561170_at\"                  \"1561171_a_at\"               \n",
+       " [5465] \"1564940_at\"                  \"1566236_at\"                 \n",
+       " [5467] \"1561537_at\"                  \"1562811_at\"                 \n",
+       " [5469] \"1562462_at\"                  \"1565339_at\"                 \n",
+       " [5471] \"1560833_at\"                  \"1569009_s_at\"               \n",
+       " [5473] \"1569008_at\"                  \"1562223_at\"                 \n",
+       " [5475] \"1561322_at\"                  \"1561493_at\"                 \n",
+       " [5477] \"1563392_at\"                  \"1559800_a_at\"               \n",
+       " [5479] \"1561367_a_at\"                \"1569983_at\"                 \n",
+       " [5481] \"1569669_at\"                  \"1563993_at\"                 \n",
+       " [5483] \"1562761_at\"                  \"1569793_at\"                 \n",
+       " [5485] \"1559804_at\"                  \"1569517_at\"                 \n",
+       " [5487] \"1560014_s_at\"                \"1560013_at\"                 \n",
+       " [5489] \"1565929_s_at\"                \"1565928_at\"                 \n",
+       " [5491] \"1570470_at\"                  \"1562396_at\"                 \n",
+       " [5493] \"1560112_at\"                  \"1560977_a_at\"               \n",
+       " [5495] \"1561262_at\"                  \"1560566_at\"                 \n",
+       " [5497] \"1562949_at\"                  \"1564471_at\"                 \n",
+       " [5499] \"1562827_at\"                  \"1568760_at\"                 \n",
+       " [5501] \"1561650_s_at\"                \"1568739_at\"                 \n",
+       " [5503] \"1561319_at\"                  \"1569740_at\"                 \n",
+       " [5505] \"1568817_at\"                  \"1563612_at\"                 \n",
+       " [5507] \"1569858_at\"                  \"1565927_s_at\"               \n",
+       " [5509] \"1565026_a_at\"                \"1564783_x_at\"               \n",
+       " [5511] \"1564590_a_at\"                \"1564805_a_at\"               \n",
+       " [5513] \"1562591_a_at\"                \"1565111_x_at\"               \n",
+       " [5515] \"1565065_at\"                  \"1563327_a_at\"               \n",
+       " [5517] \"1561061_at\"                  \"1560002_at\"                 \n",
+       " [5519] \"1563171_at\"                  \"1560851_at\"                 \n",
+       " [5521] \"1561289_at\"                  \"1561225_at\"                 \n",
+       " [5523] \"1562449_s_at\"                \"1563040_s_at\"               \n",
+       " [5525] \"1563039_at\"                  \"1564244_a_at\"               \n",
+       " [5527] \"1564855_at\"                  \"1564856_s_at\"               \n",
+       " [5529] \"1560735_s_at\"                \"1560734_at\"                 \n",
+       " [5531] \"1560735_s_at\"                \"1569577_x_at\"               \n",
+       " [5533] \"1561287_at\"                  \"1560493_a_at\"               \n",
+       " [5535] \"1560494_a_at\"                \"1569186_at\"                 \n",
+       " [5537] \"1561286_a_at\"                \"1566586_at\"                 \n",
+       " [5539] \"1564471_at\"                  \"1568749_at\"                 \n",
+       " [5541] \"1569857_s_at\"                \"1564882_at\"                 \n",
+       " [5543] \"1569856_at\"                  \"1569153_at\"                 \n",
+       " [5545] \"1561251_at\"                  \"1560298_at\"                 \n",
+       " [5547] \"1564178_at\"                  \"1569611_a_at\"               \n",
+       " [5549] \"1569610_at\"                  \"1569700_s_at\"               \n",
+       " [5551] \"1569699_at\"                  \"1569879_a_at\"               \n",
+       " [5553] \"1561984_at\"                  \"1561728_a_at\"               \n",
+       " [5555] \"1565743_at\"                  \"1562301_at\"                 \n",
+       " [5557] \"1569740_at\"                  \"1560485_at\"                 \n",
+       " [5559] \"1568592_at\"                  \"1569124_at\"                 \n",
+       " [5561] \"1570388_a_at\"                \"1570388_a_at\"               \n",
+       " [5563] \"1563842_at\"                  \"1563114_at\"                 \n",
+       " [5565] \"1563367_at\"                  \"1561244_at\"                 \n",
+       " [5567] \"1561261_at\"                  \"1569644_at\"                 \n",
+       " [5569] \"1562866_at\"                  \"1561506_at\"                 \n",
+       " [5571] \"1560716_at\"                  \"1562223_at\"                 \n",
+       " [5573] \"1561212_at\"                  \"1561558_at\"                 \n",
+       " [5575] \"1562743_at\"                  \"1566887_x_at\"               \n",
+       " [5577] \"1570266_x_at\"                \"1568722_at\"                 \n",
+       " [5579] \"1564144_at\"                  \"1564603_at\"                 \n",
+       " [5581] \"1569183_a_at\"                \"1563367_at\"                 \n",
+       " [5583] \"1569472_s_at\"                \"1569218_at\"                 \n",
+       " [5585] \"1564444_at\"                  \"1568987_at\"                 \n",
+       " [5587] \"1568987_at\"                  \"1569644_at\"                 \n",
+       " [5589] \"1559835_at\"                  \"1570155_at\"                 \n",
+       " [5591] \"1564772_at\"                  \"1561102_at\"                 \n",
+       " [5593] \"1562492_at\"                  \"1561210_at\"                 \n",
+       " [5595] \"1561881_at\"                  \"1565775_at\"                 \n",
+       " [5597] \"1560877_a_at\"                \"1562488_at\"                 \n",
+       " [5599] \"1561423_at\"                  \"1561471_at\"                 \n",
+       " [5601] \"1570424_at\"                  \"1563787_a_at\"               \n",
+       " [5603] \"1564921_at\"                  \"1561221_x_at\"               \n",
+       " [5605] \"1561218_s_at\"                \"1568636_a_at\"               \n",
+       " [5607] \"1568635_at\"                  \"1560842_a_at\"               \n",
+       " [5609] \"1562631_at\"                  \"1560503_a_at\"               \n",
+       " [5611] \"1564386_at\"                  \"1561585_at\"                 \n",
+       " [5613] \"1559822_s_at\"                \"1569141_a_at\"               \n",
+       " [5615] \"1561391_at\"                  \"1570250_at\"                 \n",
+       " [5617] \"1560291_at\"                  \"200000_s_at\"                \n",
+       " [5619] \"1563287_at\"                  \"1569785_at\"                 \n",
+       " [5621] \"1563260_at\"                  \"1562621_at\"                 \n",
+       " [5623] \"1562065_at\"                  \"1560181_at\"                 \n",
+       " [5625] \"1561529_at\"                  \"1568919_at\"                 \n",
+       " [5627] \"1569834_at\"                  \"1560443_at\"                 \n",
+       " [5629] \"1562759_at\"                  \"1560359_at\"                 \n",
+       " [5631] \"1562810_at\"                  \"1561713_at\"                 \n",
+       " [5633] \"1559901_s_at\"                \"1564460_at\"                 \n",
+       " [5635] \"1570476_at\"                  \"1560862_at\"                 \n",
+       " [5637] \"1562750_at\"                  \"1563073_at\"                 \n",
+       " [5639] \"1564383_s_at\"                \"1570270_at\"                 \n",
+       " [5641] \"1569322_at\"                  \"1561688_at\"                 \n",
+       " [5643] \"1564052_at\"                  \"1567559_s_at\"               \n",
+       " [5645] \"1561461_at\"                  \"1562038_at\"                 \n",
+       " [5647] \"1562610_at\"                  \"1568970_at\"                 \n",
+       " [5649] \"1566823_a_at\"                \"1564909_at\"                 \n",
+       " [5651] \"1560996_at\"                  \"1561673_at\"                 \n",
+       " [5653] \"1564109_at\"                  \"1564299_at\"                 \n",
+       " [5655] \"1567014_s_at\"                \"1569782_at\"                 \n",
+       " [5657] \"1562629_a_at\"                \"1562628_at\"                 \n",
+       " [5659] \"1560565_at\"                  \"1559746_a_at\"               \n",
+       " [5661] \"1569479_at\"                  \"1559839_at\"                 \n",
+       " [5663] \"1562066_at\"                  \"1562157_at\"                 \n",
+       " [5665] \"1561608_at\"                  \"1561518_at\"                 \n",
+       " [5667] \"1570415_at\"                  \"1563809_a_at\"               \n",
+       " [5669] \"1563808_at\"                  \"1559755_at\"                 \n",
+       " [5671] \"1564392_at\"                  \"1563174_at\"                 \n",
+       " [5673] \"1559957_a_at\"                \"1569032_at\"                 \n",
+       " [5675] \"1564521_x_at\"                \"1564520_s_at\"               \n",
+       " [5677] \"1569344_a_at\"                \"1563897_at\"                 \n",
+       " [5679] \"1562639_at\"                  \"1564292_at\"                 \n",
+       " [5681] \"1559917_a_at\"                \"1562738_a_at\"               \n",
+       " [5683] \"1562236_at\"                  \"1560119_at\"                 \n",
+       " [5685] \"1561245_at\"                  \"1570515_a_at\"               \n",
+       " [5687] \"1561891_at\"                  \"1564307_a_at\"               \n",
+       " [5689] \"1569732_at\"                  \"1561030_at\"                 \n",
+       " [5691] \"1566678_at\"                  \"1568879_a_at\"               \n",
+       " [5693] \"1563772_a_at\"                \"1560078_at\"                 \n",
+       " [5695] \"1568930_at\"                  \"1563945_at\"                 \n",
+       " [5697] \"1564291_at\"                  \"1564443_at\"                 \n",
+       " [5699] \"1563229_at\"                  \"1561612_at\"                 \n",
+       " [5701] \"1569609_at\"                  \"1566956_at\"                 \n",
+       " [5703] \"1562491_at\"                  \"1563116_at\"                 \n",
+       " [5705] \"1562583_s_at\"                \"1562983_at\"                 \n",
+       " [5707] \"1564491_at\"                  \"1561021_at\"                 \n",
+       " [5709] \"1563272_at\"                  \"1561298_at\"                 \n",
+       " [5711] \"1560836_at\"                  \"1563874_at\"                 \n",
+       " [5713] \"1568660_a_at\"                \"1561303_at\"                 \n",
+       " [5715] \"1570262_at\"                  \"1560872_at\"                 \n",
+       " [5717] \"1560979_a_at\"                \"1561476_at\"                 \n",
+       " [5719] \"1562665_at\"                  \"1565162_s_at\"               \n",
+       " [5721] \"1564905_at\"                  \"1563121_at\"                 \n",
+       " [5723] \"1569607_s_at\"                \"1569716_at\"                 \n",
+       " [5725] \"1561454_at\"                  \"1563324_at\"                 \n",
+       " [5727] \"1569996_at\"                  \"1564621_a_at\"               \n",
+       " [5729] \"1560895_at\"                  \"1569607_s_at\"               \n",
+       " [5731] \"1562023_at\"                  \"1569607_s_at\"               \n",
+       " [5733] \"1566082_at\"                  \"1566324_a_at\"               \n",
+       " [5735] \"1569736_at\"                  \"1569960_at\"                 \n",
+       " [5737] \"1559923_at\"                  \"1570523_s_at\"               \n",
+       " [5739] \"1561527_at\"                  \"1563620_at\"                 \n",
+       " [5741] \"1560316_s_at\"                \"1562671_s_at\"               \n",
+       " [5743] \"1562670_at\"                  \"1563010_at\"                 \n",
+       " [5745] \"1562885_at\"                  \"1561062_a_at\"               \n",
+       " [5747] \"1560161_at\"                  \"1566526_at\"                 \n",
+       " [5749] \"1566363_at\"                  \"1569033_at\"                 \n",
+       " [5751] \"1560874_at\"                  \"1563524_a_at\"               \n",
+       " [5753] \"1563983_at\"                  \"1560797_s_at\"               \n",
+       " [5755] \"1560797_s_at\"                \"1560797_s_at\"               \n",
+       " [5757] \"1560316_s_at\"                \"1564816_at\"                 \n",
+       " [5759] \"1569504_at\"                  \"1569504_at\"                 \n",
+       " [5761] \"1569719_at\"                  \"1568838_at\"                 \n",
+       " [5763] \"1569537_at\"                  \"1569792_a_at\"               \n",
+       " [5765] \"1563474_at\"                  \"1563475_s_at\"               \n",
+       " [5767] \"1561909_at\"                  \"1570153_at\"                 \n",
+       " [5769] \"1569952_x_at\"                \"1564746_at\"                 \n",
+       " [5771] \"1563614_at\"                  \"1562365_at\"                 \n",
+       " [5773] \"1562107_at\"                  \"1562682_at\"                 \n",
+       " [5775] \"1563048_at\"                  \"1569504_at\"                 \n",
+       " [5777] \"1569504_at\"                  \"1562058_at\"                 \n",
+       " [5779] \"1568822_at\"                  \"1560449_at\"                 \n",
+       " [5781] \"1561052_s_at\"                \"1569023_a_at\"               \n",
+       " [5783] \"1569287_at\"                  \"1561278_at\"                 \n",
+       " [5785] \"1563529_at\"                  \"1565265_at\"                 \n",
+       " [5787] \"1567575_at\"                  \"1563658_a_at\"               \n",
+       " [5789] \"1569436_at\"                  \"1563568_at\"                 \n",
+       " [5791] \"1563063_at\"                  \"1564287_at\"                 \n",
+       " [5793] \"1570084_at\"                  \"1561544_at\"                 \n",
+       " [5795] \"1561490_at\"                  \"1562455_at\"                 \n",
+       " [5797] \"1562825_at\"                  \"1562825_at\"                 \n",
+       " [5799] \"1559865_at\"                  \"1566257_at\"                 \n",
+       " [5801] \"1560619_at\"                  \"1561721_a_at\"               \n",
+       " [5803] \"1562495_at\"                  \"1561050_a_at\"               \n",
+       " [5805] \"1559883_s_at\"                \"1565728_at\"                 \n",
+       " [5807] \"1563927_a_at\"                \"1569504_at\"                 \n",
+       " [5809] \"1569504_at\"                  \"1560950_at\"                 \n",
+       " [5811] \"1570484_at\"                  \"1562805_at\"                 \n",
+       " [5813] \"1570291_at\"                  \"1562121_at\"                 \n",
+       " [5815] \"1562822_at\"                  \"1568733_at\"                 \n",
+       " [5817] \"1564251_at\"                  \"1565733_at\"                 \n",
+       " [5819] \"1569961_at\"                  \"1569430_at\"                 \n",
+       " [5821] \"1560727_at\"                  \"1559748_at\"                 \n",
+       " [5823] \"1569830_at\"                  \"1565563_at\"                 \n",
+       " [5825] \"1559839_at\"                  \"1559840_s_at\"               \n",
+       " [5827] \"1566643_a_at\"                \"1570465_at\"                 \n",
+       " [5829] \"1562748_at\"                  \"1561069_at\"                 \n",
+       " [5831] \"1560455_at\"                  \"1562320_at\"                 \n",
+       " [5833] \"1561247_at\"                  \"1569121_at\"                 \n",
+       " [5835] \"1560958_s_at\"                \"1560957_at\"                 \n",
+       " [5837] \"1561473_at\"                  \"1566433_at\"                 \n",
+       " [5839] \"1561877_at\"                  \"1567361_at\"                 \n",
+       " [5841] \"1567576_at\"                  \"1562391_at\"                 \n",
+       " [5843] \"1561714_a_at\"                \"1560089_at\"                 \n",
+       " [5845] \"1559755_at\"                  \"1570315_at\"                 \n",
+       " [5847] \"1562623_at\"                  \"1562016_at\"                 \n",
+       " [5849] \"1563572_at\"                  \"1569365_a_at\"               \n",
+       " [5851] \"1564051_at\"                  \"1566689_at\"                 \n",
+       " [5853] \"1561979_at\"                  \"1562308_at\"                 \n",
+       " [5855] \"1567286_at\"                  \"1566203_at\"                 \n",
+       " [5857] \"1566204_at\"                  \"1560690_at\"                 \n",
+       " [5859] \"1560846_at\"                  \"1560582_a_at\"               \n",
+       " [5861] \"1560581_at\"                  \"1560201_at\"                 \n",
+       " [5863] \"1560646_at\"                  \"1561513_at\"                 \n",
+       " [5865] \"1560524_at\"                  \"1570025_at\"                 \n",
+       " [5867] \"1570546_a_at\"                \"1565628_at\"                 \n",
+       " [5869] \"1562078_at\"                  \"1569911_at\"                 \n",
+       " [5871] \"1559925_s_at\"                \"1559924_at\"                 \n",
+       " [5873] \"1562976_at\"                  \"1562032_at\"                 \n",
+       " [5875] \"1563900_at\"                  \"1562319_at\"                 \n",
+       " [5877] \"1562927_at\"                  \"1561252_at\"                 \n",
+       " [5879] \"1568706_s_at\"                \"1562581_at\"                 \n",
+       " [5881] \"1570048_at\"                  \"1559785_at\"                 \n",
+       " [5883] \"1561619_at\"                  \"1562934_at\"                 \n",
+       " [5885] \"1562563_at\"                  \"1564836_at\"                 \n",
+       " [5887] \"1562211_a_at\"                \"1568904_at\"                 \n",
+       " [5889] \"1561702_at\"                  \"1562771_at\"                 \n",
+       " [5891] \"1562100_at\"                  \"1562351_at\"                 \n",
+       " [5893] \"1560879_a_at\"                \"1560878_at\"                 \n",
+       " [5895] \"1560850_at\"                  \"1562378_s_at\"               \n",
+       " [5897] \"1564122_at\"                  \"1563089_at\"                 \n",
+       " [5899] \"1564149_at\"                  \"1563043_at\"                 \n",
+       " [5901] \"1568618_a_at\"                \"1562691_at\"                 \n",
+       " [5903] \"1564022_at\"                  \"1561233_at\"                 \n",
+       " [5905] \"1560035_at\"                  \"1562549_at\"                 \n",
+       " [5907] \"1565080_at\"                  \"1565082_x_at\"               \n",
+       " [5909] \"1560482_at\"                  \"1562844_at\"                 \n",
+       " [5911] \"1562068_at\"                  \"1563188_at\"                 \n",
+       " [5913] \"1570441_at\"                  \"1566472_s_at\"               \n",
+       " [5915] \"1562720_at\"                  \"1561253_at\"                 \n",
+       " [5917] \"1569683_at\"                  \"1561140_at\"                 \n",
+       " [5919] \"1561704_at\"                  \"1563117_at\"                 \n",
+       " [5921] \"1564203_at\"                  \"1569652_at\"                 \n",
+       " [5923] \"1561306_s_at\"                \"1560443_at\"                 \n",
+       " [5925] \"1568763_s_at\"                \"1562512_at\"                 \n",
+       " [5927] \"1561785_at\"                  \"1568723_at\"                 \n",
+       " [5929] \"1564344_at\"                  \"1561327_at\"                 \n",
+       " [5931] \"1561785_at\"                  \"1560536_at\"                 \n",
+       " [5933] \"1561405_s_at\"                \"1559956_at\"                 \n",
+       " [5935] \"1563204_at\"                  \"1563396_x_at\"               \n",
+       " [5937] \"1569251_a_at\"                \"1569250_at\"                 \n",
+       " [5939] \"1563783_a_at\"                \"1563884_at\"                 \n",
+       " [5941] \"1562915_at\"                  \"1561951_at\"                 \n",
+       " [5943] \"1569272_at\"                  \"1570336_at\"                 \n",
+       " [5945] \"1563112_at\"                  \"1562942_at\"                 \n",
+       " [5947] \"1559975_at\"                  \"1569849_at\"                 \n",
+       " [5949] \"1561785_at\"                  \"1565152_at\"                 \n",
+       " [5951] \"1569029_at\"                  \"1560100_at\"                 \n",
+       " [5953] \"1560757_at\"                  \"1564749_at\"                 \n",
+       " [5955] \"1561085_at\"                  \"1560662_s_at\"               \n",
+       " [5957] \"1570644_at\"                  \"1564149_at\"                 \n",
+       " [5959] \"1562336_at\"                  \"1564371_a_at\"               \n",
+       " [5961] \"1564372_s_at\"                \"1561785_at\"                 \n",
+       " [5963] \"1570163_at\"                  \"1568605_at\"                 \n",
+       " [5965] \"1560011_at\"                  \"1565806_at\"                 \n",
+       " [5967] \"1560772_a_at\"                \"1560771_at\"                 \n",
+       " [5969] \"1561113_at\"                  \"1569554_at\"                 \n",
+       " [5971] \"1561288_at\"                  \"1560198_at\"                 \n",
+       " [5973] \"1560959_a_at\"                \"1569331_at\"                 \n",
+       " [5975] \"1570372_at\"                  \"1562234_a_at\"               \n",
+       " [5977] \"1561439_at\"                  \"1570222_at\"                 \n",
+       " [5979] \"1568780_at\"                  \"1561578_s_at\"               \n",
+       " [5981] \"1561660_at\"                  \"1569656_at\"                 \n",
+       " [5983] \"1561375_at\"                  \"1563389_at\"                 \n",
+       " [5985] \"1562317_at\"                  \"1562934_at\"                 \n",
+       " [5987] \"1563656_at\"                  \"1559837_at\"                 \n",
+       " [5989] \"1569555_at\"                  \"1559807_at\"                 \n",
+       " [5991] \"1561327_at\"                  \"1563165_at\"                 \n",
+       " [5993] \"1563078_at\"                  \"1562223_at\"                 \n",
+       " [5995] \"1559807_at\"                  \"1565073_at\"                 \n",
+       " [5997] \"1568763_s_at\"                \"1569796_s_at\"               \n",
+       " [5999] \"1561785_at\"                  \"1568781_at\"                 \n",
+       " [6001] \"1564591_a_at\"                \"1561785_at\"                 \n",
+       " [6003] \"1560371_at\"                  \"1565771_at\"                 \n",
+       " [6005] \"1569302_at\"                  \"1561405_s_at\"               \n",
+       " [6007] \"1561155_at\"                  \"1568704_a_at\"               \n",
+       " [6009] \"1568898_at\"                  \"1561239_at\"                 \n",
+       " [6011] \"1570452_at\"                  \"1568685_at\"                 \n",
+       " [6013] \"1567656_at\"                  \"1562381_at\"                 \n",
+       " [6015] \"1565830_at\"                  \"1562253_at\"                 \n",
+       " [6017] \"1561704_at\"                  \"1561704_at\"                 \n",
+       " [6019] \"1563221_at\"                  \"1568903_at\"                 \n",
+       " [6021] \"1562847_at\"                  \"1566303_s_at\"               \n",
+       " [6023] \"1564431_a_at\"                \"1560488_at\"                 \n",
+       " [6025] \"1564431_a_at\"                \"1566303_s_at\"               \n",
+       " [6027] \"1561593_at\"                  \"1565715_at\"                 \n",
+       " [6029] \"1564802_at\"                  \"1564940_at\"                 \n",
+       " [6031] \"1562630_at\"                  \"1569323_at\"                 \n",
+       " [6033] \"1569495_at\"                  \"1569190_at\"                 \n",
+       " [6035] \"1566301_at\"                  \"1562745_at\"                 \n",
+       " [6037] \"1569779_at\"                  \"1560714_at\"                 \n",
+       " [6039] \"1569926_s_at\"                \"1565242_at\"                 \n",
+       " [6041] \"1562778_at\"                  \"1568894_at\"                 \n",
+       " [6043] \"1561328_at\"                  \"1570600_at\"                 \n",
+       " [6045] \"1563302_at\"                  \"1563250_at\"                 \n",
+       " [6047] \"1569025_s_at\"                \"1569024_at\"                 \n",
+       " [6049] \"1559807_at\"                  \"1570422_at\"                 \n",
+       " [6051] \"1570567_at\"                  \"1560446_at\"                 \n",
+       " [6053] \"1565748_at\"                  \"1565242_at\"                 \n",
+       " [6055] \"1561676_at\"                  \"1560413_at\"                 \n",
+       " [6057] \"1569277_at\"                  \"1567657_at\"                 \n",
+       " [6059] \"1570026_at\"                  \"1560692_at\"                 \n",
+       " [6061] \"1565242_at\"                  \"1567656_at\"                 \n",
+       " [6063] \"1570127_at\"                  \"1567657_at\"                 \n",
+       " [6065] \"1565358_at\"                  \"1570152_at\"                 \n",
+       " [6067] \"1569433_at\"                  \"1566301_at\"                 \n",
+       " [6069] \"1569779_at\"                  \"1569351_at\"                 \n",
+       " [6071] \"1560767_at\"                  \"1562381_at\"                 \n",
+       " [6073] \"1562844_at\"                  \"1569811_at\"                 \n",
+       " [6075] \"1566301_at\"                  \"1566689_at\"                 \n",
+       " [6077] \"1560767_at\"                  \"1560767_at\"                 \n",
+       " [6079] \"1560767_at\"                  \"1560767_at\"                 \n",
+       " [6081] \"1560767_at\"                  \"1562365_at\"                 \n",
+       " [6083] \"1561098_at\"                  \"1568604_a_at\"               \n",
+       " [6085] \"1568603_at\"                  \"1566301_at\"                 \n",
+       " [6087] \"1562950_at\"                  \"1570255_s_at\"               \n",
+       " [6089] \"1568796_at\"                  \"1560957_at\"                 \n",
+       " [6091] \"1566303_s_at\"                \"1570271_at\"                 \n",
+       " [6093] \"1562860_at\"                  \"1561371_at\"                 \n",
+       " [6095] \"1562862_at\"                  \"1566303_s_at\"               \n",
+       " [6097] \"1570237_at\"                  \"1569755_at\"                 \n",
+       " [6099] \"1569297_at\"                  \"1567656_at\"                 \n",
+       " [6101] \"1567657_at\"                  \"1564264_at\"                 \n",
+       " [6103] \"1569305_a_at\"                \"1568964_x_at\"               \n",
+       " [6105] \"1561165_a_at\"                \"1570185_at\"                 \n",
+       " [6107] \"1563450_at\"                  \"1563450_at\"                 \n",
+       " [6109] \"1563450_at\"                  \"1564490_at\"                 \n",
+       " [6111] \"1561605_at\"                  \"1569789_at\"                 \n",
+       " [6113] \"1563489_at\"                  \"1565242_at\"                 \n",
+       " [6115] \"1562664_at\"                  \"1561652_at\"                 \n",
+       " [6117] \"1563671_at\"                  \"1562751_at\"                 \n",
+       " [6119] \"1566735_at\"                  \"1562381_at\"                 \n",
+       " [6121] \"1561383_at\"                  \"1561384_a_at\"               \n",
+       " [6123] \"1569262_x_at\"                \"1567657_at\"                 \n",
+       " [6125] \"1567656_at\"                  \"1569466_at\"                 \n",
+       " [6127] \"1568970_at\"                  \"1561719_at\"                 \n",
+       " [6129] \"1563072_at\"                  \"1565618_at\"                 \n",
+       " [6131] \"1563478_at\"                  \"1561417_x_at\"               \n",
+       " [6133] \"1561415_at\"                  \"1569659_at\"                 \n",
+       " [6135] \"1562944_at\"                  \"1562944_at\"                 \n",
+       " [6137] \"1560861_at\"                  \"1561598_at\"                 \n",
+       " [6139] \"1560570_a_at\"                \"1562684_at\"                 \n",
+       " [6141] \"1561795_at\"                  \"1566340_at\"                 \n",
+       " [6143] \"1569631_at\"                  \"1559948_at\"                 \n",
+       " [6145] \"1567030_at\"                  \"1569631_at\"                 \n",
+       " [6147] \"1560856_at\"                  \"1569492_at\"                 \n",
+       " [6149] \"1564421_at\"                  \"1559986_at\"                 \n",
+       " [6151] \"1561525_at\"                  \"1562801_at\"                 \n",
+       " [6153] \"1568734_a_at\"                \"1568986_x_at\"               \n",
+       " [6155] \"1570425_s_at\"                \"1570231_at\"                 \n",
+       " [6157] \"1570250_at\"                  \"1563854_s_at\"               \n",
+       " [6159] \"1563853_at\"                  \"1570121_at\"                 \n",
+       " [6161] \"1569648_at\"                  \"1564787_at\"                 \n",
+       " [6163] \"1570099_at\"                  \"1566340_at\"                 \n",
+       " [6165] \"1568870_at\"                  \"1568922_at\"                 \n",
+       " [6167] \"1566303_s_at\"                \"1567657_at\"                 \n",
+       " [6169] \"1566301_at\"                  \"1561257_at\"                 \n",
+       " [6171] \"1566507_a_at\"                \"1562294_x_at\"               \n",
+       " [6173] \"1562292_at\"                  \"1559864_at\"                 \n",
+       " [6175] \"1568827_at\"                  \"1569532_a_at\"               \n",
+       " [6177] \"1565347_s_at\"                \"1565242_at\"                 \n",
+       " [6179] \"1566861_at\"                  \"1567656_at\"                 \n",
+       " [6181] \"1565242_at\"                  \"1560735_s_at\"               \n",
+       " [6183] \"1560734_at\"                  \"1562488_at\"                 \n",
+       " [6185] \"1563584_at\"                  \"1563318_s_at\"               \n",
+       " [6187] \"1565562_at\"                  \"1563816_at\"                 \n",
+       " [6189] \"1564053_a_at\"                \"1566860_at\"                 \n",
+       " [6191] \"1562073_at\"                  \"1560715_at\"                 \n",
+       " [6193] \"1568779_a_at\"                \"1561228_at\"                 \n",
+       " [6195] \"1570040_at\"                  \"1562739_at\"                 \n",
+       " [6197] \"1560260_at\"                  \"1562910_at\"                 \n",
+       " [6199] \"1562923_at\"                  \"1570202_a_at\"               \n",
+       " [6201] \"1560648_s_at\"                \"1560823_at\"                 \n",
+       " [6203] \"1569712_at\"                  \"1569362_at\"                 \n",
+       " [6205] \"1561351_at\"                  \"1562442_a_at\"               \n",
+       " [6207] \"1566301_at\"                  \"1570471_at\"                 \n",
+       " [6209] \"1559833_at\"                  \"1560767_at\"                 \n",
+       " [6211] \"1560767_at\"                  \"1561488_at\"                 \n",
+       " [6213] \"1562997_a_at\"                \"1569779_at\"                 \n",
+       " [6215] \"1569544_at\"                  \"1567657_at\"                 \n",
+       " [6217] \"1564421_at\"                  \"1566303_s_at\"               \n",
+       " [6219] \"1570135_at\"                  \"1568696_at\"                 \n",
+       " [6221] \"1567656_at\"                  \"1561039_a_at\"               \n",
+       " [6223] \"1561038_at\"                  \"1568828_at\"                 \n",
+       " [6225] \"1569434_at\"                  \"1565717_s_at\"               \n",
+       " [6227] \"1562869_at\"                  \"1563103_at\"                 \n",
+       " [6229] \"1562826_at\"                  \"1561436_at\"                 \n",
+       " [6231] \"1569297_at\"                  \"1561346_at\"                 \n",
+       " [6233] \"1561347_a_at\"                \"1569763_at\"                 \n",
+       " [6235] \"1569971_at\"                  \"1564083_at\"                 \n",
+       " [6237] \"1562381_at\"                  \"1567657_at\"                 \n",
+       " [6239] \"1560071_a_at\"                \"1560074_at\"                 \n",
+       " [6241] \"1563839_at\"                  \"1563839_at\"                 \n",
+       " [6243] \"1562381_at\"                  \"1567656_at\"                 \n",
+       " [6245] \"1569048_s_at\"                \"1569784_at\"                 \n",
+       " [6247] \"1561565_at\"                  \"1568814_at\"                 \n",
+       " [6249] \"1563484_at\"                  \"1560767_at\"                 \n",
+       " [6251] \"1560767_at\"                  \"1560257_at\"                 \n",
+       " [6253] \"1561566_at\"                  \"1562589_at\"                 \n",
+       " [6255] \"1566303_s_at\"                \"1561204_at\"                 \n",
+       " [6257] \"1564097_at\"                  \"1570212_a_at\"               \n",
+       " [6259] \"1570008_at\"                  \"1560767_at\"                 \n",
+       " [6261] \"1560767_at\"                  \"1563471_at\"                 \n",
+       " [6263] \"1563708_at\"                  \"1569481_s_at\"               \n",
+       " [6265] \"1569805_at\"                  \"1569536_at\"                 \n",
+       " [6267] \"1570292_at\"                  \"1563070_at\"                 \n",
+       " [6269] \"1561451_a_at\"                \"1564078_at\"                 \n",
+       " [6271] \"1564401_at\"                  \"1563802_at\"                 \n",
+       " [6273] \"1563019_at\"                  \"1569767_at\"                 \n",
+       " [6275] \"1568699_at\"                  \"1561562_at\"                 \n",
+       " [6277] \"1561301_at\"                  \"1562381_at\"                 \n",
+       " [6279] \"1560841_at\"                  \"1560963_a_at\"               \n",
+       " [6281] \"1560652_at\"                  \"1562568_at\"                 \n",
+       " [6283] \"1569894_at\"                  \"1570064_at\"                 \n",
+       " [6285] \"1560410_at\"                  \"1564559_at\"                 \n",
+       " [6287] \"1562011_at\"                  \"1563770_at\"                 \n",
+       " [6289] \"1568787_at\"                  \"1563013_at\"                 \n",
+       " [6291] \"1568999_at\"                  \"1563828_at\"                 \n",
+       " [6293] \"1564601_at\"                  \"1570507_at\"                 \n",
+       " [6295] \"1564414_a_at\"                \"1561770_at\"                 \n",
+       " [6297] \"1563185_at\"                  \"1562732_at\"                 \n",
+       " [6299] \"1568698_at\"                  \"1560220_a_at\"               \n",
+       " [6301] \"1564658_at\"                  \"1562269_at\"                 \n",
+       " [6303] \"1569300_at\"                  \"1569300_at\"                 \n",
+       " [6305] \"1560599_a_at\"                \"1563919_a_at\"               \n",
+       " [6307] \"1562762_at\"                  \"1570273_at\"                 \n",
+       " [6309] \"1561311_at\"                  \"1563427_at\"                 \n",
+       " [6311] \"1560903_at\"                  \"1569332_at\"                 \n",
+       " [6313] \"1567912_s_at\"                \"1567912_s_at\"               \n",
+       " [6315] \"1559792_at\"                  \"1567912_s_at\"               \n",
+       " [6317] \"1567912_s_at\"                \"1564352_at\"                 \n",
+       " [6319] \"1567687_at\"                  \"1567912_s_at\"               \n",
+       " [6321] \"1562944_at\"                  \"1562944_at\"                 \n",
+       " [6323] \"1561550_at\"                  \"1569213_at\"                 \n",
+       " [6325] \"1562509_at\"                  \"1561207_at\"                 \n",
+       " [6327] \"1560707_at\"                  \"1563162_at\"                 \n",
+       " [6329] \"1568784_at\"                  \"1568785_a_at\"               \n",
+       " [6331] \"1568785_a_at\"                \"1564190_x_at\"               \n",
+       " [6333] \"1568873_at\"                  \"1568877_a_at\"               \n",
+       " [6335] \"1561491_at\"                  \"1569465_at\"                 \n",
+       " [6337] \"1560657_at\"                  \"1560240_at\"                 \n",
+       " [6339] \"1569881_at\"                  \"1570230_at\"                 \n",
+       " [6341] \"1569416_at\"                  \"1569597_at\"                 \n",
+       " [6343] \"1564229_at\"                  \"1566987_s_at\"               \n",
+       " [6345] \"1564807_at\"                  \"1561252_at\"                 \n",
+       " [6347] \"1560250_s_at\"                \"1569761_x_at\"               \n",
+       " [6349] \"1569760_at\"                  \"1563341_at\"                 \n",
+       " [6351] \"1562948_at\"                  \"1562997_a_at\"               \n",
+       " [6353] \"1566236_at\"                  \"1568633_a_at\"               \n",
+       " [6355] \"1570279_at\"                  \"1560587_s_at\"               \n",
+       " [6357] \"1569745_at\"                  \"1569746_s_at\"               \n",
+       " [6359] \"1569290_s_at\"                \"1570013_at\"                 \n",
+       " [6361] \"1569086_at\"                  \"1561723_at\"                 \n",
+       " [6363] \"1561323_at\"                  \"1561223_at\"                 \n",
+       " [6365] \"1561305_at\"                  \"1570293_at\"                 \n",
+       " [6367] \"1563898_at\"                  \"1562737_at\"                 \n",
+       " [6369] \"1560180_at\"                  \"1560282_at\"                 \n",
+       " [6371] \"1561340_at\"                  \"1565562_at\"                 \n",
+       " [6373] \"1560017_at\"                  \"160020_at\"                  \n",
+       " [6375] \"1562638_at\"                  \"1561348_at\"                 \n",
+       " [6377] \"1561700_at\"                  \"1570298_at\"                 \n",
+       " [6379] \"1564881_at\"                  \"1564881_at\"                 \n",
+       " [6381] \"1570182_at\"                  \"1568623_a_at\"               \n",
+       " [6383] \"1560384_a_at\"                \"1560383_at\"                 \n",
+       " [6385] \"1561314_at\"                  \"1564807_at\"                 \n",
+       " [6387] \"1561060_at\"                  \"1564383_s_at\"               \n",
+       " [6389] \"1560913_at\"                  \"1560426_at\"                 \n",
+       " [6391] \"1561590_a_at\"                \"1563319_at\"                 \n",
+       " [6393] \"1564595_at\"                  \"1561559_at\"                 \n",
+       " [6395] \"1569677_a_at\"                \"1568609_s_at\"               \n",
+       " [6397] \"1560604_at\"                  \"1563577_at\"                 \n",
+       " [6399] \"1563426_a_at\"                \"1563321_s_at\"               \n",
+       " [6401] \"1560432_at\"                  \"1561254_at\"                 \n",
+       " [6403] \"1559993_at\"                  \"1562847_at\"                 \n",
+       " [6405] \"1568592_at\"                  \"1561165_a_at\"               \n",
+       " [6407] \"1563431_x_at\"                \"1564823_at\"                 \n",
+       " [6409] \"1569044_at\"                  \"1565337_at\"                 \n",
+       " [6411] \"1561616_a_at\"                \"1561617_at\"                 \n",
+       " [6413] \"1565338_x_at\"                \"1566967_at\"                 \n",
+       " [6415] \"1566967_at\"                  \"1562428_at\"                 \n",
+       " [6417] \"1562981_at\"                  \"1562981_at\"                 \n",
+       " [6419] \"1562981_at\"                  \"1569958_at\"                 \n",
+       " [6421] \"1569473_s_at\"                \"1563003_at\"                 \n",
+       " [6423] \"1569832_at\"                  \"1562442_a_at\"               \n",
+       " [6425] \"1564439_a_at\"                \"1560686_at\"                 \n",
+       " [6427] \"1570046_at\"                  \"1564362_x_at\"               \n",
+       " [6429] \"1569607_s_at\"                \"1560982_at\"                 \n",
+       " [6431] \"1569607_s_at\"                \"1567214_a_at\"               \n",
+       " [6433] \"1560725_at\"                  \"1560019_at\"                 \n",
+       " [6435] \"1560522_at\"                  \"1560773_at\"                 \n",
+       " [6437] \"1561448_at\"                  \"1563867_at\"                 \n",
+       " [6439] \"1569727_at\"                  \"1561420_a_at\"               \n",
+       " [6441] \"1561419_at\"                  \"1565699_at\"                 \n",
+       " [6443] \"1569900_at\"                  \"1560354_at\"                 \n",
+       " [6445] \"1567255_at\"                  \"1562349_at\"                 \n",
+       " [6447] \"1561141_at\"                  \"1560954_at\"                 \n",
+       " [6449] \"1560954_at\"                  \"1563223_a_at\"               \n",
+       " [6451] \"1560023_x_at\"                \"1560021_at\"                 \n",
+       " [6453] \"1562470_at\"                  \"1560884_at\"                 \n",
+       " [6455] \"1560885_x_at\"                \"1569500_at\"                 \n",
+       " [6457] \"1561459_at\"                  \"1564907_s_at\"               \n",
+       " [6459] \"1564906_at\"                  \"1564911_at\"                 \n",
+       " [6461] \"1565325_at\"                  \"1561213_at\"                 \n",
+       " [6463] \"1567682_x_at\"                \"1564907_s_at\"               \n",
+       " [6465] \"1567681_at\"                  \"1564906_at\"                 \n",
+       " [6467] \"1561492_at\"                  \"1562988_at\"                 \n",
+       " [6469] \"1570030_at\"                  \"1570140_at\"                 \n",
+       " [6471] \"1563742_at\"                  \"1561369_at\"                 \n",
+       " [6473] \"1560713_a_at\"                \"1563108_at\"                 \n",
+       " [6475] \"1561486_at\"                  \"1562099_at\"                 \n",
+       " [6477] \"1560300_a_at\"                \"1562916_at\"                 \n",
+       " [6479] \"1560065_at\"                  \"1561389_at\"                 \n",
+       " [6481] \"1564402_at\"                  \"1562908_at\"                 \n",
+       " [6483] \"1564466_at\"                  \"1568377_x_at\"               \n",
+       " [6485] \"1562612_at\"                  \"1566701_at\"                 \n",
+       " [6487] \"1564158_a_at\"                \"1569276_at\"                 \n",
+       " [6489] \"1563420_at\"                  \"1569490_at\"                 \n",
+       " [6491] \"1563638_at\"                  \"1559902_at\"                 \n",
+       " [6493] \"1567912_s_at\"                \"1561579_at\"                 \n",
+       " [6495] \"1560920_s_at\"                \"1561536_at\"                 \n",
+       " [6497] \"1569127_at\"                  \"1560300_a_at\"               \n",
+       " [6499] \"1565525_a_at\"                \"1565527_x_at\"               \n",
+       " [6501] \"1569206_at\"                  \"1569207_s_at\"               \n",
+       " [6503] \"1565000_a_at\"                \"1563796_s_at\"               \n",
+       " [6505] \"1559753_at\"                  \"1561369_at\"                 \n",
+       " [6507] \"1569670_at\"                  \"1569791_at\"                 \n",
+       " [6509] \"1568858_at\"                  \"1568869_at\"                 \n",
+       " [6511] \"1564816_at\"                  \"1563316_at\"                 \n",
+       " [6513] \"1566647_s_at\"                \"1569042_at\"                 \n",
+       " [6515] \"1569426_at\"                  \"1570065_at\"                 \n",
+       " [6517] \"1570235_at\"                  \"1564446_at\"                 \n",
+       " [6519] \"1563009_at\"                  \"1570219_at\"                 \n",
+       " [6521] \"1561573_at\"                  \"1561557_at\"                 \n",
+       " [6523] \"1561064_a_at\"                \"1562352_at\"                 \n",
+       " [6525] \"1562353_x_at\"                \"1559936_at\"                 \n",
+       " [6527] \"1560550_at\"                  \"1559920_a_at\"               \n",
+       " [6529] \"1564379_at\"                  \"1563637_at\"                 \n",
+       " [6531] \"1569136_at\"                  \"1561243_at\"                 \n",
+       " [6533] \"1569140_at\"                  \"1560029_a_at\"               \n",
+       " [6535] \"1560028_at\"                  \"1562940_at\"                 \n",
+       " [6537] \"1569316_at\"                  \"1570587_at\"                 \n",
+       " [6539] \"1566884_at\"                  \"1568974_at\"                 \n",
+       " [6541] \"1566766_a_at\"                \"1561294_a_at\"               \n",
+       " [6543] \"1568828_at\"                  \"1563243_at\"                 \n",
+       " [6545] \"1565666_s_at\"                \"1565868_at\"                 \n",
+       " [6547] \"1570042_a_at\"                \"1564072_at\"                 \n",
+       " [6549] \"1563300_at\"                  \"1568598_at\"                 \n",
+       " [6551] \"1773_at\"                     \"1560145_at\"                 \n",
+       " [6553] \"1569341_at\"                  \"1569607_s_at\"               \n",
+       " [6555] \"1569608_x_at\"                \"1569525_s_at\"               \n",
+       " [6557] \"1569525_s_at\"                \"1562637_at\"                 \n",
+       " [6559] \"1569348_at\"                  \"1560784_x_at\"               \n",
+       " [6561] \"1560782_at\"                  \"1561886_a_at\"               \n",
+       " [6563] \"1773_at\"                     \"1773_at\"                    \n",
+       " [6565] \"1568780_at\"                  \"1562616_at\"                 \n",
+       " [6567] \"1564323_at\"                  \"1561105_at\"                 \n",
+       " [6569] \"1562961_at\"                  \"1563181_a_at\"               \n",
+       " [6571] \"1562051_at\"                  \"1568742_at\"                 \n",
+       " [6573] \"1565772_at\"                  \"1570376_at\"                 \n",
+       " [6575] \"1563068_at\"                  \"1563528_at\"                 \n",
+       " [6577] \"1562478_at\"                  \"1561274_at\"                 \n",
+       " [6579] \"1565859_at\"                  \"1568711_a_at\"               \n",
+       " [6581] \"1569882_at\"                  \"1568848_at\"                 \n",
+       " [6583] \"1566528_at\"                  \"1569403_at\"                 \n",
+       " [6585] \"1569557_at\"                  \"1569001_at\"                 \n",
+       " [6587] \"1569002_x_at\"                \"1569765_at\"                 \n",
+       " [6589] \"1570224_at\"                  \"1570167_at\"                 \n",
+       " [6591] \"1570225_at\"                  \"1566482_at\"                 \n",
+       " [6593] \"1569052_at\"                  \"1570058_at\"                 \n",
+       " [6595] \"179_at\"                      \"179_at\"                     \n",
+       " [6597] \"1564319_at\"                  \"1567036_at\"                 \n",
+       " [6599] \"1564319_at\"                  \"1563143_at\"                 \n",
+       " [6601] \"1562783_at\"                  \"1570653_at\"                 \n",
+       " [6603] \"1564626_at\"                  \"1563344_at\"                 \n",
+       " [6605] \"1569614_s_at\"                \"1560038_at\"                 \n",
+       " [6607] \"1564463_at\"                  \"1561813_at\"                 \n",
+       " [6609] \"1562742_at\"                  \"1559806_at\"                 \n",
+       " [6611] \"1560511_at\"                  \"1563209_a_at\"               \n",
+       " [6613] \"1561677_at\"                  \"1569259_at\"                 \n",
+       " [6615] \"1562943_at\"                  \"1563014_at\"                 \n",
+       " [6617] \"1569029_at\"                  \"1562215_at\"                 \n",
+       " [6619] \"1568780_at\"                  \"1561927_at\"                 \n",
+       " [6621] \"1561928_s_at\"                \"1562562_at\"                 \n",
+       " [6623] \"1562239_at\"                  \"1562215_at\"                 \n",
+       " [6625] \"1561487_at\"                  \"1569372_at\"                 \n",
+       " [6627] \"1562167_a_at\"                \"1560176_s_at\"               \n",
+       " [6629] \"1561019_at\"                  \"1561403_at\"                 \n",
+       " [6631] \"1560176_s_at\"                \"1560175_at\"                 \n",
+       " [6633] \"1562056_at\"                  \"1563608_a_at\"               \n",
+       " [6635] \"1569462_x_at\"                \"1569461_at\"                 \n",
+       " [6637] \"1561402_at\"                  \"1562960_at\"                 \n",
+       " [6639] \"1561528_at\"                  \"1570357_at\"                 \n",
+       " [6641] \"1562765_at\"                  \"1565585_at\"                 \n",
+       " [6643] \"1565583_at\"                  \"1563725_at\"                 \n",
+       " [6645] \"1562606_a_at\"                \"1560750_at\"                 \n",
+       " [6647] \"1565546_at\"                  \"1568612_at\"                 \n",
+       " [6649] \"1560020_at\"                  \"1564627_at\"                 \n",
+       " [6651] \"1562979_at\"                  \"1564962_at\"                 \n",
+       " [6653] \"1564963_x_at\"                \"1561035_at\"                 \n",
+       " [6655] \"1568625_at\"                  \"1569852_at\"                 \n",
+       " [6657] \"1563244_at\"                  \"1563086_at\"                 \n",
+       " [6659] \"1563135_at\"                  \"1563064_at\"                 \n",
+       " [6661] \"1564819_at\"                  \"1560397_s_at\"               \n",
+       " [6663] \"1560396_at\"                  \"1568915_at\"                 \n",
+       " [6665] \"1560318_at\"                  \"1560318_at\"                 \n",
+       " [6667] \"1562082_at\"                  \"1561091_at\"                 \n",
+       " [6669] \"1560834_a_at\"                \"1562633_at\"                 \n",
+       " [6671] \"1560748_at\"                  \"1564537_a_at\"               \n",
+       " [6673] \"1564536_at\"                  \"1566509_s_at\"               \n",
+       " [6675] \"1566507_a_at\"                \"1570238_at\"                 \n",
+       " [6677] \"1569366_a_at\"                \"1569833_at\"                 \n",
+       " [6679] \"1560091_a_at\"                \"1562309_s_at\"               \n",
+       " [6681] \"1560100_at\"                  \"1560533_at\"                 \n",
+       " [6683] \"1569709_at\"                  \"1567257_at\"                 \n",
+       " [6685] \"1567284_at\"                  \"1567065_at\"                 \n",
+       " [6687] \"1570354_s_at\"                \"1560922_s_at\"               \n",
+       " [6689] \"1560921_at\"                  \"1569443_s_at\"               \n",
+       " [6691] \"1561554_at\"                  \"1560752_at\"                 \n",
+       " [6693] \"1563646_a_at\"                \"1569377_at\"                 \n",
+       " [6695] \"1569411_at\"                  \"1569835_at\"                 \n",
+       " [6697] \"1564139_at\"                  \"1568892_at\"                 \n",
+       " [6699] \"1560030_at\"                  \"1570032_at\"                 \n",
+       " [6701] \"1564539_at\"                  \"1570111_at\"                 \n",
+       " [6703] \"1561279_at\"                  \"1561110_at\"                 \n",
+       " [6705] \"1569685_at\"                  \"1562719_at\"                 \n",
+       " [6707] \"1565843_s_at\"                \"1564701_at\"                 \n",
+       " [6709] \"1562928_at\"                  \"1568629_s_at\"               \n",
+       " [6711] \"1569121_at\"                  \"1568629_s_at\"               \n",
+       " [6713] \"1561577_at\"                  \"1570534_a_at\"               \n",
+       " [6715] \"1559988_at\"                  \"1561964_at\"                 \n",
+       " [6717] \"1563849_at\"                  \"1562693_at\"                 \n",
+       " [6719] \"1560879_a_at\"                \"1560878_at\"                 \n",
+       " [6721] \"1561360_at\"                  \"1561215_at\"                 \n",
+       " [6723] \"1564790_at\"                  \"1562694_at\"                 \n",
+       " [6725] \"1562832_at\"                  \"1563208_s_at\"               \n",
+       " [6727] \"1563207_at\"                  \"1562029_at\"                 \n",
+       " [6729] \"1561460_at\"                  \"1564308_a_at\"               \n",
+       " [6731] \"1570269_at\"                  \"1568916_at\"                 \n",
+       " [6733] \"1569723_a_at\"                \"1561708_at\"                 \n",
+       " [6735] \"1561472_at\"                  \"1567273_at\"                 \n",
+       " [6737] \"1570336_at\"                  \"1569009_s_at\"               \n",
+       " [6739] \"1569008_at\"                  \"1562463_at\"                 \n",
+       " [6741] \"1563878_a_at\"                \"1569368_at\"                 \n",
+       " [6743] \"1565912_at\"                  \"1565911_at\"                 \n",
+       " [6745] \"1560163_at\"                  \"1562764_at\"                 \n",
+       " [6747] \"1565653_at\"                  \"1561400_at\"                 \n",
+       " [6749] \"1562484_at\"                  \"1564075_a_at\"               \n",
+       " [6751] \"1564075_a_at\"                \"1566480_x_at\"               \n",
+       " [6753] \"1569380_a_at\"                \"1569753_at\"                 \n",
+       " [6755] \"1563310_a_at\"                \"1562052_at\"                 \n",
+       " [6757] \"1569380_a_at\"                \"1569380_a_at\"               \n",
+       " [6759] \"1559870_at\"                  \"1559871_s_at\"               \n",
+       " [6761] \"1562167_a_at\"                \"1561531_at\"                 \n",
+       " [6763] \"1569616_at\"                  \"1569492_at\"                 \n",
+       " [6765] \"1569846_at\"                  \"1564010_at\"                 \n",
+       " [6767] \"1569194_at\"                  \"1561408_at\"                 \n",
+       " [6769] \"1561560_at\"                  \"1570267_at\"                 \n",
+       " [6771] \"1568899_at\"                  \"1564841_at\"                 \n",
+       " [6773] \"1568600_at\"                  \"1567080_s_at\"               \n",
+       " [6775] \"1567080_s_at\"                \"1729_at\"                    \n",
+       " [6777] \"1563014_at\"                  \"1568951_at\"                 \n",
+       " [6779] \"1564160_at\"                  \"1564632_at\"                 \n",
+       " [6781] \"1562232_at\"                  \"1562288_at\"                 \n",
+       " [6783] \"1569780_at\"                  \"1569431_at\"                 \n",
+       " [6785] \"1569681_at\"                  \"1569074_at\"                 \n",
+       " [6787] \"1570423_at\"                  \"1568872_at\"                 \n",
+       " [6789] \"1562562_at\"                  \"1562049_at\"                 \n",
+       " [6791] \"1560002_at\"                  \"1566303_s_at\"               \n",
+       " [6793] \"1564399_a_at\"                \"1567023_at\"                 \n",
+       " [6795] \"1564403_at\"                  \"1561497_at\"                 \n",
+       " [6797] \"1569410_at\"                  \"1568955_at\"                 \n",
+       " [6799] \"1568957_x_at\"                \"1565242_at\"                 \n",
+       " [6801] \"1570383_at\"                  \"1562861_at\"                 \n",
+       " [6803] \"1562436_at\"                  \"1565795_at\"                 \n",
+       " [6805] \"1565834_a_at\"                \"1565833_at\"                 \n",
+       " [6807] \"1564334_at\"                  \"1562740_at\"                 \n",
+       " [6809] \"1568639_a_at\"                \"1570276_a_at\"               \n",
+       " [6811] \"1561516_at\"                  \"1564334_at\"                 \n",
+       " [6813] \"1564254_at\"                  \"1569991_at\"                 \n",
+       " [6815] \"1568615_a_at\"                \"1560622_at\"                 \n",
+       " [6817] \"1570395_a_at\"                \"1562480_at\"                 \n",
+       " [6819] \"1560116_a_at\"                \"1561545_at\"                 \n",
+       " [6821] \"1568844_at\"                  \"1565580_s_at\"               \n",
+       " [6823] \"1563513_at\"                  \"1563532_at\"                 \n",
+       " [6825] \"1564117_at\"                  \"1562220_at\"                 \n",
+       " [6827] \"1560207_at\"                  \"1569518_at\"                 \n",
+       " [6829] \"1560496_at\"                  \"1563042_at\"                 \n",
+       " [6831] \"1568719_s_at\"                \"1568718_at\"                 \n",
+       " [6833] \"1562036_at\"                  \"1564709_at\"                 \n",
+       " [6835] \"1567912_s_at\"                \"1563445_x_at\"               \n",
+       " [6837] \"1563868_a_at\"                \"1563361_at\"                 \n",
+       " [6839] \"1562026_at\"                  \"1569385_s_at\"               \n",
+       " [6841] \"1561165_a_at\"                \"1568932_at\"                 \n",
+       " [6843] \"1561413_at\"                  \"1563997_at\"                 \n",
+       " [6845] \"1562558_at\"                  \"1564193_at\"                 \n",
+       " [6847] \"1561508_at\"                  \"1560964_at\"                 \n",
+       " [6849] \"1564691_at\"                  \"1569315_s_at\"               \n",
+       " [6851] \"1562839_at\"                  \"1560224_at\"                 \n",
+       " [6853] \"1563022_at\"                  \"1560507_at\"                 \n",
+       " [6855] \"1561868_at\"                  \"1565537_at\"                 \n",
+       " [6857] \"1560665_at\"                  \"1568843_at\"                 \n",
+       " [6859] \"1568843_at\"                  \"1562214_at\"                 \n",
+       " [6861] \"1569126_at\"                  \"1562330_s_at\"               \n",
+       " [6863] \"1562329_at\"                  \"1561224_at\"                 \n",
+       " [6865] \"1563219_at\"                  \"1566721_at\"                 \n",
+       " [6867] \"1569818_at\"                  \"1569781_at\"                 \n",
+       " [6869] \"1559909_a_at\"                \"1561394_s_at\"               \n",
+       " [6871] \"1564423_a_at\"                \"1570061_at\"                 \n",
+       " [6873] \"1561104_at\"                  \"1564674_a_at\"               \n",
+       " [6875] \"1566740_at\"                  \"1561523_at\"                 \n",
+       " [6877] \"1561741_at\"                  \"1560187_at\"                 \n",
+       " [6879] \"1570253_a_at\"                \"1560631_at\"                 \n",
+       " [6881] \"1565668_at\"                  \"1564872_at\"                 \n",
+       " [6883] \"1568667_s_at\"                \"1568666_at\"                 \n",
+       " [6885] \"1560457_x_at\"                \"1560456_at\"                 \n",
+       " [6887] \"1568666_at\"                  \"1561485_at\"                 \n",
+       " [6889] \"1560469_at\"                  \"1570297_at\"                 \n",
+       " [6891] \"1562818_at\"                  \"1560281_a_at\"               \n",
+       " [6893] \"1564684_at\"                  \"1562982_at\"                 \n",
+       " [6895] \"1563404_at\"                  \"1560523_at\"                 \n",
+       " [6897] \"1568600_at\"                  \"1562786_at\"                 \n",
+       " [6899] \"1568884_at\"                  \"1567245_at\"                 \n",
+       " [6901] \"1569392_at\"                  \"1569453_a_at\"               \n",
+       " [6903] \"1561355_at\"                  \"1569452_at\"                 \n",
+       " [6905] \"1560821_at\"                  \"1564504_at\"                 \n",
+       " [6907] \"1565150_at\"                  \"1562689_at\"                 \n",
+       " [6909] \"1562074_a_at\"                \"1569969_a_at\"               \n",
+       " [6911] \"1564200_at\"                  \"1561618_at\"                 \n",
+       " [6913] \"1568611_at\"                  \"1570505_at\"                 \n",
+       " [6915] \"1568943_at\"                  \"1562514_at\"                 \n",
+       " [6917] \"1564257_at\"                  \"1566504_at\"                 \n",
+       " [6919] \"1560543_at\"                  \"1568617_a_at\"               \n",
+       " [6921] \"1560255_at\"                  \"1566277_at\"                 \n",
+       " [6923] \"1569189_at\"                  \"1568617_a_at\"               \n",
+       " [6925] \"1562201_x_at\"                \"1569090_x_at\"               \n",
+       " [6927] \"1569089_a_at\"                \"1564208_x_at\"               \n",
+       " [6929] \"1564207_at\"                  \"1569311_at\"                 \n",
+       " [6931] \"1566152_a_at\"                \"1566151_at\"                 \n",
+       " [6933] \"1560755_at\"                  \"1563340_at\"                 \n",
+       " [6935] \"1560184_at\"                  \"1561526_at\"                 \n",
+       " [6937] \"1561242_at\"                  \"1568820_a_at\"               \n",
+       " [6939] \"1570301_at\"                  \"1568702_a_at\"               \n",
+       " [6941] \"1568717_a_at\"                \"1559980_at\"                 \n",
+       " [6943] \"1562348_at\"                  \"1568760_at\"                 \n",
+       " [6945] \"1563005_at\"                  \"1569779_at\"                 \n",
+       " [6947] \"1568730_at\"                  \"1560838_at\"                 \n",
+       " [6949] \"1568897_at\"                  \"1564148_at\"                 \n",
+       " [6951] \"1564337_at\"                  \"1563132_at\"                 \n",
+       " [6953] \"1563179_at\"                  \"1560412_at\"                 \n",
+       " [6955] \"1569111_at\"                  \"1569634_at\"                 \n",
+       " [6957] \"1563821_at\"                  \"1570106_at\"                 \n",
+       " [6959] \"1561556_at\"                  \"1569995_at\"                 \n",
+       " [6961] \"1565406_a_at\"                \"1565407_at\"                 \n",
+       " [6963] \"1562736_at\"                  \"1560253_at\"                 \n",
+       " [6965] \"1563681_at\"                  \"1561685_a_at\"               \n",
+       " [6967] \"1563894_at\"                  \"1569054_at\"                 \n",
+       " [6969] \"1566624_at\"                  \"1569428_at\"                 \n",
+       " [6971] \"1567656_at\"                  \"1561411_at\"                 \n",
+       " [6973] \"1560879_a_at\"                \"1560878_at\"                 \n",
+       " [6975] \"1568924_a_at\"                \"1562930_at\"                 \n",
+       " [6977] \"1569879_a_at\"                \"1560334_at\"                 \n",
+       " [6979] \"1562802_at\"                  \"1562891_at\"                 \n",
+       " [6981] \"1568887_at\"                  \"1560373_a_at\"               \n",
+       " [6983] \"1560372_at\"                  \"1562834_at\"                 \n",
+       " [6985] \"1564777_at\"                  \"1567912_s_at\"               \n",
+       " [6987] \"1567912_s_at\"                \"1569193_at\"                 \n",
+       " [6989] \"1563632_at\"                  \"1562387_at\"                 \n",
+       " [6991] \"1561127_at\"                  \"1565347_s_at\"               \n",
+       " [6993] \"1569738_at\"                  \"1564276_at\"                 \n",
+       " [6995] \"1561445_at\"                  \"1566798_at\"                 \n",
+       " [6997] \"1559867_at\"                  \"1563235_at\"                 \n",
+       " [6999] \"1566908_at\"                  \"1861_at\"                    \n",
+       " [7001] \"1560153_at\"                  \"1562681_at\"                 \n",
+       " [7003] \"1569807_at\"                  \"1564573_at\"                 \n",
+       " [7005] \"1564573_at\"                  \"1564285_at\"                 \n",
+       " [7007] \"1570362_at\"                  \"1563814_at\"                 \n",
+       " [7009] \"1565346_a_at\"                \"1564241_at\"                 \n",
+       " [7011] \"1568779_a_at\"                \"1560844_at\"                 \n",
+       " [7013] \"1561893_at\"                  \"1560177_at\"                 \n",
+       " [7015] \"1566513_a_at\"                \"1562447_a_at\"               \n",
+       " [7017] \"1569963_at\"                  \"1568743_at\"                 \n",
+       " [7019] \"1560115_a_at\"                \"1562966_at\"                 \n",
+       " [7021] \"1564050_at\"                  \"1562044_at\"                 \n",
+       " [7023] \"1568638_a_at\"                \"1569448_at\"                 \n",
+       " [7025] \"1563168_at\"                  \"1560265_at\"                 \n",
+       " [7027] \"1563754_at\"                  \"1560142_at\"                 \n",
+       " [7029] \"1560136_at\"                  \"1560264_at\"                 \n",
+       " [7031] \"1561893_at\"                  \"1562645_at\"                 \n",
+       " [7033] \"1562597_at\"                  \"1569342_at\"                 \n",
+       " [7035] \"1562893_at\"                  \"1561042_at\"                 \n",
+       " [7037] \"1569842_at\"                  \"1560692_at\"                 \n",
+       " [7039] \"1569503_at\"                  \"1562865_at\"                 \n",
+       " [7041] \"1564381_s_at\"                \"1561739_at\"                 \n",
+       " [7043] \"1560790_at\"                  \"1566301_at\"                 \n",
+       " [7045] \"1567657_at\"                  \"1570039_at\"                 \n",
+       " [7047] \"1570039_at\"                  \"1563318_s_at\"               \n",
+       " [7049] \"1561170_at\"                  \"1561171_a_at\"               \n",
+       " [7051] \"1561170_at\"                  \"1561171_a_at\"               \n",
+       " [7053] \"1561170_at\"                  \"1561171_a_at\"               \n",
+       " [7055] \"1561170_at\"                  \"1561171_a_at\"               \n",
+       " [7057] \"1569203_at\"                  \"1566935_at\"                 \n",
+       " [7059] \"1560399_a_at\"                \"1567058_at\"                 \n",
+       " [7061] \"1562462_at\"                  \"1565339_at\"                 \n",
+       " [7063] \"1563512_at\"                  \"1569393_at\"                 \n",
+       " [7065] \"1560286_s_at\"                \"1560285_at\"                 \n",
+       " [7067] \"1560791_at\"                  \"1564060_at\"                 \n",
+       " [7069] \"1570398_at\"                  \"1566126_at\"                 \n",
+       " [7071] \"1569464_at\"                  \"1562641_at\"                 \n",
+       " [7073] \"1563059_at\"                  \"1564281_at\"                 \n",
+       " [7075] \"1564282_a_at\"                \"1566737_at\"                 \n",
+       " [7077] \"1568941_a_at\"                \"1563092_at\"                 \n",
+       " [7079] \"1562367_at\"                  \"1570391_at\"                 \n",
+       " [7081] \"1563899_at\"                  \"1560513_at\"                 \n",
+       " [7083] \"1563074_at\"                  \"1566605_at\"                 \n",
+       " [7085] \"1566606_a_at\"                \"1562259_at\"                 \n",
+       " [7087] \"1568619_s_at\"                \"1563840_at\"                 \n",
+       " [7089] \"1563933_a_at\"                \"1569998_at\"                 \n",
+       " [7091] \"1570393_at\"                  \"1568777_at\"                 \n",
+       " [7093] \"1564295_at\"                  \"1559929_at\"                 \n",
+       " [7095] \"1563696_at\"                  \"1562880_at\"                 \n",
+       " [7097] \"1569487_at\"                  \"1569602_at\"                 \n",
+       " [7099] \"1569422_at\"                  \"1563606_a_at\"               \n",
+       " [7101] \"1569607_s_at\"                \"1570255_s_at\"               \n",
+       " [7103] \"1570206_at\"                  \"1564002_a_at\"               \n",
+       " [7105] \"1565016_at\"                  \"1560520_at\"                 \n",
+       " [7107] \"1560520_at\"                  \"1568650_a_at\"               \n",
+       " [7109] \"1568649_at\"                  \"1559884_at\"                 \n",
+       " [7111] \"1564272_a_at\"                \"1561499_at\"                 \n",
+       " [7113] \"1569594_a_at\"                \"1569864_at\"                 \n",
+       " [7115] \"1569270_at\"                  \"1570503_at\"                 \n",
+       " [7117] \"1562573_at\"                  \"1564274_at\"                 \n",
+       " [7119] \"1561386_at\"                  \"1561054_a_at\"               \n",
+       " [7121] \"1566448_at\"                  \"1560213_at\"                 \n",
+       " [7123] \"1560833_at\"                  \"1560833_at\"                 \n",
+       " [7125] \"1560135_at\"                  \"1569607_s_at\"               \n",
+       " [7127] \"1564637_a_at\"                \"1563397_at\"                 \n",
+       " [7129] \"1564314_at\"                  \"1560063_a_at\"               \n",
+       " [7131] \"1560912_at\"                  \"1570480_s_at\"               \n",
+       " [7133] \"1562540_at\"                  \"1564031_a_at\"               \n",
+       " [7135] \"1569724_at\"                  \"1570411_at\"                 \n",
+       " [7137] \"1560348_at\"                  \"1562697_at\"                 \n",
+       " [7139] \"1562698_x_at\"                \"1563709_at\"                 \n",
+       " [7141] \"1561517_at\"                  \"1563254_a_at\"               \n",
+       " [7143] \"1563255_at\"                  \"1559828_at\"                 \n",
+       " [7145] \"1562935_at\"                  \"1569234_at\"                 \n",
+       " [7147] \"1569235_a_at\"                \"1561692_at\"                 \n",
+       " [7149] \"1566571_at\"                  \"1561897_at\"                 \n",
+       " [7151] \"1568843_at\"                  \"1569256_a_at\"               \n",
+       " [7153] \"1568908_at\"                  \"1562497_at\"                 \n",
+       " [7155] \"1564131_a_at\"                \"1562901_at\"                 \n",
+       " [7157] \"1560066_at\"                  \"1570234_at\"                 \n",
+       " [7159] \"1560814_a_at\"                \"1562598_at\"                 \n",
+       " [7161] \"1564318_at\"                  \"1569205_at\"                 \n",
+       " [7163] \"1560033_at\"                  \"1564525_at\"                 \n",
+       " [7165] \"1569030_s_at\"                \"1560081_at\"                 \n",
+       " [7167] \"1564212_at\"                  \"1562727_at\"                 \n",
+       " [7169] \"1564473_at\"                  \"1561170_at\"                 \n",
+       " [7171] \"1561171_a_at\"                \"1561170_at\"                 \n",
+       " [7173] \"1561171_a_at\"                \"1561249_a_at\"               \n",
+       " [7175] \"1562383_at\"                  \"1560636_a_at\"               \n",
+       " [7177] \"1560499_at\"                  \"1564211_at\"                 \n",
+       " [7179] \"1562932_at\"                  \"1561407_at\"                 \n",
+       " [7181] \"1570251_at\"                  \"1564713_a_at\"               \n",
+       " [7183] \"1562695_at\"                  \"1570347_at\"                 \n",
+       " [7185] \"1568594_s_at\"                \"1568763_s_at\"               \n",
+       " [7187] \"1568954_s_at\"                \"1562632_at\"                 \n",
+       " [7189] \"1559877_at\"                  \"1564027_a_at\"               \n",
+       " [7191] \"1562116_at\"                  \"1561571_at\"                 \n",
+       " [7193] \"1562587_at\"                  \"1570239_a_at\"               \n",
+       " [7195] \"1561889_at\"                  \"1569852_at\"                 \n",
+       " [7197] \"1569421_at\"                  \"1569783_at\"                 \n",
+       " [7199] \"1560735_s_at\"                \"1560734_at\"                 \n",
+       " [7201] \"1570307_s_at\"                \"1560735_s_at\"               \n",
+       " [7203] \"1562848_at\"                  \"1569212_at\"                 \n",
+       " [7205] \"1569873_at\"                  \"1569874_s_at\"               \n",
+       " [7207] \"1569571_at\"                  \"1563297_s_at\"               \n",
+       " [7209] \"1561424_at\"                  \"1560942_at\"                 \n",
+       " [7211] \"1562501_at\"                  \"1560942_at\"                 \n",
+       " [7213] \"1560943_s_at\"                \"1560025_at\"                 \n",
+       " [7215] \"1563827_at\"                  \"1562733_at\"                 \n",
+       " [7217] \"1562733_at\"                  \"1570469_at\"                 \n",
+       " [7219] \"1561398_at\"                  \"1570469_at\"                 \n",
+       " [7221] \"1561398_at\"                  \"1560432_at\"                 \n",
+       " [7223] \"1569182_at\"                  \"1568836_at\"                 \n",
+       " [7225] \"1563370_at\"                  \"1563370_at\"                 \n",
+       " [7227] \"1564697_a_at\"                \"1569673_at\"                 \n",
+       " [7229] \"1562895_at\"                  \"1566084_at\"                 \n",
+       " [7231] \"1561429_a_at\"                \"1561430_s_at\"               \n",
+       " [7233] \"1560425_s_at\"                \"1562831_a_at\"               \n",
+       " [7235] \"1563916_at\"                  \"1560916_a_at\"               \n",
+       " [7237] \"1563745_a_at\"                \"1561078_at\"                 \n",
+       " [7239] \"1561429_a_at\"                \"1561430_s_at\"               \n",
+       " [7241] \"1560025_at\"                  \"1561679_at\"                 \n",
+       " [7243] \"1564339_a_at\"                \"1568780_at\"                 \n",
+       " [7245] \"1559765_a_at\"                \"1562688_at\"                 \n",
+       " [7247] \"1561776_at\"                  \"1565918_a_at\"               \n",
+       " [7249] \"1563450_at\"                  \"1563450_at\"                 \n",
+       " [7251] \"1563450_at\"                  \"1568780_at\"                 \n",
+       " [7253] \"1568780_at\"                  \"1563450_at\"                 \n",
+       " [7255] \"1563450_at\"                  \"1563450_at\"                 \n",
+       " [7257] \"1569954_at\"                  \"1561165_a_at\"               \n",
+       " [7259] \"1561004_at\"                  \"1562299_at\"                 \n",
+       " [7261] \"1569953_at\"                  \"1562413_at\"                 \n",
+       " [7263] \"1569607_s_at\"                \"1569139_s_at\"               \n",
+       " [7265] \"1562901_at\"                  \"1562338_at\"                 \n",
+       " [7267] \"1565454_at\"                  \"1561468_at\"                 \n",
+       " [7269] \"1564168_a_at\"                \"1562389_at\"                 \n",
+       " [7271] \"1565588_at\"                  \"1560848_at\"                 \n",
+       " [7273] \"1563079_at\"                  \"1562524_at\"                 \n",
+       " [7275] \"1563271_at\"                  \"1568983_a_at\"               \n",
+       " [7277] \"1569868_s_at\"                \"1569867_at\"                 \n",
+       " [7279] \"1569961_at\"                  \"1561211_at\"                 \n",
+       " [7281] \"1568871_at\"                  \"1564494_s_at\"               \n",
+       " [7283] \"1561894_at\"                  \"1561409_at\"                 \n",
+       " [7285] \"1560059_at\"                  \"1560060_s_at\"               \n",
+       " [7287] \"1560537_at\"                  \"1569847_at\"                 \n",
+       " [7289] \"1570133_at\"                  \"1564887_at\"                 \n",
+       " [7291] \"1560224_at\"                  \"1569642_at\"                 \n",
+       " [7293] \"1564670_at\"                  \"1570207_at\"                 \n",
+       " [7295] \"1566171_at\"                  \"1562603_at\"                 \n",
+       " [7297] \"1566449_at\"                  \"1569831_at\"                 \n",
+       " [7299] \"1562603_at\"                  \"1559966_a_at\"               \n",
+       " [7301] \"1559965_at\"                  \"1560826_at\"                 \n",
+       " [7303] \"1569339_s_at\"                \"1569338_at\"                 \n",
+       " [7305] \"1570351_at\"                  \"1561850_at\"                 \n",
+       " [7307] \"1562153_a_at\"                \"1570052_at\"                 \n",
+       " [7309] \"1569494_at\"                  \"1570125_at\"                 \n",
+       " [7311] \"1562920_at\"                  \"1565784_at\"                 \n",
+       " [7313] \"1567628_at\"                  \"1559881_s_at\"               \n",
+       " [7315] \"1562644_at\"                  \"1569583_at\"                 \n",
+       " [7317] \"1561705_at\"                  \"1560491_at\"                 \n",
+       " [7319] \"1562501_at\"                  \"1562640_at\"                 \n",
+       " [7321] \"1564069_at\"                  \"1564070_s_at\"               \n",
+       " [7323] \"1564069_at\"                  \"1564070_s_at\"               \n",
+       " [7325] \"1564069_at\"                  \"1564070_s_at\"               \n",
+       " [7327] \"1559790_at\"                  \"1562701_at\"                 \n",
+       " [7329] \"1563792_at\"                  \"1569383_s_at\"               \n",
+       " [7331] \"1569369_at\"                  \"1560448_at\"                 \n",
+       " [7333] \"1560275_at\"                  \"1569172_a_at\"               \n",
+       " [7335] \"1569775_at\"                  \"1559970_at\"                 \n",
+       " [7337] \"1569072_s_at\"                \"1570268_at\"                 \n",
+       " [7339] \"1566039_a_at\"                \"1560330_at\"                 \n",
+       " [7341] \"1569418_at\"                  \"1563670_at\"                 \n",
+       " [7343] \"1562209_at\"                  \"1562965_at\"                 \n",
+       " [7345] \"1562906_at\"                  \"1562659_at\"                 \n",
+       " [7347] \"1562324_a_at\"                \"1562323_at\"                 \n",
+       " [7349] \"1569730_at\"                  \"1562446_at\"                 \n",
+       " [7351] \"1560419_at\"                  \"1569823_at\"                 \n",
+       " [7353] \"1564367_at\"                  \"1569188_s_at\"               \n",
+       " [7355] \"1569871_at\"                  \"1569872_a_at\"               \n",
+       " [7357] \"1563373_at\"                  \"1559926_at\"                 \n",
+       " [7359] \"1559927_a_at\"                \"1569274_at\"                 \n",
+       " [7361] \"1564785_at\"                  \"1569274_at\"                 \n",
+       " [7363] \"1564785_at\"                  \"1570394_at\"                 \n",
+       " [7365] \"1568878_at\"                  \"1562896_at\"                 \n",
+       " [7367] \"1560684_x_at\"                \"1560683_at\"                 \n",
+       " [7369] \"1561048_at\"                  \"1563007_at\"                 \n",
+       " [7371] \"1560171_at\"                  \"1561667_at\"                 \n",
+       " [7373] \"1564027_a_at\"                \"1564028_s_at\"               \n",
+       " [7375] \"1561960_at\"                  \"1561306_s_at\"               \n",
+       " [7377] \"1562703_at\"                  \"1560662_s_at\"               \n",
+       " [7379] \"1563641_a_at\"                \"1561179_s_at\"               \n",
+       " [7381] \"1562261_at\"                  \"1564152_at\"                 \n",
+       " [7383] \"1563571_at\"                  \"1569637_at\"                 \n",
+       " [7385] \"1563862_at\"                  \"1563863_x_at\"               \n",
+       " [7387] \"1561405_s_at\"                \"1562777_at\"                 \n",
+       " [7389] \"1561450_at\"                  \"1561333_at\"                 \n",
+       " [7391] \"1566734_at\"                  \"1560723_at\"                 \n",
+       " [7393] \"1560980_a_at\"                \"1569334_at\"                 \n",
+       " [7395] \"1569335_a_at\"                \"1567224_at\"                 \n",
+       " [7397] \"1561633_at\"                  \"1568287_at\"                 \n",
+       " [7399] \"1565837_at\"                  \"1569878_at\"                 \n",
+       " [7401] \"1561401_at\"                  \"1561482_at\"                 \n",
+       " [7403] \"1569932_at\"                  \"1564721_at\"                 \n",
+       " [7405] \"1569674_at\"                  \"1560222_at\"                 \n",
+       " [7407] \"1560870_a_at\"                \"1565905_at\"                 \n",
+       " [7409] \"1566558_x_at\"                \"1566557_at\"                 \n",
+       " [7411] \"1562403_a_at\"                \"1568859_a_at\"               \n",
+       " [7413] \"1562772_a_at\"                \"1560911_at\"                 \n",
+       " [7415] \"1570445_a_at\"                \"1570444_at\"                 \n",
+       " [7417] \"1570445_a_at\"                \"1570444_at\"                 \n",
+       " [7419] \"1562022_s_at\"                \"1569525_s_at\"               \n",
+       " [7421] \"1569525_s_at\"                \"1560788_at\"                 \n",
+       " [7423] \"1562396_at\"                  \"1570470_at\"                 \n",
+       " [7425] \"1568821_at\"                  \"1570366_x_at\"               \n",
+       " [7427] \"1570364_at\"                  \"1562710_at\"                 \n",
+       " [7429] \"1566039_a_at\"                \"1560662_s_at\"               \n",
+       " [7431] \"1569058_at\"                  \"1560563_at\"                 \n",
+       " [7433] \"1560317_s_at\"                \"1561960_at\"                 \n",
+       " [7435] \"1569816_at\"                  \"1560662_s_at\"               \n",
+       " [7437] \"1568713_a_at\"                \"1569566_at\"                 \n",
+       " [7439] \"1566040_at\"                  \"1564683_at\"                 \n",
+       " [7441] \"1564277_a_at\"                \"1568686_at\"                 \n",
+       " [7443] \"1568687_s_at\"                \"1568686_at\"                 \n",
+       " [7445] \"1568687_s_at\"                \"1564277_a_at\"               \n",
+       " [7447] \"1564277_a_at\"                \"1569839_s_at\"               \n",
+       " [7449] \"1569839_s_at\"                \"1562803_at\"                 \n",
+       " [7451] \"1564277_a_at\"                \"1569607_s_at\"               \n",
+       " [7453] \"1569607_s_at\"                \"1569607_s_at\"               \n",
+       " [7455] \"1570255_s_at\"                \"1569607_s_at\"               \n",
+       " [7457] \"1569607_s_at\"                \"1570255_s_at\"               \n",
+       " [7459] \"1569607_s_at\"                \"1561749_at\"                 \n",
+       " [7461] \"1569607_s_at\"                \"1564277_a_at\"               \n",
+       " [7463] \"1568634_a_at\"                \"1560854_s_at\"               \n",
+       " [7465] \"1563728_at\"                  \"1563728_at\"                 \n",
+       " [7467] \"1569144_a_at\"                \"1570188_at\"                 \n",
+       " [7469] \"1561316_at\"                  \"1569689_s_at\"               \n",
+       " [7471] \"1564012_at\"                  \"1568682_a_at\"               \n",
+       " [7473] \"1562069_at\"                  \"1563845_at\"                 \n",
+       " [7475] \"1570114_at\"                  \"1570402_at\"                 \n",
+       " [7477] \"1564679_at\"                  \"1570226_at\"                 \n",
+       " [7479] \"1561731_at\"                  \"1559996_s_at\"               \n",
+       " [7481] \"1560433_at\"                  \"1560434_x_at\"               \n",
+       " [7483] \"1562729_at\"                  \"1562730_a_at\"               \n",
+       " [7485] \"1561967_at\"                  \"1562337_at\"                 \n",
+       " [7487] \"1561336_at\"                  \"1564642_at\"                 \n",
+       " [7489] \"1570528_at\"                  \"1569371_at\"                 \n",
+       " [7491] \"1560034_a_at\"                \"1561990_at\"                 \n",
+       " [7493] \"1560901_at\"                  \"1569607_s_at\"               \n",
+       " [7495] \"1570255_s_at\"                \"1562823_at\"                 \n",
+       " [7497] \"1561084_at\"                  \"1561084_at\"                 \n",
+       " [7499] \"1561232_at\"                  \"1562303_at\"                 \n",
+       " [7501] \"1562305_x_at\"                \"1559776_at\"                 \n",
+       " [7503] \"1561122_a_at\"                \"1569098_s_at\"               \n",
+       " [7505] \"1569097_at\"                  \"1569773_at\"                 \n",
+       " [7507] \"1562657_a_at\"                \"1564198_a_at\"               \n",
+       " [7509] \"1560590_s_at\"                \"1569303_s_at\"               \n",
+       " [7511] \"1561306_s_at\"                \"1561405_s_at\"               \n",
+       " [7513] \"1570089_at\"                  \"1560637_at\"                 \n",
+       " [7515] \"1560638_a_at\"                \"1560637_at\"                 \n",
+       " [7517] \"1568939_at\"                  \"1567251_at\"                 \n",
+       " [7519] \"1562274_at\"                  \"1564000_at\"                 \n",
+       " [7521] \"1562857_at\"                  \"1561003_at\"                 \n",
+       " [7523] \"1569353_at\"                  \"1565906_at\"                 \n",
+       " [7525] \"1568802_at\"                  \"1562683_a_at\"               \n",
+       " [7527] \"1562372_at\"                  \"1561584_at\"                 \n",
+       " [7529] \"1560630_at\"                  \"1563581_at\"                 \n",
+       " [7531] \"1563452_at\"                  \"1566917_at\"                 \n",
+       " [7533] \"1560068_a_at\"                \"1570414_x_at\"               \n",
+       " [7535] \"1563462_at\"                  \"1561096_at\"                 \n",
+       " [7537] \"1565583_at\"                  \"1570415_at\"                 \n",
+       " [7539] \"1564474_at\"                  \"1564475_s_at\"               \n",
+       " [7541] \"1570204_at\"                  \"1569330_at\"                 \n",
+       " [7543] \"1560891_a_at\"                \"1560890_at\"                 \n",
+       " [7545] \"1564475_s_at\"                \"1562785_at\"                 \n",
+       " [7547] \"1561230_at\"                  \"1570057_x_at\"               \n",
+       " [7549] \"1570055_at\"                  \"1569713_at\"                 \n",
+       " [7551] \"1560284_at\"                  \"1564883_a_at\"               \n",
+       " [7553] \"1562226_at\"                  \"1563241_at\"                 \n",
+       " [7555] \"1561292_at\"                  \"1566081_at\"                 \n",
+       " [7557] \"1570007_at\"                  \"1562712_at\"                 \n",
+       " [7559] \"1569039_s_at\"                \"1560562_a_at\"               \n",
+       " [7561] \"1562079_at\"                  \"1567032_s_at\"               \n",
+       " [7563] \"1564426_x_at\"                \"1568780_at\"                 \n",
+       " [7565] \"1561198_at\"                  \"1562924_at\"                 \n",
+       " [7567] \"1565752_at\"                  \"1565754_x_at\"               \n",
+       " [7569] \"1560775_at\"                  \"1560172_at\"                 \n",
+       " [7571] \"1568913_at\"                  \"1563687_a_at\"               \n",
+       " [7573] \"1562650_at\"                  \"1562625_at\"                 \n",
+       " [7575] \"1569057_s_at\"                \"1569585_at\"                 \n",
+       " [7577] \"1559880_at\"                  \"1559880_at\"                 \n",
+       " [7579] \"1569053_at\"                  \"1560830_a_at\"               \n",
+       " [7581] \"1569133_x_at\"                \"1569132_s_at\"               \n",
+       " [7583] \"1560148_at\"                  \"1562053_at\"                 \n",
+       " [7585] \"1560460_at\"                  \"1569916_at\"                 \n",
+       " [7587] \"1561165_a_at\"                \"1561890_at\"                 \n",
+       " [7589] \"1568840_at\"                  \"1560495_at\"                 \n",
+       " [7591] \"1569841_x_at\"                \"1569840_at\"                 \n",
+       " [7593] \"1568850_at\"                  \"1560228_at\"                 \n",
+       " [7595] \"1564300_at\"                  \"1560767_at\"                 \n",
+       " [7597] \"1562228_s_at\"                \"1562227_at\"                 \n",
+       " [7599] \"1561671_at\"                  \"1564336_at\"                 \n",
+       " [7601] \"1570330_at\"                  \"1561501_s_at\"               \n",
+       " [7603] \"1561500_at\"                  \"1561502_x_at\"               \n",
+       " [7605] \"1561361_at\"                  \"1570274_at\"                 \n",
+       " [7607] \"1564828_at\"                  \"1569246_a_at\"               \n",
+       " [7609] \"1569245_at\"                  \"1563274_at\"                 \n",
+       " [7611] \"1565424_at\"                  \"1570194_x_at\"               \n",
+       " [7613] \"1570192_at\"                  \"1559861_at\"                 \n",
+       " [7615] \"1562651_at\"                  \"1569561_at\"                 \n",
+       " [7617] \"1569905_at\"                  \"1565705_x_at\"               \n",
+       " [7619] \"1562617_at\"                  \"1564688_a_at\"               \n",
+       " [7621] \"1564603_at\"                  \"1565681_s_at\"               \n",
+       " [7623] \"1560352_at\"                  \"1563750_at\"                 \n",
+       " [7625] \"1569620_s_at\"                \"1562904_s_at\"               \n",
+       " [7627] \"1563610_at\"                  \"1569391_at\"                 \n",
+       " [7629] \"1570388_a_at\"                \"1563371_at\"                 \n",
+       " [7631] \"1560306_at\"                  \"1562969_at\"                 \n",
+       " [7633] \"1568596_a_at\"                \"1560946_at\"                 \n",
+       " [7635] \"1562391_at\"                  \"1561714_a_at\"               \n",
+       " [7637] \"1564945_at\"                  \"1562991_at\"                 \n",
+       " [7639] \"1561335_at\"                  \"1559812_at\"                 \n",
+       " [7641] \"1568616_a_at\"                \"1562219_at\"                 \n",
+       " [7643] \"1567612_at\"                  \"1562939_at\"                 \n",
+       " [7645] \"1564204_at\"                  \"1564253_at\"                 \n",
+       " [7647] \"1561691_at\"                  \"1561596_at\"                 \n",
+       " [7649] \"1561597_x_at\"                \"1561606_at\"                 \n",
+       " [7651] \"1561760_s_at\"                \"1561759_at\"                 \n",
+       " [7653] \"1561761_x_at\"                \"1560916_a_at\"               \n",
+       " [7655] \"1560915_at\"                  \"1561973_at\"                 \n",
+       " [7657] \"1560227_at\"                  \"1561106_at\"                 \n",
+       " [7659] \"1565149_at\"                  \"1561939_at\"                 \n",
+       " [7661] \"1562190_at\"                  \"1569729_a_at\"               \n",
+       " [7663] \"1568783_at\"                  \"1568826_at\"                 \n",
+       " [7665] \"1568648_a_at\"                \"1568647_at\"                 \n",
+       " [7667] \"1560258_a_at\"                \"1561806_at\"                 \n",
+       " [7669] \"1563111_a_at\"                \"1565588_at\"                 \n",
+       " [7671] \"1566169_at\"                  \"1570373_at\"                 \n",
+       " [7673] \"1567288_at\"                  \"1562321_at\"                 \n",
+       " [7675] \"1569843_at\"                  \"1560279_a_at\"               \n",
+       " [7677] \"1560278_at\"                  \"1562566_at\"                 \n",
+       " [7679] \"1563263_at\"                  \"1563263_at\"                 \n",
+       " [7681] \"1569263_at\"                  \"1569310_at\"                 \n",
+       " [7683] \"1561572_at\"                  \"1565889_at\"                 \n",
+       " [7685] \"1565849_a_at\"                \"1559942_at\"                 \n",
+       " [7687] \"1569722_s_at\"                \"1564651_at\"                 \n",
+       " [7689] \"1564327_at\"                  \"1563290_at\"                 \n",
+       " [7691] \"1560803_at\"                  \"1569146_s_at\"               \n",
+       " [7693] \"1567060_at\"                  \"1562629_a_at\"               \n",
+       " [7695] \"1562628_at\"                  \"1567069_at\"                 \n",
+       " [7697] \"1569146_s_at\"                \"1560937_at\"                 \n",
+       " [7699] \"1566989_at\"                  \"1566990_x_at\"               \n",
+       " [7701] \"1569646_a_at\"                \"1569108_a_at\"               \n",
+       " [7703] \"1569751_at\"                  \"1561270_at\"                 \n",
+       " [7705] \"1569751_at\"                  \"1568646_x_at\"               \n",
+       " [7707] \"1568644_at\"                  \"1564138_at\"                 \n",
+       " [7709] \"1559807_at\"                  \"1570566_at\"                 \n",
+       " [7711] \"1560762_at\"                  \"1570281_at\"                 \n",
+       " [7713] \"1568830_at\"                  \"1567249_at\"                 \n",
+       " [7715] \"1567559_s_at\"                \"1567559_s_at\"               \n",
+       " [7717] \"1560246_at\"                  \"1569147_at\"                 \n",
+       " [7719] \"1568643_a_at\"                \"1563920_at\"                 \n",
+       " [7721] \"1560467_at\"                  \"1564776_at\"                 \n",
+       " [7723] \"1561687_a_at\"                \"1565389_s_at\"               \n",
+       " [7725] \"1567247_at\"                  \"1563454_at\"                 \n",
+       " [7727] \"1570486_at\"                  \"1568678_s_at\"               \n",
+       " [7729] \"1564610_at\"                  \"1569788_at\"                 \n",
+       " [7731] \"1568678_s_at\"                \"1561101_at\"                 \n",
+       " [7733] \"1569376_s_at\"                \"1569375_at\"                 \n",
+       " [7735] \"1564044_at\"                  \"1560296_at\"                 \n",
+       " [7737] \"1560720_at\"                  \"1563677_at\"                 \n",
+       " [7739] \"1563119_at\"                  \"1562876_s_at\"               \n",
+       " [7741] \"1569022_a_at\"                \"1569021_at\"                 \n",
+       " [7743] \"1569588_x_at\"                \"1569587_at\"                 \n",
+       " [7745] \"1564459_at\"                  \"1569283_at\"                 \n",
+       " [7747] \"1565818_s_at\"                \"1565817_at\"                 \n",
+       " [7749] \"1561055_at\"                  \"1568683_at\"                 \n",
+       " [7751] \"1566182_at\"                  \"1563087_at\"                 \n",
+       " [7753] \"1563137_at\"                  \"1568987_at\"                 \n",
+       " [7755] \"1560812_at\"                  \"1560241_at\"                 \n",
+       " [7757] \"1561033_at\"                  \"1568748_at\"                 \n",
+       " [7759] \"1561665_at\"                  \"1564373_a_at\"               \n",
+       " [7761] \"1568891_x_at\"                \"1568889_at\"                 \n",
+       " [7763] \"1564907_s_at\"                \"1566816_at\"                 \n",
+       " [7765] \"1569138_a_at\"                \"1561942_x_at\"               \n",
+       " [7767] \"1563629_a_at\"                \"1568658_at\"                 \n",
+       " [7769] \"1560774_at\"                  \"1561088_at\"                 \n",
+       " [7771] \"1564240_at\"                  \"1561446_at\"                 \n",
+       " [7773] \"1564786_at\"                  \"1562416_at\"                 \n",
+       " [7775] \"1561089_at\"                  \"1561089_at\"                 \n",
+       " [7777] \"1561037_a_at\"                \"1561036_at\"                 \n",
+       " [7779] \"1569737_a_at\"                \"1561530_at\"                 \n",
+       " [7781] \"1568763_s_at\"                \"1569110_x_at\"               \n",
+       " [7783] \"1568764_x_at\"                \"1568762_at\"                 \n",
+       " [7785] \"1565857_at\"                  \"1562953_s_at\"               \n",
+       " [7787] \"1560697_at\"                  \"1560698_a_at\"               \n",
+       " [7789] \"1563030_at\"                  \"1568680_s_at\"               \n",
+       " [7791] \"1563253_s_at\"                \"1563252_at\"                 \n",
+       " [7793] \"1563071_at\"                  \"1565483_at\"                 \n",
+       " [7795] \"1565484_x_at\"                \"1565778_at\"                 \n",
+       " [7797] \"1562984_at\"                  \"1565254_s_at\"               \n",
+       " [7799] \"1562424_at\"                  \"1560554_a_at\"               \n",
+       " [7801] \"1560130_at\"                  \"1560411_at\"                 \n",
+       " [7803] \"1569402_at\"                  \"1569294_at\"                 \n",
+       " [7805] \"1569777_a_at\"                \"1561969_at\"                 \n",
+       " [7807] \"1563533_at\"                  \"1562850_at\"                 \n",
+       " [7809] \"1562850_at\"                  \"1560712_at\"                 \n",
+       " [7811] \"1560430_at\"                  \"1561916_at\"                 \n",
+       " [7813] \"1563781_at\"                  \"1562678_at\"                 \n",
+       " [7815] \"1569095_at\"                  \"1559777_at\"                 \n",
+       " [7817] \"1563170_at\"                  \"1563673_a_at\"               \n",
+       " [7819] \"1561666_a_at\"                \"1561114_a_at\"               \n",
+       " [7821] \"1562249_at\"                  \"1563872_at\"                 \n",
+       " [7823] \"1569496_s_at\"                \"1565839_a_at\"               \n",
+       " [7825] \"1569776_at\"                  \"1563488_at\"                 \n",
+       " [7827] \"1561392_at\"                  \"1568851_at\"                 \n",
+       " [7829] \"1568852_x_at\"                \"1569504_at\"                 \n",
+       " [7831] \"1561683_at\"                  \"1560407_at\"                 \n",
+       " [7833] \"1561432_at\"                  \"1560018_at\"                 \n",
+       " [7835] \"1568794_at\"                  \"1569504_at\"                 \n",
+       " [7837] \"1564333_a_at\"                \"1569486_at\"                 \n",
+       " [7839] \"1564876_s_at\"                \"1562139_a_at\"               \n",
+       " [7841] \"1561497_at\"                  \"1561507_at\"                 \n",
+       " [7843] \"1561497_at\"                  \"1560014_s_at\"               \n",
+       " [7845] \"1560013_at\"                  \"1568854_at\"                 \n",
+       " [7847] \"1570623_at\"                  \"1560006_a_at\"               \n",
+       " [7849] \"1568597_at\"                  \"1570572_at\"                 \n",
+       " [7851] \"1567458_s_at\"                \"1562747_at\"                 \n",
+       " [7853] \"1569909_at\"                  \"1561497_at\"                 \n",
+       " [7855] \"1569138_a_at\"                \"1559807_at\"                 \n",
+       " [7857] \"1565242_at\"                  \"1562098_at\"                 \n",
+       " [7859] \"1560489_at\"                  \"1569020_at\"                 \n",
+       " [7861] \"1560706_at\"                  \"1561086_at\"                 \n",
+       " [7863] \"1563679_at\"                  \"1561574_at\"                 \n",
+       " [7865] \"1559759_at\"                  \"1569521_s_at\"               \n",
+       " [7867] \"1569520_at\"                  \"1569114_at\"                 \n",
+       " [7869] \"1560577_at\"                  \"1564359_a_at\"               \n",
+       " [7871] \"1560099_at\"                  \"1564360_a_at\"               \n",
+       " [7873] \"1562754_at\"                  \"1564359_a_at\"               \n",
+       " [7875] \"1560099_at\"                  \"1564360_a_at\"               \n",
+       " [7877] \"1562754_at\"                  \"1564331_at\"                 \n",
+       " [7879] \"1569157_s_at\"                \"1569156_at\"                 \n",
+       " [7881] \"1564331_at\"                  \"1569157_s_at\"               \n",
+       " [7883] \"1569156_at\"                  \"1566403_at\"                 \n",
+       " [7885] \"1566403_at\"                  \"1569320_at\"                 \n",
+       " [7887] \"1564685_a_at\"                \"1562864_at\"                 \n",
+       " [7889] \"1561373_at\"                  \"1563511_at\"                 \n",
+       " [7891] \"1559863_a_at\"                \"1563887_at\"                 \n",
+       " [7893] \"1569675_at\"                  \"1569473_s_at\"               \n",
+       " [7895] \"1569473_s_at\"                \"1563157_at\"                 \n",
+       " [7897] \"1564027_a_at\"                \"1564027_a_at\"               \n",
+       " [7899] \"1564028_s_at\"                \"1568906_at\"                 \n",
+       " [7901] \"1568906_at\"                  \"1568906_at\"                 \n",
+       " [7903] \"1564729_at\"                  \"1568914_at\"                 \n",
+       " [7905] \"1564729_at\"                  \"1568606_at\"                 \n",
+       " [7907] \"1565608_at\"                  \"1561146_at\"                 \n",
+       " [7909] \"1562411_at\"                  \"1568925_at\"                 \n",
+       " [7911] \"1568926_x_at\"                \"1560974_s_at\"               \n",
+       " [7913] \"1569078_at\"                  \"1569296_a_at\"               \n",
+       " [7915] \"1563065_at\"                  \"1563563_at\"                 \n",
+       " [7917] \"1570352_at\"                  \"1560753_at\"                 \n",
+       " [7919] \"1569468_at\"                  \"1569468_at\"                 \n",
+       " [7921] \"1560464_at\"                  \"1562888_at\"                 \n",
+       " [7923] \"1569886_a_at\"                \"1569974_x_at\"               \n",
+       " [7925] \"1569973_at\"                  \"1569515_a_at\"               \n",
+       " [7927] \"1569693_at\"                  \"1564511_a_at\"               \n",
+       " [7929] \"1560439_at\"                  \"1565867_a_at\"               \n",
+       " [7931] \"1568838_at\"                  \"1570420_at\"                 \n",
+       " [7933] \"1561849_at\"                  \"1561041_at\"                 \n",
+       " [7935] \"1569876_at\"                  \"1570344_at\"                 \n",
+       " [7937] \"1563680_at\"                  \"1563099_at\"                 \n",
+       " [7939] \"1564600_a_at\"                \"1569690_at\"                 \n",
+       " [7941] \"1560703_at\"                  \"1561576_a_at\"               \n",
+       " [7943] \"1561575_at\"                  \"1565936_a_at\"               \n",
+       " [7945] \"1568804_at\"                  \"1569772_x_at\"               \n",
+       " [7947] \"1569898_a_at\"                \"1563222_at\"                 \n",
+       " [7949] \"1562004_x_at\"                \"1562002_at\"                 \n",
+       " [7951] \"1566191_at\"                  \"1566253_at\"                 \n",
+       " [7953] \"1568658_at\"                  \"1563335_at\"                 \n",
+       " [7955] \"1560939_at\"                  \"1568673_s_at\"               \n",
+       " [7957] \"1568672_at\"                  \"1566140_at\"                 \n",
+       " [7959] \"1569956_at\"                  \"1563466_at\"                 \n",
+       " [7961] \"1568770_at\"                  \"1569225_a_at\"               \n",
+       " [7963] \"1563542_a_at\"                \"1570542_a_at\"               \n",
+       " [7965] \"1569696_at\"                  \"1570044_at\"                 \n",
+       " [7967] \"1569407_at\"                  \"1570020_at\"                 \n",
+       " [7969] \"1562443_at\"                  \"1563496_at\"                 \n",
+       " [7971] \"1563182_at\"                  \"1561332_at\"                 \n",
+       " [7973] \"1567247_at\"                  \"1563595_at\"                 \n",
+       " [7975] \"1565228_s_at\"                \"1570342_at\"                 \n",
+       " [7977] \"1564040_a_at\"                \"1565034_s_at\"               \n",
+       " [7979] \"1561271_at\"                  \"1560164_at\"                 \n",
+       " [7981] \"1561427_at\"                  \"1560527_at\"                 \n",
+       " [7983] \"1562922_at\"                  \"177_at\"                     \n",
+       " [7985] \"1566991_at\"                  \"1561378_at\"                 \n",
+       " [7987] \"1564760_at\"                  \"1569592_a_at\"               \n",
+       " [7989] \"1569591_at\"                  \"1561094_a_at\"               \n",
+       " [7991] \"1561093_at\"                  \"1564984_at\"                 \n",
+       " [7993] \"1564984_at\"                  \"1563391_at\"                 \n",
+       " [7995] \"1567623_at\"                  \"1561519_at\"                 \n",
+       " [7997] \"1563097_at\"                  \"1569004_at\"                 \n",
+       " [7999] \"1560035_at\"                  \"1559954_s_at\"               \n",
+       " [8001] \"1559953_at\"                  \"1564149_at\"                 \n",
+       " [8003] \"1569378_at\"                  \"1563947_a_at\"               \n",
+       " [8005] \"1569861_at\"                  \"1570326_at\"                 \n",
+       " [8007] \"1560156_at\"                  \"1570033_at\"                 \n",
+       " [8009] \"1565881_at\"                  \"1570124_at\"                 \n",
+       " [8011] \"1564164_at\"                  \"1569401_at\"                 \n",
+       " [8013] \"1569106_s_at\"                \"1569105_at\"                 \n",
+       " [8015] \"1561940_at\"                  \"1568864_at\"                 \n",
+       " [8017] \"1559849_at\"                  \"1560251_at\"                 \n",
+       " [8019] \"1561598_at\"                  \"1560689_s_at\"               \n",
+       " [8021] \"1566108_at\"                  \"1561589_a_at\"               \n",
+       " [8023] \"1564937_at\"                  \"1561431_at\"                 \n",
+       " [8025] \"1569061_at\"                  \"1569062_s_at\"               \n",
+       " [8027] \"1560576_at\"                  \"1562579_at\"                 \n",
+       " [8029] \"1562272_at\"                  \"1564584_at\"                 \n",
+       " [8031] \"1559770_at\"                  \"1569450_at\"                 \n",
+       " [8033] \"1569478_s_at\"                \"1569827_at\"                 \n",
+       " [8035] \"1564150_a_at\"                \"1559975_at\"                 \n",
+       " [8037] \"1562546_at\"                  \"1562257_x_at\"               \n",
+       " [8039] \"1562256_at\"                  \"1564224_x_at\"               \n",
+       " [8041] \"1560320_a_at\"                \"1561469_at\"                 \n",
+       " [8043] \"1559817_at\"                  \"1560238_at\"                 \n",
+       " [8045] \"1562788_at\"                  \"1569349_at\"                 \n",
+       " [8047] \"1562048_at\"                  \"1562048_at\"                 \n",
+       " [8049] \"1561266_at\"                  \"1568856_at\"                 \n",
+       " [8051] \"1568857_a_at\"                \"1560477_a_at\"               \n",
+       " [8053] \"1568978_s_at\"                \"1564309_at\"                 \n",
+       " [8055] \"1561726_s_at\"                \"1569269_s_at\"               \n",
+       " [8057] \"1564056_at\"                  \"1569076_a_at\"               \n",
+       " [8059] \"1569076_a_at\"                \"1569077_x_at\"               \n",
+       " [8061] \"1565269_s_at\"                \"1569176_at\"                 \n",
+       " [8063] \"1565436_s_at\"                \"1562244_at\"                 \n",
+       " [8065] \"1562245_a_at\"                \"1560390_s_at\"               \n",
+       " [8067] \"1569318_at\"                  \"1561387_a_at\"               \n",
+       " [8069] \"1568720_at\"                  \"1561269_at\"                 \n",
+       " [8071] \"1563882_a_at\"                \"1569721_at\"                 \n",
+       " [8073] \"1569640_s_at\"                \"1564936_at\"                 \n",
+       " [8075] \"1564310_a_at\"                \"1562914_a_at\"               \n",
+       " [8077] \"1564868_a_at\"                \"1561880_a_at\"               \n",
+       " [8079] \"1560276_at\"                  \"1560277_a_at\"               \n",
+       " [8081] \"1564435_a_at\"                \"1568609_s_at\"               \n",
+       " [8083] \"1560781_at\"                  \"1569580_a_at\"               \n",
+       " [8085] \"1569579_at\"                  \"1569579_at\"                 \n",
+       " [8087] \"1565856_at\"                  \"1567107_s_at\"               \n",
+       " [8089] \"1560995_s_at\"                \"1563098_at\"                 \n",
+       " [8091] \"1569254_s_at\"                \"1569253_at\"                 \n",
+       " [8093] \"1559989_at\"                  \"1564485_at\"                 \n",
+       " [8095] \"1567183_s_at\"                \"1569006_at\"                 \n",
+       " [8097] \"1559789_a_at\"                \"1562825_at\"                 \n",
+       " [8099] \"1566253_at\"                  \"1561329_s_at\"               \n",
+       " [8101] \"1566603_s_at\"                \"1560853_x_at\"               \n",
+       " [8103] \"1569191_at\"                  \"1563101_at\"                 \n",
+       " [8105] \"1569936_a_at\"                \"1569936_a_at\"               \n",
+       " [8107] \"1569935_at\"                  \"1559979_at\"                 \n",
+       " [8109] \"1562749_at\"                  \"1570371_a_at\"               \n",
+       " [8111] \"1560779_a_at\"                \"1561425_a_at\"               \n",
+       " [8113] \"1562282_at\"                  \"1560779_a_at\"               \n",
+       " [8115] \"1568900_a_at\"                \"1564356_at\"                 \n",
+       " [8117] \"1560174_at\"                  \"1560305_x_at\"               \n",
+       " [8119] \"1560303_at\"                  \"1562648_at\"                 \n",
+       " [8121] \"1561595_x_at\"                \"1562789_at\"                 \n",
+       " [8123] \"1565731_at\"                  \"1560458_s_at\"               \n",
+       " [8125] \"1560292_a_at\"                \"1568834_s_at\"               \n",
+       " [8127] \"1560834_a_at\"                \"1562633_at\"                 \n",
+       " [8129] \"1569838_at\"                  \"1560573_at\"                 \n",
+       " [8131] \"1560819_a_at\"                \"1560818_at\"                 \n",
+       " [8133] \"1564533_at\"                  \"1570009_at\"                 \n",
+       " [8135] \"1560204_at\"                  \"1562019_at\"                 \n",
+       " [8137] \"1562020_s_at\"                \"1561899_at\"                 \n",
+       " [8139] \"1564220_a_at\"                \"1563369_at\"                 \n",
+       " [8141] \"1567238_at\"                  \"1567240_x_at\"               \n",
+       " [8143] \"1566289_at\"                  \"1570395_a_at\"               \n",
+       " [8145] \"1570396_at\"                  \"1570397_x_at\"               \n",
+       " [8147] \"1563707_at\"                  \"1565732_at\"                 \n",
+       " [8149] \"1567253_at\"                  \"1570516_s_at\"               \n",
+       " [8151] \"1562490_at\"                  \"1562825_at\"                 \n",
+       " [8153] \"1560445_x_at\"                \"1566544_at\"                 \n",
+       " [8155] \"1561532_at\"                  \"1568191_at\"                 \n",
+       " [8157] \"1564301_a_at\"                \"1561592_at\"                 \n",
+       " [8159] \"1563376_at\"                  \"1562520_at\"                 \n",
+       " [8161] \"1563456_at\"                  \"1562217_at\"                 \n",
+       " [8163] \"1561087_at\"                  \"1561820_at\"                 \n",
+       " [8165] \"1563800_at\"                  \"1559946_s_at\"               \n",
+       " [8167] \"1559945_at\"                  \"1569107_s_at\"               \n",
+       " [8169] \"1564736_a_at\"                \"1562251_a_at\"               \n",
+       " [8171] \"1560589_a_at\"                \"1561607_at\"                 \n",
+       " [8173] \"1569240_at\"                  \"1569241_a_at\"               \n",
+       " [8175] \"1565554_at\"                  \"1562133_x_at\"               \n",
+       " [8177] \"1569638_at\"                  \"1560117_at\"                 \n",
+       " [8179] \"1560339_s_at\"                \"1561396_at\"                 \n",
+       " [8181] \"1569732_at\"                  \"1561222_at\"                 \n",
+       " [8183] \"1569006_at\"                  \"1569949_at\"                 \n",
+       " [8185] \"1563776_at\"                  \"1568888_at\"                 \n",
+       " [8187] \"1567054_at\"                  \"1560208_at\"                 \n",
+       " [8189] \"1570384_at\"                  \"1570384_at\"                 \n",
+       " [8191] \"1567055_at\"                  \"1562046_at\"                 \n",
+       " [8193] \"1560202_at\"                  \"1563913_at\"                 \n",
+       " [8195] \"1560850_at\"                  \"1560695_at\"                 \n",
+       " [8197] \"1560696_x_at\"                \"1560792_at\"                 \n",
+       " [8199] \"1569257_at\"                  \"1567058_at\"                 \n",
+       " [8201] \"200000_s_at\"                 \"1565951_s_at\"               \n",
+       " [8203] \"1565951_s_at\"                \"1563549_a_at\"               \n",
+       " [8205] \"1567271_at\"                  \"1567271_at\"                 \n",
+       " [8207] \"1561997_at\"                  \"1561443_at\"                 \n",
+       " [8209] \"1570130_at\"                  \"1560238_at\"                 \n",
+       " [8211] \"1562408_at\"                  \"1562409_s_at\"               \n",
+       " [8213] \"1569979_at\"                  \"1569980_x_at\"               \n",
+       " [8215] \"1559789_a_at\"                \"1568690_a_at\"               \n",
+       " [8217] \"1568689_at\"                  \"1564383_s_at\"               \n",
+       " [8219] \"1562273_at\"                  \"1564854_at\"                 \n",
+       " [8221] \"1569714_at\"                  \"1567862_at\"                 \n",
+       " [8223] \"1560785_at\"                  \"1569073_x_at\"               \n",
+       " [8225] \"1560262_at\"                  \"1562870_at\"                 \n",
+       " [8227] \"1564449_at\"                  \"1562619_at\"                 \n",
+       " [8229] \"1566473_a_at\"                \"1568955_at\"                 \n",
+       " [8231] \"1568957_x_at\"                \"1566472_s_at\"               \n",
+       " [8233] \"1563367_at\"                  \"1560978_at\"                 \n",
+       " [8235] \"1564706_s_at\"                \"1564707_x_at\"               \n",
+       " [8237] \"1564705_at\"                  \"1560642_at\"                 \n",
+       " [8239] \"1560643_x_at\"                \"1565580_s_at\"               \n",
+       " [8241] \"1565580_s_at\"                \"1560553_at\"                 \n",
+       " [8243] \"1559889_at\"                  \"1561273_at\"                 \n",
+       " [8245] \"1564194_a_at\"                \"1561546_at\"                 \n",
+       " [8247] \"1569454_a_at\"                \"1561757_a_at\"               \n",
+       " [8249] \"1560810_at\"                  \"1561044_at\"                 \n",
+       " [8251] \"1561045_a_at\"                \"1569268_at\"                 \n",
+       " [8253] \"1562457_at\"                  \"1560531_at\"                 \n",
+       " [8255] \"1560760_s_at\"                \"1569756_at\"                 \n",
+       " [8257] \"1563038_at\"                  \"1562601_at\"                 \n",
+       " [8259] \"1562717_at\"                  \"1562716_at\"                 \n",
+       " [8261] \"1562523_at\"                  \"1566984_at\"                 \n",
+       " [8263] \"1563945_at\"                  \"1559766_at\"                 \n",
+       " [8265] \"1563035_x_at\"                \"1563034_at\"                 \n",
+       " [8267] \"1564837_at\"                  \"1564838_a_at\"               \n",
+       " [8269] \"1569104_a_at\"                \"1561581_at\"                 \n",
+       " [8271] \"1559827_at\"                  \"1559826_a_at\"               \n",
+       " [8273] \"1564175_at\"                  \"1570169_at\"                 \n",
+       " [8275] \"1566987_s_at\"                \"1569644_at\"                 \n",
+       " [8277] \"1562295_at\"                  \"1569925_at\"                 \n",
+       " [8279] \"1569624_at\"                  \"1562378_s_at\"               \n",
+       " [8281] \"1563691_at\"                  \"1570171_at\"                 \n",
+       " [8283] \"1569180_at\"                  \"1569181_x_at\"               \n",
+       " [8285] \"1568593_a_at\"                \"1566761_a_at\"               \n",
+       " [8287] \"1565577_s_at\"                \"1565576_at\"                 \n",
+       " [8289] \"1570049_at\"                  \"1566129_at\"                 \n",
+       " [8291] \"1569178_at\"                  \"1561983_at\"                 \n",
+       " [8293] \"1563053_at\"                  \"1562776_at\"                 \n",
+       " [8295] \"1559893_at\"                  \"1569570_at\"                 \n",
+       " [8297] \"1560588_at\"                  \"1560634_a_at\"               \n",
+       " [8299] \"1568609_s_at\"                \"1563830_a_at\"               \n",
+       " [8301] \"1564635_a_at\"                \"1563639_a_at\"               \n",
+       " [8303] \"1560097_at\"                  \"1563961_at\"                 \n",
+       " [8305] \"1561539_at\"                  \"1570261_at\"                 \n",
+       " [8307] \"1562475_at\"                  \"1563145_at\"                 \n",
+       " [8309] \"1567334_at\"                  \"1561107_at\"                 \n",
+       " [8311] \"1560944_at\"                  \"1568763_s_at\"               \n",
+       " [8313] \"1562791_at\"                  \"1564467_at\"                 \n",
+       " [8315] \"1565436_s_at\"                \"1559856_s_at\"               \n",
+       " [8317] \"1561785_at\"                  \"1569102_at\"                 \n",
+       " [8319] \"1560994_x_at\"                \"1560992_at\"                 \n",
+       " [8321] \"1568763_s_at\"                \"1569582_at\"                 \n",
+       " [8323] \"1569582_at\"                  \"1568949_at\"                 \n",
+       " [8325] \"1561489_at\"                  \"1560538_at\"                 \n",
+       " [8327] \"1562386_s_at\"                \"1566084_at\"                 \n",
+       " [8329] \"1560058_at\"                  \"1562699_at\"                 \n",
+       " [8331] \"1569885_at\"                  \"1561271_at\"                 \n",
+       " [8333] \"1560514_at\"                  \"1560928_at\"                 \n",
+       " [8335] \"1561370_at\"                  \"1560932_at\"                 \n",
+       " [8337] \"1561226_at\"                  \"1564423_a_at\"               \n",
+       " [8339] \"1564423_a_at\"                \"1570241_at\"                 \n",
+       " [8341] \"1570242_x_at\"                \"1570071_at\"                 \n",
+       " [8343] \"1569850_at\"                  \"1569355_at\"                 \n",
+       " [8345] \"1562095_at\"                  \"1562754_at\"                 \n",
+       " [8347] \"1568896_at\"                  \"1566720_at\"                 \n",
+       " [8349] \"1561480_a_at\"                \"1561479_at\"                 \n",
+       " [8351] \"1561847_at\"                  \"1568763_s_at\"               \n",
+       " [8353] \"1560138_at\"                  \"1570490_at\"                 \n",
+       " [8355] \"1564064_a_at\"                \"1564063_a_at\"               \n",
+       " [8357] \"1564238_a_at\"                \"1560168_at\"                 \n",
+       " [8359] \"1568665_at\"                  \"1561059_a_at\"               \n",
+       " [8361] \"1564469_at\"                  \"1569786_at\"                 \n",
+       " [8363] \"1567013_at\"                  \"1562854_at\"                 \n",
+       " [8365] \"1565674_at\"                  \"1568609_s_at\"               \n",
+       " [8367] \"1563083_s_at\"                \"1564662_at\"                 \n",
+       " [8369] \"1563635_at\"                  \"1560043_at\"                 \n",
+       " [8371] \"1563142_at\"                  \"1562326_at\"                 \n",
+       " [8373] \"1563298_at\"                  \"1564231_at\"                 \n",
+       " [8375] \"1563027_at\"                  \"1560679_at\"                 \n",
+       " [8377] \"1570023_at\"                  \"1560010_a_at\"               \n",
+       " [8379] \"1568691_at\"                  \"1570116_at\"                 \n",
+       " [8381] \"1562056_at\"                  \"1562481_at\"                 \n",
+       " [8383] \"1568640_at\"                  \"1560288_at\"                 \n",
+       " [8385] \"1561651_s_at\"                \"1560347_at\"                 \n",
+       " [8387] \"1560328_s_at\"                \"1569325_at\"                 \n",
+       " [8389] \"1563044_at\"                  \"1570337_at\"                 \n",
+       " [8391] \"1563834_a_at\"                \"1561555_at\"                 \n",
+       " [8393] \"1559787_at\"                  \"1570006_at\"                 \n",
+       " [8395] \"1561976_at\"                  \"1569112_at\"                 \n",
+       " [8397] \"1562415_a_at\"                \"1561331_at\"                 \n",
+       " [8399] \"1570285_at\"                  \"1568905_at\"                 \n",
+       " [8401] \"1562909_at\"                  \"1564413_at\"                 \n",
+       " [8403] \"1562731_s_at\"                \"1568955_at\"                 \n",
+       " [8405] \"1568957_x_at\"                \"1563002_at\"                 \n",
+       " [8407] \"1561103_at\"                  \"1568868_at\"                 \n",
+       " [8409] \"1560806_at\"                  \"1560806_at\"                 \n",
+       " [8411] \"1564277_a_at\"                \"1564280_x_at\"               \n",
+       " [8413] \"1570255_s_at\"                \"1561197_at\"                 \n",
+       " [8415] \"1569040_s_at\"                \"1569040_s_at\"               \n",
+       " [8417] \"1569013_s_at\"                \"1561615_s_at\"               \n",
+       " [8419] \"1561614_at\"                  \"1565306_a_at\"               \n",
+       " [8421] \"1564985_a_at\"                \"1562902_at\"                 \n",
+       " [8423] \"1559977_a_at\"                \"1561433_at\"                 \n",
+       " [8425] \"1562871_at\"                  \"1568812_at\"                 \n",
+       " [8427] \"1561511_at\"                  \"1561034_at\"                 \n",
+       " [8429] \"1569469_a_at\"                \"1560101_at\"                 \n",
+       " [8431] \"1563904_at\"                  \"1562604_at\"                 \n",
+       " [8433] \"1564757_a_at\"                \"1563674_at\"                 \n",
+       " [8435] \"1563120_at\"                  \"1563876_at\"                 \n",
+       " [8437] \"1563876_at\"                  \"1569502_s_at\"               \n",
+       " [8439] \"1570569_at\"                  \"1570082_x_at\"               \n",
+       " [8441] \"1570080_at\"                  \"1561853_a_at\"               \n",
+       " [8443] \"1569706_at\"                  \"1561732_at\"                 \n",
+       " [8445] \"1560042_at\"                  \"1563743_at\"                 \n",
+       " [8447] \"1565867_a_at\"                \"1564598_a_at\"               \n",
+       " [8449] \"1561200_at\"                  \"1562371_s_at\"               \n",
+       " [8451] \"1569830_at\"                  \"1568938_at\"                 \n",
+       " [8453] \"1568752_s_at\"                \"1568751_at\"                 \n",
+       " [8455] \"1569034_a_at\"                \"1560625_s_at\"               \n",
+       " [8457] \"1561345_at\"                  \"1569701_at\"                 \n",
+       " [8459] \"1570533_at\"                  \"1562103_at\"                 \n",
+       " [8461] \"1561280_at\"                  \"1561281_a_at\"               \n",
+       " [8463] \"1565728_at\"                  \"1564351_at\"                 \n",
+       " [8465] \"1561884_at\"                  \"1559821_at\"                 \n",
+       " [8467] \"1561625_at\"                  \"1562341_at\"                 \n",
+       " [8469] \"1562341_at\"                  \"1566084_at\"                 \n",
+       " [8471] \"1569895_at\"                  \"1569604_at\"                 \n",
+       " [8473] \"1568853_at\"                  \"1562474_at\"                 \n",
+       " [8475] \"1561553_at\"                  \"1560579_s_at\"               \n",
+       " [8477] \"1561693_at\"                  \"1560579_s_at\"               \n",
+       " [8479] \"1568799_at\"                  \"1568813_at\"                 \n",
+       " [8481] \"1570451_at\"                  \"1560746_at\"                 \n",
+       " [8483] \"1560957_at\"                  \"1560957_at\"                 \n",
+       " [8485] \"1560957_at\"                  \"1565671_a_at\"               \n",
+       " [8487] \"1568745_at\"                  \"1568746_a_at\"               \n",
+       " [8489] \"1569748_at\"                  \"1560560_at\"                 \n",
+       " [8491] \"1568609_s_at\"                \"1562674_at\"                 \n",
+       " [8493] \"1568609_s_at\"                \"1569676_at\"                 \n",
+       " [8495] \"1568832_a_at\"                \"1568609_s_at\"               \n",
+       " [8497] \"1568609_s_at\"                \"1567242_at\"                 \n",
+       " [8499] \"1567242_at\"                  \"1570015_at\"                 \n",
+       " [8501] \"1568609_s_at\"                \"1568609_s_at\"               \n",
+       " [8503] \"1564204_at\"                  \"1564204_at\"                 \n",
+       " [8505] \"1561318_at\"                  \"1569291_at\"                 \n",
+       " [8507] \"1569293_x_at\"                \"1569688_at\"                 \n",
+       " [8509] \"1561440_at\"                  \"1569337_at\"                 \n",
+       " [8511] \"1568728_s_at\"                \"1565809_x_at\"               \n",
+       " [8513] \"1561682_at\"                  \"1560087_a_at\"               \n",
+       " [8515] \"1560086_at\"                  \"1560087_a_at\"               \n",
+       " [8517] \"1560086_at\"                  \"1568609_s_at\"               \n",
+       " [8519] \"1563483_at\"                  \"1564204_at\"                 \n",
+       " [8521] \"1568609_s_at\"                \"1563483_at\"                 \n",
+       " [8523] \"1564204_at\"                  \"1563565_at\"                 \n",
+       " [8525] \"1562510_at\"                  \"1559848_at\"                 \n",
+       " [8527] \"1564897_at\"                  \"1564112_at\"                 \n",
+       " [8529] \"1560935_s_at\"                \"1560934_at\"                 \n",
+       " [8531] \"1564262_at\"                  \"1570243_at\"                 \n",
+       " [8533] \"1563744_a_at\"                \"1562543_at\"                 \n",
+       " [8535] \"1568933_at\"                  \"1568933_at\"                 \n",
+       " [8537] \"1563655_at\"                  \"201104_x_at\"                \n",
+       " [8539] \"203957_at\"                   \"203957_at\"                  \n",
+       " [8541] \"204410_at\"                   \"204409_s_at\"                \n",
+       " [8543] \"201346_at\"                   \"204060_s_at\"                \n",
+       " [8545] \"201909_at\"                   \"205001_s_at\"                \n",
+       " [8547] \"205000_at\"                   \"202847_at\"                  \n",
+       " [8549] \"201886_at\"                   \"200814_at\"                  \n",
+       " [8551] \"201762_s_at\"                 \"203882_at\"                  \n",
+       " [8553] \"203882_at\"                   \"201840_at\"                  \n",
+       " [8555] \"203573_s_at\"                 \"201492_s_at\"                \n",
+       " [8557] \"201492_s_at\"                 \"200748_s_at\"                \n",
+       " [8559] \"204954_s_at\"                 \"201252_at\"                  \n",
+       " [8561] \"203240_at\"                   \"203624_at\"                  \n",
+       " [8563] \"203043_at\"                   \"201028_s_at\"                \n",
+       " [8565] \"201029_s_at\"                 \"203314_at\"                  \n",
+       " [8567] \"202829_s_at\"                 \"204145_at\"                  \n",
+       " [8569] \"201103_x_at\"                 \"201104_x_at\"                \n",
+       " [8571] \"201103_x_at\"                 \"201104_x_at\"                \n",
+       " [8573] \"201104_x_at\"                 \"201103_x_at\"                \n",
+       " [8575] \"201104_x_at\"                 \"201550_x_at\"                \n",
+       " [8577] \"202790_at\"                   \"201123_s_at\"                \n",
+       " [8579] \"201122_x_at\"                 \"205213_at\"                  \n",
+       " [8581] \"205212_s_at\"                 \"204375_at\"                  \n",
+       " [8583] \"203244_at\"                   \"204544_at\"                  \n",
+       " [8585] \"202453_s_at\"                 \"202451_at\"                  \n",
+       " [8587] \"200650_s_at\"                 \"200650_s_at\"                \n",
+       " [8589] \"202239_at\"                   \"201293_x_at\"                \n",
+       " [8591] \"204305_at\"                   \"203917_at\"                  \n",
+       " [8593] \"200682_s_at\"                 \"204190_at\"                  \n",
+       " [8595] \"200680_x_at\"                 \"200679_x_at\"                \n",
+       " [8597] \"202723_s_at\"                 \"204295_at\"                  \n",
+       " [8599] \"205224_at\"                   \"204775_at\"                  \n",
+       " [8601] \"204042_at\"                   \"202725_at\"                  \n",
+       " [8603] \"202703_at\"                   \"202304_at\"                  \n",
+       " [8605] \"203379_at\"                   \"203156_at\"                  \n",
+       " [8607] \"200091_s_at\"                 \"200825_s_at\"                \n",
+       " [8609] \"203292_s_at\"                 \"202345_s_at\"                \n",
+       " [8611] \"202830_s_at\"                 \"201338_x_at\"                \n",
+       " [8613] \"203476_at\"                   \"203331_s_at\"                \n",
+       " [8615] \"203332_s_at\"                 \"203387_s_at\"                \n",
+       " [8617] \"203386_at\"                   \"204011_at\"                  \n",
+       " [8619] \"202235_at\"                   \"202234_s_at\"                \n",
+       " [8621] \"202236_s_at\"                 \"204128_s_at\"                \n",
+       " [8623] \"204127_at\"                   \"202519_at\"                  \n",
+       " [8625] \"201059_at\"                   \"202066_at\"                  \n",
+       " [8627] \"202065_s_at\"                 \"202812_at\"                  \n",
+       " [8629] \"201303_at\"                   \"200818_at\"                  \n",
+       " [8631] \"204194_at\"                   \"204194_at\"                  \n",
+       " [8633] \"201329_s_at\"                 \"201328_at\"                  \n",
+       " [8635] \"202941_at\"                   \"203597_s_at\"                \n",
+       " [8637] \"203598_s_at\"                 \"203599_s_at\"                \n",
+       " [8639] \"203126_at\"                   \"204309_at\"                  \n",
+       " [8641] \"202343_x_at\"                 \"202135_s_at\"                \n",
+       " [8643] \"200818_at\"                   \"202723_s_at\"                \n",
+       " [8645] \"202724_s_at\"                 \"202932_at\"                  \n",
+       " [8647] \"202933_s_at\"                 \"204302_s_at\"                \n",
+       " [8649] \"204303_s_at\"                 \"200772_x_at\"                \n",
+       " [8651] \"200773_x_at\"                 \"205379_at\"                  \n",
+       " [8653] \"202941_at\"                   \"200873_s_at\"                \n",
+       " [8655] \"205290_s_at\"                 \"205289_at\"                  \n",
+       " [8657] \"202946_s_at\"                 \"205108_s_at\"                \n",
+       " [8659] \"200740_s_at\"                 \"200739_s_at\"                \n",
+       " [8661] \"204869_at\"                   \"204870_s_at\"                \n",
+       " [8663] \"202505_at\"                   \"202671_s_at\"                \n",
+       " [8665] \"202844_s_at\"                 \"202845_s_at\"                \n",
+       " [8667] \"201021_s_at\"                 \"201022_s_at\"                \n",
+       " [8669] \"202816_s_at\"                 \"202817_s_at\"                \n",
+       " [8671] \"201201_at\"                   \"201852_x_at\"                \n",
+       " [8673] \"203860_at\"                   \"203690_at\"                  \n",
+       " [8675] \"203630_s_at\"                 \"203629_s_at\"                \n",
+       " [8677] \"203344_s_at\"                 \"205084_at\"                  \n",
+       " [8679] \"201534_s_at\"                 \"201535_at\"                  \n",
+       " [8681] \"201910_at\"                   \"201911_s_at\"                \n",
+       " [8683] \"204707_s_at\"                 \"205204_at\"                  \n",
+       " [8685] \"203076_s_at\"                 \"203075_at\"                  \n",
+       " [8687] \"203077_s_at\"                 \"202345_s_at\"                \n",
+       " [8689] \"204195_s_at\"                 \"200012_x_at\"                \n",
+       " [8691] \"201588_at\"                   \"203659_s_at\"                \n",
+       " [8693] \"205004_at\"                   \"204434_at\"                  \n",
+       " [8695] \"204433_s_at\"                 \"204302_s_at\"                \n",
+       " [8697] \"204303_s_at\"                 \"200868_s_at\"                \n",
+       " [8699] \"200867_at\"                   \"202858_at\"                  \n",
+       " [8701] \"202858_at\"                   \"204053_x_at\"                \n",
+       " [8703] \"204054_at\"                   \"202810_at\"                  \n",
+       " [8705] \"205147_x_at\"                 \"201271_s_at\"                \n",
+       " [8707] \"200601_at\"                   \"204272_at\"                  \n",
+       " [8709] \"200789_at\"                   \"202072_at\"                  \n",
+       " [8711] \"202533_s_at\"                 \"202072_at\"                  \n",
+       " [8713] \"204331_s_at\"                 \"204330_s_at\"                \n",
+       " [8715] \"204935_at\"                   \"202344_at\"                  \n",
+       " [8717] \"203669_s_at\"                 \"203669_s_at\"                \n",
+       " [8719] \"204555_s_at\"                 \"204554_at\"                  \n",
+       " [8721] \"205361_s_at\"                 \"205362_s_at\"                \n",
+       " [8723] \"205360_at\"                   \"201639_s_at\"                \n",
+       " [8725] \"201638_s_at\"                 \"201114_x_at\"                \n",
+       " [8727] \"201639_s_at\"                 \"201704_at\"                  \n",
+       " [8729] \"203880_at\"                   \"201471_s_at\"                \n",
+       " [8731] \"200068_s_at\"                 \"202360_at\"                  \n",
+       " [8733] \"200016_x_at\"                 \"201031_s_at\"                \n",
+       " [8735] \"202088_at\"                   \"202089_s_at\"                \n",
+       " [8737] \"201360_at\"                   \"200809_x_at\"                \n",
+       " [8739] \"200088_x_at\"                 \"204145_at\"                  \n",
+       " [8741] \"205266_at\"                   \"202414_at\"                  \n",
+       " [8743] \"201509_at\"                   \"202557_at\"                  \n",
+       " [8745] \"202558_s_at\"                 \"203405_at\"                  \n",
+       " [8747] \"202177_at\"                   \"203405_at\"                  \n",
+       " [8749] \"201762_s_at\"                 \"203132_at\"                  \n",
+       " [8751] \"202669_s_at\"                 \"202668_at\"                  \n",
+       " [8753] \"204799_at\"                   \"203004_s_at\"                \n",
+       " [8755] \"203003_at\"                   \"201217_x_at\"                \n",
+       " [8757] \"200943_at\"                   \"200944_s_at\"                \n",
+       " [8759] \"202930_s_at\"                 \"204318_s_at\"                \n",
+       " [8761] \"204315_s_at\"                 \"203604_at\"                  \n",
+       " [8763] \"202749_at\"                   \"204616_at\"                  \n",
+       " [8765] \"200834_s_at\"                 \"205419_at\"                  \n",
+       " [8767] \"205287_s_at\"                 \"205286_at\"                  \n",
+       " [8769] \"204752_x_at\"                 \"204979_s_at\"                \n",
+       " [8771] \"200874_s_at\"                 \"200875_s_at\"                \n",
+       " [8773] \"201695_s_at\"                 \"201569_s_at\"                \n",
+       " [8775] \"201570_at\"                   \"204567_s_at\"                \n",
+       " [8777] \"204759_at\"                   \"205033_s_at\"                \n",
+       " [8779] \"205033_s_at\"                 \"204174_at\"                  \n",
+       " [8781] \"204703_at\"                   \"202795_x_at\"                \n",
+       " [8783] \"205009_at\"                   \"204220_at\"                  \n",
+       " [8785] \"205033_s_at\"                 \"203919_at\"                  \n",
+       " [8787] \"204837_at\"                   \"205296_at\"                  \n",
+       " [8789] \"202792_s_at\"                 \"202791_s_at\"                \n",
+       " [8791] \"202561_at\"                   \"201281_at\"                  \n",
+       " [8793] \"203523_at\"                   \"200874_s_at\"                \n",
+       " [8795] \"200875_s_at\"                 \"205336_at\"                  \n",
+       " [8797] \"202071_at\"                   \"202778_s_at\"                \n",
+       " [8799] \"204287_at\"                   \"203107_x_at\"                \n",
+       " [8801] \"203107_x_at\"                 \"203107_x_at\"                \n",
+       " [8803] \"204659_s_at\"                 \"204660_at\"                  \n",
+       " [8805] \"204659_s_at\"                 \"204061_at\"                  \n",
+       " [8807] \"204060_s_at\"                 \"201699_at\"                  \n",
+       " [8809] \"202239_at\"                   \"205037_at\"                  \n",
+       " [8811] \"201855_s_at\"                 \"201854_s_at\"                \n",
+       " [8813] \"204072_s_at\"                 \"204200_s_at\"                \n",
+       " [8815] \"204967_at\"                   \"204742_s_at\"                \n",
+       " [8817] \"205206_at\"                   \"203338_at\"                  \n",
+       " [8819] \"202732_at\"                   \"203614_at\"                  \n",
+       " [8821] \"204927_at\"                   \"203746_s_at\"                \n",
+       " [8823] \"203745_at\"                   \"201710_at\"                  \n",
+       " [8825] \"202096_s_at\"                 \"204955_at\"                  \n",
+       " [8827] \"200808_s_at\"                 \"201102_s_at\"                \n",
+       " [8829] \"203966_s_at\"                 \"203624_at\"                  \n",
+       " [8831] \"203403_s_at\"                 \"204596_s_at\"                \n",
+       " [8833] \"204597_x_at\"                 \"204595_s_at\"                \n",
+       " [8835] \"201651_s_at\"                 \"203996_s_at\"                \n",
+       " [8837] \"203994_s_at\"                 \"203995_at\"                  \n",
+       " [8839] \"203996_s_at\"                 \"203994_s_at\"                \n",
+       " [8841] \"203565_s_at\"                 \"204800_s_at\"                \n",
+       " [8843] \"204085_s_at\"                 \"204084_s_at\"                \n",
+       " [8845] \"201217_x_at\"                 \"203313_s_at\"                \n",
+       " [8847] \"205272_s_at\"                 \"200677_at\"                  \n",
+       " [8849] \"205272_s_at\"                 \"204919_at\"                  \n",
+       " [8851] \"205272_s_at\"                 \"204919_at\"                  \n",
+       " [8853] \"200042_at\"                   \"200012_x_at\"                \n",
+       " [8855] \"201020_at\"                   \"202414_at\"                  \n",
+       " [8857] \"202750_s_at\"                 \"202751_at\"                  \n",
+       " [8859] \"204286_s_at\"                 \"204285_s_at\"                \n",
+       " [8861] \"200762_at\"                   \"204446_s_at\"                \n",
+       " [8863] \"204445_s_at\"                 \"200680_x_at\"                \n",
+       " [8865] \"203316_s_at\"                 \"203441_s_at\"                \n",
+       " [8867] \"203440_at\"                   \"202181_at\"                  \n",
+       " [8869] \"205102_at\"                   \"205102_at\"                  \n",
+       " [8871] \"201681_s_at\"                 \"202925_s_at\"                \n",
+       " [8873] \"202924_s_at\"                 \"200713_s_at\"                \n",
+       " [8875] \"200712_s_at\"                 \"203650_at\"                  \n",
+       " [8877] \"200038_s_at\"                 \"202895_s_at\"                \n",
+       " [8879] \"202897_at\"                   \"202896_s_at\"                \n",
+       " [8881] \"202594_at\"                   \"202595_s_at\"                \n",
+       " [8883] \"200038_s_at\"                 \"200038_s_at\"                \n",
+       " [8885] \"204682_at\"                   \"202086_at\"                  \n",
+       " [8887] \"203690_at\"                   \"200012_x_at\"                \n",
+       " [8889] \"205013_s_at\"                 \"202998_s_at\"                \n",
+       " [8891] \"202997_s_at\"                 \"202999_s_at\"                \n",
+       " [8893] \"205013_s_at\"                 \"201014_s_at\"                \n",
+       " [8895] \"204994_at\"                   \"203753_at\"                  \n",
+       " [8897] \"205024_s_at\"                 \"205023_at\"                  \n",
+       " [8899] \"202567_at\"                   \"202567_at\"                  \n",
+       " [8901] \"202402_s_at\"                 \"204487_s_at\"                \n",
+       " [8903] \"201414_s_at\"                 \"201058_s_at\"                \n",
+       " [8905] \"205422_s_at\"                 \"204981_at\"                  \n",
+       " [8907] \"202325_s_at\"                 \"202962_at\"                  \n",
+       " [8909] \"204598_at\"                   \"202245_at\"                  \n",
+       " [8911] \"203261_at\"                   \"202313_at\"                  \n",
+       " [8913] \"202585_s_at\"                 \"202584_at\"                  \n",
+       " [8915] \"200012_x_at\"                 \"202197_at\"                  \n",
+       " [8917] \"202198_s_at\"                 \"203380_x_at\"                \n",
+       " [8919] \"204077_x_at\"                 \"204076_at\"                  \n",
+       " [8921] \"203988_s_at\"                 \"202705_at\"                  \n",
+       " [8923] \"201347_x_at\"                 \"200736_s_at\"                \n",
+       " [8925] \"205191_at\"                   \"200781_s_at\"                \n",
+       " [8927] \"202411_at\"                   \"202467_s_at\"                \n",
+       " [8929] \"204673_at\"                   \"201052_s_at\"                \n",
+       " [8931] \"201053_s_at\"                 \"204623_at\"                  \n",
+       " [8933] \"205104_at\"                   \"202610_s_at\"                \n",
+       " [8935] \"202611_s_at\"                 \"202612_s_at\"                \n",
+       " [8937] \"204697_s_at\"                 \"200694_s_at\"                \n",
+       " [8939] \"200702_s_at\"                 \"202833_s_at\"                \n",
+       " [8941] \"200084_at\"                   \"201784_s_at\"                \n",
+       " [8943] \"204987_at\"                   \"200089_s_at\"                \n",
+       " [8945] \"202075_s_at\"                 \"203014_x_at\"                \n",
+       " [8947] \"202144_s_at\"                 \"203014_x_at\"                \n",
+       " [8949] \"204386_s_at\"                 \"204387_x_at\"                \n",
+       " [8951] \"203936_s_at\"                 \"205272_s_at\"                \n",
+       " [8953] \"204919_at\"                   \"204919_at\"                  \n",
+       " [8955] \"200709_at\"                   \"205272_s_at\"                \n",
+       " [8957] \"204919_at\"                   \"205272_s_at\"                \n",
+       " [8959] \"203956_at\"                   \"200642_at\"                  \n",
+       " [8961] \"202744_at\"                   \"205248_at\"                  \n",
+       " [8963] \"203957_at\"                   \"204438_at\"                  \n",
+       " [8965] \"202001_s_at\"                 \"202000_at\"                  \n",
+       " [8967] \"204867_at\"                   \"201897_s_at\"                \n",
+       " [8969] \"202098_s_at\"                 \"203963_at\"                  \n",
+       " [8971] \"204508_s_at\"                 \"204509_at\"                  \n",
+       " [8973] \"202937_x_at\"                 \"202651_at\"                  \n",
+       " [8975] \"201423_s_at\"                 \"201552_at\"                  \n",
+       " [8977] \"201551_s_at\"                 \"201553_s_at\"                \n",
+       " [8979] \"202626_s_at\"                 \"202625_at\"                  \n",
+       " [8981] \"204008_at\"                   \"204343_at\"                  \n",
+       " [8983] \"202615_at\"                   \"202047_s_at\"                \n",
+       " [8985] \"202048_s_at\"                 \"205438_at\"                  \n",
+       " [8987] \"203303_at\"                   \"203072_at\"                  \n",
+       " [8989] \"205405_at\"                   \"2028_s_at\"                  \n",
+       " [8991] \"204947_at\"                   \"201492_s_at\"                \n",
+       " [8993] \"204492_at\"                   \"202011_at\"                  \n",
+       " [8995] \"204147_s_at\"                 \"204041_at\"                  \n",
+       " [8997] \"203678_at\"                   \"203889_at\"                  \n",
+       " [8999] \"204205_at\"                   \"201976_s_at\"                \n",
+       " [9001] \"204787_at\"                   \"203901_at\"                  \n",
+       " [9003] \"201202_at\"                   \"201881_s_at\"                \n",
+       " [9005] \"201879_at\"                   \"201878_at\"                  \n",
+       " [9007] \"201880_at\"                   \"204866_at\"                  \n",
+       " [9009] \"204593_s_at\"                 \"204594_s_at\"                \n",
+       " [9011] \"205359_at\"                   \"200847_s_at\"                \n",
+       " [9013] \"204046_at\"                   \"201959_s_at\"                \n",
+       " [9015] \"201960_s_at\"                 \"204538_x_at\"                \n",
+       " [9017] \"203905_at\"                   \"204538_x_at\"                \n",
+       " [9019] \"202239_at\"                   \"204538_x_at\"                \n",
+       " [9021] \"203200_s_at\"                 \"203199_s_at\"                \n",
+       " [9023] \"204538_x_at\"                 \"201444_s_at\"                \n",
+       " [9025] \"201443_s_at\"                 \"204800_s_at\"                \n",
+       " [9027] \"204801_s_at\"                 \"202345_s_at\"                \n",
+       " [9029] \"202386_s_at\"                 \"202804_at\"                  \n",
+       " [9031] \"202805_s_at\"                 \"204538_x_at\"                \n",
+       " [9033] \"204538_x_at\"                 \"204792_s_at\"                \n",
+       " [9035] \"202674_s_at\"                 \"204875_s_at\"                \n",
+       " [9037] \"201495_x_at\"                 \"201497_x_at\"                \n",
+       " [9039] \"201496_x_at\"                 \"200807_s_at\"                \n",
+       " [9041] \"200806_s_at\"                 \"204538_x_at\"                \n",
+       " [9043] \"205113_at\"                   \"205130_at\"                  \n",
+       " [9045] \"201300_s_at\"                 \"203185_at\"                  \n",
+       " [9047] \"204905_s_at\"                 \"202228_s_at\"                \n",
+       " [9049] \"203026_at\"                   \"200781_s_at\"                \n",
+       " [9051] \"205428_s_at\"                 \"204462_s_at\"                \n",
+       " [9053] \"203448_s_at\"                 \"204819_at\"                  \n",
+       " [9055] \"204308_s_at\"                 \"204307_at\"                  \n",
+       " [9057] \"204479_at\"                   \"204497_at\"                  \n",
+       " [9059] \"204498_s_at\"                 \"201293_x_at\"                \n",
+       " [9061] \"204219_s_at\"                 \"204317_at\"                  \n",
+       " [9063] \"205114_s_at\"                 \"205114_s_at\"                \n",
+       " [9065] \"205114_s_at\"                 \"205114_s_at\"                \n",
+       " [9067] \"205114_s_at\"                 \"205114_s_at\"                \n",
+       " [9069] \"205114_s_at\"                 \"205114_s_at\"                \n",
+       " [9071] \"205114_s_at\"                 \"205114_s_at\"                \n",
+       " [9073] \"204103_at\"                   \"200858_s_at\"                \n",
+       " [9075] \"203374_s_at\"                 \"203375_s_at\"                \n",
+       " [9077] \"204121_at\"                   \"204635_at\"                  \n",
+       " [9079] \"204633_s_at\"                 \"203662_s_at\"                \n",
+       " [9081] \"203661_s_at\"                 \"200027_at\"                  \n",
+       " [9083] \"203614_at\"                   \"201856_s_at\"                \n",
+       " [9085] \"201857_at\"                   \"204539_s_at\"                \n",
+       " [9087] \"200934_at\"                   \"204435_at\"                  \n",
+       " [9089] \"202160_at\"                   \"202259_s_at\"                \n",
+       " [9091] \"202258_s_at\"                 \"204493_at\"                  \n",
+       " [9093] \"204512_at\"                   \"204865_at\"                  \n",
+       " [9095] \"201891_s_at\"                 \"203329_at\"                  \n",
+       " [9097] \"203574_at\"                   \"200781_s_at\"                \n",
+       " [9099] \"203297_s_at\"                 \"203298_s_at\"                \n",
+       " [9101] \"203930_s_at\"                 \"203928_x_at\"                \n",
+       " [9103] \"203929_s_at\"                 \"201665_x_at\"                \n",
+       " [9105] \"200717_x_at\"                 \"204321_at\"                  \n",
+       " [9107] \"200063_s_at\"                 \"200032_s_at\"                \n",
+       " [9109] \"204629_at\"                   \"204417_at\"                  \n",
+       " [9111] \"202395_at\"                   \"204226_at\"                  \n",
+       " [9113] \"203045_at\"                   \"202547_s_at\"                \n",
+       " [9115] \"202548_s_at\"                 \"200889_s_at\"                \n",
+       " [9117] \"200890_s_at\"                 \"201894_s_at\"                \n",
+       " [9119] \"200891_s_at\"                 \"200641_s_at\"                \n",
+       " [9121] \"203889_at\"                   \"205464_at\"                  \n",
+       " [9123] \"201212_at\"                   \"201530_x_at\"                \n",
+       " [9125] \"201417_at\"                   \"201418_s_at\"                \n",
+       " [9127] \"201416_at\"                   \"201642_at\"                  \n",
+       " [9129] \"201386_s_at\"                 \"201385_at\"                  \n",
+       " [9131] \"200082_s_at\"                 \"203635_at\"                  \n",
+       " [9133] \"204948_s_at\"                 \"202395_at\"                  \n",
+       " [9135] \"203467_at\"                   \"203928_x_at\"                \n",
+       " [9137] \"203930_s_at\"                 \"203929_s_at\"                \n",
+       " [9139] \"200792_at\"                   \"200060_s_at\"                \n",
+       " [9141] \"204831_at\"                   \"200016_x_at\"                \n",
+       " [9143] \"201312_s_at\"                 \"201311_s_at\"                \n",
+       " [9145] \"204472_at\"                   \"203021_at\"                  \n",
+       " [9147] \"203892_at\"                   \"205238_at\"                  \n",
+       " [9149] \"202803_s_at\"                 \"204756_at\"                  \n",
+       " [9151] \"201222_s_at\"                 \"201223_s_at\"                \n",
+       " [9153] \"203448_s_at\"                 \"202717_s_at\"                \n",
+       " [9155] \"202345_s_at\"                 \"201077_s_at\"                \n",
+       " [9157] \"201076_at\"                   \"203139_at\"                  \n",
+       " [9159] \"202954_at\"                   \"204602_at\"                  \n",
+       " [9161] \"201991_s_at\"                 \"201992_s_at\"                \n",
+       " [9163] \"202690_s_at\"                 \"202691_at\"                  \n",
+       " [9165] \"203671_at\"                   \"203672_x_at\"                \n",
+       " [9167] \"205388_at\"                   \"203396_at\"                  \n",
+       " [9169] \"202052_s_at\"                 \"202419_at\"                  \n",
+       " [9171] \"201111_at\"                   \"201112_s_at\"                \n",
+       " [9173] \"205006_s_at\"                 \"205005_s_at\"                \n",
+       " [9175] \"203933_at\"                   \"203269_at\"                  \n",
+       " [9177] \"203099_s_at\"                 \"203100_s_at\"                \n",
+       " [9179] \"203098_at\"                   \"203684_s_at\"                \n",
+       " [9181] \"203685_at\"                   \"204979_s_at\"                \n",
+       " [9183] \"200914_x_at\"                 \"200915_x_at\"                \n",
+       " [9185] \"202711_at\"                   \"202217_at\"                  \n",
+       " [9187] \"202841_x_at\"                 \"202612_s_at\"                \n",
+       " [9189] \"204724_s_at\"                 \"202702_at\"                  \n",
+       " [9191] \"205075_at\"                   \"201012_at\"                  \n",
+       " [9193] \"202217_at\"                   \"204002_s_at\"                \n",
+       " [9195] \"204849_at\"                   \"202684_s_at\"                \n",
+       " [9197] \"202683_s_at\"                 \"200639_s_at\"                \n",
+       " [9199] \"200638_s_at\"                 \"200640_at\"                  \n",
+       " [9201] \"200641_s_at\"                 \"202980_s_at\"                \n",
+       " [9203] \"202981_x_at\"                 \"201196_s_at\"                \n",
+       " [9205] \"203521_s_at\"                 \"203520_s_at\"                \n",
+       " [9207] \"204786_s_at\"                 \"204785_x_at\"                \n",
+       " [9209] \"200881_s_at\"                 \"200880_at\"                  \n",
+       " [9211] \"204026_s_at\"                 \"204736_s_at\"                \n",
+       " [9213] \"201759_at\"                   \"203220_s_at\"                \n",
+       " [9215] \"203221_at\"                   \"203222_s_at\"                \n",
+       " [9217] \"201318_s_at\"                 \"202747_s_at\"                \n",
+       " [9219] \"202746_at\"                   \"204701_s_at\"                \n",
+       " [9221] \"202960_s_at\"                 \"202959_at\"                  \n",
+       " [9223] \"201318_s_at\"                 \"204044_at\"                  \n",
+       " [9225] \"202368_s_at\"                 \"202369_s_at\"                \n",
+       " [9227] \"202601_s_at\"                 \"202602_s_at\"                \n",
+       " [9229] \"202951_at\"                   \"204126_s_at\"                \n",
+       " [9231] \"204457_s_at\"                 \"204456_s_at\"                \n",
+       " [9233] \"202105_at\"                   \"204440_at\"                  \n",
+       " [9235] \"205018_s_at\"                 \"205017_s_at\"                \n",
+       " [9237] \"203640_at\"                   \"200062_s_at\"                \n",
+       " [9239] \"203160_s_at\"                 \"203161_s_at\"                \n",
+       " [9241] \"204601_at\"                   \"203177_x_at\"                \n",
+       " [9243] \"203176_s_at\"                 \"201594_s_at\"                \n",
+       " [9245] \"204946_s_at\"                 \"201160_s_at\"                \n",
+       " [9247] \"201161_s_at\"                 \"201257_x_at\"                \n",
+       " [9249] \"200099_s_at\"                 \"201123_s_at\"                \n",
+       " [9251] \"204240_s_at\"                 \"205106_at\"                  \n",
+       " [9253] \"205134_s_at\"                 \"205135_s_at\"                \n",
+       " [9255] \"201798_s_at\"                 \"202438_x_at\"                \n",
+       " [9257] \"202439_s_at\"                 \"202188_at\"                  \n",
+       " [9259] \"204619_s_at\"                 \"204620_s_at\"                \n",
+       " [9261] \"203570_at\"                   \"205123_s_at\"                \n",
+       " [9263] \"205122_at\"                   \"205020_s_at\"                \n",
+       " [9265] \"204454_at\"                   \"205106_at\"                  \n",
+       " [9267] \"202438_x_at\"                 \"202439_s_at\"                \n",
+       " [9269] \"203082_at\"                   \"200046_at\"                  \n",
+       " [9271] \"204689_at\"                   \"203790_s_at\"                \n",
+       " [9273] \"205219_s_at\"                 \"202635_s_at\"                \n",
+       " [9275] \"202634_at\"                   \"202780_at\"                  \n",
+       " [9277] \"201412_at\"                   \"201061_s_at\"                \n",
+       " [9279] \"201060_x_at\"                 \"205465_x_at\"                \n",
+       " [9281] \"201423_s_at\"                 \"201424_s_at\"                \n",
+       " [9283] \"204058_at\"                   \"204059_s_at\"                \n",
+       " [9285] \"201069_at\"                   \"203793_x_at\"                \n",
+       " [9287] \"203792_x_at\"                 \"201081_s_at\"                \n",
+       " [9289] \"201080_at\"                   \"204103_at\"                  \n",
+       " [9291] \"204980_at\"                   \"203695_s_at\"                \n",
+       " [9293] \"205313_at\"                   \"203660_s_at\"                \n",
+       " [9295] \"204655_at\"                   \"203367_at\"                  \n",
+       " [9297] \"205114_s_at\"                 \"202899_s_at\"                \n",
+       " [9299] \"203479_s_at\"                 \"205392_s_at\"                \n",
+       " [9301] \"200002_at\"                   \"205350_at\"                  \n",
+       " [9303] \"202840_at\"                   \"204191_at\"                  \n",
+       " [9305] \"205392_s_at\"                 \"205123_s_at\"                \n",
+       " [9307] \"205122_at\"                   \"200012_x_at\"                \n",
+       " [9309] \"201400_at\"                   \"205114_s_at\"                \n",
+       " [9311] \"205114_s_at\"                 \"205114_s_at\"                \n",
+       " [9313] \"205114_s_at\"                 \"203726_s_at\"                \n",
+       " [9315] \"204739_at\"                   \"201086_x_at\"                \n",
+       " [9317] \"201085_s_at\"                 \"201196_s_at\"                \n",
+       " [9319] \"204093_at\"                   \"202593_s_at\"                \n",
+       " [9321] \"204271_s_at\"                 \"204273_at\"                  \n",
+       " [9323] \"202449_s_at\"                 \"202426_s_at\"                \n",
+       " [9325] \"200017_at\"                   \"203590_at\"                  \n",
+       " [9327] \"204124_at\"                   \"204082_at\"                  \n",
+       " [9329] \"203865_s_at\"                 \"204092_s_at\"                \n",
+       " [9331] \"205032_at\"                   \"201472_at\"                  \n",
+       " [9333] \"204400_at\"                   \"204166_at\"                  \n",
+       " [9335] \"205450_at\"                   \"201613_s_at\"                \n",
+       " [9337] \"204449_at\"                   \"204448_s_at\"                \n",
+       " [9339] \"201605_x_at\"                 \"203448_s_at\"                \n",
+       " [9341] \"202190_at\"                   \"202609_at\"                  \n",
+       " [9343] \"204749_at\"                   \"203383_s_at\"                \n",
+       " [9345] \"203384_s_at\"                 \"203448_s_at\"                \n",
+       " [9347] \"203859_s_at\"                 \"202820_at\"                  \n",
+       " [9349] \"202944_at\"                   \"202943_s_at\"                \n",
+       " [9351] \"202599_s_at\"                 \"202600_s_at\"                \n",
+       " [9353] \"203617_x_at\"                 \"203997_at\"                  \n",
+       " [9355] \"205295_at\"                   \"201666_at\"                  \n",
+       " [9357] \"204825_at\"                   \"205146_x_at\"                \n",
+       " [9359] \"201755_at\"                   \"204901_at\"                  \n",
+       " [9361] \"204697_s_at\"                 \"204160_s_at\"                \n",
+       " [9363] \"204161_s_at\"                 \"205136_s_at\"                \n",
+       " [9365] \"205134_s_at\"                 \"205135_s_at\"                \n",
+       " [9367] \"202318_s_at\"                 \"202319_at\"                  \n",
+       " [9369] \"202858_at\"                   \"200602_at\"                  \n",
+       " [9371] \"203665_at\"                   \"203819_s_at\"                \n",
+       " [9373] \"203820_s_at\"                 \"203239_s_at\"                \n",
+       " [9375] \"204669_s_at\"                 \"204668_at\"                  \n",
+       " [9377] \"201545_s_at\"                 \"204414_at\"                  \n",
+       " [9379] \"201470_at\"                   \"205326_at\"                  \n",
+       " [9381] \"202407_s_at\"                 \"202408_s_at\"                \n",
+       " [9383] \"202829_s_at\"                 \"201676_x_at\"                \n",
+       " [9385] \"201433_s_at\"                 \"202639_s_at\"                \n",
+       " [9387] \"202640_s_at\"                 \"201078_at\"                  \n",
+       " [9389] \"200725_x_at\"                 \"203239_s_at\"                \n",
+       " [9391] \"203262_s_at\"                 \"202032_s_at\"                \n",
+       " [9393] \"202990_at\"                   \"202407_s_at\"                \n",
+       " [9395] \"202408_s_at\"                 \"204933_s_at\"                \n",
+       " [9397] \"204932_at\"                   \"200873_s_at\"                \n",
+       " [9399] \"203623_at\"                   \"203524_s_at\"                \n",
+       " [9401] \"203644_s_at\"                 \"201964_at\"                  \n",
+       " [9403] \"201965_s_at\"                 \"204928_s_at\"                \n",
+       " [9405] \"204199_at\"                   \"204687_at\"                  \n",
+       " [9407] \"200870_at\"                   \"205399_at\"                  \n",
+       " [9409] \"203239_s_at\"                 \"202407_s_at\"                \n",
+       " [9411] \"202408_s_at\"                 \"204746_s_at\"                \n",
+       " [9413] \"204335_at\"                   \"205349_at\"                  \n",
+       " [9415] \"204501_at\"                   \"201853_s_at\"                \n",
+       " [9417] \"201981_at\"                   \"201982_s_at\"                \n",
+       " [9419] \"201748_s_at\"                 \"201747_s_at\"                \n",
+       " [9421] \"203288_at\"                   \"201134_x_at\"                \n",
+       " [9423] \"202350_s_at\"                 \"202461_at\"                  \n",
+       " [9425] \"204838_s_at\"                 \"205337_at\"                  \n",
+       " [9427] \"205338_s_at\"                 \"205260_s_at\"                \n",
+       " [9429] \"202661_at\"                   \"203196_at\"                  \n",
+       " [9431] \"204432_at\"                   \"200853_at\"                  \n",
+       " [9433] \"205382_s_at\"                 \"200929_at\"                  \n",
+       " [9435] \"200958_s_at\"                 \"201432_at\"                  \n",
+       " [9437] \"201103_x_at\"                 \"201104_x_at\"                \n",
+       " [9439] \"203239_s_at\"                 \"202673_at\"                  \n",
+       " [9441] \"202376_at\"                   \"202376_at\"                  \n",
+       " [9443] \"202232_s_at\"                 \"202231_at\"                  \n",
+       " [9445] \"201653_at\"                   \"205439_at\"                  \n",
+       " [9447] \"204502_at\"                   \"202929_s_at\"                \n",
+       " [9449] \"202407_s_at\"                 \"202408_s_at\"                \n",
+       " [9451] \"202624_s_at\"                 \"200809_x_at\"                \n",
+       " [9453] \"200088_x_at\"                 \"201293_x_at\"                \n",
+       " [9455] \"203110_at\"                   \"203111_s_at\"                \n",
+       " [9457] \"204728_s_at\"                 \"204727_at\"                  \n",
+       " [9459] \"205328_at\"                   \"204556_s_at\"                \n",
+       " [9461] \"204557_s_at\"                 \"204892_x_at\"                \n",
+       " [9463] \"204166_at\"                   \"202226_s_at\"                \n",
+       " [9465] \"202224_at\"                   \"202225_at\"                  \n",
+       " [9467] \"204051_s_at\"                 \"204052_s_at\"                \n",
+       " [9469] \"204591_at\"                   \"200886_s_at\"                \n",
+       " [9471] \"203274_at\"                   \"205029_s_at\"                \n",
+       " [9473] \"205030_at\"                   \"202407_s_at\"                \n",
+       " [9475] \"202408_s_at\"                 \"203239_s_at\"                \n",
+       " [9477] \"203970_s_at\"                 \"203972_s_at\"                \n",
+       " [9479] \"205363_at\"                   \"203174_s_at\"                \n",
+       " [9481] \"204402_at\"                   \"202279_at\"                  \n",
+       " [9483] \"204412_s_at\"                 \"205257_s_at\"                \n",
+       " [9485] \"203239_s_at\"                 \"204624_at\"                  \n",
+       " [9487] \"201195_s_at\"                 \"202407_s_at\"                \n",
+       " [9489] \"202408_s_at\"                 \"201833_at\"                  \n",
+       " [9491] \"204248_at\"                   \"203229_s_at\"                \n",
+       " [9493] \"200701_at\"                   \"201771_at\"                  \n",
+       " [9495] \"202874_s_at\"                 \"202872_at\"                  \n",
+       " [9497] \"202873_at\"                   \"203198_at\"                  \n",
+       " [9499] \"203550_s_at\"                 \"203239_s_at\"                \n",
+       " [9501] \"204608_at\"                   \"201575_at\"                  \n",
+       " [9503] \"203974_at\"                   \"204833_at\"                  \n",
+       " [9505] \"202945_at\"                   \"202407_s_at\"                \n",
+       " [9507] \"202408_s_at\"                 \"204342_at\"                  \n",
+       " [9509] \"201101_s_at\"                 \"201083_s_at\"                \n",
+       " [9511] \"201084_s_at\"                 \"201709_s_at\"                \n",
+       " [9513] \"201708_s_at\"                 \"203239_s_at\"                \n",
+       " [9515] \"202407_s_at\"                 \"202408_s_at\"                \n",
+       " [9517] \"203459_s_at\"                 \"203884_s_at\"                \n",
+       " [9519] \"203883_s_at\"                 \"202771_at\"                  \n",
+       " [9521] \"202034_x_at\"                 \"202033_s_at\"                \n",
+       " [9523] \"203206_at\"                   \"201599_at\"                  \n",
+       " [9525] \"204880_at\"                   \"201327_s_at\"                \n",
+       " [9527] \"201326_at\"                   \"201985_at\"                  \n",
+       " [9529] \"201357_s_at\"                 \"201356_at\"                  \n",
+       " [9531] \"201133_s_at\"                 \"202808_at\"                  \n",
+       " [9533] \"202808_at\"                   \"204480_s_at\"                \n",
+       " [9535] \"203687_at\"                   \"205151_s_at\"                \n",
+       " [9537] \"205150_s_at\"                 \"203166_at\"                  \n",
+       " [9539] \"201816_s_at\"                 \"203006_at\"                  \n",
+       " [9541] \"202604_x_at\"                 \"202603_at\"                  \n",
+       " [9543] \"204541_at\"                   \"204711_at\"                  \n",
+       " [9545] \"205048_s_at\"                 \"205194_at\"                  \n",
+       " [9547] \"200074_s_at\"                 \"202570_s_at\"                \n",
+       " [9549] \"202571_s_at\"                 \"202572_s_at\"                \n",
+       " [9551] \"203066_at\"                   \"204616_at\"                  \n",
+       " [9553] \"204068_at\"                   \"205147_x_at\"                \n",
+       " [9555] \"205336_at\"                   \"204735_at\"                  \n",
+       " [9557] \"202245_at\"                   \"204447_at\"                  \n",
+       " [9559] \"202289_s_at\"                 \"204750_s_at\"                \n",
+       " [9561] \"204751_x_at\"                 \"204529_s_at\"                \n",
+       " [9563] \"204530_s_at\"                 \"203878_s_at\"                \n",
+       " [9565] \"203876_s_at\"                 \"202407_s_at\"                \n",
+       " [9567] \"202408_s_at\"                 \"205431_s_at\"                \n",
+       " [9569] \"205430_at\"                   \"201296_s_at\"                \n",
+       " [9571] \"201295_s_at\"                 \"201294_s_at\"                \n",
+       " [9573] \"205439_at\"                   \"202929_s_at\"                \n",
+       " [9575] \"202929_s_at\"                 \"202929_s_at\"                \n",
+       " [9577] \"202798_at\"                   \"202110_at\"                  \n",
+       " [9579] \"203815_at\"                   \"203445_s_at\"                \n",
+       " [9581] \"204086_at\"                   \"205439_at\"                  \n",
+       " [9583] \"202895_s_at\"                 \"202896_s_at\"                \n",
+       " [9585] \"201584_s_at\"                 \"205158_at\"                  \n",
+       " [9587] \"203116_s_at\"                 \"203115_at\"                  \n",
+       " [9589] \"205158_at\"                   \"201785_at\"                  \n",
+       " [9591] \"204732_s_at\"                 \"203239_s_at\"                \n",
+       " [9593] \"201604_s_at\"                 \"201602_s_at\"                \n",
+       " [9595] \"201603_at\"                   \"205324_s_at\"                \n",
+       " [9597] \"202801_at\"                   \"202910_s_at\"                \n",
+       " [9599] \"202735_at\"                   \"203488_at\"                  \n",
+       " [9601] \"202212_at\"                   \"203628_at\"                  \n",
+       " [9603] \"203627_at\"                   \"204538_x_at\"                \n",
+       " [9605] \"203761_at\"                   \"203760_s_at\"                \n",
+       " [9607] \"204154_at\"                   \"202001_s_at\"                \n",
+       " [9609] \"202000_at\"                   \"201799_s_at\"                \n",
+       " [9611] \"201800_s_at\"                 \"204267_x_at\"                \n",
+       " [9613] \"202789_at\"                   \"205281_s_at\"                \n",
+       " [9615] \"200038_s_at\"                 \"201844_s_at\"                \n",
+       " [9617] \"201845_s_at\"                 \"201846_s_at\"                \n",
+       " [9619] \"200945_s_at\"                 \"205149_s_at\"                \n",
+       " [9621] \"205148_s_at\"                 \"202209_at\"                  \n",
+       " [9623] \"204362_at\"                   \"204361_s_at\"                \n",
+       " [9625] \"201047_x_at\"                 \"200775_s_at\"                \n",
+       " [9627] \"200097_s_at\"                 \"205141_at\"                  \n",
+       " [9629] \"205158_at\"                   \"202693_s_at\"                \n",
+       " [9631] \"202694_at\"                   \"202695_s_at\"                \n",
+       " [9633] \"201002_s_at\"                 \"201001_s_at\"                \n",
+       " [9635] \"202807_s_at\"                 \"204790_at\"                  \n",
+       " [9637] \"201642_at\"                   \"202282_at\"                  \n",
+       " [9639] \"201722_s_at\"                 \"201723_s_at\"                \n",
+       " [9641] \"201724_s_at\"                 \"204083_s_at\"                \n",
+       " [9643] \"202716_at\"                   \"201942_s_at\"                \n",
+       " [9645] \"201941_at\"                   \"201943_s_at\"                \n",
+       " [9647] \"201940_at\"                   \"201389_at\"                  \n",
+       " [9649] \"202836_s_at\"                 \"202835_at\"                  \n",
+       " [9651] \"202001_s_at\"                 \"202000_at\"                  \n",
+       " [9653] \"203845_at\"                   \"203829_at\"                  \n",
+       " [9655] \"202179_at\"                   \"202509_s_at\"                \n",
+       " [9657] \"202510_s_at\"                 \"203834_s_at\"                \n",
+       " [9659] \"203833_s_at\"                 \"205252_at\"                  \n",
+       " [9661] \"200709_at\"                   \"203321_s_at\"                \n",
+       " [9663] \"203322_at\"                   \"204938_s_at\"                \n",
+       " [9665] \"204939_s_at\"                 \"204940_at\"                  \n",
+       " [9667] \"203771_s_at\"                 \"203773_x_at\"                \n",
+       " [9669] \"203180_at\"                   \"202809_s_at\"                \n",
+       " [9671] \"203169_at\"                   \"203851_at\"                  \n",
+       " [9673] \"201492_s_at\"                 \"201672_s_at\"                \n",
+       " [9675] \"201671_x_at\"                 \"202809_s_at\"                \n",
+       " [9677] \"203895_at\"                   \"203896_s_at\"                \n",
+       " [9679] \"200837_at\"                   \"203489_at\"                  \n",
+       " [9681] \"204005_s_at\"                 \"204004_at\"                  \n",
+       " [9683] \"203122_at\"                   \"202442_at\"                  \n",
+       " [9685] \"204473_s_at\"                 \"205142_x_at\"                \n",
+       " [9687] \"204216_s_at\"                 \"203039_s_at\"                \n",
+       " [9689] \"200803_s_at\"                 \"200804_at\"                  \n",
+       " [9691] \"202710_at\"                   \"200705_s_at\"                \n",
+       " [9693] \"203338_at\"                   \"201185_at\"                  \n",
+       " [9695] \"204383_at\"                   \"204162_at\"                  \n",
+       " [9697] \"204918_s_at\"                 \"204917_s_at\"                \n",
+       " [9699] \"202712_s_at\"                 \"204576_s_at\"                \n",
+       " [9701] \"204577_s_at\"                 \"200615_s_at\"                \n",
+       " [9703] \"200612_s_at\"                 \"203276_at\"                  \n",
+       " [9705] \"202993_at\"                   \"203129_s_at\"                \n",
+       " [9707] \"201668_x_at\"                 \"201669_s_at\"                \n",
+       " [9709] \"201670_s_at\"                 \"201310_s_at\"                \n",
+       " [9711] \"201309_x_at\"                 \"201310_s_at\"                \n",
+       " [9713] \"201309_x_at\"                 \"201004_at\"                  \n",
+       " [9715] \"202144_s_at\"                 \"202345_s_at\"                \n",
+       " [9717] \"204584_at\"                   \"204585_s_at\"                \n",
+       " [9719] \"201391_at\"                   \"202712_s_at\"                \n",
+       " [9721] \"204207_s_at\"                 \"204208_at\"                  \n",
+       " [9723] \"201398_s_at\"                 \"201399_s_at\"                \n",
+       " [9725] \"202001_s_at\"                 \"202000_at\"                  \n",
+       " [9727] \"200674_s_at\"                 \"201506_at\"                  \n",
+       " [9729] \"203406_at\"                   \"204297_at\"                  \n",
+       " [9731] \"204993_at\"                   \"205441_at\"                  \n",
+       " [9733] \"203673_at\"                   \"202315_s_at\"                \n",
+       " [9735] \"204064_at\"                   \"200921_s_at\"                \n",
+       " [9737] \"200920_s_at\"                 \"202470_s_at\"                \n",
+       " [9739] \"202469_s_at\"                 \"200730_s_at\"                \n",
+       " [9741] \"200733_s_at\"                 \"200732_s_at\"                \n",
+       " [9743] \"200731_s_at\"                 \"202001_s_at\"                \n",
+       " [9745] \"202000_at\"                   \"200689_x_at\"                \n",
+       " [9747] \"203969_at\"                   \"205164_at\"                  \n",
+       " [9749] \"201492_s_at\"                 \"202473_x_at\"                \n",
+       " [9751] \"202474_s_at\"                 \"203367_at\"                  \n",
+       " [9753] \"200863_s_at\"                 \"200864_s_at\"                \n",
+       " [9755] \"203138_at\"                   \"204123_at\"                  \n",
+       " [9757] \"203339_at\"                   \"203340_s_at\"                \n",
+       " [9759] \"204340_at\"                   \"205217_at\"                  \n",
+       " [9761] \"202511_s_at\"                 \"202512_s_at\"                \n",
+       " [9763] \"201406_at\"                   \"201406_at\"                  \n",
+       " [9765] \"201132_at\"                   \"204836_at\"                  \n",
+       " [9767] \"205007_s_at\"                 \"205008_s_at\"                \n",
+       " [9769] \"204145_at\"                   \"201257_x_at\"                \n",
+       " [9771] \"200099_s_at\"                 \"202219_at\"                  \n",
+       " [9773] \"200689_x_at\"                 \"202069_s_at\"                \n",
+       " [9775] \"202070_s_at\"                 \"205138_s_at\"                \n",
+       " [9777] \"205139_s_at\"                 \"202783_at\"                  \n",
+       " [9779] \"202784_s_at\"                 \"205451_at\"                  \n",
+       " [9781] \"203430_at\"                   \"204224_s_at\"                \n",
+       " [9783] \"200793_s_at\"                 \"204145_at\"                  \n",
+       " [9785] \"203103_s_at\"                 \"204973_at\"                  \n",
+       " [9787] \"204822_at\"                   \"200680_x_at\"                \n",
+       " [9789] \"204189_at\"                   \"204188_s_at\"                \n",
+       " [9791] \"202758_s_at\"                 \"203755_at\"                  \n",
+       " [9793] \"203484_at\"                   \"203556_at\"                  \n",
+       " [9795] \"204823_at\"                   \"203758_at\"                  \n",
+       " [9797] \"205355_at\"                   \"204132_s_at\"                \n",
+       " [9799] \"204131_s_at\"                 \"200717_x_at\"                \n",
+       " [9801] \"204045_at\"                   \"201994_at\"                  \n",
+       " [9803] \"201863_at\"                   \"203377_s_at\"                \n",
+       " [9805] \"203376_at\"                   \"203501_at\"                  \n",
+       " [9807] \"202605_at\"                   \"205423_at\"                  \n",
+       " [9809] \"201136_at\"                   \"201999_s_at\"                \n",
+       " [9811] \"201818_at\"                   \"203152_at\"                  \n",
+       " [9813] \"202589_at\"                   \"204873_at\"                  \n",
+       " [9815] \"203207_s_at\"                 \"203208_s_at\"                \n",
+       " [9817] \"201040_at\"                   \"204143_s_at\"                \n",
+       " [9819] \"204142_at\"                   \"202375_at\"                  \n",
+       " [9821] \"203709_at\"                   \"205143_at\"                  \n",
+       " [9823] \"203944_x_at\"                 \"202579_x_at\"                \n",
+       " [9825] \"203412_at\"                   \"205052_at\"                  \n",
+       " [9827] \"204860_s_at\"                 \"203362_s_at\"                \n",
+       " [9829] \"203852_s_at\"                 \"203852_s_at\"                \n",
+       " [9831] \"202391_at\"                   \"203968_s_at\"                \n",
+       " [9833] \"203967_at\"                   \"204861_s_at\"                \n",
+       " [9835] \"204860_s_at\"                 \"203852_s_at\"                \n",
+       " [9837] \"202202_s_at\"                 \"202425_x_at\"                \n",
+       " [9839] \"202457_s_at\"                 \"202429_s_at\"                \n",
+       " [9841] \"205188_s_at\"                 \"205187_at\"                  \n",
+       " [9843] \"201388_at\"                   \"205124_at\"                  \n",
+       " [9845] \"202847_at\"                   \"203530_s_at\"                \n",
+       " [9847] \"203246_s_at\"                 \"203038_at\"                  \n",
+       " [9849] \"201886_at\"                   \"203031_s_at\"                \n",
+       " [9851] \"203401_at\"                   \"203620_s_at\"                \n",
+       " [9853] \"202486_at\"                   \"204876_at\"                  \n",
+       " [9855] \"203131_at\"                   \"205035_at\"                  \n",
+       " [9857] \"202030_at\"                   \"205086_s_at\"                \n",
+       " [9859] \"202230_s_at\"                 \"202229_s_at\"                \n",
+       " [9861] \"200814_at\"                   \"204608_at\"                  \n",
+       " [9863] \"203899_s_at\"                 \"203106_s_at\"                \n",
+       " [9865] \"201703_s_at\"                 \"201702_s_at\"                \n",
+       " [9867] \"201458_s_at\"                 \"201457_x_at\"                \n",
+       " [9869] \"201456_s_at\"                 \"200800_s_at\"                \n",
+       " [9871] \"200799_at\"                   \"204265_s_at\"                \n",
+       " [9873] \"205244_s_at\"                 \"205243_at\"                  \n",
+       " [9875] \"202262_x_at\"                 \"202696_at\"                  \n",
+       " [9877] \"202307_s_at\"                 \"202525_at\"                  \n",
+       " [9879] \"203307_at\"                   \"202242_at\"                  \n",
+       " [9881] \"205241_at\"                   \"204858_s_at\"                \n",
+       " [9883] \"203062_s_at\"                 \"203061_s_at\"                \n",
+       " [9885] \"202114_at\"                   \"202113_s_at\"                \n",
+       " [9887] \"204858_s_at\"                 \"201255_x_at\"                \n",
+       " [9889] \"201500_s_at\"                 \"201762_s_at\"                \n",
+       " [9891] \"204279_at\"                   \"203146_s_at\"                \n",
+       " [9893] \"201500_s_at\"                 \"205045_at\"                  \n",
+       " [9895] \"200045_at\"                   \"203146_s_at\"                \n",
+       " [9897] \"202036_s_at\"                 \"202035_s_at\"                \n",
+       " [9899] \"202037_s_at\"                 \"202702_at\"                  \n",
+       " [9901] \"204795_at\"                   \"201137_s_at\"                \n",
+       " [9903] \"203272_s_at\"                 \"203273_s_at\"                \n",
+       " [9905] \"201796_s_at\"                 \"201797_s_at\"                \n",
+       " [9907] \"203932_at\"                   \"204944_at\"                  \n",
+       " [9909] \"203882_at\"                   \"203694_s_at\"                \n",
+       " [9911] \"201631_s_at\"                 \"201255_x_at\"                \n",
+       " [9913] \"202326_at\"                   \"205347_s_at\"                \n",
+       " [9915] \"205090_s_at\"                 \"202241_at\"                  \n",
+       " [9917] \"204806_x_at\"                 \"201074_at\"                  \n",
+       " [9919] \"201072_s_at\"                 \"201075_s_at\"                \n",
+       " [9921] \"201073_s_at\"                 \"200750_s_at\"                \n",
+       " [9923] \"200765_x_at\"                 \"200764_s_at\"                \n",
+       " [9925] \"204795_at\"                   \"203577_at\"                  \n",
+       " [9927] \"200041_s_at\"                 \"203122_at\"                  \n",
+       " [9929] \"203168_at\"                   \"203299_s_at\"                \n",
+       " [9931] \"203300_x_at\"                 \"201703_s_at\"                \n",
+       " [9933] \"201702_s_at\"                 \"204770_at\"                  \n",
+       " [9935] \"204769_s_at\"                 \"202307_s_at\"                \n",
+       " [9937] \"201390_s_at\"                 \"203577_at\"                  \n",
+       " [9939] \"204319_s_at\"                 \"204316_at\"                  \n",
+       " [9941] \"204522_at\"                   \"204770_at\"                  \n",
+       " [9943] \"204769_s_at\"                 \"204860_s_at\"                \n",
+       " [9945] \"204861_s_at\"                 \"202168_at\"                  \n",
+       " [9947] \"202757_at\"                   \"204968_at\"                  \n",
+       " [9949] \"200041_s_at\"                 \"204408_at\"                  \n",
+       " [9951] \"204193_at\"                   \"200750_s_at\"                \n",
+       " [9953] \"202973_x_at\"                 \"202972_s_at\"                \n",
+       " [9955] \"200800_s_at\"                 \"202581_at\"                  \n",
+       " [9957] \"201753_s_at\"                 \"201752_s_at\"                \n",
+       " [9959] \"201034_at\"                   \"204193_at\"                  \n",
+       " [9961] \"203307_at\"                   \"201002_s_at\"                \n",
+       " [9963] \"201001_s_at\"                 \"201631_s_at\"                \n",
+       " [9965] \"203290_at\"                   \"203290_at\"                  \n",
+       " [9967] \"200905_x_at\"                 \"200904_at\"                  \n",
+       " [9969] \"203052_at\"                   \"203694_s_at\"                \n",
+       " [9971] \"204165_at\"                   \"202667_s_at\"                \n",
+       " [9973] \"203893_at\"                   \"203852_s_at\"                \n",
+       " [9975] \"203852_s_at\"                 \"205247_at\"                  \n",
+       " [9977] \"204326_x_at\"                 \"205050_s_at\"                \n",
+       " [9979] \"203168_at\"                   \"200859_x_at\"                \n",
+       " [9981] \"201257_x_at\"                 \"200099_s_at\"                \n",
+       " [9983] \"203577_at\"                   \"202262_x_at\"                \n",
+       " [9985] \"202702_at\"                   \"203052_at\"                  \n",
+       " [9987] \"203062_s_at\"                 \"203061_s_at\"                \n",
+       " [9989] \"203577_at\"                   \"204443_at\"                  \n",
+       " [9991] \"201796_s_at\"                 \"201797_s_at\"                \n",
+       " [9993] \"205247_at\"                   \"203062_s_at\"                \n",
+       " [9995] \"203061_s_at\"                 \"201049_s_at\"                \n",
+       " [9997] \"202628_s_at\"                 \"202627_s_at\"                \n",
+       " [9999] \"200883_at\"                   \"200800_s_at\"                \n",
+       "[10001] \"200799_at\"                   \"202491_s_at\"                \n",
+       "[10003] \"202490_at\"                   \"203168_at\"                  \n",
+       "[10005] \"200905_x_at\"                 \"200904_at\"                  \n",
+       "[10007] \"201049_s_at\"                 \"204806_x_at\"                \n",
+       "[10009] \"202262_x_at\"                 \"200800_s_at\"                \n",
+       "[10011] \"202581_at\"                   \"201390_s_at\"                \n",
+       "[10013] \"202667_s_at\"                 \"203577_at\"                  \n",
+       "[10015] \"200082_s_at\"                 \"204795_at\"                  \n",
+       "[10017] \"202702_at\"                   \"201137_s_at\"                \n",
+       "[10019] \"201293_x_at\"                 \"203727_at\"                  \n",
+       "[10021] \"202167_s_at\"                 \"202787_s_at\"                \n",
+       "[10023] \"202788_at\"                   \"204090_at\"                  \n",
+       "[10025] \"202667_s_at\"                 \"201390_s_at\"                \n",
+       "[10027] \"202357_s_at\"                 \"202875_s_at\"                \n",
+       "[10029] \"202876_s_at\"                 \"204265_s_at\"                \n",
+       "[10031] \"201840_at\"                   \"203727_at\"                  \n",
+       "[10033] \"200036_s_at\"                 \"204968_at\"                  \n",
+       "[10035] \"203052_at\"                   \"204482_at\"                  \n",
+       "[10037] \"203282_at\"                   \"203750_s_at\"                \n",
+       "[10039] \"203749_s_at\"                 \"205091_x_at\"                \n",
+       "[10041] \"204806_x_at\"                 \"201763_s_at\"                \n",
+       "[10043] \"201763_s_at\"                 \"203063_at\"                  \n",
+       "[10045] \"201206_s_at\"                 \"201204_s_at\"                \n",
+       "[10047] \"201203_s_at\"                 \"202357_s_at\"                \n",
+       "[10049] \"200876_s_at\"                 \"201113_at\"                  \n",
+       "[10051] \"203146_s_at\"                 \"203307_at\"                  \n",
+       "[10053] \"203694_s_at\"                 \"203047_at\"                  \n",
+       "[10055] \"204770_at\"                   \"204769_s_at\"                \n",
+       "[10057] \"201113_at\"                   \"201390_s_at\"                \n",
+       "[10059] \"200045_at\"                   \"202326_at\"                  \n",
+       "[10061] \"204300_at\"                   \"203932_at\"                  \n",
+       "[10063] \"202875_s_at\"                 \"202876_s_at\"                \n",
+       "[10065] \"201631_s_at\"                 \"205124_at\"                  \n",
+       "[10067] \"205124_at\"                   \"204279_at\"                  \n",
+       "[10069] \"204670_x_at\"                 \"201390_s_at\"                \n",
+       "[10071] \"204140_at\"                   \"205047_s_at\"                \n",
+       "[10073] \"201430_s_at\"                 \"201431_s_at\"                \n",
+       "[10075] \"204090_at\"                   \"200725_x_at\"                \n",
+       "[10077] \"200724_at\"                   \"203001_s_at\"                \n",
+       "[10079] \"203000_at\"                   \"204894_s_at\"                \n",
+       "[10081] \"201703_s_at\"                 \"201702_s_at\"                \n",
+       "[10083] \"200800_s_at\"                 \"202581_at\"                  \n",
+       "[10085] \"203146_s_at\"                 \"203577_at\"                  \n",
+       "[10087] \"201589_at\"                   \"202145_at\"                  \n",
+       "[10089] \"202991_at\"                   \"200045_at\"                  \n",
+       "[10091] \"205259_at\"                   \"203909_at\"                  \n",
+       "[10093] \"202468_s_at\"                 \"201500_s_at\"                \n",
+       "[10095] \"201751_at\"                   \"200905_x_at\"                \n",
+       "[10097] \"200904_at\"                   \"202307_s_at\"                \n",
+       "[10099] \"202307_s_at\"                 \"201500_s_at\"                \n",
+       "[10101] \"203932_at\"                   \"201796_s_at\"                \n",
+       "[10103] \"201797_s_at\"                 \"205305_at\"                  \n",
+       "[10105] \"200041_s_at\"                 \"200800_s_at\"                \n",
+       "[10107] \"200799_at\"                   \"201255_x_at\"                \n",
+       "[10109] \"203932_at\"                   \"203307_at\"                  \n",
+       "[10111] \"203615_x_at\"                 \"201763_s_at\"                \n",
+       "[10113] \"201763_s_at\"                 \"203062_s_at\"                \n",
+       "[10115] \"203061_s_at\"                 \"201137_s_at\"                \n",
+       "[10117] \"201177_s_at\"                 \"204877_s_at\"                \n",
+       "[10119] \"204986_s_at\"                 \"204878_s_at\"                \n",
+       "[10121] \"204522_at\"                   \"204204_at\"                  \n",
+       "[10123] \"202326_at\"                   \"204968_at\"                  \n",
+       "[10125] \"201508_at\"                   \"205247_at\"                  \n",
+       "[10127] \"204770_at\"                   \"204769_s_at\"                \n",
+       "[10129] \"203168_at\"                   \"204504_s_at\"                \n",
+       "[10131] \"204179_at\"                   \"202702_at\"                  \n",
+       "[10133] \"200750_s_at\"                 \"202770_s_at\"                \n",
+       "[10135] \"202769_at\"                   \"201137_s_at\"                \n",
+       "[10137] \"204279_at\"                   \"202875_s_at\"                \n",
+       "[10139] \"202876_s_at\"                 \"203503_s_at\"                \n",
+       "[10141] \"204279_at\"                   \"204028_s_at\"                \n",
+       "[10143] \"200720_s_at\"                 \"200721_s_at\"                \n",
+       "[10145] \"200041_s_at\"                 \"204172_at\"                  \n",
+       "[10147] \"204265_s_at\"                 \"202381_at\"                  \n",
+       "[10149] \"203113_s_at\"                 \"204517_at\"                  \n",
+       "[10151] \"204518_s_at\"                 \"205374_at\"                  \n",
+       "[10153] \"204025_s_at\"                 \"204215_at\"                  \n",
+       "[10155] \"201644_at\"                   \"203798_s_at\"                \n",
+       "[10157] \"203797_at\"                   \"203531_at\"                  \n",
+       "[10159] \"203532_x_at\"                 \"203533_s_at\"                \n",
+       "[10161] \"202904_s_at\"                 \"202903_at\"                  \n",
+       "[10163] \"204148_s_at\"                 \"204429_s_at\"                \n",
+       "[10165] \"204430_s_at\"                 \"200779_at\"                  \n",
+       "[10167] \"205159_at\"                   \"202884_s_at\"                \n",
+       "[10169] \"202885_s_at\"                 \"202883_s_at\"                \n",
+       "[10171] \"202886_s_at\"                 \"200057_s_at\"                \n",
+       "[10173] \"205196_s_at\"                 \"205195_at\"                  \n",
+       "[10175] \"204184_s_at\"                 \"204183_s_at\"                \n",
+       "[10177] \"202085_at\"                   \"202185_at\"                  \n",
+       "[10179] \"203804_s_at\"                 \"202085_at\"                  \n",
+       "[10181] \"204404_at\"                   \"204201_s_at\"                \n",
+       "[10183] \"200089_s_at\"                 \"201519_at\"                  \n",
+       "[10185] \"201512_s_at\"                 \"204765_at\"                  \n",
+       "[10187] \"200823_x_at\"                 \"200012_x_at\"                \n",
+       "[10189] \"203722_at\"                   \"201218_at\"                  \n",
+       "[10191] \"203034_s_at\"                 \"202382_s_at\"                \n",
+       "[10193] \"204760_s_at\"                 \"202728_s_at\"                \n",
+       "[10195] \"202729_s_at\"                 \"203585_at\"                  \n",
+       "[10197] \"202296_s_at\"                 \"202297_s_at\"                \n",
+       "[10199] \"203342_at\"                   \"201500_s_at\"                \n",
+       "[10201] \"204269_at\"                   \"200931_s_at\"                \n",
+       "[10203] \"200930_s_at\"                 \"203615_x_at\"                \n",
+       "[10205] \"203932_at\"                   \"204931_at\"                  \n",
+       "[10207] \"200772_x_at\"                 \"200773_x_at\"                \n",
+       "[10209] \"201796_s_at\"                 \"201797_s_at\"                \n",
+       "[10211] \"202256_at\"                   \"202257_s_at\"                \n",
+       "[10213] \"202967_at\"                   \"201532_at\"                  \n",
+       "[10215] \"202326_at\"                   \"202262_x_at\"                \n",
+       "[10217] \"204806_x_at\"                 \"203307_at\"                  \n",
+       "[10219] \"203615_x_at\"                 \"203615_x_at\"                \n",
+       "[10221] \"202875_s_at\"                 \"202876_s_at\"                \n",
+       "[10223] \"203756_at\"                   \"203456_at\"                  \n",
+       "[10225] \"203456_at\"                   \"205062_x_at\"                \n",
+       "[10227] \"203168_at\"                   \"203178_at\"                  \n",
+       "[10229] \"203168_at\"                   \"203776_at\"                  \n",
+       "[10231] \"203241_at\"                   \"201255_x_at\"                \n",
+       "[10233] \"204115_at\"                   \"203789_s_at\"                \n",
+       "[10235] \"203788_s_at\"                 \"201763_s_at\"                \n",
+       "[10237] \"201763_s_at\"                 \"203577_at\"                  \n",
+       "[10239] \"200905_x_at\"                 \"200904_at\"                  \n",
+       "[10241] \"203577_at\"                   \"200748_s_at\"                \n",
+       "[10243] \"203062_s_at\"                 \"203061_s_at\"                \n",
+       "[10245] \"204301_at\"                   \"202357_s_at\"                \n",
+       "[10247] \"204744_s_at\"                 \"204522_at\"                  \n",
+       "[10249] \"202533_s_at\"                 \"202532_s_at\"                \n",
+       "[10251] \"202534_x_at\"                 \"201703_s_at\"                \n",
+       "[10253] \"201702_s_at\"                 \"205247_at\"                  \n",
+       "[10255] \"204795_at\"                   \"204835_at\"                  \n",
+       "[10257] \"204279_at\"                   \"202720_at\"                  \n",
+       "[10259] \"202719_s_at\"                 \"203052_at\"                  \n",
+       "[10261] \"204090_at\"                   \"202344_at\"                  \n",
+       "[10263] \"200705_s_at\"                 \"204706_at\"                  \n",
+       "[10265] \"203146_s_at\"                 \"202303_x_at\"                \n",
+       "[10267] \"203554_x_at\"                 \"202745_at\"                  \n",
+       "[10269] \"200716_x_at\"                 \"203669_s_at\"                \n",
+       "[10271] \"202307_s_at\"                 \"203476_at\"                  \n",
+       "[10273] \"203263_s_at\"                 \"203264_s_at\"                \n",
+       "[10275] \"205271_s_at\"                 \"202097_at\"                  \n",
+       "[10277] \"201843_s_at\"                 \"201842_s_at\"                \n",
+       "[10279] \"201876_at\"                   \"203727_at\"                  \n",
+       "[10281] \"203959_s_at\"                 \"203958_s_at\"                \n",
+       "[10283] \"203669_s_at\"                 \"200647_x_at\"                \n",
+       "[10285] \"204500_s_at\"                 \"203646_at\"                  \n",
+       "[10287] \"203647_s_at\"                 \"205069_s_at\"                \n",
+       "[10289] \"205068_s_at\"                 \"201049_s_at\"                \n",
+       "[10291] \"204282_s_at\"                 \"204283_at\"                  \n",
+       "[10293] \"202504_at\"                   \"200647_x_at\"                \n",
+       "[10295] \"204265_s_at\"                 \"201390_s_at\"                \n",
+       "[10297] \"201951_at\"                   \"201952_at\"                  \n",
+       "[10299] \"201830_s_at\"                 \"201829_at\"                  \n",
+       "[10301] \"200045_at\"                   \"202591_s_at\"                \n",
+       "[10303] \"202485_s_at\"                 \"202484_s_at\"                \n",
+       "[10305] \"204968_at\"                   \"205440_s_at\"                \n",
+       "[10307] \"201639_s_at\"                 \"201638_s_at\"                \n",
+       "[10309] \"203052_at\"                   \"203694_s_at\"                \n",
+       "[10311] \"201137_s_at\"                 \"202702_at\"                  \n",
+       "[10313] \"200041_s_at\"                 \"200008_s_at\"                \n",
+       "[10315] \"200009_at\"                   \"203577_at\"                  \n",
+       "[10317] \"200905_x_at\"                 \"200904_at\"                  \n",
+       "[10319] \"204688_at\"                   \"201977_s_at\"                \n",
+       "[10321] \"201978_s_at\"                 \"203243_s_at\"                \n",
+       "[10323] \"203242_s_at\"                 \"201333_s_at\"                \n",
+       "[10325] \"201334_s_at\"                 \"201335_s_at\"                \n",
+       "[10327] \"202667_s_at\"                 \"202262_x_at\"                \n",
+       "[10329] \"204770_at\"                   \"204769_s_at\"                \n",
+       "[10331] \"203146_s_at\"                 \"204090_at\"                  \n",
+       "[10333] \"201639_s_at\"                 \"201721_s_at\"                \n",
+       "[10335] \"201720_s_at\"                 \"204144_s_at\"                \n",
+       "[10337] \"201007_at\"                   \"204279_at\"                  \n",
+       "[10339] \"200750_s_at\"                 \"201255_x_at\"                \n",
+       "[10341] \"203062_s_at\"                 \"203061_s_at\"                \n",
+       "[10343] \"200041_s_at\"                 \"204378_at\"                  \n",
+       "[10345] \"203694_s_at\"                 \"204279_at\"                  \n",
+       "[10347] \"204740_at\"                   \"201703_s_at\"                \n",
+       "[10349] \"201702_s_at\"                 \"205444_at\"                  \n",
+       "[10351] \"201390_s_at\"                 \"205402_x_at\"                \n",
+       "[10353] \"201500_s_at\"                 \"202667_s_at\"                \n",
+       "[10355] \"204718_at\"                   \"201631_s_at\"                \n",
+       "[10357] \"201946_s_at\"                 \"201947_s_at\"                \n",
+       "[10359] \"203307_at\"                   \"204968_at\"                  \n",
+       "[10361] \"203727_at\"                   \"202357_s_at\"                \n",
+       "[10363] \"200045_at\"                   \"202305_s_at\"                \n",
+       "[10365] \"203509_at\"                   \"202326_at\"                  \n",
+       "[10367] \"200800_s_at\"                 \"200799_at\"                  \n",
+       "[10369] \"204090_at\"                   \"204465_s_at\"                \n",
+       "[10371] \"202357_s_at\"                 \"201703_s_at\"                \n",
+       "[10373] \"201702_s_at\"                 \"204770_at\"                  \n",
+       "[10375] \"204769_s_at\"                 \"204522_at\"                  \n",
+       "[10377] \"200959_at\"                   \"201415_at\"                  \n",
+       "[10379] \"203932_at\"                   \"203721_s_at\"                \n",
+       "[10381] \"202875_s_at\"                 \"202876_s_at\"                \n",
+       "[10383] \"205100_at\"                   \"204770_at\"                  \n",
+       "[10385] \"204769_s_at\"                 \"203932_at\"                  \n",
+       "[10387] \"202262_x_at\"                 \"203294_s_at\"                \n",
+       "[10389] \"203293_s_at\"                 \"200041_s_at\"                \n",
+       "[10391] \"200882_s_at\"                 \"204806_x_at\"                \n",
+       "[10393] \"202702_at\"                   \"201049_s_at\"                \n",
+       "[10395] \"202928_s_at\"                 \"205117_at\"                  \n",
+       "[10397] \"204968_at\"                   \"205372_at\"                  \n",
+       "[10399] \"202307_s_at\"                 \"203694_s_at\"                \n",
+       "[10401] \"203609_s_at\"                 \"203608_at\"                  \n",
+       "[10403] \"200905_x_at\"                 \"200904_at\"                  \n",
+       "[10405] \"204090_at\"                   \"201137_s_at\"                \n",
+       "[10407] \"204795_at\"                   \"203052_at\"                  \n",
+       "[10409] \"204265_s_at\"                 \"204806_x_at\"                \n",
+       "[10411] \"200632_s_at\"                 \"202898_at\"                  \n",
+       "[10413] \"204265_s_at\"                 \"203307_at\"                  \n",
+       "[10415] \"202702_at\"                   \"201631_s_at\"                \n",
+       "[10417] \"201453_x_at\"                 \"205232_s_at\"                \n",
+       "[10419] \"205233_s_at\"                 \"200045_at\"                  \n",
+       "[10421] \"201137_s_at\"                 \"201268_at\"                  \n",
+       "[10423] \"201577_at\"                   \"200800_s_at\"                \n",
+       "[10425] \"202581_at\"                   \"202266_at\"                  \n",
+       "[10427] \"203577_at\"                   \"200041_s_at\"                \n",
+       "[10429] \"204565_at\"                   \"202211_at\"                  \n",
+       "[10431] \"201302_at\"                   \"201301_s_at\"                \n",
+       "[10433] \"201539_s_at\"                 \"201540_at\"                  \n",
+       "[10435] \"202875_s_at\"                 \"202876_s_at\"                \n",
+       "[10437] \"204670_x_at\"                 \"205027_s_at\"                \n",
+       "[10439] \"201763_s_at\"                 \"201763_s_at\"                \n",
+       "[10441] \"204795_at\"                   \"201885_s_at\"                \n",
+       "[10443] \"200071_at\"                   \"202307_s_at\"                \n",
+       "[10445] \"204485_s_at\"                 \"205247_at\"                  \n",
+       "[10447] \"201796_s_at\"                 \"201797_s_at\"                \n",
+       "[10449] \"205231_s_at\"                 \"202326_at\"                  \n",
+       "[10451] \"201390_s_at\"                 \"205247_at\"                  \n",
+       "[10453] \"201858_s_at\"                 \"201859_at\"                  \n",
+       "[10455] \"200750_s_at\"                 \"203727_at\"                  \n",
+       "[10457] \"203074_at\"                   \"201255_x_at\"                \n",
+       "[10459] \"203656_at\"                   \"203290_at\"                  \n",
+       "[10461] \"204138_s_at\"                 \"204139_x_at\"                \n",
+       "[10463] \"201500_s_at\"                 \"201716_at\"                  \n",
+       "[10465] \"203885_at\"                   \"203062_s_at\"                \n",
+       "[10467] \"203061_s_at\"                 \"204522_at\"                  \n",
+       "[10469] \"205283_at\"                   \"201256_at\"                  \n",
+       "[10471] \"204570_at\"                   \"201143_s_at\"                \n",
+       "[10473] \"201144_s_at\"                 \"201142_at\"                  \n",
+       "[10475] \"204187_at\"                   \"203436_at\"                  \n",
+       "[10477] \"203562_at\"                   \"203562_at\"                  \n",
+       "[10479] \"203320_at\"                   \"202704_at\"                  \n",
+       "[10481] \"205364_at\"                   \"203961_at\"                  \n",
+       "[10483] \"203962_s_at\"                 \"204175_at\"                  \n",
+       "[10485] \"204657_s_at\"                 \"203499_at\"                  \n",
+       "[10487] \"203187_at\"                   \"200005_at\"                  \n",
+       "[10489] \"202459_s_at\"                 \"202460_s_at\"                \n",
+       "[10491] \"203615_x_at\"                 \"203615_x_at\"                \n",
+       "[10493] \"202223_at\"                   \"203508_at\"                  \n",
+       "[10495] \"202562_s_at\"                 \"202563_at\"                  \n",
+       "[10497] \"201865_x_at\"                 \"201866_s_at\"                \n",
+       "[10499] \"204810_s_at\"                 \"204656_at\"                  \n",
+       "[10501] \"204657_s_at\"                 \"201177_s_at\"                \n",
+       "[10503] \"202316_x_at\"                 \"202317_s_at\"                \n",
+       "[10505] \"202503_s_at\"                 \"201686_x_at\"                \n",
+       "[10507] \"204806_x_at\"                 \"201855_s_at\"                \n",
+       "[10509] \"201854_s_at\"                 \"203732_at\"                  \n",
+       "[10511] \"204614_at\"                   \"200090_at\"                  \n",
+       "[10513] \"205329_s_at\"                 \"203674_at\"                  \n",
+       "[10515] \"203946_s_at\"                 \"203945_at\"                  \n",
+       "[10517] \"204045_at\"                   \"204832_s_at\"                \n",
+       "[10519] \"202587_s_at\"                 \"202588_at\"                  \n",
+       "[10521] \"202576_s_at\"                 \"201257_x_at\"                \n",
+       "[10523] \"202003_s_at\"                 \"202002_at\"                  \n",
+       "[10525] \"204463_s_at\"                 \"204464_s_at\"                \n",
+       "[10527] \"204520_x_at\"                 \"202587_s_at\"                \n",
+       "[10529] \"202588_at\"                   \"203551_s_at\"                \n",
+       "[10531] \"204923_at\"                   \"201518_at\"                  \n",
+       "[10533] \"202392_s_at\"                 \"204923_at\"                  \n",
+       "[10535] \"201895_at\"                   \"203324_s_at\"                \n",
+       "[10537] \"203323_at\"                   \"203137_at\"                  \n",
+       "[10539] \"201523_x_at\"                 \"201524_x_at\"                \n",
+       "[10541] \"204830_x_at\"                 \"203605_at\"                  \n",
+       "[10543] \"202965_s_at\"                 \"202966_at\"                  \n",
+       "[10545] \"204937_s_at\"                 \"202843_at\"                  \n",
+       "[10547] \"202842_s_at\"                 \"202677_at\"                  \n",
+       "[10549] \"201292_at\"                   \"201291_s_at\"                \n",
+       "[10551] \"201033_x_at\"                 \"201088_at\"                  \n",
+       "[10553] \"204012_s_at\"                 \"202214_s_at\"                \n",
+       "[10555] \"202213_s_at\"                 \"202578_s_at\"                \n",
+       "[10557] \"202576_s_at\"                 \"202577_s_at\"                \n",
+       "[10559] \"202578_s_at\"                 \"202576_s_at\"                \n",
+       "[10561] \"202577_s_at\"                 \"205186_at\"                  \n",
+       "[10563] \"205079_s_at\"                 \"201240_s_at\"                \n",
+       "[10565] \"201239_s_at\"                 \"203622_s_at\"                \n",
+       "[10567] \"200013_at\"                   \"205346_at\"                  \n",
+       "[10569] \"204545_at\"                   \"203450_at\"                  \n",
+       "[10571] \"202513_s_at\"                 \"205442_at\"                  \n",
+       "[10573] \"205442_at\"                   \"202568_s_at\"                \n",
+       "[10575] \"202569_s_at\"                 \"200039_s_at\"                \n",
+       "[10577] \"201404_x_at\"                 \"204403_x_at\"                \n",
+       "[10579] \"203360_s_at\"                 \"203359_s_at\"                \n",
+       "[10581] \"201622_at\"                   \"203904_x_at\"                \n",
+       "[10583] \"200688_at\"                   \"200687_s_at\"                \n",
+       "[10585] \"203064_s_at\"                 \"201889_at\"                  \n",
+       "[10587] \"202361_at\"                   \"201652_at\"                  \n",
+       "[10589] \"202825_at\"                   \"204332_s_at\"                \n",
+       "[10591] \"204333_s_at\"                 \"202049_s_at\"                \n",
+       "[10593] \"202050_s_at\"                 \"202051_s_at\"                \n",
+       "[10595] \"201000_at\"                   \"200943_at\"                  \n",
+       "[10597] \"202956_at\"                   \"202955_s_at\"                \n",
+       "[10599] \"200683_s_at\"                 \"200682_s_at\"                \n",
+       "[10601] \"200684_s_at\"                 \"200676_s_at\"                \n",
+       "[10603] \"202415_s_at\"                 \"200878_at\"                  \n",
+       "[10605] \"200879_s_at\"                 \"204897_at\"                  \n",
+       "[10607] \"204896_s_at\"                 \"202298_at\"                  \n",
+       "[10609] \"204243_at\"                   \"203204_s_at\"                \n",
+       "[10611] \"203916_at\"                   \"202796_at\"                  \n",
+       "[10613] \"205268_s_at\"                 \"203857_s_at\"                \n",
+       "[10615] \"203916_at\"                   \"205047_s_at\"                \n",
+       "[10617] \"204725_s_at\"                 \"201807_at\"                  \n",
+       "[10619] \"203447_at\"                   \"203957_at\"                  \n",
+       "[10621] \"201824_at\"                   \"201823_s_at\"                \n",
+       "[10623] \"202833_s_at\"                 \"203667_at\"                  \n",
+       "[10625] \"203651_at\"                   \"203846_at\"                  \n",
+       "[10627] \"204192_at\"                   \"201174_s_at\"                \n",
+       "[10629] \"201578_at\"                   \"202293_at\"                  \n",
+       "[10631] \"202294_at\"                   \"201948_at\"                  \n",
+       "[10633] \"204053_x_at\"                 \"204054_at\"                  \n",
+       "[10635] \"202203_s_at\"                 \"202204_s_at\"                \n",
+       "[10637] \"204752_x_at\"                 \"204904_at\"                  \n",
+       "[10639] \"202087_s_at\"                 \"201285_at\"                  \n",
+       "[10641] \"203957_at\"                   \"204468_s_at\"                \n",
+       "[10643] \"200840_at\"                   \"200079_s_at\"                \n",
+       "[10645] \"203465_at\"                   \"204581_at\"                  \n",
+       "[10647] \"203360_s_at\"                 \"203359_s_at\"                \n",
+       "[10649] \"203361_s_at\"                 \"202401_s_at\"                \n",
+       "[10651] \"202400_s_at\"                 \"204730_at\"                  \n",
+       "[10653] \"204086_at\"                   \"200034_s_at\"                \n",
+       "[10655] \"203914_x_at\"                 \"203913_s_at\"                \n",
+       "[10657] \"203827_at\"                   \"200794_x_at\"                \n",
+       "[10659] \"203197_s_at\"                 \"204444_at\"                  \n",
+       "[10661] \"203289_s_at\"                 \"204238_s_at\"                \n",
+       "[10663] \"202099_s_at\"                 \"202054_s_at\"                \n",
+       "[10665] \"202053_s_at\"                 \"203504_s_at\"                \n",
+       "[10667] \"201522_x_at\"                 \"205276_s_at\"                \n",
+       "[10669] \"204018_x_at\"                 \"205153_s_at\"                \n",
+       "[10671] \"204018_x_at\"                 \"201066_at\"                  \n",
+       "[10673] \"203785_s_at\"                 \"203784_s_at\"                \n",
+       "[10675] \"204219_s_at\"                 \"202868_s_at\"                \n",
+       "[10677] \"203878_s_at\"                 \"203876_s_at\"                \n",
+       "[10679] \"203451_at\"                   \"201196_s_at\"                \n",
+       "[10681] \"201197_at\"                   \"204632_at\"                  \n",
+       "[10683] \"203372_s_at\"                 \"203373_at\"                  \n",
+       "[10685] \"202934_at\"                   \"201614_s_at\"                \n",
+       "[10687] \"201868_s_at\"                 \"201867_s_at\"                \n",
+       "[10689] \"201869_s_at\"                 \"203353_s_at\"                \n",
+       "[10691] \"203737_s_at\"                 \"200998_s_at\"                \n",
+       "[10693] \"200999_s_at\"                 \"204840_s_at\"                \n",
+       "[10695] \"204841_s_at\"                 \"204639_at\"                  \n",
+       "[10697] \"203569_s_at\"                 \"203577_at\"                  \n",
+       "[10699] \"204220_at\"                   \"202608_s_at\"                \n",
+       "[10701] \"202607_at\"                   \"204353_s_at\"                \n",
+       "[10703] \"204354_at\"                   \"203577_at\"                  \n",
+       "[10705] \"205273_s_at\"                 \"202093_s_at\"                \n",
+       "[10707] \"203456_at\"                   \"205193_at\"                  \n",
+       "[10709] \"203776_at\"                   \"202027_at\"                  \n",
+       "[10711] \"205021_s_at\"                 \"205022_s_at\"                \n",
+       "[10713] \"201531_at\"                   \"204063_s_at\"                \n",
+       "[10715] \"204062_s_at\"                 \"202332_at\"                  \n",
+       "[10717] \"202827_s_at\"                 \"202828_s_at\"                \n",
+       "[10719] \"201828_x_at\"                 \"201258_at\"                  \n",
+       "[10721] \"201923_at\"                   \"201628_s_at\"                \n",
+       "[10723] \"204846_at\"                   \"201480_s_at\"                \n",
+       "[10725] \"200772_x_at\"                 \"204043_at\"                  \n",
+       "[10727] \"200886_s_at\"                 \"204246_s_at\"                \n",
+       "[10729] \"201683_x_at\"                 \"201684_s_at\"                \n",
+       "[10731] \"201685_s_at\"                 \"205160_at\"                  \n",
+       "[10733] \"205161_s_at\"                 \"203179_at\"                  \n",
+       "[10735] \"200032_s_at\"                 \"202974_at\"                  \n",
+       "[10737] \"203985_at\"                   \"200963_x_at\"                \n",
+       "[10739] \"200962_at\"                   \"205408_at\"                  \n",
+       "[10741] \"204936_at\"                   \"200098_s_at\"                \n",
+       "[10743] \"204458_at\"                   \"202779_s_at\"                \n",
+       "[10745] \"200718_s_at\"                 \"200018_at\"                  \n",
+       "[10747] \"203724_s_at\"                 \"204263_s_at\"                \n",
+       "[10749] \"204264_at\"                   \"203578_s_at\"                \n",
+       "[10751] \"203580_s_at\"                 \"203579_s_at\"                \n",
+       "[10753] \"205291_at\"                   \"200943_at\"                  \n",
+       "[10755] \"203274_at\"                   \"204606_at\"                  \n",
+       "[10757] \"204793_at\"                   \"201692_at\"                  \n",
+       "[10759] \"200705_s_at\"                 \"203516_at\"                  \n",
+       "[10761] \"201530_x_at\"                 \"203871_at\"                  \n",
+       "[10763] \"201530_x_at\"                 \"204117_at\"                  \n",
+       "[10765] \"201530_x_at\"                 \"202422_s_at\"                \n",
+       "[10767] \"203250_at\"                   \"200622_x_at\"                \n",
+       "[10769] \"200623_s_at\"                 \"204611_s_at\"                \n",
+       "[10771] \"204569_at\"                   \"202564_x_at\"                \n",
+       "[10773] \"204159_at\"                   \"203274_at\"                  \n",
+       "[10775] \"201481_s_at\"                 \"204848_x_at\"                \n",
+       "[10777] \"204419_x_at\"                 \"200673_at\"                  \n",
+       "[10779] \"204848_x_at\"                 \"204419_x_at\"                \n",
+       "[10781] \"204848_x_at\"                 \"204419_x_at\"                \n",
+       "[10783] \"202848_s_at\"                 \"202849_x_at\"                \n",
+       "[10785] \"200833_s_at\"                 \"204069_at\"                  \n",
+       "[10787] \"202888_s_at\"                 \"202734_at\"                  \n",
+       "[10789] \"200886_s_at\"                 \"204344_s_at\"                \n",
+       "[10791] \"203584_at\"                   \"200903_s_at\"                \n",
+       "[10793] \"205282_at\"                   \"202591_s_at\"                \n",
+       "[10795] \"202399_s_at\"                 \"202398_at\"                  \n",
+       "[10797] \"204848_x_at\"                 \"204419_x_at\"                \n",
+       "[10799] \"204899_s_at\"                 \"204900_x_at\"                \n",
+       "[10801] \"200903_s_at\"                 \"204587_at\"                  \n",
+       "[10803] \"204234_s_at\"                 \"204725_s_at\"                \n",
+       "[10805] \"202399_s_at\"                 \"202398_at\"                  \n",
+       "[10807] \"204311_at\"                   \"205433_at\"                  \n",
+       "[10809] \"202364_at\"                   \"205031_at\"                  \n",
+       "[10811] \"201590_x_at\"                 \"202128_at\"                  \n",
+       "[10813] \"204473_s_at\"                 \"201208_s_at\"                \n",
+       "[10815] \"201207_at\"                   \"203104_at\"                  \n",
+       "[10817] \"205016_at\"                   \"205015_s_at\"                \n",
+       "[10819] \"203478_at\"                   \"202339_at\"                  \n",
+       "[10821] \"201129_at\"                   \"204560_at\"                  \n",
+       "[10823] \"200717_x_at\"                 \"202273_at\"                  \n",
+       "[10825] \"204295_at\"                   \"204534_at\"                  \n",
+       "[10827] \"204534_at\"                   \"205224_at\"                  \n",
+       "[10829] \"205218_at\"                   \"205011_at\"                  \n",
+       "[10831] \"204469_at\"                   \"204537_s_at\"                \n",
+       "[10833] \"201105_at\"                   \"201583_s_at\"                \n",
+       "[10835] \"201582_at\"                   \"201253_s_at\"                \n",
+       "[10837] \"205014_at\"                   \"204691_x_at\"                \n",
+       "[10839] \"204120_s_at\"                 \"204119_s_at\"                \n",
+       "[10841] \"203764_at\"                   \"204304_s_at\"                \n",
+       "[10843] \"205115_s_at\"                 \"203305_at\"                  \n",
+       "[10845] \"203415_at\"                   \"201463_s_at\"                \n",
+       "[10847] \"203153_at\"                   \"200682_s_at\"                \n",
+       "[10849] \"203924_at\"                   \"204568_at\"                  \n",
+       "[10851] \"200966_x_at\"                 \"202887_s_at\"                \n",
+       "[10853] \"202501_at\"                   \"200949_x_at\"                \n",
+       "[10855] \"203544_s_at\"                 \"202332_at\"                  \n",
+       "[10857] \"203455_s_at\"                 \"204017_at\"                  \n",
+       "[10859] \"202781_s_at\"                 \"202782_s_at\"                \n",
+       "[10861] \"202688_at\"                   \"202687_s_at\"                \n",
+       "[10863] \"205407_at\"                   \"200626_s_at\"                \n",
+       "[10865] \"200624_s_at\"                 \"203568_s_at\"                \n",
+       "[10867] \"203610_s_at\"                 \"203567_s_at\"                \n",
+       "[10869] \"203074_at\"                   \"203247_s_at\"                \n",
+       "[10871] \"203248_at\"                   \"205042_at\"                  \n",
+       "[10873] \"202412_s_at\"                 \"202413_s_at\"                \n",
+       "[10875] \"202397_at\"                   \"205341_at\"                  \n",
+       "[10877] \"205075_at\"                   \"200041_s_at\"                \n",
+       "[10879] \"203529_at\"                   \"201558_at\"                  \n",
+       "[10881] \"204153_s_at\"                 \"204152_s_at\"                \n",
+       "[10883] \"202283_at\"                   \"203449_s_at\"                \n",
+       "[10885] \"203448_s_at\"                 \"203150_at\"                  \n",
+       "[10887] \"205067_at\"                   \"203560_at\"                  \n",
+       "[10889] \"203573_s_at\"                 \"200717_x_at\"                \n",
+       "[10891] \"203898_at\"                   \"203899_s_at\"                \n",
+       "[10893] \"202551_s_at\"                 \"202552_s_at\"                \n",
+       "[10895] \"205012_s_at\"                 \"204720_s_at\"                \n",
+       "[10897] \"204721_s_at\"                 \"201529_s_at\"                \n",
+       "[10899] \"201528_at\"                   \"203043_at\"                  \n",
+       "[10901] \"200041_s_at\"                 \"204212_at\"                  \n",
+       "[10903] \"204348_s_at\"                 \"204347_at\"                  \n",
+       "[10905] \"204693_at\"                   \"202004_x_at\"                \n",
+       "[10907] \"201028_s_at\"                 \"201029_s_at\"                \n",
+       "[10909] \"202377_at\"                   \"202378_s_at\"                \n",
+       "[10911] \"202935_s_at\"                 \"202936_s_at\"                \n",
+       "[10913] \"202423_at\"                   \"204998_s_at\"                \n",
+       "[10915] \"204999_s_at\"                 \"203613_s_at\"                \n",
+       "[10917] \"201803_at\"                   \"203943_at\"                  \n",
+       "[10919] \"204640_s_at\"                 \"203978_at\"                  \n",
+       "[10921] \"201453_x_at\"                 \"201452_at\"                  \n",
+       "[10923] \"201490_s_at\"                 \"201489_at\"                  \n",
+       "[10925] \"200909_s_at\"                 \"205088_at\"                  \n",
+       "[10927] \"204071_s_at\"                 \"202282_at\"                  \n",
+       "[10929] \"203536_s_at\"                 \"201163_s_at\"                \n",
+       "[10931] \"201162_at\"                   \"202129_s_at\"                \n",
+       "[10933] \"202130_at\"                   \"202131_s_at\"                \n",
+       "[10935] \"204535_s_at\"                 \"201860_s_at\"                \n",
+       "[10937] \"204968_at\"                   \"204892_x_at\"                \n",
+       "[10939] \"203733_at\"                   \"201390_s_at\"                \n",
+       "[10941] \"200782_at\"                   \"204794_at\"                  \n",
+       "[10943] \"204306_s_at\"                 \"203433_at\"                  \n",
+       "[10945] \"200996_at\"                   \"203433_at\"                  \n",
+       "[10947] \"205070_at\"                   \"202679_at\"                  \n",
+       "[10949] \"201870_at\"                   \"202433_at\"                  \n",
+       "[10951] \"203691_at\"                   \"202586_at\"                  \n",
+       "[10953] \"203412_at\"                   \"205061_s_at\"                \n",
+       "[10955] \"202526_at\"                   \"202527_s_at\"                \n",
+       "[10957] \"205411_at\"                   \"202077_at\"                  \n",
+       "[10959] \"204984_at\"                   \"204983_s_at\"                \n",
+       "[10961] \"203204_s_at\"                 \"203205_at\"                  \n",
+       "[10963] \"203824_at\"                   \"203616_at\"                  \n",
+       "[10965] \"203502_at\"                   \"200785_s_at\"                \n",
+       "[10967] \"200784_s_at\"                 \"203458_at\"                  \n",
+       "[10969] \"202240_at\"                   \"202383_at\"                  \n",
+       "[10971] \"203418_at\"                   \"201847_at\"                  \n",
+       "[10973] \"204827_s_at\"                 \"204826_at\"                  \n",
+       "[10975] \"201626_at\"                   \"201625_s_at\"                \n",
+       "[10977] \"201627_s_at\"                 \"200970_s_at\"                \n",
+       "[10979] \"200971_s_at\"                 \"200969_at\"                  \n",
+       "[10981] \"204809_at\"                   \"200823_x_at\"                \n",
+       "[10983] \"200038_s_at\"                 \"203315_at\"                  \n",
+       "[10985] \"204747_at\"                   \"204260_at\"                  \n",
+       "[10987] \"202522_at\"                   \"201272_at\"                  \n",
+       "[10989] \"205071_x_at\"                 \"205072_s_at\"                \n",
+       "[10991] \"202262_x_at\"                 \"203606_at\"                  \n",
+       "[10993] \"200763_s_at\"                 \"202161_at\"                  \n",
+       "[10995] \"204524_at\"                   \"204709_s_at\"                \n",
+       "[10997] \"203058_s_at\"                 \"203059_s_at\"                \n",
+       "[10999] \"203060_s_at\"                 \"202495_at\"                  \n",
+       "[11001] \"205460_at\"                   \"205459_s_at\"                \n",
+       "[11003] \"205420_at\"                   \"205330_at\"                  \n",
+       "[11005] \"203036_s_at\"                 \"203037_s_at\"                \n",
+       "[11007] \"204391_x_at\"                 \"203553_s_at\"                \n",
+       "[11009] \"203552_at\"                   \"205439_at\"                  \n",
+       "[11011] \"203932_at\"                   \"202221_s_at\"                \n",
+       "[11013] \"203506_s_at\"                 \"202078_at\"                  \n",
+       "[11015] \"202927_at\"                   \"202949_s_at\"                \n",
+       "[11017] \"202432_at\"                   \"203655_at\"                  \n",
+       "[11019] \"203689_s_at\"                 \"200689_x_at\"                \n",
+       "[11021] \"202386_s_at\"                 \"204675_at\"                  \n",
+       "[11023] \"202929_s_at\"                 \"200689_x_at\"                \n",
+       "[11025] \"205171_at\"                   \"202466_at\"                  \n",
+       "[11027] \"200025_s_at\"                 \"204673_at\"                  \n",
+       "[11029] \"201541_s_at\"                 \"201715_s_at\"                \n",
+       "[11031] \"201226_at\"                   \"201227_s_at\"                \n",
+       "[11033] \"201226_at\"                   \"202929_s_at\"                \n",
+       "[11035] \"202929_s_at\"                 \"200058_s_at\"                \n",
+       "[11037] \"201375_s_at\"                 \"201374_x_at\"                \n",
+       "[11039] \"200093_s_at\"                 \"205300_s_at\"                \n",
+       "[11041] \"203482_at\"                   \"203481_at\"                  \n",
+       "[11043] \"201773_at\"                   \"202381_at\"                  \n",
+       "[11045] \"203576_at\"                   \"203044_at\"                  \n",
+       "[11047] \"204764_at\"                   \"202452_at\"                  \n",
+       "[11049] \"202456_s_at\"                 \"202448_s_at\"                \n",
+       "[11051] \"204885_s_at\"                 \"204423_at\"                  \n",
+       "[11053] \"203304_at\"                   \"204100_at\"                  \n",
+       "[11055] \"201657_at\"                   \"201658_at\"                  \n",
+       "[11057] \"201659_s_at\"                 \"205180_s_at\"                \n",
+       "[11059] \"205179_s_at\"                 \"203094_at\"                  \n",
+       "[11061] \"203343_at\"                   \"203888_at\"                  \n",
+       "[11063] \"203887_s_at\"                 \"202878_s_at\"                \n",
+       "[11065] \"202877_s_at\"                 \"204764_at\"                  \n",
+       "[11067] \"204764_at\"                   \"205261_at\"                  \n",
+       "[11069] \"204336_s_at\"                 \"204824_at\"                  \n",
+       "[11071] \"202661_at\"                   \"202660_at\"                  \n",
+       "[11073] \"202662_s_at\"                 \"204892_x_at\"                \n",
+       "[11075] \"202104_s_at\"                 \"202104_s_at\"                \n",
+       "[11077] \"200776_s_at\"                 \"200032_s_at\"                \n",
+       "[11079] \"202937_x_at\"                 \"201135_at\"                  \n",
+       "[11081] \"204388_s_at\"                 \"204389_at\"                  \n",
+       "[11083] \"202488_s_at\"                 \"202489_s_at\"                \n",
+       "[11085] \"202489_s_at\"                 \"202776_at\"                  \n",
+       "[11087] \"203138_at\"                   \"200635_s_at\"                \n",
+       "[11089] \"200636_s_at\"                 \"200637_s_at\"                \n",
+       "[11091] \"205384_at\"                   \"201063_at\"                  \n",
+       "[11093] \"205353_s_at\"                 \"204079_at\"                  \n",
+       "[11095] \"204969_s_at\"                 \"203555_at\"                  \n",
+       "[11097] \"201848_s_at\"                 \"204488_at\"                  \n",
+       "[11099] \"203107_x_at\"                 \"200689_x_at\"                \n",
+       "[11101] \"205452_at\"                   \"205214_at\"                  \n",
+       "[11103] \"201796_s_at\"                 \"201797_s_at\"                \n",
+       "[11105] \"202701_at\"                   \"202159_at\"                  \n",
+       "[11107] \"205228_at\"                   \"200800_s_at\"                \n",
+       "[11109] \"200799_at\"                   \"200800_s_at\"                \n",
+       "[11111] \"202581_at\"                   \"200800_s_at\"                \n",
+       "[11113] \"200862_at\"                   \"203528_at\"                  \n",
+       "[11115] \"201046_s_at\"                 \"201039_s_at\"                \n",
+       "[11117] \"204112_s_at\"                 \"204111_at\"                  \n",
+       "[11119] \"201123_s_at\"                 \"201122_x_at\"                \n",
+       "[11121] \"205060_at\"                   \"201390_s_at\"                \n",
+       "[11123] \"205321_at\"                   \"204101_at\"                  \n",
+       "[11125] \"202143_s_at\"                 \"202142_at\"                  \n",
+       "[11127] \"202141_s_at\"                 \"201392_s_at\"                \n",
+       "[11129] \"201393_s_at\"                 \"202405_at\"                  \n",
+       "[11131] \"202406_s_at\"                 \"203257_s_at\"                \n",
+       "[11133] \"204125_at\"                   \"201379_s_at\"                \n",
+       "[11135] \"201405_s_at\"                 \"200003_s_at\"                \n",
+       "[11137] \"205325_at\"                   \"205229_s_at\"                \n",
+       "[11139] \"203468_at\"                   \"203469_s_at\"                \n",
+       "[11141] \"202779_s_at\"                 \"201119_s_at\"                \n",
+       "[11143] \"203921_at\"                   \"202861_at\"                  \n",
+       "[11145] \"204496_at\"                   \"205230_at\"                  \n",
+       "[11147] \"200750_s_at\"                 \"200905_x_at\"                \n",
+       "[11149] \"200904_at\"                   \"200943_at\"                  \n",
+       "[11151] \"204795_at\"                   \"201933_at\"                  \n",
+       "[11153] \"202854_at\"                   \"200898_s_at\"                \n",
+       "[11155] \"200899_s_at\"                 \"201703_s_at\"                \n",
+       "[11157] \"201702_s_at\"                 \"201754_at\"                  \n",
+       "[11159] \"203523_at\"                   \"202850_at\"                  \n",
+       "[11161] \"202295_s_at\"                 \"205354_at\"                  \n",
+       "[11163] \"201787_at\"                   \"202995_s_at\"                \n",
+       "[11165] \"202994_s_at\"                 \"203694_s_at\"                \n",
+       "[11167] \"205269_at\"                   \"205270_s_at\"                \n",
+       "[11169] \"202118_s_at\"                 \"202119_s_at\"                \n",
+       "[11171] \"200045_at\"                   \"202463_s_at\"                \n",
+       "[11173] \"203165_s_at\"                 \"203164_at\"                  \n",
+       "[11175] \"202042_at\"                   \"203360_s_at\"                \n",
+       "[11177] \"205320_at\"                   \"204000_at\"                  \n",
+       "[11179] \"201141_at\"                   \"201252_at\"                  \n",
+       "[11181] \"200089_s_at\"                 \"204021_s_at\"                \n",
+       "[11183] \"204020_at\"                   \"204032_at\"                  \n",
+       "[11185] \"200916_at\"                   \"201507_at\"                  \n",
+       "[11187] \"204981_at\"                   \"204618_s_at\"                \n",
+       "[11189] \"205335_s_at\"                 \"203941_at\"                  \n",
+       "[11191] \"205335_s_at\"                 \"203775_at\"                  \n",
+       "[11193] \"204097_s_at\"                 \"204098_at\"                  \n",
+       "[11195] \"204690_at\"                   \"203012_x_at\"                \n",
+       "[11197] \"200012_x_at\"                 \"201445_at\"                  \n",
+       "[11199] \"202508_s_at\"                 \"202507_s_at\"                \n",
+       "[11201] \"203490_at\"                   \"204359_at\"                  \n",
+       "[11203] \"204358_s_at\"                 \"204359_at\"                  \n",
+       "[11205] \"204358_s_at\"                 \"202912_at\"                  \n",
+       "[11207] \"203571_s_at\"                 \"203038_at\"                  \n",
+       "[11209] \"202146_at\"                   \"202147_s_at\"                \n",
+       "[11211] \"204646_at\"                   \"205221_at\"                  \n",
+       "[11213] \"205063_at\"                   \"204642_at\"                  \n",
+       "[11215] \"202852_s_at\"                 \"202851_at\"                  \n",
+       "[11217] \"202011_at\"                   \"201545_s_at\"                \n",
+       "[11219] \"201544_x_at\"                 \"204631_at\"                  \n",
+       "[11221] \"200661_at\"                   \"202637_s_at\"                \n",
+       "[11223] \"202638_s_at\"                 \"202193_at\"                  \n",
+       "[11225] \"203491_s_at\"                 \"203493_s_at\"                \n",
+       "[11227] \"203492_x_at\"                 \"203494_s_at\"                \n",
+       "[11229] \"203910_at\"                   \"203910_at\"                  \n",
+       "[11231] \"202477_s_at\"                 \"202476_s_at\"                \n",
+       "[11233] \"202371_at\"                   \"204247_s_at\"                \n",
+       "[11235] \"201346_at\"                   \"201968_s_at\"                \n",
+       "[11237] \"205258_at\"                   \"201897_s_at\"                \n",
+       "[11239] \"205034_at\"                   \"205437_at\"                  \n",
+       "[11241] \"202255_s_at\"                 \"202254_at\"                  \n",
+       "[11243] \"202471_s_at\"                 \"203925_at\"                  \n",
+       "[11245] \"202041_s_at\"                 \"204324_s_at\"                \n",
+       "[11247] \"204322_at\"                   \"205418_at\"                  \n",
+       "[11249] \"204731_at\"                   \"204540_at\"                  \n",
+       "[11251] \"201126_s_at\"                 \"201215_at\"                  \n",
+       "[11253] \"204610_s_at\"                 \"204420_at\"                  \n",
+       "[11255] \"203394_s_at\"                 \"203395_s_at\"                \n",
+       "[11257] \"203393_at\"                   \"204653_at\"                  \n",
+       "[11259] \"204654_s_at\"                 \"201769_at\"                  \n",
+       "[11261] \"201768_s_at\"                 \"202483_s_at\"                \n",
+       "[11263] \"202482_x_at\"                 \"203900_at\"                  \n",
+       "[11265] \"203258_at\"                   \"202100_at\"                  \n",
+       "[11267] \"202101_s_at\"                 \"202686_s_at\"                \n",
+       "[11269] \"202685_s_at\"                 \"205092_x_at\"                \n",
+       "[11271] \"200051_at\"                   \"200989_at\"                  \n",
+       "[11273] \"202206_at\"                   \"202207_at\"                  \n",
+       "[11275] \"202208_s_at\"                 \"205222_at\"                  \n",
+       "[11277] \"202331_at\"                   \"203266_s_at\"                \n",
+       "[11279] \"203265_s_at\"                 \"205223_at\"                  \n",
+       "[11281] \"202331_at\"                   \"205443_at\"                  \n",
+       "[11283] \"202882_x_at\"                 \"201644_at\"                  \n",
+       "[11285] \"202583_s_at\"                 \"202582_s_at\"                \n",
+       "[11287] \"201767_s_at\"                 \"200946_x_at\"                \n",
+       "[11289] \"200947_s_at\"                 \"203768_s_at\"                \n",
+       "[11291] \"203767_s_at\"                 \"203770_s_at\"                \n",
+       "[11293] \"203769_s_at\"                 \"202227_s_at\"                \n",
+       "[11295] \"200619_at\"                   \"205345_at\"                  \n",
+       "[11297] \"204363_at\"                   \"201032_at\"                  \n",
+       "[11299] \"204239_s_at\"                 \"203868_s_at\"                \n",
+       "[11301] \"201945_at\"                   \"200901_s_at\"                \n",
+       "[11303] \"200900_s_at\"                 \"205087_at\"                  \n",
+       "[11305] \"202418_at\"                   \"204698_at\"                  \n",
+       "[11307] \"200968_s_at\"                 \"200967_at\"                  \n",
+       "[11309] \"203858_s_at\"                 \"203162_s_at\"                \n",
+       "[11311] \"203163_at\"                   \"204210_s_at\"                \n",
+       "[11313] \"204209_at\"                   \"205211_s_at\"                \n",
+       "[11315] \"202393_s_at\"                 \"201422_at\"                  \n",
+       "[11317] \"204342_at\"                   \"201422_at\"                  \n",
+       "[11319] \"202529_at\"                   \"202866_at\"                  \n",
+       "[11321] \"202865_at\"                   \"202867_s_at\"                \n",
+       "[11323] \"204974_at\"                   \"203188_at\"                  \n",
+       "[11325] \"204717_s_at\"                 \"203751_x_at\"                \n",
+       "[11327] \"203752_s_at\"                 \"202737_s_at\"                \n",
+       "[11329] \"202736_s_at\"                 \"201580_s_at\"                \n",
+       "[11331] \"201581_at\"                   \"200964_at\"                  \n",
+       "[11333] \"201921_at\"                   \"201921_at\"                  \n",
+       "[11335] \"202952_s_at\"                 \"204943_at\"                  \n",
+       "[11337] \"204881_s_at\"                 \"204881_s_at\"                \n",
+       "[11339] \"204542_at\"                   \"201475_x_at\"                \n",
+       "[11341] \"203140_at\"                   \"204767_s_at\"                \n",
+       "[11343] \"204768_s_at\"                 \"200936_at\"                  \n",
+       "[11345] \"204279_at\"                   \"203566_s_at\"                \n",
+       "[11347] \"202506_at\"                   \"205198_s_at\"                \n",
+       "[11349] \"205197_s_at\"                 \"202247_s_at\"                \n",
+       "[11351] \"202016_at\"                   \"202082_s_at\"                \n",
+       "[11353] \"202084_s_at\"                 \"202083_s_at\"                \n",
+       "[11355] \"203739_at\"                   \"203541_s_at\"                \n",
+       "[11357] \"203542_s_at\"                 \"203543_s_at\"                \n",
+       "[11359] \"204257_at\"                   \"203712_at\"                  \n",
+       "[11361] \"201376_s_at\"                 \"205458_at\"                  \n",
+       "[11363] \"202154_x_at\"                 \"204921_at\"                  \n",
+       "[11365] \"200936_at\"                   \"204073_s_at\"                \n",
+       "[11367] \"202003_s_at\"                 \"202003_s_at\"                \n",
+       "[11369] \"203557_s_at\"                 \"205081_at\"                  \n",
+       "[11371] \"205081_at\"                   \"203227_s_at\"                \n",
+       "[11373] \"203226_s_at\"                 \"205412_at\"                  \n",
+       "[11375] \"202246_s_at\"                 \"203940_s_at\"                \n",
+       "[11377] \"201995_at\"                   \"202246_s_at\"                \n",
+       "[11379] \"204027_s_at\"                 \"203940_s_at\"                \n",
+       "[11381] \"204837_at\"                   \"201263_at\"                  \n",
+       "[11383] \"200884_at\"                   \"204744_s_at\"                \n",
+       "[11385] \"201178_at\"                   \"202961_s_at\"                \n",
+       "[11387] \"201150_s_at\"                 \"201148_s_at\"                \n",
+       "[11389] \"201149_s_at\"                 \"201147_s_at\"                \n",
+       "[11391] \"203349_s_at\"                 \"203348_s_at\"                \n",
+       "[11393] \"203699_s_at\"                 \"203700_s_at\"                \n",
+       "[11395] \"205384_at\"                   \"203485_at\"                  \n",
+       "[11397] \"205028_at\"                   \"202092_s_at\"                \n",
+       "[11399] \"204590_x_at\"                 \"204600_at\"                  \n",
+       "[11401] \"200748_s_at\"                 \"200012_x_at\"                \n",
+       "[11403] \"202947_s_at\"                 \"200780_x_at\"                \n",
+       "[11405] \"200981_x_at\"                 \"204301_at\"                  \n",
+       "[11407] \"203432_at\"                   \"201848_s_at\"                \n",
+       "[11409] \"201849_at\"                   \"202173_s_at\"                \n",
+       "[11411] \"203779_s_at\"                 \"203780_at\"                  \n",
+       "[11413] \"204991_s_at\"                 \"204437_s_at\"                \n",
+       "[11415] \"201691_s_at\"                 \"201688_s_at\"                \n",
+       "[11417] \"201690_s_at\"                 \"201689_s_at\"                \n",
+       "[11419] \"201691_s_at\"                 \"201688_s_at\"                \n",
+       "[11421] \"201690_s_at\"                 \"201689_s_at\"                \n",
+       "[11423] \"204375_at\"                   \"201014_s_at\"                \n",
+       "[11425] \"201013_s_at\"                 \"203211_s_at\"                \n",
+       "[11427] \"203212_s_at\"                 \"200819_s_at\"                \n",
+       "[11429] \"202248_at\"                   \"204985_s_at\"                \n",
+       "[11431] \"203971_at\"                   \"203288_at\"                  \n",
+       "[11433] \"200871_s_at\"                 \"200866_s_at\"                \n",
+       "[11435] \"204148_s_at\"                 \"201841_s_at\"                \n",
+       "[11437] \"205288_at\"                   \"202579_x_at\"                \n",
+       "[11439] \"201573_s_at\"                 \"203404_at\"                  \n",
+       "[11441] \"200801_x_at\"                 \"201123_s_at\"                \n",
+       "[11443] \"201122_x_at\"                 \"201500_s_at\"                \n",
+       "[11445] \"204251_s_at\"                 \"204250_s_at\"                \n",
+       "[11447] \"201554_x_at\"                 \"201564_s_at\"                \n",
+       "[11449] \"204099_at\"                   \"200957_s_at\"                \n",
+       "[11451] \"200956_s_at\"                 \"202983_at\"                  \n",
+       "[11453] \"204130_at\"                   \"205004_at\"                  \n",
+       "[11455] \"203416_at\"                   \"204538_x_at\"                \n",
+       "[11457] \"202785_at\"                   \"202785_at\"                  \n",
+       "[11459] \"203301_s_at\"                 \"202968_s_at\"                \n",
+       "[11461] \"202971_s_at\"                 \"202969_at\"                  \n",
+       "[11463] \"202970_at\"                   \"201248_s_at\"                \n",
+       "[11465] \"201247_at\"                   \"203168_at\"                  \n",
+       "[11467] \"201563_at\"                   \"201562_s_at\"                \n",
+       "[11469] \"203391_at\"                   \"203817_at\"                  \n",
+       "[11471] \"204407_at\"                   \"203874_s_at\"                \n",
+       "[11473] \"203875_at\"                   \"203611_at\"                  \n",
+       "[11475] \"200922_at\"                   \"201011_at\"                  \n",
+       "[11477] \"204446_s_at\"                 \"204445_s_at\"                \n",
+       "[11479] \"200022_at\"                   \"201049_s_at\"                \n",
+       "[11481] \"205213_at\"                   \"205212_s_at\"                \n",
+       "[11483] \"203912_s_at\"                 \"202402_s_at\"                \n",
+       "[11485] \"202342_s_at\"                 \"202341_s_at\"                \n",
+       "[11487] \"201352_at\"                   \"201351_s_at\"                \n",
+       "[11489] \"200091_s_at\"                 \"200690_at\"                  \n",
+       "[11491] \"200691_s_at\"                 \"200692_s_at\"                \n",
+       "[11493] \"202875_s_at\"                 \"202875_s_at\"                \n",
+       "[11495] \"202876_s_at\"                 \"204265_s_at\"                \n",
+       "[11497] \"203903_s_at\"                 \"203902_at\"                  \n",
+       "[11499] \"205247_at\"                   \"203107_x_at\"                \n",
+       "[11501] \"203634_s_at\"                 \"203633_at\"                  \n",
+       "[11503] \"200034_s_at\"                 \"203731_s_at\"                \n",
+       "[11505] \"203730_s_at\"                 \"205128_x_at\"                \n",
+       "[11507] \"205127_at\"                   \"203931_s_at\"                \n",
+       "[11509] \"203931_s_at\"                 \"203658_at\"                  \n",
+       "[11511] \"203559_s_at\"                 \"201326_at\"                  \n",
+       "[11513] \"201631_s_at\"                 \"202154_x_at\"                \n",
+       "[11515] \"202038_at\"                   \"202427_s_at\"                \n",
+       "[11517] \"205087_at\"                   \"203951_at\"                  \n",
+       "[11519] \"204310_s_at\"                 \"204643_s_at\"                \n",
+       "[11521] \"204644_at\"                   \"204141_at\"                  \n",
+       "[11523] \"202154_x_at\"                 \"203538_at\"                  \n",
+       "[11525] \"203513_at\"                   \"202462_s_at\"                \n",
+       "[11527] \"204230_s_at\"                 \"204229_at\"                  \n",
+       "[11529] \"200770_s_at\"                 \"200771_at\"                  \n",
+       "[11531] \"204525_at\"                   \"201403_s_at\"                \n",
+       "[11533] \"201439_at\"                   \"202793_at\"                  \n",
+       "[11535] \"203454_s_at\"                 \"203112_s_at\"                \n",
+       "[11537] \"200052_s_at\"                 \"201017_at\"                  \n",
+       "[11539] \"201019_s_at\"                 \"201018_at\"                  \n",
+       "[11541] \"201016_at\"                   \"201017_at\"                  \n",
+       "[11543] \"201019_s_at\"                 \"201018_at\"                  \n",
+       "[11545] \"201016_at\"                   \"203843_at\"                  \n",
+       "[11547] \"204705_x_at\"                 \"204704_s_at\"                \n",
+       "[11549] \"202606_s_at\"                 \"203495_at\"                  \n",
+       "[11551] \"205199_at\"                   \"203244_at\"                  \n",
+       "[11553] \"200715_x_at\"                 \"200715_x_at\"                \n",
+       "[11555] \"200031_s_at\"                 \"201505_at\"                  \n",
+       "[11557] \"201045_s_at\"                 \"201047_x_at\"                \n",
+       "[11559] \"201048_x_at\"                 \"204298_s_at\"                \n",
+       "[11561] \"205010_at\"                   \"200063_s_at\"                \n",
+       "[11563] \"201592_at\"                   \"204503_at\"                  \n",
+       "[11565] \"201832_s_at\"                 \"201831_s_at\"                \n",
+       "[11567] \"200036_s_at\"                 \"204206_at\"                  \n",
+       "[11569] \"203339_at\"                   \"203340_s_at\"                \n",
+       "[11571] \"203333_at\"                   \"205208_at\"                  \n",
+       "[11573] \"200961_at\"                   \"200813_s_at\"                \n",
+       "[11575] \"200816_s_at\"                 \"200815_s_at\"                \n",
+       "[11577] \"202621_at\"                   \"201676_x_at\"                \n",
+       "[11579] \"204118_at\"                   \"203653_s_at\"                \n",
+       "[11581] \"203654_s_at\"                 \"201731_s_at\"                \n",
+       "[11583] \"201730_s_at\"                 \"200014_s_at\"                \n",
+       "[11585] \"200751_s_at\"                 \"202862_at\"                  \n",
+       "[11587] \"201955_at\"                   \"201674_s_at\"                \n",
+       "[11589] \"201675_at\"                   \"203575_at\"                  \n",
+       "[11591] \"201462_at\"                   \"203295_s_at\"                \n",
+       "[11593] \"203296_s_at\"                 \"202804_at\"                  \n",
+       "[11595] \"202805_s_at\"                 \"204151_x_at\"                \n",
+       "[11597] \"201792_at\"                   \"203270_at\"                  \n",
+       "[11599] \"204038_s_at\"                 \"204037_at\"                  \n",
+       "[11601] \"204036_at\"                   \"203625_x_at\"                \n",
+       "[11603] \"203626_s_at\"                 \"203799_at\"                  \n",
+       "[11605] \"203741_s_at\"                 \"204889_s_at\"                \n",
+       "[11607] \"204888_s_at\"                 \"204761_at\"                  \n",
+       "[11609] \"201042_at\"                   \"204729_s_at\"                \n",
+       "[11611] \"202566_s_at\"                 \"202565_s_at\"                \n",
+       "[11613] \"202171_at\"                   \"202173_s_at\"                \n",
+       "[11615] \"202172_at\"                   \"201742_x_at\"                \n",
+       "[11617] \"203342_at\"                   \"204516_at\"                  \n",
+       "[11619] \"201742_x_at\"                 \"201741_x_at\"                \n",
+       "[11621] \"203678_at\"                   \"205406_s_at\"                \n",
+       "[11623] \"202550_s_at\"                 \"202549_at\"                  \n",
+       "[11625] \"204507_s_at\"                 \"204506_at\"                  \n",
+       "[11627] \"201268_at\"                   \"203922_s_at\"                \n",
+       "[11629] \"203923_s_at\"                 \"201381_x_at\"                \n",
+       "[11631] \"201514_s_at\"                 \"201503_at\"                  \n",
+       "[11633] \"203643_at\"                   \"201744_s_at\"                \n",
+       "[11635] \"203954_x_at\"                 \"203953_s_at\"                \n",
+       "[11637] \"201893_x_at\"                 \"202864_s_at\"                \n",
+       "[11639] \"202863_at\"                   \"203391_at\"                  \n",
+       "[11641] \"202237_at\"                   \"202238_s_at\"                \n",
+       "[11643] \"201359_at\"                   \"201358_s_at\"                \n",
+       "[11645] \"201765_s_at\"                 \"200925_at\"                  \n",
+       "[11647] \"200703_at\"                   \"201851_at\"                  \n",
+       "[11649] \"202267_at\"                   \"205112_at\"                  \n",
+       "[11651] \"205111_s_at\"                 \"204839_at\"                  \n",
+       "[11653] \"201121_s_at\"                 \"201120_s_at\"                \n",
+       "[11655] \"203975_s_at\"                 \"203976_s_at\"                \n",
+       "[11657] \"200657_at\"                   \"205173_x_at\"                \n",
+       "[11659] \"201899_s_at\"                 \"201898_s_at\"                \n",
+       "[11661] \"200607_s_at\"                 \"200608_s_at\"                \n",
+       "[11663] \"201373_at\"                   \"204522_at\"                  \n",
+       "[11665] \"202162_s_at\"                 \"202164_s_at\"                \n",
+       "[11667] \"202163_s_at\"                 \"203747_at\"                  \n",
+       "[11669] \"201090_x_at\"                 \"201307_at\"                  \n",
+       "[11671] \"201308_s_at\"                 \"202731_at\"                  \n",
+       "[11673] \"202730_s_at\"                 \"204090_at\"                  \n",
+       "[11675] \"200979_at\"                   \"200980_s_at\"                \n",
+       "[11677] \"200734_s_at\"                 \"200011_s_at\"                \n",
+       "[11679] \"204413_at\"                   \"205387_s_at\"                \n",
+       "[11681] \"205387_s_at\"                 \"200631_s_at\"                \n",
+       "[11683] \"200630_x_at\"                 \"201221_s_at\"                \n",
+       "[11685] \"202777_at\"                   \"200830_at\"                  \n",
+       "[11687] \"200791_s_at\"                 \"204604_at\"                  \n",
+       "[11689] \"203218_at\"                   \"204630_s_at\"                \n",
+       "[11691] \"202275_at\"                   \"204070_at\"                  \n",
+       "[11693] \"204452_s_at\"                 \"204451_at\"                  \n",
+       "[11695] \"203065_s_at\"                 \"202826_at\"                  \n",
+       "[11697] \"202813_at\"                   \"204820_s_at\"                \n",
+       "[11699] \"203547_at\"                   \"204702_s_at\"                \n",
+       "[11701] \"201091_s_at\"                 \"200037_s_at\"                \n",
+       "[11703] \"202574_s_at\"                 \"202573_at\"                  \n",
+       "[11705] \"202140_s_at\"                 \"205299_s_at\"                \n",
+       "[11707] \"205298_s_at\"                 \"205056_s_at\"                \n",
+       "[11709] \"201317_s_at\"                 \"201316_at\"                  \n",
+       "[11711] \"204559_s_at\"                 \"201317_s_at\"                \n",
+       "[11713] \"201316_at\"                   \"202761_s_at\"                \n",
+       "[11715] \"204116_at\"                   \"204854_at\"                  \n",
+       "[11717] \"201826_s_at\"                 \"201825_s_at\"                \n",
+       "[11719] \"203918_at\"                   \"201577_at\"                  \n",
+       "[11721] \"200600_at\"                   \"202278_s_at\"                \n",
+       "[11723] \"202277_at\"                   \"205285_s_at\"                \n",
+       "[11725] \"200748_s_at\"                 \"204976_s_at\"                \n",
+       "[11727] \"201479_at\"                   \"201478_s_at\"                \n",
+       "[11729] \"204821_at\"                   \"204820_s_at\"                \n",
+       "[11731] \"201875_s_at\"                 \"201874_at\"                  \n",
+       "[11733] \"204357_s_at\"                 \"202329_at\"                  \n",
+       "[11735] \"204927_at\"                   \"203428_s_at\"                \n",
+       "[11737] \"203427_at\"                   \"201067_at\"                  \n",
+       "[11739] \"201068_s_at\"                 \"203758_at\"                  \n",
+       "[11741] \"202839_s_at\"                 \"201313_at\"                  \n",
+       "[11743] \"204573_at\"                   \"204256_at\"                  \n",
+       "[11745] \"203738_at\"                   \"202733_at\"                  \n",
+       "[11747] \"200082_s_at\"                 \"203271_s_at\"                \n",
+       "[11749] \"200845_s_at\"                 \"200844_s_at\"                \n",
+       "[11751] \"203331_s_at\"                 \"203332_s_at\"                \n",
+       "[11753] \"202022_at\"                   \"200081_s_at\"                \n",
+       "[11755] \"202396_at\"                   \"200822_x_at\"                \n",
+       "[11757] \"201864_at\"                   \"200664_s_at\"                \n",
+       "[11759] \"200666_s_at\"                 \"200081_s_at\"                \n",
+       "[11761] \"201254_x_at\"                 \"202622_s_at\"                \n",
+       "[11763] \"202306_at\"                   \"203145_at\"                  \n",
+       "[11765] \"201293_x_at\"                 \"202390_s_at\"                \n",
+       "[11767] \"203013_at\"                   \"202487_s_at\"                \n",
+       "[11769] \"203517_at\"                   \"203090_at\"                  \n",
+       "[11771] \"204563_at\"                   \"203330_s_at\"                \n",
+       "[11773] \"202539_s_at\"                 \"202540_s_at\"                \n",
+       "[11775] \"204511_at\"                   \"201366_at\"                  \n",
+       "[11777] \"203814_s_at\"                 \"203092_at\"                  \n",
+       "[11779] \"203093_s_at\"                 \"205215_at\"                  \n",
+       "[11781] \"202824_s_at\"                 \"202823_at\"                  \n",
+       "[11783] \"202157_s_at\"                 \"202156_s_at\"                \n",
+       "[11785] \"202158_s_at\"                 \"203754_s_at\"                \n",
+       "[11787] \"204773_at\"                   \"203179_at\"                  \n",
+       "[11789] \"204773_at\"                   \"203083_at\"                  \n",
+       "[11791] \"205089_at\"                   \"202670_at\"                  \n",
+       "[11793] \"201362_at\"                   \"201363_s_at\"                \n",
+       "[11795] \"201495_x_at\"                 \"201497_x_at\"                \n",
+       "[11797] \"201496_x_at\"                 \"204528_s_at\"                \n",
+       "[11799] \"203934_at\"                   \"204114_at\"                  \n",
+       "[11801] \"202653_s_at\"                 \"202654_x_at\"                \n",
+       "[11803] \"203012_x_at\"                 \"200089_s_at\"                \n",
+       "[11805] \"201154_x_at\"                 \"202127_at\"                  \n",
+       "[11807] \"202126_at\"                   \"200068_s_at\"                \n",
+       "[11809] \"204834_at\"                   \"200082_s_at\"                \n",
+       "[11811] \"203718_at\"                   \"202996_at\"                  \n",
+       "[11813] \"202025_x_at\"                 \"204492_at\"                  \n",
+       "[11815] \"202996_at\"                   \"201314_at\"                  \n",
+       "[11817] \"203696_s_at\"                 \"200846_s_at\"                \n",
+       "[11819] \"202384_s_at\"                 \"202385_s_at\"                \n",
+       "[11821] \"202007_at\"                   \"202008_s_at\"                \n",
+       "[11823] \"201426_s_at\"                 \"203113_s_at\"                \n",
+       "[11825] \"203615_x_at\"                 \"203777_s_at\"                \n",
+       "[11827] \"200012_x_at\"                 \"202189_x_at\"                \n",
+       "[11829] \"204227_s_at\"                 \"204277_s_at\"                \n",
+       "[11831] \"204276_at\"                   \"204926_at\"                  \n",
+       "[11833] \"204960_at\"                   \"204718_at\"                  \n",
+       "[11835] \"204960_at\"                   \"200952_s_at\"                \n",
+       "[11837] \"200953_s_at\"                 \"200951_s_at\"                \n",
+       "[11839] \"204903_x_at\"                 \"204902_s_at\"                \n",
+       "[11841] \"205415_s_at\"                 \"205416_s_at\"                \n",
+       "[11843] \"202265_at\"                   \"204574_s_at\"                \n",
+       "[11845] \"204575_s_at\"                 \"203330_s_at\"                \n",
+       "[11847] \"202800_at\"                   \"203385_at\"                  \n",
+       "[11849] \"202632_at\"                   \"201492_s_at\"                \n",
+       "[11851] \"201137_s_at\"                 \"200715_x_at\"                \n",
+       "[11853] \"200716_x_at\"                 \"200620_at\"                  \n",
+       "[11855] \"202632_at\"                   \"200917_s_at\"                \n",
+       "[11857] \"200918_s_at\"                 \"201451_x_at\"                \n",
+       "[11859] \"201453_x_at\"                 \"201572_x_at\"                \n",
+       "[11861] \"201571_s_at\"                 \"202892_at\"                  \n",
+       "[11863] \"201304_at\"                   \"200725_x_at\"                \n",
+       "[11865] \"205167_s_at\"                 \"200026_at\"                  \n",
+       "[11867] \"203759_at\"                   \"205400_at\"                  \n",
+       "[11869] \"204641_at\"                   \"203051_at\"                  \n",
+       "[11871] \"202465_at\"                   \"203682_s_at\"                \n",
+       "[11873] \"200795_at\"                   \"203581_at\"                  \n",
+       "[11875] \"203582_s_at\"                 \"201693_s_at\"                \n",
+       "[11877] \"201694_s_at\"                 \"201049_s_at\"                \n",
+       "[11879] \"204527_at\"                   \"202802_at\"                  \n",
+       "[11881] \"200662_s_at\"                 \"202024_at\"                  \n",
+       "[11883] \"201473_at\"                   \"200056_s_at\"                \n",
+       "[11885] \"200852_x_at\"                 \"202420_s_at\"                \n",
+       "[11887] \"203022_at\"                   \"203938_s_at\"                \n",
+       "[11889] \"203937_s_at\"                 \"203238_s_at\"                \n",
+       "[11891] \"203237_s_at\"                 \"205256_at\"                  \n",
+       "[11893] \"200778_s_at\"                 \"200015_s_at\"                \n",
+       "[11895] \"203514_at\"                   \"203237_s_at\"                \n",
+       "[11897] \"200089_s_at\"                 \"203980_at\"                  \n",
+       "[11899] \"204185_x_at\"                 \"204186_s_at\"                \n",
+       "[11901] \"202060_at\"                   \"200833_s_at\"                \n",
+       "[11903] \"200748_s_at\"                 \"203011_at\"                  \n",
+       "[11905] \"203688_at\"                   \"202531_at\"                  \n",
+       "[11907] \"205066_s_at\"                 \"205065_at\"                  \n",
+       "[11909] \"200023_s_at\"                 \"200865_at\"                  \n",
+       "[11911] \"203563_at\"                   \"204151_x_at\"                \n",
+       "[11913] \"204442_x_at\"                 \"202894_at\"                  \n",
+       "[11915] \"202928_s_at\"                 \"202165_at\"                  \n",
+       "[11917] \"204001_at\"                   \"201331_s_at\"                \n",
+       "[11919] \"201332_s_at\"                 \"204405_x_at\"                \n",
+       "[11921] \"203193_at\"                   \"201956_s_at\"                \n",
+       "[11923] \"202893_at\"                   \"201487_at\"                  \n",
+       "[11925] \"201680_x_at\"                 \"201679_at\"                  \n",
+       "[11927] \"200766_at\"                   \"201088_at\"                  \n",
+       "[11929] \"202666_s_at\"                 \"203778_at\"                  \n",
+       "[11931] \"200033_at\"                   \"203256_at\"                  \n",
+       "[11933] \"203893_at\"                   \"203957_at\"                  \n",
+       "[11935] \"201088_at\"                   \"200668_s_at\"                \n",
+       "[11937] \"200669_s_at\"                 \"200667_at\"                  \n",
+       "[11939] \"201169_s_at\"                 \"201170_s_at\"                \n",
+       "[11941] \"200033_at\"                   \"201130_s_at\"                \n",
+       "[11943] \"201131_s_at\"                 \"202986_at\"                  \n",
+       "[11945] \"204615_x_at\"                 \"203279_at\"                  \n",
+       "[11947] \"204291_at\"                   \"205184_at\"                  \n",
+       "[11949] \"200700_s_at\"                 \"200698_at\"                  \n",
+       "[11951] \"200699_at\"                   \"204505_s_at\"                \n",
+       "[11953] \"202111_at\"                   \"203955_at\"                  \n",
+       "[11955] \"205154_at\"                   \"202187_s_at\"                \n",
+       "[11957] \"202186_x_at\"                 \"205312_at\"                  \n",
+       "[11959] \"204122_at\"                   \"202155_s_at\"                \n",
+       "[11961] \"205078_at\"                   \"205077_s_at\"                \n",
+       "[11963] \"204255_s_at\"                 \"204253_s_at\"                \n",
+       "[11965] \"204254_s_at\"                 \"201740_at\"                  \n",
+       "[11967] \"204532_x_at\"                 \"204532_x_at\"                \n",
+       "[11969] \"202815_s_at\"                 \"202814_s_at\"                \n",
+       "[11971] \"201764_at\"                   \"201157_s_at\"                \n",
+       "[11973] \"201159_s_at\"                 \"201158_at\"                  \n",
+       "[11975] \"201264_at\"                   \"202651_at\"                  \n",
+       "[11977] \"203417_at\"                   \"204182_s_at\"                \n",
+       "[11979] \"204181_s_at\"                 \"204180_s_at\"                \n",
+       "[11981] \"204532_x_at\"                 \"200861_at\"                  \n",
+       "[11983] \"200860_s_at\"                 \"201527_at\"                  \n",
+       "[11985] \"203889_at\"                   \"203657_s_at\"                \n",
+       "[11987] \"204168_at\"                   \"200080_s_at\"                \n",
+       "[11989] \"200038_s_at\"                 \"205201_at\"                  \n",
+       "[11991] \"205105_at\"                   \"202541_at\"                  \n",
+       "[11993] \"202542_s_at\"                 \"201224_s_at\"                \n",
+       "[11995] \"204647_at\"                   \"203231_s_at\"                \n",
+       "[11997] \"203232_s_at\"                 \"203439_s_at\"                \n",
+       "[11999] \"203438_at\"                   \"204426_at\"                  \n",
+       "[12001] \"204427_s_at\"                 \"200087_s_at\"                \n",
+       "[12003] \"204650_s_at\"                 \"205429_s_at\"                \n",
+       "[12005] \"203612_at\"                   \"203085_s_at\"                \n",
+       "[12007] \"203084_at\"                   \"200707_at\"                  \n",
+       "[12009] \"201700_at\"                   \"201632_at\"                  \n",
+       "[12011] \"204394_at\"                   \"203341_at\"                  \n",
+       "[12013] \"201649_at\"                   \"204107_at\"                  \n",
+       "[12015] \"204108_at\"                   \"204109_s_at\"                \n",
+       "[12017] \"201175_at\"                   \"203314_at\"                  \n",
+       "[12019] \"200986_at\"                   \"201396_s_at\"                \n",
+       "[12021] \"201587_s_at\"                 \"205174_s_at\"                \n",
+       "[12023] \"200708_at\"                   \"200926_at\"                  \n",
+       "[12025] \"201365_at\"                   \"201364_s_at\"                \n",
+       "[12027] \"201035_s_at\"                 \"201036_s_at\"                \n",
+       "[12029] \"203235_at\"                   \"201092_at\"                  \n",
+       "[12031] \"202752_x_at\"                 \"201434_at\"                  \n",
+       "[12033] \"203915_at\"                   \"204533_at\"                  \n",
+       "[12035] \"203735_x_at\"                 \"203736_s_at\"                \n",
+       "[12037] \"202417_at\"                   \"203986_at\"                  \n",
+       "[12039] \"203986_at\"                   \"201939_at\"                  \n",
+       "[12041] \"203889_at\"                   \"202831_at\"                  \n",
+       "[12043] \"200655_s_at\"                 \"200653_s_at\"                \n",
+       "[12045] \"202154_x_at\"                 \"202623_at\"                  \n",
+       "[12047] \"200014_s_at\"                 \"200751_s_at\"                \n",
+       "[12049] \"200029_at\"                   \"204425_at\"                  \n",
+       "[12051] \"201437_s_at\"                 \"201435_s_at\"                \n",
+       "[12053] \"202725_at\"                   \"203630_s_at\"                \n",
+       "[12055] \"203629_s_at\"                 \"202908_at\"                  \n",
+       "[12057] \"200706_s_at\"                 \"200704_at\"                  \n",
+       "[12059] \"205250_s_at\"                 \"205189_s_at\"                \n",
+       "[12061] \"205189_s_at\"                 \"203025_at\"                  \n",
+       "[12063] \"203679_at\"                   \"201924_at\"                  \n",
+       "[12065] \"202074_s_at\"                 \"202073_at\"                  \n",
+       "[12067] \"202184_s_at\"                 \"204055_s_at\"                \n",
+       "[12069] \"204975_at\"                   \"203388_at\"                  \n",
+       "[12071] \"202988_s_at\"                 \"203589_s_at\"                \n",
+       "[12073] \"203588_s_at\"                 \"201953_at\"                  \n",
+       "[12075] \"202389_s_at\"                 \"202390_s_at\"                \n",
+       "[12077] \"202112_at\"                   \"200786_at\"                  \n",
+       "[12079] \"203335_at\"                   \"200069_at\"                  \n",
+       "[12081] \"205125_at\"                   \"202617_s_at\"                \n",
+       "[12083] \"202616_s_at\"                 \"202618_s_at\"                \n",
+       "[12085] \"201665_x_at\"                 \"201665_x_at\"                \n",
+       "[12087] \"201665_x_at\"                 \"202359_s_at\"                \n",
+       "[12089] \"202358_s_at\"                 \"205162_at\"                  \n",
+       "[12091] \"202210_x_at\"                 \"204780_s_at\"                \n",
+       "[12093] \"204781_s_at\"                 \"203564_at\"                  \n",
+       "[12095] \"202043_s_at\"                 \"201973_s_at\"                \n",
+       "[12097] \"201974_s_at\"                 \"202753_at\"                  \n",
+       "[12099] \"203683_s_at\"                 \"201872_s_at\"                \n",
+       "[12101] \"202890_at\"                   \"202889_x_at\"                \n",
+       "[12103] \"201325_s_at\"                 \"201324_at\"                  \n",
+       "[12105] \"204892_x_at\"                 \"201413_at\"                  \n",
+       "[12107] \"205378_s_at\"                 \"205377_s_at\"                \n",
+       "[12109] \"204024_at\"                   \"202447_at\"                  \n",
+       "[12111] \"203881_s_at\"                 \"202367_at\"                  \n",
+       "[12113] \"205310_at\"                   \"202132_at\"                  \n",
+       "[12115] \"202134_s_at\"                 \"202133_at\"                  \n",
+       "[12117] \"202905_x_at\"                 \"202906_s_at\"                \n",
+       "[12119] \"202907_s_at\"                 \"203307_at\"                  \n",
+       "[12121] \"205242_at\"                   \"204360_s_at\"                \n",
+       "[12123] \"203939_at\"                   \"201913_s_at\"                \n",
+       "[12125] \"204289_at\"                   \"204290_s_at\"                \n",
+       "[12127] \"202464_s_at\"                 \"200021_at\"                  \n",
+       "[12129] \"203981_s_at\"                 \"203982_s_at\"                \n",
+       "[12131] \"204956_at\"                   \"200730_s_at\"                \n",
+       "[12133] \"200733_s_at\"                 \"200732_s_at\"                \n",
+       "[12135] \"200731_s_at\"                 \"203413_at\"                  \n",
+       "[12137] \"203894_at\"                   \"204676_at\"                  \n",
+       "[12139] \"202338_at\"                   \"203973_s_at\"                \n",
+       "[12141] \"203228_at\"                   \"202095_s_at\"                \n",
+       "[12143] \"202094_at\"                   \"204599_s_at\"                \n",
+       "[12145] \"200050_at\"                   \"204091_at\"                  \n",
+       "[12147] \"201030_x_at\"                 \"203311_s_at\"                \n",
+       "[12149] \"203312_x_at\"                 \"201486_at\"                  \n",
+       "[12151] \"201485_s_at\"                 \"204475_at\"                  \n",
+       "[12153] \"200973_s_at\"                 \"200972_at\"                  \n",
+       "[12155] \"205413_at\"                   \"201780_s_at\"                \n",
+       "[12157] \"201779_s_at\"                 \"204664_at\"                  \n",
+       "[12159] \"204510_at\"                   \"205387_s_at\"                \n",
+       "[12161] \"204170_s_at\"                 \"203133_at\"                  \n",
+       "[12163] \"204745_x_at\"                 \"200767_s_at\"                \n",
+       "[12165] \"200774_at\"                   \"202713_s_at\"                \n",
+       "[12167] \"202714_s_at\"                 \"204177_s_at\"                \n",
+       "[12169] \"204176_at\"                   \"200738_s_at\"                \n",
+       "[12171] \"200737_at\"                   \"201361_at\"                  \n",
+       "[12173] \"202713_s_at\"                 \"204392_at\"                  \n",
+       "[12175] \"203350_at\"                   \"204571_x_at\"                \n",
+       "[12177] \"204572_s_at\"                 \"203670_at\"                  \n",
+       "[12179] \"200933_x_at\"                 \"204272_at\"                  \n",
+       "[12181] \"205077_s_at\"                 \"204399_s_at\"                \n",
+       "[12183] \"204398_s_at\"                 \"204636_at\"                  \n",
+       "[12185] \"205051_s_at\"                 \"204294_at\"                  \n",
+       "[12187] \"201711_x_at\"                 \"204548_at\"                  \n",
+       "[12189] \"205116_at\"                   \"202336_s_at\"                \n",
+       "[12191] \"204294_at\"                   \"203534_at\"                  \n",
+       "[12193] \"201491_at\"                   \"203128_at\"                  \n",
+       "[12195] \"203127_s_at\"                 \"204957_at\"                  \n",
+       "[12197] \"204351_at\"                   \"203215_s_at\"                \n",
+       "[12199] \"203216_s_at\"                 \"202680_at\"                  \n",
+       "[12201] \"205040_at\"                   \"205041_s_at\"                \n",
+       "[12203] \"205041_s_at\"                 \"200043_at\"                  \n",
+       "[12205] \"204964_s_at\"                 \"204963_at\"                  \n",
+       "[12207] \"203175_at\"                   \"201477_s_at\"                \n",
+       "[12209] \"201476_s_at\"                 \"204857_at\"                  \n",
+       "[12211] \"201612_at\"                   \"200828_s_at\"                \n",
+       "[12213] \"200829_x_at\"                 \"202102_s_at\"                \n",
+       "[12215] \"202103_at\"                   \"204586_at\"                  \n",
+       "[12217] \"201760_s_at\"                 \"204857_at\"                  \n",
+       "[12219] \"203791_at\"                   \"201974_s_at\"                \n",
+       "[12221] \"201973_s_at\"                 \"201284_s_at\"                \n",
+       "[12223] \"204532_x_at\"                 \"202064_s_at\"                \n",
+       "[12225] \"202063_s_at\"                 \"202062_s_at\"                \n",
+       "[12227] \"202061_s_at\"                 \"201681_s_at\"                \n",
+       "[12229] \"202678_at\"                   \"201059_at\"                  \n",
+       "[12231] \"202348_s_at\"                 \"202349_at\"                  \n",
+       "[12233] \"203407_at\"                   \"201257_x_at\"                \n",
+       "[12235] \"200099_s_at\"                 \"202411_at\"                  \n",
+       "[12237] \"200010_at\"                   \"203965_at\"                  \n",
+       "[12239] \"203062_s_at\"                 \"203061_s_at\"                \n",
+       "[12241] \"202292_x_at\"                 \"202081_at\"                  \n",
+       "[12243] \"203135_at\"                   \"202982_s_at\"                \n",
+       "[12245] \"203744_at\"                   \"202982_s_at\"                \n",
+       "[12247] \"201494_at\"                   \"201099_at\"                  \n",
+       "[12249] \"201100_s_at\"                 \"200696_s_at\"                \n",
+       "[12251] \"202528_at\"                   \"201251_at\"                  \n",
+       "[12253] \"200061_s_at\"                 \"204132_s_at\"                \n",
+       "[12255] \"202010_s_at\"                 \"202010_s_at\"                \n",
+       "[12257] \"200651_at\"                   \"201711_x_at\"                \n",
+       "[12259] \"200610_s_at\"                 \"203692_s_at\"                \n",
+       "[12261] \"203693_s_at\"                 \"205178_s_at\"                \n",
+       "[12263] \"203498_at\"                   \"201079_at\"                  \n",
+       "[12265] \"203704_s_at\"                 \"205368_at\"                  \n",
+       "[12267] \"200912_s_at\"                 \"200808_s_at\"                \n",
+       "[12269] \"203415_at\"                   \"200012_x_at\"                \n",
+       "[12271] \"203201_at\"                   \"202191_s_at\"                \n",
+       "[12273] \"202192_s_at\"                 \"205107_s_at\"                \n",
+       "[12275] \"201931_at\"                   \"202023_at\"                  \n",
+       "[12277] \"204579_at\"                   \"205445_at\"                  \n",
+       "[12279] \"201520_s_at\"                 \"201501_s_at\"                \n",
+       "[12281] \"202759_s_at\"                 \"202760_s_at\"                \n",
+       "[12283] \"202697_at\"                   \"202697_at\"                  \n",
+       "[12285] \"203308_x_at\"                 \"203309_s_at\"                \n",
+       "[12287] \"201492_s_at\"                 \"200034_s_at\"                \n",
+       "[12289] \"202147_s_at\"                 \"202984_s_at\"                \n",
+       "[12291] \"202985_s_at\"                 \"205192_at\"                  \n",
+       "[12293] \"204384_at\"                   \"201037_at\"                  \n",
+       "[12295] \"204766_s_at\"                 \"201601_x_at\"                \n",
+       "[12297] \"204722_at\"                   \"204723_at\"                  \n",
+       "[12299] \"200070_at\"                   \"204513_s_at\"                \n",
+       "[12301] \"204329_s_at\"                 \"204327_s_at\"                \n",
+       "[12303] \"204280_at\"                   \"201771_at\"                  \n",
+       "[12305] \"201428_at\"                   \"203229_s_at\"                \n",
+       "[12307] \"204683_at\"                   \"205352_at\"                  \n",
+       "[12309] \"202302_s_at\"                 \"202301_s_at\"                \n",
+       "[12311] \"201522_x_at\"                 \"204033_at\"                  \n",
+       "[12313] \"202856_s_at\"                 \"202855_s_at\"                \n",
+       "[12315] \"200851_s_at\"                 \"203192_at\"                  \n",
+       "[12317] \"203171_s_at\"                 \"203170_at\"                  \n",
+       "[12319] \"201234_at\"                   \"205129_at\"                  \n",
+       "[12321] \"202492_at\"                   \"203192_at\"                  \n",
+       "[12323] \"201568_at\"                   \"201118_at\"                  \n",
+       "[12325] \"202492_at\"                   \"202430_s_at\"                \n",
+       "[12327] \"202446_s_at\"                 \"204716_at\"                  \n",
+       "[12329] \"205046_at\"                   \"203277_at\"                  \n",
+       "[12331] \"203214_x_at\"                 \"203213_at\"                  \n",
+       "[12333] \"204436_at\"                   \"200055_at\"                  \n",
+       "[12335] \"205220_at\"                   \"205220_at\"                  \n",
+       "[12337] \"202692_s_at\"                 \"203316_s_at\"                \n",
+       "[12339] \"205309_at\"                   \"205331_s_at\"                \n",
+       "[12341] \"201877_s_at\"                 \"203545_at\"                  \n",
+       "[12343] \"204798_at\"                   \"203835_at\"                  \n",
+       "[12345] \"201772_at\"                   \"204080_at\"                  \n",
+       "[12347] \"201167_x_at\"                 \"202536_at\"                  \n",
+       "[12349] \"202538_s_at\"                 \"202537_s_at\"                \n",
+       "[12351] \"201093_x_at\"                 \"205209_at\"                  \n",
+       "[12353] \"205302_at\"                   \"205036_at\"                  \n",
+       "[12355] \"205166_at\"                   \"202340_x_at\"                \n",
+       "[12357] \"204470_at\"                   \"204133_at\"                  \n",
+       "[12359] \"202740_at\"                   \"204945_at\"                  \n",
+       "[12361] \"201306_s_at\"                 \"201305_x_at\"                \n",
+       "[12363] \"201186_at\"                   \"203148_s_at\"                \n",
+       "[12365] \"203147_s_at\"                 \"205318_at\"                  \n",
+       "[12367] \"202740_at\"                   \"202592_at\"                  \n",
+       "[12369] \"202752_x_at\"                 \"204274_at\"                  \n",
+       "[12371] \"204278_s_at\"                 \"200012_x_at\"                \n",
+       "[12373] \"200663_at\"                   \"203310_at\"                  \n",
+       "[12375] \"204244_s_at\"                 \"200038_s_at\"                \n",
+       "[12377] \"203822_s_at\"                 \"200697_at\"                  \n",
+       "[12379] \"202370_s_at\"                 \"205204_at\"                  \n",
+       "[12381] \"200823_x_at\"                 \"202220_at\"                  \n",
+       "[12383] \"204862_s_at\"                 \"200966_x_at\"                \n",
+       "[12385] \"200652_at\"                   \"203453_at\"                  \n",
+       "[12387] \"204970_s_at\"                 \"202005_at\"                  \n",
+       "[12389] \"202806_at\"                   \"203823_at\"                  \n",
+       "[12391] \"202148_s_at\"                 \"202009_at\"                  \n",
+       "[12393] \"204370_at\"                   \"203005_at\"                  \n",
+       "[12395] \"201806_s_at\"                 \"201934_at\"                  \n",
+       "[12397] \"201419_at\"                   \"204605_at\"                  \n",
+       "[12399] \"201005_at\"                   \"200910_at\"                  \n",
+       "[12401] \"201998_at\"                   \"202137_s_at\"                \n",
+       "[12403] \"202136_at\"                   \"204796_at\"                  \n",
+       "[12405] \"204797_s_at\"                 \"205228_at\"                  \n",
+       "[12407] \"201322_at\"                   \"200935_at\"                  \n",
+       "[12409] \"201550_x_at\"                 \"200627_at\"                  \n",
+       "[12411] \"201641_at\"                   \"205097_at\"                  \n",
+       "[12413] \"200928_s_at\"                 \"200927_s_at\"                \n",
+       "[12415] \"205074_at\"                   \"200032_s_at\"                \n",
+       "[12417] \"205236_x_at\"                 \"201646_at\"                  \n",
+       "[12419] \"201647_s_at\"                 \"203828_s_at\"                \n",
+       "[12421] \"202006_at\"                   \"205053_at\"                  \n",
+       "[12423] \"200735_x_at\"                 \"202309_at\"                  \n",
+       "[12425] \"202421_at\"                   \"201023_at\"                  \n",
+       "[12427] \"204459_at\"                   \"202168_at\"                  \n",
+       "[12429] \"200648_s_at\"                 \"201098_at\"                  \n",
+       "[12431] \"200656_s_at\"                 \"200654_at\"                  \n",
+       "[12433] \"203854_at\"                   \"201262_s_at\"                \n",
+       "[12435] \"201261_x_at\"                 \"200993_at\"                  \n",
+       "[12437] \"200994_at\"                   \"200992_at\"                  \n",
+       "[12439] \"200995_at\"                   \"201714_at\"                  \n",
+       "[12441] \"200066_at\"                   \"203095_at\"                  \n",
+       "[12443] \"205110_s_at\"                 \"203249_at\"                  \n",
+       "[12445] \"200943_at\"                   \"202487_s_at\"                \n",
+       "[12447] \"204817_at\"                   \"203041_s_at\"                \n",
+       "[12449] \"203042_at\"                   \"200821_at\"                  \n",
+       "[12451] \"200978_at\"                   \"201695_s_at\"                \n",
+       "[12453] \"203848_at\"                   \"203847_s_at\"                \n",
+       "[12455] \"205145_s_at\"                 \"203989_x_at\"                \n",
+       "[12457] \"201044_x_at\"                 \"201041_s_at\"                \n",
+       "[12459] \"204765_at\"                   \"203456_at\"                  \n",
+       "[12461] \"202043_s_at\"                 \"200991_s_at\"                \n",
+       "[12463] \"204850_s_at\"                 \"204851_s_at\"                \n",
+       "[12465] \"200096_s_at\"                 \"201172_x_at\"                \n",
+       "[12467] \"202859_x_at\"                 \"204930_s_at\"                \n",
+       "[12469] \"200913_at\"                   \"201210_at\"                  \n",
+       "[12471] \"201211_s_at\"                 \"203275_at\"                  \n",
+       "[12473] \"203867_s_at\"                 \"203866_at\"                  \n",
+       "[12475] \"202799_at\"                   \"202354_s_at\"                \n",
+       "[12477] \"202356_s_at\"                 \"202355_s_at\"                \n",
+       "[12479] \"203286_at\"                   \"202354_s_at\"                \n",
+       "[12481] \"200882_s_at\"                 \"200916_at\"                  \n",
+       "[12483] \"200787_s_at\"                 \"200788_s_at\"                \n",
+       "[12485] \"203475_at\"                   \"203358_s_at\"                \n",
+       "[12487] \"201502_s_at\"                 \"201774_s_at\"                \n",
+       "[12489] \"205262_at\"                   \"204588_s_at\"                \n",
+       "[12491] \"201504_s_at\"                 \"201513_at\"                  \n",
+       "[12493] \"201515_s_at\"                 \"204466_s_at\"                \n",
+       "[12495] \"204467_s_at\"                 \"201922_at\"                  \n",
+       "[12497] \"205327_s_at\"                 \"203882_at\"                  \n",
+       "[12499] \"201273_s_at\"                 \"203351_s_at\"                \n",
+       "[12501] \"203352_at\"                   \"200674_s_at\"                \n",
+       "[12503] \"205239_at\"                   \"201183_s_at\"                \n",
+       "[12505] \"201182_s_at\"                 \"200674_s_at\"                \n",
+       "[12507] \"201217_x_at\"                 \"201183_s_at\"                \n",
+       "[12509] \"201182_s_at\"                 \"201184_s_at\"                \n",
+       "[12511] \"203444_s_at\"                 \"201116_s_at\"                \n",
+       "[12513] \"201117_s_at\"                 \"201711_x_at\"                \n",
+       "[12515] \"204495_s_at\"                 \"204494_s_at\"                \n",
+       "[12517] \"203442_x_at\"                 \"203869_at\"                  \n",
+       "[12519] \"203870_at\"                   \"204307_at\"                  \n",
+       "[12521] \"201065_s_at\"                 \"201579_at\"                  \n",
+       "[12523] \"203802_x_at\"                 \"205163_at\"                  \n",
+       "[12525] \"201044_x_at\"                 \"203452_at\"                  \n",
+       "[12527] \"202681_at\"                   \"202682_s_at\"                \n",
+       "[12529] \"205428_s_at\"                 \"203668_at\"                  \n",
+       "[12531] \"201888_s_at\"                 \"201887_at\"                  \n",
+       "[12533] \"201083_s_at\"                 \"200805_at\"                  \n",
+       "[12535] \"202180_s_at\"                 \"201094_at\"                  \n",
+       "[12537] \"202183_s_at\"                 \"205225_at\"                  \n",
+       "[12539] \"200779_at\"                   \"205077_s_at\"                \n",
+       "[12541] \"203102_s_at\"                 \"203101_s_at\"                \n",
+       "[12543] \"203701_s_at\"                 \"202958_at\"                  \n",
+       "[12545] \"203141_s_at\"                 \"203142_s_at\"                \n",
+       "[12547] \"201871_s_at\"                 \"202614_at\"                  \n",
+       "[12549] \"200976_s_at\"                 \"200977_s_at\"                \n",
+       "[12551] \"201804_x_at\"                 \"203460_s_at\"                \n",
+       "[12553] \"203558_at\"                   \"200001_at\"                  \n",
+       "[12555] \"203585_at\"                   \"202650_s_at\"                \n",
+       "[12557] \"205181_at\"                   \"201743_at\"                  \n",
+       "[12559] \"205126_at\"                   \"204844_at\"                  \n",
+       "[12561] \"204845_s_at\"                 \"204546_at\"                  \n",
+       "[12563] \"203713_s_at\"                 \"203977_at\"                  \n",
+       "[12565] \"201545_s_at\"                 \"201544_x_at\"                \n",
+       "[12567] \"201280_s_at\"                 \"201279_s_at\"                \n",
+       "[12569] \"201278_at\"                   \"202281_at\"                  \n",
+       "[12571] \"203897_at\"                   \"202407_s_at\"                \n",
+       "[12573] \"202408_s_at\"                 \"201043_s_at\"                \n",
+       "[12575] \"201051_at\"                   \"201038_s_at\"                \n",
+       "[12577] \"203306_s_at\"                 \"201033_x_at\"                \n",
+       "[12579] \"203306_s_at\"                 \"201267_s_at\"                \n",
+       "[12581] \"203637_s_at\"                 \"203636_at\"                  \n",
+       "[12583] \"201563_at\"                   \"201562_s_at\"                \n",
+       "[12585] \"201563_at\"                   \"201562_s_at\"                \n",
+       "[12587] \"203880_at\"                   \"200775_s_at\"                \n",
+       "[12589] \"200097_s_at\"                 \"204811_s_at\"                \n",
+       "[12591] \"205057_s_at\"                 \"205059_s_at\"                \n",
+       "[12593] \"201834_at\"                   \"201835_s_at\"                \n",
+       "[12595] \"200948_at\"                   \"203010_at\"                  \n",
+       "[12597] \"203600_s_at\"                 \"203420_at\"                  \n",
+       "[12599] \"200091_s_at\"                 \"205375_at\"                  \n",
+       "[12601] \"201600_at\"                   \"200092_s_at\"                \n",
+       "[12603] \"203607_at\"                   \"201309_x_at\"                \n",
+       "[12605] \"204658_at\"                   \"204757_s_at\"                \n",
+       "[12607] \"204758_s_at\"                 \"200869_at\"                  \n",
+       "[12609] \"202333_s_at\"                 \"202334_s_at\"                \n",
+       "[12611] \"202335_s_at\"                 \"201901_s_at\"                \n",
+       "[12613] \"200047_s_at\"                 \"201228_s_at\"                \n",
+       "[12615] \"201230_s_at\"                 \"201229_s_at\"                \n",
+       "[12617] \"204048_s_at\"                 \"204047_s_at\"                \n",
+       "[12619] \"204049_s_at\"                 \"200628_s_at\"                \n",
+       "[12621] \"200629_at\"                   \"202314_at\"                  \n",
+       "[12623] \"204349_at\"                   \"204350_s_at\"                \n",
+       "[12625] \"201618_x_at\"                 \"204934_s_at\"                \n",
+       "[12627] \"203002_at\"                   \"201401_s_at\"                \n",
+       "[12629] \"201402_at\"                   \"204309_at\"                  \n",
+       "[12631] \"201901_s_at\"                 \"201902_s_at\"                \n",
+       "[12633] \"200047_s_at\"                 \"200826_at\"                  \n",
+       "[12635] \"200016_x_at\"                 \"201193_at\"                  \n",
+       "[12637] \"202260_s_at\"                 \"202174_s_at\"                \n",
+       "[12639] \"204828_at\"                   \"204374_s_at\"                \n",
+       "[12641] \"204269_at\"                   \"201782_s_at\"                \n",
+       "[12643] \"203826_s_at\"                 \"204953_at\"                  \n",
+       "[12645] \"203302_at\"                   \"203149_at\"                  \n",
+       "[12647] \"203023_at\"                   \"202264_s_at\"                \n",
+       "[12649] \"202314_at\"                   \"204965_at\"                  \n",
+       "[12651] \"202314_at\"                   \"205096_at\"                  \n",
+       "[12653] \"205172_x_at\"                 \"205391_x_at\"                \n",
+       "[12655] \"205389_s_at\"                 \"205390_s_at\"                \n",
+       "[12657] \"203252_at\"                   \"203381_s_at\"                \n",
+       "[12659] \"203382_s_at\"                 \"201620_at\"                  \n",
+       "[12661] \"204416_x_at\"                 \"200824_at\"                  \n",
+       "[12663] \"202518_at\"                   \"204561_x_at\"                \n",
+       "[12665] \"204561_x_at\"                 \"201640_x_at\"                \n",
+       "[12667] \"201705_at\"                   \"203088_at\"                  \n",
+       "[12669] \"200827_at\"                   \"200932_s_at\"                \n",
+       "[12671] \"200085_s_at\"                 \"203991_s_at\"                \n",
+       "[12673] \"203990_s_at\"                 \"203992_s_at\"                \n",
+       "[12675] \"203500_at\"                   \"204961_s_at\"                \n",
+       "[12677] \"204547_at\"                   \"202123_s_at\"                \n",
+       "[12679] \"201277_s_at\"                 \"205425_at\"                  \n",
+       "[12681] \"205426_s_at\"                 \"201645_at\"                  \n",
+       "[12683] \"203107_x_at\"                 \"201290_at\"                  \n",
+       "[12685] \"201759_at\"                   \"204892_x_at\"                \n",
+       "[12687] \"201255_x_at\"                 \"202109_at\"                  \n",
+       "[12689] \"200705_s_at\"                 \"202948_at\"                  \n",
+       "[12691] \"205226_at\"                   \"203107_x_at\"                \n",
+       "[12693] \"203107_x_at\"                 \"204659_s_at\"                \n",
+       "[12695] \"205454_at\"                   \"200743_s_at\"                \n",
+       "[12697] \"200742_s_at\"                 \"200055_at\"                  \n",
+       "[12699] \"204788_s_at\"                 \"203461_at\"                  \n",
+       "[12701] \"204232_at\"                   \"203008_x_at\"                \n",
+       "[12703] \"204148_s_at\"                 \"202328_s_at\"                \n",
+       "[12705] \"202218_s_at\"                 \"205121_at\"                  \n",
+       "[12707] \"205120_s_at\"                 \"200076_s_at\"                \n",
+       "[12709] \"204883_s_at\"                 \"204884_s_at\"                \n",
+       "[12711] \"205020_s_at\"                 \"203856_at\"                  \n",
+       "[12713] \"201387_s_at\"                 \"202977_s_at\"                \n",
+       "[12715] \"202978_s_at\"                 \"202979_s_at\"                \n",
+       "[12717] \"205137_x_at\"                 \"201071_x_at\"                \n",
+       "[12719] \"201070_x_at\"                 \"201633_s_at\"                \n",
+       "[12721] \"201634_s_at\"                 \"204961_s_at\"                \n",
+       "[12723] \"201668_x_at\"                 \"200609_s_at\"                \n",
+       "[12725] \"200611_s_at\"                 \"205133_s_at\"                \n",
+       "[12727] \"202284_s_at\"                 \"202918_s_at\"                \n",
+       "[12729] \"205133_s_at\"                 \"204612_at\"                  \n",
+       "[12731] \"202918_s_at\"                 \"202919_at\"                  \n",
+       "[12733] \"205308_at\"                   \"202145_at\"                  \n",
+       "[12735] \"200925_at\"                   \"204564_at\"                  \n",
+       "[12737] \"203366_at\"                   \"203366_at\"                  \n",
+       "[12739] \"203462_x_at\"                 \"203686_at\"                  \n",
+       "[12741] \"201220_x_at\"                 \"201219_at\"                  \n",
+       "[12743] \"201218_at\"                   \"201138_s_at\"                \n",
+       "[12745] \"201139_s_at\"                 \"204951_at\"                  \n",
+       "[12747] \"200911_s_at\"                 \"205264_at\"                  \n",
+       "[12749] \"202763_at\"                   \"202590_s_at\"                \n",
+       "[12751] \"200807_s_at\"                 \"200806_s_at\"                \n",
+       "[12753] \"201353_s_at\"                 \"201354_s_at\"                \n",
+       "[12755] \"201355_s_at\"                 \"203400_s_at\"                \n",
+       "[12757] \"205003_at\"                   \"201348_at\"                  \n",
+       "[12759] \"204368_at\"                   \"204050_s_at\"                \n",
+       "[12761] \"200960_x_at\"                 \"202311_s_at\"                \n",
+       "[12763] \"202310_s_at\"                 \"202312_s_at\"                \n",
+       "[12765] \"204015_s_at\"                 \"204014_at\"                  \n",
+       "[12767] \"200054_at\"                   \"203325_s_at\"                \n",
+       "[12769] \"205357_s_at\"                 \"204284_at\"                  \n",
+       "[12771] \"205033_s_at\"                 \"202544_at\"                  \n",
+       "[12773] \"202543_s_at\"                 \"205033_s_at\"                \n",
+       "[12775] \"204245_s_at\"                 \"200694_s_at\"                \n",
+       "[12777] \"200702_s_at\"                 \"204450_x_at\"                \n",
+       "[12779] \"203716_s_at\"                 \"203717_at\"                  \n",
+       "[12781] \"204157_s_at\"                 \"204156_at\"                  \n",
+       "[12783] \"204155_s_at\"                 \"201891_s_at\"                \n",
+       "[12785] \"205237_at\"                   \"201241_at\"                  \n",
+       "[12787] \"204737_s_at\"                 \"204872_at\"                  \n",
+       "[12789] \"201872_s_at\"                 \"201873_s_at\"                \n",
+       "[12791] \"202676_x_at\"                 \"201155_s_at\"                \n",
+       "[12793] \"204737_s_at\"                 \"200817_x_at\"                \n",
+       "[12795] \"203327_at\"                   \"203328_x_at\"                \n",
+       "[12797] \"203480_s_at\"                 \"203479_s_at\"                \n",
+       "[12799] \"202200_s_at\"                 \"202199_s_at\"                \n",
+       "[12801] \"203522_at\"                   \"202431_s_at\"                \n",
+       "[12803] \"203926_x_at\"                 \"203595_s_at\"                \n",
+       "[12805] \"203596_s_at\"                 \"204178_s_at\"                \n",
+       "[12807] \"200997_at\"                   \"200997_at\"                  \n",
+       "[12809] \"203050_at\"                   \"203431_s_at\"                \n",
+       "[12811] \"202488_s_at\"                 \"202489_s_at\"                \n",
+       "[12813] \"202939_at\"                   \"202151_s_at\"                \n",
+       "[12815] \"203370_s_at\"                 \"203369_x_at\"                \n",
+       "[12817] \"204562_at\"                   \"202727_s_at\"                \n",
+       "[12819] \"200610_s_at\"                 \"205315_s_at\"                \n",
+       "[12821] \"203151_at\"                   \"204461_x_at\"                \n",
+       "[12823] \"204460_s_at\"                 \"204578_at\"                  \n",
+       "[12825] \"203022_at\"                   \"205387_s_at\"                \n",
+       "[12827] \"204543_at\"                   \"203645_s_at\"                \n",
+       "[12829] \"203007_x_at\"                 \"200941_at\"                  \n",
+       "[12831] \"200942_s_at\"                 \"200942_s_at\"                \n",
+       "[12833] \"201782_s_at\"                 \"201781_s_at\"                \n",
+       "[12835] \"204662_at\"                   \"203621_at\"                  \n",
+       "[12837] \"200783_s_at\"                 \"205387_s_at\"                \n",
+       "[12839] \"205356_at\"                   \"203632_s_at\"                \n",
+       "[12841] \"203631_s_at\"                 \"205356_at\"                  \n",
+       "[12843] \"203474_at\"                   \"204003_s_at\"                \n",
+       "[12845] \"205245_at\"                   \"202472_at\"                  \n",
+       "[12847] \"205101_at\"                   \"203434_s_at\"                \n",
+       "[12849] \"203435_s_at\"                 \"203676_at\"                  \n",
+       "[12851] \"200858_s_at\"                 \"200858_s_at\"                \n",
+       "[12853] \"200858_s_at\"                 \"204958_at\"                  \n",
+       "[12855] \"203663_s_at\"                 \"204245_s_at\"                \n",
+       "[12857] \"200965_s_at\"                 \"204712_at\"                  \n",
+       "[12859] \"202923_s_at\"                 \"202922_at\"                  \n",
+       "[12861] \"205313_at\"                   \"201173_x_at\"                \n",
+       "[12863] \"201819_at\"                   \"204551_s_at\"                \n",
+       "[12865] \"205132_at\"                   \"201198_s_at\"                \n",
+       "[12867] \"201199_s_at\"                 \"202521_at\"                  \n",
+       "[12869] \"201882_x_at\"                 \"201883_s_at\"                \n",
+       "[12871] \"202387_at\"                   \"201108_s_at\"                \n",
+       "[12873] \"201110_s_at\"                 \"201107_s_at\"                \n",
+       "[12875] \"201109_s_at\"                 \"205025_at\"                  \n",
+       "[12877] \"203727_at\"                   \"203254_s_at\"                \n",
+       "[12879] \"204105_s_at\"                 \"200007_at\"                  \n",
+       "[12881] \"200059_s_at\"                 \"200736_s_at\"                \n",
+       "[12883] \"202766_s_at\"                 \"202765_s_at\"                \n",
+       "[12885] \"202773_s_at\"                 \"202774_s_at\"                \n",
+       "[12887] \"202775_s_at\"                 \"202941_at\"                  \n",
+       "[12889] \"200717_x_at\"                 \"203667_at\"                  \n",
+       "[12891] \"205185_at\"                   \"201915_at\"                  \n",
+       "[12893] \"201916_s_at\"                 \"201914_s_at\"                \n",
+       "[12895] \"201812_s_at\"                 \"201812_s_at\"                \n",
+       "[12897] \"201756_at\"                   \"204868_at\"                  \n",
+       "[12899] \"203355_s_at\"                 \"203354_s_at\"                \n",
+       "[12901] \"203417_at\"                   \"205402_x_at\"                \n",
+       "[12903] \"203078_at\"                   \"203079_s_at\"                \n",
+       "[12905] \"202496_at\"                   \"201345_s_at\"                \n",
+       "[12907] \"201343_at\"                   \"201344_at\"                  \n",
+       "[12909] \"203549_s_at\"                 \"203548_s_at\"                \n",
+       "[12911] \"204090_at\"                   \"202496_at\"                  \n",
+       "[12913] \"200599_s_at\"                 \"200598_s_at\"                \n",
+       "[12915] \"202659_at\"                   \"201289_at\"                  \n",
+       "[12917] \"202659_at\"                   \"204428_s_at\"                \n",
+       "[12919] \"202307_s_at\"                 \"201089_at\"                  \n",
+       "[12921] \"202942_at\"                   \"203410_at\"                  \n",
+       "[12923] \"203224_at\"                   \"203225_s_at\"                \n",
+       "[12925] \"201890_at\"                   \"205019_s_at\"                \n",
+       "[12927] \"203743_s_at\"                 \"204592_at\"                  \n",
+       "[12929] \"205462_s_at\"                 \"200886_s_at\"                \n",
+       "[12931] \"204538_x_at\"                 \"205265_s_at\"                \n",
+       "[12933] \"205033_s_at\"                 \"205340_at\"                  \n",
+       "[12935] \"203987_at\"                   \"203028_s_at\"                \n",
+       "[12937] \"204515_at\"                   \"204607_at\"                  \n",
+       "[12939] \"201492_s_at\"                 \"204864_s_at\"                \n",
+       "[12941] \"204863_s_at\"                 \"203027_s_at\"                \n",
+       "[12943] \"200632_s_at\"                 \"202357_s_at\"                \n",
+       "[12945] \"201397_at\"                   \"202357_s_at\"                \n",
+       "[12947] \"205280_at\"                   \"205279_s_at\"                \n",
+       "[12949] \"202869_at\"                   \"202667_s_at\"                \n",
+       "[12951] \"201597_at\"                   \"201286_at\"                  \n",
+       "[12953] \"201287_s_at\"                 \"202771_at\"                  \n",
+       "[12955] \"204538_x_at\"                 \"200710_at\"                  \n",
+       "[12957] \"201342_at\"                   \"200717_x_at\"                \n",
+       "[12959] \"203357_s_at\"                 \"203356_at\"                  \n",
+       "[12961] \"204972_at\"                   \"203715_at\"                  \n",
+       "[12963] \"203714_s_at\"                 \"203253_s_at\"                \n",
+       "[12965] \"201811_x_at\"                 \"201810_s_at\"                \n",
+       "[12967] \"203422_at\"                   \"200073_s_at\"                \n",
+       "[12969] \"203219_s_at\"                 \"200645_at\"                  \n",
+       "[12971] \"200645_at\"                   \"200035_at\"                  \n",
+       "[12973] \"201993_x_at\"                 \"203477_at\"                  \n",
+       "[12975] \"200838_at\"                   \"200839_s_at\"                \n",
+       "[12977] \"203837_at\"                   \"203836_s_at\"                \n",
+       "[12979] \"202790_at\"                   \"203805_s_at\"                \n",
+       "[12981] \"203806_s_at\"                 \"201217_x_at\"                \n",
+       "[12983] \"200067_x_at\"                 \"202860_at\"                  \n",
+       "[12985] \"204521_at\"                   \"202320_at\"                  \n",
+       "[12987] \"200012_x_at\"                 \"203071_at\"                  \n",
+       "[12989] \"204887_s_at\"                 \"204886_at\"                  \n",
+       "[12991] \"205396_at\"                   \"205398_s_at\"                \n",
+       "[12993] \"205397_x_at\"                 \"203540_at\"                  \n",
+       "[12995] \"203245_s_at\"                 \"200726_at\"                  \n",
+       "[12997] \"203825_at\"                   \"200048_s_at\"                \n",
+       "[12999] \"200048_s_at\"                 \"202252_at\"                  \n",
+       "[13001] \"204660_at\"                   \"204659_s_at\"                \n",
+       "[13003] \"201809_s_at\"                 \"201808_s_at\"                \n",
+       "[13005] \"200741_s_at\"                 \"202698_x_at\"                \n",
+       "[13007] \"200086_s_at\"                 \"202987_at\"                  \n",
+       "[13009] \"204075_s_at\"                 \"204074_s_at\"                \n",
+       "[13011] \"200080_s_at\"                 \"204057_at\"                  \n",
+       "[13013] \"204106_at\"                   \"202561_at\"                  \n",
+       "[13015] \"204637_at\"                   \"203890_s_at\"                \n",
+       "[13017] \"203891_s_at\"                 \"203572_s_at\"                \n",
+       "[13019] \"201555_at\"                   \"200094_s_at\"                \n",
+       "[13021] \"204102_s_at\"                 \"204670_x_at\"                \n",
+       "[13023] \"201297_s_at\"                 \"201298_s_at\"                \n",
+       "[13025] \"201299_s_at\"                 \"202424_at\"                  \n",
+       "[13027] \"201390_s_at\"                 \"201761_at\"                  \n",
+       "[13029] \"202326_at\"                   \"201090_x_at\"                \n",
+       "[13031] \"201701_s_at\"                 \"204649_at\"                  \n",
+       "[13033] \"204771_s_at\"                 \"204772_s_at\"                \n",
+       "[13035] \"202444_s_at\"                 \"202441_at\"                  \n",
+       "[13037] \"201758_at\"                   \"201065_s_at\"                \n",
+       "[13039] \"201903_at\"                   \"200810_s_at\"                \n",
+       "[13041] \"200811_at\"                   \"203233_at\"                  \n",
+       "[13043] \"200906_s_at\"                 \"200907_s_at\"                \n",
+       "[13045] \"200897_s_at\"                 \"200831_s_at\"                \n",
+       "[13047] \"200832_s_at\"                 \"201275_at\"                  \n",
+       "[13049] \"205293_x_at\"                 \"205294_at\"                  \n",
+       "[13051] \"201276_at\"                   \"200974_at\"                  \n",
+       "[13053] \"203908_at\"                   \"205240_at\"                  \n",
+       "[13055] \"202252_at\"                   \"204832_s_at\"                \n",
+       "[13057] \"204067_at\"                   \"205165_at\"                  \n",
+       "[13059] \"202012_s_at\"                 \"202013_s_at\"                \n",
+       "[13061] \"202641_at\"                   \"203702_s_at\"                \n",
+       "[13063] \"203703_s_at\"                 \"201492_s_at\"                \n",
+       "[13065] \"203096_s_at\"                 \"203097_s_at\"                \n",
+       "[13067] \"204136_at\"                   \"204053_x_at\"                \n",
+       "[13069] \"204054_at\"                   \"203979_at\"                  \n",
+       "[13071] \"205155_s_at\"                 \"201492_s_at\"                \n",
+       "[13073] \"204474_at\"                   \"203639_s_at\"                \n",
+       "[13075] \"203638_s_at\"                 \"203034_s_at\"                \n",
+       "[13077] \"203034_s_at\"                 \"202276_at\"                  \n",
+       "[13079] \"204580_at\"                   \"204526_s_at\"                \n",
+       "[13081] \"201321_s_at\"                 \"201320_at\"                  \n",
+       "[13083] \"204369_at\"                   \"201323_at\"                  \n",
+       "[13085] \"202920_at\"                   \"202921_s_at\"                \n",
+       "[13087] \"200773_x_at\"                 \"200772_x_at\"                \n",
+       "[13089] \"201101_s_at\"                 \"203087_s_at\"                \n",
+       "[13091] \"203086_at\"                   \"203905_at\"                  \n",
+       "[13093] \"201937_s_at\"                 \"201165_s_at\"                \n",
+       "[13095] \"201164_s_at\"                 \"201166_s_at\"                \n",
+       "[13097] \"201962_s_at\"                 \"201961_s_at\"                \n",
+       "[13099] \"204023_at\"                   \"203067_at\"                  \n",
+       "[13101] \"203048_s_at\"                 \"203049_s_at\"                \n",
+       "[13103] \"203419_at\"                   \"202881_x_at\"                \n",
+       "[13105] \"204818_at\"                   \"205348_s_at\"                \n",
+       "[13107] \"203740_at\"                   \"200056_s_at\"                \n",
+       "[13109] \"204613_at\"                   \"204613_at\"                  \n",
+       "[13111] \"201591_s_at\"                 \"200063_s_at\"                \n",
+       "[13113] \"203422_at\"                   \"202455_at\"                  \n",
+       "[13115] \"205427_at\"                   \"202857_at\"                  \n",
+       "[13117] \"202857_at\"                   \"201912_s_at\"                \n",
+       "[13119] \"200982_s_at\"                 \"203519_s_at\"                \n",
+       "[13121] \"205344_at\"                   \"205091_x_at\"                \n",
+       "[13123] \"204999_s_at\"                 \"204998_s_at\"                \n",
+       "[13125] \"202802_at\"                   \"205381_at\"                  \n",
+       "[13127] \"203365_s_at\"                 \"201725_at\"                  \n",
+       "[13129] \"204341_at\"                   \"204355_at\"                  \n",
+       "[13131] \"204692_at\"                   \"204692_at\"                  \n",
+       "[13133] \"203615_x_at\"                 \"203615_x_at\"                \n",
+       "[13135] \"203615_x_at\"                 \"204617_s_at\"                \n",
+       "[13137] \"201980_s_at\"                 \"201954_at\"                  \n",
+       "[13139] \"200950_at\"                   \"204355_at\"                  \n",
+       "[13141] \"200950_at\"                   \"204696_s_at\"                \n",
+       "[13143] \"204695_at\"                   \"203666_at\"                  \n",
+       "[13145] \"201954_at\"                   \"201818_at\"                  \n",
+       "[13147] \"201938_at\"                   \"202738_s_at\"                \n",
+       "[13149] \"202739_s_at\"                 \"202779_s_at\"                \n",
+       "[13151] \"203852_s_at\"                 \"202290_at\"                  \n",
+       "[13153] \"205176_s_at\"                 \"204583_x_at\"                \n",
+       "[13155] \"204582_s_at\"                 \"204861_s_at\"                \n",
+       "[13157] \"204860_s_at\"                 \"201542_at\"                  \n",
+       "[13159] \"201543_s_at\"                 \"202523_s_at\"                \n",
+       "[13161] \"202524_s_at\"                 \"200095_x_at\"                \n",
+       "[13163] \"200817_x_at\"                 \"201194_at\"                  \n",
+       "[13165] \"200095_x_at\"                 \"200817_x_at\"                \n",
+       "[13167] \"200975_at\"                   \"205457_at\"                  \n",
+       "[13169] \"205207_at\"                   \"205190_at\"                  \n",
+       "[13171] \"203748_x_at\"                 \"200595_s_at\"                \n",
+       "[13173] \"200597_at\"                   \"200596_s_at\"                \n",
+       "[13175] \"203234_at\"                   \"203125_x_at\"                \n",
+       "[13177] \"203123_s_at\"                 \"203124_s_at\"                \n",
+       "[13179] \"204770_at\"                   \"204769_s_at\"                \n",
+       "[13181] \"202196_s_at\"                 \"201619_at\"                  \n",
+       "[13183] \"204395_s_at\"                 \"204396_s_at\"                \n",
+       "[13185] \"202404_s_at\"                 \"202403_s_at\"                \n",
+       "[13187] \"204538_x_at\"                 \"205235_s_at\"                \n",
+       "[13189] \"203052_at\"                   \"204734_at\"                  \n",
+       "[13191] \"204481_at\"                   \"205131_x_at\"                \n",
+       "[13193] \"201650_at\"                   \"201975_at\"                  \n",
+       "[13195] \"201467_s_at\"                 \"201468_s_at\"                \n",
+       "[13197] \"202021_x_at\"                 \"202029_x_at\"                \n",
+       "[13199] \"202028_s_at\"                 \"204016_at\"                  \n",
+       "[13201] \"200057_s_at\"                 \"203472_s_at\"                \n",
+       "[13203] \"203473_at\"                   \"205098_at\"                  \n",
+       "[13205] \"205099_s_at\"                 \"200923_at\"                  \n",
+       "[13207] \"204523_at\"                   \"202018_s_at\"                \n",
+       "[13209] \"204589_at\"                   \"201763_s_at\"                \n",
+       "[13211] \"201763_s_at\"                 \"205284_at\"                  \n",
+       "[13213] \"205311_at\"                   \"204455_at\"                  \n",
+       "[13215] \"203368_at\"                   \"201406_at\"                  \n",
+       "[13217] \"203787_at\"                   \"200018_at\"                  \n",
+       "[13219] \"201498_at\"                   \"201499_s_at\"                \n",
+       "[13221] \"203546_at\"                   \"205039_s_at\"                \n",
+       "[13223] \"202940_at\"                   \"200078_s_at\"                \n",
+       "[13225] \"202397_at\"                   \"203488_at\"                  \n",
+       "[13227] \"204791_at\"                   \"200718_s_at\"                \n",
+       "[13229] \"200719_at\"                   \"200711_s_at\"                \n",
+       "[13231] \"204774_at\"                   \"204348_s_at\"                \n",
+       "[13233] \"200718_s_at\"                 \"200719_at\"                  \n",
+       "[13235] \"200711_s_at\"                 \"205367_at\"                  \n",
+       "[13237] \"201115_at\"                   \"205456_at\"                  \n",
+       "[13239] \"203278_s_at\"                 \"200030_s_at\"                \n",
+       "[13241] \"205373_at\"                   \"205292_s_at\"                \n",
+       "[13243] \"203765_at\"                   \"204859_s_at\"                \n",
+       "[13245] \"203114_at\"                   \"204211_x_at\"                \n",
+       "[13247] \"202629_at\"                   \"202631_s_at\"                \n",
+       "[13249] \"202630_at\"                   \"203652_at\"                  \n",
+       "[13251] \"203783_x_at\"                 \"203782_s_at\"                \n",
+       "[13253] \"200633_at\"                   \"204164_at\"                  \n",
+       "[13255] \"200626_s_at\"                 \"200624_s_at\"                \n",
+       "[13257] \"201127_s_at\"                 \"201128_s_at\"                \n",
+       "[13259] \"204040_at\"                   \"201461_s_at\"                \n",
+       "[13261] \"201460_at\"                   \"203592_s_at\"                \n",
+       "[13263] \"202328_s_at\"                 \"202327_s_at\"                \n",
+       "[13265] \"202707_at\"                   \"202706_s_at\"                \n",
+       "[13267] \"202530_at\"                   \"204213_at\"                  \n",
+       "[13269] \"201124_at\"                   \"201125_s_at\"                \n",
+       "[13271] \"203964_at\"                   \"202356_s_at\"                \n",
+       "[13273] \"202355_s_at\"                 \"204371_s_at\"                \n",
+       "[13275] \"204372_s_at\"                 \"204661_at\"                  \n",
+       "[13277] \"202416_at\"                   \"202535_at\"                  \n",
+       "[13279] \"201988_s_at\"                 \"201990_s_at\"                \n",
+       "[13281] \"201989_s_at\"                 \"201055_s_at\"                \n",
+       "[13283] \"201054_at\"                   \"200990_at\"                  \n",
+       "[13285] \"202138_x_at\"                 \"205085_at\"                  \n",
+       "[13287] \"203118_at\"                   \"205043_at\"                  \n",
+       "[13289] \"200990_at\"                   \"203109_at\"                  \n",
+       "[13291] \"201719_s_at\"                 \"201718_s_at\"                \n",
+       "[13293] \"202121_s_at\"                 \"200080_s_at\"                \n",
+       "[13295] \"204909_at\"                   \"202324_s_at\"                \n",
+       "[13297] \"202323_s_at\"                 \"201093_x_at\"                \n",
+       "[13299] \"201093_x_at\"                 \"201176_s_at\"                \n",
+       "[13301] \"202182_at\"                   \"204252_at\"                  \n",
+       "[13303] \"203024_s_at\"                 \"200747_s_at\"                \n",
+       "[13305] \"204566_at\"                   \"205255_x_at\"                \n",
+       "[13307] \"205254_x_at\"                 \"204221_x_at\"                \n",
+       "[13309] \"204222_s_at\"                 \"205463_s_at\"                \n",
+       "[13311] \"203203_s_at\"                 \"203202_at\"                  \n",
+       "[13313] \"201064_s_at\"                 \"205157_s_at\"                \n",
+       "[13315] \"204916_at\"                   \"202871_at\"                  \n",
+       "[13317] \"202454_s_at\"                 \"201662_s_at\"                \n",
+       "[13319] \"201661_s_at\"                 \"201660_at\"                  \n",
+       "[13321] \"202596_at\"                   \"201983_s_at\"                \n",
+       "[13323] \"201984_s_at\"                 \"203146_s_at\"                \n",
+       "[13325] \"204719_at\"                   \"201726_at\"                  \n",
+       "[13327] \"201727_s_at\"                 \"204258_at\"                  \n",
+       "[13329] \"200060_s_at\"                 \"204346_s_at\"                \n",
+       "[13331] \"200796_s_at\"                 \"200798_x_at\"                \n",
+       "[13333] \"200797_s_at\"                 \"200796_s_at\"                \n",
+       "[13335] \"200798_x_at\"                 \"200797_s_at\"                \n",
+       "[13337] \"201095_at\"                   \"203108_at\"                  \n",
+       "[13339] \"204856_at\"                   \"205414_s_at\"                \n",
+       "[13341] \"204095_s_at\"                 \"204096_s_at\"                \n",
+       "[13343] \"201805_at\"                   \"201082_s_at\"                \n",
+       "[13345] \"201192_s_at\"                 \"201191_at\"                  \n",
+       "[13347] \"201190_s_at\"                 \"201216_at\"                  \n",
+       "[13349] \"201152_s_at\"                 \"201151_s_at\"                \n",
+       "[13351] \"201153_s_at\"                 \"200718_s_at\"                \n",
+       "[13353] \"202091_at\"                   \"204519_s_at\"                \n",
+       "[13355] \"204952_at\"                   \"201270_x_at\"                \n",
+       "[13357] \"201269_s_at\"                 \"203933_at\"                  \n",
+       "[13359] \"200674_s_at\"                 \"204275_at\"                  \n",
+       "[13361] \"202837_at\"                   \"204034_at\"                  \n",
+       "[13363] \"204815_s_at\"                 \"203821_at\"                  \n",
+       "[13365] \"200665_s_at\"                 \"204214_s_at\"                \n",
+       "[13367] \"204228_at\"                   \"201732_s_at\"                \n",
+       "[13369] \"201734_at\"                   \"201735_s_at\"                \n",
+       "[13371] \"201733_at\"                   \"202992_at\"                  \n",
+       "[13373] \"203184_at\"                   \"202517_at\"                  \n",
+       "[13375] \"203710_at\"                   \"201232_s_at\"                \n",
+       "[13377] \"201233_at\"                   \"205048_s_at\"                \n",
+       "[13379] \"204910_s_at\"                 \"204911_s_at\"                \n",
+       "[13381] \"203398_s_at\"                 \"203397_s_at\"                \n",
+       "[13383] \"204733_at\"                   \"201963_at\"                  \n",
+       "[13385] \"200988_s_at\"                 \"200987_x_at\"                \n",
+       "[13387] \"202124_s_at\"                 \"202125_s_at\"                \n",
+       "[13389] \"201209_at\"                   \"200644_at\"                  \n",
+       "[13391] \"204988_at\"                   \"205234_at\"                  \n",
+       "[13393] \"203154_s_at\"                 \"204829_s_at\"                \n",
+       "[13395] \"205202_at\"                   \"202300_at\"                  \n",
+       "[13397] \"202299_s_at\"                 \"201606_s_at\"                \n",
+       "[13399] \"201608_s_at\"                 \"201607_at\"                  \n",
+       "[13401] \"204422_s_at\"                 \"204421_s_at\"                \n",
+       "[13403] \"204379_s_at\"                 \"204380_s_at\"                \n",
+       "[13405] \"202975_s_at\"                 \"202976_s_at\"                \n",
+       "[13407] \"201598_s_at\"                 \"205084_at\"                  \n",
+       "[13409] \"203707_at\"                   \"205084_at\"                  \n",
+       "[13411] \"203707_at\"                   \"204031_s_at\"                \n",
+       "[13413] \"204490_s_at\"                 \"204489_s_at\"                \n",
+       "[13415] \"202347_s_at\"                 \"202346_at\"                  \n",
+       "[13417] \"205447_s_at\"                 \"205448_s_at\"                \n",
+       "[13419] \"204022_at\"                   \"205358_at\"                  \n",
+       "[13421] \"204538_x_at\"                 \"204538_x_at\"                \n",
+       "[13423] \"201739_at\"                   \"204538_x_at\"                \n",
+       "[13425] \"202396_at\"                   \"202891_at\"                  \n",
+       "[13427] \"204674_at\"                   \"202480_s_at\"                \n",
+       "[13429] \"204581_at\"                   \"201667_at\"                  \n",
+       "[13431] \"204538_x_at\"                 \"204538_x_at\"                \n",
+       "[13433] \"203944_x_at\"                 \"204491_at\"                  \n",
+       "[13435] \"201757_at\"                   \"204261_s_at\"                \n",
+       "[13437] \"204262_s_at\"                 \"205401_at\"                  \n",
+       "[13439] \"202840_at\"                   \"201441_at\"                  \n",
+       "[13441] \"204288_s_at\"                 \"204638_at\"                  \n",
+       "[13443] \"203793_x_at\"                 \"203792_x_at\"                \n",
+       "[13445] \"201400_at\"                   \"201596_x_at\"                \n",
+       "[13447] \"201081_s_at\"                 \"201080_at\"                  \n",
+       "[13449] \"203664_s_at\"                 \"203664_s_at\"                \n",
+       "[13451] \"205376_at\"                   \"203675_at\"                  \n",
+       "[13453] \"204652_s_at\"                 \"204651_at\"                  \n",
+       "[13455] \"203852_s_at\"                 \"203852_s_at\"                \n",
+       "[13457] \"204538_x_at\"                 \"204538_x_at\"                \n",
+       "[13459] \"204538_x_at\"                 \"203317_at\"                  \n",
+       "[13461] \"204715_at\"                   \"204651_at\"                  \n",
+       "[13463] \"204860_s_at\"                 \"205387_s_at\"                \n",
+       "[13465] \"204762_s_at\"                 \"204763_s_at\"                \n",
+       "[13467] \"202642_s_at\"                 \"200017_at\"                  \n",
+       "[13469] \"203168_at\"                   \"202363_at\"                  \n",
+       "[13471] \"205342_s_at\"                 \"205343_at\"                  \n",
+       "[13473] \"204135_at\"                   \"201736_s_at\"                \n",
+       "[13475] \"201737_s_at\"                 \"201966_at\"                  \n",
+       "[13477] \"201678_s_at\"                 \"201677_at\"                  \n",
+       "[13479] \"203173_s_at\"                 \"202149_at\"                  \n",
+       "[13481] \"202150_s_at\"                 \"203813_s_at\"                \n",
+       "[13483] \"203812_at\"                   \"203464_s_at\"                \n",
+       "[13485] \"203463_s_at\"                 \"201427_s_at\"                \n",
+       "[13487] \"202291_s_at\"                 \"201288_at\"                  \n",
+       "[13489] \"204217_s_at\"                 \"202274_at\"                  \n",
+       "[13491] \"203526_s_at\"                 \"203525_s_at\"                \n",
+       "[13493] \"203527_s_at\"                 \"201970_s_at\"                \n",
+       "[13495] \"201969_at\"                   \"205436_s_at\"                \n",
+       "[13497] \"200681_at\"                   \"203816_at\"                  \n",
+       "[13499] \"201315_x_at\"                 \"205421_at\"                  \n",
+       "[13501] \"204089_x_at\"                 \"204218_at\"                  \n",
+       "[13503] \"202722_s_at\"                 \"202721_s_at\"                \n",
+       "[13505] \"205382_s_at\"                 \"200617_at\"                  \n",
+       "[13507] \"200616_s_at\"                 \"202365_at\"                  \n",
+       "[13509] \"202365_at\"                   \"202366_at\"                  \n",
+       "[13511] \"203129_s_at\"                 \"203130_s_at\"                \n",
+       "[13513] \"201031_s_at\"                 \"200869_at\"                  \n",
+       "[13515] \"204544_at\"                   \"201805_at\"                  \n",
+       "[13517] \"200634_at\"                   \"204483_at\"                  \n",
+       "[13519] \"202453_s_at\"                 \"202451_at\"                  \n",
+       "[13521] \"200034_s_at\"                 \"200650_s_at\"                \n",
+       "[13523] \"200893_at\"                   \"200892_s_at\"                \n",
+       "[13525] \"200053_at\"                   \"202360_at\"                  \n",
+       "[13527] \"205267_at\"                   \"203593_at\"                  \n",
+       "[13529] \"203706_s_at\"                 \"203705_s_at\"                \n",
+       "[13531] \"203802_x_at\"                 \"201471_s_at\"                \n",
+       "[13533] \"204961_s_at\"                 \"204030_s_at\"                \n",
+       "[13535] \"204961_s_at\"                 \"201065_s_at\"                \n",
+       "[13537] \"204671_s_at\"                 \"204672_s_at\"                \n",
+       "[13539] \"201979_s_at\"                 \"200606_at\"                  \n",
+       "[13541] \"205044_at\"                   \"200028_s_at\"                \n",
+       "[13543] \"202122_s_at\"                 \"204684_at\"                  \n",
+       "[13545] \"201340_s_at\"                 \"201341_at\"                  \n",
+       "[13547] \"201944_at\"                   \"204853_at\"                  \n",
+       "[13549] \"201303_at\"                   \"202090_s_at\"                \n",
+       "[13551] \"202090_s_at\"                 \"200016_x_at\"                \n",
+       "[13553] \"203371_s_at\"                 \"204381_at\"                  \n",
+       "[13555] \"204381_at\"                   \"204982_at\"                  \n",
+       "[13557] \"204203_at\"                   \"200077_s_at\"                \n",
+       "[13559] \"200659_s_at\"                 \"200658_s_at\"                \n",
+       "[13561] \"204776_at\"                   \"203763_at\"                  \n",
+       "[13563] \"203762_s_at\"                 \"201643_x_at\"                \n",
+       "[13565] \"201574_at\"                   \"201573_s_at\"                \n",
+       "[13567] \"203392_s_at\"                 \"202108_at\"                  \n",
+       "[13569] \"200625_s_at\"                 \"203728_at\"                  \n",
+       "[13571] \"201188_s_at\"                 \"201189_s_at\"                \n",
+       "[13573] \"201187_s_at\"                 \"200809_x_at\"                \n",
+       "[13575] \"200088_x_at\"                 \"203960_s_at\"                \n",
+       "[13577] \"204625_s_at\"                 \"204627_s_at\"                \n",
+       "[13579] \"204628_s_at\"                 \"204626_s_at\"                \n",
+       "[13581] \"202152_x_at\"                 \"204625_s_at\"                \n",
+       "[13583] \"201437_s_at\"                 \"201435_s_at\"                \n",
+       "[13585] \"201436_at\"                   \"204088_at\"                  \n",
+       "[13587] \"201616_s_at\"                 \"201615_x_at\"                \n",
+       "[13589] \"201617_x_at\"                 \"201790_s_at\"                \n",
+       "[13591] \"201791_s_at\"                 \"203236_s_at\"                \n",
+       "[13593] \"201801_s_at\"                 \"201802_at\"                  \n",
+       "[13595] \"200755_s_at\"                 \"200756_x_at\"                \n",
+       "[13597] \"200757_s_at\"                 \"201884_at\"                  \n",
+       "[13599] \"203757_s_at\"                 \"202107_s_at\"                \n",
+       "[13601] \"204424_s_at\"                 \"200064_at\"                  \n",
+       "[13603] \"202649_x_at\"                 \"203136_at\"                  \n",
+       "[13605] \"203927_at\"                   \"203136_at\"                  \n",
+       "[13607] \"200055_at\"                   \"202440_s_at\"                \n",
+       "[13609] \"200819_s_at\"                 \"202957_at\"                  \n",
+       "[13611] \"204677_at\"                   \"201900_s_at\"                \n",
+       "[13613] \"202811_at\"                   \"205049_s_at\"                \n",
+       "[13615] \"202268_s_at\"                 \"203181_x_at\"                \n",
+       "[13617] \"203182_s_at\"                 \"205316_at\"                  \n",
+       "[13619] \"205317_s_at\"                 \"201259_s_at\"                \n",
+       "[13621] \"201260_s_at\"                 \"202555_s_at\"                \n",
+       "[13623] \"204145_at\"                   \"201682_at\"                  \n",
+       "[13625] \"202450_s_at\"                 \"202901_x_at\"                \n",
+       "[13627] \"202902_s_at\"                 \"204802_at\"                  \n",
+       "[13629] \"204803_s_at\"                 \"205386_s_at\"                \n",
+       "[13631] \"202633_at\"                   \"201330_at\"                  \n",
+       "[13633] \"204925_at\"                   \"203786_s_at\"                \n",
+       "[13635] \"200725_x_at\"                 \"203935_at\"                  \n",
+       "[13637] \"203292_s_at\"                 \"203680_at\"                  \n",
+       "[13639] \"203259_s_at\"                 \"203260_at\"                  \n",
+       "[13641] \"204977_at\"                   \"202270_at\"                  \n",
+       "[13643] \"202269_x_at\"                 \"202748_at\"                  \n",
+       "[13645] \"204906_at\"                   \"205055_at\"                  \n",
+       "[13647] \"205002_at\"                   \"200763_s_at\"                \n",
+       "[13649] \"201027_s_at\"                 \"201025_at\"                  \n",
+       "[13651] \"201024_x_at\"                 \"202379_s_at\"                \n",
+       "[13653] \"202380_s_at\"                 \"204415_at\"                  \n",
+       "[13655] \"204415_at\"                   \"204439_at\"                  \n",
+       "[13657] \"204065_at\"                   \"205203_at\"                  \n",
+       "[13659] \"204694_at\"                   \"203040_s_at\"                \n",
+       "[13661] \"204748_at\"                   \"202500_at\"                  \n",
+       "[13663] \"202801_at\"                   \"205321_at\"                  \n",
+       "[13665] \"202592_at\"                   \"201257_x_at\"                \n",
+       "[13667] \"200099_s_at\"                 \"205118_at\"                  \n",
+       "[13669] \"205119_s_at\"                 \"202235_at\"                  \n",
+       "[13671] \"202234_s_at\"                 \"202236_s_at\"                \n",
+       "[13673] \"202115_s_at\"                 \"202643_s_at\"                \n",
+       "[13675] \"202644_s_at\"                 \"200749_at\"                  \n",
+       "[13677] \"200750_s_at\"                 \"204686_at\"                  \n",
+       "[13679] \"201770_at\"                   \"203291_at\"                  \n",
+       "[13681] \"204113_at\"                   \"204807_at\"                  \n",
+       "[13683] \"204808_s_at\"                 \"204924_at\"                  \n",
+       "[13685] \"203389_at\"                   \"203390_s_at\"                \n",
+       "[13687] \"203073_at\"                   \"204242_s_at\"                \n",
+       "[13689] \"204241_at\"                   \"204950_at\"                  \n",
+       "[13691] \"204874_x_at\"                 \"205461_at\"                  \n",
+       "[13693] \"201282_at\"                   \"201786_s_at\"                \n",
+       "[13695] \"201033_x_at\"                 \"203378_at\"                  \n",
+       "[13697] \"203729_at\"                   \"203378_at\"                  \n",
+       "[13699] \"202726_at\"                   \"201087_at\"                  \n",
+       "[13701] \"201778_s_at\"                 \"201777_s_at\"                \n",
+       "[13703] \"201776_s_at\"                 \"201775_s_at\"                \n",
+       "[13705] \"201788_at\"                   \"201438_at\"                  \n",
+       "[13707] \"204261_s_at\"                 \"204262_s_at\"                \n",
+       "[13709] \"202493_x_at\"                 \"203807_x_at\"                \n",
+       "[13711] \"204352_at\"                   \"201827_at\"                  \n",
+       "[13713] \"202222_s_at\"                 \"203952_at\"                  \n",
+       "[13715] \"200063_s_at\"                 \"204710_s_at\"                \n",
+       "[13717] \"202031_s_at\"                 \"203255_at\"                  \n",
+       "[13719] \"202045_s_at\"                 \"202046_s_at\"                \n",
+       "[13721] \"202044_at\"                   \"200063_s_at\"                \n",
+       "[13723] \"202394_s_at\"                 \"200820_at\"                  \n",
+       "[13725] \"202870_s_at\"                 \"202493_x_at\"                \n",
+       "[13727] \"203807_x_at\"                 \"205297_s_at\"                \n",
+       "[13729] \"204453_at\"                   \"205205_at\"                  \n",
+       "[13731] \"204978_at\"                   \"204348_s_at\"                \n",
+       "[13733] \"202106_at\"                   \"204328_at\"                  \n",
+       "[13735] \"204532_x_at\"                 \"202478_at\"                  \n",
+       "[13737] \"202479_s_at\"                 \"204532_x_at\"                \n",
+       "[13739] \"201908_at\"                   \"204532_x_at\"                \n",
+       "[13741] \"202153_s_at\"                 \"205026_at\"                  \n",
+       "[13743] \"204532_x_at\"                 \"201047_x_at\"                \n",
+       "[13745] \"200613_at\"                   \"201526_at\"                  \n",
+       "[13747] \"201526_at\"                   \"203809_s_at\"                \n",
+       "[13749] \"204169_at\"                   \"200809_x_at\"                \n",
+       "[13751] \"200088_x_at\"                 \"203949_at\"                  \n",
+       "[13753] \"203948_s_at\"                 \"203831_at\"                  \n",
+       "[13755] \"200825_s_at\"                 \"201483_s_at\"                \n",
+       "[13757] \"201484_at\"                   \"202201_at\"                  \n",
+       "[13759] \"203832_at\"                   \"203239_s_at\"                \n",
+       "[13761] \"201483_s_at\"                 \"201484_at\"                  \n",
+       "[13763] \"203117_s_at\"                 \"201517_at\"                  \n",
+       "[13765] \"201521_s_at\"                 \"201844_s_at\"                \n",
+       "[13767] \"201845_s_at\"                 \"201846_s_at\"                \n",
+       "[13769] \"204094_s_at\"                 \"202575_at\"                  \n",
+       "[13771] \"203030_s_at\"                 \"203029_s_at\"                \n",
+       "[13773] \"201237_at\"                   \"201238_s_at\"                \n",
+       "[13775] \"203853_s_at\"                 \"204225_at\"                  \n",
+       "[13777] \"205080_at\"                   \"201065_s_at\"                \n",
+       "[13779] \"201565_s_at\"                 \"203802_x_at\"                \n",
+       "[13781] \"201697_s_at\"                 \"200943_at\"                  \n",
+       "[13783] \"200943_at\"                   \"203281_s_at\"                \n",
+       "[13785] \"201384_s_at\"                 \"201383_s_at\"                \n",
+       "[13787] \"203281_s_at\"                 \"202410_x_at\"                \n",
+       "[13789] \"202410_x_at\"                 \"204146_at\"                  \n",
+       "[13791] \"205370_x_at\"                 \"205369_x_at\"                \n",
+       "[13793] \"205371_s_at\"                 \"203594_at\"                  \n",
+       "[13795] \"205455_at\"                   \"204202_at\"                  \n",
+       "[13797] \"200095_x_at\"                 \"200817_x_at\"                \n",
+       "[13799] \"201967_at\"                   \"200040_at\"                  \n",
+       "[13801] \"201488_x_at\"                 \"204173_at\"                  \n",
+       "[13803] \"201395_at\"                   \"201394_s_at\"                \n",
+       "[13805] \"205054_at\"                   \"200695_at\"                  \n",
+       "[13807] \"200937_s_at\"                 \"203734_at\"                  \n",
+       "[13809] \"203346_s_at\"                 \"203347_s_at\"                \n",
+       "[13811] \"203345_s_at\"                 \"204971_at\"                  \n",
+       "[13813] \"202055_at\"                   \"202057_at\"                  \n",
+       "[13815] \"202056_at\"                   \"202058_s_at\"                \n",
+       "[13817] \"202059_s_at\"                 \"204680_s_at\"                \n",
+       "[13819] \"204681_s_at\"                 \"201749_at\"                  \n",
+       "[13821] \"201750_s_at\"                 \"205449_at\"                  \n",
+       "[13823] \"205403_at\"                   \"201745_at\"                  \n",
+       "[13825] \"200024_at\"                   \"205182_s_at\"                \n",
+       "[13827] \"205182_s_at\"                 \"200019_s_at\"                \n",
+       "[13829] \"202950_at\"                   \"200019_s_at\"                \n",
+       "[13831] \"201717_at\"                   \"202014_at\"                  \n",
+       "[13833] \"204104_at\"                   \"200752_s_at\"                \n",
+       "[13835] \"201836_s_at\"                 \"201838_s_at\"                \n",
+       "[13837] \"201837_s_at\"                 \"200955_at\"                  \n",
+       "[13839] \"201820_at\"                   \"203399_x_at\"                \n",
+       "[13841] \"205446_s_at\"                 \"201266_at\"                  \n",
+       "[13843] \"203069_at\"                   \"204912_at\"                  \n",
+       "[13845] \"204056_s_at\"                 \"201817_at\"                  \n",
+       "[13847] \"204411_at\"                   \"200601_at\"                  \n",
+       "[13849] \"204919_at\"                   \"204919_at\"                  \n",
+       "[13851] \"205272_s_at\"                 \"203046_s_at\"                \n",
+       "[13853] \"200084_at\"                   \"201784_s_at\"                \n",
+       "[13855] \"205170_at\"                   \"203510_at\"                  \n",
+       "[13857] \"203054_s_at\"                 \"204992_s_at\"                \n",
+       "[13859] \"203394_s_at\"                 \"203393_at\"                  \n",
+       "[13861] \"203774_at\"                   \"204812_at\"                  \n",
+       "[13863] \"201273_s_at\"                 \"203012_x_at\"                \n",
+       "[13865] \"204236_at\"                   \"202699_s_at\"                \n",
+       "[13867] \"202700_s_at\"                 \"202017_at\"                  \n",
+       "[13869] \"202205_at\"                   \"203748_x_at\"                \n",
+       "[13871] \"202556_s_at\"                 \"201516_at\"                  \n",
+       "[13873] \"203080_s_at\"                 \"204039_at\"                  \n",
+       "[13875] \"202553_s_at\"                 \"205333_s_at\"                \n",
+       "[13877] \"204476_s_at\"                 \"203886_s_at\"                \n",
+       "[13879] \"202428_x_at\"                 \"202830_s_at\"                \n",
+       "[13881] \"201673_s_at\"                 \"200812_at\"                  \n",
+       "[13883] \"205387_s_at\"                 \"201783_s_at\"                \n",
+       "[13885] \"200895_s_at\"                 \"200894_s_at\"                \n",
+       "[13887] \"202475_at\"                   \"202515_at\"                  \n",
+       "[13889] \"202516_s_at\"                 \"202514_at\"                  \n",
+       "[13891] \"202580_x_at\"                 \"204281_at\"                  \n",
+       "[13893] \"203189_s_at\"                 \"203190_at\"                  \n",
+       "[13895] \"200741_s_at\"                 \"203189_s_at\"                \n",
+       "[13897] \"204158_s_at\"                 \"204266_s_at\"                \n",
+       "[13899] \"204233_s_at\"                 \"202913_at\"                  \n",
+       "[13901] \"202914_s_at\"                 \"204908_s_at\"                \n",
+       "[13903] \"204907_s_at\"                 \"204908_s_at\"                \n",
+       "[13905] \"203009_at\"                   \"202330_s_at\"                \n",
+       "[13907] \"201050_at\"                   \"204893_s_at\"                \n",
+       "[13909] \"204879_at\"                   \"205395_s_at\"                \n",
+       "[13911] \"204966_at\"                   \"204949_at\"                  \n",
+       "[13913] \"204158_s_at\"                 \"201106_at\"                  \n",
+       "[13915] \"200714_x_at\"                 \"201371_s_at\"                \n",
+       "[13917] \"201372_s_at\"                 \"201370_s_at\"                \n",
+       "[13919] \"201814_at\"                   \"201813_s_at\"                \n",
+       "[13921] \"201815_s_at\"                 \"200717_x_at\"                \n",
+       "[13923] \"200789_at\"                   \"202764_at\"                  \n",
+       "[13925] \"202072_at\"                   \"200675_at\"                  \n",
+       "[13927] \"203368_at\"                   \"204331_s_at\"                \n",
+       "[13929] \"204330_s_at\"                 \"202072_at\"                  \n",
+       "[13931] \"201440_at\"                   \"205417_s_at\"                \n",
+       "[13933] \"204942_s_at\"                 \"204941_s_at\"                \n",
+       "[13935] \"202545_at\"                   \"203409_at\"                  \n",
+       "[13937] \"203105_s_at\"                 \"202767_at\"                  \n",
+       "[13939] \"203055_s_at\"                 \"200872_at\"                  \n",
+       "[13941] \"205339_at\"                   \"203920_at\"                  \n",
+       "[13943] \"201918_at\"                   \"201919_at\"                  \n",
+       "[13945] \"201917_s_at\"                 \"204954_s_at\"                \n",
+       "[13947] \"201454_s_at\"                 \"201455_s_at\"                \n",
+       "[13949] \"200924_s_at\"                 \"200074_s_at\"                \n",
+       "[13951] \"202120_x_at\"                 \"200741_s_at\"                \n",
+       "[13953] \"200649_at\"                   \"200646_s_at\"                \n",
+       "[13955] \"201711_x_at\"                 \"201533_at\"                  \n",
+       "[13957] \"203223_at\"                   \"204532_x_at\"                \n",
+       "[13959] \"203316_s_at\"                 \"203280_at\"                  \n",
+       "[13961] \"205272_s_at\"                 \"204919_at\"                  \n",
+       "[13963] \"205272_s_at\"                 \"202900_s_at\"                \n",
+       "[13965] \"203872_at\"                   \"201459_at\"                  \n",
+       "[13967] \"204401_at\"                   \"200614_at\"                  \n",
+       "[13969] \"203842_s_at\"                 \"203841_x_at\"                \n",
+       "[13971] \"205093_at\"                   \"202116_at\"                  \n",
+       "[13973] \"202040_s_at\"                 \"201537_s_at\"                \n",
+       "[13975] \"201538_s_at\"                 \"201536_at\"                  \n",
+       "[13977] \"201240_s_at\"                 \"201239_s_at\"                \n",
+       "[13979] \"203240_at\"                   \"201283_s_at\"                \n",
+       "[13981] \"202079_s_at\"                 \"202080_s_at\"                \n",
+       "[13983] \"204163_at\"                   \"202170_s_at\"                \n",
+       "[13985] \"202169_s_at\"                 \"202067_s_at\"                \n",
+       "[13987] \"202068_s_at\"                 \"201414_s_at\"                \n",
+       "[13989] \"204087_s_at\"                 \"204959_at\"                  \n",
+       "[13991] \"200775_s_at\"                 \"205392_s_at\"                \n",
+       "[13993] \"202715_at\"                   \"204081_at\"                  \n",
+       "[13995] \"205392_s_at\"                 \"203998_s_at\"                \n",
+       "[13997] \"203999_at\"                   \"205114_s_at\"                \n",
+       "[13999] \"204103_at\"                   \"203602_s_at\"                \n",
+       "[14001] \"203601_s_at\"                 \"205152_at\"                  \n",
+       "[14003] \"205114_s_at\"                 \"205114_s_at\"                \n",
+       "[14005] \"205114_s_at\"                 \"205114_s_at\"                \n",
+       "[14007] \"203466_at\"                   \"204366_s_at\"                \n",
+       "[14009] \"201686_x_at\"                 \"201687_s_at\"                \n",
+       "[14011] \"202647_s_at\"                 \"204666_s_at\"                \n",
+       "[14013] \"204292_x_at\"                 \"204431_at\"                  \n",
+       "[14015] \"203947_at\"                   \"204739_at\"                  \n",
+       "[14017] \"202343_x_at\"                 \"202135_s_at\"                \n",
+       "[14019] \"205303_at\"                   \"205304_s_at\"                \n",
+       "[14021] \"204741_at\"                   \"204249_s_at\"                \n",
+       "[14023] \"200722_s_at\"                 \"200723_s_at\"                \n",
+       "[14025] \"203603_s_at\"                 \"200072_s_at\"                \n",
+       "[14027] \"204789_at\"                   \"203032_s_at\"                \n",
+       "[14029] \"203033_x_at\"                 \"205306_x_at\"                \n",
+       "[14031] \"205307_s_at\"                 \"203838_s_at\"                \n",
+       "[14033] \"203839_s_at\"                 \"204293_at\"                  \n",
+       "[14035] \"200983_x_at\"                 \"204129_at\"                  \n",
+       "[14037] \"203039_s_at\"                 \"204603_at\"                  \n",
+       "[14039] \"204784_s_at\"                 \"204783_at\"                  \n",
+       "[14041] \"200705_s_at\"                 \"201698_s_at\"                \n",
+       "[14043] \"200044_at\"                   \"205053_at\"                  \n",
+       "[14045] \"202652_at\"                   \"205082_s_at\"                \n",
+       "[14047] \"205083_at\"                   \"200777_s_at\"                \n",
+       "[14049] \"200776_s_at\"                 \"204946_s_at\"                \n",
+       "[14051] \"202768_at\"                   \"200624_s_at\"                \n",
+       "[14053] \"201635_s_at\"                 \"201636_at\"                  \n",
+       "[14055] \"201637_s_at\"                 \"201795_at\"                  \n",
+       "[14057] \"203719_at\"                   \"203720_s_at\"                \n",
+       "[14059] \"200004_at\"                   \"201511_at\"                  \n",
+       "[14061] \"203486_s_at\"                 \"203487_s_at\"                \n",
+       "[14063] \"202253_s_at\"                 \"205095_s_at\"                \n",
+       "[14065] \"205140_at\"                   \"202499_s_at\"                \n",
+       "[14067] \"202497_x_at\"                 \"202498_s_at\"                \n",
+       "[14069] \"200984_s_at\"                 \"200983_x_at\"                \n",
+       "[14071] \"200985_s_at\"                 \"201655_s_at\"                \n",
+       "[14073] \"201654_s_at\"                 \"202409_at\"                  \n",
+       "[14075] \"202410_x_at\"                 \"202409_at\"                  \n",
+       "[14077] \"202410_x_at\"                 \"203834_s_at\"                \n",
+       "[14079] \"203833_s_at\"                 \"205353_s_at\"                \n",
+       "[14081] \"205353_s_at\"                 \"204549_at\"                  \n",
+       "[14083] \"201850_at\"                   \"203928_x_at\"                \n",
+       "[14085] \"203930_s_at\"                 \"203929_s_at\"                \n",
+       "[14087] \"201019_s_at\"                 \"201016_at\"                  \n",
+       "[14089] \"201056_at\"                   \"201057_s_at\"                \n",
+       "[14091] \"200807_s_at\"                 \"205228_at\"                  \n",
+       "[14093] \"200769_s_at\"                 \"200768_s_at\"                \n",
+       "[14095] \"202546_at\"                   \"204929_s_at\"                \n",
+       "[14097] \"204995_at\"                   \"204996_s_at\"                \n",
+       "[14099] \"204441_s_at\"                 \"203020_at\"                  \n",
+       "[14101] \"203648_at\"                   \"200650_s_at\"                \n",
+       "[14103] \"202039_at\"                   \"201244_s_at\"                \n",
+       "[14105] \"205453_at\"                   \"205366_s_at\"                \n",
+       "[14107] \"204779_s_at\"                 \"204778_x_at\"                \n",
+       "[14109] \"203677_s_at\"                 \"203511_s_at\"                \n",
+       "[14111] \"203512_at\"                   \"200856_x_at\"                \n",
+       "[14113] \"200855_at\"                   \"200854_at\"                  \n",
+       "[14115] \"200857_s_at\"                 \"205351_at\"                  \n",
+       "[14117] \"202692_s_at\"                 \"204663_at\"                  \n",
+       "[14119] \"203186_s_at\"                 \"204268_at\"                  \n",
+       "[14121] \"202598_at\"                   \"202598_at\"                  \n",
+       "[14123] \"205334_at\"                   \"203641_s_at\"                \n",
+       "[14125] \"203642_s_at\"                 \"204010_s_at\"                \n",
+       "[14127] \"204009_s_at\"                 \"203172_at\"                  \n",
+       "[14129] \"203408_s_at\"                 \"201656_at\"                  \n",
+       "[14131] \"203319_s_at\"                 \"203318_s_at\"                \n",
+       "[14133] \"202195_s_at\"                 \"202194_at\"                  \n",
+       "[14135] \"201411_s_at\"                 \"201410_at\"                  \n",
+       "[14137] \"202175_at\"                   \"201349_at\"                  \n",
+       "[14139] \"204382_at\"                   \"202166_s_at\"                \n",
+       "[14141] \"202165_at\"                   \"201525_at\"                  \n",
+       "[14143] \"202650_s_at\"                 \"205064_at\"                  \n",
+       "[14145] \"203618_at\"                   \"203619_s_at\"                \n",
+       "[14147] \"201103_x_at\"                 \"201104_x_at\"                \n",
+       "[14149] \"201003_x_at\"                 \"201510_at\"                  \n",
+       "[14151] \"201510_at\"                   \"204852_s_at\"                \n",
+       "[14153] \"205156_s_at\"                 \"203183_s_at\"                \n",
+       "[14155] \"204997_at\"                   \"201696_at\"                  \n",
+       "[14157] \"202913_at\"                   \"202914_s_at\"                \n",
+       "[14159] \"204341_at\"                   \"204341_at\"                  \n",
+       "[14161] \"203210_s_at\"                 \"203209_at\"                  \n",
+       "[14163] \"203515_s_at\"                 \"201469_s_at\"                \n",
+       "[14165] \"201469_s_at\"                 \"202352_s_at\"                \n",
+       "[14167] \"202353_s_at\"                 \"203194_s_at\"                \n",
+       "[14169] \"203195_s_at\"                 \"204777_s_at\"                \n",
+       "[14171] \"203796_s_at\"                 \"203795_s_at\"                \n",
+       "[14173] \"202519_at\"                   \"204366_s_at\"                \n",
+       "[14175] \"201897_s_at\"                 \"201425_at\"                  \n",
+       "[14177] \"202832_at\"                   \"203586_s_at\"                \n",
+       "[14179] \"203334_at\"                   \"204312_x_at\"                \n",
+       "[14181] \"204314_s_at\"                 \"204313_s_at\"                \n",
+       "[14183] \"205076_s_at\"                 \"203363_s_at\"                \n",
+       "[14185] \"203364_s_at\"                 \"202395_at\"                  \n",
+       "[14187] \"202117_at\"                   \"202658_at\"                  \n",
+       "[14189] \"202656_s_at\"                 \"202657_s_at\"                \n",
+       "[14191] \"201008_s_at\"                 \"201009_s_at\"                \n",
+       "[14193] \"201010_s_at\"                 \"204030_s_at\"                \n",
+       "[14195] \"204030_s_at\"                 \"201082_s_at\"                \n",
+       "[14197] \"204296_at\"                   \"201103_x_at\"                \n",
+       "[14199] \"201104_x_at\"                 \"204634_at\"                  \n",
+       "[14201] \"201429_s_at\"                 \"201350_at\"                  \n",
+       "[14203] \"202718_at\"                   \"203426_s_at\"                \n",
+       "[14205] \"203425_s_at\"                 \"203424_s_at\"                \n",
+       "[14207] \"202703_at\"                   \"202458_at\"                  \n",
+       "[14209] \"201936_s_at\"                 \"201935_s_at\"                \n",
+       "[14211] \"201246_s_at\"                 \"201245_s_at\"                \n",
+       "[14213] \"203942_s_at\"                 \"203670_at\"                  \n",
+       "[14215] \"200023_s_at\"                 \"203723_at\"                  \n",
+       "[14217] \"201015_s_at\"                 \"200660_at\"                  \n",
+       "[14219] \"201103_x_at\"                 \"201104_x_at\"                \n",
+       "[14221] \"204078_at\"                   \"201892_s_at\"                \n",
+       "[14223] \"203119_at\"                   \"201711_x_at\"                \n",
+       "[14225] \"204922_at\"                   \"201892_s_at\"                \n",
+       "[14227] \"201173_x_at\"                 \"204847_at\"                  \n",
+       "[14229] \"205383_s_at\"                 \"200736_s_at\"                \n",
+       "[14231] \"200736_s_at\"                 \"205094_at\"                  \n",
+       "[14233] \"205216_s_at\"                 \"204753_s_at\"                \n",
+       "[14235] \"204755_x_at\"                 \"204754_at\"                  \n",
+       "[14237] \"203414_at\"                   \"203089_s_at\"                \n",
+       "[14239] \"203167_at\"                   \"204487_s_at\"                \n",
+       "[14241] \"204299_at\"                   \"200877_at\"                  \n",
+       "[14243] \"204990_s_at\"                 \"204989_s_at\"                \n",
+       "[14245] \"204895_x_at\"                 \"204134_at\"                  \n",
+       "[14247] \"202351_at\"                   \"202846_s_at\"                \n",
+       "[14249] \"201530_x_at\"                 \"204323_x_at\"                \n",
+       "[14251] \"204325_s_at\"                 \"204805_s_at\"                \n",
+       "[14253] \"202786_at\"                   \"203855_at\"                  \n",
+       "[14255] \"204393_s_at\"                 \"200680_x_at\"                \n",
+       "[14257] \"205278_at\"                   \"201104_x_at\"                \n",
+       "[14259] \"201711_x_at\"                 \"201712_s_at\"                \n",
+       "[14261] \"201713_s_at\"                 \"202066_at\"                  \n",
+       "[14263] \"202065_s_at\"                 \"204882_at\"                  \n",
+       "[14265] \"200013_at\"                   \"200836_s_at\"                \n",
+       "[14267] \"200835_s_at\"                 \"201624_at\"                  \n",
+       "[14269] \"201623_s_at\"                 \"201097_s_at\"                \n",
+       "[14271] \"201096_s_at\"                 \"202794_at\"                  \n",
+       "[14273] \"204804_at\"                   \"201103_x_at\"                \n",
+       "[14275] \"201104_x_at\"                 \"203711_s_at\"                \n",
+       "[14277] \"200748_s_at\"                 \"205200_at\"                  \n",
+       "[14279] \"205200_at\"                   \"202445_s_at\"                \n",
+       "[14281] \"202443_x_at\"                 \"204685_s_at\"                \n",
+       "[14283] \"200678_x_at\"                 \"204655_at\"                  \n",
+       "[14285] \"204531_s_at\"                 \"202076_at\"                  \n",
+       "[14287] \"204259_at\"                   \"204385_at\"                  \n",
+       "[14289] \"202812_at\"                   \"200680_x_at\"                \n",
+       "[14291] \"200679_x_at\"                 \"200049_at\"                  \n",
+       "[14293] \"201920_at\"                   \"204542_at\"                  \n",
+       "[14295] \"203496_s_at\"                 \"203497_at\"                  \n",
+       "[14297] \"201450_s_at\"                 \"201449_at\"                  \n",
+       "[14299] \"201448_at\"                   \"201446_s_at\"                \n",
+       "[14301] \"201447_at\"                   \"203004_s_at\"                \n",
+       "[14303] \"203003_at\"                   \"202026_at\"                  \n",
+       "[14305] \"202645_s_at\"                 \"203803_at\"                  \n",
+       "[14307] \"204171_at\"                   \"205393_s_at\"                \n",
+       "[14309] \"205394_at\"                   \"203217_s_at\"                \n",
+       "[14311] \"203871_at\"                   \"202308_at\"                  \n",
+       "[14313] \"201567_s_at\"                 \"203781_at\"                  \n",
+       "[14315] \"202819_s_at\"                 \"202818_s_at\"                \n",
+       "[14317] \"202772_at\"                   \"202308_at\"                  \n",
+       "[14319] \"205409_at\"                   \"202838_at\"                  \n",
+       "[14321] \"204345_at\"                   \"204843_s_at\"                \n",
+       "[14323] \"204842_x_at\"                 \"201612_at\"                  \n",
+       "[14325] \"202619_s_at\"                 \"202620_s_at\"                \n",
+       "[14327] \"203267_s_at\"                 \"203268_s_at\"                \n",
+       "[14329] \"202797_at\"                   \"202708_s_at\"                \n",
+       "[14331] \"203537_at\"                   \"201839_s_at\"                \n",
+       "[14333] \"201971_s_at\"                 \"201972_at\"                  \n",
+       "[14335] \"200083_at\"                   \"200887_s_at\"                \n",
+       "[14337] \"203437_at\"                   \"205227_at\"                  \n",
+       "[14339] \"203830_at\"                   \"201738_at\"                  \n",
+       "[14341] \"201738_at\"                   \"200888_s_at\"                \n",
+       "[14343] \"200888_s_at\"                 \"200618_at\"                  \n",
+       "[14345] \"203287_at\"                   \"201140_s_at\"                \n",
+       "[14347] \"201156_s_at\"                 \"200621_at\"                  \n",
+       "[14349] \"205424_at\"                   \"204150_at\"                  \n",
+       "[14351] \"204367_at\"                   \"200943_at\"                  \n",
+       "[14353] \"200944_s_at\"                 \"203035_s_at\"                \n",
+       "[14355] \"202664_at\"                   \"202663_at\"                  \n",
+       "[14357] \"202665_s_at\"                 \"200758_s_at\"                \n",
+       "[14359] \"200759_x_at\"                 \"200885_at\"                  \n",
+       "[14361] \"205301_s_at\"                 \"200885_at\"                  \n",
+       "[14363] \"201986_at\"                   \"201987_at\"                  \n",
+       "[14365] \"203783_x_at\"                 \"201103_x_at\"                \n",
+       "[14367] \"201104_x_at\"                 \"202879_s_at\"                \n",
+       "[14369] \"202880_s_at\"                 \"200672_x_at\"                \n",
+       "[14371] \"200671_s_at\"                 \"200841_s_at\"                \n",
+       "[14373] \"200843_s_at\"                 \"200842_s_at\"                \n",
+       "[14375] \"200604_s_at\"                 \"200603_at\"                  \n",
+       "[14377] \"200605_s_at\"                 \"201746_at\"                  \n",
+       "[14379] \"203906_at\"                   \"203907_s_at\"                \n",
+       "[14381] \"202374_s_at\"                 \"202373_s_at\"                \n",
+       "[14383] \"202372_at\"                   \"203423_at\"                  \n",
+       "[14385] \"204365_s_at\"                 \"204364_s_at\"                \n",
+       "[14387] \"203794_at\"                   \"202636_at\"                  \n",
+       "[14389] \"202756_s_at\"                 \"202755_s_at\"                \n",
+       "[14391] \"205246_at\"                   \"200754_x_at\"                \n",
+       "[14393] \"200753_x_at\"                 \"201557_at\"                  \n",
+       "[14395] \"201556_s_at\"                 \"201728_s_at\"                \n",
+       "[14397] \"201729_s_at\"                 \"200761_s_at\"                \n",
+       "[14399] \"200760_s_at\"                 \"203336_s_at\"                \n",
+       "[14401] \"203337_x_at\"                 \"204471_at\"                  \n",
+       "[14403] \"200776_s_at\"                 \"204167_at\"                  \n",
+       "[14405] \"200693_at\"                   \"201576_s_at\"                \n",
+       "[14407] \"201380_at\"                   \"204066_s_at\"                \n",
+       "[14409] \"204035_at\"                   \"202743_at\"                  \n",
+       "[14411] \"204558_at\"                   \"202655_at\"                  \n",
+       "[14413] \"202689_at\"                   \"204377_s_at\"                \n",
+       "[14415] \"204376_at\"                   \"201146_at\"                  \n",
+       "[14417] \"202853_s_at\"                 \"202909_at\"                  \n",
+       "[14419] \"202520_s_at\"                 \"200790_at\"                  \n",
+       "[14421] \"203840_at\"                   \"204713_s_at\"                \n",
+       "[14423] \"204714_s_at\"                 \"203561_at\"                  \n",
+       "[14425] \"202646_s_at\"                 \"204235_s_at\"                \n",
+       "[14427] \"204237_at\"                   \"200823_x_at\"                \n",
+       "[14429] \"202926_at\"                   \"204743_at\"                  \n",
+       "[14431] \"204621_s_at\"                 \"204622_x_at\"                \n",
+       "[14433] \"203844_at\"                   \"201906_s_at\"                \n",
+       "[14435] \"201904_s_at\"                 \"201905_s_at\"                \n",
+       "[14437] \"202821_s_at\"                 \"202822_at\"                  \n",
+       "[14439] \"203068_at\"                   \"202263_at\"                  \n",
+       "[14441] \"202139_at\"                   \"204477_at\"                  \n",
+       "[14443] \"204478_s_at\"                 \"201663_s_at\"                \n",
+       "[14445] \"201664_at\"                   \"203155_at\"                  \n",
+       "[14447] \"203056_s_at\"                 \"205277_at\"                  \n",
+       "[14449] \"203057_s_at\"                 \"201593_s_at\"                \n",
+       "[14451] \"201595_s_at\"                 \"201408_at\"                  \n",
+       "[14453] \"201409_s_at\"                 \"201407_s_at\"                \n",
+       "[14455] \"201793_x_at\"                 \"201794_s_at\"                \n",
+       "[14457] \"204334_at\"                   \"203849_s_at\"                \n",
+       "[14459] \"202178_at\"                   \"203708_at\"                  \n",
+       "[14461] \"204484_at\"                   \"202261_at\"                  \n",
+       "[14463] \"205432_at\"                   \"200728_at\"                  \n",
+       "[14465] \"200729_s_at\"                 \"200727_s_at\"                \n",
+       "[14467] \"201420_s_at\"                 \"201420_s_at\"                \n",
+       "[14469] \"201421_s_at\"                 \"202020_s_at\"                \n",
+       "[14471] \"202019_s_at\"                 \"202362_at\"                  \n",
+       "[14473] \"204920_at\"                   \"201243_s_at\"                \n",
+       "[14475] \"201242_s_at\"                 \"200902_at\"                  \n",
+       "[14477] \"203284_s_at\"                 \"203283_s_at\"                \n",
+       "[14479] \"203285_s_at\"                 \"205073_at\"                  \n",
+       "[14481] \"201928_at\"                   \"202337_at\"                  \n",
+       "[14483] \"202215_s_at\"                 \"202216_x_at\"                \n",
+       "[14485] \"201546_at\"                   \"200686_s_at\"                \n",
+       "[14487] \"200685_at\"                   \"204137_at\"                  \n",
+       "[14489] \"201493_s_at\"                 \"204019_s_at\"                \n",
+       "[14491] \"200802_at\"                   \"204029_at\"                  \n",
+       "[14493] \"201629_s_at\"                 \"201630_s_at\"                \n",
+       "[14495] \"201896_s_at\"                 \"201367_s_at\"                \n",
+       "[14497] \"201369_s_at\"                 \"201368_at\"                  \n",
+       "[14499] \"201274_at\"                   \"201711_x_at\"                \n",
+       "[14501] \"202953_at\"                   \"202931_x_at\"                \n",
+       "[14503] \"205404_at\"                   \"202176_at\"                  \n",
+       "[14505] \"202597_at\"                   \"204700_x_at\"                \n",
+       "[14507] \"204699_s_at\"                 \"202249_s_at\"                \n",
+       "[14509] \"202250_s_at\"                 \"202250_s_at\"                \n",
+       "[14511] \"202249_s_at\"                 \"201706_s_at\"                \n",
+       "[14513] \"201707_at\"                   \"203470_s_at\"                \n",
+       "[14515] \"203471_s_at\"                 \"202322_s_at\"                \n",
+       "[14517] \"202321_at\"                   \"201103_x_at\"                \n",
+       "[14519] \"203911_at\"                   \"204645_at\"                  \n",
+       "[14521] \"201585_s_at\"                 \"201586_s_at\"                \n",
+       "[14523] \"200080_s_at\"                 \"202494_at\"                  \n",
+       "[14525] \"201047_x_at\"                 \"203698_s_at\"                \n",
+       "[14527] \"203697_at\"                   \"203158_s_at\"                \n",
+       "[14529] \"203159_at\"                   \"203157_s_at\"                \n",
+       "[14531] \"204552_at\"                   \"204553_x_at\"                \n",
+       "[14533] \"203583_at\"                   \"205175_s_at\"                \n",
+       "[14535] \"201927_s_at\"                 \"201928_at\"                  \n",
+       "[14537] \"201929_s_at\"                 \"205168_at\"                  \n",
+       "[14539] \"205434_s_at\"                 \"205435_s_at\"                \n",
+       "[14541] \"202233_s_at\"                 \"205251_at\"                  \n",
+       "[14543] \"202613_at\"                   \"202834_at\"                  \n",
+       "[14545] \"201862_s_at\"                 \"201861_s_at\"                \n",
+       "[14547] \"202762_at\"                   \"204914_s_at\"                \n",
+       "[14549] \"204915_s_at\"                 \"204913_s_at\"                \n",
+       "[14551] \"202754_at\"                   \"204891_s_at\"                \n",
+       "[14553] \"204890_s_at\"                 \"201930_at\"                  \n",
+       "[14555] \"201214_s_at\"                 \"201213_at\"                  \n",
+       "[14557] \"200643_at\"                   \"202481_at\"                  \n",
+       "[14559] \"203518_at\"                   \"204962_s_at\"                \n",
+       "[14561] \"202287_s_at\"                 \"202286_s_at\"                \n",
+       "[14563] \"205108_s_at\"                 \"202435_s_at\"                \n",
+       "[14565] \"202436_s_at\"                 \"202437_s_at\"                \n",
+       "[14567] \"202434_s_at\"                 \"203016_s_at\"                \n",
+       "[14569] \"203018_s_at\"                 \"203015_s_at\"                \n",
+       "[14571] \"203019_x_at\"                 \"203017_s_at\"                \n",
+       "[14573] \"201852_x_at\"                 \"201250_s_at\"                \n",
+       "[14575] \"201249_at\"                   \"205210_at\"                  \n",
+       "[14577] \"201711_x_at\"                 \"205109_s_at\"                \n",
+       "[14579] \"203120_at\"                   \"205109_s_at\"                \n",
+       "[14581] \"202388_at\"                   \"201145_at\"                  \n",
+       "[14583] \"202911_at\"                   \"203725_at\"                  \n",
+       "[14585] \"203535_at\"                   \"202917_s_at\"                \n",
+       "[14587] \"201103_x_at\"                 \"201104_x_at\"                \n",
+       "[14589] \"202251_at\"                   \"203230_at\"                  \n",
+       "[14591] \"202502_at\"                   \"201561_s_at\"                \n",
+       "[14593] \"203081_at\"                   \"205380_at\"                  \n",
+       "[14595] \"203879_at\"                   \"201103_x_at\"                \n",
+       "[14597] \"201104_x_at\"                 \"201103_x_at\"                \n",
+       "[14599] \"201104_x_at\"                 \"201103_x_at\"                \n",
+       "[14601] \"201104_x_at\"                 \"201336_at\"                  \n",
+       "[14603] \"201337_s_at\"                 \"200006_at\"                  \n",
+       "[14605] \"203561_at\"                   \"203561_at\"                  \n",
+       "[14607] \"204514_at\"                   \"201648_at\"                  \n",
+       "[14609] \"205263_at\"                   \"204006_s_at\"                \n",
+       "[14611] \"204006_s_at\"                 \"204006_s_at\"                \n",
+       "[14613] \"204007_at\"                   \"204006_s_at\"                \n",
+       "[14615] \"204007_at\"                   \"201926_s_at\"                \n",
+       "[14617] \"201925_s_at\"                 \"200065_s_at\"                \n",
+       "[14619] \"205253_at\"                   \"203649_s_at\"                \n",
+       "[14621] \"201103_x_at\"                 \"201104_x_at\"                \n",
+       "[14623] \"201200_at\"                   \"205103_at\"                  \n",
+       "[14625] \"202288_at\"                   \"202964_s_at\"                \n",
+       "[14627] \"202963_at\"                   \"202243_s_at\"                \n",
+       "[14629] \"202244_at\"                   \"203379_at\"                  \n",
+       "[14631] \"200020_at\"                   \"203811_s_at\"                \n",
+       "[14633] \"203810_at\"                   \"203091_at\"                  \n",
+       "[14635] \"204648_at\"                   \"202809_s_at\"                \n",
+       "[14637] \"202809_s_at\"                 \"200745_s_at\"                \n",
+       "[14639] \"200744_s_at\"                 \"200746_s_at\"                \n",
+       "[14641] \"204550_x_at\"                 \"204149_s_at\"                \n",
+       "[14643] \"204550_x_at\"                 \"204418_x_at\"                \n",
+       "[14645] \"204550_x_at\"                 \"204418_x_at\"                \n",
+       "[14647] \"202554_s_at\"                 \"201492_s_at\"                \n",
+       "[14649] \"201231_s_at\"                 \"200939_s_at\"                \n",
+       "[14651] \"200938_s_at\"                 \"200940_s_at\"                \n",
+       "[14653] \"200594_x_at\"                 \"200593_s_at\"                \n",
+       "[14655] \"201997_s_at\"                 \"201996_s_at\"                \n",
+       "[14657] \"204270_at\"                   \"200741_s_at\"                \n",
+       "[14659] \"201548_s_at\"                 \"201549_x_at\"                \n",
+       "[14661] \"201957_at\"                   \"201958_s_at\"                \n",
+       "[14663] \"202915_s_at\"                 \"202916_s_at\"                \n",
+       "[14665] \"203863_at\"                   \"203861_s_at\"                \n",
+       "[14667] \"203864_s_at\"                 \"203862_s_at\"                \n",
+       "[14669] \"201482_at\"                   \"205380_at\"                  \n",
+       "[14671] \"205380_at\"                   \"201104_x_at\"                \n",
+       "[14673] \"201103_x_at\"                 \"201104_x_at\"                \n",
+       "[14675] \"201559_s_at\"                 \"201560_at\"                  \n",
+       "[14677] \"201225_s_at\"                 \"201224_s_at\"                \n",
+       "[14679] \"203715_at\"                   \"203714_s_at\"                \n",
+       "[14681] \"204223_at\"                   \"205410_s_at\"                \n",
+       "[14683] \"201949_x_at\"                 \"201950_x_at\"                \n",
+       "[14685] \"201621_at\"                   \"201621_at\"                  \n",
+       "[14687] \"204198_s_at\"                 \"204197_s_at\"                \n",
+       "[14689] \"202709_at\"                   \"204320_at\"                  \n",
+       "[14691] \"204373_s_at\"                 \"200919_at\"                  \n",
+       "[14693] \"201236_s_at\"                 \"201235_s_at\"                \n",
+       "[14695] \"201611_s_at\"                 \"201609_x_at\"                \n",
+       "[14697] \"201610_at\"                   \"204338_s_at\"                \n",
+       "[14699] \"204339_s_at\"                 \"204337_at\"                  \n",
+       "[14701] \"202442_at\"                   \"203550_s_at\"                \n",
+       "[14703] \"200075_s_at\"                 \"201377_at\"                  \n",
+       "[14705] \"201378_s_at\"                 \"200848_at\"                  \n",
+       "[14707] \"200849_s_at\"                 \"200850_s_at\"                \n",
+       "[14709] \"202742_s_at\"                 \"202741_at\"                  \n",
+       "[14711] \"200822_x_at\"                 \"204678_s_at\"                \n",
+       "[14713] \"204679_at\"                   \"201103_x_at\"                \n",
+       "[14715] \"201104_x_at\"                 \"201103_x_at\"                \n",
+       "[14717] \"201104_x_at\"                 \"202269_x_at\"                \n",
+       "[14719] \"203402_at\"                   \"201465_s_at\"                \n",
+       "[14721] \"201464_x_at\"                 \"201466_s_at\"                \n",
+       "[14723] \"203950_s_at\"                 \"205323_s_at\"                \n",
+       "[14725] \"205322_s_at\"                 \"203818_s_at\"                \n",
+       "[14727] \"201932_at\"                   \"202233_s_at\"                \n",
+       "[14729] \"204231_s_at\"                 \"201339_s_at\"                \n",
+       "[14731] \"203053_at\"                   \"200896_x_at\"                \n",
+       "[14733] \"202559_x_at\"                 \"202560_s_at\"                \n",
+       "[14735] \"203429_s_at\"                 \"201382_at\"                  \n",
+       "[14737] \"201381_x_at\"                 \"203800_s_at\"                \n",
+       "[14739] \"203801_at\"                   \"203144_s_at\"                \n",
+       "[14741] \"203143_s_at\"                 \"205177_at\"                  \n",
+       "[14743] \"203766_s_at\"                 \"201821_s_at\"                \n",
+       "[14745] \"201822_at\"                   \"201003_x_at\"                \n",
+       "[14747] \"205169_at\"                   \"202672_s_at\"                \n",
+       "[14749] \"202271_at\"                   \"202272_s_at\"                \n",
+       "[14751] \"203983_at\"                   \"203411_s_at\"                \n",
+       "[14753] \"202004_x_at\"                 \"202675_at\"                  \n",
+       "[14755] \"201181_at\"                   \"201180_s_at\"                \n",
+       "[14757] \"201179_s_at\"                 \"203591_s_at\"                \n",
+       "[14759] \"203984_s_at\"                 \"208024_s_at\"                \n",
+       "[14761] \"208312_s_at\"                 \"208312_s_at\"                \n",
+       "[14763] \"208312_s_at\"                 \"208312_s_at\"                \n",
+       "[14765] \"208312_s_at\"                 \"208041_at\"                  \n",
+       "[14767] \"206374_at\"                   \"208332_at\"                  \n",
+       "[14769] \"208332_at\"                   \"207916_at\"                  \n",
+       "[14771] \"206624_at\"                   \"206624_at\"                  \n",
+       "[14773] \"207918_s_at\"                 \"207918_s_at\"                \n",
+       "[14775] \"207918_s_at\"                 \"207918_s_at\"                \n",
+       "[14777] \"207918_s_at\"                 \"207918_s_at\"                \n",
+       "[14779] \"207918_s_at\"                 \"207918_s_at\"                \n",
+       "[14781] \"207918_s_at\"                 \"207918_s_at\"                \n",
+       "[14783] \"207918_s_at\"                 \"207918_s_at\"                \n",
+       "[14785] \"207918_s_at\"                 \"207918_s_at\"                \n",
+       "[14787] \"207918_s_at\"                 \"207918_s_at\"                \n",
+       "[14789] \"207918_s_at\"                 \"207918_s_at\"                \n",
+       "[14791] \"207918_s_at\"                 \"207918_s_at\"                \n",
+       "[14793] \"208332_at\"                   \"208332_at\"                  \n",
+       "[14795] \"208331_at\"                   \"207918_s_at\"                \n",
+       "[14797] \"207918_s_at\"                 \"207918_s_at\"                \n",
+       "[14799] \"207918_s_at\"                 \"207918_s_at\"                \n",
+       "[14801] \"207918_s_at\"                 \"207918_s_at\"                \n",
+       "[14803] \"207918_s_at\"                 \"207918_s_at\"                \n",
+       "[14805] \"207918_s_at\"                 \"207918_s_at\"                \n",
+       "[14807] \"207918_s_at\"                 \"207918_s_at\"                \n",
+       "[14809] \"207918_s_at\"                 \"207918_s_at\"                \n",
+       "[14811] \"207918_s_at\"                 \"207918_s_at\"                \n",
+       "[14813] \"207918_s_at\"                 \"207918_s_at\"                \n",
+       "[14815] \"207918_s_at\"                 \"207918_s_at\"                \n",
+       "[14817] \"207918_s_at\"                 \"207918_s_at\"                \n",
+       "[14819] \"207918_s_at\"                 \"207918_s_at\"                \n",
+       "[14821] \"207918_s_at\"                 \"207918_s_at\"                \n",
+       "[14823] \"207918_s_at\"                 \"207918_s_at\"                \n",
+       "[14825] \"207918_s_at\"                 \"207918_s_at\"                \n",
+       "[14827] \"207918_s_at\"                 \"207918_s_at\"                \n",
+       "[14829] \"207918_s_at\"                 \"207918_s_at\"                \n",
+       "[14831] \"207918_s_at\"                 \"207918_s_at\"                \n",
+       "[14833] \"207918_s_at\"                 \"207918_s_at\"                \n",
+       "[14835] \"207918_s_at\"                 \"207918_s_at\"                \n",
+       "[14837] \"207918_s_at\"                 \"207918_s_at\"                \n",
+       "[14839] \"207918_s_at\"                 \"207918_s_at\"                \n",
+       "[14841] \"207918_s_at\"                 \"207918_s_at\"                \n",
+       "[14843] \"207918_s_at\"                 \"207918_s_at\"                \n",
+       "[14845] \"207918_s_at\"                 \"207918_s_at\"                \n",
+       "[14847] \"207918_s_at\"                 \"207918_s_at\"                \n",
+       "[14849] \"207918_s_at\"                 \"208307_at\"                  \n",
+       "[14851] \"207918_s_at\"                 \"209772_s_at\"                \n",
+       "[14853] \"208650_s_at\"                 \"207063_at\"                  \n",
+       "[14855] \"206700_s_at\"                 \"208307_at\"                  \n",
+       "[14857] \"208020_s_at\"                 \"208020_s_at\"                \n",
+       "[14859] \"207646_s_at\"                 \"206279_at\"                  \n",
+       "[14861] \"208331_at\"                   \"207909_x_at\"                \n",
+       "[14863] \"207912_s_at\"                 \"208282_x_at\"                \n",
+       "[14865] \"208281_x_at\"                 \"207646_s_at\"                \n",
+       "[14867] \"207893_at\"                   \"207247_s_at\"                \n",
+       "[14869] \"207246_at\"                   \"208067_x_at\"                \n",
+       "[14871] \"210322_x_at\"                 \"206769_at\"                  \n",
+       "[14873] \"206922_at\"                   \"207909_x_at\"                \n",
+       "[14875] \"207912_s_at\"                 \"208282_x_at\"                \n",
+       "[14877] \"208281_x_at\"                 \"207909_x_at\"                \n",
+       "[14879] \"207912_s_at\"                 \"208282_x_at\"                \n",
+       "[14881] \"208281_x_at\"                 \"207916_at\"                  \n",
+       "[14883] \"208220_x_at\"                 \"210408_s_at\"                \n",
+       "[14885] \"206596_s_at\"                 \"206597_at\"                  \n",
+       "[14887] \"207909_x_at\"                 \"207912_s_at\"                \n",
+       "[14889] \"208282_x_at\"                 \"208281_x_at\"                \n",
+       "[14891] \"207918_s_at\"                 \"208307_at\"                  \n",
+       "[14893] \"209150_s_at\"                 \"209149_s_at\"                \n",
+       "[14895] \"209150_s_at\"                 \"207703_at\"                  \n",
+       "[14897] \"209149_s_at\"                 \"209150_s_at\"                \n",
+       "[14899] \"208332_at\"                   \"207916_at\"                  \n",
+       "[14901] \"206922_at\"                   \"206008_at\"                  \n",
+       "[14903] \"208307_at\"                   \"208332_at\"                  \n",
+       "[14905] \"208366_at\"                   \"210292_s_at\"                \n",
+       "[14907] \"210128_s_at\"                 \"207646_s_at\"                \n",
+       "[14909] \"207647_at\"                   \"208331_at\"                  \n",
+       "[14911] \"205897_at\"                   \"207646_s_at\"                \n",
+       "[14913] \"207647_at\"                   \"208307_at\"                  \n",
+       "[14915] \"207918_s_at\"                 \"207918_s_at\"                \n",
+       "[14917] \"207918_s_at\"                 \"207918_s_at\"                \n",
+       "[14919] \"207918_s_at\"                 \"207918_s_at\"                \n",
+       "[14921] \"207918_s_at\"                 \"207918_s_at\"                \n",
+       "[14923] \"207918_s_at\"                 \"207918_s_at\"                \n",
+       "[14925] \"208307_at\"                   \"208307_at\"                  \n",
+       "[14927] \"208572_at\"                   \"207916_at\"                  \n",
+       "[14929] \"208339_at\"                   \"208339_at\"                  \n",
+       "[14931] \"208339_at\"                   \"208339_at\"                  \n",
+       "[14933] \"206769_at\"                   \"207918_s_at\"                \n",
+       "[14935] \"207918_s_at\"                 \"207918_s_at\"                \n",
+       "[14937] \"207918_s_at\"                 \"207918_s_at\"                \n",
+       "[14939] \"207918_s_at\"                 \"207918_s_at\"                \n",
+       "[14941] \"207918_s_at\"                 \"207918_s_at\"                \n",
+       "[14943] \"207918_s_at\"                 \"207918_s_at\"                \n",
+       "[14945] \"207918_s_at\"                 \"207918_s_at\"                \n",
+       "[14947] \"207918_s_at\"                 \"207918_s_at\"                \n",
+       "[14949] \"207918_s_at\"                 \"207918_s_at\"                \n",
+       "[14951] \"207918_s_at\"                 \"207918_s_at\"                \n",
+       "[14953] \"207918_s_at\"                 \"207918_s_at\"                \n",
+       "[14955] \"207918_s_at\"                 \"207918_s_at\"                \n",
+       "[14957] \"207918_s_at\"                 \"207918_s_at\"                \n",
+       "[14959] \"207918_s_at\"                 \"207918_s_at\"                \n",
+       "[14961] \"207918_s_at\"                 \"207918_s_at\"                \n",
+       "[14963] \"207918_s_at\"                 \"207918_s_at\"                \n",
+       "[14965] \"207918_s_at\"                 \"207918_s_at\"                \n",
+       "[14967] \"207918_s_at\"                 \"207918_s_at\"                \n",
+       "[14969] \"207918_s_at\"                 \"206148_at\"                  \n",
+       "[14971] \"206779_s_at\"                 \"209394_at\"                  \n",
+       "[14973] \"210269_s_at\"                 \"207570_at\"                  \n",
+       "[14975] \"210340_s_at\"                 \"207085_x_at\"                \n",
+       "[14977] \"208303_s_at\"                 \"208164_s_at\"                \n",
+       "[14979] \"209695_at\"                   \"206574_s_at\"                \n",
+       "[14981] \"207427_at\"                   \"209791_at\"                  \n",
+       "[14983] \"205614_x_at\"                 \"205606_at\"                  \n",
+       "[14985] \"206314_at\"                   \"205855_at\"                  \n",
+       "[14987] \"205855_at\"                   \"206096_at\"                  \n",
+       "[14989] \"206260_at\"                   \"206009_at\"                  \n",
+       "[14991] \"206603_at\"                   \"209350_s_at\"                \n",
+       "[14993] \"209350_s_at\"                 \"208607_s_at\"                \n",
+       "[14995] \"206611_at\"                   \"207638_at\"                  \n",
+       "[14997] \"208395_s_at\"                 \"206593_s_at\"                \n",
+       "[14999] \"206387_at\"                   \"206703_at\"                  \n",
+       "[15001] \"205669_at\"                   \"207258_at\"                  \n",
+       "[15003] \"210289_at\"                   \"206963_s_at\"                \n",
+       "[15005] \"206964_at\"                   \"206963_s_at\"                \n",
+       "[15007] \"207322_at\"                   \"209297_at\"                  \n",
+       "[15009] \"209298_s_at\"                 \"206884_s_at\"                \n",
+       "[15011] \"206671_at\"                   \"209900_s_at\"                \n",
+       "[15013] \"209212_s_at\"                 \"209211_at\"                  \n",
+       "[15015] \"206940_s_at\"                 \"210235_s_at\"                \n",
+       "[15017] \"210236_at\"                   \"210454_s_at\"                \n",
+       "[15019] \"206449_s_at\"                 \"209686_at\"                  \n",
+       "[15021] \"205656_at\"                   \"210119_at\"                  \n",
+       "[15023] \"207881_at\"                   \"206566_at\"                  \n",
+       "[15025] \"207191_s_at\"                 \"207254_at\"                  \n",
+       "[15027] \"210083_at\"                   \"210083_at\"                  \n",
+       "[15029] \"206220_s_at\"                 \"206221_at\"                  \n",
+       "[15031] \"209213_at\"                   \"208158_s_at\"                \n",
+       "[15033] \"208129_x_at\"                 \"209360_s_at\"                \n",
+       "[15035] \"209359_x_at\"                 \"210365_at\"                  \n",
+       "[15037] \"208129_x_at\"                 \"209360_s_at\"                \n",
+       "[15039] \"209359_x_at\"                 \"210365_at\"                  \n",
+       "[15041] \"209858_x_at\"                 \"206764_x_at\"                \n",
+       "[15043] \"206915_at\"                   \"206803_at\"                  \n",
+       "[15045] \"206502_s_at\"                 \"208205_at\"                  \n",
+       "[15047] \"205548_s_at\"                 \"208504_x_at\"                \n",
+       "[15049] \"207296_at\"                   \"207925_at\"                  \n",
+       "[15051] \"207093_s_at\"                 \"207093_s_at\"                \n",
+       "[15053] \"206004_at\"                   \"206558_at\"                  \n",
+       "[15055] \"208157_at\"                   \"206652_at\"                  \n",
+       "[15057] \"206744_s_at\"                 \"208533_at\"                  \n",
+       "[15059] \"207267_s_at\"                 \"210140_at\"                  \n",
+       "[15061] \"206656_s_at\"                 \"206746_at\"                  \n",
+       "[15063] \"208409_at\"                   \"208555_x_at\"                \n",
+       "[15065] \"208979_at\"                   \"209954_x_at\"                \n",
+       "[15067] \"209185_s_at\"                 \"209184_s_at\"                \n",
+       "[15069] \"208184_s_at\"                 \"209412_at\"                  \n",
+       "[15071] \"209099_x_at\"                 \"209098_s_at\"                \n",
+       "[15073] \"209097_s_at\"                 \"209336_at\"                  \n",
+       "[15075] \"209237_s_at\"                 \"209236_at\"                  \n",
+       "[15077] \"209033_s_at\"                 \"205549_at\"                  \n",
+       "[15079] \"206984_s_at\"                 \"209102_s_at\"                \n",
+       "[15081] \"207361_at\"                   \"205762_s_at\"                \n",
+       "[15083] \"205761_s_at\"                 \"208041_at\"                  \n",
+       "[15085] \"206674_at\"                   \"209692_at\"                  \n",
+       "[15087] \"209082_s_at\"                 \"209081_s_at\"                \n",
+       "[15089] \"205637_s_at\"                 \"208064_s_at\"                \n",
+       "[15091] \"208065_at\"                   \"207018_s_at\"                \n",
+       "[15093] \"207017_at\"                   \"205677_s_at\"                \n",
+       "[15095] \"207040_s_at\"                 \"210199_at\"                  \n",
+       "[15097] \"210199_at\"                   \"209060_x_at\"                \n",
+       "[15099] \"209061_at\"                   \"209062_x_at\"                \n",
+       "[15101] \"207700_s_at\"                 \"209775_x_at\"                \n",
+       "[15103] \"209777_s_at\"                 \"209776_s_at\"                \n",
+       "[15105] \"205557_at\"                   \"209082_s_at\"                \n",
+       "[15107] \"209081_s_at\"                 \"208131_s_at\"                \n",
+       "[15109] \"207677_s_at\"                 \"205677_s_at\"                \n",
+       "[15111] \"205677_s_at\"                 \"209510_at\"                  \n",
+       "[15113] \"208492_at\"                   \"210008_s_at\"                \n",
+       "[15115] \"206400_at\"                   \"206400_at\"                  \n",
+       "[15117] \"206400_at\"                   \"206400_at\"                  \n",
+       "[15119] \"208299_at\"                   \"210188_at\"                  \n",
+       "[15121] \"206651_s_at\"                 \"206898_at\"                  \n",
+       "[15123] \"208853_s_at\"                 \"208852_s_at\"                \n",
+       "[15125] \"208885_at\"                   \"206480_at\"                  \n",
+       "[15127] \"206431_x_at\"                 \"207594_s_at\"                \n",
+       "[15129] \"209724_s_at\"                 \"208199_s_at\"                \n",
+       "[15131] \"208689_s_at\"                 \"210014_x_at\"                \n",
+       "[15133] \"210418_s_at\"                 \"208726_s_at\"                \n",
+       "[15135] \"208725_at\"                   \"210144_at\"                  \n",
+       "[15137] \"209650_s_at\"                 \"207302_at\"                  \n",
+       "[15139] \"209072_at\"                   \"207323_s_at\"                \n",
+       "[15141] \"210136_at\"                   \"209591_s_at\"                \n",
+       "[15143] \"209590_at\"                   \"206866_at\"                  \n",
+       "[15145] \"209009_at\"                   \"205727_at\"                  \n",
+       "[15147] \"207135_at\"                   \"205549_at\"                  \n",
+       "[15149] \"209450_at\"                   \"208089_s_at\"                \n",
+       "[15151] \"210027_s_at\"                 \"205980_s_at\"                \n",
+       "[15153] \"208854_s_at\"                 \"208855_s_at\"                \n",
+       "[15155] \"207132_x_at\"                 \"206546_at\"                  \n",
+       "[15157] \"210397_at\"                   \"207814_at\"                  \n",
+       "[15159] \"207269_at\"                   \"207529_at\"                  \n",
+       "[15161] \"210150_s_at\"                 \"210276_s_at\"                \n",
+       "[15163] \"207356_at\"                   \"207356_at\"                  \n",
+       "[15165] \"207356_at\"                   \"207315_at\"                  \n",
+       "[15167] \"207271_x_at\"                 \"207271_x_at\"                \n",
+       "[15169] \"207735_at\"                   \"207271_x_at\"                \n",
+       "[15171] \"207356_at\"                   \"207356_at\"                  \n",
+       "[15173] \"207356_at\"                   \"206694_at\"                  \n",
+       "[15175] \"208647_at\"                   \"209933_s_at\"                \n",
+       "[15177] \"207270_x_at\"                 \"205517_at\"                  \n",
+       "[15179] \"205593_s_at\"                 \"206255_at\"                  \n",
+       "[15181] \"208399_s_at\"                 \"209026_x_at\"                \n",
+       "[15183] \"209423_s_at\"                 \"206567_s_at\"                \n",
+       "[15185] \"209422_at\"                   \"206393_at\"                  \n",
+       "[15187] \"205693_at\"                   \"208590_x_at\"                \n",
+       "[15189] \"205794_s_at\"                 \"207437_at\"                  \n",
+       "[15191] \"210281_s_at\"                 \"210282_at\"                  \n",
+       "[15193] \"207482_at\"                   \"207873_x_at\"                \n",
+       "[15195] \"206768_at\"                   \"209820_s_at\"                \n",
+       "[15197] \"205691_at\"                   \"208601_s_at\"                \n",
+       "[15199] \"207281_x_at\"                 \"206148_at\"                  \n",
+       "[15201] \"206614_at\"                   \"208668_x_at\"                \n",
+       "[15203] \"208410_x_at\"                 \"206779_s_at\"                \n",
+       "[15205] \"205722_s_at\"                 \"205721_at\"                  \n",
+       "[15207] \"206042_x_at\"                 \"206374_at\"                  \n",
+       "[15209] \"206436_at\"                   \"205817_at\"                  \n",
+       "[15211] \"210447_at\"                   \"207956_x_at\"                \n",
+       "[15213] \"209394_at\"                   \"205780_at\"                  \n",
+       "[15215] \"206050_s_at\"                 \"205652_s_at\"                \n",
+       "[15217] \"208215_x_at\"                 \"209407_s_at\"                \n",
+       "[15219] \"208436_s_at\"                 \"209020_at\"                  \n",
+       "[15221] \"206108_s_at\"                 \"208804_s_at\"                \n",
+       "[15223] \"208078_s_at\"                 \"206934_at\"                  \n",
+       "[15225] \"207020_at\"                   \"206115_at\"                  \n",
+       "[15227] \"208579_x_at\"                 \"208579_x_at\"                \n",
+       "[15229] \"208579_x_at\"                 \"207250_at\"                  \n",
+       "[15231] \"209222_s_at\"                 \"209221_s_at\"                \n",
+       "[15233] \"210279_at\"                   \"208090_s_at\"                \n",
+       "[15235] \"207929_at\"                   \"209431_s_at\"                \n",
+       "[15237] \"209494_s_at\"                 \"209656_s_at\"                \n",
+       "[15239] \"209655_s_at\"                 \"210024_s_at\"                \n",
+       "[15241] \"210407_at\"                   \"205977_s_at\"                \n",
+       "[15243] \"210269_s_at\"                 \"208525_s_at\"                \n",
+       "[15245] \"208526_at\"                   \"208525_s_at\"                \n",
+       "[15247] \"206731_at\"                   \"207933_at\"                  \n",
+       "[15249] \"206420_at\"                   \"209042_s_at\"                \n",
+       "[15251] \"209041_s_at\"                 \"208529_at\"                  \n",
+       "[15253] \"207936_x_at\"                 \"207448_at\"                  \n",
+       "[15255] \"209578_s_at\"                 \"207449_s_at\"                \n",
+       "[15257] \"208423_s_at\"                 \"208422_at\"                  \n",
+       "[15259] \"207701_at\"                   \"208182_x_at\"                \n",
+       "[15261] \"208448_x_at\"                 \"205663_at\"                  \n",
+       "[15263] \"207095_at\"                   \"206735_at\"                  \n",
+       "[15265] \"206736_x_at\"                 \"205595_at\"                  \n",
+       "[15267] \"206185_at\"                   \"206843_at\"                  \n",
+       "[15269] \"209660_at\"                   \"206498_at\"                  \n",
+       "[15271] \"207200_at\"                   \"206482_at\"                  \n",
+       "[15273] \"205961_s_at\"                 \"209337_at\"                  \n",
+       "[15275] \"206099_at\"                   \"210469_at\"                  \n",
+       "[15277] \"206002_at\"                   \"209189_at\"                  \n",
+       "[15279] \"208387_s_at\"                 \"209919_x_at\"                \n",
+       "[15281] \"207131_x_at\"                 \"208284_x_at\"                \n",
+       "[15283] \"210213_s_at\"                 \"208627_s_at\"                \n",
+       "[15285] \"208628_s_at\"                 \"209706_at\"                  \n",
+       "[15287] \"205510_s_at\"                 \"205511_at\"                  \n",
+       "[15289] \"210254_at\"                   \"209919_x_at\"                \n",
+       "[15291] \"207131_x_at\"                 \"208284_x_at\"                \n",
+       "[15293] \"209803_s_at\"                 \"206235_at\"                  \n",
+       "[15295] \"209919_x_at\"                 \"207131_x_at\"                \n",
+       "[15297] \"208284_x_at\"                 \"208041_at\"                  \n",
+       "[15299] \"206097_at\"                   \"207576_x_at\"                \n",
+       "[15301] \"207848_at\"                   \"209171_at\"                  \n",
+       "[15303] \"208937_s_at\"                 \"205751_at\"                  \n",
+       "[15305] \"210052_s_at\"                 \"208259_x_at\"                \n",
+       "[15307] \"207964_x_at\"                 \"208182_x_at\"                \n",
+       "[15309] \"208448_x_at\"                 \"208351_s_at\"                \n",
+       "[15311] \"210268_at\"                   \"206374_at\"                  \n",
+       "[15313] \"210077_s_at\"                 \"206665_s_at\"                \n",
+       "[15315] \"207941_s_at\"                 \"208720_s_at\"                \n",
+       "[15317] \"208427_s_at\"                 \"209399_at\"                  \n",
+       "[15319] \"207833_s_at\"                 \"208514_at\"                  \n",
+       "[15321] \"209160_at\"                   \"207885_at\"                  \n",
+       "[15323] \"206473_at\"                   \"209838_at\"                  \n",
+       "[15325] \"206325_at\"                   \"206147_x_at\"                \n",
+       "[15327] \"208961_s_at\"                 \"208960_s_at\"                \n",
+       "[15329] \"210197_at\"                   \"205711_x_at\"                \n",
+       "[15331] \"208870_x_at\"                 \"207069_s_at\"                \n",
+       "[15333] \"209886_s_at\"                 \"208531_at\"                  \n",
+       "[15335] \"210270_at\"                   \"206756_at\"                  \n",
+       "[15337] \"210250_x_at\"                 \"206704_at\"                  \n",
+       "[15339] \"206802_at\"                   \"206404_at\"                  \n",
+       "[15341] \"209654_at\"                   \"207752_x_at\"                \n",
+       "[15343] \"207752_x_at\"                 \"206998_x_at\"                \n",
+       "[15345] \"205664_at\"                   \"210186_s_at\"                \n",
+       "[15347] \"210187_at\"                   \"205562_at\"                  \n",
+       "[15349] \"206575_at\"                   \"206819_at\"                  \n",
+       "[15351] \"208024_s_at\"                 \"208513_at\"                  \n",
+       "[15353] \"210384_at\"                   \"207752_x_at\"                \n",
+       "[15355] \"207752_x_at\"                 \"209597_s_at\"                \n",
+       "[15357] \"209598_at\"                   \"206775_at\"                  \n",
+       "[15359] \"207556_s_at\"                 \"206712_at\"                  \n",
+       "[15361] \"209871_s_at\"                 \"209870_s_at\"                \n",
+       "[15363] \"206022_at\"                   \"206632_s_at\"                \n",
+       "[15365] \"206308_at\"                   \"207019_s_at\"                \n",
+       "[15367] \"208097_s_at\"                 \"209476_at\"                  \n",
+       "[15369] \"210123_s_at\"                 \"206479_at\"                  \n",
+       "[15371] \"209584_x_at\"                 \"210123_s_at\"                \n",
+       "[15373] \"210213_s_at\"                 \"209851_at\"                  \n",
+       "[15375] \"208491_s_at\"                 \"209764_at\"                  \n",
+       "[15377] \"208058_s_at\"                 \"206888_s_at\"                \n",
+       "[15379] \"210388_at\"                   \"206955_at\"                  \n",
+       "[15381] \"207386_at\"                   \"208482_at\"                  \n",
+       "[15383] \"205708_s_at\"                 \"208678_at\"                  \n",
+       "[15385] \"205570_at\"                   \"207222_at\"                  \n",
+       "[15387] \"207469_s_at\"                 \"208480_s_at\"                \n",
+       "[15389] \"208519_x_at\"                 \"210464_at\"                  \n",
+       "[15391] \"210042_s_at\"                 \"206889_at\"                  \n",
+       "[15393] \"206888_s_at\"                 \"206780_at\"                  \n",
+       "[15395] \"207961_x_at\"                 \"208900_s_at\"                \n",
+       "[15397] \"208901_s_at\"                 \"205694_at\"                  \n",
+       "[15399] \"206550_s_at\"                 \"210275_s_at\"                \n",
+       "[15401] \"206947_at\"                   \"210296_s_at\"                \n",
+       "[15403] \"209374_s_at\"                 \"205775_at\"                  \n",
+       "[15405] \"206478_at\"                   \"206413_s_at\"                \n",
+       "[15407] \"206503_x_at\"                 \"210362_x_at\"                \n",
+       "[15409] \"207941_s_at\"                 \"208720_s_at\"                \n",
+       "[15411] \"205971_s_at\"                 \"205971_s_at\"                \n",
+       "[15413] \"207427_at\"                   \"208682_s_at\"                \n",
+       "[15415] \"206955_at\"                   \"209403_at\"                  \n",
+       "[15417] \"209403_at\"                   \"206631_at\"                  \n",
+       "[15419] \"209924_at\"                   \"209403_at\"                  \n",
+       "[15421] \"209403_at\"                   \"206176_at\"                  \n",
+       "[15423] \"206413_s_at\"                 \"210068_s_at\"                \n",
+       "[15425] \"210067_at\"                   \"210066_s_at\"                \n",
+       "[15427] \"208483_x_at\"                 \"207787_at\"                  \n",
+       "[15429] \"206677_at\"                   \"207649_at\"                  \n",
+       "[15431] \"206969_at\"                   \"207676_at\"                  \n",
+       "[15433] \"210005_at\"                   \"207311_at\"                  \n",
+       "[15435] \"210318_at\"                   \"207015_s_at\"                \n",
+       "[15437] \"207016_s_at\"                 \"207606_s_at\"                \n",
+       "[15439] \"207456_at\"                   \"207780_at\"                  \n",
+       "[15441] \"206401_s_at\"                 \"208742_s_at\"                \n",
+       "[15443] \"208741_at\"                   \"208740_at\"                  \n",
+       "[15445] \"208864_s_at\"                 \"206918_s_at\"                \n",
+       "[15447] \"207367_at\"                   \"206107_at\"                  \n",
+       "[15449] \"208593_x_at\"                 \"208593_x_at\"                \n",
+       "[15451] \"208028_s_at\"                 \"206104_at\"                  \n",
+       "[15453] \"207081_s_at\"                 \"210002_at\"                  \n",
+       "[15455] \"210317_s_at\"                 \"206159_at\"                  \n",
+       "[15457] \"206258_at\"                   \"207510_at\"                  \n",
+       "[15459] \"209575_at\"                   \"205877_s_at\"                \n",
+       "[15461] \"206169_x_at\"                 \"206377_at\"                  \n",
+       "[15463] \"206217_at\"                   \"210167_s_at\"                \n",
+       "[15465] \"210424_s_at\"                 \"207099_s_at\"                \n",
+       "[15467] \"210424_s_at\"                 \"208798_x_at\"                \n",
+       "[15469] \"210425_x_at\"                 \"208797_s_at\"                \n",
+       "[15471] \"209292_at\"                   \"209293_x_at\"                \n",
+       "[15473] \"209291_at\"                   \"208661_s_at\"                \n",
+       "[15475] \"207608_x_at\"                 \"207609_s_at\"                \n",
+       "[15477] \"208727_s_at\"                 \"205769_at\"                  \n",
+       "[15479] \"205768_s_at\"                 \"206375_s_at\"                \n",
+       "[15481] \"209616_s_at\"                 \"207345_at\"                  \n",
+       "[15483] \"209616_s_at\"                 \"208661_s_at\"                \n",
+       "[15485] \"208663_s_at\"                 \"208073_x_at\"                \n",
+       "[15487] \"208662_s_at\"                 \"208664_s_at\"                \n",
+       "[15489] \"208593_x_at\"                 \"208593_x_at\"                \n",
+       "[15491] \"206401_s_at\"                 \"205498_at\"                  \n",
+       "[15493] \"205625_s_at\"                 \"205626_s_at\"                \n",
+       "[15495] \"206946_at\"                   \"205932_s_at\"                \n",
+       "[15497] \"207040_s_at\"                 \"207012_at\"                  \n",
+       "[15499] \"207013_s_at\"                 \"208167_s_at\"                \n",
+       "[15501] \"208166_at\"                   \"207729_at\"                  \n",
+       "[15503] \"208486_at\"                   \"206481_s_at\"                \n",
+       "[15505] \"210482_x_at\"                 \"206319_s_at\"                \n",
+       "[15507] \"206318_at\"                   \"210032_s_at\"                \n",
+       "[15509] \"210033_s_at\"                 \"205613_at\"                  \n",
+       "[15511] \"210466_s_at\"                 \"205963_s_at\"                \n",
+       "[15513] \"209659_s_at\"                 \"209658_at\"                  \n",
+       "[15515] \"210048_at\"                   \"206698_at\"                  \n",
+       "[15517] \"208487_at\"                   \"206860_s_at\"                \n",
+       "[15519] \"209672_s_at\"                 \"206167_s_at\"                \n",
+       "[15521] \"208085_s_at\"                 \"207510_at\"                  \n",
+       "[15523] \"206201_s_at\"                 \"207353_s_at\"                \n",
+       "[15525] \"207775_at\"                   \"206020_at\"                  \n",
+       "[15527] \"206280_at\"                   \"210473_s_at\"                \n",
+       "[15529] \"207488_at\"                   \"208349_at\"                  \n",
+       "[15531] \"208818_s_at\"                 \"208817_at\"                  \n",
+       "[15533] \"206958_s_at\"                 \"206959_s_at\"                \n",
+       "[15535] \"205847_at\"                   \"209847_at\"                  \n",
+       "[15537] \"206762_at\"                   \"208149_x_at\"                \n",
+       "[15539] \"206487_at\"                   \"205784_x_at\"                \n",
+       "[15541] \"209758_s_at\"                 \"208948_s_at\"                \n",
+       "[15543] \"207320_x_at\"                 \"206409_at\"                  \n",
+       "[15545] \"207005_s_at\"                 \"207694_at\"                  \n",
+       "[15547] \"206583_at\"                   \"207575_at\"                  \n",
+       "[15549] \"207575_at\"                   \"205818_at\"                  \n",
+       "[15551] \"209191_at\"                   \"207360_s_at\"                \n",
+       "[15553] \"207377_at\"                   \"210443_x_at\"                \n",
+       "[15555] \"205585_at\"                   \"209519_at\"                  \n",
+       "[15557] \"209520_s_at\"                 \"206995_x_at\"                \n",
+       "[15559] \"205606_at\"                   \"209336_at\"                  \n",
+       "[15561] \"209897_s_at\"                 \"207949_s_at\"                \n",
+       "[15563] \"208184_s_at\"                 \"209412_at\"                  \n",
+       "[15565] \"206677_at\"                   \"208483_x_at\"                \n",
+       "[15567] \"207149_at\"                   \"207649_at\"                  \n",
+       "[15569] \"206969_at\"                   \"207787_at\"                  \n",
+       "[15571] \"206969_at\"                   \"208869_s_at\"                \n",
+       "[15573] \"208868_s_at\"                 \"205505_at\"                  \n",
+       "[15575] \"206976_s_at\"                 \"208744_x_at\"                \n",
+       "[15577] \"206606_at\"                   \"209103_s_at\"                \n",
+       "[15579] \"205821_at\"                   \"206200_s_at\"                \n",
+       "[15581] \"209507_at\"                   \"208739_x_at\"                \n",
+       "[15583] \"208271_at\"                   \"206032_at\"                  \n",
+       "[15585] \"206033_s_at\"                 \"207795_s_at\"                \n",
+       "[15587] \"207796_x_at\"                 \"208668_x_at\"                \n",
+       "[15589] \"205667_at\"                   \"207385_at\"                  \n",
+       "[15591] \"207324_s_at\"                 \"209912_s_at\"                \n",
+       "[15593] \"209913_x_at\"                 \"207313_x_at\"                \n",
+       "[15595] \"207314_x_at\"                 \"208788_at\"                  \n",
+       "[15597] \"206642_at\"                   \"210004_at\"                  \n",
+       "[15599] \"209585_s_at\"                 \"208668_x_at\"                \n",
+       "[15601] \"210114_at\"                   \"207313_x_at\"                \n",
+       "[15603] \"207314_x_at\"                 \"208541_x_at\"                \n",
+       "[15605] \"207300_s_at\"                 \"207369_at\"                  \n",
+       "[15607] \"210212_x_at\"                 \"207197_at\"                  \n",
+       "[15609] \"205620_at\"                   \"209980_s_at\"                \n",
+       "[15611] \"209767_s_at\"                 \"209768_s_at\"                \n",
+       "[15613] \"209769_s_at\"                 \"206655_s_at\"                \n",
+       "[15615] \"206424_at\"                   \"210212_x_at\"                \n",
+       "[15617] \"208034_s_at\"                 \"205523_at\"                  \n",
+       "[15619] \"205524_s_at\"                 \"210274_at\"                  \n",
+       "[15621] \"209301_at\"                   \"206342_x_at\"                \n",
+       "[15623] \"210262_at\"                   \"208121_s_at\"                \n",
+       "[15625] \"209664_x_at\"                 \"208196_x_at\"                \n",
+       "[15627] \"210162_s_at\"                 \"209767_s_at\"                \n",
+       "[15629] \"209769_s_at\"                 \"206655_s_at\"                \n",
+       "[15631] \"206655_s_at\"                 \"207597_at\"                  \n",
+       "[15633] \"207313_x_at\"                 \"207314_x_at\"                \n",
+       "[15635] \"206001_at\"                   \"206342_x_at\"                \n",
+       "[15637] \"208024_s_at\"                 \"206075_s_at\"                \n",
+       "[15639] \"208311_at\"                   \"209671_x_at\"                \n",
+       "[15641] \"209670_at\"                   \"210391_at\"                  \n",
+       "[15643] \"207742_s_at\"                 \"210392_x_at\"                \n",
+       "[15645] \"208146_s_at\"                 \"208717_at\"                  \n",
+       "[15647] \"207695_s_at\"                 \"209379_s_at\"                \n",
+       "[15649] \"209378_s_at\"                 \"207811_at\"                  \n",
+       "[15651] \"205466_s_at\"                 \"209745_at\"                  \n",
+       "[15653] \"209746_s_at\"                 \"210285_x_at\"                \n",
+       "[15655] \"208027_s_at\"                 \"207540_s_at\"                \n",
+       "[15657] \"209269_s_at\"                 \"208641_s_at\"                \n",
+       "[15659] \"207010_at\"                   \"205628_at\"                  \n",
+       "[15661] \"207305_s_at\"                 \"207546_at\"                  \n",
+       "[15663] \"210221_at\"                   \"207674_at\"                  \n",
+       "[15665] \"209403_at\"                   \"207084_at\"                  \n",
+       "[15667] \"207354_at\"                   \"210320_s_at\"                \n",
+       "[15669] \"207313_x_at\"                 \"207314_x_at\"                \n",
+       "[15671] \"209403_at\"                   \"209403_at\"                  \n",
+       "[15673] \"207343_at\"                   \"209403_at\"                  \n",
+       "[15675] \"209403_at\"                   \"207158_at\"                  \n",
+       "[15677] \"208122_x_at\"                 \"207674_at\"                  \n",
+       "[15679] \"209938_at\"                   \"207964_x_at\"                \n",
+       "[15681] \"208261_x_at\"                 \"207313_x_at\"                \n",
+       "[15683] \"207314_x_at\"                 \"210390_s_at\"                \n",
+       "[15685] \"206666_at\"                   \"209165_at\"                  \n",
+       "[15687] \"206129_s_at\"                 \"209403_at\"                  \n",
+       "[15689] \"209065_at\"                   \"209066_x_at\"                \n",
+       "[15691] \"205849_s_at\"                 \"205487_s_at\"                \n",
+       "[15693] \"209924_at\"                   \"208135_at\"                  \n",
+       "[15695] \"206533_at\"                   \"206609_at\"                  \n",
+       "[15697] \"206230_at\"                   \"205756_s_at\"                \n",
+       "[15699] \"208672_s_at\"                 \"208673_s_at\"                \n",
+       "[15701] \"207674_at\"                   \"207723_s_at\"                \n",
+       "[15703] \"207313_x_at\"                 \"207314_x_at\"                \n",
+       "[15705] \"208029_s_at\"                 \"208767_s_at\"                \n",
+       "[15707] \"207752_x_at\"                 \"209403_at\"                  \n",
+       "[15709] \"209403_at\"                   \"210390_s_at\"                \n",
+       "[15711] \"206105_at\"                   \"209403_at\"                  \n",
+       "[15713] \"207859_s_at\"                 \"209403_at\"                  \n",
+       "[15715] \"209627_s_at\"                 \"209626_s_at\"                \n",
+       "[15717] \"207900_at\"                   \"209493_at\"                  \n",
+       "[15719] \"207313_x_at\"                 \"207314_x_at\"                \n",
+       "[15721] \"207674_at\"                   \"209274_s_at\"                \n",
+       "[15723] \"209273_s_at\"                 \"209529_at\"                  \n",
+       "[15725] \"206912_at\"                   \"207313_x_at\"                \n",
+       "[15727] \"207314_x_at\"                 \"209122_at\"                  \n",
+       "[15729] \"206701_x_at\"                 \"207861_at\"                  \n",
+       "[15731] \"207406_at\"                   \"210447_at\"                  \n",
+       "[15733] \"207313_x_at\"                 \"207314_x_at\"                \n",
+       "[15735] \"207438_s_at\"                 \"208080_at\"                  \n",
+       "[15737] \"207999_s_at\"                 \"209979_at\"                  \n",
+       "[15739] \"208079_s_at\"                 \"205821_at\"                  \n",
+       "[15741] \"205821_at\"                   \"207313_x_at\"                \n",
+       "[15743] \"207314_x_at\"                 \"205978_at\"                  \n",
+       "[15745] \"208799_at\"                   \"205865_at\"                  \n",
+       "[15747] \"206172_at\"                   \"207601_at\"                  \n",
+       "[15749] \"206106_at\"                   \"207144_s_at\"                \n",
+       "[15751] \"209741_x_at\"                 \"207313_x_at\"                \n",
+       "[15753] \"207314_x_at\"                 \"208651_x_at\"                \n",
+       "[15755] \"209771_x_at\"                 \"209772_s_at\"                \n",
+       "[15757] \"208650_s_at\"                 \"208882_s_at\"                \n",
+       "[15759] \"208884_s_at\"                 \"208883_at\"                  \n",
+       "[15761] \"207313_x_at\"                 \"207314_x_at\"                \n",
+       "[15763] \"206040_s_at\"                 \"209512_at\"                  \n",
+       "[15765] \"209513_s_at\"                 \"206309_at\"                  \n",
+       "[15767] \"205971_s_at\"                 \"206935_at\"                  \n",
+       "[15769] \"205578_at\"                   \"207441_at\"                  \n",
+       "[15771] \"207313_x_at\"                 \"207314_x_at\"                \n",
+       "[15773] \"207674_at\"                   \"205471_s_at\"                \n",
+       "[15775] \"205472_s_at\"                 \"206356_s_at\"                \n",
+       "[15777] \"206355_at\"                   \"209575_at\"                  \n",
+       "[15779] \"207108_s_at\"                 \"208755_x_at\"                \n",
+       "[15781] \"207313_x_at\"                 \"207314_x_at\"                \n",
+       "[15783] \"208682_s_at\"                 \"206437_at\"                  \n",
+       "[15785] \"205813_s_at\"                 \"209347_s_at\"                \n",
+       "[15787] \"206363_at\"                   \"209348_s_at\"                \n",
+       "[15789] \"205773_at\"                   \"207674_at\"                  \n",
+       "[15791] \"207313_x_at\"                 \"207314_x_at\"                \n",
+       "[15793] \"206443_at\"                   \"210287_s_at\"                \n",
+       "[15795] \"207251_at\"                   \"208370_s_at\"                \n",
+       "[15797] \"206380_s_at\"                 \"210376_x_at\"                \n",
+       "[15799] \"209173_at\"                   \"207313_x_at\"                \n",
+       "[15801] \"207314_x_at\"                 \"207313_x_at\"                \n",
+       "[15803] \"207314_x_at\"                 \"207559_s_at\"                \n",
+       "[15805] \"207242_s_at\"                 \"209995_s_at\"                \n",
+       "[15807] \"207313_x_at\"                 \"207314_x_at\"                \n",
+       "[15809] \"207774_at\"                   \"206663_at\"                  \n",
+       "[15811] \"206141_at\"                   \"205816_at\"                  \n",
+       "[15813] \"207313_x_at\"                 \"207314_x_at\"                \n",
+       "[15815] \"207674_at\"                   \"208837_at\"                  \n",
+       "[15817] \"210199_at\"                   \"208579_x_at\"                \n",
+       "[15819] \"207020_at\"                   \"208078_s_at\"                \n",
+       "[15821] \"210197_at\"                   \"208514_at\"                  \n",
+       "[15823] \"209595_at\"                   \"205971_s_at\"                \n",
+       "[15825] \"207314_x_at\"                 \"207783_x_at\"                \n",
+       "[15827] \"210487_at\"                   \"207509_s_at\"                \n",
+       "[15829] \"210152_at\"                   \"208594_x_at\"                \n",
+       "[15831] \"207857_at\"                   \"207697_x_at\"                \n",
+       "[15833] \"210146_x_at\"                 \"210225_x_at\"                \n",
+       "[15835] \"210225_x_at\"                 \"210225_x_at\"                \n",
+       "[15837] \"210225_x_at\"                 \"206856_at\"                  \n",
+       "[15839] \"207674_at\"                   \"206929_s_at\"                \n",
+       "[15841] \"207313_x_at\"                 \"207314_x_at\"                \n",
+       "[15843] \"209684_at\"                   \"207104_x_at\"                \n",
+       "[15845] \"209943_at\"                   \"207681_at\"                  \n",
+       "[15847] \"206881_s_at\"                 \"209182_s_at\"                \n",
+       "[15849] \"209183_s_at\"                 \"209179_s_at\"                \n",
+       "[15851] \"207872_s_at\"                 \"205621_at\"                  \n",
+       "[15853] \"207313_x_at\"                 \"207314_x_at\"                \n",
+       "[15855] \"207516_at\"                   \"207860_at\"                  \n",
+       "[15857] \"207602_at\"                   \"208113_x_at\"                \n",
+       "[15859] \"208113_x_at\"                 \"207364_at\"                  \n",
+       "[15861] \"207313_x_at\"                 \"207314_x_at\"                \n",
+       "[15863] \"208018_s_at\"                 \"210120_s_at\"                \n",
+       "[15865] \"208272_at\"                   \"207364_at\"                  \n",
+       "[15867] \"207313_x_at\"                 \"207314_x_at\"                \n",
+       "[15869] \"207364_at\"                   \"209179_s_at\"                \n",
+       "[15871] \"207860_at\"                   \"207313_x_at\"                \n",
+       "[15873] \"207314_x_at\"                 \"208122_x_at\"                \n",
+       "[15875] \"210413_x_at\"                 \"209720_s_at\"                \n",
+       "[15877] \"205887_x_at\"                 \"207697_x_at\"                \n",
+       "[15879] \"210146_x_at\"                 \"207208_at\"                  \n",
+       "[15881] \"207388_s_at\"                 \"210367_s_at\"                \n",
+       "[15883] \"207781_s_at\"                 \"207313_x_at\"                \n",
+       "[15885] \"208071_s_at\"                 \"209511_at\"                  \n",
+       "[15887] \"208594_x_at\"                 \"210225_x_at\"                \n",
+       "[15889] \"206881_s_at\"                 \"209719_x_at\"                \n",
+       "[15891] \"209720_s_at\"                 \"206856_at\"                  \n",
+       "[15893] \"208183_at\"                   \"210152_at\"                  \n",
+       "[15895] \"207551_s_at\"                 \"207860_at\"                  \n",
+       "[15897] \"209179_s_at\"                 \"206896_s_at\"                \n",
+       "[15899] \"209156_s_at\"                 \"206045_s_at\"                \n",
+       "[15901] \"205553_s_at\"                 \"206605_at\"                  \n",
+       "[15903] \"206206_at\"                   \"205798_at\"                  \n",
+       "[15905] \"207313_x_at\"                 \"207314_x_at\"                \n",
+       "[15907] \"209652_s_at\"                 \"206163_at\"                  \n",
+       "[15909] \"205931_s_at\"                 \"206710_s_at\"                \n",
+       "[15911] \"209990_s_at\"                 \"209991_x_at\"                \n",
+       "[15913] \"207205_at\"                   \"210021_s_at\"                \n",
+       "[15915] \"206199_at\"                   \"209299_x_at\"                \n",
+       "[15917] \"206063_x_at\"                 \"206064_s_at\"                \n",
+       "[15919] \"205478_at\"                   \"210476_s_at\"                \n",
+       "[15921] \"206346_at\"                   \"210331_at\"                  \n",
+       "[15923] \"208249_s_at\"                 \"208468_at\"                  \n",
+       "[15925] \"207341_at\"                   \"206224_at\"                  \n",
+       "[15927] \"206994_at\"                   \"206871_at\"                  \n",
+       "[15929] \"210426_x_at\"                 \"210479_s_at\"                \n",
+       "[15931] \"207857_at\"                   \"207104_x_at\"                \n",
+       "[15933] \"207021_at\"                   \"210146_x_at\"                \n",
+       "[15935] \"207697_x_at\"                 \"207313_x_at\"                \n",
+       "[15937] \"207314_x_at\"                 \"208594_x_at\"                \n",
+       "[15939] \"209443_at\"                   \"207851_s_at\"                \n",
+       "[15941] \"206856_at\"                   \"205881_at\"                  \n",
+       "[15943] \"208424_s_at\"                 \"208968_s_at\"                \n",
+       "[15945] \"208071_s_at\"                 \"209314_s_at\"                \n",
+       "[15947] \"209315_at\"                   \"209316_s_at\"                \n",
+       "[15949] \"207872_s_at\"                 \"207509_s_at\"                \n",
+       "[15951] \"210152_at\"                   \"209179_s_at\"                \n",
+       "[15953] \"209273_s_at\"                 \"208594_x_at\"                \n",
+       "[15955] \"210225_x_at\"                 \"208594_x_at\"                \n",
+       "[15957] \"210225_x_at\"                 \"208594_x_at\"                \n",
+       "[15959] \"210225_x_at\"                 \"208594_x_at\"                \n",
+       "[15961] \"210225_x_at\"                 \"210349_at\"                  \n",
+       "[15963] \"209354_at\"                   \"207313_x_at\"                \n",
+       "[15965] \"207314_x_at\"                 \"207674_at\"                  \n",
+       "[15967] \"207860_at\"                   \"206080_at\"                  \n",
+       "[15969] \"207172_s_at\"                 \"207173_x_at\"                \n",
+       "[15971] \"207189_s_at\"                 \"207190_at\"                  \n",
+       "[15973] \"207313_x_at\"                 \"207314_x_at\"                \n",
+       "[15975] \"207843_x_at\"                 \"209366_x_at\"                \n",
+       "[15977] \"209303_at\"                   \"206559_x_at\"                \n",
+       "[15979] \"209043_at\"                   \"210248_at\"                  \n",
+       "[15981] \"208312_s_at\"                 \"208312_s_at\"                \n",
+       "[15983] \"210091_s_at\"                 \"208430_s_at\"                \n",
+       "[15985] \"205741_s_at\"                 \"206219_s_at\"                \n",
+       "[15987] \"208499_s_at\"                 \"208071_s_at\"                \n",
+       "[15989] \"207860_at\"                   \"207493_x_at\"                \n",
+       "[15991] \"206881_s_at\"                 \"208670_s_at\"                \n",
+       "[15993] \"208669_s_at\"                 \"207674_at\"                  \n",
+       "[15995] \"206424_at\"                   \"205825_at\"                  \n",
+       "[15997] \"207313_x_at\"                 \"207314_x_at\"                \n",
+       "[15999] \"209179_s_at\"                 \"208019_at\"                  \n",
+       "[16001] \"209014_at\"                   \"206467_x_at\"                \n",
+       "[16003] \"209657_s_at\"                 \"206850_at\"                  \n",
+       "[16005] \"207067_s_at\"                 \"207326_at\"                  \n",
+       "[16007] \"210401_at\"                   \"209418_s_at\"                \n",
+       "[16009] \"209419_at\"                   \"207404_s_at\"                \n",
+       "[16011] \"207860_at\"                   \"206706_at\"                  \n",
+       "[16013] \"209179_s_at\"                 \"205701_at\"                  \n",
+       "[16015] \"206463_s_at\"                 \"206067_s_at\"                \n",
+       "[16017] \"207810_at\"                   \"207858_s_at\"                \n",
+       "[16019] \"210451_at\"                   \"208358_s_at\"                \n",
+       "[16021] \"209093_s_at\"                 \"209093_s_at\"                \n",
+       "[16023] \"208088_s_at\"                 \"210307_s_at\"                \n",
+       "[16025] \"206910_x_at\"                 \"209147_s_at\"                \n",
+       "[16027] \"207722_s_at\"                 \"209179_s_at\"                \n",
+       "[16029] \"207860_at\"                   \"206299_at\"                  \n",
+       "[16031] \"206336_at\"                   \"208456_s_at\"                \n",
+       "[16033] \"207719_x_at\"                 \"207719_x_at\"                \n",
+       "[16035] \"207522_s_at\"                 \"207521_s_at\"                \n",
+       "[16037] \"206267_s_at\"                 \"207860_at\"                  \n",
+       "[16039] \"209179_s_at\"                 \"208323_s_at\"                \n",
+       "[16041] \"207313_x_at\"                 \"207314_x_at\"                \n",
+       "[16043] \"209436_at\"                   \"209437_s_at\"                \n",
+       "[16045] \"209864_at\"                   \"206536_s_at\"                \n",
+       "[16047] \"205727_at\"                   \"206572_x_at\"                \n",
+       "[16049] \"206039_at\"                   \"206320_s_at\"                \n",
+       "[16051] \"207306_at\"                   \"209808_x_at\"                \n",
+       "[16053] \"210350_x_at\"                 \"208415_x_at\"                \n",
+       "[16055] \"205512_s_at\"                 \"208368_s_at\"                \n",
+       "[16057] \"206009_at\"                   \"206220_s_at\"                \n",
+       "[16059] \"206221_at\"                   \"207878_at\"                  \n",
+       "[16061] \"208467_at\"                   \"206966_s_at\"                \n",
+       "[16063] \"206965_at\"                   \"206695_x_at\"                \n",
+       "[16065] \"208545_x_at\"                 \"206866_at\"                  \n",
+       "[16067] \"205899_at\"                   \"209450_at\"                  \n",
+       "[16069] \"208731_at\"                   \"208730_x_at\"                \n",
+       "[16071] \"208732_at\"                   \"208734_x_at\"                \n",
+       "[16073] \"208733_at\"                   \"208101_s_at\"                \n",
+       "[16075] \"206632_s_at\"                 \"206632_s_at\"                \n",
+       "[16077] \"208033_s_at\"                 \"208141_s_at\"                \n",
+       "[16079] \"209679_s_at\"                 \"206273_at\"                  \n",
+       "[16081] \"205637_s_at\"                 \"210027_s_at\"                \n",
+       "[16083] \"205860_x_at\"                 \"207677_s_at\"                \n",
+       "[16085] \"205639_at\"                   \"207174_at\"                  \n",
+       "[16087] \"210229_s_at\"                 \"209363_s_at\"                \n",
+       "[16089] \"209362_at\"                   \"209179_s_at\"                \n",
+       "[16091] \"207057_at\"                   \"207696_at\"                  \n",
+       "[16093] \"208996_s_at\"                 \"209953_s_at\"                \n",
+       "[16095] \"210146_x_at\"                 \"207697_x_at\"                \n",
+       "[16097] \"209410_s_at\"                 \"209409_at\"                  \n",
+       "[16099] \"205941_s_at\"                 \"209088_s_at\"                \n",
+       "[16101] \"207253_s_at\"                 \"209708_at\"                  \n",
+       "[16103] \"208594_x_at\"                 \"207509_s_at\"                \n",
+       "[16105] \"207215_at\"                   \"208735_s_at\"                \n",
+       "[16107] \"207215_at\"                   \"207674_at\"                  \n",
+       "[16109] \"207666_x_at\"                 \"205670_at\"                  \n",
+       "[16111] \"210225_x_at\"                 \"210225_x_at\"                \n",
+       "[16113] \"210225_x_at\"                 \"210225_x_at\"                \n",
+       "[16115] \"208142_at\"                   \"208143_s_at\"                \n",
+       "[16117] \"208071_s_at\"                 \"206626_x_at\"                \n",
+       "[16119] \"208586_s_at\"                 \"210394_x_at\"                \n",
+       "[16121] \"210152_at\"                   \"206901_at\"                  \n",
+       "[16123] \"209144_s_at\"                 \"207625_s_at\"                \n",
+       "[16125] \"209145_s_at\"                 \"206111_at\"                  \n",
+       "[16127] \"207083_s_at\"                 \"207857_at\"                  \n",
+       "[16129] \"207498_s_at\"                 \"208172_s_at\"                \n",
+       "[16131] \"208123_at\"                   \"207621_s_at\"                \n",
+       "[16133] \"206321_at\"                   \"205926_at\"                  \n",
+       "[16135] \"205935_at\"                   \"206881_s_at\"                \n",
+       "[16137] \"207860_at\"                   \"207872_s_at\"                \n",
+       "[16139] \"206856_at\"                   \"208441_at\"                  \n",
+       "[16141] \"207104_x_at\"                 \"205673_s_at\"                \n",
+       "[16143] \"207498_s_at\"                 \"207498_s_at\"                \n",
+       "[16145] \"206630_at\"                   \"210313_at\"                  \n",
+       "[16147] \"207313_x_at\"                 \"207314_x_at\"                \n",
+       "[16149] \"207498_s_at\"                 \"208245_at\"                  \n",
+       "[16151] \"207498_s_at\"                 \"206233_at\"                  \n",
+       "[16153] \"206232_s_at\"                 \"208312_s_at\"                \n",
+       "[16155] \"207498_s_at\"                 \"208312_s_at\"                \n",
+       "[16157] \"207610_s_at\"                 \"206742_at\"                  \n",
+       "[16159] \"207856_s_at\"                 \"209120_at\"                  \n",
+       "[16161] \"209121_x_at\"                 \"209119_x_at\"                \n",
+       "[16163] \"210406_s_at\"                 \"210247_at\"                  \n",
+       "[16165] \"210315_at\"                   \"205718_at\"                  \n",
+       "[16167] \"208597_at\"                   \"206930_at\"                  \n",
+       "[16169] \"208474_at\"                   \"207215_at\"                  \n",
+       "[16171] \"207420_at\"                   \"205777_at\"                  \n",
+       "[16173] \"208393_s_at\"                 \"209349_at\"                  \n",
+       "[16175] \"208521_at\"                   \"207353_s_at\"                \n",
+       "[16177] \"207634_at\"                   \"206805_at\"                  \n",
+       "[16179] \"207498_s_at\"                 \"209747_at\"                  \n",
+       "[16181] \"207498_s_at\"                 \"207498_s_at\"                \n",
+       "[16183] \"209432_s_at\"                 \"207525_s_at\"                \n",
+       "[16185] \"210291_s_at\"                 \"210291_s_at\"                \n",
+       "[16187] \"210290_at\"                   \"210186_s_at\"                \n",
+       "[16189] \"208116_s_at\"                 \"207498_s_at\"                \n",
+       "[16191] \"207498_s_at\"                 \"208550_x_at\"                \n",
+       "[16193] \"208318_s_at\"                 \"208507_at\"                  \n",
+       "[16195] \"210452_x_at\"                 \"206514_s_at\"                \n",
+       "[16197] \"208503_s_at\"                 \"208890_s_at\"                \n",
+       "[16199] \"207908_at\"                   \"206815_at\"                  \n",
+       "[16201] \"206816_s_at\"                 \"208091_s_at\"                \n",
+       "[16203] \"206010_at\"                   \"206281_at\"                  \n",
+       "[16205] \"207839_s_at\"                 \"205957_at\"                  \n",
+       "[16207] \"206539_s_at\"                 \"207195_at\"                  \n",
+       "[16209] \"206223_at\"                   \"208627_s_at\"                \n",
+       "[16211] \"208766_s_at\"                 \"208765_s_at\"                \n",
+       "[16213] \"205957_at\"                   \"206216_at\"                  \n",
+       "[16215] \"207042_at\"                   \"207826_s_at\"                \n",
+       "[16217] \"208591_s_at\"                 \"210010_s_at\"                \n",
+       "[16219] \"207650_x_at\"                 \"208597_at\"                  \n",
+       "[16221] \"209919_x_at\"                 \"207131_x_at\"                \n",
+       "[16223] \"208284_x_at\"                 \"209958_s_at\"                \n",
+       "[16225] \"210250_x_at\"                 \"206564_at\"                  \n",
+       "[16227] \"206563_s_at\"                 \"210341_at\"                  \n",
+       "[16229] \"208193_at\"                   \"206276_at\"                  \n",
+       "[16231] \"205731_s_at\"                 \"205732_s_at\"                \n",
+       "[16233] \"207498_s_at\"                 \"210421_s_at\"                \n",
+       "[16235] \"210420_at\"                   \"206081_at\"                  \n",
+       "[16237] \"205725_at\"                   \"205599_at\"                  \n",
+       "[16239] \"207379_at\"                   \"206587_at\"                  \n",
+       "[16241] \"205688_at\"                   \"206617_s_at\"                \n",
+       "[16243] \"206089_at\"                   \"206913_at\"                  \n",
+       "[16245] \"208158_s_at\"                 \"209485_s_at\"                \n",
+       "[16247] \"209532_at\"                   \"209533_s_at\"                \n",
+       "[16249] \"207348_s_at\"                 \"206084_at\"                  \n",
+       "[16251] \"207409_at\"                   \"205532_s_at\"                \n",
+       "[16253] \"205533_s_at\"                 \"208000_at\"                  \n",
+       "[16255] \"205610_at\"                   \"208288_at\"                  \n",
+       "[16257] \"209891_at\"                   \"208481_at\"                  \n",
+       "[16259] \"205672_at\"                   \"208597_at\"                  \n",
+       "[16261] \"207458_at\"                   \"206611_at\"                  \n",
+       "[16263] \"206611_at\"                   \"205519_at\"                  \n",
+       "[16265] \"209560_s_at\"                 \"209440_at\"                  \n",
+       "[16267] \"208447_s_at\"                 \"206767_at\"                  \n",
+       "[16269] \"206382_s_at\"                 \"206552_s_at\"                \n",
+       "[16271] \"206811_at\"                   \"208155_x_at\"                \n",
+       "[16273] \"206640_x_at\"                 \"208235_x_at\"                \n",
+       "[16275] \"207086_x_at\"                 \"207739_s_at\"                \n",
+       "[16277] \"207663_x_at\"                 \"206897_at\"                  \n",
+       "[16279] \"205963_s_at\"                 \"205564_at\"                  \n",
+       "[16281] \"206835_at\"                   \"206786_at\"                  \n",
+       "[16283] \"206639_x_at\"                 \"207532_at\"                  \n",
+       "[16285] \"207531_at\"                   \"205515_at\"                  \n",
+       "[16287] \"205943_at\"                   \"208334_at\"                  \n",
+       "[16289] \"208905_at\"                   \"208454_s_at\"                \n",
+       "[16291] \"207444_at\"                   \"209045_at\"                  \n",
+       "[16293] \"208453_s_at\"                 \"205822_s_at\"                \n",
+       "[16295] \"207392_x_at\"                 \"209504_s_at\"                \n",
+       "[16297] \"207994_s_at\"                 \"207989_at\"                  \n",
+       "[16299] \"206836_at\"                   \"208377_s_at\"                \n",
+       "[16301] \"207209_at\"                   \"208393_s_at\"                \n",
+       "[16303] \"209349_at\"                   \"208394_x_at\"                \n",
+       "[16305] \"209787_s_at\"                 \"209786_at\"                  \n",
+       "[16307] \"207395_at\"                   \"206837_at\"                  \n",
+       "[16309] \"205576_at\"                   \"209547_s_at\"                \n",
+       "[16311] \"205900_at\"                   \"205857_at\"                  \n",
+       "[16313] \"206184_at\"                   \"208894_at\"                  \n",
+       "[16315] \"210271_at\"                   \"206016_at\"                  \n",
+       "[16317] \"206288_at\"                   \"210089_s_at\"                \n",
+       "[16319] \"209475_at\"                   \"206596_s_at\"                \n",
+       "[16321] \"206597_at\"                   \"207514_s_at\"                \n",
+       "[16323] \"205842_s_at\"                 \"205841_at\"                  \n",
+       "[16325] \"209534_x_at\"                 \"208325_s_at\"                \n",
+       "[16327] \"207045_at\"                   \"205488_at\"                  \n",
+       "[16329] \"210373_at\"                   \"206572_x_at\"                \n",
+       "[16331] \"206711_at\"                   \"208608_s_at\"                \n",
+       "[16333] \"205618_at\"                   \"206119_at\"                  \n",
+       "[16335] \"206408_at\"                   \"208463_at\"                  \n",
+       "[16337] \"208861_s_at\"                 \"208860_s_at\"                \n",
+       "[16339] \"208859_s_at\"                 \"207528_s_at\"                \n",
+       "[16341] \"209921_at\"                   \"207056_s_at\"                \n",
+       "[16343] \"208051_s_at\"                 \"209064_x_at\"                \n",
+       "[16345] \"209063_x_at\"                 \"210283_x_at\"                \n",
+       "[16347] \"209089_at\"                   \"206113_s_at\"                \n",
+       "[16349] \"209718_at\"                   \"208004_at\"                  \n",
+       "[16351] \"205933_at\"                   \"207178_s_at\"                \n",
+       "[16353] \"206577_at\"                   \"208839_s_at\"                \n",
+       "[16355] \"207483_s_at\"                 \"208838_at\"                  \n",
+       "[16357] \"209974_s_at\"                 \"210189_at\"                  \n",
+       "[16359] \"210342_s_at\"                 \"209449_at\"                  \n",
+       "[16361] \"205540_s_at\"                 \"206630_at\"                  \n",
+       "[16363] \"208986_at\"                   \"208907_s_at\"                \n",
+       "[16365] \"210324_at\"                   \"206925_at\"                  \n",
+       "[16367] \"206082_at\"                   \"208659_at\"                  \n",
+       "[16369] \"207329_at\"                   \"209404_s_at\"                \n",
+       "[16371] \"209826_at\"                   \"208469_s_at\"                \n",
+       "[16373] \"205905_s_at\"                 \"206247_at\"                  \n",
+       "[16375] \"209490_s_at\"                 \"207159_x_at\"                \n",
+       "[16377] \"207339_s_at\"                 \"210208_x_at\"                \n",
+       "[16379] \"207339_s_at\"                 \"208115_x_at\"                \n",
+       "[16381] \"210051_at\"                   \"205890_s_at\"                \n",
+       "[16383] \"206380_s_at\"                 \"207113_s_at\"                \n",
+       "[16385] \"205890_s_at\"                 \"208659_at\"                  \n",
+       "[16387] \"209148_at\"                   \"208659_at\"                  \n",
+       "[16389] \"207523_at\"                   \"206975_at\"                  \n",
+       "[16391] \"205890_s_at\"                 \"208685_x_at\"                \n",
+       "[16393] \"208686_s_at\"                 \"207933_at\"                  \n",
+       "[16395] \"208508_s_at\"                 \"207372_s_at\"                \n",
+       "[16397] \"209277_at\"                   \"209278_s_at\"                \n",
+       "[16399] \"209490_s_at\"                 \"209826_at\"                  \n",
+       "[16401] \"208469_s_at\"                 \"205989_s_at\"                \n",
+       "[16403] \"209938_at\"                   \"207114_at\"                  \n",
+       "[16405] \"208287_at\"                   \"210208_x_at\"                \n",
+       "[16407] \"207484_s_at\"                 \"208749_x_at\"                \n",
+       "[16409] \"210142_x_at\"                 \"208748_s_at\"                \n",
+       "[16411] \"210069_at\"                   \"210070_s_at\"                \n",
+       "[16413] \"205629_s_at\"                 \"205630_at\"                  \n",
+       "[16415] \"206464_at\"                   \"207523_at\"                  \n",
+       "[16417] \"208573_s_at\"                 \"207054_at\"                  \n",
+       "[16419] \"210081_at\"                   \"206432_at\"                  \n",
+       "[16421] \"205671_s_at\"                 \"210378_s_at\"                \n",
+       "[16423] \"205890_s_at\"                 \"207073_at\"                  \n",
+       "[16425] \"207612_at\"                   \"208428_at\"                  \n",
+       "[16427] \"209148_at\"                   \"208977_x_at\"                \n",
+       "[16429] \"208926_at\"                   \"210177_at\"                  \n",
+       "[16431] \"208428_at\"                   \"210410_s_at\"                \n",
+       "[16433] \"206975_at\"                   \"208739_x_at\"                \n",
+       "[16435] \"207405_s_at\"                 \"205989_s_at\"                \n",
+       "[16437] \"206702_at\"                   \"210069_at\"                  \n",
+       "[16439] \"210070_s_at\"                 \"206313_at\"                  \n",
+       "[16441] \"210081_at\"                   \"208894_at\"                  \n",
+       "[16443] \"207457_s_at\"                 \"207457_s_at\"                \n",
+       "[16445] \"205882_x_at\"                 \"210123_s_at\"                \n",
+       "[16447] \"208907_s_at\"                 \"207457_s_at\"                \n",
+       "[16449] \"207457_s_at\"                 \"208685_x_at\"                \n",
+       "[16451] \"208686_s_at\"                 \"210159_s_at\"                \n",
+       "[16453] \"208170_s_at\"                 \"208748_s_at\"                \n",
+       "[16455] \"208749_x_at\"                 \"210142_x_at\"                \n",
+       "[16457] \"208926_at\"                   \"206313_at\"                  \n",
+       "[16459] \"209925_at\"                   \"209826_at\"                  \n",
+       "[16461] \"208469_s_at\"                 \"207457_s_at\"                \n",
+       "[16463] \"210205_at\"                   \"206855_s_at\"                \n",
+       "[16465] \"210410_s_at\"                 \"208132_x_at\"                \n",
+       "[16467] \"208581_x_at\"                 \"208603_s_at\"                \n",
+       "[16469] \"208371_s_at\"                 \"206093_x_at\"                \n",
+       "[16471] \"208609_s_at\"                 \"209026_x_at\"                \n",
+       "[16473] \"207114_at\"                   \"205489_at\"                  \n",
+       "[16475] \"207113_s_at\"                 \"206829_x_at\"                \n",
+       "[16477] \"207114_at\"                   \"208659_at\"                  \n",
+       "[16479] \"209150_s_at\"                 \"209149_s_at\"                \n",
+       "[16481] \"209150_s_at\"                 \"210177_at\"                  \n",
+       "[16483] \"208829_at\"                   \"210294_at\"                  \n",
+       "[16485] \"207519_at\"                   \"206059_at\"                  \n",
+       "[16487] \"207457_s_at\"                 \"208739_x_at\"                \n",
+       "[16489] \"209219_at\"                   \"208573_s_at\"                \n",
+       "[16491] \"206420_at\"                   \"206514_s_at\"                \n",
+       "[16493] \"206515_at\"                   \"205682_x_at\"                \n",
+       "[16495] \"209110_s_at\"                 \"209149_s_at\"                \n",
+       "[16497] \"209150_s_at\"                 \"206345_s_at\"                \n",
+       "[16499] \"206344_at\"                   \"206093_x_at\"                \n",
+       "[16501] \"208609_s_at\"                 \"208659_at\"                  \n",
+       "[16503] \"208779_x_at\"                 \"207169_x_at\"                \n",
+       "[16505] \"208779_x_at\"                 \"207169_x_at\"                \n",
+       "[16507] \"210040_at\"                   \"208891_at\"                  \n",
+       "[16509] \"208893_s_at\"                 \"208892_s_at\"                \n",
+       "[16511] \"205905_s_at\"                 \"206247_at\"                  \n",
+       "[16513] \"209960_at\"                   \"209961_s_at\"                \n",
+       "[16515] \"205889_s_at\"                 \"205888_s_at\"                \n",
+       "[16517] \"206313_at\"                   \"209026_x_at\"                \n",
+       "[16519] \"209698_at\"                   \"208508_s_at\"                \n",
+       "[16521] \"208287_at\"                   \"205989_s_at\"                \n",
+       "[16523] \"208686_s_at\"                 \"206127_at\"                  \n",
+       "[16525] \"209901_x_at\"                 \"206183_s_at\"                \n",
+       "[16527] \"209901_x_at\"                 \"205597_at\"                  \n",
+       "[16529] \"209140_x_at\"                 \"208729_x_at\"                \n",
+       "[16531] \"208812_x_at\"                 \"206008_at\"                  \n",
+       "[16533] \"209110_s_at\"                 \"208907_s_at\"                \n",
+       "[16535] \"208371_s_at\"                 \"210159_s_at\"                \n",
+       "[16537] \"208170_s_at\"                 \"209111_at\"                  \n",
+       "[16539] \"209275_s_at\"                 \"209698_at\"                  \n",
+       "[16541] \"209885_at\"                   \"208266_at\"                  \n",
+       "[16543] \"208886_at\"                   \"209219_at\"                  \n",
+       "[16545] \"208588_at\"                   \"208371_s_at\"                \n",
+       "[16547] \"209973_at\"                   \"209814_at\"                  \n",
+       "[16549] \"210205_at\"                   \"206796_at\"                  \n",
+       "[16551] \"206193_s_at\"                 \"208132_x_at\"                \n",
+       "[16553] \"205905_s_at\"                 \"206247_at\"                  \n",
+       "[16555] \"205905_s_at\"                 \"205904_at\"                  \n",
+       "[16557] \"206839_at\"                   \"207113_s_at\"                \n",
+       "[16559] \"208812_x_at\"                 \"208287_at\"                  \n",
+       "[16561] \"209026_x_at\"                 \"209111_at\"                  \n",
+       "[16563] \"209196_at\"                   \"208286_x_at\"                \n",
+       "[16565] \"210265_x_at\"                 \"208451_s_at\"                \n",
+       "[16567] \"205890_s_at\"                 \"206183_s_at\"                \n",
+       "[16569] \"205671_s_at\"                 \"209826_at\"                  \n",
+       "[16571] \"208469_s_at\"                 \"206193_s_at\"                \n",
+       "[16573] \"206192_at\"                   \"209111_at\"                  \n",
+       "[16575] \"209040_s_at\"                 \"208428_at\"                  \n",
+       "[16577] \"208894_at\"                   \"207523_at\"                  \n",
+       "[16579] \"209040_s_at\"                 \"208132_x_at\"                \n",
+       "[16581] \"206193_s_at\"                 \"206192_at\"                  \n",
+       "[16583] \"210177_at\"                   \"210128_s_at\"                \n",
+       "[16585] \"207484_s_at\"                 \"208926_at\"                  \n",
+       "[16587] \"205682_x_at\"                 \"209728_at\"                  \n",
+       "[16589] \"209148_at\"                   \"210410_s_at\"                \n",
+       "[16591] \"209449_at\"                   \"206337_at\"                  \n",
+       "[16593] \"209973_at\"                   \"206414_s_at\"                \n",
+       "[16595] \"206793_at\"                   \"210424_s_at\"                \n",
+       "[16597] \"209312_x_at\"                 \"205897_at\"                  \n",
+       "[16599] \"206398_s_at\"                 \"205566_at\"                  \n",
+       "[16601] \"208028_s_at\"                 \"209973_at\"                  \n",
+       "[16603] \"209698_at\"                   \"210410_s_at\"                \n",
+       "[16605] \"205890_s_at\"                 \"208286_x_at\"                \n",
+       "[16607] \"205905_s_at\"                 \"205904_at\"                  \n",
+       "[16609] \"208749_x_at\"                 \"210142_x_at\"                \n",
+       "[16611] \"208748_s_at\"                 \"208729_x_at\"                \n",
+       "[16613] \"209140_x_at\"                 \"210117_at\"                  \n",
+       "[16615] \"208739_x_at\"                 \"208508_s_at\"                \n",
+       "[16617] \"209196_at\"                   \"210464_at\"                  \n",
+       "[16619] \"206899_at\"                   \"206154_at\"                  \n",
+       "[16621] \"207339_s_at\"                 \"205905_s_at\"                \n",
+       "[16623] \"206247_at\"                   \"207113_s_at\"                \n",
+       "[16625] \"205989_s_at\"                 \"208573_s_at\"                \n",
+       "[16627] \"206975_at\"                   \"208629_s_at\"                \n",
+       "[16629] \"208631_s_at\"                 \"208630_at\"                  \n",
+       "[16631] \"208508_s_at\"                 \"210410_s_at\"                \n",
+       "[16633] \"208609_s_at\"                 \"208451_s_at\"                \n",
+       "[16635] \"208451_s_at\"                 \"206952_at\"                  \n",
+       "[16637] \"205890_s_at\"                 \"206773_at\"                  \n",
+       "[16639] \"210159_s_at\"                 \"208170_s_at\"                \n",
+       "[16641] \"205671_s_at\"                 \"208829_at\"                  \n",
+       "[16643] \"210294_at\"                   \"208573_s_at\"                \n",
+       "[16645] \"206004_at\"                   \"210177_at\"                  \n",
+       "[16647] \"208451_s_at\"                 \"210189_at\"                  \n",
+       "[16649] \"208749_x_at\"                 \"210142_x_at\"                \n",
+       "[16651] \"208821_at\"                   \"208926_at\"                  \n",
+       "[16653] \"206938_at\"                   \"208347_at\"                  \n",
+       "[16655] \"205890_s_at\"                 \"207339_s_at\"                \n",
+       "[16657] \"207303_at\"                   \"209881_s_at\"                \n",
+       "[16659] \"209695_at\"                   \"206574_s_at\"                \n",
+       "[16661] \"209111_at\"                   \"209449_at\"                  \n",
+       "[16663] \"209826_at\"                   \"208469_s_at\"                \n",
+       "[16665] \"210189_at\"                   \"208286_x_at\"                \n",
+       "[16667] \"207296_at\"                   \"209026_x_at\"                \n",
+       "[16669] \"210208_x_at\"                 \"205526_s_at\"                \n",
+       "[16671] \"206528_at\"                   \"209607_x_at\"                \n",
+       "[16673] \"209040_s_at\"                 \"210410_s_at\"                \n",
+       "[16675] \"207421_at\"                   \"206611_at\"                  \n",
+       "[16677] \"206057_x_at\"                 \"206056_x_at\"                \n",
+       "[16679] \"210396_s_at\"                 \"208118_x_at\"                \n",
+       "[16681] \"208118_x_at\"                 \"206955_at\"                  \n",
+       "[16683] \"206955_at\"                   \"208779_x_at\"                \n",
+       "[16685] \"207169_x_at\"                 \"208170_s_at\"                \n",
+       "[16687] \"207484_s_at\"                 \"207457_s_at\"                \n",
+       "[16689] \"207457_s_at\"                 \"208659_at\"                  \n",
+       "[16691] \"207356_at\"                   \"207356_at\"                  \n",
+       "[16693] \"207356_at\"                   \"205597_at\"                  \n",
+       "[16695] \"207271_x_at\"                 \"207271_x_at\"                \n",
+       "[16697] \"208987_s_at\"                 \"208988_at\"                  \n",
+       "[16699] \"208989_s_at\"                 \"209433_s_at\"                \n",
+       "[16701] \"210081_at\"                   \"208102_s_at\"                \n",
+       "[16703] \"206352_s_at\"                 \"206351_s_at\"                \n",
+       "[16705] \"208428_at\"                   \"209929_s_at\"                \n",
+       "[16707] \"208739_x_at\"                 \"209823_x_at\"                \n",
+       "[16709] \"205862_at\"                   \"209040_s_at\"                \n",
+       "[16711] \"205597_at\"                   \"208946_s_at\"                \n",
+       "[16713] \"208945_s_at\"                 \"206098_at\"                  \n",
+       "[16715] \"208894_at\"                   \"208812_x_at\"                \n",
+       "[16717] \"205682_x_at\"                 \"207547_s_at\"                \n",
+       "[16719] \"209074_s_at\"                 \"207664_at\"                  \n",
+       "[16721] \"209490_s_at\"                 \"209826_at\"                  \n",
+       "[16723] \"208469_s_at\"                 \"206080_at\"                  \n",
+       "[16725] \"205479_s_at\"                 \"207597_at\"                  \n",
+       "[16727] \"210198_s_at\"                 \"206029_at\"                  \n",
+       "[16729] \"205744_at\"                   \"207685_at\"                  \n",
+       "[16731] \"207750_at\"                   \"206778_at\"                  \n",
+       "[16733] \"206777_s_at\"                 \"206679_at\"                  \n",
+       "[16735] \"206658_at\"                   \"206071_s_at\"                \n",
+       "[16737] \"206070_s_at\"                 \"206188_at\"                  \n",
+       "[16739] \"206658_at\"                   \"210470_x_at\"                \n",
+       "[16741] \"208698_s_at\"                 \"209406_at\"                  \n",
+       "[16743] \"209635_at\"                   \"205565_s_at\"                \n",
+       "[16745] \"208932_at\"                   \"208545_x_at\"                \n",
+       "[16747] \"208382_s_at\"                 \"208386_x_at\"                \n",
+       "[16749] \"208835_s_at\"                 \"210227_at\"                  \n",
+       "[16751] \"206091_at\"                   \"208666_s_at\"                \n",
+       "[16753] \"207040_s_at\"                 \"208667_s_at\"                \n",
+       "[16755] \"206488_s_at\"                 \"209555_s_at\"                \n",
+       "[16757] \"206133_at\"                   \"206913_at\"                  \n",
+       "[16759] \"206448_at\"                   \"207842_s_at\"                \n",
+       "[16761] \"209942_x_at\"                 \"208573_s_at\"                \n",
+       "[16763] \"210467_x_at\"                 \"209194_at\"                  \n",
+       "[16765] \"208907_s_at\"                 \"209279_s_at\"                \n",
+       "[16767] \"208508_s_at\"                 \"207119_at\"                  \n",
+       "[16769] \"205905_s_at\"                 \"206247_at\"                  \n",
+       "[16771] \"209942_x_at\"                 \"207769_s_at\"                \n",
+       "[16773] \"208609_s_at\"                 \"207440_at\"                  \n",
+       "[16775] \"207439_s_at\"                 \"209326_at\"                  \n",
+       "[16777] \"209728_at\"                   \"206842_at\"                  \n",
+       "[16779] \"209836_x_at\"                 \"209836_x_at\"                \n",
+       "[16781] \"209836_x_at\"                 \"208398_s_at\"                \n",
+       "[16783] \"209607_x_at\"                 \"207064_s_at\"                \n",
+       "[16785] \"208593_x_at\"                 \"208593_x_at\"                \n",
+       "[16787] \"205766_at\"                   \"208062_s_at\"                \n",
+       "[16789] \"206879_s_at\"                 \"207484_s_at\"                \n",
+       "[16791] \"208659_at\"                   \"206269_at\"                  \n",
+       "[16793] \"210081_at\"                   \"207249_s_at\"                \n",
+       "[16795] \"207113_s_at\"                 \"209607_x_at\"                \n",
+       "[16797] \"209607_x_at\"                 \"207089_at\"                  \n",
+       "[16799] \"208780_x_at\"                 \"206649_s_at\"                \n",
+       "[16801] \"209217_s_at\"                 \"209148_at\"                  \n",
+       "[16803] \"209216_at\"                   \"209217_s_at\"                \n",
+       "[16805] \"209829_at\"                   \"206707_x_at\"                \n",
+       "[16807] \"206093_x_at\"                 \"208609_s_at\"                \n",
+       "[16809] \"209026_x_at\"                 \"207928_s_at\"                \n",
+       "[16811] \"209616_s_at\"                 \"205671_s_at\"                \n",
+       "[16813] \"210208_x_at\"                 \"209841_s_at\"                \n",
+       "[16815] \"209840_s_at\"                 \"209682_at\"                  \n",
+       "[16817] \"208348_s_at\"                 \"209641_s_at\"                \n",
+       "[16819] \"208161_s_at\"                 \"208739_x_at\"                \n",
+       "[16821] \"210301_at\"                   \"207362_at\"                  \n",
+       "[16823] \"205826_at\"                   \"207215_at\"                  \n",
+       "[16825] \"208451_s_at\"                 \"208451_s_at\"                \n",
+       "[16827] \"205561_at\"                   \"210410_s_at\"                \n",
+       "[16829] \"210260_s_at\"                 \"208296_x_at\"                \n",
+       "[16831] \"206101_at\"                   \"207938_at\"                  \n",
+       "[16833] \"206751_s_at\"                 \"210456_at\"                  \n",
+       "[16835] \"206193_s_at\"                 \"206192_at\"                  \n",
+       "[16837] \"207114_at\"                   \"205908_s_at\"                \n",
+       "[16839] \"205907_s_at\"                 \"207966_s_at\"                \n",
+       "[16841] \"206248_at\"                   \"209901_x_at\"                \n",
+       "[16843] \"209058_at\"                   \"209059_s_at\"                \n",
+       "[16845] \"209143_s_at\"                 \"205631_at\"                  \n",
+       "[16847] \"208685_x_at\"                 \"209823_x_at\"                \n",
+       "[16849] \"207240_s_at\"                 \"209826_at\"                  \n",
+       "[16851] \"208469_s_at\"                 \"205706_s_at\"                \n",
+       "[16853] \"205705_at\"                   \"210410_s_at\"                \n",
+       "[16855] \"205989_s_at\"                 \"206474_at\"                  \n",
+       "[16857] \"205890_s_at\"                 \"209238_at\"                  \n",
+       "[16859] \"209110_s_at\"                 \"208221_s_at\"                \n",
+       "[16861] \"205714_s_at\"                 \"206876_at\"                  \n",
+       "[16863] \"209490_s_at\"                 \"209826_at\"                  \n",
+       "[16865] \"208469_s_at\"                 \"208132_x_at\"                \n",
+       "[16867] \"205890_s_at\"                 \"209219_at\"                  \n",
+       "[16869] \"207339_s_at\"                 \"209890_at\"                  \n",
+       "[16871] \"206082_at\"                   \"207906_at\"                  \n",
+       "[16873] \"208749_x_at\"                 \"210142_x_at\"                \n",
+       "[16875] \"206313_at\"                   \"209140_x_at\"                \n",
+       "[16877] \"208812_x_at\"                 \"208556_at\"                  \n",
+       "[16879] \"210205_at\"                   \"209111_at\"                  \n",
+       "[16881] \"209196_at\"                   \"209973_at\"                  \n",
+       "[16883] \"207652_s_at\"                 \"208829_at\"                  \n",
+       "[16885] \"210294_at\"                   \"209449_at\"                  \n",
+       "[16887] \"205597_at\"                   \"208565_at\"                  \n",
+       "[16889] \"210177_at\"                   \"208926_at\"                  \n",
+       "[16891] \"209140_x_at\"                 \"208812_x_at\"                \n",
+       "[16893] \"208894_at\"                   \"209449_at\"                  \n",
+       "[16895] \"208659_at\"                   \"207457_s_at\"                \n",
+       "[16897] \"207457_s_at\"                 \"210159_s_at\"                \n",
+       "[16899] \"208170_s_at\"                 \"205682_x_at\"                \n",
+       "[16901] \"210019_at\"                   \"210020_x_at\"                \n",
+       "[16903] \"207068_at\"                   \"210189_at\"                  \n",
+       "[16905] \"205682_x_at\"                 \"208286_x_at\"                \n",
+       "[16907] \"210265_x_at\"                 \"206093_x_at\"                \n",
+       "[16909] \"208609_s_at\"                 \"206975_at\"                  \n",
+       "[16911] \"206643_at\"                   \"209040_s_at\"                \n",
+       "[16913] \"209698_at\"                   \"208926_at\"                  \n",
+       "[16915] \"208287_at\"                   \"208812_x_at\"                \n",
+       "[16917] \"205591_at\"                   \"208739_x_at\"                \n",
+       "[16919] \"208659_at\"                   \"208371_s_at\"                \n",
+       "[16921] \"208428_at\"                   \"205682_x_at\"                \n",
+       "[16923] \"208451_s_at\"                 \"210177_at\"                  \n",
+       "[16925] \"209901_x_at\"                 \"205890_s_at\"                \n",
+       "[16927] \"206678_at\"                   \"208524_at\"                  \n",
+       "[16929] \"207418_s_at\"                 \"208907_s_at\"                \n",
+       "[16931] \"207114_at\"                   \"205890_s_at\"                \n",
+       "[16933] \"208749_x_at\"                 \"210142_x_at\"                \n",
+       "[16935] \"208748_s_at\"                 \"209582_s_at\"                \n",
+       "[16937] \"209583_s_at\"                 \"208829_at\"                  \n",
+       "[16939] \"210294_at\"                   \"209723_at\"                  \n",
+       "[16941] \"209722_s_at\"                 \"210208_x_at\"                \n",
+       "[16943] \"209728_at\"                   \"206504_at\"                  \n",
+       "[16945] \"206975_at\"                   \"209826_at\"                  \n",
+       "[16947] \"208469_s_at\"                 \"207560_at\"                  \n",
+       "[16949] \"206349_at\"                   \"210410_s_at\"                \n",
+       "[16951] \"205628_at\"                   \"210159_s_at\"                \n",
+       "[16953] \"208170_s_at\"                 \"207228_at\"                  \n",
+       "[16955] \"210159_s_at\"                 \"208170_s_at\"                \n",
+       "[16957] \"209984_at\"                   \"208508_s_at\"                \n",
+       "[16959] \"210157_at\"                   \"208286_x_at\"                \n",
+       "[16961] \"209826_at\"                   \"208469_s_at\"                \n",
+       "[16963] \"208267_at\"                   \"207920_x_at\"                \n",
+       "[16965] \"207247_s_at\"                 \"210205_at\"                  \n",
+       "[16967] \"206827_s_at\"                 \"210227_at\"                  \n",
+       "[16969] \"205869_at\"                   \"205791_x_at\"                \n",
+       "[16971] \"209973_at\"                   \"205989_s_at\"                \n",
+       "[16973] \"206313_at\"                   \"208685_x_at\"                \n",
+       "[16975] \"208686_s_at\"                 \"210081_at\"                  \n",
+       "[16977] \"206175_x_at\"                 \"206522_at\"                  \n",
+       "[16979] \"206626_x_at\"                 \"206627_s_at\"                \n",
+       "[16981] \"210394_x_at\"                 \"209901_x_at\"                \n",
+       "[16983] \"206313_at\"                   \"209312_x_at\"                \n",
+       "[16985] \"208306_x_at\"                 \"208894_at\"                  \n",
+       "[16987] \"206077_at\"                   \"208384_s_at\"                \n",
+       "[16989] \"209733_at\"                   \"209973_at\"                  \n",
+       "[16991] \"209490_s_at\"                 \"209874_x_at\"                \n",
+       "[16993] \"206818_s_at\"                 \"208879_x_at\"                \n",
+       "[16995] \"208880_s_at\"                 \"209826_at\"                  \n",
+       "[16997] \"208469_s_at\"                 \"206975_at\"                  \n",
+       "[16999] \"209110_s_at\"                 \"207232_s_at\"                \n",
+       "[17001] \"207231_at\"                   \"207040_s_at\"                \n",
+       "[17003] \"206193_s_at\"                 \"206192_at\"                  \n",
+       "[17005] \"207457_s_at\"                 \"207457_s_at\"                \n",
+       "[17007] \"209680_s_at\"                 \"209490_s_at\"                \n",
+       "[17009] \"209826_at\"                   \"208469_s_at\"                \n",
+       "[17011] \"208132_x_at\"                 \"205750_at\"                  \n",
+       "[17013] \"208428_at\"                   \"208779_x_at\"                \n",
+       "[17015] \"207169_x_at\"                 \"206326_at\"                  \n",
+       "[17017] \"206870_at\"                   \"209372_x_at\"                \n",
+       "[17019] \"208812_x_at\"                 \"206265_s_at\"                \n",
+       "[17021] \"206264_at\"                   \"208242_at\"                  \n",
+       "[17023] \"208428_at\"                   \"207114_at\"                  \n",
+       "[17025] \"205981_s_at\"                 \"208451_s_at\"                \n",
+       "[17027] \"208451_s_at\"                 \"208659_at\"                  \n",
+       "[17029] \"209140_x_at\"                 \"208729_x_at\"                \n",
+       "[17031] \"208812_x_at\"                 \"209026_x_at\"                \n",
+       "[17033] \"209219_at\"                   \"210460_s_at\"                \n",
+       "[17035] \"209453_at\"                   \"206225_at\"                  \n",
+       "[17037] \"205799_s_at\"                 \"208739_x_at\"                \n",
+       "[17039] \"209219_at\"                   \"208508_s_at\"                \n",
+       "[17041] \"208240_s_at\"                 \"208287_at\"                  \n",
+       "[17043] \"210081_at\"                   \"209040_s_at\"                \n",
+       "[17045] \"208451_s_at\"                 \"210177_at\"                  \n",
+       "[17047] \"205856_at\"                   \"209823_x_at\"                \n",
+       "[17049] \"205671_s_at\"                 \"206461_x_at\"                \n",
+       "[17051] \"207176_s_at\"                 \"208812_x_at\"                \n",
+       "[17053] \"205905_s_at\"                 \"205904_at\"                  \n",
+       "[17055] \"207256_at\"                   \"205555_s_at\"                \n",
+       "[17057] \"210319_x_at\"                 \"206691_s_at\"                \n",
+       "[17059] \"205989_s_at\"                 \"206334_at\"                  \n",
+       "[17061] \"207913_at\"                   \"208749_x_at\"                \n",
+       "[17063] \"210142_x_at\"                 \"208748_s_at\"                \n",
+       "[17065] \"208925_at\"                   \"205905_s_at\"                \n",
+       "[17067] \"206247_at\"                   \"205545_x_at\"                \n",
+       "[17069] \"206923_at\"                   \"207339_s_at\"                \n",
+       "[17071] \"208287_at\"                   \"207457_s_at\"                \n",
+       "[17073] \"207457_s_at\"                 \"210298_x_at\"                \n",
+       "[17075] \"210299_s_at\"                 \"205597_at\"                  \n",
+       "[17077] \"209026_x_at\"                 \"209040_s_at\"                \n",
+       "[17079] \"208573_s_at\"                 \"209312_x_at\"                \n",
+       "[17081] \"208785_s_at\"                 \"209111_at\"                  \n",
+       "[17083] \"205597_at\"                   \"206914_at\"                  \n",
+       "[17085] \"208739_x_at\"                 \"208685_x_at\"                \n",
+       "[17087] \"208686_s_at\"                 \"208132_x_at\"                \n",
+       "[17089] \"209002_s_at\"                 \"205905_s_at\"                \n",
+       "[17091] \"205904_at\"                   \"208687_x_at\"                \n",
+       "[17093] \"210338_s_at\"                 \"206093_x_at\"                \n",
+       "[17095] \"208609_s_at\"                 \"208659_at\"                  \n",
+       "[17097] \"208907_s_at\"                 \"208659_at\"                  \n",
+       "[17099] \"208371_s_at\"                 \"205992_s_at\"                \n",
+       "[17101] \"209457_at\"                   \"208286_x_at\"                \n",
+       "[17103] \"210265_x_at\"                 \"207113_s_at\"                \n",
+       "[17105] \"207113_s_at\"                 \"209311_at\"                  \n",
+       "[17107] \"207339_s_at\"                 \"206460_at\"                  \n",
+       "[17109] \"207484_s_at\"                 \"210055_at\"                  \n",
+       "[17111] \"209148_at\"                   \"205905_s_at\"                \n",
+       "[17113] \"206247_at\"                   \"209111_at\"                  \n",
+       "[17115] \"206278_at\"                   \"209698_at\"                  \n",
+       "[17117] \"210410_s_at\"                 \"208894_at\"                  \n",
+       "[17119] \"208609_s_at\"                 \"209196_at\"                  \n",
+       "[17121] \"206082_at\"                   \"207523_at\"                  \n",
+       "[17123] \"207244_x_at\"                 \"210208_x_at\"                \n",
+       "[17125] \"209680_s_at\"                 \"207400_at\"                  \n",
+       "[17127] \"210336_x_at\"                 \"207223_s_at\"                \n",
+       "[17129] \"207523_at\"                   \"205491_s_at\"                \n",
+       "[17131] \"205490_x_at\"                 \"206415_at\"                  \n",
+       "[17133] \"206379_at\"                   \"208926_at\"                  \n",
+       "[17135] \"206521_s_at\"                 \"207457_s_at\"                \n",
+       "[17137] \"210419_at\"                   \"206755_at\"                  \n",
+       "[17139] \"206754_s_at\"                 \"209077_at\"                  \n",
+       "[17141] \"209078_s_at\"                 \"205973_at\"                  \n",
+       "[17143] \"205973_at\"                   \"205949_at\"                  \n",
+       "[17145] \"205950_s_at\"                 \"205890_s_at\"                \n",
+       "[17147] \"207186_s_at\"                 \"208739_x_at\"                \n",
+       "[17149] \"205989_s_at\"                 \"209620_s_at\"                \n",
+       "[17151] \"205965_at\"                   \"208308_s_at\"                \n",
+       "[17153] \"206518_s_at\"                 \"206340_at\"                  \n",
+       "[17155] \"207279_s_at\"                 \"205738_s_at\"                \n",
+       "[17157] \"206774_at\"                   \"208383_s_at\"                \n",
+       "[17159] \"208099_x_at\"                 \"208087_s_at\"                \n",
+       "[17161] \"209049_s_at\"                 \"209048_s_at\"                \n",
+       "[17163] \"207130_at\"                   \"209607_x_at\"                \n",
+       "[17165] \"209607_x_at\"                 \"208944_at\"                  \n",
+       "[17167] \"207334_s_at\"                 \"210018_x_at\"                \n",
+       "[17169] \"208309_s_at\"                 \"210017_at\"                  \n",
+       "[17171] \"207736_s_at\"                 \"210122_at\"                  \n",
+       "[17173] \"206358_at\"                   \"207294_at\"                  \n",
+       "[17175] \"207293_s_at\"                 \"208250_s_at\"                \n",
+       "[17177] \"207000_s_at\"                 \"206421_s_at\"                \n",
+       "[17179] \"208376_at\"                   \"209946_at\"                  \n",
+       "[17181] \"206612_at\"                   \"206685_at\"                  \n",
+       "[17183] \"206178_at\"                   \"209625_at\"                  \n",
+       "[17185] \"209471_s_at\"                 \"208327_at\"                  \n",
+       "[17187] \"209452_s_at\"                 \"207365_x_at\"                \n",
+       "[17189] \"207403_at\"                   \"206034_at\"                  \n",
+       "[17191] \"207913_at\"                   \"207451_at\"                  \n",
+       "[17193] \"207059_at\"                   \"206484_s_at\"                \n",
+       "[17195] \"208899_x_at\"                 \"208898_at\"                  \n",
+       "[17197] \"210227_at\"                   \"205876_at\"                  \n",
+       "[17199] \"206433_s_at\"                 \"206434_at\"                  \n",
+       "[17201] \"209763_at\"                   \"210285_x_at\"                \n",
+       "[17203] \"209391_at\"                   \"205790_at\"                  \n",
+       "[17205] \"207227_x_at\"                 \"209608_s_at\"                \n",
+       "[17207] \"206156_at\"                   \"206880_at\"                  \n",
+       "[17209] \"208811_s_at\"                 \"208810_at\"                  \n",
+       "[17211] \"205499_at\"                   \"208778_s_at\"                \n",
+       "[17213] \"208856_x_at\"                 \"207186_s_at\"                \n",
+       "[17215] \"206112_at\"                   \"208060_at\"                  \n",
+       "[17217] \"208972_s_at\"                 \"206329_at\"                  \n",
+       "[17219] \"207029_at\"                   \"210257_x_at\"                \n",
+       "[17221] \"209392_at\"                   \"206917_at\"                  \n",
+       "[17223] \"208191_x_at\"                 \"208778_s_at\"                \n",
+       "[17225] \"205707_at\"                   \"206989_s_at\"                \n",
+       "[17227] \"209376_x_at\"                 \"207454_at\"                  \n",
+       "[17229] \"210339_s_at\"                 \"209854_s_at\"                \n",
+       "[17231] \"209855_s_at\"                 \"206470_at\"                  \n",
+       "[17233] \"206471_s_at\"                 \"210328_at\"                  \n",
+       "[17235] \"210328_at\"                   \"207502_at\"                  \n",
+       "[17237] \"207103_at\"                   \"209594_x_at\"                \n",
+       "[17239] \"207733_x_at\"                 \"210126_at\"                  \n",
+       "[17241] \"210064_s_at\"                 \"210065_s_at\"                \n",
+       "[17243] \"208950_s_at\"                 \"208951_at\"                  \n",
+       "[17245] \"206372_at\"                   \"206560_s_at\"                \n",
+       "[17247] \"209861_s_at\"                 \"210109_at\"                  \n",
+       "[17249] \"207038_at\"                   \"207115_x_at\"                \n",
+       "[17251] \"205799_s_at\"                 \"209730_at\"                  \n",
+       "[17253] \"206832_s_at\"                 \"207767_s_at\"                \n",
+       "[17255] \"207768_at\"                   \"210321_at\"                  \n",
+       "[17257] \"209752_at\"                   \"205653_at\"                  \n",
+       "[17259] \"207378_at\"                   \"205795_at\"                  \n",
+       "[17261] \"209229_s_at\"                 \"206306_at\"                  \n",
+       "[17263] \"205582_s_at\"                 \"207399_at\"                  \n",
+       "[17265] \"206538_at\"                   \"205602_x_at\"                \n",
+       "[17267] \"206578_at\"                   \"207589_at\"                  \n",
+       "[17269] \"206715_at\"                   \"206954_at\"                  \n",
+       "[17271] \"206954_at\"                   \"208687_x_at\"                \n",
+       "[17273] \"208687_x_at\"                 \"210338_s_at\"                \n",
+       "[17275] \"208695_s_at\"                 \"208695_s_at\"                \n",
+       "[17277] \"209565_at\"                   \"208692_at\"                  \n",
+       "[17279] \"208909_at\"                   \"206807_s_at\"                \n",
+       "[17281] \"210297_s_at\"                 \"207430_s_at\"                \n",
+       "[17283] \"207011_s_at\"                 \"208737_at\"                  \n",
+       "[17285] \"206660_at\"                   \"206819_at\"                  \n",
+       "[17287] \"206325_at\"                   \"209573_s_at\"                \n",
+       "[17289] \"207996_s_at\"                 \"209574_s_at\"                \n",
+       "[17291] \"207899_at\"                   \"205541_s_at\"                \n",
+       "[17293] \"209046_s_at\"                 \"207081_s_at\"                \n",
+       "[17295] \"208816_x_at\"                 \"210347_s_at\"                \n",
+       "[17297] \"208568_at\"                   \"206556_at\"                  \n",
+       "[17299] \"207714_s_at\"                 \"209926_at\"                  \n",
+       "[17301] \"209845_at\"                   \"207809_s_at\"                \n",
+       "[17303] \"207037_at\"                   \"205871_at\"                  \n",
+       "[17305] \"208909_at\"                   \"208406_s_at\"                \n",
+       "[17307] \"207678_s_at\"                 \"208528_x_at\"                \n",
+       "[17309] \"209576_at\"                   \"208156_x_at\"                \n",
+       "[17311] \"205892_s_at\"                 \"207648_at\"                  \n",
+       "[17313] \"205925_s_at\"                 \"205924_at\"                  \n",
+       "[17315] \"207109_at\"                   \"209919_x_at\"                \n",
+       "[17317] \"207131_x_at\"                 \"208284_x_at\"                \n",
+       "[17319] \"208999_at\"                   \"209000_s_at\"                \n",
+       "[17321] \"210111_s_at\"                 \"209254_at\"                  \n",
+       "[17323] \"209255_at\"                   \"209256_s_at\"                \n",
+       "[17325] \"208574_at\"                   \"207030_s_at\"                \n",
+       "[17327] \"208695_s_at\"                 \"206444_at\"                  \n",
+       "[17329] \"206647_at\"                   \"206042_x_at\"                \n",
+       "[17331] \"207387_s_at\"                 \"206647_at\"                  \n",
+       "[17333] \"209458_x_at\"                 \"207166_at\"                  \n",
+       "[17335] \"209458_x_at\"                 \"208032_s_at\"                \n",
+       "[17337] \"206730_at\"                   \"205886_at\"                  \n",
+       "[17339] \"207416_s_at\"                 \"207123_s_at\"                \n",
+       "[17341] \"206373_at\"                   \"208755_x_at\"                \n",
+       "[17343] \"208595_s_at\"                 \"208538_at\"                  \n",
+       "[17345] \"206696_at\"                   \"205895_s_at\"                \n",
+       "[17347] \"210183_x_at\"                 \"205623_at\"                  \n",
+       "[17349] \"209674_at\"                   \"209842_at\"                  \n",
+       "[17351] \"209843_s_at\"                 \"209217_s_at\"                \n",
+       "[17353] \"208206_s_at\"                 \"206193_s_at\"                \n",
+       "[17355] \"210437_at\"                   \"205870_at\"                  \n",
+       "[17357] \"207539_s_at\"                 \"207538_at\"                  \n",
+       "[17359] \"208049_s_at\"                 \"208048_at\"                  \n",
+       "[17361] \"207765_s_at\"                 \"209296_at\"                  \n",
+       "[17363] \"205792_at\"                   \"209778_at\"                  \n",
+       "[17365] \"207757_at\"                   \"207241_at\"                  \n",
+       "[17367] \"206790_s_at\"                 \"209355_s_at\"                \n",
+       "[17369] \"205723_at\"                   \"207357_s_at\"                \n",
+       "[17371] \"205913_at\"                   \"205577_at\"                  \n",
+       "[17373] \"208511_at\"                   \"207416_s_at\"                \n",
+       "[17375] \"209265_s_at\"                 \"209355_s_at\"                \n",
+       "[17377] \"208722_s_at\"                 \"208721_s_at\"                \n",
+       "[17379] \"208904_s_at\"                 \"208051_s_at\"                \n",
+       "[17381] \"209064_x_at\"                 \"209063_x_at\"                \n",
+       "[17383] \"210283_x_at\"                 \"209486_at\"                  \n",
+       "[17385] \"210251_s_at\"                 \"206524_at\"                  \n",
+       "[17387] \"207955_at\"                   \"207955_at\"                  \n",
+       "[17389] \"210072_at\"                   \"206015_s_at\"                \n",
+       "[17391] \"205969_at\"                   \"208264_s_at\"                \n",
+       "[17393] \"208985_s_at\"                 \"208053_at\"                  \n",
+       "[17395] \"209629_s_at\"                 \"209628_at\"                  \n",
+       "[17397] \"209037_s_at\"                 \"209039_x_at\"                \n",
+       "[17399] \"208112_x_at\"                 \"209038_s_at\"                \n",
+       "[17401] \"207766_at\"                   \"210175_at\"                  \n",
+       "[17403] \"208771_s_at\"                 \"209208_at\"                  \n",
+       "[17405] \"206608_s_at\"                 \"207849_at\"                  \n",
+       "[17407] \"205910_s_at\"                 \"206187_at\"                  \n",
+       "[17409] \"209444_at\"                   \"209050_s_at\"                \n",
+       "[17411] \"209051_s_at\"                 \"206122_at\"                  \n",
+       "[17413] \"207665_at\"                   \"207423_s_at\"                \n",
+       "[17415] \"210092_at\"                   \"210093_s_at\"                \n",
+       "[17417] \"209116_x_at\"                 \"207079_s_at\"                \n",
+       "[17419] \"210104_at\"                   \"207078_at\"                  \n",
+       "[17421] \"208055_s_at\"                 \"208054_at\"                  \n",
+       "[17423] \"208177_at\"                   \"205786_s_at\"                \n",
+       "[17425] \"206834_at\"                   \"207891_s_at\"                \n",
+       "[17427] \"205919_at\"                   \"205919_at\"                  \n",
+       "[17429] \"207079_s_at\"                 \"207078_at\"                  \n",
+       "[17431] \"206831_s_at\"                 \"207784_at\"                  \n",
+       "[17433] \"206907_at\"                   \"209711_at\"                  \n",
+       "[17435] \"209713_s_at\"                 \"209712_at\"                  \n",
+       "[17437] \"210184_at\"                   \"206508_at\"                  \n",
+       "[17439] \"207148_x_at\"                 \"208808_s_at\"                \n",
+       "[17441] \"209050_s_at\"                 \"209051_s_at\"                \n",
+       "[17443] \"205894_at\"                   \"210092_at\"                  \n",
+       "[17445] \"208433_s_at\"                 \"205475_at\"                  \n",
+       "[17447] \"208212_s_at\"                 \"208211_s_at\"                \n",
+       "[17449] \"206353_at\"                   \"208697_s_at\"                \n",
+       "[17451] \"209744_x_at\"                 \"209743_s_at\"                \n",
+       "[17453] \"209744_x_at\"                 \"209743_s_at\"                \n",
+       "[17455] \"209651_at\"                   \"210427_x_at\"                \n",
+       "[17457] \"206593_s_at\"                 \"207907_at\"                  \n",
+       "[17459] \"206489_s_at\"                 \"206490_at\"                  \n",
+       "[17461] \"209386_at\"                   \"209387_s_at\"                \n",
+       "[17463] \"206102_at\"                   \"206052_s_at\"                \n",
+       "[17465] \"210103_s_at\"                 \"207771_at\"                  \n",
+       "[17467] \"210102_at\"                   \"210385_s_at\"                \n",
+       "[17469] \"209788_s_at\"                 \"206218_at\"                  \n",
+       "[17471] \"205692_s_at\"                 \"207581_s_at\"                \n",
+       "[17473] \"207580_at\"                   \"209339_at\"                  \n",
+       "[17475] \"210293_s_at\"                 \"208949_s_at\"                \n",
+       "[17477] \"209477_at\"                   \"206019_at\"                  \n",
+       "[17479] \"209751_s_at\"                 \"206939_at\"                  \n",
+       "[17481] \"207384_at\"                   \"209479_at\"                  \n",
+       "[17483] \"207212_at\"                   \"207590_s_at\"                \n",
+       "[17485] \"207891_s_at\"                 \"210074_at\"                  \n",
+       "[17487] \"207051_at\"                   \"205964_at\"                  \n",
+       "[17489] \"208144_s_at\"                 \"206872_at\"                  \n",
+       "[17491] \"208359_s_at\"                 \"206179_s_at\"                \n",
+       "[17493] \"207264_at\"                   \"207265_s_at\"                \n",
+       "[17495] \"207713_s_at\"                 \"208719_s_at\"                \n",
+       "[17497] \"208718_at\"                   \"208151_x_at\"                \n",
+       "[17499] \"207581_s_at\"                 \"207534_at\"                  \n",
+       "[17501] \"207298_at\"                   \"206868_at\"                  \n",
+       "[17503] \"207579_at\"                   \"209605_at\"                  \n",
+       "[17505] \"208484_at\"                   \"208575_at\"                  \n",
+       "[17507] \"208046_at\"                   \"208576_s_at\"                \n",
+       "[17509] \"208569_at\"                   \"208547_at\"                  \n",
+       "[17511] \"208577_at\"                   \"209398_at\"                  \n",
+       "[17513] \"208553_at\"                   \"206467_x_at\"                \n",
+       "[17515] \"206092_x_at\"                 \"209911_x_at\"                \n",
+       "[17517] \"208527_x_at\"                 \"208076_at\"                  \n",
+       "[17519] \"205905_s_at\"                 \"206247_at\"                  \n",
+       "[17521] \"210437_at\"                   \"207337_at\"                  \n",
+       "[17523] \"209521_s_at\"                 \"206174_s_at\"                \n",
+       "[17525] \"210025_s_at\"                 \"210026_s_at\"                \n",
+       "[17527] \"207107_at\"                   \"206626_x_at\"                \n",
+       "[17529] \"208586_s_at\"                 \"210394_x_at\"                \n",
+       "[17531] \"207071_s_at\"                 \"210131_x_at\"                \n",
+       "[17533] \"206975_at\"                   \"208450_at\"                  \n",
+       "[17535] \"207339_s_at\"                 \"207419_s_at\"                \n",
+       "[17537] \"210300_at\"                   \"209397_at\"                  \n",
+       "[17539] \"210153_s_at\"                 \"210154_at\"                  \n",
+       "[17541] \"209546_s_at\"                 \"208927_at\"                  \n",
+       "[17543] \"205719_s_at\"                 \"207823_s_at\"                \n",
+       "[17545] \"209901_x_at\"                 \"208258_s_at\"                \n",
+       "[17547] \"209729_at\"                   \"209259_s_at\"                \n",
+       "[17549] \"205682_x_at\"                 \"207424_at\"                  \n",
+       "[17551] \"208366_at\"                   \"210292_s_at\"                \n",
+       "[17553] \"206559_x_at\"                 \"208501_at\"                  \n",
+       "[17555] \"209833_at\"                   \"206664_at\"                  \n",
+       "[17557] \"208743_s_at\"                 \"207102_at\"                  \n",
+       "[17559] \"208914_at\"                   \"208915_s_at\"                \n",
+       "[17561] \"208913_at\"                   \"206303_s_at\"                \n",
+       "[17563] \"206302_s_at\"                 \"207218_at\"                  \n",
+       "[17565] \"208897_s_at\"                 \"208895_s_at\"                \n",
+       "[17567] \"205763_s_at\"                 \"208896_at\"                  \n",
+       "[17569] \"207662_at\"                   \"207366_at\"                  \n",
+       "[17571] \"208147_s_at\"                 \"206442_at\"                  \n",
+       "[17573] \"205687_at\"                   \"207457_s_at\"                \n",
+       "[17575] \"208836_at\"                   \"207114_at\"                  \n",
+       "[17577] \"205687_at\"                   \"210410_s_at\"                \n",
+       "[17579] \"209232_s_at\"                 \"209231_s_at\"                \n",
+       "[17581] \"209473_at\"                   \"207691_x_at\"                \n",
+       "[17583] \"209474_s_at\"                 \"205681_at\"                  \n",
+       "[17585] \"208793_x_at\"                 \"208106_x_at\"                \n",
+       "[17587] \"209738_x_at\"                 \"210126_at\"                  \n",
+       "[17589] \"206619_at\"                   \"208845_at\"                  \n",
+       "[17591] \"208846_s_at\"                 \"208397_x_at\"                \n",
+       "[17593] \"208404_x_at\"                 \"206932_at\"                  \n",
+       "[17595] \"206997_s_at\"                 \"209798_at\"                  \n",
+       "[17597] \"206535_at\"                   \"209734_at\"                  \n",
+       "[17599] \"206425_s_at\"                 \"206732_at\"                  \n",
+       "[17601] \"210410_s_at\"                 \"209510_at\"                  \n",
+       "[17603] \"207455_at\"                   \"207177_at\"                  \n",
+       "[17605] \"209283_at\"                   \"209004_s_at\"                \n",
+       "[17607] \"209005_at\"                   \"209204_at\"                  \n",
+       "[17609] \"209205_s_at\"                 \"210445_at\"                  \n",
+       "[17611] \"209707_at\"                   \"206227_at\"                  \n",
+       "[17613] \"208648_at\"                   \"208649_s_at\"                \n",
+       "[17615] \"205824_at\"                   \"205824_at\"                  \n",
+       "[17617] \"209273_s_at\"                 \"208659_at\"                  \n",
+       "[17619] \"209550_at\"                   \"209725_at\"                  \n",
+       "[17621] \"207640_x_at\"                 \"207003_at\"                  \n",
+       "[17623] \"208589_at\"                   \"209140_x_at\"                \n",
+       "[17625] \"208729_x_at\"                 \"210393_at\"                  \n",
+       "[17627] \"207641_at\"                   \"205715_at\"                  \n",
+       "[17629] \"206625_at\"                   \"210360_s_at\"                \n",
+       "[17631] \"210359_at\"                   \"207498_s_at\"                \n",
+       "[17633] \"209765_at\"                   \"210295_at\"                  \n",
+       "[17635] \"206695_x_at\"                 \"206295_at\"                  \n",
+       "[17637] \"209024_s_at\"                 \"209817_at\"                  \n",
+       "[17639] \"208350_at\"                   \"206561_s_at\"                \n",
+       "[17641] \"210357_s_at\"                 \"205770_at\"                  \n",
+       "[17643] \"209889_at\"                   \"207962_at\"                  \n",
+       "[17645] \"209461_x_at\"                 \"209822_s_at\"                \n",
+       "[17647] \"209694_at\"                   \"209317_at\"                  \n",
+       "[17649] \"207515_s_at\"                 \"206835_at\"                  \n",
+       "[17651] \"208929_x_at\"                 \"206639_x_at\"                \n",
+       "[17653] \"209138_x_at\"                 \"209138_x_at\"                \n",
+       "[17655] \"206786_at\"                   \"207721_x_at\"                \n",
+       "[17657] \"208826_x_at\"                 \"209417_s_at\"                \n",
+       "[17659] \"208656_s_at\"                 \"208655_at\"                  \n",
+       "[17661] \"209844_at\"                   \"208279_s_at\"                \n",
+       "[17663] \"206927_s_at\"                 \"207442_at\"                  \n",
+       "[17665] \"207182_at\"                   \"210341_at\"                  \n",
+       "[17667] \"208275_x_at\"                 \"207376_at\"                  \n",
+       "[17669] \"206819_at\"                   \"209919_x_at\"                \n",
+       "[17671] \"207131_x_at\"                 \"208284_x_at\"                \n",
+       "[17673] \"207414_s_at\"                 \"206559_x_at\"                \n",
+       "[17675] \"209919_x_at\"                 \"207131_x_at\"                \n",
+       "[17677] \"208284_x_at\"                 \"209919_x_at\"                \n",
+       "[17679] \"207131_x_at\"                 \"208284_x_at\"                \n",
+       "[17681] \"208768_x_at\"                 \"207142_at\"                  \n",
+       "[17683] \"207141_s_at\"                 \"206037_at\"                  \n",
+       "[17685] \"206037_at\"                   \"209615_s_at\"                \n",
+       "[17687] \"205947_s_at\"                 \"205946_at\"                  \n",
+       "[17689] \"209472_at\"                   \"209531_at\"                  \n",
+       "[17691] \"210086_at\"                   \"209596_at\"                  \n",
+       "[17693] \"208155_x_at\"                 \"206640_x_at\"                \n",
+       "[17695] \"208235_x_at\"                 \"207086_x_at\"                \n",
+       "[17697] \"207739_s_at\"                 \"207663_x_at\"                \n",
+       "[17699] \"208155_x_at\"                 \"206640_x_at\"                \n",
+       "[17701] \"208235_x_at\"                 \"207086_x_at\"                \n",
+       "[17703] \"207739_s_at\"                 \"207663_x_at\"                \n",
+       "[17705] \"207347_at\"                   \"208155_x_at\"                \n",
+       "[17707] \"206640_x_at\"                 \"208235_x_at\"                \n",
+       "[17709] \"207086_x_at\"                 \"207739_s_at\"                \n",
+       "[17711] \"207663_x_at\"                 \"208155_x_at\"                \n",
+       "[17713] \"206640_x_at\"                 \"208235_x_at\"                \n",
+       "[17715] \"207086_x_at\"                 \"207739_s_at\"                \n",
+       "[17717] \"207663_x_at\"                 \"208155_x_at\"                \n",
+       "[17719] \"206640_x_at\"                 \"208235_x_at\"                \n",
+       "[17721] \"207086_x_at\"                 \"207739_s_at\"                \n",
+       "[17723] \"207663_x_at\"                 \"208155_x_at\"                \n",
+       "[17725] \"206640_x_at\"                 \"208235_x_at\"                \n",
+       "[17727] \"207086_x_at\"                 \"207739_s_at\"                \n",
+       "[17729] \"207663_x_at\"                 \"208155_x_at\"                \n",
+       "[17731] \"206640_x_at\"                 \"208235_x_at\"                \n",
+       "[17733] \"207086_x_at\"                 \"207739_s_at\"                \n",
+       "[17735] \"207663_x_at\"                 \"208155_x_at\"                \n",
+       "[17737] \"206640_x_at\"                 \"208235_x_at\"                \n",
+       "[17739] \"207086_x_at\"                 \"207739_s_at\"                \n",
+       "[17741] \"207663_x_at\"                 \"208155_x_at\"                \n",
+       "[17743] \"206640_x_at\"                 \"208235_x_at\"                \n",
+       "[17745] \"207086_x_at\"                 \"207739_s_at\"                \n",
+       "[17747] \"207663_x_at\"                 \"208155_x_at\"                \n",
+       "[17749] \"206640_x_at\"                 \"208235_x_at\"                \n",
+       "[17751] \"207086_x_at\"                 \"207739_s_at\"                \n",
+       "[17753] \"207663_x_at\"                 \"208155_x_at\"                \n",
+       "[17755] \"206640_x_at\"                 \"208235_x_at\"                \n",
+       "[17757] \"207086_x_at\"                 \"207739_s_at\"                \n",
+       "[17759] \"207663_x_at\"                 \"208155_x_at\"                \n",
+       "[17761] \"206640_x_at\"                 \"208235_x_at\"                \n",
+       "[17763] \"207086_x_at\"                 \"207739_s_at\"                \n",
+       "[17765] \"207663_x_at\"                 \"208155_x_at\"                \n",
+       "[17767] \"206640_x_at\"                 \"208235_x_at\"                \n",
+       "[17769] \"207086_x_at\"                 \"207739_s_at\"                \n",
+       "[17771] \"207663_x_at\"                 \"206777_s_at\"                \n",
+       "[17773] \"208155_x_at\"                 \"206640_x_at\"                \n",
+       "[17775] \"208235_x_at\"                 \"207086_x_at\"                \n",
+       "[17777] \"207739_s_at\"                 \"207663_x_at\"                \n",
+       "[17779] \"206777_s_at\"                 \"208155_x_at\"                \n",
+       "[17781] \"206640_x_at\"                 \"208235_x_at\"                \n",
+       "[17783] \"207086_x_at\"                 \"207739_s_at\"                \n",
+       "[17785] \"207663_x_at\"                 \"208155_x_at\"                \n",
+       "[17787] \"206640_x_at\"                 \"208235_x_at\"                \n",
+       "[17789] \"207086_x_at\"                 \"207739_s_at\"                \n",
+       "[17791] \"207663_x_at\"                 \"208155_x_at\"                \n",
+       "[17793] \"206640_x_at\"                 \"208235_x_at\"                \n",
+       "[17795] \"207086_x_at\"                 \"207739_s_at\"                \n",
+       "[17797] \"207663_x_at\"                 \"208155_x_at\"                \n",
+       "[17799] \"206640_x_at\"                 \"208235_x_at\"                \n",
+       "[17801] \"207086_x_at\"                 \"207739_s_at\"                \n",
+       "[17803] \"207663_x_at\"                 \"208155_x_at\"                \n",
+       "[17805] \"206640_x_at\"                 \"208235_x_at\"                \n",
+       "[17807] \"207086_x_at\"                 \"207739_s_at\"                \n",
+       "[17809] \"207663_x_at\"                 \"208155_x_at\"                \n",
+       "[17811] \"206640_x_at\"                 \"208235_x_at\"                \n",
+       "[17813] \"207086_x_at\"                 \"207739_s_at\"                \n",
+       "[17815] \"207663_x_at\"                 \"208155_x_at\"                \n",
+       "[17817] \"206640_x_at\"                 \"208235_x_at\"                \n",
+       "[17819] \"207086_x_at\"                 \"207739_s_at\"                \n",
+       "[17821] \"207663_x_at\"                 \"208155_x_at\"                \n",
+       "[17823] \"206640_x_at\"                 \"208235_x_at\"                \n",
+       "[17825] \"207086_x_at\"                 \"207739_s_at\"                \n",
+       "[17827] \"207663_x_at\"                 \"208155_x_at\"                \n",
+       "[17829] \"206640_x_at\"                 \"208235_x_at\"                \n",
+       "[17831] \"207086_x_at\"                 \"207739_s_at\"                \n",
+       "[17833] \"207663_x_at\"                 \"208155_x_at\"                \n",
+       "[17835] \"206640_x_at\"                 \"208235_x_at\"                \n",
+       "[17837] \"207086_x_at\"                 \"207739_s_at\"                \n",
+       "[17839] \"207663_x_at\"                 \"208155_x_at\"                \n",
+       "[17841] \"206640_x_at\"                 \"208235_x_at\"                \n",
+       "[17843] \"207086_x_at\"                 \"207739_s_at\"                \n",
+       "[17845] \"207663_x_at\"                 \"208155_x_at\"                \n",
+       "[17847] \"206640_x_at\"                 \"208235_x_at\"                \n",
+       "[17849] \"207086_x_at\"                 \"207739_s_at\"                \n",
+       "[17851] \"207663_x_at\"                 \"208283_at\"                  \n",
+       "[17853] \"209985_s_at\"                 \"209987_s_at\"                \n",
+       "[17855] \"209988_s_at\"                 \"207739_s_at\"                \n",
+       "[17857] \"208155_x_at\"                 \"206640_x_at\"                \n",
+       "[17859] \"208235_x_at\"                 \"207086_x_at\"                \n",
+       "[17861] \"207739_s_at\"                 \"207663_x_at\"                \n",
+       "[17863] \"209919_x_at\"                 \"207131_x_at\"                \n",
+       "[17865] \"208284_x_at\"                 \"208772_at\"                  \n",
+       "[17867] \"208773_s_at\"                 \"208155_x_at\"                \n",
+       "[17869] \"206640_x_at\"                 \"208235_x_at\"                \n",
+       "[17871] \"207086_x_at\"                 \"207739_s_at\"                \n",
+       "[17873] \"207663_x_at\"                 \"208434_at\"                  \n",
+       "[17875] \"209102_s_at\"                 \"207361_at\"                  \n",
+       "[17877] \"209919_x_at\"                 \"207131_x_at\"                \n",
+       "[17879] \"208284_x_at\"                 \"207150_at\"                  \n",
+       "[17881] \"205864_at\"                   \"209942_x_at\"                \n",
+       "[17883] \"205574_x_at\"                 \"207595_s_at\"                \n",
+       "[17885] \"206725_x_at\"                 \"206720_at\"                  \n",
+       "[17887] \"208416_s_at\"                 \"209522_s_at\"                \n",
+       "[17889] \"205843_x_at\"                 \"209449_at\"                  \n",
+       "[17891] \"206100_at\"                   \"210189_at\"                  \n",
+       "[17893] \"210467_x_at\"                 \"207993_s_at\"                \n",
+       "[17895] \"206703_at\"                   \"208552_at\"                  \n",
+       "[17897] \"208772_at\"                   \"208773_s_at\"                \n",
+       "[17899] \"207060_at\"                   \"209194_at\"                  \n",
+       "[17901] \"206878_at\"                   \"209279_s_at\"                \n",
+       "[17903] \"209224_s_at\"                 \"209223_at\"                  \n",
+       "[17905] \"210011_s_at\"                 \"209214_s_at\"                \n",
+       "[17907] \"210012_s_at\"                 \"209252_at\"                  \n",
+       "[17909] \"208210_at\"                   \"209631_s_at\"                \n",
+       "[17911] \"206249_at\"                   \"206053_at\"                  \n",
+       "[17913] \"205874_at\"                   \"207201_s_at\"                \n",
+       "[17915] \"209693_at\"                   \"207106_s_at\"                \n",
+       "[17917] \"206926_s_at\"                 \"206924_at\"                  \n",
+       "[17919] \"208929_x_at\"                 \"207884_at\"                  \n",
+       "[17921] \"206714_at\"                   \"208361_s_at\"                \n",
+       "[17923] \"208795_s_at\"                 \"208795_s_at\"                \n",
+       "[17925] \"208795_s_at\"                 \"208117_s_at\"                \n",
+       "[17927] \"209837_at\"                   \"205651_x_at\"                \n",
+       "[17929] \"207381_at\"                   \"205908_s_at\"                \n",
+       "[17931] \"205907_s_at\"                 \"209742_s_at\"                \n",
+       "[17933] \"208926_at\"                   \"206960_at\"                  \n",
+       "[17935] \"208205_at\"                   \"207006_s_at\"                \n",
+       "[17937] \"205781_at\"                   \"208637_x_at\"                \n",
+       "[17939] \"208636_at\"                   \"206771_at\"                  \n",
+       "[17941] \"209902_at\"                   \"209903_s_at\"                \n",
+       "[17943] \"206813_at\"                   \"209137_s_at\"                \n",
+       "[17945] \"209136_s_at\"                 \"209464_at\"                  \n",
+       "[17947] \"208907_s_at\"                 \"210306_at\"                  \n",
+       "[17949] \"206822_s_at\"                 \"210306_at\"                  \n",
+       "[17951] \"206822_s_at\"                 \"206823_at\"                  \n",
+       "[17953] \"206526_at\"                   \"208495_at\"                  \n",
+       "[17955] \"206987_x_at\"                 \"207834_at\"                  \n",
+       "[17957] \"207835_at\"                   \"208006_at\"                  \n",
+       "[17959] \"206043_s_at\"                 \"209948_at\"                  \n",
+       "[17961] \"207091_at\"                   \"208689_s_at\"                \n",
+       "[17963] \"207338_s_at\"                 \"209981_at\"                  \n",
+       "[17965] \"207143_at\"                   \"206055_s_at\"                \n",
+       "[17967] \"209937_at\"                   \"206585_at\"                  \n",
+       "[17969] \"205507_at\"                   \"205782_at\"                  \n",
+       "[17971] \"205982_x_at\"                 \"208668_x_at\"                \n",
+       "[17973] \"207124_s_at\"                 \"210231_x_at\"                \n",
+       "[17975] \"207934_at\"                   \"205944_s_at\"                \n",
+       "[17977] \"206173_x_at\"                 \"206551_x_at\"                \n",
+       "[17979] \"206512_at\"                   \"208449_s_at\"                \n",
+       "[17981] \"208005_at\"                   \"206046_at\"                  \n",
+       "[17983] \"209803_s_at\"                 \"208834_x_at\"                \n",
+       "[17985] \"208825_x_at\"                 \"209306_s_at\"                \n",
+       "[17987] \"209307_at\"                   \"210369_at\"                  \n",
+       "[17989] \"205696_s_at\"                 \"210278_s_at\"                \n",
+       "[17991] \"210277_at\"                   \"208872_s_at\"                \n",
+       "[17993] \"208873_s_at\"                 \"207569_at\"                  \n",
+       "[17995] \"206512_at\"                   \"205603_s_at\"                \n",
+       "[17997] \"205726_at\"                   \"206654_s_at\"                \n",
+       "[17999] \"206653_at\"                   \"209388_at\"                  \n",
+       "[18001] \"210433_at\"                   \"209342_s_at\"                \n",
+       "[18003] \"209341_s_at\"                 \"209877_at\"                  \n",
+       "[18005] \"206416_at\"                   \"209427_at\"                  \n",
+       "[18007] \"207390_s_at\"                 \"207427_at\"                  \n",
+       "[18009] \"206849_at\"                   \"207692_s_at\"                \n",
+       "[18011] \"205679_x_at\"                 \"209495_at\"                  \n",
+       "[18013] \"209922_at\"                   \"209923_s_at\"                \n",
+       "[18015] \"206203_at\"                   \"208208_at\"                  \n",
+       "[18017] \"206717_at\"                   \"208887_at\"                  \n",
+       "[18019] \"208148_at\"                   \"208429_x_at\"                \n",
+       "[18021] \"205951_at\"                   \"205581_s_at\"                \n",
+       "[18023] \"208537_at\"                   \"206395_at\"                  \n",
+       "[18025] \"208929_x_at\"                 \"207281_x_at\"                \n",
+       "[18027] \"206851_at\"                   \"207280_at\"                  \n",
+       "[18029] \"206582_s_at\"                 \"207583_at\"                  \n",
+       "[18031] \"207194_s_at\"                 \"207561_s_at\"                \n",
+       "[18033] \"209862_s_at\"                 \"207281_x_at\"                \n",
+       "[18035] \"208137_x_at\"                 \"209374_s_at\"                \n",
+       "[18037] \"205940_at\"                   \"207802_at\"                  \n",
+       "[18039] \"206580_s_at\"                 \"209356_x_at\"                \n",
+       "[18041] \"209695_at\"                   \"206574_s_at\"                \n",
+       "[18043] \"210450_at\"                   \"210450_at\"                  \n",
+       "[18045] \"205980_s_at\"                 \"206182_at\"                  \n",
+       "[18047] \"207352_s_at\"                 \"208770_s_at\"                \n",
+       "[18049] \"208769_at\"                   \"207463_x_at\"                \n",
+       "[18051] \"207622_s_at\"                 \"209246_at\"                  \n",
+       "[18053] \"209247_s_at\"                 \"209080_x_at\"                \n",
+       "[18055] \"207506_at\"                   \"207959_s_at\"                \n",
+       "[18057] \"210345_s_at\"                 \"205737_at\"                  \n",
+       "[18059] \"209662_at\"                   \"207453_s_at\"                \n",
+       "[18061] \"209859_at\"                   \"207897_at\"                  \n",
+       "[18063] \"209220_at\"                   \"205879_x_at\"                \n",
+       "[18065] \"205733_at\"                   \"209516_at\"                  \n",
+       "[18067] \"208111_at\"                   \"208108_s_at\"                \n",
+       "[18069] \"208693_s_at\"                 \"205702_at\"                  \n",
+       "[18071] \"210191_s_at\"                 \"209941_at\"                  \n",
+       "[18073] \"210439_at\"                   \"210125_s_at\"                \n",
+       "[18075] \"206844_at\"                   \"207570_at\"                  \n",
+       "[18077] \"210097_s_at\"                 \"209696_at\"                  \n",
+       "[18079] \"206595_at\"                   \"208253_at\"                  \n",
+       "[18081] \"210352_at\"                   \"209630_s_at\"                \n",
+       "[18083] \"209740_s_at\"                 \"209739_s_at\"                \n",
+       "[18085] \"206920_s_at\"                 \"206921_at\"                  \n",
+       "[18087] \"206188_at\"                   \"210408_s_at\"                \n",
+       "[18089] \"206520_x_at\"                 \"206519_x_at\"                \n",
+       "[18091] \"207886_s_at\"                 \"207887_s_at\"                \n",
+       "[18093] \"208164_s_at\"                 \"207705_s_at\"                \n",
+       "[18095] \"209942_x_at\"                 \"205497_at\"                  \n",
+       "[18097] \"206564_at\"                   \"206563_s_at\"                \n",
+       "[18099] \"207316_at\"                   \"206000_at\"                  \n",
+       "[18101] \"210288_at\"                   \"206476_s_at\"                \n",
+       "[18103] \"206477_s_at\"                 \"210059_s_at\"                \n",
+       "[18105] \"210058_at\"                   \"207330_at\"                  \n",
+       "[18107] \"208660_at\"                   \"206890_at\"                  \n",
+       "[18109] \"206522_at\"                   \"205678_at\"                  \n",
+       "[18111] \"207493_x_at\"                 \"207147_at\"                  \n",
+       "[18113] \"207281_x_at\"                 \"207105_s_at\"                \n",
+       "[18115] \"207155_at\"                   \"210024_s_at\"                \n",
+       "[18117] \"207105_s_at\"                 \"208984_x_at\"                \n",
+       "[18119] \"207450_s_at\"                 \"207687_at\"                  \n",
+       "[18121] \"206646_at\"                   \"205953_at\"                  \n",
+       "[18123] \"206792_x_at\"                 \"206791_s_at\"                \n",
+       "[18125] \"205668_at\"                   \"209784_s_at\"                \n",
+       "[18127] \"206770_s_at\"                 \"209865_at\"                  \n",
+       "[18129] \"208380_at\"                   \"210361_s_at\"                \n",
+       "[18131] \"207076_s_at\"                 \"205762_s_at\"                \n",
+       "[18133] \"205761_s_at\"                 \"206068_s_at\"                \n",
+       "[18135] \"206069_s_at\"                 \"207252_at\"                  \n",
+       "[18137] \"205671_s_at\"                 \"208964_s_at\"                \n",
+       "[18139] \"208963_x_at\"                 \"208962_s_at\"                \n",
+       "[18141] \"206212_at\"                   \"207513_s_at\"                \n",
+       "[18143] \"205671_s_at\"                 \"209383_at\"                  \n",
+       "[18145] \"209821_at\"                   \"206261_at\"                  \n",
+       "[18147] \"209538_at\"                   \"208978_at\"                  \n",
+       "[18149] \"207615_s_at\"                 \"207363_at\"                  \n",
+       "[18151] \"209439_s_at\"                 \"209438_at\"                  \n",
+       "[18153] \"206435_at\"                   \"208354_s_at\"                \n",
+       "[18155] \"208110_x_at\"                 \"207769_s_at\"                \n",
+       "[18157] \"207179_at\"                   \"206657_s_at\"                \n",
+       "[18159] \"208477_at\"                   \"206661_at\"                  \n",
+       "[18161] \"207880_at\"                   \"207440_at\"                  \n",
+       "[18163] \"207439_s_at\"                 \"209326_at\"                  \n",
+       "[18165] \"206294_at\"                   \"208460_at\"                  \n",
+       "[18167] \"207175_at\"                   \"205948_at\"                  \n",
+       "[18169] \"205573_s_at\"                 \"206210_s_at\"                \n",
+       "[18171] \"206688_s_at\"                 \"206628_at\"                  \n",
+       "[18173] \"209206_at\"                   \"209207_s_at\"                \n",
+       "[18175] \"205880_at\"                   \"206322_at\"                  \n",
+       "[18177] \"206993_at\"                   \"206992_s_at\"                \n",
+       "[18179] \"208908_s_at\"                 \"207467_x_at\"                \n",
+       "[18181] \"206842_at\"                   \"210222_s_at\"                \n",
+       "[18183] \"206740_x_at\"                 \"209714_s_at\"                \n",
+       "[18185] \"208832_at\"                   \"208833_s_at\"                \n",
+       "[18187] \"205575_at\"                   \"207014_at\"                  \n",
+       "[18189] \"205826_at\"                   \"209754_s_at\"                \n",
+       "[18191] \"209753_s_at\"                 \"206611_at\"                  \n",
+       "[18193] \"207391_s_at\"                 \"210256_s_at\"                \n",
+       "[18195] \"205641_s_at\"                 \"209976_s_at\"                \n",
+       "[18197] \"209975_at\"                   \"206761_at\"                  \n",
+       "[18199] \"208084_at\"                   \"208083_s_at\"                \n",
+       "[18201] \"205939_at\"                   \"210028_s_at\"                \n",
+       "[18203] \"210110_x_at\"                 \"208990_s_at\"                \n",
+       "[18205] \"207127_s_at\"                 \"206453_s_at\"                \n",
+       "[18207] \"206547_s_at\"                 \"210139_s_at\"                \n",
+       "[18209] \"210160_at\"                   \"206017_at\"                  \n",
+       "[18211] \"209162_s_at\"                 \"209161_at\"                  \n",
+       "[18213] \"209888_s_at\"                 \"205547_s_at\"                \n",
+       "[18215] \"206862_at\"                   \"210305_at\"                  \n",
+       "[18217] \"206348_s_at\"                 \"206347_at\"                  \n",
+       "[18219] \"207788_s_at\"                 \"209253_at\"                  \n",
+       "[18221] \"210440_s_at\"                 \"210441_at\"                  \n",
+       "[18223] \"208828_at\"                   \"209787_s_at\"                \n",
+       "[18225] \"209786_at\"                   \"206252_s_at\"                \n",
+       "[18227] \"206251_s_at\"                 \"206250_x_at\"                \n",
+       "[18229] \"205624_at\"                   \"208174_x_at\"                \n",
+       "[18231] \"210159_s_at\"                 \"208170_s_at\"                \n",
+       "[18233] \"210044_s_at\"                 \"207799_x_at\"                \n",
+       "[18235] \"207723_s_at\"                 \"208763_s_at\"                \n",
+       "[18237] \"207001_x_at\"                 \"209989_at\"                  \n",
+       "[18239] \"210177_at\"                   \"209350_s_at\"                \n",
+       "[18241] \"205597_at\"                   \"207415_at\"                  \n",
+       "[18243] \"208173_at\"                   \"209871_s_at\"                \n",
+       "[18245] \"209870_s_at\"                 \"207817_at\"                  \n",
+       "[18247] \"207193_at\"                   \"207387_s_at\"                \n",
+       "[18249] \"208903_at\"                   \"208904_s_at\"                \n",
+       "[18251] \"208902_s_at\"                 \"206065_s_at\"                \n",
+       "[18253] \"209350_s_at\"                 \"207234_at\"                  \n",
+       "[18255] \"207751_at\"                   \"205572_at\"                  \n",
+       "[18257] \"209490_s_at\"                 \"206719_at\"                  \n",
+       "[18259] \"210416_s_at\"                 \"205517_at\"                  \n",
+       "[18261] \"206354_at\"                   \"205759_s_at\"                \n",
+       "[18263] \"208440_at\"                   \"208316_s_at\"                \n",
+       "[18265] \"205976_at\"                   \"209826_at\"                  \n",
+       "[18267] \"208469_s_at\"                 \"206328_at\"                  \n",
+       "[18269] \"206327_s_at\"                 \"206680_at\"                  \n",
+       "[18271] \"209826_at\"                   \"208469_s_at\"                \n",
+       "[18273] \"208563_x_at\"                 \"210038_at\"                  \n",
+       "[18275] \"210039_s_at\"                 \"205831_at\"                  \n",
+       "[18277] \"209606_at\"                   \"209857_s_at\"                \n",
+       "[18279] \"205662_at\"                   \"207292_s_at\"                \n",
+       "[18281] \"207616_s_at\"                 \"209451_at\"                  \n",
+       "[18283] \"210458_s_at\"                 \"209782_s_at\"                \n",
+       "[18285] \"209783_at\"                   \"209726_at\"                  \n",
+       "[18287] \"210029_at\"                   \"209111_at\"                  \n",
+       "[18289] \"209111_at\"                   \"207707_s_at\"                \n",
+       "[18291] \"206331_at\"                   \"207708_at\"                  \n",
+       "[18293] \"209962_at\"                   \"209963_s_at\"                \n",
+       "[18295] \"208894_at\"                   \"209257_s_at\"                \n",
+       "[18297] \"209258_s_at\"                 \"209259_s_at\"                \n",
+       "[18299] \"210060_at\"                   \"208066_s_at\"                \n",
+       "[18301] \"208336_s_at\"                 \"209441_at\"                  \n",
+       "[18303] \"209026_x_at\"                 \"207426_s_at\"                \n",
+       "[18305] \"208749_x_at\"                 \"210142_x_at\"                \n",
+       "[18307] \"208748_s_at\"                 \"207527_at\"                  \n",
+       "[18309] \"209716_at\"                   \"207082_at\"                  \n",
+       "[18311] \"209294_x_at\"                 \"210405_x_at\"                \n",
+       "[18313] \"209295_at\"                   \"207204_at\"                  \n",
+       "[18315] \"206307_s_at\"                 \"209524_at\"                  \n",
+       "[18317] \"209526_s_at\"                 \"209525_at\"                  \n",
+       "[18319] \"210309_at\"                   \"206581_at\"                  \n",
+       "[18321] \"205492_s_at\"                 \"205493_s_at\"                \n",
+       "[18323] \"210484_s_at\"                 \"210483_at\"                  \n",
+       "[18325] \"210484_s_at\"                 \"206222_at\"                  \n",
+       "[18327] \"206338_at\"                   \"207725_at\"                  \n",
+       "[18329] \"209372_x_at\"                 \"205477_s_at\"                \n",
+       "[18331] \"208045_at\"                   \"206417_at\"                  \n",
+       "[18333] \"209177_at\"                   \"205845_at\"                  \n",
+       "[18335] \"206157_at\"                   \"207644_at\"                  \n",
+       "[18337] \"209372_x_at\"                 \"205647_at\"                  \n",
+       "[18339] \"207841_at\"                   \"206709_x_at\"                \n",
+       "[18341] \"206588_at\"                   \"207587_at\"                  \n",
+       "[18343] \"207044_at\"                   \"207972_at\"                  \n",
+       "[18345] \"209069_s_at\"                 \"209053_s_at\"                \n",
+       "[18347] \"209054_s_at\"                 \"209052_s_at\"                \n",
+       "[18349] \"206980_s_at\"                 \"210379_s_at\"                \n",
+       "[18351] \"205683_x_at\"                 \"210084_x_at\"                \n",
+       "[18353] \"207134_x_at\"                 \"209426_s_at\"                \n",
+       "[18355] \"209424_s_at\"                 \"209425_at\"                  \n",
+       "[18357] \"209117_at\"                   \"207853_s_at\"                \n",
+       "[18359] \"205516_x_at\"                 \"205683_x_at\"                \n",
+       "[18361] \"210084_x_at\"                 \"207134_x_at\"                \n",
+       "[18363] \"207664_at\"                   \"209825_s_at\"                \n",
+       "[18365] \"206980_s_at\"                 \"207715_at\"                  \n",
+       "[18367] \"208760_at\"                   \"206366_x_at\"                \n",
+       "[18369] \"210406_s_at\"                 \"206158_s_at\"                \n",
+       "[18371] \"206789_s_at\"                 \"206092_x_at\"                \n",
+       "[18373] \"207494_s_at\"                 \"209375_at\"                  \n",
+       "[18375] \"207188_at\"                   \"209676_at\"                  \n",
+       "[18377] \"208044_s_at\"                 \"209454_s_at\"                \n",
+       "[18379] \"205617_at\"                   \"207136_at\"                  \n",
+       "[18381] \"207272_at\"                   \"206705_at\"                  \n",
+       "[18383] \"207922_s_at\"                 \"206483_at\"                  \n",
+       "[18385] \"205954_at\"                   \"205504_at\"                  \n",
+       "[18387] \"209496_at\"                   \"209699_x_at\"                \n",
+       "[18389] \"209932_s_at\"                 \"208956_x_at\"                \n",
+       "[18391] \"208955_at\"                   \"209430_at\"                  \n",
+       "[18393] \"207892_at\"                   \"209539_at\"                  \n",
+       "[18395] \"207633_s_at\"                 \"207632_at\"                  \n",
+       "[18397] \"208650_s_at\"                 \"208863_s_at\"                \n",
+       "[18399] \"209964_s_at\"                 \"208863_s_at\"                \n",
+       "[18401] \"207259_at\"                   \"206439_at\"                  \n",
+       "[18403] \"210340_s_at\"                 \"207085_x_at\"                \n",
+       "[18405] \"209335_at\"                   \"208246_x_at\"                \n",
+       "[18407] \"208246_x_at\"                 \"210218_s_at\"                \n",
+       "[18409] \"209537_at\"                   \"207162_s_at\"                \n",
+       "[18411] \"206214_at\"                   \"208319_s_at\"                \n",
+       "[18413] \"206170_at\"                   \"208301_at\"                  \n",
+       "[18415] \"209219_at\"                   \"207517_at\"                  \n",
+       "[18417] \"208093_s_at\"                 \"205484_at\"                  \n",
+       "[18419] \"208534_s_at\"                 \"208534_s_at\"                \n",
+       "[18421] \"209275_s_at\"                 \"207225_at\"                  \n",
+       "[18423] \"208534_s_at\"                 \"205594_at\"                  \n",
+       "[18425] \"207152_at\"                   \"205929_at\"                  \n",
+       "[18427] \"206365_at\"                   \"206366_x_at\"                \n",
+       "[18429] \"206213_at\"                   \"206692_at\"                  \n",
+       "[18431] \"209572_s_at\"                 \"206859_s_at\"                \n",
+       "[18433] \"207396_s_at\"                 \"206093_x_at\"                \n",
+       "[18435] \"208609_s_at\"                 \"208451_s_at\"                \n",
+       "[18437] \"206728_at\"                   \"209029_at\"                  \n",
+       "[18439] \"210046_s_at\"                 \"210045_at\"                  \n",
+       "[18441] \"209929_s_at\"                 \"210231_x_at\"                \n",
+       "[18443] \"207532_at\"                   \"206838_at\"                  \n",
+       "[18445] \"208337_s_at\"                 \"210174_at\"                  \n",
+       "[18447] \"208343_s_at\"                 \"206239_s_at\"                \n",
+       "[18449] \"205607_s_at\"                 \"209869_at\"                  \n",
+       "[18451] \"210053_at\"                   \"206140_at\"                  \n",
+       "[18453] \"209755_at\"                   \"208841_s_at\"                \n",
+       "[18455] \"208840_s_at\"                 \"206383_s_at\"                \n",
+       "[18457] \"206486_at\"                   \"208551_at\"                  \n",
+       "[18459] \"208506_at\"                   \"208523_x_at\"                \n",
+       "[18461] \"209846_s_at\"                 \"206431_x_at\"                \n",
+       "[18463] \"210370_s_at\"                 \"210164_at\"                  \n",
+       "[18465] \"208625_s_at\"                 \"208624_s_at\"                \n",
+       "[18467] \"210312_s_at\"                 \"210477_x_at\"                \n",
+       "[18469] \"207096_at\"                   \"209305_s_at\"                \n",
+       "[18471] \"207574_s_at\"                 \"209304_x_at\"                \n",
+       "[18473] \"207096_at\"                   \"208607_s_at\"                \n",
+       "[18475] \"208607_s_at\"                 \"208540_x_at\"                \n",
+       "[18477] \"205994_at\"                   \"206919_at\"                  \n",
+       "[18479] \"207485_x_at\"                 \"209770_at\"                  \n",
+       "[18481] \"206047_at\"                   \"205644_s_at\"                \n",
+       "[18483] \"208336_s_at\"                 \"207157_s_at\"                \n",
+       "[18485] \"206620_at\"                   \"207495_at\"                  \n",
+       "[18487] \"209084_s_at\"                 \"206076_at\"                  \n",
+       "[18489] \"210087_s_at\"                 \"205642_at\"                  \n",
+       "[18491] \"208372_s_at\"                 \"207325_x_at\"                \n",
+       "[18493] \"208824_x_at\"                 \"208823_s_at\"                \n",
+       "[18495] \"207239_s_at\"                 \"206298_at\"                  \n",
+       "[18497] \"205943_at\"                   \"206852_at\"                  \n",
+       "[18499] \"205712_at\"                   \"208152_s_at\"                \n",
+       "[18501] \"210100_s_at\"                 \"205896_at\"                  \n",
+       "[18503] \"208871_at\"                   \"208723_at\"                  \n",
+       "[18505] \"209994_s_at\"                 \"207819_s_at\"                \n",
+       "[18507] \"208186_s_at\"                 \"209215_at\"                  \n",
+       "[18509] \"206687_s_at\"                 \"209405_s_at\"                \n",
+       "[18511] \"209498_at\"                   \"206576_s_at\"                \n",
+       "[18513] \"207531_at\"                   \"209646_x_at\"                \n",
+       "[18515] \"209645_s_at\"                 \"208554_at\"                  \n",
+       "[18517] \"205684_s_at\"                 \"209994_s_at\"                \n",
+       "[18519] \"209993_at\"                   \"208365_s_at\"                \n",
+       "[18521] \"206676_at\"                   \"208215_x_at\"                \n",
+       "[18523] \"210050_at\"                   \"209134_s_at\"                \n",
+       "[18525] \"209523_at\"                   \"206211_at\"                  \n",
+       "[18527] \"205643_s_at\"                 \"210116_at\"                  \n",
+       "[18529] \"207307_at\"                   \"207917_at\"                  \n",
+       "[18531] \"207917_at\"                   \"209688_s_at\"                \n",
+       "[18533] \"209689_at\"                   \"205728_at\"                  \n",
+       "[18535] \"205955_at\"                   \"206759_at\"                  \n",
+       "[18537] \"206760_s_at\"                 \"208922_s_at\"                \n",
+       "[18539] \"208830_s_at\"                 \"208831_x_at\"                \n",
+       "[18541] \"208420_x_at\"                 \"210424_s_at\"                \n",
+       "[18543] \"210425_x_at\"                 \"208797_s_at\"                \n",
+       "[18545] \"206426_at\"                   \"206427_s_at\"                \n",
+       "[18547] \"208922_s_at\"                 \"209951_s_at\"                \n",
+       "[18549] \"209952_s_at\"                 \"207977_s_at\"                \n",
+       "[18551] \"209860_s_at\"                 \"210424_s_at\"                \n",
+       "[18553] \"206536_s_at\"                 \"209071_s_at\"                \n",
+       "[18555] \"209070_s_at\"                 \"207276_at\"                  \n",
+       "[18557] \"207620_s_at\"                 \"206584_at\"                  \n",
+       "[18559] \"205968_at\"                   \"205991_s_at\"                \n",
+       "[18561] \"205736_at\"                   \"210143_at\"                  \n",
+       "[18563] \"206245_s_at\"                 \"207277_at\"                  \n",
+       "[18565] \"207278_s_at\"                 \"207961_x_at\"                \n",
+       "[18567] \"207097_s_at\"                 \"208754_s_at\"                \n",
+       "[18569] \"208753_s_at\"                 \"208752_x_at\"                \n",
+       "[18571] \"207393_at\"                   \"208573_s_at\"                \n",
+       "[18573] \"206160_at\"                   \"205905_s_at\"                \n",
+       "[18575] \"205904_at\"                   \"206955_at\"                  \n",
+       "[18577] \"208834_x_at\"                 \"208825_x_at\"                \n",
+       "[18579] \"208459_s_at\"                 \"206082_at\"                  \n",
+       "[18581] \"208852_s_at\"                 \"208853_s_at\"                \n",
+       "[18583] \"207349_s_at\"                 \"206765_at\"                  \n",
+       "[18585] \"207896_s_at\"                 \"206798_x_at\"                \n",
+       "[18587] \"209527_at\"                   \"209248_at\"                  \n",
+       "[18589] \"209249_s_at\"                 \"205658_s_at\"                \n",
+       "[18591] \"210402_at\"                   \"210403_s_at\"                \n",
+       "[18593] \"209959_at\"                   \"207978_s_at\"                \n",
+       "[18595] \"207070_at\"                   \"209736_at\"                  \n",
+       "[18597] \"209230_s_at\"                 \"210481_s_at\"                \n",
+       "[18599] \"207995_s_at\"                 \"207122_x_at\"                \n",
+       "[18601] \"205830_at\"                   \"205967_at\"                  \n",
+       "[18603] \"207963_at\"                   \"209790_s_at\"                \n",
+       "[18605] \"209101_at\"                   \"207032_s_at\"                \n",
+       "[18607] \"205906_at\"                   \"208314_at\"                  \n",
+       "[18609] \"206827_s_at\"                 \"208329_at\"                  \n",
+       "[18611] \"206579_at\"                   \"208646_at\"                  \n",
+       "[18613] \"208645_s_at\"                 \"205675_at\"                  \n",
+       "[18615] \"208267_at\"                   \"205638_at\"                  \n",
+       "[18617] \"210123_s_at\"                 \"208015_at\"                  \n",
+       "[18619] \"208214_at\"                   \"206077_at\"                  \n",
+       "[18621] \"207940_x_at\"                 \"208243_s_at\"                \n",
+       "[18623] \"206313_at\"                   \"208431_s_at\"                \n",
+       "[18625] \"207630_s_at\"                 \"206509_at\"                  \n",
+       "[18627] \"208461_at\"                   \"209148_at\"                  \n",
+       "[18629] \"206747_at\"                   \"210137_s_at\"                \n",
+       "[18631] \"206286_s_at\"                 \"207661_s_at\"                \n",
+       "[18633] \"209166_s_at\"                 \"209166_s_at\"                \n",
+       "[18635] \"205847_at\"                   \"208371_s_at\"                \n",
+       "[18637] \"205503_at\"                   \"205810_s_at\"                \n",
+       "[18639] \"205809_s_at\"                 \"209164_s_at\"                \n",
+       "[18641] \"209163_at\"                   \"207986_x_at\"                \n",
+       "[18643] \"207883_s_at\"                 \"210215_at\"                  \n",
+       "[18645] \"206272_at\"                   \"207831_x_at\"                \n",
+       "[18647] \"205911_at\"                   \"206649_s_at\"                \n",
+       "[18649] \"208954_s_at\"                 \"208953_at\"                  \n",
+       "[18651] \"208952_s_at\"                 \"210205_at\"                  \n",
+       "[18653] \"209196_at\"                   \"207797_s_at\"                \n",
+       "[18655] \"206367_at\"                   \"205563_at\"                  \n",
+       "[18657] \"206846_s_at\"                 \"207432_at\"                  \n",
+       "[18659] \"206014_at\"                   \"206013_s_at\"                \n",
+       "[18661] \"209749_s_at\"                 \"206472_s_at\"                \n",
+       "[18663] \"207181_s_at\"                 \"209455_at\"                  \n",
+       "[18665] \"209456_s_at\"                 \"205530_at\"                  \n",
+       "[18667] \"209110_s_at\"                 \"207952_at\"                  \n",
+       "[18669] \"209804_at\"                   \"209749_s_at\"                \n",
+       "[18671] \"209482_at\"                   \"207257_at\"                  \n",
+       "[18673] \"206826_at\"                   \"207370_at\"                  \n",
+       "[18675] \"209735_at\"                   \"207248_at\"                  \n",
+       "[18677] \"209680_s_at\"                 \"209699_x_at\"                \n",
+       "[18679] \"207098_s_at\"                 \"210466_s_at\"                \n",
+       "[18681] \"209669_s_at\"                 \"209369_at\"                  \n",
+       "[18683] \"208974_x_at\"                 \"208975_s_at\"                \n",
+       "[18685] \"210330_at\"                   \"210329_s_at\"                \n",
+       "[18687] \"210465_s_at\"                 \"209364_at\"                  \n",
+       "[18689] \"206845_s_at\"                 \"207537_at\"                  \n",
+       "[18691] \"209909_s_at\"                 \"209908_s_at\"                \n",
+       "[18693] \"209129_at\"                   \"206374_at\"                  \n",
+       "[18695] \"207301_at\"                   \"206263_at\"                  \n",
+       "[18697] \"209266_s_at\"                 \"209267_s_at\"                \n",
+       "[18699] \"209484_s_at\"                 \"208981_at\"                  \n",
+       "[18701] \"208982_at\"                   \"208983_s_at\"                \n",
+       "[18703] \"207375_s_at\"                 \"206286_s_at\"                \n",
+       "[18705] \"210446_at\"                   \"205811_at\"                  \n",
+       "[18707] \"210263_at\"                   \"207563_s_at\"                \n",
+       "[18709] \"207564_x_at\"                 \"209240_at\"                  \n",
+       "[18711] \"205596_s_at\"                 \"206101_at\"                  \n",
+       "[18713] \"205666_at\"                   \"207405_s_at\"                \n",
+       "[18715] \"208881_x_at\"                 \"208047_s_at\"                \n",
+       "[18717] \"209272_at\"                   \"208247_at\"                  \n",
+       "[18719] \"207655_s_at\"                 \"206055_s_at\"                \n",
+       "[18721] \"208958_at\"                   \"208959_s_at\"                \n",
+       "[18723] \"208957_at\"                   \"209462_at\"                  \n",
+       "[18725] \"205634_x_at\"                 \"208473_s_at\"                \n",
+       "[18727] \"206681_x_at\"                 \"206891_at\"                  \n",
+       "[18729] \"206118_at\"                   \"205749_at\"                  \n",
+       "[18731] \"207930_at\"                   \"210428_s_at\"                \n",
+       "[18733] \"207911_s_at\"                 \"207575_at\"                  \n",
+       "[18735] \"206716_at\"                   \"210145_at\"                  \n",
+       "[18737] \"206321_at\"                   \"208901_s_at\"                \n",
+       "[18739] \"205926_at\"                   \"206094_x_at\"                \n",
+       "[18741] \"207126_x_at\"                 \"208596_s_at\"                \n",
+       "[18743] \"209553_at\"                   \"208596_s_at\"                \n",
+       "[18745] \"206094_x_at\"                 \"207126_x_at\"                \n",
+       "[18747] \"206397_x_at\"                 \"207890_s_at\"                \n",
+       "[18749] \"207289_at\"                   \"206094_x_at\"                \n",
+       "[18751] \"207126_x_at\"                 \"208596_s_at\"                \n",
+       "[18753] \"209992_at\"                   \"207931_s_at\"                \n",
+       "[18755] \"209925_at\"                   \"207121_s_at\"                \n",
+       "[18757] \"209202_s_at\"                 \"208017_s_at\"                \n",
+       "[18759] \"208755_x_at\"                 \"209096_at\"                  \n",
+       "[18761] \"208388_at\"                   \"208385_at\"                  \n",
+       "[18763] \"206599_at\"                   \"206600_s_at\"                \n",
+       "[18765] \"208286_x_at\"                 \"209934_s_at\"                \n",
+       "[18767] \"209935_at\"                   \"208612_at\"                  \n",
+       "[18769] \"206049_at\"                   \"208738_x_at\"                \n",
+       "[18771] \"208739_x_at\"                 \"210094_s_at\"                \n",
+       "[18773] \"209134_s_at\"                 \"207821_s_at\"                \n",
+       "[18775] \"208820_at\"                   \"207871_s_at\"                \n",
+       "[18777] \"207524_at\"                   \"207871_s_at\"                \n",
+       "[18779] \"207524_at\"                   \"208862_s_at\"                \n",
+       "[18781] \"208407_s_at\"                 \"208180_s_at\"                \n",
+       "[18783] \"207460_at\"                   \"208508_s_at\"                \n",
+       "[18785] \"207364_at\"                   \"209433_s_at\"                \n",
+       "[18787] \"209434_s_at\"                 \"208779_x_at\"                \n",
+       "[18789] \"207169_x_at\"                 \"209411_s_at\"                \n",
+       "[18791] \"209270_at\"                   \"209774_x_at\"                \n",
+       "[18793] \"205704_s_at\"                 \"209286_at\"                  \n",
+       "[18795] \"209287_s_at\"                 \"209288_s_at\"                \n",
+       "[18797] \"210363_s_at\"                 \"210364_at\"                  \n",
+       "[18799] \"210253_at\"                   \"207180_s_at\"                \n",
+       "[18801] \"209448_at\"                   \"206099_at\"                  \n",
+       "[18803] \"206645_s_at\"                 \"206644_at\"                  \n",
+       "[18805] \"205645_at\"                   \"209563_x_at\"                \n",
+       "[18807] \"207876_s_at\"                 \"207342_at\"                  \n",
+       "[18809] \"210240_s_at\"                 \"208175_s_at\"                \n",
+       "[18811] \"209875_s_at\"                 \"206955_at\"                  \n",
+       "[18813] \"210022_at\"                   \"210023_s_at\"                \n",
+       "[18815] \"208813_at\"                   \"210355_at\"                  \n",
+       "[18817] \"206300_s_at\"                 \"207410_s_at\"                \n",
+       "[18819] \"206317_s_at\"                 \"207328_at\"                  \n",
+       "[18821] \"206534_at\"                   \"209824_s_at\"                \n",
+       "[18823] \"208758_at\"                   \"207624_s_at\"                \n",
+       "[18825] \"209536_s_at\"                 \"209891_at\"                  \n",
+       "[18827] \"208288_at\"                   \"207706_at\"                  \n",
+       "[18829] \"208997_s_at\"                 \"208998_at\"                  \n",
+       "[18831] \"210333_at\"                   \"209127_s_at\"                \n",
+       "[18833] \"209128_s_at\"                 \"205710_at\"                  \n",
+       "[18835] \"206242_at\"                   \"208827_at\"                  \n",
+       "[18837] \"209643_s_at\"                 \"208310_s_at\"                \n",
+       "[18839] \"209075_s_at\"                 \"207979_s_at\"                \n",
+       "[18841] \"208105_at\"                   \"209241_x_at\"                \n",
+       "[18843] \"206559_x_at\"                 \"209545_s_at\"                \n",
+       "[18845] \"209544_at\"                   \"206339_at\"                  \n",
+       "[18847] \"207964_x_at\"                 \"208182_x_at\"                \n",
+       "[18849] \"207932_at\"                   \"208344_x_at\"                \n",
+       "[18851] \"208375_at\"                   \"208086_s_at\"                \n",
+       "[18853] \"207660_at\"                   \"207245_at\"                  \n",
+       "[18855] \"207278_s_at\"                 \"205680_at\"                  \n",
+       "[18857] \"207392_x_at\"                 \"210377_at\"                  \n",
+       "[18859] \"205942_s_at\"                 \"206689_x_at\"                \n",
+       "[18861] \"209192_x_at\"                 \"206555_s_at\"                \n",
+       "[18863] \"208107_s_at\"                 \"207274_at\"                  \n",
+       "[18865] \"205757_at\"                   \"209653_at\"                  \n",
+       "[18867] \"209867_s_at\"                 \"209866_s_at\"                \n",
+       "[18869] \"206341_at\"                   \"205829_at\"                  \n",
+       "[18871] \"209024_s_at\"                 \"206364_at\"                  \n",
+       "[18873] \"207333_at\"                   \"209883_at\"                  \n",
+       "[18875] \"206604_at\"                   \"205956_x_at\"                \n",
+       "[18877] \"209460_at\"                   \"206527_at\"                  \n",
+       "[18879] \"209459_s_at\"                 \"207395_at\"                  \n",
+       "[18881] \"206445_s_at\"                 \"207039_at\"                  \n",
+       "[18883] \"209644_x_at\"                 \"208694_at\"                  \n",
+       "[18885] \"207530_s_at\"                 \"207673_at\"                  \n",
+       "[18887] \"210334_x_at\"                 \"209226_s_at\"                \n",
+       "[18889] \"207657_x_at\"                 \"209225_x_at\"                \n",
+       "[18891] \"208516_at\"                   \"206507_at\"                  \n",
+       "[18893] \"208789_at\"                   \"208790_s_at\"                \n",
+       "[18895] \"209282_at\"                   \"208992_s_at\"                \n",
+       "[18897] \"208991_at\"                   \"206458_s_at\"                \n",
+       "[18899] \"206459_s_at\"                 \"209227_at\"                  \n",
+       "[18901] \"209228_x_at\"                 \"205502_at\"                  \n",
+       "[18903] \"208285_at\"                   \"210431_at\"                  \n",
+       "[18905] \"206330_s_at\"                 \"207140_at\"                  \n",
+       "[18907] \"206296_x_at\"                 \"208202_s_at\"                \n",
+       "[18909] \"209155_s_at\"                 \"208583_x_at\"                \n",
+       "[18911] \"208583_x_at\"                 \"208515_at\"                  \n",
+       "[18913] \"208580_x_at\"                 \"208580_x_at\"                \n",
+       "[18915] \"205859_at\"                   \"206110_at\"                  \n",
+       "[18917] \"208302_at\"                   \"205717_x_at\"                \n",
+       "[18919] \"209079_x_at\"                 \"205717_x_at\"                \n",
+       "[18921] \"209079_x_at\"                 \"205717_x_at\"                \n",
+       "[18923] \"209079_x_at\"                 \"205717_x_at\"                \n",
+       "[18925] \"209079_x_at\"                 \"209636_at\"                  \n",
+       "[18927] \"207535_s_at\"                 \"207024_at\"                  \n",
+       "[18929] \"205717_x_at\"                 \"209079_x_at\"                \n",
+       "[18931] \"209514_s_at\"                 \"209515_s_at\"                \n",
+       "[18933] \"206916_x_at\"                 \"205717_x_at\"                \n",
+       "[18935] \"209079_x_at\"                 \"205717_x_at\"                \n",
+       "[18937] \"209079_x_at\"                 \"205717_x_at\"                \n",
+       "[18939] \"209079_x_at\"                 \"205717_x_at\"                \n",
+       "[18941] \"209079_x_at\"                 \"205717_x_at\"                \n",
+       "[18943] \"209079_x_at\"                 \"205717_x_at\"                \n",
+       "[18945] \"209079_x_at\"                 \"210368_at\"                  \n",
+       "[18947] \"205717_x_at\"                 \"209079_x_at\"                \n",
+       "[18949] \"208805_at\"                   \"205717_x_at\"                \n",
+       "[18951] \"209079_x_at\"                 \"205717_x_at\"                \n",
+       "[18953] \"209079_x_at\"                 \"205717_x_at\"                \n",
+       "[18955] \"209079_x_at\"                 \"208805_at\"                  \n",
+       "[18957] \"208602_x_at\"                 \"205717_x_at\"                \n",
+       "[18959] \"209079_x_at\"                 \"209384_at\"                  \n",
+       "[18961] \"209385_s_at\"                 \"208128_x_at\"                \n",
+       "[18963] \"207682_s_at\"                 \"209665_at\"                  \n",
+       "[18965] \"205717_x_at\"                 \"209079_x_at\"                \n",
+       "[18967] \"205717_x_at\"                 \"209079_x_at\"                \n",
+       "[18969] \"206679_at\"                   \"205590_at\"                  \n",
+       "[18971] \"205501_at\"                   \"205501_at\"                  \n",
+       "[18973] \"210129_s_at\"                 \"208381_s_at\"                \n",
+       "[18975] \"205717_x_at\"                 \"209079_x_at\"                \n",
+       "[18977] \"206875_s_at\"                 \"206874_s_at\"                \n",
+       "[18979] \"205717_x_at\"                 \"209079_x_at\"                \n",
+       "[18981] \"207672_at\"                   \"207144_s_at\"                \n",
+       "[18983] \"206400_at\"                   \"206400_at\"                  \n",
+       "[18985] \"209569_x_at\"                 \"209570_s_at\"                \n",
+       "[18987] \"205923_at\"                   \"208598_s_at\"                \n",
+       "[18989] \"208599_at\"                   \"209480_at\"                  \n",
+       "[18991] \"207919_at\"                   \"206812_at\"                  \n",
+       "[18993] \"205717_x_at\"                 \"209079_x_at\"                \n",
+       "[18995] \"206452_x_at\"                 \"208874_x_at\"                \n",
+       "[18997] \"210353_s_at\"                 \"210480_s_at\"                \n",
+       "[18999] \"208690_s_at\"                 \"208036_at\"                  \n",
+       "[19001] \"207868_at\"                   \"209879_at\"                  \n",
+       "[19003] \"209880_s_at\"                 \"208126_s_at\"                \n",
+       "[19005] \"207642_at\"                   \"206694_at\"                  \n",
+       "[19007] \"206686_at\"                   \"206958_s_at\"                \n",
+       "[19009] \"209368_at\"                   \"210158_at\"                  \n",
+       "[19011] \"205627_at\"                   \"209018_s_at\"                \n",
+       "[19013] \"209019_s_at\"                 \"208674_x_at\"                \n",
+       "[19015] \"208480_s_at\"                 \"207958_at\"                  \n",
+       "[19017] \"210121_at\"                   \"210382_at\"                  \n",
+       "[19019] \"207944_at\"                   \"207582_at\"                  \n",
+       "[19021] \"208310_s_at\"                 \"210242_x_at\"                \n",
+       "[19023] \"206094_x_at\"                 \"207126_x_at\"                \n",
+       "[19025] \"208596_s_at\"                 \"207785_s_at\"                \n",
+       "[19027] \"210469_at\"                   \"206085_s_at\"                \n",
+       "[19029] \"206389_s_at\"                 \"209593_s_at\"                \n",
+       "[19031] \"207042_at\"                   \"207542_s_at\"                \n",
+       "[19033] \"209047_at\"                   \"207826_s_at\"                \n",
+       "[19035] \"207825_s_at\"                 \"208791_at\"                  \n",
+       "[19037] \"208792_s_at\"                 \"210169_at\"                  \n",
+       "[19039] \"205614_x_at\"                 \"208904_s_at\"                \n",
+       "[19041] \"209624_s_at\"                 \"209623_at\"                  \n",
+       "[19043] \"206399_x_at\"                 \"210081_at\"                  \n",
+       "[19045] \"209446_s_at\"                 \"207475_at\"                  \n",
+       "[19047] \"206785_s_at\"                 \"207680_x_at\"                \n",
+       "[19049] \"207679_at\"                   \"209944_at\"                  \n",
+       "[19051] \"208021_s_at\"                 \"209085_x_at\"                \n",
+       "[19053] \"209944_at\"                   \"206350_at\"                  \n",
+       "[19055] \"205753_at\"                   \"206149_at\"                  \n",
+       "[19057] \"207957_s_at\"                 \"209685_s_at\"                \n",
+       "[19059] \"206638_at\"                   \"208904_s_at\"                \n",
+       "[19061] \"206530_at\"                   \"209812_x_at\"                \n",
+       "[19063] \"209811_at\"                   \"208050_s_at\"                \n",
+       "[19065] \"206384_at\"                   \"207976_at\"                  \n",
+       "[19067] \"206690_at\"                   \"207704_s_at\"                \n",
+       "[19069] \"210132_at\"                   \"205977_s_at\"                \n",
+       "[19071] \"210326_at\"                   \"206957_at\"                  \n",
+       "[19073] \"210327_s_at\"                 \"209873_s_at\"                \n",
+       "[19075] \"209872_s_at\"                 \"208286_x_at\"                \n",
+       "[19077] \"210265_x_at\"                 \"207870_at\"                  \n",
+       "[19079] \"205901_at\"                   \"205852_at\"                  \n",
+       "[19081] \"207260_at\"                   \"210112_at\"                  \n",
+       "[19083] \"208782_at\"                   \"206243_at\"                  \n",
+       "[19085] \"209561_at\"                   \"206277_at\"                  \n",
+       "[19087] \"208548_at\"                   \"208344_x_at\"                \n",
+       "[19089] \"207964_x_at\"                 \"208261_x_at\"                \n",
+       "[19091] \"208373_s_at\"                 \"209998_at\"                  \n",
+       "[19093] \"207023_x_at\"                 \"208269_s_at\"                \n",
+       "[19095] \"205997_at\"                   \"208268_at\"                  \n",
+       "[19097] \"206621_s_at\"                 \"207811_at\"                  \n",
+       "[19099] \"210386_s_at\"                 \"209093_s_at\"                \n",
+       "[19101] \"207511_s_at\"                 \"205840_x_at\"                \n",
+       "[19103] \"208068_x_at\"                 \"206886_x_at\"                \n",
+       "[19105] \"208069_x_at\"                 \"206885_x_at\"                \n",
+       "[19107] \"206450_at\"                   \"206134_at\"                  \n",
+       "[19109] \"210424_s_at\"                 \"208798_x_at\"                \n",
+       "[19111] \"210425_x_at\"                 \"208797_s_at\"                \n",
+       "[19113] \"205840_x_at\"                 \"208068_x_at\"                \n",
+       "[19115] \"206886_x_at\"                 \"208069_x_at\"                \n",
+       "[19117] \"206885_x_at\"                 \"206981_at\"                  \n",
+       "[19119] \"205912_at\"                   \"206324_s_at\"                \n",
+       "[19121] \"208526_at\"                   \"208525_s_at\"                \n",
+       "[19123] \"206042_x_at\"                 \"206135_at\"                  \n",
+       "[19125] \"207061_at\"                   \"207858_s_at\"                \n",
+       "[19127] \"210451_at\"                   \"206936_x_at\"                \n",
+       "[19129] \"206316_s_at\"                 \"209543_s_at\"                \n",
+       "[19131] \"209567_at\"                   \"209567_at\"                  \n",
+       "[19133] \"206430_at\"                   \"210182_at\"                  \n",
+       "[19135] \"206145_at\"                   \"206146_s_at\"                \n",
+       "[19137] \"210211_s_at\"                 \"207734_at\"                  \n",
+       "[19139] \"206230_at\"                   \"209165_at\"                  \n",
+       "[19141] \"208784_s_at\"                 \"209559_at\"                  \n",
+       "[19143] \"209558_s_at\"                 \"210346_s_at\"                \n",
+       "[19145] \"205494_at\"                   \"209653_at\"                  \n",
+       "[19147] \"209469_at\"                   \"209470_s_at\"                \n",
+       "[19149] \"207727_s_at\"                 \"209216_at\"                  \n",
+       "[19151] \"209217_s_at\"                 \"209308_s_at\"                \n",
+       "[19153] \"205486_at\"                   \"207558_s_at\"                \n",
+       "[19155] \"205990_s_at\"                 \"207499_x_at\"                \n",
+       "[19157] \"208218_s_at\"                 \"208223_s_at\"                \n",
+       "[19159] \"208222_at\"                   \"208219_at\"                  \n",
+       "[19161] \"206540_at\"                   \"210095_s_at\"                \n",
+       "[19163] \"209178_at\"                   \"208814_at\"                  \n",
+       "[19165] \"208815_x_at\"                 \"210226_at\"                  \n",
+       "[19167] \"207815_at\"                   \"206390_x_at\"                \n",
+       "[19169] \"206955_at\"                   \"206390_x_at\"                \n",
+       "[19171] \"209203_s_at\"                 \"207844_at\"                  \n",
+       "[19173] \"209622_at\"                   \"207850_at\"                  \n",
+       "[19175] \"207027_at\"                   \"206517_at\"                  \n",
+       "[19177] \"207490_at\"                   \"206412_at\"                  \n",
+       "[19179] \"205538_at\"                   \"209639_s_at\"                \n",
+       "[19181] \"209637_s_at\"                 \"205823_at\"                  \n",
+       "[19183] \"207356_at\"                   \"207356_at\"                  \n",
+       "[19185] \"207356_at\"                   \"210106_at\"                  \n",
+       "[19187] \"209577_at\"                   \"210106_at\"                  \n",
+       "[19189] \"205716_at\"                   \"205632_s_at\"                \n",
+       "[19191] \"208476_s_at\"                 \"208475_at\"                  \n",
+       "[19193] \"209190_s_at\"                 \"209667_at\"                  \n",
+       "[19195] \"209668_x_at\"                 \"205551_at\"                  \n",
+       "[19197] \"208921_s_at\"                 \"208920_at\"                  \n",
+       "[19199] \"206734_at\"                   \"209604_s_at\"                \n",
+       "[19201] \"209603_at\"                   \"209602_s_at\"                \n",
+       "[19203] \"208822_s_at\"                 \"210361_s_at\"                \n",
+       "[19205] \"206788_s_at\"                 \"206500_s_at\"                \n",
+       "[19207] \"208517_x_at\"                 \"208227_x_at\"                \n",
+       "[19209] \"208226_x_at\"                 \"206615_s_at\"                \n",
+       "[19211] \"208237_x_at\"                 \"206616_s_at\"                \n",
+       "[19213] \"207951_at\"                   \"209198_s_at\"                \n",
+       "[19215] \"209197_at\"                   \"206864_s_at\"                \n",
+       "[19217] \"206865_at\"                   \"205633_s_at\"                \n",
+       "[19219] \"210001_s_at\"                 \"209999_x_at\"                \n",
+       "[19221] \"210165_at\"                   \"206549_at\"                  \n",
+       "[19223] \"209517_s_at\"                 \"207798_s_at\"                \n",
+       "[19225] \"206626_x_at\"                 \"210394_x_at\"                \n",
+       "[19227] \"206956_at\"                   \"205717_x_at\"                \n",
+       "[19229] \"209079_x_at\"                 \"205476_at\"                  \n",
+       "[19231] \"206956_at\"                   \"208057_s_at\"                \n",
+       "[19233] \"207034_s_at\"                 \"207777_s_at\"                \n",
+       "[19235] \"210115_at\"                   \"207026_s_at\"                \n",
+       "[19237] \"206623_at\"                   \"207732_s_at\"                \n",
+       "[19239] \"208611_s_at\"                 \"210399_x_at\"                \n",
+       "[19241] \"210398_x_at\"                 \"208876_s_at\"                \n",
+       "[19243] \"208878_s_at\"                 \"208877_at\"                  \n",
+       "[19245] \"208875_s_at\"                 \"208037_s_at\"                \n",
+       "[19247] \"208635_x_at\"                 \"205700_at\"                  \n",
+       "[19249] \"208677_s_at\"                 \"208504_x_at\"                \n",
+       "[19251] \"207800_at\"                   \"208635_x_at\"                \n",
+       "[19253] \"210394_x_at\"                 \"207271_x_at\"                \n",
+       "[19255] \"207217_s_at\"                 \"206418_at\"                  \n",
+       "[19257] \"207380_x_at\"                 \"208923_at\"                  \n",
+       "[19259] \"210304_at\"                   \"207036_x_at\"                \n",
+       "[19261] \"206061_s_at\"                 \"207555_s_at\"                \n",
+       "[19263] \"207554_x_at\"                 \"206485_at\"                  \n",
+       "[19265] \"206051_at\"                   \"207462_at\"                  \n",
+       "[19267] \"207335_x_at\"                 \"209492_x_at\"                \n",
+       "[19269] \"207132_x_at\"                 \"209168_at\"                  \n",
+       "[19271] \"209169_at\"                   \"209167_at\"                  \n",
+       "[19273] \"209170_s_at\"                 \"210182_at\"                  \n",
+       "[19275] \"207132_x_at\"                 \"210289_at\"                  \n",
+       "[19277] \"206963_s_at\"                 \"206795_at\"                  \n",
+       "[19279] \"206429_at\"                   \"208619_at\"                  \n",
+       "[19281] \"207132_x_at\"                 \"205779_at\"                  \n",
+       "[19283] \"207829_s_at\"                 \"205527_s_at\"                \n",
+       "[19285] \"208031_s_at\"                 \"210176_at\"                  \n",
+       "[19287] \"207446_at\"                   \"207617_at\"                  \n",
+       "[19289] \"207586_at\"                   \"207810_at\"                  \n",
+       "[19291] \"207255_at\"                   \"209894_at\"                  \n",
+       "[19293] \"206892_at\"                   \"210460_s_at\"                \n",
+       "[19295] \"210459_at\"                   \"210303_at\"                  \n",
+       "[19297] \"210302_s_at\"                 \"207545_s_at\"                \n",
+       "[19299] \"209073_s_at\"                 \"209715_at\"                  \n",
+       "[19301] \"206933_s_at\"                 \"209930_s_at\"                \n",
+       "[19303] \"207653_at\"                   \"208675_s_at\"                \n",
+       "[19305] \"208674_x_at\"                 \"206007_at\"                  \n",
+       "[19307] \"206197_at\"                   \"209131_s_at\"                \n",
+       "[19309] \"209130_at\"                   \"210036_s_at\"                \n",
+       "[19311] \"207827_x_at\"                 \"209619_at\"                  \n",
+       "[19313] \"207776_s_at\"                 \"205612_at\"                  \n",
+       "[19315] \"208094_s_at\"                 \"205767_at\"                  \n",
+       "[19317] \"209146_at\"                   \"209945_s_at\"                \n",
+       "[19319] \"207083_s_at\"                 \"207133_x_at\"                \n",
+       "[19321] \"206289_at\"                   \"207575_at\"                  \n",
+       "[19323] \"207575_at\"                   \"208557_at\"                  \n",
+       "[19325] \"206847_s_at\"                 \"206441_s_at\"                \n",
+       "[19327] \"209132_s_at\"                 \"209133_s_at\"                \n",
+       "[19329] \"209905_at\"                   \"208493_at\"                  \n",
+       "[19331] \"207937_x_at\"                 \"207822_at\"                  \n",
+       "[19333] \"209373_at\"                   \"207914_x_at\"                \n",
+       "[19335] \"210127_at\"                   \"206544_x_at\"                \n",
+       "[19337] \"206542_s_at\"                 \"209373_at\"                  \n",
+       "[19339] \"205806_at\"                   \"206285_at\"                  \n",
+       "[19341] \"208315_x_at\"                 \"206763_at\"                  \n",
+       "[19343] \"209709_s_at\"                 \"207165_at\"                  \n",
+       "[19345] \"207639_at\"                   \"208621_s_at\"                \n",
+       "[19347] \"208623_s_at\"                 \"208622_s_at\"                \n",
+       "[19349] \"206667_s_at\"                 \"206668_s_at\"                \n",
+       "[19351] \"206728_at\"                   \"207585_s_at\"                \n",
+       "[19353] \"206109_at\"                   \"205909_at\"                  \n",
+       "[19355] \"210463_x_at\"                 \"208483_x_at\"                \n",
+       "[19357] \"207943_x_at\"                 \"209318_x_at\"                \n",
+       "[19359] \"207002_s_at\"                 \"207787_at\"                  \n",
+       "[19361] \"206677_at\"                   \"207438_s_at\"                \n",
+       "[19363] \"207649_at\"                   \"206726_at\"                  \n",
+       "[19365] \"207009_at\"                   \"206961_s_at\"                \n",
+       "[19367] \"206961_s_at\"                 \"209361_s_at\"                \n",
+       "[19369] \"207779_at\"                   \"208583_x_at\"                \n",
+       "[19371] \"207226_at\"                   \"208490_x_at\"                \n",
+       "[19373] \"208546_x_at\"                 \"208496_x_at\"                \n",
+       "[19375] \"206951_at\"                   \"209911_x_at\"                \n",
+       "[19377] \"208906_at\"                   \"206683_at\"                  \n",
+       "[19379] \"207782_s_at\"                 \"207457_s_at\"                \n",
+       "[19381] \"207457_s_at\"                 \"206254_at\"                  \n",
+       "[19383] \"208525_s_at\"                 \"205814_at\"                  \n",
+       "[19385] \"208165_s_at\"                 \"209501_at\"                  \n",
+       "[19387] \"206238_s_at\"                 \"209358_at\"                  \n",
+       "[19389] \"209789_at\"                   \"208856_x_at\"                \n",
+       "[19391] \"207623_at\"                   \"207894_s_at\"                \n",
+       "[19393] \"206727_at\"                   \"209179_s_at\"                \n",
+       "[19395] \"205774_at\"                   \"207562_at\"                  \n",
+       "[19397] \"209721_s_at\"                 \"210239_at\"                  \n",
+       "[19399] \"209310_s_at\"                 \"207684_at\"                  \n",
+       "[19401] \"207500_at\"                   \"208604_s_at\"                \n",
+       "[19403] \"209218_at\"                   \"208594_x_at\"                \n",
+       "[19405] \"207568_at\"                   \"206856_at\"                  \n",
+       "[19407] \"205583_s_at\"                 \"205584_at\"                  \n",
+       "[19409] \"210146_x_at\"                 \"207697_x_at\"                \n",
+       "[19411] \"209799_at\"                   \"209899_s_at\"                \n",
+       "[19413] \"208471_at\"                   \"208470_s_at\"                \n",
+       "[19415] \"210057_at\"                   \"207191_s_at\"                \n",
+       "[19417] \"207425_s_at\"                 \"208657_s_at\"                \n",
+       "[19419] \"209175_at\"                   \"209176_at\"                  \n",
+       "[19421] \"208025_s_at\"                 \"206495_s_at\"                \n",
+       "[19423] \"208534_s_at\"                 \"210075_at\"                  \n",
+       "[19425] \"207593_at\"                   \"209371_s_at\"                \n",
+       "[19427] \"209370_s_at\"                 \"207901_at\"                  \n",
+       "[19429] \"209781_s_at\"                 \"209087_x_at\"                \n",
+       "[19431] \"209086_x_at\"                 \"209109_s_at\"                \n",
+       "[19433] \"209108_at\"                   \"209698_at\"                  \n",
+       "[19435] \"208030_s_at\"                 \"209001_s_at\"                \n",
+       "[19437] \"205508_at\"                   \"207743_at\"                  \n",
+       "[19439] \"207950_s_at\"                 \"206385_s_at\"                \n",
+       "[19441] \"209442_x_at\"                 \"208531_at\"                  \n",
+       "[19443] \"210083_at\"                   \"207101_at\"                  \n",
+       "[19445] \"207100_s_at\"                 \"207185_at\"                  \n",
+       "[19447] \"210083_at\"                   \"208470_s_at\"                \n",
+       "[19449] \"206697_s_at\"                 \"205986_at\"                  \n",
+       "[19451] \"208543_at\"                   \"206386_at\"                  \n",
+       "[19453] \"208520_at\"                   \"206128_at\"                  \n",
+       "[19455] \"209239_at\"                   \"209997_x_at\"                \n",
+       "[19457] \"209996_x_at\"                 \"208328_s_at\"                \n",
+       "[19459] \"210317_s_at\"                 \"208558_at\"                  \n",
+       "[19461] \"209261_s_at\"                 \"209262_s_at\"                \n",
+       "[19463] \"206893_at\"                   \"209329_x_at\"                \n",
+       "[19465] \"209328_x_at\"                 \"209329_x_at\"                \n",
+       "[19467] \"209328_x_at\"                 \"206284_x_at\"                \n",
+       "[19469] \"207087_x_at\"                 \"208352_x_at\"                \n",
+       "[19471] \"208353_x_at\"                 \"208445_s_at\"                \n",
+       "[19473] \"207658_s_at\"                 \"206018_at\"                  \n",
+       "[19475] \"207745_at\"                   \"208303_s_at\"                \n",
+       "[19477] \"207129_at\"                   \"206738_at\"                  \n",
+       "[19479] \"206738_at\"                   \"205936_s_at\"                \n",
+       "[19481] \"206626_x_at\"                 \"207480_s_at\"                \n",
+       "[19483] \"208714_at\"                   \"206801_at\"                  \n",
+       "[19485] \"209967_s_at\"                 \"207630_s_at\"                \n",
+       "[19487] \"210171_s_at\"                 \"207518_at\"                  \n",
+       "[19489] \"207210_at\"                   \"205535_s_at\"                \n",
+       "[19491] \"210273_at\"                   \"205534_at\"                  \n",
+       "[19493] \"206911_at\"                   \"208757_at\"                  \n",
+       "[19495] \"205812_s_at\"                 \"208081_s_at\"                \n",
+       "[19497] \"206271_at\"                   \"205928_at\"                  \n",
+       "[19499] \"205928_at\"                   \"209076_s_at\"                \n",
+       "[19501] \"210343_s_at\"                 \"208369_s_at\"                \n",
+       "[19503] \"206301_at\"                   \"206729_at\"                  \n",
+       "[19505] \"207489_at\"                   \"206828_at\"                  \n",
+       "[19507] \"207983_s_at\"                 \"209023_s_at\"                \n",
+       "[19509] \"209022_at\"                   \"210371_s_at\"                \n",
+       "[19511] \"206768_at\"                   \"206270_at\"                  \n",
+       "[19513] \"207216_at\"                   \"206021_at\"                  \n",
+       "[19515] \"207626_s_at\"                 \"206031_s_at\"                \n",
+       "[19517] \"208535_x_at\"                 \"210371_s_at\"                \n",
+       "[19519] \"210208_x_at\"                 \"209104_s_at\"                \n",
+       "[19521] \"209008_x_at\"                 \"205846_at\"                  \n",
+       "[19523] \"209820_s_at\"                 \"205808_at\"                  \n",
+       "[19525] \"209135_at\"                   \"207284_s_at\"                \n",
+       "[19527] \"206466_at\"                   \"206465_at\"                  \n",
+       "[19529] \"209416_s_at\"                 \"209415_at\"                  \n",
+       "[19531] \"209414_at\"                   \"208038_at\"                  \n",
+       "[19533] \"209036_s_at\"                 \"207526_s_at\"                \n",
+       "[19535] \"210442_at\"                   \"209113_s_at\"                \n",
+       "[19537] \"205691_at\"                   \"207412_x_at\"                \n",
+       "[19539] \"209830_s_at\"                 \"208705_s_at\"                \n",
+       "[19541] \"208708_x_at\"                 \"208706_s_at\"                \n",
+       "[19543] \"208290_s_at\"                 \"208707_at\"                  \n",
+       "[19545] \"206611_at\"                   \"210243_s_at\"                \n",
+       "[19547] \"205571_at\"                   \"208255_s_at\"                \n",
+       "[19549] \"209731_at\"                   \"208705_s_at\"                \n",
+       "[19551] \"208534_s_at\"                 \"206658_at\"                  \n",
+       "[19553] \"208213_s_at\"                 \"210079_x_at\"                \n",
+       "[19555] \"210078_s_at\"                 \"210471_s_at\"                \n",
+       "[19557] \"206478_at\"                   \"205739_x_at\"                \n",
+       "[19559] \"207154_at\"                   \"205883_at\"                  \n",
+       "[19561] \"207007_at\"                   \"205850_s_at\"                \n",
+       "[19563] \"206983_at\"                   \"206861_s_at\"                \n",
+       "[19565] \"206150_at\"                   \"206315_at\"                  \n",
+       "[19567] \"206137_at\"                   \"209134_s_at\"                \n",
+       "[19569] \"209863_s_at\"                 \"207382_at\"                  \n",
+       "[19571] \"206456_at\"                   \"207622_s_at\"                \n",
+       "[19573] \"207623_at\"                   \"208437_at\"                  \n",
+       "[19575] \"206368_at\"                   \"206180_x_at\"                \n",
+       "[19577] \"208688_x_at\"                 \"206773_at\"                  \n",
+       "[19579] \"209193_at\"                   \"209827_s_at\"                \n",
+       "[19581] \"209828_s_at\"                 \"205983_at\"                  \n",
+       "[19583] \"207803_s_at\"                 \"206449_s_at\"                \n",
+       "[19585] \"207965_at\"                   \"205844_at\"                  \n",
+       "[19587] \"205922_at\"                   \"209209_s_at\"                \n",
+       "[19589] \"209210_s_at\"                 \"207196_s_at\"                \n",
+       "[19591] \"207854_at\"                   \"208659_at\"                  \n",
+       "[19593] \"205837_s_at\"                 \"205838_at\"                  \n",
+       "[19595] \"205509_at\"                   \"205608_s_at\"                \n",
+       "[19597] \"205609_at\"                   \"209140_x_at\"                \n",
+       "[19599] \"208729_x_at\"                 \"206973_at\"                  \n",
+       "[19601] \"209928_s_at\"                 \"208016_s_at\"                \n",
+       "[19603] \"205554_s_at\"                 \"207529_at\"                  \n",
+       "[19605] \"205528_s_at\"                 \"205529_s_at\"                \n",
+       "[19607] \"206422_at\"                   \"206894_at\"                  \n",
+       "[19609] \"205820_s_at\"                 \"205837_s_at\"                \n",
+       "[19611] \"208489_at\"                   \"209159_s_at\"                \n",
+       "[19613] \"207845_s_at\"                 \"208509_s_at\"                \n",
+       "[19615] \"209332_s_at\"                 \"209331_s_at\"                \n",
+       "[19617] \"208403_x_at\"                 \"207804_s_at\"                \n",
+       "[19619] \"209352_s_at\"                 \"208671_at\"                  \n",
+       "[19621] \"209280_at\"                   \"206462_s_at\"                \n",
+       "[19623] \"208906_at\"                   \"207163_s_at\"                \n",
+       "[19625] \"206131_at\"                   \"207614_s_at\"                \n",
+       "[19627] \"207553_at\"                   \"210147_at\"                  \n",
+       "[19629] \"205508_at\"                   \"209497_s_at\"                \n",
+       "[19631] \"209727_at\"                   \"210255_at\"                  \n",
+       "[19633] \"209488_s_at\"                 \"209487_at\"                  \n",
+       "[19635] \"207837_at\"                   \"207836_s_at\"                \n",
+       "[19637] \"208911_s_at\"                 \"210192_at\"                  \n",
+       "[19639] \"207773_x_at\"                 \"207543_s_at\"                \n",
+       "[19641] \"210138_at\"                   \"205592_at\"                  \n",
+       "[19643] \"207219_at\"                   \"206229_x_at\"                \n",
+       "[19645] \"206228_at\"                   \"210280_at\"                  \n",
+       "[19647] \"210216_x_at\"                 \"206397_x_at\"                \n",
+       "[19649] \"206196_s_at\"                 \"206400_at\"                  \n",
+       "[19651] \"206400_at\"                   \"205514_at\"                  \n",
+       "[19653] \"206479_at\"                   \"207818_s_at\"                \n",
+       "[19655] \"207927_at\"                   \"206153_at\"                  \n",
+       "[19657] \"205914_s_at\"                 \"205915_x_at\"                \n",
+       "[19659] \"207031_at\"                   \"206493_at\"                  \n",
+       "[19661] \"206494_s_at\"                 \"208532_x_at\"                \n",
+       "[19663] \"209027_s_at\"                 \"209028_s_at\"                \n",
+       "[19665] \"206882_at\"                   \"209408_at\"                  \n",
+       "[19667] \"210246_s_at\"                 \"206573_at\"                  \n",
+       "[19669] \"208452_x_at\"                 \"206693_at\"                  \n",
+       "[19671] \"206237_s_at\"                 \"208230_s_at\"                \n",
+       "[19673] \"208241_at\"                   \"206343_s_at\"                \n",
+       "[19675] \"208231_at\"                   \"205999_x_at\"                \n",
+       "[19677] \"205998_x_at\"                 \"208367_x_at\"                \n",
+       "[19679] \"205984_at\"                   \"209139_s_at\"                \n",
+       "[19681] \"208042_at\"                   \"206985_at\"                  \n",
+       "[19683] \"208042_at\"                   \"210320_s_at\"                \n",
+       "[19685] \"210461_s_at\"                 \"206985_at\"                  \n",
+       "[19687] \"207605_x_at\"                 \"207117_at\"                  \n",
+       "[19689] \"207605_x_at\"                 \"207117_at\"                  \n",
+       "[19691] \"209095_at\"                   \"205787_x_at\"                \n",
+       "[19693] \"205788_s_at\"                 \"208135_at\"                  \n",
+       "[19695] \"206451_at\"                   \"206451_at\"                  \n",
+       "[19697] \"209818_s_at\"                 \"208022_s_at\"                \n",
+       "[19699] \"205644_s_at\"                 \"207575_at\"                  \n",
+       "[19701] \"208970_s_at\"                 \"208971_at\"                  \n",
+       "[19703] \"210183_x_at\"                 \"209040_s_at\"                \n",
+       "[19705] \"206226_at\"                   \"207902_at\"                  \n",
+       "[19707] \"206241_at\"                   \"207214_at\"                  \n",
+       "[19709] \"207170_s_at\"                 \"206673_at\"                  \n",
+       "[19711] \"207813_s_at\"                 \"208950_s_at\"                \n",
+       "[19713] \"208951_at\"                   \"207987_s_at\"                \n",
+       "[19715] \"210415_s_at\"                 \"207128_s_at\"                \n",
+       "[19717] \"209333_at\"                   \"207830_s_at\"                \n",
+       "[19719] \"207125_at\"                   \"209323_at\"                  \n",
+       "[19721] \"207571_x_at\"                 \"206116_s_at\"                \n",
+       "[19723] \"206117_at\"                   \"206234_s_at\"                \n",
+       "[19725] \"206883_x_at\"                 \"210149_s_at\"                \n",
+       "[19727] \"208862_s_at\"                 \"208407_s_at\"                \n",
+       "[19729] \"209973_at\"                   \"207312_at\"                  \n",
+       "[19731] \"206797_at\"                   \"209792_s_at\"                \n",
+       "[19733] \"205470_s_at\"                 \"206974_at\"                  \n",
+       "[19735] \"210190_at\"                   \"207808_s_at\"                \n",
+       "[19737] \"208994_s_at\"                 \"208993_s_at\"                \n",
+       "[19739] \"208995_s_at\"                 \"208587_s_at\"                \n",
+       "[19741] \"208587_s_at\"                 \"205783_at\"                  \n",
+       "[19743] \"209791_at\"                   \"207074_s_at\"                \n",
+       "[19745] \"206030_at\"                   \"207224_s_at\"                \n",
+       "[19747] \"207206_s_at\"                 \"206120_at\"                  \n",
+       "[19749] \"206613_s_at\"                 \"205560_at\"                  \n",
+       "[19751] \"205559_s_at\"                 \"206682_at\"                  \n",
+       "[19753] \"208653_s_at\"                 \"208654_s_at\"                \n",
+       "[19755] \"208405_s_at\"                 \"209773_s_at\"                \n",
+       "[19757] \"208939_at\"                   \"208940_at\"                  \n",
+       "[19759] \"208941_s_at\"                 \"206743_s_at\"                \n",
+       "[19761] \"205622_at\"                   \"207222_at\"                  \n",
+       "[19763] \"210397_at\"                   \"210166_at\"                  \n",
+       "[19765] \"207814_at\"                   \"207269_at\"                  \n",
+       "[19767] \"206376_at\"                   \"210225_x_at\"                \n",
+       "[19769] \"210225_x_at\"                 \"210225_x_at\"                \n",
+       "[19771] \"210225_x_at\"                 \"207356_at\"                  \n",
+       "[19773] \"207356_at\"                   \"207356_at\"                  \n",
+       "[19775] \"207271_x_at\"                 \"207271_x_at\"                \n",
+       "[19777] \"210041_s_at\"                 \"206881_s_at\"                \n",
+       "[19779] \"210313_at\"                   \"206396_at\"                  \n",
+       "[19781] \"208071_s_at\"                 \"210141_s_at\"                \n",
+       "[19783] \"208322_s_at\"                 \"206887_at\"                  \n",
+       "[19785] \"205918_at\"                   \"205552_s_at\"                \n",
+       "[19787] \"209940_at\"                   \"206757_at\"                  \n",
+       "[19789] \"206083_at\"                   \"206314_at\"                  \n",
+       "[19791] \"207523_at\"                   \"205500_at\"                  \n",
+       "[19793] \"210090_at\"                   \"205855_at\"                  \n",
+       "[19795] \"205855_at\"                   \"207222_at\"                  \n",
+       "[19797] \"210054_at\"                   \"206096_at\"                  \n",
+       "[19799] \"207600_at\"                   \"208578_at\"                  \n",
+       "[19801] \"209571_at\"                   \"209289_at\"                  \n",
+       "[19803] \"209290_s_at\"                 \"208803_s_at\"                \n",
+       "[19805] \"208095_s_at\"                 \"208801_at\"                  \n",
+       "[19807] \"208800_at\"                   \"208802_at\"                  \n",
+       "[19809] \"208263_at\"                   \"209083_at\"                  \n",
+       "[19811] \"206255_at\"                   \"208647_at\"                  \n",
+       "[19813] \"205861_at\"                   \"209330_s_at\"                \n",
+       "[19815] \"206394_at\"                   \"208753_s_at\"                \n",
+       "[19817] \"208753_s_at\"                 \"208668_x_at\"                \n",
+       "[19819] \"209832_s_at\"                 \"206073_at\"                  \n",
+       "[19821] \"206335_at\"                   \"206142_at\"                  \n",
+       "[19823] \"208056_s_at\"                 \"209068_at\"                  \n",
+       "[19825] \"209067_s_at\"                 \"206438_x_at\"                \n",
+       "[19827] \"209587_at\"                   \"208502_s_at\"                \n",
+       "[19829] \"206603_at\"                   \"208736_at\"                  \n",
+       "[19831] \"207412_x_at\"                 \"208497_x_at\"                \n",
+       "[19833] \"206541_at\"                   \"206629_at\"                  \n",
+       "[19835] \"208494_at\"                   \"206541_at\"                  \n",
+       "[19837] \"207113_s_at\"                 \"205568_at\"                  \n",
+       "[19839] \"207443_at\"                   \"207613_s_at\"                \n",
+       "[19841] \"210063_at\"                   \"207889_at\"                  \n",
+       "[19843] \"205543_at\"                   \"208451_s_at\"                \n",
+       "[19845] \"208451_s_at\"                 \"205536_at\"                  \n",
+       "[19847] \"205537_s_at\"                 \"209017_s_at\"                \n",
+       "[19849] \"210434_x_at\"                 \"208829_at\"                  \n",
+       "[19851] \"210294_at\"                   \"209346_s_at\"                \n",
+       "[19853] \"209346_s_at\"                 \"209345_s_at\"                \n",
+       "[19855] \"210179_at\"                   \"208755_x_at\"                \n",
+       "[19857] \"206633_at\"                   \"207468_s_at\"                \n",
+       "[19859] \"209881_s_at\"                 \"208402_at\"                  \n",
+       "[19861] \"210455_at\"                   \"209312_x_at\"                \n",
+       "[19863] \"208306_x_at\"                 \"206155_at\"                  \n",
+       "[19865] \"206752_s_at\"                 \"205875_s_at\"                \n",
+       "[19867] \"208035_at\"                   \"206246_at\"                  \n",
+       "[19869] \"207484_s_at\"                 \"209118_s_at\"                \n",
+       "[19871] \"208262_x_at\"                 \"206256_at\"                  \n",
+       "[19873] \"210348_at\"                   \"209666_s_at\"                \n",
+       "[19875] \"209390_at\"                   \"208512_s_at\"                \n",
+       "[19877] \"205695_at\"                   \"206943_at\"                  \n",
+       "[19879] \"208560_at\"                   \"208564_at\"                  \n",
+       "[19881] \"208474_at\"                   \"208333_at\"                  \n",
+       "[19883] \"207618_s_at\"                 \"206969_at\"                  \n",
+       "[19885] \"209621_s_at\"                 \"210170_at\"                  \n",
+       "[19887] \"209816_at\"                   \"209815_at\"                  \n",
+       "[19889] \"208522_s_at\"                 \"207832_at\"                  \n",
+       "[19891] \"209502_s_at\"                 \"207421_at\"                  \n",
+       "[19893] \"208330_at\"                   \"208472_at\"                  \n",
+       "[19895] \"208676_s_at\"                 \"207383_s_at\"                \n",
+       "[19897] \"210261_at\"                   \"208858_s_at\"                \n",
+       "[19899] \"209403_at\"                   \"209403_at\"                  \n",
+       "[19901] \"207698_at\"                   \"207520_at\"                  \n",
+       "[19903] \"210438_x_at\"                 \"209142_s_at\"                \n",
+       "[19905] \"209141_at\"                   \"208234_x_at\"                \n",
+       "[19907] \"208228_s_at\"                 \"208225_at\"                  \n",
+       "[19909] \"209403_at\"                   \"208346_at\"                  \n",
+       "[19911] \"205828_at\"                   \"209807_s_at\"                \n",
+       "[19913] \"205648_at\"                   \"207508_at\"                  \n",
+       "[19915] \"207507_s_at\"                 \"209499_x_at\"                \n",
+       "[19917] \"210314_x_at\"                 \"209500_x_at\"                \n",
+       "[19919] \"205611_at\"                   \"209242_at\"                  \n",
+       "[19921] \"209243_s_at\"                 \"209933_s_at\"                \n",
+       "[19923] \"205542_at\"                   \"207270_x_at\"                \n",
+       "[19925] \"207052_at\"                   \"205743_at\"                  \n",
+       "[19927] \"205960_at\"                   \"205518_s_at\"                \n",
+       "[19929] \"207203_s_at\"                 \"207202_s_at\"                \n",
+       "[19931] \"208660_at\"                   \"210409_at\"                  \n",
+       "[19933] \"206054_at\"                   \"206240_s_at\"                \n",
+       "[19935] \"209904_at\"                   \"210284_s_at\"                \n",
+       "[19937] \"209506_s_at\"                 \"209505_at\"                  \n",
+       "[19939] \"209426_s_at\"                 \"209424_s_at\"                \n",
+       "[19941] \"209425_at\"                   \"209796_s_at\"                \n",
+       "[19943] \"209796_s_at\"                 \"209797_at\"                  \n",
+       "[19945] \"207262_at\"                   \"206062_at\"                  \n",
+       "[19947] \"210366_at\"                   \"206062_at\"                  \n",
+       "[19949] \"205697_at\"                   \"207062_at\"                  \n",
+       "[19951] \"208400_at\"                   \"208391_s_at\"                \n",
+       "[19953] \"208401_s_at\"                 \"208390_s_at\"                \n",
+       "[19955] \"209916_at\"                   \"207473_at\"                  \n",
+       "[19957] \"206641_at\"                   \"206750_at\"                  \n",
+       "[19959] \"205496_at\"                   \"205496_at\"                  \n",
+       "[19961] \"207831_x_at\"                 \"210234_at\"                  \n",
+       "[19963] \"207199_at\"                   \"209530_at\"                  \n",
+       "[19965] \"207689_at\"                   \"206821_x_at\"                \n",
+       "[19967] \"208905_at\"                   \"209381_x_at\"                \n",
+       "[19969] \"209230_s_at\"                 \"207122_x_at\"                \n",
+       "[19971] \"209607_x_at\"                 \"209509_s_at\"                \n",
+       "[19973] \"209607_x_at\"                 \"210056_at\"                  \n",
+       "[19975] \"209195_s_at\"                 \"206516_at\"                  \n",
+       "[19977] \"210457_x_at\"                 \"206074_s_at\"                \n",
+       "[19979] \"206205_at\"                   \"206836_at\"                  \n",
+       "[19981] \"209687_at\"                   \"209568_s_at\"                \n",
+       "[19983] \"210244_at\"                   \"210062_s_at\"                \n",
+       "[19985] \"210061_at\"                   \"209447_at\"                  \n",
+       "[19987] \"205851_at\"                   \"205690_s_at\"                \n",
+       "[19989] \"208542_x_at\"                 \"208104_s_at\"                \n",
+       "[19991] \"208251_at\"                   \"205875_s_at\"                \n",
+       "[19993] \"208252_s_at\"                 \"209834_at\"                  \n",
+       "[19995] \"209528_s_at\"                 \"206968_s_at\"                \n",
+       "[19997] \"208713_at\"                   \"209675_s_at\"                \n",
+       "[19999] \"209235_at\"                   \"210412_at\"                  \n",
+       "[20001] \"210411_s_at\"                 \"209445_x_at\"                \n",
+       "[20003] \"206497_at\"                   \"208277_at\"                  \n",
+       "[20005] \"209868_s_at\"                 \"207266_x_at\"                \n",
+       "[20007] \"205628_at\"                   \"205628_at\"                  \n",
+       "[20009] \"207503_at\"                   \"207503_at\"                  \n",
+       "[20011] \"207503_at\"                   \"208496_x_at\"                \n",
+       "[20013] \"209925_at\"                   \"210047_at\"                  \n",
+       "[20015] \"207120_at\"                   \"208585_at\"                  \n",
+       "[20017] \"208428_at\"                   \"209766_at\"                  \n",
+       "[20019] \"207716_at\"                   \"207146_at\"                  \n",
+       "[20021] \"207935_s_at\"                 \"206753_at\"                  \n",
+       "[20023] \"207747_s_at\"                 \"209690_s_at\"                \n",
+       "[20025] \"209691_s_at\"                 \"207235_s_at\"                \n",
+       "[20027] \"210414_at\"                   \"208188_at\"                  \n",
+       "[20029] \"209351_at\"                   \"208934_s_at\"                \n",
+       "[20031] \"208933_s_at\"                 \"208935_s_at\"                \n",
+       "[20033] \"208936_x_at\"                 \"209800_at\"                  \n",
+       "[20035] \"210470_x_at\"                 \"208698_s_at\"                \n",
+       "[20037] \"208003_s_at\"                 \"207161_at\"                  \n",
+       "[20039] \"205588_s_at\"                 \"210073_at\"                  \n",
+       "[20041] \"207794_at\"                   \"206978_at\"                  \n",
+       "[20043] \"208304_at\"                   \"206983_at\"                  \n",
+       "[20045] \"209813_x_at\"                 \"208478_s_at\"                \n",
+       "[20047] \"208498_s_at\"                 \"209813_x_at\"                \n",
+       "[20049] \"209813_x_at\"                 \"207421_at\"                  \n",
+       "[20051] \"205485_at\"                   \"207598_x_at\"                \n",
+       "[20053] \"209642_at\"                   \"209467_s_at\"                \n",
+       "[20055] \"207230_at\"                   \"210237_at\"                  \n",
+       "[20057] \"207675_x_at\"                 \"206440_at\"                  \n",
+       "[20059] \"206782_s_at\"                 \"209836_x_at\"                \n",
+       "[20061] \"209836_x_at\"                 \"210396_s_at\"                \n",
+       "[20063] \"205869_at\"                   \"207043_s_at\"                \n",
+       "[20065] \"206529_x_at\"                 \"208292_at\"                  \n",
+       "[20067] \"207974_s_at\"                 \"206143_at\"                  \n",
+       "[20069] \"207710_at\"                   \"207093_s_at\"                \n",
+       "[20071] \"207093_s_at\"                 \"208312_s_at\"                \n",
+       "[20073] \"208510_s_at\"                 \"207974_s_at\"                \n",
+       "[20075] \"208652_at\"                   \"206531_at\"                  \n",
+       "[20077] \"207118_s_at\"                 \"208652_at\"                  \n",
+       "[20079] \"207801_s_at\"                 \"208632_at\"                  \n",
+       "[20081] \"209403_at\"                   \"209403_at\"                  \n",
+       "[20083] \"207118_s_at\"                 \"210316_at\"                  \n",
+       "[20085] \"207428_x_at\"                 \"210474_s_at\"                \n",
+       "[20087] \"205815_at\"                   \"206901_at\"                  \n",
+       "[20089] \"207428_x_at\"                 \"210474_s_at\"                \n",
+       "[20091] \"208917_x_at\"                 \"208918_s_at\"                \n",
+       "[20093] \"208919_s_at\"                 \"208668_x_at\"                \n",
+       "[20095] \"207168_s_at\"                 \"208785_s_at\"                \n",
+       "[20097] \"208786_s_at\"                 \"210325_at\"                  \n",
+       "[20099] \"205987_at\"                   \"205873_at\"                  \n",
+       "[20101] \"206749_at\"                   \"208592_s_at\"                \n",
+       "[20103] \"207592_s_at\"                 \"206784_at\"                  \n",
+       "[20105] \"205748_s_at\"                 \"207654_x_at\"                \n",
+       "[20107] \"209188_x_at\"                 \"209187_at\"                  \n",
+       "[20109] \"210337_s_at\"                 \"206569_at\"                  \n",
+       "[20111] \"208466_at\"                   \"210449_x_at\"                \n",
+       "[20113] \"209010_s_at\"                 \"209011_at\"                  \n",
+       "[20115] \"208178_x_at\"                 \"209013_x_at\"                \n",
+       "[20117] \"209012_at\"                   \"206026_s_at\"                \n",
+       "[20119] \"206025_s_at\"                 \"207327_at\"                  \n",
+       "[20121] \"208912_s_at\"                 \"207183_at\"                  \n",
+       "[20123] \"208613_s_at\"                 \"208614_s_at\"                \n",
+       "[20125] \"208658_at\"                   \"210444_at\"                  \n",
+       "[20127] \"209465_x_at\"                 \"209466_x_at\"                \n",
+       "[20129] \"208696_at\"                   \"206369_s_at\"                \n",
+       "[20131] \"206370_at\"                   \"209971_x_at\"                \n",
+       "[20133] \"206371_at\"                   \"209186_at\"                  \n",
+       "[20135] \"208092_s_at\"                 \"209683_at\"                  \n",
+       "[20137] \"208755_x_at\"                 \"209848_s_at\"                \n",
+       "[20139] \"207877_s_at\"                 \"206941_x_at\"                \n",
+       "[20141] \"205709_s_at\"                 \"207866_at\"                  \n",
+       "[20143] \"206078_at\"                   \"205635_at\"                  \n",
+       "[20145] \"207944_at\"                   \"210105_s_at\"                \n",
+       "[20147] \"207389_at\"                   \"205835_s_at\"                \n",
+       "[20149] \"205836_s_at\"                 \"207846_at\"                  \n",
+       "[20151] \"209365_s_at\"                 \"206124_s_at\"                \n",
+       "[20153] \"206123_at\"                   \"206132_at\"                  \n",
+       "[20155] \"208294_x_at\"                 \"208295_x_at\"                \n",
+       "[20157] \"205958_x_at\"                 \"208293_x_at\"                \n",
+       "[20159] \"207285_x_at\"                 \"207192_at\"                  \n",
+       "[20161] \"205890_s_at\"                 \"209759_s_at\"                \n",
+       "[20163] \"207939_x_at\"                 \"208867_s_at\"                \n",
+       "[20165] \"206562_s_at\"                 \"208866_at\"                  \n",
+       "[20167] \"208865_at\"                   \"208571_at\"                  \n",
+       "[20169] \"205714_s_at\"                 \"207816_at\"                  \n",
+       "[20171] \"208867_s_at\"                 \"208866_at\"                  \n",
+       "[20173] \"208865_at\"                   \"208750_s_at\"                \n",
+       "[20175] \"207038_at\"                   \"209618_at\"                  \n",
+       "[20177] \"209617_s_at\"                 \"208305_at\"                  \n",
+       "[20179] \"205469_s_at\"                 \"205468_s_at\"                \n",
+       "[20181] \"206231_at\"                   \"209100_at\"                  \n",
+       "[20183] \"209112_at\"                   \"208132_x_at\"                \n",
+       "[20185] \"207025_at\"                   \"207299_s_at\"                \n",
+       "[20187] \"210188_at\"                   \"207319_s_at\"                \n",
+       "[20189] \"207318_s_at\"                 \"206748_s_at\"                \n",
+       "[20191] \"205959_at\"                   \"210168_at\"                  \n",
+       "[20193] \"209377_s_at\"                 \"207408_at\"                  \n",
+       "[20195] \"208287_at\"                   \"208751_at\"                  \n",
+       "[20197] \"206491_s_at\"                 \"208627_s_at\"                \n",
+       "[20199] \"208628_s_at\"                 \"210054_at\"                  \n",
+       "[20201] \"208775_at\"                   \"208751_at\"                  \n",
+       "[20203] \"206491_s_at\"                 \"207984_s_at\"                \n",
+       "[20205] \"208739_x_at\"                 \"208739_x_at\"                \n",
+       "[20207] \"209793_at\"                   \"208417_at\"                  \n",
+       "[20209] \"209383_at\"                   \"209035_at\"                  \n",
+       "[20211] \"210267_at\"                   \"209402_s_at\"                \n",
+       "[20213] \"209401_s_at\"                 \"205778_at\"                  \n",
+       "[20215] \"207275_s_at\"                 \"206393_at\"                  \n",
+       "[20217] \"209852_x_at\"                 \"209853_s_at\"                \n",
+       "[20219] \"207308_at\"                   \"207578_s_at\"                \n",
+       "[20221] \"207577_at\"                   \"209977_at\"                  \n",
+       "[20223] \"209978_s_at\"                 \"205871_at\"                  \n",
+       "[20225] \"208685_x_at\"                 \"208686_s_at\"                \n",
+       "[20227] \"206650_at\"                   \"208118_x_at\"                \n",
+       "[20229] \"206995_x_at\"                 \"210241_s_at\"                \n",
+       "[20231] \"209917_s_at\"                 \"206125_s_at\"                \n",
+       "[20233] \"205771_s_at\"                 \"206737_at\"                  \n",
+       "[20235] \"205650_s_at\"                 \"205649_s_at\"                \n",
+       "[20237] \"209616_s_at\"                 \"207509_s_at\"                \n",
+       "[20239] \"210156_s_at\"                 \"208857_s_at\"                \n",
+       "[20241] \"206824_at\"                   \"209616_s_at\"                \n",
+       "[20243] \"207857_at\"                   \"208338_at\"                  \n",
+       "[20245] \"207824_s_at\"                 \"207872_s_at\"                \n",
+       "[20247] \"209276_s_at\"                 \"206662_at\"                  \n",
+       "[20249] \"207104_x_at\"                 \"207112_s_at\"                \n",
+       "[20251] \"207968_s_at\"                 \"209199_s_at\"                \n",
+       "[20253] \"209200_at\"                   \"209835_x_at\"                \n",
+       "[20255] \"209123_at\"                   \"208179_x_at\"                \n",
+       "[20257] \"208179_x_at\"                 \"205662_at\"                  \n",
+       "[20259] \"207313_x_at\"                 \"207314_x_at\"                \n",
+       "[20261] \"207674_at\"                   \"206402_s_at\"                \n",
+       "[20263] \"206402_s_at\"                 \"206684_s_at\"                \n",
+       "[20265] \"210152_at\"                   \"206854_s_at\"                \n",
+       "[20267] \"206853_s_at\"                 \"210200_at\"                  \n",
+       "[20269] \"207552_at\"                   \"208764_s_at\"                \n",
+       "[20271] \"210335_at\"                   \"206291_at\"                  \n",
+       "[20273] \"208040_s_at\"                 \"207447_s_at\"                \n",
+       "[20275] \"209092_s_at\"                 \"208189_s_at\"                \n",
+       "[20277] \"210396_s_at\"                 \"208118_x_at\"                \n",
+       "[20279] \"205927_s_at\"                 \"210013_at\"                  \n",
+       "[20281] \"206023_at\"                   \"208496_x_at\"                \n",
+       "[20283] \"209284_s_at\"                 \"209285_s_at\"                \n",
+       "[20285] \"208585_at\"                   \"207452_s_at\"                \n",
+       "[20287] \"206402_s_at\"                 \"205740_s_at\"                \n",
+       "[20289] \"205920_at\"                   \"205921_s_at\"                \n",
+       "[20291] \"209806_at\"                   \"208579_x_at\"                \n",
+       "[20293] \"207286_at\"                   \"206003_at\"                  \n",
+       "[20295] \"209338_at\"                   \"207627_s_at\"                \n",
+       "[20297] \"206130_s_at\"                 \"208640_at\"                  \n",
+       "[20299] \"208641_s_at\"                 \"207080_s_at\"                \n",
+       "[20301] \"206125_s_at\"                 \"209320_at\"                  \n",
+       "[20303] \"209321_s_at\"                 \"206177_s_at\"                \n",
+       "[20305] \"209008_x_at\"                 \"205833_s_at\"                \n",
+       "[20307] \"205833_s_at\"                 \"205834_s_at\"                \n",
+       "[20309] \"205833_s_at\"                 \"207341_at\"                  \n",
+       "[20311] \"209592_s_at\"                 \"208562_s_at\"                \n",
+       "[20313] \"208561_at\"                   \"208462_s_at\"                \n",
+       "[20315] \"209592_s_at\"                 \"208736_at\"                  \n",
+       "[20317] \"208644_at\"                   \"206093_x_at\"                \n",
+       "[20319] \"208609_s_at\"                 \"206871_at\"                  \n",
+       "[20321] \"210311_at\"                   \"210310_s_at\"                \n",
+       "[20323] \"208378_x_at\"                 \"209580_s_at\"                \n",
+       "[20325] \"209579_s_at\"                 \"207992_s_at\"                \n",
+       "[20327] \"209491_s_at\"                 \"207188_at\"                  \n",
+       "[20329] \"206312_at\"                   \"206455_s_at\"                \n",
+       "[20331] \"206454_s_at\"                 \"207220_at\"                  \n",
+       "[20333] \"205848_at\"                   \"206723_s_at\"                \n",
+       "[20335] \"206722_s_at\"                 \"208680_at\"                  \n",
+       "[20337] \"206841_at\"                   \"207728_at\"                  \n",
+       "[20339] \"209661_at\"                   \"209549_s_at\"                \n",
+       "[20341] \"207762_at\"                   \"207429_at\"                  \n",
+       "[20343] \"209978_s_at\"                 \"207584_at\"                  \n",
+       "[20345] \"206357_at\"                   \"206236_at\"                  \n",
+       "[20347] \"207151_at\"                   \"208425_s_at\"                \n",
+       "[20349] \"206310_at\"                   \"207904_s_at\"                \n",
+       "[20351] \"207187_at\"                   \"207088_s_at\"                \n",
+       "[20353] \"209003_at\"                   \"210181_s_at\"                \n",
+       "[20355] \"208320_at\"                   \"208321_s_at\"                \n",
+       "[20357] \"207651_at\"                   \"206637_at\"                  \n",
+       "[20359] \"209322_s_at\"                 \"207058_s_at\"                \n",
+       "[20361] \"206810_at\"                   \"210466_s_at\"                \n",
+       "[20363] \"209669_s_at\"                 \"207860_at\"                  \n",
+       "[20365] \"208607_s_at\"                 \"210180_s_at\"                \n",
+       "[20367] \"209702_at\"                   \"206480_at\"                  \n",
+       "[20369] \"206506_s_at\"                 \"206392_s_at\"                \n",
+       "[20371] \"206391_at\"                   \"208534_s_at\"                \n",
+       "[20373] \"209895_at\"                   \"205867_at\"                  \n",
+       "[20375] \"209896_s_at\"                 \"205868_s_at\"                \n",
+       "[20377] \"208570_at\"                   \"208070_s_at\"                \n",
+       "[20379] \"209244_s_at\"                 \"209245_s_at\"                \n",
+       "[20381] \"208426_x_at\"                 \"209805_at\"                  \n",
+       "[20383] \"209805_at\"                   \"206405_x_at\"                \n",
+       "[20385] \"209251_x_at\"                 \"207310_s_at\"                \n",
+       "[20387] \"207309_at\"                   \"208809_s_at\"                \n",
+       "[20389] \"206618_at\"                   \"209157_at\"                  \n",
+       "[20391] \"205819_at\"                   \"208980_s_at\"                \n",
+       "[20393] \"206086_x_at\"                 \"206087_x_at\"                \n",
+       "[20395] \"208442_s_at\"                 \"208075_s_at\"                \n",
+       "[20397] \"210133_at\"                   \"206407_s_at\"                \n",
+       "[20399] \"209024_s_at\"                 \"209025_s_at\"                \n",
+       "[20401] \"207533_at\"                   \"209876_at\"                  \n",
+       "[20403] \"206931_at\"                   \"207459_x_at\"                \n",
+       "[20405] \"209407_s_at\"                 \"205787_x_at\"                \n",
+       "[20407] \"205788_s_at\"                 \"208164_s_at\"                \n",
+       "[20409] \"209367_at\"                   \"206505_at\"                  \n",
+       "[20411] \"207958_at\"                   \"206044_s_at\"                \n",
+       "[20413] \"208244_at\"                   \"207505_at\"                  \n",
+       "[20415] \"207321_s_at\"                 \"206982_at\"                  \n",
+       "[20417] \"209950_s_at\"                 \"207050_at\"                  \n",
+       "[20419] \"210088_x_at\"                 \"210395_x_at\"                \n",
+       "[20421] \"208787_at\"                   \"209589_s_at\"                \n",
+       "[20423] \"209588_at\"                   \"206189_at\"                  \n",
+       "[20425] \"205525_at\"                   \"208716_s_at\"                \n",
+       "[20427] \"208715_at\"                   \"208610_s_at\"                \n",
+       "[20429] \"207435_s_at\"                 \"208848_at\"                  \n",
+       "[20431] \"208847_s_at\"                 \"207428_x_at\"                \n",
+       "[20433] \"210474_s_at\"                 \"206785_s_at\"                \n",
+       "[20435] \"208190_s_at\"                 \"208136_s_at\"                \n",
+       "[20437] \"205730_s_at\"                 \"207544_s_at\"                \n",
+       "[20439] \"205884_at\"                   \"205885_s_at\"                \n",
+       "[20441] \"207820_at\"                   \"207205_at\"                  \n",
+       "[20443] \"206199_at\"                   \"206198_s_at\"                \n",
+       "[20445] \"209614_at\"                   \"209613_s_at\"                \n",
+       "[20447] \"209612_s_at\"                 \"209264_s_at\"                \n",
+       "[20449] \"209263_x_at\"                 \"206262_at\"                  \n",
+       "[20451] \"210037_s_at\"                 \"208052_x_at\"                \n",
+       "[20453] \"205747_at\"                   \"207789_s_at\"                \n",
+       "[20455] \"206877_at\"                   \"208620_at\"                  \n",
+       "[20457] \"209055_s_at\"                 \"209056_s_at\"                \n",
+       "[20459] \"209057_x_at\"                 \"208096_s_at\"                \n",
+       "[20461] \"207311_at\"                   \"205995_x_at\"                \n",
+       "[20463] \"208153_s_at\"                 \"206005_s_at\"                \n",
+       "[20465] \"206006_s_at\"                 \"208796_s_at\"                \n",
+       "[20467] \"209831_x_at\"                 \"207263_x_at\"                \n",
+       "[20469] \"209034_at\"                   \"206525_at\"                  \n",
+       "[20471] \"207926_at\"                   \"208217_at\"                  \n",
+       "[20473] \"208928_at\"                   \"207504_at\"                  \n",
+       "[20475] \"210135_s_at\"                 \"208443_x_at\"                \n",
+       "[20477] \"210134_x_at\"                 \"210372_s_at\"                \n",
+       "[20479] \"209154_at\"                   \"209154_at\"                  \n",
+       "[20481] \"210448_s_at\"                 \"208312_s_at\"                \n",
+       "[20483] \"205729_at\"                   \"209780_at\"                  \n",
+       "[20485] \"209794_at\"                   \"209357_at\"                  \n",
+       "[20487] \"207980_s_at\"                 \"207398_at\"                  \n",
+       "[20489] \"207397_s_at\"                 \"207373_at\"                  \n",
+       "[20491] \"205604_at\"                   \"207213_s_at\"                \n",
+       "[20493] \"205975_s_at\"                 \"206601_s_at\"                \n",
+       "[20495] \"206602_s_at\"                 \"206359_at\"                  \n",
+       "[20497] \"206360_s_at\"                 \"208850_s_at\"                \n",
+       "[20499] \"208851_s_at\"                 \"208438_s_at\"                \n",
+       "[20501] \"205734_s_at\"                 \"205735_s_at\"                \n",
+       "[20503] \"208712_at\"                   \"208711_s_at\"                \n",
+       "[20505] \"207790_at\"                   \"206783_at\"                  \n",
+       "[20507] \"206958_s_at\"                 \"206959_s_at\"                \n",
+       "[20509] \"206126_at\"                   \"206636_at\"                  \n",
+       "[20511] \"207862_at\"                   \"210009_s_at\"                \n",
+       "[20513] \"207486_x_at\"                 \"205878_at\"                  \n",
+       "[20515] \"206840_at\"                   \"208411_x_at\"                \n",
+       "[20517] \"209094_at\"                   \"207052_at\"                  \n",
+       "[20519] \"209900_s_at\"                 \"205546_s_at\"                \n",
+       "[20521] \"206806_at\"                   \"206814_at\"                  \n",
+       "[20523] \"210009_s_at\"                 \"206945_at\"                  \n",
+       "[20525] \"205483_s_at\"                 \"207628_s_at\"                \n",
+       "[20527] \"206293_at\"                   \"206292_s_at\"                \n",
+       "[20529] \"206610_s_at\"                 \"205615_at\"                  \n",
+       "[20531] \"205938_at\"                   \"209760_at\"                  \n",
+       "[20533] \"210204_s_at\"                 \"210203_at\"                  \n",
+       "[20535] \"206066_s_at\"                 \"209849_s_at\"                \n",
+       "[20537] \"206560_s_at\"                 \"209489_at\"                  \n",
+       "[20539] \"209367_at\"                   \"210049_at\"                  \n",
+       "[20541] \"208700_s_at\"                 \"208699_x_at\"                \n",
+       "[20543] \"209785_s_at\"                 \"210356_x_at\"                \n",
+       "[20545] \"208063_s_at\"                 \"210006_at\"                  \n",
+       "[20547] \"206152_at\"                   \"206718_at\"                  \n",
+       "[20549] \"207863_at\"                   \"208856_x_at\"                \n",
+       "[20551] \"209302_at\"                   \"205720_at\"                  \n",
+       "[20553] \"205659_at\"                   \"205614_x_at\"                \n",
+       "[20555] \"207634_at\"                   \"205646_s_at\"                \n",
+       "[20557] \"207659_s_at\"                 \"210193_at\"                  \n",
+       "[20559] \"208356_x_at\"                 \"208342_x_at\"                \n",
+       "[20561] \"207770_x_at\"                 \"208357_x_at\"                \n",
+       "[20563] \"208341_x_at\"                 \"206475_x_at\"                \n",
+       "[20565] \"205958_x_at\"                 \"207285_x_at\"                \n",
+       "[20567] \"206195_x_at\"                 \"208130_s_at\"                \n",
+       "[20569] \"207754_at\"                   \"206792_x_at\"                \n",
+       "[20571] \"206791_s_at\"                 \"206381_at\"                  \n",
+       "[20573] \"209403_at\"                   \"205539_at\"                  \n",
+       "[20575] \"208534_s_at\"                 \"208534_s_at\"                \n",
+       "[20577] \"209403_at\"                   \"209403_at\"                  \n",
+       "[20579] \"209403_at\"                   \"209181_s_at\"                \n",
+       "[20581] \"209180_at\"                   \"206699_x_at\"                \n",
+       "[20583] \"209795_at\"                   \"209732_at\"                  \n",
+       "[20585] \"208534_s_at\"                 \"210404_x_at\"                \n",
+       "[20587] \"209956_s_at\"                 \"206257_at\"                  \n",
+       "[20589] \"208710_s_at\"                 \"206592_s_at\"                \n",
+       "[20591] \"207550_at\"                   \"206282_at\"                  \n",
+       "[20593] \"208294_x_at\"                 \"206475_x_at\"                \n",
+       "[20595] \"208356_x_at\"                 \"208342_x_at\"                \n",
+       "[20597] \"208357_x_at\"                 \"208341_x_at\"                \n",
+       "[20599] \"208295_x_at\"                 \"205958_x_at\"                \n",
+       "[20601] \"208293_x_at\"                 \"207285_x_at\"                \n",
+       "[20603] \"207567_at\"                   \"209380_s_at\"                \n",
+       "[20605] \"207683_at\"                   \"206772_at\"                  \n",
+       "[20607] \"206094_x_at\"                 \"207126_x_at\"                \n",
+       "[20609] \"208596_s_at\"                 \"206094_x_at\"                \n",
+       "[20611] \"207126_x_at\"                 \"208596_s_at\"                \n",
+       "[20613] \"206094_x_at\"                 \"207126_x_at\"                \n",
+       "[20615] \"208596_s_at\"                 \"207740_s_at\"                \n",
+       "[20617] \"206094_x_at\"                 \"207126_x_at\"                \n",
+       "[20619] \"208596_s_at\"                 \"210406_s_at\"                \n",
+       "[20621] \"206362_x_at\"                 \"207867_at\"                  \n",
+       "[20623] \"208942_s_at\"                 \"208943_s_at\"                \n",
+       "[20625] \"205839_s_at\"                 \"208465_at\"                  \n",
+       "[20627] \"208811_s_at\"                 \"208810_at\"                  \n",
+       "[20629] \"209015_s_at\"                 \"209796_s_at\"                \n",
+       "[20631] \"210249_s_at\"                 \"209106_at\"                  \n",
+       "[20633] \"209105_at\"                   \"209107_x_at\"                \n",
+       "[20635] \"208114_s_at\"                 \"206259_at\"                  \n",
+       "[20637] \"209481_at\"                   \"207474_at\"                  \n",
+       "[20639] \"205580_s_at\"                 \"205579_at\"                  \n",
+       "[20641] \"208938_at\"                   \"207351_s_at\"                \n",
+       "[20643] \"208924_at\"                   \"210113_s_at\"                \n",
+       "[20645] \"206557_at\"                   \"209737_at\"                  \n",
+       "[20647] \"207702_s_at\"                 \"208746_x_at\"                \n",
+       "[20649] \"210453_x_at\"                 \"207573_x_at\"                \n",
+       "[20651] \"208745_at\"                   \"206190_at\"                  \n",
+       "[20653] \"208530_s_at\"                 \"208413_at\"                  \n",
+       "[20655] \"208412_s_at\"                 \"209403_at\"                  \n",
+       "[20657] \"209403_at\"                   \"209403_at\"                  \n",
+       "[20659] \"205611_at\"                   \"209499_x_at\"                \n",
+       "[20661] \"210314_x_at\"                 \"209500_x_at\"                \n",
+       "[20663] \"208626_s_at\"                 \"207631_at\"                  \n",
+       "[20665] \"207631_at\"                   \"205598_at\"                  \n",
+       "[20667] \"206598_at\"                   \"208291_s_at\"                \n",
+       "[20669] \"209551_at\"                   \"207607_at\"                  \n",
+       "[20671] \"206787_at\"                   \"207344_at\"                  \n",
+       "[20673] \"208969_at\"                   \"207556_s_at\"                \n",
+       "[20675] \"209035_at\"                   \"205616_at\"                  \n",
+       "[20677] \"208479_at\"                   \"206869_at\"                  \n",
+       "[20679] \"208256_at\"                   \"206671_at\"                  \n",
+       "[20681] \"208072_s_at\"                 \"207761_s_at\"                \n",
+       "[20683] \"209703_x_at\"                 \"208567_s_at\"                \n",
+       "[20685] \"207110_at\"                   \"208567_s_at\"                \n",
+       "[20687] \"207110_at\"                   \"210265_x_at\"                \n",
+       "[20689] \"210380_s_at\"                 \"207869_s_at\"                \n",
+       "[20691] \"209936_at\"                   \"206804_at\"                  \n",
+       "[20693] \"208746_x_at\"                 \"210453_x_at\"                \n",
+       "[20695] \"206011_at\"                   \"209970_x_at\"                \n",
+       "[20697] \"206523_at\"                   \"210034_s_at\"                \n",
+       "[20699] \"206501_x_at\"                 \"205685_at\"                  \n",
+       "[20701] \"205686_s_at\"                 \"210034_s_at\"                \n",
+       "[20703] \"209705_at\"                   \"209704_at\"                  \n",
+       "[20705] \"209906_at\"                   \"209300_s_at\"                \n",
+       "[20707] \"205482_x_at\"                 \"205482_x_at\"                \n",
+       "[20709] \"206900_x_at\"                 \"207090_x_at\"                \n",
+       "[20711] \"206289_at\"                   \"207895_at\"                  \n",
+       "[20713] \"208198_x_at\"                 \"209428_s_at\"                \n",
+       "[20715] \"208762_at\"                   \"208761_s_at\"                \n",
+       "[20717] \"210130_s_at\"                 \"207402_at\"                  \n",
+       "[20719] \"205765_at\"                   \"209920_at\"                  \n",
+       "[20721] \"210214_s_at\"                 \"209309_at\"                  \n",
+       "[20723] \"209313_at\"                   \"206144_at\"                  \n",
+       "[20725] \"209016_s_at\"                 \"208544_at\"                  \n",
+       "[20727] \"207669_at\"                   \"207670_at\"                  \n",
+       "[20729] \"207065_at\"                   \"209126_x_at\"                \n",
+       "[20731] \"209125_at\"                   \"209126_x_at\"                \n",
+       "[20733] \"207604_s_at\"                 \"210286_s_at\"                \n",
+       "[20735] \"209884_s_at\"                 \"205713_s_at\"                \n",
+       "[20737] \"208947_s_at\"                 \"206570_s_at\"                \n",
+       "[20739] \"207434_s_at\"                 \"205674_x_at\"                \n",
+       "[20741] \"208134_x_at\"                 \"207434_s_at\"                \n",
+       "[20743] \"205674_x_at\"                 \"208257_x_at\"                \n",
+       "[20745] \"210195_s_at\"                 \"210196_s_at\"                \n",
+       "[20747] \"209158_s_at\"                 \"209153_s_at\"                \n",
+       "[20749] \"209151_x_at\"                 \"209152_s_at\"                \n",
+       "[20751] \"209044_x_at\"                 \"209420_s_at\"                \n",
+       "[20753] \"208795_s_at\"                 \"209344_at\"                  \n",
+       "[20755] \"209893_s_at\"                 \"209892_at\"                  \n",
+       "[20757] \"206991_s_at\"                 \"206554_x_at\"                \n",
+       "[20759] \"209805_at\"                   \"208819_at\"                  \n",
+       "[20761] \"207643_s_at\"                 \"210272_at\"                  \n",
+       "[20763] \"210272_at\"                   \"206754_s_at\"                \n",
+       "[20765] \"208455_at\"                   \"208485_x_at\"                \n",
+       "[20767] \"209508_x_at\"                 \"209939_x_at\"                \n",
+       "[20769] \"208834_x_at\"                 \"208825_x_at\"                \n",
+       "[20771] \"206038_s_at\"                 \"206268_at\"                  \n",
+       "[20773] \"206268_at\"                   \"210109_at\"                  \n",
+       "[20775] \"206012_at\"                   \"207092_at\"                  \n",
+       "[20777] \"206207_at\"                   \"209868_s_at\"                \n",
+       "[20779] \"207266_x_at\"                 \"207541_s_at\"                \n",
+       "[20781] \"205558_at\"                   \"206591_at\"                  \n",
+       "[20783] \"206403_at\"                   \"209007_s_at\"                \n",
+       "[20785] \"209006_s_at\"                 \"205567_at\"                  \n",
+       "[20787] \"206403_at\"                   \"209566_at\"                  \n",
+       "[20789] \"210430_x_at\"                 \"210429_at\"                  \n",
+       "[20791] \"207236_at\"                   \"207636_at\"                  \n",
+       "[20793] \"207417_s_at\"                 \"209389_x_at\"                \n",
+       "[20795] \"208747_s_at\"                 \"209850_s_at\"                \n",
+       "[20797] \"209850_s_at\"                 \"209343_at\"                  \n",
+       "[20799] \"207066_at\"                   \"206745_at\"                  \n",
+       "[20801] \"206708_at\"                   \"206858_s_at\"                \n",
+       "[20803] \"205952_at\"                   \"209878_s_at\"                \n",
+       "[20805] \"209915_s_at\"                 \"209914_s_at\"                \n",
+       "[20807] \"206739_at\"                   \"207116_s_at\"                \n",
+       "[20809] \"206050_s_at\"                 \"207139_at\"                  \n",
+       "[20811] \"207417_s_at\"                 \"207417_s_at\"                \n",
+       "[20813] \"205854_at\"                   \"205640_at\"                  \n",
+       "[20815] \"205665_at\"                   \"207772_s_at\"                \n",
+       "[20817] \"209468_at\"                   \"208248_x_at\"                \n",
+       "[20819] \"208704_x_at\"                 \"208703_s_at\"                \n",
+       "[20821] \"208702_x_at\"                 \"208615_s_at\"                \n",
+       "[20823] \"208617_s_at\"                 \"208616_s_at\"                \n",
+       "[20825] \"208446_s_at\"                 \"205660_at\"                  \n",
+       "[20827] \"208436_s_at\"                 \"206906_at\"                  \n",
+       "[20829] \"209955_s_at\"                 \"206713_at\"                  \n",
+       "[20831] \"206733_at\"                   \"207374_at\"                  \n",
+       "[20833] \"210016_at\"                   \"210173_at\"                  \n",
+       "[20835] \"206902_s_at\"                 \"205521_at\"                  \n",
+       "[20837] \"206903_at\"                   \"209413_at\"                  \n",
+       "[20839] \"209354_at\"                   \"210008_s_at\"                \n",
+       "[20841] \"208195_at\"                   \"210386_s_at\"                \n",
+       "[20843] \"207055_at\"                   \"208930_s_at\"                \n",
+       "[20845] \"208931_s_at\"                 \"209233_at\"                  \n",
+       "[20847] \"209233_at\"                   \"206817_x_at\"                \n",
+       "[20849] \"209609_s_at\"                 \"208059_at\"                  \n",
+       "[20851] \"205898_at\"                   \"209556_at\"                  \n",
+       "[20853] \"209557_s_at\"                 \"208498_s_at\"                \n",
+       "[20855] \"208498_s_at\"                 \"208498_s_at\"                \n",
+       "[20857] \"208498_s_at\"                 \"208498_s_at\"                \n",
+       "[20859] \"208498_s_at\"                 \"208498_s_at\"                \n",
+       "[20861] \"208498_s_at\"                 \"208498_s_at\"                \n",
+       "[20863] \"208498_s_at\"                 \"206607_at\"                  \n",
+       "[20865] \"208498_s_at\"                 \"208498_s_at\"                \n",
+       "[20867] \"208498_s_at\"                 \"208498_s_at\"                \n",
+       "[20869] \"208498_s_at\"                 \"206191_at\"                  \n",
+       "[20871] \"208916_at\"                   \"210354_at\"                  \n",
+       "[20873] \"208074_s_at\"                 \"206739_at\"                  \n",
+       "[20875] \"206739_at\"                   \"206194_at\"                  \n",
+       "[20877] \"206739_at\"                   \"206094_x_at\"                \n",
+       "[20879] \"207126_x_at\"                 \"208596_s_at\"                \n",
+       "[20881] \"206970_at\"                   \"208910_s_at\"                \n",
+       "[20883] \"208149_x_at\"                 \"210206_s_at\"                \n",
+       "[20885] \"206954_at\"                   \"205676_at\"                  \n",
+       "[20887] \"207049_at\"                   \"208498_s_at\"                \n",
+       "[20889] \"206058_at\"                   \"206977_at\"                  \n",
+       "[20891] \"207304_at\"                   \"207184_at\"                  \n",
+       "[20893] \"208119_s_at\"                 \"206186_at\"                  \n",
+       "[20895] \"206948_at\"                   \"207336_at\"                  \n",
+       "[20897] \"207153_s_at\"                 \"206097_at\"                  \n",
+       "[20899] \"205827_at\"                   \"206942_s_at\"                \n",
+       "[20901] \"207343_at\"                   \"209540_at\"                  \n",
+       "[20903] \"209542_x_at\"                 \"209541_at\"                  \n",
+       "[20905] \"207354_at\"                   \"210155_at\"                  \n",
+       "[20907] \"208457_at\"                   \"210390_s_at\"                \n",
+       "[20909] \"210390_s_at\"                 \"209924_at\"                  \n",
+       "[20911] \"209403_at\"                   \"209403_at\"                  \n",
+       "[20913] \"207035_at\"                   \"209403_at\"                  \n",
+       "[20915] \"207047_s_at\"                 \"208806_at\"                  \n",
+       "[20917] \"208807_s_at\"                 \"206072_at\"                  \n",
+       "[20919] \"205742_at\"                   \"206297_at\"                  \n",
+       "[20921] \"207229_at\"                   \"207229_at\"                  \n",
+       "[20923] \"206950_at\"                   \"206162_x_at\"                \n",
+       "[20925] \"206161_s_at\"                 \"208300_at\"                  \n",
+       "[20927] \"209229_s_at\"                 \"209229_s_at\"                \n",
+       "[20929] \"206937_at\"                   \"205797_s_at\"                \n",
+       "[20931] \"205796_at\"                   \"209281_s_at\"                \n",
+       "[20933] \"210148_at\"                   \"207764_s_at\"                \n",
+       "[20935] \"207111_at\"                   \"210085_s_at\"                \n",
+       "[20937] \"209586_s_at\"                 \"209599_s_at\"                \n",
+       "[20939] \"209586_s_at\"                 \"208159_x_at\"                \n",
+       "[20941] \"208149_x_at\"                 \"210206_s_at\"                \n",
+       "[20943] \"206622_at\"                   \"205802_at\"                  \n",
+       "[20945] \"205803_s_at\"                 \"206079_at\"                  \n",
+       "[20947] \"206079_at\"                   \"209983_s_at\"                \n",
+       "[20949] \"209982_s_at\"                 \"207864_at\"                  \n",
+       "[20951] \"205860_x_at\"                 \"205860_x_at\"                \n",
+       "[20953] \"207332_s_at\"                 \"208691_at\"                  \n",
+       "[20955] \"209503_s_at\"                 \"207346_at\"                  \n",
+       "[20957] \"206648_at\"                   \"206311_s_at\"                \n",
+       "[20959] \"206333_at\"                   \"210381_s_at\"                \n",
+       "[20961] \"209980_s_at\"                 \"208505_s_at\"                \n",
+       "[20963] \"209663_s_at\"                 \"205917_at\"                  \n",
+       "[20965] \"207753_at\"                   \"209751_s_at\"                \n",
+       "[20967] \"207786_at\"                   \"207094_at\"                  \n",
+       "[20969] \"207988_s_at\"                 \"208679_s_at\"                \n",
+       "[20971] \"210151_s_at\"                 \"208793_x_at\"                \n",
+       "[20973] \"208794_s_at\"                 \"206928_at\"                  \n",
+       "[20975] \"207760_s_at\"                 \"208888_s_at\"                \n",
+       "[20977] \"208889_s_at\"                 \"210422_x_at\"                \n",
+       "[20979] \"210423_s_at\"                 \"205614_x_at\"                \n",
+       "[20981] \"205506_at\"                   \"206151_x_at\"                \n",
+       "[20983] \"206151_x_at\"                 \"210080_x_at\"                \n",
+       "[20985] \"210080_x_at\"                 \"208606_s_at\"                \n",
+       "[20987] \"206967_at\"                   \"206253_at\"                  \n",
+       "[20989] \"208260_at\"                   \"206741_at\"                  \n",
+       "[20991] \"208204_s_at\"                 \"206825_at\"                  \n",
+       "[20993] \"205531_s_at\"                 \"206401_s_at\"                \n",
+       "[20995] \"206274_s_at\"                 \"207022_s_at\"                \n",
+       "[20997] \"209810_at\"                   \"205495_s_at\"                \n",
+       "[20999] \"206121_at\"                   \"209393_s_at\"                \n",
+       "[21001] \"207167_at\"                   \"206499_s_at\"                \n",
+       "[21003] \"205693_at\"                   \"208224_at\"                  \n",
+       "[21005] \"208414_s_at\"                 \"205600_x_at\"                \n",
+       "[21007] \"205601_s_at\"                 \"205891_at\"                  \n",
+       "[21009] \"210323_at\"                   \"208313_s_at\"                \n",
+       "[21011] \"210172_at\"                   \"205801_s_at\"                \n",
+       "[21013] \"206027_at\"                   \"208020_s_at\"                \n",
+       "[21015] \"208020_s_at\"                 \"207748_at\"                  \n",
+       "[21017] \"208389_s_at\"                 \"207072_at\"                  \n",
+       "[21019] \"209600_s_at\"                 \"207566_at\"                  \n",
+       "[21021] \"207565_s_at\"                 \"210224_at\"                  \n",
+       "[21023] \"210223_s_at\"                 \"207160_at\"                  \n",
+       "[21025] \"206998_x_at\"                 \"207752_x_at\"                \n",
+       "[21027] \"207752_x_at\"                 \"210400_at\"                  \n",
+       "[21029] \"206406_at\"                   \"208539_x_at\"                \n",
+       "[21031] \"208539_x_at\"                 \"210108_at\"                  \n",
+       "[21033] \"207998_s_at\"                 \"208539_x_at\"                \n",
+       "[21035] \"210252_s_at\"                 \"206672_at\"                  \n",
+       "[21037] \"208435_s_at\"                 \"208270_s_at\"                \n",
+       "[21039] \"208008_at\"                   \"208008_at\"                  \n",
+       "[21041] \"209403_at\"                   \"209403_at\"                  \n",
+       "[21043] \"209518_at\"                   \"205473_at\"                  \n",
+       "[21045] \"205473_at\"                   \"206496_at\"                  \n",
+       "[21047] \"207856_s_at\"                 \"207838_x_at\"                \n",
+       "[21049] \"205657_at\"                   \"206996_x_at\"                \n",
+       "[21051] \"210185_at\"                   \"206024_at\"                  \n",
+       "[21053] \"207805_s_at\"                 \"209334_s_at\"                \n",
+       "[21055] \"207805_s_at\"                 \"205661_s_at\"                \n",
+       "[21057] \"205853_at\"                   \"208638_at\"                  \n",
+       "[21059] \"207668_x_at\"                 \"208639_x_at\"                \n",
+       "[21061] \"209633_at\"                   \"207749_s_at\"                \n",
+       "[21063] \"209632_at\"                   \"207945_s_at\"                \n",
+       "[21065] \"208774_at\"                   \"206724_at\"                  \n",
+       "[21067] \"206275_s_at\"                 \"207717_s_at\"                \n",
+       "[21069] \"206215_at\"                   \"207198_s_at\"                \n",
+       "[21071] \"208464_at\"                   \"209021_x_at\"                \n",
+       "[21073] \"205619_s_at\"                 \"208593_x_at\"                \n",
+       "[21075] \"208593_x_at\"                 \"206766_at\"                  \n",
+       "[21077] \"210435_at\"                   \"210435_at\"                  \n",
+       "[21079] \"210435_at\"                   \"206136_at\"                  \n",
+       "[21081] \"205754_at\"                   \"208396_s_at\"                \n",
+       "[21083] \"209271_at\"                   \"207186_s_at\"                \n",
+       "[21085] \"206303_s_at\"                 \"206302_s_at\"                \n",
+       "[21087] \"205805_s_at\"                 \"207350_s_at\"                \n",
+       "[21089] \"206568_at\"                   \"206287_s_at\"                \n",
+       "[21091] \"210259_s_at\"                 \"208216_at\"                  \n",
+       "[21093] \"209572_s_at\"                 \"206545_at\"                  \n",
+       "[21095] \"209478_at\"                   \"206287_s_at\"                \n",
+       "[21097] \"207686_s_at\"                 \"205755_at\"                  \n",
+       "[21099] \"206103_at\"                   \"207291_at\"                  \n",
+       "[21101] \"210129_s_at\"                 \"205467_at\"                  \n",
+       "[21103] \"209201_x_at\"                 \"208138_at\"                  \n",
+       "[21105] \"206361_at\"                   \"206361_at\"                  \n",
+       "[21107] \"209174_s_at\"                 \"209260_at\"                  \n",
+       "[21109] \"209174_s_at\"                 \"209030_s_at\"                \n",
+       "[21111] \"209032_s_at\"                 \"209031_at\"                  \n",
+       "[21113] \"206410_at\"                   \"209581_at\"                  \n",
+       "[21115] \"206290_s_at\"                 \"206586_at\"                  \n",
+       "[21117] \"206095_s_at\"                 \"210178_x_at\"                \n",
+       "[21119] \"206468_s_at\"                 \"209839_at\"                  \n",
+       "[21121] \"207572_at\"                   \"208572_at\"                  \n",
+       "[21123] \"210082_at\"                   \"205474_at\"                  \n",
+       "[21125] \"205655_at\"                   \"205893_at\"                  \n",
+       "[21127] \"207591_s_at\"                 \"207008_at\"                  \n",
+       "[21129] \"206670_s_at\"                 \"206669_at\"                  \n",
+       "[21131] \"206181_at\"                   \"205858_at\"                  \n",
+       "[21133] \"208709_s_at\"                 \"207812_s_at\"                \n",
+       "[21135] \"208843_s_at\"                 \"208842_s_at\"                \n",
+       "[21137] \"210235_s_at\"                 \"210236_at\"                  \n",
+       "[21139] \"205972_at\"                   \"210124_x_at\"                \n",
+       "[21141] \"208124_s_at\"                 \"206208_at\"                  \n",
+       "[21143] \"206209_s_at\"                 \"207033_at\"                  \n",
+       "[21145] \"206114_at\"                   \"205513_at\"                  \n",
+       "[21147] \"210254_at\"                   \"207497_s_at\"                \n",
+       "[21149] \"207496_at\"                   \"207145_at\"                  \n",
+       "[21151] \"207671_s_at\"                 \"208834_x_at\"                \n",
+       "[21153] \"208825_x_at\"                 \"206260_at\"                  \n",
+       "[21155] \"205993_s_at\"                 \"207910_at\"                  \n",
+       "[21157] \"205979_at\"                   \"206799_at\"                  \n",
+       "[21159] \"206378_at\"                   \"210220_at\"                  \n",
+       "[21161] \"207048_at\"                   \"209957_s_at\"                \n",
+       "[21163] \"205563_at\"                   \"207599_at\"                  \n",
+       "[21165] \"209968_s_at\"                 \"210118_s_at\"                \n",
+       "[21167] \"207709_at\"                   \"209429_x_at\"                \n",
+       "[21169] \"206590_x_at\"                 \"207407_x_at\"                \n",
+       "[21171] \"206457_s_at\"                 \"207847_s_at\"                \n",
+       "[21173] \"210383_at\"                   \"210389_x_at\"                \n",
+       "[21175] \"207990_x_at\"                 \"207969_x_at\"                \n",
+       "[21177] \"206776_x_at\"                 \"207973_x_at\"                \n",
+       "[21179] \"207991_x_at\"                 \"208013_s_at\"                \n",
+       "[21181] \"207501_s_at\"                 \"206867_at\"                  \n",
+       "[21183] \"207792_at\"                   \"207619_at\"                  \n",
+       "[21185] \"208140_s_at\"                 \"207046_at\"                  \n",
+       "[21187] \"207445_s_at\"                 \"209648_x_at\"                \n",
+       "[21189] \"208127_s_at\"                 \"209647_s_at\"                \n",
+       "[21191] \"207046_at\"                   \"207243_s_at\"                \n",
+       "[21193] \"206953_s_at\"                 \"208392_x_at\"                \n",
+       "[21195] \"209761_s_at\"                 \"208012_x_at\"                \n",
+       "[21197] \"209762_x_at\"                 \"209969_s_at\"                \n",
+       "[21199] \"207667_s_at\"                 \"207548_at\"                  \n",
+       "[21201] \"207047_s_at\"                 \"205985_x_at\"                \n",
+       "[21203] \"210233_at\"                   \"208776_at\"                  \n",
+       "[21205] \"208777_s_at\"                 \"205930_at\"                  \n",
+       "[21207] \"205724_at\"                   \"209677_at\"                  \n",
+       "[21209] \"209678_s_at\"                 \"206675_s_at\"                \n",
+       "[21211] \"206908_s_at\"                 \"210344_at\"                  \n",
+       "[21213] \"208163_s_at\"                 \"208374_s_at\"                \n",
+       "[21215] \"205760_s_at\"                 \"209931_s_at\"                \n",
+       "[21217] \"206857_s_at\"                 \"209931_s_at\"                \n",
+       "[21219] \"206857_s_at\"                 \"209907_s_at\"                \n",
+       "[21221] \"209898_x_at\"                 \"205698_s_at\"                \n",
+       "[21223] \"205699_at\"                   \"209463_s_at\"                \n",
+       "[21225] \"209207_s_at\"                 \"205966_at\"                  \n",
+       "[21227] \"207283_at\"                   \"207283_at\"                  \n",
+       "[21229] \"205569_at\"                   \"205480_s_at\"                \n",
+       "[21231] \"206492_at\"                   \"209750_at\"                  \n",
+       "[21233] \"209965_s_at\"                 \"210264_at\"                  \n",
+       "[21235] \"206036_s_at\"                 \"210486_at\"                  \n",
+       "[21237] \"208634_s_at\"                 \"207358_x_at\"                \n",
+       "[21239] \"208633_s_at\"                 \"209115_at\"                  \n",
+       "[21241] \"205745_x_at\"                 \"205746_s_at\"                \n",
+       "[21243] \"209114_at\"                   \"207979_s_at\"                \n",
+       "[21245] \"205758_at\"                   \"207688_s_at\"                \n",
+       "[21247] \"210462_at\"                   \"206721_at\"                  \n",
+       "[21249] \"206809_s_at\"                 \"209681_at\"                  \n",
+       "[21251] \"206571_s_at\"                 \"210358_x_at\"                \n",
+       "[21253] \"209710_at\"                   \"205589_at\"                  \n",
+       "[21255] \"207233_s_at\"                 \"207856_s_at\"                \n",
+       "[21257] \"207413_s_at\"                 \"207282_s_at\"                \n",
+       "[21259] \"206304_at\"                   \"209395_at\"                  \n",
+       "[21261] \"209396_s_at\"                 \"206469_x_at\"                \n",
+       "[21263] \"208168_s_at\"                 \"209124_at\"                  \n",
+       "[21265] \"208782_at\"                   \"210430_x_at\"                \n",
+       "[21267] \"207028_at\"                   \"209757_s_at\"                \n",
+       "[21269] \"209756_s_at\"                 \"206283_s_at\"                \n",
+       "[21271] \"206964_at\"                   \"206963_s_at\"                \n",
+       "[21273] \"207738_s_at\"                 \"207855_s_at\"                \n",
+       "[21275] \"208100_x_at\"                 \"209611_s_at\"                \n",
+       "[21277] \"209610_s_at\"                 \"207791_s_at\"                \n",
+       "[21279] \"208724_s_at\"                 \"206955_at\"                  \n",
+       "[21281] \"206171_at\"                   \"206758_at\"                  \n",
+       "[21283] \"206800_at\"                   \"207724_s_at\"                \n",
+       "[21285] \"209748_at\"                   \"207763_at\"                  \n",
+       "[21287] \"210015_s_at\"                 \"207977_s_at\"                \n",
+       "[21289] \"209325_s_at\"                 \"209324_s_at\"                \n",
+       "[21291] \"206833_s_at\"                 \"209340_at\"                  \n",
+       "[21293] \"208965_s_at\"                 \"206332_s_at\"                \n",
+       "[21295] \"208966_x_at\"                 \"206513_at\"                  \n",
+       "[21297] \"205996_s_at\"                 \"208967_s_at\"                \n",
+       "[21299] \"206305_s_at\"                 \"205871_at\"                  \n",
+       "[21301] \"207549_x_at\"                 \"208783_s_at\"                \n",
+       "[21303] \"210202_s_at\"                 \"210201_x_at\"                \n",
+       "[21305] \"208209_s_at\"                 \"205654_at\"                  \n",
+       "[21307] \"208800_at\"                   \"210232_at\"                  \n",
+       "[21309] \"208727_s_at\"                 \"208728_s_at\"                \n",
+       "[21311] \"207874_s_at\"                 \"205804_s_at\"                \n",
+       "[21313] \"206611_at\"                   \"206611_at\"                  \n",
+       "[21315] \"206979_at\"                   \"206611_at\"                  \n",
+       "[21317] \"206611_at\"                   \"207778_at\"                  \n",
+       "[21319] \"207778_at\"                   \"208265_at\"                  \n",
+       "[21321] \"208761_s_at\"                 \"205988_at\"                  \n",
+       "[21323] \"205871_at\"                   \"206659_at\"                  \n",
+       "[21325] \"208684_at\"                   \"207053_at\"                  \n",
+       "[21327] \"206165_s_at\"                 \"206166_s_at\"                \n",
+       "[21329] \"206164_at\"                   \"210107_at\"                  \n",
+       "[21331] \"207693_at\"                   \"206303_s_at\"                \n",
+       "[21333] \"206302_s_at\"                 \"209207_s_at\"                \n",
+       "[21335] \"206997_s_at\"                 \"208194_s_at\"                \n",
+       "[21337] \"209649_at\"                   \"210432_s_at\"                \n",
+       "[21339] \"206904_at\"                   \"206905_s_at\"                \n",
+       "[21341] \"207865_s_at\"                 \"210406_s_at\"                \n",
+       "[21343] \"207971_s_at\"                 \"206204_at\"                  \n",
+       "[21345] \"207924_x_at\"                 \"209552_at\"                  \n",
+       "[21347] \"207921_x_at\"                 \"207923_x_at\"                \n",
+       "[21349] \"207261_at\"                   \"208363_s_at\"                \n",
+       "[21351] \"208364_at\"                   \"206949_s_at\"                \n",
+       "[21353] \"209435_s_at\"                 \"207629_s_at\"                \n",
+       "[21355] \"205550_s_at\"                 \"209856_x_at\"                \n",
+       "[21357] \"207268_x_at\"                 \"206589_at\"                  \n",
+       "[21359] \"208518_s_at\"                 \"206999_at\"                  \n",
+       "[21361] \"207433_at\"                   \"207874_s_at\"                \n",
+       "[21363] \"209234_at\"                   \"208756_at\"                  \n",
+       "[21365] \"208009_s_at\"                 \"206794_at\"                  \n",
+       "[21367] \"206634_at\"                   \"206511_s_at\"                \n",
+       "[21369] \"206510_at\"                   \"205934_at\"                  \n",
+       "[21371] \"208010_s_at\"                 \"206060_s_at\"                \n",
+       "[21373] \"208011_at\"                   \"206594_at\"                  \n",
+       "[21375] \"208312_s_at\"                 \"208312_s_at\"                \n",
+       "[21377] \"208312_s_at\"                 \"208312_s_at\"                \n",
+       "[21379] \"208312_s_at\"                 \"208600_s_at\"                \n",
+       "[21381] \"205937_at\"                   \"208967_s_at\"                \n",
+       "[21383] \"207157_s_at\"                 \"207157_s_at\"                \n",
+       "[21385] \"208536_s_at\"                 \"205787_x_at\"                \n",
+       "[21387] \"205788_s_at\"                 \"207237_at\"                  \n",
+       "[21389] \"205520_at\"                   \"207075_at\"                  \n",
+       "[21391] \"207075_at\"                   \"205787_x_at\"                \n",
+       "[21393] \"205788_s_at\"                 \"209949_at\"                  \n",
+       "[21395] \"208500_x_at\"                 \"206028_s_at\"                \n",
+       "[21397] \"207238_s_at\"                 \"210007_s_at\"                \n",
+       "[21399] \"206419_at\"                   \"208642_s_at\"                \n",
+       "[21401] \"208643_s_at\"                 \"208683_at\"                  \n",
+       "[21403] \"209421_at\"                   \"210258_at\"                  \n",
+       "[21405] \"207981_s_at\"                 \"209966_x_at\"                \n",
+       "[21407] \"206635_at\"                   \"205902_at\"                  \n",
+       "[21409] \"205903_s_at\"                 \"207720_at\"                  \n",
+       "[21411] \"205863_at\"                   \"205916_at\"                  \n",
+       "[21413] \"205916_at\"                   \"208458_at\"                  \n",
+       "[21415] \"208103_s_at\"                 \"209268_at\"                  \n",
+       "[21417] \"205945_at\"                   \"207164_s_at\"                \n",
+       "[21419] \"207840_at\"                   \"209382_at\"                  \n",
+       "[21421] \"207536_s_at\"                 \"207874_s_at\"                \n",
+       "[21423] \"208088_s_at\"                 \"205644_s_at\"                \n",
+       "[21425] \"208759_at\"                   \"205544_s_at\"                \n",
+       "[21427] \"208488_s_at\"                 \"206244_at\"                  \n",
+       "[21429] \"210323_at\"                   \"208750_s_at\"                \n",
+       "[21431] \"205866_at\"                   \"206910_x_at\"                \n",
+       "[21433] \"210031_at\"                   \"207041_at\"                  \n",
+       "[21435] \"208014_x_at\"                 \"206423_at\"                  \n",
+       "[21437] \"210417_s_at\"                 \"206139_at\"                  \n",
+       "[21439] \"206138_s_at\"                 \"205807_s_at\"                \n",
+       "[21441] \"207635_s_at\"                 \"205752_s_at\"                \n",
+       "[21443] \"207719_x_at\"                 \"207719_x_at\"                \n",
+       "[21445] \"205789_at\"                   \"208668_x_at\"                \n",
+       "[21447] \"206873_at\"                   \"209882_at\"                  \n",
+       "[21449] \"206411_s_at\"                 \"209353_s_at\"                \n",
+       "[21451] \"209091_s_at\"                 \"209090_s_at\"                \n",
+       "[21453] \"210101_x_at\"                 \"205614_x_at\"                \n",
+       "[21455] \"209093_s_at\"                 \"210305_at\"                  \n",
+       "[21457] \"208766_s_at\"                 \"208765_s_at\"                \n",
+       "[21459] \"206944_at\"                   \"208727_s_at\"                \n",
+       "[21461] \"208728_s_at\"                 \"210232_at\"                  \n",
+       "[21463] \"205614_x_at\"                 \"209206_at\"                  \n",
+       "[21465] \"209207_s_at\"                 \"209207_s_at\"                \n",
+       "[21467] \"207645_s_at\"                 \"205776_at\"                  \n",
+       "[21469] \"207645_s_at\"                 \"207793_s_at\"                \n",
+       "[21471] \"208768_x_at\"                 \"208768_x_at\"                \n",
+       "[21473] \"210305_at\"                   \"210305_at\"                  \n",
+       "[21475] \"210305_at\"                   \"207828_s_at\"                \n",
+       "[21477] \"209172_s_at\"                 \"207331_at\"                  \n",
+       "[21479] \"209093_s_at\"                 \"207368_at\"                  \n",
+       "[21481] \"208297_s_at\"                 \"209717_at\"                  \n",
+       "[21483] \"208605_s_at\"                 \"208002_s_at\"                \n",
+       "[21485] \"208432_s_at\"                 \"209947_at\"                  \n",
+       "[21487] \"207690_at\"                   \"205689_at\"                  \n",
+       "[21489] \"205481_at\"                   \"210096_at\"                  \n",
+       "[21491] \"207407_x_at\"                 \"210374_x_at\"                \n",
+       "[21493] \"208169_s_at\"                 \"210375_at\"                  \n",
+       "[21495] \"208668_x_at\"                 \"210475_at\"                  \n",
+       "[21497] \"208345_s_at\"                 \"208973_at\"                  \n",
+       "[21499] \"208456_s_at\"                 \"207355_at\"                  \n",
+       "[21501] \"207317_s_at\"                 \"208498_s_at\"                \n",
+       "[21503] \"210266_s_at\"                 \"209927_s_at\"                \n",
+       "[21505] \"208335_s_at\"                 \"206990_at\"                  \n",
+       "[21507] \"208270_s_at\"                 \"207401_at\"                  \n",
+       "[21509] \"207431_s_at\"                 \"209250_at\"                  \n",
+       "[21511] \"206090_s_at\"                 \"207759_s_at\"                \n",
+       "[21513] \"206971_at\"                   \"206972_s_at\"                \n",
+       "[21515] \"210131_x_at\"                 \"207290_at\"                  \n",
+       "[21517] \"207557_s_at\"                 \"207727_s_at\"                \n",
+       "[21519] \"206446_s_at\"                 \"206447_at\"                  \n",
+       "[21521] \"206447_at\"                   \"207077_at\"                  \n",
+       "[21523] \"206446_s_at\"                 \"211600_at\"                  \n",
+       "[21525] \"211600_at\"                   \"212854_x_at\"                \n",
+       "[21527] \"215434_x_at\"                 \"214203_s_at\"                \n",
+       "[21529] \"213897_s_at\"                 \"210854_x_at\"                \n",
+       "[21531] \"213843_x_at\"                 \"215010_s_at\"                \n",
+       "[21533] \"214983_at\"                   \"214983_at\"                  \n",
+       "[21535] \"211460_at\"                   \"211592_s_at\"                \n",
+       "[21537] \"211592_s_at\"                 \"211149_at\"                  \n",
+       "[21539] \"211462_s_at\"                 \"211460_at\"                  \n",
+       "[21541] \"211614_at\"                   \"213279_at\"                  \n",
+       "[21543] \"211227_s_at\"                 \"211461_at\"                  \n",
+       "[21545] \"211461_at\"                   \"213345_at\"                  \n",
+       "[21547] \"211461_at\"                   \"211461_at\"                  \n",
+       "[21549] \"212155_at\"                   \"211460_at\"                  \n",
+       "[21551] \"211460_at\"                   \"214131_at\"                  \n",
+       "[21553] \"211623_s_at\"                 \"214899_at\"                  \n",
+       "[21555] \"212085_at\"                   \"212826_s_at\"                \n",
+       "[21557] \"210551_s_at\"                 \"211286_x_at\"                \n",
+       "[21559] \"211287_x_at\"                 \"211915_s_at\"                \n",
+       "[21561] \"214510_at\"                   \"214223_at\"                  \n",
+       "[21563] \"210565_at\"                   \"211020_at\"                  \n",
+       "[21565] \"212003_at\"                   \"212004_at\"                  \n",
+       "[21567] \"212002_at\"                   \"212005_at\"                  \n",
+       "[21569] \"212854_x_at\"                 \"215434_x_at\"                \n",
+       "[21571] \"212854_x_at\"                 \"215434_x_at\"                \n",
+       "[21573] \"212854_x_at\"                 \"215434_x_at\"                \n",
+       "[21575] \"212854_x_at\"                 \"215434_x_at\"                \n",
+       "[21577] \"213380_x_at\"                 \"213380_x_at\"                \n",
+       "[21579] \"213380_x_at\"                 \"213380_x_at\"                \n",
+       "[21581] \"213380_x_at\"                 \"211970_x_at\"                \n",
+       "[21583] \"211995_x_at\"                 \"212363_x_at\"                \n",
+       "[21585] \"213214_x_at\"                 \"211983_x_at\"                \n",
+       "[21587] \"212988_x_at\"                 \"213753_x_at\"                \n",
+       "[21589] \"213757_at\"                   \"213757_at\"                  \n",
+       "[21591] \"212067_s_at\"                 \"215481_s_at\"                \n",
+       "[21593] \"211413_s_at\"                 \"214456_x_at\"                \n",
+       "[21595] \"211074_at\"                   \"212661_x_at\"                \n",
+       "[21597] \"211378_x_at\"                 \"211765_x_at\"                \n",
+       "[21599] \"211978_x_at\"                 \"214938_x_at\"                \n",
+       "[21601] \"212996_s_at\"                 \"214504_at\"                  \n",
+       "[21603] \"211074_at\"                   \"213167_s_at\"                \n",
+       "[21605] \"212944_at\"                   \"213164_at\"                  \n",
+       "[21607] \"214558_at\"                   \"210809_s_at\"                \n",
+       "[21609] \"214981_at\"                   \"211942_x_at\"                \n",
+       "[21611] \"211074_at\"                   \"214598_at\"                  \n",
+       "[21613] \"214496_x_at\"                 \"212452_x_at\"                \n",
+       "[21615] \"211874_s_at\"                 \"212462_at\"                  \n",
+       "[21617] \"213000_at\"                   \"212790_x_at\"                \n",
+       "[21619] \"211942_x_at\"                 \"213239_at\"                  \n",
+       "[21621] \"215091_s_at\"                 \"210970_s_at\"                \n",
+       "[21623] \"212418_at\"                   \"212420_at\"                  \n",
+       "[21625] \"212232_at\"                   \"211341_at\"                  \n",
+       "[21627] \"211789_s_at\"                 \"214074_s_at\"                \n",
+       "[21629] \"214073_at\"                   \"212768_s_at\"                \n",
+       "[21631] \"211954_s_at\"                 \"211953_s_at\"                \n",
+       "[21633] \"211955_at\"                   \"211952_at\"                  \n",
+       "[21635] \"210689_at\"                   \"213725_x_at\"                \n",
+       "[21637] \"210680_s_at\"                 \"213749_at\"                  \n",
+       "[21639] \"210818_s_at\"                 \"210818_s_at\"                \n",
+       "[21641] \"211806_s_at\"                 \"213327_s_at\"                \n",
+       "[21643] \"212290_at\"                   \"212292_at\"                  \n",
+       "[21645] \"212295_s_at\"                 \"211349_at\"                  \n",
+       "[21647] \"212507_at\"                   \"214723_x_at\"                \n",
+       "[21649] \"211025_x_at\"                 \"213735_s_at\"                \n",
+       "[21651] \"211074_at\"                   \"215456_at\"                  \n",
+       "[21653] \"214723_x_at\"                 \"214032_at\"                  \n",
+       "[21655] \"212875_s_at\"                 \"214936_at\"                  \n",
+       "[21657] \"211921_x_at\"                 \"214194_at\"                  \n",
+       "[21659] \"210961_s_at\"                 \"210960_at\"                  \n",
+       "[21661] \"211181_x_at\"                 \"211182_x_at\"                \n",
+       "[21663] \"211620_x_at\"                 \"211180_x_at\"                \n",
+       "[21665] \"210805_x_at\"                 \"211181_x_at\"                \n",
+       "[21667] \"211182_x_at\"                 \"211620_x_at\"                \n",
+       "[21669] \"211180_x_at\"                 \"210805_x_at\"                \n",
+       "[21671] \"211455_at\"                   \"213727_x_at\"                \n",
+       "[21673] \"213088_s_at\"                 \"211964_at\"                  \n",
+       "[21675] \"211966_at\"                   \"210674_s_at\"                \n",
+       "[21677] \"211365_s_at\"                 \"210674_s_at\"                \n",
+       "[21679] \"210572_at\"                   \"211870_s_at\"                \n",
+       "[21681] \"210572_at\"                   \"210674_s_at\"                \n",
+       "[21683] \"211838_x_at\"                 \"210674_s_at\"                \n",
+       "[21685] \"211838_x_at\"                 \"210674_s_at\"                \n",
+       "[21687] \"211811_s_at\"                 \"210674_s_at\"                \n",
+       "[21689] \"210674_s_at\"                 \"210674_s_at\"                \n",
+       "[21691] \"211867_s_at\"                 \"210674_s_at\"                \n",
+       "[21693] \"211867_s_at\"                 \"210674_s_at\"                \n",
+       "[21695] \"210674_s_at\"                 \"210674_s_at\"                \n",
+       "[21697] \"210674_s_at\"                 \"210674_s_at\"                \n",
+       "[21699] \"210674_s_at\"                 \"213134_x_at\"                \n",
+       "[21701] \"211742_s_at\"                 \"213309_at\"                  \n",
+       "[21703] \"212846_at\"                   \"212844_at\"                  \n",
+       "[21705] \"211455_at\"                   \"215119_at\"                  \n",
+       "[21707] \"211416_x_at\"                 \"211980_at\"                  \n",
+       "[21709] \"211981_at\"                   \"214968_at\"                  \n",
+       "[21711] \"211161_s_at\"                 \"215076_s_at\"                \n",
+       "[21713] \"214825_at\"                   \"212289_at\"                  \n",
+       "[21715] \"212286_at\"                   \"211572_s_at\"                \n",
+       "[21717] \"211541_s_at\"                 \"211079_s_at\"                \n",
+       "[21719] \"215234_at\"                   \"211484_s_at\"                \n",
+       "[21721] \"212750_at\"                   \"213974_at\"                  \n",
+       "[21723] \"213031_s_at\"                 \"211276_at\"                  \n",
+       "[21725] \"212816_s_at\"                 \"212816_s_at\"                \n",
+       "[21727] \"211006_s_at\"                 \"211645_x_at\"                \n",
+       "[21729] \"215181_at\"                   \"215040_at\"                  \n",
+       "[21731] \"211644_x_at\"                 \"214768_x_at\"                \n",
+       "[21733] \"211678_s_at\"                 \"215176_x_at\"                \n",
+       "[21735] \"211711_s_at\"                 \"213989_x_at\"                \n",
+       "[21737] \"211352_s_at\"                 \"211734_s_at\"                \n",
+       "[21739] \"211576_s_at\"                 \"213617_s_at\"                \n",
+       "[21741] \"213616_at\"                   \"212055_at\"                  \n",
+       "[21743] \"210702_s_at\"                 \"211892_s_at\"                \n",
+       "[21745] \"212062_at\"                   \"210501_x_at\"                \n",
+       "[21747] \"212716_s_at\"                 \"213375_s_at\"                \n",
+       "[21749] \"214906_x_at\"                 \"213431_x_at\"                \n",
+       "[21751] \"214402_s_at\"                 \"210913_at\"                  \n",
+       "[21753] \"214748_at\"                   \"214448_x_at\"                \n",
+       "[21755] \"214062_x_at\"                 \"213136_at\"                  \n",
+       "[21757] \"213137_s_at\"                 \"213756_s_at\"                \n",
+       "[21759] \"212719_at\"                   \"211830_s_at\"                \n",
+       "[21761] \"213112_s_at\"                 \"212052_s_at\"                \n",
+       "[21763] \"212054_x_at\"                 \"213472_at\"                  \n",
+       "[21765] \"213470_s_at\"                 \"213254_at\"                  \n",
+       "[21767] \"212990_at\"                   \"213132_s_at\"                \n",
+       "[21769] \"213346_at\"                   \"213324_at\"                  \n",
+       "[21771] \"214524_at\"                   \"212914_at\"                  \n",
+       "[21773] \"213399_x_at\"                 \"213491_x_at\"                \n",
+       "[21775] \"214820_at\"                   \"211540_s_at\"                \n",
+       "[21777] \"214844_s_at\"                 \"214747_at\"                  \n",
+       "[21779] \"212039_x_at\"                 \"211666_x_at\"                \n",
+       "[21781] \"211073_x_at\"                 \"211259_s_at\"                \n",
+       "[21783] \"211260_at\"                   \"211040_x_at\"                \n",
+       "[21785] \"214097_at\"                   \"212284_x_at\"                \n",
+       "[21787] \"215096_s_at\"                 \"214086_s_at\"                \n",
+       "[21789] \"213140_s_at\"                 \"211616_s_at\"                \n",
+       "[21791] \"214028_x_at\"                 \"211484_s_at\"                \n",
+       "[21793] \"212526_at\"                   \"215188_at\"                  \n",
+       "[21795] \"214750_at\"                   \"211113_s_at\"                \n",
+       "[21797] \"210908_s_at\"                 \"211754_s_at\"                \n",
+       "[21799] \"214210_at\"                   \"214839_at\"                  \n",
+       "[21801] \"214476_at\"                   \"210762_s_at\"                \n",
+       "[21803] \"211381_x_at\"                 \"211381_x_at\"                \n",
+       "[21805] \"211381_x_at\"                 \"210884_s_at\"                \n",
+       "[21807] \"210722_at\"                   \"211766_s_at\"                \n",
+       "[21809] \"213275_x_at\"                 \"210950_s_at\"                \n",
+       "[21811] \"214461_at\"                   \"211652_s_at\"                \n",
+       "[21813] \"210934_at\"                   \"213278_at\"                  \n",
+       "[21815] \"213457_at\"                   \"212320_at\"                  \n",
+       "[21817] \"212946_at\"                   \"214231_s_at\"                \n",
+       "[21819] \"214487_s_at\"                 \"213897_s_at\"                \n",
+       "[21821] \"213854_at\"                   \"210613_s_at\"                \n",
+       "[21823] \"211894_x_at\"                 \"213609_s_at\"                \n",
+       "[21825] \"212433_x_at\"                 \"212433_x_at\"                \n",
+       "[21827] \"212433_x_at\"                 \"213801_x_at\"                \n",
+       "[21829] \"211403_x_at\"                 \"213784_at\"                  \n",
+       "[21831] \"212085_at\"                   \"212826_s_at\"                \n",
+       "[21833] \"213133_s_at\"                 \"214318_s_at\"                \n",
+       "[21835] \"213133_s_at\"                 \"213129_s_at\"                \n",
+       "[21837] \"213133_s_at\"                 \"210551_s_at\"                \n",
+       "[21839] \"213868_s_at\"                 \"212168_at\"                  \n",
+       "[21841] \"212170_at\"                   \"210762_s_at\"                \n",
+       "[21843] \"211769_x_at\"                 \"212983_at\"                  \n",
+       "[21845] \"214834_at\"                   \"213447_at\"                  \n",
+       "[21847] \"214961_at\"                   \"210581_x_at\"                \n",
+       "[21849] \"211391_s_at\"                 \"211392_s_at\"                \n",
+       "[21851] \"214309_s_at\"                 \"211065_x_at\"                \n",
+       "[21853] \"214355_x_at\"                 \"214355_x_at\"                \n",
+       "[21855] \"210931_at\"                   \"210932_s_at\"                \n",
+       "[21857] \"210931_at\"                   \"210788_s_at\"                \n",
+       "[21859] \"211686_s_at\"                 \"215175_at\"                  \n",
+       "[21861] \"213159_at\"                   \"213173_at\"                  \n",
+       "[21863] \"214442_s_at\"                 \"214593_at\"                  \n",
+       "[21865] \"211996_s_at\"                 \"211996_s_at\"                \n",
+       "[21867] \"213262_at\"                   \"211996_s_at\"                \n",
+       "[21869] \"211996_s_at\"                 \"212192_at\"                  \n",
+       "[21871] \"212188_at\"                   \"214252_s_at\"                \n",
+       "[21873] \"211073_x_at\"                 \"214409_at\"                  \n",
+       "[21875] \"214408_s_at\"                 \"214252_s_at\"                \n",
+       "[21877] \"214758_at\"                   \"211887_x_at\"                \n",
+       "[21879] \"214770_at\"                   \"213608_s_at\"                \n",
+       "[21881] \"213019_at\"                   \"214366_s_at\"                \n",
+       "[21883] \"215469_at\"                   \"214930_at\"                  \n",
+       "[21885] \"214491_at\"                   \"214868_at\"                  \n",
+       "[21887] \"214955_at\"                   \"210758_at\"                  \n",
+       "[21889] \"211689_s_at\"                 \"211689_s_at\"                \n",
+       "[21891] \"212515_s_at\"                 \"212349_at\"                  \n",
+       "[21893] \"213508_at\"                   \"212460_at\"                  \n",
+       "[21895] \"213171_s_at\"                 \"212537_x_at\"                \n",
+       "[21897] \"212270_x_at\"                 \"211417_x_at\"                \n",
+       "[21899] \"214291_at\"                   \"212480_at\"                  \n",
+       "[21901] \"211491_at\"                   \"211492_s_at\"                \n",
+       "[21903] \"211489_at\"                   \"211490_at\"                  \n",
+       "[21905] \"211497_x_at\"                 \"211498_s_at\"                \n",
+       "[21907] \"214152_at\"                   \"214151_s_at\"                \n",
+       "[21909] \"212947_at\"                   \"212387_at\"                  \n",
+       "[21911] \"212385_at\"                   \"212382_at\"                  \n",
+       "[21913] \"212386_at\"                   \"213891_s_at\"                \n",
+       "[21915] \"210938_at\"                   \"210937_s_at\"                \n",
+       "[21917] \"211417_x_at\"                 \"212971_at\"                  \n",
+       "[21919] \"211217_s_at\"                 \"211417_x_at\"                \n",
+       "[21921] \"213182_x_at\"                 \"213348_at\"                  \n",
+       "[21923] \"214927_at\"                   \"215544_s_at\"                \n",
+       "[21925] \"213304_at\"                   \"211018_at\"                  \n",
+       "[21927] \"211019_s_at\"                 \"212159_x_at\"                \n",
+       "[21929] \"211779_x_at\"                 \"212161_at\"                  \n",
+       "[21931] \"214133_at\"                   \"212271_at\"                  \n",
+       "[21933] \"211518_s_at\"                 \"211507_s_at\"                \n",
+       "[21935] \"212266_s_at\"                 \"215037_s_at\"                \n",
+       "[21937] \"212312_at\"                   \"214143_x_at\"                \n",
+       "[21939] \"211058_x_at\"                 \"211072_x_at\"                \n",
+       "[21941] \"212938_at\"                   \"213428_s_at\"                \n",
+       "[21943] \"212940_at\"                   \"212937_s_at\"                \n",
+       "[21945] \"212091_s_at\"                 \"214864_s_at\"                \n",
+       "[21947] \"212523_s_at\"                 \"213003_s_at\"                \n",
+       "[21949] \"215142_at\"                   \"211778_s_at\"                \n",
+       "[21951] \"210712_at\"                   \"212508_at\"                  \n",
+       "[21953] \"213246_at\"                   \"212159_x_at\"                \n",
+       "[21955] \"211779_x_at\"                 \"212161_at\"                  \n",
+       "[21957] \"213824_at\"                   \"213825_at\"                  \n",
+       "[21959] \"214133_at\"                   \"211610_at\"                  \n",
+       "[21961] \"213079_at\"                   \"210740_s_at\"                \n",
+       "[21963] \"213366_x_at\"                 \"215167_at\"                  \n",
+       "[21965] \"211429_s_at\"                 \"212529_at\"                  \n",
+       "[21967] \"213466_at\"                   \"214538_x_at\"                \n",
+       "[21969] \"211448_s_at\"                 \"215519_x_at\"                \n",
+       "[21971] \"214779_s_at\"                 \"215519_x_at\"                \n",
+       "[21973] \"214779_s_at\"                 \"215253_s_at\"                \n",
+       "[21975] \"214876_s_at\"                 \"212410_at\"                  \n",
+       "[21977] \"212450_at\"                   \"212451_at\"                  \n",
+       "[21979] \"213941_x_at\"                 \"210597_x_at\"                \n",
+       "[21981] \"211531_x_at\"                 \"210597_x_at\"                \n",
+       "[21983] \"211531_x_at\"                 \"214119_s_at\"                \n",
+       "[21985] \"215136_s_at\"                 \"215219_at\"                  \n",
+       "[21987] \"211942_x_at\"                 \"210720_s_at\"                \n",
+       "[21989] \"213217_at\"                   \"213219_at\"                  \n",
+       "[21991] \"212849_at\"                   \"210597_x_at\"                \n",
+       "[21993] \"211531_x_at\"                 \"210597_x_at\"                \n",
+       "[21995] \"211531_x_at\"                 \"210735_s_at\"                \n",
+       "[21997] \"214164_x_at\"                 \"214828_s_at\"                \n",
+       "[21999] \"213728_at\"                   \"210754_s_at\"                \n",
+       "[22001] \"213040_s_at\"                 \"211426_x_at\"                \n",
+       "[22003] \"213997_at\"                   \"212224_at\"                  \n",
+       "[22005] \"213169_at\"                   \"214168_s_at\"                \n",
+       "[22007] \"213737_x_at\"                 \"212330_at\"                  \n",
+       "[22009] \"214995_s_at\"                 \"214994_at\"                  \n",
+       "[22011] \"213908_at\"                   \"214995_s_at\"                \n",
+       "[22013] \"212402_at\"                   \"215105_at\"                  \n",
+       "[22015] \"212862_at\"                   \"212864_at\"                  \n",
+       "[22017] \"211626_x_at\"                 \"213541_s_at\"                \n",
+       "[22019] \"214860_at\"                   \"213762_x_at\"                \n",
+       "[22021] \"214870_x_at\"                 \"212829_at\"                  \n",
+       "[22023] \"214870_x_at\"                 \"212053_at\"                  \n",
+       "[22025] \"213990_s_at\"                 \"210721_s_at\"                \n",
+       "[22027] \"215559_at\"                   \"214033_at\"                  \n",
+       "[22029] \"210558_at\"                   \"213062_at\"                  \n",
+       "[22031] \"213061_s_at\"                 \"214870_x_at\"                \n",
+       "[22033] \"212736_at\"                   \"214870_x_at\"                \n",
+       "[22035] \"211264_at\"                   \"211931_s_at\"                \n",
+       "[22037] \"214870_x_at\"                 \"214870_x_at\"                \n",
+       "[22039] \"214106_s_at\"                 \"212715_s_at\"                \n",
+       "[22041] \"212866_at\"                   \"211639_x_at\"                \n",
+       "[22043] \"214870_x_at\"                 \"211430_s_at\"                \n",
+       "[22045] \"211430_s_at\"                 \"214033_at\"                  \n",
+       "[22047] \"214035_x_at\"                 \"211637_x_at\"                \n",
+       "[22049] \"211634_x_at\"                 \"211635_x_at\"                \n",
+       "[22051] \"215118_s_at\"                 \"211642_at\"                  \n",
+       "[22053] \"211637_x_at\"                 \"211430_s_at\"                \n",
+       "[22055] \"211634_x_at\"                 \"211635_x_at\"                \n",
+       "[22057] \"211650_x_at\"                 \"213674_x_at\"                \n",
+       "[22059] \"212269_s_at\"                 \"214265_at\"                  \n",
+       "[22061] \"212373_at\"                   \"212367_at\"                  \n",
+       "[22063] \"212374_at\"                   \"213249_at\"                  \n",
+       "[22065] \"211013_x_at\"                 \"211012_s_at\"                \n",
+       "[22067] \"211014_s_at\"                 \"211588_s_at\"                \n",
+       "[22069] \"212773_s_at\"                 \"214411_x_at\"                \n",
+       "[22071] \"213725_x_at\"                 \"212715_s_at\"                \n",
+       "[22073] \"213627_at\"                   \"214143_x_at\"                \n",
+       "[22075] \"215400_x_at\"                 \"212661_x_at\"                \n",
+       "[22077] \"211378_x_at\"                 \"211765_x_at\"                \n",
+       "[22079] \"211978_x_at\"                 \"213634_s_at\"                \n",
+       "[22081] \"213639_s_at\"                 \"213641_at\"                  \n",
+       "[22083] \"212344_at\"                   \"212354_at\"                  \n",
+       "[22085] \"212353_at\"                   \"215529_x_at\"                \n",
+       "[22087] \"214719_at\"                   \"210906_x_at\"                \n",
+       "[22089] \"211153_s_at\"                 \"210643_at\"                  \n",
+       "[22091] \"213665_at\"                   \"211650_x_at\"                \n",
+       "[22093] \"213427_at\"                   \"212856_at\"                  \n",
+       "[22095] \"213286_at\"                   \"211639_x_at\"                \n",
+       "[22097] \"214594_x_at\"                 \"211808_s_at\"                \n",
+       "[22099] \"214748_at\"                   \"215105_at\"                  \n",
+       "[22101] \"214753_at\"                   \"212378_at\"                  \n",
+       "[22103] \"212379_at\"                   \"211050_x_at\"                \n",
+       "[22105] \"211725_s_at\"                 \"211933_s_at\"                \n",
+       "[22107] \"211931_s_at\"                 \"212717_at\"                  \n",
+       "[22109] \"212700_x_at\"                 \"212116_at\"                  \n",
+       "[22111] \"212118_at\"                   \"210541_s_at\"                \n",
+       "[22113] \"211487_x_at\"                 \"212578_x_at\"                \n",
+       "[22115] \"213212_x_at\"                 \"212042_x_at\"                \n",
+       "[22117] \"210718_s_at\"                 \"210718_s_at\"                \n",
+       "[22119] \"210718_s_at\"                 \"210718_s_at\"                \n",
+       "[22121] \"211810_s_at\"                 \"211872_s_at\"                \n",
+       "[22123] \"214619_at\"                   \"211897_s_at\"                \n",
+       "[22125] \"214619_at\"                   \"211897_s_at\"                \n",
+       "[22127] \"214648_at\"                   \"213686_at\"                  \n",
+       "[22129] \"214785_at\"                   \"214590_s_at\"                \n",
+       "[22131] \"211764_s_at\"                 \"213483_at\"                  \n",
+       "[22133] \"213737_x_at\"                 \"213737_x_at\"                \n",
+       "[22135] \"213408_s_at\"                 \"213737_x_at\"                \n",
+       "[22137] \"210996_s_at\"                 \"213737_x_at\"                \n",
+       "[22139] \"212895_s_at\"                 \"214671_s_at\"                \n",
+       "[22141] \"215022_x_at\"                 \"211430_s_at\"                \n",
+       "[22143] \"213323_s_at\"                 \"210510_s_at\"                \n",
+       "[22145] \"212298_at\"                   \"210615_at\"                  \n",
+       "[22147] \"213801_x_at\"                 \"213668_s_at\"                \n",
+       "[22149] \"211128_at\"                   \"211131_s_at\"                \n",
+       "[22151] \"211127_x_at\"                 \"211129_x_at\"                \n",
+       "[22153] \"211130_x_at\"                 \"214877_at\"                  \n",
+       "[22155] \"213078_x_at\"                 \"215409_at\"                  \n",
+       "[22157] \"213650_at\"                   \"213941_x_at\"                \n",
+       "[22159] \"212576_at\"                   \"214591_at\"                  \n",
+       "[22161] \"211062_s_at\"                 \"212717_at\"                  \n",
+       "[22163] \"212700_x_at\"                 \"210645_s_at\"                \n",
+       "[22165] \"214619_at\"                   \"211897_s_at\"                \n",
+       "[22167] \"214619_at\"                   \"211897_s_at\"                \n",
+       "[22169] \"214666_x_at\"                 \"210718_s_at\"                \n",
+       "[22171] \"210718_s_at\"                 \"210718_s_at\"                \n",
+       "[22173] \"212528_at\"                   \"212527_at\"                  \n",
+       "[22175] \"213512_at\"                   \"212465_at\"                  \n",
+       "[22177] \"212210_at\"                   \"212212_s_at\"                \n",
+       "[22179] \"214807_at\"                   \"212992_at\"                  \n",
+       "[22181] \"215503_at\"                   \"213316_at\"                  \n",
+       "[22183] \"211370_s_at\"                 \"211724_x_at\"                \n",
+       "[22185] \"211249_at\"                   \"215118_s_at\"                \n",
+       "[22187] \"211214_s_at\"                 \"214462_at\"                  \n",
+       "[22189] \"213981_at\"                   \"213115_at\"                  \n",
+       "[22191] \"213017_at\"                   \"211589_at\"                  \n",
+       "[22193] \"214323_s_at\"                 \"211062_s_at\"                \n",
+       "[22195] \"210766_s_at\"                 \"213378_s_at\"                \n",
+       "[22197] \"212074_at\"                   \"214169_at\"                  \n",
+       "[22199] \"215069_at\"                   \"213764_s_at\"                \n",
+       "[22201] \"213765_at\"                   \"213037_x_at\"                \n",
+       "[22203] \"211505_s_at\"                 \"213135_at\"                  \n",
+       "[22205] \"214999_s_at\"                 \"213260_at\"                  \n",
+       "[22207] \"211673_s_at\"                 \"213181_s_at\"                \n",
+       "[22209] \"212250_at\"                   \"212251_at\"                  \n",
+       "[22211] \"212248_at\"                   \"214615_at\"                  \n",
+       "[22213] \"213161_at\"                   \"213449_at\"                  \n",
+       "[22215] \"214709_s_at\"                 \"210667_s_at\"                \n",
+       "[22217] \"215449_at\"                   \"211512_s_at\"                \n",
+       "[22219] \"211513_s_at\"                 \"212538_at\"                  \n",
+       "[22221] \"215238_s_at\"                 \"215041_s_at\"                \n",
+       "[22223] \"215237_at\"                   \"211935_at\"                  \n",
+       "[22225] \"214696_at\"                   \"212994_at\"                  \n",
+       "[22227] \"210667_s_at\"                 \"213450_s_at\"                \n",
+       "[22229] \"211197_s_at\"                 \"211199_s_at\"                \n",
+       "[22231] \"211198_s_at\"                 \"210547_x_at\"                \n",
+       "[22233] \"211740_at\"                   \"214849_at\"                  \n",
+       "[22235] \"213213_at\"                   \"214848_at\"                  \n",
+       "[22237] \"211199_s_at\"                 \"213450_s_at\"                \n",
+       "[22239] \"211197_s_at\"                 \"211198_s_at\"                \n",
+       "[22241] \"211199_s_at\"                 \"213450_s_at\"                \n",
+       "[22243] \"211197_s_at\"                 \"211198_s_at\"                \n",
+       "[22245] \"211458_s_at\"                 \"214561_at\"                  \n",
+       "[22247] \"214297_at\"                   \"212793_at\"                  \n",
+       "[22249] \"211052_s_at\"                 \"213589_s_at\"                \n",
+       "[22251] \"215055_at\"                   \"213589_s_at\"                \n",
+       "[22253] \"215055_at\"                   \"214561_at\"                  \n",
+       "[22255] \"210854_x_at\"                 \"213843_x_at\"                \n",
+       "[22257] \"214783_s_at\"                 \"212437_at\"                  \n",
+       "[22259] \"213881_x_at\"                 \"211628_x_at\"                \n",
+       "[22261] \"210606_x_at\"                 \"214660_at\"                  \n",
+       "[22263] \"212336_at\"                   \"212339_at\"                  \n",
+       "[22265] \"214561_at\"                   \"211687_x_at\"                \n",
+       "[22267] \"211688_x_at\"                 \"215082_at\"                  \n",
+       "[22269] \"214561_at\"                   \"212311_at\"                  \n",
+       "[22271] \"212314_at\"                   \"211055_s_at\"                \n",
+       "[22273] \"211054_at\"                   \"211687_x_at\"                \n",
+       "[22275] \"211688_x_at\"                 \"212024_x_at\"                \n",
+       "[22277] \"212025_s_at\"                 \"212896_at\"                  \n",
+       "[22279] \"214299_at\"                   \"214300_s_at\"                \n",
+       "[22281] \"212391_x_at\"                 \"214561_at\"                  \n",
+       "[22283] \"213253_at\"                   \"210890_x_at\"                \n",
+       "[22285] \"214264_s_at\"                 \"210525_x_at\"                \n",
+       "[22287] \"211864_s_at\"                 \"212221_x_at\"                \n",
+       "[22289] \"212223_at\"                   \"211782_at\"                  \n",
+       "[22291] \"210666_at\"                   \"211105_s_at\"                \n",
+       "[22293] \"211571_s_at\"                 \"214561_at\"                  \n",
+       "[22295] \"211687_x_at\"                 \"212895_s_at\"                \n",
+       "[22297] \"214671_s_at\"                 \"211688_x_at\"                \n",
+       "[22299] \"212221_x_at\"                 \"212223_at\"                  \n",
+       "[22301] \"215486_at\"                   \"210503_at\"                  \n",
+       "[22303] \"214561_at\"                   \"212073_at\"                  \n",
+       "[22305] \"212072_s_at\"                 \"212075_s_at\"                \n",
+       "[22307] \"210972_x_at\"                 \"211902_x_at\"                \n",
+       "[22309] \"211177_s_at\"                 \"210803_at\"                  \n",
+       "[22311] \"211687_x_at\"                 \"211402_x_at\"                \n",
+       "[22313] \"213953_at\"                   \"211374_x_at\"                \n",
+       "[22315] \"210518_at\"                   \"212637_s_at\"                \n",
+       "[22317] \"212638_s_at\"                 \"214561_at\"                  \n",
+       "[22319] \"210820_x_at\"                 \"215008_at\"                  \n",
+       "[22321] \"214512_s_at\"                 \"212857_x_at\"                \n",
+       "[22323] \"213821_s_at\"                 \"214112_s_at\"                \n",
+       "[22325] \"212961_x_at\"                 \"213315_x_at\"                \n",
+       "[22327] \"211687_x_at\"                 \"210549_s_at\"                \n",
+       "[22329] \"210548_at\"                   \"211587_x_at\"                \n",
+       "[22331] \"211772_x_at\"                 \"211306_s_at\"                \n",
+       "[22333] \"212834_at\"                   \"213637_at\"                  \n",
+       "[22335] \"211688_x_at\"                 \"212935_at\"                  \n",
+       "[22337] \"212186_at\"                   \"214358_at\"                  \n",
+       "[22339] \"214112_s_at\"                 \"212961_x_at\"                \n",
+       "[22341] \"213315_x_at\"                 \"214239_x_at\"                \n",
+       "[22343] \"213551_x_at\"                 \"213967_at\"                  \n",
+       "[22345] \"212544_at\"                   \"211306_s_at\"                \n",
+       "[22347] \"210537_s_at\"                 \"211405_x_at\"                \n",
+       "[22349] \"211410_x_at\"                 \"211688_x_at\"                \n",
+       "[22351] \"211410_x_at\"                 \"215090_x_at\"                \n",
+       "[22353] \"214107_x_at\"                 \"214015_at\"                  \n",
+       "[22355] \"214496_x_at\"                 \"212452_x_at\"                \n",
+       "[22357] \"211874_s_at\"                 \"212462_at\"                  \n",
+       "[22359] \"211306_s_at\"                 \"211688_x_at\"                \n",
+       "[22361] \"211687_x_at\"                 \"214039_s_at\"                \n",
+       "[22363] \"210597_x_at\"                 \"211531_x_at\"                \n",
+       "[22365] \"213762_x_at\"                 \"210957_s_at\"                \n",
+       "[22367] \"215090_x_at\"                 \"214107_x_at\"                \n",
+       "[22369] \"211687_x_at\"                 \"211688_x_at\"                \n",
+       "[22371] \"211306_s_at\"                 \"214561_at\"                  \n",
+       "[22373] \"214561_at\"                   \"214988_s_at\"                \n",
+       "[22375] \"213538_at\"                   \"210970_s_at\"                \n",
+       "[22377] \"213122_at\"                   \"212925_at\"                  \n",
+       "[22379] \"211050_x_at\"                 \"214561_at\"                  \n",
+       "[22381] \"211410_x_at\"                 \"211688_x_at\"                \n",
+       "[22383] \"214452_at\"                   \"214390_s_at\"                \n",
+       "[22385] \"212228_s_at\"                 \"213985_s_at\"                \n",
+       "[22387] \"211688_x_at\"                 \"211410_x_at\"                \n",
+       "[22389] \"211687_x_at\"                 \"210890_x_at\"                \n",
+       "[22391] \"214561_at\"                   \"211687_x_at\"                \n",
+       "[22393] \"211688_x_at\"                 \"215542_at\"                  \n",
+       "[22395] \"214774_x_at\"                 \"215108_x_at\"                \n",
+       "[22397] \"212572_at\"                   \"212565_at\"                  \n",
+       "[22399] \"213103_at\"                   \"210880_s_at\"                \n",
+       "[22401] \"214621_at\"                   \"214561_at\"                  \n",
+       "[22403] \"211688_x_at\"                 \"211687_x_at\"                \n",
+       "[22405] \"213292_s_at\"                 \"215366_at\"                  \n",
+       "[22407] \"211688_x_at\"                 \"214561_at\"                  \n",
+       "[22409] \"214621_at\"                   \"210890_x_at\"                \n",
+       "[22411] \"211410_x_at\"                 \"211500_at\"                  \n",
+       "[22413] \"211499_s_at\"                 \"214561_at\"                  \n",
+       "[22415] \"214341_at\"                   \"214411_x_at\"                \n",
+       "[22417] \"214561_at\"                   \"212812_at\"                  \n",
+       "[22419] \"210890_x_at\"                 \"212928_at\"                  \n",
+       "[22421] \"214565_s_at\"                 \"211687_x_at\"                \n",
+       "[22423] \"211688_x_at\"                 \"211306_s_at\"                \n",
+       "[22425] \"214451_at\"                   \"211682_x_at\"                \n",
+       "[22427] \"211011_at\"                   \"214071_at\"                  \n",
+       "[22429] \"213924_at\"                   \"212469_at\"                  \n",
+       "[22431] \"212483_at\"                   \"213918_s_at\"                \n",
+       "[22433] \"213828_x_at\"                 \"214561_at\"                  \n",
+       "[22435] \"210890_x_at\"                 \"211688_x_at\"                \n",
+       "[22437] \"211687_x_at\"                 \"211687_x_at\"                \n",
+       "[22439] \"212711_at\"                   \"212710_at\"                  \n",
+       "[22441] \"212712_at\"                   \"210603_at\"                  \n",
+       "[22443] \"215207_x_at\"                 \"211687_x_at\"                \n",
+       "[22445] \"214561_at\"                   \"211306_s_at\"                \n",
+       "[22447] \"211410_x_at\"                 \"211688_x_at\"                \n",
+       "[22449] \"213943_at\"                   \"210890_x_at\"                \n",
+       "[22451] \"215253_s_at\"                 \"215254_at\"                  \n",
+       "[22453] \"210850_s_at\"                 \"214561_at\"                  \n",
+       "[22455] \"214608_s_at\"                 \"211687_x_at\"                \n",
+       "[22457] \"213432_at\"                   \"211688_x_at\"                \n",
+       "[22459] \"214561_at\"                   \"212596_s_at\"                \n",
+       "[22461] \"212597_s_at\"                 \"211687_x_at\"                \n",
+       "[22463] \"211688_x_at\"                 \"212631_at\"                  \n",
+       "[22465] \"212632_at\"                   \"215148_s_at\"                \n",
+       "[22467] \"214611_at\"                   \"213429_at\"                  \n",
+       "[22469] \"211687_x_at\"                 \"212228_s_at\"                \n",
+       "[22471] \"215010_s_at\"                 \"210890_x_at\"                \n",
+       "[22473] \"211688_x_at\"                 \"213614_x_at\"                \n",
+       "[22475] \"214561_at\"                   \"211907_s_at\"                \n",
+       "[22477] \"214827_at\"                   \"213412_at\"                  \n",
+       "[22479] \"214561_at\"                   \"210890_x_at\"                \n",
+       "[22481] \"211488_s_at\"                 \"215207_x_at\"                \n",
+       "[22483] \"211688_x_at\"                 \"212816_s_at\"                \n",
+       "[22485] \"214790_at\"                   \"210740_s_at\"                \n",
+       "[22487] \"214953_s_at\"                 \"211277_x_at\"                \n",
+       "[22489] \"212942_s_at\"                 \"215430_at\"                  \n",
+       "[22491] \"214561_at\"                   \"211688_x_at\"                \n",
+       "[22493] \"211943_x_at\"                 \"212284_x_at\"                \n",
+       "[22495] \"212869_x_at\"                 \"214327_x_at\"                \n",
+       "[22497] \"214317_x_at\"                 \"215102_at\"                  \n",
+       "[22499] \"211100_x_at\"                 \"211102_s_at\"                \n",
+       "[22501] \"211101_x_at\"                 \"211141_s_at\"                \n",
+       "[22503] \"212771_at\"                   \"211135_x_at\"                \n",
+       "[22505] \"210784_x_at\"                 \"211133_x_at\"                \n",
+       "[22507] \"211135_x_at\"                 \"210784_x_at\"                \n",
+       "[22509] \"211133_x_at\"                 \"211135_x_at\"                \n",
+       "[22511] \"210784_x_at\"                 \"211133_x_at\"                \n",
+       "[22513] \"211135_x_at\"                 \"210784_x_at\"                \n",
+       "[22515] \"211133_x_at\"                 \"215461_at\"                  \n",
+       "[22517] \"212508_at\"                   \"211306_s_at\"                \n",
+       "[22519] \"213246_at\"                   \"214520_at\"                  \n",
+       "[22521] \"214565_s_at\"                 \"214566_at\"                  \n",
+       "[22523] \"211687_x_at\"                 \"213298_at\"                  \n",
+       "[22525] \"211688_x_at\"                 \"211336_x_at\"                \n",
+       "[22527] \"210706_s_at\"                 \"213238_at\"                  \n",
+       "[22529] \"214495_at\"                   \"213415_at\"                  \n",
+       "[22531] \"211037_s_at\"                 \"215543_s_at\"                \n",
+       "[22533] \"214412_at\"                   \"210660_at\"                  \n",
+       "[22535] \"212788_x_at\"                 \"214561_at\"                  \n",
+       "[22537] \"211687_x_at\"                 \"211688_x_at\"                \n",
+       "[22539] \"213546_at\"                   \"210890_x_at\"                \n",
+       "[22541] \"214561_at\"                   \"214561_at\"                  \n",
+       "[22543] \"211746_x_at\"                 \"210759_s_at\"                \n",
+       "[22545] \"212057_at\"                   \"212056_at\"                  \n",
+       "[22547] \"214429_at\"                   \"211688_x_at\"                \n",
+       "[22549] \"214636_at\"                   \"214561_at\"                  \n",
+       "[22551] \"211688_x_at\"                 \"211141_s_at\"                \n",
+       "[22553] \"214317_x_at\"                 \"211362_s_at\"                \n",
+       "[22555] \"211361_s_at\"                 \"211688_x_at\"                \n",
+       "[22557] \"211410_x_at\"                 \"211906_s_at\"                \n",
+       "[22559] \"211410_x_at\"                 \"214561_at\"                  \n",
+       "[22561] \"210947_s_at\"                 \"214385_s_at\"                \n",
+       "[22563] \"214303_x_at\"                 \"213139_at\"                  \n",
+       "[22565] \"211687_x_at\"                 \"210644_s_at\"                \n",
+       "[22567] \"215241_at\"                   \"210552_s_at\"                \n",
+       "[22569] \"215210_s_at\"                 \"211135_x_at\"                \n",
+       "[22571] \"210784_x_at\"                 \"211133_x_at\"                \n",
+       "[22573] \"214051_at\"                   \"215303_at\"                  \n",
+       "[22575] \"211141_s_at\"                 \"212521_s_at\"                \n",
+       "[22577] \"212522_at\"                   \"214009_at\"                  \n",
+       "[22579] \"211410_x_at\"                 \"211687_x_at\"                \n",
+       "[22581] \"214317_x_at\"                 \"214561_at\"                  \n",
+       "[22583] \"214561_at\"                   \"213290_at\"                  \n",
+       "[22585] \"215427_s_at\"                 \"212655_at\"                  \n",
+       "[22587] \"212905_at\"                   \"212901_s_at\"                \n",
+       "[22589] \"214321_at\"                   \"212738_at\"                  \n",
+       "[22591] \"212604_at\"                   \"212603_at\"                  \n",
+       "[22593] \"211687_x_at\"                 \"211688_x_at\"                \n",
+       "[22595] \"214561_at\"                   \"215179_x_at\"                \n",
+       "[22597] \"215111_s_at\"                 \"213075_at\"                  \n",
+       "[22599] \"213846_at\"                   \"212075_s_at\"                \n",
+       "[22601] \"212681_at\"                   \"211776_s_at\"                \n",
+       "[22603] \"214561_at\"                   \"211679_x_at\"                \n",
+       "[22605] \"211687_x_at\"                 \"214525_x_at\"                \n",
+       "[22607] \"214907_at\"                   \"214986_x_at\"                \n",
+       "[22609] \"215081_at\"                   \"211917_s_at\"                \n",
+       "[22611] \"211595_s_at\"                 \"214561_at\"                  \n",
+       "[22613] \"212319_at\"                   \"211687_x_at\"                \n",
+       "[22615] \"214575_s_at\"                 \"213911_s_at\"                \n",
+       "[22617] \"212352_s_at\"                 \"213874_at\"                  \n",
+       "[22619] \"211102_s_at\"                 \"211101_x_at\"                \n",
+       "[22621] \"211100_x_at\"                 \"211336_x_at\"                \n",
+       "[22623] \"211688_x_at\"                 \"210890_x_at\"                \n",
+       "[22625] \"213792_s_at\"                 \"213996_at\"                  \n",
+       "[22627] \"211410_x_at\"                 \"214561_at\"                  \n",
+       "[22629] \"211922_s_at\"                 \"213612_x_at\"                \n",
+       "[22631] \"211141_s_at\"                 \"210644_s_at\"                \n",
+       "[22633] \"210660_at\"                   \"215190_at\"                  \n",
+       "[22635] \"214595_at\"                   \"211053_at\"                  \n",
+       "[22637] \"212496_s_at\"                 \"212492_s_at\"                \n",
+       "[22639] \"212495_at\"                   \"212422_at\"                  \n",
+       "[22641] \"212424_at\"                   \"211037_s_at\"                \n",
+       "[22643] \"211687_x_at\"                 \"214561_at\"                  \n",
+       "[22645] \"211410_x_at\"                 \"214317_x_at\"                \n",
+       "[22647] \"211135_x_at\"                 \"210784_x_at\"                \n",
+       "[22649] \"211133_x_at\"                 \"211135_x_at\"                \n",
+       "[22651] \"210784_x_at\"                 \"211133_x_at\"                \n",
+       "[22653] \"211135_x_at\"                 \"210784_x_at\"                \n",
+       "[22655] \"211133_x_at\"                 \"211135_x_at\"                \n",
+       "[22657] \"210784_x_at\"                 \"211133_x_at\"                \n",
+       "[22659] \"215495_s_at\"                 \"215120_s_at\"                \n",
+       "[22661] \"212845_at\"                   \"215496_at\"                  \n",
+       "[22663] \"211687_x_at\"                 \"211688_x_at\"                \n",
+       "[22665] \"211306_s_at\"                 \"214138_at\"                  \n",
+       "[22667] \"212934_at\"                   \"214271_x_at\"                \n",
+       "[22669] \"214561_at\"                   \"214561_at\"                  \n",
+       "[22671] \"212601_at\"                   \"213245_at\"                  \n",
+       "[22673] \"215348_at\"                   \"214561_at\"                  \n",
+       "[22675] \"211410_x_at\"                 \"211688_x_at\"                \n",
+       "[22677] \"215061_at\"                   \"212661_x_at\"                \n",
+       "[22679] \"214271_x_at\"                 \"212651_at\"                  \n",
+       "[22681] \"210611_s_at\"                 \"210736_x_at\"                \n",
+       "[22683] \"211493_x_at\"                 \"210644_s_at\"                \n",
+       "[22685] \"213779_at\"                   \"214088_s_at\"                \n",
+       "[22687] \"210497_x_at\"                 \"211698_at\"                  \n",
+       "[22689] \"211306_s_at\"                 \"214834_at\"                  \n",
+       "[22691] \"213974_at\"                   \"211688_x_at\"                \n",
+       "[22693] \"211410_x_at\"                 \"214914_at\"                  \n",
+       "[22695] \"211141_s_at\"                 \"214317_x_at\"                \n",
+       "[22697] \"211220_s_at\"                 \"212936_at\"                  \n",
+       "[22699] \"215323_at\"                   \"210532_s_at\"                \n",
+       "[22701] \"214408_s_at\"                 \"214120_at\"                  \n",
+       "[22703] \"211141_s_at\"                 \"214317_x_at\"                \n",
+       "[22705] \"215419_at\"                   \"214079_at\"                  \n",
+       "[22707] \"214679_x_at\"                 \"213944_x_at\"                \n",
+       "[22709] \"213766_x_at\"                 \"211241_at\"                  \n",
+       "[22711] \"210589_s_at\"                 \"210946_at\"                  \n",
+       "[22713] \"214095_at\"                   \"214437_s_at\"                \n",
+       "[22715] \"214096_s_at\"                 \"210542_s_at\"                \n",
+       "[22717] \"211141_s_at\"                 \"214317_x_at\"                \n",
+       "[22719] \"215424_s_at\"                 \"213930_at\"                  \n",
+       "[22721] \"213026_at\"                   \"211685_s_at\"                \n",
+       "[22723] \"213110_s_at\"                 \"212589_at\"                  \n",
+       "[22725] \"212590_at\"                   \"212746_s_at\"                \n",
+       "[22727] \"212746_s_at\"                 \"213042_s_at\"                \n",
+       "[22729] \"213036_x_at\"                 \"212607_at\"                  \n",
+       "[22731] \"212609_s_at\"                 \"211050_x_at\"                \n",
+       "[22733] \"214499_s_at\"                 \"214317_x_at\"                \n",
+       "[22735] \"211141_s_at\"                 \"211688_x_at\"                \n",
+       "[22737] \"213994_s_at\"                 \"213993_at\"                  \n",
+       "[22739] \"215216_at\"                   \"213309_at\"                  \n",
+       "[22741] \"215061_at\"                   \"210508_s_at\"                \n",
+       "[22743] \"212798_s_at\"                 \"214485_at\"                  \n",
+       "[22745] \"210642_at\"                   \"212767_at\"                  \n",
+       "[22747] \"212132_at\"                   \"212131_at\"                  \n",
+       "[22749] \"214727_at\"                   \"213733_at\"                  \n",
+       "[22751] \"212531_at\"                   \"214276_at\"                  \n",
+       "[22753] \"213090_s_at\"                 \"213630_at\"                  \n",
+       "[22755] \"210701_at\"                   \"210527_x_at\"                \n",
+       "[22757] \"213986_s_at\"                 \"212575_at\"                  \n",
+       "[22759] \"212574_x_at\"                 \"214895_s_at\"                \n",
+       "[22761] \"214668_at\"                   \"211089_s_at\"                \n",
+       "[22763] \"213116_at\"                   \"214077_x_at\"                \n",
+       "[22765] \"212545_s_at\"                 \"213094_at\"                  \n",
+       "[22767] \"213588_x_at\"                 \"211078_s_at\"                \n",
+       "[22769] \"215363_x_at\"                 \"211303_x_at\"                \n",
+       "[22771] \"211447_s_at\"                 \"211901_s_at\"                \n",
+       "[22773] \"211591_s_at\"                 \"211018_at\"                  \n",
+       "[22775] \"211019_s_at\"                 \"211382_s_at\"                \n",
+       "[22777] \"213799_s_at\"                 \"213795_s_at\"                \n",
+       "[22779] \"211037_s_at\"                 \"213776_at\"                  \n",
+       "[22781] \"214317_x_at\"                 \"210807_s_at\"                \n",
+       "[22783] \"214046_at\"                   \"212167_s_at\"                \n",
+       "[22785] \"214263_x_at\"                 \"214385_s_at\"                \n",
+       "[22787] \"214303_x_at\"                 \"213602_s_at\"                \n",
+       "[22789] \"210999_s_at\"                 \"210561_s_at\"                \n",
+       "[22791] \"211687_x_at\"                 \"215048_at\"                  \n",
+       "[22793] \"212815_at\"                   \"211306_s_at\"                \n",
+       "[22795] \"210497_x_at\"                 \"211670_x_at\"                \n",
+       "[22797] \"211731_x_at\"                 \"213397_x_at\"                \n",
+       "[22799] \"211135_x_at\"                 \"210784_x_at\"                \n",
+       "[22801] \"211133_x_at\"                 \"211135_x_at\"                \n",
+       "[22803] \"210784_x_at\"                 \"211133_x_at\"                \n",
+       "[22805] \"211135_x_at\"                 \"210784_x_at\"                \n",
+       "[22807] \"211133_x_at\"                 \"211135_x_at\"                \n",
+       "[22809] \"210784_x_at\"                 \"211133_x_at\"                \n",
+       "[22811] \"213397_x_at\"                 \"210644_s_at\"                \n",
+       "[22813] \"213566_at\"                   \"211425_x_at\"                \n",
+       "[22815] \"210994_x_at\"                 \"210995_s_at\"                \n",
+       "[22817] \"211141_s_at\"                 \"213853_at\"                  \n",
+       "[22819] \"213937_s_at\"                 \"211102_s_at\"                \n",
+       "[22821] \"211101_x_at\"                 \"211100_x_at\"                \n",
+       "[22823] \"214279_s_at\"                 \"213787_s_at\"                \n",
+       "[22825] \"210660_at\"                   \"213787_s_at\"                \n",
+       "[22827] \"211336_x_at\"                 \"214870_x_at\"                \n",
+       "[22829] \"214035_x_at\"                 \"214561_at\"                  \n",
+       "[22831] \"211688_x_at\"                 \"213084_x_at\"                \n",
+       "[22833] \"212962_at\"                   \"214691_x_at\"                \n",
+       "[22835] \"212537_x_at\"                 \"212270_x_at\"                \n",
+       "[22837] \"214291_at\"                   \"212995_x_at\"                \n",
+       "[22839] \"210616_s_at\"                 \"215073_s_at\"                \n",
+       "[22841] \"214769_at\"                   \"215170_s_at\"                \n",
+       "[22843] \"212858_at\"                   \"210956_at\"                  \n",
+       "[22845] \"214635_at\"                   \"212878_s_at\"                \n",
+       "[22847] \"212877_at\"                   \"213320_at\"                  \n",
+       "[22849] \"212378_at\"                   \"212654_at\"                  \n",
+       "[22851] \"214633_at\"                   \"212501_at\"                  \n",
+       "[22853] \"214061_at\"                   \"212160_at\"                  \n",
+       "[22855] \"213324_at\"                   \"212931_at\"                  \n",
+       "[22857] \"212040_at\"                   \"212043_at\"                  \n",
+       "[22859] \"213395_at\"                   \"213839_at\"                  \n",
+       "[22861] \"211729_x_at\"                 \"214776_x_at\"                \n",
+       "[22863] \"214524_at\"                   \"211132_at\"                  \n",
+       "[22865] \"213018_at\"                   \"214718_at\"                  \n",
+       "[22867] \"211706_s_at\"                 \"212899_at\"                  \n",
+       "[22869] \"212897_at\"                   \"214834_at\"                  \n",
+       "[22871] \"210792_x_at\"                 \"214237_x_at\"                \n",
+       "[22873] \"210724_at\"                   \"212686_at\"                  \n",
+       "[22875] \"213389_at\"                   \"214344_at\"                  \n",
+       "[22877] \"213064_at\"                   \"213063_at\"                  \n",
+       "[22879] \"214605_x_at\"                 \"212157_at\"                  \n",
+       "[22881] \"212158_at\"                   \"212154_at\"                  \n",
+       "[22883] \"213497_at\"                   \"212833_at\"                  \n",
+       "[22885] \"214582_at\"                   \"213558_at\"                  \n",
+       "[22887] \"210650_s_at\"                 \"214371_at\"                  \n",
+       "[22889] \"212577_at\"                   \"212579_at\"                  \n",
+       "[22891] \"212569_at\"                   \"214391_x_at\"                \n",
+       "[22893] \"213549_at\"                   \"210624_s_at\"                \n",
+       "[22895] \"213624_at\"                   \"211417_x_at\"                \n",
+       "[22897] \"211986_at\"                   \"214156_at\"                  \n",
+       "[22899] \"214010_s_at\"                 \"214934_at\"                  \n",
+       "[22901] \"210576_at\"                   \"214581_x_at\"                \n",
+       "[22903] \"211849_s_at\"                 \"211387_x_at\"                \n",
+       "[22905] \"212867_at\"                   \"212931_at\"                  \n",
+       "[22907] \"214389_at\"                   \"213322_at\"                  \n",
+       "[22909] \"215394_at\"                   \"211842_s_at\"                \n",
+       "[22911] \"211542_x_at\"                 \"212646_at\"                  \n",
+       "[22913] \"212104_s_at\"                 \"213901_x_at\"                \n",
+       "[22915] \"211715_s_at\"                 \"214787_at\"                  \n",
+       "[22917] \"211345_x_at\"                 \"211927_x_at\"                \n",
+       "[22919] \"214623_at\"                   \"213386_at\"                  \n",
+       "[22921] \"212997_s_at\"                 \"212986_s_at\"                \n",
+       "[22923] \"214725_at\"                   \"210675_s_at\"                \n",
+       "[22925] \"211684_s_at\"                 \"210639_s_at\"                \n",
+       "[22927] \"213737_x_at\"                 \"210601_at\"                  \n",
+       "[22929] \"210602_s_at\"                 \"214803_at\"                  \n",
+       "[22931] \"213793_s_at\"                 \"212391_x_at\"                \n",
+       "[22933] \"211915_s_at\"                 \"212391_x_at\"                \n",
+       "[22935] \"210854_x_at\"                 \"213843_x_at\"                \n",
+       "[22937] \"210761_s_at\"                 \"211345_x_at\"                \n",
+       "[22939] \"211927_x_at\"                 \"211224_s_at\"                \n",
+       "[22941] \"214692_s_at\"                 \"211915_s_at\"                \n",
+       "[22943] \"210517_s_at\"                 \"214630_at\"                  \n",
+       "[22945] \"214938_x_at\"                 \"213479_at\"                  \n",
+       "[22947] \"212186_at\"                   \"214358_at\"                  \n",
+       "[22949] \"214536_at\"                   \"212880_at\"                  \n",
+       "[22951] \"210794_s_at\"                 \"212732_at\"                  \n",
+       "[22953] \"215439_x_at\"                 \"213377_x_at\"                \n",
+       "[22955] \"213762_x_at\"                 \"213975_s_at\"                \n",
+       "[22957] \"213802_at\"                   \"214997_at\"                  \n",
+       "[22959] \"210655_s_at\"                 \"212042_x_at\"                \n",
+       "[22961] \"211617_at\"                   \"212455_at\"                  \n",
+       "[22963] \"211359_s_at\"                 \"214203_s_at\"                \n",
+       "[22965] \"214577_at\"                   \"212233_at\"                  \n",
+       "[22967] \"215023_s_at\"                 \"213645_at\"                  \n",
+       "[22969] \"215209_at\"                   \"214720_x_at\"                \n",
+       "[22971] \"213667_at\"                   \"215493_x_at\"                \n",
+       "[22973] \"211256_x_at\"                 \"215004_s_at\"                \n",
+       "[22975] \"213256_at\"                   \"212180_at\"                  \n",
+       "[22977] \"210982_s_at\"                 \"214518_at\"                  \n",
+       "[22979] \"214571_at\"                   \"212836_at\"                  \n",
+       "[22981] \"212931_at\"                   \"214037_s_at\"                \n",
+       "[22983] \"214202_at\"                   \"213196_at\"                  \n",
+       "[22985] \"210990_s_at\"                 \"210989_at\"                  \n",
+       "[22987] \"214850_at\"                   \"210681_s_at\"                \n",
+       "[22989] \"214286_at\"                   \"213744_at\"                  \n",
+       "[22991] \"213745_at\"                   \"210619_s_at\"                \n",
+       "[22993] \"211223_at\"                   \"214708_at\"                  \n",
+       "[22995] \"215431_at\"                   \"213341_at\"                  \n",
+       "[22997] \"213801_x_at\"                 \"211022_s_at\"                \n",
+       "[22999] \"213754_s_at\"                 \"214226_at\"                  \n",
+       "[23001] \"215305_at\"                   \"211445_x_at\"                \n",
+       "[23003] \"212682_s_at\"                 \"213791_at\"                  \n",
+       "[23005] \"211058_x_at\"                 \"211072_x_at\"                \n",
+       "[23007] \"210849_s_at\"                 \"212448_at\"                  \n",
+       "[23009] \"212445_s_at\"                 \"214885_at\"                  \n",
+       "[23011] \"214847_s_at\"                 \"214909_s_at\"                \n",
+       "[23013] \"215537_x_at\"                 \"214658_at\"                  \n",
+       "[23015] \"212050_at\"                   \"212051_at\"                  \n",
+       "[23017] \"212049_at\"                   \"212187_x_at\"                \n",
+       "[23019] \"211748_x_at\"                 \"213091_at\"                  \n",
+       "[23021] \"213318_s_at\"                 \"210653_s_at\"                \n",
+       "[23023] \"213321_at\"                   \"212187_x_at\"                \n",
+       "[23025] \"211748_x_at\"                 \"213410_at\"                  \n",
+       "[23027] \"215072_x_at\"                 \"215027_at\"                  \n",
+       "[23029] \"213396_s_at\"                 \"215099_s_at\"                \n",
+       "[23031] \"215098_at\"                   \"210506_at\"                  \n",
+       "[23033] \"210697_at\"                   \"214911_s_at\"                \n",
+       "[23035] \"215535_s_at\"                 \"215532_x_at\"                \n",
+       "[23037] \"214650_x_at\"                 \"211836_s_at\"                \n",
+       "[23039] \"211530_x_at\"                 \"211528_x_at\"                \n",
+       "[23041] \"211529_x_at\"                 \"210514_x_at\"                \n",
+       "[23043] \"215313_x_at\"                 \"213932_x_at\"                \n",
+       "[23045] \"210537_s_at\"                 \"214755_at\"                  \n",
+       "[23047] \"215193_x_at\"                 \"211991_s_at\"                \n",
+       "[23049] \"211990_at\"                   \"213537_at\"                  \n",
+       "[23051] \"213318_s_at\"                 \"215257_at\"                  \n",
+       "[23053] \"212767_at\"                   \"211583_x_at\"                \n",
+       "[23055] \"210763_x_at\"                 \"211010_s_at\"                \n",
+       "[23057] \"211656_x_at\"                 \"212998_x_at\"                \n",
+       "[23059] \"210844_x_at\"                 \"212671_s_at\"                \n",
+       "[23061] \"211530_x_at\"                 \"211528_x_at\"                \n",
+       "[23063] \"211529_x_at\"                 \"210514_x_at\"                \n",
+       "[23065] \"211611_s_at\"                 \"215099_s_at\"                \n",
+       "[23067] \"215098_at\"                   \"213726_x_at\"                \n",
+       "[23069] \"210885_s_at\"                 \"211583_x_at\"                \n",
+       "[23071] \"210763_x_at\"                 \"211010_s_at\"                \n",
+       "[23073] \"210826_x_at\"                 \"211228_s_at\"                \n",
+       "[23075] \"214650_x_at\"                 \"211836_s_at\"                \n",
+       "[23077] \"215090_x_at\"                 \"214107_x_at\"                \n",
+       "[23079] \"211297_s_at\"                 \"211142_x_at\"                \n",
+       "[23081] \"213540_at\"                   \"211560_s_at\"                \n",
+       "[23083] \"210982_s_at\"                 \"215536_at\"                  \n",
+       "[23085] \"212671_s_at\"                 \"212671_s_at\"                \n",
+       "[23087] \"214911_s_at\"                 \"215444_s_at\"                \n",
+       "[23089] \"212185_x_at\"                 \"213081_at\"                  \n",
+       "[23091] \"211991_s_at\"                 \"211990_at\"                  \n",
+       "[23093] \"213537_at\"                   \"212859_x_at\"                \n",
+       "[23095] \"215193_x_at\"                 \"214622_at\"                  \n",
+       "[23097] \"211142_x_at\"                 \"213932_x_at\"                \n",
+       "[23099] \"213629_x_at\"                 \"210524_x_at\"                \n",
+       "[23101] \"212081_x_at\"                 \"214201_x_at\"                \n",
+       "[23103] \"214585_s_at\"                 \"213451_x_at\"                \n",
+       "[23105] \"211611_s_at\"                 \"211714_x_at\"                \n",
+       "[23107] \"212320_at\"                   \"214752_x_at\"                \n",
+       "[23109] \"213746_s_at\"                 \"212391_x_at\"                \n",
+       "[23111] \"213695_at\"                   \"214909_s_at\"                \n",
+       "[23113] \"215537_x_at\"                 \"210579_s_at\"                \n",
+       "[23115] \"213805_at\"                   \"213935_at\"                  \n",
+       "[23117] \"210885_s_at\"                 \"213081_at\"                  \n",
+       "[23119] \"210677_at\"                   \"212913_at\"                  \n",
+       "[23121] \"211937_at\"                   \"215211_at\"                  \n",
+       "[23123] \"212600_s_at\"                 \"214910_s_at\"                \n",
+       "[23125] \"211223_at\"                   \"213370_s_at\"                \n",
+       "[23127] \"213451_x_at\"                 \"211611_s_at\"                \n",
+       "[23129] \"211920_at\"                   \"214909_s_at\"                \n",
+       "[23131] \"215537_x_at\"                 \"210749_x_at\"                \n",
+       "[23133] \"210749_x_at\"                 \"213941_x_at\"                \n",
+       "[23135] \"214585_s_at\"                 \"210998_s_at\"                \n",
+       "[23137] \"210997_at\"                   \"210755_at\"                  \n",
+       "[23139] \"212116_at\"                   \"212118_at\"                  \n",
+       "[23141] \"210541_s_at\"                 \"215536_at\"                  \n",
+       "[23143] \"212661_x_at\"                 \"211378_x_at\"                \n",
+       "[23145] \"211765_x_at\"                 \"211978_x_at\"                \n",
+       "[23147] \"211142_x_at\"                 \"215009_s_at\"                \n",
+       "[23149] \"211714_x_at\"                 \"212320_at\"                  \n",
+       "[23151] \"214650_x_at\"                 \"211836_s_at\"                \n",
+       "[23153] \"212708_at\"                   \"211920_at\"                  \n",
+       "[23155] \"211097_s_at\"                 \"211096_at\"                  \n",
+       "[23157] \"214847_s_at\"                 \"213870_at\"                  \n",
+       "[23159] \"211991_s_at\"                 \"211990_at\"                  \n",
+       "[23161] \"213537_at\"                   \"213095_x_at\"                \n",
+       "[23163] \"215051_x_at\"                 \"213095_x_at\"                \n",
+       "[23165] \"215051_x_at\"                 \"211471_s_at\"                \n",
+       "[23167] \"211911_x_at\"                 \"214459_x_at\"                \n",
+       "[23169] \"214762_at\"                   \"215444_s_at\"                \n",
+       "[23171] \"210859_x_at\"                 \"212671_s_at\"                \n",
+       "[23173] \"211605_s_at\"                 \"213760_s_at\"                \n",
+       "[23175] \"213279_at\"                   \"210579_s_at\"                \n",
+       "[23177] \"211312_s_at\"                 \"212081_x_at\"                \n",
+       "[23179] \"214201_x_at\"                 \"213505_s_at\"                \n",
+       "[23181] \"214092_x_at\"                 \"212001_at\"                  \n",
+       "[23183] \"212000_at\"                   \"214459_x_at\"                \n",
+       "[23185] \"213482_at\"                   \"214610_at\"                  \n",
+       "[23187] \"211714_x_at\"                 \"212320_at\"                  \n",
+       "[23189] \"211920_at\"                   \"214288_s_at\"                \n",
+       "[23191] \"213540_at\"                   \"210905_x_at\"                \n",
+       "[23193] \"214532_x_at\"                 \"214428_x_at\"                \n",
+       "[23195] \"215535_s_at\"                 \"212658_at\"                  \n",
+       "[23197] \"213660_s_at\"                 \"211656_x_at\"                \n",
+       "[23199] \"212998_x_at\"                 \"210982_s_at\"                \n",
+       "[23201] \"213870_at\"                   \"212671_s_at\"                \n",
+       "[23203] \"212671_s_at\"                 \"212081_x_at\"                \n",
+       "[23205] \"214201_x_at\"                 \"210885_s_at\"                \n",
+       "[23207] \"213056_at\"                   \"214910_s_at\"                \n",
+       "[23209] \"214762_at\"                   \"215099_s_at\"                \n",
+       "[23211] \"215098_at\"                   \"212913_at\"                  \n",
+       "[23213] \"211097_s_at\"                 \"211096_at\"                  \n",
+       "[23215] \"215193_x_at\"                 \"213345_at\"                  \n",
+       "[23217] \"214648_at\"                   \"213540_at\"                  \n",
+       "[23219] \"214622_at\"                   \"212913_at\"                  \n",
+       "[23221] \"214532_x_at\"                 \"210905_x_at\"                \n",
+       "[23223] \"214087_s_at\"                 \"212116_at\"                  \n",
+       "[23225] \"212118_at\"                   \"210541_s_at\"                \n",
+       "[23227] \"214240_at\"                   \"210579_s_at\"                \n",
+       "[23229] \"215313_x_at\"                 \"213932_x_at\"                \n",
+       "[23231] \"214650_x_at\"                 \"211836_s_at\"                \n",
+       "[23233] \"210579_s_at\"                 \"213660_s_at\"                \n",
+       "[23235] \"212913_at\"                   \"211530_x_at\"                \n",
+       "[23237] \"211528_x_at\"                 \"211529_x_at\"                \n",
+       "[23239] \"210514_x_at\"                 \"214428_x_at\"                \n",
+       "[23241] \"214428_x_at\"                 \"215444_s_at\"                \n",
+       "[23243] \"212094_at\"                   \"212092_at\"                  \n",
+       "[23245] \"213081_at\"                   \"215193_x_at\"                \n",
+       "[23247] \"211583_x_at\"                 \"210763_x_at\"                \n",
+       "[23249] \"211010_s_at\"                 \"215535_s_at\"                \n",
+       "[23251] \"215536_at\"                   \"211530_x_at\"                \n",
+       "[23253] \"211528_x_at\"                 \"211529_x_at\"                \n",
+       "[23255] \"210514_x_at\"                 \"210885_s_at\"                \n",
+       "[23257] \"214428_x_at\"                 \"215536_at\"                  \n",
+       "[23259] \"214762_at\"                   \"213175_s_at\"                \n",
+       "[23261] \"212671_s_at\"                 \"212671_s_at\"                \n",
+       "[23263] \"214585_s_at\"                 \"212913_at\"                  \n",
+       "[23265] \"211005_at\"                   \"214223_at\"                  \n",
+       "[23267] \"214510_at\"                   \"212913_at\"                  \n",
+       "[23269] \"214532_x_at\"                 \"210905_x_at\"                \n",
+       "[23271] \"215334_at\"                   \"211714_x_at\"                \n",
+       "[23273] \"212320_at\"                   \"213318_s_at\"                \n",
+       "[23275] \"210580_x_at\"                 \"215299_x_at\"                \n",
+       "[23277] \"211926_s_at\"                 \"215335_at\"                  \n",
+       "[23279] \"214003_x_at\"                 \"210749_x_at\"                \n",
+       "[23281] \"213702_x_at\"                 \"210980_s_at\"                \n",
+       "[23283] \"213902_at\"                   \"215193_x_at\"                \n",
+       "[23285] \"213870_at\"                   \"210884_s_at\"                \n",
+       "[23287] \"211381_x_at\"                 \"210884_s_at\"                \n",
+       "[23289] \"211381_x_at\"                 \"212915_at\"                  \n",
+       "[23291] \"211991_s_at\"                 \"211990_at\"                  \n",
+       "[23293] \"213537_at\"                   \"215313_x_at\"                \n",
+       "[23295] \"213932_x_at\"                 \"211611_s_at\"                \n",
+       "[23297] \"211656_x_at\"                 \"212998_x_at\"                \n",
+       "[23299] \"210855_at\"                   \"210562_at\"                  \n",
+       "[23301] \"213081_at\"                   \"212671_s_at\"                \n",
+       "[23303] \"212671_s_at\"                 \"211559_s_at\"                \n",
+       "[23305] \"211097_s_at\"                 \"211096_at\"                  \n",
+       "[23307] \"211583_x_at\"                 \"210763_x_at\"                \n",
+       "[23309] \"211010_s_at\"                 \"210982_s_at\"                \n",
+       "[23311] \"213313_at\"                   \"215070_x_at\"                \n",
+       "[23313] \"214459_x_at\"                 \"214910_s_at\"                \n",
+       "[23315] \"214847_s_at\"                 \"211668_s_at\"                \n",
+       "[23317] \"214394_x_at\"                 \"213581_at\"                  \n",
+       "[23319] \"214395_x_at\"                 \"211747_s_at\"                \n",
+       "[23321] \"211068_x_at\"                 \"214946_x_at\"                \n",
+       "[23323] \"212370_x_at\"                 \"212929_s_at\"                \n",
+       "[23325] \"210910_s_at\"                 \"211164_at\"                  \n",
+       "[23327] \"211989_at\"                   \"211988_at\"                  \n",
+       "[23329] \"212556_at\"                   \"212571_at\"                  \n",
+       "[23331] \"213090_s_at\"                 \"213387_at\"                  \n",
+       "[23333] \"215549_x_at\"                 \"214355_x_at\"                \n",
+       "[23335] \"215549_x_at\"                 \"214355_x_at\"                \n",
+       "[23337] \"215549_x_at\"                 \"214355_x_at\"                \n",
+       "[23339] \"212046_x_at\"                 \"211684_s_at\"                \n",
+       "[23341] \"215560_x_at\"                 \"211552_s_at\"                \n",
+       "[23343] \"210554_s_at\"                 \"215145_s_at\"                \n",
+       "[23345] \"214612_x_at\"                 \"214603_at\"                  \n",
+       "[23347] \"214603_at\"                   \"215093_at\"                  \n",
+       "[23349] \"211380_s_at\"                 \"214612_x_at\"                \n",
+       "[23351] \"214527_s_at\"                 \"210499_s_at\"                \n",
+       "[23353] \"213296_at\"                   \"212913_at\"                  \n",
+       "[23355] \"213451_x_at\"                 \"210580_x_at\"                \n",
+       "[23357] \"215299_x_at\"                 \"215313_x_at\"                \n",
+       "[23359] \"213932_x_at\"                 \"214619_at\"                  \n",
+       "[23361] \"211897_s_at\"                 \"214619_at\"                  \n",
+       "[23363] \"211897_s_at\"                 \"211921_x_at\"                \n",
+       "[23365] \"211717_at\"                   \"214909_s_at\"                \n",
+       "[23367] \"215537_x_at\"                 \"214382_at\"                  \n",
+       "[23369] \"214382_at\"                   \"214640_at\"                  \n",
+       "[23371] \"210580_x_at\"                 \"215299_x_at\"                \n",
+       "[23373] \"210580_x_at\"                 \"215299_x_at\"                \n",
+       "[23375] \"211097_s_at\"                 \"211096_at\"                  \n",
+       "[23377] \"213870_at\"                   \"212326_at\"                  \n",
+       "[23379] \"212323_s_at\"                 \"212324_s_at\"                \n",
+       "[23381] \"212457_at\"                   \"210799_at\"                  \n",
+       "[23383] \"215099_s_at\"                 \"215098_at\"                  \n",
+       "[23385] \"214585_s_at\"                 \"213451_x_at\"                \n",
+       "[23387] \"211611_s_at\"                 \"211611_s_at\"                \n",
+       "[23389] \"211714_x_at\"                 \"212320_at\"                  \n",
+       "[23391] \"210661_at\"                   \"212116_at\"                  \n",
+       "[23393] \"212118_at\"                   \"210541_s_at\"                \n",
+       "[23395] \"213318_s_at\"                 \"210614_at\"                  \n",
+       "[23397] \"214979_at\"                   \"212671_s_at\"                \n",
+       "[23399] \"212671_s_at\"                 \"215146_s_at\"                \n",
+       "[23401] \"213058_at\"                   \"214238_at\"                  \n",
+       "[23403] \"214428_x_at\"                 \"214428_x_at\"                \n",
+       "[23405] \"215139_at\"                   \"211920_at\"                  \n",
+       "[23407] \"214730_s_at\"                 \"212045_at\"                  \n",
+       "[23409] \"213095_x_at\"                 \"215051_x_at\"                \n",
+       "[23411] \"214911_s_at\"                 \"212563_at\"                  \n",
+       "[23413] \"213540_at\"                   \"211656_x_at\"                \n",
+       "[23415] \"212998_x_at\"                 \"213756_s_at\"                \n",
+       "[23417] \"212393_at\"                   \"212389_at\"                  \n",
+       "[23419] \"213383_at\"                   \"214835_s_at\"                \n",
+       "[23421] \"212913_at\"                   \"214650_x_at\"                \n",
+       "[23423] \"211836_s_at\"                 \"211991_s_at\"                \n",
+       "[23425] \"211990_at\"                   \"213537_at\"                  \n",
+       "[23427] \"213859_x_at\"                 \"213251_at\"                  \n",
+       "[23429] \"212790_x_at\"                 \"210646_x_at\"                \n",
+       "[23431] \"211942_x_at\"                 \"213601_at\"                  \n",
+       "[23433] \"214855_s_at\"                 \"213118_at\"                  \n",
+       "[23435] \"212081_x_at\"                 \"214201_x_at\"                \n",
+       "[23437] \"210830_s_at\"                 \"211142_x_at\"                \n",
+       "[23439] \"211911_x_at\"                 \"214459_x_at\"                \n",
+       "[23441] \"211989_at\"                   \"211988_at\"                  \n",
+       "[23443] \"215230_x_at\"                 \"210949_s_at\"                \n",
+       "[23445] \"214762_at\"                   \"214622_at\"                  \n",
+       "[23447] \"214587_at\"                   \"211002_s_at\"                \n",
+       "[23449] \"211001_at\"                   \"215230_x_at\"                \n",
+       "[23451] \"210949_s_at\"                 \"210659_at\"                  \n",
+       "[23453] \"213081_at\"                   \"213471_at\"                  \n",
+       "[23455] \"214847_s_at\"                 \"211201_at\"                  \n",
+       "[23457] \"215536_at\"                   \"210885_s_at\"                \n",
+       "[23459] \"214396_s_at\"                 \"214397_at\"                  \n",
+       "[23461] \"210579_s_at\"                 \"212671_s_at\"                \n",
+       "[23463] \"211911_x_at\"                 \"214459_x_at\"                \n",
+       "[23465] \"210982_s_at\"                 \"215535_s_at\"                \n",
+       "[23467] \"210579_s_at\"                 \"215444_s_at\"                \n",
+       "[23469] \"214910_s_at\"                 \"213081_at\"                  \n",
+       "[23471] \"212114_at\"                   \"212113_at\"                  \n",
+       "[23473] \"211530_x_at\"                 \"211528_x_at\"                \n",
+       "[23475] \"211529_x_at\"                 \"210514_x_at\"                \n",
+       "[23477] \"212116_at\"                   \"212118_at\"                  \n",
+       "[23479] \"210541_s_at\"                 \"212959_s_at\"                \n",
+       "[23481] \"211583_x_at\"                 \"210763_x_at\"                \n",
+       "[23483] \"211010_s_at\"                 \"214910_s_at\"                \n",
+       "[23485] \"210905_x_at\"                 \"214532_x_at\"                \n",
+       "[23487] \"213451_x_at\"                 \"211583_x_at\"                \n",
+       "[23489] \"210763_x_at\"                 \"211010_s_at\"                \n",
+       "[23491] \"213932_x_at\"                 \"212923_s_at\"                \n",
+       "[23493] \"211681_s_at\"                 \"212412_at\"                  \n",
+       "[23495] \"213684_s_at\"                 \"211680_at\"                  \n",
+       "[23497] \"214459_x_at\"                 \"211530_x_at\"                \n",
+       "[23499] \"211528_x_at\"                 \"211529_x_at\"                \n",
+       "[23501] \"210514_x_at\"                 \"212004_at\"                  \n",
+       "[23503] \"212002_at\"                   \"212005_at\"                  \n",
+       "[23505] \"212003_at\"                   \"210924_at\"                  \n",
+       "[23507] \"213131_at\"                   \"214909_s_at\"                \n",
+       "[23509] \"215537_x_at\"                 \"214910_s_at\"                \n",
+       "[23511] \"214428_x_at\"                 \"210885_s_at\"                \n",
+       "[23513] \"213095_x_at\"                 \"215051_x_at\"                \n",
+       "[23515] \"211093_at\"                   \"213338_at\"                  \n",
+       "[23517] \"213081_at\"                   \"212268_at\"                  \n",
+       "[23519] \"213572_s_at\"                 \"213318_s_at\"                \n",
+       "[23521] \"215536_at\"                   \"211474_s_at\"                \n",
+       "[23523] \"212913_at\"                   \"212116_at\"                  \n",
+       "[23525] \"212118_at\"                   \"210541_s_at\"                \n",
+       "[23527] \"211991_s_at\"                 \"211990_at\"                  \n",
+       "[23529] \"213537_at\"                   \"215444_s_at\"                \n",
+       "[23531] \"215444_s_at\"                 \"214861_at\"                  \n",
+       "[23533] \"210579_s_at\"                 \"212913_at\"                  \n",
+       "[23535] \"214173_x_at\"                 \"211563_s_at\"                \n",
+       "[23537] \"214532_x_at\"                 \"210905_x_at\"                \n",
+       "[23539] \"211608_at\"                   \"214678_x_at\"                \n",
+       "[23541] \"213193_x_at\"                 \"211796_s_at\"                \n",
+       "[23543] \"210915_x_at\"                 \"215395_x_at\"                \n",
+       "[23545] \"211267_at\"                   \"215193_x_at\"                \n",
+       "[23547] \"213081_at\"                   \"214650_x_at\"                \n",
+       "[23549] \"211836_s_at\"                 \"215429_s_at\"                \n",
+       "[23551] \"211142_x_at\"                 \"214911_s_at\"                \n",
+       "[23553] \"213095_x_at\"                 \"215051_x_at\"                \n",
+       "[23555] \"212563_at\"                   \"211796_s_at\"                \n",
+       "[23557] \"211142_x_at\"                 \"213128_s_at\"                \n",
+       "[23559] \"214980_at\"                   \"211575_s_at\"                \n",
+       "[23561] \"213291_s_at\"                 \"211285_s_at\"                \n",
+       "[23563] \"212278_x_at\"                 \"215193_x_at\"                \n",
+       "[23565] \"210982_s_at\"                 \"212439_at\"                  \n",
+       "[23567] \"211920_at\"                   \"215000_s_at\"                \n",
+       "[23569] \"210704_at\"                   \"213186_at\"                  \n",
+       "[23571] \"213932_x_at\"                 \"212560_at\"                  \n",
+       "[23573] \"212081_x_at\"                 \"214201_x_at\"                \n",
+       "[23575] \"213358_at\"                   \"215259_s_at\"                \n",
+       "[23577] \"215258_at\"                   \"211920_at\"                  \n",
+       "[23579] \"213870_at\"                   \"214446_at\"                  \n",
+       "[23581] \"210749_x_at\"                 \"214440_at\"                  \n",
+       "[23583] \"211630_s_at\"                 \"213600_at\"                  \n",
+       "[23585] \"210771_at\"                   \"214459_x_at\"                \n",
+       "[23587] \"211097_s_at\"                 \"211096_at\"                  \n",
+       "[23589] \"215554_at\"                   \"214428_x_at\"                \n",
+       "[23591] \"214428_x_at\"                 \"214909_s_at\"                \n",
+       "[23593] \"215537_x_at\"                 \"212671_s_at\"                \n",
+       "[23595] \"212671_s_at\"                 \"214459_x_at\"                \n",
+       "[23597] \"211714_x_at\"                 \"212320_at\"                  \n",
+       "[23599] \"213666_at\"                   \"212415_at\"                  \n",
+       "[23601] \"212414_s_at\"                 \"212413_at\"                  \n",
+       "[23603] \"214298_x_at\"                 \"214243_s_at\"                \n",
+       "[23605] \"213881_x_at\"                 \"213129_s_at\"                \n",
+       "[23607] \"214510_at\"                   \"214762_at\"                  \n",
+       "[23609] \"214003_x_at\"                 \"215535_s_at\"                \n",
+       "[23611] \"211991_s_at\"                 \"211990_at\"                  \n",
+       "[23613] \"213537_at\"                   \"214428_x_at\"                \n",
+       "[23615] \"213870_at\"                   \"214866_at\"                  \n",
+       "[23617] \"210845_s_at\"                 \"211924_s_at\"                \n",
+       "[23619] \"210885_s_at\"                 \"213540_at\"                  \n",
+       "[23621] \"211656_x_at\"                 \"212998_x_at\"                \n",
+       "[23623] \"215187_at\"                   \"214847_s_at\"                \n",
+       "[23625] \"211456_x_at\"                 \"214622_at\"                  \n",
+       "[23627] \"214459_x_at\"                 \"214847_s_at\"                \n",
+       "[23629] \"213404_s_at\"                 \"214650_x_at\"                \n",
+       "[23631] \"211836_s_at\"                 \"214762_at\"                  \n",
+       "[23633] \"215357_s_at\"                 \"210583_at\"                  \n",
+       "[23635] \"212100_s_at\"                 \"210584_s_at\"                \n",
+       "[23637] \"211656_x_at\"                 \"212998_x_at\"                \n",
+       "[23639] \"215536_at\"                   \"211010_s_at\"                \n",
+       "[23641] \"211583_x_at\"                 \"210763_x_at\"                \n",
+       "[23643] \"213080_x_at\"                 \"212059_s_at\"                \n",
+       "[23645] \"212491_s_at\"                 \"212490_at\"                  \n",
+       "[23647] \"213093_at\"                   \"215195_at\"                  \n",
+       "[23649] \"214505_s_at\"                 \"211097_s_at\"                \n",
+       "[23651] \"211096_at\"                   \"211714_x_at\"                \n",
+       "[23653] \"212320_at\"                   \"212671_s_at\"                \n",
+       "[23655] \"212671_s_at\"                 \"215193_x_at\"                \n",
+       "[23657] \"214585_s_at\"                 \"214585_s_at\"                \n",
+       "[23659] \"214911_s_at\"                 \"212081_x_at\"                \n",
+       "[23661] \"214201_x_at\"                 \"214846_s_at\"                \n",
+       "[23663] \"214622_at\"                   \"213451_x_at\"                \n",
+       "[23665] \"214392_at\"                   \"213738_s_at\"                \n",
+       "[23667] \"210905_x_at\"                 \"214532_x_at\"                \n",
+       "[23669] \"210870_s_at\"                 \"215149_at\"                  \n",
+       "[23671] \"215442_s_at\"                 \"215443_at\"                  \n",
+       "[23673] \"215099_s_at\"                 \"215098_at\"                  \n",
+       "[23675] \"211661_x_at\"                 \"212671_s_at\"                \n",
+       "[23677] \"210982_s_at\"                 \"211530_x_at\"                \n",
+       "[23679] \"211528_x_at\"                 \"211529_x_at\"                \n",
+       "[23681] \"210514_x_at\"                 \"213451_x_at\"                \n",
+       "[23683] \"214320_x_at\"                 \"211295_x_at\"                \n",
+       "[23685] \"213318_s_at\"                 \"214070_s_at\"                \n",
+       "[23687] \"212671_s_at\"                 \"214697_s_at\"                \n",
+       "[23689] \"214698_at\"                   \"215243_s_at\"                \n",
+       "[23691] \"215535_s_at\"                 \"214531_s_at\"                \n",
+       "[23693] \"213364_s_at\"                 \"212453_at\"                  \n",
+       "[23695] \"215289_at\"                   \"213881_x_at\"                \n",
+       "[23697] \"214650_x_at\"                 \"211836_s_at\"                \n",
+       "[23699] \"214285_at\"                   \"214162_at\"                  \n",
+       "[23701] \"214672_at\"                   \"210539_at\"                  \n",
+       "[23703] \"210806_at\"                   \"213273_at\"                  \n",
+       "[23705] \"213775_x_at\"                 \"211257_x_at\"                \n",
+       "[23707] \"214795_at\"                   \"215138_s_at\"                \n",
+       "[23709] \"213752_at\"                   \"213478_at\"                  \n",
+       "[23711] \"210580_x_at\"                 \"215299_x_at\"                \n",
+       "[23713] \"210580_x_at\"                 \"215299_x_at\"                \n",
+       "[23715] \"215094_at\"                   \"211671_s_at\"                \n",
+       "[23717] \"212582_at\"                   \"212585_at\"                  \n",
+       "[23719] \"215533_s_at\"                 \"210685_s_at\"                \n",
+       "[23721] \"211713_x_at\"                 \"214959_s_at\"                \n",
+       "[23723] \"213133_s_at\"                 \"213133_s_at\"                \n",
+       "[23725] \"213129_s_at\"                 \"213133_s_at\"                \n",
+       "[23727] \"212144_at\"                   \"211423_s_at\"                \n",
+       "[23729] \"215064_at\"                   \"212564_at\"                  \n",
+       "[23731] \"214483_s_at\"                 \"212652_s_at\"                \n",
+       "[23733] \"211320_s_at\"                 \"213737_x_at\"                \n",
+       "[23735] \"212066_s_at\"                 \"212065_s_at\"                \n",
+       "[23737] \"215013_s_at\"                 \"211923_s_at\"                \n",
+       "[23739] \"212876_at\"                   \"210540_s_at\"                \n",
+       "[23741] \"212848_s_at\"                 \"212391_x_at\"                \n",
+       "[23743] \"215460_x_at\"                 \"210546_x_at\"                \n",
+       "[23745] \"211674_x_at\"                 \"211727_s_at\"                \n",
+       "[23747] \"214277_at\"                   \"214923_at\"                  \n",
+       "[23749] \"210746_s_at\"                 \"210595_at\"                  \n",
+       "[23751] \"214949_at\"                   \"214948_s_at\"                \n",
+       "[23753] \"212751_at\"                   \"212400_at\"                  \n",
+       "[23755] \"211147_s_at\"                 \"210621_s_at\"                \n",
+       "[23757] \"211937_at\"                   \"211720_x_at\"                \n",
+       "[23759] \"214167_s_at\"                 \"211972_x_at\"                \n",
+       "[23761] \"211762_s_at\"                 \"215516_at\"                  \n",
+       "[23763] \"213523_at\"                   \"210746_s_at\"                \n",
+       "[23765] \"211124_s_at\"                 \"210839_s_at\"                \n",
+       "[23767] \"213850_s_at\"                 \"211637_x_at\"                \n",
+       "[23769] \"214738_s_at\"                 \"212299_at\"                  \n",
+       "[23771] \"212820_at\"                   \"213306_at\"                  \n",
+       "[23773] \"211252_x_at\"                 \"211837_s_at\"                \n",
+       "[23775] \"215492_x_at\"                 \"211697_x_at\"                \n",
+       "[23777] \"213241_at\"                   \"211159_s_at\"                \n",
+       "[23779] \"213591_at\"                   \"210843_s_at\"                \n",
+       "[23781] \"210493_s_at\"                 \"210492_at\"                  \n",
+       "[23783] \"210843_s_at\"                 \"210493_s_at\"                \n",
+       "[23785] \"210492_at\"                   \"212104_s_at\"                \n",
+       "[23787] \"213901_x_at\"                 \"212979_s_at\"                \n",
+       "[23789] \"210529_s_at\"                 \"212981_s_at\"                \n",
+       "[23791] \"213899_at\"                   \"214434_at\"                  \n",
+       "[23793] \"212356_at\"                   \"212355_at\"                  \n",
+       "[23795] \"210718_s_at\"                 \"213707_s_at\"                \n",
+       "[23797] \"211413_s_at\"                 \"214533_at\"                  \n",
+       "[23799] \"214821_at\"                   \"213353_at\"                  \n",
+       "[23801] \"215021_s_at\"                 \"215020_at\"                  \n",
+       "[23803] \"212754_s_at\"                 \"212755_at\"                  \n",
+       "[23805] \"212359_s_at\"                 \"210593_at\"                  \n",
+       "[23807] \"211931_s_at\"                 \"213698_at\"                  \n",
+       "[23809] \"212791_at\"                   \"214957_at\"                  \n",
+       "[23811] \"214208_at\"                   \"210879_s_at\"                \n",
+       "[23813] \"214652_at\"                   \"214867_at\"                  \n",
+       "[23815] \"214867_at\"                   \"213484_at\"                  \n",
+       "[23817] \"215548_s_at\"                 \"215196_at\"                  \n",
+       "[23819] \"213343_s_at\"                 \"212894_at\"                  \n",
+       "[23821] \"212556_at\"                   \"211429_s_at\"                \n",
+       "[23823] \"215357_s_at\"                 \"210583_at\"                  \n",
+       "[23825] \"212100_s_at\"                 \"210584_s_at\"                \n",
+       "[23827] \"212341_at\"                   \"212343_at\"                  \n",
+       "[23829] \"212342_at\"                   \"212340_at\"                  \n",
+       "[23831] \"213408_s_at\"                 \"215494_at\"                  \n",
+       "[23833] \"211711_s_at\"                 \"214086_s_at\"                \n",
+       "[23835] \"215107_s_at\"                 \"215106_at\"                  \n",
+       "[23837] \"214539_at\"                   \"214415_at\"                  \n",
+       "[23839] \"212964_at\"                   \"212966_at\"                  \n",
+       "[23841] \"212965_at\"                   \"211704_s_at\"                \n",
+       "[23843] \"212640_at\"                   \"210991_s_at\"                \n",
+       "[23845] \"215244_at\"                   \"213204_at\"                  \n",
+       "[23847] \"213871_s_at\"                 \"215048_at\"                  \n",
+       "[23849] \"212949_at\"                   \"212927_at\"                  \n",
+       "[23851] \"212926_at\"                   \"215298_at\"                  \n",
+       "[23853] \"211549_s_at\"                 \"211548_s_at\"                \n",
+       "[23855] \"213836_s_at\"                 \"212595_s_at\"                \n",
+       "[23857] \"214334_x_at\"                 \"215355_at\"                  \n",
+       "[23859] \"211417_x_at\"                 \"214273_x_at\"                \n",
+       "[23861] \"210672_s_at\"                 \"215214_at\"                  \n",
+       "[23863] \"214198_s_at\"                 \"211126_s_at\"                \n",
+       "[23865] \"210544_s_at\"                 \"212680_x_at\"                \n",
+       "[23867] \"212090_at\"                   \"215283_at\"                  \n",
+       "[23869] \"213325_at\"                   \"215527_at\"                  \n",
+       "[23871] \"215527_at\"                   \"215263_at\"                  \n",
+       "[23873] \"211745_x_at\"                 \"214414_x_at\"                \n",
+       "[23875] \"211699_x_at\"                 \"212543_at\"                  \n",
+       "[23877] \"215346_at\"                   \"213751_at\"                  \n",
+       "[23879] \"213781_at\"                   \"211745_x_at\"                \n",
+       "[23881] \"214414_x_at\"                 \"211699_x_at\"                \n",
+       "[23883] \"211376_s_at\"                 \"210556_at\"                  \n",
+       "[23885] \"210555_s_at\"                 \"213828_x_at\"                \n",
+       "[23887] \"211940_x_at\"                 \"213400_s_at\"                \n",
+       "[23889] \"210730_s_at\"                 \"210729_at\"                  \n",
+       "[23891] \"213904_at\"                   \"211097_s_at\"                \n",
+       "[23893] \"211949_s_at\"                 \"211951_at\"                  \n",
+       "[23895] \"215416_s_at\"                 \"214369_s_at\"                \n",
+       "[23897] \"214368_at\"                   \"215154_at\"                  \n",
+       "[23899] \"210637_at\"                   \"211433_x_at\"                \n",
+       "[23901] \"213225_at\"                   \"213659_at\"                  \n",
+       "[23903] \"214813_at\"                   \"210760_x_at\"                \n",
+       "[23905] \"213890_x_at\"                 \"215110_at\"                  \n",
+       "[23907] \"214199_at\"                   \"212226_s_at\"                \n",
+       "[23909] \"212256_at\"                   \"213988_s_at\"                \n",
+       "[23911] \"211116_at\"                   \"213653_at\"                  \n",
+       "[23913] \"212226_s_at\"                 \"212230_at\"                  \n",
+       "[23915] \"211036_x_at\"                 \"213754_s_at\"                \n",
+       "[23917] \"213283_s_at\"                 \"212337_at\"                  \n",
+       "[23919] \"212725_s_at\"                 \"213437_at\"                  \n",
+       "[23921] \"213430_at\"                   \"213939_s_at\"                \n",
+       "[23923] \"212870_at\"                   \"211665_s_at\"                \n",
+       "[23925] \"212507_at\"                   \"214412_at\"                  \n",
+       "[23927] \"211438_at\"                   \"214484_s_at\"                \n",
+       "[23929] \"213709_at\"                   \"213709_at\"                  \n",
+       "[23931] \"213510_x_at\"                 \"211787_s_at\"                \n",
+       "[23933] \"215113_s_at\"                 \"211787_s_at\"                \n",
+       "[23935] \"214805_at\"                   \"211787_s_at\"                \n",
+       "[23937] \"211379_x_at\"                 \"211812_s_at\"                \n",
+       "[23939] \"212731_at\"                   \"212704_at\"                  \n",
+       "[23941] \"210876_at\"                   \"211522_s_at\"                \n",
+       "[23943] \"211523_at\"                   \"215157_x_at\"                \n",
+       "[23945] \"215173_at\"                   \"215341_at\"                  \n",
+       "[23947] \"211696_x_at\"                 \"211792_s_at\"                \n",
+       "[23949] \"214412_at\"                   \"211788_s_at\"                \n",
+       "[23951] \"213334_x_at\"                 \"213515_x_at\"                \n",
+       "[23953] \"213515_x_at\"                 \"213515_x_at\"                \n",
+       "[23955] \"210981_s_at\"                 \"211543_s_at\"                \n",
+       "[23957] \"212664_at\"                   \"213476_x_at\"                \n",
+       "[23959] \"213174_at\"                   \"213172_at\"                  \n",
+       "[23961] \"214969_at\"                   \"213927_at\"                  \n",
+       "[23963] \"211476_at\"                   \"213782_s_at\"                \n",
+       "[23965] \"214490_at\"                   \"212887_at\"                  \n",
+       "[23967] \"214498_at\"                   \"215534_at\"                  \n",
+       "[23969] \"213215_at\"                   \"213515_x_at\"                \n",
+       "[23971] \"211855_s_at\"                 \"214504_at\"                  \n",
+       "[23973] \"211063_s_at\"                 \"212037_at\"                  \n",
+       "[23975] \"212036_s_at\"                 \"213763_at\"                  \n",
+       "[23977] \"214578_s_at\"                 \"213044_at\"                  \n",
+       "[23979] \"210883_x_at\"                 \"213503_x_at\"                \n",
+       "[23981] \"212431_at\"                   \"212279_at\"                  \n",
+       "[23983] \"214283_at\"                   \"212282_at\"                  \n",
+       "[23985] \"212281_s_at\"                 \"213389_at\"                  \n",
+       "[23987] \"212680_x_at\"                 \"211258_s_at\"                \n",
+       "[23989] \"210750_s_at\"                 \"215034_s_at\"                \n",
+       "[23991] \"215033_at\"                   \"210617_at\"                  \n",
+       "[23993] \"214141_x_at\"                 \"213649_at\"                  \n",
+       "[23995] \"212165_at\"                   \"213633_at\"                  \n",
+       "[23997] \"212042_x_at\"                 \"212499_s_at\"                \n",
+       "[23999] \"212611_at\"                   \"214746_s_at\"                \n",
+       "[24001] \"212787_at\"                   \"214659_x_at\"                \n",
+       "[24003] \"214713_at\"                   \"214656_x_at\"                \n",
+       "[24005] \"214034_at\"                   \"214012_at\"                  \n",
+       "[24007] \"215264_at\"                   \"215100_at\"                  \n",
+       "[24009] \"210647_x_at\"                 \"213771_at\"                  \n",
+       "[24011] \"214218_s_at\"                 \"212630_at\"                  \n",
+       "[24013] \"214993_at\"                   \"213231_at\"                  \n",
+       "[24015] \"214804_at\"                   \"214687_x_at\"                \n",
+       "[24017] \"213073_at\"                   \"211556_at\"                  \n",
+       "[24019] \"213489_at\"                   \"213334_x_at\"                \n",
+       "[24021] \"214003_x_at\"                 \"213988_s_at\"                \n",
+       "[24023] \"210592_s_at\"                 \"215084_s_at\"                \n",
+       "[24025] \"211451_s_at\"                 \"212252_at\"                  \n",
+       "[24027] \"213812_s_at\"                 \"210787_s_at\"                \n",
+       "[24029] \"213998_s_at\"                 \"214329_x_at\"                \n",
+       "[24031] \"214363_s_at\"                 \"211009_s_at\"                \n",
+       "[24033] \"212534_at\"                   \"211521_s_at\"                \n",
+       "[24035] \"211526_s_at\"                 \"213829_x_at\"                \n",
+       "[24037] \"210546_x_at\"                 \"211674_x_at\"                \n",
+       "[24039] \"210546_x_at\"                 \"211674_x_at\"                \n",
+       "[24041] \"213403_at\"                   \"213393_at\"                  \n",
+       "[24043] \"212384_at\"                   \"210956_at\"                  \n",
+       "[24045] \"211318_s_at\"                 \"215521_at\"                  \n",
+       "[24047] \"214578_s_at\"                 \"213044_at\"                  \n",
+       "[24049] \"211936_at\"                   \"211425_x_at\"                \n",
+       "[24051] \"212430_at\"                   \"215088_s_at\"                \n",
+       "[24053] \"213603_s_at\"                 \"214574_x_at\"                \n",
+       "[24055] \"211581_x_at\"                 \"210629_x_at\"                \n",
+       "[24057] \"214181_x_at\"                 \"211582_x_at\"                \n",
+       "[24059] \"212558_at\"                   \"212198_s_at\"                \n",
+       "[24061] \"212194_s_at\"                 \"211119_at\"                  \n",
+       "[24063] \"211117_x_at\"                 \"211120_x_at\"                \n",
+       "[24065] \"211118_x_at\"                 \"210780_at\"                  \n",
+       "[24067] \"211583_x_at\"                 \"210763_x_at\"                \n",
+       "[24069] \"211010_s_at\"                 \"213404_s_at\"                \n",
+       "[24071] \"213095_x_at\"                 \"215051_x_at\"                \n",
+       "[24073] \"212419_at\"                   \"212423_at\"                  \n",
+       "[24075] \"213683_at\"                   \"211207_s_at\"                \n",
+       "[24077] \"212705_x_at\"                 \"214910_s_at\"                \n",
+       "[24079] \"215128_at\"                   \"215244_at\"                  \n",
+       "[24081] \"212748_at\"                   \"215292_s_at\"                \n",
+       "[24083] \"215291_at\"                   \"212920_at\"                  \n",
+       "[24085] \"211227_s_at\"                 \"213614_x_at\"                \n",
+       "[24087] \"213477_x_at\"                 \"213583_x_at\"                \n",
+       "[24089] \"213190_at\"                   \"212909_at\"                  \n",
+       "[24091] \"215309_at\"                   \"210658_s_at\"                \n",
+       "[24093] \"213772_s_at\"                 \"214190_x_at\"                \n",
+       "[24095] \"212182_at\"                   \"212181_s_at\"                \n",
+       "[24097] \"212183_at\"                   \"213102_at\"                  \n",
+       "[24099] \"213101_s_at\"                 \"212264_s_at\"                \n",
+       "[24101] \"212267_at\"                   \"213130_at\"                  \n",
+       "[24103] \"213124_at\"                   \"211273_s_at\"                \n",
+       "[24105] \"211274_at\"                   \"214421_x_at\"                \n",
+       "[24107] \"214254_at\"                   \"211730_s_at\"                \n",
+       "[24109] \"211085_s_at\"                 \"213444_at\"                  \n",
+       "[24111] \"213049_at\"                   \"214855_s_at\"                \n",
+       "[24113] \"215162_at\"                   \"214401_at\"                  \n",
+       "[24115] \"214431_at\"                   \"215307_at\"                  \n",
+       "[24117] \"213226_at\"                   \"214147_at\"                  \n",
+       "[24119] \"215522_at\"                   \"212115_at\"                  \n",
+       "[24121] \"212109_at\"                   \"214742_at\"                  \n",
+       "[24123] \"211817_s_at\"                 \"211584_s_at\"                \n",
+       "[24125] \"210814_at\"                   \"212123_at\"                  \n",
+       "[24127] \"212121_at\"                   \"212913_at\"                  \n",
+       "[24129] \"214243_s_at\"                 \"212537_x_at\"                \n",
+       "[24131] \"212270_x_at\"                 \"210813_s_at\"                \n",
+       "[24133] \"210812_at\"                   \"212890_at\"                  \n",
+       "[24135] \"214909_s_at\"                 \"215537_x_at\"                \n",
+       "[24137] \"214724_at\"                   \"213107_at\"                  \n",
+       "[24139] \"213109_at\"                   \"211828_s_at\"                \n",
+       "[24141] \"212989_at\"                   \"212760_at\"                  \n",
+       "[24143] \"212756_s_at\"                 \"213880_at\"                  \n",
+       "[24145] \"213462_at\"                   \"211033_s_at\"                \n",
+       "[24147] \"213301_x_at\"                 \"211081_s_at\"                \n",
+       "[24149] \"214642_x_at\"                 \"213579_s_at\"                \n",
+       "[24151] \"211852_s_at\"                 \"212517_at\"                  \n",
+       "[24153] \"211342_x_at\"                 \"212614_at\"                  \n",
+       "[24155] \"211928_at\"                   \"212167_s_at\"                \n",
+       "[24157] \"215245_x_at\"                 \"211345_x_at\"                \n",
+       "[24159] \"211927_x_at\"                 \"211056_s_at\"                \n",
+       "[24161] \"210959_s_at\"                 \"212734_x_at\"                \n",
+       "[24163] \"212191_x_at\"                 \"215003_at\"                  \n",
+       "[24165] \"215244_at\"                   \"214133_at\"                  \n",
+       "[24167] \"211345_x_at\"                 \"211927_x_at\"                \n",
+       "[24169] \"215229_at\"                   \"214241_at\"                  \n",
+       "[24171] \"212892_at\"                   \"214677_x_at\"                \n",
+       "[24173] \"215121_x_at\"                 \"215379_x_at\"                \n",
+       "[24175] \"214677_x_at\"                 \"215121_x_at\"                \n",
+       "[24177] \"215379_x_at\"                 \"214241_at\"                  \n",
+       "[24179] \"213897_s_at\"                 \"214982_at\"                  \n",
+       "[24181] \"212592_at\"                   \"214553_s_at\"                \n",
+       "[24183] \"212127_at\"                   \"212125_at\"                  \n",
+       "[24185] \"214045_at\"                   \"212974_at\"                  \n",
+       "[24187] \"212975_at\"                   \"212411_at\"                  \n",
+       "[24189] \"214883_at\"                   \"212406_s_at\"                \n",
+       "[24191] \"212110_at\"                   \"214556_at\"                  \n",
+       "[24193] \"211417_x_at\"                 \"214873_at\"                  \n",
+       "[24195] \"214873_at\"                   \"211360_s_at\"                \n",
+       "[24197] \"210553_x_at\"                 \"211263_s_at\"                \n",
+       "[24199] \"211262_at\"                   \"214771_x_at\"                \n",
+       "[24201] \"212197_x_at\"                 \"214694_at\"                  \n",
+       "[24203] \"213187_x_at\"                 \"213502_x_at\"                \n",
+       "[24205] \"212788_x_at\"                 \"213187_x_at\"                \n",
+       "[24207] \"213614_x_at\"                 \"213477_x_at\"                \n",
+       "[24209] \"213583_x_at\"                 \"214570_x_at\"                \n",
+       "[24211] \"214494_s_at\"                 \"214494_s_at\"                \n",
+       "[24213] \"211417_x_at\"                 \"211416_x_at\"                \n",
+       "[24215] \"211417_x_at\"                 \"211416_x_at\"                \n",
+       "[24217] \"214042_s_at\"                 \"213722_at\"                  \n",
+       "[24219] \"213721_at\"                   \"214828_s_at\"                \n",
+       "[24221] \"210584_s_at\"                 \"214828_s_at\"                \n",
+       "[24223] \"211598_x_at\"                 \"212741_at\"                  \n",
+       "[24225] \"210825_s_at\"                 \"211941_s_at\"                \n",
+       "[24227] \"210926_at\"                   \"212397_at\"                  \n",
+       "[24229] \"212398_at\"                   \"213768_s_at\"                \n",
+       "[24231] \"213521_at\"                   \"211417_x_at\"                \n",
+       "[24233] \"211416_x_at\"                 \"213408_s_at\"                \n",
+       "[24235] \"212433_x_at\"                 \"212691_at\"                  \n",
+       "[24237] \"214675_at\"                   \"211345_x_at\"                \n",
+       "[24239] \"211927_x_at\"                 \"213408_s_at\"                \n",
+       "[24241] \"213920_at\"                   \"212821_at\"                  \n",
+       "[24243] \"212823_s_at\"                 \"215244_at\"                  \n",
+       "[24245] \"214376_at\"                   \"211417_x_at\"                \n",
+       "[24247] \"214406_s_at\"                 \"214406_s_at\"                \n",
+       "[24249] \"213269_at\"                   \"214612_x_at\"                \n",
+       "[24251] \"212098_at\"                   \"214603_at\"                  \n",
+       "[24253] \"214603_at\"                   \"214145_s_at\"                \n",
+       "[24255] \"210810_s_at\"                 \"210774_s_at\"                \n",
+       "[24257] \"211297_s_at\"                 \"213502_x_at\"                \n",
+       "[24259] \"214665_s_at\"                 \"214603_at\"                  \n",
+       "[24261] \"211169_s_at\"                 \"213502_x_at\"                \n",
+       "[24263] \"214919_s_at\"                 \"212952_at\"                  \n",
+       "[24265] \"214316_x_at\"                 \"213599_at\"                  \n",
+       "[24267] \"212889_x_at\"                 \"215093_at\"                  \n",
+       "[24269] \"211732_x_at\"                 \"214919_s_at\"                \n",
+       "[24271] \"212891_s_at\"                 \"215312_at\"                  \n",
+       "[24273] \"214260_at\"                   \"214586_at\"                  \n",
+       "[24275] \"213893_x_at\"                 \"210707_x_at\"                \n",
+       "[24277] \"215410_at\"                   \"214757_at\"                  \n",
+       "[24279] \"211083_s_at\"                 \"210707_x_at\"                \n",
+       "[24281] \"215412_x_at\"                 \"210707_x_at\"                \n",
+       "[24283] \"215412_x_at\"                 \"215407_s_at\"                \n",
+       "[24285] \"212191_x_at\"                 \"213504_at\"                  \n",
+       "[24287] \"213223_at\"                   \"213170_at\"                  \n",
+       "[24289] \"210622_x_at\"                 \"210674_s_at\"                \n",
+       "[24291] \"211431_s_at\"                 \"211432_s_at\"                \n",
+       "[24293] \"211365_s_at\"                 \"210674_s_at\"                \n",
+       "[24295] \"210572_at\"                   \"211870_s_at\"                \n",
+       "[24297] \"210572_at\"                   \"210674_s_at\"                \n",
+       "[24299] \"211838_x_at\"                 \"210674_s_at\"                \n",
+       "[24301] \"211811_s_at\"                 \"210674_s_at\"                \n",
+       "[24303] \"212009_s_at\"                 \"213330_s_at\"                \n",
+       "[24305] \"210674_s_at\"                 \"215505_s_at\"                \n",
+       "[24307] \"210674_s_at\"                 \"211867_s_at\"                \n",
+       "[24309] \"210674_s_at\"                 \"211867_s_at\"                \n",
+       "[24311] \"210674_s_at\"                 \"210550_s_at\"                \n",
+       "[24313] \"214905_at\"                   \"212421_at\"                  \n",
+       "[24315] \"214965_at\"                   \"210969_at\"                  \n",
+       "[24317] \"212629_s_at\"                 \"212628_at\"                  \n",
+       "[24319] \"210674_s_at\"                 \"211160_x_at\"                \n",
+       "[24321] \"210674_s_at\"                 \"214972_at\"                  \n",
+       "[24323] \"210674_s_at\"                 \"210674_s_at\"                \n",
+       "[24325] \"213837_at\"                   \"211029_x_at\"                \n",
+       "[24327] \"211485_s_at\"                 \"212698_s_at\"                \n",
+       "[24329] \"214720_x_at\"                 \"214798_at\"                  \n",
+       "[24331] \"214147_at\"                   \"212916_at\"                  \n",
+       "[24333] \"215065_at\"                   \"212893_at\"                  \n",
+       "[24335] \"213302_at\"                   \"213399_x_at\"                \n",
+       "[24337] \"213491_x_at\"                 \"214733_s_at\"                \n",
+       "[24339] \"214706_at\"                   \"214478_at\"                  \n",
+       "[24341] \"211735_x_at\"                 \"214387_x_at\"                \n",
+       "[24343] \"215454_x_at\"                 \"212665_at\"                  \n",
+       "[24345] \"215428_at\"                   \"215517_at\"                  \n",
+       "[24347] \"211871_x_at\"                 \"214609_at\"                  \n",
+       "[24349] \"213921_at\"                   \"215160_x_at\"                \n",
+       "[24351] \"215160_x_at\"                 \"214899_at\"                  \n",
+       "[24353] \"213808_at\"                   \"214784_x_at\"                \n",
+       "[24355] \"211982_x_at\"                 \"213084_x_at\"                \n",
+       "[24357] \"210952_at\"                   \"212718_at\"                  \n",
+       "[24359] \"212720_at\"                   \"215374_at\"                  \n",
+       "[24361] \"212349_at\"                   \"211027_s_at\"                \n",
+       "[24363] \"213992_at\"                   \"211473_s_at\"                \n",
+       "[24365] \"210945_at\"                   \"214760_at\"                  \n",
+       "[24367] \"215487_x_at\"                 \"212467_at\"                  \n",
+       "[24369] \"210894_s_at\"                 \"213473_at\"                  \n",
+       "[24371] \"212695_at\"                   \"213614_x_at\"                \n",
+       "[24373] \"213477_x_at\"                 \"214546_s_at\"                \n",
+       "[24375] \"213651_at\"                   \"214308_s_at\"                \n",
+       "[24377] \"214307_at\"                   \"214546_s_at\"                \n",
+       "[24379] \"213013_at\"                   \"213014_at\"                  \n",
+       "[24381] \"210779_x_at\"                 \"211115_x_at\"                \n",
+       "[24383] \"211114_x_at\"                 \"214832_at\"                  \n",
+       "[24385] \"214168_s_at\"                 \"212734_x_at\"                \n",
+       "[24387] \"212933_x_at\"                 \"212191_x_at\"                \n",
+       "[24389] \"214976_at\"                   \"213046_at\"                  \n",
+       "[24391] \"212758_s_at\"                 \"210875_s_at\"                \n",
+       "[24393] \"212764_at\"                   \"213059_at\"                  \n",
+       "[24395] \"213498_at\"                   \"213398_s_at\"                \n",
+       "[24397] \"215485_s_at\"                 \"210582_s_at\"                \n",
+       "[24399] \"212070_at\"                   \"215540_at\"                  \n",
+       "[24401] \"211430_s_at\"                 \"211403_x_at\"                \n",
+       "[24403] \"213674_x_at\"                 \"212827_at\"                  \n",
+       "[24405] \"212458_at\"                   \"212466_at\"                  \n",
+       "[24407] \"211637_x_at\"                 \"211634_x_at\"                \n",
+       "[24409] \"211635_x_at\"                 \"214223_at\"                  \n",
+       "[24411] \"211634_x_at\"                 \"211635_x_at\"                \n",
+       "[24413] \"215315_at\"                   \"211642_at\"                  \n",
+       "[24415] \"211814_s_at\"                 \"210638_s_at\"                \n",
+       "[24417] \"212987_at\"                   \"212991_at\"                  \n",
+       "[24419] \"213421_x_at\"                 \"214333_x_at\"                \n",
+       "[24421] \"214232_at\"                   \"214762_at\"                  \n",
+       "[24423] \"214205_x_at\"                 \"213445_at\"                  \n",
+       "[24425] \"213282_at\"                   \"213289_at\"                  \n",
+       "[24427] \"211486_s_at\"                 \"210508_s_at\"                \n",
+       "[24429] \"212817_at\"                   \"210669_at\"                  \n",
+       "[24431] \"215364_s_at\"                 \"215380_s_at\"                \n",
+       "[24433] \"213376_at\"                   \"211510_s_at\"                \n",
+       "[24435] \"211421_s_at\"                 \"213317_at\"                  \n",
+       "[24437] \"212351_at\"                   \"214395_x_at\"                \n",
+       "[24439] \"214395_x_at\"                 \"215285_s_at\"                \n",
+       "[24441] \"213550_s_at\"                 \"213838_at\"                  \n",
+       "[24443] \"213200_at\"                   \"212831_at\"                  \n",
+       "[24445] \"212830_at\"                   \"214435_x_at\"                \n",
+       "[24447] \"212828_at\"                   \"210612_s_at\"                \n",
+       "[24449] \"213801_x_at\"                 \"210796_x_at\"                \n",
+       "[24451] \"212688_at\"                   \"214612_x_at\"                \n",
+       "[24453] \"210772_at\"                   \"210773_s_at\"                \n",
+       "[24455] \"214560_at\"                   \"210497_x_at\"                \n",
+       "[24457] \"211403_x_at\"                 \"211886_s_at\"                \n",
+       "[24459] \"210751_s_at\"                 \"215089_s_at\"                \n",
+       "[24461] \"211538_s_at\"                 \"214272_at\"                  \n",
+       "[24463] \"213295_at\"                   \"211024_s_at\"                \n",
+       "[24465] \"210673_x_at\"                 \"214606_at\"                  \n",
+       "[24467] \"214338_at\"                   \"214355_x_at\"                \n",
+       "[24469] \"212773_s_at\"                 \"214739_at\"                  \n",
+       "[24471] \"211818_s_at\"                 \"214326_x_at\"                \n",
+       "[24473] \"213243_at\"                   \"211925_s_at\"                \n",
+       "[24475] \"213222_at\"                   \"213790_at\"                  \n",
+       "[24477] \"212380_at\"                   \"212778_at\"                  \n",
+       "[24479] \"210520_at\"                   \"214128_at\"                  \n",
+       "[24481] \"213671_s_at\"                 \"213672_at\"                  \n",
+       "[24483] \"212671_s_at\"                 \"212671_s_at\"                \n",
+       "[24485] \"215536_at\"                   \"213691_at\"                  \n",
+       "[24487] \"213690_s_at\"                 \"213311_s_at\"                \n",
+       "[24489] \"214704_at\"                   \"211783_s_at\"                \n",
+       "[24491] \"213900_at\"                   \"211715_s_at\"                \n",
+       "[24493] \"215028_at\"                   \"213476_x_at\"                \n",
+       "[24495] \"214222_at\"                   \"212427_at\"                  \n",
+       "[24497] \"214356_s_at\"                 \"212428_at\"                  \n",
+       "[24499] \"213858_at\"                   \"214617_at\"                  \n",
+       "[24501] \"214951_at\"                   \"215274_at\"                  \n",
+       "[24503] \"214527_s_at\"                 \"210499_s_at\"                \n",
+       "[24505] \"215118_s_at\"                 \"215172_at\"                  \n",
+       "[24507] \"211430_s_at\"                 \"213111_at\"                  \n",
+       "[24509] \"214985_at\"                   \"213569_at\"                  \n",
+       "[24511] \"213099_at\"                   \"212840_at\"                  \n",
+       "[24513] \"213861_s_at\"                 \"213278_at\"                  \n",
+       "[24515] \"214332_s_at\"                 \"212656_at\"                  \n",
+       "[24517] \"214331_at\"                   \"214332_s_at\"                \n",
+       "[24519] \"212656_at\"                   \"214331_at\"                  \n",
+       "[24521] \"210674_s_at\"                 \"213701_at\"                  \n",
+       "[24523] \"215139_at\"                   \"215139_at\"                  \n",
+       "[24525] \"213995_at\"                   \"212586_at\"                  \n",
+       "[24527] \"212580_at\"                   \"210819_x_at\"                \n",
+       "[24529] \"211215_x_at\"                 \"213682_at\"                  \n",
+       "[24531] \"214714_at\"                   \"211700_s_at\"                \n",
+       "[24533] \"210882_s_at\"                 \"211701_s_at\"                \n",
+       "[24535] \"213923_at\"                   \"214488_at\"                  \n",
+       "[24537] \"214487_s_at\"                 \"214049_x_at\"                \n",
+       "[24539] \"214551_s_at\"                 \"214548_x_at\"                \n",
+       "[24541] \"211858_x_at\"                 \"212273_x_at\"                \n",
+       "[24543] \"214157_at\"                   \"211205_x_at\"                \n",
+       "[24545] \"213716_s_at\"                 \"210873_x_at\"                \n",
+       "[24547] \"210873_x_at\"                 \"211092_s_at\"                \n",
+       "[24549] \"211091_s_at\"                 \"211017_s_at\"                \n",
+       "[24551] \"210767_at\"                   \"211843_x_at\"                \n",
+       "[24553] \"214664_at\"                   \"213717_at\"                  \n",
+       "[24555] \"212060_at\"                   \"212058_at\"                  \n",
+       "[24557] \"212061_at\"                   \"214649_s_at\"                \n",
+       "[24559] \"215145_s_at\"                 \"210588_x_at\"                \n",
+       "[24561] \"214529_at\"                   \"214279_s_at\"                \n",
+       "[24563] \"214878_at\"                   \"214348_at\"                  \n",
+       "[24565] \"210928_at\"                   \"212124_at\"                  \n",
+       "[24567] \"213906_at\"                   \"210910_s_at\"                \n",
+       "[24569] \"211068_x_at\"                 \"214946_x_at\"                \n",
+       "[24571] \"212370_x_at\"                 \"212929_s_at\"                \n",
+       "[24573] \"213012_at\"                   \"214749_s_at\"                \n",
+       "[24575] \"210743_s_at\"                 \"210742_at\"                  \n",
+       "[24577] \"214554_at\"                   \"214534_at\"                  \n",
+       "[24579] \"213456_at\"                   \"214509_at\"                  \n",
+       "[24581] \"214562_at\"                   \"214646_at\"                  \n",
+       "[24583] \"214540_at\"                   \"213867_x_at\"                \n",
+       "[24585] \"213753_x_at\"                 \"213876_x_at\"                \n",
+       "[24587] \"213526_s_at\"                 \"211275_s_at\"                \n",
+       "[24589] \"213526_s_at\"                 \"215444_s_at\"                \n",
+       "[24591] \"214767_s_at\"                 \"210579_s_at\"                \n",
+       "[24593] \"211276_at\"                   \"210933_s_at\"                \n",
+       "[24595] \"210885_s_at\"                 \"213757_at\"                  \n",
+       "[24597] \"214415_at\"                   \"211145_x_at\"                \n",
+       "[24599] \"215052_at\"                   \"214870_x_at\"                \n",
+       "[24601] \"214035_x_at\"                 \"215002_at\"                  \n",
+       "[24603] \"211743_s_at\"                 \"214681_at\"                  \n",
+       "[24605] \"211743_s_at\"                 \"210692_s_at\"                \n",
+       "[24607] \"211611_s_at\"                 \"211611_s_at\"                \n",
+       "[24609] \"212795_at\"                   \"212794_s_at\"                \n",
+       "[24611] \"213757_at\"                   \"215465_at\"                  \n",
+       "[24613] \"211555_s_at\"                 \"211148_s_at\"                \n",
+       "[24615] \"215294_s_at\"                 \"213005_s_at\"                \n",
+       "[24617] \"214366_s_at\"                 \"214335_at\"                  \n",
+       "[24619] \"213065_at\"                   \"212971_at\"                  \n",
+       "[24621] \"215535_s_at\"                 \"213013_at\"                  \n",
+       "[24623] \"214248_s_at\"                 \"212713_at\"                  \n",
+       "[24625] \"212149_at\"                   \"212150_at\"                  \n",
+       "[24627] \"211097_s_at\"                 \"211096_at\"                  \n",
+       "[24629] \"212744_at\"                   \"212745_s_at\"                \n",
+       "[24631] \"214847_s_at\"                 \"210815_s_at\"                \n",
+       "[24633] \"212494_at\"                   \"212433_x_at\"                \n",
+       "[24635] \"210688_s_at\"                 \"210687_at\"                  \n",
+       "[24637] \"215054_at\"                   \"210982_s_at\"                \n",
+       "[24639] \"211714_x_at\"                 \"212320_at\"                  \n",
+       "[24641] \"211839_s_at\"                 \"210557_x_at\"                \n",
+       "[24643] \"213972_at\"                   \"212296_at\"                  \n",
+       "[24645] \"213717_at\"                   \"213371_at\"                  \n",
+       "[24647] \"211468_s_at\"                 \"213394_at\"                  \n",
+       "[24649] \"211163_s_at\"                 \"210654_at\"                  \n",
+       "[24651] \"214023_x_at\"                 \"213476_x_at\"                \n",
+       "[24653] \"213372_at\"                   \"212313_at\"                  \n",
+       "[24655] \"214066_x_at\"                 \"211775_x_at\"                \n",
+       "[24657] \"212900_at\"                   \"212902_at\"                  \n",
+       "[24659] \"213476_x_at\"                 \"211904_x_at\"                \n",
+       "[24661] \"210630_s_at\"                 \"210745_at\"                  \n",
+       "[24663] \"211704_s_at\"                 \"213158_at\"                  \n",
+       "[24665] \"213156_at\"                   \"213156_at\"                  \n",
+       "[24667] \"213520_at\"                   \"211998_at\"                  \n",
+       "[24669] \"211999_at\"                   \"211997_x_at\"                \n",
+       "[24671] \"211357_s_at\"                 \"210607_at\"                  \n",
+       "[24673] \"212067_s_at\"                 \"210607_at\"                  \n",
+       "[24675] \"211077_s_at\"                 \"215382_x_at\"                \n",
+       "[24677] \"211358_s_at\"                 \"213977_s_at\"                \n",
+       "[24679] \"213976_at\"                   \"215382_x_at\"                \n",
+       "[24681] \"214838_at\"                   \"214568_at\"                  \n",
+       "[24683] \"215481_s_at\"                 \"211942_x_at\"                \n",
+       "[24685] \"212790_x_at\"                 \"210646_x_at\"                \n",
+       "[24687] \"211942_x_at\"                 \"210646_x_at\"                \n",
+       "[24689] \"214568_at\"                   \"213535_s_at\"                \n",
+       "[24691] \"211008_s_at\"                 \"211651_s_at\"                \n",
+       "[24693] \"214567_s_at\"                 \"213640_s_at\"                \n",
+       "[24695] \"215446_s_at\"                 \"213829_x_at\"                \n",
+       "[24697] \"211526_s_at\"                 \"213113_s_at\"                \n",
+       "[24699] \"210692_s_at\"                 \"210664_s_at\"                \n",
+       "[24701] \"213258_at\"                   \"210665_at\"                  \n",
+       "[24703] \"210636_at\"                   \"212865_s_at\"                \n",
+       "[24705] \"215057_at\"                   \"213105_s_at\"                \n",
+       "[24707] \"213104_at\"                   \"212509_s_at\"                \n",
+       "[24709] \"214765_s_at\"                 \"212647_at\"                  \n",
+       "[24711] \"211547_s_at\"                 \"211746_x_at\"                \n",
+       "[24713] \"210759_s_at\"                 \"213525_at\"                  \n",
+       "[24715] \"212176_at\"                   \"212179_at\"                  \n",
+       "[24717] \"212177_at\"                   \"212234_at\"                  \n",
+       "[24719] \"212238_at\"                   \"212237_at\"                  \n",
+       "[24721] \"213475_s_at\"                 \"212802_s_at\"                \n",
+       "[24723] \"212804_s_at\"                 \"214869_x_at\"                \n",
+       "[24725] \"213820_s_at\"                 \"214431_at\"                  \n",
+       "[24727] \"215220_s_at\"                 \"212247_at\"                  \n",
+       "[24729] \"214737_x_at\"                 \"212626_x_at\"                \n",
+       "[24731] \"210625_s_at\"                 \"210626_at\"                  \n",
+       "[24733] \"211653_x_at\"                 \"212977_at\"                  \n",
+       "[24735] \"214896_at\"                   \"215126_at\"                  \n",
+       "[24737] \"214761_at\"                   \"211042_x_at\"                \n",
+       "[24739] \"210567_s_at\"                 \"213247_at\"                  \n",
+       "[24741] \"212898_at\"                   \"213528_at\"                  \n",
+       "[24743] \"215046_at\"                   \"214667_s_at\"                \n",
+       "[24745] \"213970_at\"                   \"211003_x_at\"                \n",
+       "[24747] \"211573_x_at\"                 \"215129_at\"                  \n",
+       "[24749] \"211784_s_at\"                 \"211784_s_at\"                \n",
+       "[24751] \"213405_at\"                   \"214627_at\"                  \n",
+       "[24753] \"210691_s_at\"                 \"211286_x_at\"                \n",
+       "[24755] \"211287_x_at\"                 \"211813_x_at\"                \n",
+       "[24757] \"211896_s_at\"                 \"212805_at\"                  \n",
+       "[24759] \"212806_at\"                   \"210985_s_at\"                \n",
+       "[24761] \"212950_at\"                   \"212951_at\"                  \n",
+       "[24763] \"215155_at\"                   \"214711_at\"                  \n",
+       "[24765] \"211960_s_at\"                 \"211961_s_at\"                \n",
+       "[24767] \"211542_x_at\"                 \"214159_at\"                  \n",
+       "[24769] \"212706_at\"                   \"212707_s_at\"                \n",
+       "[24771] \"210859_x_at\"                 \"212782_x_at\"                \n",
+       "[24773] \"213623_at\"                   \"212707_s_at\"                \n",
+       "[24775] \"211622_s_at\"                 \"213384_x_at\"                \n",
+       "[24777] \"214426_x_at\"                 \"214680_at\"                  \n",
+       "[24779] \"211744_s_at\"                 \"214567_s_at\"                \n",
+       "[24781] \"214788_x_at\"                 \"210817_s_at\"                \n",
+       "[24783] \"210656_at\"                   \"213646_x_at\"                \n",
+       "[24785] \"211058_x_at\"                 \"212639_x_at\"                \n",
+       "[24787] \"211072_x_at\"                 \"214293_at\"                  \n",
+       "[24789] \"212594_at\"                   \"212593_s_at\"                \n",
+       "[24791] \"213451_x_at\"                 \"214428_x_at\"                \n",
+       "[24793] \"211622_s_at\"                 \"212593_s_at\"                \n",
+       "[24795] \"213220_at\"                   \"213224_s_at\"                \n",
+       "[24797] \"213542_at\"                   \"213658_at\"                  \n",
+       "[24799] \"213657_s_at\"                 \"214471_x_at\"                \n",
+       "[24801] \"210985_s_at\"                 \"213047_x_at\"                \n",
+       "[24803] \"213121_at\"                   \"211458_s_at\"                \n",
+       "[24805] \"211457_at\"                   \"215233_at\"                  \n",
+       "[24807] \"212722_s_at\"                 \"212723_at\"                  \n",
+       "[24809] \"210840_s_at\"                 \"213446_s_at\"                \n",
+       "[24811] \"211502_s_at\"                 \"210570_x_at\"                \n",
+       "[24813] \"214622_at\"                   \"213021_at\"                  \n",
+       "[24815] \"213020_at\"                   \"211942_x_at\"                \n",
+       "[24817] \"211219_s_at\"                 \"215501_s_at\"                \n",
+       "[24819] \"212097_at\"                   \"211608_at\"                  \n",
+       "[24821] \"215071_s_at\"                 \"214472_at\"                  \n",
+       "[24823] \"214522_x_at\"                 \"214472_at\"                  \n",
+       "[24825] \"214522_x_at\"                 \"214537_at\"                  \n",
+       "[24827] \"212613_at\"                   \"212052_s_at\"                \n",
+       "[24829] \"212054_x_at\"                 \"210671_x_at\"                \n",
+       "[24831] \"210948_s_at\"                 \"215277_at\"                  \n",
+       "[24833] \"214456_x_at\"                 \"213402_at\"                  \n",
+       "[24835] \"213097_s_at\"                 \"214831_at\"                  \n",
+       "[24837] \"215320_at\"                   \"211795_s_at\"                \n",
+       "[24839] \"211794_at\"                   \"212796_s_at\"                \n",
+       "[24841] \"211325_x_at\"                 \"210822_at\"                  \n",
+       "[24843] \"213997_at\"                   \"210594_x_at\"                \n",
+       "[24845] \"213362_at\"                   \"214043_at\"                  \n",
+       "[24847] \"214778_at\"                   \"214175_x_at\"                \n",
+       "[24849] \"211564_s_at\"                 \"210868_s_at\"                \n",
+       "[24851] \"212772_s_at\"                 \"213257_at\"                  \n",
+       "[24853] \"213259_s_at\"                 \"211076_x_at\"                \n",
+       "[24855] \"213855_s_at\"                 \"213941_x_at\"                \n",
+       "[24857] \"211883_x_at\"                 \"211889_x_at\"                \n",
+       "[24859] \"210610_at\"                   \"214661_s_at\"                \n",
+       "[24861] \"210600_s_at\"                 \"214547_at\"                  \n",
+       "[24863] \"213011_s_at\"                 \"215418_at\"                  \n",
+       "[24865] \"213675_at\"                   \"214136_at\"                  \n",
+       "[24867] \"213849_s_at\"                 \"212661_x_at\"                \n",
+       "[24869] \"211765_x_at\"                 \"211378_x_at\"                \n",
+       "[24871] \"211978_x_at\"                 \"211210_x_at\"                \n",
+       "[24873] \"211211_x_at\"                 \"211209_x_at\"                \n",
+       "[24875] \"211479_s_at\"                 \"213209_at\"                  \n",
+       "[24877] \"213210_at\"                   \"213211_s_at\"                \n",
+       "[24879] \"213961_s_at\"                 \"213818_x_at\"                \n",
+       "[24881] \"212205_at\"                   \"212206_s_at\"                \n",
+       "[24883] \"213379_at\"                   \"212922_s_at\"                \n",
+       "[24885] \"213818_x_at\"                 \"213242_x_at\"                \n",
+       "[24887] \"213650_at\"                   \"213458_at\"                  \n",
+       "[24889] \"213463_s_at\"                 \"213896_x_at\"                \n",
+       "[24891] \"213068_at\"                   \"213071_at\"                  \n",
+       "[24893] \"213088_s_at\"                 \"213092_x_at\"                \n",
+       "[24895] \"213212_x_at\"                 \"210693_at\"                  \n",
+       "[24897] \"211208_s_at\"                 \"213218_at\"                  \n",
+       "[24899] \"212663_at\"                   \"211064_at\"                  \n",
+       "[24901] \"212736_at\"                   \"213499_at\"                  \n",
+       "[24903] \"213197_at\"                   \"213864_s_at\"                \n",
+       "[24905] \"212967_x_at\"                 \"214592_s_at\"                \n",
+       "[24907] \"214592_s_at\"                 \"213203_at\"                  \n",
+       "[24909] \"214054_at\"                   \"213084_x_at\"                \n",
+       "[24911] \"211710_x_at\"                 \"212166_at\"                  \n",
+       "[24913] \"214186_s_at\"                 \"211090_s_at\"                \n",
+       "[24915] \"215343_at\"                   \"211768_at\"                  \n",
+       "[24917] \"213941_x_at\"                 \"215085_x_at\"                \n",
+       "[24919] \"214507_s_at\"                 \"211226_at\"                  \n",
+       "[24921] \"212034_s_at\"                 \"212035_s_at\"                \n",
+       "[24923] \"212026_s_at\"                 \"215413_at\"                  \n",
+       "[24925] \"214802_at\"                   \"213369_at\"                  \n",
+       "[24927] \"212096_s_at\"                 \"212093_s_at\"                \n",
+       "[24929] \"212095_s_at\"                 \"214274_s_at\"                \n",
+       "[24931] \"211174_s_at\"                 \"211353_at\"                  \n",
+       "[24933] \"213737_x_at\"                 \"214394_x_at\"                \n",
+       "[24935] \"211385_x_at\"                 \"215299_x_at\"                \n",
+       "[24937] \"211031_s_at\"                 \"212015_x_at\"                \n",
+       "[24939] \"212016_s_at\"                 \"211270_x_at\"                \n",
+       "[24941] \"211271_x_at\"                 \"210511_s_at\"                \n",
+       "[24943] \"213193_x_at\"                 \"211796_s_at\"                \n",
+       "[24945] \"210915_x_at\"                 \"211796_s_at\"                \n",
+       "[24947] \"212371_at\"                   \"211111_at\"                  \n",
+       "[24949] \"211350_s_at\"                 \"211351_at\"                  \n",
+       "[24951] \"215549_x_at\"                 \"214355_x_at\"                \n",
+       "[24953] \"211464_x_at\"                 \"212280_x_at\"                \n",
+       "[24955] \"214245_at\"                   \"210993_s_at\"                \n",
+       "[24957] \"211272_s_at\"                 \"213436_at\"                  \n",
+       "[24959] \"211142_x_at\"                 \"210737_at\"                  \n",
+       "[24961] \"214764_at\"                   \"212790_x_at\"                \n",
+       "[24963] \"210646_x_at\"                 \"211942_x_at\"                \n",
+       "[24965] \"214940_s_at\"                 \"215099_s_at\"                \n",
+       "[24967] \"215098_at\"                   \"213404_s_at\"                \n",
+       "[24969] \"213252_at\"                   \"212364_at\"                  \n",
+       "[24971] \"212365_at\"                   \"215074_at\"                  \n",
+       "[24973] \"213540_at\"                   \"215467_x_at\"                \n",
+       "[24975] \"214585_s_at\"                 \"214716_at\"                  \n",
+       "[24977] \"211080_s_at\"                 \"210816_s_at\"                \n",
+       "[24979] \"213568_at\"                   \"211558_s_at\"                \n",
+       "[24981] \"212457_at\"                   \"212773_s_at\"                \n",
+       "[24983] \"214216_s_at\"                 \"211722_s_at\"                \n",
+       "[24985] \"212770_at\"                   \"212769_at\"                  \n",
+       "[24987] \"215067_x_at\"                 \"212105_s_at\"                \n",
+       "[24989] \"212107_s_at\"                 \"212443_at\"                  \n",
+       "[24991] \"214506_at\"                   \"214731_at\"                  \n",
+       "[24993] \"213081_at\"                   \"214588_s_at\"                \n",
+       "[24995] \"213123_at\"                   \"213272_s_at\"                \n",
+       "[24997] \"211916_s_at\"                 \"214489_at\"                  \n",
+       "[24999] \"211653_x_at\"                 \"211801_x_at\"                \n",
+       "[25001] \"213176_s_at\"                 \"212619_at\"                  \n",
+       "[25003] \"212621_at\"                   \"213573_at\"                  \n",
+       "[25005] \"213507_s_at\"                 \"213803_at\"                  \n",
+       "[25007] \"213574_s_at\"                 \"212803_at\"                  \n",
+       "[25009] \"213543_at\"                   \"214492_at\"                  \n",
+       "[25011] \"210802_s_at\"                 \"210801_at\"                  \n",
+       "[25013] \"215440_s_at\"                 \"214036_at\"                  \n",
+       "[25015] \"211762_s_at\"                 \"211767_at\"                  \n",
+       "[25017] \"211297_s_at\"                 \"212307_s_at\"                \n",
+       "[25019] \"213909_at\"                   \"211762_s_at\"                \n",
+       "[25021] \"210826_x_at\"                 \"211228_s_at\"                \n",
+       "[25023] \"213078_x_at\"                 \"215409_at\"                  \n",
+       "[25025] \"213762_x_at\"                 \"213739_at\"                  \n",
+       "[25027] \"211139_s_at\"                 \"213332_at\"                  \n",
+       "[25029] \"211918_x_at\"                 \"214324_at\"                  \n",
+       "[25031] \"214325_at\"                   \"210853_at\"                  \n",
+       "[25033] \"214255_at\"                   \"214256_at\"                  \n",
+       "[25035] \"211261_at\"                   \"212120_at\"                  \n",
+       "[25037] \"214449_s_at\"                 \"212119_at\"                  \n",
+       "[25039] \"212117_at\"                   \"212122_at\"                  \n",
+       "[25041] \"211570_s_at\"                 \"215470_at\"                  \n",
+       "[25043] \"214069_at\"                   \"215125_s_at\"                \n",
+       "[25045] \"215125_s_at\"                 \"212232_at\"                  \n",
+       "[25047] \"214081_at\"                   \"215125_s_at\"                \n",
+       "[25049] \"213492_at\"                   \"213004_at\"                  \n",
+       "[25051] \"213001_at\"                   \"212497_at\"                  \n",
+       "[25053] \"213845_at\"                   \"211051_s_at\"                \n",
+       "[25055] \"212740_at\"                   \"213737_x_at\"                \n",
+       "[25057] \"210811_s_at\"                 \"214418_at\"                  \n",
+       "[25059] \"213828_x_at\"                 \"211940_x_at\"                \n",
+       "[25061] \"212537_x_at\"                 \"212270_x_at\"                \n",
+       "[25063] \"215489_x_at\"                 \"210905_x_at\"                \n",
+       "[25065] \"214532_x_at\"                 \"213310_at\"                  \n",
+       "[25067] \"212017_at\"                   \"212255_s_at\"                \n",
+       "[25069] \"211137_s_at\"                 \"214080_x_at\"                \n",
+       "[25071] \"213881_x_at\"                 \"211444_at\"                  \n",
+       "[25073] \"215161_at\"                   \"212540_at\"                  \n",
+       "[25075] \"211240_x_at\"                 \"211084_x_at\"                \n",
+       "[25077] \"214051_at\"                   \"214051_at\"                  \n",
+       "[25079] \"210749_x_at\"                 \"211815_s_at\"                \n",
+       "[25081] \"212617_at\"                   \"212618_at\"                  \n",
+       "[25083] \"212620_at\"                   \"211569_s_at\"                \n",
+       "[25085] \"212919_at\"                   \"212331_at\"                  \n",
+       "[25087] \"212332_at\"                   \"213959_s_at\"                \n",
+       "[25089] \"215153_at\"                   \"212703_at\"                  \n",
+       "[25091] \"212701_at\"                   \"211122_s_at\"                \n",
+       "[25093] \"214374_s_at\"                 \"214375_at\"                  \n",
+       "[25095] \"211446_at\"                   \"213688_at\"                  \n",
+       "[25097] \"211985_s_at\"                 \"211984_at\"                  \n",
+       "[25099] \"215075_s_at\"                 \"213476_x_at\"                \n",
+       "[25101] \"214737_x_at\"                 \"212626_x_at\"                \n",
+       "[25103] \"214822_at\"                   \"212302_at\"                  \n",
+       "[25105] \"212301_at\"                   \"212530_at\"                  \n",
+       "[25107] \"211099_s_at\"                 \"210769_at\"                  \n",
+       "[25109] \"215056_at\"                   \"211756_at\"                  \n",
+       "[25111] \"211049_at\"                   \"210971_s_at\"                \n",
+       "[25113] \"210605_s_at\"                 \"215451_s_at\"                \n",
+       "[25115] \"211826_s_at\"                 \"215354_s_at\"                \n",
+       "[25117] \"210505_at\"                   \"213529_at\"                  \n",
+       "[25119] \"213527_s_at\"                 \"211224_s_at\"                \n",
+       "[25121] \"213261_at\"                   \"214835_s_at\"                \n",
+       "[25123] \"212459_x_at\"                 \"212142_at\"                  \n",
+       "[25125] \"212141_at\"                   \"213212_x_at\"                \n",
+       "[25127] \"213474_at\"                   \"211487_x_at\"                \n",
+       "[25129] \"212578_x_at\"                 \"211487_x_at\"                \n",
+       "[25131] \"212578_x_at\"                 \"211487_x_at\"                \n",
+       "[25133] \"212578_x_at\"                 \"212668_at\"                  \n",
+       "[25135] \"212666_at\"                   \"215458_s_at\"                \n",
+       "[25137] \"215180_at\"                   \"212357_at\"                  \n",
+       "[25139] \"215024_at\"                   \"212749_s_at\"                \n",
+       "[25141] \"212743_at\"                   \"214281_s_at\"                \n",
+       "[25143] \"211659_at\"                   \"214503_x_at\"                \n",
+       "[25145] \"214069_at\"                   \"213008_at\"                  \n",
+       "[25147] \"213007_at\"                   \"215471_s_at\"                \n",
+       "[25149] \"214246_x_at\"                 \"214625_s_at\"                \n",
+       "[25151] \"212957_s_at\"                 \"214745_at\"                  \n",
+       "[25153] \"213895_at\"                   \"213614_x_at\"                \n",
+       "[25155] \"213477_x_at\"                 \"213583_x_at\"                \n",
+       "[25157] \"211405_x_at\"                 \"214569_at\"                  \n",
+       "[25159] \"211937_at\"                   \"211938_at\"                  \n",
+       "[25161] \"213233_s_at\"                 \"213117_at\"                  \n",
+       "[25163] \"211338_at\"                   \"214743_at\"                  \n",
+       "[25165] \"212689_s_at\"                 \"214258_x_at\"                \n",
+       "[25167] \"211596_s_at\"                 \"213025_at\"                  \n",
+       "[25169] \"215215_s_at\"                 \"211269_s_at\"                \n",
+       "[25171] \"211463_at\"                   \"215432_at\"                  \n",
+       "[25173] \"213951_s_at\"                 \"211154_at\"                  \n",
+       "[25175] \"211831_s_at\"                 \"211155_s_at\"                \n",
+       "[25177] \"211363_s_at\"                 \"214616_at\"                  \n",
+       "[25179] \"212697_at\"                   \"211363_s_at\"                \n",
+       "[25181] \"211156_at\"                   \"211364_at\"                  \n",
+       "[25183] \"214450_at\"                   \"210543_s_at\"                \n",
+       "[25185] \"212591_at\"                   \"214943_s_at\"                \n",
+       "[25187] \"215327_at\"                   \"213066_at\"                  \n",
+       "[25189] \"212635_at\"                   \"214458_at\"                  \n",
+       "[25191] \"213051_at\"                   \"210506_at\"                  \n",
+       "[25193] \"214519_s_at\"                 \"211753_s_at\"                \n",
+       "[25195] \"211921_x_at\"                 \"213564_x_at\"                \n",
+       "[25197] \"214655_at\"                   \"212634_at\"                  \n",
+       "[25199] \"212633_at\"                   \"212739_s_at\"                \n",
+       "[25201] \"214929_s_at\"                 \"212779_at\"                  \n",
+       "[25203] \"213423_x_at\"                 \"211178_s_at\"                \n",
+       "[25205] \"213357_at\"                   \"211619_s_at\"                \n",
+       "[25207] \"211619_s_at\"                 \"211618_s_at\"                \n",
+       "[25209] \"214339_s_at\"                 \"214219_x_at\"                \n",
+       "[25211] \"212660_at\"                   \"212726_at\"                  \n",
+       "[25213] \"214152_at\"                   \"214151_s_at\"                \n",
+       "[25215] \"214829_at\"                   \"210852_s_at\"                \n",
+       "[25217] \"214542_x_at\"                 \"214542_x_at\"                \n",
+       "[25219] \"214463_x_at\"                 \"214463_x_at\"                \n",
+       "[25221] \"213934_s_at\"                 \"213100_at\"                  \n",
+       "[25223] \"211876_x_at\"                 \"211066_x_at\"                \n",
+       "[25225] \"211880_x_at\"                 \"211879_x_at\"                \n",
+       "[25227] \"211876_x_at\"                 \"211066_x_at\"                \n",
+       "[25229] \"210516_at\"                   \"212533_at\"                  \n",
+       "[25231] \"211879_x_at\"                 \"211876_x_at\"                \n",
+       "[25233] \"211066_x_at\"                 \"211876_x_at\"                \n",
+       "[25235] \"211066_x_at\"                 \"211876_x_at\"                \n",
+       "[25237] \"211066_x_at\"                 \"210635_s_at\"                \n",
+       "[25239] \"210634_at\"                   \"210951_x_at\"                \n",
+       "[25241] \"211876_x_at\"                 \"211066_x_at\"                \n",
+       "[25243] \"211876_x_at\"                 \"211066_x_at\"                \n",
+       "[25245] \"211876_x_at\"                 \"211066_x_at\"                \n",
+       "[25247] \"211876_x_at\"                 \"211066_x_at\"                \n",
+       "[25249] \"211876_x_at\"                 \"211066_x_at\"                \n",
+       "[25251] \"211876_x_at\"                 \"211066_x_at\"                \n",
+       "[25253] \"211876_x_at\"                 \"211066_x_at\"                \n",
+       "[25255] \"210501_x_at\"                 \"212716_s_at\"                \n",
+       "[25257] \"214944_at\"                   \"213407_at\"                  \n",
+       "[25259] \"211530_x_at\"                 \"211528_x_at\"                \n",
+       "[25261] \"211529_x_at\"                 \"210514_x_at\"                \n",
+       "[25263] \"211873_s_at\"                 \"211876_x_at\"                \n",
+       "[25265] \"211066_x_at\"                 \"211875_x_at\"                \n",
+       "[25267] \"211876_x_at\"                 \"211066_x_at\"                \n",
+       "[25269] \"211876_x_at\"                 \"211066_x_at\"                \n",
+       "[25271] \"211900_x_at\"                 \"213958_at\"                  \n",
+       "[25273] \"211893_x_at\"                 \"214631_at\"                  \n",
+       "[25275] \"211877_s_at\"                 \"211876_x_at\"                \n",
+       "[25277] \"211066_x_at\"                 \"214545_s_at\"                \n",
+       "[25279] \"211876_x_at\"                 \"211066_x_at\"                \n",
+       "[25281] \"213737_x_at\"                 \"213737_x_at\"                \n",
+       "[25283] \"214564_s_at\"                 \"214563_at\"                  \n",
+       "[25285] \"211876_x_at\"                 \"211066_x_at\"                \n",
+       "[25287] \"214224_s_at\"                 \"214225_at\"                  \n",
+       "[25289] \"211171_s_at\"                 \"211170_s_at\"                \n",
+       "[25291] \"211171_s_at\"                 \"211170_s_at\"                \n",
+       "[25293] \"211672_s_at\"                 \"212321_at\"                  \n",
+       "[25295] \"212322_at\"                   \"211876_x_at\"                \n",
+       "[25297] \"211066_x_at\"                 \"213347_x_at\"                \n",
+       "[25299] \"211876_x_at\"                 \"211066_x_at\"                \n",
+       "[25301] \"211991_s_at\"                 \"211990_at\"                  \n",
+       "[25303] \"213537_at\"                   \"215193_x_at\"                \n",
+       "[25305] \"212671_s_at\"                 \"213831_at\"                  \n",
+       "[25307] \"213533_at\"                   \"214673_s_at\"                \n",
+       "[25309] \"214449_s_at\"                 \"213166_x_at\"                \n",
+       "[25311] \"212999_x_at\"                 \"212998_x_at\"                \n",
+       "[25313] \"211654_x_at\"                 \"215293_s_at\"                \n",
+       "[25315] \"212842_x_at\"                 \"212591_at\"                  \n",
+       "[25317] \"214943_s_at\"                 \"214942_at\"                  \n",
+       "[25319] \"211807_x_at\"                 \"211876_x_at\"                \n",
+       "[25321] \"211066_x_at\"                 \"213519_s_at\"                \n",
+       "[25323] \"214620_x_at\"                 \"212958_x_at\"                \n",
+       "[25325] \"212215_at\"                   \"212217_at\"                  \n",
+       "[25327] \"212216_at\"                   \"214703_s_at\"                \n",
+       "[25329] \"212690_at\"                   \"214741_at\"                  \n",
+       "[25331] \"211212_s_at\"                 \"211213_at\"                  \n",
+       "[25333] \"212199_at\"                   \"212441_at\"                  \n",
+       "[25335] \"211496_s_at\"                 \"211086_x_at\"                \n",
+       "[25337] \"213328_at\"                   \"213331_s_at\"                \n",
+       "[25339] \"214465_at\"                   \"213381_at\"                  \n",
+       "[25341] \"213737_x_at\"                 \"215103_at\"                  \n",
+       "[25343] \"213737_x_at\"                 \"213737_x_at\"                \n",
+       "[25345] \"210722_at\"                   \"214323_s_at\"                \n",
+       "[25347] \"215559_at\"                   \"214033_at\"                  \n",
+       "[25349] \"214600_at\"                   \"215024_at\"                  \n",
+       "[25351] \"215125_s_at\"                 \"211974_x_at\"                \n",
+       "[25353] \"213511_s_at\"                 \"214975_s_at\"                \n",
+       "[25355] \"214074_s_at\"                 \"214073_at\"                  \n",
+       "[25357] \"212391_x_at\"                 \"212625_at\"                  \n",
+       "[25359] \"212207_at\"                   \"212208_at\"                  \n",
+       "[25361] \"212209_at\"                   \"211544_s_at\"                \n",
+       "[25363] \"211545_at\"                   \"215417_at\"                  \n",
+       "[25365] \"212456_at\"                   \"214040_s_at\"                \n",
+       "[25367] \"210770_s_at\"                 \"214933_at\"                  \n",
+       "[25369] \"213700_s_at\"                 \"210655_s_at\"                \n",
+       "[25371] \"214372_x_at\"                 \"210930_s_at\"                \n",
+       "[25373] \"210676_x_at\"                 \"212842_x_at\"                \n",
+       "[25375] \"213143_at\"                   \"213148_at\"                  \n",
+       "[25377] \"213236_at\"                   \"211140_s_at\"                \n",
+       "[25379] \"212783_at\"                   \"212781_at\"                  \n",
+       "[25381] \"212882_at\"                   \"213618_at\"                  \n",
+       "[25383] \"212824_at\"                   \"213708_s_at\"                \n",
+       "[25385] \"210752_s_at\"                 \"210872_x_at\"                \n",
+       "[25387] \"211067_s_at\"                 \"210861_s_at\"                \n",
+       "[25389] \"212404_s_at\"                 \"212403_at\"                  \n",
+       "[25391] \"213822_s_at\"                 \"211237_s_at\"                \n",
+       "[25393] \"213636_at\"                   \"215030_at\"                  \n",
+       "[25395] \"213461_at\"                   \"210905_x_at\"                \n",
+       "[25397] \"214532_x_at\"                 \"214355_x_at\"                \n",
+       "[25399] \"210529_s_at\"                 \"213461_at\"                  \n",
+       "[25401] \"210962_s_at\"                 \"215483_at\"                  \n",
+       "[25403] \"212878_s_at\"                 \"213656_s_at\"                \n",
+       "[25405] \"212877_at\"                   \"212211_at\"                  \n",
+       "[25407] \"211059_s_at\"                 \"210907_s_at\"                \n",
+       "[25409] \"215420_at\"                   \"214022_s_at\"                \n",
+       "[25411] \"214991_s_at\"                 \"214990_at\"                  \n",
+       "[25413] \"214022_s_at\"                 \"210633_x_at\"                \n",
+       "[25415] \"213287_s_at\"                 \"213953_at\"                  \n",
+       "[25417] \"213448_at\"                   \"210589_s_at\"                \n",
+       "[25419] \"211151_x_at\"                 \"213737_x_at\"                \n",
+       "[25421] \"211021_s_at\"                 \"213650_at\"                  \n",
+       "[25423] \"211151_x_at\"                 \"211238_at\"                  \n",
+       "[25425] \"211239_s_at\"                 \"215184_at\"                  \n",
+       "[25427] \"211766_s_at\"                 \"213620_s_at\"                \n",
+       "[25429] \"214343_s_at\"                 \"212203_x_at\"                \n",
+       "[25431] \"210670_at\"                   \"210956_at\"                  \n",
+       "[25433] \"212532_s_at\"                 \"212529_at\"                  \n",
+       "[25435] \"213454_at\"                   \"212648_at\"                  \n",
+       "[25437] \"211254_x_at\"                 \"210559_s_at\"                \n",
+       "[25439] \"211968_s_at\"                 \"211969_at\"                  \n",
+       "[25441] \"214328_s_at\"                 \"214195_at\"                  \n",
+       "[25443] \"214196_s_at\"                 \"213305_s_at\"                \n",
+       "[25445] \"214083_at\"                   \"214383_x_at\"                \n",
+       "[25447] \"213737_x_at\"                 \"210565_at\"                  \n",
+       "[25449] \"213567_at\"                   \"215152_at\"                  \n",
+       "[25451] \"215185_at\"                   \"212461_at\"                  \n",
+       "[25453] \"213606_s_at\"                 \"211716_x_at\"                \n",
+       "[25455] \"213425_at\"                   \"213198_at\"                  \n",
+       "[25457] \"211774_s_at\"                 \"213632_at\"                  \n",
+       "[25459] \"212143_s_at\"                 \"211015_s_at\"                \n",
+       "[25461] \"211016_x_at\"                 \"212169_at\"                  \n",
+       "[25463] \"215358_x_at\"                 \"214146_s_at\"                \n",
+       "[25465] \"213154_s_at\"                 \"212702_s_at\"                \n",
+       "[25467] \"214974_x_at\"                 \"215101_s_at\"                \n",
+       "[25469] \"214596_at\"                   \"213199_at\"                  \n",
+       "[25471] \"213361_at\"                   \"211044_at\"                  \n",
+       "[25473] \"210846_x_at\"                 \"214361_s_at\"                \n",
+       "[25475] \"214362_at\"                   \"211937_at\"                  \n",
+       "[25477] \"213514_s_at\"                 \"215541_s_at\"                \n",
+       "[25479] \"214523_at\"                   \"213509_x_at\"                \n",
+       "[25481] \"212537_x_at\"                 \"212270_x_at\"                \n",
+       "[25483] \"212288_at\"                   \"213940_s_at\"                \n",
+       "[25485] \"214158_s_at\"                 \"213031_s_at\"                \n",
+       "[25487] \"211939_x_at\"                 \"214800_x_at\"                \n",
+       "[25489] \"210977_s_at\"                 \"213411_at\"                  \n",
+       "[25491] \"210958_s_at\"                 \"213969_x_at\"                \n",
+       "[25493] \"212995_x_at\"                 \"214793_at\"                  \n",
+       "[25495] \"213848_at\"                   \"214449_s_at\"                \n",
+       "[25497] \"212119_at\"                   \"212117_at\"                  \n",
+       "[25499] \"214951_at\"                   \"214687_x_at\"                \n",
+       "[25501] \"215026_x_at\"                 \"211425_x_at\"                \n",
+       "[25503] \"211876_x_at\"                 \"211066_x_at\"                \n",
+       "[25505] \"213363_at\"                   \"212147_at\"                  \n",
+       "[25507] \"214642_x_at\"                 \"214749_s_at\"                \n",
+       "[25509] \"214749_s_at\"                 \"214971_s_at\"                \n",
+       "[25511] \"212953_x_at\"                 \"214315_x_at\"                \n",
+       "[25513] \"212561_at\"                   \"211970_x_at\"                \n",
+       "[25515] \"211995_x_at\"                 \"212363_x_at\"                \n",
+       "[25517] \"213214_x_at\"                 \"211983_x_at\"                \n",
+       "[25519] \"212988_x_at\"                 \"212785_s_at\"                \n",
+       "[25521] \"213391_at\"                   \"211503_s_at\"                \n",
+       "[25523] \"213142_x_at\"                 \"212728_at\"                  \n",
+       "[25525] \"212729_at\"                   \"212727_at\"                  \n",
+       "[25527] \"212133_at\"                   \"212129_at\"                  \n",
+       "[25529] \"215235_at\"                   \"214925_s_at\"                \n",
+       "[25531] \"211882_x_at\"                 \"211465_x_at\"                \n",
+       "[25533] \"211885_x_at\"                 \"212272_at\"                  \n",
+       "[25535] \"212274_at\"                   \"212276_at\"                  \n",
+       "[25537] \"211225_at\"                   \"214876_s_at\"                \n",
+       "[25539] \"214482_at\"                   \"211425_x_at\"                \n",
+       "[25541] \"211381_x_at\"                 \"210884_s_at\"                \n",
+       "[25543] \"210808_s_at\"                 \"215001_s_at\"                \n",
+       "[25545] \"213500_at\"                   \"212622_at\"                  \n",
+       "[25547] \"212623_at\"                   \"213905_x_at\"                \n",
+       "[25549] \"214335_at\"                   \"212888_at\"                  \n",
+       "[25551] \"213229_at\"                   \"211590_x_at\"                \n",
+       "[25553] \"213815_x_at\"                 \"214892_x_at\"                \n",
+       "[25555] \"213265_at\"                   \"211310_at\"                  \n",
+       "[25557] \"212762_s_at\"                 \"212761_at\"                  \n",
+       "[25559] \"212759_s_at\"                 \"212861_at\"                  \n",
+       "[25561] \"212518_at\"                   \"210908_s_at\"                \n",
+       "[25563] \"214269_at\"                   \"213265_at\"                  \n",
+       "[25565] \"210908_s_at\"                 \"214766_s_at\"                \n",
+       "[25567] \"213506_at\"                   \"210908_s_at\"                \n",
+       "[25569] \"214150_x_at\"                 \"211506_s_at\"                \n",
+       "[25571] \"212241_at\"                   \"212243_at\"                  \n",
+       "[25573] \"212244_at\"                   \"210887_s_at\"                \n",
+       "[25575] \"212241_at\"                   \"212243_at\"                  \n",
+       "[25577] \"212027_at\"                   \"212028_at\"                  \n",
+       "[25579] \"212030_at\"                   \"212031_at\"                  \n",
+       "[25581] \"212033_at\"                   \"212514_x_at\"                \n",
+       "[25583] \"212515_s_at\"                 \"213455_at\"                  \n",
+       "[25585] \"214477_at\"                   \"211355_x_at\"                \n",
+       "[25587] \"211356_x_at\"                 \"211354_s_at\"                \n",
+       "[25589] \"214732_at\"                   \"211609_x_at\"                \n",
+       "[25591] \"214109_at\"                   \"212692_s_at\"                \n",
+       "[25593] \"210978_s_at\"                 \"214614_at\"                  \n",
+       "[25595] \"212126_at\"                   \"211167_s_at\"                \n",
+       "[25597] \"212126_at\"                   \"213737_x_at\"                \n",
+       "[25599] \"214544_s_at\"                 \"211546_x_at\"                \n",
+       "[25601] \"211383_s_at\"                 \"213954_at\"                  \n",
+       "[25603] \"212581_x_at\"                 \"213453_x_at\"                \n",
+       "[25605] \"212615_at\"                   \"212616_at\"                  \n",
+       "[25607] \"213893_x_at\"                 \"215412_x_at\"                \n",
+       "[25609] \"213893_x_at\"                 \"214526_x_at\"                \n",
+       "[25611] \"210707_x_at\"                 \"210707_x_at\"                \n",
+       "[25613] \"215412_x_at\"                 \"213893_x_at\"                \n",
+       "[25615] \"214526_x_at\"                 \"210707_x_at\"                \n",
+       "[25617] \"213893_x_at\"                 \"214526_x_at\"                \n",
+       "[25619] \"210707_x_at\"                 \"215412_x_at\"                \n",
+       "[25621] \"210707_x_at\"                 \"215412_x_at\"                \n",
+       "[25623] \"213893_x_at\"                 \"215412_x_at\"                \n",
+       "[25625] \"213893_x_at\"                 \"215412_x_at\"                \n",
+       "[25627] \"213714_at\"                   \"210966_x_at\"                \n",
+       "[25629] \"212193_s_at\"                 \"212137_at\"                  \n",
+       "[25631] \"213922_at\"                   \"214676_x_at\"                \n",
+       "[25633] \"214898_x_at\"                 \"214427_at\"                  \n",
+       "[25635] \"212039_x_at\"                 \"211073_x_at\"                \n",
+       "[25637] \"212945_s_at\"                 \"214808_at\"                  \n",
+       "[25639] \"214639_s_at\"                 \"214457_at\"                  \n",
+       "[25641] \"211324_s_at\"                 \"210676_x_at\"                \n",
+       "[25643] \"212842_x_at\"                 \"215087_at\"                  \n",
+       "[25645] \"213844_at\"                   \"212969_x_at\"                \n",
+       "[25647] \"214651_s_at\"                 \"213823_at\"                  \n",
+       "[25649] \"210973_s_at\"                 \"211535_s_at\"                \n",
+       "[25651] \"215404_x_at\"                 \"215247_at\"                  \n",
+       "[25653] \"215247_at\"                   \"212257_s_at\"                \n",
+       "[25655] \"210891_s_at\"                 \"212612_at\"                  \n",
+       "[25657] \"214218_s_at\"                 \"212178_s_at\"                \n",
+       "[25659] \"213773_x_at\"                 \"213842_x_at\"                \n",
+       "[25661] \"214100_x_at\"                 \"215247_at\"                  \n",
+       "[25663] \"215247_at\"                   \"214345_at\"                  \n",
+       "[25665] \"211800_s_at\"                 \"210922_at\"                  \n",
+       "[25667] \"210715_s_at\"                 \"214626_s_at\"                \n",
+       "[25669] \"211934_x_at\"                 \"210904_s_at\"                \n",
+       "[25671] \"211612_s_at\"                 \"213934_s_at\"                \n",
+       "[25673] \"212347_x_at\"                 \"212346_s_at\"                \n",
+       "[25675] \"210778_s_at\"                 \"215324_at\"                  \n",
+       "[25677] \"210778_s_at\"                 \"214142_at\"                  \n",
+       "[25679] \"211234_x_at\"                 \"211233_x_at\"                \n",
+       "[25681] \"215552_s_at\"                 \"211235_s_at\"                \n",
+       "[25683] \"215551_at\"                   \"212417_at\"                  \n",
+       "[25685] \"212416_at\"                   \"212425_at\"                  \n",
+       "[25687] \"213146_at\"                   \"214449_s_at\"                \n",
+       "[25689] \"212117_at\"                   \"211061_s_at\"                \n",
+       "[25691] \"214819_at\"                   \"210623_at\"                  \n",
+       "[25693] \"212358_at\"                   \"213178_s_at\"                \n",
+       "[25695] \"213177_at\"                   \"213587_s_at\"                \n",
+       "[25697] \"212872_s_at\"                 \"214607_at\"                  \n",
+       "[25699] \"213786_at\"                   \"212955_s_at\"                \n",
+       "[25701] \"214542_x_at\"                 \"214516_at\"                  \n",
+       "[25703] \"211759_x_at\"                 \"213149_at\"                  \n",
+       "[25705] \"211150_s_at\"                 \"212568_s_at\"                \n",
+       "[25707] \"212650_at\"                   \"212653_s_at\"                \n",
+       "[25709] \"213625_at\"                   \"212156_at\"                  \n",
+       "[25711] \"214751_at\"                   \"215218_s_at\"                \n",
+       "[25713] \"215523_at\"                   \"213452_at\"                  \n",
+       "[25715] \"215211_at\"                   \"213365_at\"                  \n",
+       "[25717] \"212204_at\"                   \"212202_s_at\"                \n",
+       "[25719] \"210757_x_at\"                 \"214550_s_at\"                \n",
+       "[25721] \"212318_at\"                   \"212317_at\"                  \n",
+       "[25723] \"213413_at\"                   \"213312_at\"                  \n",
+       "[25725] \"213314_at\"                   \"213312_at\"                  \n",
+       "[25727] \"213314_at\"                   \"212446_s_at\"                \n",
+       "[25729] \"212442_s_at\"                 \"211720_x_at\"                \n",
+       "[25731] \"213552_at\"                   \"211037_s_at\"                \n",
+       "[25733] \"214830_at\"                   \"213978_at\"                  \n",
+       "[25735] \"214317_x_at\"                 \"213596_at\"                  \n",
+       "[25737] \"213160_at\"                   \"210536_s_at\"                \n",
+       "[25739] \"212551_at\"                   \"212554_at\"                  \n",
+       "[25741] \"215122_at\"                   \"213562_s_at\"                \n",
+       "[25743] \"213577_at\"                   \"213285_at\"                  \n",
+       "[25745] \"211684_s_at\"                 \"213794_s_at\"                \n",
+       "[25747] \"212041_at\"                   \"214467_at\"                  \n",
+       "[25749] \"213638_at\"                   \"213212_x_at\"                \n",
+       "[25751] \"213870_at\"                   \"215239_x_at\"                \n",
+       "[25753] \"214786_at\"                   \"213575_at\"                  \n",
+       "[25755] \"213039_at\"                   \"214320_x_at\"                \n",
+       "[25757] \"211295_x_at\"                 \"211763_s_at\"                \n",
+       "[25759] \"212707_s_at\"                 \"212706_at\"                  \n",
+       "[25761] \"214183_s_at\"                 \"211250_s_at\"                \n",
+       "[25763] \"212132_at\"                   \"212131_at\"                  \n",
+       "[25765] \"214710_s_at\"                 \"211340_s_at\"                \n",
+       "[25767] \"210869_s_at\"                 \"214736_s_at\"                \n",
+       "[25769] \"214726_x_at\"                 \"215282_at\"                  \n",
+       "[25771] \"211060_x_at\"                 \"213326_at\"                  \n",
+       "[25773] \"211339_s_at\"                 \"213356_x_at\"                \n",
+       "[25775] \"214280_x_at\"                 \"215463_at\"                  \n",
+       "[25777] \"212873_at\"                   \"210963_s_at\"                \n",
+       "[25779] \"210964_s_at\"                 \"214735_at\"                  \n",
+       "[25781] \"214118_x_at\"                 \"214937_x_at\"                \n",
+       "[25783] \"212535_at\"                   \"214684_at\"                  \n",
+       "[25785] \"211965_at\"                   \"211962_s_at\"                \n",
+       "[25787] \"213277_at\"                   \"210996_s_at\"                \n",
+       "[25789] \"214430_at\"                   \"213277_at\"                  \n",
+       "[25791] \"214555_at\"                   \"212895_s_at\"                \n",
+       "[25793] \"214671_s_at\"                 \"214011_s_at\"                \n",
+       "[25795] \"212730_at\"                   \"215005_at\"                  \n",
+       "[25797] \"212178_s_at\"                 \"213360_s_at\"                \n",
+       "[25799] \"211043_s_at\"                 \"214306_at\"                  \n",
+       "[25801] \"212213_x_at\"                 \"212214_at\"                  \n",
+       "[25803] \"213336_at\"                   \"212106_at\"                  \n",
+       "[25805] \"212108_at\"                   \"212884_x_at\"                \n",
+       "[25807] \"213553_x_at\"                 \"213363_at\"                  \n",
+       "[25809] \"214082_at\"                   \"211136_s_at\"                \n",
+       "[25811] \"212160_at\"                   \"214508_x_at\"                \n",
+       "[25813] \"214642_x_at\"                 \"214384_s_at\"                \n",
+       "[25815] \"211110_s_at\"                 \"210941_at\"                  \n",
+       "[25817] \"213877_x_at\"                 \"211223_at\"                  \n",
+       "[25819] \"214775_at\"                   \"213297_at\"                  \n",
+       "[25821] \"214557_at\"                   \"214084_x_at\"                \n",
+       "[25823] \"212178_s_at\"                 \"213360_s_at\"                \n",
+       "[25825] \"213908_at\"                   \"213212_x_at\"                \n",
+       "[25827] \"210705_s_at\"                 \"212433_x_at\"                \n",
+       "[25829] \"213469_at\"                   \"211052_s_at\"                \n",
+       "[25831] \"211809_x_at\"                 \"211343_s_at\"                \n",
+       "[25833] \"213614_x_at\"                 \"213477_x_at\"                \n",
+       "[25835] \"213318_s_at\"                 \"213908_at\"                  \n",
+       "[25837] \"215133_s_at\"                 \"212350_at\"                  \n",
+       "[25839] \"215561_s_at\"                 \"212433_x_at\"                \n",
+       "[25841] \"212433_x_at\"                 \"211166_at\"                  \n",
+       "[25843] \"210896_s_at\"                 \"211865_s_at\"                \n",
+       "[25845] \"214196_s_at\"                 \"214195_at\"                  \n",
+       "[25847] \"213333_at\"                   \"210719_s_at\"                \n",
+       "[25849] \"211050_x_at\"                 \"212851_at\"                  \n",
+       "[25851] \"212853_at\"                   \"212855_at\"                  \n",
+       "[25853] \"212782_x_at\"                 \"211758_x_at\"                \n",
+       "[25855] \"210910_s_at\"                 \"215116_s_at\"                \n",
+       "[25857] \"212240_s_at\"                 \"212249_at\"                  \n",
+       "[25859] \"212239_at\"                   \"213584_s_at\"                \n",
+       "[25861] \"215421_at\"                   \"211184_s_at\"                \n",
+       "[25863] \"214305_s_at\"                 \"211185_s_at\"                \n",
+       "[25865] \"215478_at\"                   \"211834_s_at\"                \n",
+       "[25867] \"211195_s_at\"                 \"211194_s_at\"                \n",
+       "[25869] \"211193_at\"                   \"214084_x_at\"                \n",
+       "[25871] \"215531_s_at\"                 \"210935_s_at\"                \n",
+       "[25873] \"213916_at\"                   \"215133_s_at\"                \n",
+       "[25875] \"214945_at\"                   \"211166_at\"                  \n",
+       "[25877] \"213916_at\"                   \"212753_at\"                  \n",
+       "[25879] \"211501_s_at\"                 \"212841_s_at\"                \n",
+       "[25881] \"210835_s_at\"                 \"210554_s_at\"                \n",
+       "[25883] \"213610_s_at\"                 \"213610_s_at\"                \n",
+       "[25885] \"214920_at\"                   \"213894_at\"                  \n",
+       "[25887] \"210680_s_at\"                 \"213749_at\"                  \n",
+       "[25889] \"213468_at\"                   \"213724_s_at\"                \n",
+       "[25891] \"214063_s_at\"                 \"214064_at\"                  \n",
+       "[25893] \"214091_s_at\"                 \"213737_x_at\"                \n",
+       "[25895] \"214212_x_at\"                 \"213866_at\"                  \n",
+       "[25897] \"211821_x_at\"                 \"211820_x_at\"                \n",
+       "[25899] \"212488_at\"                   \"212489_at\"                  \n",
+       "[25901] \"212784_at\"                   \"212497_at\"                  \n",
+       "[25903] \"212643_at\"                   \"212644_s_at\"                \n",
+       "[25905] \"214466_at\"                   \"211821_x_at\"                \n",
+       "[25907] \"211820_x_at\"                 \"212644_s_at\"                \n",
+       "[25909] \"213679_at\"                   \"211478_s_at\"                \n",
+       "[25911] \"210734_x_at\"                 \"214108_at\"                  \n",
+       "[25913] \"213034_at\"                   \"210632_s_at\"                \n",
+       "[25915] \"212390_at\"                   \"214468_at\"                  \n",
+       "[25917] \"210975_x_at\"                 \"214114_x_at\"                \n",
+       "[25919] \"211542_x_at\"                 \"213960_at\"                  \n",
+       "[25921] \"215311_at\"                   \"215115_x_at\"                \n",
+       "[25923] \"215025_at\"                   \"213072_at\"                  \n",
+       "[25925] \"213681_at\"                   \"213072_at\"                  \n",
+       "[25927] \"212997_s_at\"                 \"212986_s_at\"                \n",
+       "[25929] \"211337_s_at\"                 \"213041_s_at\"                \n",
+       "[25931] \"211945_s_at\"                 \"213718_at\"                  \n",
+       "[25933] \"212886_at\"                   \"211773_s_at\"                \n",
+       "[25935] \"212737_at\"                   \"213266_at\"                  \n",
+       "[25937] \"210791_s_at\"                 \"211023_at\"                  \n",
+       "[25939] \"213106_at\"                   \"211442_x_at\"                \n",
+       "[25941] \"211441_x_at\"                 \"211440_x_at\"                \n",
+       "[25943] \"212993_at\"                   \"213622_at\"                  \n",
+       "[25945] \"214266_s_at\"                 \"214121_x_at\"                \n",
+       "[25947] \"211676_s_at\"                 \"212069_s_at\"                \n",
+       "[25949] \"212068_s_at\"                 \"212808_at\"                  \n",
+       "[25951] \"212809_at\"                   \"215384_s_at\"                \n",
+       "[25953] \"213464_at\"                   \"213439_x_at\"                \n",
+       "[25955] \"215049_x_at\"                 \"212449_s_at\"                \n",
+       "[25957] \"213237_at\"                   \"213235_at\"                  \n",
+       "[25959] \"211125_x_at\"                 \"210781_x_at\"                \n",
+       "[25961] \"210782_x_at\"                 \"214686_at\"                  \n",
+       "[25963] \"214517_at\"                   \"215130_s_at\"                \n",
+       "[25965] \"213392_at\"                   \"215131_at\"                  \n",
+       "[25967] \"211519_s_at\"                 \"212475_at\"                  \n",
+       "[25969] \"212471_at\"                   \"212474_at\"                  \n",
+       "[25971] \"214076_at\"                   \"214780_s_at\"                \n",
+       "[25973] \"211884_s_at\"                 \"210925_at\"                  \n",
+       "[25975] \"215270_at\"                   \"212334_at\"                  \n",
+       "[25977] \"212335_at\"                   \"212679_at\"                  \n",
+       "[25979] \"212685_s_at\"                 \"212834_at\"                  \n",
+       "[25981] \"213637_at\"                   \"212699_at\"                  \n",
+       "[25983] \"210585_s_at\"                 \"213082_s_at\"                \n",
+       "[25985] \"213082_s_at\"                 \"213083_at\"                  \n",
+       "[25987] \"213228_at\"                   \"213228_at\"                  \n",
+       "[25989] \"214685_at\"                   \"215141_at\"                  \n",
+       "[25991] \"214123_s_at\"                 \"210929_s_at\"                \n",
+       "[25993] \"211348_s_at\"                 \"211347_at\"                  \n",
+       "[25995] \"212087_s_at\"                 \"210521_s_at\"                \n",
+       "[25997] \"212584_at\"                   \"212583_at\"                  \n",
+       "[25999] \"211517_s_at\"                 \"210744_s_at\"                \n",
+       "[26001] \"211516_at\"                   \"212956_at\"                  \n",
+       "[26003] \"212960_at\"                   \"215320_at\"                  \n",
+       "[26005] \"211631_x_at\"                 \"212696_s_at\"                \n",
+       "[26007] \"211662_s_at\"                 \"211475_s_at\"                \n",
+       "[26009] \"211721_s_at\"                 \"212447_at\"                  \n",
+       "[26011] \"214715_x_at\"                 \"212669_at\"                  \n",
+       "[26013] \"212757_s_at\"                 \"214322_at\"                  \n",
+       "[26015] \"211456_x_at\"                 \"212112_s_at\"                \n",
+       "[26017] \"212111_at\"                   \"212042_x_at\"                \n",
+       "[26019] \"210785_s_at\"                 \"210987_x_at\"                \n",
+       "[26021] \"210986_s_at\"                 \"213230_at\"                  \n",
+       "[26023] \"214796_at\"                   \"211240_x_at\"                \n",
+       "[26025] \"212277_at\"                   \"214268_s_at\"                \n",
+       "[26027] \"211829_s_at\"                 \"210640_s_at\"                \n",
+       "[26029] \"213150_at\"                   \"213147_at\"                  \n",
+       "[26031] \"211469_s_at\"                 \"213271_s_at\"                \n",
+       "[26033] \"213267_at\"                   \"212910_at\"                  \n",
+       "[26035] \"212088_at\"                   \"214515_at\"                  \n",
+       "[26037] \"212145_at\"                   \"213555_at\"                  \n",
+       "[26039] \"213141_at\"                   \"210569_s_at\"                \n",
+       "[26041] \"214377_s_at\"                 \"214377_s_at\"                \n",
+       "[26043] \"210764_s_at\"                 \"210944_s_at\"                \n",
+       "[26045] \"214475_x_at\"                 \"211890_x_at\"                \n",
+       "[26047] \"214690_at\"                   \"215321_at\"                  \n",
+       "[26049] \"213652_at\"                   \"212548_s_at\"                \n",
+       "[26051] \"212546_s_at\"                 \"212310_at\"                  \n",
+       "[26053] \"212305_s_at\"                 \"213915_at\"                  \n",
+       "[26055] \"210944_s_at\"                 \"214475_x_at\"                \n",
+       "[26057] \"211890_x_at\"                 \"213801_x_at\"                \n",
+       "[26059] \"211422_at\"                   \"214947_at\"                  \n",
+       "[26061] \"214206_at\"                   \"212814_at\"                  \n",
+       "[26063] \"210684_s_at\"                 \"212552_at\"                  \n",
+       "[26065] \"214921_at\"                   \"214870_x_at\"                \n",
+       "[26067] \"211135_x_at\"                 \"210784_x_at\"                \n",
+       "[26069] \"211133_x_at\"                 \"211135_x_at\"                \n",
+       "[26071] \"210784_x_at\"                 \"211133_x_at\"                \n",
+       "[26073] \"211135_x_at\"                 \"210784_x_at\"                \n",
+       "[26075] \"211133_x_at\"                 \"211135_x_at\"                \n",
+       "[26077] \"210784_x_at\"                 \"211133_x_at\"                \n",
+       "[26079] \"211381_x_at\"                 \"210884_s_at\"                \n",
+       "[26081] \"211381_x_at\"                 \"210884_s_at\"                \n",
+       "[26083] \"212670_at\"                   \"212776_s_at\"                \n",
+       "[26085] \"213946_s_at\"                 \"214928_at\"                  \n",
+       "[26087] \"212775_at\"                   \"215302_at\"                  \n",
+       "[26089] \"211819_s_at\"                 \"211705_s_at\"                \n",
+       "[26091] \"213664_at\"                   \"210644_s_at\"                \n",
+       "[26093] \"211000_s_at\"                 \"212196_at\"                  \n",
+       "[26095] \"212195_at\"                   \"211920_at\"                  \n",
+       "[26097] \"214901_at\"                   \"214839_at\"                  \n",
+       "[26099] \"212099_at\"                   \"214870_x_at\"                \n",
+       "[26101] \"212042_x_at\"                 \"213032_at\"                  \n",
+       "[26103] \"213029_at\"                   \"213033_s_at\"                \n",
+       "[26105] \"211467_s_at\"                 \"211466_at\"                  \n",
+       "[26107] \"212904_at\"                   \"212747_at\"                  \n",
+       "[26109] \"210934_at\"                   \"210950_s_at\"                \n",
+       "[26111] \"212260_at\"                   \"212261_at\"                  \n",
+       "[26113] \"213359_at\"                   \"213778_x_at\"                \n",
+       "[26115] \"213892_s_at\"                 \"212454_x_at\"                \n",
+       "[26117] \"211600_at\"                   \"213275_x_at\"                \n",
+       "[26119] \"215530_at\"                   \"213108_at\"                  \n",
+       "[26121] \"211322_s_at\"                 \"210862_s_at\"                \n",
+       "[26123] \"213545_x_at\"                 \"210648_x_at\"                \n",
+       "[26125] \"214428_x_at\"                 \"214428_x_at\"                \n",
+       "[26127] \"212022_s_at\"                 \"212020_s_at\"                \n",
+       "[26129] \"212023_s_at\"                 \"212021_s_at\"                \n",
+       "[26131] \"211088_s_at\"                 \"212503_s_at\"                \n",
+       "[26133] \"212504_at\"                   \"211728_s_at\"                \n",
+       "[26135] \"213788_s_at\"                 \"210874_s_at\"                \n",
+       "[26137] \"210619_s_at\"                 \"212547_at\"                  \n",
+       "[26139] \"213185_at\"                   \"210927_x_at\"                \n",
+       "[26141] \"215134_at\"                   \"211427_s_at\"                \n",
+       "[26143] \"211427_s_at\"                 \"213758_at\"                  \n",
+       "[26145] \"215411_s_at\"                 \"210683_at\"                  \n",
+       "[26147] \"213828_x_at\"                 \"211940_x_at\"                \n",
+       "[26149] \"211225_at\"                   \"211039_at\"                  \n",
+       "[26151] \"211005_at\"                   \"213420_at\"                  \n",
+       "[26153] \"215193_x_at\"                 \"212879_x_at\"                \n",
+       "[26155] \"212881_at\"                   \"212913_at\"                  \n",
+       "[26157] \"213457_at\"                   \"211979_at\"                  \n",
+       "[26159] \"211977_at\"                   \"213303_x_at\"                \n",
+       "[26161] \"213299_at\"                   \"214812_s_at\"                \n",
+       "[26163] \"213490_s_at\"                 \"213646_x_at\"                \n",
+       "[26165] \"211058_x_at\"                 \"212639_x_at\"                \n",
+       "[26167] \"213227_at\"                   \"214535_s_at\"                \n",
+       "[26169] \"214454_at\"                   \"212838_at\"                  \n",
+       "[26171] \"210678_s_at\"                 \"210657_s_at\"                \n",
+       "[26173] \"214469_at\"                   \"212368_at\"                  \n",
+       "[26175] \"212366_at\"                   \"210892_s_at\"                \n",
+       "[26177] \"210891_s_at\"                 \"213418_at\"                  \n",
+       "[26179] \"213626_at\"                   \"214939_x_at\"                \n",
+       "[26181] \"213418_at\"                   \"211708_s_at\"                \n",
+       "[26183] \"211162_x_at\"                 \"210905_x_at\"                \n",
+       "[26185] \"214532_x_at\"                 \"212509_s_at\"                \n",
+       "[26187] \"213182_x_at\"                 \"213348_at\"                  \n",
+       "[26189] \"214870_x_at\"                 \"211996_s_at\"                \n",
+       "[26191] \"214035_x_at\"                 \"215002_at\"                  \n",
+       "[26193] \"215123_at\"                   \"212837_at\"                  \n",
+       "[26195] \"212835_at\"                   \"212502_at\"                  \n",
+       "[26197] \"212500_at\"                   \"210739_x_at\"                \n",
+       "[26199] \"211494_s_at\"                 \"210738_s_at\"                \n",
+       "[26201] \"213074_at\"                   \"212542_s_at\"                \n",
+       "[26203] \"213578_at\"                   \"213433_at\"                  \n",
+       "[26205] \"212693_at\"                   \"214794_at\"                  \n",
+       "[26207] \"214511_x_at\"                 \"211711_s_at\"                \n",
+       "[26209] \"212852_s_at\"                 \"212839_s_at\"                \n",
+       "[26211] \"213027_at\"                   \"212848_s_at\"                \n",
+       "[26213] \"214248_s_at\"                 \"212082_s_at\"                \n",
+       "[26215] \"214002_at\"                   \"211401_s_at\"                \n",
+       "[26217] \"213009_s_at\"                 \"210504_at\"                  \n",
+       "[26219] \"212792_at\"                   \"215433_at\"                  \n",
+       "[26221] \"212721_at\"                   \"211921_x_at\"                \n",
+       "[26223] \"214870_x_at\"                 \"211996_s_at\"                \n",
+       "[26225] \"215002_at\"                   \"211495_x_at\"                \n",
+       "[26227] \"214499_s_at\"                 \"213598_at\"                  \n",
+       "[26229] \"211672_s_at\"                 \"215135_at\"                  \n",
+       "[26231] \"212968_at\"                   \"214791_at\"                  \n",
+       "[26233] \"212218_s_at\"                 \"210571_s_at\"                \n",
+       "[26235] \"211282_x_at\"                 \"210847_x_at\"                \n",
+       "[26237] \"211841_s_at\"                 \"213827_at\"                  \n",
+       "[26239] \"215256_x_at\"                 \"215452_x_at\"                \n",
+       "[26241] \"212464_s_at\"                 \"210495_x_at\"                \n",
+       "[26243] \"211719_x_at\"                 \"214701_s_at\"                \n",
+       "[26245] \"214702_at\"                   \"212184_s_at\"                \n",
+       "[26247] \"211675_s_at\"                 \"212018_s_at\"                \n",
+       "[26249] \"213750_at\"                   \"212019_at\"                  \n",
+       "[26251] \"215549_x_at\"                 \"214355_x_at\"                \n",
+       "[26253] \"212782_x_at\"                 \"215438_x_at\"                \n",
+       "[26255] \"213712_at\"                   \"215549_x_at\"                \n",
+       "[26257] \"214355_x_at\"                 \"213878_at\"                  \n",
+       "[26259] \"211232_x_at\"                 \"212918_at\"                  \n",
+       "[26261] \"210568_s_at\"                 \"212917_x_at\"                \n",
+       "[26263] \"215266_at\"                   \"213265_at\"                  \n",
+       "[26265] \"213265_at\"                   \"213265_at\"                  \n",
+       "[26267] \"211558_s_at\"                 \"214865_at\"                  \n",
+       "[26269] \"212674_s_at\"                 \"211996_s_at\"                \n",
+       "[26271] \"211385_x_at\"                 \"215299_x_at\"                \n",
+       "[26273] \"215299_x_at\"                 \"212525_s_at\"                \n",
+       "[26275] \"215299_x_at\"                 \"211973_at\"                  \n",
+       "[26277] \"212608_s_at\"                 \"211976_at\"                  \n",
+       "[26279] \"212605_s_at\"                 \"211623_s_at\"                \n",
+       "[26281] \"212674_s_at\"                 \"212641_at\"                  \n",
+       "[26283] \"212642_s_at\"                 \"212505_s_at\"                \n",
+       "[26285] \"213647_at\"                   \"215350_at\"                  \n",
+       "[26287] \"214140_at\"                   \"214862_x_at\"                \n",
+       "[26289] \"210790_s_at\"                 \"211973_at\"                  \n",
+       "[26291] \"211542_x_at\"                 \"212608_s_at\"                \n",
+       "[26293] \"212605_s_at\"                 \"211542_x_at\"                \n",
+       "[26295] \"213028_at\"                   \"214403_x_at\"                \n",
+       "[26297] \"213441_x_at\"                 \"214404_x_at\"                \n",
+       "[26299] \"213817_at\"                   \"214857_at\"                  \n",
+       "[26301] \"215127_s_at\"                 \"214622_at\"                  \n",
+       "[26303] \"213248_at\"                   \"214823_at\"                  \n",
+       "[26305] \"214823_at\"                   \"215223_s_at\"                \n",
+       "[26307] \"215078_at\"                   \"214809_at\"                  \n",
+       "[26309] \"214870_x_at\"                 \"211996_s_at\"                \n",
+       "[26311] \"215123_at\"                   \"215002_at\"                  \n",
+       "[26313] \"214035_x_at\"                 \"214247_s_at\"                \n",
+       "[26315] \"214870_x_at\"                 \"214226_at\"                  \n",
+       "[26317] \"214601_at\"                   \"214576_at\"                  \n",
+       "[26319] \"213715_s_at\"                 \"214217_at\"                  \n",
+       "[26321] \"210783_x_at\"                 \"211709_s_at\"                \n",
+       "[26323] \"210716_s_at\"                 \"214870_x_at\"                \n",
+       "[26325] \"215002_at\"                   \"210732_s_at\"                \n",
+       "[26327] \"210731_s_at\"                 \"210519_s_at\"                \n",
+       "[26329] \"212225_at\"                   \"211956_s_at\"                \n",
+       "[26331] \"212130_x_at\"                 \"212227_x_at\"                \n",
+       "[26333] \"215092_s_at\"                 \"211557_x_at\"                \n",
+       "[26335] \"211752_s_at\"                 \"214622_at\"                  \n",
+       "[26337] \"214124_x_at\"                 \"215498_s_at\"                \n",
+       "[26339] \"211434_s_at\"                 \"213023_at\"                  \n",
+       "[26341] \"213022_s_at\"                 \"211144_x_at\"                \n",
+       "[26343] \"211833_s_at\"                 \"215345_x_at\"                \n",
+       "[26345] \"211144_x_at\"                 \"211144_x_at\"                \n",
+       "[26347] \"213216_at\"                   \"215509_s_at\"                \n",
+       "[26349] \"215508_at\"                   \"214347_s_at\"                \n",
+       "[26351] \"215016_x_at\"                 \"212254_s_at\"                \n",
+       "[26353] \"212253_x_at\"                 \"212982_at\"                  \n",
+       "[26355] \"212372_at\"                   \"213067_at\"                  \n",
+       "[26357] \"210829_s_at\"                 \"214068_at\"                  \n",
+       "[26359] \"213070_at\"                   \"211992_at\"                  \n",
+       "[26361] \"211994_at\"                   \"211993_at\"                  \n",
+       "[26363] \"214781_at\"                   \"214966_at\"                  \n",
+       "[26365] \"213913_s_at\"                 \"215186_at\"                  \n",
+       "[26367] \"213912_at\"                   \"210530_s_at\"                \n",
+       "[26369] \"210531_at\"                   \"211742_s_at\"                \n",
+       "[26371] \"215514_at\"                   \"212189_s_at\"                \n",
+       "[26373] \"211289_x_at\"                 \"212401_s_at\"                \n",
+       "[26375] \"215329_s_at\"                 \"215319_at\"                  \n",
+       "[26377] \"212786_at\"                   \"212557_at\"                  \n",
+       "[26379] \"215012_at\"                   \"213157_s_at\"                \n",
+       "[26381] \"213155_at\"                   \"211553_x_at\"                \n",
+       "[26383] \"211554_s_at\"                 \"211289_x_at\"                \n",
+       "[26385] \"212401_s_at\"                 \"215329_s_at\"                \n",
+       "[26387] \"212484_at\"                   \"213607_x_at\"                \n",
+       "[26389] \"215159_s_at\"                 \"213013_at\"                  \n",
+       "[26391] \"213294_at\"                   \"212484_at\"                  \n",
+       "[26393] \"215402_at\"                   \"214500_at\"                  \n",
+       "[26395] \"214501_s_at\"                 \"213889_at\"                  \n",
+       "[26397] \"214893_x_at\"                 \"214363_s_at\"                \n",
+       "[26399] \"215031_x_at\"                 \"213667_at\"                  \n",
+       "[26401] \"212275_s_at\"                 \"213797_at\"                  \n",
+       "[26403] \"215050_x_at\"                 \"214682_at\"                  \n",
+       "[26405] \"215165_x_at\"                 \"211087_x_at\"                \n",
+       "[26407] \"211561_x_at\"                 \"212980_at\"                  \n",
+       "[26409] \"213801_x_at\"                 \"214700_x_at\"                \n",
+       "[26411] \"214872_at\"                   \"212303_x_at\"                \n",
+       "[26413] \"211048_s_at\"                 \"211737_x_at\"                \n",
+       "[26415] \"212361_s_at\"                 \"212362_at\"                  \n",
+       "[26417] \"213828_x_at\"                 \"211940_x_at\"                \n",
+       "[26419] \"213138_at\"                   \"211771_s_at\"                \n",
+       "[26421] \"211660_at\"                   \"211804_s_at\"                \n",
+       "[26423] \"214251_s_at\"                 \"214250_at\"                  \n",
+       "[26425] \"212038_s_at\"                 \"214085_x_at\"                \n",
+       "[26427] \"212606_at\"                   \"212602_at\"                  \n",
+       "[26429] \"212598_at\"                   \"212236_x_at\"                \n",
+       "[26431] \"212599_at\"                   \"215386_at\"                  \n",
+       "[26433] \"212486_s_at\"                 \"211694_at\"                  \n",
+       "[26435] \"211899_s_at\"                 \"213077_at\"                  \n",
+       "[26437] \"210984_x_at\"                 \"211550_at\"                  \n",
+       "[26439] \"211607_x_at\"                 \"214817_at\"                  \n",
+       "[26441] \"213086_s_at\"                 \"213860_x_at\"                \n",
+       "[26443] \"213086_s_at\"                 \"213860_x_at\"                \n",
+       "[26445] \"212790_x_at\"                 \"210646_x_at\"                \n",
+       "[26447] \"212444_at\"                   \"215112_x_at\"                \n",
+       "[26449] \"215232_at\"                   \"214400_at\"                  \n",
+       "[26451] \"214572_s_at\"                 \"211780_x_at\"                \n",
+       "[26453] \"212906_at\"                   \"211728_s_at\"                \n",
+       "[26455] \"212081_x_at\"                 \"214201_x_at\"                \n",
+       "[26457] \"214999_s_at\"                 \"210939_s_at\"                \n",
+       "[26459] \"210940_s_at\"                 \"210965_x_at\"                \n",
+       "[26461] \"214017_s_at\"                 \"214479_at\"                  \n",
+       "[26463] \"212468_at\"                   \"212470_at\"                  \n",
+       "[26465] \"212667_at\"                   \"211034_s_at\"                \n",
+       "[26467] \"215313_x_at\"                 \"213932_x_at\"                \n",
+       "[26469] \"215267_s_at\"                 \"215273_s_at\"                \n",
+       "[26471] \"211221_at\"                   \"212943_at\"                  \n",
+       "[26473] \"211323_s_at\"                 \"213270_at\"                  \n",
+       "[26475] \"213881_x_at\"                 \"211520_s_at\"                \n",
+       "[26477] \"212241_at\"                   \"213885_at\"                  \n",
+       "[26479] \"213884_s_at\"                 \"212455_at\"                  \n",
+       "[26481] \"214579_at\"                   \"211112_at\"                  \n",
+       "[26483] \"211480_s_at\"                 \"211481_at\"                  \n",
+       "[26485] \"215325_x_at\"                 \"212134_at\"                  \n",
+       "[26487] \"214415_at\"                   \"214911_s_at\"                \n",
+       "[26489] \"212102_s_at\"                 \"212300_at\"                  \n",
+       "[26491] \"214033_at\"                   \"210854_x_at\"                \n",
+       "[26493] \"213843_x_at\"                 \"210886_x_at\"                \n",
+       "[26495] \"214984_at\"                   \"213050_at\"                  \n",
+       "[26497] \"213043_s_at\"                 \"211172_x_at\"                \n",
+       "[26499] \"215326_at\"                   \"214984_at\"                  \n",
+       "[26501] \"211102_s_at\"                 \"211101_x_at\"                \n",
+       "[26503] \"211100_x_at\"                 \"210513_s_at\"                \n",
+       "[26505] \"211527_x_at\"                 \"212171_x_at\"                \n",
+       "[26507] \"210512_s_at\"                 \"212064_x_at\"                \n",
+       "[26509] \"211843_x_at\"                 \"210660_at\"                  \n",
+       "[26511] \"211336_x_at\"                 \"214987_at\"                  \n",
+       "[26513] \"213517_at\"                   \"213264_at\"                  \n",
+       "[26515] \"213263_s_at\"                 \"213517_at\"                  \n",
+       "[26517] \"210916_s_at\"                 \"212014_x_at\"                \n",
+       "[26519] \"212063_at\"                   \"214438_at\"                  \n",
+       "[26521] \"214438_at\"                   \"214561_at\"                  \n",
+       "[26523] \"210890_x_at\"                 \"210890_x_at\"                \n",
+       "[26525] \"210534_s_at\"                 \"210535_at\"                  \n",
+       "[26527] \"211389_x_at\"                 \"211687_x_at\"                \n",
+       "[26529] \"212138_at\"                   \"213983_s_at\"                \n",
+       "[26531] \"212140_at\"                   \"213984_at\"                  \n",
+       "[26533] \"211898_s_at\"                 \"210753_s_at\"                \n",
+       "[26535] \"211688_x_at\"                 \"213589_s_at\"                \n",
+       "[26537] \"215055_at\"                   \"213589_s_at\"                \n",
+       "[26539] \"215055_at\"                   \"211816_x_at\"                \n",
+       "[26541] \"211307_s_at\"                 \"211306_s_at\"                \n",
+       "[26543] \"214597_at\"                   \"214184_at\"                  \n",
+       "[26545] \"211536_x_at\"                 \"211537_x_at\"                \n",
+       "[26547] \"212559_at\"                   \"212555_at\"                  \n",
+       "[26549] \"214721_x_at\"                 \"212432_at\"                  \n",
+       "[26551] \"212434_at\"                   \"215123_at\"                  \n",
+       "[26553] \"211104_s_at\"                 \"211103_at\"                  \n",
+       "[26555] \"210854_x_at\"                 \"213843_x_at\"                \n",
+       "[26557] \"215356_at\"                   \"214870_x_at\"                \n",
+       "[26559] \"214870_x_at\"                 \"214870_x_at\"                \n",
+       "[26561] \"214035_x_at\"                 \"215002_at\"                  \n",
+       "[26563] \"211255_x_at\"                 \"215158_s_at\"                \n",
+       "[26565] \"214033_at\"                   \"213053_at\"                  \n",
+       "[26567] \"213054_at\"                   \"214870_x_at\"                \n",
+       "[26569] \"215002_at\"                   \"214870_x_at\"                \n",
+       "[26571] \"215002_at\"                   \"215493_x_at\"                \n",
+       "[26573] \"211256_x_at\"                 \"214184_at\"                  \n",
+       "[26575] \"211840_s_at\"                 \"210837_s_at\"                \n",
+       "[26577] \"210836_x_at\"                 \"212053_at\"                  \n",
+       "[26579] \"214455_at\"                   \"211373_s_at\"                \n",
+       "[26581] \"211030_s_at\"                 \"215352_at\"                  \n",
+       "[26583] \"215510_at\"                   \"213060_s_at\"                \n",
+       "[26585] \"213035_at\"                   \"214624_at\"                  \n",
+       "[26587] \"214239_x_at\"                 \"213551_x_at\"                \n",
+       "[26589] \"213240_s_at\"                 \"212306_at\"                  \n",
+       "[26591] \"212308_at\"                   \"212309_at\"                  \n",
+       "[26593] \"213062_at\"                   \"213061_s_at\"                \n",
+       "[26595] \"210828_s_at\"                 \"214144_at\"                  \n",
+       "[26597] \"214144_at\"                   \"211045_s_at\"                \n",
+       "[26599] \"211046_at\"                   \"214575_s_at\"                \n",
+       "[26601] \"211280_s_at\"                 \"214870_x_at\"                \n",
+       "[26603] \"214035_x_at\"                 \"215002_at\"                  \n",
+       "[26605] \"214870_x_at\"                 \"214035_x_at\"                \n",
+       "[26607] \"214870_x_at\"                 \"214035_x_at\"                \n",
+       "[26609] \"215002_at\"                   \"214682_at\"                  \n",
+       "[26611] \"211280_s_at\"                 \"212275_s_at\"                \n",
+       "[26613] \"215053_at\"                   \"214908_s_at\"                \n",
+       "[26615] \"214890_s_at\"                 \"214889_at\"                  \n",
+       "[26617] \"213451_x_at\"                 \"213120_at\"                  \n",
+       "[26619] \"211470_s_at\"                 \"211838_x_at\"                \n",
+       "[26621] \"210674_s_at\"                 \"215423_at\"                  \n",
+       "[26623] \"212498_at\"                   \"215512_at\"                  \n",
+       "[26625] \"211020_at\"                   \"214870_x_at\"                \n",
+       "[26627] \"211996_s_at\"                 \"215002_at\"                  \n",
+       "[26629] \"214047_s_at\"                 \"214048_at\"                  \n",
+       "[26631] \"212235_at\"                   \"215310_at\"                  \n",
+       "[26633] \"212525_s_at\"                 \"213592_at\"                  \n",
+       "[26635] \"212782_x_at\"                 \"210909_x_at\"                \n",
+       "[26637] \"210909_x_at\"                 \"214754_at\"                  \n",
+       "[26639] \"212782_x_at\"                 \"212782_x_at\"                \n",
+       "[26641] \"211266_s_at\"                 \"214818_at\"                  \n",
+       "[26643] \"211108_s_at\"                 \"211109_at\"                  \n",
+       "[26645] \"213470_s_at\"                 \"213472_at\"                  \n",
+       "[26647] \"212328_at\"                   \"212327_at\"                  \n",
+       "[26649] \"212325_at\"                   \"212047_s_at\"                \n",
+       "[26651] \"211790_s_at\"                 \"211123_at\"                  \n",
+       "[26653] \"211790_s_at\"                 \"215472_at\"                  \n",
+       "[26655] \"214204_at\"                   \"213151_s_at\"                \n",
+       "[26657] \"215359_x_at\"                 \"212263_at\"                  \n",
+       "[26659] \"212265_at\"                   \"214543_x_at\"                \n",
+       "[26661] \"212262_at\"                   \"214541_s_at\"                \n",
+       "[26663] \"212636_at\"                   \"211050_x_at\"                \n",
+       "[26665] \"214456_x_at\"                 \"212948_at\"                  \n",
+       "[26667] \"211106_at\"                   \"212707_s_at\"                \n",
+       "[26669] \"212724_at\"                   \"212610_at\"                  \n",
+       "[26671] \"213773_x_at\"                 \"213842_x_at\"                \n",
+       "[26673] \"213460_x_at\"                 \"213221_s_at\"                \n",
+       "[26675] \"214100_x_at\"                 \"213670_x_at\"                \n",
+       "[26677] \"213773_x_at\"                 \"213842_x_at\"                \n",
+       "[26679] \"213460_x_at\"                 \"210695_s_at\"                \n",
+       "[26681] \"213112_s_at\"                 \"211245_x_at\"                \n",
+       "[26683] \"211242_x_at\"                 \"214084_x_at\"                \n",
+       "[26685] \"214084_x_at\"                 \"212231_at\"                  \n",
+       "[26687] \"212229_s_at\"                 \"214891_at\"                  \n",
+       "[26689] \"212782_x_at\"                 \"212813_at\"                  \n",
+       "[26691] \"212169_at\"                   \"214473_x_at\"                \n",
+       "[26693] \"210707_x_at\"                 \"211750_x_at\"                \n",
+       "[26695] \"212639_x_at\"                 \"213875_x_at\"                \n",
+       "[26697] \"211296_x_at\"                 \"213191_at\"                  \n",
+       "[26699] \"212773_s_at\"                 \"212773_s_at\"                \n",
+       "[26701] \"211866_x_at\"                 \"211863_x_at\"                \n",
+       "[26703] \"211326_x_at\"                 \"210864_x_at\"                \n",
+       "[26705] \"211327_x_at\"                 \"211332_x_at\"                \n",
+       "[26707] \"211329_x_at\"                 \"214647_s_at\"                \n",
+       "[26709] \"211330_s_at\"                 \"211331_x_at\"                \n",
+       "[26711] \"213038_at\"                   \"210858_x_at\"                \n",
+       "[26713] \"212672_at\"                   \"214100_x_at\"                \n",
+       "[26715] \"213670_x_at\"                 \"213773_x_at\"                \n",
+       "[26717] \"213842_x_at\"                 \"215192_at\"                  \n",
+       "[26719] \"215192_at\"                   \"214088_s_at\"                \n",
+       "[26721] \"214038_at\"                   \"213202_at\"                  \n",
+       "[26723] \"214756_x_at\"                 \"212976_at\"                  \n",
+       "[26725] \"212978_at\"                   \"214407_x_at\"                \n",
+       "[26727] \"214098_at\"                   \"210693_at\"                  \n",
+       "[26729] \"214859_at\"                   \"211682_x_at\"                \n",
+       "[26731] \"210878_s_at\"                 \"211682_x_at\"                \n",
+       "[26733] \"211682_x_at\"                 \"213307_at\"                  \n",
+       "[26735] \"213308_at\"                   \"213980_s_at\"                \n",
+       "[26737] \"212863_x_at\"                 \"213798_s_at\"                \n",
+       "[26739] \"212789_at\"                   \"214209_s_at\"                \n",
+       "[26741] \"214007_s_at\"                 \"210523_at\"                  \n",
+       "[26743] \"211615_s_at\"                 \"211971_s_at\"                \n",
+       "[26745] \"215240_at\"                   \"214879_x_at\"                \n",
+       "[26747] \"211165_x_at\"                 \"210651_s_at\"                \n",
+       "[26749] \"212159_x_at\"                 \"211779_x_at\"                \n",
+       "[26751] \"212161_at\"                   \"213208_at\"                  \n",
+       "[26753] \"212077_at\"                   \"215198_s_at\"                \n",
+       "[26755] \"215199_at\"                   \"213485_s_at\"                \n",
+       "[26757] \"211098_x_at\"                 \"212673_at\"                  \n",
+       "[26759] \"211289_x_at\"                 \"212401_s_at\"                \n",
+       "[26761] \"215329_s_at\"                 \"214907_at\"                  \n",
+       "[26763] \"214261_s_at\"                 \"215331_at\"                  \n",
+       "[26765] \"213416_at\"                   \"214845_s_at\"                \n",
+       "[26767] \"214870_x_at\"                 \"211996_s_at\"                \n",
+       "[26769] \"215002_at\"                   \"215123_at\"                  \n",
+       "[26771] \"211848_s_at\"                 \"213195_at\"                  \n",
+       "[26773] \"211657_at\"                   \"210789_x_at\"                \n",
+       "[26775] \"212973_at\"                   \"214359_s_at\"                \n",
+       "[26777] \"214777_at\"                   \"213414_s_at\"                \n",
+       "[26779] \"212440_at\"                   \"212438_at\"                  \n",
+       "[26781] \"212438_at\"                   \"213676_at\"                  \n",
+       "[26783] \"213678_at\"                   \"214432_at\"                  \n",
+       "[26785] \"213955_at\"                   \"214432_at\"                  \n",
+       "[26787] \"213971_s_at\"                 \"212287_at\"                  \n",
+       "[26789] \"211026_s_at\"                 \"214155_s_at\"                \n",
+       "[26791] \"212714_at\"                   \"214763_at\"                  \n",
+       "[26793] \"211050_x_at\"                 \"213119_at\"                  \n",
+       "[26795] \"211707_s_at\"                 \"214931_s_at\"                \n",
+       "[26797] \"214992_s_at\"                 \"211597_s_at\"                \n",
+       "[26799] \"211525_s_at\"                 \"213669_at\"                  \n",
+       "[26801] \"215133_s_at\"                 \"214945_at\"                  \n",
+       "[26803] \"211166_at\"                   \"211915_s_at\"                \n",
+       "[26805] \"213085_s_at\"                 \"212010_s_at\"                \n",
+       "[26807] \"213548_s_at\"                 \"213554_s_at\"                \n",
+       "[26809] \"211832_s_at\"                 \"213419_at\"                  \n",
+       "[26811] \"212970_at\"                   \"212972_x_at\"                \n",
+       "[26813] \"212985_at\"                   \"215459_at\"                  \n",
+       "[26815] \"215464_s_at\"                 \"213194_at\"                  \n",
+       "[26817] \"215464_s_at\"                 \"215286_s_at\"                \n",
+       "[26819] \"215550_at\"                   \"214604_at\"                  \n",
+       "[26821] \"212912_at\"                   \"214913_at\"                  \n",
+       "[26823] \"211298_s_at\"                 \"214837_at\"                  \n",
+       "[26825] \"214314_s_at\"                 \"213869_x_at\"                \n",
+       "[26827] \"215339_at\"                   \"215338_s_at\"                \n",
+       "[26829] \"214584_x_at\"                 \"213510_x_at\"                \n",
+       "[26831] \"213144_at\"                   \"213206_at\"                  \n",
+       "[26833] \"213180_s_at\"                 \"213207_s_at\"                \n",
+       "[26835] \"213344_s_at\"                 \"211419_s_at\"                \n",
+       "[26837] \"213385_at\"                   \"210604_at\"                  \n",
+       "[26839] \"212242_at\"                   \"212391_x_at\"                \n",
+       "[26841] \"212329_at\"                   \"214868_at\"                  \n",
+       "[26843] \"212391_x_at\"                 \"212345_s_at\"                \n",
+       "[26845] \"212007_at\"                   \"212008_at\"                  \n",
+       "[26847] \"212006_at\"                   \"215124_at\"                  \n",
+       "[26849] \"214729_at\"                   \"212285_s_at\"                \n",
+       "[26851] \"212283_at\"                   \"214641_at\"                  \n",
+       "[26853] \"210866_s_at\"                 \"210867_at\"                  \n",
+       "[26855] \"213076_at\"                   \"213926_s_at\"                \n",
+       "[26857] \"210641_at\"                   \"215080_s_at\"                \n",
+       "[26859] \"214059_at\"                   \"214453_s_at\"                \n",
+       "[26861] \"215015_at\"                   \"212139_at\"                  \n",
+       "[26863] \"211720_x_at\"                 \"214167_s_at\"                \n",
+       "[26865] \"211972_x_at\"                 \"214602_at\"                  \n",
+       "[26867] \"211823_s_at\"                 \"211373_s_at\"                \n",
+       "[26869] \"214296_x_at\"                 \"213801_x_at\"                \n",
+       "[26871] \"211739_x_at\"                 \"214816_x_at\"                \n",
+       "[26873] \"211508_s_at\"                 \"211151_x_at\"                \n",
+       "[26875] \"215502_at\"                   \"211818_s_at\"                \n",
+       "[26877] \"214027_x_at\"                 \"212907_at\"                  \n",
+       "[26879] \"212493_s_at\"                 \"215038_s_at\"                \n",
+       "[26881] \"210507_s_at\"                 \"212707_s_at\"                \n",
+       "[26883] \"212706_at\"                   \"212707_s_at\"                \n",
+       "[26885] \"212706_at\"                   \"213556_at\"                  \n",
+       "[26887] \"212544_at\"                   \"213704_at\"                  \n",
+       "[26889] \"214699_x_at\"                 \"210533_at\"                  \n",
+       "[26891] \"213390_at\"                   \"212782_x_at\"                \n",
+       "[26893] \"212707_s_at\"                 \"212706_at\"                  \n",
+       "[26895] \"211483_x_at\"                 \"213276_at\"                  \n",
+       "[26897] \"211692_s_at\"                 \"210974_s_at\"                \n",
+       "[26899] \"211903_s_at\"                 \"211739_x_at\"                \n",
+       "[26901] \"215058_at\"                   \"213127_s_at\"                \n",
+       "[26903] \"213126_at\"                   \"213696_s_at\"                \n",
+       "[26905] \"213168_at\"                   \"212360_at\"                  \n",
+       "[26907] \"214958_s_at\"                 \"215125_s_at\"                \n",
+       "[26909] \"215125_s_at\"                 \"215125_s_at\"                \n",
+       "[26911] \"212549_at\"                   \"212550_at\"                  \n",
+       "[26913] \"215125_s_at\"                 \"211645_x_at\"                \n",
+       "[26915] \"211644_x_at\"                 \"214768_x_at\"                \n",
+       "[26917] \"215176_x_at\"                 \"215176_x_at\"                \n",
+       "[26919] \"214768_x_at\"                 \"212607_at\"                  \n",
+       "[26921] \"212609_s_at\"                 \"211645_x_at\"                \n",
+       "[26923] \"211176_s_at\"                 \"211453_s_at\"                \n",
+       "[26925] \"210682_at\"                   \"212709_at\"                  \n",
+       "[26927] \"214962_s_at\"                 \"214963_at\"                  \n",
+       "[26929] \"210690_at\"                   \"211141_s_at\"                \n",
+       "[26931] \"210954_s_at\"                 \"210953_at\"                  \n",
+       "[26933] \"211534_x_at\"                 \"212766_s_at\"                \n",
+       "[26935] \"210683_at\"                   \"211822_s_at\"                \n",
+       "[26937] \"211824_x_at\"                 \"214004_s_at\"                \n",
+       "[26939] \"212399_s_at\"                 \"215225_s_at\"                \n",
+       "[26941] \"210587_at\"                   \"214220_s_at\"                \n",
+       "[26943] \"214221_at\"                   \"214707_x_at\"                \n",
+       "[26945] \"210652_s_at\"                 \"210891_s_at\"                \n",
+       "[26947] \"213931_at\"                   \"213893_x_at\"                \n",
+       "[26949] \"215412_x_at\"                 \"214100_x_at\"                \n",
+       "[26951] \"213670_x_at\"                 \"213773_x_at\"                \n",
+       "[26953] \"213842_x_at\"                 \"213460_x_at\"                \n",
+       "[26955] \"213288_at\"                   \"214473_x_at\"                \n",
+       "[26957] \"210707_x_at\"                 \"212162_at\"                  \n",
+       "[26959] \"212163_at\"                   \"214932_at\"                  \n",
+       "[26961] \"212297_at\"                   \"211495_x_at\"                \n",
+       "[26963] \"210881_s_at\"                 \"210881_s_at\"                \n",
+       "[26965] \"211196_at\"                   \"214349_at\"                  \n",
+       "[26967] \"214349_at\"                   \"214349_at\"                  \n",
+       "[26969] \"214349_at\"                   \"214349_at\"                  \n",
+       "[26971] \"214349_at\"                   \"214349_at\"                  \n",
+       "[26973] \"214349_at\"                   \"214349_at\"                  \n",
+       "[26975] \"214349_at\"                   \"214349_at\"                  \n",
+       "[26977] \"214349_at\"                   \"214349_at\"                  \n",
+       "[26979] \"214349_at\"                   \"214349_at\"                  \n",
+       "[26981] \"214349_at\"                   \"214349_at\"                  \n",
+       "[26983] \"214349_at\"                   \"214349_at\"                  \n",
+       "[26985] \"214349_at\"                   \"214349_at\"                  \n",
+       "[26987] \"214349_at\"                   \"214349_at\"                  \n",
+       "[26989] \"214349_at\"                   \"214349_at\"                  \n",
+       "[26991] \"214349_at\"                   \"214349_at\"                  \n",
+       "[26993] \"214349_at\"                   \"214349_at\"                  \n",
+       "[26995] \"214349_at\"                   \"214349_at\"                  \n",
+       "[26997] \"214349_at\"                   \"214349_at\"                  \n",
+       "[26999] \"214349_at\"                   \"214349_at\"                  \n",
+       "[27001] \"214349_at\"                   \"214349_at\"                  \n",
+       "[27003] \"214349_at\"                   \"214349_at\"                  \n",
+       "[27005] \"214349_at\"                   \"214349_at\"                  \n",
+       "[27007] \"214349_at\"                   \"214349_at\"                  \n",
+       "[27009] \"214349_at\"                   \"214349_at\"                  \n",
+       "[27011] \"214349_at\"                   \"214349_at\"                  \n",
+       "[27013] \"214349_at\"                   \"214349_at\"                  \n",
+       "[27015] \"214349_at\"                   \"214349_at\"                  \n",
+       "[27017] \"214349_at\"                   \"214349_at\"                  \n",
+       "[27019] \"214349_at\"                   \"214349_at\"                  \n",
+       "[27021] \"214349_at\"                   \"214349_at\"                  \n",
+       "[27023] \"214349_at\"                   \"214349_at\"                  \n",
+       "[27025] \"214349_at\"                   \"214349_at\"                  \n",
+       "[27027] \"214349_at\"                   \"214349_at\"                  \n",
+       "[27029] \"214349_at\"                   \"214349_at\"                  \n",
+       "[27031] \"214349_at\"                   \"214349_at\"                  \n",
+       "[27033] \"214349_at\"                   \"214349_at\"                  \n",
+       "[27035] \"214349_at\"                   \"214349_at\"                  \n",
+       "[27037] \"214349_at\"                   \"214349_at\"                  \n",
+       "[27039] \"214349_at\"                   \"214349_at\"                  \n",
+       "[27041] \"214349_at\"                   \"214349_at\"                  \n",
+       "[27043] \"214349_at\"                   \"214349_at\"                  \n",
+       "[27045] \"214526_x_at\"                 \"214756_x_at\"                \n",
+       "[27047] \"213893_x_at\"                 \"215410_at\"                  \n",
+       "[27049] \"212717_at\"                   \"212700_x_at\"                \n",
+       "[27051] \"215539_at\"                   \"212954_at\"                  \n",
+       "[27053] \"211542_x_at\"                 \"214185_at\"                  \n",
+       "[27055] \"210599_at\"                   \"212101_at\"                  \n",
+       "[27057] \"212103_at\"                   \"212102_s_at\"                \n",
+       "[27059] \"211711_s_at\"                 \"215068_s_at\"                \n",
+       "[27061] \"211802_x_at\"                 \"211315_s_at\"                \n",
+       "[27063] \"211314_at\"                   \"213539_at\"                  \n",
+       "[27065] \"212082_s_at\"                 \"215019_x_at\"                \n",
+       "[27067] \"215368_at\"                   \"212078_s_at\"                \n",
+       "[27069] \"212079_s_at\"                 \"211368_s_at\"                \n",
+       "[27071] \"211366_x_at\"                 \"211367_s_at\"                \n",
+       "[27073] \"213080_x_at\"                 \"210895_s_at\"                \n",
+       "[27075] \"213689_x_at\"                 \"213080_x_at\"                \n",
+       "[27077] \"211384_s_at\"                 \"210577_at\"                  \n",
+       "[27079] \"213741_s_at\"                 \"210627_s_at\"                \n",
+       "[27081] \"211372_s_at\"                 \"213424_at\"                  \n",
+       "[27083] \"211532_x_at\"                 \"214007_s_at\"                \n",
+       "[27085] \"214310_s_at\"                 \"214311_at\"                  \n",
+       "[27087] \"211069_s_at\"                 \"213740_s_at\"                \n",
+       "[27089] \"213865_at\"                   \"215132_at\"                  \n",
+       "[27091] \"214234_s_at\"                 \"214235_at\"                  \n",
+       "[27093] \"213335_s_at\"                 \"213355_at\"                  \n",
+       "[27095] \"210942_s_at\"                 \"214670_at\"                  \n",
+       "[27097] \"214900_at\"                   \"214856_at\"                  \n",
+       "[27099] \"212684_at\"                   \"213234_at\"                  \n",
+       "[27101] \"213045_at\"                   \"215189_at\"                  \n",
+       "[27103] \"213711_at\"                   \"213680_at\"                  \n",
+       "[27105] \"214580_x_at\"                 \"211168_s_at\"                \n",
+       "[27107] \"214683_s_at\"                 \"214018_at\"                  \n",
+       "[27109] \"211741_x_at\"                 \"212984_at\"                  \n",
+       "[27111] \"210776_x_at\"                 \"213811_x_at\"                \n",
+       "[27113] \"213730_x_at\"                 \"215260_s_at\"                \n",
+       "[27115] \"212825_at\"                   \"214511_x_at\"                \n",
+       "[27117] \"213010_at\"                   \"210983_s_at\"                \n",
+       "[27119] \"215455_at\"                   \"213486_at\"                  \n",
+       "[27121] \"212481_s_at\"                 \"213816_s_at\"                \n",
+       "[27123] \"213807_x_at\"                 \"211599_x_at\"                \n",
+       "[27125] \"213677_s_at\"                 \"214723_x_at\"                \n",
+       "[27127] \"211845_at\"                   \"211846_s_at\"                \n",
+       "[27129] \"210564_x_at\"                 \"211316_x_at\"                \n",
+       "[27131] \"211317_s_at\"                 \"211862_x_at\"                \n",
+       "[27133] \"214486_x_at\"                 \"210563_x_at\"                \n",
+       "[27135] \"214618_at\"                   \"213553_x_at\"                \n",
+       "[27137] \"213084_x_at\"                 \"210786_s_at\"                \n",
+       "[27139] \"211825_s_at\"                 \"214833_at\"                  \n",
+       "[27141] \"215127_s_at\"                 \"215231_at\"                  \n",
+       "[27143] \"213244_at\"                   \"212316_at\"                  \n",
+       "[27145] \"213947_s_at\"                 \"212315_s_at\"                \n",
+       "[27147] \"213152_s_at\"                 \"214789_x_at\"                \n",
+       "[27149] \"212573_at\"                   \"212570_at\"                  \n",
+       "[27151] \"215117_at\"                   \"210586_x_at\"                \n",
+       "[27153] \"211070_x_at\"                 \"212537_x_at\"                \n",
+       "[27155] \"212270_x_at\"                 \"215249_at\"                  \n",
+       "[27157] \"213687_s_at\"                 \"215280_s_at\"                \n",
+       "[27159] \"213368_x_at\"                 \"214014_at\"                  \n",
+       "[27161] \"214014_at\"                   \"214657_s_at\"                \n",
+       "[27163] \"214657_s_at\"                 \"213184_at\"                  \n",
+       "[27165] \"214148_at\"                   \"215104_at\"                  \n",
+       "[27167] \"215104_at\"                   \"211004_s_at\"                \n",
+       "[27169] \"214444_s_at\"                 \"212662_at\"                  \n",
+       "[27171] \"214443_at\"                   \"214444_s_at\"                \n",
+       "[27173] \"214875_x_at\"                 \"211404_s_at\"                \n",
+       "[27175] \"210797_s_at\"                 \"211334_at\"                  \n",
+       "[27177] \"213887_s_at\"                 \"215399_s_at\"                \n",
+       "[27179] \"210823_s_at\"                 \"212032_s_at\"                \n",
+       "[27181] \"212042_x_at\"                 \"213293_s_at\"                \n",
+       "[27183] \"213125_at\"                   \"212780_at\"                  \n",
+       "[27185] \"212777_at\"                   \"214448_x_at\"                \n",
+       "[27187] \"214062_x_at\"                 \"212128_s_at\"                \n",
+       "[27189] \"211375_s_at\"                 \"213615_at\"                  \n",
+       "[27191] \"214968_at\"                   \"215045_at\"                  \n",
+       "[27193] \"214657_s_at\"                 \"212375_at\"                  \n",
+       "[27195] \"212376_s_at\"                 \"211594_s_at\"                \n",
+       "[27197] \"213863_s_at\"                 \"211975_at\"                  \n",
+       "[27199] \"215090_x_at\"                 \"214107_x_at\"                \n",
+       "[27201] \"214180_at\"                   \"213588_x_at\"                \n",
+       "[27203] \"213438_at\"                   \"214799_at\"                  \n",
+       "[27205] \"211047_x_at\"                 \"213761_at\"                  \n",
+       "[27207] \"214552_s_at\"                 \"215125_s_at\"                \n",
+       "[27209] \"214214_s_at\"                 \"214214_s_at\"                \n",
+       "[27211] \"213378_s_at\"                 \"211931_s_at\"                \n",
+       "[27213] \"214192_at\"                   \"215011_at\"                  \n",
+       "[27215] \"213834_at\"                   \"214797_s_at\"                \n",
+       "[27217] \"214270_s_at\"                 \"214924_s_at\"                \n",
+       "[27219] \"212512_s_at\"                 \"215047_at\"                  \n",
+       "[27221] \"211577_s_at\"                 \"214030_at\"                  \n",
+       "[27223] \"210549_s_at\"                 \"210548_at\"                  \n",
+       "[27225] \"213189_at\"                   \"213188_s_at\"                \n",
+       "[27227] \"213201_s_at\"                 \"212429_s_at\"                \n",
+       "[27229] \"212200_at\"                   \"212201_at\"                  \n",
+       "[27231] \"214959_s_at\"                 \"214960_at\"                  \n",
+       "[27233] \"211325_x_at\"                 \"211050_x_at\"                \n",
+       "[27235] \"212510_at\"                   \"211025_x_at\"                \n",
+       "[27237] \"213735_s_at\"                 \"212930_at\"                  \n",
+       "[27239] \"214772_at\"                   \"214723_x_at\"                \n",
+       "[27241] \"214806_at\"                   \"213703_at\"                  \n",
+       "[27243] \"211203_s_at\"                 \"211712_s_at\"                \n",
+       "[27245] \"210988_s_at\"                 \"214918_at\"                  \n",
+       "[27247] \"211625_s_at\"                 \"214559_at\"                  \n",
+       "[27249] \"214871_x_at\"                 \"213378_s_at\"                \n",
+       "[27251] \"213349_at\"                   \"213352_at\"                  \n",
+       "[27253] \"213351_s_at\"                 \"211071_s_at\"                \n",
+       "[27255] \"212683_at\"                   \"214170_x_at\"                \n",
+       "[27257] \"211138_s_at\"                 \"211602_s_at\"                \n",
+       "[27259] \"214723_x_at\"                 \"213801_x_at\"                \n",
+       "[27261] \"213835_x_at\"                 \"212932_at\"                  \n",
+       "[27263] \"213530_at\"                   \"213531_s_at\"                \n",
+       "[27265] \"211942_x_at\"                 \"214470_at\"                  \n",
+       "[27267] \"215363_x_at\"                 \"211303_x_at\"                \n",
+       "[27269] \"215363_x_at\"                 \"211303_x_at\"                \n",
+       "[27271] \"213847_at\"                   \"215288_at\"                  \n",
+       "[27273] \"213434_at\"                   \"214381_at\"                  \n",
+       "[27275] \"212024_x_at\"                 \"212025_s_at\"                \n",
+       "[27277] \"214605_x_at\"                 \"214299_at\"                  \n",
+       "[27279] \"214300_s_at\"                 \"213377_x_at\"                \n",
+       "[27281] \"210608_s_at\"                 \"211107_s_at\"                \n",
+       "[27283] \"213748_at\"                   \"214015_at\"                  \n",
+       "[27285] \"213513_x_at\"                 \"210728_s_at\"                \n",
+       "[27287] \"210727_at\"                   \"214135_at\"                  \n",
+       "[27289] \"214811_at\"                   \"210718_s_at\"                \n",
+       "[27291] \"213496_at\"                   \"212383_at\"                  \n",
+       "[27293] \"212553_at\"                   \"214728_x_at\"                \n",
+       "[27295] \"212520_s_at\"                 \"213720_s_at\"                \n",
+       "[27297] \"214360_at\"                   \"214447_at\"                  \n",
+       "[27299] \"215205_x_at\"                 \"213380_x_at\"                \n",
+       "[27301] \"212463_at\"                   \"211738_x_at\"                \n",
+       "[27303] \"211738_x_at\"                 \"210881_s_at\"                \n",
+       "[27305] \"210881_s_at\"                 \"212040_at\"                  \n",
+       "[27307] \"212043_at\"                   \"213329_at\"                  \n",
+       "[27309] \"211987_at\"                   \"214398_s_at\"                \n",
+       "[27311] \"214734_at\"                   \"213929_at\"                  \n",
+       "[27313] \"212338_at\"                   \"210838_s_at\"                \n",
+       "[27315] \"213982_s_at\"                 \"215342_s_at\"                \n",
+       "[27317] \"214354_x_at\"                 \"213936_x_at\"                \n",
+       "[27319] \"210976_s_at\"                 \"213571_s_at\"                \n",
+       "[27321] \"213570_at\"                   \"212220_at\"                  \n",
+       "[27323] \"212222_at\"                   \"212219_at\"                  \n",
+       "[27325] \"211325_x_at\"                 \"210515_at\"                  \n",
+       "[27327] \"212333_at\"                   \"213705_at\"                  \n",
+       "[27329] \"214006_s_at\"                 \"214005_at\"                  \n",
+       "[27331] \"214881_s_at\"                 \"214915_at\"                  \n",
+       "[27333] \"212369_at\"                   \"211248_s_at\"                \n",
+       "[27335] \"211592_s_at\"                 \"211592_s_at\"                \n",
+       "[27337] \"215393_s_at\"                 \"211032_at\"                  \n",
+       "[27339] \"214352_s_at\"                 \"213501_at\"                  \n",
+       "[27341] \"215177_s_at\"                 \"212800_at\"                  \n",
+       "[27343] \"214441_at\"                   \"212799_at\"                  \n",
+       "[27345] \"214427_at\"                   \"210528_at\"                  \n",
+       "[27347] \"212476_at\"                   \"212687_at\"                  \n",
+       "[27349] \"212348_s_at\"                 \"214253_s_at\"                \n",
+       "[27351] \"215295_at\"                   \"210597_x_at\"                \n",
+       "[27353] \"211531_x_at\"                 \"210597_x_at\"                \n",
+       "[27355] \"211531_x_at\"                 \"213661_at\"                  \n",
+       "[27357] \"214599_at\"                   \"211677_x_at\"                \n",
+       "[27359] \"213948_x_at\"                 \"211734_s_at\"                \n",
+       "[27361] \"213611_at\"                   \"213612_x_at\"                \n",
+       "[27363] \"215434_x_at\"                 \"210827_s_at\"                \n",
+       "[27365] \"210827_s_at\"                 \"211578_s_at\"                \n",
+       "[27367] \"213510_x_at\"                 \"213971_s_at\"                \n",
+       "[27369] \"214488_at\"                   \"214487_s_at\"                \n",
+       "[27371] \"213706_at\"                   \"214340_at\"                  \n",
+       "[27373] \"214340_at\"                   \"215174_at\"                  \n",
+       "[27375] \"211726_s_at\"                 \"215090_x_at\"                \n",
+       "[27377] \"214107_x_at\"                 \"215090_x_at\"                \n",
+       "[27379] \"214107_x_at\"                 \"213734_at\"                  \n",
+       "[27381] \"212700_x_at\"                 \"212700_x_at\"                \n",
+       "[27383] \"212801_at\"                   \"214480_at\"                  \n",
+       "[27385] \"212259_s_at\"                 \"214177_s_at\"                \n",
+       "[27387] \"214853_s_at\"                 \"215288_at\"                  \n",
+       "[27389] \"210793_s_at\"                 \"210967_x_at\"                \n",
+       "[27391] \"213153_at\"                   \"210679_x_at\"                \n",
+       "[27393] \"211789_s_at\"                 \"212429_s_at\"                \n",
+       "[27395] \"210620_s_at\"                 \"212541_at\"                  \n",
+       "[27397] \"213510_x_at\"                 \"213522_s_at\"                \n",
+       "[27399] \"212694_s_at\"                 \"212868_x_at\"                \n",
+       "[27401] \"212473_s_at\"                 \"212472_at\"                  \n",
+       "[27403] \"212871_at\"                   \"214154_s_at\"                \n",
+       "[27405] \"214111_at\"                   \"212481_s_at\"                \n",
+       "[27407] \"213938_at\"                   \"212687_at\"                  \n",
+       "[27409] \"211603_s_at\"                 \"214513_s_at\"                \n",
+       "[27411] \"210718_s_at\"                 \"210718_s_at\"                \n",
+       "[27413] \"214619_at\"                   \"211897_s_at\"                \n",
+       "[27415] \"214619_at\"                   \"211897_s_at\"                \n",
+       "[27417] \"210718_s_at\"                 \"210718_s_at\"                \n",
+       "[27419] \"210718_s_at\"                 \"212260_at\"                  \n",
+       "[27421] \"212822_at\"                   \"213069_at\"                  \n",
+       "[27423] \"212832_s_at\"                 \"214693_x_at\"                \n",
+       "[27425] \"213612_x_at\"                 \"215434_x_at\"                \n",
+       "[27427] \"214722_at\"                   \"212850_s_at\"                \n",
+       "[27429] \"212511_at\"                   \"212506_at\"                  \n",
+       "[27431] \"215236_s_at\"                 \"213459_at\"                  \n",
+       "[27433] \"211299_s_at\"                 \"211057_at\"                  \n",
+       "[27435] \"210888_s_at\"                 \"211760_s_at\"                \n",
+       "[27437] \"213480_at\"                   \"211959_at\"                  \n",
+       "[27439] \"211958_at\"                   \"214722_at\"                  \n",
+       "[27441] \"214188_at\"                   \"210656_at\"                  \n",
+       "[27443] \"211856_x_at\"                 \"211861_x_at\"                \n",
+       "[27445] \"213851_at\"                   \"213851_at\"                  \n",
+       "[27447] \"213373_s_at\"                 \"211082_x_at\"                \n",
+       "[27449] \"211888_x_at\"                 \"210708_x_at\"                \n",
+       "[27451] \"210955_at\"                   \"211919_s_at\"                \n",
+       "[27453] \"211222_s_at\"                 \"211604_x_at\"                \n",
+       "[27455] \"213612_x_at\"                 \"215434_x_at\"                \n",
+       "[27457] \"212687_at\"                   \"212860_at\"                  \n",
+       "[27459] \"210676_x_at\"                 \"212842_x_at\"                \n",
+       "[27461] \"211324_s_at\"                 \"210574_s_at\"                \n",
+       "[27463] \"213158_at\"                   \"213156_at\"                  \n",
+       "[27465] \"213644_at\"                   \"211152_s_at\"                \n",
+       "[27467] \"211217_s_at\"                 \"211121_s_at\"                \n",
+       "[27469] \"213594_x_at\"                 \"211905_s_at\"                \n",
+       "[27471] \"214292_at\"                   \"212078_s_at\"                \n",
+       "[27473] \"212076_at\"                   \"212080_at\"                  \n",
+       "[27475] \"212079_s_at\"                 \"212405_s_at\"                \n",
+       "[27477] \"212407_at\"                   \"212659_s_at\"                \n",
+       "[27479] \"212657_s_at\"                 \"215242_at\"                  \n",
+       "[27481] \"214357_at\"                   \"214805_at\"                  \n",
+       "[27483] \"211787_s_at\"                 \"211200_s_at\"                \n",
+       "[27485] \"213971_s_at\"                 \"212516_at\"                  \n",
+       "[27487] \"211094_s_at\"                 \"211095_at\"                  \n",
+       "[27489] \"211914_x_at\"                 \"212678_at\"                  \n",
+       "[27491] \"212676_at\"                   \"210631_at\"                  \n",
+       "[27493] \"210649_s_at\"                 \"212152_x_at\"                \n",
+       "[27495] \"214674_at\"                   \"212854_x_at\"                \n",
+       "[27497] \"215434_x_at\"                 \"211050_x_at\"                \n",
+       "[27499] \"214143_x_at\"                 \"211947_s_at\"                \n",
+       "[27501] \"211944_at\"                   \"211946_s_at\"                \n",
+       "[27503] \"214055_x_at\"                 \"211948_x_at\"                \n",
+       "[27505] \"212567_s_at\"                 \"212566_at\"                  \n",
+       "[27507] \"214826_at\"                   \"211702_s_at\"                \n",
+       "[27509] \"213510_x_at\"                 \"213612_x_at\"                \n",
+       "[27511] \"213374_x_at\"                 \"214211_at\"                  \n",
+       "[27513] \"212627_s_at\"                 \"213648_at\"                  \n",
+       "[27515] \"213084_x_at\"                 \"213417_at\"                  \n",
+       "[27517] \"210756_s_at\"                 \"212377_s_at\"                \n",
+       "[27519] \"211586_s_at\"                 \"211284_s_at\"                \n",
+       "[27521] \"214493_s_at\"                 \"214705_at\"                  \n",
+       "[27523] \"212487_at\"                   \"212485_at\"                  \n",
+       "[27525] \"213769_at\"                   \"213767_at\"                  \n",
+       "[27527] \"213342_at\"                   \"210538_s_at\"                \n",
+       "[27529] \"211851_x_at\"                 \"211967_at\"                  \n",
+       "[27531] \"211593_s_at\"                 \"214952_at\"                  \n",
+       "[27533] \"212843_at\"                   \"215482_s_at\"                \n",
+       "[27535] \"210662_at\"                   \"210663_s_at\"                \n",
+       "[27537] \"214938_x_at\"                 \"211624_s_at\"                \n",
+       "[27539] \"211231_x_at\"                 \"213510_x_at\"                \n",
+       "[27541] \"213801_x_at\"                 \"213801_x_at\"                \n",
+       "[27543] \"214077_x_at\"                 \"213467_at\"                  \n",
+       "[27545] \"214393_at\"                   \"213016_at\"                  \n",
+       "[27547] \"213015_at\"                   \"213713_s_at\"                \n",
+       "[27549] \"213557_at\"                   \"214696_at\"                  \n",
+       "[27551] \"213693_s_at\"                 \"211695_x_at\"                \n",
+       "[27553] \"213300_at\"                   \"211578_s_at\"                \n",
+       "[27555] \"212983_at\"                   \"211578_s_at\"                \n",
+       "[27557] \"213280_at\"                   \"215113_s_at\"                \n",
+       "[27559] \"215114_at\"                   \"211075_s_at\"                \n",
+       "[27561] \"213055_at\"                   \"213857_s_at\"                \n",
+       "[27563] \"214589_at\"                   \"210554_s_at\"                \n",
+       "[27565] \"215506_s_at\"                 \"213604_at\"                  \n",
+       "[27567] \"214840_at\"                   \"213052_at\"                  \n",
+       "[27569] \"214330_at\"                   \"213057_at\"                  \n",
+       "[27571] \"214290_s_at\"                 \"214662_at\"                  \n",
+       "[27573] \"214290_s_at\"                 \"212245_at\"                  \n",
+       "[27575] \"212246_at\"                   \"215151_at\"                  \n",
+       "[27577] \"215499_at\"                   \"215498_s_at\"                \n",
+       "[27579] \"215518_at\"                   \"215090_x_at\"                \n",
+       "[27581] \"214107_x_at\"                 \"214744_s_at\"                \n",
+       "[27583] \"215224_at\"                   \"215224_at\"                  \n",
+       "[27585] \"215389_s_at\"                 \"213518_at\"                  \n",
+       "[27587] \"213785_at\"                   \"212885_at\"                  \n",
+       "[27589] \"214032_at\"                   \"214113_s_at\"                \n",
+       "[27591] \"213852_at\"                   \"214179_s_at\"                \n",
+       "[27593] \"210694_s_at\"                 \"213729_at\"                  \n",
+       "[27595] \"214941_s_at\"                 \"215272_at\"                  \n",
+       "[27597] \"210609_s_at\"                 \"210545_at\"                  \n",
+       "[27599] \"212735_at\"                   \"212733_at\"                  \n",
+       "[27601] \"214229_at\"                   \"212536_at\"                  \n",
+       "[27603] \"213612_x_at\"                 \"212071_s_at\"                \n",
+       "[27605] \"213547_at\"                   \"211300_s_at\"                \n",
+       "[27607] \"210968_s_at\"                 \"211509_s_at\"                \n",
+       "[27609] \"214629_x_at\"                 \"212519_at\"                  \n",
+       "[27611] \"214464_at\"                   \"213595_s_at\"                \n",
+       "[27613] \"215296_at\"                   \"214858_at\"                  \n",
+       "[27615] \"214882_s_at\"                 \"214792_x_at\"                \n",
+       "[27617] \"215222_x_at\"                 \"214894_x_at\"                \n",
+       "[27619] \"213024_at\"                   \"214460_at\"                  \n",
+       "[27621] \"214117_s_at\"                 \"214116_at\"                  \n",
+       "[27623] \"212426_s_at\"                 \"213699_s_at\"                \n",
+       "[27625] \"213532_at\"                   \"210560_at\"                  \n",
+       "[27627] \"214954_at\"                   \"214436_at\"                  \n",
+       "[27629] \"212190_at\"                   \"211580_s_at\"                \n",
+       "[27631] \"211580_s_at\"                 \"212478_at\"                  \n",
+       "[27633] \"212482_at\"                   \"212479_s_at\"                \n",
+       "[27635] \"215332_s_at\"                 \"213205_s_at\"                \n",
+       "[27637] \"214172_x_at\"                 \"211932_at\"                  \n",
+       "[27639] \"211933_s_at\"                 \"211929_at\"                  \n",
+       "[27641] \"211931_s_at\"                 \"211930_at\"                  \n",
+       "[27643] \"213925_at\"                   \"211395_x_at\"                \n",
+       "[27645] \"210992_x_at\"                 \"211396_at\"                  \n",
+       "[27647] \"213969_x_at\"                 \"213435_at\"                  \n",
+       "[27649] \"212752_at\"                   \"212165_at\"                  \n",
+       "[27651] \"212164_at\"                   \"211950_at\"                  \n",
+       "[27653] \"211950_at\"                   \"210723_x_at\"                \n",
+       "[27655] \"214259_s_at\"                 \"214259_s_at\"                \n",
+       "[27657] \"214978_s_at\"                 \"214197_s_at\"                \n",
+       "[27659] \"210586_x_at\"                 \"212394_at\"                  \n",
+       "[27661] \"212396_s_at\"                 \"212395_s_at\"                \n",
+       "[27663] \"211377_x_at\"                 \"211963_s_at\"                \n",
+       "[27665] \"212084_at\"                   \"212083_at\"                  \n",
+       "[27667] \"213628_at\"                   \"211302_s_at\"                \n",
+       "[27669] \"212810_s_at\"                 \"212811_x_at\"                \n",
+       "[27671] \"213440_at\"                   \"211662_s_at\"                \n",
+       "[27673] \"211755_s_at\"                 \"215039_at\"                  \n",
+       "[27675] \"215039_at\"                   \"212155_at\"                  \n",
+       "[27677] \"213192_at\"                   \"211395_x_at\"                \n",
+       "[27679] \"210889_s_at\"                 \"213780_at\"                  \n",
+       "[27681] \"211797_s_at\"                 \"211251_x_at\"                \n",
+       "[27683] \"213742_at\"                   \"213068_at\"                  \n",
+       "[27685] \"213071_at\"                   \"212013_at\"                  \n",
+       "[27687] \"212012_at\"                   \"215227_x_at\"                \n",
+       "[27689] \"212797_at\"                   \"212807_s_at\"                \n",
+       "[27691] \"212172_at\"                   \"212174_at\"                  \n",
+       "[27693] \"212175_s_at\"                 \"212173_at\"                  \n",
+       "[27695] \"214415_at\"                   \"211574_s_at\"                \n",
+       "[27697] \"214643_x_at\"                 \"214439_x_at\"                \n",
+       "[27699] \"215150_at\"                   \"214230_at\"                  \n",
+       "[27701] \"213524_s_at\"                 \"213888_s_at\"                \n",
+       "[27703] \"215275_at\"                   \"214193_s_at\"                \n",
+       "[27705] \"212048_s_at\"                 \"214110_s_at\"                \n",
+       "[27707] \"211069_s_at\"                 \"214628_at\"                  \n",
+       "[27709] \"211190_x_at\"                 \"211192_s_at\"                \n",
+       "[27711] \"211189_x_at\"                 \"211188_at\"                  \n",
+       "[27713] \"211191_at\"                   \"214415_at\"                  \n",
+       "[27715] \"214415_at\"                   \"214336_s_at\"                \n",
+       "[27717] \"214337_at\"                   \"214110_s_at\"                \n",
+       "[27719] \"214110_s_at\"                 \"214549_x_at\"                \n",
+       "[27721] \"213796_at\"                   \"212765_at\"                  \n",
+       "[27723] \"212763_at\"                   \"210804_x_at\"                \n",
+       "[27725] \"211805_s_at\"                 \"212390_at\"                  \n",
+       "[27727] \"214474_at\"                   \"212181_s_at\"                \n",
+       "[27729] \"212854_x_at\"                 \"215044_s_at\"                \n",
+       "[27731] \"213743_at\"                   \"214638_s_at\"                \n",
+       "[27733] \"214016_s_at\"                 \"212624_s_at\"                \n",
+       "[27735] \"210502_s_at\"                 \"212675_s_at\"                \n",
+       "[27737] \"212677_s_at\"                 \"211414_at\"                  \n",
+       "[27739] \"214528_s_at\"                 \"213917_at\"                  \n",
+       "[27741] \"211566_x_at\"                 \"212645_x_at\"                \n",
+       "[27743] \"211028_s_at\"                 \"214874_at\"                  \n",
+       "[27745] \"214998_at\"                   \"211186_s_at\"                \n",
+       "[27747] \"214956_at\"                   \"211793_s_at\"                \n",
+       "[27749] \"212819_at\"                   \"212818_s_at\"                \n",
+       "[27751] \"213800_at\"                   \"215388_s_at\"                \n",
+       "[27753] \"215388_s_at\"                 \"211452_x_at\"                \n",
+       "[27755] \"211504_x_at\"                 \"210714_at\"                  \n",
+       "[27757] \"210841_s_at\"                 \"214632_at\"                  \n",
+       "[27759] \"211844_s_at\"                 \"210842_at\"                  \n",
+       "[27761] \"214053_at\"                   \"213339_at\"                  \n",
+       "[27763] \"213340_s_at\"                 \"213942_at\"                  \n",
+       "[27765] \"213694_at\"                   \"213488_at\"                  \n",
+       "[27767] \"213493_at\"                   \"214364_at\"                  \n",
+       "[27769] \"213534_s_at\"                 \"213465_s_at\"                \n",
+       "[27771] \"212293_at\"                   \"212291_at\"                  \n",
+       "[27773] \"210943_s_at\"                 \"215415_s_at\"                \n",
+       "[27775] \"210821_x_at\"                 \"212175_s_at\"                \n",
+       "[27777] \"210871_x_at\"                 \"211161_s_at\"                \n",
+       "[27779] \"215076_s_at\"                 \"215287_at\"                  \n",
+       "[27781] \"215287_at\"                   \"211175_at\"                  \n",
+       "[27783] \"211913_s_at\"                 \"210676_x_at\"                \n",
+       "[27785] \"212842_x_at\"                 \"211324_s_at\"                \n",
+       "[27787] \"212588_at\"                   \"212587_s_at\"                \n",
+       "[27789] \"211613_s_at\"                 \"214717_at\"                  \n",
+       "[27791] \"214888_at\"                   \"213098_at\"                  \n",
+       "[27793] \"213179_at\"                   \"211891_s_at\"                \n",
+       "[27795] \"211891_s_at\"                 \"211450_s_at\"                \n",
+       "[27797] \"211449_at\"                   \"212294_at\"                  \n",
+       "[27799] \"213612_x_at\"                 \"215434_x_at\"                \n",
+       "[27801] \"213422_s_at\"                 \"212774_at\"                  \n",
+       "[27803] \"212742_at\"                   \"210573_s_at\"                \n",
+       "[27805] \"211230_s_at\"                 \"210865_at\"                  \n",
+       "[27807] \"211333_s_at\"                 \"214693_x_at\"                \n",
+       "[27809] \"213612_x_at\"                 \"215434_x_at\"                \n",
+       "[27811] \"214693_x_at\"                 \"213612_x_at\"                \n",
+       "[27813] \"215434_x_at\"                 \"213612_x_at\"                \n",
+       "[27815] \"211749_s_at\"                 \"211786_at\"                  \n",
+       "[27817] \"210992_x_at\"                 \"215388_s_at\"                \n",
+       "[27819] \"212151_at\"                   \"212148_at\"                  \n",
+       "[27821] \"215497_s_at\"                 \"214722_at\"                  \n",
+       "[27823] \"214722_at\"                   \"213698_at\"                  \n",
+       "[27825] \"214693_x_at\"                 \"213612_x_at\"                \n",
+       "[27827] \"215434_x_at\"                 \"213654_at\"                  \n",
+       "[27829] \"214228_x_at\"                 \"214295_at\"                  \n",
+       "[27831] \"214294_at\"                   \"210798_x_at\"                \n",
+       "[27833] \"214110_s_at\"                 \"214110_s_at\"                \n",
+       "[27835] \"213685_at\"                   \"214433_s_at\"                \n",
+       "[27837] \"214093_s_at\"                 \"214094_at\"                  \n",
+       "[27839] \"212847_at\"                   \"211827_s_at\"                \n",
+       "[27841] \"211301_at\"                   \"213832_at\"                  \n",
+       "[27843] \"215014_at\"                   \"210912_x_at\"                \n",
+       "[27845] \"215333_x_at\"                 \"215333_x_at\"                \n",
+       "[27847] \"212746_s_at\"                 \"212746_s_at\"                \n",
+       "[27849] \"215367_at\"                   \"212388_at\"                  \n",
+       "[27851] \"212381_at\"                   \"214446_at\"                  \n",
+       "[27853] \"214903_at\"                   \"211202_s_at\"                \n",
+       "[27855] \"214613_at\"                   \"214801_at\"                  \n",
+       "[27857] \"212408_at\"                   \"212409_s_at\"                \n",
+       "[27859] \"213380_x_at\"                 \"212392_s_at\"                \n",
+       "[27861] \"212390_at\"                   \"212392_s_at\"                \n",
+       "[27863] \"214099_s_at\"                 \"213612_x_at\"                \n",
+       "[27865] \"211038_s_at\"                 \"214511_x_at\"                \n",
+       "[27867] \"214511_x_at\"                 \"210589_s_at\"                \n",
+       "[27869] \"211050_x_at\"                 \"211050_x_at\"                \n",
+       "[27871] \"214365_at\"                   \"212136_at\"                  \n",
+       "[27873] \"212135_s_at\"                 \"214230_at\"                  \n",
+       "[27875] \"211038_s_at\"                 \"213380_x_at\"                \n",
+       "[27877] \"213382_at\"                   \"212539_at\"                  \n",
+       "[27879] \"215300_s_at\"                 \"212539_at\"                  \n",
+       "[27881] \"213165_at\"                   \"213957_s_at\"                \n",
+       "[27883] \"213956_at\"                   \"214530_x_at\"                \n",
+       "[27885] \"213965_s_at\"                 \"214042_s_at\"                \n",
+       "[27887] \"214521_at\"                   \"212392_s_at\"                \n",
+       "[27889] \"214130_s_at\"                 \"212390_at\"                  \n",
+       "[27891] \"214099_s_at\"                 \"214129_at\"                  \n",
+       "[27893] \"213388_at\"                   \"212392_s_at\"                \n",
+       "[27895] \"214130_s_at\"                 \"212390_at\"                  \n",
+       "[27897] \"214099_s_at\"                 \"214129_at\"                  \n",
+       "[27899] \"213388_at\"                   \"210589_s_at\"                \n",
+       "[27901] \"214695_at\"                   \"211231_x_at\"                \n",
+       "[27903] \"213612_x_at\"                 \"215434_x_at\"                \n",
+       "[27905] \"213612_x_at\"                 \"215434_x_at\"                \n",
+       "[27907] \"211791_s_at\"                 \"212153_at\"                  \n",
+       "[27909] \"215281_x_at\"                 \"215017_s_at\"                \n",
+       "[27911] \"213268_at\"                   \"215169_at\"                  \n",
+       "[27913] \"210831_s_at\"                 \"211909_x_at\"                \n",
+       "[27915] \"210832_x_at\"                 \"213933_at\"                  \n",
+       "[27917] \"210834_s_at\"                 \"210833_at\"                  \n",
+       "[27919] \"213804_at\"                   \"213643_s_at\"                \n",
+       "[27921] \"211733_x_at\"                 \"212590_at\"                  \n",
+       "[27923] \"210923_at\"                   \"213883_s_at\"                \n",
+       "[27925] \"211703_s_at\"                 \"214497_s_at\"                \n",
+       "[27927] \"215228_at\"                   \"212436_at\"                  \n",
+       "[27929] \"212435_at\"                   \"214815_at\"                  \n",
+       "[27931] \"211761_s_at\"                 \"210691_s_at\"                \n",
+       "[27933] \"215271_at\"                   \"213841_at\"                  \n",
+       "[27935] \"211562_s_at\"                 \"215171_s_at\"                \n",
+       "[27937] \"211515_s_at\"                 \"214663_at\"                  \n",
+       "[27939] \"211514_at\"                   \"213096_at\"                  \n",
+       "[27941] \"214075_at\"                   \"214841_at\"                  \n",
+       "[27943] \"212086_x_at\"                 \"214213_x_at\"                \n",
+       "[27945] \"212089_at\"                   \"213129_s_at\"                \n",
+       "[27947] \"213133_s_at\"                 \"214104_at\"                  \n",
+       "[27949] \"214773_x_at\"                 \"215389_s_at\"                \n",
+       "[27951] \"215088_s_at\"                 \"213030_s_at\"                \n",
+       "[27953] \"212513_s_at\"                 \"214843_s_at\"                \n",
+       "[27955] \"214044_at\"                   \"214058_at\"                  \n",
+       "[27957] \"215491_at\"                   \"210775_x_at\"                \n",
+       "[27959] \"212908_at\"                   \"212911_at\"                  \n",
+       "[27961] \"214583_at\"                   \"214583_at\"                  \n",
+       "[27963] \"212146_at\"                   \"217723_x_at\"                \n",
+       "[27965] \"217723_x_at\"                 \"220167_s_at\"                \n",
+       "[27967] \"215812_s_at\"                 \"220167_s_at\"                \n",
+       "[27969] \"217365_at\"                   \"217365_at\"                  \n",
+       "[27971] \"217273_at\"                   \"217365_at\"                  \n",
+       "[27973] \"217365_at\"                   \"217365_at\"                  \n",
+       "[27975] \"217365_at\"                   \"217365_at\"                  \n",
+       "[27977] \"217365_at\"                   \"217365_at\"                  \n",
+       "[27979] \"217273_at\"                   \"217930_s_at\"                \n",
+       "[27981] \"217480_x_at\"                 \"216665_s_at\"                \n",
+       "[27983] \"217261_at\"                   \"216374_at\"                  \n",
+       "[27985] \"216673_at\"                   \"216665_s_at\"                \n",
+       "[27987] \"217261_at\"                   \"216786_at\"                  \n",
+       "[27989] \"216665_s_at\"                 \"216664_at\"                  \n",
+       "[27991] \"216673_at\"                   \"216374_at\"                  \n",
+       "[27993] \"217160_at\"                   \"217160_at\"                  \n",
+       "[27995] \"217160_at\"                   \"217160_at\"                  \n",
+       "[27997] \"217160_at\"                   \"217160_at\"                  \n",
+       "[27999] \"217160_at\"                   \"217160_at\"                  \n",
+       "[28001] \"217160_at\"                   \"217160_at\"                  \n",
+       "[28003] \"217160_at\"                   \"217160_at\"                  \n",
+       "[28005] \"217160_at\"                   \"217160_at\"                  \n",
+       "[28007] \"217160_at\"                   \"217160_at\"                  \n",
+       "[28009] \"217160_at\"                   \"217160_at\"                  \n",
+       "[28011] \"217160_at\"                   \"217160_at\"                  \n",
+       "[28013] \"217160_at\"                   \"217160_at\"                  \n",
+       "[28015] \"217160_at\"                   \"217160_at\"                  \n",
+       "[28017] \"217160_at\"                   \"217160_at\"                  \n",
+       "[28019] \"216665_s_at\"                 \"216664_at\"                  \n",
+       "[28021] \"216665_s_at\"                 \"216664_at\"                  \n",
+       "[28023] \"216315_x_at\"                 \"216786_at\"                  \n",
+       "[28025] \"216922_x_at\"                 \"216351_x_at\"                \n",
+       "[28027] \"219687_at\"                   \"216351_x_at\"                \n",
+       "[28029] \"216922_x_at\"                 \"216351_x_at\"                \n",
+       "[28031] \"216922_x_at\"                 \"218021_at\"                  \n",
+       "[28033] \"218021_at\"                   \"215700_x_at\"                \n",
+       "[28035] \"216389_s_at\"                 \"216351_x_at\"                \n",
+       "[28037] \"216922_x_at\"                 \"219203_at\"                  \n",
+       "[28039] \"217160_at\"                   \"218599_at\"                  \n",
+       "[28041] \"218305_at\"                   \"218305_at\"                  \n",
+       "[28043] \"218572_at\"                   \"218571_s_at\"                \n",
+       "[28045] \"218572_at\"                   \"218571_s_at\"                \n",
+       "[28047] \"218572_at\"                   \"217990_at\"                  \n",
+       "[28049] \"220052_s_at\"                 \"217140_s_at\"                \n",
+       "[28051] \"217139_at\"                   \"217049_x_at\"                \n",
+       "[28053] \"220130_x_at\"                 \"220130_x_at\"                \n",
+       "[28055] \"216388_s_at\"                 \"220130_x_at\"                \n",
+       "[28057] \"218021_at\"                   \"218021_at\"                  \n",
+       "[28059] \"218021_at\"                   \"216544_at\"                  \n",
+       "[28061] \"216544_at\"                   \"216842_x_at\"                \n",
+       "[28063] \"216842_x_at\"                 \"216376_x_at\"                \n",
+       "[28065] \"216376_x_at\"                 \"217160_at\"                  \n",
+       "[28067] \"217160_at\"                   \"217160_at\"                  \n",
+       "[28069] \"217160_at\"                   \"217160_at\"                  \n",
+       "[28071] \"217160_at\"                   \"217160_at\"                  \n",
+       "[28073] \"217160_at\"                   \"217270_s_at\"                \n",
+       "[28075] \"217160_at\"                   \"217160_at\"                  \n",
+       "[28077] \"217160_at\"                   \"217160_at\"                  \n",
+       "[28079] \"217160_at\"                   \"217160_at\"                  \n",
+       "[28081] \"217160_at\"                   \"217160_at\"                  \n",
+       "[28083] \"217160_at\"                   \"217160_at\"                  \n",
+       "[28085] \"217160_at\"                   \"217160_at\"                  \n",
+       "[28087] \"217160_at\"                   \"217160_at\"                  \n",
+       "[28089] \"217160_at\"                   \"217160_at\"                  \n",
+       "[28091] \"217160_at\"                   \"217160_at\"                  \n",
+       "[28093] \"217160_at\"                   \"217160_at\"                  \n",
+       "[28095] \"217160_at\"                   \"217160_at\"                  \n",
+       "[28097] \"217160_at\"                   \"217160_at\"                  \n",
+       "[28099] \"217160_at\"                   \"217160_at\"                  \n",
+       "[28101] \"217160_at\"                   \"215570_s_at\"                \n",
+       "[28103] \"215570_s_at\"                 \"219264_s_at\"                \n",
+       "[28105] \"219264_s_at\"                 \"219264_s_at\"                \n",
+       "[28107] \"218951_s_at\"                 \"217212_s_at\"                \n",
+       "[28109] \"216473_x_at\"                 \"216473_x_at\"                \n",
+       "[28111] \"216473_x_at\"                 \"216473_x_at\"                \n",
+       "[28113] \"216473_x_at\"                 \"216473_x_at\"                \n",
+       "[28115] \"216473_x_at\"                 \"216473_x_at\"                \n",
+       "[28117] \"216473_x_at\"                 \"216473_x_at\"                \n",
+       "[28119] \"216473_x_at\"                 \"216473_x_at\"                \n",
+       "[28121] \"216473_x_at\"                 \"216473_x_at\"                \n",
+       "[28123] \"216473_x_at\"                 \"216473_x_at\"                \n",
+       "[28125] \"216473_x_at\"                 \"216473_x_at\"                \n",
+       "[28127] \"216473_x_at\"                 \"216473_x_at\"                \n",
+       "[28129] \"216473_x_at\"                 \"216473_x_at\"                \n",
+       "[28131] \"216473_x_at\"                 \"216473_x_at\"                \n",
+       "[28133] \"216473_x_at\"                 \"216473_x_at\"                \n",
+       "[28135] \"216473_x_at\"                 \"216473_x_at\"                \n",
+       "[28137] \"216473_x_at\"                 \"216473_x_at\"                \n",
+       "[28139] \"216473_x_at\"                 \"216473_x_at\"                \n",
+       "[28141] \"216473_x_at\"                 \"216473_x_at\"                \n",
+       "[28143] \"216473_x_at\"                 \"216473_x_at\"                \n",
+       "[28145] \"216473_x_at\"                 \"216473_x_at\"                \n",
+       "[28147] \"216473_x_at\"                 \"216473_x_at\"                \n",
+       "[28149] \"216473_x_at\"                 \"216473_x_at\"                \n",
+       "[28151] \"216473_x_at\"                 \"216473_x_at\"                \n",
+       "[28153] \"216473_x_at\"                 \"216473_x_at\"                \n",
+       "[28155] \"216473_x_at\"                 \"216473_x_at\"                \n",
+       "[28157] \"216473_x_at\"                 \"216473_x_at\"                \n",
+       "[28159] \"216473_x_at\"                 \"216473_x_at\"                \n",
+       "[28161] \"216473_x_at\"                 \"216473_x_at\"                \n",
+       "[28163] \"216473_x_at\"                 \"216473_x_at\"                \n",
+       "[28165] \"216473_x_at\"                 \"216473_x_at\"                \n",
+       "[28167] \"216473_x_at\"                 \"216473_x_at\"                \n",
+       "[28169] \"216473_x_at\"                 \"216473_x_at\"                \n",
+       "[28171] \"216473_x_at\"                 \"216473_x_at\"                \n",
+       "[28173] \"216473_x_at\"                 \"216473_x_at\"                \n",
+       "[28175] \"216473_x_at\"                 \"216473_x_at\"                \n",
+       "[28177] \"216473_x_at\"                 \"216473_x_at\"                \n",
+       "[28179] \"216473_x_at\"                 \"216473_x_at\"                \n",
+       "[28181] \"216473_x_at\"                 \"216473_x_at\"                \n",
+       "[28183] \"216473_x_at\"                 \"216473_x_at\"                \n",
+       "[28185] \"216473_x_at\"                 \"216473_x_at\"                \n",
+       "[28187] \"216473_x_at\"                 \"216473_x_at\"                \n",
+       "[28189] \"216473_x_at\"                 \"216473_x_at\"                \n",
+       "[28191] \"216473_x_at\"                 \"216473_x_at\"                \n",
+       "[28193] \"216473_x_at\"                 \"216473_x_at\"                \n",
+       "[28195] \"216473_x_at\"                 \"216473_x_at\"                \n",
+       "[28197] \"216473_x_at\"                 \"216473_x_at\"                \n",
+       "[28199] \"216473_x_at\"                 \"216473_x_at\"                \n",
+       "[28201] \"216473_x_at\"                 \"216473_x_at\"                \n",
+       "[28203] \"216473_x_at\"                 \"216473_x_at\"                \n",
+       "[28205] \"216473_x_at\"                 \"216473_x_at\"                \n",
+       "[28207] \"216473_x_at\"                 \"216473_x_at\"                \n",
+       "[28209] \"216473_x_at\"                 \"216473_x_at\"                \n",
+       "[28211] \"216473_x_at\"                 \"216473_x_at\"                \n",
+       "[28213] \"216473_x_at\"                 \"216473_x_at\"                \n",
+       "[28215] \"216473_x_at\"                 \"216473_x_at\"                \n",
+       "[28217] \"216473_x_at\"                 \"216473_x_at\"                \n",
+       "[28219] \"216473_x_at\"                 \"216473_x_at\"                \n",
+       "[28221] \"216473_x_at\"                 \"216473_x_at\"                \n",
+       "[28223] \"216473_x_at\"                 \"216473_x_at\"                \n",
+       "[28225] \"216473_x_at\"                 \"216473_x_at\"                \n",
+       "[28227] \"216473_x_at\"                 \"216473_x_at\"                \n",
+       "[28229] \"216473_x_at\"                 \"216473_x_at\"                \n",
+       "[28231] \"216473_x_at\"                 \"216473_x_at\"                \n",
+       "[28233] \"216473_x_at\"                 \"216473_x_at\"                \n",
+       "[28235] \"216473_x_at\"                 \"216473_x_at\"                \n",
+       "[28237] \"216473_x_at\"                 \"216473_x_at\"                \n",
+       "[28239] \"216473_x_at\"                 \"216473_x_at\"                \n",
+       "[28241] \"216473_x_at\"                 \"216473_x_at\"                \n",
+       "[28243] \"216473_x_at\"                 \"216473_x_at\"                \n",
+       "[28245] \"216473_x_at\"                 \"216473_x_at\"                \n",
+       "[28247] \"216473_x_at\"                 \"216473_x_at\"                \n",
+       "[28249] \"216473_x_at\"                 \"216473_x_at\"                \n",
+       "[28251] \"216473_x_at\"                 \"216473_x_at\"                \n",
+       "[28253] \"216473_x_at\"                 \"216473_x_at\"                \n",
+       "[28255] \"216473_x_at\"                 \"216473_x_at\"                \n",
+       "[28257] \"216473_x_at\"                 \"216473_x_at\"                \n",
+       "[28259] \"216473_x_at\"                 \"216473_x_at\"                \n",
+       "[28261] \"216473_x_at\"                 \"216473_x_at\"                \n",
+       "[28263] \"216473_x_at\"                 \"216473_x_at\"                \n",
+       "[28265] \"216473_x_at\"                 \"216473_x_at\"                \n",
+       "[28267] \"216473_x_at\"                 \"216473_x_at\"                \n",
+       "[28269] \"216473_x_at\"                 \"216473_x_at\"                \n",
+       "[28271] \"216473_x_at\"                 \"216473_x_at\"                \n",
+       "[28273] \"216473_x_at\"                 \"216473_x_at\"                \n",
+       "[28275] \"216473_x_at\"                 \"216473_x_at\"                \n",
+       "[28277] \"216473_x_at\"                 \"216473_x_at\"                \n",
+       "[28279] \"216473_x_at\"                 \"216473_x_at\"                \n",
+       "[28281] \"216473_x_at\"                 \"216473_x_at\"                \n",
+       "[28283] \"216473_x_at\"                 \"216473_x_at\"                \n",
+       "[28285] \"216473_x_at\"                 \"216473_x_at\"                \n",
+       "[28287] \"216473_x_at\"                 \"216473_x_at\"                \n",
+       "[28289] \"216473_x_at\"                 \"216473_x_at\"                \n",
+       "[28291] \"216473_x_at\"                 \"216473_x_at\"                \n",
+       "[28293] \"216473_x_at\"                 \"216473_x_at\"                \n",
+       "[28295] \"216473_x_at\"                 \"216473_x_at\"                \n",
+       "[28297] \"216473_x_at\"                 \"215778_x_at\"                \n",
+       "[28299] \"216977_x_at\"                 \"215722_s_at\"                \n",
+       "[28301] \"218886_at\"                   \"220534_at\"                  \n",
+       "[28303] \"215827_x_at\"                 \"216320_x_at\"                \n",
+       "[28305] \"216384_x_at\"                 \"219306_at\"                  \n",
+       "[28307] \"217566_s_at\"                 \"219218_at\"                  \n",
+       "[28309] \"219260_s_at\"                 \"219704_at\"                  \n",
+       "[28311] \"218983_at\"                   \"220001_at\"                  \n",
+       "[28313] \"217269_s_at\"                 \"216822_x_at\"                \n",
+       "[28315] \"216469_at\"                   \"215603_x_at\"                \n",
+       "[28317] \"216569_at\"                   \"217740_x_at\"                \n",
+       "[28319] \"217740_x_at\"                 \"217740_x_at\"                \n",
+       "[28321] \"219213_at\"                   \"218767_at\"                  \n",
+       "[28323] \"220208_at\"                   \"219223_at\"                  \n",
+       "[28325] \"220091_at\"                   \"216929_x_at\"                \n",
+       "[28327] \"218435_at\"                   \"217149_x_at\"                \n",
+       "[28329] \"218828_at\"                   \"218828_at\"                  \n",
+       "[28331] \"217420_s_at\"                 \"219030_at\"                  \n",
+       "[28333] \"219535_at\"                   \"215910_s_at\"                \n",
+       "[28335] \"218515_at\"                   \"216349_at\"                  \n",
+       "[28337] \"218656_s_at\"                 \"216826_at\"                  \n",
+       "[28339] \"218420_s_at\"                 \"217491_x_at\"                \n",
+       "[28341] \"217959_s_at\"                 \"217958_at\"                  \n",
+       "[28343] \"219544_at\"                   \"217289_s_at\"                \n",
+       "[28345] \"216391_s_at\"                 \"216387_x_at\"                \n",
+       "[28347] \"217332_at\"                   \"218050_at\"                  \n",
+       "[28349] \"216476_at\"                   \"218569_s_at\"                \n",
+       "[28351] \"218570_at\"                   \"220390_at\"                  \n",
+       "[28353] \"217772_s_at\"                 \"219867_at\"                  \n",
+       "[28355] \"219684_at\"                   \"220205_at\"                  \n",
+       "[28357] \"217753_s_at\"                 \"216403_at\"                  \n",
+       "[28359] \"215886_x_at\"                 \"216820_at\"                  \n",
+       "[28361] \"216469_at\"                   \"216135_at\"                  \n",
+       "[28363] \"219767_s_at\"                 \"218504_at\"                  \n",
+       "[28365] \"217763_s_at\"                 \"217762_s_at\"                \n",
+       "[28367] \"217764_s_at\"                 \"220311_at\"                  \n",
+       "[28369] \"219935_at\"                   \"218362_s_at\"                \n",
+       "[28371] \"219065_s_at\"                 \"217263_x_at\"                \n",
+       "[28373] \"217263_x_at\"                 \"215596_s_at\"                \n",
+       "[28375] \"218377_s_at\"                 \"220485_s_at\"                \n",
+       "[28377] \"218386_x_at\"                 \"220200_s_at\"                \n",
+       "[28379] \"218123_at\"                   \"216553_x_at\"                \n",
+       "[28381] \"218123_at\"                   \"220477_s_at\"                \n",
+       "[28383] \"216313_at\"                   \"216313_at\"                  \n",
+       "[28385] \"219738_s_at\"                 \"219737_s_at\"                \n",
+       "[28387] \"218558_s_at\"                 \"220330_s_at\"                \n",
+       "[28389] \"216422_at\"                   \"219310_at\"                  \n",
+       "[28391] \"216577_at\"                   \"217376_at\"                  \n",
+       "[28393] \"215948_x_at\"                 \"216218_s_at\"                \n",
+       "[28395] \"216217_at\"                   \"218018_at\"                  \n",
+       "[28397] \"218019_s_at\"                 \"215603_x_at\"                \n",
+       "[28399] \"216684_s_at\"                 \"218758_s_at\"                \n",
+       "[28401] \"219723_x_at\"                 \"220456_at\"                  \n",
+       "[28403] \"216053_x_at\"                 \"218076_s_at\"                \n",
+       "[28405] \"218860_at\"                   \"218093_s_at\"                \n",
+       "[28407] \"216268_s_at\"                 \"217539_at\"                  \n",
+       "[28409] \"217508_s_at\"                 \"217640_x_at\"                \n",
+       "[28411] \"218209_s_at\"                 \"215739_s_at\"                \n",
+       "[28413] \"219443_at\"                   \"218579_s_at\"                \n",
+       "[28415] \"219303_at\"                   \"218067_s_at\"                \n",
+       "[28417] \"220516_at\"                   \"215670_s_at\"                \n",
+       "[28419] \"220363_s_at\"                 \"220180_at\"                  \n",
+       "[28421] \"220508_at\"                   \"216004_s_at\"                \n",
+       "[28423] \"220200_s_at\"                 \"219794_at\"                  \n",
+       "[28425] \"217731_s_at\"                 \"217732_s_at\"                \n",
+       "[28427] \"217637_at\"                   \"216207_x_at\"                \n",
+       "[28429] \"219056_at\"                   \"216401_x_at\"                \n",
+       "[28431] \"219377_at\"                   \"219447_s_at\"                \n",
+       "[28433] \"217675_at\"                   \"217492_s_at\"                \n",
+       "[28435] \"219482_at\"                   \"220506_at\"                  \n",
+       "[28437] \"217337_at\"                   \"217197_x_at\"                \n",
+       "[28439] \"215699_x_at\"                 \"218702_at\"                  \n",
+       "[28441] \"218702_at\"                   \"220233_at\"                  \n",
+       "[28443] \"219480_at\"                   \"219004_s_at\"                \n",
+       "[28445] \"219559_at\"                   \"219189_at\"                  \n",
+       "[28447] \"216088_s_at\"                 \"219215_s_at\"                \n",
+       "[28449] \"218679_s_at\"                 \"218151_x_at\"                \n",
+       "[28451] \"216828_at\"                   \"215738_at\"                  \n",
+       "[28453] \"218243_at\"                   \"220189_s_at\"                \n",
+       "[28455] \"220341_s_at\"                 \"220205_at\"                  \n",
+       "[28457] \"220205_at\"                   \"215755_at\"                  \n",
+       "[28459] \"215994_x_at\"                 \"220196_at\"                  \n",
+       "[28461] \"218448_at\"                   \"217875_s_at\"                \n",
+       "[28463] \"218637_at\"                   \"220271_x_at\"                \n",
+       "[28465] \"219280_at\"                   \"219347_at\"                  \n",
+       "[28467] \"217843_s_at\"                 \"219568_x_at\"                \n",
+       "[28469] \"218422_s_at\"                 \"220509_at\"                  \n",
+       "[28471] \"216418_at\"                   \"219536_s_at\"                \n",
+       "[28473] \"218968_s_at\"                 \"216349_at\"                  \n",
+       "[28475] \"215963_x_at\"                 \"220142_at\"                  \n",
+       "[28477] \"220227_at\"                   \"217286_s_at\"                \n",
+       "[28479] \"215942_s_at\"                 \"218626_at\"                  \n",
+       "[28481] \"217988_at\"                   \"215773_x_at\"                \n",
+       "[28483] \"216965_x_at\"                 \"217019_at\"                  \n",
+       "[28485] \"217867_x_at\"                 \"216404_at\"                  \n",
+       "[28487] \"218272_at\"                   \"218096_at\"                  \n",
+       "[28489] \"218220_at\"                   \"218075_at\"                  \n",
+       "[28491] \"219281_at\"                   \"216210_x_at\"                \n",
+       "[28493] \"219471_at\"                   \"220177_s_at\"                \n",
+       "[28495] \"219653_at\"                   \"216251_s_at\"                \n",
+       "[28497] \"220418_at\"                   \"219168_s_at\"                \n",
+       "[28499] \"219048_at\"                   \"219622_at\"                  \n",
+       "[28501] \"218153_at\"                   \"218928_s_at\"                \n",
+       "[28503] \"219327_s_at\"                 \"217078_s_at\"                \n",
+       "[28505] \"218421_at\"                   \"219822_at\"                  \n",
+       "[28507] \"219378_at\"                   \"216695_s_at\"                \n",
+       "[28509] \"219954_s_at\"                 \"217154_s_at\"                \n",
+       "[28511] \"217499_x_at\"                 \"217499_x_at\"                \n",
+       "[28513] \"218723_s_at\"                 \"216555_at\"                  \n",
+       "[28515] \"218589_at\"                   \"217940_s_at\"                \n",
+       "[28517] \"217386_at\"                   \"218444_at\"                  \n",
+       "[28519] \"217723_x_at\"                 \"217723_x_at\"                \n",
+       "[28521] \"216191_s_at\"                 \"217143_s_at\"                \n",
+       "[28523] \"218094_s_at\"                 \"220176_at\"                  \n",
+       "[28525] \"218822_s_at\"                 \"218821_at\"                  \n",
+       "[28527] \"216047_x_at\"                 \"218822_s_at\"                \n",
+       "[28529] \"218821_at\"                   \"218822_s_at\"                \n",
+       "[28531] \"218821_at\"                   \"217789_at\"                  \n",
+       "[28533] \"217977_at\"                   \"217466_x_at\"                \n",
+       "[28535] \"217466_x_at\"                 \"217466_x_at\"                \n",
+       "[28537] \"219264_s_at\"                 \"219264_s_at\"                \n",
+       "[28539] \"219264_s_at\"                 \"215894_at\"                  \n",
+       "[28541] \"217801_at\"                   \"217851_s_at\"                \n",
+       "[28543] \"216543_at\"                   \"218447_at\"                  \n",
+       "[28545] \"220388_at\"                   \"219555_s_at\"                \n",
+       "[28547] \"219959_at\"                   \"217112_at\"                  \n",
+       "[28549] \"216061_x_at\"                 \"216850_at\"                  \n",
+       "[28551] \"219972_s_at\"                 \"220511_s_at\"                \n",
+       "[28553] \"220512_at\"                   \"219633_at\"                  \n",
+       "[28555] \"219283_at\"                   \"215794_x_at\"                \n",
+       "[28557] \"215888_at\"                   \"217752_s_at\"                \n",
+       "[28559] \"216798_at\"                   \"219477_s_at\"                \n",
+       "[28561] \"218819_at\"                   \"220385_at\"                  \n",
+       "[28563] \"219796_s_at\"                 \"220075_s_at\"                \n",
+       "[28565] \"220074_at\"                   \"218250_s_at\"                \n",
+       "[28567] \"218709_s_at\"                 \"216421_at\"                  \n",
+       "[28569] \"217240_at\"                   \"216850_at\"                  \n",
+       "[28571] \"217712_at\"                   \"220392_at\"                  \n",
+       "[28573] \"219201_s_at\"                 \"220139_at\"                  \n",
+       "[28575] \"216254_at\"                   \"217347_at\"                  \n",
+       "[28577] \"217266_at\"                   \"215706_x_at\"                \n",
+       "[28579] \"217375_at\"                   \"217302_at\"                  \n",
+       "[28581] \"219772_s_at\"                 \"220020_at\"                  \n",
+       "[28583] \"219659_at\"                   \"219660_s_at\"                \n",
+       "[28585] \"219269_at\"                   \"218016_s_at\"                \n",
+       "[28587] \"220451_s_at\"                 \"220451_s_at\"                \n",
+       "[28589] \"217888_s_at\"                 \"218544_s_at\"                \n",
+       "[28591] \"217406_at\"                   \"220354_at\"                  \n",
+       "[28593] \"216226_at\"                   \"220095_at\"                  \n",
+       "[28595] \"218602_s_at\"                 \"216900_s_at\"                \n",
+       "[28597] \"215842_s_at\"                 \"216488_s_at\"                \n",
+       "[28599] \"218393_s_at\"                 \"218138_at\"                  \n",
+       "[28601] \"217480_x_at\"                 \"218010_x_at\"                \n",
+       "[28603] \"220426_at\"                   \"218136_s_at\"                \n",
+       "[28605] \"217789_at\"                   \"217265_at\"                  \n",
+       "[28607] \"219232_s_at\"                 \"219921_s_at\"                \n",
+       "[28609] \"219477_s_at\"                 \"215603_x_at\"                \n",
+       "[28611] \"216505_x_at\"                 \"218527_at\"                  \n",
+       "[28613] \"218252_at\"                   \"219181_at\"                  \n",
+       "[28615] \"219512_at\"                   \"219144_at\"                  \n",
+       "[28617] \"215739_s_at\"                 \"216895_at\"                  \n",
+       "[28619] \"218247_s_at\"                 \"220507_s_at\"                \n",
+       "[28621] \"219668_at\"                   \"219583_s_at\"                \n",
+       "[28623] \"216497_at\"                   \"218258_at\"                  \n",
+       "[28625] \"215603_x_at\"                 \"215603_x_at\"                \n",
+       "[28627] \"216262_s_at\"                 \"218724_s_at\"                \n",
+       "[28629] \"216894_x_at\"                 \"219534_x_at\"                \n",
+       "[28631] \"220514_at\"                   \"217835_x_at\"                \n",
+       "[28633] \"220408_x_at\"                 \"216682_s_at\"                \n",
+       "[28635] \"218159_at\"                   \"218139_s_at\"                \n",
+       "[28637] \"217030_at\"                   \"215764_x_at\"                \n",
+       "[28639] \"217223_s_at\"                 \"218682_s_at\"                \n",
+       "[28641] \"220459_at\"                   \"219440_at\"                  \n",
+       "[28643] \"219080_s_at\"                 \"219961_s_at\"                \n",
+       "[28645] \"218566_s_at\"                 \"217158_at\"                  \n",
+       "[28647] \"216308_x_at\"                 \"216531_at\"                  \n",
+       "[28649] \"216515_x_at\"                 \"220310_at\"                  \n",
+       "[28651] \"217141_at\"                   \"220297_at\"                  \n",
+       "[28653] \"219463_at\"                   \"215764_x_at\"                \n",
+       "[28655] \"218108_at\"                   \"220523_at\"                  \n",
+       "[28657] \"218498_s_at\"                 \"219369_s_at\"                \n",
+       "[28659] \"217828_at\"                   \"216031_x_at\"                \n",
+       "[28661] \"216426_at\"                   \"218352_at\"                  \n",
+       "[28663] \"217605_at\"                   \"217092_x_at\"                \n",
+       "[28665] \"220419_s_at\"                 \"218203_at\"                  \n",
+       "[28667] \"217135_x_at\"                 \"216881_x_at\"                \n",
+       "[28669] \"216863_s_at\"                 \"220537_at\"                  \n",
+       "[28671] \"218306_s_at\"                 \"219064_at\"                  \n",
+       "[28673] \"216923_at\"                   \"219200_at\"                  \n",
+       "[28675] \"220147_s_at\"                 \"217223_s_at\"                \n",
+       "[28677] \"220211_at\"                   \"219749_at\"                  \n",
+       "[28679] \"217687_at\"                   \"217317_s_at\"                \n",
+       "[28681] \"219501_at\"                   \"215725_at\"                  \n",
+       "[28683] \"219596_at\"                   \"215809_at\"                  \n",
+       "[28685] \"215867_x_at\"                 \"219855_at\"                  \n",
+       "[28687] \"220225_at\"                   \"219116_s_at\"                \n",
+       "[28689] \"218175_at\"                   \"217902_s_at\"                \n",
+       "[28691] \"216531_at\"                   \"220240_s_at\"                \n",
+       "[28693] \"220241_at\"                   \"220405_at\"                  \n",
+       "[28695] \"219428_s_at\"                 \"218468_s_at\"                \n",
+       "[28697] \"218469_at\"                   \"219878_s_at\"                \n",
+       "[28699] \"217346_at\"                   \"217317_s_at\"                \n",
+       "[28701] \"215579_at\"                   \"217480_x_at\"                \n",
+       "[28703] \"220475_at\"                   \"216222_s_at\"                \n",
+       "[28705] \"218297_at\"                   \"219210_s_at\"                \n",
+       "[28707] \"217768_at\"                   \"217669_s_at\"                \n",
+       "[28709] \"219315_s_at\"                 \"218479_s_at\"                \n",
+       "[28711] \"219147_s_at\"                 \"217792_at\"                  \n",
+       "[28713] \"220234_at\"                   \"218573_at\"                  \n",
+       "[28715] \"217225_x_at\"                 \"216902_s_at\"                \n",
+       "[28717] \"216908_x_at\"                 \"219897_at\"                  \n",
+       "[28719] \"218997_at\"                   \"216998_s_at\"                \n",
+       "[28721] \"217771_at\"                   \"220293_at\"                  \n",
+       "[28723] \"218371_s_at\"                 \"218748_s_at\"                \n",
+       "[28725] \"216288_at\"                   \"217955_at\"                  \n",
+       "[28727] \"219877_at\"                   \"218056_at\"                  \n",
+       "[28729] \"218414_s_at\"                 \"216651_s_at\"                \n",
+       "[28731] \"217777_s_at\"                 \"217225_x_at\"                \n",
+       "[28733] \"217022_s_at\"                 \"216542_x_at\"                \n",
+       "[28735] \"217469_at\"                   \"217022_s_at\"                \n",
+       "[28737] \"219018_s_at\"                 \"215949_x_at\"                \n",
+       "[28739] \"216557_x_at\"                 \"219349_s_at\"                \n",
+       "[28741] \"215949_x_at\"                 \"220108_at\"                  \n",
+       "[28743] \"217281_x_at\"                 \"216491_x_at\"                \n",
+       "[28745] \"217741_s_at\"                 \"217320_at\"                  \n",
+       "[28747] \"216342_x_at\"                 \"215707_s_at\"                \n",
+       "[28749] \"217239_x_at\"                 \"216491_x_at\"                \n",
+       "[28751] \"218506_x_at\"                 \"215949_x_at\"                \n",
+       "[28753] \"215621_s_at\"                 \"218455_at\"                  \n",
+       "[28755] \"215581_s_at\"                 \"215580_at\"                  \n",
+       "[28757] \"220377_at\"                   \"219779_at\"                  \n",
+       "[28759] \"219362_at\"                   \"218183_at\"                  \n",
+       "[28761] \"218185_s_at\"                 \"216977_x_at\"                \n",
+       "[28763] \"215722_s_at\"                 \"219930_at\"                  \n",
+       "[28765] \"218113_at\"                   \"219580_s_at\"                \n",
+       "[28767] \"216607_s_at\"                 \"217769_s_at\"                \n",
+       "[28769] \"219839_x_at\"                 \"219164_s_at\"                \n",
+       "[28771] \"216816_at\"                   \"218904_s_at\"                \n",
+       "[28773] \"216810_at\"                   \"219451_at\"                  \n",
+       "[28775] \"218773_s_at\"                 \"217262_s_at\"                \n",
+       "[28777] \"219477_s_at\"                 \"220361_at\"                  \n",
+       "[28779] \"217445_s_at\"                 \"219819_s_at\"                \n",
+       "[28781] \"218409_s_at\"                 \"216347_s_at\"                \n",
+       "[28783] \"218104_at\"                   \"217739_s_at\"                \n",
+       "[28785] \"216231_s_at\"                 \"218358_at\"                  \n",
+       "[28787] \"218295_s_at\"                 \"218241_at\"                  \n",
+       "[28789] \"219821_s_at\"                 \"218772_x_at\"                \n",
+       "[28791] \"220219_s_at\"                 \"218516_s_at\"                \n",
+       "[28793] \"219757_s_at\"                 \"219845_at\"                  \n",
+       "[28795] \"216200_at\"                   \"219578_s_at\"                \n",
+       "[28797] \"218652_s_at\"                 \"220115_s_at\"                \n",
+       "[28799] \"220219_s_at\"                 \"220219_s_at\"                \n",
+       "[28801] \"217353_at\"                   \"220270_at\"                  \n",
+       "[28803] \"216253_s_at\"                 \"217480_x_at\"                \n",
+       "[28805] \"218995_s_at\"                 \"215780_s_at\"                \n",
+       "[28807] \"220076_at\"                   \"216581_at\"                  \n",
+       "[28809] \"215620_at\"                   \"216315_x_at\"                \n",
+       "[28811] \"219600_s_at\"                 \"217514_at\"                  \n",
+       "[28813] \"218468_s_at\"                 \"218469_at\"                  \n",
+       "[28815] \"218399_s_at\"                 \"219184_x_at\"                \n",
+       "[28817] \"216557_x_at\"                 \"220382_s_at\"                \n",
+       "[28819] \"220381_at\"                   \"217039_x_at\"                \n",
+       "[28821] \"219991_at\"                   \"220039_s_at\"                \n",
+       "[28823] \"218152_at\"                   \"217962_at\"                  \n",
+       "[28825] \"219790_s_at\"                 \"219789_at\"                  \n",
+       "[28827] \"219054_at\"                   \"217131_at\"                  \n",
+       "[28829] \"219756_s_at\"                 \"217309_s_at\"                \n",
+       "[28831] \"216200_at\"                   \"219273_at\"                  \n",
+       "[28833] \"218398_at\"                   \"219090_at\"                  \n",
+       "[28835] \"217140_s_at\"                 \"218559_s_at\"                \n",
+       "[28837] \"217753_s_at\"                 \"219686_at\"                  \n",
+       "[28839] \"220219_s_at\"                 \"217050_at\"                  \n",
+       "[28841] \"220219_s_at\"                 \"220220_at\"                  \n",
+       "[28843] \"220219_s_at\"                 \"220220_at\"                  \n",
+       "[28845] \"219207_at\"                   \"216814_at\"                  \n",
+       "[28847] \"219837_s_at\"                 \"216354_at\"                  \n",
+       "[28849] \"216542_x_at\"                 \"217598_at\"                  \n",
+       "[28851] \"218969_at\"                   \"215949_x_at\"                \n",
+       "[28853] \"218121_at\"                   \"218120_s_at\"                \n",
+       "[28855] \"216559_x_at\"                 \"218969_at\"                  \n",
+       "[28857] \"217140_s_at\"                 \"217139_at\"                  \n",
+       "[28859] \"219795_at\"                   \"218183_at\"                  \n",
+       "[28861] \"219040_at\"                   \"215949_x_at\"                \n",
+       "[28863] \"217022_s_at\"                 \"219309_at\"                  \n",
+       "[28865] \"219697_at\"                   \"219715_s_at\"                \n",
+       "[28867] \"220021_at\"                   \"218273_s_at\"                \n",
+       "[28869] \"217590_s_at\"                 \"218374_s_at\"                \n",
+       "[28871] \"217596_at\"                   \"216650_at\"                  \n",
+       "[28873] \"219450_at\"                   \"217516_x_at\"                \n",
+       "[28875] \"220260_at\"                   \"217640_x_at\"                \n",
+       "[28877] \"215743_at\"                   \"218171_at\"                  \n",
+       "[28879] \"219664_s_at\"                 \"217559_at\"                  \n",
+       "[28881] \"219485_s_at\"                 \"218016_s_at\"                \n",
+       "[28883] \"217364_x_at\"                 \"219195_at\"                  \n",
+       "[28885] \"219911_s_at\"                 \"217351_at\"                  \n",
+       "[28887] \"219775_s_at\"                 \"219859_at\"                  \n",
+       "[28889] \"218586_at\"                   \"219732_at\"                  \n",
+       "[28891] \"216778_s_at\"                 \"216779_at\"                  \n",
+       "[28893] \"217344_at\"                   \"220319_s_at\"                \n",
+       "[28895] \"219819_s_at\"                 \"219761_at\"                  \n",
+       "[28897] \"217363_x_at\"                 \"217400_at\"                  \n",
+       "[28899] \"219811_at\"                   \"219811_at\"                  \n",
+       "[28901] \"220139_at\"                   \"218059_at\"                  \n",
+       "[28903] \"217427_s_at\"                 \"218888_s_at\"                \n",
+       "[28905] \"218325_s_at\"                 \"220053_at\"                  \n",
+       "[28907] \"215935_at\"                   \"216676_x_at\"                \n",
+       "[28909] \"218945_at\"                   \"216469_at\"                  \n",
+       "[28911] \"216406_at\"                   \"216384_x_at\"                \n",
+       "[28913] \"218566_s_at\"                 \"218081_at\"                  \n",
+       "[28915] \"217979_at\"                   \"218006_s_at\"                \n",
+       "[28917] \"218005_at\"                   \"215812_s_at\"                \n",
+       "[28919] \"217392_at\"                   \"216119_s_at\"                \n",
+       "[28921] \"220217_x_at\"                 \"220062_s_at\"                \n",
+       "[28923] \"219706_at\"                   \"219706_at\"                  \n",
+       "[28925] \"219368_at\"                   \"220305_at\"                  \n",
+       "[28927] \"219439_at\"                   \"216406_at\"                  \n",
+       "[28929] \"216413_at\"                   \"217009_at\"                  \n",
+       "[28931] \"217333_at\"                   \"216907_x_at\"                \n",
+       "[28933] \"216549_s_at\"                 \"219297_at\"                  \n",
+       "[28935] \"218894_s_at\"                 \"220229_s_at\"                \n",
+       "[28937] \"217815_at\"                   \"216676_x_at\"                \n",
+       "[28939] \"217773_s_at\"                 \"219294_at\"                  \n",
+       "[28941] \"216907_x_at\"                 \"216994_s_at\"                \n",
+       "[28943] \"217385_at\"                   \"216862_s_at\"                \n",
+       "[28945] \"216823_at\"                   \"216592_at\"                  \n",
+       "[28947] \"220416_at\"                   \"220128_s_at\"                \n",
+       "[28949] \"215932_at\"                   \"219332_at\"                  \n",
+       "[28951] \"218351_at\"                   \"218089_at\"                  \n",
+       "[28953] \"220314_at\"                   \"216862_s_at\"                \n",
+       "[28955] \"217015_at\"                   \"217518_at\"                  \n",
+       "[28957] \"217432_s_at\"                 \"219940_s_at\"                \n",
+       "[28959] \"219457_s_at\"                 \"219456_s_at\"                \n",
+       "[28961] \"218359_at\"                   \"215646_s_at\"                \n",
+       "[28963] \"219150_s_at\"                 \"216676_x_at\"                \n",
+       "[28965] \"216907_x_at\"                 \"219184_x_at\"                \n",
+       "[28967] \"219839_x_at\"                 \"217432_s_at\"                \n",
+       "[28969] \"220420_at\"                   \"216676_x_at\"                \n",
+       "[28971] \"217574_at\"                   \"215933_s_at\"                \n",
+       "[28973] \"218963_s_at\"                 \"219703_at\"                  \n",
+       "[28975] \"216810_at\"                   \"216411_s_at\"                \n",
+       "[28977] \"220393_at\"                   \"216676_x_at\"                \n",
+       "[28979] \"219816_s_at\"                 \"215843_s_at\"                \n",
+       "[28981] \"219079_at\"                   \"219079_at\"                  \n",
+       "[28983] \"219150_s_at\"                 \"216418_at\"                  \n",
+       "[28985] \"215708_s_at\"                 \"215709_at\"                  \n",
+       "[28987] \"218348_s_at\"                 \"216058_s_at\"                \n",
+       "[28989] \"220356_at\"                   \"217088_s_at\"                \n",
+       "[28991] \"217813_s_at\"                 \"216907_x_at\"                \n",
+       "[28993] \"216676_x_at\"                 \"218265_at\"                  \n",
+       "[28995] \"217192_s_at\"                 \"217352_at\"                  \n",
+       "[28997] \"218674_at\"                   \"219775_s_at\"                \n",
+       "[28999] \"220420_at\"                   \"219320_at\"                  \n",
+       "[29001] \"217256_x_at\"                 \"220301_at\"                  \n",
+       "[29003] \"218126_at\"                   \"218698_at\"                  \n",
+       "[29005] \"219994_at\"                   \"219967_at\"                  \n",
+       "[29007] \"217088_s_at\"                 \"218079_s_at\"                \n",
+       "[29009] \"216907_x_at\"                 \"219928_s_at\"                \n",
+       "[29011] \"217786_at\"                   \"219263_at\"                  \n",
+       "[29013] \"215736_at\"                   \"220294_at\"                  \n",
+       "[29015] \"215729_s_at\"                 \"215730_at\"                  \n",
+       "[29017] \"218655_s_at\"                 \"217088_s_at\"                \n",
+       "[29019] \"216907_x_at\"                 \"219909_at\"                  \n",
+       "[29021] \"216676_x_at\"                 \"218756_s_at\"                \n",
+       "[29023] \"219434_at\"                   \"216364_s_at\"                \n",
+       "[29025] \"220432_s_at\"                 \"220266_s_at\"                \n",
+       "[29027] \"220156_at\"                   \"217088_s_at\"                \n",
+       "[29029] \"219729_at\"                   \"216870_x_at\"                \n",
+       "[29031] \"215629_s_at\"                 \"216907_x_at\"                \n",
+       "[29033] \"218098_at\"                   \"215931_s_at\"                \n",
+       "[29035] \"217454_at\"                   \"219576_at\"                  \n",
+       "[29037] \"219626_at\"                   \"220030_at\"                  \n",
+       "[29039] \"218143_s_at\"                 \"216907_x_at\"                \n",
+       "[29041] \"218748_s_at\"                 \"218383_at\"                  \n",
+       "[29043] \"215794_x_at\"                 \"219009_at\"                  \n",
+       "[29045] \"219771_at\"                   \"216276_s_at\"                \n",
+       "[29047] \"216907_x_at\"                 \"219577_s_at\"                \n",
+       "[29049] \"219038_at\"                   \"216907_x_at\"                \n",
+       "[29051] \"216623_x_at\"                 \"217808_s_at\"                \n",
+       "[29053] \"219494_at\"                   \"215760_s_at\"                \n",
+       "[29055] \"216399_s_at\"                 \"215848_at\"                  \n",
+       "[29057] \"216907_x_at\"                 \"216379_x_at\"                \n",
+       "[29059] \"218607_s_at\"                 \"216806_at\"                  \n",
+       "[29061] \"215820_x_at\"                 \"218540_at\"                  \n",
+       "[29063] \"218540_at\"                   \"216676_x_at\"                \n",
+       "[29065] \"216907_x_at\"                 \"216676_x_at\"                \n",
+       "[29067] \"216358_at\"                   \"219429_at\"                  \n",
+       "[29069] \"216676_x_at\"                 \"219861_at\"                  \n",
+       "[29071] \"216907_x_at\"                 \"220238_s_at\"                \n",
+       "[29073] \"220239_at\"                   \"215686_x_at\"                \n",
+       "[29075] \"217343_at\"                   \"217737_x_at\"                \n",
+       "[29077] \"219355_at\"                   \"215803_at\"                  \n",
+       "[29079] \"216676_x_at\"                 \"218741_at\"                  \n",
+       "[29081] \"220217_x_at\"                 \"216907_x_at\"                \n",
+       "[29083] \"216676_x_at\"                 \"220232_at\"                  \n",
+       "[29085] \"220410_s_at\"                 \"220409_at\"                  \n",
+       "[29087] \"219657_s_at\"                 \"218582_at\"                  \n",
+       "[29089] \"219479_at\"                   \"215730_at\"                  \n",
+       "[29091] \"216676_x_at\"                 \"219524_s_at\"                \n",
+       "[29093] \"218738_s_at\"                 \"217088_s_at\"                \n",
+       "[29095] \"217930_s_at\"                 \"216907_x_at\"                \n",
+       "[29097] \"217186_at\"                   \"217185_s_at\"                \n",
+       "[29099] \"218137_s_at\"                 \"218021_at\"                  \n",
+       "[29101] \"216907_x_at\"                 \"220077_at\"                  \n",
+       "[29103] \"216676_x_at\"                 \"217107_at\"                  \n",
+       "[29105] \"216907_x_at\"                 \"219532_at\"                  \n",
+       "[29107] \"216907_x_at\"                 \"216237_s_at\"                \n",
+       "[29109] \"216438_s_at\"                 \"216091_s_at\"                \n",
+       "[29111] \"219913_s_at\"                 \"216907_x_at\"                \n",
+       "[29113] \"217957_at\"                   \"220171_x_at\"                \n",
+       "[29115] \"217710_x_at\"                 \"220360_at\"                  \n",
+       "[29117] \"216907_x_at\"                 \"216520_s_at\"                \n",
+       "[29119] \"218375_at\"                   \"220315_at\"                  \n",
+       "[29121] \"216428_x_at\"                 \"217747_s_at\"                \n",
+       "[29123] \"216493_s_at\"                 \"217327_at\"                  \n",
+       "[29125] \"215596_s_at\"                 \"216676_x_at\"                \n",
+       "[29127] \"219829_at\"                   \"216907_x_at\"                \n",
+       "[29129] \"215838_at\"                   \"217088_s_at\"                \n",
+       "[29131] \"220059_at\"                   \"218108_at\"                  \n",
+       "[29133] \"216676_x_at\"                 \"219415_at\"                  \n",
+       "[29135] \"217803_at\"                   \"217205_at\"                  \n",
+       "[29137] \"216348_at\"                   \"217119_s_at\"                \n",
+       "[29139] \"218102_at\"                   \"215960_at\"                  \n",
+       "[29141] \"218132_s_at\"                 \"217826_s_at\"                \n",
+       "[29143] \"217825_s_at\"                 \"217823_s_at\"                \n",
+       "[29145] \"217824_at\"                   \"219339_s_at\"                \n",
+       "[29147] \"216479_at\"                   \"218790_s_at\"                \n",
+       "[29149] \"220248_x_at\"                 \"217830_s_at\"                \n",
+       "[29151] \"217831_s_at\"                 \"216712_at\"                  \n",
+       "[29153] \"220214_at\"                   \"216907_x_at\"                \n",
+       "[29155] \"216676_x_at\"                 \"218996_at\"                  \n",
+       "[29157] \"218377_s_at\"                 \"220336_s_at\"                \n",
+       "[29159] \"217095_x_at\"                 \"217088_s_at\"                \n",
+       "[29161] \"218563_at\"                   \"219889_at\"                  \n",
+       "[29163] \"218386_x_at\"                 \"216913_s_at\"                \n",
+       "[29165] \"216360_x_at\"                 \"217082_at\"                  \n",
+       "[29167] \"218206_x_at\"                 \"216907_x_at\"                \n",
+       "[29169] \"218276_s_at\"                 \"216907_x_at\"                \n",
+       "[29171] \"219296_at\"                   \"220336_s_at\"                \n",
+       "[29173] \"218563_at\"                   \"219999_at\"                  \n",
+       "[29175] \"217747_s_at\"                 \"218996_at\"                  \n",
+       "[29177] \"218132_s_at\"                 \"217095_x_at\"                \n",
+       "[29179] \"217088_s_at\"                 \"220129_at\"                  \n",
+       "[29181] \"217272_s_at\"                 \"216258_s_at\"                \n",
+       "[29183] \"216907_x_at\"                 \"217753_s_at\"                \n",
+       "[29185] \"220497_at\"                   \"218285_s_at\"                \n",
+       "[29187] \"217187_at\"                   \"217719_at\"                  \n",
+       "[29189] \"217080_s_at\"                 \"220150_s_at\"                \n",
+       "[29191] \"219108_x_at\"                 \"215693_x_at\"                \n",
+       "[29193] \"219363_s_at\"                 \"215838_at\"                  \n",
+       "[29195] \"218563_at\"                   \"218996_at\"                  \n",
+       "[29197] \"217095_x_at\"                 \"217088_s_at\"                \n",
+       "[29199] \"219000_s_at\"                 \"219667_s_at\"                \n",
+       "[29201] \"219478_at\"                   \"218132_s_at\"                \n",
+       "[29203] \"217747_s_at\"                 \"218049_s_at\"                \n",
+       "[29205] \"220336_s_at\"                 \"218653_at\"                  \n",
+       "[29207] \"216907_x_at\"                 \"220098_at\"                  \n",
+       "[29209] \"217491_x_at\"                 \"218689_at\"                  \n",
+       "[29211] \"216808_at\"                   \"216808_at\"                  \n",
+       "[29213] \"220372_at\"                   \"216676_x_at\"                \n",
+       "[29215] \"217077_s_at\"                 \"218681_s_at\"                \n",
+       "[29217] \"217216_x_at\"                 \"216605_s_at\"                \n",
+       "[29219] \"216512_s_at\"                 \"216513_at\"                  \n",
+       "[29221] \"220482_s_at\"                 \"217407_x_at\"                \n",
+       "[29223] \"216638_s_at\"                 \"215919_s_at\"                \n",
+       "[29225] \"215584_at\"                   \"217126_at\"                  \n",
+       "[29227] \"217538_at\"                   \"218651_s_at\"                \n",
+       "[29229] \"220107_s_at\"                 \"218877_s_at\"                \n",
+       "[29231] \"219453_at\"                   \"218985_at\"                  \n",
+       "[29233] \"220184_at\"                   \"218390_s_at\"                \n",
+       "[29235] \"216428_x_at\"                 \"216907_x_at\"                \n",
+       "[29237] \"218237_s_at\"                 \"219415_at\"                  \n",
+       "[29239] \"218859_s_at\"                 \"217136_at\"                  \n",
+       "[29241] \"219868_s_at\"                 \"216676_x_at\"                \n",
+       "[29243] \"217480_x_at\"                 \"215616_s_at\"                \n",
+       "[29245] \"216023_at\"                   \"218132_s_at\"                \n",
+       "[29247] \"217747_s_at\"                 \"219931_s_at\"                \n",
+       "[29249] \"218858_at\"                   \"218563_at\"                  \n",
+       "[29251] \"218996_at\"                   \"220336_s_at\"                \n",
+       "[29253] \"216907_x_at\"                 \"220188_at\"                  \n",
+       "[29255] \"216486_x_at\"                 \"218771_at\"                  \n",
+       "[29257] \"217095_x_at\"                 \"217088_s_at\"                \n",
+       "[29259] \"215608_at\"                   \"216676_x_at\"                \n",
+       "[29261] \"216907_x_at\"                 \"215726_s_at\"                \n",
+       "[29263] \"216228_s_at\"                 \"220146_at\"                  \n",
+       "[29265] \"220057_at\"                   \"220057_at\"                  \n",
+       "[29267] \"219800_s_at\"                 \"215760_s_at\"                \n",
+       "[29269] \"217365_at\"                   \"217365_at\"                  \n",
+       "[29271] \"217290_at\"                   \"217365_at\"                  \n",
+       "[29273] \"217365_at\"                   \"217273_at\"                  \n",
+       "[29275] \"217365_at\"                   \"218793_s_at\"                \n",
+       "[29277] \"218891_at\"                   \"219586_at\"                  \n",
+       "[29279] \"218505_at\"                   \"215838_at\"                  \n",
+       "[29281] \"217095_x_at\"                 \"217088_s_at\"                \n",
+       "[29283] \"218041_x_at\"                 \"216010_x_at\"                \n",
+       "[29285] \"216471_x_at\"                 \"218042_at\"                  \n",
+       "[29287] \"218801_at\"                   \"216907_x_at\"                \n",
+       "[29289] \"218132_s_at\"                 \"220336_s_at\"                \n",
+       "[29291] \"216192_at\"                   \"218996_at\"                  \n",
+       "[29293] \"218879_s_at\"                 \"218563_at\"                  \n",
+       "[29295] \"217000_at\"                   \"217142_at\"                  \n",
+       "[29297] \"217747_s_at\"                 \"218207_s_at\"                \n",
+       "[29299] \"219908_at\"                   \"215984_s_at\"                \n",
+       "[29301] \"217622_at\"                   \"219477_s_at\"                \n",
+       "[29303] \"220002_at\"                   \"219522_at\"                  \n",
+       "[29305] \"218563_at\"                   \"217095_x_at\"                \n",
+       "[29307] \"217088_s_at\"                 \"218285_s_at\"                \n",
+       "[29309] \"218132_s_at\"                 \"217747_s_at\"                \n",
+       "[29311] \"220336_s_at\"                 \"218996_at\"                  \n",
+       "[29313] \"216953_s_at\"                 \"219725_at\"                  \n",
+       "[29315] \"217976_s_at\"                 \"220063_at\"                  \n",
+       "[29317] \"216676_x_at\"                 \"219229_at\"                  \n",
+       "[29319] \"218132_s_at\"                 \"220336_s_at\"                \n",
+       "[29321] \"217095_x_at\"                 \"217088_s_at\"                \n",
+       "[29323] \"220055_at\"                   \"217747_s_at\"                \n",
+       "[29325] \"218996_at\"                   \"219541_at\"                  \n",
+       "[29327] \"218563_at\"                   \"219541_at\"                  \n",
+       "[29329] \"218494_s_at\"                 \"219361_s_at\"                \n",
+       "[29331] \"219393_s_at\"                 \"217982_s_at\"                \n",
+       "[29333] \"220374_at\"                   \"220336_s_at\"                \n",
+       "[29335] \"217095_x_at\"                 \"217088_s_at\"                \n",
+       "[29337] \"217747_s_at\"                 \"218132_s_at\"                \n",
+       "[29339] \"218996_at\"                   \"218752_at\"                  \n",
+       "[29341] \"218563_at\"                   \"216907_x_at\"                \n",
+       "[29343] \"218190_s_at\"                 \"216218_s_at\"                \n",
+       "[29345] \"216217_at\"                   \"216473_x_at\"                \n",
+       "[29347] \"216058_s_at\"                 \"218842_at\"                  \n",
+       "[29349] \"218094_s_at\"                 \"218340_s_at\"                \n",
+       "[29351] \"220086_at\"                   \"216457_s_at\"                \n",
+       "[29353] \"216473_x_at\"                 \"218264_at\"                  \n",
+       "[29355] \"215608_at\"                   \"220227_at\"                  \n",
+       "[29357] \"218145_at\"                   \"219747_at\"                  \n",
+       "[29359] \"217271_at\"                   \"218328_at\"                  \n",
+       "[29361] \"219244_s_at\"                 \"219641_at\"                  \n",
+       "[29363] \"220483_s_at\"                 \"217367_s_at\"                \n",
+       "[29365] \"216572_at\"                   \"217202_s_at\"                \n",
+       "[29367] \"217203_at\"                   \"216483_s_at\"                \n",
+       "[29369] \"216729_at\"                   \"218564_at\"                  \n",
+       "[29371] \"218614_at\"                   \"217487_x_at\"                \n",
+       "[29373] \"218244_at\"                   \"218896_s_at\"                \n",
+       "[29375] \"216154_at\"                   \"219244_s_at\"                \n",
+       "[29377] \"218208_at\"                   \"219958_at\"                  \n",
+       "[29379] \"219525_at\"                   \"219441_s_at\"                \n",
+       "[29381] \"216346_at\"                   \"218563_at\"                  \n",
+       "[29383] \"219948_x_at\"                 \"218706_s_at\"                \n",
+       "[29385] \"217747_s_at\"                 \"218996_at\"                  \n",
+       "[29387] \"216428_x_at\"                 \"216185_at\"                  \n",
+       "[29389] \"216282_x_at\"                 \"217187_at\"                  \n",
+       "[29391] \"216402_at\"                   \"220336_s_at\"                \n",
+       "[29393] \"217428_s_at\"                 \"218364_at\"                  \n",
+       "[29395] \"217871_s_at\"                 \"217871_s_at\"                \n",
+       "[29397] \"215892_at\"                   \"216034_at\"                  \n",
+       "[29399] \"215917_at\"                   \"217024_x_at\"                \n",
+       "[29401] \"215881_x_at\"                 \"216471_x_at\"                \n",
+       "[29403] \"218132_s_at\"                 \"217568_at\"                  \n",
+       "[29405] \"216471_x_at\"                 \"220413_at\"                  \n",
+       "[29407] \"220411_x_at\"                 \"217461_x_at\"                \n",
+       "[29409] \"219415_at\"                   \"217702_at\"                  \n",
+       "[29411] \"218326_s_at\"                 \"216234_s_at\"                \n",
+       "[29413] \"217095_x_at\"                 \"217088_s_at\"                \n",
+       "[29415] \"218115_at\"                   \"219145_at\"                  \n",
+       "[29417] \"220326_s_at\"                 \"215838_at\"                  \n",
+       "[29419] \"215920_s_at\"                 \"216475_at\"                  \n",
+       "[29421] \"219580_s_at\"                 \"216907_x_at\"                \n",
+       "[29423] \"219318_x_at\"                 \"217760_at\"                  \n",
+       "[29425] \"217759_at\"                   \"218730_s_at\"                \n",
+       "[29427] \"216562_at\"                   \"216551_x_at\"                \n",
+       "[29429] \"216272_x_at\"                 \"216271_x_at\"                \n",
+       "[29431] \"215969_at\"                   \"219087_at\"                  \n",
+       "[29433] \"219977_at\"                   \"217365_at\"                  \n",
+       "[29435] \"219314_s_at\"                 \"217365_at\"                  \n",
+       "[29437] \"217365_at\"                   \"219383_at\"                  \n",
+       "[29439] \"217365_at\"                   \"217947_at\"                  \n",
+       "[29441] \"217365_at\"                   \"217365_at\"                  \n",
+       "[29443] \"217273_at\"                   \"216323_x_at\"                \n",
+       "[29445] \"217556_at\"                   \"216899_s_at\"                \n",
+       "[29447] \"217815_at\"                   \"219833_s_at\"                \n",
+       "[29449] \"218072_at\"                   \"215882_at\"                  \n",
+       "[29451] \"217871_s_at\"                 \"217871_s_at\"                \n",
+       "[29453] \"218504_at\"                   \"220119_at\"                  \n",
+       "[29455] \"220120_s_at\"                 \"218848_at\"                  \n",
+       "[29457] \"220534_at\"                   \"217329_x_at\"                \n",
+       "[29459] \"216299_s_at\"                 \"220372_at\"                  \n",
+       "[29461] \"219600_s_at\"                 \"217480_x_at\"                \n",
+       "[29463] \"216383_at\"                   \"218982_s_at\"                \n",
+       "[29465] \"216481_at\"                   \"219941_at\"                  \n",
+       "[29467] \"218857_s_at\"                 \"217960_s_at\"                \n",
+       "[29469] \"215809_at\"                   \"217945_at\"                  \n",
+       "[29471] \"218708_at\"                   \"215683_at\"                  \n",
+       "[29473] \"217308_at\"                   \"219419_at\"                  \n",
+       "[29475] \"219616_at\"                   \"218124_at\"                  \n",
+       "[29477] \"217233_at\"                   \"218661_at\"                  \n",
+       "[29479] \"216824_at\"                   \"219778_at\"                  \n",
+       "[29481] \"217761_at\"                   \"220165_at\"                  \n",
+       "[29483] \"218523_at\"                   \"218191_s_at\"                \n",
+       "[29485] \"219489_s_at\"                 \"219325_s_at\"                \n",
+       "[29487] \"218198_at\"                   \"219698_s_at\"                \n",
+       "[29489] \"218981_at\"                   \"217285_at\"                  \n",
+       "[29491] \"217345_at\"                   \"219103_at\"                  \n",
+       "[29493] \"216517_at\"                   \"217480_x_at\"                \n",
+       "[29495] \"216473_x_at\"                 \"218671_s_at\"                \n",
+       "[29497] \"219730_at\"                   \"217758_s_at\"                \n",
+       "[29499] \"215603_x_at\"                 \"219388_at\"                  \n",
+       "[29501] \"218603_at\"                   \"220016_at\"                  \n",
+       "[29503] \"220069_at\"                   \"216239_at\"                  \n",
+       "[29505] \"218856_at\"                   \"219191_s_at\"                \n",
+       "[29507] \"220148_at\"                   \"215822_x_at\"                \n",
+       "[29509] \"215822_x_at\"                 \"218701_at\"                  \n",
+       "[29511] \"219517_at\"                   \"219518_s_at\"                \n",
+       "[29513] \"220364_at\"                   \"220353_at\"                  \n",
+       "[29515] \"219065_s_at\"                 \"219517_at\"                  \n",
+       "[29517] \"219518_s_at\"                 \"220105_at\"                  \n",
+       "[29519] \"216731_s_at\"                 \"219956_at\"                  \n",
+       "[29521] \"217223_s_at\"                 \"219990_at\"                  \n",
+       "[29523] \"220493_at\"                   \"220478_at\"                  \n",
+       "[29525] \"216215_s_at\"                 \"218144_s_at\"                \n",
+       "[29527] \"219902_at\"                   \"220373_at\"                  \n",
+       "[29529] \"220069_at\"                   \"219006_at\"                  \n",
+       "[29531] \"219926_at\"                   \"218969_at\"                  \n",
+       "[29533] \"219748_at\"                   \"218535_s_at\"                \n",
+       "[29535] \"218854_at\"                   \"219276_x_at\"                \n",
+       "[29537] \"217719_at\"                   \"219307_at\"                  \n",
+       "[29539] \"218969_at\"                   \"220014_at\"                  \n",
+       "[29541] \"218453_s_at\"                 \"216473_x_at\"                \n",
+       "[29543] \"219040_at\"                   \"220376_at\"                  \n",
+       "[29545] \"217746_s_at\"                 \"216473_x_at\"                \n",
+       "[29547] \"216473_x_at\"                 \"216473_x_at\"                \n",
+       "[29549] \"216473_x_at\"                 \"216473_x_at\"                \n",
+       "[29551] \"216473_x_at\"                 \"216473_x_at\"                \n",
+       "[29553] \"216473_x_at\"                 \"216473_x_at\"                \n",
+       "[29555] \"216473_x_at\"                 \"216473_x_at\"                \n",
+       "[29557] \"216473_x_at\"                 \"216473_x_at\"                \n",
+       "[29559] \"216473_x_at\"                 \"216473_x_at\"                \n",
+       "[29561] \"216473_x_at\"                 \"216473_x_at\"                \n",
+       "[29563] \"216473_x_at\"                 \"216473_x_at\"                \n",
+       "[29565] \"216473_x_at\"                 \"216473_x_at\"                \n",
+       "[29567] \"216473_x_at\"                 \"216473_x_at\"                \n",
+       "[29569] \"216473_x_at\"                 \"216473_x_at\"                \n",
+       "[29571] \"216473_x_at\"                 \"216473_x_at\"                \n",
+       "[29573] \"216473_x_at\"                 \"216473_x_at\"                \n",
+       "[29575] \"216473_x_at\"                 \"216473_x_at\"                \n",
+       "[29577] \"216473_x_at\"                 \"216473_x_at\"                \n",
+       "[29579] \"216473_x_at\"                 \"216473_x_at\"                \n",
+       "[29581] \"216473_x_at\"                 \"216473_x_at\"                \n",
+       "[29583] \"216473_x_at\"                 \"216473_x_at\"                \n",
+       "[29585] \"216473_x_at\"                 \"216473_x_at\"                \n",
+       "[29587] \"216473_x_at\"                 \"216473_x_at\"                \n",
+       "[29589] \"216473_x_at\"                 \"216473_x_at\"                \n",
+       "[29591] \"216473_x_at\"                 \"216473_x_at\"                \n",
+       "[29593] \"216473_x_at\"                 \"216473_x_at\"                \n",
+       "[29595] \"216473_x_at\"                 \"216473_x_at\"                \n",
+       "[29597] \"216473_x_at\"                 \"216473_x_at\"                \n",
+       "[29599] \"216473_x_at\"                 \"216473_x_at\"                \n",
+       "[29601] \"216473_x_at\"                 \"216473_x_at\"                \n",
+       "[29603] \"216473_x_at\"                 \"216473_x_at\"                \n",
+       "[29605] \"216473_x_at\"                 \"216473_x_at\"                \n",
+       "[29607] \"216473_x_at\"                 \"216473_x_at\"                \n",
+       "[29609] \"216473_x_at\"                 \"216473_x_at\"                \n",
+       "[29611] \"216473_x_at\"                 \"216473_x_at\"                \n",
+       "[29613] \"216473_x_at\"                 \"216473_x_at\"                \n",
+       "[29615] \"216473_x_at\"                 \"216473_x_at\"                \n",
+       "[29617] \"216473_x_at\"                 \"216473_x_at\"                \n",
+       "[29619] \"216473_x_at\"                 \"216473_x_at\"                \n",
+       "[29621] \"216473_x_at\"                 \"216473_x_at\"                \n",
+       "[29623] \"216473_x_at\"                 \"216473_x_at\"                \n",
+       "[29625] \"216473_x_at\"                 \"216473_x_at\"                \n",
+       "[29627] \"216473_x_at\"                 \"216473_x_at\"                \n",
+       "[29629] \"216473_x_at\"                 \"216473_x_at\"                \n",
+       "[29631] \"216473_x_at\"                 \"216473_x_at\"                \n",
+       "[29633] \"216473_x_at\"                 \"216473_x_at\"                \n",
+       "[29635] \"216473_x_at\"                 \"216473_x_at\"                \n",
+       "[29637] \"216473_x_at\"                 \"216473_x_at\"                \n",
+       "[29639] \"216473_x_at\"                 \"216473_x_at\"                \n",
+       "[29641] \"216473_x_at\"                 \"216473_x_at\"                \n",
+       "[29643] \"216473_x_at\"                 \"216473_x_at\"                \n",
+       "[29645] \"216473_x_at\"                 \"216473_x_at\"                \n",
+       "[29647] \"216473_x_at\"                 \"216473_x_at\"                \n",
+       "[29649] \"216473_x_at\"                 \"216473_x_at\"                \n",
+       "[29651] \"216473_x_at\"                 \"216473_x_at\"                \n",
+       "[29653] \"216473_x_at\"                 \"216473_x_at\"                \n",
+       "[29655] \"216473_x_at\"                 \"216473_x_at\"                \n",
+       "[29657] \"216473_x_at\"                 \"216473_x_at\"                \n",
+       "[29659] \"216473_x_at\"                 \"216473_x_at\"                \n",
+       "[29661] \"216473_x_at\"                 \"216473_x_at\"                \n",
+       "[29663] \"216473_x_at\"                 \"216473_x_at\"                \n",
+       "[29665] \"216473_x_at\"                 \"216473_x_at\"                \n",
+       "[29667] \"216473_x_at\"                 \"216473_x_at\"                \n",
+       "[29669] \"216473_x_at\"                 \"216473_x_at\"                \n",
+       "[29671] \"216473_x_at\"                 \"216473_x_at\"                \n",
+       "[29673] \"216473_x_at\"                 \"216473_x_at\"                \n",
+       "[29675] \"216473_x_at\"                 \"216473_x_at\"                \n",
+       "[29677] \"216473_x_at\"                 \"216473_x_at\"                \n",
+       "[29679] \"216473_x_at\"                 \"216473_x_at\"                \n",
+       "[29681] \"216473_x_at\"                 \"216473_x_at\"                \n",
+       "[29683] \"216473_x_at\"                 \"216473_x_at\"                \n",
+       "[29685] \"216473_x_at\"                 \"216473_x_at\"                \n",
+       "[29687] \"216473_x_at\"                 \"216473_x_at\"                \n",
+       "[29689] \"216473_x_at\"                 \"216473_x_at\"                \n",
+       "[29691] \"216473_x_at\"                 \"216473_x_at\"                \n",
+       "[29693] \"216473_x_at\"                 \"216473_x_at\"                \n",
+       "[29695] \"216473_x_at\"                 \"216473_x_at\"                \n",
+       "[29697] \"216473_x_at\"                 \"216473_x_at\"                \n",
+       "[29699] \"216473_x_at\"                 \"216473_x_at\"                \n",
+       "[29701] \"216473_x_at\"                 \"216473_x_at\"                \n",
+       "[29703] \"215812_s_at\"                 \"216473_x_at\"                \n",
+       "[29705] \"220275_at\"                   \"217744_s_at\"                \n",
+       "[29707] \"216309_x_at\"                 \"216473_x_at\"                \n",
+       "[29709] \"218090_s_at\"                 \"216473_x_at\"                \n",
+       "[29711] \"217228_s_at\"                 \"215823_x_at\"                \n",
+       "[29713] \"215823_x_at\"                 \"220515_at\"                  \n",
+       "[29715] \"219652_s_at\"                 \"217499_x_at\"                \n",
+       "[29717] \"217129_at\"                   \"216414_at\"                  \n",
+       "[29719] \"217980_s_at\"                 \"218785_s_at\"                \n",
+       "[29721] \"219399_at\"                   \"217059_at\"                  \n",
+       "[29723] \"219786_at\"                   \"216473_x_at\"                \n",
+       "[29725] \"215860_at\"                   \"217399_s_at\"                \n",
+       "[29727] \"218982_s_at\"                 \"218121_at\"                  \n",
+       "[29729] \"218120_s_at\"                 \"216473_x_at\"                \n",
+       "[29731] \"217499_x_at\"                 \"218802_at\"                  \n",
+       "[29733] \"220436_at\"                   \"217349_s_at\"                \n",
+       "[29735] \"219948_x_at\"                 \"219402_s_at\"                \n",
+       "[29737] \"218172_s_at\"                 \"220431_at\"                  \n",
+       "[29739] \"217684_at\"                   \"220429_at\"                  \n",
+       "[29741] \"220245_at\"                   \"217690_at\"                  \n",
+       "[29743] \"215641_at\"                   \"218988_at\"                  \n",
+       "[29745] \"220396_at\"                   \"215946_x_at\"                \n",
+       "[29747] \"215946_x_at\"                 \"217277_at\"                  \n",
+       "[29749] \"220112_at\"                   \"219180_s_at\"                \n",
+       "[29751] \"218405_at\"                   \"217366_at\"                  \n",
+       "[29753] \"216473_x_at\"                 \"219941_at\"                  \n",
+       "[29755] \"218327_s_at\"                 \"218043_s_at\"                \n",
+       "[29757] \"219634_at\"                   \"218492_s_at\"                \n",
+       "[29759] \"219982_s_at\"                 \"219982_s_at\"                \n",
+       "[29761] \"216081_at\"                   \"216267_s_at\"                \n",
+       "[29763] \"218021_at\"                   \"218980_at\"                  \n",
+       "[29765] \"216149_at\"                   \"219982_s_at\"                \n",
+       "[29767] \"217123_x_at\"                 \"217123_x_at\"                \n",
+       "[29769] \"215996_at\"                   \"218750_at\"                  \n",
+       "[29771] \"218500_at\"                   \"218899_s_at\"                \n",
+       "[29773] \"215884_s_at\"                 \"216389_s_at\"                \n",
+       "[29775] \"217971_at\"                   \"218066_at\"                  \n",
+       "[29777] \"218936_s_at\"                 \"219193_at\"                  \n",
+       "[29779] \"217678_at\"                   \"219047_s_at\"                \n",
+       "[29781] \"217949_s_at\"                 \"217949_s_at\"                \n",
+       "[29783] \"218910_at\"                   \"220082_at\"                  \n",
+       "[29785] \"217588_at\"                   \"218705_s_at\"                \n",
+       "[29787] \"218187_s_at\"                 \"219436_s_at\"                \n",
+       "[29789] \"220362_at\"                   \"220144_s_at\"                \n",
+       "[29791] \"217334_at\"                   \"216473_x_at\"                \n",
+       "[29793] \"219860_at\"                   \"216715_at\"                  \n",
+       "[29795] \"217115_at\"                   \"217408_at\"                  \n",
+       "[29797] \"218836_at\"                   \"218836_at\"                  \n",
+       "[29799] \"219060_at\"                   \"219203_at\"                  \n",
+       "[29801] \"217497_at\"                   \"219240_s_at\"                \n",
+       "[29803] \"217334_at\"                   \"220362_at\"                  \n",
+       "[29805] \"219529_at\"                   \"220065_at\"                  \n",
+       "[29807] \"217696_at\"                   \"219114_at\"                  \n",
+       "[29809] \"216423_at\"                   \"218086_at\"                  \n",
+       "[29811] \"216459_x_at\"                 \"220447_at\"                  \n",
+       "[29813] \"216818_s_at\"                 \"217413_s_at\"                \n",
+       "[29815] \"219354_at\"                   \"218305_at\"                  \n",
+       "[29817] \"220257_x_at\"                 \"219916_s_at\"                \n",
+       "[29819] \"218555_at\"                   \"218745_x_at\"                \n",
+       "[29821] \"216032_s_at\"                 \"216473_x_at\"                \n",
+       "[29823] \"217081_at\"                   \"217046_s_at\"                \n",
+       "[29825] \"215883_at\"                   \"218782_s_at\"                \n",
+       "[29827] \"217380_s_at\"                 \"218497_s_at\"                \n",
+       "[29829] \"216473_x_at\"                 \"220275_at\"                  \n",
+       "[29831] \"219962_at\"                   \"216208_s_at\"                \n",
+       "[29833] \"218602_s_at\"                 \"219773_at\"                  \n",
+       "[29835] \"217204_at\"                   \"216473_x_at\"                \n",
+       "[29837] \"216473_x_at\"                 \"217478_s_at\"                \n",
+       "[29839] \"215982_s_at\"                 \"219620_x_at\"                \n",
+       "[29841] \"217761_at\"                   \"217711_at\"                  \n",
+       "[29843] \"217835_x_at\"                 \"215985_at\"                  \n",
+       "[29845] \"218768_at\"                   \"215985_at\"                  \n",
+       "[29847] \"217047_s_at\"                 \"217046_s_at\"                \n",
+       "[29849] \"219187_at\"                   \"217408_at\"                  \n",
+       "[29851] \"217456_x_at\"                 \"216516_at\"                  \n",
+       "[29853] \"220362_at\"                   \"219982_s_at\"                \n",
+       "[29855] \"219982_s_at\"                 \"217546_at\"                  \n",
+       "[29857] \"220487_at\"                   \"218836_at\"                  \n",
+       "[29859] \"218836_at\"                   \"218874_s_at\"                \n",
+       "[29861] \"217165_x_at\"                 \"217313_at\"                  \n",
+       "[29863] \"215599_at\"                   \"216333_x_at\"                \n",
+       "[29865] \"216339_s_at\"                 \"217413_s_at\"                \n",
+       "[29867] \"219860_at\"                   \"215599_at\"                  \n",
+       "[29869] \"218836_at\"                   \"218836_at\"                  \n",
+       "[29871] \"217123_x_at\"                 \"217123_x_at\"                \n",
+       "[29873] \"218305_at\"                   \"215985_at\"                  \n",
+       "[29875] \"218173_s_at\"                 \"218739_at\"                  \n",
+       "[29877] \"218496_at\"                   \"218497_s_at\"                \n",
+       "[29879] \"217081_at\"                   \"216817_s_at\"                \n",
+       "[29881] \"220498_at\"                   \"220501_at\"                  \n",
+       "[29883] \"218875_s_at\"                 \"219122_s_at\"                \n",
+       "[29885] \"218572_at\"                   \"216333_x_at\"                \n",
+       "[29887] \"216339_s_at\"                 \"217413_s_at\"                \n",
+       "[29889] \"217456_x_at\"                 \"219290_x_at\"                \n",
+       "[29891] \"218571_s_at\"                 \"218572_at\"                  \n",
+       "[29893] \"218472_s_at\"                 \"217478_s_at\"                \n",
+       "[29895] \"218571_s_at\"                 \"218572_at\"                  \n",
+       "[29897] \"216818_s_at\"                 \"216631_s_at\"                \n",
+       "[29899] \"216993_s_at\"                 \"217478_s_at\"                \n",
+       "[29901] \"218781_at\"                   \"217547_x_at\"                \n",
+       "[29903] \"216817_s_at\"                 \"217408_at\"                  \n",
+       "[29905] \"217314_at\"                   \"220327_at\"                  \n",
+       "[29907] \"216631_s_at\"                 \"218874_s_at\"                \n",
+       "[29909] \"216300_x_at\"                 \"216459_x_at\"                \n",
+       "[29911] \"217898_at\"                   \"219187_at\"                  \n",
+       "[29913] \"217334_at\"                   \"216818_s_at\"                \n",
+       "[29915] \"219916_s_at\"                 \"216818_s_at\"                \n",
+       "[29917] \"218791_s_at\"                 \"217314_at\"                  \n",
+       "[29919] \"220130_x_at\"                 \"219901_at\"                  \n",
+       "[29921] \"218974_at\"                   \"215781_s_at\"                \n",
+       "[29923] \"216993_s_at\"                 \"219124_at\"                  \n",
+       "[29925] \"220130_x_at\"                 \"219057_at\"                  \n",
+       "[29927] \"216388_s_at\"                 \"220130_x_at\"                \n",
+       "[29929] \"219916_s_at\"                 \"216564_at\"                  \n",
+       "[29931] \"218874_s_at\"                 \"217436_x_at\"                \n",
+       "[29933] \"217436_x_at\"                 \"216815_at\"                  \n",
+       "[29935] \"219247_s_at\"                 \"220357_s_at\"                \n",
+       "[29937] \"216526_x_at\"                 \"216459_x_at\"                \n",
+       "[29939] \"216526_x_at\"                 \"216818_s_at\"                \n",
+       "[29941] \"219412_at\"                   \"216575_at\"                  \n",
+       "[29943] \"217436_x_at\"                 \"217436_x_at\"                \n",
+       "[29945] \"217334_at\"                   \"220343_at\"                  \n",
+       "[29947] \"219916_s_at\"                 \"215777_at\"                  \n",
+       "[29949] \"219353_at\"                   \"217081_at\"                  \n",
+       "[29951] \"218826_at\"                   \"218184_at\"                  \n",
+       "[29953] \"219860_at\"                   \"216818_s_at\"                \n",
+       "[29955] \"216339_s_at\"                 \"216818_s_at\"                \n",
+       "[29957] \"219199_at\"                   \"217555_at\"                  \n",
+       "[29959] \"219126_at\"                   \"217081_at\"                  \n",
+       "[29961] \"218998_at\"                   \"218598_at\"                  \n",
+       "[29963] \"218836_at\"                   \"218836_at\"                  \n",
+       "[29965] \"217456_x_at\"                 \"219425_at\"                  \n",
+       "[29967] \"216179_x_at\"                 \"216869_at\"                  \n",
+       "[29969] \"216902_s_at\"                 \"216908_x_at\"                \n",
+       "[29971] \"216817_s_at\"                 \"216902_s_at\"                \n",
+       "[29973] \"216908_x_at\"                 \"219750_at\"                  \n",
+       "[29975] \"217613_at\"                   \"220436_at\"                  \n",
+       "[29977] \"215935_at\"                   \"216631_s_at\"                \n",
+       "[29979] \"217287_s_at\"                 \"218317_x_at\"                \n",
+       "[29981] \"216981_x_at\"                 \"216631_s_at\"                \n",
+       "[29983] \"217478_s_at\"                 \"215982_s_at\"                \n",
+       "[29985] \"216818_s_at\"                 \"220202_s_at\"                \n",
+       "[29987] \"220201_at\"                   \"216993_s_at\"                \n",
+       "[29989] \"217046_s_at\"                 \"218499_at\"                  \n",
+       "[29991] \"216208_s_at\"                 \"218097_s_at\"                \n",
+       "[29993] \"217249_x_at\"                 \"220152_at\"                  \n",
+       "[29995] \"219745_at\"                   \"215985_at\"                  \n",
+       "[29997] \"219716_at\"                   \"220478_at\"                  \n",
+       "[29999] \"219623_at\"                   \"218154_at\"                  \n",
+       "[30001] \"216817_s_at\"                 \"218944_at\"                  \n",
+       "[30003] \"217436_x_at\"                 \"217436_x_at\"                \n",
+       "[30005] \"218668_s_at\"                 \"218669_at\"                  \n",
+       "[30007] \"217436_x_at\"                 \"217436_x_at\"                \n",
+       "[30009] \"219304_s_at\"                 \"219421_at\"                  \n",
+       "[30011] \"219677_at\"                   \"217467_at\"                  \n",
+       "[30013] \"218517_at\"                   \"217524_x_at\"                \n",
+       "[30015] \"215732_s_at\"                 \"216580_at\"                  \n",
+       "[30017] \"217244_at\"                   \"219008_at\"                  \n",
+       "[30019] \"220044_x_at\"                 \"217800_s_at\"                \n",
+       "[30021] \"216916_s_at\"                 \"219341_at\"                  \n",
+       "[30023] \"219340_s_at\"                 \"219020_at\"                  \n",
+       "[30025] \"217770_at\"                   \"219722_s_at\"                \n",
+       "[30027] \"216948_at\"                   \"219813_at\"                  \n",
+       "[30029] \"219055_at\"                   \"218815_s_at\"                \n",
+       "[30031] \"219732_at\"                   \"220334_at\"                  \n",
+       "[30033] \"217204_at\"                   \"219975_x_at\"                \n",
+       "[30035] \"219302_s_at\"                 \"219300_s_at\"                \n",
+       "[30037] \"219301_s_at\"                 \"217081_at\"                  \n",
+       "[30039] \"218874_s_at\"                 \"217911_s_at\"                \n",
+       "[30041] \"217408_at\"                   \"216818_s_at\"                \n",
+       "[30043] \"218715_at\"                   \"216339_s_at\"                \n",
+       "[30045] \"218825_at\"                   \"216817_s_at\"                \n",
+       "[30047] \"217306_at\"                   \"219129_s_at\"                \n",
+       "[30049] \"218317_x_at\"                 \"217334_at\"                  \n",
+       "[30051] \"219916_s_at\"                 \"218771_at\"                  \n",
+       "[30053] \"217478_s_at\"                 \"217393_x_at\"                \n",
+       "[30055] \"217753_s_at\"                 \"219187_at\"                  \n",
+       "[30057] \"216522_at\"                   \"216490_x_at\"                \n",
+       "[30059] \"219860_at\"                   \"218317_x_at\"                \n",
+       "[30061] \"218317_x_at\"                 \"217046_s_at\"                \n",
+       "[30063] \"217750_s_at\"                 \"216993_s_at\"                \n",
+       "[30065] \"220221_at\"                   \"218557_at\"                  \n",
+       "[30067] \"218026_at\"                   \"216333_x_at\"                \n",
+       "[30069] \"217413_s_at\"                 \"216339_s_at\"                \n",
+       "[30071] \"216733_s_at\"                 \"216631_s_at\"                \n",
+       "[30073] \"216208_s_at\"                 \"218755_at\"                  \n",
+       "[30075] \"216021_s_at\"                 \"219602_s_at\"                \n",
+       "[30077] \"219965_s_at\"                 \"219828_at\"                  \n",
+       "[30079] \"219549_s_at\"                 \"220362_at\"                  \n",
+       "[30081] \"218933_at\"                   \"217456_x_at\"                \n",
+       "[30083] \"219806_s_at\"                 \"218187_s_at\"                \n",
+       "[30085] \"218439_s_at\"                 \"216620_s_at\"                \n",
+       "[30087] \"220252_x_at\"                 \"218962_s_at\"                \n",
+       "[30089] \"218730_s_at\"                 \"219087_at\"                  \n",
+       "[30091] \"215982_s_at\"                 \"218316_at\"                  \n",
+       "[30093] \"220538_at\"                   \"215985_at\"                  \n",
+       "[30095] \"219264_s_at\"                 \"219264_s_at\"                \n",
+       "[30097] \"219264_s_at\"                 \"218244_at\"                  \n",
+       "[30099] \"217995_at\"                   \"218427_at\"                  \n",
+       "[30101] \"220263_at\"                   \"220138_at\"                  \n",
+       "[30103] \"217951_s_at\"                 \"217953_at\"                  \n",
+       "[30105] \"217952_x_at\"                 \"215718_s_at\"                \n",
+       "[30107] \"217954_s_at\"                 \"219112_at\"                  \n",
+       "[30109] \"216985_s_at\"                 \"219785_s_at\"                \n",
+       "[30111] \"219784_at\"                   \"216663_s_at\"                \n",
+       "[30113] \"217753_s_at\"                 \"218259_at\"                  \n",
+       "[30115] \"216818_s_at\"                 \"216589_at\"                  \n",
+       "[30117] \"220141_at\"                   \"219189_at\"                  \n",
+       "[30119] \"215955_x_at\"                 \"216344_at\"                  \n",
+       "[30121] \"218628_at\"                   \"216459_x_at\"                \n",
+       "[30123] \"218568_at\"                   \"216818_s_at\"                \n",
+       "[30125] \"219317_at\"                   \"218513_at\"                  \n",
+       "[30127] \"220414_at\"                   \"218935_at\"                  \n",
+       "[30129] \"218862_at\"                   \"220398_at\"                  \n",
+       "[30131] \"219160_s_at\"                 \"216333_x_at\"                \n",
+       "[30133] \"216339_s_at\"                 \"219916_s_at\"                \n",
+       "[30135] \"217456_x_at\"                 \"217334_at\"                  \n",
+       "[30137] \"217521_at\"                   \"216804_s_at\"                \n",
+       "[30139] \"217210_at\"                   \"216459_x_at\"                \n",
+       "[30141] \"215985_at\"                   \"217436_x_at\"                \n",
+       "[30143] \"217436_x_at\"                 \"218542_at\"                  \n",
+       "[30145] \"218836_at\"                   \"218836_at\"                  \n",
+       "[30147] \"219215_s_at\"                 \"218836_at\"                  \n",
+       "[30149] \"218836_at\"                   \"217408_at\"                  \n",
+       "[30151] \"218015_s_at\"                 \"219589_s_at\"                \n",
+       "[30153] \"218874_s_at\"                 \"218667_at\"                  \n",
+       "[30155] \"216106_at\"                   \"218679_s_at\"                \n",
+       "[30157] \"217334_at\"                   \"220325_at\"                  \n",
+       "[30159] \"219235_s_at\"                 \"219264_s_at\"                \n",
+       "[30161] \"219264_s_at\"                 \"219264_s_at\"                \n",
+       "[30163] \"219929_s_at\"                 \"220500_s_at\"                \n",
+       "[30165] \"219151_s_at\"                 \"220285_at\"                  \n",
+       "[30167] \"216578_at\"                   \"218874_s_at\"                \n",
+       "[30169] \"216565_x_at\"                 \"218615_s_at\"                \n",
+       "[30171] \"216818_s_at\"                 \"216857_at\"                  \n",
+       "[30173] \"217176_s_at\"                 \"216817_s_at\"                \n",
+       "[30175] \"217974_at\"                   \"216470_x_at\"                \n",
+       "[30177] \"216916_s_at\"                 \"216470_x_at\"                \n",
+       "[30179] \"216631_s_at\"                 \"216666_at\"                  \n",
+       "[30181] \"216060_s_at\"                 \"216470_x_at\"                \n",
+       "[30183] \"217046_s_at\"                 \"219212_at\"                  \n",
+       "[30185] \"217060_at\"                   \"216397_s_at\"                \n",
+       "[30187] \"215901_at\"                   \"219920_s_at\"                \n",
+       "[30189] \"220175_s_at\"                 \"216597_at\"                  \n",
+       "[30191] \"216597_at\"                   \"219016_at\"                  \n",
+       "[30193] \"220084_at\"                   \"216818_s_at\"                \n",
+       "[30195] \"219888_at\"                   \"220317_at\"                  \n",
+       "[30197] \"216574_s_at\"                 \"217753_s_at\"                \n",
+       "[30199] \"218151_x_at\"                 \"220022_at\"                  \n",
+       "[30201] \"215982_s_at\"                 \"216993_s_at\"                \n",
+       "[30203] \"217370_x_at\"                 \"217405_x_at\"                \n",
+       "[30205] \"220430_at\"                   \"219730_at\"                  \n",
+       "[30207] \"217284_x_at\"                 \"217276_x_at\"                \n",
+       "[30209] \"218889_at\"                   \"219584_at\"                  \n",
+       "[30211] \"217471_at\"                   \"216818_s_at\"                \n",
+       "[30213] \"217046_s_at\"                 \"218642_s_at\"                \n",
+       "[30215] \"216993_s_at\"                 \"218218_at\"                  \n",
+       "[30217] \"219431_at\"                   \"217456_x_at\"                \n",
+       "[30219] \"217085_at\"                   \"217478_s_at\"                \n",
+       "[30221] \"218451_at\"                   \"215985_at\"                  \n",
+       "[30223] \"217342_x_at\"                 \"218671_s_at\"                \n",
+       "[30225] \"218366_x_at\"                 \"216631_s_at\"                \n",
+       "[30227] \"218368_s_at\"                 \"219488_at\"                  \n",
+       "[30229] \"216817_s_at\"                 \"217478_s_at\"                \n",
+       "[30231] \"218537_at\"                   \"217081_at\"                  \n",
+       "[30233] \"219916_s_at\"                 \"218950_at\"                  \n",
+       "[30235] \"218719_s_at\"                 \"219860_at\"                  \n",
+       "[30237] \"215856_at\"                   \"219136_s_at\"                \n",
+       "[30239] \"219135_s_at\"                 \"219074_at\"                  \n",
+       "[30241] \"216333_x_at\"                 \"216339_s_at\"                \n",
+       "[30243] \"219938_s_at\"                 \"219366_at\"                  \n",
+       "[30245] \"217408_at\"                   \"217371_s_at\"                \n",
+       "[30247] \"215790_at\"                   \"215789_s_at\"                \n",
+       "[30249] \"218947_s_at\"                 \"218394_at\"                  \n",
+       "[30251] \"219438_at\"                   \"219291_at\"                  \n",
+       "[30253] \"216339_s_at\"                 \"215905_s_at\"                \n",
+       "[30255] \"220362_at\"                   \"215935_at\"                  \n",
+       "[30257] \"217436_x_at\"                 \"217436_x_at\"                \n",
+       "[30259] \"219601_s_at\"                 \"219860_at\"                  \n",
+       "[30261] \"220070_at\"                   \"219661_at\"                  \n",
+       "[30263] \"215982_s_at\"                 \"218624_s_at\"                \n",
+       "[30265] \"217436_x_at\"                 \"217436_x_at\"                \n",
+       "[30267] \"217133_x_at\"                 \"218644_at\"                  \n",
+       "[30269] \"220145_at\"                   \"220340_at\"                  \n",
+       "[30271] \"219316_s_at\"                 \"216882_s_at\"                \n",
+       "[30273] \"217585_at\"                   \"218623_at\"                  \n",
+       "[30275] \"218391_at\"                   \"217188_s_at\"                \n",
+       "[30277] \"219001_s_at\"                 \"216321_s_at\"                \n",
+       "[30279] \"219720_s_at\"                 \"218502_s_at\"                \n",
+       "[30281] \"216334_s_at\"                 \"217460_at\"                  \n",
+       "[30283] \"219502_at\"                   \"218032_at\"                  \n",
+       "[30285] \"218033_s_at\"                 \"216169_at\"                  \n",
+       "[30287] \"217355_at\"                   \"217354_s_at\"                \n",
+       "[30289] \"218100_s_at\"                 \"219407_s_at\"                \n",
+       "[30291] \"218886_at\"                   \"220087_at\"                  \n",
+       "[30293] \"215870_s_at\"                 \"215871_at\"                  \n",
+       "[30295] \"218230_at\"                   \"220236_at\"                  \n",
+       "[30297] \"220236_at\"                   \"219444_at\"                  \n",
+       "[30299] \"218017_s_at\"                 \"217775_s_at\"                \n",
+       "[30301] \"217776_at\"                   \"216396_s_at\"                \n",
+       "[30303] \"219523_s_at\"                 \"218951_s_at\"                \n",
+       "[30305] \"220421_at\"                   \"218817_at\"                  \n",
+       "[30307] \"220302_at\"                   \"218776_s_at\"                \n",
+       "[30309] \"216235_s_at\"                 \"215733_x_at\"                \n",
+       "[30311] \"217339_x_at\"                 \"216910_at\"                  \n",
+       "[30313] \"219321_at\"                   \"216916_s_at\"                \n",
+       "[30315] \"218776_s_at\"                 \"219711_at\"                  \n",
+       "[30317] \"219216_at\"                   \"218058_at\"                  \n",
+       "[30319] \"220350_at\"                   \"218855_at\"                  \n",
+       "[30321] \"219925_at\"                   \"219724_s_at\"                \n",
+       "[30323] \"219190_s_at\"                 \"217038_at\"                  \n",
+       "[30325] \"219599_at\"                   \"216590_at\"                  \n",
+       "[30327] \"216639_at\"                   \"217499_x_at\"                \n",
+       "[30329] \"218160_at\"                   \"216622_at\"                  \n",
+       "[30331] \"218163_at\"                   \"219283_at\"                  \n",
+       "[30333] \"215997_s_at\"                 \"220455_at\"                  \n",
+       "[30335] \"220015_at\"                   \"217907_at\"                  \n",
+       "[30337] \"218908_at\"                   \"217239_x_at\"                \n",
+       "[30339] \"215721_at\"                   \"218566_s_at\"                \n",
+       "[30341] \"216491_x_at\"                 \"215761_at\"                  \n",
+       "[30343] \"218088_s_at\"                 \"218339_at\"                  \n",
+       "[30345] \"220237_at\"                   \"218592_s_at\"                \n",
+       "[30347] \"218645_at\"                   \"215887_at\"                  \n",
+       "[30349] \"217650_x_at\"                 \"220423_at\"                  \n",
+       "[30351] \"219284_at\"                   \"219046_s_at\"                \n",
+       "[30353] \"219311_at\"                   \"219755_at\"                  \n",
+       "[30355] \"216215_s_at\"                 \"219807_x_at\"                \n",
+       "[30357] \"217147_s_at\"                 \"217847_s_at\"                \n",
+       "[30359] \"218467_at\"                   \"219157_at\"                  \n",
+       "[30361] \"215826_x_at\"                 \"219669_at\"                  \n",
+       "[30363] \"219509_at\"                   \"220001_at\"                  \n",
+       "[30365] \"219196_at\"                   \"219804_at\"                  \n",
+       "[30367] \"219807_x_at\"                 \"220503_at\"                  \n",
+       "[30369] \"220502_s_at\"                 \"216849_at\"                  \n",
+       "[30371] \"219539_at\"                   \"216064_s_at\"                \n",
+       "[30373] \"218061_at\"                   \"216266_s_at\"                \n",
+       "[30375] \"219237_s_at\"                 \"216345_at\"                  \n",
+       "[30377] \"218827_s_at\"                 \"220099_s_at\"                \n",
+       "[30379] \"219505_at\"                   \"219252_s_at\"                \n",
+       "[30381] \"220486_x_at\"                 \"218750_at\"                  \n",
+       "[30383] \"218750_at\"                   \"218750_at\"                  \n",
+       "[30385] \"219924_s_at\"                 \"219925_at\"                  \n",
+       "[30387] \"219820_at\"                   \"218286_s_at\"                \n",
+       "[30389] \"218304_s_at\"                 \"219433_at\"                  \n",
+       "[30391] \"218436_at\"                   \"218887_at\"                  \n",
+       "[30393] \"218119_at\"                   \"218118_s_at\"                \n",
+       "[30395] \"218676_s_at\"                 \"217970_s_at\"                \n",
+       "[30397] \"218519_at\"                   \"220088_at\"                  \n",
+       "[30399] \"217206_at\"                   \"218543_s_at\"                \n",
+       "[30401] \"218693_at\"                   \"219230_at\"                  \n",
+       "[30403] \"217938_s_at\"                 \"219497_s_at\"                \n",
+       "[30405] \"219498_s_at\"                 \"220373_at\"                  \n",
+       "[30407] \"217434_at\"                   \"217492_s_at\"                \n",
+       "[30409] \"215773_x_at\"                 \"219251_s_at\"                \n",
+       "[30411] \"219852_s_at\"                 \"220309_at\"                  \n",
+       "[30413] \"218929_at\"                   \"217733_s_at\"                \n",
+       "[30415] \"220200_s_at\"                 \"217223_s_at\"                \n",
+       "[30417] \"218775_s_at\"                 \"218298_s_at\"                \n",
+       "[30419] \"217207_s_at\"                 \"218083_at\"                  \n",
+       "[30421] \"216911_s_at\"                 \"217422_s_at\"                \n",
+       "[30423] \"219459_at\"                   \"217211_at\"                  \n",
+       "[30425] \"219062_s_at\"                 \"216013_at\"                  \n",
+       "[30427] \"216014_s_at\"                 \"218392_x_at\"                \n",
+       "[30429] \"216545_at\"                   \"218158_s_at\"                \n",
+       "[30431] \"216034_at\"                   \"220124_at\"                  \n",
+       "[30433] \"218686_s_at\"                 \"217863_at\"                  \n",
+       "[30435] \"217864_s_at\"                 \"217862_at\"                  \n",
+       "[30437] \"216143_at\"                   \"215603_x_at\"                \n",
+       "[30439] \"216853_x_at\"                 \"217148_x_at\"                \n",
+       "[30441] \"215876_at\"                   \"220513_at\"                  \n",
+       "[30443] \"220513_at\"                   \"217506_at\"                  \n",
+       "[30445] \"216066_at\"                   \"219883_at\"                  \n",
+       "[30447] \"219883_at\"                   \"218179_s_at\"                \n",
+       "[30449] \"218047_at\"                   \"219034_at\"                  \n",
+       "[30451] \"220004_at\"                   \"217848_s_at\"                \n",
+       "[30453] \"219641_at\"                   \"216014_s_at\"                \n",
+       "[30455] \"220284_at\"                   \"215841_at\"                  \n",
+       "[30457] \"216722_at\"                   \"216316_x_at\"                \n",
+       "[30459] \"215966_x_at\"                 \"215977_x_at\"                \n",
+       "[30461] \"217167_x_at\"                 \"218106_s_at\"                \n",
+       "[30463] \"219357_at\"                   \"217414_x_at\"                \n",
+       "[30465] \"219085_s_at\"                 \"217414_x_at\"                \n",
+       "[30467] \"218695_at\"                   \"219067_s_at\"                \n",
+       "[30469] \"215920_s_at\"                 \"218948_at\"                  \n",
+       "[30471] \"218949_s_at\"                 \"218178_s_at\"                \n",
+       "[30473] \"218177_at\"                   \"219052_at\"                  \n",
+       "[30475] \"217770_at\"                   \"215684_s_at\"                \n",
+       "[30477] \"216705_s_at\"                 \"219071_x_at\"                \n",
+       "[30479] \"220100_at\"                   \"219454_at\"                  \n",
+       "[30481] \"219169_s_at\"                 \"216659_at\"                  \n",
+       "[30483] \"219174_at\"                   \"218905_at\"                  \n",
+       "[30485] \"216459_x_at\"                 \"219446_at\"                  \n",
+       "[30487] \"219036_at\"                   \"219271_at\"                  \n",
+       "[30489] \"217756_x_at\"                 \"218680_x_at\"                \n",
+       "[30491] \"218761_at\"                   \"216711_s_at\"                \n",
+       "[30493] \"217865_at\"                   \"218820_at\"                  \n",
+       "[30495] \"220362_at\"                   \"219338_s_at\"                \n",
+       "[30497] \"218031_s_at\"                 \"217279_x_at\"                \n",
+       "[30499] \"219810_at\"                   \"220314_at\"                  \n",
+       "[30501] \"220216_at\"                   \"220038_at\"                  \n",
+       "[30503] \"217948_at\"                   \"220038_at\"                  \n",
+       "[30505] \"220449_at\"                   \"220449_at\"                  \n",
+       "[30507] \"220529_at\"                   \"219142_at\"                  \n",
+       "[30509] \"219142_at\"                   \"218174_s_at\"                \n",
+       "[30511] \"219987_at\"                   \"219484_at\"                  \n",
+       "[30513] \"219142_at\"                   \"220125_at\"                  \n",
+       "[30515] \"217783_s_at\"                 \"219955_at\"                  \n",
+       "[30517] \"217448_s_at\"                 \"218445_at\"                  \n",
+       "[30519] \"219033_at\"                   \"219395_at\"                  \n",
+       "[30521] \"218622_at\"                   \"218315_s_at\"                \n",
+       "[30523] \"218442_at\"                   \"216503_s_at\"                \n",
+       "[30525] \"216506_x_at\"                 \"219095_at\"                  \n",
+       "[30527] \"217720_at\"                   \"219409_at\"                  \n",
+       "[30529] \"218940_at\"                   \"217644_s_at\"                \n",
+       "[30531] \"217576_x_at\"                 \"220067_at\"                  \n",
+       "[30533] \"218446_s_at\"                 \"217310_s_at\"                \n",
+       "[30535] \"218538_s_at\"                 \"218536_at\"                  \n",
+       "[30537] \"217612_at\"                   \"219211_at\"                  \n",
+       "[30539] \"218482_at\"                   \"220197_at\"                  \n",
+       "[30541] \"217876_at\"                   \"220089_at\"                  \n",
+       "[30543] \"218402_s_at\"                 \"218575_at\"                  \n",
+       "[30545] \"219537_x_at\"                 \"220010_at\"                  \n",
+       "[30547] \"220010_at\"                   \"219695_at\"                  \n",
+       "[30549] \"216305_s_at\"                 \"218824_at\"                  \n",
+       "[30551] \"217594_at\"                   \"216578_at\"                  \n",
+       "[30553] \"220183_s_at\"                 \"218869_at\"                  \n",
+       "[30555] \"219588_s_at\"                 \"216341_s_at\"                \n",
+       "[30557] \"219475_at\"                   \"218119_at\"                  \n",
+       "[30559] \"217457_s_at\"                 \"217645_at\"                  \n",
+       "[30561] \"218713_at\"                   \"217645_at\"                  \n",
+       "[30563] \"219156_at\"                   \"217232_x_at\"                \n",
+       "[30565] \"217530_at\"                   \"218416_s_at\"                \n",
+       "[30567] \"218417_s_at\"                 \"216870_x_at\"                \n",
+       "[30569] \"215629_s_at\"                 \"215689_s_at\"                \n",
+       "[30571] \"220009_at\"                   \"220422_at\"                  \n",
+       "[30573] \"219171_s_at\"                 \"218303_x_at\"                \n",
+       "[30575] \"219742_at\"                   \"218114_at\"                  \n",
+       "[30577] \"217560_at\"                   \"217840_at\"                  \n",
+       "[30579] \"220480_at\"                   \"218438_s_at\"                \n",
+       "[30581] \"216929_x_at\"                 \"217094_s_at\"                \n",
+       "[30583] \"217918_at\"                   \"217917_s_at\"                \n",
+       "[30585] \"217918_at\"                   \"217917_s_at\"                \n",
+       "[30587] \"219717_at\"                   \"217094_s_at\"                \n",
+       "[30589] \"217548_at\"                   \"218663_at\"                  \n",
+       "[30591] \"218662_s_at\"                 \"219028_at\"                  \n",
+       "[30593] \"217812_at\"                   \"217224_at\"                  \n",
+       "[30595] \"218034_at\"                   \"219513_s_at\"                \n",
+       "[30597] \"216989_at\"                   \"217740_x_at\"                \n",
+       "[30599] \"217806_s_at\"                 \"216698_x_at\"                \n",
+       "[30601] \"217499_x_at\"                 \"219274_at\"                  \n",
+       "[30603] \"217740_x_at\"                 \"217740_x_at\"                \n",
+       "[30605] \"217646_at\"                   \"219927_at\"                  \n",
+       "[30607] \"217195_at\"                   \"218939_at\"                  \n",
+       "[30609] \"219672_at\"                   \"215799_at\"                  \n",
+       "[30611] \"219324_at\"                   \"219542_at\"                  \n",
+       "[30613] \"219324_at\"                   \"218872_at\"                  \n",
+       "[30615] \"218561_s_at\"                 \"215938_s_at\"                \n",
+       "[30617] \"218767_at\"                   \"218625_at\"                  \n",
+       "[30619] \"219351_at\"                   \"219223_at\"                  \n",
+       "[30621] \"220351_at\"                   \"220091_at\"                  \n",
+       "[30623] \"217451_at\"                   \"218539_at\"                  \n",
+       "[30625] \"219685_at\"                   \"217152_at\"                  \n",
+       "[30627] \"219654_at\"                   \"217045_x_at\"                \n",
+       "[30629] \"217493_x_at\"                 \"219376_at\"                  \n",
+       "[30631] \"219376_at\"                   \"216247_at\"                  \n",
+       "[30633] \"218111_s_at\"                 \"217677_at\"                  \n",
+       "[30635] \"219531_at\"                   \"219591_at\"                  \n",
+       "[30637] \"218238_at\"                   \"218239_s_at\"                \n",
+       "[30639] \"217631_at\"                   \"218725_at\"                  \n",
+       "[30641] \"219163_at\"                   \"219183_s_at\"                \n",
+       "[30643] \"216325_x_at\"                 \"220127_s_at\"                \n",
+       "[30645] \"215733_x_at\"                 \"217339_x_at\"                \n",
+       "[30647] \"218112_at\"                   \"215733_x_at\"                \n",
+       "[30649] \"217339_x_at\"                 \"217807_s_at\"                \n",
+       "[30651] \"219086_at\"                   \"217901_at\"                  \n",
+       "[30653] \"219308_s_at\"                 \"220328_at\"                  \n",
+       "[30655] \"216570_x_at\"                 \"219970_at\"                  \n",
+       "[30657] \"217807_s_at\"                 \"219741_x_at\"                \n",
+       "[30659] \"220072_at\"                   \"219803_at\"                  \n",
+       "[30661] \"215712_s_at\"                 \"216471_x_at\"                \n",
+       "[30663] \"219981_x_at\"                 \"216373_at\"                  \n",
+       "[30665] \"218466_at\"                   \"220032_at\"                  \n",
+       "[30667] \"217874_at\"                   \"216762_at\"                  \n",
+       "[30669] \"216591_s_at\"                 \"220368_s_at\"                \n",
+       "[30671] \"220369_at\"                   \"215633_x_at\"                \n",
+       "[30673] \"216361_s_at\"                 \"218169_at\"                  \n",
+       "[30675] \"220386_s_at\"                 \"217842_at\"                  \n",
+       "[30677] \"220099_s_at\"                 \"218943_s_at\"                \n",
+       "[30679] \"218022_at\"                   \"219569_s_at\"                \n",
+       "[30681] \"217583_at\"                   \"218618_s_at\"                \n",
+       "[30683] \"217444_at\"                   \"218943_s_at\"                \n",
+       "[30685] \"218902_at\"                   \"217501_at\"                  \n",
+       "[30687] \"218835_at\"                   \"219198_at\"                  \n",
+       "[30689] \"220050_at\"                   \"217049_x_at\"                \n",
+       "[30691] \"219134_at\"                   \"219487_at\"                  \n",
+       "[30693] \"217718_s_at\"                 \"217717_s_at\"                \n",
+       "[30695] \"218383_at\"                   \"217032_at\"                  \n",
+       "[30697] \"217584_at\"                   \"217480_x_at\"                \n",
+       "[30699] \"219882_at\"                   \"217558_at\"                  \n",
+       "[30701] \"216025_x_at\"                 \"216661_x_at\"                \n",
+       "[30703] \"220017_x_at\"                 \"216030_s_at\"                \n",
+       "[30705] \"218627_at\"                   \"217791_s_at\"                \n",
+       "[30707] \"216699_s_at\"                 \"218012_at\"                  \n",
+       "[30709] \"218568_at\"                   \"217016_x_at\"                \n",
+       "[30711] \"218932_at\"                   \"218833_at\"                  \n",
+       "[30713] \"217827_s_at\"                 \"216031_x_at\"                \n",
+       "[30715] \"219688_at\"                   \"219382_at\"                  \n",
+       "[30717] \"217905_at\"                   \"216960_s_at\"                \n",
+       "[30719] \"219253_at\"                   \"217549_at\"                  \n",
+       "[30721] \"220190_s_at\"                 \"219167_at\"                  \n",
+       "[30723] \"219299_at\"                   \"218868_at\"                  \n",
+       "[30725] \"219556_at\"                   \"217276_x_at\"                \n",
+       "[30727] \"219496_at\"                   \"216597_at\"                  \n",
+       "[30729] \"219277_s_at\"                 \"219894_at\"                  \n",
+       "[30731] \"220333_at\"                   \"219556_at\"                  \n",
+       "[30733] \"219797_at\"                   \"218314_s_at\"                \n",
+       "[30735] \"215809_at\"                   \"218117_at\"                  \n",
+       "[30737] \"218357_s_at\"                 \"215645_at\"                  \n",
+       "[30739] \"216420_at\"                   \"216071_x_at\"                \n",
+       "[30741] \"217478_s_at\"                 \"219934_s_at\"                \n",
+       "[30743] \"219934_s_at\"                 \"217074_at\"                  \n",
+       "[30745] \"219371_s_at\"                 \"217522_at\"                  \n",
+       "[30747] \"218796_at\"                   \"219708_at\"                  \n",
+       "[30749] \"218372_at\"                   \"217972_at\"                  \n",
+       "[30751] \"218813_s_at\"                 \"219951_s_at\"                \n",
+       "[30753] \"218966_at\"                   \"215983_s_at\"                \n",
+       "[30755] \"216560_x_at\"                 \"217148_x_at\"                \n",
+       "[30757] \"217148_x_at\"                 \"218414_s_at\"                \n",
+       "[30759] \"218475_at\"                   \"218525_s_at\"                \n",
+       "[30761] \"216338_s_at\"                 \"217723_x_at\"                \n",
+       "[30763] \"217723_x_at\"                 \"220024_s_at\"                \n",
+       "[30765] \"219710_at\"                   \"215999_at\"                  \n",
+       "[30767] \"216062_at\"                   \"219051_x_at\"                \n",
+       "[30769] \"219709_x_at\"                 \"218590_at\"                  \n",
+       "[30771] \"216350_s_at\"                 \"218742_at\"                  \n",
+       "[30773] \"215654_at\"                   \"217511_at\"                  \n",
+       "[30775] \"219380_x_at\"                 \"215822_x_at\"                \n",
+       "[30777] \"217502_at\"                   \"219511_s_at\"                \n",
+       "[30779] \"218596_at\"                   \"217021_at\"                  \n",
+       "[30781] \"217223_s_at\"                 \"215603_x_at\"                \n",
+       "[30783] \"219113_x_at\"                 \"219907_at\"                  \n",
+       "[30785] \"219643_at\"                   \"218565_at\"                  \n",
+       "[30787] \"218233_s_at\"                 \"220452_x_at\"                \n",
+       "[30789] \"215603_x_at\"                 \"215603_x_at\"                \n",
+       "[30791] \"218565_at\"                   \"219896_at\"                  \n",
+       "[30793] \"218897_at\"                   \"218337_at\"                  \n",
+       "[30795] \"217223_s_at\"                 \"219665_at\"                  \n",
+       "[30797] \"220163_s_at\"                 \"220131_at\"                  \n",
+       "[30799] \"220131_at\"                   \"217480_x_at\"                \n",
+       "[30801] \"218084_x_at\"                 \"218777_at\"                  \n",
+       "[30803] \"219211_at\"                   \"219211_at\"                  \n",
+       "[30805] \"219211_at\"                   \"219211_at\"                  \n",
+       "[30807] \"219211_at\"                   \"215603_x_at\"                \n",
+       "[30809] \"218828_at\"                   \"219081_at\"                  \n",
+       "[30811] \"217601_at\"                   \"217466_x_at\"                \n",
+       "[30813] \"217601_at\"                   \"217503_at\"                  \n",
+       "[30815] \"218295_s_at\"                 \"215603_x_at\"                \n",
+       "[30817] \"217915_s_at\"                 \"218828_at\"                  \n",
+       "[30819] \"217223_s_at\"                 \"216602_s_at\"                \n",
+       "[30821] \"219211_at\"                   \"219081_at\"                  \n",
+       "[30823] \"218039_at\"                   \"219978_s_at\"                \n",
+       "[30825] \"220445_s_at\"                 \"219655_at\"                  \n",
+       "[30827] \"218039_at\"                   \"219978_s_at\"                \n",
+       "[30829] \"220068_at\"                   \"219890_at\"                  \n",
+       "[30831] \"216587_s_at\"                 \"217500_at\"                  \n",
+       "[30833] \"215667_x_at\"                 \"219541_at\"                  \n",
+       "[30835] \"217184_s_at\"                 \"219726_at\"                  \n",
+       "[30837] \"219707_at\"                   \"218441_s_at\"                \n",
+       "[30839] \"218734_at\"                   \"218893_at\"                  \n",
+       "[30841] \"219188_s_at\"                 \"217219_at\"                  \n",
+       "[30843] \"218533_s_at\"                 \"219878_s_at\"                \n",
+       "[30845] \"215688_at\"                   \"217118_s_at\"                \n",
+       "[30847] \"217456_x_at\"                 \"218476_at\"                  \n",
+       "[30849] \"220400_at\"                   \"219629_at\"                  \n",
+       "[30851] \"219702_at\"                   \"219417_s_at\"                \n",
+       "[30853] \"220101_x_at\"                 \"219250_s_at\"                \n",
+       "[30855] \"217700_at\"                   \"218549_s_at\"                \n",
+       "[30857] \"216353_s_at\"                 \"217408_at\"                  \n",
+       "[30859] \"217336_at\"                   \"216077_s_at\"                \n",
+       "[30861] \"216077_s_at\"                 \"216076_at\"                  \n",
+       "[30863] \"217166_at\"                   \"218443_s_at\"                \n",
+       "[30865] \"218442_at\"                   \"219815_at\"                  \n",
+       "[30867] \"220025_at\"                   \"216713_at\"                  \n",
+       "[30869] \"219021_at\"                   \"220304_s_at\"                \n",
+       "[30871] \"218088_s_at\"                 \"216977_x_at\"                \n",
+       "[30873] \"218526_s_at\"                 \"217174_s_at\"                \n",
+       "[30875] \"217348_x_at\"                 \"220143_x_at\"                \n",
+       "[30877] \"217794_at\"                   \"220042_x_at\"                \n",
+       "[30879] \"215780_s_at\"                 \"216386_at\"                  \n",
+       "[30881] \"219414_at\"                   \"219683_at\"                  \n",
+       "[30883] \"215570_s_at\"                 \"219684_at\"                  \n",
+       "[30885] \"220514_at\"                   \"218807_at\"                  \n",
+       "[30887] \"218806_s_at\"                 \"217246_s_at\"                \n",
+       "[30889] \"218650_at\"                   \"219811_at\"                  \n",
+       "[30891] \"218975_at\"                   \"217202_s_at\"                \n",
+       "[30893] \"219091_s_at\"                 \"218233_s_at\"                \n",
+       "[30895] \"219104_at\"                   \"216053_x_at\"                \n",
+       "[30897] \"217161_x_at\"                 \"218429_s_at\"                \n",
+       "[30899] \"215887_at\"                   \"215944_at\"                  \n",
+       "[30901] \"218684_at\"                   \"219682_s_at\"                \n",
+       "[30903] \"216889_s_at\"                 \"218587_s_at\"                \n",
+       "[30905] \"219746_at\"                   \"220137_at\"                  \n",
+       "[30907] \"218197_s_at\"                 \"218105_s_at\"                \n",
+       "[30909] \"218786_at\"                   \"216539_at\"                  \n",
+       "[30911] \"220337_at\"                   \"217475_s_at\"                \n",
+       "[30913] \"217397_at\"                   \"215797_at\"                  \n",
+       "[30915] \"217394_at\"                   \"215796_at\"                  \n",
+       "[30917] \"217412_at\"                   \"217170_at\"                  \n",
+       "[30919] \"215769_at\"                   \"216133_at\"                  \n",
+       "[30921] \"218911_at\"                   \"217056_at\"                  \n",
+       "[30923] \"215621_s_at\"                 \"220287_at\"                  \n",
+       "[30925] \"220398_at\"                   \"220121_at\"                  \n",
+       "[30927] \"218249_at\"                   \"217281_x_at\"                \n",
+       "[30929] \"216491_x_at\"                 \"217320_at\"                  \n",
+       "[30931] \"219996_at\"                   \"219563_at\"                  \n",
+       "[30933] \"219192_at\"                   \"216521_s_at\"                \n",
+       "[30935] \"218385_at\"                   \"219420_s_at\"                \n",
+       "[30937] \"217693_x_at\"                 \"218162_at\"                  \n",
+       "[30939] \"220253_s_at\"                 \"219631_at\"                  \n",
+       "[30941] \"220254_at\"                   \"217481_x_at\"                \n",
+       "[30943] \"220462_at\"                   \"220222_at\"                  \n",
+       "[30945] \"218322_s_at\"                 \"218154_at\"                  \n",
+       "[30947] \"219560_at\"                   \"218636_s_at\"                \n",
+       "[30949] \"215771_x_at\"                 \"217628_at\"                  \n",
+       "[30951] \"219866_at\"                   \"220048_at\"                  \n",
+       "[30953] \"220433_at\"                   \"219656_at\"                  \n",
+       "[30955] \"219766_at\"                   \"218944_at\"                  \n",
+       "[30957] \"218871_x_at\"                 \"216125_s_at\"                \n",
+       "[30959] \"218599_at\"                   \"215794_x_at\"                \n",
+       "[30961] \"216328_at\"                   \"216327_s_at\"                \n",
+       "[30963] \"218338_at\"                   \"218941_at\"                  \n",
+       "[30965] \"216180_s_at\"                 \"216181_at\"                  \n",
+       "[30967] \"215700_x_at\"                 \"217620_s_at\"                \n",
+       "[30969] \"217212_s_at\"                 \"220404_at\"                  \n",
+       "[30971] \"215665_at\"                   \"218251_at\"                  \n",
+       "[30973] \"219519_s_at\"                 \"220313_at\"                  \n",
+       "[30975] \"219609_at\"                   \"218282_at\"                  \n",
+       "[30977] \"218282_at\"                   \"217920_at\"                  \n",
+       "[30979] \"217922_at\"                   \"217921_at\"                  \n",
+       "[30981] \"217282_at\"                   \"217935_s_at\"                \n",
+       "[30983] \"219083_at\"                   \"215881_x_at\"                \n",
+       "[30985] \"216471_x_at\"                 \"219985_at\"                  \n",
+       "[30987] \"215685_s_at\"                 \"219369_s_at\"                \n",
+       "[30989] \"219025_at\"                   \"216384_x_at\"                \n",
+       "[30991] \"218976_at\"                   \"218609_s_at\"                \n",
+       "[30993] \"218878_s_at\"                 \"215631_s_at\"                \n",
+       "[30995] \"217221_x_at\"                 \"218310_at\"                  \n",
+       "[30997] \"218938_at\"                   \"220224_at\"                  \n",
+       "[30999] \"219257_s_at\"                 \"220400_at\"                  \n",
+       "[31001] \"219112_at\"                   \"216027_at\"                  \n",
+       "[31003] \"218805_at\"                   \"218345_at\"                  \n",
+       "[31005] \"219891_at\"                   \"215687_x_at\"                \n",
+       "[31007] \"218141_at\"                   \"217499_x_at\"                \n",
+       "[31009] \"220190_s_at\"                 \"218200_s_at\"                \n",
+       "[31011] \"218201_at\"                   \"219185_at\"                  \n",
+       "[31013] \"218266_s_at\"                 \"218654_s_at\"                \n",
+       "[31015] \"215990_s_at\"                 \"218373_at\"                  \n",
+       "[31017] \"218213_s_at\"                 \"219202_at\"                  \n",
+       "[31019] \"219801_at\"                   \"218320_s_at\"                \n",
+       "[31021] \"220520_s_at\"                 \"218122_s_at\"                \n",
+       "[31023] \"218961_s_at\"                 \"220213_at\"                  \n",
+       "[31025] \"215861_at\"                   \"219570_at\"                  \n",
+       "[31027] \"216080_s_at\"                 \"220454_s_at\"                \n",
+       "[31029] \"218942_at\"                   \"217158_at\"                  \n",
+       "[31031] \"216548_x_at\"                 \"219983_at\"                  \n",
+       "[31033] \"219984_s_at\"                 \"219579_at\"                  \n",
+       "[31035] \"216937_s_at\"                 \"219470_x_at\"                \n",
+       "[31037] \"217463_s_at\"                 \"219736_at\"                  \n",
+       "[31039] \"218619_s_at\"                 \"215897_at\"                  \n",
+       "[31041] \"219548_at\"                   \"218952_at\"                  \n",
+       "[31043] \"219639_x_at\"                 \"218717_s_at\"                \n",
+       "[31045] \"219899_x_at\"                 \"217022_s_at\"                \n",
+       "[31047] \"217469_at\"                   \"217168_s_at\"                \n",
+       "[31049] \"218271_s_at\"                 \"215795_at\"                  \n",
+       "[31051] \"218194_at\"                   \"217100_s_at\"                \n",
+       "[31053] \"219013_at\"                   \"219719_at\"                  \n",
+       "[31055] \"219075_at\"                   \"217753_s_at\"                \n",
+       "[31057] \"219341_at\"                   \"219340_s_at\"                \n",
+       "[31059] \"218960_at\"                   \"216620_s_at\"                \n",
+       "[31061] \"217705_at\"                   \"216819_at\"                  \n",
+       "[31063] \"218038_at\"                   \"216620_s_at\"                \n",
+       "[31065] \"216375_s_at\"                 \"218964_at\"                  \n",
+       "[31067] \"219923_at\"                   \"218295_s_at\"                \n",
+       "[31069] \"218294_s_at\"                 \"218293_x_at\"                \n",
+       "[31071] \"217753_s_at\"                 \"219350_s_at\"                \n",
+       "[31073] \"220306_at\"                   \"216917_s_at\"                \n",
+       "[31075] \"219701_at\"                   \"216039_at\"                  \n",
+       "[31077] \"217057_s_at\"                 \"218011_at\"                  \n",
+       "[31079] \"218161_s_at\"                 \"218161_s_at\"                \n",
+       "[31081] \"220198_s_at\"                 \"217681_at\"                  \n",
+       "[31083] \"220080_at\"                   \"218915_at\"                  \n",
+       "[31085] \"217150_s_at\"                 \"220080_at\"                  \n",
+       "[31087] \"219254_at\"                   \"219543_at\"                  \n",
+       "[31089] \"219302_s_at\"                 \"219300_s_at\"                \n",
+       "[31091] \"219301_s_at\"                 \"219473_at\"                  \n",
+       "[31093] \"219095_at\"                   \"217936_at\"                  \n",
+       "[31095] \"219411_at\"                   \"218882_s_at\"                \n",
+       "[31097] \"219287_at\"                   \"218672_at\"                  \n",
+       "[31099] \"218672_at\"                   \"217757_at\"                  \n",
+       "[31101] \"218530_at\"                   \"218575_at\"                  \n",
+       "[31103] \"215704_at\"                   \"218792_s_at\"                \n",
+       "[31105] \"218350_s_at\"                 \"218487_at\"                  \n",
+       "[31107] \"218489_s_at\"                 \"218694_at\"                  \n",
+       "[31109] \"217858_s_at\"                 \"219690_at\"                  \n",
+       "[31111] \"216408_at\"                   \"219043_s_at\"                \n",
+       "[31113] \"219690_at\"                   \"218503_at\"                  \n",
+       "[31115] \"220003_at\"                   \"218302_at\"                  \n",
+       "[31117] \"220246_at\"                   \"218302_at\"                  \n",
+       "[31119] \"216903_s_at\"                 \"218424_s_at\"                \n",
+       "[31121] \"218922_s_at\"                 \"218876_at\"                  \n",
+       "[31123] \"218876_at\"                   \"219140_s_at\"                \n",
+       "[31125] \"215696_s_at\"                 \"218529_at\"                  \n",
+       "[31127] \"215920_s_at\"                 \"216316_x_at\"                \n",
+       "[31129] \"215966_x_at\"                 \"215977_x_at\"                \n",
+       "[31131] \"217167_x_at\"                 \"216208_s_at\"                \n",
+       "[31133] \"217913_at\"                   \"220399_at\"                  \n",
+       "[31135] \"215936_s_at\"                 \"219575_s_at\"                \n",
+       "[31137] \"219575_s_at\"                 \"219575_s_at\"                \n",
+       "[31139] \"219031_s_at\"                 \"219727_at\"                  \n",
+       "[31141] \"217793_at\"                   \"219187_at\"                  \n",
+       "[31143] \"219597_s_at\"                 \"215800_at\"                  \n",
+       "[31145] \"218096_at\"                   \"220165_at\"                  \n",
+       "[31147] \"219592_at\"                   \"219427_at\"                  \n",
+       "[31149] \"216996_s_at\"                 \"217816_s_at\"                \n",
+       "[31151] \"218095_s_at\"                 \"217225_x_at\"                \n",
+       "[31153] \"220295_x_at\"                 \"215945_s_at\"                \n",
+       "[31155] \"219335_at\"                   \"219754_at\"                  \n",
+       "[31157] \"216304_x_at\"                 \"220057_at\"                  \n",
+       "[31159] \"220057_at\"                   \"217466_x_at\"                \n",
+       "[31161] \"219640_at\"                   \"215813_s_at\"                \n",
+       "[31163] \"219892_at\"                   \"218275_at\"                  \n",
+       "[31165] \"218275_at\"                   \"218769_s_at\"                \n",
+       "[31167] \"216887_s_at\"                 \"216693_x_at\"                \n",
+       "[31169] \"217989_at\"                   \"218808_at\"                  \n",
+       "[31171] \"215886_x_at\"                 \"218254_s_at\"                \n",
+       "[31173] \"215980_s_at\"                 \"219061_s_at\"                \n",
+       "[31175] \"217965_s_at\"                 \"218334_at\"                  \n",
+       "[31177] \"218883_s_at\"                 \"218425_at\"                  \n",
+       "[31179] \"218426_s_at\"                 \"217872_at\"                  \n",
+       "[31181] \"220495_s_at\"                 \"219645_at\"                  \n",
+       "[31183] \"215637_at\"                   \"219328_at\"                  \n",
+       "[31185] \"217238_s_at\"                 \"219553_at\"                  \n",
+       "[31187] \"220245_at\"                   \"216474_x_at\"                \n",
+       "[31189] \"217023_x_at\"                 \"217111_at\"                  \n",
+       "[31191] \"216474_x_at\"                 \"217023_x_at\"                \n",
+       "[31193] \"217743_s_at\"                 \"218831_s_at\"                \n",
+       "[31195] \"216325_x_at\"                 \"217632_at\"                  \n",
+       "[31197] \"219102_at\"                   \"217950_at\"                  \n",
+       "[31199] \"218847_at\"                   \"216866_s_at\"                \n",
+       "[31201] \"216865_at\"                   \"215798_at\"                  \n",
+       "[31203] \"219781_s_at\"                 \"219782_s_at\"                \n",
+       "[31205] \"218355_at\"                   \"218916_at\"                  \n",
+       "[31207] \"219516_at\"                   \"218714_at\"                  \n",
+       "[31209] \"220291_at\"                   \"219793_at\"                  \n",
+       "[31211] \"218255_s_at\"                 \"218907_s_at\"                \n",
+       "[31213] \"218217_at\"                   \"218271_s_at\"                \n",
+       "[31215] \"219863_at\"                   \"217722_s_at\"                \n",
+       "[31217] \"217722_s_at\"                 \"218257_s_at\"                \n",
+       "[31219] \"220046_s_at\"                 \"219872_at\"                  \n",
+       "[31221] \"218069_at\"                   \"218906_x_at\"                \n",
+       "[31223] \"219390_at\"                   \"216594_x_at\"                \n",
+       "[31225] \"219267_at\"                   \"219552_at\"                  \n",
+       "[31227] \"219942_at\"                   \"219468_s_at\"                \n",
+       "[31229] \"216919_at\"                   \"216183_at\"                  \n",
+       "[31231] \"217634_at\"                   \"218430_s_at\"                \n",
+       "[31233] \"218360_at\"                   \"219850_s_at\"                \n",
+       "[31235] \"217747_s_at\"                 \"220269_at\"                  \n",
+       "[31237] \"219161_s_at\"                 \"220140_s_at\"                \n",
+       "[31239] \"218593_at\"                   \"216250_s_at\"                \n",
+       "[31241] \"220286_at\"                   \"219161_s_at\"                \n",
+       "[31243] \"218657_at\"                   \"218507_at\"                  \n",
+       "[31245] \"217966_s_at\"                 \"217967_s_at\"                \n",
+       "[31247] \"219410_at\"                   \"218403_at\"                  \n",
+       "[31249] \"218809_at\"                   \"215925_s_at\"                \n",
+       "[31251] \"216242_x_at\"                 \"216242_x_at\"                \n",
+       "[31253] \"219117_s_at\"                 \"216942_s_at\"                \n",
+       "[31255] \"219118_at\"                   \"219117_s_at\"                \n",
+       "[31257] \"216971_s_at\"                 \"219455_at\"                  \n",
+       "[31259] \"215982_s_at\"                 \"219133_at\"                  \n",
+       "[31261] \"220389_at\"                   \"219805_at\"                  \n",
+       "[31263] \"220257_x_at\"                 \"216333_x_at\"                \n",
+       "[31265] \"216339_s_at\"                 \"216619_at\"                  \n",
+       "[31267] \"216619_at\"                   \"219374_s_at\"                \n",
+       "[31269] \"215780_s_at\"                 \"216297_at\"                  \n",
+       "[31271] \"219374_s_at\"                 \"220436_at\"                  \n",
+       "[31273] \"219760_at\"                   \"218925_s_at\"                \n",
+       "[31275] \"220151_at\"                   \"215617_at\"                  \n",
+       "[31277] \"217665_at\"                   \"219763_at\"                  \n",
+       "[31279] \"217665_at\"                   \"219549_s_at\"                \n",
+       "[31281] \"218641_at\"                   \"215994_x_at\"                \n",
+       "[31283] \"215967_s_at\"                 \"218188_s_at\"                \n",
+       "[31285] \"218188_s_at\"                 \"216952_s_at\"                \n",
+       "[31287] \"218757_s_at\"                 \"219267_at\"                  \n",
+       "[31289] \"219029_at\"                   \"218707_at\"                  \n",
+       "[31291] \"218605_at\"                   \"215640_at\"                  \n",
+       "[31293] \"216212_s_at\"                 \"220477_s_at\"                \n",
+       "[31295] \"217609_at\"                   \"217609_at\"                  \n",
+       "[31297] \"218212_s_at\"                 \"219673_at\"                  \n",
+       "[31299] \"218783_at\"                   \"218630_at\"                  \n",
+       "[31301] \"218691_s_at\"                 \"219023_at\"                  \n",
+       "[31303] \"220008_at\"                   \"220274_at\"                  \n",
+       "[31305] \"218716_x_at\"                 \"217448_s_at\"                \n",
+       "[31307] \"219796_s_at\"                 \"220075_s_at\"                \n",
+       "[31309] \"220074_at\"                   \"219370_at\"                  \n",
+       "[31311] \"218269_at\"                   \"217562_at\"                  \n",
+       "[31313] \"217368_at\"                   \"217305_s_at\"                \n",
+       "[31315] \"217890_s_at\"                 \"220123_at\"                  \n",
+       "[31317] \"219483_s_at\"                 \"220391_at\"                  \n",
+       "[31319] \"218110_at\"                   \"219578_s_at\"                \n",
+       "[31321] \"219326_s_at\"                 \"217602_at\"                  \n",
+       "[31323] \"219014_at\"                   \"219774_at\"                  \n",
+       "[31325] \"219078_at\"                   \"219403_s_at\"                \n",
+       "[31327] \"216438_s_at\"                 \"216073_at\"                  \n",
+       "[31329] \"215566_x_at\"                 \"220174_at\"                  \n",
+       "[31331] \"216206_x_at\"                 \"218021_at\"                  \n",
+       "[31333] \"218521_s_at\"                 \"218342_s_at\"                \n",
+       "[31335] \"218046_s_at\"                 \"218281_at\"                  \n",
+       "[31337] \"218353_at\"                   \"215833_s_at\"                \n",
+       "[31339] \"215677_s_at\"                 \"215676_at\"                  \n",
+       "[31341] \"219449_s_at\"                 \"219448_at\"                  \n",
+       "[31343] \"220103_s_at\"                 \"219448_at\"                  \n",
+       "[31345] \"218957_s_at\"                 \"219258_at\"                  \n",
+       "[31347] \"218243_at\"                   \"218986_s_at\"                \n",
+       "[31349] \"219017_at\"                   \"219350_s_at\"                \n",
+       "[31351] \"217996_at\"                   \"217998_at\"                  \n",
+       "[31353] \"217999_s_at\"                 \"218000_s_at\"                \n",
+       "[31355] \"217997_at\"                   \"217334_at\"                  \n",
+       "[31357] \"218979_at\"                   \"217081_at\"                  \n",
+       "[31359] \"217785_s_at\"                 \"217784_at\"                  \n",
+       "[31361] \"216532_x_at\"                 \"219379_x_at\"                \n",
+       "[31363] \"219379_x_at\"                 \"219952_s_at\"                \n",
+       "[31365] \"218199_s_at\"                 \"218046_s_at\"                \n",
+       "[31367] \"219827_at\"                   \"218349_s_at\"                \n",
+       "[31369] \"218585_s_at\"                 \"217990_at\"                  \n",
+       "[31371] \"216117_at\"                   \"217841_s_at\"                \n",
+       "[31373] \"218025_s_at\"                 \"215926_x_at\"                \n",
+       "[31375] \"216979_at\"                   \"218666_s_at\"                \n",
+       "[31377] \"219500_at\"                   \"216493_s_at\"                \n",
+       "[31379] \"216494_at\"                   \"217983_s_at\"                \n",
+       "[31381] \"217983_s_at\"                 \"217984_at\"                  \n",
+       "[31383] \"218800_at\"                   \"219699_at\"                  \n",
+       "[31385] \"218468_s_at\"                 \"218469_at\"                  \n",
+       "[31387] \"220329_s_at\"                 \"220281_at\"                  \n",
+       "[31389] \"216306_x_at\"                 \"218195_at\"                  \n",
+       "[31391] \"217125_at\"                   \"217839_at\"                  \n",
+       "[31393] \"218550_s_at\"                 \"216470_x_at\"                \n",
+       "[31395] \"218048_at\"                   \"219099_at\"                  \n",
+       "[31397] \"220169_at\"                   \"219875_s_at\"                \n",
+       "[31399] \"217498_at\"                   \"216860_s_at\"                \n",
+       "[31401] \"218411_s_at\"                 \"216314_at\"                  \n",
+       "[31403] \"219110_at\"                   \"218531_at\"                  \n",
+       "[31405] \"218556_at\"                   \"219392_x_at\"                \n",
+       "[31407] \"217298_at\"                   \"219844_at\"                  \n",
+       "[31409] \"220002_at\"                   \"217902_s_at\"                \n",
+       "[31411] \"219037_at\"                   \"215664_s_at\"                \n",
+       "[31413] \"218474_s_at\"                 \"217396_at\"                  \n",
+       "[31415] \"219814_at\"                   \"216631_s_at\"                \n",
+       "[31417] \"219024_at\"                   \"220051_at\"                  \n",
+       "[31419] \"215850_s_at\"                 \"218774_at\"                  \n",
+       "[31421] \"217010_s_at\"                 \"219204_s_at\"                \n",
+       "[31423] \"219205_at\"                   \"215710_at\"                  \n",
+       "[31425] \"219646_at\"                   \"218156_s_at\"                \n",
+       "[31427] \"218155_x_at\"                 \"219546_at\"                  \n",
+       "[31429] \"220249_at\"                   \"216958_s_at\"                \n",
+       "[31431] \"219070_s_at\"                 \"220353_at\"                  \n",
+       "[31433] \"220353_at\"                   \"217200_x_at\"                \n",
+       "[31435] \"218023_s_at\"                 \"218023_s_at\"                \n",
+       "[31437] \"220126_at\"                   \"219962_at\"                  \n",
+       "[31439] \"220126_at\"                   \"215863_at\"                  \n",
+       "[31441] \"219381_at\"                   \"217780_at\"                  \n",
+       "[31443] \"217780_at\"                   \"218234_at\"                  \n",
+       "[31445] \"216065_at\"                   \"216224_s_at\"                \n",
+       "[31447] \"217753_s_at\"                 \"218780_at\"                  \n",
+       "[31449] \"218588_s_at\"                 \"219992_at\"                  \n",
+       "[31451] \"219857_at\"                   \"217254_s_at\"                \n",
+       "[31453] \"220013_at\"                   \"219059_s_at\"                \n",
+       "[31455] \"220037_s_at\"                 \"215590_x_at\"                \n",
+       "[31457] \"220028_at\"                   \"218263_s_at\"                \n",
+       "[31459] \"219082_at\"                   \"218413_s_at\"                \n",
+       "[31461] \"215825_at\"                   \"219159_s_at\"                \n",
+       "[31463] \"218600_at\"                   \"215566_x_at\"                \n",
+       "[31465] \"216606_x_at\"                 \"215825_at\"                  \n",
+       "[31467] \"216594_x_at\"                 \"217043_s_at\"                \n",
+       "[31469] \"216680_s_at\"                 \"216017_s_at\"                \n",
+       "[31471] \"218919_at\"                   \"219072_at\"                  \n",
+       "[31473] \"217106_x_at\"                 \"220371_s_at\"                \n",
+       "[31475] \"220407_s_at\"                 \"218721_s_at\"                \n",
+       "[31477] \"219520_s_at\"                 \"216719_s_at\"                \n",
+       "[31479] \"219869_s_at\"                 \"220434_at\"                  \n",
+       "[31481] \"217513_at\"                   \"218387_s_at\"                \n",
+       "[31483] \"218388_at\"                   \"217819_at\"                  \n",
+       "[31485] \"219162_s_at\"                 \"217729_s_at\"                \n",
+       "[31487] \"216458_at\"                   \"218471_s_at\"                \n",
+       "[31489] \"218471_s_at\"                 \"216223_at\"                  \n",
+       "[31491] \"219007_at\"                   \"217787_s_at\"                \n",
+       "[31493] \"217788_s_at\"                 \"219884_at\"                  \n",
+       "[31495] \"217720_at\"                   \"217852_s_at\"                \n",
+       "[31497] \"217937_s_at\"                 \"216977_x_at\"                \n",
+       "[31499] \"215722_s_at\"                 \"220061_at\"                  \n",
+       "[31501] \"219413_at\"                   \"217702_at\"                  \n",
+       "[31503] \"218643_s_at\"                 \"218176_at\"                  \n",
+       "[31505] \"219268_at\"                   \"218115_at\"                  \n",
+       "[31507] \"218569_s_at\"                 \"218570_at\"                  \n",
+       "[31509] \"220469_at\"                   \"216477_at\"                  \n",
+       "[31511] \"219751_at\"                   \"219700_at\"                  \n",
+       "[31513] \"218541_s_at\"                 \"217404_s_at\"                \n",
+       "[31515] \"218726_at\"                   \"219514_at\"                  \n",
+       "[31517] \"215655_at\"                   \"220175_s_at\"                \n",
+       "[31519] \"219932_at\"                   \"220226_at\"                  \n",
+       "[31521] \"218629_at\"                   \"218170_at\"                  \n",
+       "[31523] \"217004_s_at\"                 \"218182_s_at\"                \n",
+       "[31525] \"220332_at\"                   \"218648_at\"                  \n",
+       "[31527] \"219096_at\"                   \"219214_s_at\"                \n",
+       "[31529] \"217755_at\"                   \"216498_at\"                  \n",
+       "[31531] \"219766_at\"                   \"220394_at\"                  \n",
+       "[31533] \"216307_at\"                   \"218014_at\"                  \n",
+       "[31535] \"217480_x_at\"                 \"220175_s_at\"                \n",
+       "[31537] \"220175_s_at\"                 \"218408_at\"                  \n",
+       "[31539] \"217128_s_at\"                 \"215720_s_at\"                \n",
+       "[31541] \"220217_x_at\"                 \"220257_x_at\"                \n",
+       "[31543] \"219916_s_at\"                 \"216818_s_at\"                \n",
+       "[31545] \"216817_s_at\"                 \"218236_s_at\"                \n",
+       "[31547] \"216818_s_at\"                 \"218068_s_at\"                \n",
+       "[31549] \"218727_at\"                   \"219965_s_at\"                \n",
+       "[31551] \"220320_at\"                   \"217603_at\"                  \n",
+       "[31553] \"217753_s_at\"                 \"218764_at\"                  \n",
+       "[31555] \"219153_s_at\"                 \"219969_at\"                  \n",
+       "[31557] \"217928_s_at\"                 \"216092_s_at\"                \n",
+       "[31559] \"217248_s_at\"                 \"217932_at\"                  \n",
+       "[31561] \"217630_at\"                   \"218884_s_at\"                \n",
+       "[31563] \"219973_at\"                   \"218853_s_at\"                \n",
+       "[31565] \"219256_s_at\"                 \"218798_at\"                  \n",
+       "[31567] \"219467_at\"                   \"219384_s_at\"                \n",
+       "[31569] \"219625_s_at\"                 \"219225_at\"                  \n",
+       "[31571] \"218261_at\"                   \"217420_s_at\"                \n",
+       "[31573] \"217067_s_at\"                 \"219098_at\"                  \n",
+       "[31575] \"218838_s_at\"                 \"218909_at\"                  \n",
+       "[31577] \"220166_at\"                   \"217480_x_at\"                \n",
+       "[31579] \"217942_at\"                   \"220162_s_at\"                \n",
+       "[31581] \"218789_s_at\"                 \"218379_at\"                  \n",
+       "[31583] \"220162_s_at\"                 \"220525_s_at\"                \n",
+       "[31585] \"217651_at\"                   \"219979_s_at\"                \n",
+       "[31587] \"219228_at\"                   \"215930_s_at\"                \n",
+       "[31589] \"216834_at\"                   \"219555_s_at\"                \n",
+       "[31591] \"218310_at\"                   \"219288_at\"                  \n",
+       "[31593] \"219910_at\"                   \"218007_s_at\"                \n",
+       "[31595] \"215772_x_at\"                 \"219262_at\"                  \n",
+       "[31597] \"218973_at\"                   \"217790_s_at\"                \n",
+       "[31599] \"216252_x_at\"                 \"215719_x_at\"                \n",
+       "[31601] \"218581_at\"                   \"218762_at\"                  \n",
+       "[31603] \"215767_at\"                   \"217641_at\"                  \n",
+       "[31605] \"217895_at\"                   \"215909_x_at\"                \n",
+       "[31607] \"216633_s_at\"                 \"216634_at\"                  \n",
+       "[31609] \"219964_at\"                   \"215599_at\"                  \n",
+       "[31611] \"217753_s_at\"                 \"219607_s_at\"                \n",
+       "[31613] \"220040_x_at\"                 \"220438_at\"                  \n",
+       "[31615] \"218890_x_at\"                 \"218760_at\"                  \n",
+       "[31617] \"218308_at\"                   \"220460_at\"                  \n",
+       "[31619] \"218418_s_at\"                 \"219115_s_at\"                \n",
+       "[31621] \"217299_s_at\"                 \"219003_s_at\"                \n",
+       "[31623] \"215880_at\"                   \"216547_at\"                  \n",
+       "[31625] \"220173_at\"                   \"219808_at\"                  \n",
+       "[31627] \"216685_s_at\"                 \"218036_x_at\"                \n",
+       "[31629] \"218401_s_at\"                 \"218463_s_at\"                \n",
+       "[31631] \"220259_at\"                   \"220505_at\"                  \n",
+       "[31633] \"217553_at\"                   \"217553_at\"                  \n",
+       "[31635] \"218501_at\"                   \"218384_at\"                  \n",
+       "[31637] \"220536_at\"                   \"217739_s_at\"                \n",
+       "[31639] \"217738_at\"                   \"219270_at\"                  \n",
+       "[31641] \"218510_x_at\"                 \"218532_s_at\"                \n",
+       "[31643] \"218649_x_at\"                 \"220104_at\"                  \n",
+       "[31645] \"218086_at\"                   \"218001_at\"                  \n",
+       "[31647] \"218992_at\"                   \"217098_s_at\"                \n",
+       "[31649] \"216883_x_at\"                 \"219758_at\"                  \n",
+       "[31651] \"220170_at\"                   \"219194_at\"                  \n",
+       "[31653] \"220049_s_at\"                 \"217985_s_at\"                \n",
+       "[31655] \"217986_s_at\"                 \"215692_s_at\"                \n",
+       "[31657] \"219265_at\"                   \"220504_at\"                  \n",
+       "[31659] \"216294_s_at\"                 \"217802_s_at\"                \n",
+       "[31661] \"216377_x_at\"                 \"219945_at\"                  \n",
+       "[31663] \"219664_s_at\"                 \"216377_x_at\"                \n",
+       "[31665] \"218852_at\"                   \"218620_s_at\"                \n",
+       "[31667] \"218621_at\"                   \"218836_at\"                  \n",
+       "[31669] \"218836_at\"                   \"218836_at\"                  \n",
+       "[31671] \"216821_at\"                   \"219914_at\"                  \n",
+       "[31673] \"219734_at\"                   \"218788_s_at\"                \n",
+       "[31675] \"216410_at\"                   \"219809_at\"                  \n",
+       "[31677] \"216526_x_at\"                 \"219344_at\"                  \n",
+       "[31679] \"215836_s_at\"                 \"216352_x_at\"                \n",
+       "[31681] \"215836_s_at\"                 \"216352_x_at\"                \n",
+       "[31683] \"215711_s_at\"                 \"215836_s_at\"                \n",
+       "[31685] \"216352_x_at\"                 \"215836_s_at\"                \n",
+       "[31687] \"216352_x_at\"                 \"215836_s_at\"                \n",
+       "[31689] \"216352_x_at\"                 \"220446_s_at\"                \n",
+       "[31691] \"215836_s_at\"                 \"216352_x_at\"                \n",
+       "[31693] \"215836_s_at\"                 \"216352_x_at\"                \n",
+       "[31695] \"217356_s_at\"                 \"215836_s_at\"                \n",
+       "[31697] \"216352_x_at\"                 \"215836_s_at\"                \n",
+       "[31699] \"216352_x_at\"                 \"215836_s_at\"                \n",
+       "[31701] \"216352_x_at\"                 \"218834_s_at\"                \n",
+       "[31703] \"218699_at\"                   \"218700_s_at\"                \n",
+       "[31705] \"215836_s_at\"                 \"216352_x_at\"                \n",
+       "[31707] \"215836_s_at\"                 \"216352_x_at\"                \n",
+       "[31709] \"215836_s_at\"                 \"216352_x_at\"                \n",
+       "[31711] \"215836_s_at\"                 \"216352_x_at\"                \n",
+       "[31713] \"215836_s_at\"                 \"216352_x_at\"                \n",
+       "[31715] \"215836_s_at\"                 \"216352_x_at\"                \n",
+       "[31717] \"219895_at\"                   \"218423_x_at\"                \n",
+       "[31719] \"217894_at\"                   \"215836_s_at\"                \n",
+       "[31721] \"216352_x_at\"                 \"219474_at\"                  \n",
+       "[31723] \"215836_s_at\"                 \"216352_x_at\"                \n",
+       "[31725] \"216233_at\"                   \"218810_at\"                  \n",
+       "[31727] \"218763_at\"                   \"218319_at\"                  \n",
+       "[31729] \"215836_s_at\"                 \"216352_x_at\"                \n",
+       "[31731] \"219687_at\"                   \"219650_at\"                  \n",
+       "[31733] \"215836_s_at\"                 \"216352_x_at\"                \n",
+       "[31735] \"218378_s_at\"                 \"218431_at\"                  \n",
+       "[31737] \"216326_s_at\"                 \"218955_at\"                  \n",
+       "[31739] \"218954_s_at\"                 \"219593_at\"                  \n",
+       "[31741] \"220307_at\"                   \"219681_s_at\"                \n",
+       "[31743] \"216323_x_at\"                 \"220210_at\"                  \n",
+       "[31745] \"217499_x_at\"                 \"217914_at\"                  \n",
+       "[31747] \"217303_s_at\"                 \"215836_s_at\"                \n",
+       "[31749] \"216352_x_at\"                 \"216105_x_at\"                \n",
+       "[31751] \"216840_s_at\"                 \"219624_at\"                  \n",
+       "[31753] \"216611_s_at\"                 \"217621_at\"                  \n",
+       "[31755] \"215715_at\"                   \"219100_at\"                  \n",
+       "[31757] \"216202_s_at\"                 \"216203_at\"                  \n",
+       "[31759] \"219100_at\"                   \"219610_at\"                  \n",
+       "[31761] \"216589_at\"                   \"218356_at\"                  \n",
+       "[31763] \"216856_s_at\"                 \"216856_s_at\"                \n",
+       "[31765] \"216856_s_at\"                 \"216856_s_at\"                \n",
+       "[31767] \"216856_s_at\"                 \"216856_s_at\"                \n",
+       "[31769] \"216441_at\"                   \"217859_s_at\"                \n",
+       "[31771] \"216009_at\"                   \"218504_at\"                  \n",
+       "[31773] \"216611_s_at\"                 \"217621_at\"                  \n",
+       "[31775] \"218646_at\"                   \"216460_at\"                  \n",
+       "[31777] \"218927_s_at\"                 \"216596_at\"                  \n",
+       "[31779] \"218309_at\"                   \"218246_at\"                  \n",
+       "[31781] \"218363_at\"                   \"218446_s_at\"                \n",
+       "[31783] \"218578_at\"                   \"217452_s_at\"                \n",
+       "[31785] \"218356_at\"                   \"219763_at\"                  \n",
+       "[31787] \"218577_at\"                   \"217104_at\"                  \n",
+       "[31789] \"219508_at\"                   \"216303_s_at\"                \n",
+       "[31791] \"216095_x_at\"                 \"217127_at\"                  \n",
+       "[31793] \"218116_at\"                   \"216109_at\"                  \n",
+       "[31795] \"215566_x_at\"                 \"216606_x_at\"                \n",
+       "[31797] \"215568_x_at\"                 \"220247_at\"                  \n",
+       "[31799] \"216320_x_at\"                 \"219460_s_at\"                \n",
+       "[31801] \"217046_s_at\"                 \"218224_at\"                  \n",
+       "[31803] \"216316_x_at\"                 \"215966_x_at\"                \n",
+       "[31805] \"216775_at\"                   \"219416_at\"                  \n",
+       "[31807] \"218125_s_at\"                 \"216059_at\"                  \n",
+       "[31809] \"217399_s_at\"                 \"220085_at\"                  \n",
+       "[31811] \"217751_at\"                   \"216836_s_at\"                \n",
+       "[31813] \"220168_at\"                   \"219920_s_at\"                \n",
+       "[31815] \"219386_s_at\"                 \"219385_at\"                  \n",
+       "[31817] \"220308_at\"                   \"219148_at\"                  \n",
+       "[31819] \"218301_at\"                   \"219398_at\"                  \n",
+       "[31821] \"219638_at\"                   \"219333_s_at\"                \n",
+       "[31823] \"217411_s_at\"                 \"217909_s_at\"                \n",
+       "[31825] \"217910_x_at\"                 \"215706_x_at\"                \n",
+       "[31827] \"217449_at\"                   \"219359_at\"                  \n",
+       "[31829] \"217682_at\"                   \"217682_at\"                  \n",
+       "[31831] \"219125_s_at\"                 \"220149_at\"                  \n",
+       "[31833] \"218331_s_at\"                 \"218921_at\"                  \n",
+       "[31835] \"218149_s_at\"                 \"220102_at\"                  \n",
+       "[31837] \"217354_s_at\"                 \"220136_s_at\"                \n",
+       "[31839] \"215935_at\"                   \"215935_at\"                  \n",
+       "[31841] \"219898_at\"                   \"217354_s_at\"                \n",
+       "[31843] \"217341_at\"                   \"220267_at\"                  \n",
+       "[31845] \"218963_s_at\"                 \"218037_at\"                  \n",
+       "[31847] \"220208_at\"                   \"220155_s_at\"                \n",
+       "[31849] \"217962_at\"                   \"220473_s_at\"                \n",
+       "[31851] \"219917_at\"                   \"219461_at\"                  \n",
+       "[31853] \"219461_at\"                   \"219545_at\"                  \n",
+       "[31855] \"218101_s_at\"                 \"218901_at\"                  \n",
+       "[31857] \"218616_at\"                   \"218101_s_at\"                \n",
+       "[31859] \"217691_x_at\"                 \"217226_s_at\"                \n",
+       "[31861] \"218219_s_at\"                 \"218066_at\"                  \n",
+       "[31863] \"219352_at\"                   \"220272_at\"                  \n",
+       "[31865] \"220153_at\"                   \"217956_s_at\"                \n",
+       "[31867] \"218970_s_at\"                 \"219547_at\"                  \n",
+       "[31869] \"219954_s_at\"                 \"219879_s_at\"                \n",
+       "[31871] \"219842_at\"                   \"216675_at\"                  \n",
+       "[31873] \"218419_s_at\"                 \"218892_at\"                  \n",
+       "[31875] \"217931_at\"                   \"220539_at\"                  \n",
+       "[31877] \"218753_at\"                   \"217625_x_at\"                \n",
+       "[31879] \"218274_s_at\"                 \"218245_at\"                  \n",
+       "[31881] \"219246_s_at\"                 \"219245_s_at\"                \n",
+       "[31883] \"218216_x_at\"                 \"220468_at\"                  \n",
+       "[31885] \"215731_s_at\"                 \"217141_at\"                  \n",
+       "[31887] \"220297_at\"                   \"217647_at\"                  \n",
+       "[31889] \"218794_s_at\"                 \"219227_at\"                  \n",
+       "[31891] \"218009_s_at\"                 \"219619_at\"                  \n",
+       "[31893] \"220114_s_at\"                 \"218189_s_at\"                \n",
+       "[31895] \"218009_s_at\"                 \"218415_at\"                  \n",
+       "[31897] \"220474_at\"                   \"218224_at\"                  \n",
+       "[31899] \"218040_at\"                   \"216092_s_at\"                \n",
+       "[31901] \"218675_at\"                   \"218074_at\"                  \n",
+       "[31903] \"218597_s_at\"                 \"220516_at\"                  \n",
+       "[31905] \"218692_at\"                   \"220335_x_at\"                \n",
+       "[31907] \"219675_s_at\"                 \"219515_at\"                  \n",
+       "[31909] \"218003_s_at\"                 \"220187_at\"                  \n",
+       "[31911] \"220133_at\"                   \"218296_x_at\"                \n",
+       "[31913] \"218797_s_at\"                 \"218867_s_at\"                \n",
+       "[31915] \"216323_x_at\"                 \"219065_s_at\"                \n",
+       "[31917] \"217264_s_at\"                 \"216905_s_at\"                \n",
+       "[31919] \"217025_s_at\"                 \"220477_s_at\"                \n",
+       "[31921] \"220300_at\"                   \"219953_s_at\"                \n",
+       "[31923] \"219574_at\"                   \"218186_at\"                  \n",
+       "[31925] \"218790_s_at\"                 \"218790_s_at\"                \n",
+       "[31927] \"215836_s_at\"                 \"216352_x_at\"                \n",
+       "[31929] \"220122_at\"                   \"218746_at\"                  \n",
+       "[31931] \"218747_s_at\"                 \"220344_at\"                  \n",
+       "[31933] \"218065_s_at\"                 \"219121_s_at\"                \n",
+       "[31935] \"220331_at\"                   \"215929_at\"                  \n",
+       "[31937] \"219197_s_at\"                 \"215911_x_at\"                \n",
+       "[31939] \"215632_at\"                   \"218639_s_at\"                \n",
+       "[31941] \"215713_at\"                   \"220510_at\"                  \n",
+       "[31943] \"220027_s_at\"                 \"216010_x_at\"                \n",
+       "[31945] \"215754_at\"                   \"216010_x_at\"                \n",
+       "[31947] \"216915_s_at\"                 \"219049_at\"                  \n",
+       "[31949] \"219630_at\"                   \"219728_at\"                  \n",
+       "[31951] \"217202_s_at\"                 \"219165_at\"                  \n",
+       "[31953] \"219728_at\"                   \"220312_at\"                  \n",
+       "[31955] \"216260_at\"                   \"219400_at\"                  \n",
+       "[31957] \"218999_at\"                   \"215954_s_at\"                \n",
+       "[31959] \"218971_s_at\"                 \"217846_at\"                  \n",
+       "[31961] \"219053_s_at\"                 \"216037_x_at\"                \n",
+       "[31963] \"216511_s_at\"                 \"216035_x_at\"                \n",
+       "[31965] \"218829_s_at\"                 \"219030_at\"                  \n",
+       "[31967] \"218640_s_at\"                 \"218830_at\"                  \n",
+       "[31969] \"218220_at\"                   \"216636_at\"                  \n",
+       "[31971] \"218220_at\"                   \"218075_at\"                  \n",
+       "[31973] \"218898_at\"                   \"217099_s_at\"                \n",
+       "[31975] \"218993_at\"                   \"217608_at\"                  \n",
+       "[31977] \"217765_at\"                   \"220499_at\"                  \n",
+       "[31979] \"218843_at\"                   \"220186_s_at\"                \n",
+       "[31981] \"220182_at\"                   \"217794_at\"                  \n",
+       "[31983] \"217726_at\"                   \"216240_at\"                  \n",
+       "[31985] \"218688_at\"                   \"218518_at\"                  \n",
+       "[31987] \"216264_s_at\"                 \"219526_at\"                  \n",
+       "[31989] \"219794_at\"                   \"217866_at\"                  \n",
+       "[31991] \"219540_at\"                   \"218064_s_at\"                \n",
+       "[31993] \"215741_x_at\"                 \"220351_at\"                  \n",
+       "[31995] \"217398_x_at\"                 \"220071_x_at\"                \n",
+       "[31997] \"219503_s_at\"                 \"215667_x_at\"                \n",
+       "[31999] \"215667_x_at\"                 \"216843_x_at\"                \n",
+       "[32001] \"215667_x_at\"                 \"215667_x_at\"                \n",
+       "[32003] \"216843_x_at\"                 \"215667_x_at\"                \n",
+       "[32005] \"216843_x_at\"                 \"216561_x_at\"                \n",
+       "[32007] \"215667_x_at\"                 \"215667_x_at\"                \n",
+       "[32009] \"217916_s_at\"                 \"217534_at\"                  \n",
+       "[32011] \"219571_s_at\"                 \"216438_s_at\"                \n",
+       "[32013] \"220346_at\"                   \"220195_at\"                  \n",
+       "[32015] \"218965_s_at\"                 \"219528_s_at\"                \n",
+       "[32017] \"217926_at\"                   \"216583_x_at\"                \n",
+       "[32019] \"220052_s_at\"                 \"217156_at\"                  \n",
+       "[32021] \"218720_x_at\"                 \"219943_s_at\"                \n",
+       "[32023] \"219396_s_at\"                 \"217933_s_at\"                \n",
+       "[32025] \"220316_at\"                   \"220207_at\"                  \n",
+       "[32027] \"215643_at\"                   \"215656_at\"                  \n",
+       "[32029] \"218300_at\"                   \"218300_at\"                  \n",
+       "[32031] \"218300_at\"                   \"215872_at\"                  \n",
+       "[32033] \"216969_s_at\"                 \"217234_s_at\"                \n",
+       "[32035] \"217190_x_at\"                 \"217163_at\"                  \n",
+       "[32037] \"219166_at\"                   \"217906_at\"                  \n",
+       "[32039] \"216139_s_at\"                 \"215779_s_at\"                \n",
+       "[32041] \"220471_s_at\"                 \"216194_s_at\"                \n",
+       "[32043] \"218167_at\"                   \"219676_at\"                  \n",
+       "[32045] \"217302_at\"                   \"217993_s_at\"                \n",
+       "[32047] \"219787_s_at\"                 \"217379_at\"                  \n",
+       "[32049] \"215732_s_at\"                 \"218606_at\"                  \n",
+       "[32051] \"216908_x_at\"                 \"216582_at\"                  \n",
+       "[32053] \"216089_at\"                   \"220403_s_at\"                \n",
+       "[32055] \"220402_at\"                   \"218563_at\"                  \n",
+       "[32057] \"217849_s_at\"                 \"218278_at\"                  \n",
+       "[32059] \"216667_at\"                   \"218323_at\"                  \n",
+       "[32061] \"219408_at\"                   \"215993_at\"                  \n",
+       "[32063] \"219839_x_at\"                 \"219840_s_at\"                \n",
+       "[32065] \"215847_at\"                   \"215961_at\"                  \n",
+       "[32067] \"215572_at\"                   \"219647_at\"                  \n",
+       "[32069] \"218132_s_at\"                 \"219824_at\"                  \n",
+       "[32071] \"220292_at\"                   \"218937_at\"                  \n",
+       "[32073] \"217747_s_at\"                 \"220023_at\"                  \n",
+       "[32075] \"218695_at\"                   \"218695_at\"                  \n",
+       "[32077] \"216263_s_at\"                 \"219292_at\"                  \n",
+       "[32079] \"219015_s_at\"                 \"219041_s_at\"                \n",
+       "[32081] \"217588_at\"                   \"217959_s_at\"                \n",
+       "[32083] \"217958_at\"                   \"220045_at\"                  \n",
+       "[32085] \"220231_at\"                   \"216993_s_at\"                \n",
+       "[32087] \"218129_s_at\"                 \"218128_at\"                  \n",
+       "[32089] \"218127_at\"                   \"218514_at\"                  \n",
+       "[32091] \"219831_at\"                   \"216392_s_at\"                \n",
+       "[32093] \"215801_at\"                   \"215801_at\"                  \n",
+       "[32095] \"220081_x_at\"                 \"220081_x_at\"                \n",
+       "[32097] \"216370_s_at\"                 \"218335_x_at\"                \n",
+       "[32099] \"217798_at\"                   \"216008_s_at\"                \n",
+       "[32101] \"220094_s_at\"                 \"217627_at\"                  \n",
+       "[32103] \"220303_at\"                   \"220181_x_at\"                \n",
+       "[32105] \"218989_x_at\"                 \"216607_s_at\"                \n",
+       "[32107] \"218205_s_at\"                 \"219437_s_at\"                \n",
+       "[32109] \"216713_at\"                   \"215690_x_at\"                \n",
+       "[32111] \"215782_at\"                   \"218332_at\"                  \n",
+       "[32113] \"220110_s_at\"                 \"217975_at\"                  \n",
+       "[32115] \"219132_at\"                   \"217963_s_at\"                \n",
+       "[32117] \"219175_s_at\"                 \"217589_at\"                  \n",
+       "[32119] \"215782_at\"                   \"218743_at\"                  \n",
+       "[32121] \"216107_at\"                   \"217740_x_at\"                \n",
+       "[32123] \"219241_x_at\"                 \"219919_s_at\"                \n",
+       "[32125] \"217614_at\"                   \"217499_x_at\"                \n",
+       "[32127] \"219718_at\"                   \"217968_at\"                  \n",
+       "[32129] \"217393_x_at\"                 \"219184_x_at\"                \n",
+       "[32131] \"218021_at\"                   \"219874_at\"                  \n",
+       "[32133] \"217316_at\"                   \"217838_s_at\"                \n",
+       "[32135] \"218996_at\"                   \"218495_at\"                  \n",
+       "[32137] \"216607_s_at\"                 \"215679_at\"                  \n",
+       "[32139] \"216607_s_at\"                 \"220339_s_at\"                \n",
+       "[32141] \"216934_at\"                   \"219838_at\"                  \n",
+       "[32143] \"217543_s_at\"                 \"220277_at\"                  \n",
+       "[32145] \"220293_at\"                   \"218119_at\"                  \n",
+       "[32147] \"218449_at\"                   \"218412_s_at\"                \n",
+       "[32149] \"219373_at\"                   \"219099_at\"                  \n",
+       "[32151] \"219182_at\"                   \"218551_at\"                  \n",
+       "[32153] \"217499_x_at\"                 \"216599_x_at\"                \n",
+       "[32155] \"218262_at\"                   \"219350_s_at\"                \n",
+       "[32157] \"217597_x_at\"                 \"217520_x_at\"                \n",
+       "[32159] \"218343_s_at\"                 \"217301_x_at\"                \n",
+       "[32161] \"217977_at\"                   \"216101_at\"                  \n",
+       "[32163] \"218210_at\"                   \"217317_s_at\"                \n",
+       "[32165] \"215793_at\"                   \"216005_at\"                  \n",
+       "[32167] \"215670_s_at\"                 \"219744_at\"                  \n",
+       "[32169] \"217466_x_at\"                 \"216274_s_at\"                \n",
+       "[32171] \"216128_at\"                   \"217301_x_at\"                \n",
+       "[32173] \"217317_s_at\"                 \"217520_x_at\"                \n",
+       "[32175] \"217466_x_at\"                 \"217466_x_at\"                \n",
+       "[32177] \"217177_s_at\"                 \"217981_s_at\"                \n",
+       "[32179] \"218370_s_at\"                 \"220395_at\"                  \n",
+       "[32181] \"218321_x_at\"                 \"217797_at\"                  \n",
+       "[32183] \"218256_s_at\"                 \"218601_at\"                  \n",
+       "[32185] \"218837_s_at\"                 \"216242_x_at\"                \n",
+       "[32187] \"216242_x_at\"                 \"218021_at\"                  \n",
+       "[32189] \"219465_at\"                   \"219466_s_at\"                \n",
+       "[32191] \"216949_s_at\"                 \"220377_at\"                  \n",
+       "[32193] \"215569_at\"                   \"217618_x_at\"                \n",
+       "[32195] \"219179_at\"                   \"220194_at\"                  \n",
+       "[32197] \"218076_s_at\"                 \"217774_s_at\"                \n",
+       "[32199] \"215565_at\"                   \"219735_s_at\"                \n",
+       "[32201] \"216591_s_at\"                 \"219239_s_at\"                \n",
+       "[32203] \"218958_at\"                   \"219005_at\"                  \n",
+       "[32205] \"217280_x_at\"                 \"219554_at\"                  \n",
+       "[32207] \"217525_at\"                   \"220276_at\"                  \n",
+       "[32209] \"217635_s_at\"                 \"217636_at\"                  \n",
+       "[32211] \"217635_s_at\"                 \"217636_at\"                  \n",
+       "[32213] \"218866_s_at\"                 \"216236_s_at\"                \n",
+       "[32215] \"217988_at\"                   \"218849_s_at\"                \n",
+       "[32217] \"219658_at\"                   \"216316_x_at\"                \n",
+       "[32219] \"215966_x_at\"                 \"217437_s_at\"                \n",
+       "[32221] \"219870_at\"                   \"219995_s_at\"                \n",
+       "[32223] \"219679_s_at\"                 \"217742_s_at\"                \n",
+       "[32225] \"220109_at\"                   \"218528_s_at\"                \n",
+       "[32227] \"220230_s_at\"                 \"218396_at\"                  \n",
+       "[32229] \"220517_at\"                   \"219043_s_at\"                \n",
+       "[32231] \"216295_s_at\"                 \"219851_at\"                  \n",
+       "[32233] \"217430_x_at\"                 \"219266_at\"                  \n",
+       "[32235] \"217185_s_at\"                 \"218839_at\"                  \n",
+       "[32237] \"219678_x_at\"                 \"216831_s_at\"                \n",
+       "[32239] \"216832_at\"                   \"219289_at\"                  \n",
+       "[32241] \"219401_at\"                   \"217073_x_at\"                \n",
+       "[32243] \"219566_at\"                   \"219663_s_at\"                \n",
+       "[32245] \"217066_s_at\"                 \"217661_x_at\"                \n",
+       "[32247] \"216231_s_at\"                 \"216997_x_at\"                \n",
+       "[32249] \"216205_s_at\"                 \"216265_x_at\"                \n",
+       "[32251] \"217377_x_at\"                 \"217033_x_at\"                \n",
+       "[32253] \"218347_at\"                   \"217496_s_at\"                \n",
+       "[32255] \"219887_at\"                   \"216178_x_at\"                \n",
+       "[32257] \"215878_at\"                   \"219993_at\"                  \n",
+       "[32259] \"218845_at\"                   \"218845_at\"                  \n",
+       "[32261] \"215891_s_at\"                 \"215890_at\"                  \n",
+       "[32263] \"216880_at\"                   \"216986_s_at\"                \n",
+       "[32265] \"216987_at\"                   \"219642_s_at\"                \n",
+       "[32267] \"217919_s_at\"                 \"220411_x_at\"                \n",
+       "[32269] \"216184_s_at\"                 \"217526_at\"                  \n",
+       "[32271] \"217527_s_at\"                 \"220060_s_at\"                \n",
+       "[32273] \"217588_at\"                   \"216241_s_at\"                \n",
+       "[32275] \"219177_at\"                   \"216098_s_at\"                \n",
+       "[32277] \"216233_at\"                   \"217860_at\"                  \n",
+       "[32279] \"218869_at\"                   \"218840_s_at\"                \n",
+       "[32281] \"220011_at\"                   \"217809_at\"                  \n",
+       "[32283] \"218520_at\"                   \"219462_at\"                  \n",
+       "[32285] \"216086_at\"                   \"216956_s_at\"                \n",
+       "[32287] \"216135_at\"                   \"218027_at\"                  \n",
+       "[32289] \"217297_s_at\"                 \"219871_at\"                  \n",
+       "[32291] \"219904_at\"                   \"218553_s_at\"                \n",
+       "[32293] \"218534_s_at\"                 \"219143_s_at\"                \n",
+       "[32295] \"218488_at\"                   \"215844_at\"                  \n",
+       "[32297] \"218029_at\"                   \"218604_at\"                  \n",
+       "[32299] \"218632_at\"                   \"219066_at\"                  \n",
+       "[32301] \"215834_x_at\"                 \"217756_x_at\"                \n",
+       "[32303] \"218680_x_at\"                 \"219963_at\"                  \n",
+       "[32305] \"219598_s_at\"                 \"218131_s_at\"                \n",
+       "[32307] \"218754_at\"                   \"216627_s_at\"                \n",
+       "[32309] \"215569_at\"                   \"217242_at\"                  \n",
+       "[32311] \"219849_at\"                   \"218085_at\"                  \n",
+       "[32313] \"219356_s_at\"                 \"215570_s_at\"                \n",
+       "[32315] \"215981_at\"                   \"218055_s_at\"                \n",
+       "[32317] \"216959_x_at\"                 \"218595_s_at\"                \n",
+       "[32319] \"218594_at\"                   \"217541_x_at\"                \n",
+       "[32321] \"219492_at\"                   \"216289_at\"                  \n",
+       "[32323] \"218823_s_at\"                 \"220019_s_at\"                \n",
+       "[32325] \"216983_s_at\"                 \"217663_at\"                  \n",
+       "[32327] \"218670_at\"                   \"219603_s_at\"                \n",
+       "[32329] \"218148_at\"                   \"217403_s_at\"                \n",
+       "[32331] \"218613_at\"                   \"215602_at\"                  \n",
+       "[32333] \"219106_s_at\"                 \"219106_s_at\"                \n",
+       "[32335] \"219002_at\"                   \"218608_at\"                  \n",
+       "[32337] \"215808_at\"                   \"216470_x_at\"                \n",
+       "[32339] \"219572_at\"                   \"217315_s_at\"                \n",
+       "[32341] \"219076_s_at\"                 \"220184_at\"                  \n",
+       "[32343] \"219076_s_at\"                 \"219458_s_at\"                \n",
+       "[32345] \"218751_s_at\"                 \"217159_x_at\"                \n",
+       "[32347] \"216537_s_at\"                 \"216449_x_at\"                \n",
+       "[32349] \"216941_s_at\"                 \"220283_at\"                  \n",
+       "[32351] \"220179_at\"                   \"219452_at\"                  \n",
+       "[32353] \"219042_at\"                   \"218486_at\"                  \n",
+       "[32355] \"219486_at\"                   \"220519_s_at\"                \n",
+       "[32357] \"216452_at\"                   \"216666_at\"                  \n",
+       "[32359] \"219694_at\"                   \"220199_s_at\"                \n",
+       "[32361] \"215672_s_at\"                 \"219231_at\"                  \n",
+       "[32363] \"218313_s_at\"                 \"215920_s_at\"                \n",
+       "[32365] \"218376_s_at\"                 \"217225_x_at\"                \n",
+       "[32367] \"219791_s_at\"                 \"219905_at\"                  \n",
+       "[32369] \"216269_s_at\"                 \"218283_at\"                  \n",
+       "[32371] \"219312_s_at\"                 \"218087_s_at\"                \n",
+       "[32373] \"215838_at\"                   \"217845_x_at\"                \n",
+       "[32375] \"219343_at\"                   \"217845_x_at\"                \n",
+       "[32377] \"219415_at\"                   \"220218_at\"                  \n",
+       "[32379] \"218735_s_at\"                 \"218056_at\"                  \n",
+       "[32381] \"219293_s_at\"                 \"219281_at\"                  \n",
+       "[32383] \"218400_at\"                   \"215920_s_at\"                \n",
+       "[32385] \"218215_s_at\"                 \"215776_at\"                  \n",
+       "[32387] \"219234_x_at\"                 \"219022_at\"                  \n",
+       "[32389] \"220378_at\"                   \"218759_at\"                  \n",
+       "[32391] \"217781_s_at\"                 \"218885_s_at\"                \n",
+       "[32393] \"218312_s_at\"                 \"217593_at\"                  \n",
+       "[32395] \"219765_at\"                   \"219762_s_at\"                \n",
+       "[32397] \"218477_at\"                   \"218354_at\"                  \n",
+       "[32399] \"220375_s_at\"                 \"218002_s_at\"                \n",
+       "[32401] \"220255_at\"                   \"215963_x_at\"                \n",
+       "[32403] \"218461_at\"                   \"219704_at\"                  \n",
+       "[32405] \"219027_s_at\"                 \"218196_at\"                  \n",
+       "[32407] \"219909_at\"                   \"218284_at\"                  \n",
+       "[32409] \"219731_at\"                   \"215785_s_at\"                \n",
+       "[32411] \"219172_at\"                   \"219581_at\"                  \n",
+       "[32413] \"218584_at\"                   \"218631_at\"                  \n",
+       "[32415] \"218057_x_at\"                 \"215807_s_at\"                \n",
+       "[32417] \"215668_s_at\"                 \"216010_x_at\"                \n",
+       "[32419] \"219092_s_at\"                 \"218030_at\"                  \n",
+       "[32421] \"216695_s_at\"                 \"218150_at\"                  \n",
+       "[32423] \"216876_s_at\"                 \"220175_s_at\"                \n",
+       "[32425] \"218722_s_at\"                 \"219186_at\"                  \n",
+       "[32427] \"218464_s_at\"                 \"218795_at\"                  \n",
+       "[32429] \"219613_s_at\"                 \"218920_at\"                  \n",
+       "[32431] \"216186_at\"                   \"217941_s_at\"                \n",
+       "[32433] \"217778_at\"                   \"219860_at\"                  \n",
+       "[32435] \"218787_x_at\"                 \"220441_at\"                  \n",
+       "[32437] \"217288_at\"                   \"215904_at\"                  \n",
+       "[32439] \"220161_s_at\"                 \"218749_s_at\"                \n",
+       "[32441] \"219971_at\"                   \"216894_x_at\"                \n",
+       "[32443] \"219534_x_at\"                 \"215920_s_at\"                \n",
+       "[32445] \"215921_at\"                   \"217667_at\"                  \n",
+       "[32447] \"218861_at\"                   \"217340_at\"                  \n",
+       "[32449] \"217322_x_at\"                 \"219573_at\"                  \n",
+       "[32451] \"218697_at\"                   \"217753_s_at\"                \n",
+       "[32453] \"218228_s_at\"                 \"218192_at\"                  \n",
+       "[32455] \"216950_s_at\"                 \"217480_x_at\"                \n",
+       "[32457] \"217934_x_at\"                 \"215992_s_at\"                \n",
+       "[32459] \"219564_at\"                   \"217312_s_at\"                \n",
+       "[32461] \"217492_s_at\"                 \"218248_at\"                  \n",
+       "[32463] \"218946_at\"                   \"216467_s_at\"                \n",
+       "[32465] \"215569_at\"                   \"216527_at\"                  \n",
+       "[32467] \"217011_at\"                   \"218071_s_at\"                \n",
+       "[32469] \"219628_at\"                   \"219469_at\"                  \n",
+       "[32471] \"218766_s_at\"                 \"218814_s_at\"                \n",
+       "[32473] \"220118_at\"                   \"216897_s_at\"                \n",
+       "[32475] \"217818_s_at\"                 \"217817_at\"                  \n",
+       "[32477] \"219327_s_at\"                 \"217604_at\"                  \n",
+       "[32479] \"219933_at\"                   \"217078_s_at\"                \n",
+       "[32481] \"218811_at\"                   \"218812_s_at\"                \n",
+       "[32483] \"217529_at\"                   \"217027_x_at\"                \n",
+       "[32485] \"218903_s_at\"                 \"217912_at\"                  \n",
+       "[32487] \"218698_at\"                   \"217075_x_at\"                \n",
+       "[32489] \"217006_x_at\"                 \"219019_at\"                  \n",
+       "[32491] \"217512_at\"                   \"217904_s_at\"                \n",
+       "[32493] \"220528_at\"                   \"219689_at\"                  \n",
+       "[32495] \"219423_x_at\"                 \"216042_at\"                  \n",
+       "[32497] \"216442_x_at\"                 \"219088_s_at\"                \n",
+       "[32499] \"219089_s_at\"                 \"219974_x_at\"                \n",
+       "[32501] \"217599_s_at\"                 \"218166_s_at\"                \n",
+       "[32503] \"219666_at\"                   \"217111_at\"                  \n",
+       "[32505] \"219298_at\"                   \"220054_at\"                  \n",
+       "[32507] \"217595_at\"                   \"220029_at\"                  \n",
+       "[32509] \"218344_s_at\"                 \"220219_s_at\"                \n",
+       "[32511] \"219802_at\"                   \"217002_s_at\"                \n",
+       "[32513] \"216615_s_at\"                 \"218784_s_at\"                \n",
+       "[32515] \"219233_s_at\"                 \"219615_s_at\"                \n",
+       "[32517] \"217191_x_at\"                 \"219507_at\"                  \n",
+       "[32519] \"219499_at\"                   \"218193_s_at\"                \n",
+       "[32521] \"218470_at\"                   \"218060_s_at\"                \n",
+       "[32523] \"217450_at\"                   \"218290_at\"                  \n",
+       "[32525] \"218229_s_at\"                 \"219236_at\"                  \n",
+       "[32527] \"218290_at\"                   \"215920_s_at\"                \n",
+       "[32529] \"215921_at\"                   \"218967_s_at\"                \n",
+       "[32531] \"216743_at\"                   \"215731_s_at\"                \n",
+       "[32533] \"220250_at\"                   \"216827_at\"                  \n",
+       "[32535] \"220066_at\"                   \"216926_s_at\"                \n",
+       "[32537] \"217652_at\"                   \"219968_at\"                  \n",
+       "[32539] \"219982_s_at\"                 \"220444_at\"                  \n",
+       "[32541] \"217624_at\"                   \"218737_at\"                  \n",
+       "[32543] \"219348_at\"                   \"219798_s_at\"                \n",
+       "[32545] \"219798_s_at\"                 \"219358_s_at\"                \n",
+       "[32547] \"218434_s_at\"                 \"218165_at\"                  \n",
+       "[32549] \"220261_s_at\"                 \"219336_s_at\"                \n",
+       "[32551] \"219261_at\"                   \"220192_x_at\"                \n",
+       "[32553] \"217925_s_at\"                 \"217924_at\"                  \n",
+       "[32555] \"217504_at\"                   \"216588_at\"                  \n",
+       "[32557] \"220034_at\"                   \"215708_s_at\"                \n",
+       "[32559] \"219141_s_at\"                 \"219295_s_at\"                \n",
+       "[32561] \"216585_at\"                   \"217362_x_at\"                \n",
+       "[32563] \"217362_x_at\"                 \"216042_at\"                  \n",
+       "[32565] \"220242_x_at\"                 \"217149_x_at\"                \n",
+       "[32567] \"220440_at\"                   \"220366_at\"                  \n",
+       "[32569] \"218289_s_at\"                 \"216841_s_at\"                \n",
+       "[32571] \"219885_at\"                   \"220167_s_at\"                \n",
+       "[32573] \"220167_s_at\"                 \"220167_s_at\"                \n",
+       "[32575] \"220167_s_at\"                 \"220167_s_at\"                \n",
+       "[32577] \"220167_s_at\"                 \"220167_s_at\"                \n",
+       "[32579] \"217661_x_at\"                 \"215920_s_at\"                \n",
+       "[32581] \"215921_at\"                   \"220167_s_at\"                \n",
+       "[32583] \"220167_s_at\"                 \"220167_s_at\"                \n",
+       "[32585] \"218395_at\"                   \"220185_at\"                  \n",
+       "[32587] \"219342_at\"                   \"215920_s_at\"                \n",
+       "[32589] \"215921_at\"                   \"218008_at\"                  \n",
+       "[32591] \"216921_s_at\"                 \"219826_at\"                  \n",
+       "[32593] \"218404_at\"                   \"218850_s_at\"                \n",
+       "[32595] \"220526_s_at\"                 \"220527_at\"                  \n",
+       "[32597] \"216920_s_at\"                 \"215806_x_at\"                \n",
+       "[32599] \"218731_s_at\"                 \"218832_x_at\"                \n",
+       "[32601] \"217374_x_at\"                 \"216298_at\"                  \n",
+       "[32603] \"217381_s_at\"                 \"216298_at\"                  \n",
+       "[32605] \"217381_s_at\"                 \"218268_at\"                  \n",
+       "[32607] \"216920_s_at\"                 \"215806_x_at\"                \n",
+       "[32609] \"216920_s_at\"                 \"215806_x_at\"                \n",
+       "[32611] \"219739_at\"                   \"219966_x_at\"                \n",
+       "[32613] \"216277_at\"                   \"215748_at\"                  \n",
+       "[32615] \"220349_s_at\"                 \"220154_at\"                  \n",
+       "[32617] \"216918_s_at\"                 \"219949_at\"                  \n",
+       "[32619] \"217486_s_at\"                 \"215989_at\"                  \n",
+       "[32621] \"216052_x_at\"                 \"216901_s_at\"                \n",
+       "[32623] \"217060_at\"                   \"216857_at\"                  \n",
+       "[32625] \"217509_x_at\"                 \"218347_at\"                  \n",
+       "[32627] \"219145_at\"                   \"217657_at\"                  \n",
+       "[32629] \"220018_at\"                   \"217350_at\"                  \n",
+       "[32631] \"217350_at\"                   \"220191_at\"                  \n",
+       "[32633] \"216935_at\"                   \"218483_s_at\"                \n",
+       "[32635] \"220092_s_at\"                 \"220093_at\"                  \n",
+       "[32637] \"217365_at\"                   \"217361_at\"                  \n",
+       "[32639] \"216175_at\"                   \"219831_at\"                  \n",
+       "[32641] \"217122_s_at\"                 \"220541_at\"                  \n",
+       "[32643] \"219880_at\"                   \"219881_s_at\"                \n",
+       "[32645] \"215599_at\"                   \"215599_at\"                  \n",
+       "[32647] \"219097_x_at\"                 \"217753_s_at\"                \n",
+       "[32649] \"218508_at\"                   \"219784_at\"                  \n",
+       "[32651] \"219785_s_at\"                 \"219255_x_at\"                \n",
+       "[32653] \"220412_x_at\"                 \"218658_s_at\"                \n",
+       "[32655] \"215784_at\"                   \"219282_s_at\"                \n",
+       "[32657] \"218317_x_at\"                 \"218317_x_at\"                \n",
+       "[32659] \"216652_s_at\"                 \"216653_at\"                  \n",
+       "[32661] \"219922_s_at\"                 \"216949_s_at\"                \n",
+       "[32663] \"219424_at\"                   \"216697_at\"                  \n",
+       "[32665] \"218473_s_at\"                 \"219476_at\"                  \n",
+       "[32667] \"219856_at\"                   \"218687_s_at\"                \n",
+       "[32669] \"218509_at\"                   \"218804_at\"                  \n",
+       "[32671] \"219058_x_at\"                 \"217923_at\"                  \n",
+       "[32673] \"219562_at\"                   \"217382_at\"                  \n",
+       "[32675] \"219043_s_at\"                 \"216319_at\"                  \n",
+       "[32677] \"215702_s_at\"                 \"217026_at\"                  \n",
+       "[32679] \"215703_at\"                   \"217520_x_at\"                \n",
+       "[32681] \"217123_x_at\"                 \"217123_x_at\"                \n",
+       "[32683] \"219445_at\"                   \"217123_x_at\"                \n",
+       "[32685] \"217123_x_at\"                 \"216313_at\"                  \n",
+       "[32687] \"216313_at\"                   \"219346_at\"                  \n",
+       "[32689] \"218059_at\"                   \"220390_at\"                  \n",
+       "[32691] \"219691_at\"                   \"218240_at\"                  \n",
+       "[32693] \"219979_s_at\"                 \"219364_at\"                  \n",
+       "[32695] \"217140_s_at\"                 \"217357_at\"                  \n",
+       "[32697] \"218900_at\"                   \"218728_s_at\"                \n",
+       "[32699] \"219830_at\"                   \"218099_at\"                  \n",
+       "[32701] \"216867_s_at\"                 \"220203_at\"                  \n",
+       "[32703] \"220204_s_at\"                 \"220256_s_at\"                \n",
+       "[32705] \"219671_at\"                   \"219039_at\"                  \n",
+       "[32707] \"218225_at\"                   \"216033_s_at\"                \n",
+       "[32709] \"215638_at\"                   \"218410_s_at\"                \n",
+       "[32711] \"218524_at\"                   \"218481_at\"                  \n",
+       "[32713] \"220425_x_at\"                 \"218524_at\"                  \n",
+       "[32715] \"219510_at\"                   \"219937_at\"                  \n",
+       "[32717] \"220164_s_at\"                 \"218361_at\"                  \n",
+       "[32719] \"218338_at\"                   \"218522_s_at\"                \n",
+       "[32721] \"219063_at\"                   \"218450_at\"                  \n",
+       "[32723] \"216099_at\"                   \"216098_s_at\"                \n",
+       "[32725] \"219635_at\"                   \"215663_at\"                  \n",
+       "[32727] \"220279_at\"                   \"220279_at\"                  \n",
+       "[32729] \"218180_s_at\"                 \"215973_at\"                  \n",
+       "[32731] \"215985_at\"                   \"218983_at\"                  \n",
+       "[32733] \"217436_x_at\"                 \"217436_x_at\"                \n",
+       "[32735] \"215717_s_at\"                 \"220160_s_at\"                \n",
+       "[32737] \"216944_s_at\"                 \"220431_at\"                  \n",
+       "[32739] \"220064_at\"                   \"219608_s_at\"                \n",
+       "[32741] \"219864_s_at\"                 \"220457_at\"                  \n",
+       "[32743] \"218214_at\"                   \"218554_s_at\"                \n",
+       "[32745] \"216939_s_at\"                 \"216311_at\"                  \n",
+       "[32747] \"219862_s_at\"                 \"216019_x_at\"                \n",
+       "[32749] \"216908_x_at\"                 \"216908_x_at\"                \n",
+       "[32751] \"220116_at\"                   \"215812_s_at\"                \n",
+       "[32753] \"220073_s_at\"                 \"216238_s_at\"                \n",
+       "[32755] \"216902_s_at\"                 \"216908_x_at\"                \n",
+       "[32757] \"219612_s_at\"                 \"217812_at\"                  \n",
+       "[32759] \"216048_s_at\"                 \"216049_at\"                  \n",
+       "[32761] \"218329_at\"                   \"218664_at\"                  \n",
+       "[32763] \"218638_s_at\"                 \"217868_s_at\"                \n",
+       "[32765] \"216056_at\"                   \"217523_at\"                  \n",
+       "[32767] \"216908_x_at\"                 \"216902_s_at\"                \n",
+       "[32769] \"216676_x_at\"                 \"220384_at\"                  \n",
+       "[32771] \"218546_at\"                   \"218365_s_at\"                \n",
+       "[32773] \"216907_x_at\"                 \"220006_at\"                  \n",
+       "[32775] \"219788_at\"                   \"220359_s_at\"                \n",
+       "[32777] \"217455_s_at\"                 \"215920_s_at\"                \n",
+       "[32779] \"218956_s_at\"                 \"220167_s_at\"                \n",
+       "[32781] \"220476_s_at\"                 \"218460_at\"                  \n",
+       "[32783] \"218063_s_at\"                 \"218062_x_at\"                \n",
+       "[32785] \"219275_at\"                   \"215920_s_at\"                \n",
+       "[32787] \"215812_s_at\"                 \"216196_at\"                  \n",
+       "[32789] \"215840_at\"                   \"220167_s_at\"                \n",
+       "[32791] \"220167_s_at\"                 \"220167_s_at\"                \n",
+       "[32793] \"215920_s_at\"                 \"215920_s_at\"                \n",
+       "[32795] \"220135_s_at\"                 \"218336_at\"                  \n",
+       "[32797] \"217225_x_at\"                 \"217225_x_at\"                \n",
+       "[32799] \"219260_s_at\"                 \"217422_s_at\"                \n",
+       "[32801] \"217422_s_at\"                 \"217767_at\"                  \n",
+       "[32803] \"219221_at\"                   \"220370_s_at\"                \n",
+       "[32805] \"218168_s_at\"                 \"216585_at\"                  \n",
+       "[32807] \"215920_s_at\"                 \"215920_s_at\"                \n",
+       "[32809] \"219111_s_at\"                 \"217893_s_at\"                \n",
+       "[32811] \"218405_at\"                   \"219376_at\"                  \n",
+       "[32813] \"218168_s_at\"                 \"220235_s_at\"                \n",
+       "[32815] \"218805_at\"                   \"219111_s_at\"                \n",
+       "[32817] \"218330_s_at\"                 \"219119_at\"                  \n",
+       "[32819] \"219812_at\"                   \"219472_at\"                  \n",
+       "[32821] \"218545_at\"                   \"217325_at\"                  \n",
+       "[32823] \"218851_s_at\"                 \"218222_x_at\"                \n",
+       "[32825] \"218221_at\"                   \"218655_s_at\"                \n",
+       "[32827] \"216902_s_at\"                 \"216908_x_at\"                \n",
+       "[32829] \"218930_s_at\"                 \"220367_s_at\"                \n",
+       "[32831] \"215972_at\"                   \"218846_at\"                  \n",
+       "[32833] \"215599_at\"                   \"215599_at\"                  \n",
+       "[32835] \"219982_s_at\"                 \"219982_s_at\"                \n",
+       "[32837] \"220000_at\"                   \"215923_s_at\"                \n",
+       "[32839] \"216196_at\"                   \"217799_x_at\"                \n",
+       "[32841] \"218567_x_at\"                 \"215599_at\"                  \n",
+       "[32843] \"215912_at\"                   \"217378_x_at\"                \n",
+       "[32845] \"219170_at\"                   \"216333_x_at\"                \n",
+       "[32847] \"217413_s_at\"                 \"216339_s_at\"                \n",
+       "[32849] \"217749_at\"                   \"218432_at\"                  \n",
+       "[32851] \"218428_s_at\"                 \"219372_at\"                  \n",
+       "[32853] \"219835_at\"                   \"218913_s_at\"                \n",
+       "[32855] \"216337_at\"                   \"216216_at\"                  \n",
+       "[32857] \"218052_s_at\"                 \"219334_s_at\"                \n",
+       "[32859] \"217822_at\"                   \"217821_s_at\"                \n",
+       "[32861] \"220470_at\"                   \"219854_at\"                  \n",
+       "[32863] \"218020_s_at\"                 \"218711_s_at\"                \n",
+       "[32865] \"219158_s_at\"                 \"216933_x_at\"                \n",
+       "[32867] \"216242_x_at\"                 \"219242_at\"                  \n",
+       "[32869] \"218987_at\"                   \"217401_at\"                  \n",
+       "[32871] \"216199_s_at\"                 \"219759_at\"                  \n",
+       "[32873] \"216242_x_at\"                 \"218454_at\"                  \n",
+       "[32875] \"217853_at\"                   \"219936_s_at\"                \n",
+       "[32877] \"220005_at\"                   \"219693_at\"                  \n",
+       "[32879] \"217877_s_at\"                 \"217721_at\"                  \n",
+       "[32881] \"217778_at\"                   \"217724_at\"                  \n",
+       "[32883] \"217725_x_at\"                 \"217095_x_at\"                \n",
+       "[32885] \"217088_s_at\"                 \"217883_at\"                  \n",
+       "[32887] \"219044_at\"                   \"220189_s_at\"                \n",
+       "[32889] \"220345_at\"                   \"218109_s_at\"                \n",
+       "[32891] \"220336_s_at\"                 \"218610_s_at\"                \n",
+       "[32893] \"219915_s_at\"                 \"220212_s_at\"                \n",
+       "[32895] \"220200_s_at\"                 \"219077_s_at\"                \n",
+       "[32897] \"219644_at\"                   \"219493_at\"                  \n",
+       "[32899] \"215569_at\"                   \"215569_at\"                  \n",
+       "[32901] \"217727_x_at\"                 \"220341_s_at\"                \n",
+       "[32903] \"219319_at\"                   \"220215_at\"                  \n",
+       "[32905] \"217727_x_at\"                 \"219105_x_at\"                \n",
+       "[32907] \"216111_x_at\"                 \"216525_x_at\"                \n",
+       "[32909] \"219960_s_at\"                 \"220083_x_at\"                \n",
+       "[32911] \"219627_at\"                   \"217623_at\"                  \n",
+       "[32913] \"215755_at\"                   \"215705_at\"                  \n",
+       "[32915] \"218491_s_at\"                 \"219065_s_at\"                \n",
+       "[32917] \"219442_at\"                   \"219825_at\"                  \n",
+       "[32919] \"218994_s_at\"                 \"218994_s_at\"                \n",
+       "[32921] \"219692_at\"                   \"216010_x_at\"                \n",
+       "[32923] \"217833_at\"                   \"217834_s_at\"                \n",
+       "[32925] \"217832_at\"                   \"216598_s_at\"                \n",
+       "[32927] \"217485_x_at\"                 \"216843_x_at\"                \n",
+       "[32929] \"220159_at\"                   \"220465_at\"                  \n",
+       "[32931] \"220159_at\"                   \"215952_s_at\"                \n",
+       "[32933] \"216833_x_at\"                 \"216696_s_at\"                \n",
+       "[32935] \"217212_s_at\"                 \"218493_at\"                  \n",
+       "[32937] \"218447_at\"                   \"220383_at\"                  \n",
+       "[32939] \"215829_at\"                   \"219220_x_at\"                \n",
+       "[32941] \"218984_at\"                   \"218874_s_at\"                \n",
+       "[32943] \"219834_at\"                   \"219123_at\"                  \n",
+       "[32945] \"217810_x_at\"                 \"220111_s_at\"                \n",
+       "[32947] \"219530_at\"                   \"216054_x_at\"                \n",
+       "[32949] \"215691_x_at\"                 \"216261_at\"                  \n",
+       "[32951] \"215737_x_at\"                 \"215764_x_at\"                \n",
+       "[32953] \"215873_x_at\"                 \"220491_at\"                  \n",
+       "[32955] \"216629_at\"                   \"216617_s_at\"                \n",
+       "[32957] \"220262_s_at\"                 \"216605_s_at\"                \n",
+       "[32959] \"215920_s_at\"                 \"215921_at\"                  \n",
+       "[32961] \"217891_at\"                   \"218458_at\"                  \n",
+       "[32963] \"218953_s_at\"                 \"220273_at\"                  \n",
+       "[32965] \"219152_at\"                   \"219206_x_at\"                \n",
+       "[32967] \"217896_s_at\"                 \"219128_at\"                  \n",
+       "[32969] \"218134_s_at\"                 \"220172_at\"                  \n",
+       "[32971] \"218013_x_at\"                 \"216103_at\"                  \n",
+       "[32973] \"217889_s_at\"                 \"217443_at\"                  \n",
+       "[32975] \"219551_at\"                   \"217510_at\"                  \n",
+       "[32977] \"219632_s_at\"                 \"219712_s_at\"                \n",
+       "[32979] \"218346_s_at\"                 \"216473_x_at\"                \n",
+       "[32981] \"216473_x_at\"                 \"216473_x_at\"                \n",
+       "[32983] \"216473_x_at\"                 \"216473_x_at\"                \n",
+       "[32985] \"216473_x_at\"                 \"216473_x_at\"                \n",
+       "[32987] \"216473_x_at\"                 \"216473_x_at\"                \n",
+       "[32989] \"216473_x_at\"                 \"216473_x_at\"                \n",
+       "[32991] \"216473_x_at\"                 \"216473_x_at\"                \n",
+       "[32993] \"216473_x_at\"                 \"216473_x_at\"                \n",
+       "[32995] \"216473_x_at\"                 \"216473_x_at\"                \n",
+       "[32997] \"216473_x_at\"                 \"216473_x_at\"                \n",
+       "[32999] \"216473_x_at\"                 \"216473_x_at\"                \n",
+       "[33001] \"216473_x_at\"                 \"216473_x_at\"                \n",
+       "[33003] \"216473_x_at\"                 \"216473_x_at\"                \n",
+       "[33005] \"216473_x_at\"                 \"216473_x_at\"                \n",
+       "[33007] \"216473_x_at\"                 \"216473_x_at\"                \n",
+       "[33009] \"216473_x_at\"                 \"216473_x_at\"                \n",
+       "[33011] \"216473_x_at\"                 \"216473_x_at\"                \n",
+       "[33013] \"216473_x_at\"                 \"216473_x_at\"                \n",
+       "[33015] \"216473_x_at\"                 \"216473_x_at\"                \n",
+       "[33017] \"216473_x_at\"                 \"216473_x_at\"                \n",
+       "[33019] \"219272_at\"                   \"217202_s_at\"                \n",
+       "[33021] \"216074_x_at\"                 \"218035_s_at\"                \n",
+       "[33023] \"217373_x_at\"                 \"217542_at\"                  \n",
+       "[33025] \"215624_at\"                   \"215735_s_at\"                \n",
+       "[33027] \"216750_at\"                   \"218433_at\"                  \n",
+       "[33029] \"219712_s_at\"                 \"219713_at\"                  \n",
+       "[33031] \"219084_at\"                   \"217365_at\"                  \n",
+       "[33033] \"217097_s_at\"                 \"219743_at\"                  \n",
+       "[33035] \"218465_at\"                   \"218024_at\"                  \n",
+       "[33037] \"217076_s_at\"                 \"219394_at\"                  \n",
+       "[33039] \"216045_at\"                   \"216255_s_at\"                \n",
+       "[33041] \"216992_s_at\"                 \"216256_at\"                  \n",
+       "[33043] \"218816_at\"                   \"217811_at\"                  \n",
+       "[33045] \"216734_s_at\"                 \"215723_s_at\"                \n",
+       "[33047] \"215724_at\"                   \"220324_at\"                  \n",
+       "[33049] \"216330_s_at\"                 \"219582_at\"                  \n",
+       "[33051] \"216234_s_at\"                 \"220496_at\"                  \n",
+       "[33053] \"217987_at\"                   \"220219_s_at\"                \n",
+       "[33055] \"217881_s_at\"                 \"217879_at\"                  \n",
+       "[33057] \"217880_at\"                   \"217878_s_at\"                \n",
+       "[33059] \"215697_at\"                   \"217419_x_at\"                \n",
+       "[33061] \"216893_s_at\"                 \"216898_s_at\"                \n",
+       "[33063] \"215622_x_at\"                 \"217734_s_at\"                \n",
+       "[33065] \"218091_at\"                   \"218092_s_at\"                \n",
+       "[33067] \"217231_s_at\"                 \"220106_at\"                  \n",
+       "[33069] \"219154_at\"                   \"217418_x_at\"                \n",
+       "[33071] \"219045_at\"                   \"217754_at\"                  \n",
+       "[33073] \"219636_s_at\"                 \"219637_at\"                  \n",
+       "[33075] \"216356_x_at\"                 \"218142_s_at\"                \n",
+       "[33077] \"217978_s_at\"                 \"216232_s_at\"                \n",
+       "[33079] \"219980_at\"                   \"218718_at\"                  \n",
+       "[33081] \"215650_at\"                   \"216320_x_at\"                \n",
+       "[33083] \"217814_at\"                   \"215734_at\"                  \n",
+       "[33085] \"218103_at\"                   \"215606_s_at\"                \n",
+       "[33087] \"216690_at\"                   \"218576_s_at\"                \n",
+       "[33089] \"217550_at\"                   \"220132_s_at\"                \n",
+       "[33091] \"220448_at\"                   \"219208_at\"                  \n",
+       "[33093] \"219320_at\"                   \"216975_x_at\"                \n",
+       "[33095] \"219219_at\"                   \"219696_at\"                  \n",
+       "[33097] \"217946_s_at\"                 \"218696_at\"                  \n",
+       "[33099] \"218079_s_at\"                 \"220522_at\"                  \n",
+       "[33101] \"218803_at\"                   \"218756_s_at\"                \n",
+       "[33103] \"219967_at\"                   \"216825_s_at\"                \n",
+       "[33105] \"218070_s_at\"                 \"219595_at\"                  \n",
+       "[33107] \"218028_at\"                   \"220258_s_at\"                \n",
+       "[33109] \"218028_at\"                   \"219218_at\"                  \n",
+       "[33111] \"219085_s_at\"                 \"218466_at\"                  \n",
+       "[33113] \"220157_x_at\"                 \"219918_s_at\"                \n",
+       "[33115] \"216207_x_at\"                 \"218912_at\"                  \n",
+       "[33117] \"218382_s_at\"                 \"218381_s_at\"                \n",
+       "[33119] \"216401_x_at\"                 \"216401_x_at\"                \n",
+       "[33121] \"220379_at\"                   \"219393_s_at\"                \n",
+       "[33123] \"216207_x_at\"                 \"220323_at\"                  \n",
+       "[33125] \"216517_at\"                   \"217480_x_at\"                \n",
+       "[33127] \"218926_at\"                   \"219752_at\"                  \n",
+       "[33129] \"220007_at\"                   \"218548_x_at\"                \n",
+       "[33131] \"219151_s_at\"                 \"220500_s_at\"                \n",
+       "[33133] \"218484_at\"                   \"218704_at\"                  \n",
+       "[33135] \"220142_at\"                   \"219107_at\"                  \n",
+       "[33137] \"220041_at\"                   \"218678_at\"                  \n",
+       "[33139] \"218380_at\"                   \"218380_at\"                  \n",
+       "[33141] \"219435_at\"                   \"217892_s_at\"                \n",
+       "[33143] \"218914_at\"                   \"218270_at\"                  \n",
+       "[33145] \"219035_s_at\"                 \"218673_s_at\"                \n",
+       "[33147] \"218380_at\"                   \"219337_at\"                  \n",
+       "[33149] \"219217_at\"                   \"218456_at\"                  \n",
+       "[33151] \"215562_at\"                   \"217101_at\"                  \n",
+       "[33153] \"219012_s_at\"                 \"215667_x_at\"                \n",
+       "[33155] \"216810_at\"                   \"216111_x_at\"                \n",
+       "[33157] \"216525_x_at\"                 \"219558_at\"                  \n",
+       "[33159] \"219753_at\"                   \"219365_s_at\"                \n",
+       "[33161] \"219812_at\"                   \"217485_x_at\"                \n",
+       "[33163] \"216843_x_at\"                 \"216200_at\"                  \n",
+       "[33165] \"218710_at\"                   \"218844_at\"                  \n",
+       "[33167] \"220521_s_at\"                 \"217124_at\"                  \n",
+       "[33169] \"218830_at\"                   \"218307_at\"                  \n",
+       "[33171] \"220318_at\"                   \"218770_s_at\"                \n",
+       "[33173] \"219848_s_at\"                 \"219585_at\"                  \n",
+       "[33175] \"217736_s_at\"                 \"217735_s_at\"                \n",
+       "[33177] \"220535_at\"                   \"219841_at\"                  \n",
+       "[33179] \"217053_x_at\"                 \"217061_s_at\"                \n",
+       "[33181] \"216044_x_at\"                 \"218490_s_at\"                \n",
+       "[33183] \"219538_at\"                   \"216126_at\"                  \n",
+       "[33185] \"219947_at\"                   \"219947_at\"                  \n",
+       "[33187] \"216552_x_at\"                 \"218512_at\"                  \n",
+       "[33189] \"219389_at\"                   \"217882_at\"                  \n",
+       "[33191] \"218140_x_at\"                 \"219618_at\"                  \n",
+       "[33193] \"220415_at\"                   \"219900_s_at\"                \n",
+       "[33195] \"219733_s_at\"                 \"217014_s_at\"                \n",
+       "[33197] \"217013_at\"                   \"217014_s_at\"                \n",
+       "[33199] \"217013_at\"                   \"217014_s_at\"                \n",
+       "[33201] \"219050_s_at\"                 \"219605_at\"                  \n",
+       "[33203] \"219604_s_at\"                 \"218135_at\"                  \n",
+       "[33205] \"218204_s_at\"                 \"220321_s_at\"                \n",
+       "[33207] \"219043_s_at\"                 \"220415_at\"                  \n",
+       "[33209] \"218311_at\"                   \"217545_at\"                  \n",
+       "[33211] \"217660_at\"                   \"219946_x_at\"                \n",
+       "[33213] \"220427_at\"                   \"216085_at\"                  \n",
+       "[33215] \"220425_x_at\"                 \"218612_s_at\"                \n",
+       "[33217] \"219243_at\"                   \"219777_at\"                  \n",
+       "[33219] \"220534_at\"                   \"220532_s_at\"                \n",
+       "[33221] \"220534_at\"                   \"217873_at\"                  \n",
+       "[33223] \"215821_x_at\"                 \"217897_at\"                  \n",
+       "[33225] \"216645_at\"                   \"219345_at\"                  \n",
+       "[33227] \"216950_s_at\"                 \"215649_s_at\"                \n",
+       "[33229] \"216230_x_at\"                 \"217171_at\"                  \n",
+       "[33231] \"218133_s_at\"                 \"219565_at\"                  \n",
+       "[33233] \"219557_s_at\"                 \"217199_s_at\"                \n",
+       "[33235] \"220417_s_at\"                 \"216380_x_at\"                \n",
+       "[33237] \"217515_s_at\"                 \"219651_at\"                  \n",
+       "[33239] \"216536_at\"                   \"217654_at\"                  \n",
+       "[33241] \"215583_at\"                   \"218175_at\"                  \n",
+       "[33243] \"220158_at\"                   \"218292_s_at\"                \n",
+       "[33245] \"220035_at\"                   \"220278_at\"                  \n",
+       "[33247] \"219818_s_at\"                 \"219847_at\"                  \n",
+       "[33249] \"218485_s_at\"                 \"220175_s_at\"                \n",
+       "[33251] \"215819_s_at\"                 \"219491_at\"                  \n",
+       "[33253] \"219246_s_at\"                 \"218216_x_at\"                \n",
+       "[33255] \"217289_s_at\"                 \"219109_at\"                  \n",
+       "[33257] \"215749_s_at\"                 \"219832_s_at\"                \n",
+       "[33259] \"219360_s_at\"                 \"218959_at\"                  \n",
+       "[33261] \"216096_s_at\"                 \"219594_at\"                  \n",
+       "[33263] \"220043_s_at\"                 \"217208_s_at\"                \n",
+       "[33265] \"215988_s_at\"                 \"216798_at\"                  \n",
+       "[33267] \"219387_at\"                   \"216536_at\"                  \n",
+       "[33269] \"217766_s_at\"                 \"218562_s_at\"                \n",
+       "[33271] \"219495_s_at\"                 \"216283_s_at\"                \n",
+       "[33273] \"218299_at\"                   \"216988_s_at\"                \n",
+       "[33275] \"219246_s_at\"                 \"219245_s_at\"                \n",
+       "[33277] \"220243_at\"                   \"216026_s_at\"                \n",
+       "[33279] \"219069_at\"                   \"220036_s_at\"                \n",
+       "[33281] \"217854_s_at\"                 \"219011_at\"                  \n",
+       "[33283] \"218288_s_at\"                 \"217836_s_at\"                \n",
+       "[33285] \"216672_s_at\"                 \"218779_x_at\"                \n",
+       "[33287] \"218778_x_at\"                 \"216209_at\"                  \n",
+       "[33289] \"220380_at\"                   \"220157_x_at\"                \n",
+       "[33291] \"218702_at\"                   \"220282_at\"                  \n",
+       "[33293] \"218702_at\"                   \"217365_at\"                  \n",
+       "[33295] \"220233_at\"                   \"219286_s_at\"                \n",
+       "[33297] \"218560_s_at\"                 \"219323_s_at\"                \n",
+       "[33299] \"219021_at\"                   \"217805_at\"                  \n",
+       "[33301] \"217804_s_at\"                 \"218860_at\"                  \n",
+       "[33303] \"218744_s_at\"                 \"217961_at\"                  \n",
+       "[33305] \"217270_s_at\"                 \"217087_at\"                  \n",
+       "[33307] \"217903_at\"                   \"219853_at\"                  \n",
+       "[33309] \"218918_at\"                   \"218242_s_at\"                \n",
+       "[33311] \"220397_at\"                   \"217869_at\"                  \n",
+       "[33313] \"216962_at\"                   \"218685_s_at\"                \n",
+       "[33315] \"219397_at\"                   \"218457_s_at\"                \n",
+       "[33317] \"218333_at\"                   \"215845_x_at\"                \n",
+       "[33319] \"218211_s_at\"                 \"218977_s_at\"                \n",
+       "[33321] \"218277_s_at\"                 \"218732_at\"                  \n",
+       "[33323] \"218931_at\"                   \"217899_at\"                  \n",
+       "[33325] \"215698_at\"                   \"215758_x_at\"                \n",
+       "[33327] \"216468_s_at\"                 \"220206_at\"                  \n",
+       "[33329] \"218480_at\"                   \"216083_s_at\"                \n",
+       "[33331] \"215576_at\"                   \"218446_s_at\"                \n",
+       "[33333] \"217173_s_at\"                 \"217861_s_at\"                \n",
+       "[33335] \"219504_s_at\"                 \"220196_at\"                  \n",
+       "[33337] \"219550_at\"                   \"218934_s_at\"                \n",
+       "[33339] \"217992_s_at\"                 \"220466_at\"                  \n",
+       "[33341] \"219876_s_at\"                 \"219876_s_at\"                \n",
+       "[33343] \"219329_s_at\"                 \"218972_at\"                  \n",
+       "[33345] \"219073_s_at\"                 \"216593_s_at\"                \n",
+       "[33347] \"220442_at\"                   \"220442_at\"                  \n",
+       "[33349] \"215716_s_at\"                 \"220178_at\"                  \n",
+       "[33351] \"219178_at\"                   \"217884_at\"                  \n",
+       "[33353] \"218157_x_at\"                 \"218611_at\"                  \n",
+       "[33355] \"220437_at\"                   \"219032_x_at\"                \n",
+       "[33357] \"219068_x_at\"                 \"219101_x_at\"                \n",
+       "[33359] \"218260_at\"                   \"216439_at\"                  \n",
+       "[33361] \"220147_s_at\"                 \"220147_s_at\"                \n",
+       "[33363] \"220211_at\"                   \"220534_at\"                  \n",
+       "[33365] \"220534_at\"                   \"217487_x_at\"                \n",
+       "[33367] \"217487_x_at\"                 \"216063_at\"                  \n",
+       "[33369] \"216063_at\"                   \"218318_s_at\"                \n",
+       "[33371] \"218324_s_at\"                 \"217551_at\"                  \n",
+       "[33373] \"217551_at\"                   \"220353_at\"                  \n",
+       "[33375] \"220047_at\"                   \"219764_at\"                  \n",
+       "[33377] \"216957_at\"                   \"218729_at\"                  \n",
+       "[33379] \"217996_at\"                   \"217998_at\"                  \n",
+       "[33381] \"217999_s_at\"                 \"218000_s_at\"                \n",
+       "[33383] \"217997_at\"                   \"219944_at\"                  \n",
+       "[33385] \"218841_at\"                   \"216428_x_at\"                \n",
+       "[33387] \"216331_at\"                   \"216279_at\"                  \n",
+       "[33389] \"216273_at\"                   \"215766_at\"                  \n",
+       "[33391] \"217561_at\"                   \"217495_x_at\"                \n",
+       "[33393] \"217607_x_at\"                 \"219149_x_at\"                \n",
+       "[33395] \"219094_at\"                   \"217730_at\"                  \n",
+       "[33397] \"220353_at\"                   \"215714_s_at\"                \n",
+       "[33399] \"216236_s_at\"                 \"217507_at\"                  \n",
+       "[33401] \"217473_x_at\"                 \"216320_x_at\"                \n",
+       "[33403] \"219865_at\"                   \"219865_at\"                  \n",
+       "[33405] \"219865_at\"                   \"218574_s_at\"                \n",
+       "[33407] \"220244_at\"                   \"219989_s_at\"                \n",
+       "[33409] \"218124_at\"                   \"218253_s_at\"                \n",
+       "[33411] \"216419_at\"                   \"219740_at\"                  \n",
+       "[33413] \"220033_at\"                   \"217829_s_at\"                \n",
+       "[33415] \"218437_s_at\"                 \"219173_at\"                  \n",
+       "[33417] \"217716_s_at\"                 \"220481_at\"                  \n",
+       "[33419] \"215747_s_at\"                 \"218045_x_at\"                \n",
+       "[33421] \"216973_s_at\"                 \"216417_x_at\"                \n",
+       "[33423] \"220090_at\"                   \"217964_at\"                  \n",
+       "[33425] \"217943_s_at\"                 \"216930_at\"                  \n",
+       "[33427] \"218703_at\"                   \"217728_at\"                  \n",
+       "[33429] \"219680_at\"                   \"220348_at\"                  \n",
+       "[33431] \"218677_at\"                   \"219799_s_at\"                \n",
+       "[33433] \"220193_at\"                   \"216310_at\"                  \n",
+       "[33435] \"217055_x_at\"                 \"220134_x_at\"                \n",
+       "[33437] \"219176_at\"                   \"220097_s_at\"                \n",
+       "[33439] \"216881_x_at\"                 \"218990_s_at\"                \n",
+       "[33441] \"217442_at\"                   \"220056_at\"                  \n",
+       "[33443] \"216219_at\"                   \"220219_s_at\"                \n",
+       "[33445] \"220209_at\"                   \"220209_at\"                  \n",
+       "[33447] \"220250_at\"                   \"220250_at\"                  \n",
+       "[33449] \"220443_s_at\"                 \"216601_at\"                  \n",
+       "[33451] \"218231_at\"                   \"216200_at\"                  \n",
+       "[33453] \"220219_s_at\"                 \"220220_at\"                  \n",
+       "[33455] \"220219_s_at\"                 \"220220_at\"                  \n",
+       "[33457] \"220219_s_at\"                 \"220219_s_at\"                \n",
+       "[33459] \"217796_s_at\"                 \"220219_s_at\"                \n",
+       "[33461] \"218504_at\"                   \"218478_s_at\"                \n",
+       "[33463] \"216640_s_at\"                 \"219986_s_at\"                \n",
+       "[33465] \"217685_at\"                   \"217007_s_at\"                \n",
+       "[33467] \"218591_s_at\"                 \"219817_at\"                  \n",
+       "[33469] \"218733_at\"                   \"219614_s_at\"                \n",
+       "[33471] \"220031_at\"                   \"216689_x_at\"                \n",
+       "[33473] \"219998_at\"                   \"219224_x_at\"                \n",
+       "[33475] \"217850_at\"                   \"218146_at\"                  \n",
+       "[33477] \"218147_s_at\"                 \"217927_at\"                  \n",
+       "[33479] \"219670_at\"                   \"217247_at\"                  \n",
+       "[33481] \"215788_at\"                   \"216807_at\"                  \n",
+       "[33483] \"217939_s_at\"                 \"220338_at\"                  \n",
+       "[33485] \"215770_at\"                   \"218665_at\"                  \n",
+       "[33487] \"217973_at\"                   \"217155_at\"                  \n",
+       "[33489] \"219705_at\"                   \"217782_s_at\"                \n",
+       "[33491] \"217028_at\"                   \"217144_at\"                  \n",
+       "[33493] \"216874_at\"                   \"217666_at\"                  \n",
+       "[33495] \"217745_s_at\"                 \"219313_at\"                  \n",
+       "[33497] \"219249_s_at\"                 \"219238_at\"                  \n",
+       "[33499] \"216464_x_at\"                 \"218799_at\"                  \n",
+       "[33501] \"218895_at\"                   \"219611_s_at\"                \n",
+       "[33503] \"219823_at\"                   \"218073_s_at\"                \n",
+       "[33505] \"219405_at\"                   \"217969_at\"                  \n",
+       "[33507] \"217779_s_at\"                 \"216835_s_at\"                \n",
+       "[33509] \"216624_s_at\"                 \"217110_s_at\"                \n",
+       "[33511] \"220322_at\"                   \"216243_s_at\"                \n",
+       "[33513] \"216244_at\"                   \"216593_s_at\"                \n",
+       "[33515] \"220223_at\"                   \"219146_at\"                  \n",
+       "[33517] \"216115_at\"                   \"218917_s_at\"                \n",
+       "[33519] \"219209_at\"                   \"216020_at\"                  \n",
+       "[33521] \"218130_at\"                   \"216508_x_at\"                \n",
+       "[33523] \"219155_at\"                   \"220353_at\"                  \n",
+       "[33525] \"220353_at\"                   \"218080_x_at\"                \n",
+       "[33527] \"219997_s_at\"                 \"217540_at\"                  \n",
+       "[33529] \"217772_s_at\"                 \"218991_at\"                  \n",
+       "[33531] \"219306_at\"                   \"220488_s_at\"                \n",
+       "[33533] \"217566_s_at\"                 \"219769_at\"                  \n",
+       "[33535] \"216120_s_at\"                 \"216041_x_at\"                \n",
+       "[33537] \"219770_at\"                   \"219430_at\"                  \n",
+       "[33539] \"220113_x_at\"                 \"215660_s_at\"                \n",
+       "[33541] \"215903_s_at\"                 \"217359_s_at\"                \n",
+       "[33543] \"219259_at\"                   \"218077_s_at\"                \n",
+       "[33545] \"218078_s_at\"                 \"217388_s_at\"                \n",
+       "[33547] \"219103_at\"                   \"219587_at\"                  \n",
+       "[33549] \"220117_at\"                   \"218870_at\"                  \n",
+       "[33551] \"219886_at\"                   \"216924_s_at\"                \n",
+       "[33553] \"216938_x_at\"                 \"219768_at\"                  \n",
+       "[33555] \"218765_at\"                   \"217319_x_at\"                \n",
+       "[33557] \"219521_at\"                   \"219226_at\"                  \n",
+       "[33559] \"219248_at\"                   \"219222_at\"                  \n",
+       "[33561] \"218881_s_at\"                 \"218880_at\"                  \n",
+       "[33563] \"220058_at\"                   \"218280_x_at\"                \n",
+       "[33565] \"217908_s_at\"                 \"218452_at\"                  \n",
+       "[33567] \"220288_at\"                   \"218280_x_at\"                \n",
+       "[33569] \"219130_at\"                   \"216795_at\"                  \n",
+       "[33571] \"219279_at\"                   \"217008_s_at\"                \n",
+       "[33573] \"216641_s_at\"                 \"216641_s_at\"                \n",
+       "[33575] \"217591_at\"                   \"218634_at\"                  \n",
+       "[33577] \"219418_at\"                   \"219418_at\"                  \n",
+       "[33579] \"217885_at\"                   \"218511_s_at\"                \n",
+       "[33581] \"218051_s_at\"                 \"218511_s_at\"                \n",
+       "[33583] \"218740_s_at\"                 \"219127_at\"                  \n",
+       "[33585] \"218740_s_at\"                 \"220355_s_at\"                \n",
+       "[33587] \"219561_at\"                   \"217857_s_at\"                \n",
+       "[33589] \"217856_at\"                   \"220318_at\"                  \n",
+       "[33591] \"218164_at\"                   \"218053_at\"                  \n",
+       "[33593] \"219120_at\"                   \"218682_s_at\"                \n",
+       "[33595] \"218583_s_at\"                 \"215918_s_at\"                \n",
+       "[33597] \"218440_at\"                   \"217900_at\"                  \n",
+       "[33599] \"216057_at\"                   \"217837_s_at\"                \n",
+       "[33601] \"220081_x_at\"                 \"220280_s_at\"                \n",
+       "[33603] \"215855_s_at\"                 \"216963_s_at\"                \n",
+       "[33605] \"219906_at\"                   \"218202_x_at\"                \n",
+       "[33607] \"218082_s_at\"                 \"217944_at\"                  \n",
+       "[33609] \"219714_s_at\"                 \"216976_s_at\"                \n",
+       "[33611] \"218736_s_at\"                 \"218873_at\"                  \n",
+       "[33613] \"219846_at\"                   \"218181_s_at\"                \n",
+       "[33615] \"217136_at\"                   \"218341_at\"                  \n",
+       "[33617] \"217136_at\"                   \"217136_at\"                  \n",
+       "[33619] \"217136_at\"                   \"217136_at\"                  \n",
+       "[33621] \"217136_at\"                   \"217032_at\"                  \n",
+       "[33623] \"219939_s_at\"                 \"215913_s_at\"                \n",
+       "[33625] \"219836_at\"                   \"218633_x_at\"                \n",
+       "[33627] \"220518_at\"                   \"215591_at\"                  \n",
+       "[33629] \"216248_s_at\"                 \"217795_s_at\"                \n",
+       "[33631] \"217606_at\"                   \"217658_at\"                  \n",
+       "[33633] \"219931_s_at\"                 \"217748_at\"                  \n",
+       "[33635] \"215636_at\"                   \"215627_at\"                  \n",
+       "[33637] \"220427_at\"                   \"216381_x_at\"                \n",
+       "[33639] \"217491_x_at\"                 \"215623_x_at\"                \n",
+       "[33641] \"215792_s_at\"                 \"218226_s_at\"                \n",
+       "[33643] \"216433_s_at\"                 \"219406_at\"                  \n",
+       "[33645] \"216317_x_at\"                 \"215819_s_at\"                \n",
+       "[33647] \"215991_s_at\"                 \"219858_s_at\"                \n",
+       "[33649] \"216188_at\"                   \"219590_x_at\"                \n",
+       "[33651] \"219406_at\"                   \"216925_s_at\"                \n",
+       "[33653] \"220342_x_at\"                 \"217189_s_at\"                \n",
+       "[33655] \"220428_at\"                   \"216556_x_at\"                \n",
+       "[33657] \"216177_at\"                   \"219843_at\"                  \n",
+       "[33659] \"219567_s_at\"                 \"217564_s_at\"                \n",
+       "[33661] \"219976_at\"                   \"217070_at\"                  \n",
+       "[33663] \"217071_s_at\"                 \"220479_at\"                  \n",
+       "[33665] \"217658_at\"                   \"216574_s_at\"                \n",
+       "[33667] \"220012_at\"                   \"216221_s_at\"                \n",
+       "[33669] \"219527_at\"                   \"218865_at\"                  \n",
+       "[33671] \"218863_s_at\"                 \"218864_at\"                  \n",
+       "[33673] \"216748_at\"                   \"218232_at\"                  \n",
+       "[33675] \"220251_at\"                   \"216885_s_at\"                \n",
+       "[33677] \"216885_s_at\"                 \"217196_s_at\"                \n",
+       "[33679] \"219093_at\"                   \"219010_at\"                  \n",
+       "[33681] \"217528_at\"                   \"220026_at\"                  \n",
+       "[33683] \"218150_at\"                   \"220078_at\"                  \n",
+       "[33685] \"220079_s_at\"                 \"220256_s_at\"                \n",
+       "[33687] \"218617_at\"                   \"220484_at\"                  \n",
+       "[33689] \"216873_s_at\"                 \"219873_at\"                  \n",
+       "[33691] \"220365_at\"                   \"218367_x_at\"                \n",
+       "[33693] \"219137_s_at\"                 \"219026_s_at\"                \n",
+       "[33695] \"220435_at\"                   \"217820_s_at\"                \n",
+       "[33697] \"218660_at\"                   \"215783_s_at\"                \n",
+       "[33699] \"219957_at\"                   \"218004_at\"                  \n",
+       "[33701] \"217929_s_at\"                 \"218291_at\"                  \n",
+       "[33703] \"215947_s_at\"                 \"219367_s_at\"                \n",
+       "[33705] \"219322_s_at\"                 \"219617_at\"                  \n",
+       "[33707] \"216945_x_at\"                 \"218162_at\"                  \n",
+       "[33709] \"219490_s_at\"                 \"216001_at\"                  \n",
+       "[33711] \"217365_at\"                   \"216302_at\"                  \n",
+       "[33713] \"217365_at\"                   \"217273_at\"                  \n",
+       "[33715] \"217365_at\"                   \"217273_at\"                  \n",
+       "[33717] \"217365_at\"                   \"219783_at\"                  \n",
+       "[33719] \"219305_x_at\"                 \"218462_at\"                  \n",
+       "[33721] \"218924_s_at\"                 \"218924_s_at\"                \n",
+       "[33723] \"218923_at\"                   \"217580_x_at\"                \n",
+       "[33725] \"217580_x_at\"                 \"217365_at\"                  \n",
+       "[33727] \"216015_s_at\"                 \"216015_s_at\"                \n",
+       "[33729] \"216016_at\"                   \"219662_at\"                  \n",
+       "[33731] \"219649_at\"                   \"218296_x_at\"                \n",
+       "[33733] \"219648_at\"                   \"218873_at\"                  \n",
+       "[33735] \"220290_at\"                   \"220289_s_at\"                \n",
+       "[33737] \"219481_at\"                   \"217844_at\"                  \n",
+       "[33739] \"218659_at\"                   \"217855_x_at\"                \n",
+       "[33741] \"218223_s_at\"                 \"219464_at\"                  \n",
+       "[33743] \"218389_s_at\"                 \"219506_at\"                  \n",
+       "[33745] \"217994_x_at\"                 \"217994_x_at\"                \n",
+       "[33747] \"218580_x_at\"                 \"219278_at\"                  \n",
+       "[33749] \"217489_s_at\"                 \"215970_at\"                  \n",
+       "[33751] \"217365_at\"                   \"217365_at\"                  \n",
+       "[33753] \"217870_s_at\"                 \"219331_s_at\"                \n",
+       "[33755] \"217552_x_at\"                 \"217484_at\"                  \n",
+       "[33757] \"218287_s_at\"                 \"219426_at\"                  \n",
+       "[33759] \"217972_at\"                   \"216036_x_at\"                \n",
+       "[33761] \"219924_s_at\"                 \"215953_at\"                  \n",
+       "[33763] \"216968_at\"                   \"220424_at\"                  \n",
+       "[33765] \"219375_at\"                   \"220387_s_at\"                \n",
+       "[33767] \"219131_at\"                   \"216584_at\"                  \n",
+       "[33769] \"218547_at\"                   \"220199_s_at\"                \n",
+       "[33771] \"219404_at\"                   \"220399_at\"                  \n",
+       "[33773] \"217294_s_at\"                 \"216855_s_at\"                \n",
+       "[33775] \"216868_s_at\"                 \"218107_at\"                  \n",
+       "[33777] \"215756_at\"                   \"217491_x_at\"                \n",
+       "[33779] \"218459_at\"                   \"216100_s_at\"                \n",
+       "[33781] \"215970_at\"                   \"217544_at\"                  \n",
+       "[33783] \"215827_x_at\"                 \"216320_x_at\"                \n",
+       "[33785] \"216950_s_at\"                 \"216950_s_at\"                \n",
+       "[33787] \"216400_at\"                   \"216320_x_at\"                \n",
+       "[33789] \"215563_s_at\"                 \"220298_s_at\"                \n",
+       "[33791] \"220299_at\"                   \"217886_at\"                  \n",
+       "[33793] \"217887_s_at\"                 \"217250_s_at\"                \n",
+       "[33795] \"216674_at\"                   \"218683_at\"                  \n",
+       "[33797] \"216400_at\"                   \"217991_x_at\"                \n",
+       "[33799] \"215728_s_at\"                 \"220461_at\"                  \n",
+       "[33801] \"216220_s_at\"                 \"217319_x_at\"                \n",
+       "[33803] \"215827_x_at\"                 \"219139_s_at\"                \n",
+       "[33805] \"216988_s_at\"                 \"218712_at\"                  \n",
+       "[33807] \"218647_s_at\"                 \"218818_at\"                  \n",
+       "[33809] \"218235_s_at\"                 \"219988_s_at\"                \n",
+       "[33811] \"215765_at\"                   \"218552_at\"                  \n",
+       "[33813] \"219330_at\"                   \"216484_x_at\"                \n",
+       "[33815] \"218407_x_at\"                 \"220358_at\"                  \n",
+       "[33817] \"216591_s_at\"                 \"217358_at\"                  \n",
+       "[33819] \"217720_at\"                   \"224373_s_at\"                \n",
+       "[33821] \"224373_s_at\"                 \"224372_at\"                  \n",
+       "[33823] \"224373_s_at\"                 \"224372_at\"                  \n",
+       "[33825] \"224426_s_at\"                 \"224425_x_at\"                \n",
+       "[33827] \"224424_x_at\"                 \"225062_at\"                  \n",
+       "[33829] \"225046_at\"                   \"220771_at\"                  \n",
+       "[33831] \"222469_s_at\"                 \"223715_at\"                  \n",
+       "[33833] \"223353_at\"                   \"224195_at\"                  \n",
+       "[33835] \"224041_at\"                   \"224426_s_at\"                \n",
+       "[33837] \"224425_x_at\"                 \"224142_s_at\"                \n",
+       "[33839] \"224143_at\"                   \"224142_s_at\"                \n",
+       "[33841] \"224143_at\"                   \"224041_at\"                  \n",
+       "[33843] \"224040_at\"                   \"224293_at\"                  \n",
+       "[33845] \"224052_at\"                   \"224007_at\"                  \n",
+       "[33847] \"224007_at\"                   \"224007_at\"                  \n",
+       "[33849] \"224003_at\"                   \"224007_at\"                  \n",
+       "[33851] \"224052_at\"                   \"220788_s_at\"                \n",
+       "[33853] \"220788_s_at\"                 \"224270_at\"                  \n",
+       "[33855] \"223776_x_at\"                 \"224809_x_at\"                \n",
+       "[33857] \"221179_at\"                   \"224292_at\"                  \n",
+       "[33859] \"222229_x_at\"                 \"225514_at\"                  \n",
+       "[33861] \"221188_s_at\"                 \"225514_at\"                  \n",
+       "[33863] \"221582_at\"                   \"223169_s_at\"                \n",
+       "[33865] \"223168_at\"                   \"224174_at\"                  \n",
+       "[33867] \"223645_s_at\"                 \"223646_s_at\"                \n",
+       "[33869] \"223645_s_at\"                 \"225503_at\"                  \n",
+       "[33871] \"222795_s_at\"                 \"223777_at\"                  \n",
+       "[33873] \"225035_x_at\"                 \"225329_at\"                  \n",
+       "[33875] \"223106_at\"                   \"223105_s_at\"                \n",
+       "[33877] \"220963_s_at\"                 \"221812_at\"                  \n",
+       "[33879] \"221813_at\"                   \"220731_s_at\"                \n",
+       "[33881] \"221241_s_at\"                 \"220945_x_at\"                \n",
+       "[33883] \"224832_at\"                   \"224336_s_at\"                \n",
+       "[33885] \"221607_x_at\"                 \"224585_x_at\"                \n",
+       "[33887] \"224916_at\"                   \"224929_at\"                  \n",
+       "[33889] \"223286_at\"                   \"223820_at\"                  \n",
+       "[33891] \"220962_s_at\"                 \"223739_at\"                  \n",
+       "[33893] \"220779_at\"                   \"224578_at\"                  \n",
+       "[33895] \"225062_at\"                   \"225046_at\"                  \n",
+       "[33897] \"221419_s_at\"                 \"224426_s_at\"                \n",
+       "[33899] \"224425_x_at\"                 \"224424_x_at\"                \n",
+       "[33901] \"225062_at\"                   \"225046_at\"                  \n",
+       "[33903] \"225062_at\"                   \"225046_at\"                  \n",
+       "[33905] \"223790_at\"                   \"222201_s_at\"                \n",
+       "[33907] \"224731_at\"                   \"224734_at\"                  \n",
+       "[33909] \"224519_at\"                   \"221503_s_at\"                \n",
+       "[33911] \"221502_at\"                   \"220959_s_at\"                \n",
+       "[33913] \"225038_s_at\"                 \"224930_x_at\"                \n",
+       "[33915] \"220753_s_at\"                 \"224930_x_at\"                \n",
+       "[33917] \"224930_x_at\"                 \"224930_x_at\"                \n",
+       "[33919] \"222978_at\"                   \"222977_at\"                  \n",
+       "[33921] \"222979_s_at\"                 \"223844_at\"                  \n",
+       "[33923] \"221003_s_at\"                 \"224054_at\"                  \n",
+       "[33925] \"221328_at\"                   \"224919_at\"                  \n",
+       "[33927] \"221419_s_at\"                 \"222311_s_at\"                \n",
+       "[33929] \"222310_at\"                   \"223923_at\"                  \n",
+       "[33931] \"220941_s_at\"                 \"221158_at\"                  \n",
+       "[33933] \"220543_at\"                   \"223923_at\"                  \n",
+       "[33935] \"223810_at\"                   \"223219_s_at\"                \n",
+       "[33937] \"222502_s_at\"                 \"224298_s_at\"                \n",
+       "[33939] \"223765_s_at\"                 \"223708_at\"                  \n",
+       "[33941] \"222403_at\"                   \"220593_s_at\"                \n",
+       "[33943] \"220592_at\"                   \"220997_s_at\"                \n",
+       "[33945] \"225062_at\"                   \"225046_at\"                  \n",
+       "[33947] \"221019_s_at\"                 \"221634_at\"                  \n",
+       "[33949] \"221701_s_at\"                 \"222056_s_at\"                \n",
+       "[33951] \"220908_at\"                   \"221973_at\"                  \n",
+       "[33953] \"224181_at\"                   \"224045_x_at\"                \n",
+       "[33955] \"223977_s_at\"                 \"225063_at\"                  \n",
+       "[33957] \"221419_s_at\"                 \"223450_s_at\"                \n",
+       "[33959] \"225539_at\"                   \"221015_s_at\"                \n",
+       "[33961] \"223527_s_at\"                 \"222607_s_at\"                \n",
+       "[33963] \"221134_at\"                   \"222616_s_at\"                \n",
+       "[33965] \"221211_s_at\"                 \"221414_s_at\"                \n",
+       "[33967] \"220826_at\"                   \"224212_s_at\"                \n",
+       "[33969] \"223435_s_at\"                 \"224212_s_at\"                \n",
+       "[33971] \"223435_s_at\"                 \"224212_s_at\"                \n",
+       "[33973] \"223435_s_at\"                 \"224212_s_at\"                \n",
+       "[33975] \"223435_s_at\"                 \"224212_s_at\"                \n",
+       "[33977] \"223435_s_at\"                 \"224212_s_at\"                \n",
+       "[33979] \"223435_s_at\"                 \"224212_s_at\"                \n",
+       "[33981] \"223435_s_at\"                 \"224212_s_at\"                \n",
+       "[33983] \"223435_s_at\"                 \"224212_s_at\"                \n",
+       "[33985] \"223435_s_at\"                 \"224212_s_at\"                \n",
+       "[33987] \"223435_s_at\"                 \"224584_at\"                  \n",
+       "[33989] \"224212_s_at\"                 \"223435_s_at\"                \n",
+       "[33991] \"224212_s_at\"                 \"223435_s_at\"                \n",
+       "[33993] \"220826_at\"                   \"224212_s_at\"                \n",
+       "[33995] \"223435_s_at\"                 \"224539_s_at\"                \n",
+       "[33997] \"224212_s_at\"                 \"223435_s_at\"                \n",
+       "[33999] \"221303_at\"                   \"224212_s_at\"                \n",
+       "[34001] \"223435_s_at\"                 \"221410_x_at\"                \n",
+       "[34003] \"223629_at\"                   \"221317_x_at\"                \n",
+       "[34005] \"221319_at\"                   \"223579_s_at\"                \n",
+       "[34007] \"223927_at\"                   \"223854_at\"                  \n",
+       "[34009] \"221408_x_at\"                 \"221408_x_at\"                \n",
+       "[34011] \"221450_x_at\"                 \"221410_x_at\"                \n",
+       "[34013] \"223654_s_at\"                 \"223653_x_at\"                \n",
+       "[34015] \"220627_at\"                   \"223002_s_at\"                \n",
+       "[34017] \"223591_at\"                   \"223592_s_at\"                \n",
+       "[34019] \"222492_at\"                   \"222733_x_at\"                \n",
+       "[34021] \"224282_s_at\"                 \"223183_at\"                  \n",
+       "[34023] \"225440_at\"                   \"223182_s_at\"                \n",
+       "[34025] \"223184_s_at\"                 \"225252_at\"                  \n",
+       "[34027] \"223251_s_at\"                 \"221634_at\"                  \n",
+       "[34029] \"222559_s_at\"                 \"222558_at\"                  \n",
+       "[34031] \"225473_at\"                   \"220747_at\"                  \n",
+       "[34033] \"220957_at\"                   \"221170_at\"                  \n",
+       "[34035] \"221169_s_at\"                 \"221288_at\"                  \n",
+       "[34037] \"221365_at\"                   \"222508_s_at\"                \n",
+       "[34039] \"222177_s_at\"                 \"222211_x_at\"                \n",
+       "[34041] \"221528_s_at\"                 \"224426_s_at\"                \n",
+       "[34043] \"224425_x_at\"                 \"224424_x_at\"                \n",
+       "[34045] \"221883_at\"                   \"221370_at\"                  \n",
+       "[34047] \"225094_at\"                   \"221707_s_at\"                \n",
+       "[34049] \"222175_s_at\"                 \"221024_s_at\"                \n",
+       "[34051] \"225037_at\"                   \"224930_x_at\"                \n",
+       "[34053] \"221237_s_at\"                 \"223432_at\"                  \n",
+       "[34055] \"225335_at\"                   \"225333_at\"                  \n",
+       "[34057] \"225349_at\"                   \"223299_at\"                  \n",
+       "[34059] \"221346_at\"                   \"220679_s_at\"                \n",
+       "[34061] \"221442_at\"                   \"224909_s_at\"                \n",
+       "[34063] \"224925_at\"                   \"221467_at\"                  \n",
+       "[34065] \"225302_at\"                   \"221494_x_at\"                \n",
+       "[34067] \"222277_at\"                   \"223231_at\"                  \n",
+       "[34069] \"220605_s_at\"                 \"222486_s_at\"                \n",
+       "[34071] \"222162_s_at\"                 \"224219_s_at\"                \n",
+       "[34073] \"224220_x_at\"                 \"220817_at\"                  \n",
+       "[34075] \"220818_s_at\"                 \"221632_s_at\"                \n",
+       "[34077] \"221026_s_at\"                 \"223038_s_at\"                \n",
+       "[34079] \"222155_s_at\"                 \"221631_at\"                  \n",
+       "[34081] \"221689_s_at\"                 \"224598_at\"                  \n",
+       "[34083] \"224598_at\"                   \"221095_s_at\"                \n",
+       "[34085] \"223526_at\"                   \"223247_at\"                  \n",
+       "[34087] \"220821_at\"                   \"224689_at\"                  \n",
+       "[34089] \"221284_s_at\"                 \"225376_at\"                  \n",
+       "[34091] \"222450_at\"                   \"222449_at\"                  \n",
+       "[34093] \"220675_s_at\"                 \"225035_x_at\"                \n",
+       "[34095] \"225035_x_at\"                 \"223777_at\"                  \n",
+       "[34097] \"223777_at\"                   \"223777_at\"                  \n",
+       "[34099] \"222698_s_at\"                 \"223777_at\"                  \n",
+       "[34101] \"222761_at\"                   \"225446_at\"                  \n",
+       "[34103] \"222438_at\"                   \"224882_at\"                  \n",
+       "[34105] \"222626_at\"                   \"224426_s_at\"                \n",
+       "[34107] \"221484_at\"                   \"221485_at\"                  \n",
+       "[34109] \"225407_at\"                   \"225408_at\"                  \n",
+       "[34111] \"222897_s_at\"                 \"223632_s_at\"                \n",
+       "[34113] \"223633_s_at\"                 \"224634_at\"                  \n",
+       "[34115] \"224632_at\"                   \"224368_s_at\"                \n",
+       "[34117] \"221082_s_at\"                 \"224400_s_at\"                \n",
+       "[34119] \"223737_x_at\"                 \"224493_x_at\"                \n",
+       "[34121] \"225287_s_at\"                 \"222446_s_at\"                \n",
+       "[34123] \"224542_s_at\"                 \"221215_s_at\"                \n",
+       "[34125] \"223948_s_at\"                 \"223949_at\"                  \n",
+       "[34127] \"224239_at\"                   \"224239_at\"                  \n",
+       "[34129] \"224090_s_at\"                 \"223827_at\"                  \n",
+       "[34131] \"224739_at\"                   \"223412_at\"                  \n",
+       "[34133] \"225313_at\"                   \"223907_s_at\"                \n",
+       "[34135] \"224013_s_at\"                 \"224013_s_at\"                \n",
+       "[34137] \"222943_at\"                   \"222662_at\"                  \n",
+       "[34139] \"225478_at\"                   \"221830_at\"                  \n",
+       "[34141] \"223228_at\"                   \"223278_at\"                  \n",
+       "[34143] \"221377_s_at\"                 \"224997_x_at\"                \n",
+       "[34145] \"224646_x_at\"                 \"224997_x_at\"                \n",
+       "[34147] \"224670_at\"                   \"224669_at\"                  \n",
+       "[34149] \"224668_at\"                   \"220698_at\"                  \n",
+       "[34151] \"221638_s_at\"                 \"222410_s_at\"                \n",
+       "[34153] \"223112_s_at\"                 \"221798_x_at\"                \n",
+       "[34155] \"225261_x_at\"                 \"225006_x_at\"                \n",
+       "[34157] \"220607_x_at\"                 \"221798_x_at\"                \n",
+       "[34159] \"221798_x_at\"                 \"225104_at\"                  \n",
+       "[34161] \"223379_s_at\"                 \"223380_s_at\"                \n",
+       "[34163] \"223513_at\"                   \"220885_s_at\"                \n",
+       "[34165] \"224274_at\"                   \"222441_x_at\"                \n",
+       "[34167] \"222225_at\"                   \"222245_s_at\"                \n",
+       "[34169] \"222118_at\"                   \"223562_at\"                  \n",
+       "[34171] \"225503_at\"                   \"224822_at\"                  \n",
+       "[34173] \"221001_at\"                   \"221473_x_at\"                \n",
+       "[34175] \"221472_at\"                   \"221471_at\"                  \n",
+       "[34177] \"220681_at\"                   \"221513_s_at\"                \n",
+       "[34179] \"222239_s_at\"                 \"221954_at\"                  \n",
+       "[34181] \"225053_at\"                   \"221198_at\"                  \n",
+       "[34183] \"221001_at\"                   \"221005_s_at\"                \n",
+       "[34185] \"220548_at\"                   \"221933_at\"                  \n",
+       "[34187] \"223699_at\"                   \"221974_at\"                  \n",
+       "[34189] \"222196_at\"                   \"221209_s_at\"                \n",
+       "[34191] \"225406_at\"                   \"225252_at\"                  \n",
+       "[34193] \"223356_s_at\"                 \"221167_s_at\"                \n",
+       "[34195] \"224073_at\"                   \"225378_at\"                  \n",
+       "[34197] \"223501_at\"                   \"223502_s_at\"                \n",
+       "[34199] \"221901_at\"                   \"225035_x_at\"                \n",
+       "[34201] \"224188_s_at\"                 \"225504_at\"                  \n",
+       "[34203] \"222490_at\"                   \"221741_s_at\"                \n",
+       "[34205] \"221017_s_at\"                 \"223155_at\"                  \n",
+       "[34207] \"223976_at\"                   \"223155_at\"                  \n",
+       "[34209] \"223071_at\"                   \"224426_s_at\"                \n",
+       "[34211] \"224425_x_at\"                 \"224424_x_at\"                \n",
+       "[34213] \"224739_at\"                   \"220887_at\"                  \n",
+       "[34215] \"221398_at\"                   \"221396_at\"                  \n",
+       "[34217] \"221391_at\"                   \"221391_at\"                  \n",
+       "[34219] \"221461_at\"                   \"221395_at\"                  \n",
+       "[34221] \"222666_s_at\"                 \"225132_at\"                  \n",
+       "[34223] \"221397_at\"                   \"223768_at\"                  \n",
+       "[34225] \"223215_s_at\"                 \"223547_at\"                  \n",
+       "[34227] \"221824_s_at\"                 \"222685_at\"                  \n",
+       "[34229] \"222149_x_at\"                 \"222618_at\"                  \n",
+       "[34231] \"222530_s_at\"                 \"223571_at\"                  \n",
+       "[34233] \"222530_s_at\"                 \"222530_s_at\"                \n",
+       "[34235] \"221881_s_at\"                 \"222338_x_at\"                \n",
+       "[34237] \"221920_s_at\"                 \"222528_s_at\"                \n",
+       "[34239] \"222529_at\"                   \"225075_at\"                  \n",
+       "[34241] \"220813_at\"                   \"222443_s_at\"                \n",
+       "[34243] \"225312_at\"                   \"222847_s_at\"                \n",
+       "[34245] \"222478_at\"                   \"221953_s_at\"                \n",
+       "[34247] \"224957_at\"                   \"222658_s_at\"                \n",
+       "[34249] \"222338_x_at\"                 \"223690_at\"                  \n",
+       "[34251] \"223171_at\"                   \"223329_x_at\"                \n",
+       "[34253] \"224309_s_at\"                 \"223330_s_at\"                \n",
+       "[34255] \"222567_s_at\"                 \"221511_x_at\"                \n",
+       "[34257] \"222156_x_at\"                 \"223642_at\"                  \n",
+       "[34259] \"222731_at\"                   \"222730_s_at\"                \n",
+       "[34261] \"224043_s_at\"                 \"222146_s_at\"                \n",
+       "[34263] \"224874_at\"                   \"224857_s_at\"                \n",
+       "[34265] \"224075_s_at\"                 \"222972_at\"                  \n",
+       "[34267] \"221124_s_at\"                 \"224074_at\"                  \n",
+       "[34269] \"221478_at\"                   \"221479_s_at\"                \n",
+       "[34271] \"223880_x_at\"                 \"224376_s_at\"                \n",
+       "[34273] \"220629_at\"                   \"224619_at\"                  \n",
+       "[34275] \"225196_s_at\"                 \"221774_x_at\"                \n",
+       "[34277] \"223360_at\"                   \"222531_s_at\"                \n",
+       "[34279] \"221036_s_at\"                 \"224621_at\"                  \n",
+       "[34281] \"224299_x_at\"                 \"223702_x_at\"                \n",
+       "[34283] \"224300_x_at\"                 \"223979_x_at\"                \n",
+       "[34285] \"220604_x_at\"                 \"222819_at\"                  \n",
+       "[34287] \"223270_at\"                   \"223271_s_at\"                \n",
+       "[34289] \"222161_at\"                   \"220673_s_at\"                \n",
+       "[34291] \"220672_at\"                   \"224943_at\"                  \n",
+       "[34293] \"224945_at\"                   \"220648_at\"                  \n",
+       "[34295] \"223796_at\"                   \"221207_s_at\"                \n",
+       "[34297] \"220626_at\"                   \"224412_s_at\"                \n",
+       "[34299] \"221102_s_at\"                 \"224606_at\"                  \n",
+       "[34301] \"220591_s_at\"                 \"222646_s_at\"                \n",
+       "[34303] \"222878_s_at\"                 \"223626_x_at\"                \n",
+       "[34305] \"221816_s_at\"                 \"223273_at\"                  \n",
+       "[34307] \"221487_s_at\"                 \"221969_at\"                  \n",
+       "[34309] \"223167_s_at\"                 \"224535_s_at\"                \n",
+       "[34311] \"224749_at\"                   \"222045_s_at\"                \n",
+       "[34313] \"221762_s_at\"                 \"222044_at\"                  \n",
+       "[34315] \"221890_at\"                   \"223316_at\"                  \n",
+       "[34317] \"221847_at\"                   \"221461_at\"                  \n",
+       "[34319] \"221396_at\"                   \"221398_at\"                  \n",
+       "[34321] \"221395_at\"                   \"225154_at\"                  \n",
+       "[34323] \"221397_at\"                   \"221391_at\"                  \n",
+       "[34325] \"221391_at\"                   \"221390_s_at\"                \n",
+       "[34327] \"223748_at\"                   \"224331_s_at\"                \n",
+       "[34329] \"222253_s_at\"                 \"223038_s_at\"                \n",
+       "[34331] \"223954_x_at\"                 \"221564_at\"                  \n",
+       "[34333] \"224862_at\"                   \"224861_at\"                  \n",
+       "[34335] \"224863_at\"                   \"222461_s_at\"                \n",
+       "[34337] \"222149_x_at\"                 \"224210_s_at\"                \n",
+       "[34339] \"225119_at\"                   \"225498_at\"                  \n",
+       "[34341] \"225390_s_at\"                 \"222149_x_at\"                \n",
+       "[34343] \"222149_x_at\"                 \"222846_at\"                  \n",
+       "[34345] \"220892_s_at\"                 \"223062_s_at\"                \n",
+       "[34347] \"224319_s_at\"                 \"221516_s_at\"                \n",
+       "[34349] \"222079_at\"                   \"225035_x_at\"                \n",
+       "[34351] \"222865_x_at\"                 \"222649_at\"                  \n",
+       "[34353] \"225148_at\"                   \"222417_s_at\"                \n",
+       "[34355] \"223666_at\"                   \"223605_at\"                  \n",
+       "[34357] \"221853_s_at\"                 \"222204_s_at\"                \n",
+       "[34359] \"224426_s_at\"                 \"224425_x_at\"                \n",
+       "[34361] \"224424_x_at\"                 \"225087_at\"                  \n",
+       "[34363] \"225088_at\"                   \"224815_at\"                  \n",
+       "[34365] \"221771_s_at\"                 \"225041_at\"                  \n",
+       "[34367] \"223247_at\"                   \"221399_at\"                  \n",
+       "[34369] \"222612_at\"                   \"222611_s_at\"                \n",
+       "[34371] \"222726_s_at\"                 \"225084_at\"                  \n",
+       "[34373] \"223664_x_at\"                 \"224035_s_at\"                \n",
+       "[34375] \"221064_s_at\"                 \"222899_at\"                  \n",
+       "[34377] \"221501_x_at\"                 \"220933_s_at\"                \n",
+       "[34379] \"223475_at\"                   \"222625_s_at\"                \n",
+       "[34381] \"222145_at\"                   \"221231_s_at\"                \n",
+       "[34383] \"222404_x_at\"                 \"222405_at\"                  \n",
+       "[34385] \"221148_at\"                   \"221853_s_at\"                \n",
+       "[34387] \"221852_at\"                   \"222809_x_at\"                \n",
+       "[34389] \"225062_at\"                   \"225046_at\"                  \n",
+       "[34391] \"225062_at\"                   \"225046_at\"                  \n",
+       "[34393] \"221501_x_at\"                 \"221136_at\"                  \n",
+       "[34395] \"223813_at\"                   \"222106_at\"                  \n",
+       "[34397] \"222865_x_at\"                 \"222115_x_at\"                \n",
+       "[34399] \"222652_s_at\"                 \"221628_s_at\"                \n",
+       "[34401] \"223794_at\"                   \"221077_at\"                  \n",
+       "[34403] \"220925_at\"                   \"223960_s_at\"                \n",
+       "[34405] \"223398_at\"                   \"223391_at\"                  \n",
+       "[34407] \"221268_s_at\"                 \"222550_at\"                  \n",
+       "[34409] \"224972_at\"                   \"223624_at\"                  \n",
+       "[34411] \"221374_at\"                   \"221253_s_at\"                \n",
+       "[34413] \"221400_at\"                   \"222904_s_at\"                \n",
+       "[34415] \"223909_s_at\"                 \"223345_at\"                  \n",
+       "[34417] \"223908_at\"                   \"222583_s_at\"                \n",
+       "[34419] \"221253_s_at\"                 \"222402_at\"                  \n",
+       "[34421] \"222840_at\"                   \"222149_x_at\"                \n",
+       "[34423] \"222149_x_at\"                 \"220970_s_at\"                \n",
+       "[34425] \"222781_s_at\"                 \"224269_at\"                  \n",
+       "[34427] \"221513_s_at\"                 \"223670_s_at\"                \n",
+       "[34429] \"223669_at\"                   \"222803_at\"                  \n",
+       "[34431] \"223984_s_at\"                 \"225047_at\"                  \n",
+       "[34433] \"222990_at\"                   \"222989_s_at\"                \n",
+       "[34435] \"222991_s_at\"                 \"221932_s_at\"                \n",
+       "[34437] \"224165_s_at\"                 \"221614_s_at\"                \n",
+       "[34439] \"221971_x_at\"                 \"221850_x_at\"                \n",
+       "[34441] \"221899_at\"                   \"222621_at\"                  \n",
+       "[34443] \"222620_s_at\"                 \"224519_at\"                  \n",
+       "[34445] \"222735_at\"                   \"222736_s_at\"                \n",
+       "[34447] \"222655_s_at\"                 \"222654_at\"                  \n",
+       "[34449] \"224744_at\"                   \"224743_at\"                  \n",
+       "[34451] \"225379_at\"                   \"225117_at\"                  \n",
+       "[34453] \"222903_s_at\"                 \"222096_x_at\"                \n",
+       "[34455] \"225270_at\"                   \"224384_s_at\"                \n",
+       "[34457] \"221033_s_at\"                 \"224383_at\"                  \n",
+       "[34459] \"220705_s_at\"                 \"222802_at\"                  \n",
+       "[34461] \"221455_s_at\"                 \"221455_s_at\"                \n",
+       "[34463] \"221677_s_at\"                 \"223094_s_at\"                \n",
+       "[34465] \"223093_at\"                   \"223092_at\"                  \n",
+       "[34467] \"223231_at\"                   \"225435_at\"                  \n",
+       "[34469] \"222907_x_at\"                 \"225182_at\"                  \n",
+       "[34471] \"222841_s_at\"                 \"223493_at\"                  \n",
+       "[34473] \"222925_at\"                   \"222926_at\"                  \n",
+       "[34475] \"222243_s_at\"                 \"221496_s_at\"                \n",
+       "[34477] \"225309_at\"                   \"223520_s_at\"                \n",
+       "[34479] \"220777_at\"                   \"221455_s_at\"                \n",
+       "[34481] \"221455_s_at\"                 \"225506_at\"                  \n",
+       "[34483] \"225508_at\"                   \"224477_s_at\"                \n",
+       "[34485] \"224490_s_at\"                 \"224489_at\"                  \n",
+       "[34487] \"222275_at\"                   \"225379_at\"                  \n",
+       "[34489] \"224808_s_at\"                 \"223811_s_at\"                \n",
+       "[34491] \"222670_s_at\"                 \"225117_at\"                  \n",
+       "[34493] \"224177_s_at\"                 \"223294_at\"                  \n",
+       "[34495] \"224903_at\"                   \"224017_at\"                  \n",
+       "[34497] \"225026_at\"                   \"225031_at\"                  \n",
+       "[34499] \"225021_at\"                   \"220617_s_at\"                \n",
+       "[34501] \"225029_at\"                   \"225028_at\"                  \n",
+       "[34503] \"223693_s_at\"                 \"223614_at\"                  \n",
+       "[34505] \"223378_at\"                   \"223206_s_at\"                \n",
+       "[34507] \"220972_s_at\"                 \"224957_at\"                  \n",
+       "[34509] \"221034_s_at\"                 \"223598_at\"                  \n",
+       "[34511] \"221421_s_at\"                 \"225016_at\"                  \n",
+       "[34513] \"220714_at\"                   \"223960_s_at\"                \n",
+       "[34515] \"225448_at\"                   \"220998_s_at\"                \n",
+       "[34517] \"224825_at\"                   \"220972_s_at\"                \n",
+       "[34519] \"221824_s_at\"                 \"221325_at\"                  \n",
+       "[34521] \"223647_x_at\"                 \"222572_at\"                  \n",
+       "[34523] \"224662_at\"                   \"220705_s_at\"                \n",
+       "[34525] \"220706_at\"                   \"223777_at\"                  \n",
+       "[34527] \"224478_s_at\"                 \"222613_at\"                  \n",
+       "[34529] \"224704_at\"                   \"224705_s_at\"                \n",
+       "[34531] \"223607_x_at\"                 \"224808_s_at\"                \n",
+       "[34533] \"223811_s_at\"                 \"222230_s_at\"                \n",
+       "[34535] \"222490_at\"                   \"224737_x_at\"                \n",
+       "[34537] \"224736_at\"                   \"223239_at\"                  \n",
+       "[34539] \"220852_at\"                   \"221475_s_at\"                \n",
+       "[34541] \"221295_at\"                   \"224802_at\"                  \n",
+       "[34543] \"224799_at\"                   \"224801_at\"                  \n",
+       "[34545] \"222927_s_at\"                 \"222934_s_at\"                \n",
+       "[34547] \"225067_at\"                   \"223129_x_at\"                \n",
+       "[34549] \"223130_s_at\"                 \"220984_s_at\"                \n",
+       "[34551] \"220957_at\"                   \"222122_s_at\"                \n",
+       "[34553] \"224450_s_at\"                 \"224816_at\"                  \n",
+       "[34555] \"222774_s_at\"                 \"221475_s_at\"                \n",
+       "[34557] \"223176_at\"                   \"222595_s_at\"                \n",
+       "[34559] \"223894_s_at\"                 \"221980_at\"                  \n",
+       "[34561] \"224374_s_at\"                 \"220665_at\"                  \n",
+       "[34563] \"220922_s_at\"                 \"220921_at\"                  \n",
+       "[34565] \"222229_x_at\"                 \"221474_at\"                  \n",
+       "[34567] \"221657_s_at\"                 \"222524_s_at\"                \n",
+       "[34569] \"222387_s_at\"                 \"220752_at\"                  \n",
+       "[34571] \"224597_at\"                   \"223098_s_at\"                \n",
+       "[34573] \"221833_at\"                   \"221834_at\"                  \n",
+       "[34575] \"223099_s_at\"                 \"223375_at\"                  \n",
+       "[34577] \"225365_at\"                   \"224435_at\"                  \n",
+       "[34579] \"222776_at\"                   \"224879_at\"                  \n",
+       "[34581] \"224860_at\"                   \"221952_x_at\"                \n",
+       "[34583] \"221867_at\"                   \"221282_x_at\"                \n",
+       "[34585] \"222065_s_at\"                 \"222272_x_at\"                \n",
+       "[34587] \"220549_at\"                   \"221449_s_at\"                \n",
+       "[34589] \"220922_s_at\"                 \"224032_x_at\"                \n",
+       "[34591] \"224954_at\"                   \"224702_at\"                  \n",
+       "[34593] \"224853_at\"                   \"224843_at\"                  \n",
+       "[34595] \"224844_at\"                   \"224854_s_at\"                \n",
+       "[34597] \"224845_s_at\"                 \"225149_at\"                  \n",
+       "[34599] \"225091_at\"                   \"225314_at\"                  \n",
+       "[34601] \"221731_x_at\"                 \"223564_s_at\"                \n",
+       "[34603] \"220762_s_at\"                 \"223563_at\"                  \n",
+       "[34605] \"222841_s_at\"                 \"220917_s_at\"                \n",
+       "[34607] \"221322_at\"                   \"220970_s_at\"                \n",
+       "[34609] \"223807_at\"                   \"220976_s_at\"                \n",
+       "[34611] \"220978_at\"                   \"224269_at\"                  \n",
+       "[34613] \"224586_x_at\"                 \"224587_at\"                  \n",
+       "[34615] \"221727_at\"                   \"223650_s_at\"                \n",
+       "[34617] \"221803_s_at\"                 \"222431_at\"                  \n",
+       "[34619] \"221578_at\"                   \"223042_s_at\"                \n",
+       "[34621] \"224250_s_at\"                 \"224479_s_at\"                \n",
+       "[34623] \"221586_s_at\"                 \"222927_s_at\"                \n",
+       "[34625] \"224784_at\"                   \"225293_at\"                  \n",
+       "[34627] \"225288_at\"                   \"225292_at\"                  \n",
+       "[34629] \"221698_s_at\"                 \"224279_s_at\"                \n",
+       "[34631] \"220771_at\"                   \"225360_at\"                  \n",
+       "[34633] \"221807_s_at\"                 \"224547_at\"                  \n",
+       "[34635] \"222848_at\"                   \"220945_x_at\"                \n",
+       "[34637] \"222715_s_at\"                 \"221937_at\"                  \n",
+       "[34639] \"222706_at\"                   \"220781_at\"                  \n",
+       "[34641] \"224207_x_at\"                 \"222937_s_at\"                \n",
+       "[34643] \"220993_s_at\"                 \"223279_s_at\"                \n",
+       "[34645] \"221841_s_at\"                 \"222089_s_at\"                \n",
+       "[34647] \"221425_s_at\"                 \"221598_s_at\"                \n",
+       "[34649] \"221606_s_at\"                 \"221238_at\"                  \n",
+       "[34651] \"225172_at\"                   \"222518_at\"                  \n",
+       "[34653] \"222327_x_at\"                 \"220966_x_at\"                \n",
+       "[34655] \"223101_s_at\"                 \"221696_s_at\"                \n",
+       "[34657] \"224921_at\"                   \"225285_at\"                  \n",
+       "[34659] \"223832_s_at\"                 \"221143_at\"                  \n",
+       "[34661] \"224616_at\"                   \"224614_at\"                  \n",
+       "[34663] \"224693_at\"                   \"224690_at\"                  \n",
+       "[34665] \"222426_at\"                   \"223060_at\"                  \n",
+       "[34667] \"224903_at\"                   \"220549_at\"                  \n",
+       "[34669] \"223909_s_at\"                 \"224918_x_at\"                \n",
+       "[34671] \"223306_at\"                   \"223306_at\"                  \n",
+       "[34673] \"222833_at\"                   \"225035_x_at\"                \n",
+       "[34675] \"224408_at\"                   \"221359_at\"                  \n",
+       "[34677] \"224547_at\"                   \"223250_at\"                  \n",
+       "[34679] \"221022_s_at\"                 \"224128_at\"                  \n",
+       "[34681] \"221654_s_at\"                 \"221310_at\"                  \n",
+       "[34683] \"220922_s_at\"                 \"224032_x_at\"                \n",
+       "[34685] \"224901_at\"                   \"224018_s_at\"                \n",
+       "[34687] \"225140_at\"                   \"222913_at\"                  \n",
+       "[34689] \"225133_at\"                   \"225344_at\"                  \n",
+       "[34691] \"222206_s_at\"                 \"220888_s_at\"                \n",
+       "[34693] \"225071_at\"                   \"221914_at\"                  \n",
+       "[34695] \"222894_x_at\"                 \"223576_at\"                  \n",
+       "[34697] \"222469_s_at\"                 \"222033_s_at\"                \n",
+       "[34699] \"223951_at\"                   \"225076_s_at\"                \n",
+       "[34701] \"222268_x_at\"                 \"224563_at\"                  \n",
+       "[34703] \"224915_x_at\"                 \"220660_at\"                  \n",
+       "[34705] \"221093_at\"                   \"221073_s_at\"                \n",
+       "[34707] \"224190_x_at\"                 \"220580_at\"                  \n",
+       "[34709] \"223715_at\"                   \"223677_at\"                  \n",
+       "[34711] \"223040_at\"                   \"224471_s_at\"                \n",
+       "[34713] \"222374_at\"                   \"225070_at\"                  \n",
+       "[34715] \"225071_at\"                   \"225436_at\"                  \n",
+       "[34717] \"223606_x_at\"                 \"221521_s_at\"                \n",
+       "[34719] \"223039_at\"                   \"223955_at\"                  \n",
+       "[34721] \"223273_at\"                   \"223116_at\"                  \n",
+       "[34723] \"224673_at\"                   \"224245_at\"                  \n",
+       "[34725] \"222435_s_at\"                 \"222873_s_at\"                \n",
+       "[34727] \"225461_at\"                   \"223535_at\"                  \n",
+       "[34729] \"222744_s_at\"                 \"223866_at\"                  \n",
+       "[34731] \"221690_s_at\"                 \"225449_at\"                  \n",
+       "[34733] \"225467_s_at\"                 \"221434_s_at\"                \n",
+       "[34735] \"223705_s_at\"                 \"224648_at\"                  \n",
+       "[34737] \"221241_s_at\"                 \"221285_at\"                  \n",
+       "[34739] \"222616_s_at\"                 \"225081_s_at\"                \n",
+       "[34741] \"223777_at\"                   \"221327_s_at\"                \n",
+       "[34743] \"221327_s_at\"                 \"223573_s_at\"                \n",
+       "[34745] \"223574_x_at\"                 \"222573_s_at\"                \n",
+       "[34747] \"221989_at\"                   \"221690_s_at\"                \n",
+       "[34749] \"225449_at\"                   \"225467_s_at\"                \n",
+       "[34751] \"220786_s_at\"                 \"221982_x_at\"                \n",
+       "[34753] \"221766_s_at\"                 \"224973_at\"                  \n",
+       "[34755] \"223853_at\"                   \"221746_at\"                  \n",
+       "[34757] \"223706_at\"                   \"221780_s_at\"                \n",
+       "[34759] \"222918_at\"                   \"221211_s_at\"                \n",
+       "[34761] \"225449_at\"                   \"225467_s_at\"                \n",
+       "[34763] \"221690_s_at\"                 \"222915_s_at\"                \n",
+       "[34765] \"223534_s_at\"                 \"221687_s_at\"                \n",
+       "[34767] \"221828_s_at\"                 \"224167_at\"                  \n",
+       "[34769] \"222705_s_at\"                 \"225328_at\"                  \n",
+       "[34771] \"225345_s_at\"                 \"225041_at\"                  \n",
+       "[34773] \"224940_s_at\"                 \"224942_at\"                  \n",
+       "[34775] \"224941_at\"                   \"221652_s_at\"                \n",
+       "[34777] \"222713_s_at\"                 \"225134_at\"                  \n",
+       "[34779] \"224437_s_at\"                 \"223021_x_at\"                \n",
+       "[34781] \"223022_s_at\"                 \"220915_s_at\"                \n",
+       "[34783] \"220914_at\"                   \"221049_s_at\"                \n",
+       "[34785] \"223730_at\"                   \"223483_at\"                  \n",
+       "[34787] \"223177_at\"                   \"223178_s_at\"                \n",
+       "[34789] \"224480_s_at\"                 \"223999_at\"                  \n",
+       "[34791] \"220907_at\"                   \"223594_at\"                  \n",
+       "[34793] \"221418_s_at\"                 \"221938_x_at\"                \n",
+       "[34795] \"221545_x_at\"                 \"223154_at\"                  \n",
+       "[34797] \"222617_s_at\"                 \"224579_at\"                  \n",
+       "[34799] \"224580_at\"                   \"222765_x_at\"                \n",
+       "[34801] \"224049_at\"                   \"224673_at\"                  \n",
+       "[34803] \"221519_at\"                   \"224900_at\"                  \n",
+       "[34805] \"221690_s_at\"                 \"221475_s_at\"                \n",
+       "[34807] \"221837_at\"                   \"221838_at\"                  \n",
+       "[34809] \"220939_s_at\"                 \"225145_at\"                  \n",
+       "[34811] \"222909_s_at\"                 \"221425_s_at\"                \n",
+       "[34813] \"221873_at\"                   \"225449_at\"                  \n",
+       "[34815] \"225467_s_at\"                 \"224061_at\"                  \n",
+       "[34817] \"223180_s_at\"                 \"223181_at\"                  \n",
+       "[34819] \"223019_at\"                   \"222952_s_at\"                \n",
+       "[34821] \"220900_at\"                   \"224123_at\"                  \n",
+       "[34823] \"222931_s_at\"                 \"220562_at\"                  \n",
+       "[34825] \"221843_s_at\"                 \"222747_s_at\"                \n",
+       "[34827] \"224534_at\"                   \"225284_at\"                  \n",
+       "[34829] \"221981_s_at\"                 \"221971_x_at\"                \n",
+       "[34831] \"221850_x_at\"                 \"221591_s_at\"                \n",
+       "[34833] \"220789_s_at\"                 \"225304_s_at\"                \n",
+       "[34835] \"222982_x_at\"                 \"220924_s_at\"                \n",
+       "[34837] \"222251_s_at\"                 \"225464_at\"                  \n",
+       "[34839] \"225481_at\"                   \"222769_at\"                  \n",
+       "[34841] \"223460_at\"                   \"225449_at\"                  \n",
+       "[34843] \"225467_s_at\"                 \"221690_s_at\"                \n",
+       "[34845] \"225383_at\"                   \"225382_at\"                  \n",
+       "[34847] \"225383_at\"                   \"225382_at\"                  \n",
+       "[34849] \"222557_at\"                   \"224199_at\"                  \n",
+       "[34851] \"223882_at\"                   \"221119_at\"                  \n",
+       "[34853] \"223782_s_at\"                 \"220930_s_at\"                \n",
+       "[34855] \"220931_at\"                   \"224540_at\"                  \n",
+       "[34857] \"221690_s_at\"                 \"225449_at\"                  \n",
+       "[34859] \"225467_s_at\"                 \"225528_at\"                  \n",
+       "[34861] \"223361_at\"                   \"221254_s_at\"                \n",
+       "[34863] \"221219_s_at\"                 \"222479_s_at\"                \n",
+       "[34865] \"225283_at\"                   \"221848_at\"                  \n",
+       "[34867] \"222078_at\"                   \"225210_s_at\"                \n",
+       "[34869] \"225208_s_at\"                 \"224272_at\"                  \n",
+       "[34871] \"225449_at\"                   \"225467_s_at\"                \n",
+       "[34873] \"224649_x_at\"                 \"224651_at\"                  \n",
+       "[34875] \"224652_at\"                   \"224647_at\"                  \n",
+       "[34877] \"221848_at\"                   \"221690_s_at\"                \n",
+       "[34879] \"222650_s_at\"                 \"220808_at\"                  \n",
+       "[34881] \"224273_at\"                   \"224229_s_at\"                \n",
+       "[34883] \"222880_at\"                   \"221381_s_at\"                \n",
+       "[34885] \"224561_s_at\"                 \"225505_s_at\"                \n",
+       "[34887] \"220741_s_at\"                 \"221690_s_at\"                \n",
+       "[34889] \"225449_at\"                   \"225467_s_at\"                \n",
+       "[34891] \"225192_at\"                   \"224275_at\"                  \n",
+       "[34893] \"223582_at\"                   \"224488_s_at\"                \n",
+       "[34895] \"224028_at\"                   \"223417_at\"                  \n",
+       "[34897] \"224200_s_at\"                 \"224689_at\"                  \n",
+       "[34899] \"220588_at\"                   \"222099_s_at\"                \n",
+       "[34901] \"222602_at\"                   \"222601_at\"                  \n",
+       "[34903] \"222600_s_at\"                 \"220543_at\"                  \n",
+       "[34905] \"223923_at\"                   \"222165_x_at\"                \n",
+       "[34907] \"222136_x_at\"                 \"223109_at\"                  \n",
+       "[34909] \"221183_at\"                   \"223298_s_at\"                \n",
+       "[34911] \"225247_at\"                   \"223085_at\"                  \n",
+       "[34913] \"221008_s_at\"                 \"224511_s_at\"                \n",
+       "[34915] \"224198_at\"                   \"221739_at\"                  \n",
+       "[34917] \"220849_at\"                   \"222779_s_at\"                \n",
+       "[34919] \"223172_s_at\"                 \"223382_s_at\"                \n",
+       "[34921] \"223383_at\"                   \"223172_s_at\"                \n",
+       "[34923] \"220595_at\"                   \"223360_at\"                  \n",
+       "[34925] \"223588_at\"                   \"224583_at\"                  \n",
+       "[34927] \"221059_s_at\"                 \"220655_at\"                  \n",
+       "[34929] \"224932_at\"                   \"224796_at\"                  \n",
+       "[34931] \"224790_at\"                   \"221039_s_at\"                \n",
+       "[34933] \"224791_at\"                   \"221262_s_at\"                \n",
+       "[34935] \"221690_s_at\"                 \"220610_s_at\"                \n",
+       "[34937] \"225449_at\"                   \"225467_s_at\"                \n",
+       "[34939] \"225449_at\"                   \"220759_at\"                  \n",
+       "[34941] \"221888_at\"                   \"222137_at\"                  \n",
+       "[34943] \"224650_at\"                   \"221849_s_at\"                \n",
+       "[34945] \"221851_at\"                   \"222274_at\"                  \n",
+       "[34947] \"222012_at\"                   \"222062_at\"                  \n",
+       "[34949] \"224673_at\"                   \"222596_s_at\"                \n",
+       "[34951] \"225531_at\"                   \"225532_at\"                  \n",
+       "[34953] \"225330_at\"                   \"221501_x_at\"                \n",
+       "[34955] \"223296_at\"                   \"222867_s_at\"                \n",
+       "[34957] \"222722_at\"                   \"224396_s_at\"                \n",
+       "[34959] \"224087_at\"                   \"222111_at\"                  \n",
+       "[34961] \"220844_at\"                   \"222864_s_at\"                \n",
+       "[34963] \"223047_at\"                   \"224121_x_at\"                \n",
+       "[34965] \"220732_at\"                   \"224636_at\"                  \n",
+       "[34967] \"224631_at\"                   \"223697_x_at\"                \n",
+       "[34969] \"221971_x_at\"                 \"221850_x_at\"                \n",
+       "[34971] \"221971_x_at\"                 \"221850_x_at\"                \n",
+       "[34973] \"222056_s_at\"                 \"222083_at\"                  \n",
+       "[34975] \"221907_at\"                   \"223186_at\"                  \n",
+       "[34977] \"222907_x_at\"                 \"225182_at\"                  \n",
+       "[34979] \"222254_at\"                   \"222957_at\"                  \n",
+       "[34981] \"222764_at\"                   \"220836_at\"                  \n",
+       "[34983] \"220835_s_at\"                 \"222474_s_at\"                \n",
+       "[34985] \"221284_s_at\"                 \"224365_s_at\"                \n",
+       "[34987] \"221016_s_at\"                 \"224881_at\"                  \n",
+       "[34989] \"225111_s_at\"                 \"221460_at\"                  \n",
+       "[34991] \"223921_s_at\"                 \"224627_at\"                  \n",
+       "[34993] \"221042_s_at\"                 \"221760_at\"                  \n",
+       "[34995] \"224538_s_at\"                 \"225023_at\"                  \n",
+       "[34997] \"225022_at\"                   \"225393_at\"                  \n",
+       "[34999] \"222217_s_at\"                 \"223236_at\"                  \n",
+       "[35001] \"222030_at\"                   \"224415_s_at\"                \n",
+       "[35003] \"222400_s_at\"                 \"224415_s_at\"                \n",
+       "[35005] \"222869_s_at\"                 \"224797_at\"                  \n",
+       "[35007] \"223077_at\"                   \"223078_s_at\"                \n",
+       "[35009] \"220800_s_at\"                 \"221409_at\"                  \n",
+       "[35011] \"225466_at\"                   \"225468_at\"                  \n",
+       "[35013] \"222236_s_at\"                 \"222021_x_at\"                \n",
+       "[35015] \"222021_x_at\"                 \"222317_at\"                  \n",
+       "[35017] \"221441_at\"                   \"220838_at\"                  \n",
+       "[35019] \"222021_x_at\"                 \"222021_x_at\"                \n",
+       "[35021] \"223338_s_at\"                 \"223339_at\"                  \n",
+       "[35023] \"223196_s_at\"                 \"223195_s_at\"                \n",
+       "[35025] \"221650_s_at\"                 \"222399_s_at\"                \n",
+       "[35027] \"224755_at\"                   \"222344_at\"                  \n",
+       "[35029] \"222344_at\"                   \"224631_at\"                  \n",
+       "[35031] \"221358_at\"                   \"222714_s_at\"                \n",
+       "[35033] \"223212_at\"                   \"225425_s_at\"                \n",
+       "[35035] \"224492_s_at\"                 \"224520_s_at\"                \n",
+       "[35037] \"222021_x_at\"                 \"223975_at\"                  \n",
+       "[35039] \"222021_x_at\"                 \"225395_s_at\"                \n",
+       "[35041] \"222535_at\"                   \"222534_s_at\"                \n",
+       "[35043] \"224469_s_at\"                 \"225275_at\"                  \n",
+       "[35045] \"222021_x_at\"                 \"221056_x_at\"                \n",
+       "[35047] \"222112_at\"                   \"222113_s_at\"                \n",
+       "[35049] \"221072_at\"                   \"221394_at\"                  \n",
+       "[35051] \"224458_at\"                   \"222683_at\"                  \n",
+       "[35053] \"223378_at\"                   \"222663_at\"                  \n",
+       "[35055] \"223817_at\"                   \"222021_x_at\"                \n",
+       "[35057] \"222638_s_at\"                 \"222021_x_at\"                \n",
+       "[35059] \"225066_at\"                   \"221772_s_at\"                \n",
+       "[35061] \"222394_at\"                   \"225162_at\"                  \n",
+       "[35063] \"221779_at\"                   \"222021_x_at\"                \n",
+       "[35065] \"222392_x_at\"                 \"224684_at\"                  \n",
+       "[35067] \"221453_at\"                   \"221595_at\"                  \n",
+       "[35069] \"221596_s_at\"                 \"222815_at\"                  \n",
+       "[35071] \"225416_at\"                   \"221214_s_at\"                \n",
+       "[35073] \"222911_s_at\"                 \"222609_s_at\"                \n",
+       "[35075] \"221332_at\"                   \"225310_at\"                  \n",
+       "[35077] \"222742_s_at\"                 \"221568_s_at\"                \n",
+       "[35079] \"223350_x_at\"                 \"222323_at\"                  \n",
+       "[35081] \"222323_at\"                   \"220574_at\"                  \n",
+       "[35083] \"224891_at\"                   \"224889_at\"                  \n",
+       "[35085] \"220864_s_at\"                 \"223140_s_at\"                \n",
+       "[35087] \"222121_at\"                   \"223796_at\"                  \n",
+       "[35089] \"221711_s_at\"                 \"223001_at\"                  \n",
+       "[35091] \"222543_at\"                   \"225488_at\"                  \n",
+       "[35093] \"221750_at\"                   \"220723_s_at\"                \n",
+       "[35095] \"220724_at\"                   \"221066_at\"                  \n",
+       "[35097] \"224409_s_at\"                 \"224027_at\"                  \n",
+       "[35099] \"224240_s_at\"                 \"220864_s_at\"                \n",
+       "[35101] \"222597_at\"                   \"222498_at\"                  \n",
+       "[35103] \"223846_at\"                   \"223536_at\"                  \n",
+       "[35105] \"221457_s_at\"                 \"221540_x_at\"                \n",
+       "[35107] \"223758_s_at\"                 \"221540_x_at\"                \n",
+       "[35109] \"223758_s_at\"                 \"224872_at\"                  \n",
+       "[35111] \"224209_s_at\"                 \"222021_x_at\"                \n",
+       "[35113] \"223539_s_at\"                 \"223538_at\"                  \n",
+       "[35115] \"223539_s_at\"                 \"223538_at\"                  \n",
+       "[35117] \"221802_s_at\"                 \"220904_at\"                  \n",
+       "[35119] \"224227_s_at\"                 \"221864_at\"                  \n",
+       "[35121] \"221864_at\"                   \"222180_at\"                  \n",
+       "[35123] \"223539_s_at\"                 \"223538_at\"                  \n",
+       "[35125] \"223801_s_at\"                 \"224491_at\"                  \n",
+       "[35127] \"222817_at\"                   \"224423_x_at\"                \n",
+       "[35129] \"224418_x_at\"                 \"224422_x_at\"                \n",
+       "[35131] \"224421_x_at\"                 \"224419_x_at\"                \n",
+       "[35133] \"225219_at\"                   \"225223_at\"                  \n",
+       "[35135] \"222021_x_at\"                 \"224215_s_at\"                \n",
+       "[35137] \"221718_s_at\"                 \"222024_s_at\"                \n",
+       "[35139] \"224884_at\"                   \"223729_at\"                  \n",
+       "[35141] \"222728_s_at\"                 \"221580_s_at\"                \n",
+       "[35143] \"223687_s_at\"                 \"223688_s_at\"                \n",
+       "[35145] \"224623_at\"                   \"224623_at\"                  \n",
+       "[35147] \"223803_s_at\"                 \"221193_s_at\"                \n",
+       "[35149] \"222780_s_at\"                 \"221092_at\"                  \n",
+       "[35151] \"223918_at\"                   \"221634_at\"                  \n",
+       "[35153] \"221504_s_at\"                 \"222792_s_at\"                \n",
+       "[35155] \"222813_at\"                   \"222021_x_at\"                \n",
+       "[35157] \"222021_x_at\"                 \"223604_at\"                  \n",
+       "[35159] \"225450_at\"                   \"225459_at\"                  \n",
+       "[35161] \"221300_at\"                   \"221633_at\"                  \n",
+       "[35163] \"222716_s_at\"                 \"222551_s_at\"                \n",
+       "[35165] \"222885_at\"                   \"221382_at\"                  \n",
+       "[35167] \"222951_s_at\"                 \"221820_s_at\"                \n",
+       "[35169] \"222279_at\"                   \"221811_at\"                  \n",
+       "[35171] \"223050_s_at\"                 \"222071_s_at\"                \n",
+       "[35173] \"224215_s_at\"                 \"221451_s_at\"                \n",
+       "[35175] \"221344_at\"                   \"221338_at\"                  \n",
+       "[35177] \"220635_at\"                   \"222732_at\"                  \n",
+       "[35179] \"221343_at\"                   \"222852_at\"                  \n",
+       "[35181] \"221343_at\"                   \"221451_s_at\"                \n",
+       "[35183] \"222161_at\"                   \"221431_s_at\"                \n",
+       "[35185] \"222732_at\"                   \"223018_at\"                  \n",
+       "[35187] \"221342_at\"                   \"224687_at\"                  \n",
+       "[35189] \"224682_at\"                   \"221666_s_at\"                \n",
+       "[35191] \"225351_at\"                   \"221804_s_at\"                \n",
+       "[35193] \"222955_s_at\"                 \"221663_x_at\"                \n",
+       "[35195] \"223639_s_at\"                 \"225499_at\"                  \n",
+       "[35197] \"223274_at\"                   \"220783_at\"                  \n",
+       "[35199] \"220788_s_at\"                 \"222263_at\"                  \n",
+       "[35201] \"220796_x_at\"                 \"220981_x_at\"                \n",
+       "[35203] \"223595_at\"                   \"221941_at\"                  \n",
+       "[35205] \"221875_x_at\"                 \"221978_at\"                  \n",
+       "[35207] \"221100_at\"                   \"222740_at\"                  \n",
+       "[35209] \"222072_at\"                   \"224294_at\"                  \n",
+       "[35211] \"225472_at\"                   \"225476_at\"                  \n",
+       "[35213] \"225052_at\"                   \"224756_s_at\"                \n",
+       "[35215] \"222257_s_at\"                 \"221202_at\"                  \n",
+       "[35217] \"221030_s_at\"                 \"223422_s_at\"                \n",
+       "[35219] \"225215_s_at\"                 \"225206_s_at\"                \n",
+       "[35221] \"225165_at\"                   \"220902_at\"                  \n",
+       "[35223] \"221088_s_at\"                 \"222013_x_at\"                \n",
+       "[35225] \"221339_at\"                   \"225354_s_at\"                \n",
+       "[35227] \"221758_at\"                   \"222400_s_at\"                \n",
+       "[35229] \"223880_x_at\"                 \"224376_s_at\"                \n",
+       "[35231] \"223758_s_at\"                 \"221540_x_at\"                \n",
+       "[35233] \"223758_s_at\"                 \"221540_x_at\"                \n",
+       "[35235] \"221382_at\"                   \"221540_x_at\"                \n",
+       "[35237] \"223758_s_at\"                 \"223120_at\"                  \n",
+       "[35239] \"221382_at\"                   \"224756_s_at\"                \n",
+       "[35241] \"224227_s_at\"                 \"223569_at\"                  \n",
+       "[35243] \"223568_s_at\"                 \"221041_s_at\"                \n",
+       "[35245] \"223441_at\"                   \"223539_s_at\"                \n",
+       "[35247] \"223538_at\"                   \"223539_s_at\"                \n",
+       "[35249] \"223538_at\"                   \"221301_at\"                  \n",
+       "[35251] \"220755_s_at\"                 \"220755_s_at\"                \n",
+       "[35253] \"224302_s_at\"                 \"224927_at\"                  \n",
+       "[35255] \"224927_at\"                   \"224447_s_at\"                \n",
+       "[35257] \"221338_at\"                   \"224423_x_at\"                \n",
+       "[35259] \"224418_x_at\"                 \"224422_x_at\"                \n",
+       "[35261] \"224421_x_at\"                 \"224419_x_at\"                \n",
+       "[35263] \"225318_at\"                   \"221248_s_at\"                \n",
+       "[35265] \"223569_at\"                   \"223568_s_at\"                \n",
+       "[35267] \"222544_s_at\"                 \"224076_s_at\"                \n",
+       "[35269] \"221627_at\"                   \"222029_x_at\"                \n",
+       "[35271] \"222019_at\"                   \"222279_at\"                  \n",
+       "[35273] \"220635_at\"                   \"221100_at\"                  \n",
+       "[35275] \"222279_at\"                   \"221406_s_at\"                \n",
+       "[35277] \"225472_at\"                   \"225476_at\"                  \n",
+       "[35279] \"223918_at\"                   \"222732_at\"                  \n",
+       "[35281] \"224764_at\"                   \"224623_at\"                  \n",
+       "[35283] \"224623_at\"                   \"225487_at\"                  \n",
+       "[35285] \"225489_at\"                   \"222858_s_at\"                \n",
+       "[35287] \"222859_s_at\"                 \"221875_x_at\"                \n",
+       "[35289] \"221978_at\"                   \"221431_s_at\"                \n",
+       "[35291] \"221344_at\"                   \"221342_at\"                  \n",
+       "[35293] \"223628_at\"                   \"221457_s_at\"                \n",
+       "[35295] \"224765_at\"                   \"221773_at\"                  \n",
+       "[35297] \"222164_at\"                   \"222279_at\"                  \n",
+       "[35299] \"221457_s_at\"                 \"221517_s_at\"                \n",
+       "[35301] \"221875_x_at\"                 \"221978_at\"                  \n",
+       "[35303] \"221627_at\"                   \"221822_at\"                  \n",
+       "[35305] \"223274_at\"                   \"221339_at\"                  \n",
+       "[35307] \"223115_at\"                   \"221517_s_at\"                \n",
+       "[35309] \"220635_at\"                   \"224927_at\"                  \n",
+       "[35311] \"224927_at\"                   \"222745_s_at\"                \n",
+       "[35313] \"225472_at\"                   \"225476_at\"                  \n",
+       "[35315] \"225514_at\"                   \"221323_at\"                  \n",
+       "[35317] \"224756_s_at\"                 \"223639_s_at\"                \n",
+       "[35319] \"221338_at\"                   \"225514_at\"                  \n",
+       "[35321] \"222279_at\"                   \"223857_x_at\"                \n",
+       "[35323] \"223043_at\"                   \"221457_s_at\"                \n",
+       "[35325] \"224326_s_at\"                 \"223712_at\"                  \n",
+       "[35327] \"224046_s_at\"                 \"223358_s_at\"                \n",
+       "[35329] \"221406_s_at\"                 \"223639_s_at\"                \n",
+       "[35331] \"220953_s_at\"                 \"225232_at\"                  \n",
+       "[35333] \"220849_at\"                   \"221815_at\"                  \n",
+       "[35335] \"225337_at\"                   \"223639_s_at\"                \n",
+       "[35337] \"221406_s_at\"                 \"223274_at\"                  \n",
+       "[35339] \"223259_at\"                   \"221154_at\"                  \n",
+       "[35341] \"221451_s_at\"                 \"222265_at\"                  \n",
+       "[35343] \"223173_at\"                   \"221627_at\"                  \n",
+       "[35345] \"223784_at\"                   \"225096_at\"                  \n",
+       "[35347] \"221343_at\"                   \"221989_at\"                  \n",
+       "[35349] \"221627_at\"                   \"221349_at\"                  \n",
+       "[35351] \"221100_at\"                   \"224170_s_at\"                \n",
+       "[35353] \"224342_x_at\"                 \"224342_x_at\"                \n",
+       "[35355] \"223596_at\"                   \"220740_s_at\"                \n",
+       "[35357] \"221950_at\"                   \"221406_s_at\"                \n",
+       "[35359] \"225432_s_at\"                 \"221342_at\"                  \n",
+       "[35361] \"221382_at\"                   \"225229_at\"                  \n",
+       "[35363] \"224927_at\"                   \"224927_at\"                  \n",
+       "[35365] \"225048_at\"                   \"222209_s_at\"                \n",
+       "[35367] \"223393_s_at\"                 \"223392_s_at\"                \n",
+       "[35369] \"221339_at\"                   \"221451_s_at\"                \n",
+       "[35371] \"224927_at\"                   \"224927_at\"                  \n",
+       "[35373] \"221406_s_at\"                 \"224467_s_at\"                \n",
+       "[35375] \"221457_s_at\"                 \"223136_at\"                  \n",
+       "[35377] \"220894_x_at\"                 \"223173_at\"                  \n",
+       "[35379] \"224949_at\"                   \"224953_at\"                  \n",
+       "[35381] \"224934_at\"                   \"221423_s_at\"                \n",
+       "[35383] \"221406_s_at\"                 \"223777_at\"                  \n",
+       "[35385] \"221065_s_at\"                 \"221736_at\"                  \n",
+       "[35387] \"221738_at\"                   \"224678_at\"                  \n",
+       "[35389] \"220928_s_at\"                 \"222094_at\"                  \n",
+       "[35391] \"221406_s_at\"                 \"224519_at\"                  \n",
+       "[35393] \"224519_at\"                   \"223816_at\"                  \n",
+       "[35395] \"223639_s_at\"                 \"224239_at\"                  \n",
+       "[35397] \"224239_at\"                   \"221301_at\"                  \n",
+       "[35399] \"223634_at\"                   \"224407_s_at\"                \n",
+       "[35401] \"220755_s_at\"                 \"221301_at\"                  \n",
+       "[35403] \"221634_at\"                   \"224117_at\"                  \n",
+       "[35405] \"223639_s_at\"                 \"221653_x_at\"                \n",
+       "[35407] \"221013_s_at\"                 \"222279_at\"                  \n",
+       "[35409] \"222147_s_at\"                 \"222029_x_at\"                \n",
+       "[35411] \"222019_at\"                   \"223639_s_at\"                \n",
+       "[35413] \"222732_at\"                   \"221431_s_at\"                \n",
+       "[35415] \"221344_at\"                   \"221343_at\"                  \n",
+       "[35417] \"221339_at\"                   \"223639_s_at\"                \n",
+       "[35419] \"223522_at\"                   \"221422_s_at\"                \n",
+       "[35421] \"225525_at\"                   \"223522_at\"                  \n",
+       "[35423] \"223246_s_at\"                 \"223245_at\"                  \n",
+       "[35425] \"222860_s_at\"                 \"220998_s_at\"                \n",
+       "[35427] \"224271_x_at\"                 \"222351_at\"                  \n",
+       "[35429] \"222193_at\"                   \"222192_s_at\"                \n",
+       "[35431] \"221422_s_at\"                 \"223692_at\"                  \n",
+       "[35433] \"220830_at\"                   \"222422_s_at\"                \n",
+       "[35435] \"222423_at\"                   \"223912_s_at\"                \n",
+       "[35437] \"222874_s_at\"                 \"225121_at\"                  \n",
+       "[35439] \"221032_s_at\"                 \"223179_at\"                  \n",
+       "[35441] \"220955_x_at\"                 \"223463_at\"                  \n",
+       "[35443] \"224017_at\"                   \"225035_x_at\"                \n",
+       "[35445] \"223444_at\"                   \"220735_s_at\"                \n",
+       "[35447] \"221812_at\"                   \"221813_at\"                  \n",
+       "[35449] \"224834_at\"                   \"224827_at\"                  \n",
+       "[35451] \"222945_x_at\"                 \"225074_at\"                  \n",
+       "[35453] \"221262_s_at\"                 \"221431_s_at\"                \n",
+       "[35455] \"223274_at\"                   \"221457_s_at\"                \n",
+       "[35457] \"221406_s_at\"                 \"222201_s_at\"                \n",
+       "[35459] \"221344_at\"                   \"223639_s_at\"                \n",
+       "[35461] \"221338_at\"                   \"221301_at\"                  \n",
+       "[35463] \"224745_x_at\"                 \"225509_at\"                  \n",
+       "[35465] \"222094_at\"                   \"222102_at\"                  \n",
+       "[35467] \"222029_x_at\"                 \"222019_at\"                  \n",
+       "[35469] \"220947_s_at\"                 \"222749_at\"                  \n",
+       "[35471] \"224201_s_at\"                 \"224202_at\"                  \n",
+       "[35473] \"224203_at\"                   \"223615_at\"                  \n",
+       "[35475] \"221875_x_at\"                 \"224523_s_at\"                \n",
+       "[35477] \"222094_at\"                   \"222094_at\"                  \n",
+       "[35479] \"222395_s_at\"                 \"224168_at\"                  \n",
+       "[35481] \"223998_at\"                   \"225198_at\"                  \n",
+       "[35483] \"220701_at\"                   \"220770_s_at\"                \n",
+       "[35485] \"222908_at\"                   \"222944_s_at\"                \n",
+       "[35487] \"223166_x_at\"                 \"225377_at\"                  \n",
+       "[35489] \"220635_at\"                   \"223240_at\"                  \n",
+       "[35491] \"221749_at\"                   \"221342_at\"                  \n",
+       "[35493] \"222163_s_at\"                 \"223484_at\"                  \n",
+       "[35495] \"224756_s_at\"                 \"223207_x_at\"                \n",
+       "[35497] \"222551_s_at\"                 \"222637_at\"                  \n",
+       "[35499] \"222826_at\"                   \"224883_at\"                  \n",
+       "[35501] \"224892_at\"                   \"221406_s_at\"                \n",
+       "[35503] \"222722_at\"                   \"224396_s_at\"                \n",
+       "[35505] \"221279_at\"                   \"224927_at\"                  \n",
+       "[35507] \"224927_at\"                   \"224179_s_at\"                \n",
+       "[35509] \"221916_at\"                   \"221801_x_at\"                \n",
+       "[35511] \"221805_at\"                   \"221805_at\"                  \n",
+       "[35513] \"223982_s_at\"                 \"223310_x_at\"                \n",
+       "[35515] \"223309_x_at\"                 \"221406_s_at\"                \n",
+       "[35517] \"221918_at\"                   \"221100_at\"                  \n",
+       "[35519] \"225035_x_at\"                 \"223985_at\"                  \n",
+       "[35521] \"223745_at\"                   \"221493_at\"                  \n",
+       "[35523] \"224258_at\"                   \"221451_s_at\"                \n",
+       "[35525] \"221086_s_at\"                 \"225388_at\"                  \n",
+       "[35527] \"225387_at\"                   \"223328_at\"                  \n",
+       "[35529] \"223928_s_at\"                 \"221026_s_at\"                \n",
+       "[35531] \"221343_at\"                   \"225472_at\"                  \n",
+       "[35533] \"225476_at\"                   \"221152_at\"                  \n",
+       "[35535] \"223328_at\"                   \"221168_at\"                  \n",
+       "[35537] \"223446_s_at\"                 \"223445_at\"                  \n",
+       "[35539] \"223763_at\"                   \"223161_at\"                  \n",
+       "[35541] \"223162_s_at\"                 \"222132_s_at\"                \n",
+       "[35543] \"221627_at\"                   \"223162_s_at\"                \n",
+       "[35545] \"223274_at\"                   \"221382_at\"                  \n",
+       "[35547] \"221627_at\"                   \"221100_at\"                  \n",
+       "[35549] \"223368_s_at\"                 \"223369_at\"                  \n",
+       "[35551] \"224106_at\"                   \"222732_at\"                  \n",
+       "[35553] \"222839_s_at\"                 \"222273_at\"                  \n",
+       "[35555] \"224427_s_at\"                 \"223323_x_at\"                \n",
+       "[35557] \"223324_s_at\"                 \"221339_at\"                  \n",
+       "[35559] \"221994_at\"                   \"224756_s_at\"                \n",
+       "[35561] \"221343_at\"                   \"221343_at\"                  \n",
+       "[35563] \"223639_s_at\"                 \"222134_at\"                  \n",
+       "[35565] \"225018_at\"                   \"224995_at\"                  \n",
+       "[35567] \"222489_s_at\"                 \"224679_at\"                  \n",
+       "[35569] \"224672_x_at\"                 \"224675_at\"                  \n",
+       "[35571] \"222905_s_at\"                 \"224485_s_at\"                \n",
+       "[35573] \"224380_s_at\"                 \"223639_s_at\"                \n",
+       "[35575] \"224445_s_at\"                 \"221339_at\"                  \n",
+       "[35577] \"221406_s_at\"                 \"221488_s_at\"                \n",
+       "[35579] \"225287_s_at\"                 \"223083_s_at\"                \n",
+       "[35581] \"220956_s_at\"                 \"221627_at\"                  \n",
+       "[35583] \"221406_s_at\"                 \"222690_s_at\"                \n",
+       "[35585] \"221382_at\"                   \"222477_s_at\"                \n",
+       "[35587] \"223004_s_at\"                 \"225472_at\"                  \n",
+       "[35589] \"225476_at\"                   \"220755_s_at\"                \n",
+       "[35591] \"221451_s_at\"                 \"221338_at\"                  \n",
+       "[35593] \"225402_at\"                   \"224722_at\"                  \n",
+       "[35595] \"224720_at\"                   \"224725_at\"                  \n",
+       "[35597] \"224726_at\"                   \"223083_s_at\"                \n",
+       "[35599] \"220956_s_at\"                 \"221342_at\"                  \n",
+       "[35601] \"221259_s_at\"                 \"221338_at\"                  \n",
+       "[35603] \"224326_s_at\"                 \"221339_at\"                  \n",
+       "[35605] \"222155_s_at\"                 \"225413_at\"                  \n",
+       "[35607] \"224927_at\"                   \"224927_at\"                  \n",
+       "[35609] \"222732_at\"                   \"223437_at\"                  \n",
+       "[35611] \"223438_s_at\"                 \"220773_s_at\"                \n",
+       "[35613] \"223319_at\"                   \"221650_s_at\"                \n",
+       "[35615] \"224629_at\"                   \"221875_x_at\"                \n",
+       "[35617] \"221978_at\"                   \"224285_at\"                  \n",
+       "[35619] \"223936_s_at\"                 \"223287_s_at\"                \n",
+       "[35621] \"221301_at\"                   \"221457_s_at\"                \n",
+       "[35623] \"223926_at\"                   \"223550_s_at\"                \n",
+       "[35625] \"220889_s_at\"                 \"221367_at\"                  \n",
+       "[35627] \"221451_s_at\"                 \"222029_x_at\"                \n",
+       "[35629] \"222019_at\"                   \"222701_s_at\"                \n",
+       "[35631] \"221858_at\"                   \"221306_at\"                  \n",
+       "[35633] \"221790_s_at\"                 \"222279_at\"                  \n",
+       "[35635] \"223639_s_at\"                 \"220828_s_at\"                \n",
+       "[35637] \"223338_s_at\"                 \"223339_at\"                  \n",
+       "[35639] \"221875_x_at\"                 \"221978_at\"                  \n",
+       "[35641] \"223528_s_at\"                 \"223988_x_at\"                \n",
+       "[35643] \"222279_at\"                   \"220547_s_at\"                \n",
+       "[35645] \"221457_s_at\"                 \"225030_at\"                  \n",
+       "[35647] \"223744_s_at\"                 \"224391_s_at\"                \n",
+       "[35649] \"222279_at\"                   \"221382_at\"                  \n",
+       "[35651] \"223461_at\"                   \"223461_at\"                  \n",
+       "[35653] \"222279_at\"                   \"223196_s_at\"                \n",
+       "[35655] \"223195_s_at\"                 \"224762_at\"                  \n",
+       "[35657] \"224756_s_at\"                 \"221891_x_at\"                \n",
+       "[35659] \"224187_x_at\"                 \"224927_at\"                  \n",
+       "[35661] \"224927_at\"                   \"220635_at\"                  \n",
+       "[35663] \"221347_at\"                   \"221342_at\"                  \n",
+       "[35665] \"225472_at\"                   \"225476_at\"                  \n",
+       "[35667] \"223188_at\"                   \"221335_x_at\"                \n",
+       "[35669] \"222794_x_at\"                 \"224180_x_at\"                \n",
+       "[35671] \"224258_at\"                   \"221344_at\"                  \n",
+       "[35673] \"223274_at\"                   \"221791_s_at\"                \n",
+       "[35675] \"220920_at\"                   \"223296_at\"                  \n",
+       "[35677] \"223639_s_at\"                 \"224617_at\"                  \n",
+       "[35679] \"224618_at\"                   \"224779_s_at\"                \n",
+       "[35681] \"225297_at\"                   \"225433_at\"                  \n",
+       "[35683] \"221431_s_at\"                 \"223639_s_at\"                \n",
+       "[35685] \"221412_at\"                   \"221634_at\"                  \n",
+       "[35687] \"222694_at\"                   \"221103_s_at\"                \n",
+       "[35689] \"221967_at\"                   \"224490_s_at\"                \n",
+       "[35691] \"224489_at\"                   \"221149_at\"                  \n",
+       "[35693] \"220707_s_at\"                 \"221634_at\"                  \n",
+       "[35695] \"222225_at\"                   \"221673_s_at\"                \n",
+       "[35697] \"220640_at\"                   \"222866_s_at\"                \n",
+       "[35699] \"220551_at\"                   \"225036_at\"                  \n",
+       "[35701] \"225036_at\"                   \"220964_s_at\"                \n",
+       "[35703] \"221258_s_at\"                 \"223593_at\"                  \n",
+       "[35705] \"221585_at\"                   \"221337_s_at\"                \n",
+       "[35707] \"223489_x_at\"                 \"223490_s_at\"                \n",
+       "[35709] \"225534_at\"                   \"222804_x_at\"                \n",
+       "[35711] \"220919_s_at\"                 \"224251_at\"                  \n",
+       "[35713] \"224759_s_at\"                 \"222651_s_at\"                \n",
+       "[35715] \"224218_s_at\"                 \"220850_at\"                  \n",
+       "[35717] \"220628_s_at\"                 \"223075_s_at\"                \n",
+       "[35719] \"223074_s_at\"                 \"221875_x_at\"                \n",
+       "[35721] \"221978_at\"                   \"222321_at\"                  \n",
+       "[35723] \"222451_s_at\"                 \"224474_x_at\"                \n",
+       "[35725] \"222270_at\"                   \"222519_s_at\"                \n",
+       "[35727] \"222520_s_at\"                 \"222279_at\"                  \n",
+       "[35729] \"222279_at\"                   \"221513_s_at\"                \n",
+       "[35731] \"221098_x_at\"                 \"221514_at\"                  \n",
+       "[35733] \"223106_at\"                   \"223105_s_at\"                \n",
+       "[35735] \"221673_s_at\"                 \"221452_s_at\"                \n",
+       "[35737] \"223105_s_at\"                 \"223133_at\"                  \n",
+       "[35739] \"223141_at\"                   \"223142_s_at\"                \n",
+       "[35741] \"224902_at\"                   \"224904_at\"                  \n",
+       "[35743] \"224902_at\"                   \"224904_at\"                  \n",
+       "[35745] \"222491_at\"                   \"225216_at\"                  \n",
+       "[35747] \"222795_s_at\"                 \"221160_s_at\"                \n",
+       "[35749] \"221844_x_at\"                 \"222753_s_at\"                \n",
+       "[35751] \"222739_at\"                   \"222571_at\"                  \n",
+       "[35753] \"222856_at\"                   \"223285_s_at\"                \n",
+       "[35755] \"220937_s_at\"                 \"221551_x_at\"                \n",
+       "[35757] \"220649_at\"                   \"223084_s_at\"                \n",
+       "[35759] \"225301_s_at\"                 \"220799_at\"                  \n",
+       "[35761] \"221011_s_at\"                 \"222920_s_at\"                \n",
+       "[35763] \"222133_s_at\"                 \"222842_at\"                  \n",
+       "[35765] \"222010_at\"                   \"222011_s_at\"                \n",
+       "[35767] \"223386_at\"                   \"220963_s_at\"                \n",
+       "[35769] \"220556_at\"                   \"225385_s_at\"                \n",
+       "[35771] \"225386_s_at\"                 \"225236_at\"                  \n",
+       "[35773] \"225126_at\"                   \"224761_at\"                  \n",
+       "[35775] \"224393_s_at\"                 \"225299_at\"                  \n",
+       "[35777] \"225301_s_at\"                 \"225336_at\"                  \n",
+       "[35779] \"225515_s_at\"                 \"224738_x_at\"                \n",
+       "[35781] \"222514_at\"                   \"221492_s_at\"                \n",
+       "[35783] \"225291_at\"                   \"224578_at\"                  \n",
+       "[35785] \"222171_s_at\"                 \"223689_at\"                  \n",
+       "[35787] \"225341_at\"                   \"225346_at\"                  \n",
+       "[35789] \"221415_s_at\"                 \"222440_s_at\"                \n",
+       "[35791] \"222439_s_at\"                 \"220911_s_at\"                \n",
+       "[35793] \"221971_x_at\"                 \"221850_x_at\"                \n",
+       "[35795] \"221634_at\"                   \"224723_x_at\"                \n",
+       "[35797] \"223225_s_at\"                 \"221931_s_at\"                \n",
+       "[35799] \"224524_s_at\"                 \"224524_s_at\"                \n",
+       "[35801] \"224696_s_at\"                 \"224697_at\"                  \n",
+       "[35803] \"224703_at\"                   \"222850_s_at\"                \n",
+       "[35805] \"222675_s_at\"                 \"225185_at\"                  \n",
+       "[35807] \"222854_s_at\"                 \"223202_s_at\"                \n",
+       "[35809] \"223201_s_at\"                 \"223254_s_at\"                \n",
+       "[35811] \"223258_s_at\"                 \"223255_at\"                  \n",
+       "[35813] \"223257_at\"                   \"223256_at\"                  \n",
+       "[35815] \"221891_x_at\"                 \"224187_x_at\"                \n",
+       "[35817] \"224187_x_at\"                 \"224063_at\"                  \n",
+       "[35819] \"224439_x_at\"                 \"224395_s_at\"                \n",
+       "[35821] \"224394_at\"                   \"223439_at\"                  \n",
+       "[35823] \"222586_s_at\"                 \"223566_s_at\"                \n",
+       "[35825] \"223916_s_at\"                 \"223915_at\"                  \n",
+       "[35827] \"225422_at\"                   \"220670_at\"                  \n",
+       "[35829] \"225535_s_at\"                 \"224812_at\"                  \n",
+       "[35831] \"224506_s_at\"                 \"221971_x_at\"                \n",
+       "[35833] \"221850_x_at\"                 \"221865_at\"                  \n",
+       "[35835] \"221085_at\"                   \"222476_at\"                  \n",
+       "[35837] \"223328_at\"                   \"220626_at\"                  \n",
+       "[35839] \"222253_s_at\"                 \"225533_at\"                  \n",
+       "[35841] \"223152_at\"                   \"224752_at\"                  \n",
+       "[35843] \"224751_at\"                   \"220585_at\"                  \n",
+       "[35845] \"225355_at\"                   \"224379_at\"                  \n",
+       "[35847] \"223786_at\"                   \"221164_x_at\"                \n",
+       "[35849] \"223942_x_at\"                 \"222471_s_at\"                \n",
+       "[35851] \"221378_at\"                   \"222891_s_at\"                \n",
+       "[35853] \"222064_s_at\"                 \"224284_x_at\"                \n",
+       "[35855] \"223014_at\"                   \"224789_at\"                  \n",
+       "[35857] \"225106_s_at\"                 \"221090_s_at\"                \n",
+       "[35859] \"225109_at\"                   \"225110_at\"                  \n",
+       "[35861] \"222064_s_at\"                 \"225094_at\"                  \n",
+       "[35863] \"222738_at\"                   \"223343_at\"                  \n",
+       "[35865] \"223344_s_at\"                 \"224358_s_at\"                \n",
+       "[35867] \"220674_at\"                   \"223509_at\"                  \n",
+       "[35869] \"222816_s_at\"                 \"224503_s_at\"                \n",
+       "[35871] \"221868_at\"                   \"223343_at\"                  \n",
+       "[35873] \"221970_s_at\"                 \"222538_s_at\"                \n",
+       "[35875] \"221634_at\"                   \"220790_s_at\"                \n",
+       "[35877] \"225404_at\"                   \"222711_s_at\"                \n",
+       "[35879] \"225054_x_at\"                 \"225055_at\"                  \n",
+       "[35881] \"225510_at\"                   \"223017_at\"                  \n",
+       "[35883] \"224436_s_at\"                 \"221104_s_at\"                \n",
+       "[35885] \"223764_x_at\"                 \"223491_at\"                  \n",
+       "[35887] \"224552_s_at\"                 \"224461_s_at\"                \n",
+       "[35889] \"222994_at\"                   \"222025_s_at\"                \n",
+       "[35891] \"223663_at\"                   \"225380_at\"                  \n",
+       "[35893] \"222522_x_at\"                 \"224247_s_at\"                \n",
+       "[35895] \"221289_at\"                   \"222292_at\"                  \n",
+       "[35897] \"220807_at\"                   \"223883_s_at\"                \n",
+       "[35899] \"220973_s_at\"                 \"225137_at\"                  \n",
+       "[35901] \"225139_at\"                   \"225141_at\"                  \n",
+       "[35903] \"224932_at\"                   \"224509_s_at\"                \n",
+       "[35905] \"223829_at\"                   \"221016_s_at\"                \n",
+       "[35907] \"223282_at\"                   \"223283_s_at\"                \n",
+       "[35909] \"222998_at\"                   \"221385_s_at\"                \n",
+       "[35911] \"224831_at\"                   \"224829_at\"                  \n",
+       "[35913] \"224828_at\"                   \"225215_s_at\"                \n",
+       "[35915] \"225083_at\"                   \"221629_x_at\"                \n",
+       "[35917] \"221294_at\"                   \"223939_at\"                  \n",
+       "[35919] \"221808_at\"                   \"223205_s_at\"                \n",
+       "[35921] \"221089_at\"                   \"224150_s_at\"                \n",
+       "[35923] \"224625_x_at\"                 \"221100_at\"                  \n",
+       "[35925] \"223858_at\"                   \"220635_at\"                  \n",
+       "[35927] \"222494_at\"                   \"224695_at\"                  \n",
+       "[35929] \"222015_at\"                   \"221121_at\"                  \n",
+       "[35931] \"221121_at\"                   \"221130_s_at\"                \n",
+       "[35933] \"224371_at\"                   \"221641_s_at\"                \n",
+       "[35935] \"224870_at\"                   \"222545_s_at\"                \n",
+       "[35937] \"224870_at\"                   \"223156_at\"                  \n",
+       "[35939] \"222239_s_at\"                 \"223749_at\"                  \n",
+       "[35941] \"224656_s_at\"                 \"225338_at\"                  \n",
+       "[35943] \"225350_s_at\"                 \"222408_s_at\"                \n",
+       "[35945] \"225403_at\"                   \"223017_at\"                  \n",
+       "[35947] \"221620_s_at\"                 \"225137_at\"                  \n",
+       "[35949] \"225139_at\"                   \"225141_at\"                  \n",
+       "[35951] \"224006_at\"                   \"224701_at\"                  \n",
+       "[35953] \"222256_s_at\"                 \"221387_at\"                  \n",
+       "[35955] \"221592_at\"                   \"221593_s_at\"                \n",
+       "[35957] \"222256_s_at\"                 \"224462_s_at\"                \n",
+       "[35959] \"223893_at\"                   \"223870_at\"                  \n",
+       "[35961] \"221354_s_at\"                 \"223855_s_at\"                \n",
+       "[35963] \"222244_s_at\"                 \"222267_at\"                  \n",
+       "[35965] \"224101_x_at\"                 \"224913_s_at\"                \n",
+       "[35967] \"223162_s_at\"                 \"223072_s_at\"                \n",
+       "[35969] \"225414_at\"                   \"220575_at\"                  \n",
+       "[35971] \"225438_at\"                   \"225439_at\"                  \n",
+       "[35973] \"224460_s_at\"                 \"224459_at\"                  \n",
+       "[35975] \"222898_s_at\"                 \"220668_s_at\"                \n",
+       "[35977] \"222221_x_at\"                 \"223374_s_at\"                \n",
+       "[35979] \"225417_at\"                   \"223875_s_at\"                \n",
+       "[35981] \"224870_at\"                   \"224859_at\"                  \n",
+       "[35983] \"223248_at\"                   \"223315_at\"                  \n",
+       "[35985] \"222068_s_at\"                 \"223191_at\"                  \n",
+       "[35987] \"223191_at\"                   \"221080_s_at\"                \n",
+       "[35989] \"222516_at\"                   \"222517_at\"                  \n",
+       "[35991] \"224366_s_at\"                 \"224742_at\"                  \n",
+       "[35993] \"223599_at\"                   \"221876_at\"                  \n",
+       "[35995] \"225286_at\"                   \"223696_at\"                  \n",
+       "[35997] \"225280_x_at\"                 \"223695_s_at\"                \n",
+       "[35999] \"221618_s_at\"                 \"222585_x_at\"                \n",
+       "[36001] \"221044_s_at\"                 \"224175_s_at\"                \n",
+       "[36003] \"224072_s_at\"                 \"224378_x_at\"                \n",
+       "[36005] \"221381_s_at\"                 \"224416_s_at\"                \n",
+       "[36007] \"222636_at\"                   \"222635_s_at\"                \n",
+       "[36009] \"225537_at\"                   \"225272_at\"                  \n",
+       "[36011] \"225116_at\"                   \"225368_at\"                  \n",
+       "[36013] \"225097_at\"                   \"225115_at\"                  \n",
+       "[36015] \"224066_s_at\"                 \"224065_at\"                  \n",
+       "[36017] \"223529_at\"                   \"222430_s_at\"                \n",
+       "[36019] \"225038_s_at\"                 \"221341_s_at\"                \n",
+       "[36021] \"221341_s_at\"                 \"220986_s_at\"                \n",
+       "[36023] \"221444_at\"                   \"223974_at\"                  \n",
+       "[36025] \"220671_at\"                   \"222121_at\"                  \n",
+       "[36027] \"222169_x_at\"                 \"223734_at\"                  \n",
+       "[36029] \"223161_at\"                   \"223162_s_at\"                \n",
+       "[36031] \"221456_at\"                   \"224930_x_at\"                \n",
+       "[36033] \"222425_s_at\"                 \"225375_at\"                  \n",
+       "[36035] \"225374_at\"                   \"224856_at\"                  \n",
+       "[36037] \"224840_at\"                   \"224930_x_at\"                \n",
+       "[36039] \"224930_x_at\"                 \"224930_x_at\"                \n",
+       "[36041] \"225375_at\"                   \"225374_at\"                  \n",
+       "[36043] \"225375_at\"                   \"222978_at\"                  \n",
+       "[36045] \"222977_at\"                   \"222979_s_at\"                \n",
+       "[36047] \"222006_at\"                   \"225080_at\"                  \n",
+       "[36049] \"223290_at\"                   \"221440_s_at\"                \n",
+       "[36051] \"222057_at\"                   \"224048_at\"                  \n",
+       "[36053] \"223836_at\"                   \"222672_at\"                  \n",
+       "[36055] \"221728_x_at\"                 \"224590_at\"                  \n",
+       "[36057] \"225457_s_at\"                 \"225458_at\"                  \n",
+       "[36059] \"225457_s_at\"                 \"225458_at\"                  \n",
+       "[36061] \"221475_s_at\"                 \"224665_at\"                  \n",
+       "[36063] \"224664_at\"                   \"224667_x_at\"                \n",
+       "[36065] \"224089_at\"                   \"220965_s_at\"                \n",
+       "[36067] \"221075_s_at\"                 \"220623_s_at\"                \n",
+       "[36069] \"223838_at\"                   \"225136_at\"                  \n",
+       "[36071] \"221827_at\"                   \"224413_s_at\"                \n",
+       "[36073] \"223376_s_at\"                 \"221971_x_at\"                \n",
+       "[36075] \"221850_x_at\"                 \"223304_at\"                  \n",
+       "[36077] \"221327_s_at\"                 \"224484_s_at\"                \n",
+       "[36079] \"222259_s_at\"                 \"221870_at\"                  \n",
+       "[36081] \"224483_s_at\"                 \"221709_s_at\"                \n",
+       "[36083] \"222862_s_at\"                 \"220722_s_at\"                \n",
+       "[36085] \"222967_at\"                   \"225429_at\"                  \n",
+       "[36087] \"225426_at\"                   \"223203_at\"                  \n",
+       "[36089] \"221699_s_at\"                 \"221925_s_at\"                \n",
+       "[36091] \"221963_x_at\"                 \"225372_at\"                  \n",
+       "[36093] \"225373_at\"                   \"223714_at\"                  \n",
+       "[36095] \"224324_at\"                   \"224323_s_at\"                \n",
+       "[36097] \"224527_at\"                   \"225342_at\"                  \n",
+       "[36099] \"222983_s_at\"                 \"222984_at\"                  \n",
+       "[36101] \"221267_s_at\"                 \"223160_s_at\"                \n",
+       "[36103] \"223732_at\"                   \"223157_at\"                  \n",
+       "[36105] \"223069_s_at\"                 \"223068_at\"                  \n",
+       "[36107] \"222793_at\"                   \"223565_at\"                  \n",
+       "[36109] \"221286_s_at\"                 \"221998_s_at\"                \n",
+       "[36111] \"221999_at\"                   \"225205_at\"                  \n",
+       "[36113] \"225224_at\"                   \"225032_at\"                  \n",
+       "[36115] \"222693_at\"                   \"222692_s_at\"                \n",
+       "[36117] \"220979_s_at\"                 \"224724_at\"                  \n",
+       "[36119] \"221351_at\"                   \"222793_at\"                  \n",
+       "[36121] \"223508_at\"                   \"223678_s_at\"                \n",
+       "[36123] \"223543_at\"                   \"224974_at\"                  \n",
+       "[36125] \"225472_at\"                   \"225476_at\"                  \n",
+       "[36127] \"223678_s_at\"                 \"222305_at\"                  \n",
+       "[36129] \"221190_s_at\"                 \"224756_s_at\"                \n",
+       "[36131] \"220923_s_at\"                 \"223621_at\"                  \n",
+       "[36133] \"224426_s_at\"                 \"224425_x_at\"                \n",
+       "[36135] \"224424_x_at\"                 \"221613_s_at\"                \n",
+       "[36137] \"221415_s_at\"                 \"223901_at\"                  \n",
+       "[36139] \"222203_s_at\"                 \"223876_at\"                  \n",
+       "[36141] \"223901_at\"                   \"223777_at\"                  \n",
+       "[36143] \"225364_at\"                   \"223746_at\"                  \n",
+       "[36145] \"224878_at\"                   \"222203_s_at\"                \n",
+       "[36147] \"221113_s_at\"                 \"224022_x_at\"                \n",
+       "[36149] \"223061_at\"                   \"223313_s_at\"                \n",
+       "[36151] \"221261_x_at\"                 \"223313_s_at\"                \n",
+       "[36153] \"220559_at\"                   \"223313_s_at\"                \n",
+       "[36155] \"221469_at\"                   \"221406_s_at\"                \n",
+       "[36157] \"222416_at\"                   \"224468_s_at\"                \n",
+       "[36159] \"221299_at\"                   \"221249_s_at\"                \n",
+       "[36161] \"222132_s_at\"                 \"221634_at\"                  \n",
+       "[36163] \"223999_at\"                   \"222757_s_at\"                \n",
+       "[36165] \"223519_at\"                   \"223394_at\"                  \n",
+       "[36167] \"222464_s_at\"                 \"225263_at\"                  \n",
+       "[36169] \"221406_s_at\"                 \"223231_at\"                  \n",
+       "[36171] \"223507_at\"                   \"223230_at\"                  \n",
+       "[36173] \"221301_at\"                   \"222768_s_at\"                \n",
+       "[36175] \"221425_s_at\"                 \"224320_s_at\"                \n",
+       "[36177] \"224088_at\"                   \"221800_s_at\"                \n",
+       "[36179] \"225322_s_at\"                 \"222009_at\"                  \n",
+       "[36181] \"224986_s_at\"                 \"222992_s_at\"                \n",
+       "[36183] \"222588_s_at\"                 \"225384_at\"                  \n",
+       "[36185] \"223978_s_at\"                 \"225324_at\"                  \n",
+       "[36187] \"223978_s_at\"                 \"225324_at\"                  \n",
+       "[36189] \"221128_at\"                   \"223478_at\"                  \n",
+       "[36191] \"224850_at\"                   \"222136_x_at\"                \n",
+       "[36193] \"224132_at\"                   \"221778_at\"                  \n",
+       "[36195] \"225142_at\"                   \"222940_at\"                  \n",
+       "[36197] \"221438_s_at\"                 \"225201_s_at\"                \n",
+       "[36199] \"225271_at\"                   \"221220_s_at\"                \n",
+       "[36201] \"224960_at\"                   \"224961_at\"                  \n",
+       "[36203] \"221944_at\"                   \"222260_at\"                  \n",
+       "[36205] \"221199_at\"                   \"223076_s_at\"                \n",
+       "[36207] \"223163_s_at\"                 \"223467_at\"                  \n",
+       "[36209] \"224432_at\"                   \"224907_s_at\"                \n",
+       "[36211] \"222625_s_at\"                 \"220716_at\"                  \n",
+       "[36213] \"224235_at\"                   \"224740_at\"                  \n",
+       "[36215] \"221885_at\"                   \"224997_x_at\"                \n",
+       "[36217] \"221448_s_at\"                 \"221482_s_at\"                \n",
+       "[36219] \"221483_s_at\"                 \"223870_at\"                  \n",
+       "[36221] \"221817_at\"                   \"221991_at\"                  \n",
+       "[36223] \"223209_s_at\"                 \"221433_at\"                  \n",
+       "[36225] \"223055_s_at\"                 \"223057_s_at\"                \n",
+       "[36227] \"223056_s_at\"                 \"220555_s_at\"                \n",
+       "[36229] \"221752_at\"                   \"221753_at\"                  \n",
+       "[36231] \"221702_s_at\"                 \"221000_s_at\"                \n",
+       "[36233] \"222879_s_at\"                 \"223701_s_at\"                \n",
+       "[36235] \"223118_s_at\"                 \"221518_s_at\"                \n",
+       "[36237] \"223119_s_at\"                 \"223117_s_at\"                \n",
+       "[36239] \"221126_at\"                   \"221127_s_at\"                \n",
+       "[36241] \"225526_at\"                   \"225515_s_at\"                \n",
+       "[36243] \"223789_s_at\"                 \"221050_s_at\"                \n",
+       "[36245] \"223788_at\"                   \"221810_at\"                  \n",
+       "[36247] \"221358_at\"                   \"221125_s_at\"                \n",
+       "[36249] \"221125_s_at\"                 \"222253_s_at\"                \n",
+       "[36251] \"224497_x_at\"                 \"224494_x_at\"                \n",
+       "[36253] \"223457_at\"                   \"222674_at\"                  \n",
+       "[36255] \"223516_s_at\"                 \"220625_s_at\"                \n",
+       "[36257] \"220624_s_at\"                 \"225307_at\"                  \n",
+       "[36259] \"220960_x_at\"                 \"221775_x_at\"                \n",
+       "[36261] \"222674_at\"                   \"223140_s_at\"                \n",
+       "[36263] \"223139_s_at\"                 \"223138_s_at\"                \n",
+       "[36265] \"221376_at\"                   \"222355_at\"                  \n",
+       "[36267] \"220761_s_at\"                 \"222929_at\"                  \n",
+       "[36269] \"221941_at\"                   \"224053_s_at\"                \n",
+       "[36271] \"221634_at\"                   \"221634_at\"                  \n",
+       "[36273] \"224624_at\"                   \"223628_at\"                  \n",
+       "[36275] \"223628_at\"                   \"222048_at\"                  \n",
+       "[36277] \"221197_s_at\"                 \"225343_at\"                  \n",
+       "[36279] \"225193_at\"                   \"224252_s_at\"                \n",
+       "[36281] \"223602_at\"                   \"223628_at\"                  \n",
+       "[36283] \"221553_at\"                   \"224899_s_at\"                \n",
+       "[36285] \"221884_at\"                   \"225419_at\"                  \n",
+       "[36287] \"220886_at\"                   \"222465_at\"                  \n",
+       "[36289] \"222274_at\"                   \"221288_at\"                  \n",
+       "[36291] \"220755_s_at\"                 \"220755_s_at\"                \n",
+       "[36293] \"224715_at\"                   \"220632_s_at\"                \n",
+       "[36295] \"223036_at\"                   \"223035_s_at\"                \n",
+       "[36297] \"225495_x_at\"                 \"224936_at\"                  \n",
+       "[36299] \"224935_at\"                   \"225294_s_at\"                \n",
+       "[36301] \"222070_at\"                   \"224325_at\"                  \n",
+       "[36303] \"224431_s_at\"                 \"224826_at\"                  \n",
+       "[36305] \"224835_at\"                   \"221866_at\"                  \n",
+       "[36307] \"223058_at\"                   \"223059_s_at\"                \n",
+       "[36309] \"225389_at\"                   \"223340_at\"                  \n",
+       "[36311] \"222369_at\"                   \"224782_at\"                  \n",
+       "[36313] \"224212_s_at\"                 \"223435_s_at\"                \n",
+       "[36315] \"223284_at\"                   \"224548_at\"                  \n",
+       "[36317] \"224212_s_at\"                 \"223435_s_at\"                \n",
+       "[36319] \"220686_s_at\"                 \"224212_s_at\"                \n",
+       "[36321] \"223435_s_at\"                 \"224212_s_at\"                \n",
+       "[36323] \"223435_s_at\"                 \"224611_s_at\"                \n",
+       "[36325] \"224612_s_at\"                 \"224613_s_at\"                \n",
+       "[36327] \"224212_s_at\"                 \"223435_s_at\"                \n",
+       "[36329] \"223610_at\"                   \"224212_s_at\"                \n",
+       "[36331] \"223435_s_at\"                 \"224442_at\"                  \n",
+       "[36333] \"225501_at\"                   \"225390_s_at\"                \n",
+       "[36335] \"224212_s_at\"                 \"223435_s_at\"                \n",
+       "[36337] \"224212_s_at\"                 \"223435_s_at\"                \n",
+       "[36339] \"221869_at\"                   \"224212_s_at\"                \n",
+       "[36341] \"223435_s_at\"                 \"220748_s_at\"                \n",
+       "[36343] \"223389_s_at\"                 \"224212_s_at\"                \n",
+       "[36345] \"223435_s_at\"                 \"221141_x_at\"                \n",
+       "[36347] \"223872_at\"                   \"224212_s_at\"                \n",
+       "[36349] \"223435_s_at\"                 \"223494_at\"                  \n",
+       "[36351] \"224496_s_at\"                 \"224495_at\"                  \n",
+       "[36353] \"224212_s_at\"                 \"223435_s_at\"                \n",
+       "[36355] \"223872_at\"                   \"224496_s_at\"                \n",
+       "[36357] \"224495_at\"                   \"222882_s_at\"                \n",
+       "[36359] \"225362_at\"                   \"225361_x_at\"                \n",
+       "[36361] \"222673_x_at\"                 \"222853_at\"                  \n",
+       "[36363] \"222665_at\"                   \"224539_s_at\"                \n",
+       "[36365] \"224212_s_at\"                 \"223435_s_at\"                \n",
+       "[36367] \"221303_at\"                   \"220659_s_at\"                \n",
+       "[36369] \"221321_s_at\"                 \"223727_at\"                  \n",
+       "[36371] \"220954_s_at\"                 \"225321_s_at\"                \n",
+       "[36373] \"222183_x_at\"                 \"224848_at\"                  \n",
+       "[36375] \"224851_at\"                   \"224847_at\"                  \n",
+       "[36377] \"223290_at\"                   \"222956_at\"                  \n",
+       "[36379] \"222959_at\"                   \"222514_at\"                  \n",
+       "[36381] \"223575_at\"                   \"223554_s_at\"                \n",
+       "[36383] \"221360_s_at\"                 \"224554_at\"                  \n",
+       "[36385] \"225222_at\"                   \"223295_s_at\"                \n",
+       "[36387] \"223546_x_at\"                 \"223733_s_at\"                \n",
+       "[36389] \"223497_at\"                   \"221233_s_at\"                \n",
+       "[36391] \"221320_at\"                   \"223009_at\"                  \n",
+       "[36393] \"223733_s_at\"                 \"220685_at\"                  \n",
+       "[36395] \"224707_at\"                   \"221684_s_at\"                \n",
+       "[36397] \"220629_at\"                   \"221986_s_at\"                \n",
+       "[36399] \"221985_at\"                   \"221392_at\"                  \n",
+       "[36401] \"223620_at\"                   \"223164_at\"                  \n",
+       "[36403] \"224221_s_at\"                 \"222822_s_at\"                \n",
+       "[36405] \"222035_s_at\"                 \"223516_s_at\"                \n",
+       "[36407] \"223484_at\"                   \"221971_x_at\"                \n",
+       "[36409] \"221850_x_at\"                 \"223503_at\"                  \n",
+       "[36411] \"221971_x_at\"                 \"221850_x_at\"                \n",
+       "[36413] \"222205_x_at\"                 \"221971_x_at\"                \n",
+       "[36415] \"221850_x_at\"                 \"221312_at\"                  \n",
+       "[36417] \"220547_s_at\"                 \"220683_at\"                  \n",
+       "[36419] \"224377_s_at\"                 \"224787_s_at\"                \n",
+       "[36421] \"223336_s_at\"                 \"223950_s_at\"                \n",
+       "[36423] \"221675_s_at\"                 \"221649_s_at\"                \n",
+       "[36425] \"221097_s_at\"                 \"223355_at\"                  \n",
+       "[36427] \"223210_at\"                   \"222917_s_at\"                \n",
+       "[36429] \"225424_at\"                   \"225420_at\"                  \n",
+       "[36431] \"221874_at\"                   \"221603_at\"                  \n",
+       "[36433] \"221604_s_at\"                 \"222681_at\"                  \n",
+       "[36435] \"223845_at\"                   \"222553_x_at\"                \n",
+       "[36437] \"223879_s_at\"                 \"223743_s_at\"                \n",
+       "[36439] \"223742_at\"                   \"220780_at\"                  \n",
+       "[36441] \"224750_at\"                   \"223262_s_at\"                \n",
+       "[36443] \"223263_s_at\"                 \"224533_s_at\"                \n",
+       "[36445] \"223425_at\"                   \"220751_s_at\"                \n",
+       "[36447] \"221756_at\"                   \"221757_at\"                  \n",
+       "[36449] \"221087_s_at\"                 \"225520_at\"                  \n",
+       "[36451] \"223221_at\"                   \"223589_at\"                  \n",
+       "[36453] \"221839_s_at\"                 \"223401_at\"                  \n",
+       "[36455] \"220606_s_at\"                 \"223153_x_at\"                \n",
+       "[36457] \"221196_x_at\"                 \"224653_at\"                  \n",
+       "[36459] \"224645_at\"                   \"221693_s_at\"                \n",
+       "[36461] \"222883_at\"                   \"220689_at\"                  \n",
+       "[36463] \"225212_at\"                   \"221342_at\"                  \n",
+       "[36465] \"221929_at\"                   \"221489_s_at\"                \n",
+       "[36467] \"222751_at\"                   \"222592_s_at\"                \n",
+       "[36469] \"222269_at\"                   \"225331_at\"                  \n",
+       "[36471] \"223680_at\"                   \"224135_at\"                  \n",
+       "[36473] \"223385_at\"                   \"223396_at\"                  \n",
+       "[36475] \"221534_at\"                   \"222659_at\"                  \n",
+       "[36477] \"223362_s_at\"                 \"225257_at\"                  \n",
+       "[36479] \"225254_at\"                   \"223682_s_at\"                \n",
+       "[36481] \"222235_s_at\"                 \"222436_s_at\"                \n",
+       "[36483] \"221096_s_at\"                 \"222976_s_at\"                \n",
+       "[36485] \"223028_s_at\"                 \"223027_at\"                  \n",
+       "[36487] \"223433_at\"                   \"224880_at\"                  \n",
+       "[36489] \"225371_at\"                   \"223635_s_at\"                \n",
+       "[36491] \"223203_at\"                   \"221261_x_at\"                \n",
+       "[36493] \"223313_s_at\"                 \"223905_at\"                  \n",
+       "[36495] \"220964_s_at\"                 \"222470_s_at\"                \n",
+       "[36497] \"220816_at\"                   \"220815_at\"                  \n",
+       "[36499] \"221490_at\"                   \"222878_s_at\"                \n",
+       "[36501] \"225217_s_at\"                 \"225069_at\"                  \n",
+       "[36503] \"223721_s_at\"                 \"223722_at\"                  \n",
+       "[36505] \"223626_x_at\"                 \"221062_at\"                  \n",
+       "[36507] \"220673_s_at\"                 \"220672_at\"                  \n",
+       "[36509] \"224508_at\"                   \"224507_s_at\"                \n",
+       "[36511] \"220652_at\"                   \"221903_s_at\"                \n",
+       "[36513] \"222142_at\"                   \"221905_at\"                  \n",
+       "[36515] \"223473_at\"                   \"224225_s_at\"                \n",
+       "[36517] \"221680_s_at\"                 \"224451_x_at\"                \n",
+       "[36519] \"221140_s_at\"                 \"223887_at\"                  \n",
+       "[36521] \"223469_at\"                   \"221971_x_at\"                \n",
+       "[36523] \"221850_x_at\"                 \"223226_x_at\"                \n",
+       "[36525] \"220557_s_at\"                 \"224658_x_at\"                \n",
+       "[36527] \"224967_at\"                   \"221765_at\"                  \n",
+       "[36529] \"221894_at\"                   \"221893_s_at\"                \n",
+       "[36531] \"222117_s_at\"                 \"225099_at\"                  \n",
+       "[36533] \"225100_at\"                   \"221010_s_at\"                \n",
+       "[36535] \"222240_s_at\"                 \"222570_at\"                  \n",
+       "[36537] \"222090_at\"                   \"223894_s_at\"                \n",
+       "[36539] \"221187_s_at\"                 \"220637_at\"                  \n",
+       "[36541] \"221203_s_at\"                 \"225083_at\"                  \n",
+       "[36543] \"222571_at\"                   \"221621_at\"                  \n",
+       "[36545] \"222523_at\"                   \"221495_s_at\"                \n",
+       "[36547] \"221569_at\"                   \"220841_s_at\"                \n",
+       "[36549] \"220842_at\"                   \"223449_at\"                  \n",
+       "[36551] \"224260_at\"                   \"220715_at\"                  \n",
+       "[36553] \"224836_at\"                   \"224519_at\"                  \n",
+       "[36555] \"221835_at\"                   \"223198_x_at\"                \n",
+       "[36557] \"223819_x_at\"                 \"224387_at\"                  \n",
+       "[36559] \"222888_at\"                   \"222234_s_at\"                \n",
+       "[36561] \"221565_s_at\"                 \"221713_s_at\"                \n",
+       "[36563] \"220795_s_at\"                 \"221610_s_at\"                \n",
+       "[36565] \"223986_x_at\"                 \"223704_s_at\"                \n",
+       "[36567] \"223989_s_at\"                 \"223474_at\"                  \n",
+       "[36569] \"224982_at\"                   \"224212_s_at\"                \n",
+       "[36571] \"223435_s_at\"                 \"222398_s_at\"                \n",
+       "[36573] \"222397_at\"                   \"221939_at\"                  \n",
+       "[36575] \"220645_at\"                   \"223912_s_at\"                \n",
+       "[36577] \"222874_s_at\"                 \"224615_x_at\"                \n",
+       "[36579] \"220977_x_at\"                 \"224950_at\"                  \n",
+       "[36581] \"224937_at\"                   \"224745_x_at\"                \n",
+       "[36583] \"225129_at\"                   \"222583_s_at\"                \n",
+       "[36585] \"221240_s_at\"                 \"223302_s_at\"                \n",
+       "[36587] \"222039_at\"                   \"223440_at\"                  \n",
+       "[36589] \"220601_at\"                   \"224944_at\"                  \n",
+       "[36591] \"221879_at\"                   \"223024_at\"                  \n",
+       "[36593] \"223025_s_at\"                 \"223820_at\"                  \n",
+       "[36595] \"223144_s_at\"                 \"223143_s_at\"                \n",
+       "[36597] \"223145_s_at\"                 \"220982_s_at\"                \n",
+       "[36599] \"224417_at\"                   \"223867_at\"                  \n",
+       "[36601] \"221213_s_at\"                 \"223471_at\"                  \n",
+       "[36603] \"225422_at\"                   \"224777_s_at\"                \n",
+       "[36605] \"222857_s_at\"                 \"221597_s_at\"                \n",
+       "[36607] \"222985_at\"                   \"224363_at\"                  \n",
+       "[36609] \"222746_s_at\"                 \"221957_at\"                  \n",
+       "[36611] \"221256_s_at\"                 \"221320_at\"                  \n",
+       "[36613] \"222444_at\"                   \"220650_s_at\"                \n",
+       "[36615] \"223639_s_at\"                 \"224594_x_at\"                \n",
+       "[36617] \"223791_at\"                   \"222096_x_at\"                \n",
+       "[36619] \"223791_at\"                   \"223639_s_at\"                \n",
+       "[36621] \"225308_s_at\"                 \"223877_at\"                  \n",
+       "[36623] \"225105_at\"                   \"221942_s_at\"                \n",
+       "[36625] \"221627_at\"                   \"222304_x_at\"                \n",
+       "[36627] \"223557_s_at\"                 \"224792_at\"                  \n",
+       "[36629] \"221979_at\"                   \"224764_at\"                  \n",
+       "[36631] \"220811_at\"                   \"221148_at\"                  \n",
+       "[36633] \"221501_x_at\"                 \"223372_at\"                  \n",
+       "[36635] \"224464_s_at\"                 \"223371_s_at\"                \n",
+       "[36637] \"223333_s_at\"                 \"221009_s_at\"                \n",
+       "[36639] \"221266_s_at\"                 \"223397_s_at\"                \n",
+       "[36641] \"223464_at\"                   \"224385_s_at\"                \n",
+       "[36643] \"221763_at\"                   \"224933_s_at\"                \n",
+       "[36645] \"224307_x_at\"                 \"221549_at\"                  \n",
+       "[36647] \"220776_at\"                   \"220776_at\"                  \n",
+       "[36649] \"222515_x_at\"                 \"220730_at\"                  \n",
+       "[36651] \"221853_s_at\"                 \"221852_at\"                  \n",
+       "[36653] \"220998_s_at\"                 \"222958_s_at\"                \n",
+       "[36655] \"222070_at\"                   \"224575_at\"                  \n",
+       "[36657] \"220849_at\"                   \"222976_s_at\"                \n",
+       "[36659] \"224486_s_at\"                 \"223725_at\"                  \n",
+       "[36661] \"221959_at\"                   \"223862_at\"                  \n",
+       "[36663] \"222184_at\"                   \"225463_x_at\"                \n",
+       "[36665] \"223531_x_at\"                 \"222140_s_at\"                \n",
+       "[36667] \"220642_x_at\"                 \"225003_at\"                  \n",
+       "[36669] \"223603_at\"                   \"223700_at\"                  \n",
+       "[36671] \"222383_s_at\"                 \"224927_at\"                  \n",
+       "[36673] \"224927_at\"                   \"221797_at\"                  \n",
+       "[36675] \"220980_s_at\"                 \"224455_s_at\"                \n",
+       "[36677] \"225315_at\"                   \"223754_at\"                  \n",
+       "[36679] \"222125_s_at\"                 \"223042_s_at\"                \n",
+       "[36681] \"221686_s_at\"                 \"225002_s_at\"                \n",
+       "[36683] \"223583_at\"                   \"222258_s_at\"                \n",
+       "[36685] \"221934_s_at\"                 \"225025_at\"                  \n",
+       "[36687] \"223194_s_at\"                 \"223512_at\"                  \n",
+       "[36689] \"220840_s_at\"                 \"221162_at\"                  \n",
+       "[36691] \"222475_at\"                   \"225203_at\"                  \n",
+       "[36693] \"225146_at\"                   \"221971_x_at\"                \n",
+       "[36695] \"221850_x_at\"                 \"221271_at\"                  \n",
+       "[36697] \"224875_at\"                   \"224876_at\"                  \n",
+       "[36699] \"221004_s_at\"                 \"225484_at\"                  \n",
+       "[36701] \"225485_at\"                   \"221066_at\"                  \n",
+       "[36703] \"221644_s_at\"                 \"222778_s_at\"                \n",
+       "[36705] \"222777_s_at\"                 \"223472_at\"                  \n",
+       "[36707] \"222195_s_at\"                 \"220988_s_at\"                \n",
+       "[36709] \"222166_at\"                   \"225356_at\"                  \n",
+       "[36711] \"221044_s_at\"                 \"224175_s_at\"                \n",
+       "[36713] \"222391_at\"                   \"225235_at\"                  \n",
+       "[36715] \"223470_at\"                   \"225103_at\"                  \n",
+       "[36717] \"224532_at\"                   \"222109_at\"                  \n",
+       "[36719] \"225295_at\"                   \"225103_at\"                  \n",
+       "[36721] \"221691_x_at\"                 \"221923_s_at\"                \n",
+       "[36723] \"223963_s_at\"                 \"224607_s_at\"                \n",
+       "[36725] \"223349_s_at\"                 \"224946_s_at\"                \n",
+       "[36727] \"225087_at\"                   \"225088_at\"                  \n",
+       "[36729] \"221466_at\"                   \"220797_at\"                  \n",
+       "[36731] \"225500_x_at\"                 \"222120_at\"                  \n",
+       "[36733] \"223805_at\"                   \"223713_at\"                  \n",
+       "[36735] \"221227_x_at\"                 \"223515_s_at\"                \n",
+       "[36737] \"225507_at\"                   \"224441_s_at\"                \n",
+       "[36739] \"223037_at\"                   \"222199_s_at\"                \n",
+       "[36741] \"223268_at\"                   \"220542_s_at\"                \n",
+       "[36743] \"223691_at\"                   \"224281_s_at\"                \n",
+       "[36745] \"224281_s_at\"                 \"222568_at\"                  \n",
+       "[36747] \"222569_at\"                   \"222349_x_at\"                \n",
+       "[36749] \"224660_at\"                   \"224661_at\"                  \n",
+       "[36751] \"224922_at\"                   \"224660_at\"                  \n",
+       "[36753] \"224661_at\"                   \"221021_s_at\"                \n",
+       "[36755] \"223204_at\"                   \"223312_at\"                  \n",
+       "[36757] \"225238_at\"                   \"225233_at\"                  \n",
+       "[36759] \"225237_s_at\"                 \"225240_s_at\"                \n",
+       "[36761] \"221713_s_at\"                 \"224543_at\"                  \n",
+       "[36763] \"220630_s_at\"                 \"225024_at\"                  \n",
+       "[36765] \"223367_at\"                   \"220552_at\"                  \n",
+       "[36767] \"222630_at\"                   \"223010_s_at\"                \n",
+       "[36769] \"223011_s_at\"                 \"224794_s_at\"                \n",
+       "[36771] \"225494_at\"                   \"224189_x_at\"                \n",
+       "[36773] \"222932_at\"                   \"220545_s_at\"                \n",
+       "[36775] \"220544_at\"                   \"225007_at\"                  \n",
+       "[36777] \"221638_s_at\"                 \"221499_s_at\"                \n",
+       "[36779] \"221500_s_at\"                 \"223451_s_at\"                \n",
+       "[36781] \"221058_s_at\"                 \"221895_at\"                  \n",
+       "[36783] \"221929_at\"                   \"223451_s_at\"                \n",
+       "[36785] \"221058_s_at\"                 \"223662_x_at\"                \n",
+       "[36787] \"224733_at\"                   \"225253_s_at\"                \n",
+       "[36789] \"221079_s_at\"                 \"222276_at\"                  \n",
+       "[36791] \"222026_at\"                   \"225430_at\"                  \n",
+       "[36793] \"223342_at\"                   \"225320_at\"                  \n",
+       "[36795] \"222228_s_at\"                 \"224078_at\"                  \n",
+       "[36797] \"223073_at\"                   \"222026_at\"                  \n",
+       "[36799] \"222138_s_at\"                 \"220742_s_at\"                \n",
+       "[36801] \"225009_at\"                   \"224998_at\"                  \n",
+       "[36803] \"223114_at\"                   \"223114_at\"                  \n",
+       "[36805] \"225266_at\"                   \"221795_at\"                  \n",
+       "[36807] \"221796_at\"                   \"223012_at\"                  \n",
+       "[36809] \"220757_s_at\"                 \"223381_at\"                  \n",
+       "[36811] \"223252_at\"                   \"224124_at\"                  \n",
+       "[36813] \"220981_x_at\"                 \"220616_at\"                  \n",
+       "[36815] \"220792_at\"                   \"223249_at\"                  \n",
+       "[36817] \"223207_x_at\"                 \"224709_s_at\"                \n",
+       "[36819] \"223796_at\"                   \"222785_x_at\"                \n",
+       "[36821] \"223828_s_at\"                 \"223897_at\"                  \n",
+       "[36823] \"222154_s_at\"                 \"221563_at\"                  \n",
+       "[36825] \"221122_at\"                   \"224893_at\"                  \n",
+       "[36827] \"223452_s_at\"                 \"223453_s_at\"                \n",
+       "[36829] \"223793_at\"                   \"225502_at\"                  \n",
+       "[36831] \"224564_s_at\"                 \"224111_x_at\"                \n",
+       "[36833] \"221267_s_at\"                 \"221573_at\"                  \n",
+       "[36835] \"221557_s_at\"                 \"221558_s_at\"                \n",
+       "[36837] \"225260_s_at\"                 \"221879_at\"                  \n",
+       "[36839] \"225159_s_at\"                 \"224242_at\"                  \n",
+       "[36841] \"224584_at\"                   \"222250_s_at\"                \n",
+       "[36843] \"224654_at\"                   \"220695_at\"                  \n",
+       "[36845] \"225327_at\"                   \"224430_s_at\"                \n",
+       "[36847] \"222014_x_at\"                 \"224329_s_at\"                \n",
+       "[36849] \"224719_s_at\"                 \"224719_s_at\"                \n",
+       "[36851] \"223148_at\"                   \"221198_at\"                  \n",
+       "[36853] \"222455_s_at\"                 \"222454_s_at\"                \n",
+       "[36855] \"220867_s_at\"                 \"221688_s_at\"                \n",
+       "[36857] \"222903_s_at\"                 \"222870_s_at\"                \n",
+       "[36859] \"223825_at\"                   \"223826_s_at\"                \n",
+       "[36861] \"220570_at\"                   \"220934_s_at\"                \n",
+       "[36863] \"220934_s_at\"                 \"222881_at\"                  \n",
+       "[36865] \"225120_at\"                   \"222429_at\"                  \n",
+       "[36867] \"220832_at\"                   \"220584_at\"                  \n",
+       "[36869] \"224721_at\"                   \"222657_s_at\"                \n",
+       "[36871] \"222656_at\"                   \"224610_at\"                  \n",
+       "[36873] \"222603_at\"                   \"222499_at\"                  \n",
+       "[36875] \"224868_at\"                   \"224858_at\"                  \n",
+       "[36877] \"223169_s_at\"                 \"223168_at\"                  \n",
+       "[36879] \"224710_at\"                   \"225249_at\"                  \n",
+       "[36881] \"225248_at\"                   \"220647_s_at\"                \n",
+       "[36883] \"223812_at\"                   \"221904_at\"                  \n",
+       "[36885] \"222238_s_at\"                 \"224453_s_at\"                \n",
+       "[36887] \"224454_at\"                   \"222262_s_at\"                \n",
+       "[36889] \"225290_at\"                   \"220860_at\"                  \n",
+       "[36891] \"222238_s_at\"                 \"224183_at\"                  \n",
+       "[36893] \"225524_at\"                   \"221737_at\"                  \n",
+       "[36895] \"224681_at\"                   \"221730_at\"                  \n",
+       "[36897] \"221729_at\"                   \"222554_s_at\"                \n",
+       "[36899] \"222499_at\"                   \"221581_s_at\"                \n",
+       "[36901] \"222606_at\"                   \"222680_s_at\"                \n",
+       "[36903] \"225497_at\"                   \"220992_s_at\"                \n",
+       "[36905] \"223404_s_at\"                 \"223214_s_at\"                \n",
+       "[36907] \"223213_s_at\"                 \"223753_s_at\"                \n",
+       "[36909] \"221273_s_at\"                 \"221561_at\"                  \n",
+       "[36911] \"222708_s_at\"                 \"222750_s_at\"                \n",
+       "[36913] \"222750_s_at\"                 \"222631_at\"                  \n",
+       "[36915] \"220935_s_at\"                 \"220581_at\"                  \n",
+       "[36917] \"221384_at\"                   \"222158_s_at\"                \n",
+       "[36919] \"221166_at\"                   \"221754_s_at\"                \n",
+       "[36921] \"221896_s_at\"                 \"223886_s_at\"                \n",
+       "[36923] \"221430_s_at\"                 \"224914_s_at\"                \n",
+       "[36925] \"223373_s_at\"                 \"221027_s_at\"                \n",
+       "[36927] \"223373_s_at\"                 \"221027_s_at\"                \n",
+       "[36929] \"224914_s_at\"                 \"224257_s_at\"                \n",
+       "[36931] \"223990_at\"                   \"222041_at\"                  \n",
+       "[36933] \"221344_at\"                   \"222149_x_at\"                \n",
+       "[36935] \"221431_s_at\"                 \"222461_s_at\"                \n",
+       "[36937] \"221971_x_at\"                 \"221850_x_at\"                \n",
+       "[36939] \"222157_s_at\"                 \"221735_at\"                  \n",
+       "[36941] \"222645_s_at\"                 \"222041_at\"                  \n",
+       "[36943] \"224817_at\"                   \"223651_x_at\"                \n",
+       "[36945] \"222333_at\"                   \"223264_at\"                  \n",
+       "[36947] \"223962_at\"                   \"222844_s_at\"                \n",
+       "[36949] \"224813_at\"                   \"224332_s_at\"                \n",
+       "[36951] \"221987_s_at\"                 \"225311_at\"                  \n",
+       "[36953] \"223341_s_at\"                 \"224786_at\"                  \n",
+       "[36955] \"224434_s_at\"                 \"223717_s_at\"                \n",
+       "[36957] \"223718_at\"                   \"222257_s_at\"                \n",
+       "[36959] \"225187_at\"                   \"222307_at\"                  \n",
+       "[36961] \"223419_at\"                   \"223003_at\"                  \n",
+       "[36963] \"225455_at\"                   \"222029_x_at\"                \n",
+       "[36965] \"222019_at\"                   \"222029_x_at\"                \n",
+       "[36967] \"222019_at\"                   \"221236_s_at\"                \n",
+       "[36969] \"222682_s_at\"                 \"223548_at\"                  \n",
+       "[36971] \"224264_x_at\"                 \"224268_x_at\"                \n",
+       "[36973] \"224263_x_at\"                 \"224267_x_at\"                \n",
+       "[36975] \"224265_s_at\"                 \"221662_s_at\"                \n",
+       "[36977] \"220554_at\"                   \"221661_at\"                  \n",
+       "[36979] \"221018_s_at\"                 \"224846_at\"                  \n",
+       "[36981] \"224473_x_at\"                 \"223856_at\"                  \n",
+       "[36983] \"222624_s_at\"                 \"222623_s_at\"                \n",
+       "[36985] \"222838_at\"                   \"223779_at\"                  \n",
+       "[36987] \"223436_s_at\"                 \"224070_at\"                  \n",
+       "[36989] \"224626_at\"                   \"222286_at\"                  \n",
+       "[36991] \"223809_at\"                   \"224683_at\"                  \n",
+       "[36993] \"223994_s_at\"                 \"223995_at\"                  \n",
+       "[36995] \"220910_at\"                   \"221488_s_at\"                \n",
+       "[36997] \"223488_s_at\"                 \"223487_x_at\"                \n",
+       "[36999] \"220684_at\"                   \"224671_at\"                  \n",
+       "[37001] \"222720_x_at\"                 \"225273_at\"                  \n",
+       "[37003] \"224059_s_at\"                 \"223325_at\"                  \n",
+       "[37005] \"225513_at\"                   \"221681_s_at\"                \n",
+       "[37007] \"224643_at\"                   \"221734_at\"                  \n",
+       "[37009] \"223206_s_at\"                 \"222047_s_at\"                \n",
+       "[37011] \"222046_at\"                   \"222935_x_at\"                \n",
+       "[37013] \"223485_at\"                   \"224776_at\"                  \n",
+       "[37015] \"222376_at\"                   \"220594_at\"                  \n",
+       "[37017] \"223480_s_at\"                 \"222643_s_at\"                \n",
+       "[37019] \"220738_s_at\"                 \"222643_s_at\"                \n",
+       "[37021] \"223991_s_at\"                 \"223200_s_at\"                \n",
+       "[37023] \"221536_s_at\"                 \"221535_at\"                  \n",
+       "[37025] \"224556_s_at\"                 \"223755_at\"                  \n",
+       "[37027] \"223082_at\"                   \"223966_at\"                  \n",
+       "[37029] \"225060_at\"                   \"225060_at\"                  \n",
+       "[37031] \"223511_at\"                   \"221291_at\"                  \n",
+       "[37033] \"222442_s_at\"                 \"221497_x_at\"                \n",
+       "[37035] \"224314_s_at\"                 \"223046_at\"                  \n",
+       "[37037] \"223045_at\"                   \"224452_s_at\"                \n",
+       "[37039] \"225101_s_at\"                 \"223390_at\"                  \n",
+       "[37041] \"221946_at\"                   \"224029_x_at\"                \n",
+       "[37043] \"220791_x_at\"                 \"220959_s_at\"                \n",
+       "[37045] \"220848_x_at\"                 \"225277_at\"                  \n",
+       "[37047] \"223640_at\"                   \"221287_at\"                  \n",
+       "[37049] \"222012_at\"                   \"225300_at\"                  \n",
+       "[37051] \"221540_x_at\"                 \"223758_s_at\"                \n",
+       "[37053] \"222062_at\"                   \"222702_x_at\"                \n",
+       "[37055] \"223808_s_at\"                 \"221305_s_at\"                \n",
+       "[37057] \"223808_s_at\"                 \"220996_s_at\"                \n",
+       "[37059] \"223765_s_at\"                 \"223708_at\"                  \n",
+       "[37061] \"220603_s_at\"                 \"223289_s_at\"                \n",
+       "[37063] \"223288_at\"                   \"222922_at\"                  \n",
+       "[37065] \"222923_s_at\"                 \"224928_at\"                  \n",
+       "[37067] \"222222_s_at\"                 \"225155_at\"                  \n",
+       "[37069] \"221497_x_at\"                 \"223046_at\"                  \n",
+       "[37071] \"225152_at\"                   \"222549_at\"                  \n",
+       "[37073] \"222222_s_at\"                 \"225155_at\"                  \n",
+       "[37075] \"222396_at\"                   \"222184_at\"                  \n",
+       "[37077] \"221527_s_at\"                 \"221280_s_at\"                \n",
+       "[37079] \"221526_x_at\"                 \"222104_x_at\"                \n",
+       "[37081] \"221020_s_at\"                 \"220943_s_at\"                \n",
+       "[37083] \"223560_s_at\"                 \"221327_s_at\"                \n",
+       "[37085] \"220922_s_at\"                 \"224032_x_at\"                \n",
+       "[37087] \"220981_x_at\"                 \"222149_x_at\"                \n",
+       "[37089] \"224677_x_at\"                 \"222565_s_at\"                \n",
+       "[37091] \"222509_s_at\"                 \"222215_at\"                  \n",
+       "[37093] \"223917_s_at\"                 \"222944_s_at\"                \n",
+       "[37095] \"221324_at\"                   \"223553_s_at\"                \n",
+       "[37097] \"221656_s_at\"                 \"225186_at\"                  \n",
+       "[37099] \"225189_s_at\"                 \"225188_at\"                  \n",
+       "[37101] \"222835_at\"                   \"222467_s_at\"                \n",
+       "[37103] \"221825_at\"                   \"221826_at\"                  \n",
+       "[37105] \"223222_at\"                   \"221667_s_at\"                \n",
+       "[37107] \"223597_at\"                   \"220709_at\"                  \n",
+       "[37109] \"222770_s_at\"                 \"221265_s_at\"                \n",
+       "[37111] \"223049_at\"                   \"224819_at\"                  \n",
+       "[37113] \"221251_x_at\"                 \"222093_s_at\"                \n",
+       "[37115] \"224367_at\"                   \"221251_x_at\"                \n",
+       "[37117] \"223072_s_at\"                 \"222093_s_at\"                \n",
+       "[37119] \"223072_s_at\"                 \"223466_x_at\"                \n",
+       "[37121] \"223465_at\"                   \"224476_s_at\"                \n",
+       "[37123] \"225523_at\"                   \"225523_at\"                  \n",
+       "[37125] \"223864_at\"                   \"224609_at\"                  \n",
+       "[37127] \"225175_s_at\"                 \"221971_x_at\"                \n",
+       "[37129] \"221850_x_at\"                 \"225035_x_at\"                \n",
+       "[37131] \"225035_x_at\"                 \"225035_x_at\"                \n",
+       "[37133] \"225035_x_at\"                 \"222743_s_at\"                \n",
+       "[37135] \"221270_s_at\"                 \"221683_s_at\"                \n",
+       "[37137] \"222825_at\"                   \"221177_at\"                  \n",
+       "[37139] \"225078_at\"                   \"225079_at\"                  \n",
+       "[37141] \"222118_at\"                   \"223158_s_at\"                \n",
+       "[37143] \"223159_s_at\"                 \"224169_at\"                  \n",
+       "[37145] \"223570_at\"                   \"220651_s_at\"                \n",
+       "[37147] \"222962_s_at\"                 \"222906_at\"                  \n",
+       "[37149] \"223384_s_at\"                 \"224159_x_at\"                \n",
+       "[37151] \"221453_at\"                   \"224228_s_at\"                \n",
+       "[37153] \"223683_at\"                   \"223627_at\"                  \n",
+       "[37155] \"222036_s_at\"                 \"222037_at\"                  \n",
+       "[37157] \"221296_at\"                   \"221296_at\"                  \n",
+       "[37159] \"220716_at\"                   \"221634_at\"                  \n",
+       "[37161] \"223898_at\"                   \"221761_at\"                  \n",
+       "[37163] \"222412_s_at\"                 \"222411_s_at\"                \n",
+       "[37165] \"224887_at\"                   \"221339_at\"                  \n",
+       "[37167] \"221188_s_at\"                 \"221451_s_at\"                \n",
+       "[37169] \"222016_s_at\"                 \"221135_s_at\"                \n",
+       "[37171] \"225434_at\"                   \"224965_at\"                  \n",
+       "[37173] \"224964_s_at\"                 \"225317_at\"                  \n",
+       "[37175] \"225317_at\"                   \"223785_at\"                  \n",
+       "[37177] \"220834_at\"                   \"224357_s_at\"                \n",
+       "[37179] \"225125_at\"                   \"222775_s_at\"                \n",
+       "[37181] \"225255_at\"                   \"220778_x_at\"                \n",
+       "[37183] \"223567_at\"                   \"224182_x_at\"                \n",
+       "[37185] \"221068_at\"                   \"222829_s_at\"                \n",
+       "[37187] \"222581_at\"                   \"222805_at\"                  \n",
+       "[37189] \"225101_s_at\"                 \"224780_at\"                  \n",
+       "[37191] \"224781_s_at\"                 \"224012_at\"                  \n",
+       "[37193] \"221575_at\"                   \"221589_s_at\"                \n",
+       "[37195] \"221588_x_at\"                 \"221590_s_at\"                \n",
+       "[37197] \"221575_at\"                   \"221345_at\"                  \n",
+       "[37199] \"222497_x_at\"                 \"222619_at\"                  \n",
+       "[37201] \"222942_s_at\"                 \"221548_s_at\"                \n",
+       "[37203] \"223346_at\"                   \"223525_at\"                  \n",
+       "[37205] \"224910_at\"                   \"223111_x_at\"                \n",
+       "[37207] \"221230_s_at\"                 \"224322_at\"                  \n",
+       "[37209] \"225357_s_at\"                 \"221613_s_at\"                \n",
+       "[37211] \"221829_s_at\"                 \"221330_at\"                  \n",
+       "[37213] \"222718_at\"                   \"221882_s_at\"                \n",
+       "[37215] \"222718_at\"                   \"225127_at\"                  \n",
+       "[37217] \"223834_at\"                   \"224788_at\"                  \n",
+       "[37219] \"224663_s_at\"                 \"224352_s_at\"                \n",
+       "[37221] \"221348_at\"                   \"225289_at\"                  \n",
+       "[37223] \"223377_x_at\"                 \"223961_s_at\"                \n",
+       "[37225] \"221223_x_at\"                 \"224399_at\"                  \n",
+       "[37227] \"224093_at\"                   \"223265_at\"                  \n",
+       "[37229] \"223471_at\"                   \"224581_s_at\"                \n",
+       "[37231] \"224582_s_at\"                 \"222424_s_at\"                \n",
+       "[37233] \"223891_at\"                   \"221277_s_at\"                \n",
+       "[37235] \"224864_at\"                   \"224130_s_at\"                \n",
+       "[37237] \"225334_at\"                   \"224211_at\"                  \n",
+       "[37239] \"221334_s_at\"                 \"221333_at\"                  \n",
+       "[37241] \"225445_at\"                   \"225444_at\"                  \n",
+       "[37243] \"222302_at\"                   \"223652_at\"                  \n",
+       "[37245] \"223652_at\"                   \"221313_at\"                  \n",
+       "[37247] \"221511_x_at\"                 \"222156_x_at\"                \n",
+       "[37249] \"221156_x_at\"                 \"222760_at\"                  \n",
+       "[37251] \"221542_s_at\"                 \"221543_s_at\"                \n",
+       "[37253] \"223833_at\"                   \"222114_x_at\"                \n",
+       "[37255] \"225398_at\"                   \"225017_at\"                  \n",
+       "[37257] \"222294_s_at\"                 \"222758_s_at\"                \n",
+       "[37259] \"221494_x_at\"                 \"221071_at\"                  \n",
+       "[37261] \"221355_at\"                   \"222627_at\"                  \n",
+       "[37263] \"224519_at\"                   \"220998_s_at\"                \n",
+       "[37265] \"225173_at\"                   \"225171_at\"                  \n",
+       "[37267] \"225166_at\"                   \"225462_at\"                  \n",
+       "[37269] \"225086_at\"                   \"223655_at\"                  \n",
+       "[37271] \"221814_at\"                   \"224595_at\"                  \n",
+       "[37273] \"224596_at\"                   \"222364_at\"                  \n",
+       "[37275] \"223104_at\"                   \"224536_s_at\"                \n",
+       "[37277] \"224537_at\"                   \"222615_s_at\"                \n",
+       "[37279] \"223673_at\"                   \"225177_at\"                  \n",
+       "[37281] \"223442_at\"                   \"221539_at\"                  \n",
+       "[37283] \"222909_s_at\"                 \"221842_s_at\"                \n",
+       "[37285] \"225095_at\"                   \"221784_at\"                  \n",
+       "[37287] \"221785_at\"                   \"221783_at\"                  \n",
+       "[37289] \"223431_at\"                   \"222130_s_at\"                \n",
+       "[37291] \"223241_at\"                   \"220802_at\"                  \n",
+       "[37293] \"222445_at\"                   \"222056_s_at\"                \n",
+       "[37295] \"222055_at\"                   \"221676_s_at\"                \n",
+       "[37297] \"222409_at\"                   \"223241_at\"                  \n",
+       "[37299] \"222786_at\"                   \"224238_at\"                  \n",
+       "[37301] \"221290_s_at\"                 \"223347_at\"                  \n",
+       "[37303] \"223348_x_at\"                 \"221887_s_at\"                \n",
+       "[37305] \"224955_at\"                   \"222130_s_at\"                \n",
+       "[37307] \"223418_x_at\"                 \"223044_at\"                  \n",
+       "[37309] \"225397_at\"                   \"222043_at\"                  \n",
+       "[37311] \"223123_s_at\"                 \"223124_s_at\"                \n",
+       "[37313] \"221940_at\"                   \"224139_at\"                  \n",
+       "[37315] \"223355_at\"                   \"222887_s_at\"                \n",
+       "[37317] \"224186_s_at\"                 \"221063_x_at\"                \n",
+       "[37319] \"223871_x_at\"                 \"223958_s_at\"                \n",
+       "[37321] \"223959_at\"                   \"222512_at\"                  \n",
+       "[37323] \"223753_s_at\"                 \"224605_at\"                  \n",
+       "[37325] \"224602_at\"                   \"224604_at\"                  \n",
+       "[37327] \"223842_s_at\"                 \"223843_at\"                  \n",
+       "[37329] \"223694_at\"                   \"222525_s_at\"                \n",
+       "[37331] \"224891_at\"                   \"224889_at\"                  \n",
+       "[37333] \"223411_at\"                   \"223556_at\"                  \n",
+       "[37335] \"223402_at\"                   \"222034_at\"                  \n",
+       "[37337] \"222710_at\"                   \"224388_s_at\"                \n",
+       "[37339] \"224389_s_at\"                 \"224747_at\"                  \n",
+       "[37341] \"225451_at\"                   \"221383_at\"                  \n",
+       "[37343] \"220994_s_at\"                 \"220995_at\"                  \n",
+       "[37345] \"223802_s_at\"                 \"221040_at\"                  \n",
+       "[37347] \"225469_at\"                   \"220948_s_at\"                \n",
+       "[37349] \"221562_s_at\"                 \"221913_at\"                  \n",
+       "[37351] \"224481_s_at\"                 \"221094_s_at\"                \n",
+       "[37353] \"223208_at\"                   \"221897_at\"                  \n",
+       "[37355] \"225183_at\"                   \"225199_at\"                  \n",
+       "[37357] \"225197_at\"                   \"225199_at\"                  \n",
+       "[37359] \"225197_at\"                   \"221114_at\"                  \n",
+       "[37361] \"225020_at\"                   \"224830_at\"                  \n",
+       "[37363] \"223227_at\"                   \"224830_at\"                  \n",
+       "[37365] \"223709_s_at\"                 \"223227_at\"                  \n",
+       "[37367] \"221123_x_at\"                 \"223216_x_at\"                \n",
+       "[37369] \"222536_s_at\"                 \"220772_at\"                  \n",
+       "[37371] \"224885_s_at\"                 \"221123_x_at\"                \n",
+       "[37373] \"223216_x_at\"                 \"222536_s_at\"                \n",
+       "[37375] \"225479_at\"                   \"224885_s_at\"                \n",
+       "[37377] \"223625_at\"                   \"221672_s_at\"                \n",
+       "[37379] \"221836_s_at\"                 \"221060_s_at\"                \n",
+       "[37381] \"224341_x_at\"                 \"225251_at\"                  \n",
+       "[37383] \"224232_s_at\"                 \"223032_x_at\"                \n",
+       "[37385] \"221547_at\"                   \"223685_s_at\"                \n",
+       "[37387] \"222129_at\"                   \"221984_s_at\"                \n",
+       "[37389] \"221983_at\"                   \"223844_at\"                  \n",
+       "[37391] \"221622_s_at\"                 \"223334_at\"                  \n",
+       "[37393] \"221002_s_at\"                 \"223314_at\"                  \n",
+       "[37395] \"222078_at\"                   \"222521_x_at\"                \n",
+       "[37397] \"220974_x_at\"                 \"222561_at\"                  \n",
+       "[37399] \"222560_at\"                   \"221129_at\"                  \n",
+       "[37401] \"222413_s_at\"                 \"222415_at\"                  \n",
+       "[37403] \"222414_at\"                   \"225004_at\"                  \n",
+       "[37405] \"221275_s_at\"                 \"221550_at\"                  \n",
+       "[37407] \"223281_s_at\"                 \"222943_at\"                  \n",
+       "[37409] \"225010_at\"                   \"223235_s_at\"                \n",
+       "[37411] \"223518_at\"                   \"222216_s_at\"                \n",
+       "[37413] \"224131_at\"                   \"222101_s_at\"                \n",
+       "[37415] \"221432_s_at\"                 \"223192_at\"                  \n",
+       "[37417] \"223414_s_at\"                 \"223413_s_at\"                \n",
+       "[37419] \"221150_at\"                   \"225268_at\"                  \n",
+       "[37421] \"225267_at\"                   \"223468_s_at\"                \n",
+       "[37423] \"225329_at\"                   \"223366_at\"                  \n",
+       "[37425] \"221704_s_at\"                 \"222687_s_at\"                \n",
+       "[37427] \"222689_at\"                   \"222688_at\"                  \n",
+       "[37429] \"222060_at\"                   \"220597_s_at\"                \n",
+       "[37431] \"220719_at\"                   \"221965_at\"                  \n",
+       "[37433] \"222021_x_at\"                 \"221708_s_at\"                \n",
+       "[37435] \"224943_at\"                   \"224945_at\"                  \n",
+       "[37437] \"222748_s_at\"                 \"224126_at\"                  \n",
+       "[37439] \"224010_at\"                   \"224227_s_at\"                \n",
+       "[37441] \"223298_s_at\"                 \"221361_at\"                  \n",
+       "[37443] \"223945_x_at\"                 \"224239_at\"                  \n",
+       "[37445] \"224239_at\"                   \"223933_at\"                  \n",
+       "[37447] \"222173_s_at\"                 \"224010_at\"                  \n",
+       "[37449] \"224239_at\"                   \"224239_at\"                  \n",
+       "[37451] \"224239_at\"                   \"225167_at\"                  \n",
+       "[37453] \"225163_at\"                   \"225168_at\"                  \n",
+       "[37455] \"223300_s_at\"                 \"223301_s_at\"                \n",
+       "[37457] \"220693_at\"                   \"222495_at\"                  \n",
+       "[37459] \"223623_at\"                   \"220553_s_at\"                \n",
+       "[37461] \"223997_at\"                   \"220805_at\"                  \n",
+       "[37463] \"222348_at\"                   \"224233_s_at\"                \n",
+       "[37465] \"222584_at\"                   \"222767_s_at\"                \n",
+       "[37467] \"224129_s_at\"                 \"224466_s_at\"                \n",
+       "[37469] \"221403_s_at\"                 \"223903_at\"                  \n",
+       "[37471] \"225014_at\"                   \"220736_at\"                  \n",
+       "[37473] \"224513_s_at\"                 \"220749_at\"                  \n",
+       "[37475] \"222744_s_at\"                 \"222744_s_at\"                \n",
+       "[37477] \"221682_s_at\"                 \"223110_at\"                  \n",
+       "[37479] \"222507_s_at\"                 \"223544_at\"                  \n",
+       "[37481] \"221302_at\"                   \"221607_x_at\"                \n",
+       "[37483] \"224585_x_at\"                 \"220824_at\"                  \n",
+       "[37485] \"224959_at\"                   \"224963_at\"                  \n",
+       "[37487] \"222150_s_at\"                 \"221314_at\"                  \n",
+       "[37489] \"221646_s_at\"                 \"221410_x_at\"                \n",
+       "[37491] \"224983_at\"                   \"221410_x_at\"                \n",
+       "[37493] \"223629_at\"                   \"221317_x_at\"                \n",
+       "[37495] \"221319_at\"                   \"223927_at\"                  \n",
+       "[37497] \"223854_at\"                   \"221408_x_at\"                \n",
+       "[37499] \"221408_x_at\"                 \"220621_at\"                  \n",
+       "[37501] \"222018_at\"                   \"224456_s_at\"                \n",
+       "[37503] \"224457_at\"                   \"221450_x_at\"                \n",
+       "[37505] \"224166_at\"                   \"221118_at\"                  \n",
+       "[37507] \"224226_at\"                   \"220949_s_at\"                \n",
+       "[37509] \"220565_at\"                   \"222799_at\"                  \n",
+       "[37511] \"221880_s_at\"                 \"223032_x_at\"                \n",
+       "[37513] \"222755_s_at\"                 \"220619_at\"                  \n",
+       "[37515] \"223500_at\"                   \"223971_at\"                  \n",
+       "[37517] \"222290_at\"                   \"223387_at\"                  \n",
+       "[37519] \"223388_s_at\"                 \"222699_s_at\"                \n",
+       "[37521] \"223902_at\"                   \"224807_at\"                  \n",
+       "[37523] \"224608_s_at\"                 \"223783_s_at\"                \n",
+       "[37525] \"223750_s_at\"                 \"223751_x_at\"                \n",
+       "[37527] \"223847_s_at\"                 \"224576_at\"                  \n",
+       "[37529] \"224577_at\"                   \"224024_at\"                  \n",
+       "[37531] \"220991_s_at\"                 \"224993_at\"                  \n",
+       "[37533] \"223337_at\"                   \"223318_s_at\"                \n",
+       "[37535] \"222505_at\"                   \"222506_at\"                  \n",
+       "[37537] \"224410_s_at\"                 \"224036_s_at\"                \n",
+       "[37539] \"224754_at\"                   \"224760_at\"                  \n",
+       "[37541] \"220866_at\"                   \"225117_at\"                  \n",
+       "[37543] \"221892_at\"                   \"222386_s_at\"                \n",
+       "[37545] \"222087_at\"                   \"224259_at\"                  \n",
+       "[37547] \"224735_at\"                   \"223767_at\"                  \n",
+       "[37549] \"223086_x_at\"                 \"224334_s_at\"                \n",
+       "[37551] \"221707_s_at\"                 \"225392_at\"                  \n",
+       "[37553] \"224714_at\"                   \"224713_at\"                  \n",
+       "[37555] \"222160_at\"                   \"220703_at\"                  \n",
+       "[37557] \"220586_at\"                   \"222892_s_at\"                \n",
+       "[37559] \"225251_at\"                   \"221250_s_at\"                \n",
+       "[37561] \"221927_s_at\"                 \"223048_at\"                  \n",
+       "[37563] \"221340_at\"                   \"223770_x_at\"                \n",
+       "[37565] \"224310_s_at\"                 \"222895_s_at\"                \n",
+       "[37567] \"221888_at\"                   \"222137_at\"                  \n",
+       "[37569] \"223776_x_at\"                 \"224809_x_at\"                \n",
+       "[37571] \"221164_x_at\"                 \"223942_x_at\"                \n",
+       "[37573] \"223458_at\"                   \"220788_s_at\"                \n",
+       "[37575] \"222941_at\"                   \"221716_s_at\"                \n",
+       "[37577] \"221792_at\"                   \"225259_at\"                  \n",
+       "[37579] \"225413_at\"                   \"221728_x_at\"                \n",
+       "[37581] \"224588_at\"                   \"224589_at\"                  \n",
+       "[37583] \"224590_at\"                   \"221175_at\"                  \n",
+       "[37585] \"220989_s_at\"                 \"223587_s_at\"                \n",
+       "[37587] \"221571_at\"                   \"222811_at\"                  \n",
+       "[37589] \"222172_at\"                   \"223631_s_at\"                \n",
+       "[37591] \"221247_s_at\"                 \"221364_at\"                  \n",
+       "[37593] \"221336_at\"                   \"223197_s_at\"                \n",
+       "[37595] \"224785_at\"                   \"224783_at\"                  \n",
+       "[37597] \"223631_s_at\"                 \"222128_at\"                  \n",
+       "[37599] \"221818_at\"                   \"221637_s_at\"                \n",
+       "[37601] \"225135_at\"                   \"221459_at\"                  \n",
+       "[37603] \"222067_x_at\"                 \"223757_at\"                  \n",
+       "[37605] \"223443_s_at\"                 \"222005_s_at\"                \n",
+       "[37607] \"225405_at\"                   \"222264_at\"                  \n",
+       "[37609] \"221846_s_at\"                 \"221541_at\"                  \n",
+       "[37611] \"224289_s_at\"                 \"223772_s_at\"                \n",
+       "[37613] \"223919_at\"                   \"223920_s_at\"                \n",
+       "[37615] \"225073_at\"                   \"221712_s_at\"                \n",
+       "[37617] \"222148_s_at\"                 \"224044_at\"                  \n",
+       "[37619] \"220641_at\"                   \"223462_at\"                  \n",
+       "[37621] \"221054_s_at\"                 \"221624_at\"                  \n",
+       "[37623] \"225264_at\"                   \"222149_x_at\"                \n",
+       "[37625] \"224146_s_at\"                 \"223992_x_at\"                \n",
+       "[37627] \"220618_s_at\"                 \"225394_s_at\"                \n",
+       "[37629] \"221685_s_at\"                 \"221952_x_at\"                \n",
+       "[37631] \"221952_x_at\"                 \"220602_s_at\"                \n",
+       "[37633] \"223326_s_at\"                 \"221329_at\"                  \n",
+       "[37635] \"220733_at\"                   \"225035_x_at\"                \n",
+       "[37637] \"225035_x_at\"                 \"223777_at\"                  \n",
+       "[37639] \"223777_at\"                   \"223777_at\"                  \n",
+       "[37641] \"223777_at\"                   \"220705_s_at\"                \n",
+       "[37643] \"223321_s_at\"                 \"223648_s_at\"                \n",
+       "[37645] \"224991_at\"                   \"224992_s_at\"                \n",
+       "[37647] \"220602_s_at\"                 \"223326_s_at\"                \n",
+       "[37649] \"220985_s_at\"                 \"222808_at\"                  \n",
+       "[37651] \"222501_s_at\"                 \"224359_s_at\"                \n",
+       "[37653] \"224766_at\"                   \"224763_at\"                  \n",
+       "[37655] \"224767_at\"                   \"222890_at\"                  \n",
+       "[37657] \"220602_s_at\"                 \"224414_s_at\"                \n",
+       "[37659] \"220705_s_at\"                 \"224842_at\"                  \n",
+       "[37661] \"220727_at\"                   \"221908_at\"                  \n",
+       "[37663] \"221909_at\"                   \"221701_s_at\"                \n",
+       "[37665] \"225305_at\"                   \"225306_s_at\"                \n",
+       "[37667] \"225305_at\"                   \"221457_s_at\"                \n",
+       "[37669] \"222182_s_at\"                 \"222099_s_at\"                \n",
+       "[37671] \"220663_at\"                   \"222963_s_at\"                \n",
+       "[37673] \"223199_at\"                   \"221971_x_at\"                \n",
+       "[37675] \"221850_x_at\"                 \"221971_x_at\"                \n",
+       "[37677] \"221850_x_at\"                 \"220547_s_at\"                \n",
+       "[37679] \"223766_at\"                   \"223719_s_at\"                \n",
+       "[37681] \"223311_s_at\"                 \"220768_s_at\"                \n",
+       "[37683] \"220908_at\"                   \"224718_at\"                  \n",
+       "[37685] \"224711_at\"                   \"224518_s_at\"                \n",
+       "[37687] \"224931_at\"                   \"221112_at\"                  \n",
+       "[37689] \"222784_at\"                   \"222783_s_at\"                \n",
+       "[37691] \"225063_at\"                   \"221429_x_at\"                \n",
+       "[37693] \"224930_x_at\"                 \"221919_at\"                  \n",
+       "[37695] \"222040_at\"                   \"224623_at\"                  \n",
+       "[37697] \"220661_s_at\"                 \"223523_at\"                  \n",
+       "[37699] \"223524_s_at\"                 \"222841_s_at\"                \n",
+       "[37701] \"224502_s_at\"                 \"225418_at\"                  \n",
+       "[37703] \"222198_at\"                   \"221416_at\"                  \n",
+       "[37705] \"223391_at\"                   \"221268_s_at\"                \n",
+       "[37707] \"220971_at\"                   \"221971_x_at\"                \n",
+       "[37709] \"221850_x_at\"                 \"221971_x_at\"                \n",
+       "[37711] \"221850_x_at\"                 \"220793_at\"                  \n",
+       "[37713] \"223041_at\"                   \"220746_s_at\"                \n",
+       "[37715] \"221992_at\"                   \"221992_at\"                  \n",
+       "[37717] \"221992_at\"                   \"222884_at\"                  \n",
+       "[37719] \"224968_at\"                   \"224304_x_at\"                \n",
+       "[37721] \"224303_x_at\"                 \"223981_at\"                  \n",
+       "[37723] \"224806_at\"                   \"223738_s_at\"                \n",
+       "[37725] \"225367_at\"                   \"225366_at\"                  \n",
+       "[37727] \"222191_s_at\"                 \"223410_s_at\"                \n",
+       "[37729] \"223408_s_at\"                 \"223409_at\"                  \n",
+       "[37731] \"223541_at\"                   \"224732_at\"                  \n",
+       "[37733] \"221298_s_at\"                 \"224920_x_at\"                \n",
+       "[37735] \"222604_at\"                   \"224732_at\"                  \n",
+       "[37737] \"225396_at\"                   \"225250_at\"                  \n",
+       "[37739] \"225246_at\"                   \"223112_s_at\"                \n",
+       "[37741] \"222177_s_at\"                 \"222211_x_at\"                \n",
+       "[37743] \"223830_s_at\"                 \"221798_x_at\"                \n",
+       "[37745] \"225516_at\"                   \"220576_at\"                  \n",
+       "[37747] \"224137_at\"                   \"224291_at\"                  \n",
+       "[37749] \"223710_at\"                   \"221463_at\"                  \n",
+       "[37751] \"222995_s_at\"                 \"221276_s_at\"                \n",
+       "[37753] \"223482_at\"                   \"221798_x_at\"                \n",
+       "[37755] \"224746_at\"                   \"221798_x_at\"                \n",
+       "[37757] \"224996_at\"                   \"225008_at\"                  \n",
+       "[37759] \"222481_at\"                   \"222610_s_at\"                \n",
+       "[37761] \"225061_at\"                   \"225536_at\"                  \n",
+       "[37763] \"221613_s_at\"                 \"221531_at\"                  \n",
+       "[37765] \"221532_s_at\"                 \"222361_at\"                  \n",
+       "[37767] \"222361_at\"                   \"224948_at\"                  \n",
+       "[37769] \"224948_at\"                   \"224078_at\"                  \n",
+       "[37771] \"224078_at\"                   \"225454_at\"                  \n",
+       "[37773] \"225077_at\"                   \"223996_s_at\"                \n",
+       "[37775] \"221949_at\"                   \"223996_s_at\"                \n",
+       "[37777] \"224012_at\"                   \"223996_s_at\"                \n",
+       "[37779] \"224173_s_at\"                 \"224971_at\"                  \n",
+       "[37781] \"224012_at\"                   \"225104_at\"                  \n",
+       "[37783] \"221172_at\"                   \"221961_at\"                  \n",
+       "[37785] \"221343_at\"                   \"220819_at\"                  \n",
+       "[37787] \"221700_s_at\"                 \"224600_at\"                  \n",
+       "[37789] \"224599_at\"                   \"222851_at\"                  \n",
+       "[37791] \"221308_at\"                   \"223590_at\"                  \n",
+       "[37793] \"222500_at\"                   \"223590_at\"                  \n",
+       "[37795] \"224988_at\"                   \"224987_at\"                  \n",
+       "[37797] \"224977_at\"                   \"225391_at\"                  \n",
+       "[37799] \"221619_s_at\"                 \"222766_at\"                  \n",
+       "[37801] \"222088_s_at\"                 \"224981_at\"                  \n",
+       "[37803] \"225130_at\"                   \"225138_at\"                  \n",
+       "[37805] \"225131_at\"                   \"221234_s_at\"                \n",
+       "[37807] \"220967_s_at\"                 \"225437_s_at\"                \n",
+       "[37809] \"220839_at\"                   \"221570_s_at\"                \n",
+       "[37811] \"222389_s_at\"                 \"222390_at\"                  \n",
+       "[37813] \"222660_s_at\"                 \"222108_at\"                  \n",
+       "[37815] \"225124_at\"                   \"223616_at\"                  \n",
+       "[37817] \"224504_s_at\"                 \"225296_at\"                  \n",
+       "[37819] \"222233_s_at\"                 \"221552_at\"                  \n",
+       "[37821] \"221679_s_at\"                 \"224243_at\"                  \n",
+       "[37823] \"224244_s_at\"                 \"223775_at\"                  \n",
+       "[37825] \"225463_x_at\"                 \"223531_x_at\"                \n",
+       "[37827] \"222140_s_at\"                 \"220642_x_at\"                \n",
+       "[37829] \"224330_s_at\"                 \"222914_s_at\"                \n",
+       "[37831] \"222231_s_at\"                 \"225332_at\"                  \n",
+       "[37833] \"225225_at\"                   \"224012_at\"                  \n",
+       "[37835] \"221267_s_at\"                 \"223424_s_at\"                \n",
+       "[37837] \"225253_s_at\"                 \"221079_s_at\"                \n",
+       "[37839] \"222276_at\"                   \"223551_at\"                  \n",
+       "[37841] \"220669_at\"                   \"223421_at\"                  \n",
+       "[37843] \"221020_s_at\"                 \"224021_at\"                  \n",
+       "[37845] \"224962_at\"                   \"221670_s_at\"                \n",
+       "[37847] \"222910_s_at\"                 \"224411_at\"                  \n",
+       "[37849] \"222466_s_at\"                 \"223793_at\"                  \n",
+       "[37851] \"223559_s_at\"                 \"223558_at\"                  \n",
+       "[37853] \"224280_s_at\"                 \"223307_at\"                  \n",
+       "[37855] \"221436_s_at\"                 \"221218_s_at\"                \n",
+       "[37857] \"223686_at\"                   \"223580_at\"                  \n",
+       "[37859] \"223580_at\"                   \"224302_s_at\"                \n",
+       "[37861] \"220831_at\"                   \"223649_s_at\"                \n",
+       "[37863] \"220951_s_at\"                 \"222946_s_at\"                \n",
+       "[37865] \"221412_at\"                   \"221863_at\"                  \n",
+       "[37867] \"225511_at\"                   \"220865_s_at\"                \n",
+       "[37869] \"220641_at\"                   \"223728_at\"                  \n",
+       "[37871] \"222715_s_at\"                 \"221937_at\"                  \n",
+       "[37873] \"223407_at\"                   \"221028_s_at\"                \n",
+       "[37875] \"221992_at\"                   \"224814_at\"                  \n",
+       "[37877] \"224804_s_at\"                 \"224798_s_at\"                \n",
+       "[37879] \"224805_s_at\"                 \"222664_at\"                  \n",
+       "[37881] \"222668_at\"                   \"222661_at\"                  \n",
+       "[37883] \"221292_at\"                   \"223415_at\"                  \n",
+       "[37885] \"221506_s_at\"                 \"221507_at\"                  \n",
+       "[37887] \"223644_s_at\"                 \"223370_at\"                  \n",
+       "[37889] \"223054_at\"                   \"221556_at\"                  \n",
+       "[37891] \"221555_x_at\"                 \"222074_at\"                  \n",
+       "[37893] \"224625_x_at\"                 \"221407_at\"                  \n",
+       "[37895] \"225220_at\"                   \"222526_at\"                  \n",
+       "[37897] \"221369_at\"                   \"225517_at\"                  \n",
+       "[37899] \"220608_s_at\"                 \"224756_s_at\"                \n",
+       "[37901] \"221338_at\"                   \"223584_s_at\"                \n",
+       "[37903] \"223585_x_at\"                 \"225164_s_at\"                \n",
+       "[37905] \"223533_at\"                   \"222503_s_at\"                \n",
+       "[37907] \"221809_at\"                   \"223611_s_at\"                \n",
+       "[37909] \"223612_s_at\"                 \"225042_s_at\"                \n",
+       "[37911] \"221260_s_at\"                 \"220760_x_at\"                \n",
+       "[37913] \"222220_s_at\"                 \"224160_s_at\"                \n",
+       "[37915] \"224014_at\"                   \"221007_s_at\"                \n",
+       "[37917] \"223835_x_at\"                 \"224004_at\"                  \n",
+       "[37919] \"224677_x_at\"                 \"224698_at\"                  \n",
+       "[37921] \"224699_s_at\"                 \"221372_s_at\"                \n",
+       "[37923] \"224069_x_at\"                 \"224557_x_at\"                \n",
+       "[37925] \"221356_x_at\"                 \"221464_at\"                  \n",
+       "[37927] \"222224_at\"                   \"223831_x_at\"                \n",
+       "[37929] \"223831_x_at\"                 \"223429_x_at\"                \n",
+       "[37931] \"223428_s_at\"                 \"222827_s_at\"                \n",
+       "[37933] \"224916_at\"                   \"224929_at\"                  \n",
+       "[37935] \"221703_at\"                   \"221263_s_at\"                \n",
+       "[37937] \"224516_s_at\"                 \"222996_s_at\"                \n",
+       "[37939] \"220782_x_at\"                 \"220962_s_at\"                \n",
+       "[37941] \"223739_at\"                   \"220573_at\"                  \n",
+       "[37943] \"222886_at\"                   \"220779_at\"                  \n",
+       "[37945] \"222729_at\"                   \"224573_at\"                  \n",
+       "[37947] \"224574_at\"                   \"224573_at\"                  \n",
+       "[37949] \"221573_at\"                   \"224574_at\"                  \n",
+       "[37951] \"224573_at\"                   \"222830_at\"                  \n",
+       "[37953] \"222107_x_at\"                 \"221722_x_at\"                \n",
+       "[37955] \"221721_s_at\"                 \"221719_s_at\"                \n",
+       "[37957] \"221630_s_at\"                 \"221583_s_at\"                \n",
+       "[37959] \"221584_s_at\"                 \"222335_at\"                  \n",
+       "[37961] \"222587_s_at\"                 \"221501_x_at\"                \n",
+       "[37963] \"221853_s_at\"                 \"225460_at\"                  \n",
+       "[37965] \"224470_at\"                   \"220954_s_at\"                \n",
+       "[37967] \"225321_s_at\"                 \"222863_at\"                  \n",
+       "[37969] \"223572_at\"                   \"222513_s_at\"                \n",
+       "[37971] \"221788_at\"                   \"224079_at\"                  \n",
+       "[37973] \"220843_s_at\"                 \"223447_at\"                  \n",
+       "[37975] \"225033_at\"                   \"225034_at\"                  \n",
+       "[37977] \"221896_s_at\"                 \"224655_at\"                  \n",
+       "[37979] \"224151_s_at\"                 \"221446_at\"                  \n",
+       "[37981] \"221896_s_at\"                 \"224525_s_at\"                \n",
+       "[37983] \"221501_x_at\"                 \"224013_s_at\"                \n",
+       "[37985] \"224013_s_at\"                 \"222849_s_at\"                \n",
+       "[37987] \"223907_s_at\"                 \"221823_at\"                  \n",
+       "[37989] \"221480_at\"                   \"221481_x_at\"                \n",
+       "[37991] \"224906_at\"                   \"224727_at\"                  \n",
+       "[37993] \"222345_at\"                   \"223081_at\"                  \n",
+       "[37995] \"222407_s_at\"                 \"222773_s_at\"                \n",
+       "[37997] \"222772_at\"                   \"222771_s_at\"                \n",
+       "[37999] \"222153_at\"                   \"224373_s_at\"                \n",
+       "[38001] \"224373_s_at\"                 \"223211_at\"                  \n",
+       "[38003] \"220959_s_at\"                 \"221293_s_at\"                \n",
+       "[38005] \"222484_s_at\"                 \"221840_at\"                  \n",
+       "[38007] \"221037_s_at\"                 \"224001_at\"                  \n",
+       "[38009] \"224207_x_at\"                 \"222937_s_at\"                \n",
+       "[38011] \"223026_s_at\"                 \"220718_at\"                  \n",
+       "[38013] \"220564_at\"                   \"223824_at\"                  \n",
+       "[38015] \"225204_at\"                   \"225213_at\"                  \n",
+       "[38017] \"222197_s_at\"                 \"220999_s_at\"                \n",
+       "[38019] \"221232_s_at\"                 \"223054_at\"                  \n",
+       "[38021] \"225170_at\"                   \"223308_s_at\"                \n",
+       "[38023] \"223095_at\"                   \"225218_at\"                  \n",
+       "[38025] \"222504_s_at\"                 \"224966_s_at\"                \n",
+       "[38027] \"221368_at\"                   \"225304_s_at\"                \n",
+       "[38029] \"222823_at\"                   \"225304_s_at\"                \n",
+       "[38031] \"221204_s_at\"                 \"220927_s_at\"                \n",
+       "[38033] \"221786_at\"                   \"221787_at\"                  \n",
+       "[38035] \"221406_s_at\"                 \"224133_at\"                  \n",
+       "[38037] \"222732_at\"                   \"225478_at\"                  \n",
+       "[38039] \"221791_s_at\"                 \"222662_at\"                  \n",
+       "[38041] \"222641_s_at\"                 \"221605_s_at\"                \n",
+       "[38043] \"224246_at\"                   \"224092_at\"                  \n",
+       "[38045] \"223126_s_at\"                 \"221272_s_at\"                \n",
+       "[38047] \"223125_s_at\"                 \"223127_s_at\"                \n",
+       "[38049] \"222473_s_at\"                 \"221424_s_at\"                \n",
+       "[38051] \"224666_at\"                   \"225049_at\"                  \n",
+       "[38053] \"225191_at\"                   \"224685_at\"                  \n",
+       "[38055] \"220775_s_at\"                 \"221061_at\"                  \n",
+       "[38057] \"224793_s_at\"                 \"224505_s_at\"                \n",
+       "[38059] \"221572_s_at\"                 \"223007_s_at\"                \n",
+       "[38061] \"223006_s_at\"                 \"223005_s_at\"                \n",
+       "[38063] \"223008_s_at\"                 \"225457_s_at\"                \n",
+       "[38065] \"223859_at\"                   \"223427_s_at\"                \n",
+       "[38067] \"223426_s_at\"                 \"222727_s_at\"                \n",
+       "[38069] \"221658_s_at\"                 \"223703_at\"                  \n",
+       "[38071] \"221501_x_at\"                 \"221922_at\"                  \n",
+       "[38073] \"223132_s_at\"                 \"221012_s_at\"                \n",
+       "[38075] \"223131_s_at\"                 \"221311_x_at\"                \n",
+       "[38077] \"222562_s_at\"                 \"222563_s_at\"                \n",
+       "[38079] \"223165_s_at\"                 \"223911_at\"                  \n",
+       "[38081] \"222901_s_at\"                 \"225363_at\"                  \n",
+       "[38083] \"221445_at\"                   \"224886_at\"                  \n",
+       "[38085] \"221413_at\"                   \"223700_at\"                  \n",
+       "[38087] \"223293_at\"                   \"224512_s_at\"                \n",
+       "[38089] \"225441_x_at\"                 \"223707_at\"                  \n",
+       "[38091] \"222131_x_at\"                 \"221789_x_at\"                \n",
+       "[38093] \"221587_s_at\"                 \"223151_at\"                  \n",
+       "[38095] \"222510_s_at\"                 \"221945_at\"                  \n",
+       "[38097] \"222734_at\"                   \"221501_x_at\"                \n",
+       "[38099] \"222752_s_at\"                 \"220904_at\"                  \n",
+       "[38101] \"221799_at\"                   \"221799_at\"                  \n",
+       "[38103] \"221906_at\"                   \"221458_at\"                  \n",
+       "[38105] \"224821_at\"                   \"220653_at\"                  \n",
+       "[38107] \"223903_at\"                   \"223934_at\"                  \n",
+       "[38109] \"221005_s_at\"                 \"225207_at\"                  \n",
+       "[38111] \"222080_s_at\"                 \"222081_at\"                  \n",
+       "[38113] \"221859_at\"                   \"221640_s_at\"                \n",
+       "[38115] \"224426_s_at\"                 \"224425_x_at\"                \n",
+       "[38117] \"224424_x_at\"                 \"224335_s_at\"                \n",
+       "[38119] \"222463_s_at\"                 \"222462_s_at\"                \n",
+       "[38121] \"220978_at\"                   \"220976_s_at\"                \n",
+       "[38123] \"220970_s_at\"                 \"224269_at\"                  \n",
+       "[38125] \"220566_at\"                   \"221889_at\"                  \n",
+       "[38127] \"221877_at\"                   \"221691_x_at\"                \n",
+       "[38129] \"223087_at\"                   \"223088_x_at\"                \n",
+       "[38131] \"224890_s_at\"                 \"223818_s_at\"                \n",
+       "[38133] \"222541_at\"                   \"222540_s_at\"                \n",
+       "[38135] \"223150_s_at\"                 \"223149_s_at\"                \n",
+       "[38137] \"224356_x_at\"                 \"223280_x_at\"                \n",
+       "[38139] \"223922_x_at\"                 \"225276_at\"                  \n",
+       "[38141] \"223277_at\"                   \"222605_at\"                  \n",
+       "[38143] \"221388_at\"                   \"221951_at\"                  \n",
+       "[38145] \"222741_s_at\"                 \"222552_at\"                  \n",
+       "[38147] \"223108_s_at\"                 \"223107_s_at\"                \n",
+       "[38149] \"221067_s_at\"                 \"223363_at\"                  \n",
+       "[38151] \"223100_s_at\"                 \"222824_at\"                  \n",
+       "[38153] \"222377_at\"                   \"222362_at\"                  \n",
+       "[38155] \"222126_at\"                   \"221647_s_at\"                \n",
+       "[38157] \"223020_at\"                   \"222564_at\"                  \n",
+       "[38159] \"221501_x_at\"                 \"221956_at\"                  \n",
+       "[38161] \"222017_x_at\"                 \"223941_at\"                  \n",
+       "[38163] \"221157_s_at\"                 \"222798_at\"                  \n",
+       "[38165] \"221579_s_at\"                 \"221965_at\"                  \n",
+       "[38167] \"221357_at\"                   \"223539_s_at\"                \n",
+       "[38169] \"223538_at\"                   \"224157_at\"                  \n",
+       "[38171] \"220801_s_at\"                 \"221706_s_at\"                \n",
+       "[38173] \"223477_s_at\"                 \"223476_s_at\"                \n",
+       "[38175] \"223364_s_at\"                 \"223365_at\"                  \n",
+       "[38177] \"222876_s_at\"                 \"221417_x_at\"                \n",
+       "[38179] \"221452_s_at\"                 \"223105_s_at\"                \n",
+       "[38181] \"224824_at\"                   \"222020_s_at\"                \n",
+       "[38183] \"221579_s_at\"                 \"223591_at\"                  \n",
+       "[38185] \"223592_s_at\"                 \"223137_at\"                  \n",
+       "[38187] \"221540_x_at\"                 \"223758_s_at\"                \n",
+       "[38189] \"221540_x_at\"                 \"223758_s_at\"                \n",
+       "[38191] \"224360_s_at\"                 \"221961_at\"                  \n",
+       "[38193] \"221537_at\"                   \"221538_s_at\"                \n",
+       "[38195] \"224446_at\"                   \"224110_at\"                  \n",
+       "[38197] \"224446_at\"                   \"222845_x_at\"                \n",
+       "[38199] \"223892_s_at\"                 \"221382_at\"                  \n",
+       "[38201] \"221382_at\"                   \"225265_at\"                  \n",
+       "[38203] \"221393_at\"                   \"221393_at\"                  \n",
+       "[38205] \"222271_at\"                   \"222955_s_at\"                \n",
+       "[38207] \"225351_at\"                   \"221804_s_at\"                \n",
+       "[38209] \"222578_s_at\"                 \"222579_at\"                  \n",
+       "[38211] \"222365_at\"                   \"221477_s_at\"                \n",
+       "[38213] \"220678_at\"                   \"225143_at\"                  \n",
+       "[38215] \"224477_s_at\"                 \"222143_s_at\"                \n",
+       "[38217] \"221501_x_at\"                 \"221560_at\"                  \n",
+       "[38219] \"221501_x_at\"                 \"223420_at\"                  \n",
+       "[38221] \"222135_at\"                   \"224145_s_at\"                \n",
+       "[38223] \"224297_s_at\"                 \"224551_s_at\"                \n",
+       "[38225] \"224144_at\"                   \"221501_x_at\"                \n",
+       "[38227] \"224984_at\"                   \"224688_at\"                  \n",
+       "[38229] \"223865_at\"                   \"224178_s_at\"                \n",
+       "[38231] \"223018_at\"                   \"221943_x_at\"                \n",
+       "[38233] \"223741_s_at\"                 \"222669_s_at\"                \n",
+       "[38235] \"224984_at\"                   \"221668_s_at\"                \n",
+       "[38237] \"220636_at\"                   \"223600_s_at\"                \n",
+       "[38239] \"222762_x_at\"                 \"223065_s_at\"                \n",
+       "[38241] \"225093_at\"                   \"222723_at\"                  \n",
+       "[38243] \"222912_at\"                   \"222756_s_at\"                \n",
+       "[38245] \"221861_at\"                   \"223320_s_at\"                \n",
+       "[38247] \"221732_at\"                   \"224197_s_at\"                \n",
+       "[38249] \"220975_s_at\"                 \"221389_at\"                  \n",
+       "[38251] \"221861_at\"                   \"225538_at\"                  \n",
+       "[38253] \"224138_at\"                   \"221447_s_at\"                \n",
+       "[38255] \"222032_s_at\"                 \"220704_at\"                  \n",
+       "[38257] \"223372_at\"                   \"223371_s_at\"                \n",
+       "[38259] \"220563_s_at\"                 \"223514_at\"                  \n",
+       "[38261] \"221849_s_at\"                 \"221851_at\"                  \n",
+       "[38263] \"221051_s_at\"                 \"224694_at\"                  \n",
+       "[38265] \"224482_s_at\"                 \"223244_s_at\"                \n",
+       "[38267] \"221646_s_at\"                 \"223242_s_at\"                \n",
+       "[38269] \"223658_at\"                   \"225107_at\"                  \n",
+       "[38271] \"223983_s_at\"                 \"224558_s_at\"                \n",
+       "[38273] \"224559_at\"                   \"223542_at\"                  \n",
+       "[38275] \"221988_at\"                   \"224717_s_at\"                \n",
+       "[38277] \"224712_x_at\"                 \"224490_s_at\"                \n",
+       "[38279] \"224489_at\"                   \"225443_at\"                  \n",
+       "[38281] \"221755_at\"                   \"224162_s_at\"                \n",
+       "[38283] \"222352_at\"                   \"224156_x_at\"                \n",
+       "[38285] \"224361_s_at\"                 \"224055_x_at\"                \n",
+       "[38287] \"224008_s_at\"                 \"222008_at\"                  \n",
+       "[38289] \"222707_s_at\"                 \"221515_s_at\"                \n",
+       "[38291] \"222896_at\"                   \"223545_at\"                  \n",
+       "[38293] \"222855_s_at\"                 \"225174_at\"                  \n",
+       "[38295] \"221781_s_at\"                 \"221782_at\"                  \n",
+       "[38297] \"222094_at\"                   \"222094_at\"                  \n",
+       "[38299] \"221315_s_at\"                 \"225065_x_at\"                \n",
+       "[38301] \"223332_x_at\"                 \"220657_at\"                  \n",
+       "[38303] \"225001_at\"                   \"221601_s_at\"                \n",
+       "[38305] \"221602_s_at\"                 \"222644_s_at\"                \n",
+       "[38307] \"223924_at\"                   \"221373_x_at\"                \n",
+       "[38309] \"223275_at\"                   \"222712_s_at\"                \n",
+       "[38311] \"221269_s_at\"                 \"220890_s_at\"                \n",
+       "[38313] \"221031_s_at\"                 \"220890_s_at\"                \n",
+       "[38315] \"223373_s_at\"                 \"223373_s_at\"                \n",
+       "[38317] \"223031_s_at\"                 \"223029_s_at\"                \n",
+       "[38319] \"223609_at\"                   \"224423_x_at\"                \n",
+       "[38321] \"224418_x_at\"                 \"224422_x_at\"                \n",
+       "[38323] \"224421_x_at\"                 \"224419_x_at\"                \n",
+       "[38325] \"224423_x_at\"                 \"224418_x_at\"                \n",
+       "[38327] \"224422_x_at\"                 \"224421_x_at\"                \n",
+       "[38329] \"224419_x_at\"                 \"224465_s_at\"                \n",
+       "[38331] \"221855_at\"                   \"220950_s_at\"                \n",
+       "[38333] \"224318_s_at\"                 \"220587_s_at\"                \n",
+       "[38335] \"222105_s_at\"                 \"224623_at\"                  \n",
+       "[38337] \"224623_at\"                   \"221540_x_at\"                \n",
+       "[38339] \"223758_s_at\"                 \"221274_s_at\"                \n",
+       "[38341] \"221206_at\"                   \"223993_s_at\"                \n",
+       "[38343] \"221366_at\"                   \"220739_s_at\"                \n",
+       "[38345] \"221206_at\"                   \"220662_s_at\"                \n",
+       "[38347] \"222091_at\"                   \"223532_at\"                  \n",
+       "[38349] \"225019_at\"                   \"224994_at\"                  \n",
+       "[38351] \"222622_at\"                   \"221487_s_at\"                \n",
+       "[38353] \"221486_at\"                   \"224999_at\"                  \n",
+       "[38355] \"222954_at\"                   \"223804_s_at\"                \n",
+       "[38357] \"223861_at\"                   \"221318_at\"                  \n",
+       "[38359] \"224832_at\"                   \"224336_s_at\"                \n",
+       "[38361] \"221109_at\"                   \"221577_x_at\"                \n",
+       "[38363] \"223630_at\"                   \"223815_at\"                  \n",
+       "[38365] \"223906_s_at\"                 \"222324_at\"                  \n",
+       "[38367] \"221217_s_at\"                 \"225339_at\"                  \n",
+       "[38369] \"222546_s_at\"                 \"223970_at\"                  \n",
+       "[38371] \"223969_s_at\"                 \"223189_x_at\"                \n",
+       "[38373] \"223190_s_at\"                 \"220750_s_at\"                \n",
+       "[38375] \"222242_s_at\"                 \"224677_x_at\"                \n",
+       "[38377] \"225521_at\"                   \"223720_at\"                  \n",
+       "[38379] \"224369_s_at\"                 \"221257_x_at\"                \n",
+       "[38381] \"223033_s_at\"                 \"225058_at\"                  \n",
+       "[38383] \"222667_s_at\"                 \"223777_at\"                  \n",
+       "[38385] \"223777_at\"                   \"223777_at\"                  \n",
+       "[38387] \"221385_s_at\"                 \"223266_at\"                  \n",
+       "[38389] \"223657_at\"                   \"223260_s_at\"                \n",
+       "[38391] \"223261_at\"                   \"225194_at\"                  \n",
+       "[38393] \"224062_x_at\"                 \"222947_at\"                  \n",
+       "[38395] \"221714_s_at\"                 \"223274_at\"                  \n",
+       "[38397] \"223798_at\"                   \"223840_s_at\"                \n",
+       "[38399] \"223841_s_at\"                 \"222430_s_at\"                \n",
+       "[38401] \"225202_at\"                   \"222295_x_at\"                \n",
+       "[38403] \"222447_at\"                   \"221714_s_at\"                \n",
+       "[38405] \"221047_s_at\"                 \"224989_at\"                  \n",
+       "[38407] \"224990_at\"                   \"223253_at\"                  \n",
+       "[38409] \"225179_at\"                   \"224926_at\"                  \n",
+       "[38411] \"225321_s_at\"                 \"222218_s_at\"                \n",
+       "[38413] \"224622_at\"                   \"222796_at\"                  \n",
+       "[38415] \"221048_x_at\"                 \"223352_s_at\"                \n",
+       "[38417] \"223351_at\"                   \"223000_s_at\"                \n",
+       "[38419] \"222354_at\"                   \"224097_s_at\"                \n",
+       "[38421] \"221664_s_at\"                 \"225319_s_at\"                \n",
+       "[38423] \"221014_s_at\"                 \"223000_s_at\"                \n",
+       "[38425] \"224097_s_at\"                 \"221664_s_at\"                \n",
+       "[38427] \"221522_at\"                   \"220614_s_at\"                \n",
+       "[38429] \"221501_x_at\"                 \"221501_x_at\"                \n",
+       "[38431] \"223540_at\"                   \"221501_x_at\"                \n",
+       "[38433] \"221853_s_at\"                 \"221852_at\"                  \n",
+       "[38435] \"221853_s_at\"                 \"221852_at\"                  \n",
+       "[38437] \"223286_at\"                   \"224184_s_at\"                \n",
+       "[38439] \"221159_at\"                   \"221159_at\"                  \n",
+       "[38441] \"225512_at\"                   \"224979_s_at\"                \n",
+       "[38443] \"224978_s_at\"                 \"221148_at\"                  \n",
+       "[38445] \"222542_x_at\"                 \"221501_x_at\"                \n",
+       "[38447] \"221501_x_at\"                 \"222127_s_at\"                \n",
+       "[38449] \"224433_s_at\"                 \"225428_s_at\"                \n",
+       "[38451] \"222458_s_at\"                 \"222459_at\"                  \n",
+       "[38453] \"222542_x_at\"                 \"222599_s_at\"                \n",
+       "[38455] \"222598_s_at\"                 \"221777_at\"                  \n",
+       "[38457] \"225114_at\"                   \"225113_at\"                  \n",
+       "[38459] \"225108_at\"                   \"221081_s_at\"                \n",
+       "[38461] \"224674_at\"                   \"224452_s_at\"                \n",
+       "[38463] \"223504_at\"                   \"223505_s_at\"                \n",
+       "[38465] \"224784_at\"                   \"221163_s_at\"                \n",
+       "[38467] \"225228_at\"                   \"225230_at\"                  \n",
+       "[38469] \"221418_s_at\"                 \"221938_x_at\"                \n",
+       "[38471] \"221545_x_at\"                 \"221544_s_at\"                \n",
+       "[38473] \"223146_at\"                   \"223147_s_at\"                \n",
+       "[38475] \"222763_s_at\"                 \"224706_at\"                  \n",
+       "[38477] \"222706_at\"                   \"222204_s_at\"                \n",
+       "[38479] \"222787_s_at\"                 \"221023_s_at\"                \n",
+       "[38481] \"223947_s_at\"                 \"223946_at\"                  \n",
+       "[38483] \"223878_at\"                   \"223539_s_at\"                \n",
+       "[38485] \"223538_at\"                   \"223539_s_at\"                \n",
+       "[38487] \"223538_at\"                   \"221744_at\"                  \n",
+       "[38489] \"224730_at\"                   \"221745_at\"                  \n",
+       "[38491] \"224748_at\"                   \"222145_at\"                  \n",
+       "[38493] \"221501_x_at\"                 \"221501_x_at\"                \n",
+       "[38495] \"221501_x_at\"                 \"221462_x_at\"                \n",
+       "[38497] \"221069_s_at\"                 \"221069_s_at\"                \n",
+       "[38499] \"224969_at\"                   \"222953_at\"                  \n",
+       "[38501] \"222419_x_at\"                 \"221962_s_at\"                \n",
+       "[38503] \"222420_s_at\"                 \"222421_at\"                  \n",
+       "[38505] \"222938_x_at\"                 \"223758_s_at\"                \n",
+       "[38507] \"221540_x_at\"                 \"220687_at\"                  \n",
+       "[38509] \"222291_at\"                   \"221224_s_at\"                \n",
+       "[38511] \"224522_s_at\"                 \"221225_at\"                  \n",
+       "[38513] \"221221_s_at\"                 \"223455_at\"                  \n",
+       "[38515] \"223456_s_at\"                 \"224810_s_at\"                \n",
+       "[38517] \"220798_x_at\"                 \"224212_s_at\"                \n",
+       "[38519] \"223435_s_at\"                 \"221764_at\"                  \n",
+       "[38521] \"221501_x_at\"                 \"221566_s_at\"                \n",
+       "[38523] \"221567_at\"                   \"222629_at\"                  \n",
+       "[38525] \"222628_s_at\"                 \"223736_at\"                  \n",
+       "[38527] \"222782_s_at\"                 \"223498_at\"                  \n",
+       "[38529] \"222872_x_at\"                 \"224301_x_at\"                \n",
+       "[38531] \"225245_x_at\"                 \"220936_s_at\"                \n",
+       "[38533] \"223023_at\"                   \"221769_at\"                  \n",
+       "[38535] \"222493_s_at\"                 \"222717_at\"                  \n",
+       "[38537] \"222837_s_at\"                 \"221084_at\"                  \n",
+       "[38539] \"222151_s_at\"                 \"223778_at\"                  \n",
+       "[38541] \"224952_at\"                   \"225176_at\"                  \n",
+       "[38543] \"224639_at\"                   \"224640_at\"                  \n",
+       "[38545] \"224638_at\"                   \"223740_at\"                  \n",
+       "[38547] \"224102_at\"                   \"222452_s_at\"                \n",
+       "[38549] \"223944_at\"                   \"223335_at\"                  \n",
+       "[38551] \"223968_at\"                   \"221690_s_at\"                \n",
+       "[38553] \"225475_at\"                   \"220711_at\"                  \n",
+       "[38555] \"224598_at\"                   \"221872_at\"                  \n",
+       "[38557] \"223971_at\"                   \"222290_at\"                  \n",
+       "[38559] \"223971_at\"                   \"222290_at\"                  \n",
+       "[38561] \"223971_at\"                   \"222290_at\"                  \n",
+       "[38563] \"223971_at\"                   \"222290_at\"                  \n",
+       "[38565] \"223430_at\"                   \"222686_s_at\"                \n",
+       "[38567] \"222939_s_at\"                 \"220766_at\"                  \n",
+       "[38569] \"223724_s_at\"                 \"225118_at\"                  \n",
+       "[38571] \"225094_at\"                   \"223724_s_at\"                \n",
+       "[38573] \"225449_at\"                   \"225449_at\"                  \n",
+       "[38575] \"225467_s_at\"                 \"223747_x_at\"                \n",
+       "[38577] \"223868_s_at\"                 \"221147_x_at\"                \n",
+       "[38579] \"223724_s_at\"                 \"224598_at\"                  \n",
+       "[38581] \"221206_at\"                   \"222144_at\"                  \n",
+       "[38583] \"220756_s_at\"                 \"222387_s_at\"                \n",
+       "[38585] \"222388_s_at\"                 \"224837_at\"                  \n",
+       "[38587] \"223936_s_at\"                 \"224838_at\"                  \n",
+       "[38589] \"223287_s_at\"                 \"223937_at\"                  \n",
+       "[38591] \"221524_s_at\"                 \"221523_s_at\"                \n",
+       "[38593] \"222123_s_at\"                 \"222124_at\"                  \n",
+       "[38595] \"220717_at\"                   \"222388_s_at\"                \n",
+       "[38597] \"225483_at\"                   \"224839_s_at\"                \n",
+       "[38599] \"223711_s_at\"                 \"221307_at\"                  \n",
+       "[38601] \"221669_s_at\"                 \"223495_at\"                  \n",
+       "[38603] \"223496_s_at\"                 \"223175_s_at\"                \n",
+       "[38605] \"223945_x_at\"                 \"223945_x_at\"                \n",
+       "[38607] \"220593_s_at\"                 \"220592_at\"                  \n",
+       "[38609] \"222669_s_at\"                 \"222669_s_at\"                \n",
+       "[38611] \"223873_s_at\"                 \"224290_at\"                  \n",
+       "[38613] \"222801_s_at\"                 \"222801_s_at\"                \n",
+       "[38615] \"220938_s_at\"                 \"223613_at\"                  \n",
+       "[38617] \"225323_at\"                   \"220868_s_at\"                \n",
+       "[38619] \"223795_at\"                   \"220611_at\"                  \n",
+       "[38621] \"221776_s_at\"                 \"222737_s_at\"                \n",
+       "[38623] \"225527_at\"                   \"221759_at\"                  \n",
+       "[38625] \"222691_at\"                   \"223448_x_at\"                \n",
+       "[38627] \"222820_at\"                   \"221035_s_at\"                \n",
+       "[38629] \"223015_at\"                   \"222427_s_at\"                \n",
+       "[38631] \"222428_s_at\"                 \"223888_s_at\"                \n",
+       "[38633] \"224958_at\"                   \"224938_at\"                  \n",
+       "[38635] \"224956_at\"                   \"224939_at\"                  \n",
+       "[38637] \"224448_s_at\"                 \"224980_at\"                  \n",
+       "[38639] \"220806_x_at\"                 \"221857_s_at\"                \n",
+       "[38641] \"222704_at\"                   \"222278_at\"                  \n",
+       "[38643] \"221139_s_at\"                 \"222170_at\"                  \n",
+       "[38645] \"225326_at\"                   \"223781_x_at\"                \n",
+       "[38647] \"223128_at\"                   \"221402_at\"                  \n",
+       "[38649] \"221501_x_at\"                 \"222190_s_at\"                \n",
+       "[38651] \"221651_x_at\"                 \"224795_x_at\"                \n",
+       "[38653] \"221671_x_at\"                 \"221362_at\"                  \n",
+       "[38655] \"224716_at\"                   \"222845_x_at\"                \n",
+       "[38657] \"223892_s_at\"                 \"224716_at\"                  \n",
+       "[38659] \"222460_s_at\"                 \"223406_x_at\"                \n",
+       "[38661] \"224248_x_at\"                 \"223305_at\"                  \n",
+       "[38663] \"224068_x_at\"                 \"222527_s_at\"                \n",
+       "[38665] \"222488_s_at\"                 \"225102_at\"                  \n",
+       "[38667] \"222453_at\"                   \"223276_at\"                  \n",
+       "[38669] \"221614_s_at\"                 \"221956_at\"                  \n",
+       "[38671] \"222017_x_at\"                 \"223680_at\"                  \n",
+       "[38673] \"224530_s_at\"                 \"223675_s_at\"                \n",
+       "[38675] \"223090_x_at\"                 \"223089_at\"                  \n",
+       "[38677] \"225156_at\"                   \"225421_at\"                  \n",
+       "[38679] \"225431_x_at\"                 \"224823_at\"                  \n",
+       "[38681] \"221375_at\"                   \"221151_at\"                  \n",
+       "[38683] \"221634_at\"                   \"221107_at\"                  \n",
+       "[38685] \"222496_s_at\"                 \"225160_x_at\"                \n",
+       "[38687] \"221751_at\"                   \"221161_at\"                  \n",
+       "[38689] \"221255_s_at\"                 \"223434_at\"                  \n",
+       "[38691] \"223724_s_at\"                 \"221191_at\"                  \n",
+       "[38693] \"221097_s_at\"                 \"223823_at\"                  \n",
+       "[38695] \"222921_s_at\"                 \"222642_s_at\"                \n",
+       "[38697] \"225492_at\"                   \"224947_at\"                  \n",
+       "[38699] \"224338_s_at\"                 \"223499_at\"                  \n",
+       "[38701] \"224286_at\"                   \"221411_at\"                  \n",
+       "[38703] \"224286_at\"                   \"223499_at\"                  \n",
+       "[38705] \"223759_s_at\"                 \"221928_at\"                  \n",
+       "[38707] \"225210_s_at\"                 \"225208_s_at\"                \n",
+       "[38709] \"222919_at\"                   \"222287_at\"                  \n",
+       "[38711] \"223761_at\"                   \"225181_at\"                  \n",
+       "[38713] \"225184_at\"                   \"223070_at\"                  \n",
+       "[38715] \"220631_at\"                   \"223187_s_at\"                \n",
+       "[38717] \"224125_at\"                   \"225162_at\"                  \n",
+       "[38719] \"222986_s_at\"                 \"221659_s_at\"                \n",
+       "[38721] \"221660_at\"                   \"223787_s_at\"                \n",
+       "[38723] \"222052_at\"                   \"222073_at\"                  \n",
+       "[38725] \"221611_s_at\"                 \"220972_s_at\"                \n",
+       "[38727] \"221742_at\"                   \"221743_at\"                  \n",
+       "[38729] \"220639_at\"                   \"222993_at\"                  \n",
+       "[38731] \"224305_s_at\"                 \"224306_at\"                  \n",
+       "[38733] \"221554_at\"                   \"223122_s_at\"                \n",
+       "[38735] \"223121_s_at\"                 \"222812_s_at\"                \n",
+       "[38737] \"222981_s_at\"                 \"222980_at\"                  \n",
+       "[38739] \"223063_at\"                   \"220754_at\"                  \n",
+       "[38741] \"223113_at\"                   \"221993_s_at\"                \n",
+       "[38743] \"222533_at\"                   \"221819_at\"                  \n",
+       "[38745] \"224676_at\"                   \"224680_at\"                  \n",
+       "[38747] \"222480_at\"                   \"222719_s_at\"                \n",
+       "[38749] \"221525_at\"                   \"221924_at\"                  \n",
+       "[38751] \"220572_at\"                   \"223219_s_at\"                \n",
+       "[38753] \"221637_s_at\"                 \"222957_at\"                  \n",
+       "[38755] \"221554_at\"                   \"222432_s_at\"                \n",
+       "[38757] \"221634_at\"                   \"225530_at\"                  \n",
+       "[38759] \"223537_s_at\"                 \"221029_s_at\"                \n",
+       "[38761] \"221530_s_at\"                 \"223185_s_at\"                \n",
+       "[38763] \"223185_s_at\"                 \"220946_s_at\"                \n",
+       "[38765] \"220692_at\"                   \"220692_at\"                  \n",
+       "[38767] \"222119_s_at\"                 \"220646_s_at\"                \n",
+       "[38769] \"221806_s_at\"                 \"222575_at\"                  \n",
+       "[38771] \"223931_s_at\"                 \"223967_at\"                  \n",
+       "[38773] \"225496_s_at\"                 \"220613_s_at\"                \n",
+       "[38775] \"220567_at\"                   \"222821_s_at\"                \n",
+       "[38777] \"224208_at\"                   \"221305_s_at\"                \n",
+       "[38779] \"224229_s_at\"                 \"222880_at\"                  \n",
+       "[38781] \"223665_at\"                   \"224206_x_at\"                \n",
+       "[38783] \"225471_s_at\"                 \"220622_at\"                  \n",
+       "[38785] \"225352_at\"                   \"221470_s_at\"                \n",
+       "[38787] \"224555_x_at\"                 \"222000_at\"                  \n",
+       "[38789] \"221695_s_at\"                 \"223423_at\"                  \n",
+       "[38791] \"223964_x_at\"                 \"223874_at\"                  \n",
+       "[38793] \"221733_s_at\"                 \"220596_at\"                  \n",
+       "[38795] \"225427_s_at\"                 \"221623_at\"                  \n",
+       "[38797] \"223632_s_at\"                 \"223633_s_at\"                \n",
+       "[38799] \"222457_s_at\"                 \"222456_s_at\"                \n",
+       "[38801] \"220765_s_at\"                 \"224025_s_at\"                \n",
+       "[38803] \"222709_at\"                   \"223913_s_at\"                \n",
+       "[38805] \"223973_at\"                   \"221297_at\"                  \n",
+       "[38807] \"222806_s_at\"                 \"222807_at\"                  \n",
+       "[38809] \"224468_s_at\"                 \"222379_at\"                  \n",
+       "[38811] \"223267_at\"                   \"220561_at\"                  \n",
+       "[38813] \"225222_at\"                   \"220560_at\"                  \n",
+       "[38815] \"220558_x_at\"                 \"221794_at\"                  \n",
+       "[38817] \"222003_s_at\"                 \"224500_s_at\"                \n",
+       "[38819] \"220929_at\"                   \"220929_at\"                  \n",
+       "[38821] \"223895_s_at\"                 \"220721_at\"                  \n",
+       "[38823] \"222103_at\"                   \"220896_at\"                  \n",
+       "[38825] \"222283_at\"                   \"221912_s_at\"                \n",
+       "[38827] \"223331_s_at\"                 \"224315_at\"                  \n",
+       "[38829] \"224499_s_at\"                 \"225147_at\"                  \n",
+       "[38831] \"221910_at\"                   \"221911_at\"                  \n",
+       "[38833] \"221845_s_at\"                 \"224510_s_at\"                \n",
+       "[38835] \"223193_x_at\"                 \"220942_x_at\"                \n",
+       "[38837] \"224345_x_at\"                 \"221533_at\"                  \n",
+       "[38839] \"221626_at\"                   \"221724_s_at\"                \n",
+       "[38841] \"223581_at\"                   \"223616_at\"                  \n",
+       "[38843] \"221724_s_at\"                 \"223220_s_at\"                \n",
+       "[38845] \"225415_at\"                   \"221025_x_at\"                \n",
+       "[38847] \"222608_s_at\"                 \"224753_at\"                  \n",
+       "[38849] \"223821_s_at\"                 \"223822_at\"                  \n",
+       "[38851] \"222532_at\"                   \"222843_at\"                  \n",
+       "[38853] \"224911_s_at\"                 \"223096_at\"                  \n",
+       "[38855] \"222318_at\"                   \"225144_at\"                  \n",
+       "[38857] \"222814_s_at\"                 \"220615_s_at\"                \n",
+       "[38859] \"225221_at\"                   \"225050_at\"                  \n",
+       "[38861] \"225090_at\"                   \"220643_s_at\"                \n",
+       "[38863] \"225465_at\"                   \"225474_at\"                  \n",
+       "[38865] \"224191_x_at\"                 \"223935_at\"                  \n",
+       "[38867] \"221154_at\"                   \"224311_s_at\"                \n",
+       "[38869] \"223601_at\"                   \"221363_x_at\"                \n",
+       "[38871] \"221396_at\"                   \"221398_at\"                  \n",
+       "[38873] \"221461_at\"                   \"221395_at\"                  \n",
+       "[38875] \"223237_x_at\"                 \"222900_at\"                  \n",
+       "[38877] \"224552_s_at\"                 \"222988_s_at\"                \n",
+       "[38879] \"222987_s_at\"                 \"224057_s_at\"                \n",
+       "[38881] \"223885_at\"                   \"225169_at\"                  \n",
+       "[38883] \"221206_at\"                   \"221125_s_at\"                \n",
+       "[38885] \"223586_at\"                   \"220658_s_at\"                \n",
+       "[38887] \"224204_x_at\"                 \"225211_at\"                  \n",
+       "[38889] \"224261_at\"                   \"225477_s_at\"                \n",
+       "[38891] \"224593_at\"                   \"223552_at\"                  \n",
+       "[38893] \"223726_at\"                   \"225269_s_at\"                \n",
+       "[38895] \"225265_at\"                   \"222582_at\"                  \n",
+       "[38897] \"223353_at\"                   \"223067_at\"                  \n",
+       "[38899] \"225123_at\"                   \"222647_at\"                  \n",
+       "[38901] \"224888_at\"                   \"224039_at\"                  \n",
+       "[38903] \"221645_s_at\"                 \"221185_s_at\"                \n",
+       "[38905] \"220597_s_at\"                 \"225190_x_at\"                \n",
+       "[38907] \"221154_at\"                   \"221350_at\"                  \n",
+       "[38909] \"222110_at\"                   \"223723_at\"                  \n",
+       "[38911] \"220589_s_at\"                 \"220590_at\"                  \n",
+       "[38913] \"222280_at\"                   \"225045_at\"                  \n",
+       "[38915] \"221078_s_at\"                 \"222237_s_at\"                \n",
+       "[38917] \"221964_at\"                   \"222401_s_at\"                \n",
+       "[38919] \"225399_at\"                   \"225400_at\"                  \n",
+       "[38921] \"220968_s_at\"                 \"223618_at\"                  \n",
+       "[38923] \"224370_s_at\"                 \"220794_at\"                  \n",
+       "[38925] \"220638_s_at\"                 \"220578_at\"                  \n",
+       "[38927] \"221898_at\"                   \"220676_at\"                  \n",
+       "[38929] \"220677_s_at\"                 \"221397_at\"                  \n",
+       "[38931] \"223622_s_at\"                 \"223769_x_at\"                \n",
+       "[38933] \"221435_x_at\"                 \"223425_at\"                  \n",
+       "[38935] \"223577_x_at\"                 \"223578_x_at\"                \n",
+       "[38937] \"220571_at\"                   \"222577_at\"                  \n",
+       "[38939] \"223806_s_at\"                 \"223303_at\"                  \n",
+       "[38941] \"221665_s_at\"                 \"221655_x_at\"                \n",
+       "[38943] \"224514_x_at\"                 \"221926_s_at\"                \n",
+       "[38945] \"220605_s_at\"                 \"225244_at\"                  \n",
+       "[38947] \"221600_s_at\"                 \"221599_at\"                  \n",
+       "[38949] \"224071_at\"                   \"221926_s_at\"                \n",
+       "[38951] \"224569_s_at\"                 \"224572_s_at\"                \n",
+       "[38953] \"224571_at\"                   \"224570_s_at\"                \n",
+       "[38955] \"220998_s_at\"                 \"222671_s_at\"                \n",
+       "[38957] \"221860_at\"                   \"225347_at\"                  \n",
+       "[38959] \"222868_s_at\"                 \"224283_x_at\"                \n",
+       "[38961] \"221498_at\"                   \"221006_s_at\"                \n",
+       "[38963] \"224565_at\"                   \"224566_at\"                  \n",
+       "[38965] \"225239_at\"                   \"220983_s_at\"                \n",
+       "[38967] \"222075_s_at\"                 \"225200_at\"                  \n",
+       "[38969] \"225195_at\"                   \"223698_at\"                  \n",
+       "[38971] \"220744_s_at\"                 \"225231_at\"                  \n",
+       "[38973] \"225234_at\"                   \"224659_at\"                  \n",
+       "[38975] \"224011_at\"                   \"221111_at\"                  \n",
+       "[38977] \"222566_at\"                   \"222759_at\"                  \n",
+       "[38979] \"221165_s_at\"                 \"222974_at\"                  \n",
+       "[38981] \"223679_at\"                   \"225064_at\"                  \n",
+       "[38983] \"225092_at\"                   \"223684_s_at\"                \n",
+       "[38985] \"221226_s_at\"                 \"222875_at\"                  \n",
+       "[38987] \"222640_at\"                   \"221391_at\"                  \n",
+       "[38989] \"221391_at\"                   \"221847_at\"                  \n",
+       "[38991] \"221559_s_at\"                 \"222800_at\"                  \n",
+       "[38993] \"222574_s_at\"                 \"223773_s_at\"                \n",
+       "[38995] \"223174_at\"                   \"223774_at\"                  \n",
+       "[38997] \"223774_at\"                   \"221443_x_at\"                \n",
+       "[38999] \"224865_at\"                   \"224866_at\"                  \n",
+       "[39001] \"223659_at\"                   \"223956_at\"                  \n",
+       "[39003] \"222028_at\"                   \"220847_x_at\"                \n",
+       "[39005] \"221201_s_at\"                 \"223869_at\"                  \n",
+       "[39007] \"224521_s_at\"                 \"224637_at\"                  \n",
+       "[39009] \"223799_at\"                   \"222893_s_at\"                \n",
+       "[39011] \"225369_at\"                   \"221208_s_at\"                \n",
+       "[39013] \"220758_s_at\"                 \"222483_at\"                  \n",
+       "[39015] \"222304_x_at\"                 \"222304_x_at\"                \n",
+       "[39017] \"224985_at\"                   \"221705_s_at\"                \n",
+       "[39019] \"224700_at\"                   \"224852_at\"                  \n",
+       "[39021] \"224849_at\"                   \"222219_s_at\"                \n",
+       "[39023] \"221973_at\"                   \"221973_at\"                  \n",
+       "[39025] \"223016_x_at\"                 \"223716_s_at\"                \n",
+       "[39027] \"223486_at\"                   \"221046_s_at\"                \n",
+       "[39029] \"224603_at\"                   \"224601_at\"                  \n",
+       "[39031] \"225281_at\"                   \"225279_s_at\"                \n",
+       "[39033] \"222212_s_at\"                 \"225065_x_at\"                \n",
+       "[39035] \"220881_at\"                   \"221973_at\"                  \n",
+       "[39037] \"225340_s_at\"                 \"223459_s_at\"                \n",
+       "[39039] \"223459_s_at\"                 \"221222_s_at\"                \n",
+       "[39041] \"223674_s_at\"                 \"222537_s_at\"                \n",
+       "[39043] \"225381_at\"                   \"224392_s_at\"                \n",
+       "[39045] \"221692_s_at\"                 \"223053_x_at\"                \n",
+       "[39047] \"223051_at\"                   \"221180_at\"                  \n",
+       "[39049] \"223038_s_at\"                 \"221529_s_at\"                \n",
+       "[39051] \"223506_at\"                   \"222589_at\"                  \n",
+       "[39053] \"222590_s_at\"                 \"222226_at\"                  \n",
+       "[39055] \"222593_s_at\"                 \"222594_s_at\"                \n",
+       "[39057] \"220577_at\"                   \"221697_at\"                  \n",
+       "[39059] \"220577_at\"                   \"221316_at\"                  \n",
+       "[39061] \"222248_s_at\"                 \"223637_s_at\"                \n",
+       "[39063] \"224172_at\"                   \"220769_s_at\"                \n",
+       "[39065] \"225161_at\"                   \"225158_at\"                  \n",
+       "[39067] \"225153_at\"                   \"220903_at\"                  \n",
+       "[39069] \"222065_s_at\"                 \"223672_at\"                  \n",
+       "[39071] \"222754_at\"                   \"223814_at\"                  \n",
+       "[39073] \"224873_s_at\"                 \"224869_s_at\"                \n",
+       "[39075] \"220952_s_at\"                 \"225178_at\"                  \n",
+       "[39077] \"225180_at\"                   \"223987_at\"                  \n",
+       "[39079] \"224954_at\"                   \"220583_at\"                  \n",
+       "[39081] \"225358_at\"                   \"225359_at\"                  \n",
+       "[39083] \"224673_at\"                   \"220895_at\"                  \n",
+       "[39085] \"224327_s_at\"                 \"225256_at\"                  \n",
+       "[39087] \"224479_s_at\"                 \"220812_s_at\"                \n",
+       "[39089] \"221133_s_at\"                 \"221132_at\"                  \n",
+       "[39091] \"221740_x_at\"                 \"224686_x_at\"                \n",
+       "[39093] \"221131_at\"                   \"221371_at\"                  \n",
+       "[39095] \"224397_s_at\"                 \"222088_s_at\"                \n",
+       "[39097] \"221091_at\"                   \"224833_at\"                  \n",
+       "[39099] \"221821_s_at\"                 \"225298_at\"                  \n",
+       "[39101] \"221821_s_at\"                 \"221821_s_at\"                \n",
+       "[39103] \"225493_at\"                   \"222281_s_at\"                \n",
+       "[39105] \"220829_s_at\"                 \"222969_at\"                  \n",
+       "[39107] \"223170_at\"                   \"220863_at\"                  \n",
+       "[39109] \"220863_at\"                   \"223322_at\"                  \n",
+       "[39111] \"225379_at\"                   \"223064_at\"                  \n",
+       "[39113] \"225128_at\"                   \"221252_s_at\"                \n",
+       "[39115] \"225335_at\"                   \"225333_at\"                  \n",
+       "[39117] \"225349_at\"                   \"222632_s_at\"                \n",
+       "[39119] \"221878_at\"                   \"222385_x_at\"                \n",
+       "[39121] \"223405_at\"                   \"221210_s_at\"                \n",
+       "[39123] \"221278_at\"                   \"224628_at\"                  \n",
+       "[39125] \"224630_at\"                   \"220620_at\"                  \n",
+       "[39127] \"224328_s_at\"                 \"223097_at\"                  \n",
+       "[39129] \"221900_at\"                   \"222737_s_at\"                \n",
+       "[39131] \"221776_s_at\"                 \"221674_s_at\"                \n",
+       "[39133] \"224009_x_at\"                 \"223952_x_at\"                \n",
+       "[39135] \"223066_at\"                   \"224355_s_at\"                \n",
+       "[39137] \"224769_at\"                   \"224778_s_at\"                \n",
+       "[39139] \"223852_s_at\"                 \"225015_s_at\"                \n",
+       "[39141] \"225491_at\"                   \"224644_at\"                  \n",
+       "[39143] \"225043_at\"                   \"225057_at\"                  \n",
+       "[39145] \"223667_at\"                   \"224002_s_at\"                \n",
+       "[39147] \"221437_s_at\"                 \"221710_x_at\"                \n",
+       "[39149] \"224121_x_at\"                 \"223800_s_at\"                \n",
+       "[39151] \"223735_at\"                   \"221612_at\"                  \n",
+       "[39153] \"220664_at\"                   \"221921_s_at\"                \n",
+       "[39155] \"221346_at\"                   \"222077_s_at\"                \n",
+       "[39157] \"221110_x_at\"                 \"224223_s_at\"                \n",
+       "[39159] \"224224_s_at\"                 \"220654_at\"                  \n",
+       "[39161] \"221341_s_at\"                 \"225056_at\"                  \n",
+       "[39163] \"221182_at\"                   \"224951_at\"                  \n",
+       "[39165] \"224610_at\"                   \"223443_s_at\"                \n",
+       "[39167] \"223443_s_at\"                 \"225370_at\"                  \n",
+       "[39169] \"223792_at\"                   \"221634_at\"                  \n",
+       "[39171] \"222151_s_at\"                 \"223148_at\"                  \n",
+       "[39173] \"222056_s_at\"                 \"222055_at\"                  \n",
+       "[39175] \"225157_at\"                   \"221115_s_at\"                \n",
+       "[39177] \"221509_at\"                   \"222684_s_at\"                \n",
+       "[39179] \"222116_s_at\"                 \"222648_at\"                  \n",
+       "[39181] \"225490_at\"                   \"225486_at\"                  \n",
+       "[39183] \"224141_at\"                   \"223800_s_at\"                \n",
+       "[39185] \"224490_s_at\"                 \"224489_at\"                  \n",
+       "[39187] \"221740_x_at\"                 \"224686_x_at\"                \n",
+       "[39189] \"224490_s_at\"                 \"224489_at\"                  \n",
+       "[39191] \"221740_x_at\"                 \"224686_x_at\"                \n",
+       "[39193] \"224686_x_at\"                 \"224686_x_at\"                \n",
+       "[39195] \"224686_x_at\"                 \"221245_s_at\"                \n",
+       "[39197] \"220787_at\"                   \"224015_s_at\"                \n",
+       "[39199] \"224869_s_at\"                 \"224873_s_at\"                \n",
+       "[39201] \"223269_at\"                   \"223269_at\"                  \n",
+       "[39203] \"221723_s_at\"                 \"221723_s_at\"                \n",
+       "[39205] \"223266_at\"                   \"221455_s_at\"                \n",
+       "[39207] \"221455_s_at\"                 \"220871_at\"                  \n",
+       "[39209] \"223454_at\"                   \"222472_at\"                  \n",
+       "[39211] \"224339_s_at\"                 \"224337_s_at\"                \n",
+       "[39213] \"222393_s_at\"                 \"221856_s_at\"                \n",
+       "[39215] \"223800_s_at\"                 \"225044_at\"                  \n",
+       "[39217] \"220599_s_at\"                 \"220598_at\"                  \n",
+       "[39219] \"224113_at\"                   \"222357_at\"                  \n",
+       "[39221] \"224498_x_at\"                 \"222695_s_at\"                \n",
+       "[39223] \"222696_at\"                   \"224176_s_at\"                \n",
+       "[39225] \"222633_at\"                   \"223013_at\"                  \n",
+       "[39227] \"221428_s_at\"                 \"222634_s_at\"                \n",
+       "[39229] \"224692_at\"                   \"224498_x_at\"                \n",
+       "[39231] \"222695_s_at\"                 \"222021_x_at\"                \n",
+       "[39233] \"221331_x_at\"                 \"222406_s_at\"                \n",
+       "[39235] \"224560_at\"                   \"225348_at\"                  \n",
+       "[39237] \"224997_x_at\"                 \"224646_x_at\"                \n",
+       "[39239] \"223731_at\"                   \"221426_s_at\"                \n",
+       "[39241] \"222021_x_at\"                 \"220546_at\"                  \n",
+       "[39243] \"221404_at\"                   \"224230_at\"                  \n",
+       "[39245] \"224262_at\"                   \"224428_s_at\"                \n",
+       "[39247] \"222223_s_at\"                 \"221386_at\"                  \n",
+       "[39249] \"223608_at\"                   \"222214_at\"                  \n",
+       "[39251] \"220912_at\"                   \"225150_s_at\"                \n",
+       "[39253] \"225151_at\"                   \"223103_at\"                  \n",
+       "[39255] \"224855_at\"                   \"223217_s_at\"                \n",
+       "[39257] \"223218_s_at\"                 \"222021_x_at\"                \n",
+       "[39259] \"222021_x_at\"                 \"221341_s_at\"                \n",
+       "[39261] \"221353_at\"                   \"222511_x_at\"                \n",
+       "[39263] \"224217_s_at\"                 \"222403_at\"                  \n",
+       "[39265] \"224550_s_at\"                 \"221189_s_at\"                \n",
+       "[39267] \"221052_at\"                   \"221053_s_at\"                \n",
+       "[39269] \"223530_at\"                   \"220634_at\"                  \n",
+       "[39271] \"223681_s_at\"                 \"221966_at\"                  \n",
+       "[39273] \"224463_s_at\"                 \"224894_at\"                  \n",
+       "[39275] \"224895_at\"                   \"224896_s_at\"                \n",
+       "[39277] \"224908_s_at\"                 \"223403_s_at\"                \n",
+       "[39279] \"223479_s_at\"                 \"222236_s_at\"                \n",
+       "[39281] \"221427_s_at\"                 \"222999_s_at\"                \n",
+       "[39283] \"223881_at\"                   \"222580_at\"                  \n",
+       "[39285] \"220909_at\"                   \"223135_s_at\"                \n",
+       "[39287] \"223134_at\"                   \"225452_at\"                  \n",
+       "[39289] \"225456_at\"                   \"225274_at\"                  \n",
+       "[39291] \"220990_s_at\"                 \"224917_at\"                  \n",
+       "[39293] \"224917_at\"                   \"221326_s_at\"                \n",
+       "[39295] \"224559_at\"                   \"223940_x_at\"                \n",
+       "[39297] \"224558_s_at\"                 \"224567_x_at\"                \n",
+       "[39299] \"224568_x_at\"                 \"221194_s_at\"                \n",
+       "[39301] \"221195_at\"                   \"221194_s_at\"                \n",
+       "[39303] \"221195_at\"                   \"225262_at\"                  \n",
+       "[39305] \"225000_at\"                   \"225011_at\"                  \n",
+       "[39307] \"221229_s_at\"                 \"221468_at\"                  \n",
+       "[39309] \"220745_at\"                   \"222924_at\"                  \n",
+       "[39311] \"224149_x_at\"                 \"225243_s_at\"                \n",
+       "[39313] \"223980_s_at\"                 \"220862_s_at\"                \n",
+       "[39315] \"220690_s_at\"                 \"224116_at\"                  \n",
+       "[39317] \"221083_at\"                   \"221854_at\"                  \n",
+       "[39319] \"225227_at\"                   \"224912_at\"                  \n",
+       "[39321] \"224923_at\"                   \"224924_at\"                  \n",
+       "[39323] \"224773_at\"                   \"224770_s_at\"                \n",
+       "[39325] \"224771_at\"                   \"224774_s_at\"                \n",
+       "[39327] \"224772_at\"                   \"222653_at\"                  \n",
+       "[39329] \"224152_s_at\"                 \"223238_s_at\"                \n",
+       "[39331] \"223400_s_at\"                 \"221212_x_at\"                \n",
+       "[39333] \"224000_at\"                   \"222443_s_at\"                \n",
+       "[39335] \"222443_s_at\"                 \"224333_s_at\"                \n",
+       "[39337] \"224877_s_at\"                 \"224333_s_at\"                \n",
+       "[39339] \"224877_s_at\"                 \"223895_s_at\"                \n",
+       "[39341] \"224308_s_at\"                 \"223416_at\"                  \n",
+       "[39343] \"223849_s_at\"                 \"223780_s_at\"                \n",
+       "[39345] \"224642_at\"                   \"224641_at\"                  \n",
+       "[39347] \"222678_s_at\"                 \"222679_s_at\"                \n",
+       "[39349] \"224185_at\"                   \"221381_s_at\"                \n",
+       "[39351] \"224561_s_at\"                 \"222436_s_at\"                \n",
+       "[39353] \"222437_s_at\"                 \"221476_s_at\"                \n",
+       "[39355] \"221475_s_at\"                 \"223297_at\"                  \n",
+       "[39357] \"221935_s_at\"                 \"224058_s_at\"                \n",
+       "[39359] \"225242_s_at\"                 \"225241_at\"                  \n",
+       "[39361] \"225082_at\"                   \"225519_at\"                  \n",
+       "[39363] \"224800_at\"                   \"222555_s_at\"                \n",
+       "[39365] \"223072_s_at\"                 \"223442_at\"                  \n",
+       "[39367] \"222725_s_at\"                 \"223555_at\"                  \n",
+       "[39369] \"222548_s_at\"                 \"222547_at\"                  \n",
+       "[39371] \"222001_x_at\"                 \"222975_s_at\"                \n",
+       "[39373] \"223837_at\"                   \"225418_at\"                  \n",
+       "[39375] \"222697_s_at\"                 \"223395_at\"                  \n",
+       "[39377] \"224635_s_at\"                 \"222418_s_at\"                \n",
+       "[39379] \"224811_at\"                   \"224531_at\"                  \n",
+       "[39381] \"225005_at\"                   \"225068_at\"                  \n",
+       "[39383] \"220688_s_at\"                 \"225325_at\"                  \n",
+       "[39385] \"223671_x_at\"                 \"224196_x_at\"                \n",
+       "[39387] \"222360_at\"                   \"224060_s_at\"                \n",
+       "[39389] \"220926_s_at\"                 \"223243_s_at\"                \n",
+       "[39391] \"221115_s_at\"                 \"225470_at\"                  \n",
+       "[39393] \"225482_at\"                   \"224020_at\"                  \n",
+       "[39395] \"223762_at\"                   \"225282_at\"                  \n",
+       "[39397] \"224592_x_at\"                 \"224591_at\"                  \n",
+       "[39399] \"220633_s_at\"                 \"222902_s_at\"                \n",
+       "[39401] \"224768_at\"                   \"224775_at\"                  \n",
+       "[39403] \"225085_at\"                   \"225089_at\"                  \n",
+       "[39405] \"223660_at\"                   \"221582_at\"                  \n",
+       "[39407] \"225059_at\"                   \"221770_at\"                  \n",
+       "[39409] \"225039_at\"                   \"225040_s_at\"                \n",
+       "[39411] \"223773_s_at\"                 \"223774_at\"                  \n",
+       "[39413] \"225411_at\"                   \"225412_at\"                  \n",
+       "[39415] \"221636_s_at\"                 \"224728_at\"                  \n",
+       "[39417] \"224729_s_at\"                 \"221216_s_at\"                \n",
+       "[39419] \"224390_s_at\"                 \"224818_at\"                  \n",
+       "[39421] \"223953_s_at\"                 \"221246_x_at\"                \n",
+       "[39423] \"221748_s_at\"                 \"221747_at\"                  \n",
+       "[39425] \"225353_s_at\"                 \"223636_at\"                  \n",
+       "[39427] \"224278_at\"                   \"222323_at\"                  \n",
+       "[39429] \"222323_at\"                   \"225035_x_at\"                \n",
+       "[39431] \"225035_x_at\"                 \"221634_at\"                  \n",
+       "[39433] \"222056_s_at\"                 \"222056_s_at\"                \n",
+       "[39435] \"225278_at\"                   \"225258_at\"                  \n",
+       "[39437] \"223638_at\"                   \"223638_at\"                  \n",
+       "[39439] \"221171_at\"                   \"221768_at\"                  \n",
+       "[39441] \"224529_s_at\"                 \"224121_x_at\"                \n",
+       "[39443] \"223079_s_at\"                 \"221510_s_at\"                \n",
+       "[39445] \"225316_at\"                   \"224364_s_at\"                \n",
+       "[39447] \"223904_at\"                   \"221609_s_at\"                \n",
+       "[39449] \"221990_at\"                   \"222312_s_at\"                \n",
+       "[39451] \"225410_at\"                   \"225409_at\"                  \n",
+       "[39453] \"224406_s_at\"                 \"224404_s_at\"                \n",
+       "[39455] \"224405_at\"                   \"224403_at\"                  \n",
+       "[39457] \"224402_s_at\"                 \"224401_s_at\"                \n",
+       "[39459] \"224278_at\"                   \"224193_s_at\"                \n",
+       "[39461] \"221239_s_at\"                 \"224192_at\"                  \n",
+       "[39463] \"222832_s_at\"                 \"223091_x_at\"                \n",
+       "[39465] \"223354_x_at\"                 \"224691_at\"                  \n",
+       "[39467] \"225442_at\"                   \"222810_s_at\"                \n",
+       "[39469] \"225522_at\"                   \"223938_at\"                  \n",
+       "[39471] \"225112_at\"                   \"225098_at\"                  \n",
+       "[39473] \"222434_at\"                   \"222433_at\"                  \n",
+       "[39475] \"220845_at\"                   \"224824_at\"                  \n",
+       "[39477] \"224820_at\"                   \"223492_s_at\"                \n",
+       "[39479] \"223034_s_at\"                 \"222200_s_at\"                \n",
+       "[39481] \"222468_at\"                   \"223510_at\"                  \n",
+       "[39483] \"222877_at\"                   \"224871_at\"                  \n",
+       "[39485] \"220804_s_at\"                 \"224099_at\"                  \n",
+       "[39487] \"222791_at\"                   \"222789_at\"                  \n",
+       "[39489] \"222788_s_at\"                 \"222790_s_at\"                \n",
+       "[39491] \"222889_at\"                   \"221767_x_at\"                \n",
+       "[39493] \"225012_at\"                   \"222916_s_at\"                \n",
+       "[39495] \"224100_s_at\"                 \"222797_at\"                  \n",
+       "[39497] \"223579_s_at\"                 \"223517_at\"                  \n",
+       "[39499] \"222861_x_at\"                 \"222700_at\"                  \n",
+       "[39501] \"223234_at\"                   \"222343_at\"                  \n",
+       "[39503] \"221235_s_at\"                 \"225447_at\"                  \n",
+       "[39505] \"224233_s_at\"                 \"222584_at\"                  \n",
+       "[39507] \"221142_s_at\"                 \"223619_x_at\"                \n",
+       "[39509] \"225401_at\"                   \"223223_at\"                  \n",
+       "[39511] \"223676_at\"                   \"223656_s_at\"                \n",
+       "[39513] \"222834_s_at\"                 \"221958_s_at\"                \n",
+       "[39515] \"220944_at\"                   \"223851_s_at\"                \n",
+       "[39517] \"224553_s_at\"                 \"224472_x_at\"                \n",
+       "[39519] \"221972_s_at\"                 \"224347_x_at\"                \n",
+       "[39521] \"225209_s_at\"                 \"221505_at\"                  \n",
+       "[39523] \"222997_s_at\"                 \"225529_at\"                  \n",
+       "[39525] \"224312_x_at\"                 \"224312_x_at\"                \n",
+       "[39527] \"220734_s_at\"                 \"221512_at\"                  \n",
+       "[39529] \"221045_s_at\"                 \"220785_at\"                  \n",
+       "[39531] \"220784_s_at\"                 \"224657_at\"                  \n",
+       "[39533] \"222448_s_at\"                 \"223229_at\"                  \n",
+       "[39535] \"220987_s_at\"                 \"222871_at\"                  \n",
+       "[39537] \"222576_s_at\"                 \"224563_at\"                  \n",
+       "[39539] \"221725_at\"                   \"224562_at\"                  \n",
+       "[39541] \"224976_at\"                   \"224975_at\"                  \n",
+       "[39543] \"224970_at\"                   \"222384_at\"                  \n",
+       "[39545] \"224443_at\"                   \"224444_s_at\"                \n",
+       "[39547] \"222315_at\"                   \"224841_x_at\"                \n",
+       "[39549] \"224741_x_at\"                 \"222301_at\"                  \n",
+       "[39551] \"223232_s_at\"                 \"223233_s_at\"                \n",
+       "[39553] \"224064_s_at\"                 \"221264_s_at\"                \n",
+       "[39555] \"222217_s_at\"                 \"225393_at\"                  \n",
+       "[39557] \"224501_at\"                   \"220825_s_at\"                \n",
+       "[39559] \"225303_at\"                   \"221643_s_at\"                \n",
+       "[39561] \"221639_x_at\"                 \"220846_s_at\"                \n",
+       "[39563] \"220579_at\"                   \"224905_at\"                  \n",
+       "[39565] \"224898_at\"                   \"224897_at\"                  \n",
+       "[39567] \"223863_at\"                   \"222095_s_at\"                \n",
+       "[39569] \"223930_at\"                   \"223929_s_at\"                \n",
+       "[39571] \"223777_at\"                   \"223777_at\"                  \n",
+       "[39573] \"223777_at\"                   \"223777_at\"                  \n",
+       "[39575] \"223777_at\"                   \"223777_at\"                  \n",
+       "[39577] \"220810_at\"                   \"220810_at\"                  \n",
+       "[39579] \"222054_at\"                   \"222976_s_at\"                \n",
+       "[39581] \"224164_at\"                   \"221881_s_at\"                \n",
+       "[39583] \"223884_at\"                   \"224867_at\"                  \n",
+       "[39585] \"224867_at\"                   \"222315_at\"                  \n",
+       "[39587] \"224362_at\"                   \"225051_at\"                  \n",
+       "[39589] \"221775_x_at\"                 \"220960_x_at\"                \n",
+       "[39591] \"221726_at\"                   \"221775_x_at\"                \n",
+       "[39593] \"221902_at\"                   \"221267_s_at\"                \n",
+       "[39595] \"222482_at\"                   \"223635_s_at\"                \n",
+       "[39597] \"221832_s_at\"                 \"221831_at\"                  \n",
+       "[39599] \"223549_s_at\"                 \"220680_at\"                  \n",
+       "[39601] \"221057_at\"                   \"225226_at\"                  \n",
+       "[39603] \"223272_s_at\"                 \"222001_x_at\"                \n",
+       "[39605] \"222001_x_at\"                 \"220731_s_at\"                \n",
+       "[39607] \"223617_x_at\"                 \"224706_at\"                  \n",
+       "[39609] \"224708_at\"                   \"221520_s_at\"                \n",
+       "[39611] \"222703_s_at\"                 \"225480_at\"                  \n",
+       "[39613] \"224163_s_at\"                 \"224634_at\"                  \n",
+       "[39615] \"224632_at\"                   \"221648_s_at\"                \n",
+       "[39617] \"222930_s_at\"                 \"224449_at\"                  \n",
+       "[39619] \"225762_x_at\"                 \"225762_x_at\"                \n",
+       "[39621] \"225762_x_at\"                 \"225762_x_at\"                \n",
+       "[39623] \"227330_x_at\"                 \"229748_x_at\"                \n",
+       "[39625] \"227715_at\"                   \"227330_x_at\"                \n",
+       "[39627] \"229748_x_at\"                 \"227715_at\"                  \n",
+       "[39629] \"228492_at\"                   \"228492_at\"                  \n",
+       "[39631] \"228083_at\"                   \"226093_at\"                  \n",
+       "[39633] \"230121_at\"                   \"229674_at\"                  \n",
+       "[39635] \"227446_s_at\"                 \"229561_at\"                  \n",
+       "[39637] \"229567_at\"                   \"229567_at\"                  \n",
+       "[39639] \"228764_s_at\"                 \"228763_at\"                  \n",
+       "[39641] \"228764_s_at\"                 \"228763_at\"                  \n",
+       "[39643] \"228764_s_at\"                 \"228763_at\"                  \n",
+       "[39645] \"228764_s_at\"                 \"225899_x_at\"                \n",
+       "[39647] \"228139_at\"                   \"225899_x_at\"                \n",
+       "[39649] \"227330_x_at\"                 \"227330_x_at\"                \n",
+       "[39651] \"229748_x_at\"                 \"226558_at\"                  \n",
+       "[39653] \"229686_at\"                   \"228447_at\"                  \n",
+       "[39655] \"228742_at\"                   \"228742_at\"                  \n",
+       "[39657] \"225995_x_at\"                 \"226340_x_at\"                \n",
+       "[39659] \"226722_at\"                   \"227923_at\"                  \n",
+       "[39661] \"226857_at\"                   \"230123_at\"                  \n",
+       "[39663] \"229874_x_at\"                 \"229874_x_at\"                \n",
+       "[39665] \"229874_x_at\"                 \"225745_at\"                  \n",
+       "[39667] \"227723_at\"                   \"229532_at\"                  \n",
+       "[39669] \"226816_s_at\"                 \"227493_s_at\"                \n",
+       "[39671] \"226361_at\"                   \"227297_at\"                  \n",
+       "[39673] \"228339_at\"                   \"227779_at\"                  \n",
+       "[39675] \"227780_s_at\"                 \"228339_at\"                  \n",
+       "[39677] \"227779_at\"                   \"226703_at\"                  \n",
+       "[39679] \"227921_at\"                   \"227713_at\"                  \n",
+       "[39681] \"226374_at\"                   \"229127_at\"                  \n",
+       "[39683] \"225915_at\"                   \"225914_s_at\"                \n",
+       "[39685] \"228665_at\"                   \"230305_at\"                  \n",
+       "[39687] \"227808_at\"                   \"226082_s_at\"                \n",
+       "[39689] \"227063_at\"                   \"226288_s_at\"                \n",
+       "[39691] \"227271_at\"                   \"227271_at\"                  \n",
+       "[39693] \"227271_at\"                   \"225629_s_at\"                \n",
+       "[39695] \"227047_x_at\"                 \"226109_at\"                  \n",
+       "[39697] \"225578_at\"                   \"225887_at\"                  \n",
+       "[39699] \"230042_at\"                   \"227208_at\"                  \n",
+       "[39701] \"225862_at\"                   \"229272_at\"                  \n",
+       "[39703] \"225564_at\"                   \"227040_at\"                  \n",
+       "[39705] \"229918_at\"                   \"229097_at\"                  \n",
+       "[39707] \"228863_at\"                   \"227289_at\"                  \n",
+       "[39709] \"229829_at\"                   \"226151_x_at\"                \n",
+       "[39711] \"230345_at\"                   \"229357_at\"                  \n",
+       "[39713] \"225762_x_at\"                 \"225762_x_at\"                \n",
+       "[39715] \"225762_x_at\"                 \"225762_x_at\"                \n",
+       "[39717] \"229437_at\"                   \"226795_at\"                  \n",
+       "[39719] \"228377_at\"                   \"225562_at\"                  \n",
+       "[39721] \"228822_s_at\"                 \"227188_at\"                  \n",
+       "[39723] \"229615_at\"                   \"225769_at\"                  \n",
+       "[39725] \"226584_s_at\"                 \"227058_at\"                  \n",
+       "[39727] \"230394_at\"                   \"227913_at\"                  \n",
+       "[39729] \"227913_at\"                   \"230394_at\"                  \n",
+       "[39731] \"227986_at\"                   \"226236_at\"                  \n",
+       "[39733] \"228239_at\"                   \"228239_at\"                  \n",
+       "[39735] \"226957_x_at\"                 \"225648_at\"                  \n",
+       "[39737] \"225649_s_at\"                 \"227752_at\"                  \n",
+       "[39739] \"229451_at\"                   \"226406_at\"                  \n",
+       "[39741] \"225953_at\"                   \"228566_at\"                  \n",
+       "[39743] \"227089_at\"                   \"228737_at\"                  \n",
+       "[39745] \"229489_at\"                   \"227448_at\"                  \n",
+       "[39747] \"227996_at\"                   \"229668_at\"                  \n",
+       "[39749] \"230143_at\"                   \"230262_at\"                  \n",
+       "[39751] \"226563_at\"                   \"228116_at\"                  \n",
+       "[39753] \"226686_at\"                   \"229963_at\"                  \n",
+       "[39755] \"229238_at\"                   \"227279_at\"                  \n",
+       "[39757] \"226876_at\"                   \"226905_at\"                  \n",
+       "[39759] \"227229_at\"                   \"229653_at\"                  \n",
+       "[39761] \"228708_at\"                   \"229943_at\"                  \n",
+       "[39763] \"230192_at\"                   \"227654_at\"                  \n",
+       "[39765] \"225687_at\"                   \"229210_at\"                  \n",
+       "[39767] \"228115_at\"                   \"227782_at\"                  \n",
+       "[39769] \"229200_at\"                   \"230170_at\"                  \n",
+       "[39771] \"230067_at\"                   \"229718_at\"                  \n",
+       "[39773] \"227194_at\"                   \"229718_at\"                  \n",
+       "[39775] \"229431_at\"                   \"228388_at\"                  \n",
+       "[39777] \"228705_at\"                   \"228597_at\"                  \n",
+       "[39779] \"226882_x_at\"                 \"228761_at\"                  \n",
+       "[39781] \"228524_at\"                   \"226616_s_at\"                \n",
+       "[39783] \"226209_at\"                   \"227428_at\"                  \n",
+       "[39785] \"227742_at\"                   \"227810_at\"                  \n",
+       "[39787] \"226246_at\"                   \"226245_at\"                  \n",
+       "[39789] \"228608_at\"                   \"229036_at\"                  \n",
+       "[39791] \"228998_at\"                   \"226618_at\"                  \n",
+       "[39793] \"226612_at\"                   \"230343_at\"                  \n",
+       "[39795] \"226677_at\"                   \"226676_at\"                  \n",
+       "[39797] \"225995_x_at\"                 \"225995_x_at\"                \n",
+       "[39799] \"226340_x_at\"                 \"225995_x_at\"                \n",
+       "[39801] \"226340_x_at\"                 \"229924_s_at\"                \n",
+       "[39803] \"226924_at\"                   \"229433_at\"                  \n",
+       "[39805] \"226316_at\"                   \"227355_at\"                  \n",
+       "[39807] \"225899_x_at\"                 \"227415_at\"                  \n",
+       "[39809] \"225641_at\"                   \"229661_at\"                  \n",
+       "[39811] \"229538_s_at\"                 \"229404_at\"                  \n",
+       "[39813] \"226557_at\"                   \"228162_at\"                  \n",
+       "[39815] \"228670_at\"                   \"227051_at\"                  \n",
+       "[39817] \"226991_at\"                   \"228442_at\"                  \n",
+       "[39819] \"230178_s_at\"                 \"227519_at\"                  \n",
+       "[39821] \"225666_at\"                   \"226038_at\"                  \n",
+       "[39823] \"227949_at\"                   \"227609_at\"                  \n",
+       "[39825] \"227812_at\"                   \"227961_at\"                  \n",
+       "[39827] \"230093_at\"                   \"229739_s_at\"                \n",
+       "[39829] \"228678_at\"                   \"226585_at\"                  \n",
+       "[39831] \"226479_at\"                   \"229970_at\"                  \n",
+       "[39833] \"229298_at\"                   \"226614_s_at\"                \n",
+       "[39835] \"228698_at\"                   \"226416_at\"                  \n",
+       "[39837] \"228706_s_at\"                 \"228707_at\"                  \n",
+       "[39839] \"225585_at\"                   \"229811_at\"                  \n",
+       "[39841] \"228116_at\"                   \"226512_at\"                  \n",
+       "[39843] \"228889_at\"                   \"227493_s_at\"                \n",
+       "[39845] \"228301_x_at\"                 \"225865_x_at\"                \n",
+       "[39847] \"228645_at\"                   \"228645_at\"                  \n",
+       "[39849] \"228977_at\"                   \"227054_at\"                  \n",
+       "[39851] \"228514_at\"                   \"227013_at\"                  \n",
+       "[39853] \"226747_at\"                   \"230493_at\"                  \n",
+       "[39855] \"229686_at\"                   \"228559_at\"                  \n",
+       "[39857] \"227848_at\"                   \"228559_at\"                  \n",
+       "[39859] \"230281_at\"                   \"230281_at\"                  \n",
+       "[39861] \"229822_at\"                   \"226805_at\"                  \n",
+       "[39863] \"228031_at\"                   \"228347_at\"                  \n",
+       "[39865] \"227630_at\"                   \"228070_at\"                  \n",
+       "[39867] \"229322_at\"                   \"229578_at\"                  \n",
+       "[39869] \"228853_at\"                   \"227699_at\"                  \n",
+       "[39871] \"226591_at\"                   \"226587_at\"                  \n",
+       "[39873] \"228370_at\"                   \"229796_at\"                  \n",
+       "[39875] \"227016_at\"                   \"227017_at\"                  \n",
+       "[39877] \"228024_at\"                   \"227728_at\"                  \n",
+       "[39879] \"229027_at\"                   \"228447_at\"                  \n",
+       "[39881] \"227868_at\"                   \"226340_x_at\"                \n",
+       "[39883] \"227910_at\"                   \"226501_at\"                  \n",
+       "[39885] \"227102_at\"                   \"226360_at\"                  \n",
+       "[39887] \"229116_at\"                   \"229287_at\"                  \n",
+       "[39889] \"227644_at\"                   \"225546_at\"                  \n",
+       "[39891] \"225545_at\"                   \"228017_s_at\"                \n",
+       "[39893] \"228018_at\"                   \"226663_at\"                  \n",
+       "[39895] \"226938_at\"                   \"228446_at\"                  \n",
+       "[39897] \"225843_at\"                   \"227015_at\"                  \n",
+       "[39899] \"227014_at\"                   \"230331_at\"                  \n",
+       "[39901] \"227615_at\"                   \"229749_at\"                  \n",
+       "[39903] \"227401_at\"                   \"226530_at\"                  \n",
+       "[39905] \"226178_at\"                   \"227994_x_at\"                \n",
+       "[39907] \"226179_at\"                   \"226553_at\"                  \n",
+       "[39909] \"226553_at\"                   \"230263_s_at\"                \n",
+       "[39911] \"229689_s_at\"                 \"227547_at\"                  \n",
+       "[39913] \"225860_at\"                   \"228016_s_at\"                \n",
+       "[39915] \"226837_at\"                   \"227730_at\"                  \n",
+       "[39917] \"228045_at\"                   \"226007_at\"                  \n",
+       "[39919] \"227329_at\"                   \"227358_at\"                  \n",
+       "[39921] \"227362_at\"                   \"226267_at\"                  \n",
+       "[39923] \"229073_at\"                   \"229178_at\"                  \n",
+       "[39925] \"227569_at\"                   \"228219_s_at\"                \n",
+       "[39927] \"228837_at\"                   \"226119_at\"                  \n",
+       "[39929] \"228064_at\"                   \"227766_at\"                  \n",
+       "[39931] \"226330_s_at\"                 \"225610_at\"                  \n",
+       "[39933] \"227733_at\"                   \"226358_at\"                  \n",
+       "[39935] \"228013_at\"                   \"229655_at\"                  \n",
+       "[39937] \"229459_at\"                   \"227443_at\"                  \n",
+       "[39939] \"227863_at\"                   \"227886_at\"                  \n",
+       "[39941] \"226956_at\"                   \"229731_at\"                  \n",
+       "[39943] \"228291_s_at\"                 \"228290_at\"                  \n",
+       "[39945] \"228260_at\"                   \"230087_at\"                  \n",
+       "[39947] \"226760_at\"                   \"225890_at\"                  \n",
+       "[39949] \"228543_at\"                   \"228544_s_at\"                \n",
+       "[39951] \"230172_at\"                   \"229550_at\"                  \n",
+       "[39953] \"226439_s_at\"                 \"228170_at\"                  \n",
+       "[39955] \"228639_at\"                   \"227915_at\"                  \n",
+       "[39957] \"225750_at\"                   \"227678_at\"                  \n",
+       "[39959] \"230318_at\"                   \"226546_at\"                  \n",
+       "[39961] \"228851_s_at\"                 \"225679_at\"                  \n",
+       "[39963] \"226244_at\"                   \"226595_at\"                  \n",
+       "[39965] \"227698_s_at\"                 \"228223_at\"                  \n",
+       "[39967] \"226274_at\"                   \"226273_at\"                  \n",
+       "[39969] \"227165_at\"                   \"227967_at\"                  \n",
+       "[39971] \"228449_at\"                   \"227004_at\"                  \n",
+       "[39973] \"228245_s_at\"                 \"228117_at\"                  \n",
+       "[39975] \"228725_x_at\"                 \"228722_at\"                  \n",
+       "[39977] \"228937_at\"                   \"229564_at\"                  \n",
+       "[39979] \"229377_at\"                   \"226380_at\"                  \n",
+       "[39981] \"229738_at\"                   \"226050_at\"                  \n",
+       "[39983] \"229427_at\"                   \"226008_at\"                  \n",
+       "[39985] \"225623_at\"                   \"228740_at\"                  \n",
+       "[39987] \"226633_at\"                   \"227536_at\"                  \n",
+       "[39989] \"226303_at\"                   \"229599_at\"                  \n",
+       "[39991] \"228456_s_at\"                 \"228861_at\"                  \n",
+       "[39993] \"227887_at\"                   \"225995_x_at\"                \n",
+       "[39995] \"226340_x_at\"                 \"228947_x_at\"                \n",
+       "[39997] \"229640_x_at\"                 \"227865_at\"                  \n",
+       "[39999] \"227303_at\"                   \"226550_at\"                  \n",
+       "[40001] \"229980_s_at\"                 \"229981_at\"                  \n",
+       "[40003] \"227026_at\"                   \"226574_at\"                  \n",
+       "[40005] \"228418_at\"                   \"228159_at\"                  \n",
+       "[40007] \"227490_at\"                   \"226798_at\"                  \n",
+       "[40009] \"229321_s_at\"                 \"229908_s_at\"                \n",
+       "[40011] \"230219_at\"                   \"227843_at\"                  \n",
+       "[40013] \"227575_s_at\"                 \"227249_at\"                  \n",
+       "[40015] \"229474_at\"                   \"228133_s_at\"                \n",
+       "[40017] \"228518_at\"                   \"226270_at\"                  \n",
+       "[40019] \"227835_at\"                   \"230269_at\"                  \n",
+       "[40021] \"228947_x_at\"                 \"228225_at\"                  \n",
+       "[40023] \"228723_at\"                   \"229437_at\"                  \n",
+       "[40025] \"228324_at\"                   \"226543_at\"                  \n",
+       "[40027] \"226544_x_at\"                 \"230217_at\"                  \n",
+       "[40029] \"227421_at\"                   \"226404_at\"                  \n",
+       "[40031] \"227223_at\"                   \"226543_at\"                  \n",
+       "[40033] \"227354_at\"                   \"225622_at\"                  \n",
+       "[40035] \"225626_at\"                   \"229893_at\"                  \n",
+       "[40037] \"227021_at\"                   \"229469_at\"                  \n",
+       "[40039] \"228206_at\"                   \"227199_at\"                  \n",
+       "[40041] \"226228_at\"                   \"226684_at\"                  \n",
+       "[40043] \"230222_at\"                   \"227475_at\"                  \n",
+       "[40045] \"228040_at\"                   \"230271_at\"                  \n",
+       "[40047] \"226302_at\"                   \"228177_at\"                  \n",
+       "[40049] \"230097_at\"                   \"228040_at\"                  \n",
+       "[40051] \"227143_s_at\"                 \"228367_at\"                  \n",
+       "[40053] \"226623_at\"                   \"230222_at\"                  \n",
+       "[40055] \"230179_at\"                   \"229882_at\"                  \n",
+       "[40057] \"225675_at\"                   \"226165_at\"                  \n",
+       "[40059] \"227057_at\"                   \"225618_at\"                  \n",
+       "[40061] \"230388_s_at\"                 \"229028_s_at\"                \n",
+       "[40063] \"229028_s_at\"                 \"229028_s_at\"                \n",
+       "[40065] \"229822_at\"                   \"226199_at\"                  \n",
+       "[40067] \"227179_at\"                   \"229417_at\"                  \n",
+       "[40069] \"227628_at\"                   \"228141_at\"                  \n",
+       "[40071] \"229103_at\"                   \"229103_at\"                  \n",
+       "[40073] \"228557_at\"                   \"229176_at\"                  \n",
+       "[40075] \"229642_at\"                   \"227987_at\"                  \n",
+       "[40077] \"227988_s_at\"                 \"226712_at\"                  \n",
+       "[40079] \"228001_at\"                   \"228518_at\"                  \n",
+       "[40081] \"229100_s_at\"                 \"227911_at\"                  \n",
+       "[40083] \"225840_at\"                   \"227871_at\"                  \n",
+       "[40085] \"225682_s_at\"                 \"225678_at\"                  \n",
+       "[40087] \"230470_at\"                   \"230388_s_at\"                \n",
+       "[40089] \"229103_at\"                   \"229103_at\"                  \n",
+       "[40091] \"227057_at\"                   \"225618_at\"                  \n",
+       "[40093] \"226847_at\"                   \"230470_at\"                  \n",
+       "[40095] \"225824_at\"                   \"227600_at\"                  \n",
+       "[40097] \"225892_at\"                   \"229028_s_at\"                \n",
+       "[40099] \"229028_s_at\"                 \"229028_s_at\"                \n",
+       "[40101] \"229286_at\"                   \"229940_at\"                  \n",
+       "[40103] \"229742_at\"                   \"230208_at\"                  \n",
+       "[40105] \"227276_at\"                   \"227995_at\"                  \n",
+       "[40107] \"226865_at\"                   \"226042_at\"                  \n",
+       "[40109] \"230223_at\"                   \"225867_at\"                  \n",
+       "[40111] \"228885_at\"                   \"226152_at\"                  \n",
+       "[40113] \"226650_at\"                   \"226997_at\"                  \n",
+       "[40115] \"229053_at\"                   \"230443_at\"                  \n",
+       "[40117] \"229055_at\"                   \"227542_at\"                  \n",
+       "[40119] \"226044_at\"                   \"226722_at\"                  \n",
+       "[40121] \"226866_at\"                   \"226715_at\"                  \n",
+       "[40123] \"230342_at\"                   \"228911_at\"                  \n",
+       "[40125] \"228438_at\"                   \"228058_at\"                  \n",
+       "[40127] \"229850_at\"                   \"226194_at\"                  \n",
+       "[40129] \"230210_at\"                   \"225624_at\"                  \n",
+       "[40131] \"225608_at\"                   \"230136_at\"                  \n",
+       "[40133] \"227688_at\"                   \"227277_at\"                  \n",
+       "[40135] \"229344_x_at\"                 \"226164_x_at\"                \n",
+       "[40137] \"225999_at\"                   \"225978_at\"                  \n",
+       "[40139] \"225764_at\"                   \"227379_at\"                  \n",
+       "[40141] \"228098_s_at\"                 \"228700_at\"                  \n",
+       "[40143] \"225874_at\"                   \"226738_at\"                  \n",
+       "[40145] \"226629_at\"                   \"228654_at\"                  \n",
+       "[40147] \"227366_at\"                   \"225744_at\"                  \n",
+       "[40149] \"225745_at\"                   \"226626_at\"                  \n",
+       "[40151] \"226628_at\"                   \"229761_at\"                  \n",
+       "[40153] \"228850_s_at\"                 \"227132_at\"                  \n",
+       "[40155] \"228299_at\"                   \"229040_at\"                  \n",
+       "[40157] \"229041_s_at\"                 \"227335_at\"                  \n",
+       "[40159] \"228976_at\"                   \"228976_at\"                  \n",
+       "[40161] \"227125_at\"                   \"229300_at\"                  \n",
+       "[40163] \"229172_at\"                   \"225955_at\"                  \n",
+       "[40165] \"229192_s_at\"                 \"229191_at\"                  \n",
+       "[40167] \"229886_at\"                   \"228284_at\"                  \n",
+       "[40169] \"226789_at\"                   \"228727_at\"                  \n",
+       "[40171] \"227180_at\"                   \"229741_at\"                  \n",
+       "[40173] \"226495_at\"                   \"226107_at\"                  \n",
+       "[40175] \"226105_at\"                   \"226731_at\"                  \n",
+       "[40177] \"227811_at\"                   \"229663_at\"                  \n",
+       "[40179] \"227100_at\"                   \"227083_at\"                  \n",
+       "[40181] \"228155_at\"                   \"228164_at\"                  \n",
+       "[40183] \"228047_at\"                   \"229160_at\"                  \n",
+       "[40185] \"227447_at\"                   \"227256_at\"                  \n",
+       "[40187] \"227191_at\"                   \"225974_at\"                  \n",
+       "[40189] \"225972_at\"                   \"226332_at\"                  \n",
+       "[40191] \"229013_at\"                   \"227305_s_at\"                \n",
+       "[40193] \"227304_at\"                   \"227001_at\"                  \n",
+       "[40195] \"227880_s_at\"                 \"228839_s_at\"                \n",
+       "[40197] \"226276_at\"                   \"230204_at\"                  \n",
+       "[40199] \"226664_at\"                   \"226409_at\"                  \n",
+       "[40201] \"227870_at\"                   \"229100_s_at\"                \n",
+       "[40203] \"226430_at\"                   \"227182_at\"                  \n",
+       "[40205] \"228550_at\"                   \"228770_at\"                  \n",
+       "[40207] \"227496_at\"                   \"227494_at\"                  \n",
+       "[40209] \"228894_at\"                   \"227252_at\"                  \n",
+       "[40211] \"227757_at\"                   \"225785_at\"                  \n",
+       "[40213] \"227298_at\"                   \"226068_at\"                  \n",
+       "[40215] \"230187_s_at\"                 \"225600_at\"                  \n",
+       "[40217] \"225603_s_at\"                 \"225599_s_at\"                \n",
+       "[40219] \"226897_s_at\"                 \"228809_at\"                  \n",
+       "[40221] \"229489_at\"                   \"226436_at\"                  \n",
+       "[40223] \"228964_at\"                   \"225947_at\"                  \n",
+       "[40225] \"228809_at\"                   \"226459_at\"                  \n",
+       "[40227] \"225628_s_at\"                 \"226727_at\"                  \n",
+       "[40229] \"227626_at\"                   \"226423_at\"                  \n",
+       "[40231] \"229900_at\"                   \"226545_at\"                  \n",
+       "[40233] \"227424_x_at\"                 \"228908_s_at\"                \n",
+       "[40235] \"228909_at\"                   \"226995_at\"                  \n",
+       "[40237] \"228662_at\"                   \"226572_at\"                  \n",
+       "[40239] \"227531_at\"                   \"225856_at\"                  \n",
+       "[40241] \"228066_at\"                   \"226727_at\"                  \n",
+       "[40243] \"225758_s_at\"                 \"227571_at\"                  \n",
+       "[40245] \"225669_at\"                   \"225661_at\"                  \n",
+       "[40247] \"226638_at\"                   \"230013_s_at\"                \n",
+       "[40249] \"226672_s_at\"                 \"226465_s_at\"                \n",
+       "[40251] \"228236_at\"                   \"226914_at\"                  \n",
+       "[40253] \"226915_s_at\"                 \"225899_x_at\"                \n",
+       "[40255] \"227129_x_at\"                 \"226214_at\"                  \n",
+       "[40257] \"226517_at\"                   \"230444_at\"                  \n",
+       "[40259] \"225899_x_at\"                 \"227129_x_at\"                \n",
+       "[40261] \"225619_at\"                   \"226208_at\"                  \n",
+       "[40263] \"227314_at\"                   \"227174_at\"                  \n",
+       "[40265] \"229846_s_at\"                 \"229845_at\"                  \n",
+       "[40267] \"228008_at\"                   \"226672_s_at\"                \n",
+       "[40269] \"227412_at\"                   \"227409_at\"                  \n",
+       "[40271] \"229001_at\"                   \"229876_at\"                  \n",
+       "[40273] \"227723_at\"                   \"228408_s_at\"                \n",
+       "[40275] \"228007_at\"                   \"227031_at\"                  \n",
+       "[40277] \"226918_at\"                   \"227889_at\"                  \n",
+       "[40279] \"230483_at\"                   \"226340_x_at\"                \n",
+       "[40281] \"226352_at\"                   \"227803_at\"                  \n",
+       "[40283] \"230090_at\"                   \"229953_x_at\"                \n",
+       "[40285] \"227330_x_at\"                 \"229748_x_at\"                \n",
+       "[40287] \"227086_at\"                   \"227330_x_at\"                \n",
+       "[40289] \"229748_x_at\"                 \"227715_at\"                  \n",
+       "[40291] \"226558_at\"                   \"227330_x_at\"                \n",
+       "[40293] \"229748_x_at\"                 \"227715_at\"                  \n",
+       "[40295] \"226558_at\"                   \"226574_at\"                  \n",
+       "[40297] \"229312_s_at\"                 \"230075_at\"                  \n",
+       "[40299] \"230011_at\"                   \"228915_at\"                  \n",
+       "[40301] \"225548_at\"                   \"228400_at\"                  \n",
+       "[40303] \"226686_at\"                   \"228185_at\"                  \n",
+       "[40305] \"226652_at\"                   \"230231_at\"                  \n",
+       "[40307] \"230288_at\"                   \"228995_at\"                  \n",
+       "[40309] \"230127_at\"                   \"230351_at\"                  \n",
+       "[40311] \"229934_at\"                   \"226394_at\"                  \n",
+       "[40313] \"226415_at\"                   \"229974_at\"                  \n",
+       "[40315] \"226467_at\"                   \"227160_s_at\"                \n",
+       "[40317] \"225563_at\"                   \"226259_at\"                  \n",
+       "[40319] \"226385_s_at\"                 \"226386_at\"                  \n",
+       "[40321] \"229146_at\"                   \"226498_at\"                  \n",
+       "[40323] \"226497_s_at\"                 \"227944_at\"                  \n",
+       "[40325] \"228969_at\"                   \"226504_at\"                  \n",
+       "[40327] \"226069_at\"                   \"226065_at\"                  \n",
+       "[40329] \"226835_s_at\"                 \"226227_x_at\"                \n",
+       "[40331] \"229214_at\"                   \"228069_at\"                  \n",
+       "[40333] \"226835_s_at\"                 \"226189_at\"                  \n",
+       "[40335] \"229640_x_at\"                 \"226429_at\"                  \n",
+       "[40337] \"229078_s_at\"                 \"229891_x_at\"                \n",
+       "[40339] \"228109_at\"                   \"230185_at\"                  \n",
+       "[40341] \"228241_at\"                   \"227072_at\"                  \n",
+       "[40343] \"229138_at\"                   \"228609_at\"                  \n",
+       "[40345] \"229143_at\"                   \"228389_at\"                  \n",
+       "[40347] \"228752_at\"                   \"227710_s_at\"                \n",
+       "[40349] \"227709_at\"                   \"228913_at\"                  \n",
+       "[40351] \"226407_at\"                   \"228745_at\"                  \n",
+       "[40353] \"226895_at\"                   \"226377_at\"                  \n",
+       "[40355] \"226542_at\"                   \"226403_at\"                  \n",
+       "[40357] \"227850_x_at\"                 \"226782_at\"                  \n",
+       "[40359] \"227525_at\"                   \"225706_at\"                  \n",
+       "[40361] \"225700_at\"                   \"228822_s_at\"                \n",
+       "[40363] \"225582_at\"                   \"227482_at\"                  \n",
+       "[40365] \"227471_at\"                   \"230496_at\"                  \n",
+       "[40367] \"228789_at\"                   \"228140_s_at\"                \n",
+       "[40369] \"228010_at\"                   \"228298_at\"                  \n",
+       "[40371] \"229203_at\"                   \"229909_at\"                  \n",
+       "[40373] \"226403_at\"                   \"230338_x_at\"                \n",
+       "[40375] \"227116_at\"                   \"228783_at\"                  \n",
+       "[40377] \"229491_at\"                   \"226258_at\"                  \n",
+       "[40379] \"229390_at\"                   \"229391_s_at\"                \n",
+       "[40381] \"225812_at\"                   \"226124_at\"                  \n",
+       "[40383] \"228988_at\"                   \"225809_at\"                  \n",
+       "[40385] \"229800_at\"                   \"226403_at\"                  \n",
+       "[40387] \"228831_s_at\"                 \"230386_at\"                  \n",
+       "[40389] \"226606_s_at\"                 \"226854_at\"                  \n",
+       "[40391] \"226598_s_at\"                 \"225801_at\"                  \n",
+       "[40393] \"225803_at\"                   \"226218_at\"                  \n",
+       "[40395] \"228128_x_at\"                 \"229228_at\"                  \n",
+       "[40397] \"228044_at\"                   \"226009_at\"                  \n",
+       "[40399] \"228876_at\"                   \"227921_at\"                  \n",
+       "[40401] \"227835_at\"                   \"227921_at\"                  \n",
+       "[40403] \"227835_at\"                   \"227921_at\"                  \n",
+       "[40405] \"227835_at\"                   \"229990_at\"                  \n",
+       "[40407] \"227042_at\"                   \"226383_at\"                  \n",
+       "[40409] \"227059_at\"                   \"227658_s_at\"                \n",
+       "[40411] \"227629_at\"                   \"227813_at\"                  \n",
+       "[40413] \"228802_at\"                   \"227176_at\"                  \n",
+       "[40415] \"226686_at\"                   \"226689_at\"                  \n",
+       "[40417] \"228358_at\"                   \"226682_at\"                  \n",
+       "[40419] \"226607_at\"                   \"225825_at\"                  \n",
+       "[40421] \"227319_at\"                   \"226424_at\"                  \n",
+       "[40423] \"230283_at\"                   \"226212_s_at\"                \n",
+       "[40425] \"226216_at\"                   \"226450_at\"                  \n",
+       "[40427] \"228788_at\"                   \"228296_at\"                  \n",
+       "[40429] \"227067_x_at\"                 \"226740_x_at\"                \n",
+       "[40431] \"229447_x_at\"                 \"226126_at\"                  \n",
+       "[40433] \"229143_at\"                   \"227067_x_at\"                \n",
+       "[40435] \"227850_x_at\"                 \"225553_at\"                  \n",
+       "[40437] \"226403_at\"                   \"226343_at\"                  \n",
+       "[40439] \"227018_at\"                   \"229029_at\"                  \n",
+       "[40441] \"229294_at\"                   \"229645_at\"                  \n",
+       "[40443] \"230497_at\"                   \"226390_at\"                  \n",
+       "[40445] \"227084_at\"                   \"227250_at\"                  \n",
+       "[40447] \"228941_at\"                   \"228295_at\"                  \n",
+       "[40449] \"228690_s_at\"                 \"228689_at\"                  \n",
+       "[40451] \"228014_at\"                   \"229349_at\"                  \n",
+       "[40453] \"230442_at\"                   \"226533_at\"                  \n",
+       "[40455] \"226537_at\"                   \"228697_at\"                  \n",
+       "[40457] \"229543_at\"                   \"226403_at\"                  \n",
+       "[40459] \"227972_at\"                   \"229714_at\"                  \n",
+       "[40461] \"226673_at\"                   \"226403_at\"                  \n",
+       "[40463] \"229238_at\"                   \"230076_at\"                  \n",
+       "[40465] \"229035_s_at\"                 \"229000_at\"                  \n",
+       "[40467] \"225582_at\"                   \"228956_at\"                  \n",
+       "[40469] \"226463_at\"                   \"228741_s_at\"                \n",
+       "[40471] \"229776_at\"                   \"227367_at\"                  \n",
+       "[40473] \"229071_at\"                   \"226403_at\"                  \n",
+       "[40475] \"227860_at\"                   \"227785_at\"                  \n",
+       "[40477] \"229454_at\"                   \"228328_at\"                  \n",
+       "[40479] \"229971_at\"                   \"227257_s_at\"                \n",
+       "[40481] \"227258_at\"                   \"226403_at\"                  \n",
+       "[40483] \"228142_at\"                   \"226613_at\"                  \n",
+       "[40485] \"226557_at\"                   \"228670_at\"                  \n",
+       "[40487] \"226613_at\"                   \"226233_at\"                  \n",
+       "[40489] \"226133_s_at\"                 \"227719_at\"                  \n",
+       "[40491] \"225602_at\"                   \"225604_s_at\"                \n",
+       "[40493] \"228787_s_at\"                 \"227825_at\"                  \n",
+       "[40495] \"227786_at\"                   \"227787_s_at\"                \n",
+       "[40497] \"227467_at\"                   \"226021_at\"                  \n",
+       "[40499] \"227297_at\"                   \"225562_at\"                  \n",
+       "[40501] \"226680_at\"                   \"227516_at\"                  \n",
+       "[40503] \"228844_at\"                   \"228220_at\"                  \n",
+       "[40505] \"225655_at\"                   \"229881_at\"                  \n",
+       "[40507] \"227261_at\"                   \"227322_s_at\"                \n",
+       "[40509] \"227896_at\"                   \"228931_at\"                  \n",
+       "[40511] \"230402_at\"                   \"228365_at\"                  \n",
+       "[40513] \"230151_at\"                   \"230316_at\"                  \n",
+       "[40515] \"228855_at\"                   \"225779_at\"                  \n",
+       "[40517] \"228743_at\"                   \"226807_at\"                  \n",
+       "[40519] \"228626_at\"                   \"226137_at\"                  \n",
+       "[40521] \"225797_at\"                   \"227152_at\"                  \n",
+       "[40523] \"229889_at\"                   \"228983_at\"                  \n",
+       "[40525] \"229342_at\"                   \"225959_s_at\"                \n",
+       "[40527] \"225962_at\"                   \"225960_at\"                  \n",
+       "[40529] \"230040_at\"                   \"226817_at\"                  \n",
+       "[40531] \"230380_at\"                   \"230003_at\"                  \n",
+       "[40533] \"229390_at\"                   \"229391_s_at\"                \n",
+       "[40535] \"228897_at\"                   \"229721_x_at\"                \n",
+       "[40537] \"230267_at\"                   \"229732_at\"                  \n",
+       "[40539] \"229360_at\"                   \"227423_at\"                  \n",
+       "[40541] \"229696_at\"                   \"227678_at\"                  \n",
+       "[40543] \"230285_at\"                   \"230006_s_at\"                \n",
+       "[40545] \"230005_at\"                   \"226278_at\"                  \n",
+       "[40547] \"227806_at\"                   \"229143_at\"                  \n",
+       "[40549] \"228636_at\"                   \"226294_x_at\"                \n",
+       "[40551] \"226786_at\"                   \"225650_at\"                  \n",
+       "[40553] \"227290_at\"                   \"227850_x_at\"                \n",
+       "[40555] \"227855_at\"                   \"228511_s_at\"                \n",
+       "[40557] \"226907_at\"                   \"226403_at\"                  \n",
+       "[40559] \"228117_at\"                   \"225794_s_at\"                \n",
+       "[40561] \"225795_at\"                   \"228034_x_at\"                \n",
+       "[40563] \"226911_at\"                   \"226873_at\"                  \n",
+       "[40565] \"227966_s_at\"                 \"229092_at\"                  \n",
+       "[40567] \"225639_at\"                   \"225656_at\"                  \n",
+       "[40569] \"228897_at\"                   \"229721_x_at\"                \n",
+       "[40571] \"229039_at\"                   \"228692_at\"                  \n",
+       "[40573] \"229063_s_at\"                 \"229224_x_at\"                \n",
+       "[40575] \"228256_s_at\"                 \"227480_at\"                  \n",
+       "[40577] \"226579_at\"                   \"227397_at\"                  \n",
+       "[40579] \"228001_at\"                   \"229411_at\"                  \n",
+       "[40581] \"226860_at\"                   \"229126_at\"                  \n",
+       "[40583] \"227768_at\"                   \"227756_at\"                  \n",
+       "[40585] \"229548_at\"                   \"225794_s_at\"                \n",
+       "[40587] \"225795_at\"                   \"228117_at\"                  \n",
+       "[40589] \"225884_s_at\"                 \"229222_at\"                  \n",
+       "[40591] \"228283_at\"                   \"225759_x_at\"                \n",
+       "[40593] \"225757_s_at\"                 \"228202_at\"                  \n",
+       "[40595] \"227204_at\"                   \"227215_at\"                  \n",
+       "[40597] \"227214_at\"                   \"226323_at\"                  \n",
+       "[40599] \"226315_at\"                   \"226567_at\"                  \n",
+       "[40601] \"226815_at\"                   \"229515_at\"                  \n",
+       "[40603] \"226231_at\"                   \"226223_at\"                  \n",
+       "[40605] \"229556_at\"                   \"229691_at\"                  \n",
+       "[40607] \"227507_at\"                   \"230237_at\"                  \n",
+       "[40609] \"226555_at\"                   \"227931_at\"                  \n",
+       "[40611] \"227924_at\"                   \"228811_at\"                  \n",
+       "[40613] \"229729_at\"                   \"230356_at\"                  \n",
+       "[40615] \"227837_at\"                   \"229647_at\"                  \n",
+       "[40617] \"228749_at\"                   \"226831_at\"                  \n",
+       "[40619] \"226375_at\"                   \"228387_at\"                  \n",
+       "[40621] \"226114_at\"                   \"226113_at\"                  \n",
+       "[40623] \"229086_at\"                   \"226388_at\"                  \n",
+       "[40625] \"229820_at\"                   \"230077_at\"                  \n",
+       "[40627] \"228361_at\"                   \"230416_at\"                  \n",
+       "[40629] \"225830_at\"                   \"225829_at\"                  \n",
+       "[40631] \"230077_at\"                   \"229820_at\"                  \n",
+       "[40633] \"225897_at\"                   \"230424_at\"                  \n",
+       "[40635] \"230424_at\"                   \"226301_at\"                  \n",
+       "[40637] \"228383_at\"                   \"228405_at\"                  \n",
+       "[40639] \"226812_at\"                   \"226167_at\"                  \n",
+       "[40641] \"227186_s_at\"                 \"225586_at\"                  \n",
+       "[40643] \"230077_at\"                   \"229820_at\"                  \n",
+       "[40645] \"226120_at\"                   \"227477_at\"                  \n",
+       "[40647] \"225794_s_at\"                 \"225795_at\"                  \n",
+       "[40649] \"228117_at\"                   \"228117_at\"                  \n",
+       "[40651] \"226405_s_at\"                 \"229705_at\"                  \n",
+       "[40653] \"229977_at\"                   \"228303_at\"                  \n",
+       "[40655] \"226602_s_at\"                 \"230308_at\"                  \n",
+       "[40657] \"230309_at\"                   \"228819_at\"                  \n",
+       "[40659] \"227307_at\"                   \"229820_at\"                  \n",
+       "[40661] \"230077_at\"                   \"226934_at\"                  \n",
+       "[40663] \"225580_at\"                   \"225581_s_at\"                \n",
+       "[40665] \"227559_at\"                   \"227213_at\"                  \n",
+       "[40667] \"226984_at\"                   \"226985_at\"                  \n",
+       "[40669] \"230472_at\"                   \"227805_at\"                  \n",
+       "[40671] \"229861_at\"                   \"230457_at\"                  \n",
+       "[40673] \"225802_at\"                   \"229820_at\"                  \n",
+       "[40675] \"230077_at\"                   \"226466_s_at\"                \n",
+       "[40677] \"226651_at\"                   \"226332_at\"                  \n",
+       "[40679] \"229025_s_at\"                 \"226769_at\"                  \n",
+       "[40681] \"229694_at\"                   \"226850_at\"                  \n",
+       "[40683] \"226850_at\"                   \"226992_at\"                  \n",
+       "[40685] \"227530_at\"                   \"227529_s_at\"                \n",
+       "[40687] \"228862_at\"                   \"227390_at\"                  \n",
+       "[40689] \"226210_s_at\"                 \"226211_at\"                  \n",
+       "[40691] \"229557_at\"                   \"225867_at\"                  \n",
+       "[40693] \"227662_at\"                   \"225721_at\"                  \n",
+       "[40695] \"225895_at\"                   \"225894_at\"                  \n",
+       "[40697] \"225720_at\"                   \"227540_at\"                  \n",
+       "[40699] \"227481_at\"                   \"226305_at\"                  \n",
+       "[40701] \"229999_at\"                   \"228174_at\"                  \n",
+       "[40703] \"226492_at\"                   \"226030_at\"                  \n",
+       "[40705] \"227048_at\"                   \"229650_s_at\"                \n",
+       "[40707] \"228072_at\"                   \"229961_x_at\"                \n",
+       "[40709] \"229415_at\"                   \"227197_at\"                  \n",
+       "[40711] \"227238_at\"                   \"227241_at\"                  \n",
+       "[40713] \"226884_at\"                   \"228556_at\"                  \n",
+       "[40715] \"226084_at\"                   \"228774_at\"                  \n",
+       "[40717] \"228339_at\"                   \"227779_at\"                  \n",
+       "[40719] \"230385_at\"                   \"227905_s_at\"                \n",
+       "[40721] \"227904_at\"                   \"226372_at\"                  \n",
+       "[40723] \"226368_at\"                   \"230177_at\"                  \n",
+       "[40725] \"230177_at\"                   \"227656_at\"                  \n",
+       "[40727] \"229820_at\"                   \"230077_at\"                  \n",
+       "[40729] \"226290_at\"                   \"228277_at\"                  \n",
+       "[40731] \"229365_at\"                   \"227895_at\"                  \n",
+       "[40733] \"226774_at\"                   \"227938_s_at\"                \n",
+       "[40735] \"227039_at\"                   \"226031_at\"                  \n",
+       "[40737] \"228677_s_at\"                 \"229395_at\"                  \n",
+       "[40739] \"227030_at\"                   \"227634_at\"                  \n",
+       "[40741] \"226264_at\"                   \"226438_at\"                  \n",
+       "[40743] \"227562_at\"                   \"228154_at\"                  \n",
+       "[40745] \"228935_at\"                   \"228175_at\"                  \n",
+       "[40747] \"229623_at\"                   \"229961_x_at\"                \n",
+       "[40749] \"229820_at\"                   \"230077_at\"                  \n",
+       "[40751] \"226536_at\"                   \"228840_at\"                  \n",
+       "[40753] \"229898_at\"                   \"227151_at\"                  \n",
+       "[40755] \"227076_at\"                   \"229878_at\"                  \n",
+       "[40757] \"227478_at\"                   \"229567_at\"                  \n",
+       "[40759] \"227874_at\"                   \"226974_at\"                  \n",
+       "[40761] \"225577_at\"                   \"225584_at\"                  \n",
+       "[40763] \"229526_at\"                   \"227938_s_at\"                \n",
+       "[40765] \"229890_at\"                   \"230054_at\"                  \n",
+       "[40767] \"229890_at\"                   \"230054_at\"                  \n",
+       "[40769] \"230261_at\"                   \"228710_at\"                  \n",
+       "[40771] \"228857_at\"                   \"228946_at\"                  \n",
+       "[40773] \"227076_at\"                   \"226070_at\"                  \n",
+       "[40775] \"228009_x_at\"                 \"227673_at\"                  \n",
+       "[40777] \"230430_at\"                   \"229866_at\"                  \n",
+       "[40779] \"225777_at\"                   \"227126_at\"                  \n",
+       "[40781] \"229410_at\"                   \"227518_at\"                  \n",
+       "[40783] \"228057_at\"                   \"227455_at\"                  \n",
+       "[40785] \"227456_s_at\"                 \"230047_at\"                  \n",
+       "[40787] \"229907_at\"                   \"226200_at\"                  \n",
+       "[40789] \"230372_at\"                   \"228401_at\"                  \n",
+       "[40791] \"225891_at\"                   \"226200_at\"                  \n",
+       "[40793] \"229880_at\"                   \"230221_at\"                  \n",
+       "[40795] \"229901_at\"                   \"230264_s_at\"                \n",
+       "[40797] \"228415_at\"                   \"225973_at\"                  \n",
+       "[40799] \"228494_at\"                   \"226200_at\"                  \n",
+       "[40801] \"225973_at\"                   \"225577_at\"                  \n",
+       "[40803] \"225584_at\"                   \"228186_s_at\"                \n",
+       "[40805] \"229233_at\"                   \"229084_at\"                  \n",
+       "[40807] \"230096_at\"                   \"228051_at\"                  \n",
+       "[40809] \"226499_at\"                   \"226878_at\"                  \n",
+       "[40811] \"230025_at\"                   \"226842_at\"                  \n",
+       "[40813] \"227455_at\"                   \"227456_s_at\"                \n",
+       "[40815] \"228857_at\"                   \"228047_at\"                  \n",
+       "[40817] \"225592_at\"                   \"230221_at\"                  \n",
+       "[40819] \"226290_at\"                   \"226384_at\"                  \n",
+       "[40821] \"226150_at\"                   \"226878_at\"                  \n",
+       "[40823] \"227492_at\"                   \"230177_at\"                  \n",
+       "[40825] \"226362_at\"                   \"226365_at\"                  \n",
+       "[40827] \"228510_at\"                   \"230177_at\"                  \n",
+       "[40829] \"229890_at\"                   \"230054_at\"                  \n",
+       "[40831] \"229890_at\"                   \"230054_at\"                  \n",
+       "[40833] \"226575_at\"                   \"225592_at\"                  \n",
+       "[40835] \"225592_at\"                   \"226150_at\"                  \n",
+       "[40837] \"226683_at\"                   \"226824_at\"                  \n",
+       "[40839] \"226472_at\"                   \"229890_at\"                  \n",
+       "[40841] \"230054_at\"                   \"229890_at\"                  \n",
+       "[40843] \"230054_at\"                   \"227656_at\"                  \n",
+       "[40845] \"228764_s_at\"                 \"228635_at\"                  \n",
+       "[40847] \"226200_at\"                   \"229018_at\"                  \n",
+       "[40849] \"228763_at\"                   \"228764_s_at\"                \n",
+       "[40851] \"226878_at\"                   \"228763_at\"                  \n",
+       "[40853] \"228764_s_at\"                 \"228763_at\"                  \n",
+       "[40855] \"228764_s_at\"                 \"227657_at\"                  \n",
+       "[40857] \"229024_at\"                   \"226548_at\"                  \n",
+       "[40859] \"226549_at\"                   \"229749_at\"                  \n",
+       "[40861] \"229563_s_at\"                 \"227399_at\"                  \n",
+       "[40863] \"228037_at\"                   \"228510_at\"                  \n",
+       "[40865] \"229802_at\"                   \"230062_at\"                  \n",
+       "[40867] \"230096_at\"                   \"225576_at\"                  \n",
+       "[40869] \"228653_at\"                   \"225592_at\"                  \n",
+       "[40871] \"225592_at\"                   \"228857_at\"                  \n",
+       "[40873] \"225592_at\"                   \"230221_at\"                  \n",
+       "[40875] \"226799_at\"                   \"229034_at\"                  \n",
+       "[40877] \"228009_x_at\"                 \"227673_at\"                  \n",
+       "[40879] \"228394_at\"                   \"225973_at\"                  \n",
+       "[40881] \"228326_at\"                   \"226261_at\"                  \n",
+       "[40883] \"228139_at\"                   \"226332_at\"                  \n",
+       "[40885] \"225667_s_at\"                 \"228459_at\"                  \n",
+       "[40887] \"229546_at\"                   \"230444_at\"                  \n",
+       "[40889] \"225592_at\"                   \"228009_x_at\"                \n",
+       "[40891] \"227673_at\"                   \"228510_at\"                  \n",
+       "[40893] \"228490_at\"                   \"228009_x_at\"                \n",
+       "[40895] \"227673_at\"                   \"225577_at\"                  \n",
+       "[40897] \"225584_at\"                   \"226200_at\"                  \n",
+       "[40899] \"229636_at\"                   \"230390_at\"                  \n",
+       "[40901] \"230398_at\"                   \"229880_at\"                  \n",
+       "[40903] \"230109_at\"                   \"226741_at\"                  \n",
+       "[40905] \"228544_s_at\"                 \"230469_at\"                  \n",
+       "[40907] \"226819_at\"                   \"226826_at\"                  \n",
+       "[40909] \"226200_at\"                   \"227060_at\"                  \n",
+       "[40911] \"226585_at\"                   \"227234_at\"                  \n",
+       "[40913] \"225592_at\"                   \"225592_at\"                  \n",
+       "[40915] \"229139_at\"                   \"229076_s_at\"                \n",
+       "[40917] \"229890_at\"                   \"230054_at\"                  \n",
+       "[40919] \"229890_at\"                   \"230054_at\"                  \n",
+       "[40921] \"225592_at\"                   \"225592_at\"                  \n",
+       "[40923] \"229155_at\"                   \"227163_at\"                  \n",
+       "[40925] \"228399_at\"                   \"226838_at\"                  \n",
+       "[40927] \"230096_at\"                   \"226552_at\"                  \n",
+       "[40929] \"226559_at\"                   \"228624_at\"                  \n",
+       "[40931] \"226754_at\"                   \"227283_at\"                  \n",
+       "[40933] \"228857_at\"                   \"225577_at\"                  \n",
+       "[40935] \"225584_at\"                   \"228886_at\"                  \n",
+       "[40937] \"228884_at\"                   \"230311_s_at\"                \n",
+       "[40939] \"226181_at\"                   \"229059_at\"                  \n",
+       "[40941] \"228009_x_at\"                 \"227673_at\"                  \n",
+       "[40943] \"230134_s_at\"                 \"230133_at\"                  \n",
+       "[40945] \"225813_at\"                   \"227999_at\"                  \n",
+       "[40947] \"225748_at\"                   \"227455_at\"                  \n",
+       "[40949] \"227456_s_at\"                 \"226930_at\"                  \n",
+       "[40951] \"225973_at\"                   \"229697_at\"                  \n",
+       "[40953] \"227235_at\"                   \"228081_at\"                  \n",
+       "[40955] \"226926_at\"                   \"227286_at\"                  \n",
+       "[40957] \"227162_at\"                   \"227581_at\"                  \n",
+       "[40959] \"227580_s_at\"                 \"228009_x_at\"                \n",
+       "[40961] \"227673_at\"                   \"226698_at\"                  \n",
+       "[40963] \"226699_at\"                   \"227790_at\"                  \n",
+       "[40965] \"228009_x_at\"                 \"227673_at\"                  \n",
+       "[40967] \"228536_at\"                   \"225592_at\"                  \n",
+       "[40969] \"227636_at\"                   \"228009_x_at\"                \n",
+       "[40971] \"227673_at\"                   \"228286_at\"                  \n",
+       "[40973] \"229513_at\"                   \"228420_at\"                  \n",
+       "[40975] \"229986_at\"                   \"228062_at\"                  \n",
+       "[40977] \"228063_s_at\"                 \"226129_at\"                  \n",
+       "[40979] \"225735_at\"                   \"225731_at\"                  \n",
+       "[40981] \"228434_at\"                   \"226075_at\"                  \n",
+       "[40983] \"226708_at\"                   \"226707_at\"                  \n",
+       "[40985] \"228101_at\"                   \"225820_at\"                  \n",
+       "[40987] \"225816_at\"                   \"226876_at\"                  \n",
+       "[40989] \"226905_at\"                   \"229758_at\"                  \n",
+       "[40991] \"227672_at\"                   \"228284_at\"                  \n",
+       "[40993] \"229158_at\"                   \"228101_at\"                  \n",
+       "[40995] \"228771_at\"                   \"229393_at\"                  \n",
+       "[40997] \"229852_at\"                   \"230234_at\"                  \n",
+       "[40999] \"229852_at\"                   \"229193_at\"                  \n",
+       "[41001] \"229958_at\"                   \"230019_s_at\"                \n",
+       "[41003] \"227092_at\"                   \"225835_at\"                  \n",
+       "[41005] \"228766_at\"                   \"229504_at\"                  \n",
+       "[41007] \"228617_at\"                   \"227772_at\"                  \n",
+       "[41009] \"225995_x_at\"                 \"226340_x_at\"                \n",
+       "[41011] \"229499_at\"                   \"228060_at\"                  \n",
+       "[41013] \"227557_at\"                   \"228510_at\"                  \n",
+       "[41015] \"228396_at\"                   \"228009_x_at\"                \n",
+       "[41017] \"227673_at\"                   \"226541_at\"                  \n",
+       "[41019] \"229529_at\"                   \"229002_at\"                  \n",
+       "[41021] \"227652_at\"                   \"227064_at\"                  \n",
+       "[41023] \"228857_at\"                   \"228480_at\"                  \n",
+       "[41025] \"227456_s_at\"                 \"227455_at\"                  \n",
+       "[41027] \"225568_at\"                   \"230141_at\"                  \n",
+       "[41029] \"227900_at\"                   \"228234_at\"                  \n",
+       "[41031] \"229890_at\"                   \"230054_at\"                  \n",
+       "[41033] \"229890_at\"                   \"230054_at\"                  \n",
+       "[41035] \"226200_at\"                   \"226752_at\"                  \n",
+       "[41037] \"230221_at\"                   \"227193_at\"                  \n",
+       "[41039] \"225683_x_at\"                 \"228703_at\"                  \n",
+       "[41041] \"229814_at\"                   \"229473_at\"                  \n",
+       "[41043] \"229947_at\"                   \"225918_at\"                  \n",
+       "[41045] \"225590_at\"                   \"225589_at\"                  \n",
+       "[41047] \"226269_at\"                   \"226271_at\"                  \n",
+       "[41049] \"225592_at\"                   \"225592_at\"                  \n",
+       "[41051] \"226101_at\"                   \"227666_at\"                  \n",
+       "[41053] \"228468_at\"                   \"230096_at\"                  \n",
+       "[41055] \"230058_at\"                   \"227181_at\"                  \n",
+       "[41057] \"226609_at\"                   \"226200_at\"                  \n",
+       "[41059] \"225995_x_at\"                 \"226340_x_at\"                \n",
+       "[41061] \"229501_s_at\"                 \"227970_at\"                  \n",
+       "[41063] \"226041_at\"                   \"226878_at\"                  \n",
+       "[41065] \"228761_at\"                   \"229511_at\"                  \n",
+       "[41067] \"226576_at\"                   \"226773_at\"                  \n",
+       "[41069] \"226237_at\"                   \"230440_at\"                  \n",
+       "[41071] \"225592_at\"                   \"229121_at\"                  \n",
+       "[41073] \"228524_at\"                   \"225924_at\"                  \n",
+       "[41075] \"226460_at\"                   \"225922_at\"                  \n",
+       "[41077] \"227502_at\"                   \"225577_at\"                  \n",
+       "[41079] \"225584_at\"                   \"227502_at\"                  \n",
+       "[41081] \"228349_at\"                   \"230166_at\"                  \n",
+       "[41083] \"229636_at\"                   \"226200_at\"                  \n",
+       "[41085] \"228782_at\"                   \"228153_at\"                  \n",
+       "[41087] \"227056_at\"                   \"229442_at\"                  \n",
+       "[41089] \"225940_at\"                   \"225941_at\"                  \n",
+       "[41091] \"225939_at\"                   \"230221_at\"                  \n",
+       "[41093] \"225973_at\"                   \"228009_x_at\"                \n",
+       "[41095] \"227673_at\"                   \"227411_at\"                  \n",
+       "[41097] \"227255_at\"                   \"228305_at\"                  \n",
+       "[41099] \"226496_at\"                   \"230224_at\"                  \n",
+       "[41101] \"226398_s_at\"                 \"230084_at\"                  \n",
+       "[41103] \"228726_at\"                   \"228510_at\"                  \n",
+       "[41105] \"228009_x_at\"                 \"227673_at\"                  \n",
+       "[41107] \"226823_at\"                   \"227485_at\"                  \n",
+       "[41109] \"227551_at\"                   \"228510_at\"                  \n",
+       "[41111] \"225819_at\"                   \"225818_s_at\"                \n",
+       "[41113] \"230320_at\"                   \"229022_at\"                  \n",
+       "[41115] \"226478_at\"                   \"227693_at\"                  \n",
+       "[41117] \"227541_at\"                   \"229890_at\"                  \n",
+       "[41119] \"230054_at\"                   \"229890_at\"                  \n",
+       "[41121] \"230054_at\"                   \"226666_at\"                  \n",
+       "[41123] \"226878_at\"                   \"227196_at\"                  \n",
+       "[41125] \"226878_at\"                   \"226200_at\"                  \n",
+       "[41127] \"228857_at\"                   \"229804_x_at\"                \n",
+       "[41129] \"226193_x_at\"                 \"228334_x_at\"                \n",
+       "[41131] \"229335_at\"                   \"225973_at\"                  \n",
+       "[41133] \"226099_at\"                   \"226982_at\"                  \n",
+       "[41135] \"229890_at\"                   \"230054_at\"                  \n",
+       "[41137] \"229890_at\"                   \"230054_at\"                  \n",
+       "[41139] \"229523_at\"                   \"226978_at\"                  \n",
+       "[41141] \"225973_at\"                   \"225597_at\"                  \n",
+       "[41143] \"225598_at\"                   \"227590_at\"                  \n",
+       "[41145] \"229629_at\"                   \"228574_at\"                  \n",
+       "[41147] \"226327_at\"                   \"227455_at\"                  \n",
+       "[41149] \"227456_s_at\"                 \"229641_at\"                  \n",
+       "[41151] \"227769_at\"                   \"229151_at\"                  \n",
+       "[41153] \"228009_x_at\"                 \"227673_at\"                  \n",
+       "[41155] \"228857_at\"                   \"225794_s_at\"                \n",
+       "[41157] \"225795_at\"                   \"227648_at\"                  \n",
+       "[41159] \"227009_at\"                   \"225633_at\"                  \n",
+       "[41161] \"227990_at\"                   \"229916_at\"                  \n",
+       "[41163] \"226163_at\"                   \"226489_at\"                  \n",
+       "[41165] \"225574_at\"                   \"226868_at\"                  \n",
+       "[41167] \"230221_at\"                   \"228342_s_at\"                \n",
+       "[41169] \"225592_at\"                   \"225592_at\"                  \n",
+       "[41171] \"227455_at\"                   \"227456_s_at\"                \n",
+       "[41173] \"225577_at\"                   \"225584_at\"                  \n",
+       "[41175] \"230297_x_at\"                 \"225592_at\"                  \n",
+       "[41177] \"227184_at\"                   \"229984_at\"                  \n",
+       "[41179] \"228009_x_at\"                 \"227673_at\"                  \n",
+       "[41181] \"228454_at\"                   \"226520_at\"                  \n",
+       "[41183] \"226892_at\"                   \"228244_at\"                  \n",
+       "[41185] \"226170_at\"                   \"226268_at\"                  \n",
+       "[41187] \"229699_at\"                   \"228009_x_at\"                \n",
+       "[41189] \"227673_at\"                   \"228082_at\"                  \n",
+       "[41191] \"226834_at\"                   \"230152_at\"                  \n",
+       "[41193] \"228453_at\"                   \"227638_at\"                  \n",
+       "[41195] \"226373_at\"                   \"230509_at\"                  \n",
+       "[41197] \"228423_at\"                   \"226888_at\"                  \n",
+       "[41199] \"227331_at\"                   \"227222_at\"                  \n",
+       "[41201] \"228053_s_at\"                 \"228053_s_at\"                \n",
+       "[41203] \"228375_at\"                   \"226857_at\"                  \n",
+       "[41205] \"226017_at\"                   \"228353_x_at\"                \n",
+       "[41207] \"228359_at\"                   \"229144_at\"                  \n",
+       "[41209] \"227916_x_at\"                 \"226511_at\"                  \n",
+       "[41211] \"229520_s_at\"                 \"229673_at\"                  \n",
+       "[41213] \"229297_at\"                   \"229514_at\"                  \n",
+       "[41215] \"226456_at\"                   \"229587_at\"                  \n",
+       "[41217] \"228986_at\"                   \"228559_at\"                  \n",
+       "[41219] \"226196_s_at\"                 \"226195_at\"                  \n",
+       "[41221] \"230281_at\"                   \"225726_s_at\"                \n",
+       "[41223] \"225727_at\"                   \"226230_at\"                  \n",
+       "[41225] \"225910_at\"                   \"225928_at\"                  \n",
+       "[41227] \"225926_at\"                   \"226921_at\"                  \n",
+       "[41229] \"227564_at\"                   \"227279_at\"                  \n",
+       "[41231] \"227133_at\"                   \"227696_at\"                  \n",
+       "[41233] \"226822_at\"                   \"228979_at\"                  \n",
+       "[41235] \"228979_at\"                   \"226092_at\"                  \n",
+       "[41237] \"225575_at\"                   \"227771_at\"                  \n",
+       "[41239] \"225571_at\"                   \"229185_at\"                  \n",
+       "[41241] \"229630_s_at\"                 \"227595_at\"                  \n",
+       "[41243] \"227594_at\"                   \"227523_s_at\"                \n",
+       "[41245] \"226942_at\"                   \"230098_at\"                  \n",
+       "[41247] \"227534_at\"                   \"227930_at\"                  \n",
+       "[41249] \"229991_s_at\"                 \"227867_at\"                  \n",
+       "[41251] \"227867_at\"                   \"230009_at\"                  \n",
+       "[41253] \"227828_s_at\"                 \"230235_at\"                  \n",
+       "[41255] \"229976_at\"                   \"226534_at\"                  \n",
+       "[41257] \"230420_at\"                   \"227539_at\"                  \n",
+       "[41259] \"229295_at\"                   \"229101_at\"                  \n",
+       "[41261] \"228685_at\"                   \"227081_at\"                  \n",
+       "[41263] \"228458_at\"                   \"229336_at\"                  \n",
+       "[41265] \"226072_at\"                   \"227153_at\"                  \n",
+       "[41267] \"227923_at\"                   \"228521_s_at\"                \n",
+       "[41269] \"227377_at\"                   \"227993_at\"                  \n",
+       "[41271] \"226797_at\"                   \"228910_at\"                  \n",
+       "[41273] \"225844_at\"                   \"226224_at\"                  \n",
+       "[41275] \"230310_at\"                   \"227711_at\"                  \n",
+       "[41277] \"228521_s_at\"                 \"226748_at\"                  \n",
+       "[41279] \"230118_at\"                   \"229649_at\"                  \n",
+       "[41281] \"229795_at\"                   \"225788_at\"                  \n",
+       "[41283] \"227251_at\"                   \"225596_at\"                  \n",
+       "[41285] \"226287_at\"                   \"226348_at\"                  \n",
+       "[41287] \"226399_at\"                   \"226896_at\"                  \n",
+       "[41289] \"229798_s_at\"                 \"227372_s_at\"                \n",
+       "[41291] \"227371_at\"                   \"226780_s_at\"                \n",
+       "[41293] \"226781_at\"                   \"228214_at\"                  \n",
+       "[41295] \"227717_at\"                   \"227676_at\"                  \n",
+       "[41297] \"228797_at\"                   \"225942_at\"                  \n",
+       "[41299] \"225944_at\"                   \"225943_at\"                  \n",
+       "[41301] \"225905_s_at\"                 \"228493_at\"                  \n",
+       "[41303] \"229884_s_at\"                 \"228575_at\"                  \n",
+       "[41305] \"229242_at\"                   \"226080_at\"                  \n",
+       "[41307] \"226129_at\"                   \"227212_s_at\"                \n",
+       "[41309] \"227211_at\"                   \"230318_at\"                  \n",
+       "[41311] \"228046_at\"                   \"226764_at\"                  \n",
+       "[41313] \"227614_at\"                   \"228505_s_at\"                \n",
+       "[41315] \"227586_at\"                   \"229923_at\"                  \n",
+       "[41317] \"226313_at\"                   \"227469_at\"                  \n",
+       "[41319] \"226954_at\"                   \"225663_at\"                  \n",
+       "[41321] \"228441_s_at\"                 \"228440_at\"                  \n",
+       "[41323] \"228233_at\"                   \"225556_at\"                  \n",
+       "[41325] \"225949_at\"                   \"225949_at\"                  \n",
+       "[41327] \"228005_at\"                   \"227692_at\"                  \n",
+       "[41329] \"230069_at\"                   \"229350_x_at\"                \n",
+       "[41331] \"226401_at\"                   \"229510_at\"                  \n",
+       "[41333] \"227741_at\"                   \"230322_at\"                  \n",
+       "[41335] \"230120_s_at\"                 \"229360_at\"                  \n",
+       "[41337] \"227123_at\"                   \"228567_at\"                  \n",
+       "[41339] \"226875_at\"                   \"228939_at\"                  \n",
+       "[41341] \"230238_at\"                   \"226627_at\"                  \n",
+       "[41343] \"229015_at\"                   \"230374_at\"                  \n",
+       "[41345] \"226910_at\"                   \"226235_at\"                  \n",
+       "[41347] \"228160_at\"                   \"230374_at\"                  \n",
+       "[41349] \"226004_at\"                   \"229570_at\"                  \n",
+       "[41351] \"228445_at\"                   \"230477_at\"                  \n",
+       "[41353] \"229542_at\"                   \"226359_at\"                  \n",
+       "[41355] \"228989_at\"                   \"225968_at\"                  \n",
+       "[41357] \"225877_at\"                   \"229262_at\"                  \n",
+       "[41359] \"230144_at\"                   \"228506_at\"                  \n",
+       "[41361] \"227583_at\"                   \"226862_at\"                  \n",
+       "[41363] \"228921_at\"                   \"226737_at\"                  \n",
+       "[41365] \"225885_at\"                   \"225866_at\"                  \n",
+       "[41367] \"228075_x_at\"                 \"229637_at\"                  \n",
+       "[41369] \"226692_at\"                   \"227205_at\"                  \n",
+       "[41371] \"229240_at\"                   \"230139_at\"                  \n",
+       "[41373] \"227220_at\"                   \"226200_at\"                  \n",
+       "[41375] \"228033_at\"                   \"226200_at\"                  \n",
+       "[41377] \"226207_at\"                   \"225708_at\"                  \n",
+       "[41379] \"225912_at\"                   \"226604_at\"                  \n",
+       "[41381] \"226600_at\"                   \"225979_at\"                  \n",
+       "[41383] \"225756_at\"                   \"226858_at\"                  \n",
+       "[41385] \"227627_at\"                   \"227909_at\"                  \n",
+       "[41387] \"228457_at\"                   \"229506_at\"                  \n",
+       "[41389] \"228108_at\"                   \"229032_at\"                  \n",
+       "[41391] \"228968_at\"                   \"230211_at\"                  \n",
+       "[41393] \"226056_at\"                   \"226057_at\"                  \n",
+       "[41395] \"226131_s_at\"                 \"226130_at\"                  \n",
+       "[41397] \"227909_at\"                   \"228839_s_at\"                \n",
+       "[41399] \"229585_at\"                   \"228143_at\"                  \n",
+       "[41401] \"227253_at\"                   \"226749_at\"                  \n",
+       "[41403] \"227780_s_at\"                 \"228339_at\"                  \n",
+       "[41405] \"227779_at\"                   \"227098_at\"                  \n",
+       "[41407] \"227348_at\"                   \"228403_at\"                  \n",
+       "[41409] \"227918_s_at\"                 \"225994_at\"                  \n",
+       "[41411] \"225986_x_at\"                 \"228149_at\"                  \n",
+       "[41413] \"229080_at\"                   \"226067_at\"                  \n",
+       "[41415] \"229223_at\"                   \"225992_at\"                  \n",
+       "[41417] \"230122_at\"                   \"230498_at\"                  \n",
+       "[41419] \"225591_at\"                   \"228615_at\"                  \n",
+       "[41421] \"225850_at\"                   \"225849_s_at\"                \n",
+       "[41423] \"228397_at\"                   \"227802_at\"                  \n",
+       "[41425] \"228489_at\"                   \"230061_at\"                  \n",
+       "[41427] \"230327_at\"                   \"230327_at\"                  \n",
+       "[41429] \"230303_at\"                   \"228542_at\"                  \n",
+       "[41431] \"226776_at\"                   \"226775_at\"                  \n",
+       "[41433] \"227502_at\"                   \"226505_x_at\"                \n",
+       "[41435] \"227920_at\"                   \"229644_at\"                  \n",
+       "[41437] \"229153_at\"                   \"225936_at\"                  \n",
+       "[41439] \"230329_s_at\"                 \"228439_at\"                  \n",
+       "[41441] \"229428_at\"                   \"230129_at\"                  \n",
+       "[41443] \"228228_at\"                   \"227655_at\"                  \n",
+       "[41445] \"229185_at\"                   \"226887_at\"                  \n",
+       "[41447] \"227650_at\"                   \"228960_at\"                  \n",
+       "[41449] \"226936_at\"                   \"227274_at\"                  \n",
+       "[41451] \"225989_at\"                   \"225988_at\"                  \n",
+       "[41453] \"228123_s_at\"                 \"228124_at\"                  \n",
+       "[41455] \"226020_s_at\"                 \"226019_at\"                  \n",
+       "[41457] \"230131_x_at\"                 \"227442_at\"                  \n",
+       "[41459] \"225997_at\"                   \"226037_s_at\"                \n",
+       "[41461] \"226863_at\"                   \"228955_at\"                  \n",
+       "[41463] \"228605_at\"                   \"227219_x_at\"                \n",
+       "[41465] \"227504_s_at\"                 \"228992_at\"                  \n",
+       "[41467] \"227505_at\"                   \"225903_at\"                  \n",
+       "[41469] \"227738_s_at\"                 \"228106_at\"                  \n",
+       "[41471] \"228666_at\"                   \"228791_at\"                  \n",
+       "[41473] \"227049_at\"                   \"227977_at\"                  \n",
+       "[41475] \"227978_s_at\"                 \"227197_at\"                  \n",
+       "[41477] \"227502_at\"                   \"227895_at\"                  \n",
+       "[41479] \"226774_at\"                   \"229182_at\"                  \n",
+       "[41481] \"226841_at\"                   \"226818_at\"                  \n",
+       "[41483] \"227791_at\"                   \"226696_at\"                  \n",
+       "[41485] \"230074_s_at\"                 \"227568_at\"                  \n",
+       "[41487] \"229070_at\"                   \"228463_at\"                  \n",
+       "[41489] \"226515_at\"                   \"227937_at\"                  \n",
+       "[41491] \"228472_at\"                   \"228887_x_at\"                \n",
+       "[41493] \"228847_at\"                   \"229884_s_at\"                \n",
+       "[41495] \"227968_at\"                   \"229145_at\"                  \n",
+       "[41497] \"227980_at\"                   \"226686_at\"                  \n",
+       "[41499] \"226125_at\"                   \"230205_at\"                  \n",
+       "[41501] \"225642_at\"                   \"226236_at\"                  \n",
+       "[41503] \"230104_s_at\"                 \"229920_at\"                  \n",
+       "[41505] \"228002_at\"                   \"230180_at\"                  \n",
+       "[41507] \"228927_at\"                   \"229133_s_at\"                \n",
+       "[41509] \"228012_at\"                   \"229125_at\"                  \n",
+       "[41511] \"228125_at\"                   \"228130_at\"                  \n",
+       "[41513] \"229133_s_at\"                 \"227366_at\"                  \n",
+       "[41515] \"226580_at\"                   \"229582_at\"                  \n",
+       "[41517] \"229378_at\"                   \"226508_at\"                  \n",
+       "[41519] \"230031_at\"                   \"227105_at\"                  \n",
+       "[41521] \"229175_at\"                   \"227407_at\"                  \n",
+       "[41523] \"226735_at\"                   \"228728_at\"                  \n",
+       "[41525] \"229075_at\"                   \"227095_at\"                  \n",
+       "[41527] \"226925_at\"                   \"225627_s_at\"                \n",
+       "[41529] \"230419_at\"                   \"230419_at\"                  \n",
+       "[41531] \"229772_at\"                   \"226547_at\"                  \n",
+       "[41533] \"228674_s_at\"                 \"226800_at\"                  \n",
+       "[41535] \"230110_at\"                   \"227166_at\"                  \n",
+       "[41537] \"227169_at\"                   \"229596_at\"                  \n",
+       "[41539] \"229865_at\"                   \"230482_at\"                  \n",
+       "[41541] \"227633_at\"                   \"228190_at\"                  \n",
+       "[41543] \"228461_at\"                   \"229725_at\"                  \n",
+       "[41545] \"227799_at\"                   \"225543_at\"                  \n",
+       "[41547] \"226349_at\"                   \"228230_at\"                  \n",
+       "[41549] \"230062_at\"                   \"227429_at\"                  \n",
+       "[41551] \"229318_at\"                   \"227724_at\"                  \n",
+       "[41553] \"228609_at\"                   \"230221_at\"                  \n",
+       "[41555] \"226670_s_at\"                 \"227675_at\"                  \n",
+       "[41557] \"228603_at\"                   \"229278_at\"                  \n",
+       "[41559] \"228724_at\"                   \"228406_at\"                  \n",
+       "[41561] \"225993_at\"                   \"227374_at\"                  \n",
+       "[41563] \"225541_at\"                   \"229308_at\"                  \n",
+       "[41565] \"230010_at\"                   \"229709_at\"                  \n",
+       "[41567] \"227840_at\"                   \"229567_at\"                  \n",
+       "[41569] \"227919_at\"                   \"228585_at\"                  \n",
+       "[41571] \"228355_s_at\"                 \"227919_at\"                  \n",
+       "[41573] \"225662_at\"                   \"225665_at\"                  \n",
+       "[41575] \"228920_at\"                   \"227145_at\"                  \n",
+       "[41577] \"229333_at\"                   \"230294_at\"                  \n",
+       "[41579] \"229995_at\"                   \"227540_at\"                  \n",
+       "[41581] \"227604_at\"                   \"228658_at\"                  \n",
+       "[41583] \"227168_at\"                   \"226408_at\"                  \n",
+       "[41585] \"229451_at\"                   \"227155_at\"                  \n",
+       "[41587] \"229537_at\"                   \"227034_at\"                  \n",
+       "[41589] \"229930_at\"                   \"229450_at\"                  \n",
+       "[41591] \"227044_at\"                   \"230096_at\"                  \n",
+       "[41593] \"227639_at\"                   \"225967_s_at\"                \n",
+       "[41595] \"225966_at\"                   \"230448_at\"                  \n",
+       "[41597] \"227096_at\"                   \"226039_at\"                  \n",
+       "[41599] \"227270_at\"                   \"227466_at\"                  \n",
+       "[41601] \"227466_at\"                   \"229094_at\"                  \n",
+       "[41603] \"227357_at\"                   \"228234_at\"                  \n",
+       "[41605] \"227037_at\"                   \"227585_at\"                  \n",
+       "[41607] \"227469_at\"                   \"227538_at\"                  \n",
+       "[41609] \"229115_at\"                   \"227908_at\"                  \n",
+       "[41611] \"227632_at\"                   \"228898_s_at\"                \n",
+       "[41613] \"229719_s_at\"                 \"226618_at\"                  \n",
+       "[41615] \"226612_at\"                   \"229370_at\"                  \n",
+       "[41617] \"225609_at\"                   \"226646_at\"                  \n",
+       "[41619] \"229545_at\"                   \"226780_s_at\"                \n",
+       "[41621] \"226781_at\"                   \"228804_at\"                  \n",
+       "[41623] \"230230_at\"                   \"227249_at\"                  \n",
+       "[41625] \"230219_at\"                   \"227843_at\"                  \n",
+       "[41627] \"226648_at\"                   \"226839_at\"                  \n",
+       "[41629] \"228841_at\"                   \"229980_s_at\"                \n",
+       "[41631] \"226426_at\"                   \"230105_at\"                  \n",
+       "[41633] \"228419_at\"                   \"228732_at\"                  \n",
+       "[41635] \"228731_at\"                   \"228145_s_at\"                \n",
+       "[41637] \"226202_at\"                   \"228210_at\"                  \n",
+       "[41639] \"225804_at\"                   \"229848_at\"                  \n",
+       "[41641] \"226629_at\"                   \"228918_at\"                  \n",
+       "[41643] \"226299_at\"                   \"226088_at\"                  \n",
+       "[41645] \"230186_at\"                   \"225851_at\"                  \n",
+       "[41647] \"226757_at\"                   \"227611_at\"                  \n",
+       "[41649] \"225851_at\"                   \"225851_at\"                  \n",
+       "[41651] \"228713_s_at\"                 \"226241_s_at\"                \n",
+       "[41653] \"225896_at\"                   \"227708_at\"                  \n",
+       "[41655] \"227674_at\"                   \"228038_at\"                  \n",
+       "[41657] \"227674_at\"                   \"229794_at\"                  \n",
+       "[41659] \"225625_at\"                   \"230100_x_at\"                \n",
+       "[41661] \"226507_at\"                   \"229461_x_at\"                \n",
+       "[41663] \"230259_at\"                   \"229564_at\"                  \n",
+       "[41665] \"229875_at\"                   \"230243_at\"                  \n",
+       "[41667] \"228027_at\"                   \"228027_at\"                  \n",
+       "[41669] \"230366_at\"                   \"227821_at\"                  \n",
+       "[41671] \"226846_at\"                   \"230108_at\"                  \n",
+       "[41673] \"229449_at\"                   \"227572_at\"                  \n",
+       "[41675] \"229457_at\"                   \"226420_at\"                  \n",
+       "[41677] \"228004_at\"                   \"230062_at\"                  \n",
+       "[41679] \"226525_at\"                   \"229952_at\"                  \n",
+       "[41681] \"226149_at\"                   \"226602_s_at\"                \n",
+       "[41683] \"227063_at\"                   \"226288_s_at\"                \n",
+       "[41685] \"227271_at\"                   \"227271_at\"                  \n",
+       "[41687] \"227271_at\"                   \"225560_at\"                  \n",
+       "[41689] \"228891_at\"                   \"228772_at\"                  \n",
+       "[41691] \"229452_at\"                   \"226833_at\"                  \n",
+       "[41693] \"226281_at\"                   \"226833_at\"                  \n",
+       "[41695] \"226370_at\"                   \"229570_at\"                  \n",
+       "[41697] \"229722_at\"                   \"229966_at\"                  \n",
+       "[41699] \"227405_s_at\"                 \"228633_s_at\"                \n",
+       "[41701] \"230350_at\"                   \"228307_at\"                  \n",
+       "[41703] \"229992_at\"                   \"230492_s_at\"                \n",
+       "[41705] \"226556_at\"                   \"226190_at\"                  \n",
+       "[41707] \"229771_at\"                   \"228917_at\"                  \n",
+       "[41709] \"230439_at\"                   \"230439_at\"                  \n",
+       "[41711] \"227506_at\"                   \"228570_at\"                  \n",
+       "[41713] \"229759_s_at\"                 \"229760_at\"                  \n",
+       "[41715] \"228221_at\"                   \"229213_at\"                  \n",
+       "[41717] \"226026_at\"                   \"228376_at\"                  \n",
+       "[41719] \"229964_at\"                   \"230228_at\"                  \n",
+       "[41721] \"228933_at\"                   \"226043_at\"                  \n",
+       "[41723] \"229140_at\"                   \"228663_x_at\"                \n",
+       "[41725] \"226967_at\"                   \"228364_at\"                  \n",
+       "[41727] \"227773_at\"                   \"227144_at\"                  \n",
+       "[41729] \"226667_x_at\"                 \"226475_at\"                  \n",
+       "[41731] \"228235_at\"                   \"229784_at\"                  \n",
+       "[41733] \"227488_at\"                   \"227488_at\"                  \n",
+       "[41735] \"227488_at\"                   \"229950_s_at\"                \n",
+       "[41737] \"227313_at\"                   \"229843_at\"                  \n",
+       "[41739] \"227455_at\"                   \"227456_s_at\"                \n",
+       "[41741] \"229813_x_at\"                 \"226620_x_at\"                \n",
+       "[41743] \"229325_at\"                   \"227965_at\"                  \n",
+       "[41745] \"226378_s_at\"                 \"226379_s_at\"                \n",
+       "[41747] \"227805_at\"                   \"226434_at\"                  \n",
+       "[41749] \"230281_at\"                   \"229913_at\"                  \n",
+       "[41751] \"229785_at\"                   \"225644_at\"                  \n",
+       "[41753] \"228836_at\"                   \"230287_at\"                  \n",
+       "[41755] \"225822_at\"                   \"225799_at\"                  \n",
+       "[41757] \"229512_at\"                   \"230359_at\"                  \n",
+       "[41759] \"229167_at\"                   \"226977_at\"                  \n",
+       "[41761] \"226977_at\"                   \"229580_at\"                  \n",
+       "[41763] \"226602_s_at\"                 \"227880_s_at\"                \n",
+       "[41765] \"227524_at\"                   \"227499_at\"                  \n",
+       "[41767] \"226158_at\"                   \"229061_s_at\"                \n",
+       "[41769] \"227670_at\"                   \"227172_at\"                  \n",
+       "[41771] \"227816_at\"                   \"228629_s_at\"                \n",
+       "[41773] \"230163_at\"                   \"227550_at\"                  \n",
+       "[41775] \"229263_at\"                   \"227997_at\"                  \n",
+       "[41777] \"225659_at\"                   \"225658_at\"                  \n",
+       "[41779] \"230298_at\"                   \"227933_at\"                  \n",
+       "[41781] \"228569_at\"                   \"229555_at\"                  \n",
+       "[41783] \"226321_at\"                   \"228073_at\"                  \n",
+       "[41785] \"226106_at\"                   \"227262_at\"                  \n",
+       "[41787] \"229241_at\"                   \"229398_at\"                  \n",
+       "[41789] \"225952_at\"                   \"230048_at\"                  \n",
+       "[41791] \"230364_at\"                   \"226051_at\"                  \n",
+       "[41793] \"230022_at\"                   \"230022_at\"                  \n",
+       "[41795] \"230022_at\"                   \"226736_at\"                  \n",
+       "[41797] \"225544_at\"                   \"229576_s_at\"                \n",
+       "[41799] \"226588_at\"                   \"229818_at\"                  \n",
+       "[41801] \"226248_s_at\"                 \"226485_at\"                  \n",
+       "[41803] \"227684_at\"                   \"227829_at\"                  \n",
+       "[41805] \"229590_at\"                   \"226449_at\"                  \n",
+       "[41807] \"229613_at\"                   \"229481_at\"                  \n",
+       "[41809] \"226753_at\"                   \"228167_at\"                  \n",
+       "[41811] \"229859_at\"                   \"228518_at\"                  \n",
+       "[41813] \"228518_at\"                   \"226814_at\"                  \n",
+       "[41815] \"228464_at\"                   \"228348_at\"                  \n",
+       "[41817] \"225712_at\"                   \"229782_at\"                  \n",
+       "[41819] \"229782_at\"                   \"226513_at\"                  \n",
+       "[41821] \"228083_at\"                   \"229436_x_at\"                \n",
+       "[41823] \"227729_at\"                   \"225717_at\"                  \n",
+       "[41825] \"229173_at\"                   \"225718_at\"                  \n",
+       "[41827] \"229693_at\"                   \"227154_at\"                  \n",
+       "[41829] \"227243_s_at\"                 \"227242_s_at\"                \n",
+       "[41831] \"225612_s_at\"                 \"229266_at\"                  \n",
+       "[41833] \"226778_at\"                   \"229323_at\"                  \n",
+       "[41835] \"230095_at\"                   \"226625_at\"                  \n",
+       "[41837] \"229328_at\"                   \"227796_at\"                  \n",
+       "[41839] \"229781_at\"                   \"226713_at\"                  \n",
+       "[41841] \"228693_at\"                   \"229019_at\"                  \n",
+       "[41843] \"228963_at\"                   \"226387_at\"                  \n",
+       "[41845] \"226204_at\"                   \"227672_at\"                  \n",
+       "[41847] \"230280_at\"                   \"226708_at\"                  \n",
+       "[41849] \"226707_at\"                   \"228606_at\"                  \n",
+       "[41851] \"225659_at\"                   \"229435_at\"                  \n",
+       "[41853] \"230258_at\"                   \"229230_at\"                  \n",
+       "[41855] \"229957_at\"                   \"226787_at\"                  \n",
+       "[41857] \"229118_at\"                   \"229758_at\"                  \n",
+       "[41859] \"226551_at\"                   \"226093_at\"                  \n",
+       "[41861] \"225958_at\"                   \"228345_at\"                  \n",
+       "[41863] \"227545_at\"                   \"230422_at\"                  \n",
+       "[41865] \"230070_at\"                   \"229672_at\"                  \n",
+       "[41867] \"227915_at\"                   \"226000_at\"                  \n",
+       "[41869] \"230172_at\"                   \"227361_at\"                  \n",
+       "[41871] \"228100_at\"                   \"228824_s_at\"                \n",
+       "[41873] \"228825_at\"                   \"227233_at\"                  \n",
+       "[41875] \"227236_at\"                   \"228119_at\"                  \n",
+       "[41877] \"230078_at\"                   \"226906_s_at\"                \n",
+       "[41879] \"226894_at\"                   \"226859_at\"                  \n",
+       "[41881] \"229270_x_at\"                 \"229269_x_at\"                \n",
+       "[41883] \"226777_at\"                   \"226632_at\"                  \n",
+       "[41885] \"230015_at\"                   \"226332_at\"                  \n",
+       "[41887] \"225723_at\"                   \"225799_at\"                  \n",
+       "[41889] \"229112_at\"                   \"229324_x_at\"                \n",
+       "[41891] \"228552_s_at\"                 \"227725_at\"                  \n",
+       "[41893] \"230146_s_at\"                 \"230406_at\"                  \n",
+       "[41895] \"228758_at\"                   \"227706_at\"                  \n",
+       "[41897] \"227210_at\"                   \"229744_at\"                  \n",
+       "[41899] \"228380_at\"                   \"229793_at\"                  \n",
+       "[41901] \"226076_s_at\"                 \"227833_s_at\"                \n",
+       "[41903] \"227832_at\"                   \"227388_at\"                  \n",
+       "[41905] \"225660_at\"                   \"226470_at\"                  \n",
+       "[41907] \"226469_s_at\"                 \"226471_at\"                  \n",
+       "[41909] \"228930_at\"                   \"227427_at\"                  \n",
+       "[41911] \"228930_at\"                   \"229091_s_at\"                \n",
+       "[41913] \"228930_at\"                   \"228953_at\"                  \n",
+       "[41915] \"227427_at\"                   \"226832_at\"                  \n",
+       "[41917] \"228398_at\"                   \"230167_at\"                  \n",
+       "[41919] \"229616_s_at\"                 \"225991_at\"                  \n",
+       "[41921] \"228598_at\"                   \"227861_at\"                  \n",
+       "[41923] \"227599_at\"                   \"227778_at\"                  \n",
+       "[41925] \"230361_at\"                   \"225607_at\"                  \n",
+       "[41927] \"227739_at\"                   \"228518_at\"                  \n",
+       "[41929] \"227814_at\"                   \"228518_at\"                  \n",
+       "[41931] \"228606_at\"                   \"229764_at\"                  \n",
+       "[41933] \"229925_at\"                   \"230183_at\"                  \n",
+       "[41935] \"226454_at\"                   \"230001_at\"                  \n",
+       "[41937] \"228961_at\"                   \"226975_at\"                  \n",
+       "[41939] \"229903_x_at\"                 \"228023_x_at\"                \n",
+       "[41941] \"226999_at\"                   \"226356_at\"                  \n",
+       "[41943] \"228776_at\"                   \"228563_at\"                  \n",
+       "[41945] \"226217_at\"                   \"226601_at\"                  \n",
+       "[41947] \"225948_at\"                   \"229958_at\"                  \n",
+       "[41949] \"230107_at\"                   \"225855_at\"                  \n",
+       "[41951] \"229292_at\"                   \"227775_at\"                  \n",
+       "[41953] \"228378_at\"                   \"227680_at\"                  \n",
+       "[41955] \"227775_at\"                   \"228300_at\"                  \n",
+       "[41957] \"227815_at\"                   \"226811_at\"                  \n",
+       "[41959] \"225945_at\"                   \"226186_at\"                  \n",
+       "[41961] \"227295_at\"                   \"229274_at\"                  \n",
+       "[41963] \"228173_at\"                   \"226058_at\"                  \n",
+       "[41965] \"226535_at\"                   \"230277_at\"                  \n",
+       "[41967] \"228138_at\"                   \"230475_at\"                  \n",
+       "[41969] \"228711_at\"                   \"225911_at\"                  \n",
+       "[41971] \"228497_at\"                   \"226523_at\"                  \n",
+       "[41973] \"229267_at\"                   \"230085_at\"                  \n",
+       "[41975] \"228959_at\"                   \"226523_at\"                  \n",
+       "[41977] \"227114_at\"                   \"226514_at\"                  \n",
+       "[41979] \"228009_x_at\"                 \"227673_at\"                  \n",
+       "[41981] \"225782_at\"                   \"225790_at\"                  \n",
+       "[41983] \"226917_s_at\"                 \"226700_at\"                  \n",
+       "[41985] \"228275_at\"                   \"226700_at\"                  \n",
+       "[41987] \"226560_at\"                   \"229320_at\"                  \n",
+       "[41989] \"228067_at\"                   \"227563_at\"                  \n",
+       "[41991] \"228009_x_at\"                 \"227673_at\"                  \n",
+       "[41993] \"230413_s_at\"                 \"226382_at\"                  \n",
+       "[41995] \"226959_at\"                   \"226304_at\"                  \n",
+       "[41997] \"227444_at\"                   \"229530_at\"                  \n",
+       "[41999] \"227235_at\"                   \"229963_at\"                  \n",
+       "[42001] \"228637_at\"                   \"226008_at\"                  \n",
+       "[42003] \"228628_at\"                   \"227770_at\"                  \n",
+       "[42005] \"230403_at\"                   \"226703_at\"                  \n",
+       "[42007] \"229790_at\"                   \"230054_at\"                  \n",
+       "[42009] \"227071_at\"                   \"227139_s_at\"                \n",
+       "[42011] \"230007_at\"                   \"228793_at\"                  \n",
+       "[42013] \"226770_at\"                   \"230409_at\"                  \n",
+       "[42015] \"227382_at\"                   \"227464_at\"                  \n",
+       "[42017] \"226555_at\"                   \"227931_at\"                  \n",
+       "[42019] \"227924_at\"                   \"228778_at\"                  \n",
+       "[42021] \"226524_at\"                   \"229174_at\"                  \n",
+       "[42023] \"229135_at\"                   \"228466_at\"                  \n",
+       "[42025] \"226825_s_at\"                 \"228780_at\"                  \n",
+       "[42027] \"225629_s_at\"                 \"227047_x_at\"                \n",
+       "[42029] \"228790_at\"                   \"227800_at\"                  \n",
+       "[42031] \"228410_at\"                   \"227703_s_at\"                \n",
+       "[42033] \"226963_at\"                   \"227043_at\"                  \n",
+       "[42035] \"227352_at\"                   \"227402_s_at\"                \n",
+       "[42037] \"227836_at\"                   \"225592_at\"                  \n",
+       "[42039] \"225592_at\"                   \"228471_at\"                  \n",
+       "[42041] \"226641_at\"                   \"225933_at\"                  \n",
+       "[42043] \"226874_at\"                   \"228877_at\"                  \n",
+       "[42045] \"228195_at\"                   \"229250_at\"                  \n",
+       "[42047] \"229251_s_at\"                 \"228266_s_at\"                \n",
+       "[42049] \"228043_at\"                   \"228050_at\"                  \n",
+       "[42051] \"228172_at\"                   \"227345_at\"                  \n",
+       "[42053] \"227612_at\"                   \"228217_s_at\"                \n",
+       "[42055] \"228864_at\"                   \"227669_at\"                  \n",
+       "[42057] \"229258_at\"                   \"230397_at\"                  \n",
+       "[42059] \"226742_at\"                   \"226344_at\"                  \n",
+       "[42061] \"227157_at\"                   \"226792_s_at\"                \n",
+       "[42063] \"226791_at\"                   \"229806_at\"                  \n",
+       "[42065] \"228647_at\"                   \"229012_at\"                  \n",
+       "[42067] \"229305_at\"                   \"229304_s_at\"                \n",
+       "[42069] \"225664_at\"                   \"227065_at\"                  \n",
+       "[42071] \"228039_at\"                   \"229547_s_at\"                \n",
+       "[42073] \"227217_at\"                   \"227082_at\"                  \n",
+       "[42075] \"227121_at\"                   \"227869_at\"                  \n",
+       "[42077] \"227624_at\"                   \"228095_at\"                  \n",
+       "[42079] \"228262_at\"                   \"227296_at\"                  \n",
+       "[42081] \"227873_at\"                   \"229603_at\"                  \n",
+       "[42083] \"229657_at\"                   \"228716_at\"                  \n",
+       "[42085] \"227592_at\"                   \"228880_at\"                  \n",
+       "[42087] \"226335_at\"                   \"227556_at\"                  \n",
+       "[42089] \"226376_at\"                   \"228357_at\"                  \n",
+       "[42091] \"229922_at\"                   \"227975_at\"                  \n",
+       "[42093] \"225763_at\"                   \"229670_at\"                  \n",
+       "[42095] \"226710_at\"                   \"226754_at\"                  \n",
+       "[42097] \"229734_at\"                   \"225722_at\"                  \n",
+       "[42099] \"225868_at\"                   \"227731_at\"                  \n",
+       "[42101] \"227254_at\"                   \"229753_at\"                  \n",
+       "[42103] \"229835_s_at\"                 \"230290_at\"                  \n",
+       "[42105] \"228407_at\"                   \"226396_at\"                  \n",
+       "[42107] \"229468_at\"                   \"226396_at\"                  \n",
+       "[42109] \"228750_at\"                   \"229563_s_at\"                \n",
+       "[42111] \"230030_at\"                   \"229563_s_at\"                \n",
+       "[42113] \"229562_at\"                   \"227135_at\"                  \n",
+       "[42115] \"226744_at\"                   \"227470_at\"                  \n",
+       "[42117] \"226487_at\"                   \"229795_at\"                  \n",
+       "[42119] \"227294_at\"                   \"227445_at\"                  \n",
+       "[42121] \"229810_at\"                   \"229723_at\"                  \n",
+       "[42123] \"230447_at\"                   \"226412_at\"                  \n",
+       "[42125] \"230438_at\"                   \"229618_at\"                  \n",
+       "[42127] \"228318_s_at\"                 \"229851_s_at\"                \n",
+       "[42129] \"226944_at\"                   \"228580_at\"                  \n",
+       "[42131] \"228709_at\"                   \"228355_s_at\"                \n",
+       "[42133] \"226779_at\"                   \"226946_at\"                  \n",
+       "[42135] \"229299_at\"                   \"228594_at\"                  \n",
+       "[42137] \"226939_at\"                   \"226134_s_at\"                \n",
+       "[42139] \"226177_at\"                   \"227468_at\"                  \n",
+       "[42141] \"225847_at\"                   \"226973_at\"                  \n",
+       "[42143] \"228341_at\"                   \"226464_at\"                  \n",
+       "[42145] \"228079_at\"                   \"227667_at\"                  \n",
+       "[42147] \"226089_at\"                   \"226090_x_at\"                \n",
+       "[42149] \"226419_s_at\"                 \"229246_at\"                  \n",
+       "[42151] \"226419_s_at\"                 \"227164_at\"                  \n",
+       "[42153] \"229106_at\"                   \"225923_at\"                  \n",
+       "[42155] \"225645_at\"                   \"228304_at\"                  \n",
+       "[42157] \"226843_s_at\"                 \"229043_at\"                  \n",
+       "[42159] \"227263_at\"                   \"229554_at\"                  \n",
+       "[42161] \"228150_at\"                   \"230313_at\"                  \n",
+       "[42163] \"228011_at\"                   \"225810_at\"                  \n",
+       "[42165] \"229967_at\"                   \"228386_s_at\"                \n",
+       "[42167] \"228385_at\"                   \"229234_at\"                  \n",
+       "[42169] \"228462_at\"                   \"225680_at\"                  \n",
+       "[42171] \"228680_at\"                   \"229463_at\"                  \n",
+       "[42173] \"230492_s_at\"                 \"226738_at\"                  \n",
+       "[42175] \"228308_at\"                   \"228581_at\"                  \n",
+       "[42177] \"230071_at\"                   \"228817_at\"                  \n",
+       "[42179] \"228993_s_at\"                 \"228509_at\"                  \n",
+       "[42181] \"227103_s_at\"                 \"228648_at\"                  \n",
+       "[42183] \"227420_at\"                   \"229254_at\"                  \n",
+       "[42185] \"226592_at\"                   \"226590_at\"                  \n",
+       "[42187] \"225975_at\"                   \"225977_at\"                  \n",
+       "[42189] \"229989_at\"                   \"225781_at\"                  \n",
+       "[42191] \"227334_at\"                   \"226144_at\"                  \n",
+       "[42193] \"228158_at\"                   \"228158_at\"                  \n",
+       "[42195] \"226144_at\"                   \"226328_at\"                  \n",
+       "[42197] \"228893_at\"                   \"227292_at\"                  \n",
+       "[42199] \"225614_at\"                   \"229607_at\"                  \n",
+       "[42201] \"226048_at\"                   \"229664_at\"                  \n",
+       "[42203] \"226046_at\"                   \"227266_s_at\"                \n",
+       "[42205] \"226421_at\"                   \"229339_at\"                  \n",
+       "[42207] \"230174_at\"                   \"226851_at\"                  \n",
+       "[42209] \"229726_at\"                   \"227003_at\"                  \n",
+       "[42211] \"225808_at\"                   \"229288_at\"                  \n",
+       "[42213] \"227327_at\"                   \"230112_at\"                  \n",
+       "[42215] \"227491_at\"                   \"225913_at\"                  \n",
+       "[42217] \"226960_at\"                   \"227760_at\"                  \n",
+       "[42219] \"227606_s_at\"                 \"227607_at\"                  \n",
+       "[42221] \"226867_at\"                   \"226381_at\"                  \n",
+       "[42223] \"225872_at\"                   \"226494_at\"                  \n",
+       "[42225] \"226175_at\"                   \"226494_at\"                  \n",
+       "[42227] \"227306_at\"                   \"229110_at\"                  \n",
+       "[42229] \"226336_at\"                   \"226221_at\"                  \n",
+       "[42231] \"226222_at\"                   \"230049_at\"                  \n",
+       "[42233] \"227085_at\"                   \"228089_x_at\"                \n",
+       "[42235] \"228285_at\"                   \"225870_s_at\"                \n",
+       "[42237] \"225870_s_at\"                 \"228089_x_at\"                \n",
+       "[42239] \"226762_at\"                   \"227718_at\"                  \n",
+       "[42241] \"229560_at\"                   \"230188_at\"                  \n",
+       "[42243] \"226053_at\"                   \"226023_at\"                  \n",
+       "[42245] \"229315_at\"                   \"229030_at\"                  \n",
+       "[42247] \"229701_at\"                   \"229388_at\"                  \n",
+       "[42249] \"225652_at\"                   \"228126_x_at\"                \n",
+       "[42251] \"225858_s_at\"                 \"225859_at\"                  \n",
+       "[42253] \"228363_at\"                   \"227178_at\"                  \n",
+       "[42255] \"228736_at\"                   \"227156_at\"                  \n",
+       "[42257] \"228019_s_at\"                 \"226521_s_at\"                \n",
+       "[42259] \"226695_at\"                   \"229168_at\"                  \n",
+       "[42261] \"228738_at\"                   \"226432_at\"                  \n",
+       "[42263] \"228133_s_at\"                 \"227190_at\"                  \n",
+       "[42265] \"225842_at\"                   \"229420_at\"                  \n",
+       "[42267] \"227804_at\"                   \"228573_at\"                  \n",
+       "[42269] \"226918_at\"                   \"227265_at\"                  \n",
+       "[42271] \"227228_s_at\"                 \"226260_x_at\"                \n",
+       "[42273] \"226260_x_at\"                 \"228076_s_at\"                \n",
+       "[42275] \"229169_at\"                   \"229170_s_at\"                \n",
+       "[42277] \"229701_at\"                   \"225702_at\"                  \n",
+       "[42279] \"225702_at\"                   \"227735_s_at\"                \n",
+       "[42281] \"227736_at\"                   \"228479_at\"                  \n",
+       "[42283] \"226655_at\"                   \"228091_at\"                  \n",
+       "[42285] \"226662_at\"                   \"225551_at\"                  \n",
+       "[42287] \"225550_at\"                   \"230275_at\"                  \n",
+       "[42289] \"228258_at\"                   \"227982_at\"                  \n",
+       "[42291] \"226284_at\"                   \"227140_at\"                  \n",
+       "[42293] \"228875_at\"                   \"226502_at\"                  \n",
+       "[42295] \"230157_at\"                   \"226234_at\"                  \n",
+       "[42297] \"226232_at\"                   \"229069_at\"                  \n",
+       "[42299] \"228084_at\"                   \"225684_at\"                  \n",
+       "[42301] \"225686_at\"                   \"226102_at\"                  \n",
+       "[42303] \"228273_at\"                   \"228696_at\"                  \n",
+       "[42305] \"229380_at\"                   \"227798_at\"                  \n",
+       "[42307] \"229309_at\"                   \"227701_at\"                  \n",
+       "[42309] \"229399_at\"                   \"226878_at\"                  \n",
+       "[42311] \"228883_at\"                   \"228882_at\"                  \n",
+       "[42313] \"228835_at\"                   \"230218_at\"                  \n",
+       "[42315] \"229498_at\"                   \"230113_at\"                  \n",
+       "[42317] \"226599_at\"                   \"226247_at\"                  \n",
+       "[42319] \"227122_at\"                   \"229887_at\"                  \n",
+       "[42321] \"229597_s_at\"                 \"226282_at\"                  \n",
+       "[42323] \"229177_at\"                   \"230027_s_at\"                \n",
+       "[42325] \"230026_at\"                   \"225637_at\"                  \n",
+       "[42327] \"225567_at\"                   \"227272_at\"                  \n",
+       "[42329] \"229579_s_at\"                 \"227010_at\"                  \n",
+       "[42331] \"226853_at\"                   \"226314_at\"                  \n",
+       "[42333] \"230252_at\"                   \"227820_at\"                  \n",
+       "[42335] \"226173_at\"                   \"227761_at\"                  \n",
+       "[42337] \"227463_at\"                   \"228340_at\"                  \n",
+       "[42339] \"228469_at\"                   \"230405_at\"                  \n",
+       "[42341] \"225976_at\"                   \"226963_at\"                  \n",
+       "[42343] \"227131_at\"                   \"228952_at\"                  \n",
+       "[42345] \"229088_at\"                   \"227841_at\"                  \n",
+       "[42347] \"230479_at\"                   \"228277_at\"                  \n",
+       "[42349] \"228602_at\"                   \"229712_at\"                  \n",
+       "[42351] \"229058_at\"                   \"226145_s_at\"                \n",
+       "[42353] \"225647_s_at\"                 \"225646_at\"                  \n",
+       "[42355] \"225710_at\"                   \"228121_at\"                  \n",
+       "[42357] \"228730_s_at\"                 \"227863_at\"                  \n",
+       "[42359] \"227886_at\"                   \"230297_x_at\"                \n",
+       "[42361] \"227955_s_at\"                 \"226402_at\"                  \n",
+       "[42363] \"226393_at\"                   \"227863_at\"                  \n",
+       "[42365] \"226803_at\"                   \"228539_at\"                  \n",
+       "[42367] \"229869_at\"                   \"227324_at\"                  \n",
+       "[42369] \"227875_at\"                   \"229577_at\"                  \n",
+       "[42371] \"228168_at\"                   \"225579_at\"                  \n",
+       "[42373] \"227489_at\"                   \"228503_at\"                  \n",
+       "[42375] \"228502_at\"                   \"229082_at\"                  \n",
+       "[42377] \"226163_at\"                   \"226768_at\"                  \n",
+       "[42379] \"228755_at\"                   \"227410_at\"                  \n",
+       "[42381] \"229355_at\"                   \"225886_at\"                  \n",
+       "[42383] \"225832_s_at\"                 \"225833_at\"                  \n",
+       "[42385] \"226640_at\"                   \"225828_at\"                  \n",
+       "[42387] \"227876_at\"                   \"228122_at\"                  \n",
+       "[42389] \"228121_at\"                   \"227549_x_at\"                \n",
+       "[42391] \"229142_s_at\"                 \"228237_at\"                  \n",
+       "[42393] \"228902_at\"                   \"229285_at\"                  \n",
+       "[42395] \"226786_at\"                   \"230177_at\"                  \n",
+       "[42397] \"227942_s_at\"                 \"229535_at\"                  \n",
+       "[42399] \"225901_at\"                   \"228954_at\"                  \n",
+       "[42401] \"227922_x_at\"                 \"225899_x_at\"                \n",
+       "[42403] \"227129_x_at\"                 \"226140_s_at\"                \n",
+       "[42405] \"229272_at\"                   \"227476_at\"                  \n",
+       "[42407] \"226972_s_at\"                 \"229021_at\"                  \n",
+       "[42409] \"229005_at\"                   \"227991_x_at\"                \n",
+       "[42411] \"229553_at\"                   \"229256_at\"                  \n",
+       "[42413] \"226733_at\"                   \"227492_at\"                  \n",
+       "[42415] \"227647_at\"                   \"229804_x_at\"                \n",
+       "[42417] \"226193_x_at\"                 \"225775_at\"                  \n",
+       "[42419] \"228922_at\"                   \"228888_at\"                  \n",
+       "[42421] \"228720_at\"                   \"230411_at\"                  \n",
+       "[42423] \"228734_at\"                   \"228867_at\"                  \n",
+       "[42425] \"229354_at\"                   \"227376_at\"                  \n",
+       "[42427] \"226538_at\"                   \"227605_at\"                  \n",
+       "[42429] \"225864_at\"                   \"228870_at\"                  \n",
+       "[42431] \"229906_at\"                   \"225827_at\"                  \n",
+       "[42433] \"225569_at\"                   \"230117_at\"                  \n",
+       "[42435] \"229946_at\"                   \"227877_at\"                  \n",
+       "[42437] \"227033_at\"                   \"229453_at\"                  \n",
+       "[42439] \"226263_at\"                   \"228041_at\"                  \n",
+       "[42441] \"229345_at\"                   \"229746_x_at\"                \n",
+       "[42443] \"225681_at\"                   \"229804_x_at\"                \n",
+       "[42445] \"229804_x_at\"                 \"226193_x_at\"                \n",
+       "[42447] \"230379_x_at\"                 \"228433_at\"                  \n",
+       "[42449] \"228431_at\"                   \"227903_x_at\"                \n",
+       "[42451] \"228951_at\"                   \"226573_at\"                  \n",
+       "[42453] \"229677_at\"                   \"229572_at\"                  \n",
+       "[42455] \"225685_at\"                   \"227722_at\"                  \n",
+       "[42457] \"230124_at\"                   \"229738_at\"                  \n",
+       "[42459] \"226506_at\"                   \"227520_at\"                  \n",
+       "[42461] \"229817_at\"                   \"227425_at\"                  \n",
+       "[42463] \"226871_s_at\"                 \"227022_at\"                  \n",
+       "[42465] \"228265_at\"                   \"225898_at\"                  \n",
+       "[42467] \"230149_at\"                   \"226871_s_at\"                \n",
+       "[42469] \"227587_at\"                   \"227976_at\"                  \n",
+       "[42471] \"227110_at\"                   \"227577_at\"                  \n",
+       "[42473] \"226277_at\"                   \"229195_at\"                  \n",
+       "[42475] \"225671_at\"                   \"227089_at\"                  \n",
+       "[42477] \"227272_at\"                   \"225995_x_at\"                \n",
+       "[42479] \"226340_x_at\"                 \"225995_x_at\"                \n",
+       "[42481] \"226340_x_at\"                 \"225995_x_at\"                \n",
+       "[42483] \"226340_x_at\"                 \"225995_x_at\"                \n",
+       "[42485] \"226340_x_at\"                 \"225770_at\"                  \n",
+       "[42487] \"225774_at\"                   \"225773_at\"                  \n",
+       "[42489] \"225963_at\"                   \"225961_at\"                  \n",
+       "[42491] \"225732_at\"                   \"226829_at\"                  \n",
+       "[42493] \"229539_at\"                   \"229730_at\"                  \n",
+       "[42495] \"228272_at\"                   \"228107_at\"                  \n",
+       "[42497] \"226338_at\"                   \"227765_at\"                  \n",
+       "[42499] \"226341_at\"                   \"227613_at\"                  \n",
+       "[42501] \"228460_at\"                   \"228559_at\"                  \n",
+       "[42503] \"226157_at\"                   \"228191_at\"                  \n",
+       "[42505] \"229074_at\"                   \"225570_at\"                  \n",
+       "[42507] \"226354_at\"                   \"228074_at\"                  \n",
+       "[42509] \"227954_at\"                   \"227514_at\"                  \n",
+       "[42511] \"227792_at\"                   \"228171_s_at\"                \n",
+       "[42513] \"226958_s_at\"                 \"226027_at\"                  \n",
+       "[42515] \"228211_at\"                   \"229710_at\"                  \n",
+       "[42517] \"229743_at\"                   \"227009_at\"                  \n",
+       "[42519] \"226001_at\"                   \"227565_at\"                  \n",
+       "[42521] \"230021_at\"                   \"228742_at\"                  \n",
+       "[42523] \"228742_at\"                   \"229405_at\"                  \n",
+       "[42525] \"230127_at\"                   \"230041_at\"                  \n",
+       "[42527] \"228919_at\"                   \"228209_at\"                  \n",
+       "[42529] \"228209_at\"                   \"228512_at\"                  \n",
+       "[42531] \"228020_at\"                   \"228590_at\"                  \n",
+       "[42533] \"227300_at\"                   \"230079_at\"                  \n",
+       "[42535] \"229011_at\"                   \"229934_at\"                  \n",
+       "[42537] \"225784_s_at\"                 \"229627_at\"                  \n",
+       "[42539] \"229628_s_at\"                 \"225937_at\"                  \n",
+       "[42541] \"227069_at\"                   \"225935_at\"                  \n",
+       "[42543] \"228857_at\"                   \"226615_at\"                  \n",
+       "[42545] \"226003_at\"                   \"226594_at\"                  \n",
+       "[42547] \"229627_at\"                   \"229628_s_at\"                \n",
+       "[42549] \"225751_at\"                   \"226453_at\"                  \n",
+       "[42551] \"227543_at\"                   \"225787_at\"                  \n",
+       "[42553] \"225592_at\"                   \"229396_at\"                  \n",
+       "[42555] \"227785_at\"                   \"229065_at\"                  \n",
+       "[42557] \"228785_at\"                   \"229475_at\"                  \n",
+       "[42559] \"227866_at\"                   \"229622_at\"                  \n",
+       "[42561] \"227248_at\"                   \"228583_at\"                  \n",
+       "[42563] \"229356_x_at\"                 \"226446_at\"                  \n",
+       "[42565] \"228773_at\"                   \"225765_at\"                  \n",
+       "[42567] \"225766_s_at\"                 \"229941_at\"                  \n",
+       "[42569] \"225634_at\"                   \"227458_at\"                  \n",
+       "[42571] \"227597_at\"                   \"227038_at\"                  \n",
+       "[42573] \"230282_at\"                   \"229568_at\"                  \n",
+       "[42575] \"226844_at\"                   \"225919_s_at\"                \n",
+       "[42577] \"229353_s_at\"                 \"227687_at\"                  \n",
+       "[42579] \"227111_at\"                   \"228176_at\"                  \n",
+       "[42581] \"229824_at\"                   \"225621_at\"                  \n",
+       "[42583] \"226899_at\"                   \"228958_at\"                  \n",
+       "[42585] \"228958_at\"                   \"226908_at\"                  \n",
+       "[42587] \"227068_at\"                   \"228483_s_at\"                \n",
+       "[42589] \"226111_s_at\"                 \"226255_at\"                  \n",
+       "[42591] \"228040_at\"                   \"228040_at\"                  \n",
+       "[42593] \"229089_at\"                   \"228101_at\"                  \n",
+       "[42595] \"225771_at\"                   \"225754_at\"                  \n",
+       "[42597] \"230251_at\"                   \"230251_at\"                  \n",
+       "[42599] \"226110_at\"                   \"228705_at\"                  \n",
+       "[42601] \"228485_s_at\"                 \"227620_at\"                  \n",
+       "[42603] \"228486_at\"                   \"229290_at\"                  \n",
+       "[42605] \"229354_at\"                   \"228189_at\"                  \n",
+       "[42607] \"225916_at\"                   \"228212_at\"                  \n",
+       "[42609] \"228781_at\"                   \"230417_at\"                  \n",
+       "[42611] \"230418_s_at\"                 \"229190_at\"                  \n",
+       "[42613] \"229189_s_at\"                 \"230404_at\"                  \n",
+       "[42615] \"229860_x_at\"                 \"225701_at\"                  \n",
+       "[42617] \"226932_at\"                   \"228231_at\"                  \n",
+       "[42619] \"226755_at\"                   \"228152_s_at\"                \n",
+       "[42621] \"226452_at\"                   \"229033_s_at\"                \n",
+       "[42623] \"228157_at\"                   \"229765_at\"                  \n",
+       "[42625] \"228302_x_at\"                 \"227682_at\"                  \n",
+       "[42627] \"228478_at\"                   \"226353_at\"                  \n",
+       "[42629] \"229131_at\"                   \"229828_at\"                  \n",
+       "[42631] \"226597_at\"                   \"226052_at\"                  \n",
+       "[42633] \"226054_at\"                   \"227544_at\"                  \n",
+       "[42635] \"226849_at\"                   \"229983_at\"                  \n",
+       "[42637] \"227375_at\"                   \"229540_at\"                  \n",
+       "[42639] \"229689_s_at\"                 \"230376_at\"                  \n",
+       "[42641] \"228507_at\"                   \"228361_at\"                  \n",
+       "[42643] \"227461_at\"                   \"225900_at\"                  \n",
+       "[42645] \"226510_at\"                   \"228323_at\"                  \n",
+       "[42647] \"225601_at\"                   \"227872_at\"                  \n",
+       "[42649] \"228287_at\"                   \"229197_at\"                  \n",
+       "[42651] \"229534_at\"                   \"229573_at\"                  \n",
+       "[42653] \"226309_at\"                   \"230083_at\"                  \n",
+       "[42655] \"226445_s_at\"                 \"227349_at\"                  \n",
+       "[42657] \"227349_at\"                   \"227350_at\"                  \n",
+       "[42659] \"226901_at\"                   \"229717_at\"                  \n",
+       "[42661] \"229717_at\"                   \"228281_at\"                  \n",
+       "[42663] \"228795_at\"                   \"227817_at\"                  \n",
+       "[42665] \"227824_at\"                   \"228003_at\"                  \n",
+       "[42667] \"229072_at\"                   \"227842_at\"                  \n",
+       "[42669] \"228390_at\"                   \"227753_at\"                  \n",
+       "[42671] \"229634_at\"                   \"226022_at\"                  \n",
+       "[42673] \"226036_x_at\"                 \"226032_at\"                  \n",
+       "[42675] \"226462_at\"                   \"228814_at\"                  \n",
+       "[42677] \"225737_s_at\"                 \"225736_at\"                  \n",
+       "[42679] \"225734_at\"                   \"226970_at\"                  \n",
+       "[42681] \"227521_at\"                   \"229534_at\"                  \n",
+       "[42683] \"229839_at\"                   \"225724_at\"                  \n",
+       "[42685] \"227075_at\"                   \"226518_at\"                  \n",
+       "[42687] \"229517_at\"                   \"226962_at\"                  \n",
+       "[42689] \"228373_at\"                   \"228860_at\"                  \n",
+       "[42691] \"227793_at\"                   \"228942_s_at\"                \n",
+       "[42693] \"226694_at\"                   \"228384_s_at\"                \n",
+       "[42695] \"227393_at\"                   \"227739_at\"                  \n",
+       "[42697] \"228427_at\"                   \"227239_at\"                  \n",
+       "[42699] \"230427_s_at\"                 \"230335_at\"                  \n",
+       "[42701] \"229108_at\"                   \"225852_at\"                  \n",
+       "[42703] \"229108_at\"                   \"230039_at\"                  \n",
+       "[42705] \"225672_at\"                   \"229358_at\"                  \n",
+       "[42707] \"230488_s_at\"                 \"225826_at\"                  \n",
+       "[42709] \"226168_at\"                   \"227732_at\"                  \n",
+       "[42711] \"228508_at\"                   \"227755_at\"                  \n",
+       "[42713] \"228741_s_at\"                 \"226041_at\"                  \n",
+       "[42715] \"226095_s_at\"                 \"227373_at\"                  \n",
+       "[42717] \"229476_s_at\"                 \"229477_at\"                  \n",
+       "[42719] \"228879_at\"                   \"229432_at\"                  \n",
+       "[42721] \"229942_at\"                   \"226968_at\"                  \n",
+       "[42723] \"229727_x_at\"                 \"228252_at\"                  \n",
+       "[42725] \"228695_at\"                   \"229430_at\"                  \n",
+       "[42727] \"227203_at\"                   \"226091_s_at\"                \n",
+       "[42729] \"227113_at\"                   \"228151_at\"                  \n",
+       "[42731] \"226116_at\"                   \"230064_at\"                  \n",
+       "[42733] \"230279_at\"                   \"229497_at\"                  \n",
+       "[42735] \"226159_at\"                   \"227801_at\"                  \n",
+       "[42737] \"228695_at\"                   \"229430_at\"                  \n",
+       "[42739] \"228701_at\"                   \"228751_at\"                  \n",
+       "[42741] \"225951_s_at\"                 \"226448_at\"                  \n",
+       "[42743] \"226448_at\"                   \"226242_at\"                  \n",
+       "[42745] \"226280_at\"                   \"227776_at\"                  \n",
+       "[42747] \"227008_at\"                   \"226635_at\"                  \n",
+       "[42749] \"225640_at\"                   \"225635_s_at\"                \n",
+       "[42751] \"230307_at\"                   \"227893_at\"                  \n",
+       "[42753] \"229296_at\"                   \"226292_at\"                  \n",
+       "[42755] \"228263_at\"                   \"230087_at\"                  \n",
+       "[42757] \"226320_at\"                   \"226319_s_at\"                \n",
+       "[42759] \"229550_at\"                   \"226488_at\"                  \n",
+       "[42761] \"226414_s_at\"                 \"226290_at\"                  \n",
+       "[42763] \"226153_s_at\"                 \"227119_at\"                  \n",
+       "[42765] \"229609_at\"                   \"227724_at\"                  \n",
+       "[42767] \"226568_at\"                   \"227579_at\"                  \n",
+       "[42769] \"227640_s_at\"                 \"227852_at\"                  \n",
+       "[42771] \"227035_x_at\"                 \"225841_at\"                  \n",
+       "[42773] \"227177_at\"                   \"229090_at\"                  \n",
+       "[42775] \"225980_at\"                   \"226414_s_at\"                \n",
+       "[42777] \"230270_at\"                   \"226717_at\"                  \n",
+       "[42779] \"230044_at\"                   \"227012_at\"                  \n",
+       "[42781] \"226443_at\"                   \"228768_at\"                  \n",
+       "[42783] \"228250_at\"                   \"228040_at\"                  \n",
+       "[42785] \"230323_s_at\"                 \"226226_at\"                  \n",
+       "[42787] \"225583_at\"                   \"230389_at\"                  \n",
+       "[42789] \"229668_at\"                   \"226630_at\"                  \n",
+       "[42791] \"225987_at\"                   \"229373_at\"                  \n",
+       "[42793] \"227966_s_at\"                 \"225611_at\"                  \n",
+       "[42795] \"225613_at\"                   \"229152_at\"                  \n",
+       "[42797] \"229552_at\"                   \"226254_s_at\"                \n",
+       "[42799] \"229211_at\"                   \"226355_at\"                  \n",
+       "[42801] \"227408_s_at\"                 \"226161_at\"                  \n",
+       "[42803] \"228929_at\"                   \"226745_at\"                  \n",
+       "[42805] \"228391_at\"                   \"226074_at\"                  \n",
+       "[42807] \"229383_at\"                   \"228537_at\"                  \n",
+       "[42809] \"225846_at\"                   \"228859_at\"                  \n",
+       "[42811] \"230441_at\"                   \"228649_at\"                  \n",
+       "[42813] \"226721_at\"                   \"230106_at\"                  \n",
+       "[42815] \"227406_at\"                   \"225752_at\"                  \n",
+       "[42817] \"229660_at\"                   \"226033_at\"                  \n",
+       "[42819] \"226035_at\"                   \"227256_at\"                  \n",
+       "[42821] \"230016_at\"                   \"226139_at\"                  \n",
+       "[42823] \"226141_at\"                   \"227512_at\"                  \n",
+       "[42825] \"226346_at\"                   \"227702_at\"                  \n",
+       "[42827] \"227967_at\"                   \"226256_at\"                  \n",
+       "[42829] \"228316_at\"                   \"230349_at\"                  \n",
+       "[42831] \"229883_at\"                   \"230489_at\"                  \n",
+       "[42833] \"226671_at\"                   \"229352_at\"                  \n",
+       "[42835] \"230245_s_at\"                 \"225817_at\"                  \n",
+       "[42837] \"227823_at\"                   \"225638_at\"                  \n",
+       "[42839] \"230408_at\"                   \"226123_at\"                  \n",
+       "[42841] \"228816_at\"                   \"226115_at\"                  \n",
+       "[42843] \"230147_at\"                   \"228568_at\"                  \n",
+       "[42845] \"228715_at\"                   \"229147_at\"                  \n",
+       "[42847] \"225957_at\"                   \"225956_at\"                  \n",
+       "[42849] \"225839_at\"                   \"226732_at\"                  \n",
+       "[42851] \"225753_at\"                   \"226872_at\"                  \n",
+       "[42853] \"228980_at\"                   \"227288_at\"                  \n",
+       "[42855] \"226697_at\"                   \"226435_at\"                  \n",
+       "[42857] \"227878_s_at\"                 \"226324_s_at\"                \n",
+       "[42859] \"226010_at\"                   \"230449_x_at\"                \n",
+       "[42861] \"229220_x_at\"                 \"227161_at\"                  \n",
+       "[42863] \"230383_x_at\"                 \"226725_at\"                  \n",
+       "[42865] \"230462_at\"                   \"226085_at\"                  \n",
+       "[42867] \"226160_at\"                   \"227092_at\"                  \n",
+       "[42869] \"228899_at\"                   \"229773_at\"                  \n",
+       "[42871] \"225755_at\"                   \"227229_at\"                  \n",
+       "[42873] \"229653_at\"                   \"225573_at\"                  \n",
+       "[42875] \"227691_at\"                   \"227091_at\"                  \n",
+       "[42877] \"225573_at\"                   \"225905_s_at\"                \n",
+       "[42879] \"229232_at\"                   \"228416_at\"                  \n",
+       "[42881] \"225547_at\"                   \"229181_s_at\"                \n",
+       "[42883] \"229208_at\"                   \"228744_at\"                  \n",
+       "[42885] \"229586_at\"                   \"228270_at\"                  \n",
+       "[42887] \"227170_at\"                   \"227108_at\"                  \n",
+       "[42889] \"228987_at\"                   \"226015_at\"                  \n",
+       "[42891] \"228516_at\"                   \"228642_at\"                  \n",
+       "[42893] \"228642_at\"                   \"228642_at\"                  \n",
+       "[42895] \"228642_at\"                   \"227839_at\"                  \n",
+       "[42897] \"226964_at\"                   \"228077_at\"                  \n",
+       "[42899] \"226183_at\"                   \"226191_at\"                  \n",
+       "[42901] \"226040_at\"                   \"228632_at\"                  \n",
+       "[42903] \"228632_at\"                   \"228642_at\"                  \n",
+       "[42905] \"227438_at\"                   \"230080_at\"                  \n",
+       "[42907] \"229095_s_at\"                 \"229096_at\"                  \n",
+       "[42909] \"226705_at\"                   \"227959_at\"                  \n",
+       "[42911] \"226589_at\"                   \"227671_at\"                  \n",
+       "[42913] \"230412_at\"                   \"229281_at\"                  \n",
+       "[42915] \"227006_at\"                   \"226180_at\"                  \n",
+       "[42917] \"229050_s_at\"                 \"229050_s_at\"                \n",
+       "[42919] \"226437_at\"                   \"229807_s_at\"                \n",
+       "[42921] \"228798_x_at\"                 \"226785_at\"                  \n",
+       "[42923] \"226642_s_at\"                 \"227192_at\"                  \n",
+       "[42925] \"225906_at\"                   \"228054_at\"                  \n",
+       "[42927] \"226433_at\"                   \"228571_at\"                  \n",
+       "[42929] \"230439_at\"                   \"226996_at\"                  \n",
+       "[42931] \"229452_at\"                   \"229840_at\"                  \n",
+       "[42933] \"230200_at\"                   \"226345_at\"                  \n",
+       "[42935] \"226992_at\"                   \"229099_at\"                  \n",
+       "[42937] \"226804_at\"                   \"229351_at\"                  \n",
+       "[42939] \"229500_at\"                   \"226490_at\"                  \n",
+       "[42941] \"229201_at\"                   \"228500_at\"                  \n",
+       "[42943] \"226668_at\"                   \"229485_x_at\"                \n",
+       "[42945] \"229351_at\"                   \"227608_at\"                  \n",
+       "[42947] \"226577_at\"                   \"229340_at\"                  \n",
+       "[42949] \"225879_at\"                   \"228249_at\"                  \n",
+       "[42951] \"229412_at\"                   \"227025_at\"                  \n",
+       "[42953] \"227333_at\"                   \"227984_at\"                  \n",
+       "[42955] \"226913_s_at\"                 \"230506_at\"                  \n",
+       "[42957] \"230506_at\"                   \"228058_at\"                  \n",
+       "[42959] \"230273_at\"                   \"225814_at\"                  \n",
+       "[42961] \"230273_at\"                   \"225787_at\"                  \n",
+       "[42963] \"225783_at\"                   \"225791_at\"                  \n",
+       "[42965] \"226691_at\"                   \"229257_at\"                  \n",
+       "[42967] \"226403_at\"                   \"226654_at\"                  \n",
+       "[42969] \"227416_s_at\"                 \"226366_at\"                  \n",
+       "[42971] \"229227_at\"                   \"227446_s_at\"                \n",
+       "[42973] \"226605_at\"                   \"227653_at\"                  \n",
+       "[42975] \"228911_at\"                   \"226596_x_at\"                \n",
+       "[42977] \"228943_at\"                   \"228448_at\"                  \n",
+       "[42979] \"225995_x_at\"                 \"226340_x_at\"                \n",
+       "[42981] \"225995_x_at\"                 \"226340_x_at\"                \n",
+       "[42983] \"228869_at\"                   \"229045_at\"                  \n",
+       "[42985] \"230471_at\"                   \"227029_at\"                  \n",
+       "[42987] \"227208_at\"                   \"229533_x_at\"                \n",
+       "[42989] \"226104_at\"                   \"225985_at\"                  \n",
+       "[42991] \"225984_at\"                   \"226397_s_at\"                \n",
+       "[42993] \"226395_at\"                   \"228226_s_at\"                \n",
+       "[42995] \"225909_at\"                   \"230363_s_at\"                \n",
+       "[42997] \"230362_at\"                   \"225927_at\"                  \n",
+       "[42999] \"229740_at\"                   \"228061_at\"                  \n",
+       "[43001] \"228087_at\"                   \"228600_x_at\"                \n",
+       "[43003] \"227932_at\"                   \"227413_at\"                  \n",
+       "[43005] \"227451_s_at\"                 \"227947_at\"                  \n",
+       "[43007] \"225899_x_at\"                 \"227618_at\"                  \n",
+       "[43009] \"227282_at\"                   \"226012_at\"                  \n",
+       "[43011] \"228356_at\"                   \"230249_at\"                  \n",
+       "[43013] \"229785_at\"                   \"229428_at\"                  \n",
+       "[43015] \"228729_at\"                   \"226852_at\"                  \n",
+       "[43017] \"228786_at\"                   \"227745_at\"                  \n",
+       "[43019] \"227767_at\"                   \"229702_at\"                  \n",
+       "[43021] \"227705_at\"                   \"230345_at\"                  \n",
+       "[43023] \"226205_at\"                   \"227971_at\"                  \n",
+       "[43025] \"226053_at\"                   \"226023_at\"                  \n",
+       "[43027] \"227011_at\"                   \"230137_at\"                  \n",
+       "[43029] \"227668_at\"                   \"228805_at\"                  \n",
+       "[43031] \"228905_at\"                   \"229100_s_at\"                \n",
+       "[43033] \"229054_at\"                   \"229054_at\"                  \n",
+       "[43035] \"227232_at\"                   \"229273_at\"                  \n",
+       "[43037] \"227552_at\"                   \"228843_at\"                  \n",
+       "[43039] \"228200_at\"                   \"227781_x_at\"                \n",
+       "[43041] \"229774_at\"                   \"227337_at\"                  \n",
+       "[43043] \"227117_at\"                   \"228688_at\"                  \n",
+       "[43045] \"229728_at\"                   \"230022_at\"                  \n",
+       "[43047] \"230022_at\"                   \"230511_at\"                  \n",
+       "[43049] \"228092_at\"                   \"225921_at\"                  \n",
+       "[43051] \"226192_at\"                   \"226197_at\"                  \n",
+       "[43053] \"228640_at\"                   \"230481_at\"                  \n",
+       "[43055] \"227002_at\"                   \"225673_at\"                  \n",
+       "[43057] \"226364_at\"                   \"228301_x_at\"                \n",
+       "[43059] \"226519_s_at\"                 \"229192_s_at\"                \n",
+       "[43061] \"229191_at\"                   \"228382_at\"                  \n",
+       "[43063] \"229268_at\"                   \"229470_at\"                  \n",
+       "[43065] \"227945_at\"                   \"228645_at\"                  \n",
+       "[43067] \"226055_at\"                   \"230250_at\"                  \n",
+       "[43069] \"229879_at\"                   \"230429_at\"                  \n",
+       "[43071] \"230370_x_at\"                 \"228514_at\"                  \n",
+       "[43073] \"228156_at\"                   \"228999_at\"                  \n",
+       "[43075] \"226329_s_at\"                 \"229561_at\"                  \n",
+       "[43077] \"226059_at\"                   \"228584_at\"                  \n",
+       "[43079] \"226112_at\"                   \"229331_at\"                  \n",
+       "[43081] \"229316_at\"                   \"225749_at\"                  \n",
+       "[43083] \"227973_at\"                   \"225594_at\"                  \n",
+       "[43085] \"225595_at\"                   \"229715_at\"                  \n",
+       "[43087] \"229341_at\"                   \"227642_at\"                  \n",
+       "[43089] \"229715_at\"                   \"227762_at\"                  \n",
+       "[43091] \"228854_at\"                   \"228558_at\"                  \n",
+       "[43093] \"229724_at\"                   \"227690_at\"                  \n",
+       "[43095] \"227830_at\"                   \"229303_at\"                  \n",
+       "[43097] \"227382_at\"                   \"228165_at\"                  \n",
+       "[43099] \"229823_at\"                   \"226045_at\"                  \n",
+       "[43101] \"226864_at\"                   \"226325_at\"                  \n",
+       "[43103] \"225729_at\"                   \"225815_at\"                  \n",
+       "[43105] \"228856_at\"                   \"225546_at\"                  \n",
+       "[43107] \"225545_at\"                   \"228312_at\"                  \n",
+       "[43109] \"229122_x_at\"                 \"228513_at\"                  \n",
+       "[43111] \"230434_at\"                   \"227898_s_at\"                \n",
+       "[43113] \"227902_at\"                   \"228336_at\"                  \n",
+       "[43115] \"228337_at\"                   \"226720_at\"                  \n",
+       "[43117] \"227023_at\"                   \"227023_at\"                  \n",
+       "[43119] \"230248_x_at\"                 \"227173_s_at\"                \n",
+       "[43121] \"228762_at\"                   \"228381_at\"                  \n",
+       "[43123] \"229159_at\"                   \"230008_at\"                  \n",
+       "[43125] \"229016_s_at\"                 \"230154_at\"                  \n",
+       "[43127] \"225955_at\"                   \"225806_at\"                  \n",
+       "[43129] \"225807_at\"                   \"227104_x_at\"                \n",
+       "[43131] \"227101_at\"                   \"227158_at\"                  \n",
+       "[43133] \"226474_at\"                   \"225853_at\"                  \n",
+       "[43135] \"230455_at\"                   \"226122_at\"                  \n",
+       "[43137] \"226034_at\"                   \"225970_at\"                  \n",
+       "[43139] \"225965_at\"                   \"225971_at\"                  \n",
+       "[43141] \"227419_x_at\"                 \"230246_at\"                  \n",
+       "[43143] \"230029_x_at\"                 \"228827_at\"                  \n",
+       "[43145] \"227005_at\"                   \"225643_at\"                  \n",
+       "[43147] \"226701_at\"                   \"230135_at\"                  \n",
+       "[43149] \"225796_at\"                   \"229319_at\"                  \n",
+       "[43151] \"228849_at\"                   \"227721_at\"                  \n",
+       "[43153] \"226308_at\"                   \"228627_at\"                  \n",
+       "[43155] \"229944_at\"                   \"226562_at\"                  \n",
+       "[43157] \"227907_at\"                   \"227979_at\"                  \n",
+       "[43159] \"226440_at\"                   \"226440_at\"                  \n",
+       "[43161] \"229648_at\"                   \"226326_at\"                  \n",
+       "[43163] \"229194_at\"                   \"227935_s_at\"                \n",
+       "[43165] \"228272_at\"                   \"230050_at\"                  \n",
+       "[43167] \"230478_at\"                   \"227146_at\"                  \n",
+       "[43169] \"226685_at\"                   \"227312_at\"                  \n",
+       "[43171] \"229313_at\"                   \"229313_at\"                  \n",
+       "[43173] \"229235_at\"                   \"227928_at\"                  \n",
+       "[43175] \"228535_at\"                   \"229448_at\"                  \n",
+       "[43177] \"226249_at\"                   \"226845_s_at\"                \n",
+       "[43179] \"225738_at\"                   \"226389_s_at\"                \n",
+       "[43181] \"227206_at\"                   \"229793_at\"                  \n",
+       "[43183] \"229912_at\"                   \"229407_at\"                  \n",
+       "[43185] \"229558_at\"                   \"227267_at\"                  \n",
+       "[43187] \"229768_at\"                   \"225821_s_at\"                \n",
+       "[43189] \"227788_at\"                   \"227788_at\"                  \n",
+       "[43191] \"226902_at\"                   \"230401_at\"                  \n",
+       "[43193] \"229700_at\"                   \"228579_at\"                  \n",
+       "[43195] \"228762_at\"                   \"228832_at\"                  \n",
+       "[43197] \"228683_s_at\"                 \"229426_at\"                  \n",
+       "[43199] \"228402_at\"                   \"227005_at\"                  \n",
+       "[43201] \"226428_at\"                   \"230426_at\"                  \n",
+       "[43203] \"229551_x_at\"                 \"227658_s_at\"                \n",
+       "[43205] \"230171_at\"                   \"226692_at\"                  \n",
+       "[43207] \"226339_at\"                   \"226121_at\"                  \n",
+       "[43209] \"230254_at\"                   \"228694_at\"                  \n",
+       "[43211] \"225950_at\"                   \"229521_at\"                  \n",
+       "[43213] \"226756_at\"                   \"227883_at\"                  \n",
+       "[43215] \"228765_at\"                   \"228330_at\"                  \n",
+       "[43217] \"229317_at\"                   \"227934_at\"                  \n",
+       "[43219] \"229720_at\"                   \"228652_at\"                  \n",
+       "[43221] \"227846_at\"                   \"228314_at\"                  \n",
+       "[43223] \"226923_at\"                   \"228351_at\"                  \n",
+       "[43225] \"226870_at\"                   \"228974_at\"                  \n",
+       "[43227] \"227293_at\"                   \"225617_at\"                  \n",
+       "[43229] \"229123_at\"                   \"226661_at\"                  \n",
+       "[43231] \"229969_at\"                   \"225981_at\"                  \n",
+       "[43233] \"226038_at\"                   \"229243_at\"                  \n",
+       "[43235] \"228332_s_at\"                 \"226788_at\"                  \n",
+       "[43237] \"229894_s_at\"                 \"225632_s_at\"                \n",
+       "[43239] \"229894_s_at\"                 \"225632_s_at\"                \n",
+       "[43241] \"227689_at\"                   \"227318_at\"                  \n",
+       "[43243] \"229890_at\"                   \"230054_at\"                  \n",
+       "[43245] \"229890_at\"                   \"230054_at\"                  \n",
+       "[43247] \"230054_at\"                   \"225902_at\"                  \n",
+       "[43249] \"229632_s_at\"                 \"225704_at\"                  \n",
+       "[43251] \"225703_at\"                   \"228522_at\"                  \n",
+       "[43253] \"229786_at\"                   \"229419_at\"                  \n",
+       "[43255] \"228807_at\"                   \"228201_at\"                  \n",
+       "[43257] \"230353_at\"                   \"229849_at\"                  \n",
+       "[43259] \"230353_at\"                   \"230353_at\"                  \n",
+       "[43261] \"230353_at\"                   \"228311_at\"                  \n",
+       "[43263] \"226943_at\"                   \"226927_at\"                  \n",
+       "[43265] \"227341_at\"                   \"226483_at\"                  \n",
+       "[43267] \"227936_at\"                   \"226801_s_at\"                \n",
+       "[43269] \"226128_at\"                   \"229584_at\"                  \n",
+       "[43271] \"228414_at\"                   \"228372_at\"                  \n",
+       "[43273] \"226108_at\"                   \"228562_at\"                  \n",
+       "[43275] \"227573_s_at\"                 \"227574_at\"                  \n",
+       "[43277] \"228184_at\"                   \"230302_at\"                  \n",
+       "[43279] \"229445_at\"                   \"225676_s_at\"                \n",
+       "[43281] \"227080_at\"                   \"225713_at\"                  \n",
+       "[43283] \"227385_at\"                   \"228561_at\"                  \n",
+       "[43285] \"228873_at\"                   \"227726_at\"                  \n",
+       "[43287] \"227601_at\"                   \"226484_at\"                  \n",
+       "[43289] \"226500_at\"                   \"226410_at\"                  \n",
+       "[43291] \"227088_at\"                   \"227850_x_at\"                \n",
+       "[43293] \"227508_at\"                   \"227509_x_at\"                \n",
+       "[43295] \"229229_at\"                   \"226909_at\"                  \n",
+       "[43297] \"227230_s_at\"                 \"227231_at\"                  \n",
+       "[43299] \"227218_at\"                   \"227216_at\"                  \n",
+       "[43301] \"228698_at\"                   \"226135_at\"                  \n",
+       "[43303] \"228607_at\"                   \"226614_s_at\"                \n",
+       "[43305] \"227591_at\"                   \"229129_at\"                  \n",
+       "[43307] \"228868_x_at\"                 \"229289_at\"                  \n",
+       "[43309] \"226952_at\"                   \"226586_at\"                  \n",
+       "[43311] \"228792_at\"                   \"229464_at\"                  \n",
+       "[43313] \"227961_at\"                   \"225823_at\"                  \n",
+       "[43315] \"228757_at\"                   \"225686_at\"                  \n",
+       "[43317] \"226659_at\"                   \"230360_at\"                  \n",
+       "[43319] \"229777_at\"                   \"226203_at\"                  \n",
+       "[43321] \"226307_at\"                   \"226564_at\"                  \n",
+       "[43323] \"227884_at\"                   \"226063_at\"                  \n",
+       "[43325] \"226455_at\"                   \"229509_at\"                  \n",
+       "[43327] \"228282_at\"                   \"229259_at\"                  \n",
+       "[43329] \"226879_at\"                   \"228354_at\"                  \n",
+       "[43331] \"229455_at\"                   \"227363_s_at\"                \n",
+       "[43333] \"227240_at\"                   \"228135_at\"                  \n",
+       "[43335] \"226796_at\"                   \"225605_at\"                  \n",
+       "[43337] \"228690_s_at\"                 \"228689_at\"                  \n",
+       "[43339] \"228068_at\"                   \"227365_at\"                  \n",
+       "[43341] \"227793_at\"                   \"226617_at\"                  \n",
+       "[43343] \"228374_at\"                   \"229804_x_at\"                \n",
+       "[43345] \"226193_x_at\"                 \"229516_at\"                  \n",
+       "[43347] \"228706_s_at\"                 \"228707_at\"                  \n",
+       "[43349] \"227720_at\"                   \"227291_s_at\"                \n",
+       "[43351] \"226554_at\"                   \"226416_at\"                  \n",
+       "[43353] \"228499_at\"                   \"230421_at\"                  \n",
+       "[43355] \"228208_x_at\"                 \"229418_at\"                  \n",
+       "[43357] \"226311_at\"                   \"229006_at\"                  \n",
+       "[43359] \"226750_at\"                   \"226730_s_at\"                \n",
+       "[43361] \"226729_at\"                   \"228387_at\"                  \n",
+       "[43363] \"229050_s_at\"                 \"229003_x_at\"                \n",
+       "[43365] \"226940_at\"                   \"229050_s_at\"                \n",
+       "[43367] \"229003_x_at\"                 \"226940_at\"                  \n",
+       "[43369] \"226114_at\"                   \"226113_at\"                  \n",
+       "[43371] \"226388_at\"                   \"226961_at\"                  \n",
+       "[43373] \"226233_at\"                   \"229038_at\"                  \n",
+       "[43375] \"225954_s_at\"                 \"230142_s_at\"                \n",
+       "[43377] \"228519_x_at\"                 \"228845_at\"                  \n",
+       "[43379] \"227853_at\"                   \"230176_at\"                  \n",
+       "[43381] \"229124_at\"                   \"228274_at\"                  \n",
+       "[43383] \"229280_s_at\"                 \"228684_at\"                  \n",
+       "[43385] \"227195_at\"                   \"228048_at\"                  \n",
+       "[43387] \"229594_at\"                   \"227326_at\"                  \n",
+       "[43389] \"226127_at\"                   \"226631_at\"                  \n",
+       "[43391] \"226634_at\"                   \"230395_at\"                  \n",
+       "[43393] \"225861_at\"                   \"230002_at\"                  \n",
+       "[43395] \"227894_at\"                   \"227273_at\"                  \n",
+       "[43397] \"228264_at\"                   \"230236_at\"                  \n",
+       "[43399] \"227797_x_at\"                 \"226919_at\"                  \n",
+       "[43401] \"227712_at\"                   \"226166_x_at\"                \n",
+       "[43403] \"226761_at\"                   \"229752_at\"                  \n",
+       "[43405] \"226759_at\"                   \"227560_at\"                  \n",
+       "[43407] \"227625_s_at\"                 \"226155_at\"                  \n",
+       "[43409] \"228006_at\"                   \"229196_at\"                  \n",
+       "[43411] \"226005_at\"                   \"228194_s_at\"                \n",
+       "[43413] \"227430_at\"                   \"228765_at\"                  \n",
+       "[43415] \"230487_at\"                   \"227890_at\"                  \n",
+       "[43417] \"229252_at\"                   \"225584_at\"                  \n",
+       "[43419] \"225577_at\"                   \"227966_s_at\"                \n",
+       "[43421] \"228278_at\"                   \"227400_at\"                  \n",
+       "[43423] \"225725_at\"                   \"228315_at\"                  \n",
+       "[43425] \"227221_at\"                   \"228168_at\"                  \n",
+       "[43427] \"227020_at\"                   \"229060_at\"                  \n",
+       "[43429] \"228604_at\"                   \"226480_at\"                  \n",
+       "[43431] \"225871_at\"                   \"226983_at\"                  \n",
+       "[43433] \"225848_at\"                   \"230432_at\"                  \n",
+       "[43435] \"229522_at\"                   \"228257_at\"                  \n",
+       "[43437] \"229604_at\"                   \"226086_at\"                  \n",
+       "[43439] \"225747_at\"                   \"226686_at\"                  \n",
+       "[43441] \"227189_at\"                   \"227392_at\"                  \n",
+       "[43443] \"227645_at\"                   \"228111_s_at\"                \n",
+       "[43445] \"229408_at\"                   \"230168_at\"                  \n",
+       "[43447] \"229885_at\"                   \"228104_at\"                  \n",
+       "[43449] \"229801_at\"                   \"230051_at\"                  \n",
+       "[43451] \"229863_s_at\"                 \"229864_at\"                  \n",
+       "[43453] \"229004_at\"                   \"227124_at\"                  \n",
+       "[43455] \"229962_at\"                   \"227985_at\"                  \n",
+       "[43457] \"227094_at\"                   \"228747_at\"                  \n",
+       "[43459] \"230215_at\"                   \"226206_at\"                  \n",
+       "[43461] \"229778_at\"                   \"229581_at\"                  \n",
+       "[43463] \"226201_at\"                   \"226935_s_at\"                \n",
+       "[43465] \"226306_at\"                   \"229803_s_at\"                \n",
+       "[43467] \"230490_x_at\"                 \"227974_at\"                  \n",
+       "[43469] \"227077_at\"                   \"230191_at\"                  \n",
+       "[43471] \"228346_at\"                   \"227465_at\"                  \n",
+       "[43473] \"228368_at\"                   \"229528_at\"                  \n",
+       "[43475] \"230407_at\"                   \"230464_at\"                  \n",
+       "[43477] \"228906_at\"                   \"227598_at\"                  \n",
+       "[43479] \"227566_at\"                   \"228436_at\"                  \n",
+       "[43481] \"225716_at\"                   \"228517_at\"                  \n",
+       "[43483] \"230293_at\"                   \"229803_s_at\"                \n",
+       "[43485] \"227053_at\"                   \"229444_at\"                  \n",
+       "[43487] \"229763_at\"                   \"227120_at\"                  \n",
+       "[43489] \"226947_at\"                   \"228523_at\"                  \n",
+       "[43491] \"227142_at\"                   \"228903_at\"                  \n",
+       "[43493] \"230177_at\"                   \"226716_at\"                  \n",
+       "[43495] \"227395_at\"                   \"226767_s_at\"                \n",
+       "[43497] \"227960_s_at\"                 \"229236_s_at\"                \n",
+       "[43499] \"226947_at\"                   \"229009_at\"                  \n",
+       "[43501] \"225973_at\"                   \"230508_at\"                  \n",
+       "[43503] \"226743_at\"                   \"225907_at\"                  \n",
+       "[43505] \"225909_at\"                   \"229218_at\"                  \n",
+       "[43507] \"226649_at\"                   \"230272_at\"                  \n",
+       "[43509] \"226073_at\"                   \"227655_at\"                  \n",
+       "[43511] \"229872_s_at\"                 \"228967_at\"                  \n",
+       "[43513] \"229612_at\"                   \"228214_at\"                  \n",
+       "[43515] \"227497_at\"                   \"227498_at\"                  \n",
+       "[43517] \"225798_at\"                   \"225800_at\"                  \n",
+       "[43519] \"229014_at\"                   \"230445_at\"                  \n",
+       "[43521] \"226146_at\"                   \"226146_at\"                  \n",
+       "[43523] \"227901_at\"                   \"229347_at\"                  \n",
+       "[43525] \"228651_at\"                   \"228444_at\"                  \n",
+       "[43527] \"230072_at\"                   \"228686_at\"                  \n",
+       "[43529] \"228928_x_at\"                 \"229815_at\"                  \n",
+       "[43531] \"227526_at\"                   \"229406_at\"                  \n",
+       "[43533] \"228259_s_at\"                 \"225698_at\"                  \n",
+       "[43535] \"226473_at\"                   \"229363_at\"                  \n",
+       "[43537] \"227070_at\"                   \"226889_at\"                  \n",
+       "[43539] \"226890_at\"                   \"227929_at\"                  \n",
+       "[43541] \"226094_at\"                   \"227983_at\"                  \n",
+       "[43543] \"227346_at\"                   \"227344_at\"                  \n",
+       "[43545] \"228622_s_at\"                 \"226300_at\"                  \n",
+       "[43547] \"226293_at\"                   \"228994_at\"                  \n",
+       "[43549] \"226647_at\"                   \"228379_at\"                  \n",
+       "[43551] \"229592_at\"                   \"227187_at\"                  \n",
+       "[43553] \"229956_at\"                   \"227660_at\"                  \n",
+       "[43555] \"225746_at\"                   \"225739_at\"                  \n",
+       "[43557] \"227185_at\"                   \"226644_at\"                  \n",
+       "[43559] \"230378_at\"                   \"228645_at\"                  \n",
+       "[43561] \"229902_at\"                   \"227090_at\"                  \n",
+       "[43563] \"228971_at\"                   \"225882_at\"                  \n",
+       "[43565] \"225881_at\"                   \"225932_s_at\"                \n",
+       "[43567] \"230367_at\"                   \"228664_at\"                  \n",
+       "[43569] \"225863_s_at\"                 \"227704_at\"                  \n",
+       "[43571] \"227922_x_at\"                 \"230177_at\"                  \n",
+       "[43573] \"229650_s_at\"                 \"229028_s_at\"                \n",
+       "[43575] \"229593_at\"                   \"228560_at\"                  \n",
+       "[43577] \"229502_at\"                   \"229954_at\"                  \n",
+       "[43579] \"230467_at\"                   \"229107_at\"                  \n",
+       "[43581] \"229384_at\"                   \"226611_s_at\"                \n",
+       "[43583] \"226610_at\"                   \"227858_at\"                  \n",
+       "[43585] \"229049_at\"                   \"227858_at\"                  \n",
+       "[43587] \"229588_at\"                   \"228012_at\"                  \n",
+       "[43589] \"226883_at\"                   \"226883_at\"                  \n",
+       "[43591] \"227308_x_at\"                 \"227940_at\"                  \n",
+       "[43593] \"227941_at\"                   \"226334_s_at\"                \n",
+       "[43595] \"230148_at\"                   \"226665_at\"                  \n",
+       "[43597] \"226147_s_at\"                 \"228865_at\"                  \n",
+       "[43599] \"226821_at\"                   \"226503_at\"                  \n",
+       "[43601] \"229083_at\"                   \"225670_at\"                  \n",
+       "[43603] \"227922_x_at\"                 \"225899_x_at\"                \n",
+       "[43605] \"227129_x_at\"                 \"229068_at\"                  \n",
+       "[43607] \"228049_x_at\"                 \"228049_x_at\"                \n",
+       "[43609] \"228049_x_at\"                 \"227522_at\"                  \n",
+       "[43611] \"230276_at\"                   \"228409_at\"                  \n",
+       "[43613] \"225549_at\"                   \"229283_at\"                  \n",
+       "[43615] \"229750_at\"                   \"228343_at\"                  \n",
+       "[43617] \"227749_at\"                   \"229283_at\"                  \n",
+       "[43619] \"228531_at\"                   \"226947_at\"                  \n",
+       "[43621] \"230036_at\"                   \"226603_at\"                  \n",
+       "[43623] \"230326_s_at\"                 \"230510_at\"                  \n",
+       "[43625] \"230330_at\"                   \"228306_at\"                  \n",
+       "[43627] \"228437_at\"                   \"227856_at\"                  \n",
+       "[43629] \"226143_at\"                   \"226187_at\"                  \n",
+       "[43631] \"226185_at\"                   \"226136_at\"                  \n",
+       "[43633] \"226142_at\"                   \"230384_at\"                  \n",
+       "[43635] \"229052_at\"                   \"225969_at\"                  \n",
+       "[43637] \"227750_at\"                   \"226828_s_at\"                \n",
+       "[43639] \"229052_at\"                   \"226213_at\"                  \n",
+       "[43641] \"228555_at\"                   \"227302_s_at\"                \n",
+       "[43643] \"226225_at\"                   \"226411_at\"                  \n",
+       "[43645] \"228851_s_at\"                 \"228852_at\"                  \n",
+       "[43647] \"227340_s_at\"                 \"226989_at\"                  \n",
+       "[43649] \"227339_at\"                   \"227746_at\"                  \n",
+       "[43651] \"227453_at\"                   \"225730_s_at\"                \n",
+       "[43653] \"225741_at\"                   \"228422_at\"                  \n",
+       "[43655] \"228253_at\"                   \"228554_at\"                  \n",
+       "[43657] \"227527_at\"                   \"225719_s_at\"                \n",
+       "[43659] \"229707_at\"                   \"227245_at\"                  \n",
+       "[43661] \"225888_at\"                   \"225705_at\"                  \n",
+       "[43663] \"228613_at\"                   \"229651_at\"                  \n",
+       "[43665] \"230295_at\"                   \"226566_at\"                  \n",
+       "[43667] \"228991_at\"                   \"229936_at\"                  \n",
+       "[43669] \"228327_x_at\"                 \"226100_at\"                  \n",
+       "[43671] \"230046_at\"                   \"229614_at\"                  \n",
+       "[43673] \"227694_at\"                   \"228556_at\"                  \n",
+       "[43675] \"228332_s_at\"                 \"228331_at\"                  \n",
+       "[43677] \"225875_s_at\"                 \"225876_at\"                  \n",
+       "[43679] \"225554_s_at\"                 \"230446_at\"                  \n",
+       "[43681] \"230301_at\"                   \"229064_s_at\"                \n",
+       "[43683] \"226272_at\"                   \"227511_at\"                  \n",
+       "[43685] \"226714_at\"                   \"229871_at\"                  \n",
+       "[43687] \"226447_at\"                   \"229690_at\"                  \n",
+       "[43689] \"225699_at\"                   \"227951_s_at\"                \n",
+       "[43691] \"227246_at\"                   \"228255_at\"                  \n",
+       "[43693] \"228455_at\"                   \"227386_s_at\"                \n",
+       "[43695] \"225674_at\"                   \"225677_at\"                  \n",
+       "[43697] \"230150_at\"                   \"229937_x_at\"                \n",
+       "[43699] \"225674_at\"                   \"225677_at\"                  \n",
+       "[43701] \"230150_at\"                   \"229114_at\"                  \n",
+       "[43703] \"226002_at\"                   \"225998_at\"                  \n",
+       "[43705] \"229467_at\"                   \"229221_at\"                  \n",
+       "[43707] \"227351_at\"                   \"230296_at\"                  \n",
+       "[43709] \"226653_at\"                   \"228753_at\"                  \n",
+       "[43711] \"227052_at\"                   \"226291_at\"                  \n",
+       "[43713] \"230022_at\"                   \"230425_at\"                  \n",
+       "[43715] \"228996_at\"                   \"225893_at\"                  \n",
+       "[43717] \"228242_at\"                   \"227784_s_at\"                \n",
+       "[43719] \"229087_s_at\"                 \"228830_s_at\"                \n",
+       "[43721] \"228830_s_at\"                 \"228829_at\"                  \n",
+       "[43723] \"229382_at\"                   \"229608_at\"                  \n",
+       "[43725] \"230266_at\"                   \"229972_at\"                  \n",
+       "[43727] \"229685_at\"                   \"226240_at\"                  \n",
+       "[43729] \"226117_at\"                   \"227751_at\"                  \n",
+       "[43731] \"226482_s_at\"                 \"227948_at\"                  \n",
+       "[43733] \"226219_at\"                   \"227582_at\"                  \n",
+       "[43735] \"229706_at\"                   \"227046_at\"                  \n",
+       "[43737] \"230035_at\"                   \"225990_at\"                  \n",
+       "[43739] \"227093_at\"                   \"226980_at\"                  \n",
+       "[43741] \"226540_at\"                   \"226539_s_at\"                \n",
+       "[43743] \"228962_at\"                   \"227980_at\"                  \n",
+       "[43745] \"230187_s_at\"                 \"230187_s_at\"                \n",
+       "[43747] \"228110_x_at\"                 \"228754_at\"                  \n",
+       "[43749] \"227884_at\"                   \"228529_at\"                  \n",
+       "[43751] \"230020_at\"                   \"227336_at\"                  \n",
+       "[43753] \"227637_at\"                   \"226794_at\"                  \n",
+       "[43755] \"225728_at\"                   \"227826_s_at\"                \n",
+       "[43757] \"227827_at\"                   \"226025_at\"                  \n",
+       "[43759] \"229307_at\"                   \"226118_at\"                  \n",
+       "[43761] \"228066_at\"                   \"227859_at\"                  \n",
+       "[43763] \"225628_s_at\"                 \"226727_at\"                  \n",
+       "[43765] \"226727_at\"                   \"229910_at\"                  \n",
+       "[43767] \"229472_at\"                   \"229141_at\"                  \n",
+       "[43769] \"229716_at\"                   \"226639_at\"                  \n",
+       "[43771] \"228650_at\"                   \"228839_s_at\"                \n",
+       "[43773] \"226529_at\"                   \"229838_at\"                  \n",
+       "[43775] \"227107_at\"                   \"227474_at\"                  \n",
+       "[43777] \"228425_at\"                   \"226079_at\"                  \n",
+       "[43779] \"227845_s_at\"                 \"229955_at\"                  \n",
+       "[43781] \"229635_at\"                   \"228900_at\"                  \n",
+       "[43783] \"226809_at\"                   \"229468_at\"                  \n",
+       "[43785] \"230491_at\"                   \"228213_at\"                  \n",
+       "[43787] \"229620_at\"                   \"229888_at\"                  \n",
+       "[43789] \"227450_at\"                   \"226298_at\"                  \n",
+       "[43791] \"229867_at\"                   \"226998_at\"                  \n",
+       "[43793] \"225917_at\"                   \"229559_at\"                  \n",
+       "[43795] \"227462_at\"                   \"229669_at\"                  \n",
+       "[43797] \"229669_at\"                   \"229624_at\"                  \n",
+       "[43799] \"227027_at\"                   \"226886_at\"                  \n",
+       "[43801] \"228429_x_at\"                 \"226690_at\"                  \n",
+       "[43803] \"225838_at\"                   \"227783_at\"                  \n",
+       "[43805] \"227677_at\"                   \"226717_at\"                  \n",
+       "[43807] \"228667_at\"                   \"227527_at\"                  \n",
+       "[43809] \"227528_s_at\"                 \"226011_at\"                  \n",
+       "[43811] \"230450_at\"                   \"226688_at\"                  \n",
+       "[43813] \"228360_at\"                   \"228718_at\"                  \n",
+       "[43815] \"228540_at\"                   \"227763_at\"                  \n",
+       "[43817] \"227764_at\"                   \"227369_at\"                  \n",
+       "[43819] \"228129_at\"                   \"228614_at\"                  \n",
+       "[43821] \"228080_at\"                   \"227868_at\"                  \n",
+       "[43823] \"229638_at\"                   \"227360_at\"                  \n",
+       "[43825] \"229679_at\"                   \"226583_at\"                  \n",
+       "[43827] \"229978_at\"                   \"227570_at\"                  \n",
+       "[43829] \"230458_at\"                   \"227055_at\"                  \n",
+       "[43831] \"225632_s_at\"                 \"227301_at\"                  \n",
+       "[43833] \"229894_s_at\"                 \"227301_at\"                  \n",
+       "[43835] \"229844_at\"                   \"229248_at\"                  \n",
+       "[43837] \"230158_at\"                   \"230158_at\"                  \n",
+       "[43839] \"230306_at\"                   \"229487_at\"                  \n",
+       "[43841] \"227646_at\"                   \"226608_at\"                  \n",
+       "[43843] \"227301_at\"                   \"227301_at\"                  \n",
+       "[43845] \"229939_at\"                   \"226994_at\"                  \n",
+       "[43847] \"226243_at\"                   \"230158_at\"                  \n",
+       "[43849] \"228435_at\"                   \"226215_s_at\"                \n",
+       "[43851] \"227640_s_at\"                 \"227035_x_at\"                \n",
+       "[43853] \"227640_s_at\"                 \"227035_x_at\"                \n",
+       "[43855] \"229918_at\"                   \"225655_at\"                  \n",
+       "[43857] \"227868_at\"                   \"229446_at\"                  \n",
+       "[43859] \"226702_at\"                   \"230081_at\"                  \n",
+       "[43861] \"225761_at\"                   \"228525_at\"                  \n",
+       "[43863] \"228525_at\"                   \"225558_at\"                  \n",
+       "[43865] \"227148_at\"                   \"228329_at\"                  \n",
+       "[43867] \"226020_s_at\"                 \"228289_at\"                  \n",
+       "[43869] \"226528_at\"                   \"228029_at\"                  \n",
+       "[43871] \"230355_at\"                   \"228147_at\"                  \n",
+       "[43873] \"226006_at\"                   \"226257_x_at\"                \n",
+       "[43875] \"228059_x_at\"                 \"227149_at\"                  \n",
+       "[43877] \"228510_at\"                   \"226391_at\"                  \n",
+       "[43879] \"228892_at\"                   \"227698_s_at\"                \n",
+       "[43881] \"228114_x_at\"                 \"227378_x_at\"                \n",
+       "[43883] \"227641_at\"                   \"229975_at\"                  \n",
+       "[43885] \"230194_at\"                   \"227623_at\"                  \n",
+       "[43887] \"226078_at\"                   \"229443_at\"                  \n",
+       "[43889] \"228192_at\"                   \"226569_s_at\"                \n",
+       "[43891] \"230119_at\"                   \"230088_at\"                  \n",
+       "[43893] \"227838_at\"                   \"228796_at\"                  \n",
+       "[43895] \"228515_at\"                   \"228085_at\"                  \n",
+       "[43897] \"227658_s_at\"                 \"227207_x_at\"                \n",
+       "[43899] \"229549_at\"                   \"226955_at\"                  \n",
+       "[43901] \"226881_at\"                   \"228243_at\"                  \n",
+       "[43903] \"228243_at\"                   \"228546_at\"                  \n",
+       "[43905] \"227183_at\"                   \"226275_at\"                  \n",
+       "[43907] \"228846_at\"                   \"226442_at\"                  \n",
+       "[43909] \"229164_s_at\"                 \"228848_at\"                  \n",
+       "[43911] \"230024_at\"                   \"227515_at\"                  \n",
+       "[43913] \"228144_at\"                   \"230055_at\"                  \n",
+       "[43915] \"227226_at\"                   \"230091_at\"                  \n",
+       "[43917] \"229231_at\"                   \"226077_at\"                  \n",
+       "[43919] \"229062_at\"                   \"230473_s_at\"                \n",
+       "[43921] \"225588_s_at\"                 \"225587_at\"                  \n",
+       "[43923] \"226169_at\"                   \"229180_at\"                  \n",
+       "[43925] \"229440_at\"                   \"229439_s_at\"                \n",
+       "[43927] \"226855_at\"                   \"229711_s_at\"                \n",
+       "[43929] \"226885_at\"                   \"225654_at\"                  \n",
+       "[43931] \"226621_at\"                   \"227748_at\"                  \n",
+       "[43933] \"228338_at\"                   \"228248_at\"                  \n",
+       "[43935] \"226312_at\"                   \"226310_at\"                  \n",
+       "[43937] \"227834_at\"                   \"229400_at\"                  \n",
+       "[43939] \"229493_at\"                   \"229337_at\"                  \n",
+       "[43941] \"228601_at\"                   \"227697_at\"                  \n",
+       "[43943] \"226266_at\"                   \"227851_s_at\"                \n",
+       "[43945] \"229766_at\"                   \"227342_s_at\"                \n",
+       "[43947] \"227198_at\"                   \"228676_at\"                  \n",
+       "[43949] \"225561_at\"                   \"225996_at\"                  \n",
+       "[43951] \"228065_at\"                   \"227616_at\"                  \n",
+       "[43953] \"226392_at\"                   \"229255_x_at\"                \n",
+       "[43955] \"227981_at\"                   \"226636_at\"                  \n",
+       "[43957] \"226718_at\"                   \"229809_at\"                  \n",
+       "[43959] \"226810_at\"                   \"230032_at\"                  \n",
+       "[43961] \"227548_at\"                   \"228801_at\"                  \n",
+       "[43963] \"228759_at\"                   \"227347_x_at\"                \n",
+       "[43965] \"228099_at\"                   \"226784_at\"                  \n",
+       "[43967] \"226948_at\"                   \"226945_at\"                  \n",
+       "[43969] \"227414_at\"                   \"225559_at\"                  \n",
+       "[43971] \"226451_at\"                   \"226561_at\"                  \n",
+       "[43973] \"226006_at\"                   \"229605_at\"                  \n",
+       "[43975] \"228205_at\"                   \"228592_at\"                  \n",
+       "[43977] \"228599_at\"                   \"228132_at\"                  \n",
+       "[43979] \"226369_at\"                   \"227794_at\"                  \n",
+       "[43981] \"227695_at\"                   \"228028_at\"                  \n",
+       "[43983] \"229917_at\"                   \"229130_at\"                  \n",
+       "[43985] \"228641_at\"                   \"229251_s_at\"                \n",
+       "[43987] \"228320_x_at\"                 \"225620_at\"                  \n",
+       "[43989] \"228035_at\"                   \"228086_at\"                  \n",
+       "[43991] \"229831_at\"                   \"228042_at\"                  \n",
+       "[43993] \"228984_at\"                   \"227622_at\"                  \n",
+       "[43995] \"229779_at\"                   \"228916_at\"                  \n",
+       "[43997] \"225862_at\"                   \"226049_at\"                  \n",
+       "[43999] \"225946_at\"                   \"228181_at\"                  \n",
+       "[44001] \"229057_at\"                   \"226941_at\"                  \n",
+       "[44003] \"226986_at\"                   \"229394_s_at\"                \n",
+       "[44005] \"225947_at\"                   \"227281_at\"                  \n",
+       "[44007] \"228032_s_at\"                 \"227325_at\"                  \n",
+       "[44009] \"227651_at\"                   \"227353_at\"                  \n",
+       "[44011] \"227822_at\"                   \"228630_at\"                  \n",
+       "[44013] \"228551_at\"                   \"226363_at\"                  \n",
+       "[44015] \"229217_at\"                   \"226949_at\"                  \n",
+       "[44017] \"228591_at\"                   \"227247_at\"                  \n",
+       "[44019] \"227000_at\"                   \"226018_at\"                  \n",
+       "[44021] \"227000_at\"                   \"225715_at\"                  \n",
+       "[44023] \"229508_at\"                   \"226156_at\"                  \n",
+       "[44025] \"228646_at\"                   \"229538_s_at\"                \n",
+       "[44027] \"226441_at\"                   \"226979_at\"                  \n",
+       "[44029] \"227073_at\"                   \"227434_at\"                  \n",
+       "[44031] \"229143_at\"                   \"226678_at\"                  \n",
+       "[44033] \"228352_at\"                   \"228350_at\"                  \n",
+       "[44035] \"225657_at\"                   \"225657_at\"                  \n",
+       "[44037] \"229346_at\"                   \"229460_at\"                  \n",
+       "[44039] \"228721_at\"                   \"230012_at\"                  \n",
+       "[44041] \"228538_at\"                   \"230068_s_at\"                \n",
+       "[44043] \"229855_at\"                   \"229368_s_at\"                \n",
+       "[44045] \"229368_s_at\"                 \"227554_at\"                  \n",
+       "[44047] \"229480_at\"                   \"229873_at\"                  \n",
+       "[44049] \"227578_at\"                   \"229198_at\"                  \n",
+       "[44051] \"227479_at\"                   \"230132_at\"                  \n",
+       "[44053] \"227431_at\"                   \"228813_at\"                  \n",
+       "[44055] \"226726_at\"                   \"229507_at\"                  \n",
+       "[44057] \"227321_at\"                   \"229833_at\"                  \n",
+       "[44059] \"229215_at\"                   \"230158_at\"                  \n",
+       "[44061] \"227045_at\"                   \"227484_at\"                  \n",
+       "[44063] \"229279_at\"                   \"226976_at\"                  \n",
+       "[44065] \"227284_at\"                   \"227500_at\"                  \n",
+       "[44067] \"226669_at\"                   \"226176_s_at\"                \n",
+       "[44069] \"226174_at\"                   \"228393_s_at\"                \n",
+       "[44071] \"228392_at\"                   \"229136_s_at\"                \n",
+       "[44073] \"228093_at\"                   \"229205_at\"                  \n",
+       "[44075] \"227807_at\"                   \"228424_at\"                  \n",
+       "[44077] \"225630_at\"                   \"225631_at\"                  \n",
+       "[44079] \"228769_at\"                   \"229751_s_at\"                \n",
+       "[44081] \"229819_at\"                   \"229819_at\"                  \n",
+       "[44083] \"228775_at\"                   \"227737_at\"                  \n",
+       "[44085] \"228148_at\"                   \"227734_s_at\"                \n",
+       "[44087] \"230175_s_at\"                 \"229862_x_at\"                \n",
+       "[44089] \"229973_at\"                   \"226431_at\"                  \n",
+       "[44091] \"226418_at\"                   \"226422_at\"                  \n",
+       "[44093] \"226916_x_at\"                 \"227141_at\"                  \n",
+       "[44095] \"230452_at\"                   \"226988_s_at\"                \n",
+       "[44097] \"229854_at\"                   \"226815_at\"                  \n",
+       "[44099] \"228071_at\"                   \"229367_s_at\"                \n",
+       "[44101] \"225789_at\"                   \"228794_at\"                  \n",
+       "[44103] \"227384_s_at\"                 \"229631_at\"                  \n",
+       "[44105] \"229617_x_at\"                 \"225811_at\"                  \n",
+       "[44107] \"228702_at\"                   \"225636_at\"                  \n",
+       "[44109] \"230480_at\"                   \"229275_at\"                  \n",
+       "[44111] \"228803_at\"                   \"229402_at\"                  \n",
+       "[44113] \"229402_at\"                   \"226969_at\"                  \n",
+       "[44115] \"228799_at\"                   \"228549_at\"                  \n",
+       "[44117] \"225743_at\"                   \"228056_s_at\"                \n",
+       "[44119] \"228055_at\"                   \"230304_at\"                  \n",
+       "[44121] \"228760_at\"                   \"230053_at\"                  \n",
+       "[44123] \"227264_at\"                   \"227679_at\"                  \n",
+       "[44125] \"230115_at\"                   \"226966_at\"                  \n",
+       "[44127] \"229156_s_at\"                 \"229157_at\"                  \n",
+       "[44129] \"229804_x_at\"                 \"226193_x_at\"                \n",
+       "[44131] \"227844_at\"                   \"229161_at\"                  \n",
+       "[44133] \"229611_at\"                   \"227964_at\"                  \n",
+       "[44135] \"226711_at\"                   \"228127_at\"                  \n",
+       "[44137] \"228547_at\"                   \"226531_at\"                  \n",
+       "[44139] \"226295_at\"                   \"225836_s_at\"                \n",
+       "[44141] \"225837_at\"                   \"230065_at\"                  \n",
+       "[44143] \"230257_s_at\"                 \"230504_at\"                  \n",
+       "[44145] \"226071_at\"                   \"225845_at\"                  \n",
+       "[44147] \"226148_at\"                   \"226658_at\"                  \n",
+       "[44149] \"227007_at\"                   \"226451_at\"                  \n",
+       "[44151] \"228582_x_at\"                 \"227510_x_at\"                \n",
+       "[44153] \"229687_s_at\"                 \"229688_at\"                  \n",
+       "[44155] \"226571_s_at\"                 \"228450_at\"                  \n",
+       "[44157] \"228056_s_at\"                 \"228055_at\"                  \n",
+       "[44159] \"227396_at\"                   \"229782_at\"                  \n",
+       "[44161] \"229795_at\"                   \"226546_at\"                  \n",
+       "[44163] \"227426_at\"                   \"229261_at\"                  \n",
+       "[44165] \"230337_at\"                   \"228388_at\"                  \n",
+       "[44167] \"227106_at\"                   \"227332_at\"                  \n",
+       "[44169] \"230195_at\"                   \"228675_at\"                  \n",
+       "[44171] \"225869_s_at\"                 \"229048_at\"                  \n",
+       "[44173] \"226060_at\"                   \"227062_at\"                  \n",
+       "[44175] \"226154_at\"                   \"225650_at\"                  \n",
+       "[44177] \"230052_s_at\"                 \"225557_at\"                  \n",
+       "[44179] \"230428_at\"                   \"229253_at\"                  \n",
+       "[44181] \"228501_at\"                   \"227686_at\"                  \n",
+       "[44183] \"226451_at\"                   \"229010_at\"                  \n",
+       "[44185] \"227882_at\"                   \"229332_at\"                  \n",
+       "[44187] \"229544_at\"                   \"230242_at\"                  \n",
+       "[44189] \"230164_at\"                   \"226790_at\"                  \n",
+       "[44191] \"227320_at\"                   \"227320_at\"                  \n",
+       "[44193] \"228183_s_at\"                 \"227099_s_at\"                \n",
+       "[44195] \"230045_at\"                   \"229385_s_at\"                \n",
+       "[44197] \"229314_at\"                   \"226582_at\"                  \n",
+       "[44199] \"226262_at\"                   \"229870_at\"                  \n",
+       "[44201] \"230393_at\"                   \"226719_at\"                  \n",
+       "[44203] \"227925_at\"                   \"230274_s_at\"                \n",
+       "[44205] \"225904_at\"                   \"227115_at\"                  \n",
+       "[44207] \"229150_at\"                   \"228612_at\"                  \n",
+       "[44209] \"228643_at\"                   \"230341_x_at\"                \n",
+       "[44211] \"229789_at\"                   \"228990_at\"                  \n",
+       "[44213] \"228990_at\"                   \"228990_at\"                  \n",
+       "[44215] \"228990_at\"                   \"229372_at\"                  \n",
+       "[44217] \"229245_at\"                   \"226367_at\"                  \n",
+       "[44219] \"230226_s_at\"                 \"226371_at\"                  \n",
+       "[44221] \"226739_at\"                   \"228229_at\"                  \n",
+       "[44223] \"226013_at\"                   \"228482_at\"                  \n",
+       "[44225] \"227418_at\"                   \"228482_at\"                  \n",
+       "[44227] \"228777_at\"                   \"227810_at\"                  \n",
+       "[44229] \"227992_s_at\"                 \"230255_at\"                  \n",
+       "[44231] \"228232_s_at\"                 \"229369_at\"                  \n",
+       "[44233] \"229132_at\"                   \"229381_at\"                  \n",
+       "[44235] \"226028_at\"                   \"230033_at\"                  \n",
+       "[44237] \"227922_x_at\"                 \"225899_x_at\"                \n",
+       "[44239] \"229199_at\"                   \"228828_at\"                  \n",
+       "[44241] \"228826_at\"                   \"228970_at\"                  \n",
+       "[44243] \"228026_at\"                   \"227452_at\"                  \n",
+       "[44245] \"227452_at\"                   \"229892_at\"                  \n",
+       "[44247] \"225899_x_at\"                 \"227129_x_at\"                \n",
+       "[44249] \"228255_at\"                   \"229736_at\"                  \n",
+       "[44251] \"229736_at\"                   \"226283_at\"                  \n",
+       "[44253] \"225711_at\"                   \"225707_at\"                  \n",
+       "[44255] \"225709_at\"                   \"230451_at\"                  \n",
+       "[44257] \"226793_at\"                   \"229666_s_at\"                \n",
+       "[44259] \"229665_at\"                   \"226297_at\"                  \n",
+       "[44261] \"230314_at\"                   \"226516_at\"                  \n",
+       "[44263] \"227963_at\"                   \"226912_at\"                  \n",
+       "[44265] \"226990_at\"                   \"226289_at\"                  \n",
+       "[44267] \"226285_at\"                   \"227209_at\"                  \n",
+       "[44269] \"227202_at\"                   \"228476_at\"                  \n",
+       "[44271] \"228333_at\"                   \"230392_at\"                  \n",
+       "[44273] \"227610_at\"                   \"230468_s_at\"                \n",
+       "[44275] \"229120_s_at\"                 \"226565_at\"                  \n",
+       "[44277] \"227112_at\"                   \"227356_at\"                  \n",
+       "[44279] \"227356_at\"                   \"228972_at\"                  \n",
+       "[44281] \"227366_at\"                   \"226350_at\"                  \n",
+       "[44283] \"226350_at\"                   \"227700_x_at\"                \n",
+       "[44285] \"227237_x_at\"                 \"227472_at\"                  \n",
+       "[44287] \"226229_s_at\"                 \"228261_at\"                  \n",
+       "[44289] \"229056_at\"                   \"228245_s_at\"                \n",
+       "[44291] \"228245_s_at\"                 \"226679_at\"                  \n",
+       "[44293] \"227864_s_at\"                 \"229247_at\"                  \n",
+       "[44295] \"228245_s_at\"                 \"228245_s_at\"                \n",
+       "[44297] \"228504_at\"                   \"226728_at\"                  \n",
+       "[44299] \"229647_at\"                   \"227603_at\"                  \n",
+       "[44301] \"229816_at\"                   \"227437_at\"                  \n",
+       "[44303] \"228749_at\"                   \"229366_at\"                  \n",
+       "[44305] \"225889_at\"                   \"226581_at\"                  \n",
+       "[44307] \"227758_at\"                   \"225842_at\"                  \n",
+       "[44309] \"226425_at\"                   \"226861_at\"                  \n",
+       "[44311] \"227305_s_at\"                 \"227304_at\"                  \n",
+       "[44313] \"229626_at\"                   \"226509_at\"                  \n",
+       "[44315] \"229897_at\"                   \"230201_at\"                  \n",
+       "[44317] \"229519_at\"                   \"227057_at\"                  \n",
+       "[44319] \"225618_at\"                   \"230063_at\"                  \n",
+       "[44321] \"226064_s_at\"                 \"229466_at\"                  \n",
+       "[44323] \"228662_at\"                   \"226572_at\"                  \n",
+       "[44325] \"227109_at\"                   \"228131_at\"                  \n",
+       "[44327] \"227571_at\"                   \"227227_at\"                  \n",
+       "[44329] \"230240_at\"                   \"226322_at\"                  \n",
+       "[44331] \"226931_at\"                   \"226527_at\"                  \n",
+       "[44333] \"225834_at\"                   \"229874_x_at\"                \n",
+       "[44335] \"229874_x_at\"                 \"228748_at\"                  \n",
+       "[44337] \"228912_at\"                   \"230381_at\"                  \n",
+       "[44339] \"228973_at\"                   \"227441_s_at\"                \n",
+       "[44341] \"227440_at\"                   \"227439_at\"                  \n",
+       "[44343] \"225834_at\"                   \"227649_s_at\"                \n",
+       "[44345] \"226286_at\"                   \"228595_at\"                  \n",
+       "[44347] \"230388_s_at\"                 \"225616_at\"                  \n",
+       "[44349] \"225776_at\"                   \"225778_at\"                  \n",
+       "[44351] \"229605_at\"                   \"226239_at\"                  \n",
+       "[44353] \"230038_at\"                   \"226950_at\"                  \n",
+       "[44355] \"226619_at\"                   \"227747_at\"                  \n",
+       "[44357] \"227743_at\"                   \"226734_at\"                  \n",
+       "[44359] \"229926_at\"                   \"228904_at\"                  \n",
+       "[44361] \"229667_s_at\"                 \"226461_at\"                  \n",
+       "[44363] \"229119_s_at\"                 \"228719_at\"                  \n",
+       "[44365] \"229929_at\"                   \"228182_at\"                  \n",
+       "[44367] \"225982_at\"                   \"226820_at\"                  \n",
+       "[44369] \"228923_at\"                   \"229085_at\"                  \n",
+       "[44371] \"229310_at\"                   \"227998_at\"                  \n",
+       "[44373] \"229598_at\"                   \"229998_x_at\"                \n",
+       "[44375] \"227454_at\"                   \"230082_at\"                  \n",
+       "[44377] \"225593_at\"                   \"227359_at\"                  \n",
+       "[44379] \"229770_at\"                   \"227962_at\"                  \n",
+       "[44381] \"227359_at\"                   \"226296_s_at\"                \n",
+       "[44383] \"228113_at\"                   \"228545_at\"                  \n",
+       "[44385] \"227074_at\"                   \"226891_at\"                  \n",
+       "[44387] \"228739_at\"                   \"228821_at\"                  \n",
+       "[44389] \"226723_at\"                   \"226337_at\"                  \n",
+       "[44391] \"226953_at\"                   \"230284_at\"                  \n",
+       "[44393] \"229479_at\"                   \"226740_x_at\"                \n",
+       "[44395] \"229447_x_at\"                 \"227067_x_at\"                \n",
+       "[44397] \"229842_at\"                   \"230495_at\"                  \n",
+       "[44399] \"228430_at\"                   \"227819_at\"                  \n",
+       "[44401] \"229231_at\"                   \"229231_at\"                  \n",
+       "[44403] \"226505_x_at\"                 \"227077_at\"                  \n",
+       "[44405] \"225772_s_at\"                 \"228268_at\"                  \n",
+       "[44407] \"228618_at\"                   \"226238_at\"                  \n",
+       "[44409] \"227167_s_at\"                 \"228779_at\"                  \n",
+       "[44411] \"227200_at\"                   \"230460_at\"                  \n",
+       "[44413] \"230099_at\"                   \"227567_at\"                  \n",
+       "[44415] \"230193_at\"                   \"229338_at\"                  \n",
+       "[44417] \"229754_at\"                   \"230334_at\"                  \n",
+       "[44419] \"227558_at\"                   \"228488_at\"                  \n",
+       "[44421] \"228925_at\"                   \"225929_s_at\"                \n",
+       "[44423] \"225931_s_at\"                 \"230000_at\"                  \n",
+       "[44425] \"228925_at\"                   \"226413_at\"                  \n",
+       "[44427] \"230339_at\"                   \"227079_at\"                  \n",
+       "[44429] \"225572_at\"                   \"225565_at\"                  \n",
+       "[44431] \"229028_s_at\"                 \"229028_s_at\"                \n",
+       "[44433] \"229488_at\"                   \"227436_at\"                  \n",
+       "[44435] \"225834_at\"                   \"229872_s_at\"                \n",
+       "[44437] \"229264_at\"                   \"228810_at\"                  \n",
+       "[44439] \"227280_s_at\"                 \"229028_s_at\"                \n",
+       "[44441] \"227227_at\"                   \"229028_s_at\"                \n",
+       "[44443] \"227227_at\"                   \"229028_s_at\"                \n",
+       "[44445] \"227227_at\"                   \"227280_s_at\"                \n",
+       "[44447] \"230244_at\"                   \"226848_at\"                  \n",
+       "[44449] \"226188_at\"                   \"225793_at\"                  \n",
+       "[44451] \"228621_at\"                   \"226740_x_at\"                \n",
+       "[44453] \"229447_x_at\"                 \"227067_x_at\"                \n",
+       "[44455] \"230056_at\"                   \"228495_at\"                  \n",
+       "[44457] \"229103_at\"                   \"229103_at\"                  \n",
+       "[44459] \"227384_s_at\"                 \"227067_x_at\"                \n",
+       "[44461] \"227533_at\"                   \"227224_at\"                  \n",
+       "[44463] \"226638_at\"                   \"230013_s_at\"                \n",
+       "[44465] \"226253_at\"                   \"226856_at\"                  \n",
+       "[44467] \"227127_at\"                   \"226856_at\"                  \n",
+       "[44469] \"227078_at\"                   \"227127_at\"                  \n",
+       "[44471] \"226856_at\"                   \"227078_at\"                  \n",
+       "[44473] \"229441_at\"                   \"226279_at\"                  \n",
+       "[44475] \"226265_at\"                   \"229982_at\"                  \n",
+       "[44477] \"228293_at\"                   \"227435_at\"                  \n",
+       "[44479] \"227433_at\"                   \"226740_x_at\"                \n",
+       "[44481] \"229447_x_at\"                 \"229095_s_at\"                \n",
+       "[44483] \"229096_at\"                   \"227862_at\"                  \n",
+       "[44485] \"229518_at\"                   \"228721_at\"                  \n",
+       "[44487] \"228721_at\"                   \"227818_at\"                  \n",
+       "[44489] \"226252_at\"                   \"226250_at\"                  \n",
+       "[44491] \"227082_at\"                   \"227121_at\"                  \n",
+       "[44493] \"227716_at\"                   \"228094_at\"                  \n",
+       "[44495] \"230077_at\"                   \"226693_at\"                  \n",
+       "[44497] \"229820_at\"                   \"229458_s_at\"                \n",
+       "[44499] \"229820_at\"                   \"226981_at\"                  \n",
+       "[44501] \"230043_at\"                   \"227171_at\"                  \n",
+       "[44503] \"230060_at\"                   \"227370_at\"                  \n",
+       "[44505] \"225742_at\"                   \"225740_x_at\"                \n",
+       "[44507] \"228090_at\"                   \"226357_at\"                  \n",
+       "[44509] \"226693_at\"                   \"230077_at\"                  \n",
+       "[44511] \"225883_at\"                   \"229389_at\"                  \n",
+       "[44513] \"226162_at\"                   \"225899_x_at\"                \n",
+       "[44515] \"227129_x_at\"                 \"226787_at\"                  \n",
+       "[44517] \"226922_at\"                   \"228275_at\"                  \n",
+       "[44519] \"228275_at\"                   \"229414_at\"                  \n",
+       "[44521] \"225696_at\"                   \"229276_at\"                  \n",
+       "[44523] \"226047_at\"                   \"230214_at\"                  \n",
+       "[44525] \"229566_at\"                   \"228660_x_at\"                \n",
+       "[44527] \"226505_x_at\"                 \"226965_at\"                  \n",
+       "[44529] \"227449_at\"                   \"228948_at\"                  \n",
+       "[44531] \"229374_at\"                   \"229532_at\"                  \n",
+       "[44533] \"226816_s_at\"                 \"227493_s_at\"                \n",
+       "[44535] \"226740_x_at\"                 \"229447_x_at\"                \n",
+       "[44537] \"226361_at\"                   \"228978_at\"                  \n",
+       "[44539] \"227067_x_at\"                 \"227041_at\"                  \n",
+       "[44541] \"226763_at\"                   \"228088_at\"                  \n",
+       "[44543] \"227727_at\"                   \"230499_at\"                  \n",
+       "[44545] \"230286_at\"                   \"226766_at\"                  \n",
+       "[44547] \"226709_at\"                   \"229610_at\"                  \n",
+       "[44549] \"229799_s_at\"                 \"227394_at\"                  \n",
+       "[44551] \"227892_at\"                   \"226171_at\"                  \n",
+       "[44553] \"230454_at\"                   \"226505_x_at\"                \n",
+       "[44555] \"226024_at\"                   \"229792_at\"                  \n",
+       "[44557] \"230494_at\"                   \"226331_at\"                  \n",
+       "[44559] \"225641_at\"                   \"225691_at\"                  \n",
+       "[44561] \"225694_at\"                   \"225690_at\"                  \n",
+       "[44563] \"225697_at\"                   \"228300_at\"                  \n",
+       "[44565] \"226675_s_at\"                 \"226660_at\"                  \n",
+       "[44567] \"229423_at\"                   \"228890_at\"                  \n",
+       "[44569] \"227268_at\"                   \"226016_at\"                  \n",
+       "[44571] \"227259_at\"                   \"229625_at\"                  \n",
+       "[44573] \"226198_at\"                   \"228188_at\"                  \n",
+       "[44575] \"228452_at\"                   \"230227_at\"                  \n",
+       "[44577] \"228150_at\"                   \"228150_at\"                  \n",
+       "[44579] \"228078_at\"                   \"228269_x_at\"                \n",
+       "[44581] \"228587_at\"                   \"226657_at\"                  \n",
+       "[44583] \"228146_at\"                   \"225689_at\"                  \n",
+       "[44585] \"228625_at\"                   \"227159_at\"                  \n",
+       "[44587] \"228335_at\"                   \"227946_at\"                  \n",
+       "[44589] \"226674_at\"                   \"228975_at\"                  \n",
+       "[44591] \"226674_at\"                   \"227584_at\"                  \n",
+       "[44593] \"229826_at\"                   \"229044_at\"                  \n",
+       "[44595] \"226687_at\"                   \"230077_at\"                  \n",
+       "[44597] \"229484_at\"                   \"230435_at\"                  \n",
+       "[44599] \"230077_at\"                   \"229569_at\"                  \n",
+       "[44601] \"227067_x_at\"                 \"226740_x_at\"                \n",
+       "[44603] \"229447_x_at\"                 \"227278_at\"                  \n",
+       "[44605] \"226342_at\"                   \"229656_s_at\"                \n",
+       "[44607] \"225930_at\"                   \"225768_at\"                  \n",
+       "[44609] \"225651_at\"                   \"228812_at\"                  \n",
+       "[44611] \"229362_at\"                   \"228812_at\"                  \n",
+       "[44613] \"227685_at\"                   \"227061_at\"                  \n",
+       "[44615] \"228227_at\"                   \"229244_at\"                  \n",
+       "[44617] \"228218_at\"                   \"225908_at\"                  \n",
+       "[44619] \"229948_at\"                   \"226317_at\"                  \n",
+       "[44621] \"226656_at\"                   \"227138_at\"                  \n",
+       "[44623] \"228240_at\"                   \"226987_at\"                  \n",
+       "[44625] \"226476_s_at\"                 \"226481_at\"                  \n",
+       "[44627] \"226477_at\"                   \"226624_at\"                  \n",
+       "[44629] \"227847_at\"                   \"229872_s_at\"                \n",
+       "[44631] \"229264_at\"                   \"229429_x_at\"                \n",
+       "[44633] \"225688_s_at\"                 \"229595_at\"                  \n",
+       "[44635] \"226066_at\"                   \"230325_at\"                  \n",
+       "[44637] \"229031_at\"                   \"229224_x_at\"                \n",
+       "[44639] \"228564_at\"                   \"226098_at\"                  \n",
+       "[44641] \"228714_at\"                   \"228620_at\"                  \n",
+       "[44643] \"225799_at\"                   \"228940_at\"                  \n",
+       "[44645] \"227837_at\"                   \"230184_at\"                  \n",
+       "[44647] \"227969_at\"                   \"228412_at\"                  \n",
+       "[44649] \"226184_at\"                   \"228532_at\"                  \n",
+       "[44651] \"228548_at\"                   \"230465_at\"                  \n",
+       "[44653] \"225792_at\"                   \"226929_at\"                  \n",
+       "[44655] \"228451_at\"                   \"230220_at\"                  \n",
+       "[44657] \"229484_at\"                   \"225540_at\"                  \n",
+       "[44659] \"226993_at\"                   \"227066_at\"                  \n",
+       "[44661] \"230431_at\"                   \"226755_at\"                  \n",
+       "[44663] \"228990_at\"                   \"227417_at\"                  \n",
+       "[44665] \"228628_at\"                   \"230354_at\"                  \n",
+       "[44667] \"230300_at\"                   \"228216_at\"                  \n",
+       "[44669] \"230120_s_at\"                 \"227309_at\"                  \n",
+       "[44671] \"229933_at\"                   \"229933_at\"                  \n",
+       "[44673] \"229933_at\"                   \"226809_at\"                  \n",
+       "[44675] \"229096_at\"                   \"229095_s_at\"                \n",
+       "[44677] \"229096_at\"                   \"229096_at\"                  \n",
+       "[44679] \"229095_s_at\"                 \"229096_at\"                  \n",
+       "[44681] \"229096_at\"                   \"229095_s_at\"                \n",
+       "[44683] \"229096_at\"                   \"228158_at\"                  \n",
+       "[44685] \"230391_at\"                   \"225995_x_at\"                \n",
+       "[44687] \"226340_x_at\"                 \"225995_x_at\"                \n",
+       "[44689] \"226340_x_at\"                 \"226802_s_at\"                \n",
+       "[44691] \"228158_at\"                   \"228158_at\"                  \n",
+       "[44693] \"228158_at\"                   \"228198_s_at\"                \n",
+       "[44695] \"228199_at\"                   \"226751_at\"                  \n",
+       "[44697] \"226617_at\"                   \"227593_at\"                  \n",
+       "[44699] \"227664_at\"                   \"225925_s_at\"                \n",
+       "[44701] \"229812_at\"                   \"228254_at\"                  \n",
+       "[44703] \"229184_at\"                   \"229375_at\"                  \n",
+       "[44705] \"226493_at\"                   \"230165_at\"                  \n",
+       "[44707] \"229797_at\"                   \"226771_at\"                  \n",
+       "[44709] \"227087_at\"                   \"226809_at\"                  \n",
+       "[44711] \"226029_at\"                   \"227019_at\"                  \n",
+       "[44713] \"227740_at\"                   \"227561_at\"                  \n",
+       "[44715] \"227036_at\"                   \"229928_at\"                  \n",
+       "[44717] \"228310_at\"                   \"225878_at\"                  \n",
+       "[44719] \"226968_at\"                   \"227391_x_at\"                \n",
+       "[44721] \"225566_at\"                   \"229225_at\"                  \n",
+       "[44723] \"228411_at\"                   \"226869_at\"                  \n",
+       "[44725] \"226486_at\"                   \"229105_at\"                  \n",
+       "[44727] \"229104_s_at\"                 \"225695_at\"                  \n",
+       "[44729] \"225760_at\"                   \"225606_at\"                  \n",
+       "[44731] \"225834_at\"                   \"227899_at\"                  \n",
+       "[44733] \"229200_at\"                   \"227422_at\"                  \n",
+       "[44735] \"229302_at\"                   \"225653_at\"                  \n",
+       "[44737] \"226951_at\"                   \"227809_at\"                  \n",
+       "[44739] \"228578_at\"                   \"228981_at\"                  \n",
+       "[44741] \"228806_at\"                   \"229404_at\"                  \n",
+       "[44743] \"228950_s_at\"                 \"228949_at\"                  \n",
+       "[44745] \"229359_at\"                   \"226251_at\"                  \n",
+       "[44747] \"226740_x_at\"                 \"229447_x_at\"                \n",
+       "[44749] \"225733_at\"                   \"226704_at\"                  \n",
+       "[44751] \"227285_at\"                   \"225542_at\"                  \n",
+       "[44753] \"228800_x_at\"                 \"225552_x_at\"                \n",
+       "[44755] \"227134_at\"                   \"229960_at\"                  \n",
+       "[44757] \"226333_at\"                   \"228671_at\"                  \n",
+       "[44759] \"227617_at\"                   \"226087_at\"                  \n",
+       "[44761] \"226081_at\"                   \"226532_at\"                  \n",
+       "[44763] \"226468_at\"                   \"226740_x_at\"                \n",
+       "[44765] \"229447_x_at\"                 \"227926_s_at\"                \n",
+       "[44767] \"227927_at\"                   \"226740_x_at\"                \n",
+       "[44769] \"229447_x_at\"                 \"226740_x_at\"                \n",
+       "[44771] \"229447_x_at\"                 \"229674_at\"                  \n",
+       "[44773] \"229927_at\"                   \"228120_at\"                  \n",
+       "[44775] \"228932_at\"                   \"227067_x_at\"                \n",
+       "[44777] \"227067_x_at\"                 \"227067_x_at\"                \n",
+       "[44779] \"226740_x_at\"                 \"229447_x_at\"                \n",
+       "[44781] \"227067_x_at\"                 \"226806_s_at\"                \n",
+       "[44783] \"228302_x_at\"                 \"230433_at\"                  \n",
+       "[44785] \"229678_at\"                   \"229364_at\"                  \n",
+       "[44787] \"228158_at\"                   \"228158_at\"                  \n",
+       "[44789] \"230121_at\"                   \"230423_at\"                  \n",
+       "[44791] \"226458_at\"                   \"226457_at\"                  \n",
+       "[44793] \"228661_s_at\"                 \"228238_at\"                  \n",
+       "[44795] \"227517_s_at\"                 \"229348_at\"                  \n",
+       "[44797] \"225899_x_at\"                 \"227129_x_at\"                \n",
+       "[44799] \"229111_at\"                   \"226103_at\"                  \n",
+       "[44801] \"227201_at\"                   \"225899_x_at\"                \n",
+       "[44803] \"227129_x_at\"                 \"230004_at\"                  \n",
+       "[44805] \"228577_x_at\"                 \"225786_at\"                  \n",
+       "[44807] \"225805_at\"                   \"229113_s_at\"                \n",
+       "[44809] \"229265_at\"                   \"229872_s_at\"                \n",
+       "[44811] \"229264_at\"                   \"229872_s_at\"                \n",
+       "[44813] \"229264_at\"                   \"226893_at\"                  \n",
+       "[44815] \"230321_at\"                   \"225880_at\"                  \n",
+       "[44817] \"230241_at\"                   \"226706_at\"                  \n",
+       "[44819] \"227922_x_at\"                 \"227384_s_at\"                \n",
+       "[44821] \"226740_x_at\"                 \"229447_x_at\"                \n",
+       "[44823] \"228593_at\"                   \"228593_at\"                  \n",
+       "[44825] \"226789_at\"                   \"227922_x_at\"                \n",
+       "[44827] \"225899_x_at\"                 \"227129_x_at\"                \n",
+       "[44829] \"228224_at\"                   \"229086_at\"                  \n",
+       "[44831] \"228096_at\"                   \"229874_x_at\"                \n",
+       "[44833] \"229271_x_at\"                 \"228733_at\"                  \n",
+       "[44835] \"225920_at\"                   \"230092_at\"                  \n",
+       "[44837] \"225831_at\"                   \"225615_at\"                  \n",
+       "[44839] \"228944_at\"                   \"226813_at\"                  \n",
+       "[44841] \"229919_at\"                   \"229202_at\"                  \n",
+       "[44843] \"228565_at\"                   \"226740_x_at\"                \n",
+       "[44845] \"229447_x_at\"                 \"226740_x_at\"                \n",
+       "[44847] \"229447_x_at\"                 \"229429_x_at\"                \n",
+       "[44849] \"229429_x_at\"                 \"227943_at\"                  \n",
+       "[44851] \"228000_at\"                   \"225692_at\"                  \n",
+       "[44853] \"225693_s_at\"                 \"227328_at\"                  \n",
+       "[44855] \"230123_at\"                   \"227700_x_at\"                \n",
+       "[44857] \"227237_x_at\"                 \"226132_s_at\"                \n",
+       "[44859] \"227150_at\"                   \"230023_at\"                  \n",
+       "[44861] \"226351_at\"                   \"226522_at\"                  \n",
+       "[44863] \"229492_at\"                   \"229997_at\"                  \n",
+       "[44865] \"229134_at\"                   \"227532_at\"                  \n",
+       "[44867] \"228023_x_at\"                 \"229017_s_at\"                \n",
+       "[44869] \"229376_at\"                   \"228656_at\"                  \n",
+       "[44871] \"227922_x_at\"                 \"226096_at\"                  \n",
+       "[44873] \"226097_at\"                   \"227759_at\"                  \n",
+       "[44875] \"230369_at\"                   \"228619_x_at\"                \n",
+       "[44877] \"228528_at\"                   \"228528_at\"                  \n",
+       "[44879] \"228528_at\"                   \"227032_at\"                  \n",
+       "[44881] \"225780_at\"                   \"234901_at\"                  \n",
+       "[44883] \"233881_s_at\"                 \"233151_s_at\"                \n",
+       "[44885] \"234309_at\"                   \"233151_s_at\"                \n",
+       "[44887] \"234309_at\"                   \"234913_at\"                  \n",
+       "[44889] \"231147_at\"                   \"233178_at\"                  \n",
+       "[44891] \"234913_at\"                   \"234931_at\"                  \n",
+       "[44893] \"230760_at\"                   \"230660_at\"                  \n",
+       "[44895] \"235337_at\"                   \"230800_at\"                  \n",
+       "[44897] \"232402_at\"                   \"234715_at\"                  \n",
+       "[44899] \"234913_at\"                   \"234715_at\"                  \n",
+       "[44901] \"234715_at\"                   \"232402_at\"                  \n",
+       "[44903] \"230662_at\"                   \"234931_at\"                  \n",
+       "[44905] \"234715_at\"                   \"234715_at\"                  \n",
+       "[44907] \"234715_at\"                   \"232618_at\"                  \n",
+       "[44909] \"232463_at\"                   \"232172_at\"                  \n",
+       "[44911] \"233929_x_at\"                 \"233176_at\"                  \n",
+       "[44913] \"234466_at\"                   \"232841_at\"                  \n",
+       "[44915] \"230788_at\"                   \"234292_s_at\"                \n",
+       "[44917] \"233070_at\"                   \"233070_at\"                  \n",
+       "[44919] \"232247_at\"                   \"233645_s_at\"                \n",
+       "[44921] \"233432_at\"                   \"233860_s_at\"                \n",
+       "[44923] \"234722_x_at\"                 \"234873_x_at\"                \n",
+       "[44925] \"231606_at\"                   \"231367_s_at\"                \n",
+       "[44927] \"235044_at\"                   \"233675_s_at\"                \n",
+       "[44929] \"231598_x_at\"                 \"233753_at\"                  \n",
+       "[44931] \"231803_at\"                   \"230633_at\"                  \n",
+       "[44933] \"231803_at\"                   \"231803_at\"                  \n",
+       "[44935] \"232390_at\"                   \"231491_at\"                  \n",
+       "[44937] \"231598_x_at\"                 \"234456_at\"                  \n",
+       "[44939] \"232612_s_at\"                 \"232056_at\"                  \n",
+       "[44941] \"231310_at\"                   \"230964_at\"                  \n",
+       "[44943] \"233021_at\"                   \"231354_at\"                  \n",
+       "[44945] \"231119_at\"                   \"235101_at\"                  \n",
+       "[44947] \"235101_at\"                   \"232411_at\"                  \n",
+       "[44949] \"232574_at\"                   \"233088_at\"                  \n",
+       "[44951] \"232596_at\"                   \"232224_at\"                  \n",
+       "[44953] \"233174_at\"                   \"230585_at\"                  \n",
+       "[44955] \"234676_s_at\"                 \"230941_at\"                  \n",
+       "[44957] \"232448_at\"                   \"232839_at\"                  \n",
+       "[44959] \"235368_at\"                   \"235012_at\"                  \n",
+       "[44961] \"233602_at\"                   \"232538_at\"                  \n",
+       "[44963] \"233952_s_at\"                 \"233434_at\"                  \n",
+       "[44965] \"233647_s_at\"                 \"233564_s_at\"                \n",
+       "[44967] \"235092_at\"                   \"234660_s_at\"                \n",
+       "[44969] \"234757_at\"                   \"233160_at\"                  \n",
+       "[44971] \"233819_s_at\"                 \"233818_at\"                  \n",
+       "[44973] \"234742_at\"                   \"235064_s_at\"                \n",
+       "[44975] \"235063_at\"                   \"232786_at\"                  \n",
+       "[44977] \"233166_at\"                   \"234018_s_at\"                \n",
+       "[44979] \"231725_at\"                   \"231394_at\"                  \n",
+       "[44981] \"231750_at\"                   \"230957_at\"                  \n",
+       "[44983] \"231738_at\"                   \"232099_at\"                  \n",
+       "[44985] \"232415_at\"                   \"231726_at\"                  \n",
+       "[44987] \"234724_x_at\"                 \"234724_x_at\"                \n",
+       "[44989] \"231789_at\"                   \"232481_s_at\"                \n",
+       "[44991] \"232176_at\"                   \"231220_at\"                  \n",
+       "[44993] \"232888_at\"                   \"235182_at\"                  \n",
+       "[44995] \"233878_s_at\"                 \"232828_at\"                  \n",
+       "[44997] \"230933_at\"                   \"234449_at\"                  \n",
+       "[44999] \"233343_at\"                   \"231333_at\"                  \n",
+       "[45001] \"230539_at\"                   \"234965_at\"                  \n",
+       "[45003] \"231405_at\"                   \"233170_at\"                  \n",
+       "[45005] \"232484_at\"                   \"230869_at\"                  \n",
+       "[45007] \"232376_at\"                   \"230829_at\"                  \n",
+       "[45009] \"233719_s_at\"                 \"233913_at\"                  \n",
+       "[45011] \"234728_s_at\"                 \"230777_s_at\"                \n",
+       "[45013] \"234524_at\"                   \"231931_at\"                  \n",
+       "[45015] \"233552_at\"                   \"233529_at\"                  \n",
+       "[45017] \"230747_s_at\"                 \"232928_at\"                  \n",
+       "[45019] \"231188_at\"                   \"233598_at\"                  \n",
+       "[45021] \"230533_at\"                   \"232131_at\"                  \n",
+       "[45023] \"230612_at\"                   \"233242_at\"                  \n",
+       "[45025] \"231150_at\"                   \"231053_at\"                  \n",
+       "[45027] \"233156_at\"                   \"235065_at\"                  \n",
+       "[45029] \"234731_at\"                   \"232141_at\"                  \n",
+       "[45031] \"231904_at\"                   \"234731_at\"                  \n",
+       "[45033] \"232141_at\"                   \"231904_at\"                  \n",
+       "[45035] \"231492_at\"                   \"234946_at\"                  \n",
+       "[45037] \"231368_at\"                   \"231472_at\"                  \n",
+       "[45039] \"232092_at\"                   \"234024_at\"                  \n",
+       "[45041] \"234451_at\"                   \"231679_at\"                  \n",
+       "[45043] \"233277_at\"                   \"233277_at\"                  \n",
+       "[45045] \"230519_at\"                   \"232340_at\"                  \n",
+       "[45047] \"233389_at\"                   \"234051_at\"                  \n",
+       "[45049] \"231515_at\"                   \"233901_at\"                  \n",
+       "[45051] \"233328_x_at\"                 \"232922_s_at\"                \n",
+       "[45053] \"232306_at\"                   \"233663_s_at\"                \n",
+       "[45055] \"233391_at\"                   \"233662_at\"                  \n",
+       "[45057] \"233380_s_at\"                 \"233381_at\"                  \n",
+       "[45059] \"230779_at\"                   \"232836_at\"                  \n",
+       "[45061] \"232707_at\"                   \"231882_at\"                  \n",
+       "[45063] \"232185_at\"                   \"233030_at\"                  \n",
+       "[45065] \"233929_x_at\"                 \"233929_x_at\"                \n",
+       "[45067] \"233255_s_at\"                 \"232549_at\"                  \n",
+       "[45069] \"234732_s_at\"                 \"233839_at\"                  \n",
+       "[45071] \"234853_s_at\"                 \"233600_at\"                  \n",
+       "[45073] \"233332_at\"                   \"234180_at\"                  \n",
+       "[45075] \"231960_at\"                   \"231860_at\"                  \n",
+       "[45077] \"233747_at\"                   \"231134_at\"                  \n",
+       "[45079] \"234045_x_at\"                 \"233646_at\"                  \n",
+       "[45081] \"235348_at\"                   \"234993_at\"                  \n",
+       "[45083] \"231760_at\"                   \"231801_at\"                  \n",
+       "[45085] \"232605_s_at\"                 \"231713_s_at\"                \n",
+       "[45087] \"231454_at\"                   \"234730_s_at\"                \n",
+       "[45089] \"230562_at\"                   \"232007_at\"                  \n",
+       "[45091] \"232486_at\"                   \"234049_at\"                  \n",
+       "[45093] \"233583_at\"                   \"231200_at\"                  \n",
+       "[45095] \"235276_at\"                   \"235199_at\"                  \n",
+       "[45097] \"231609_at\"                   \"234830_at\"                  \n",
+       "[45099] \"232101_s_at\"                 \"231023_at\"                  \n",
+       "[45101] \"230907_at\"                   \"231852_at\"                  \n",
+       "[45103] \"235085_at\"                   \"235389_at\"                  \n",
+       "[45105] \"232802_at\"                   \"235269_at\"                  \n",
+       "[45107] \"231882_at\"                   \"231771_at\"                  \n",
+       "[45109] \"231614_at\"                   \"235329_at\"                  \n",
+       "[45111] \"232367_x_at\"                 \"234023_s_at\"                \n",
+       "[45113] \"230690_at\"                   \"234440_at\"                  \n",
+       "[45115] \"234165_at\"                   \"230535_s_at\"                \n",
+       "[45117] \"233143_at\"                   \"232899_at\"                  \n",
+       "[45119] \"234424_at\"                   \"234811_at\"                  \n",
+       "[45121] \"231886_at\"                   \"233510_s_at\"                \n",
+       "[45123] \"233061_at\"                   \"232186_at\"                  \n",
+       "[45125] \"233584_at\"                   \"233584_at\"                  \n",
+       "[45127] \"231568_at\"                   \"231568_at\"                  \n",
+       "[45129] \"231568_at\"                   \"231568_at\"                  \n",
+       "[45131] \"231568_at\"                   \"231568_at\"                  \n",
+       "[45133] \"231568_at\"                   \"231568_at\"                  \n",
+       "[45135] \"230950_at\"                   \"232554_at\"                  \n",
+       "[45137] \"234952_s_at\"                 \"230710_at\"                  \n",
+       "[45139] \"234538_at\"                   \"231330_at\"                  \n",
+       "[45141] \"231132_at\"                   \"231132_at\"                  \n",
+       "[45143] \"231132_at\"                   \"235283_at\"                  \n",
+       "[45145] \"233829_at\"                   \"233019_at\"                  \n",
+       "[45147] \"234386_s_at\"                 \"232824_at\"                  \n",
+       "[45149] \"234912_at\"                   \"233532_x_at\"                \n",
+       "[45151] \"235180_at\"                   \"231847_at\"                  \n",
+       "[45153] \"232470_at\"                   \"232820_s_at\"                \n",
+       "[45155] \"232821_at\"                   \"232976_at\"                  \n",
+       "[45157] \"234107_s_at\"                 \"231980_at\"                  \n",
+       "[45159] \"231797_at\"                   \"230890_at\"                  \n",
+       "[45161] \"232358_at\"                   \"232463_at\"                  \n",
+       "[45163] \"235344_at\"                   \"232088_x_at\"                \n",
+       "[45165] \"233929_x_at\"                 \"234363_at\"                  \n",
+       "[45167] \"231395_at\"                   \"235082_at\"                  \n",
+       "[45169] \"232962_x_at\"                 \"235107_at\"                  \n",
+       "[45171] \"234774_at\"                   \"233299_at\"                  \n",
+       "[45173] \"232536_at\"                   \"230668_at\"                  \n",
+       "[45175] \"235472_at\"                   \"234001_s_at\"                \n",
+       "[45177] \"232755_at\"                   \"231325_at\"                  \n",
+       "[45179] \"235369_at\"                   \"234042_at\"                  \n",
+       "[45181] \"233981_at\"                   \"234385_at\"                  \n",
+       "[45183] \"231245_s_at\"                 \"235020_at\"                  \n",
+       "[45185] \"235021_at\"                   \"233415_at\"                  \n",
+       "[45187] \"231933_at\"                   \"233655_s_at\"                \n",
+       "[45189] \"235131_at\"                   \"235489_at\"                  \n",
+       "[45191] \"235075_at\"                   \"232422_at\"                  \n",
+       "[45193] \"230875_s_at\"                 \"233946_at\"                  \n",
+       "[45195] \"231607_at\"                   \"233571_x_at\"                \n",
+       "[45197] \"234367_x_at\"                 \"232941_at\"                  \n",
+       "[45199] \"231078_at\"                   \"231991_at\"                  \n",
+       "[45201] \"231652_at\"                   \"233617_at\"                  \n",
+       "[45203] \"233617_at\"                   \"234340_at\"                  \n",
+       "[45205] \"233962_at\"                   \"235074_at\"                  \n",
+       "[45207] \"231405_at\"                   \"231436_at\"                  \n",
+       "[45209] \"232718_at\"                   \"234791_at\"                  \n",
+       "[45211] \"234929_s_at\"                 \"232196_at\"                  \n",
+       "[45213] \"231993_at\"                   \"232234_at\"                  \n",
+       "[45215] \"235238_at\"                   \"230538_at\"                  \n",
+       "[45217] \"232156_at\"                   \"232976_at\"                  \n",
+       "[45219] \"232761_at\"                   \"232736_s_at\"                \n",
+       "[45221] \"231190_at\"                   \"230831_at\"                  \n",
+       "[45223] \"232740_at\"                   \"233741_at\"                  \n",
+       "[45225] \"231792_at\"                   \"231228_at\"                  \n",
+       "[45227] \"233815_at\"                   \"233002_at\"                  \n",
+       "[45229] \"231447_at\"                   \"231278_at\"                  \n",
+       "[45231] \"234864_s_at\"                 \"233857_s_at\"                \n",
+       "[45233] \"233565_s_at\"                 \"231117_at\"                  \n",
+       "[45235] \"231487_at\"                   \"235339_at\"                  \n",
+       "[45237] \"235338_s_at\"                 \"233530_at\"                  \n",
+       "[45239] \"234463_at\"                   \"231039_at\"                  \n",
+       "[45241] \"232891_at\"                   \"230620_at\"                  \n",
+       "[45243] \"232128_s_at\"                 \"232127_at\"                  \n",
+       "[45245] \"234894_at\"                   \"230566_at\"                  \n",
+       "[45247] \"234042_at\"                   \"234042_at\"                  \n",
+       "[45249] \"233550_s_at\"                 \"231170_at\"                  \n",
+       "[45251] \"231818_x_at\"                 \"233338_at\"                  \n",
+       "[45253] \"232736_s_at\"                 \"232191_at\"                  \n",
+       "[45255] \"232121_at\"                   \"231522_at\"                  \n",
+       "[45257] \"234919_s_at\"                 \"232277_at\"                  \n",
+       "[45259] \"230515_at\"                   \"233679_at\"                  \n",
+       "[45261] \"233630_at\"                   \"234434_at\"                  \n",
+       "[45263] \"233929_x_at\"                 \"234450_at\"                  \n",
+       "[45265] \"231458_at\"                   \"232514_at\"                  \n",
+       "[45267] \"235144_at\"                   \"233804_at\"                  \n",
+       "[45269] \"235438_at\"                   \"230537_at\"                  \n",
+       "[45271] \"232635_at\"                   \"233859_at\"                  \n",
+       "[45273] \"234970_at\"                   \"231345_s_at\"                \n",
+       "[45275] \"230866_at\"                   \"231747_at\"                  \n",
+       "[45277] \"235087_at\"                   \"232766_at\"                  \n",
+       "[45279] \"232575_at\"                   \"233335_at\"                  \n",
+       "[45281] \"232054_at\"                   \"235212_at\"                  \n",
+       "[45283] \"234000_s_at\"                 \"231985_at\"                  \n",
+       "[45285] \"232849_at\"                   \"234390_x_at\"                \n",
+       "[45287] \"234390_x_at\"                 \"234390_x_at\"                \n",
+       "[45289] \"234390_x_at\"                 \"234807_x_at\"                \n",
+       "[45291] \"233975_at\"                   \"234177_at\"                  \n",
+       "[45293] \"231303_at\"                   \"230877_at\"                  \n",
+       "[45295] \"231475_at\"                   \"230595_at\"                  \n",
+       "[45297] \"232953_at\"                   \"232897_at\"                  \n",
+       "[45299] \"232745_x_at\"                 \"233429_at\"                  \n",
+       "[45301] \"232574_at\"                   \"233269_at\"                  \n",
+       "[45303] \"230645_at\"                   \"230986_at\"                  \n",
+       "[45305] \"234912_at\"                   \"232680_at\"                  \n",
+       "[45307] \"230720_at\"                   \"234680_at\"                  \n",
+       "[45309] \"234512_x_at\"                 \"234633_at\"                  \n",
+       "[45311] \"234637_at\"                   \"234684_s_at\"                \n",
+       "[45313] \"234631_at\"                   \"234671_at\"                  \n",
+       "[45315] \"233446_at\"                   \"234679_at\"                  \n",
+       "[45317] \"234639_x_at\"                 \"233640_x_at\"                \n",
+       "[45319] \"234683_at\"                   \"234685_x_at\"                \n",
+       "[45321] \"234772_s_at\"                 \"230575_at\"                  \n",
+       "[45323] \"234664_at\"                   \"231380_at\"                  \n",
+       "[45325] \"234371_at\"                   \"235241_at\"                  \n",
+       "[45327] \"230978_at\"                   \"232792_at\"                  \n",
+       "[45329] \"233220_at\"                   \"233171_at\"                  \n",
+       "[45331] \"233762_at\"                   \"232311_at\"                  \n",
+       "[45333] \"232271_at\"                   \"235309_at\"                  \n",
+       "[45335] \"232054_at\"                   \"233117_at\"                  \n",
+       "[45337] \"230762_at\"                   \"233654_at\"                  \n",
+       "[45339] \"231253_at\"                   \"231743_at\"                  \n",
+       "[45341] \"231743_at\"                   \"234903_at\"                  \n",
+       "[45343] \"235004_at\"                   \"231284_at\"                  \n",
+       "[45345] \"233136_at\"                   \"231400_s_at\"                \n",
+       "[45347] \"235156_at\"                   \"233366_at\"                  \n",
+       "[45349] \"231338_at\"                   \"235072_s_at\"                \n",
+       "[45351] \"232837_at\"                   \"231253_at\"                  \n",
+       "[45353] \"231743_at\"                   \"231743_at\"                  \n",
+       "[45355] \"231207_at\"                   \"231098_at\"                  \n",
+       "[45357] \"233117_at\"                   \"233997_at\"                  \n",
+       "[45359] \"232966_at\"                   \"230656_s_at\"                \n",
+       "[45361] \"234681_s_at\"                 \"233305_at\"                  \n",
+       "[45363] \"233178_at\"                   \"235097_at\"                  \n",
+       "[45365] \"234390_x_at\"                 \"231051_at\"                  \n",
+       "[45367] \"231271_x_at\"                 \"231842_at\"                  \n",
+       "[45369] \"231841_s_at\"                 \"233631_x_at\"                \n",
+       "[45371] \"233640_x_at\"                 \"234679_at\"                  \n",
+       "[45373] \"232602_at\"                   \"231226_at\"                  \n",
+       "[45375] \"234653_at\"                   \"234942_s_at\"                \n",
+       "[45377] \"233631_x_at\"                 \"233640_x_at\"                \n",
+       "[45379] \"233176_at\"                   \"231933_at\"                  \n",
+       "[45381] \"230947_at\"                   \"231670_at\"                  \n",
+       "[45383] \"234466_at\"                   \"235216_at\"                  \n",
+       "[45385] \"233680_at\"                   \"234734_s_at\"                \n",
+       "[45387] \"231638_at\"                   \"231379_at\"                  \n",
+       "[45389] \"231460_at\"                   \"235350_at\"                  \n",
+       "[45391] \"232816_s_at\"                 \"233432_at\"                  \n",
+       "[45393] \"233432_at\"                   \"232485_at\"                  \n",
+       "[45395] \"232149_s_at\"                 \"232148_at\"                  \n",
+       "[45397] \"233458_at\"                   \"235396_at\"                  \n",
+       "[45399] \"232848_at\"                   \"235346_at\"                  \n",
+       "[45401] \"231481_at\"                   \"234390_x_at\"                \n",
+       "[45403] \"232825_s_at\"                 \"232235_at\"                  \n",
+       "[45405] \"232813_s_at\"                 \"232813_s_at\"                \n",
+       "[45407] \"231008_at\"                   \"231952_at\"                  \n",
+       "[45409] \"233474_at\"                   \"235056_at\"                  \n",
+       "[45411] \"231062_at\"                   \"230532_at\"                  \n",
+       "[45413] \"231237_x_at\"                 \"230650_at\"                  \n",
+       "[45415] \"230731_x_at\"                 \"235022_at\"                  \n",
+       "[45417] \"230739_at\"                   \"230639_at\"                  \n",
+       "[45419] \"233000_x_at\"                 \"234680_at\"                  \n",
+       "[45421] \"232365_at\"                   \"232712_at\"                  \n",
+       "[45423] \"231762_at\"                   \"231388_at\"                  \n",
+       "[45425] \"234610_at\"                   \"235332_at\"                  \n",
+       "[45427] \"234695_x_at\"                 \"230733_at\"                  \n",
+       "[45429] \"233088_at\"                   \"233784_at\"                  \n",
+       "[45431] \"232377_at\"                   \"232636_at\"                  \n",
+       "[45433] \"230680_at\"                   \"231829_at\"                  \n",
+       "[45435] \"235130_at\"                   \"230641_at\"                  \n",
+       "[45437] \"231568_at\"                   \"231568_at\"                  \n",
+       "[45439] \"232662_x_at\"                 \"235353_at\"                  \n",
+       "[45441] \"231270_at\"                   \"232231_at\"                  \n",
+       "[45443] \"231568_at\"                   \"231977_at\"                  \n",
+       "[45445] \"231701_s_at\"                 \"233466_at\"                  \n",
+       "[45447] \"235332_at\"                   \"233230_s_at\"                \n",
+       "[45449] \"230895_at\"                   \"232207_at\"                  \n",
+       "[45451] \"231905_at\"                   \"231831_at\"                  \n",
+       "[45453] \"231400_s_at\"                 \"233246_at\"                  \n",
+       "[45455] \"231568_at\"                   \"234889_at\"                  \n",
+       "[45457] \"234368_at\"                   \"232163_at\"                  \n",
+       "[45459] \"231438_x_at\"                 \"233537_at\"                  \n",
+       "[45461] \"233534_at\"                   \"234685_x_at\"                \n",
+       "[45463] \"234772_s_at\"                 \"234633_at\"                  \n",
+       "[45465] \"234880_x_at\"                 \"233533_at\"                  \n",
+       "[45467] \"234691_at\"                   \"233681_at\"                  \n",
+       "[45469] \"234631_at\"                   \"230918_at\"                  \n",
+       "[45471] \"231861_at\"                   \"232466_at\"                  \n",
+       "[45473] \"235016_at\"                   \"234369_at\"                  \n",
+       "[45475] \"231627_at\"                   \"230922_x_at\"                \n",
+       "[45477] \"235273_at\"                   \"235268_at\"                  \n",
+       "[45479] \"230603_at\"                   \"230925_at\"                  \n",
+       "[45481] \"233936_s_at\"                 \"233937_at\"                  \n",
+       "[45483] \"232804_at\"                   \"232706_s_at\"                \n",
+       "[45485] \"232197_x_at\"                 \"234368_at\"                  \n",
+       "[45487] \"232695_at\"                   \"233387_s_at\"                \n",
+       "[45489] \"232547_at\"                   \"230727_at\"                  \n",
+       "[45491] \"232037_at\"                   \"230960_at\"                  \n",
+       "[45493] \"232387_at\"                   \"232981_s_at\"                \n",
+       "[45495] \"232982_at\"                   \"234308_at\"                  \n",
+       "[45497] \"235324_at\"                   \"230632_at\"                  \n",
+       "[45499] \"230631_s_at\"                 \"235183_at\"                  \n",
+       "[45501] \"231945_at\"                   \"231159_at\"                  \n",
+       "[45503] \"231903_x_at\"                 \"232870_at\"                  \n",
+       "[45505] \"233026_s_at\"                 \"233025_at\"                  \n",
+       "[45507] \"231518_at\"                   \"234420_at\"                  \n",
+       "[45509] \"231331_at\"                   \"234288_at\"                  \n",
+       "[45511] \"233675_s_at\"                 \"233675_s_at\"                \n",
+       "[45513] \"232401_at\"                   \"233451_at\"                  \n",
+       "[45515] \"231811_at\"                   \"231872_at\"                  \n",
+       "[45517] \"234369_at\"                   \"234799_at\"                  \n",
+       "[45519] \"230889_at\"                   \"230656_s_at\"                \n",
+       "[45521] \"231129_at\"                   \"230942_at\"                  \n",
+       "[45523] \"230785_at\"                   \"232847_at\"                  \n",
+       "[45525] \"230889_at\"                   \"232824_at\"                  \n",
+       "[45527] \"231736_x_at\"                 \"232444_at\"                  \n",
+       "[45529] \"233194_at\"                   \"231385_at\"                  \n",
+       "[45531] \"230819_at\"                   \"234109_x_at\"                \n",
+       "[45533] \"233892_at\"                   \"233929_x_at\"                \n",
+       "[45535] \"231602_at\"                   \"234963_s_at\"                \n",
+       "[45537] \"231612_at\"                   \"234473_at\"                  \n",
+       "[45539] \"234473_at\"                   \"234192_s_at\"                \n",
+       "[45541] \"231265_at\"                   \"233842_x_at\"                \n",
+       "[45543] \"234926_s_at\"                 \"233371_at\"                  \n",
+       "[45545] \"235164_at\"                   \"233185_at\"                  \n",
+       "[45547] \"233371_at\"                   \"232513_x_at\"                \n",
+       "[45549] \"233881_s_at\"                 \"233924_s_at\"                \n",
+       "[45551] \"232599_at\"                   \"231040_at\"                  \n",
+       "[45553] \"232388_at\"                   \"235434_at\"                  \n",
+       "[45555] \"230708_at\"                   \"232811_x_at\"                \n",
+       "[45557] \"234315_at\"                   \"234944_s_at\"                \n",
+       "[45559] \"234945_at\"                   \"234873_x_at\"                \n",
+       "[45561] \"235165_at\"                   \"232470_at\"                  \n",
+       "[45563] \"232051_at\"                   \"231982_at\"                  \n",
+       "[45565] \"232531_at\"                   \"230963_at\"                  \n",
+       "[45567] \"233819_s_at\"                 \"233818_at\"                  \n",
+       "[45569] \"234052_at\"                   \"231864_at\"                  \n",
+       "[45571] \"232084_at\"                   \"235450_at\"                  \n",
+       "[45573] \"232018_at\"                   \"231886_at\"                  \n",
+       "[45575] \"232520_s_at\"                 \"232455_x_at\"                \n",
+       "[45577] \"232798_at\"                   \"233188_at\"                  \n",
+       "[45579] \"235465_at\"                   \"231059_x_at\"                \n",
+       "[45581] \"232652_x_at\"                 \"234491_s_at\"                \n",
+       "[45583] \"232440_at\"                   \"232018_at\"                  \n",
+       "[45585] \"231617_at\"                   \"233297_s_at\"                \n",
+       "[45587] \"233774_at\"                   \"233503_at\"                  \n",
+       "[45589] \"233297_s_at\"                 \"233298_at\"                  \n",
+       "[45591] \"234085_at\"                   \"233557_s_at\"                \n",
+       "[45593] \"232229_at\"                   \"233436_at\"                  \n",
+       "[45595] \"232643_at\"                   \"231385_at\"                  \n",
+       "[45597] \"230962_at\"                   \"232018_at\"                  \n",
+       "[45599] \"232043_at\"                   \"232394_at\"                  \n",
+       "[45601] \"232984_at\"                   \"232445_at\"                  \n",
+       "[45603] \"232255_at\"                   \"232256_s_at\"                \n",
+       "[45605] \"232555_at\"                   \"233077_at\"                  \n",
+       "[45607] \"235315_at\"                   \"234767_at\"                  \n",
+       "[45609] \"234369_at\"                   \"232983_s_at\"                \n",
+       "[45611] \"234117_at\"                   \"235129_at\"                  \n",
+       "[45613] \"231981_at\"                   \"231871_at\"                  \n",
+       "[45615] \"233661_at\"                   \"234268_at\"                  \n",
+       "[45617] \"233162_at\"                   \"232575_at\"                  \n",
+       "[45619] \"231948_s_at\"                 \"231729_s_at\"                \n",
+       "[45621] \"231728_at\"                   \"231710_at\"                  \n",
+       "[45623] \"231079_at\"                   \"234947_s_at\"                \n",
+       "[45625] \"230667_at\"                   \"230838_s_at\"                \n",
+       "[45627] \"232018_at\"                   \"231473_at\"                  \n",
+       "[45629] \"234471_s_at\"                 \"234987_at\"                  \n",
+       "[45631] \"233960_s_at\"                 \"232190_x_at\"                \n",
+       "[45633] \"231835_at\"                   \"232062_at\"                  \n",
+       "[45635] \"235049_at\"                   \"231744_at\"                  \n",
+       "[45637] \"232416_at\"                   \"233974_s_at\"                \n",
+       "[45639] \"230641_at\"                   \"230514_s_at\"                \n",
+       "[45641] \"233973_at\"                   \"233423_at\"                  \n",
+       "[45643] \"234843_s_at\"                 \"235370_at\"                  \n",
+       "[45645] \"233513_at\"                   \"235341_at\"                  \n",
+       "[45647] \"234583_at\"                   \"233351_at\"                  \n",
+       "[45649] \"233945_at\"                   \"231172_at\"                  \n",
+       "[45651] \"232018_at\"                   \"231589_at\"                  \n",
+       "[45653] \"230565_at\"                   \"232276_at\"                  \n",
+       "[45655] \"232275_s_at\"                 \"232318_s_at\"                \n",
+       "[45657] \"232318_s_at\"                 \"231154_x_at\"                \n",
+       "[45659] \"232018_at\"                   \"235155_at\"                  \n",
+       "[45661] \"231790_at\"                   \"233889_at\"                  \n",
+       "[45663] \"233064_at\"                   \"232171_x_at\"                \n",
+       "[45665] \"234738_s_at\"                 \"233131_at\"                  \n",
+       "[45667] \"233520_s_at\"                 \"235387_at\"                  \n",
+       "[45669] \"232018_at\"                   \"234387_at\"                  \n",
+       "[45671] \"234664_at\"                   \"231360_at\"                  \n",
+       "[45673] \"231360_at\"                   \"234871_at\"                  \n",
+       "[45675] \"234796_at\"                   \"232018_at\"                  \n",
+       "[45677] \"233528_s_at\"                 \"231146_at\"                  \n",
+       "[45679] \"233528_s_at\"                 \"231805_at\"                  \n",
+       "[45681] \"234574_at\"                   \"234925_at\"                  \n",
+       "[45683] \"232715_at\"                   \"232218_at\"                  \n",
+       "[45685] \"233355_at\"                   \"231092_s_at\"                \n",
+       "[45687] \"233130_at\"                   \"234514_at\"                  \n",
+       "[45689] \"234829_at\"                   \"232933_at\"                  \n",
+       "[45691] \"234461_at\"                   \"232523_at\"                  \n",
+       "[45693] \"234954_at\"                   \"231938_at\"                  \n",
+       "[45695] \"233887_at\"                   \"230927_at\"                  \n",
+       "[45697] \"233752_s_at\"                 \"232825_s_at\"                \n",
+       "[45699] \"232235_at\"                   \"233474_at\"                  \n",
+       "[45701] \"233372_at\"                   \"232291_at\"                  \n",
+       "[45703] \"233636_at\"                   \"233659_at\"                  \n",
+       "[45705] \"231033_at\"                   \"234254_at\"                  \n",
+       "[45707] \"233476_at\"                   \"231278_at\"                  \n",
+       "[45709] \"232167_at\"                   \"232202_at\"                  \n",
+       "[45711] \"232704_s_at\"                 \"230789_at\"                  \n",
+       "[45713] \"232193_at\"                   \"234662_at\"                  \n",
+       "[45715] \"231269_at\"                   \"231603_at\"                  \n",
+       "[45717] \"235059_at\"                   \"232442_at\"                  \n",
+       "[45719] \"235317_at\"                   \"233243_at\"                  \n",
+       "[45721] \"234573_at\"                   \"231140_at\"                  \n",
+       "[45723] \"232953_at\"                   \"231018_at\"                  \n",
+       "[45725] \"234699_at\"                   \"234700_s_at\"                \n",
+       "[45727] \"234395_at\"                   \"233996_x_at\"                \n",
+       "[45729] \"232018_at\"                   \"235333_at\"                  \n",
+       "[45731] \"233397_at\"                   \"234302_s_at\"                \n",
+       "[45733] \"232619_at\"                   \"231657_s_at\"                \n",
+       "[45735] \"232009_at\"                   \"232514_at\"                  \n",
+       "[45737] \"230815_at\"                   \"233827_s_at\"                \n",
+       "[45739] \"231026_at\"                   \"231277_x_at\"                \n",
+       "[45741] \"233111_at\"                   \"233408_at\"                  \n",
+       "[45743] \"230525_at\"                   \"235477_at\"                  \n",
+       "[45745] \"235418_at\"                   \"235437_at\"                  \n",
+       "[45747] \"231683_at\"                   \"234310_s_at\"                \n",
+       "[45749] \"230521_at\"                   \"230522_s_at\"                \n",
+       "[45751] \"231892_at\"                   \"230766_at\"                  \n",
+       "[45753] \"232538_at\"                   \"230676_s_at\"                \n",
+       "[45755] \"233772_at\"                   \"235095_at\"                  \n",
+       "[45757] \"234844_at\"                   \"232594_at\"                  \n",
+       "[45759] \"234231_at\"                   \"234055_s_at\"                \n",
+       "[45761] \"230542_at\"                   \"232132_at\"                  \n",
+       "[45763] \"234803_at\"                   \"233797_s_at\"                \n",
+       "[45765] \"233968_at\"                   \"235226_at\"                  \n",
+       "[45767] \"232976_at\"                   \"232976_at\"                  \n",
+       "[45769] \"233911_s_at\"                 \"235321_at\"                  \n",
+       "[45771] \"234166_at\"                   \"235096_at\"                  \n",
+       "[45773] \"232624_at\"                   \"232194_at\"                  \n",
+       "[45775] \"235102_x_at\"                 \"232004_at\"                  \n",
+       "[45777] \"235235_s_at\"                 \"235234_at\"                  \n",
+       "[45779] \"230673_at\"                   \"231181_at\"                  \n",
+       "[45781] \"231941_s_at\"                 \"235080_at\"                  \n",
+       "[45783] \"231941_s_at\"                 \"233338_at\"                  \n",
+       "[45785] \"233338_at\"                   \"235281_x_at\"                \n",
+       "[45787] \"232368_at\"                   \"231941_s_at\"                \n",
+       "[45789] \"231941_s_at\"                 \"232202_at\"                  \n",
+       "[45791] \"232226_at\"                   \"231025_at\"                  \n",
+       "[45793] \"232025_at\"                   \"235452_at\"                  \n",
+       "[45795] \"231941_s_at\"                 \"231941_s_at\"                \n",
+       "[45797] \"231483_at\"                   \"231424_at\"                  \n",
+       "[45799] \"232086_at\"                   \"231800_s_at\"                \n",
+       "[45801] \"235116_at\"                   \"231941_s_at\"                \n",
+       "[45803] \"232438_at\"                   \"231926_at\"                  \n",
+       "[45805] \"235099_at\"                   \"234405_s_at\"                \n",
+       "[45807] \"231812_x_at\"                 \"230864_at\"                  \n",
+       "[45809] \"231304_at\"                   \"231995_at\"                  \n",
+       "[45811] \"234998_at\"                   \"233153_at\"                  \n",
+       "[45813] \"235210_s_at\"                 \"235209_at\"                  \n",
+       "[45815] \"230661_at\"                   \"235394_at\"                  \n",
+       "[45817] \"231941_s_at\"                 \"231941_s_at\"                \n",
+       "[45819] \"234053_at\"                   \"232631_at\"                  \n",
+       "[45821] \"232868_at\"                   \"231941_s_at\"                \n",
+       "[45823] \"231137_at\"                   \"230556_at\"                  \n",
+       "[45825] \"231723_at\"                   \"230655_at\"                  \n",
+       "[45827] \"231748_at\"                   \"234171_at\"                  \n",
+       "[45829] \"231001_at\"                   \"234324_at\"                  \n",
+       "[45831] \"231034_s_at\"                 \"231280_at\"                  \n",
+       "[45833] \"231377_at\"                   \"231377_at\"                  \n",
+       "[45835] \"235310_at\"                   \"232661_s_at\"                \n",
+       "[45837] \"231722_at\"                   \"232143_at\"                  \n",
+       "[45839] \"234333_at\"                   \"231317_at\"                  \n",
+       "[45841] \"230785_at\"                   \"232847_at\"                  \n",
+       "[45843] \"231441_at\"                   \"235077_at\"                  \n",
+       "[45845] \"232119_at\"                   \"234985_at\"                  \n",
+       "[45847] \"232968_at\"                   \"233801_s_at\"                \n",
+       "[45849] \"233882_s_at\"                 \"235420_at\"                  \n",
+       "[45851] \"232177_at\"                   \"232438_at\"                  \n",
+       "[45853] \"233903_s_at\"                 \"231347_at\"                  \n",
+       "[45855] \"233202_at\"                   \"231088_at\"                  \n",
+       "[45857] \"231569_at\"                   \"232314_at\"                  \n",
+       "[45859] \"232355_at\"                   \"232955_at\"                  \n",
+       "[45861] \"230989_s_at\"                 \"235098_at\"                  \n",
+       "[45863] \"230676_s_at\"                 \"231467_at\"                  \n",
+       "[45865] \"232355_at\"                   \"231300_at\"                  \n",
+       "[45867] \"232258_at\"                   \"231941_s_at\"                \n",
+       "[45869] \"235445_at\"                   \"231939_s_at\"                \n",
+       "[45871] \"231990_at\"                   \"232211_at\"                  \n",
+       "[45873] \"235451_at\"                   \"232199_at\"                  \n",
+       "[45875] \"231941_s_at\"                 \"233082_at\"                  \n",
+       "[45877] \"230691_at\"                   \"233695_s_at\"                \n",
+       "[45879] \"230934_at\"                   \"233051_at\"                  \n",
+       "[45881] \"231347_at\"                   \"232201_at\"                  \n",
+       "[45883] \"232560_at\"                   \"232730_at\"                  \n",
+       "[45885] \"233437_at\"                   \"232919_at\"                  \n",
+       "[45887] \"232631_at\"                   \"231923_at\"                  \n",
+       "[45889] \"231941_s_at\"                 \"234806_at\"                  \n",
+       "[45891] \"235277_at\"                   \"231941_s_at\"                \n",
+       "[45893] \"232256_s_at\"                 \"234850_at\"                  \n",
+       "[45895] \"234760_at\"                   \"235224_s_at\"                \n",
+       "[45897] \"231236_at\"                   \"232374_s_at\"                \n",
+       "[45899] \"234840_s_at\"                 \"231739_at\"                  \n",
+       "[45901] \"231739_at\"                   \"230686_s_at\"                \n",
+       "[45903] \"231217_at\"                   \"230687_at\"                  \n",
+       "[45905] \"230836_at\"                   \"231202_at\"                  \n",
+       "[45907] \"230717_at\"                   \"234370_at\"                  \n",
+       "[45909] \"231688_at\"                   \"230536_at\"                  \n",
+       "[45911] \"231251_at\"                   \"232049_at\"                  \n",
+       "[45913] \"234840_s_at\"                 \"234545_at\"                  \n",
+       "[45915] \"234897_s_at\"                 \"233815_at\"                  \n",
+       "[45917] \"234903_at\"                   \"230606_at\"                  \n",
+       "[45919] \"234903_at\"                   \"234540_at\"                  \n",
+       "[45921] \"234530_s_at\"                 \"234115_s_at\"                \n",
+       "[45923] \"234114_at\"                   \"234546_at\"                  \n",
+       "[45925] \"231826_at\"                   \"232500_at\"                  \n",
+       "[45927] \"232721_at\"                   \"235301_at\"                  \n",
+       "[45929] \"235035_at\"                   \"235268_at\"                  \n",
+       "[45931] \"231777_at\"                   \"231571_at\"                  \n",
+       "[45933] \"234173_s_at\"                 \"232420_x_at\"                \n",
+       "[45935] \"232485_at\"                   \"231257_at\"                  \n",
+       "[45937] \"234897_s_at\"                 \"231646_at\"                  \n",
+       "[45939] \"231899_at\"                   \"235266_at\"                  \n",
+       "[45941] \"230803_s_at\"                 \"230802_at\"                  \n",
+       "[45943] \"231777_at\"                   \"231966_at\"                  \n",
+       "[45945] \"233985_x_at\"                 \"233971_at\"                  \n",
+       "[45947] \"233589_x_at\"                 \"234862_at\"                  \n",
+       "[45949] \"231856_at\"                   \"234100_at\"                  \n",
+       "[45951] \"234820_at\"                   \"234457_at\"                  \n",
+       "[45953] \"234097_s_at\"                 \"231444_at\"                  \n",
+       "[45955] \"234457_at\"                   \"234097_s_at\"                \n",
+       "[45957] \"232278_s_at\"                 \"234116_at\"                  \n",
+       "[45959] \"231571_at\"                   \"232412_at\"                  \n",
+       "[45961] \"235089_at\"                   \"231236_at\"                  \n",
+       "[45963] \"234897_s_at\"                 \"234897_s_at\"                \n",
+       "[45965] \"234161_at\"                   \"235141_at\"                  \n",
+       "[45967] \"234862_at\"                   \"231752_at\"                  \n",
+       "[45969] \"231939_s_at\"                 \"234760_at\"                  \n",
+       "[45971] \"233843_at\"                   \"231307_at\"                  \n",
+       "[45973] \"234897_s_at\"                 \"231739_at\"                  \n",
+       "[45975] \"231739_at\"                   \"231307_at\"                  \n",
+       "[45977] \"232570_s_at\"                 \"233868_x_at\"                \n",
+       "[45979] \"234371_at\"                   \"232393_at\"                  \n",
+       "[45981] \"234457_at\"                   \"234097_s_at\"                \n",
+       "[45983] \"233588_x_at\"                 \"231571_at\"                  \n",
+       "[45985] \"234897_s_at\"                 \"234835_at\"                  \n",
+       "[45987] \"234862_at\"                   \"234863_x_at\"                \n",
+       "[45989] \"231256_at\"                   \"234760_at\"                  \n",
+       "[45991] \"231739_at\"                   \"231739_at\"                  \n",
+       "[45993] \"232258_at\"                   \"231777_at\"                  \n",
+       "[45995] \"232195_at\"                   \"234545_at\"                  \n",
+       "[45997] \"231777_at\"                   \"232501_at\"                  \n",
+       "[45999] \"231777_at\"                   \"234371_at\"                  \n",
+       "[46001] \"234092_s_at\"                 \"233403_x_at\"                \n",
+       "[46003] \"234820_at\"                   \"232483_at\"                  \n",
+       "[46005] \"231777_at\"                   \"232094_at\"                  \n",
+       "[46007] \"235050_at\"                   \"234098_at\"                  \n",
+       "[46009] \"234530_s_at\"                 \"234115_s_at\"                \n",
+       "[46011] \"234114_at\"                   \"234369_at\"                  \n",
+       "[46013] \"235298_at\"                   \"231777_at\"                  \n",
+       "[46015] \"234831_at\"                   \"234331_s_at\"                \n",
+       "[46017] \"231439_at\"                   \"231236_at\"                  \n",
+       "[46019] \"234545_at\"                   \"231451_s_at\"                \n",
+       "[46021] \"235102_x_at\"                 \"234875_at\"                  \n",
+       "[46023] \"233843_at\"                   \"234530_s_at\"                \n",
+       "[46025] \"231777_at\"                   \"234530_s_at\"                \n",
+       "[46027] \"235133_at\"                   \"235136_at\"                  \n",
+       "[46029] \"230573_at\"                   \"234545_at\"                  \n",
+       "[46031] \"231571_at\"                   \"234903_at\"                  \n",
+       "[46033] \"232338_at\"                   \"232049_at\"                  \n",
+       "[46035] \"232664_at\"                   \"233950_at\"                  \n",
+       "[46037] \"234220_at\"                   \"231141_at\"                  \n",
+       "[46039] \"235356_at\"                   \"231236_at\"                  \n",
+       "[46041] \"233396_s_at\"                 \"233969_at\"                  \n",
+       "[46043] \"234764_x_at\"                 \"232920_at\"                  \n",
+       "[46045] \"232864_s_at\"                 \"232865_at\"                  \n",
+       "[46047] \"235420_at\"                   \"232965_at\"                  \n",
+       "[46049] \"235257_at\"                   \"234903_at\"                  \n",
+       "[46051] \"231733_at\"                   \"233983_at\"                  \n",
+       "[46053] \"231739_at\"                   \"231739_at\"                  \n",
+       "[46055] \"232634_at\"                   \"234371_at\"                  \n",
+       "[46057] \"234371_at\"                   \"230520_at\"                  \n",
+       "[46059] \"232810_at\"                   \"232841_at\"                  \n",
+       "[46061] \"230952_at\"                   \"233597_at\"                  \n",
+       "[46063] \"232424_at\"                   \"231989_s_at\"                \n",
+       "[46065] \"233334_x_at\"                 \"231989_s_at\"                \n",
+       "[46067] \"235208_at\"                   \"234530_s_at\"                \n",
+       "[46069] \"234115_s_at\"                 \"234114_at\"                  \n",
+       "[46071] \"231716_at\"                   \"234897_s_at\"                \n",
+       "[46073] \"234305_s_at\"                 \"231646_at\"                  \n",
+       "[46075] \"234820_at\"                   \"231912_s_at\"                \n",
+       "[46077] \"234457_at\"                   \"234097_s_at\"                \n",
+       "[46079] \"234530_s_at\"                 \"234115_s_at\"                \n",
+       "[46081] \"234114_at\"                   \"233588_x_at\"                \n",
+       "[46083] \"233327_at\"                   \"234530_s_at\"                \n",
+       "[46085] \"234862_at\"                   \"234820_at\"                  \n",
+       "[46087] \"235206_at\"                   \"231463_at\"                  \n",
+       "[46089] \"234530_s_at\"                 \"233593_at\"                  \n",
+       "[46091] \"233252_s_at\"                 \"232272_at\"                  \n",
+       "[46093] \"232638_at\"                   \"232733_s_at\"                \n",
+       "[46095] \"232076_at\"                   \"232076_at\"                  \n",
+       "[46097] \"235024_at\"                   \"230705_at\"                  \n",
+       "[46099] \"232181_at\"                   \"232964_at\"                  \n",
+       "[46101] \"235102_x_at\"                 \"230750_at\"                  \n",
+       "[46103] \"230845_at\"                   \"232017_at\"                  \n",
+       "[46105] \"232017_at\"                   \"234355_s_at\"                \n",
+       "[46107] \"232908_at\"                   \"232077_s_at\"                \n",
+       "[46109] \"233492_s_at\"                 \"233493_at\"                  \n",
+       "[46111] \"233168_s_at\"                 \"233167_at\"                  \n",
+       "[46113] \"233492_s_at\"                 \"233493_at\"                  \n",
+       "[46115] \"234519_at\"                   \"233988_x_at\"                \n",
+       "[46117] \"233929_x_at\"                 \"230784_at\"                  \n",
+       "[46119] \"233126_s_at\"                 \"231930_at\"                  \n",
+       "[46121] \"232167_at\"                   \"234371_at\"                  \n",
+       "[46123] \"234820_at\"                   \"234908_s_at\"                \n",
+       "[46125] \"232059_at\"                   \"234903_at\"                  \n",
+       "[46127] \"234545_at\"                   \"234530_s_at\"                \n",
+       "[46129] \"234115_s_at\"                 \"234114_at\"                  \n",
+       "[46131] \"233933_s_at\"                 \"233453_at\"                  \n",
+       "[46133] \"232135_at\"                   \"234760_at\"                  \n",
+       "[46135] \"233334_x_at\"                 \"233588_x_at\"                \n",
+       "[46137] \"234509_at\"                   \"234424_at\"                  \n",
+       "[46139] \"232648_at\"                   \"233334_x_at\"                \n",
+       "[46141] \"233334_x_at\"                 \"234897_s_at\"                \n",
+       "[46143] \"235313_at\"                   \"235312_s_at\"                \n",
+       "[46145] \"235139_at\"                   \"234862_at\"                  \n",
+       "[46147] \"234927_s_at\"                 \"232996_at\"                  \n",
+       "[46149] \"230682_x_at\"                 \"231236_at\"                  \n",
+       "[46151] \"234004_at\"                   \"231739_at\"                  \n",
+       "[46153] \"231739_at\"                   \"233755_at\"                  \n",
+       "[46155] \"234726_s_at\"                 \"232553_at\"                  \n",
+       "[46157] \"234696_at\"                   \"234696_at\"                  \n",
+       "[46159] \"233843_at\"                   \"234457_at\"                  \n",
+       "[46161] \"234097_s_at\"                 \"234305_s_at\"                \n",
+       "[46163] \"231823_s_at\"                 \"233234_at\"                  \n",
+       "[46165] \"231571_at\"                   \"233929_x_at\"                \n",
+       "[46167] \"230904_at\"                   \"235483_at\"                  \n",
+       "[46169] \"233176_at\"                   \"231759_at\"                  \n",
+       "[46171] \"233972_s_at\"                 \"233953_at\"                  \n",
+       "[46173] \"233539_at\"                   \"234840_s_at\"                \n",
+       "[46175] \"235061_at\"                   \"233644_at\"                  \n",
+       "[46177] \"231777_at\"                   \"231485_at\"                  \n",
+       "[46179] \"231777_at\"                   \"234897_s_at\"                \n",
+       "[46181] \"234897_s_at\"                 \"230740_at\"                  \n",
+       "[46183] \"235071_at\"                   \"235310_at\"                  \n",
+       "[46185] \"233987_at\"                   \"234129_at\"                  \n",
+       "[46187] \"231070_at\"                   \"234012_at\"                  \n",
+       "[46189] \"234903_at\"                   \"234457_at\"                  \n",
+       "[46191] \"234097_s_at\"                 \"234530_s_at\"                \n",
+       "[46193] \"233176_at\"                   \"232233_at\"                  \n",
+       "[46195] \"232232_s_at\"                 \"233172_at\"                  \n",
+       "[46197] \"234760_at\"                   \"233843_at\"                  \n",
+       "[46199] \"234530_s_at\"                 \"234115_s_at\"                \n",
+       "[46201] \"234114_at\"                   \"231187_at\"                  \n",
+       "[46203] \"234865_at\"                   \"230975_at\"                  \n",
+       "[46205] \"231435_at\"                   \"230693_at\"                  \n",
+       "[46207] \"231777_at\"                   \"234883_x_at\"                \n",
+       "[46209] \"231739_at\"                   \"231739_at\"                  \n",
+       "[46211] \"234377_at\"                   \"232552_at\"                  \n",
+       "[46213] \"231571_at\"                   \"234545_at\"                  \n",
+       "[46215] \"234886_at\"                   \"234840_s_at\"                \n",
+       "[46217] \"234111_at\"                   \"230574_at\"                  \n",
+       "[46219] \"235192_at\"                   \"230707_at\"                  \n",
+       "[46221] \"233514_x_at\"                 \"234296_s_at\"                \n",
+       "[46223] \"234371_at\"                   \"231777_at\"                  \n",
+       "[46225] \"234897_s_at\"                 \"234897_s_at\"                \n",
+       "[46227] \"231850_x_at\"                 \"232504_at\"                  \n",
+       "[46229] \"231236_at\"                   \"231108_at\"                  \n",
+       "[46231] \"231739_at\"                   \"231739_at\"                  \n",
+       "[46233] \"234941_s_at\"                 \"233507_at\"                  \n",
+       "[46235] \"234820_at\"                   \"231012_at\"                  \n",
+       "[46237] \"232010_at\"                   \"231236_at\"                  \n",
+       "[46239] \"232841_at\"                   \"234820_at\"                  \n",
+       "[46241] \"233588_x_at\"                 \"234932_s_at\"                \n",
+       "[46243] \"234457_at\"                   \"234097_s_at\"                \n",
+       "[46245] \"234115_s_at\"                 \"234114_at\"                  \n",
+       "[46247] \"234371_at\"                   \"234903_at\"                  \n",
+       "[46249] \"234897_s_at\"                 \"231718_at\"                  \n",
+       "[46251] \"234862_at\"                   \"234760_at\"                  \n",
+       "[46253] \"235146_at\"                   \"232021_at\"                  \n",
+       "[46255] \"231646_at\"                   \"231777_at\"                  \n",
+       "[46257] \"231571_at\"                   \"234285_at\"                  \n",
+       "[46259] \"234402_at\"                   \"233990_at\"                  \n",
+       "[46261] \"233873_x_at\"                 \"231777_at\"                  \n",
+       "[46263] \"231770_x_at\"                 \"232429_at\"                  \n",
+       "[46265] \"231063_at\"                   \"234897_s_at\"                \n",
+       "[46267] \"234897_s_at\"                 \"234530_s_at\"                \n",
+       "[46269] \"233604_at\"                   \"230947_at\"                  \n",
+       "[46271] \"230528_s_at\"                 \"232031_s_at\"                \n",
+       "[46273] \"234048_s_at\"                 \"232030_at\"                  \n",
+       "[46275] \"232691_at\"                   \"235460_at\"                  \n",
+       "[46277] \"231846_at\"                   \"233250_x_at\"                \n",
+       "[46279] \"233977_at\"                   \"230718_at\"                  \n",
+       "[46281] \"231920_s_at\"                 \"233536_at\"                  \n",
+       "[46283] \"232838_at\"                   \"235303_at\"                  \n",
+       "[46285] \"234995_at\"                   \"231737_at\"                  \n",
+       "[46287] \"232189_at\"                   \"230679_at\"                  \n",
+       "[46289] \"231084_at\"                   \"235302_at\"                  \n",
+       "[46291] \"234351_x_at\"                 \"232092_at\"                  \n",
+       "[46293] \"231758_at\"                   \"231758_at\"                  \n",
+       "[46295] \"232061_at\"                   \"233585_at\"                  \n",
+       "[46297] \"235015_at\"                   \"231178_at\"                  \n",
+       "[46299] \"234773_x_at\"                 \"235251_at\"                  \n",
+       "[46301] \"233759_s_at\"                 \"232558_at\"                  \n",
+       "[46303] \"232886_at\"                   \"230808_at\"                  \n",
+       "[46305] \"233572_s_at\"                 \"234711_s_at\"                \n",
+       "[46307] \"232117_at\"                   \"230578_at\"                  \n",
+       "[46309] \"230572_at\"                   \"230974_at\"                  \n",
+       "[46311] \"234317_s_at\"                 \"231969_at\"                  \n",
+       "[46313] \"234937_x_at\"                 \"234300_s_at\"                \n",
+       "[46315] \"231943_at\"                   \"231145_at\"                  \n",
+       "[46317] \"230835_at\"                   \"232395_x_at\"                \n",
+       "[46319] \"232690_at\"                   \"234921_at\"                  \n",
+       "[46321] \"230652_at\"                   \"235342_at\"                  \n",
+       "[46323] \"231236_at\"                   \"235071_at\"                  \n",
+       "[46325] \"232436_at\"                   \"231967_at\"                  \n",
+       "[46327] \"231429_at\"                   \"231429_at\"                  \n",
+       "[46329] \"235290_at\"                   \"234414_at\"                  \n",
+       "[46331] \"234334_s_at\"                 \"233863_at\"                  \n",
+       "[46333] \"232597_x_at\"                 \"234390_x_at\"                \n",
+       "[46335] \"235403_at\"                   \"230593_at\"                  \n",
+       "[46337] \"233385_x_at\"                 \"232106_s_at\"                \n",
+       "[46339] \"235053_at\"                   \"235221_at\"                  \n",
+       "[46341] \"235142_at\"                   \"231661_at\"                  \n",
+       "[46343] \"233385_x_at\"                 \"231582_at\"                  \n",
+       "[46345] \"232515_at\"                   \"232515_at\"                  \n",
+       "[46347] \"235223_at\"                   \"232166_at\"                  \n",
+       "[46349] \"230758_at\"                   \"232383_at\"                  \n",
+       "[46351] \"232385_x_at\"                 \"231804_at\"                  \n",
+       "[46353] \"233923_at\"                   \"232076_at\"                  \n",
+       "[46355] \"232076_at\"                   \"231572_at\"                  \n",
+       "[46357] \"230824_at\"                   \"233237_at\"                  \n",
+       "[46359] \"233238_s_at\"                 \"235128_at\"                  \n",
+       "[46361] \"230988_at\"                   \"232456_at\"                  \n",
+       "[46363] \"231955_s_at\"                 \"231203_at\"                  \n",
+       "[46365] \"232736_s_at\"                 \"233338_at\"                  \n",
+       "[46367] \"234286_at\"                   \"231902_at\"                  \n",
+       "[46369] \"234189_at\"                   \"233138_at\"                  \n",
+       "[46371] \"232833_at\"                   \"235102_x_at\"                \n",
+       "[46373] \"235102_x_at\"                 \"232588_at\"                  \n",
+       "[46375] \"234686_at\"                   \"230845_at\"                  \n",
+       "[46377] \"234905_at\"                   \"234506_at\"                  \n",
+       "[46379] \"232428_at\"                   \"233593_at\"                  \n",
+       "[46381] \"233338_at\"                   \"232071_at\"                  \n",
+       "[46383] \"232222_at\"                   \"230792_at\"                  \n",
+       "[46385] \"232055_at\"                   \"232165_at\"                  \n",
+       "[46387] \"232164_s_at\"                 \"231151_at\"                  \n",
+       "[46389] \"232629_at\"                   \"230588_s_at\"                \n",
+       "[46391] \"231973_s_at\"                 \"230789_at\"                  \n",
+       "[46393] \"232736_s_at\"                 \"231190_at\"                  \n",
+       "[46395] \"233610_at\"                   \"231373_at\"                  \n",
+       "[46397] \"231082_at\"                   \"231474_at\"                  \n",
+       "[46399] \"233558_s_at\"                 \"231880_at\"                  \n",
+       "[46401] \"231589_at\"                   \"234412_at\"                  \n",
+       "[46403] \"231952_at\"                   \"234511_at\"                  \n",
+       "[46405] \"230889_at\"                   \"234026_at\"                  \n",
+       "[46407] \"231883_at\"                   \"231677_at\"                  \n",
+       "[46409] \"231973_s_at\"                 \"233089_at\"                  \n",
+       "[46411] \"234443_at\"                   \"230765_at\"                  \n",
+       "[46413] \"233344_x_at\"                 \"234317_s_at\"                \n",
+       "[46415] \"235228_at\"                   \"233846_at\"                  \n",
+       "[46417] \"232022_at\"                   \"230800_at\"                  \n",
+       "[46419] \"233746_x_at\"                 \"234513_at\"                  \n",
+       "[46421] \"230675_at\"                   \"235068_at\"                  \n",
+       "[46423] \"230985_at\"                   \"230932_at\"                  \n",
+       "[46425] \"232192_at\"                   \"231859_at\"                  \n",
+       "[46427] \"231568_at\"                   \"231568_at\"                  \n",
+       "[46429] \"231568_at\"                   \"231568_at\"                  \n",
+       "[46431] \"231568_at\"                   \"231568_at\"                  \n",
+       "[46433] \"231568_at\"                   \"231568_at\"                  \n",
+       "[46435] \"233986_s_at\"                 \"230908_at\"                  \n",
+       "[46437] \"234988_at\"                   \"231568_at\"                  \n",
+       "[46439] \"234970_at\"                   \"230584_at\"                  \n",
+       "[46441] \"230583_s_at\"                 \"230584_at\"                  \n",
+       "[46443] \"230583_s_at\"                 \"233905_at\"                  \n",
+       "[46445] \"234504_at\"                   \"231570_at\"                  \n",
+       "[46447] \"232158_x_at\"                 \"232698_at\"                  \n",
+       "[46449] \"232294_at\"                   \"235264_at\"                  \n",
+       "[46451] \"234102_at\"                   \"233466_at\"                  \n",
+       "[46453] \"233523_at\"                   \"231448_at\"                  \n",
+       "[46455] \"230906_at\"                   \"233208_x_at\"                \n",
+       "[46457] \"232097_at\"                   \"233894_x_at\"                \n",
+       "[46459] \"231623_at\"                   \"232071_at\"                  \n",
+       "[46461] \"232708_at\"                   \"232610_at\"                  \n",
+       "[46463] \"234413_at\"                   \"234507_at\"                  \n",
+       "[46465] \"232487_at\"                   \"230635_at\"                  \n",
+       "[46467] \"235158_at\"                   \"233173_x_at\"                \n",
+       "[46469] \"234372_at\"                   \"231973_s_at\"                \n",
+       "[46471] \"232057_at\"                   \"232792_at\"                  \n",
+       "[46473] \"231732_at\"                   \"232003_at\"                  \n",
+       "[46475] \"234969_s_at\"                 \"230530_at\"                  \n",
+       "[46477] \"231210_at\"                   \"231106_at\"                  \n",
+       "[46479] \"233416_at\"                   \"233249_at\"                  \n",
+       "[46481] \"232486_at\"                   \"232609_at\"                  \n",
+       "[46483] \"234433_at\"                   \"235189_at\"                  \n",
+       "[46485] \"234893_s_at\"                 \"235332_at\"                  \n",
+       "[46487] \"234695_x_at\"                 \"234554_at\"                  \n",
+       "[46489] \"234615_at\"                   \"234770_at\"                  \n",
+       "[46491] \"235473_at\"                   \"232026_at\"                  \n",
+       "[46493] \"234994_at\"                   \"232620_at\"                  \n",
+       "[46495] \"234469_at\"                   \"234526_at\"                  \n",
+       "[46497] \"233736_at\"                   \"232336_at\"                  \n",
+       "[46499] \"234518_at\"                   \"234617_at\"                  \n",
+       "[46501] \"234014_at\"                   \"232423_at\"                  \n",
+       "[46503] \"232173_at\"                   \"233329_s_at\"                \n",
+       "[46505] \"231378_at\"                   \"231780_at\"                  \n",
+       "[46507] \"235327_x_at\"                 \"232011_s_at\"                \n",
+       "[46509] \"235228_at\"                   \"231764_at\"                  \n",
+       "[46511] \"235105_at\"                   \"235288_at\"                  \n",
+       "[46513] \"231356_at\"                   \"233823_at\"                  \n",
+       "[46515] \"235429_at\"                   \"235057_at\"                  \n",
+       "[46517] \"234977_at\"                   \"233903_s_at\"                \n",
+       "[46519] \"232146_at\"                   \"230604_at\"                  \n",
+       "[46521] \"233935_at\"                   \"234873_x_at\"                \n",
+       "[46523] \"234349_at\"                   \"230625_s_at\"                \n",
+       "[46525] \"235152_at\"                   \"234256_at\"                  \n",
+       "[46527] \"232305_at\"                   \"233576_at\"                  \n",
+       "[46529] \"234883_x_at\"                 \"233439_at\"                  \n",
+       "[46531] \"232593_at\"                   \"232751_at\"                  \n",
+       "[46533] \"231126_at\"                   \"230671_at\"                  \n",
+       "[46535] \"230671_at\"                   \"233984_at\"                  \n",
+       "[46537] \"234825_at\"                   \"233354_at\"                  \n",
+       "[46539] \"235476_at\"                   \"235200_at\"                  \n",
+       "[46541] \"235271_s_at\"                 \"235084_x_at\"                \n",
+       "[46543] \"234960_at\"                   \"233512_at\"                  \n",
+       "[46545] \"234753_x_at\"                 \"234339_s_at\"                \n",
+       "[46547] \"234876_at\"                   \"231820_x_at\"                \n",
+       "[46549] \"231568_at\"                   \"231358_at\"                  \n",
+       "[46551] \"232846_s_at\"                 \"232845_at\"                  \n",
+       "[46553] \"230966_at\"                   \"230630_at\"                  \n",
+       "[46555] \"234007_at\"                   \"233812_at\"                  \n",
+       "[46557] \"232587_at\"                   \"231253_at\"                  \n",
+       "[46559] \"230955_s_at\"                 \"234031_at\"                  \n",
+       "[46561] \"230954_at\"                   \"233555_s_at\"                \n",
+       "[46563] \"233116_at\"                   \"232517_s_at\"                \n",
+       "[46565] \"232518_at\"                   \"232787_at\"                  \n",
+       "[46567] \"230976_at\"                   \"233841_s_at\"                \n",
+       "[46569] \"234974_at\"                   \"235256_s_at\"                \n",
+       "[46571] \"231777_at\"                   \"230886_at\"                  \n",
+       "[46573] \"231838_at\"                   \"233104_at\"                  \n",
+       "[46575] \"235449_at\"                   \"230719_at\"                  \n",
+       "[46577] \"231863_at\"                   \"230886_at\"                  \n",
+       "[46579] \"232803_at\"                   \"231409_at\"                  \n",
+       "[46581] \"231131_at\"                   \"231573_at\"                  \n",
+       "[46583] \"230912_at\"                   \"231757_at\"                  \n",
+       "[46585] \"230883_at\"                   \"234897_s_at\"                \n",
+       "[46587] \"234897_s_at\"                 \"230814_at\"                  \n",
+       "[46589] \"234907_x_at\"                 \"230644_at\"                  \n",
+       "[46591] \"232343_at\"                   \"231608_at\"                  \n",
+       "[46593] \"234923_at\"                   \"232343_at\"                  \n",
+       "[46595] \"233005_at\"                   \"234397_at\"                  \n",
+       "[46597] \"234397_at\"                   \"232911_at\"                  \n",
+       "[46599] \"233221_at\"                   \"232480_at\"                  \n",
+       "[46601] \"232480_at\"                   \"231155_at\"                  \n",
+       "[46603] \"235176_at\"                   \"231445_at\"                  \n",
+       "[46605] \"231778_at\"                   \"233362_at\"                  \n",
+       "[46607] \"231940_at\"                   \"235007_at\"                  \n",
+       "[46609] \"233028_at\"                   \"230588_s_at\"                \n",
+       "[46611] \"231973_s_at\"                 \"231164_at\"                  \n",
+       "[46613] \"233934_at\"                   \"230605_at\"                  \n",
+       "[46615] \"230830_at\"                   \"231925_at\"                  \n",
+       "[46617] \"231809_x_at\"                 \"235475_at\"                  \n",
+       "[46619] \"233970_s_at\"                 \"231133_at\"                  \n",
+       "[46621] \"231827_at\"                   \"233560_x_at\"                \n",
+       "[46623] \"232198_at\"                   \"234407_s_at\"                \n",
+       "[46625] \"231283_at\"                   \"232246_at\"                  \n",
+       "[46627] \"233560_x_at\"                 \"233278_at\"                  \n",
+       "[46629] \"235250_at\"                   \"231341_at\"                  \n",
+       "[46631] \"235404_at\"                   \"231724_at\"                  \n",
+       "[46633] \"230944_at\"                   \"234345_at\"                  \n",
+       "[46635] \"232449_at\"                   \"232151_at\"                  \n",
+       "[46637] \"232050_at\"                   \"232579_at\"                  \n",
+       "[46639] \"234868_s_at\"                 \"231324_at\"                  \n",
+       "[46641] \"232267_at\"                   \"232479_at\"                  \n",
+       "[46643] \"232161_x_at\"                 \"231278_at\"                  \n",
+       "[46645] \"235445_at\"                   \"234381_at\"                  \n",
+       "[46647] \"232931_at\"                   \"233074_at\"                  \n",
+       "[46649] \"231840_x_at\"                 \"232760_at\"                  \n",
+       "[46651] \"231440_at\"                   \"232269_x_at\"                \n",
+       "[46653] \"230665_at\"                   \"235366_at\"                  \n",
+       "[46655] \"233850_s_at\"                 \"232357_at\"                  \n",
+       "[46657] \"234336_s_at\"                 \"234337_at\"                  \n",
+       "[46659] \"230898_at\"                   \"231115_at\"                  \n",
+       "[46661] \"233852_at\"                   \"233268_s_at\"                \n",
+       "[46663] \"235067_at\"                   \"233013_x_at\"                \n",
+       "[46665] \"232953_at\"                   \"233469_at\"                  \n",
+       "[46667] \"232736_s_at\"                 \"230695_s_at\"                \n",
+       "[46669] \"230797_s_at\"                 \"230796_at\"                  \n",
+       "[46671] \"233569_at\"                   \"232656_at\"                  \n",
+       "[46673] \"231255_at\"                   \"231416_at\"                  \n",
+       "[46675] \"230977_at\"                   \"231089_at\"                  \n",
+       "[46677] \"230884_s_at\"                 \"230885_at\"                  \n",
+       "[46679] \"235325_at\"                   \"230884_s_at\"                \n",
+       "[46681] \"230885_at\"                   \"235325_at\"                  \n",
+       "[46683] \"234943_at\"                   \"233059_at\"                  \n",
+       "[46685] \"235262_at\"                   \"234472_at\"                  \n",
+       "[46687] \"231877_at\"                   \"232679_at\"                  \n",
+       "[46689] \"233047_at\"                   \"233183_at\"                  \n",
+       "[46691] \"232899_at\"                   \"235052_at\"                  \n",
+       "[46693] \"233487_s_at\"                 \"232892_at\"                  \n",
+       "[46695] \"230588_s_at\"                 \"231973_s_at\"                \n",
+       "[46697] \"232287_at\"                   \"233556_at\"                  \n",
+       "[46699] \"232913_at\"                   \"231914_at\"                  \n",
+       "[46701] \"233205_at\"                   \"233338_at\"                  \n",
+       "[46703] \"233292_s_at\"                 \"234400_at\"                  \n",
+       "[46705] \"231803_at\"                   \"235019_at\"                  \n",
+       "[46707] \"230633_at\"                   \"231803_at\"                  \n",
+       "[46709] \"231803_at\"                   \"233292_s_at\"                \n",
+       "[46711] \"234493_at\"                   \"233843_at\"                  \n",
+       "[46713] \"233530_at\"                   \"234688_x_at\"                \n",
+       "[46715] \"231884_at\"                   \"231366_at\"                  \n",
+       "[46717] \"233508_at\"                   \"231457_at\"                  \n",
+       "[46719] \"234002_at\"                   \"231043_at\"                  \n",
+       "[46721] \"234751_s_at\"                 \"232122_s_at\"                \n",
+       "[46723] \"232777_s_at\"                 \"232675_s_at\"                \n",
+       "[46725] \"233001_at\"                   \"234797_at\"                  \n",
+       "[46727] \"234018_s_at\"                 \"235278_at\"                  \n",
+       "[46729] \"233288_at\"                   \"232822_x_at\"                \n",
+       "[46731] \"232185_at\"                   \"231382_at\"                  \n",
+       "[46733] \"230741_at\"                   \"233942_at\"                  \n",
+       "[46735] \"235287_at\"                   \"231198_at\"                  \n",
+       "[46737] \"235330_at\"                   \"232921_at\"                  \n",
+       "[46739] \"233730_at\"                   \"230683_at\"                  \n",
+       "[46741] \"233069_at\"                   \"235122_at\"                  \n",
+       "[46743] \"232581_x_at\"                 \"233146_at\"                  \n",
+       "[46745] \"230558_at\"                   \"231512_at\"                  \n",
+       "[46747] \"234360_at\"                   \"234496_x_at\"                \n",
+       "[46749] \"230881_at\"                   \"233081_at\"                  \n",
+       "[46751] \"234133_s_at\"                 \"233871_at\"                  \n",
+       "[46753] \"231260_at\"                   \"233163_at\"                  \n",
+       "[46755] \"232110_at\"                   \"230852_at\"                  \n",
+       "[46757] \"231544_s_at\"                 \"232300_at\"                  \n",
+       "[46759] \"233295_at\"                   \"235170_at\"                  \n",
+       "[46761] \"234106_s_at\"                 \"234980_at\"                  \n",
+       "[46763] \"233268_s_at\"                 \"233143_at\"                  \n",
+       "[46765] \"230772_at\"                   \"230914_at\"                  \n",
+       "[46767] \"233190_at\"                   \"232080_at\"                  \n",
+       "[46769] \"235205_at\"                   \"234737_at\"                  \n",
+       "[46771] \"232203_at\"                   \"232048_at\"                  \n",
+       "[46773] \"233398_at\"                   \"233898_s_at\"                \n",
+       "[46775] \"232384_s_at\"                 \"234973_at\"                  \n",
+       "[46777] \"231446_at\"                   \"234848_at\"                  \n",
+       "[46779] \"234842_at\"                   \"234013_at\"                  \n",
+       "[46781] \"234427_at\"                   \"234849_at\"                  \n",
+       "[46783] \"234964_at\"                   \"234860_at\"                  \n",
+       "[46785] \"234852_at\"                   \"234398_at\"                  \n",
+       "[46787] \"234396_at\"                   \"234388_at\"                  \n",
+       "[46789] \"234819_at\"                   \"234399_at\"                  \n",
+       "[46791] \"234867_at\"                   \"234401_at\"                  \n",
+       "[46793] \"230780_at\"                   \"230877_at\"                  \n",
+       "[46795] \"233785_at\"                   \"232282_at\"                  \n",
+       "[46797] \"232373_at\"                   \"231976_at\"                  \n",
+       "[46799] \"231094_s_at\"                 \"234902_s_at\"                \n",
+       "[46801] \"232774_x_at\"                 \"232567_at\"                  \n",
+       "[46803] \"231913_s_at\"                 \"230916_at\"                  \n",
+       "[46805] \"234804_at\"                   \"232887_at\"                  \n",
+       "[46807] \"234986_at\"                   \"234369_at\"                  \n",
+       "[46809] \"230903_s_at\"                 \"235018_at\"                  \n",
+       "[46811] \"235355_at\"                   \"235017_s_at\"                \n",
+       "[46813] \"235433_at\"                   \"235051_at\"                  \n",
+       "[46815] \"232221_x_at\"                 \"232535_at\"                  \n",
+       "[46817] \"235304_at\"                   \"230609_at\"                  \n",
+       "[46819] \"231249_at\"                   \"234304_s_at\"                \n",
+       "[46821] \"234329_at\"                   \"230563_at\"                  \n",
+       "[46823] \"231147_at\"                   \"231632_at\"                  \n",
+       "[46825] \"235195_at\"                   \"232023_at\"                  \n",
+       "[46827] \"231568_at\"                   \"232775_at\"                  \n",
+       "[46829] \"231056_at\"                   \"233857_s_at\"                \n",
+       "[46831] \"231192_at\"                   \"231822_at\"                  \n",
+       "[46833] \"233002_at\"                   \"231185_at\"                  \n",
+       "[46835] \"232244_at\"                   \"230939_at\"                  \n",
+       "[46837] \"231897_at\"                   \"231731_at\"                  \n",
+       "[46839] \"235347_at\"                   \"231478_at\"                  \n",
+       "[46841] \"232024_at\"                   \"232543_x_at\"                \n",
+       "[46843] \"231222_at\"                   \"233504_at\"                  \n",
+       "[46845] \"232237_at\"                   \"234356_at\"                  \n",
+       "[46847] \"232960_at\"                   \"231554_at\"                  \n",
+       "[46849] \"231389_at\"                   \"232938_at\"                  \n",
+       "[46851] \"231950_at\"                   \"231791_at\"                  \n",
+       "[46853] \"232083_at\"                   \"231058_at\"                  \n",
+       "[46855] \"234476_at\"                   \"234312_s_at\"                \n",
+       "[46857] \"231123_at\"                   \"231634_at\"                  \n",
+       "[46859] \"231122_x_at\"                 \"231052_at\"                  \n",
+       "[46861] \"235037_at\"                   \"232683_s_at\"                \n",
+       "[46863] \"234710_s_at\"                 \"232498_at\"                  \n",
+       "[46865] \"230813_at\"                   \"230547_at\"                  \n",
+       "[46867] \"234318_x_at\"                 \"230767_at\"                  \n",
+       "[46869] \"232999_at\"                   \"234373_x_at\"                \n",
+       "[46871] \"233287_at\"                   \"234839_at\"                  \n",
+       "[46873] \"230546_at\"                   \"231975_s_at\"                \n",
+       "[46875] \"233949_s_at\"                 \"233613_x_at\"                \n",
+       "[46877] \"231048_at\"                   \"234328_at\"                  \n",
+       "[46879] \"234453_s_at\"                 \"233941_at\"                  \n",
+       "[46881] \"233535_at\"                   \"235174_s_at\"                \n",
+       "[46883] \"233333_x_at\"                 \"232209_x_at\"                \n",
+       "[46885] \"231890_at\"                   \"233020_at\"                  \n",
+       "[46887] \"233933_s_at\"                 \"234093_at\"                  \n",
+       "[46889] \"235231_at\"                   \"233453_at\"                  \n",
+       "[46891] \"232953_at\"                   \"232881_at\"                  \n",
+       "[46893] \"235202_x_at\"                 \"234226_at\"                  \n",
+       "[46895] \"235296_at\"                   \"235289_at\"                  \n",
+       "[46897] \"230518_at\"                   \"233084_s_at\"                \n",
+       "[46899] \"233482_at\"                   \"234226_at\"                  \n",
+       "[46901] \"233849_s_at\"                 \"234485_at\"                  \n",
+       "[46903] \"235013_at\"                   \"232014_at\"                  \n",
+       "[46905] \"233060_at\"                   \"231268_at\"                  \n",
+       "[46907] \"235153_at\"                   \"231973_s_at\"                \n",
+       "[46909] \"231366_at\"                   \"233754_x_at\"                \n",
+       "[46911] \"234570_at\"                   \"231215_at\"                  \n",
+       "[46913] \"233594_at\"                   \"234530_s_at\"                \n",
+       "[46915] \"234115_s_at\"                 \"234114_at\"                  \n",
+       "[46917] \"232524_x_at\"                 \"232325_at\"                  \n",
+       "[46919] \"234530_s_at\"                 \"232875_at\"                  \n",
+       "[46921] \"234039_at\"                   \"232534_at\"                  \n",
+       "[46923] \"233910_at\"                   \"232856_at\"                  \n",
+       "[46925] \"232641_at\"                   \"232095_at\"                  \n",
+       "[46927] \"230782_at\"                   \"233516_s_at\"                \n",
+       "[46929] \"233734_s_at\"                 \"230615_at\"                  \n",
+       "[46931] \"231121_at\"                   \"230562_at\"                  \n",
+       "[46933] \"232007_at\"                   \"230862_at\"                  \n",
+       "[46935] \"232243_at\"                   \"231054_at\"                  \n",
+       "[46937] \"234592_at\"                   \"230657_at\"                  \n",
+       "[46939] \"232283_at\"                   \"234529_at\"                  \n",
+       "[46941] \"232812_at\"                   \"232278_s_at\"                \n",
+       "[46943] \"231531_at\"                   \"231779_at\"                  \n",
+       "[46945] \"235102_x_at\"                 \"235102_x_at\"                \n",
+       "[46947] \"234984_at\"                   \"232506_s_at\"                \n",
+       "[46949] \"232507_at\"                   \"232860_x_at\"                \n",
+       "[46951] \"232216_at\"                   \"232200_at\"                  \n",
+       "[46953] \"232200_at\"                   \"232332_at\"                  \n",
+       "[46955] \"231159_at\"                   \"234996_at\"                  \n",
+       "[46957] \"231344_at\"                   \"233361_at\"                  \n",
+       "[46959] \"235367_at\"                   \"234861_at\"                  \n",
+       "[46961] \"235194_at\"                   \"234130_at\"                  \n",
+       "[46963] \"230807_at\"                   \"231563_at\"                  \n",
+       "[46965] \"234141_s_at\"                 \"230678_at\"                  \n",
+       "[46967] \"231468_at\"                   \"231157_at\"                  \n",
+       "[46969] \"234448_at\"                   \"233443_at\"                  \n",
+       "[46971] \"231775_at\"                   \"233076_at\"                  \n",
+       "[46973] \"233447_at\"                   \"233206_at\"                  \n",
+       "[46975] \"233767_at\"                   \"231407_s_at\"                \n",
+       "[46977] \"231766_s_at\"                 \"234951_s_at\"                \n",
+       "[46979] \"231879_at\"                   \"232403_at\"                  \n",
+       "[46981] \"232284_at\"                   \"232284_at\"                  \n",
+       "[46983] \"232404_at\"                   \"231497_at\"                  \n",
+       "[46985] \"232990_at\"                   \"235461_at\"                  \n",
+       "[46987] \"233307_x_at\"                 \"233114_at\"                  \n",
+       "[46989] \"232538_at\"                   \"231085_s_at\"                \n",
+       "[46991] \"235436_at\"                   \"234800_at\"                  \n",
+       "[46993] \"235316_at\"                   \"232591_s_at\"                \n",
+       "[46995] \"233360_at\"                   \"235168_at\"                  \n",
+       "[46997] \"235081_x_at\"                 \"232087_at\"                  \n",
+       "[46999] \"231745_at\"                   \"230570_at\"                  \n",
+       "[47001] \"232241_at\"                   \"232157_at\"                  \n",
+       "[47003] \"234858_at\"                   \"232561_at\"                  \n",
+       "[47005] \"231937_at\"                   \"234050_at\"                  \n",
+       "[47007] \"232067_at\"                   \"233893_s_at\"                \n",
+       "[47009] \"234761_at\"                   \"231968_at\"                  \n",
+       "[47011] \"232893_at\"                   \"231287_s_at\"                \n",
+       "[47013] \"235479_at\"                   \"230728_at\"                  \n",
+       "[47015] \"235311_at\"                   \"231223_at\"                  \n",
+       "[47017] \"234414_at\"                   \"231425_at\"                  \n",
+       "[47019] \"235054_at\"                   \"235002_at\"                  \n",
+       "[47021] \"230561_s_at\"                 \"233072_at\"                  \n",
+       "[47023] \"232527_at\"                   \"231893_at\"                  \n",
+       "[47025] \"232016_at\"                   \"232361_s_at\"                \n",
+       "[47027] \"232360_at\"                   \"234104_at\"                  \n",
+       "[47029] \"231844_at\"                   \"235391_at\"                  \n",
+       "[47031] \"233651_s_at\"                 \"230624_at\"                  \n",
+       "[47033] \"231787_at\"                   \"231219_at\"                  \n",
+       "[47035] \"232692_at\"                   \"234878_at\"                  \n",
+       "[47037] \"232785_at\"                   \"234378_at\"                  \n",
+       "[47039] \"235332_at\"                   \"234695_x_at\"                \n",
+       "[47041] \"233511_at\"                   \"235076_at\"                  \n",
+       "[47043] \"235154_at\"                   \"235119_at\"                  \n",
+       "[47045] \"235442_at\"                   \"232642_at\"                  \n",
+       "[47047] \"234173_s_at\"                 \"234311_s_at\"                \n",
+       "[47049] \"230684_at\"                   \"234311_s_at\"                \n",
+       "[47051] \"230684_at\"                   \"232885_at\"                  \n",
+       "[47053] \"232396_at\"                   \"230797_s_at\"                \n",
+       "[47055] \"230706_s_at\"                 \"232910_at\"                  \n",
+       "[47057] \"232512_at\"                   \"233202_at\"                  \n",
+       "[47059] \"231530_s_at\"                 \"231442_at\"                  \n",
+       "[47061] \"231111_at\"                   \"232842_at\"                  \n",
+       "[47063] \"232843_s_at\"                 \"230940_at\"                  \n",
+       "[47065] \"230634_x_at\"                 \"230998_at\"                  \n",
+       "[47067] \"231124_x_at\"                 \"234437_at\"                  \n",
+       "[47069] \"230597_at\"                   \"231104_at\"                  \n",
+       "[47071] \"233749_at\"                   \"230549_at\"                  \n",
+       "[47073] \"233418_at\"                   \"234901_at\"                  \n",
+       "[47075] \"231621_at\"                   \"230710_at\"                  \n",
+       "[47077] \"234952_s_at\"                 \"231102_at\"                  \n",
+       "[47079] \"235360_at\"                   \"234060_at\"                  \n",
+       "[47081] \"233578_at\"                   \"235193_at\"                  \n",
+       "[47083] \"233665_x_at\"                 \"231891_at\"                  \n",
+       "[47085] \"234968_at\"                   \"231421_at\"                  \n",
+       "[47087] \"235279_at\"                   \"231556_at\"                  \n",
+       "[47089] \"234365_at\"                   \"234885_at\"                  \n",
+       "[47091] \"231542_at\"                   \"231541_s_at\"                \n",
+       "[47093] \"230753_at\"                   \"234143_at\"                  \n",
+       "[47095] \"234143_at\"                   \"234208_at\"                  \n",
+       "[47097] \"235222_x_at\"                 \"231175_at\"                  \n",
+       "[47099] \"235005_at\"                   \"231869_at\"                  \n",
+       "[47101] \"230763_at\"                   \"233543_s_at\"                \n",
+       "[47103] \"231099_at\"                   \"234914_at\"                  \n",
+       "[47105] \"232806_s_at\"                 \"232807_at\"                  \n",
+       "[47107] \"231470_at\"                   \"233380_s_at\"                \n",
+       "[47109] \"233381_at\"                   \"230937_at\"                  \n",
+       "[47111] \"231946_at\"                   \"231096_at\"                  \n",
+       "[47113] \"231288_at\"                   \"230936_at\"                  \n",
+       "[47115] \"232566_at\"                   \"231642_at\"                  \n",
+       "[47117] \"234584_s_at\"                 \"233750_s_at\"                \n",
+       "[47119] \"232722_at\"                   \"233540_s_at\"                \n",
+       "[47121] \"231730_at\"                   \"232028_at\"                  \n",
+       "[47123] \"230534_at\"                   \"233492_s_at\"                \n",
+       "[47125] \"233493_at\"                   \"230776_at\"                  \n",
+       "[47127] \"235240_at\"                   \"233182_x_at\"                \n",
+       "[47129] \"234689_at\"                   \"232215_x_at\"                \n",
+       "[47131] \"232663_s_at\"                 \"230700_at\"                  \n",
+       "[47133] \"234820_at\"                   \"234840_s_at\"                \n",
+       "[47135] \"231435_at\"                   \"232074_at\"                  \n",
+       "[47137] \"233048_at\"                   \"231988_x_at\"                \n",
+       "[47139] \"231459_at\"                   \"231431_s_at\"                \n",
+       "[47141] \"231788_at\"                   \"230833_at\"                  \n",
+       "[47143] \"233588_x_at\"                 \"235088_at\"                  \n",
+       "[47145] \"230541_at\"                   \"233588_x_at\"                \n",
+       "[47147] \"232253_at\"                   \"232637_at\"                  \n",
+       "[47149] \"234545_at\"                   \"231398_at\"                  \n",
+       "[47151] \"235127_at\"                   \"234950_s_at\"                \n",
+       "[47153] \"232129_s_at\"                 \"234306_s_at\"                \n",
+       "[47155] \"230730_at\"                   \"231423_s_at\"                \n",
+       "[47157] \"234666_at\"                   \"231234_at\"                  \n",
+       "[47159] \"230600_at\"                   \"230601_s_at\"                \n",
+       "[47161] \"234285_at\"                   \"231271_x_at\"                \n",
+       "[47163] \"230592_at\"                   \"235029_at\"                  \n",
+       "[47165] \"231219_at\"                   \"234529_at\"                  \n",
+       "[47167] \"231138_at\"                   \"231901_at\"                  \n",
+       "[47169] \"232020_at\"                   \"230514_s_at\"                \n",
+       "[47171] \"232091_s_at\"                 \"232627_at\"                  \n",
+       "[47173] \"233860_s_at\"                 \"234436_x_at\"                \n",
+       "[47175] \"234841_x_at\"                 \"232813_s_at\"                \n",
+       "[47177] \"235141_at\"                   \"234971_x_at\"                \n",
+       "[47179] \"233068_at\"                   \"230554_at\"                  \n",
+       "[47181] \"231018_at\"                   \"232654_s_at\"                \n",
+       "[47183] \"230554_at\"                   \"233831_at\"                  \n",
+       "[47185] \"235101_at\"                   \"231807_at\"                  \n",
+       "[47187] \"232046_at\"                   \"232989_s_at\"                \n",
+       "[47189] \"235101_at\"                   \"230953_at\"                  \n",
+       "[47191] \"230953_at\"                   \"235149_at\"                  \n",
+       "[47193] \"231022_at\"                   \"232915_at\"                  \n",
+       "[47195] \"235069_at\"                   \"235103_at\"                  \n",
+       "[47197] \"232879_at\"                   \"231843_at\"                  \n",
+       "[47199] \"233642_s_at\"                 \"234211_at\"                  \n",
+       "[47201] \"235435_at\"                   \"233289_at\"                  \n",
+       "[47203] \"231819_at\"                   \"234173_s_at\"                \n",
+       "[47205] \"232035_at\"                   \"232854_at\"                  \n",
+       "[47207] \"232854_at\"                   \"233963_at\"                  \n",
+       "[47209] \"233963_at\"                   \"232713_at\"                  \n",
+       "[47211] \"232115_at\"                   \"234927_s_at\"                \n",
+       "[47213] \"232352_at\"                   \"235255_at\"                  \n",
+       "[47215] \"230783_at\"                   \"232562_at\"                  \n",
+       "[47217] \"235225_at\"                   \"235258_at\"                  \n",
+       "[47219] \"234423_x_at\"                 \"231452_at\"                  \n",
+       "[47221] \"231050_at\"                   \"232944_at\"                  \n",
+       "[47223] \"232303_at\"                   \"232491_at\"                  \n",
+       "[47225] \"232625_at\"                   \"232214_x_at\"                \n",
+       "[47227] \"231061_at\"                   \"231061_at\"                  \n",
+       "[47229] \"230755_at\"                   \"230832_at\"                  \n",
+       "[47231] \"234725_s_at\"                 \"230545_at\"                  \n",
+       "[47233] \"233803_s_at\"                 \"233929_x_at\"                \n",
+       "[47235] \"233929_x_at\"                 \"233929_x_at\"                \n",
+       "[47237] \"233929_x_at\"                 \"235045_at\"                  \n",
+       "[47239] \"231384_at\"                   \"233421_s_at\"                \n",
+       "[47241] \"231076_at\"                   \"234811_at\"                  \n",
+       "[47243] \"233980_s_at\"                 \"233476_at\"                  \n",
+       "[47245] \"232381_s_at\"                 \"230863_at\"                  \n",
+       "[47247] \"232013_at\"                   \"232801_at\"                  \n",
+       "[47249] \"230971_x_at\"                 \"230971_x_at\"                \n",
+       "[47251] \"233137_at\"                   \"232297_at\"                  \n",
+       "[47253] \"233866_at\"                   \"232475_at\"                  \n",
+       "[47255] \"233820_at\"                   \"235300_x_at\"                \n",
+       "[47257] \"233551_at\"                   \"232458_at\"                  \n",
+       "[47259] \"230554_at\"                   \"231291_at\"                  \n",
+       "[47261] \"230826_at\"                   \"233141_s_at\"                \n",
+       "[47263] \"234232_at\"                   \"234233_s_at\"                \n",
+       "[47265] \"232111_at\"                   \"235378_at\"                  \n",
+       "[47267] \"230983_at\"                   \"231875_at\"                  \n",
+       "[47269] \"234219_at\"                   \"235411_at\"                  \n",
+       "[47271] \"232252_at\"                   \"231858_x_at\"                \n",
+       "[47273] \"231401_s_at\"                 \"230617_at\"                  \n",
+       "[47275] \"231984_at\"                   \"231870_s_at\"                \n",
+       "[47277] \"231194_at\"                   \"231959_at\"                  \n",
+       "[47279] \"235391_at\"                   \"231887_s_at\"                \n",
+       "[47281] \"230874_at\"                   \"234978_at\"                  \n",
+       "[47283] \"231065_at\"                   \"233999_s_at\"                \n",
+       "[47285] \"233496_s_at\"                 \"232183_at\"                  \n",
+       "[47287] \"233096_at\"                   \"231399_at\"                  \n",
+       "[47289] \"231279_at\"                   \"232632_at\"                  \n",
+       "[47291] \"232905_at\"                   \"231073_at\"                  \n",
+       "[47293] \"232720_at\"                   \"231286_at\"                  \n",
+       "[47295] \"231741_at\"                   \"232279_at\"                  \n",
+       "[47297] \"234392_at\"                   \"234953_x_at\"                \n",
+       "[47299] \"234953_x_at\"                 \"234183_at\"                  \n",
+       "[47301] \"232419_at\"                   \"233634_at\"                  \n",
+       "[47303] \"233656_s_at\"                 \"234029_at\"                  \n",
+       "[47305] \"233926_at\"                   \"232304_at\"                  \n",
+       "[47307] \"235484_at\"                   \"230872_s_at\"                \n",
+       "[47309] \"231754_at\"                   \"231753_s_at\"                \n",
+       "[47311] \"234847_at\"                   \"232434_at\"                  \n",
+       "[47313] \"231186_at\"                   \"231186_at\"                  \n",
+       "[47315] \"233140_s_at\"                 \"234320_at\"                  \n",
+       "[47317] \"231830_x_at\"                 \"234021_at\"                  \n",
+       "[47319] \"235219_at\"                   \"233740_at\"                  \n",
+       "[47321] \"232867_at\"                   \"232548_at\"                  \n",
+       "[47323] \"231350_at\"                   \"232366_at\"                  \n",
+       "[47325] \"232994_s_at\"                 \"231097_at\"                  \n",
+       "[47327] \"231443_at\"                   \"235471_at\"                  \n",
+       "[47329] \"231802_at\"                   \"234262_at\"                  \n",
+       "[47331] \"234822_at\"                   \"231848_x_at\"                \n",
+       "[47333] \"235215_at\"                   \"235196_at\"                  \n",
+       "[47335] \"231028_at\"                   \"235025_at\"                  \n",
+       "[47337] \"231609_at\"                   \"231924_at\"                  \n",
+       "[47339] \"231068_at\"                   \"231209_at\"                  \n",
+       "[47341] \"230677_at\"                   \"230915_at\"                  \n",
+       "[47343] \"231128_at\"                   \"231430_at\"                  \n",
+       "[47345] \"231763_at\"                   \"233231_at\"                  \n",
+       "[47347] \"230774_at\"                   \"231817_at\"                  \n",
+       "[47349] \"231376_at\"                   \"233155_at\"                  \n",
+       "[47351] \"231666_at\"                   \"231727_s_at\"                \n",
+       "[47353] \"234040_at\"                   \"234354_x_at\"                \n",
+       "[47355] \"235178_x_at\"                 \"231116_at\"                  \n",
+       "[47357] \"231191_at\"                   \"232316_at\"                  \n",
+       "[47359] \"231566_at\"                   \"230560_at\"                  \n",
+       "[47361] \"232044_at\"                   \"232571_at\"                  \n",
+       "[47363] \"234369_at\"                   \"232301_at\"                  \n",
+       "[47365] \"235332_at\"                   \"234695_x_at\"                \n",
+       "[47367] \"232942_at\"                   \"232693_s_at\"                \n",
+       "[47369] \"231734_at\"                   \"233122_at\"                  \n",
+       "[47371] \"232693_s_at\"                 \"231310_at\"                  \n",
+       "[47373] \"231396_s_at\"                 \"234657_at\"                  \n",
+       "[47375] \"232036_at\"                   \"234303_s_at\"                \n",
+       "[47377] \"232068_s_at\"                 \"230949_at\"                  \n",
+       "[47379] \"230816_at\"                   \"232972_at\"                  \n",
+       "[47381] \"233311_at\"                   \"232265_at\"                  \n",
+       "[47383] \"231620_at\"                   \"233539_at\"                  \n",
+       "[47385] \"232201_at\"                   \"232940_s_at\"                \n",
+       "[47387] \"230722_at\"                   \"235204_at\"                  \n",
+       "[47389] \"233087_at\"                   \"231649_at\"                  \n",
+       "[47391] \"230595_at\"                   \"231112_at\"                  \n",
+       "[47393] \"234915_s_at\"                 \"231567_s_at\"                \n",
+       "[47395] \"235476_at\"                   \"232092_at\"                  \n",
+       "[47397] \"235079_at\"                   \"230577_at\"                  \n",
+       "[47399] \"232354_at\"                   \"231290_at\"                  \n",
+       "[47401] \"234997_x_at\"                 \"232684_at\"                  \n",
+       "[47403] \"235143_at\"                   \"231487_at\"                  \n",
+       "[47405] \"231117_at\"                   \"233592_at\"                  \n",
+       "[47407] \"235203_at\"                   \"232926_x_at\"                \n",
+       "[47409] \"233562_at\"                   \"231939_s_at\"                \n",
+       "[47411] \"230886_at\"                   \"233048_at\"                  \n",
+       "[47413] \"231708_at\"                   \"232064_at\"                  \n",
+       "[47415] \"235382_at\"                   \"231934_at\"                  \n",
+       "[47417] \"235430_at\"                   \"232001_at\"                  \n",
+       "[47419] \"232426_at\"                   \"235424_at\"                  \n",
+       "[47421] \"235043_at\"                   \"231586_at\"                  \n",
+       "[47423] \"231188_at\"                   \"232140_at\"                  \n",
+       "[47425] \"232182_at\"                   \"232516_x_at\"                \n",
+       "[47427] \"234008_s_at\"                 \"231657_s_at\"                \n",
+       "[47429] \"231971_at\"                   \"234733_s_at\"                \n",
+       "[47431] \"234017_at\"                   \"232000_at\"                  \n",
+       "[47433] \"234983_at\"                   \"230569_at\"                  \n",
+       "[47435] \"230567_at\"                   \"234749_s_at\"                \n",
+       "[47437] \"232425_at\"                   \"235385_at\"                  \n",
+       "[47439] \"234327_at\"                   \"234648_s_at\"                \n",
+       "[47441] \"234648_s_at\"                 \"232878_at\"                  \n",
+       "[47443] \"231557_at\"                   \"231204_at\"                  \n",
+       "[47445] \"230671_at\"                   \"231015_at\"                  \n",
+       "[47447] \"235124_at\"                   \"232752_at\"                  \n",
+       "[47449] \"235274_at\"                   \"235172_at\"                  \n",
+       "[47451] \"231979_at\"                   \"230811_at\"                  \n",
+       "[47453] \"232293_at\"                   \"232417_x_at\"                \n",
+       "[47455] \"235359_at\"                   \"231725_at\"                  \n",
+       "[47457] \"231394_at\"                   \"234307_s_at\"                \n",
+       "[47459] \"232069_at\"                   \"231750_at\"                  \n",
+       "[47461] \"230957_at\"                   \"230860_at\"                  \n",
+       "[47463] \"231738_at\"                   \"232099_at\"                  \n",
+       "[47465] \"235118_at\"                   \"230846_at\"                  \n",
+       "[47467] \"232415_at\"                   \"231726_at\"                  \n",
+       "[47469] \"231789_at\"                   \"232302_at\"                  \n",
+       "[47471] \"234363_at\"                   \"230888_at\"                  \n",
+       "[47473] \"234904_x_at\"                 \"232577_at\"                  \n",
+       "[47475] \"231006_at\"                   \"235374_at\"                  \n",
+       "[47477] \"233106_at\"                   \"233106_at\"                  \n",
+       "[47479] \"233106_at\"                   \"234369_at\"                  \n",
+       "[47481] \"230648_at\"                   \"232040_at\"                  \n",
+       "[47483] \"233492_s_at\"                 \"233493_at\"                  \n",
+       "[47485] \"233788_at\"                   \"233491_at\"                  \n",
+       "[47487] \"231032_at\"                   \"232731_x_at\"                \n",
+       "[47489] \"234421_s_at\"                 \"234519_at\"                  \n",
+       "[47491] \"230817_at\"                   \"231833_at\"                  \n",
+       "[47493] \"233499_at\"                   \"230910_s_at\"                \n",
+       "[47495] \"235390_at\"                   \"235148_at\"                  \n",
+       "[47497] \"233896_s_at\"                 \"235261_at\"                  \n",
+       "[47499] \"235247_at\"                   \"231412_at\"                  \n",
+       "[47501] \"234990_at\"                   \"231862_at\"                  \n",
+       "[47503] \"230752_at\"                   \"231071_at\"                  \n",
+       "[47505] \"231917_at\"                   \"231918_s_at\"                \n",
+       "[47507] \"232326_at\"                   \"235048_at\"                  \n",
+       "[47509] \"233174_at\"                   \"235171_at\"                  \n",
+       "[47511] \"235388_at\"                   \"232884_s_at\"                \n",
+       "[47513] \"231391_at\"                   \"235402_at\"                  \n",
+       "[47515] \"233083_at\"                   \"232321_at\"                  \n",
+       "[47517] \"231503_at\"                   \"235409_at\"                  \n",
+       "[47519] \"232321_at\"                   \"231876_at\"                  \n",
+       "[47521] \"233337_s_at\"                 \"232813_s_at\"                \n",
+       "[47523] \"232813_s_at\"                 \"231365_at\"                  \n",
+       "[47525] \"230666_at\"                   \"230666_at\"                  \n",
+       "[47527] \"230666_at\"                   \"231786_at\"                  \n",
+       "[47529] \"235083_at\"                   \"231706_s_at\"                \n",
+       "[47531] \"230972_at\"                   \"232765_x_at\"                \n",
+       "[47533] \"231592_at\"                   \"235083_at\"                  \n",
+       "[47535] \"230587_at\"                   \"235443_at\"                  \n",
+       "[47537] \"231014_at\"                   \"233963_at\"                  \n",
+       "[47539] \"234899_at\"                   \"233340_at\"                  \n",
+       "[47541] \"233963_at\"                   \"233454_at\"                  \n",
+       "[47543] \"231211_s_at\"                 \"232408_at\"                  \n",
+       "[47545] \"231878_at\"                   \"234972_at\"                  \n",
+       "[47547] \"235113_at\"                   \"233226_at\"                  \n",
+       "[47549] \"234680_at\"                   \"230856_at\"                  \n",
+       "[47551] \"235243_at\"                   \"232826_at\"                  \n",
+       "[47553] \"232085_at\"                   \"234321_x_at\"                \n",
+       "[47555] \"234922_s_at\"                 \"231947_at\"                  \n",
+       "[47557] \"230896_at\"                   \"232687_at\"                  \n",
+       "[47559] \"232738_at\"                   \"230804_at\"                  \n",
+       "[47561] \"234992_x_at\"                 \"231783_at\"                  \n",
+       "[47563] \"235062_at\"                   \"234459_at\"                  \n",
+       "[47565] \"232898_at\"                   \"231795_at\"                  \n",
+       "[47567] \"231911_at\"                   \"233438_at\"                  \n",
+       "[47569] \"233438_at\"                   \"235463_s_at\"                \n",
+       "[47571] \"233787_at\"                   \"233632_s_at\"                \n",
+       "[47573] \"231948_s_at\"                 \"231867_at\"                  \n",
+       "[47575] \"232018_at\"                   \"232901_at\"                  \n",
+       "[47577] \"232902_s_at\"                 \"231814_at\"                  \n",
+       "[47579] \"235236_at\"                   \"233929_x_at\"                \n",
+       "[47581] \"233929_x_at\"                 \"231309_at\"                  \n",
+       "[47583] \"235027_at\"                   \"232045_at\"                  \n",
+       "[47585] \"235114_x_at\"                 \"235306_at\"                  \n",
+       "[47587] \"234456_at\"                   \"231989_s_at\"                \n",
+       "[47589] \"231230_at\"                   \"232208_at\"                  \n",
+       "[47591] \"231292_at\"                   \"235445_at\"                  \n",
+       "[47593] \"231664_at\"                   \"235006_at\"                  \n",
+       "[47595] \"232160_s_at\"                 \"233054_at\"                  \n",
+       "[47597] \"231196_x_at\"                 \"232432_s_at\"                \n",
+       "[47599] \"234701_at\"                   \"231999_at\"                  \n",
+       "[47601] \"230736_at\"                   \"230737_s_at\"                \n",
+       "[47603] \"231272_at\"                   \"231176_at\"                  \n",
+       "[47605] \"234577_at\"                   \"231868_at\"                  \n",
+       "[47607] \"230794_at\"                   \"232771_at\"                  \n",
+       "[47609] \"234873_x_at\"                 \"232172_at\"                  \n",
+       "[47611] \"234403_at\"                   \"235416_at\"                  \n",
+       "[47613] \"232309_at\"                   \"234818_at\"                  \n",
+       "[47615] \"231318_at\"                   \"231385_at\"                  \n",
+       "[47617] \"231385_at\"                   \"232380_at\"                  \n",
+       "[47619] \"231400_s_at\"                 \"232078_at\"                  \n",
+       "[47621] \"232079_s_at\"                 \"232996_at\"                  \n",
+       "[47623] \"233399_x_at\"                 \"232734_at\"                  \n",
+       "[47625] \"234620_at\"                   \"235026_at\"                  \n",
+       "[47627] \"231835_at\"                   \"231562_at\"                  \n",
+       "[47629] \"233825_s_at\"                 \"235034_at\"                  \n",
+       "[47631] \"230900_at\"                   \"232753_at\"                  \n",
+       "[47633] \"234299_s_at\"                 \"231375_at\"                  \n",
+       "[47635] \"232398_at\"                   \"231352_at\"                  \n",
+       "[47637] \"234488_s_at\"                 \"232784_at\"                  \n",
+       "[47639] \"234140_s_at\"                 \"231625_at\"                  \n",
+       "[47641] \"232131_at\"                   \"230612_at\"                  \n",
+       "[47643] \"233242_at\"                   \"232488_at\"                  \n",
+       "[47645] \"231355_at\"                   \"234756_at\"                  \n",
+       "[47647] \"234756_at\"                   \"232053_x_at\"                \n",
+       "[47649] \"235458_at\"                   \"233982_x_at\"                \n",
+       "[47651] \"232353_s_at\"                 \"235329_at\"                  \n",
+       "[47653] \"232075_at\"                   \"234066_at\"                  \n",
+       "[47655] \"234696_at\"                   \"231950_at\"                  \n",
+       "[47657] \"231950_at\"                   \"230815_at\"                  \n",
+       "[47659] \"230815_at\"                   \"231524_at\"                  \n",
+       "[47661] \"232926_x_at\"                 \"232367_x_at\"                \n",
+       "[47663] \"230723_at\"                   \"231603_at\"                  \n",
+       "[47665] \"232868_at\"                   \"235181_at\"                  \n",
+       "[47667] \"231262_at\"                   \"234247_at\"                  \n",
+       "[47669] \"235428_at\"                   \"232162_at\"                  \n",
+       "[47671] \"233324_at\"                   \"232224_at\"                  \n",
+       "[47673] \"235399_at\"                   \"232484_at\"                  \n",
+       "[47675] \"233264_at\"                   \"232386_at\"                  \n",
+       "[47677] \"235023_at\"                   \"233169_at\"                  \n",
+       "[47679] \"232073_at\"                   \"234982_at\"                  \n",
+       "[47681] \"235478_at\"                   \"231408_at\"                  \n",
+       "[47683] \"235245_at\"                   \"231077_at\"                  \n",
+       "[47685] \"234144_at\"                   \"234464_s_at\"                \n",
+       "[47687] \"234465_at\"                   \"234812_at\"                  \n",
+       "[47689] \"231808_at\"                   \"232227_at\"                  \n",
+       "[47691] \"233575_s_at\"                 \"232585_at\"                  \n",
+       "[47693] \"231120_x_at\"                 \"234777_at\"                  \n",
+       "[47695] \"231263_at\"                   \"234521_at\"                  \n",
+       "[47697] \"231469_at\"                   \"230930_at\"                  \n",
+       "[47699] \"230943_at\"                   \"231961_at\"                  \n",
+       "[47701] \"231264_at\"                   \"235331_x_at\"                \n",
+       "[47703] \"231009_at\"                   \"235239_at\"                  \n",
+       "[47705] \"231986_at\"                   \"235253_at\"                  \n",
+       "[47707] \"231334_at\"                   \"230876_at\"                  \n",
+       "[47709] \"230876_at\"                   \"231772_x_at\"                \n",
+       "[47711] \"231791_at\"                   \"231740_at\"                  \n",
+       "[47713] \"232936_at\"                   \"232946_s_at\"                \n",
+       "[47715] \"235009_at\"                   \"230647_at\"                  \n",
+       "[47717] \"232554_at\"                   \"232387_at\"                  \n",
+       "[47719] \"232981_s_at\"                 \"232982_at\"                  \n",
+       "[47721] \"230524_at\"                   \"231153_at\"                  \n",
+       "[47723] \"231196_x_at\"                 \"235109_at\"                  \n",
+       "[47725] \"232446_at\"                   \"235408_x_at\"                \n",
+       "[47727] \"235408_x_at\"                 \"230806_s_at\"                \n",
+       "[47729] \"233325_at\"                   \"231437_at\"                  \n",
+       "[47731] \"235365_at\"                   \"230781_at\"                  \n",
+       "[47733] \"235115_at\"                   \"233919_s_at\"                \n",
+       "[47735] \"232341_x_at\"                 \"230887_at\"                  \n",
+       "[47737] \"232813_s_at\"                 \"233746_x_at\"                \n",
+       "[47739] \"235447_at\"                   \"234782_at\"                  \n",
+       "[47741] \"232217_at\"                   \"231618_s_at\"                \n",
+       "[47743] \"234939_s_at\"                 \"231815_at\"                  \n",
+       "[47745] \"231061_at\"                   \"234294_x_at\"                \n",
+       "[47747] \"230991_at\"                   \"233071_at\"                  \n",
+       "[47749] \"235414_at\"                   \"235086_at\"                  \n",
+       "[47751] \"231796_at\"                   \"232329_at\"                  \n",
+       "[47753] \"234611_at\"                   \"232414_at\"                  \n",
+       "[47755] \"235318_at\"                   \"233405_at\"                  \n",
+       "[47757] \"231488_at\"                   \"235395_at\"                  \n",
+       "[47759] \"233461_x_at\"                 \"231717_s_at\"                \n",
+       "[47761] \"231045_x_at\"                 \"230697_at\"                  \n",
+       "[47763] \"232142_at\"                   \"230697_at\"                  \n",
+       "[47765] \"232986_at\"                   \"230919_at\"                  \n",
+       "[47767] \"233687_s_at\"                 \"233541_at\"                  \n",
+       "[47769] \"231739_at\"                   \"231739_at\"                  \n",
+       "[47771] \"233955_x_at\"                 \"234316_x_at\"                \n",
+       "[47773] \"233586_s_at\"                 \"231114_at\"                  \n",
+       "[47775] \"235340_at\"                   \"233591_at\"                  \n",
+       "[47777] \"233485_at\"                   \"232389_at\"                  \n",
+       "[47779] \"230948_at\"                   \"231954_at\"                  \n",
+       "[47781] \"231162_at\"                   \"233022_at\"                  \n",
+       "[47783] \"230692_at\"                   \"232153_at\"                  \n",
+       "[47785] \"235120_at\"                   \"232263_at\"                  \n",
+       "[47787] \"232780_s_at\"                 \"233899_x_at\"                \n",
+       "[47789] \"235466_s_at\"                 \"231784_s_at\"                \n",
+       "[47791] \"234967_at\"                   \"231501_at\"                  \n",
+       "[47793] \"231886_at\"                   \"232494_at\"                  \n",
+       "[47795] \"234338_s_at\"                 \"231525_at\"                  \n",
+       "[47797] \"234292_s_at\"                 \"231828_at\"                  \n",
+       "[47799] \"233070_at\"                   \"233070_at\"                  \n",
+       "[47801] \"232666_at\"                   \"230715_at\"                  \n",
+       "[47803] \"230531_at\"                   \"235032_at\"                  \n",
+       "[47805] \"230893_at\"                   \"234094_x_at\"                \n",
+       "[47807] \"235001_at\"                   \"233245_at\"                  \n",
+       "[47809] \"233304_at\"                   \"231434_at\"                  \n",
+       "[47811] \"231434_at\"                   \"232739_at\"                  \n",
+       "[47813] \"231922_at\"                   \"232102_at\"                  \n",
+       "[47815] \"235379_at\"                   \"232866_at\"                  \n",
+       "[47817] \"232676_x_at\"                 \"230981_at\"                  \n",
+       "[47819] \"233525_s_at\"                 \"233524_at\"                  \n",
+       "[47821] \"234696_at\"                   \"231372_at\"                  \n",
+       "[47823] \"233860_s_at\"                 \"234722_x_at\"                \n",
+       "[47825] \"232649_at\"                   \"233978_at\"                  \n",
+       "[47827] \"232532_at\"                   \"235198_at\"                  \n",
+       "[47829] \"235197_s_at\"                 \"235488_at\"                  \n",
+       "[47831] \"231338_at\"                   \"232502_at\"                  \n",
+       "[47833] \"234049_at\"                   \"235085_at\"                  \n",
+       "[47835] \"230589_at\"                   \"233486_at\"                  \n",
+       "[47837] \"232964_at\"                   \"232964_at\"                  \n",
+       "[47839] \"232964_at\"                   \"232964_at\"                  \n",
+       "[47841] \"232964_at\"                   \"231580_at\"                  \n",
+       "[47843] \"234408_at\"                   \"232657_at\"                  \n",
+       "[47845] \"231852_at\"                   \"232674_at\"                  \n",
+       "[47847] \"231777_at\"                   \"234976_x_at\"                \n",
+       "[47849] \"234361_at\"                   \"234409_at\"                  \n",
+       "[47851] \"233764_s_at\"                 \"231824_at\"                  \n",
+       "[47853] \"233179_x_at\"                 \"232033_at\"                  \n",
+       "[47855] \"233006_at\"                   \"232482_at\"                  \n",
+       "[47857] \"233568_x_at\"                 \"231072_at\"                  \n",
+       "[47859] \"232674_at\"                   \"230622_at\"                  \n",
+       "[47861] \"234627_at\"                   \"232230_at\"                  \n",
+       "[47863] \"233098_s_at\"                 \"233481_at\"                  \n",
+       "[47865] \"232178_at\"                   \"232178_at\"                  \n",
+       "[47867] \"235440_at\"                   \"231639_at\"                  \n",
+       "[47869] \"231989_s_at\"                 \"230610_at\"                  \n",
+       "[47871] \"233058_at\"                   \"231516_at\"                  \n",
+       "[47873] \"230979_at\"                   \"232697_at\"                  \n",
+       "[47875] \"231161_x_at\"                 \"233763_at\"                  \n",
+       "[47877] \"231806_s_at\"                 \"234005_x_at\"                \n",
+       "[47879] \"234854_at\"                   \"235186_at\"                  \n",
+       "[47881] \"235185_s_at\"                 \"233049_x_at\"                \n",
+       "[47883] \"232492_at\"                   \"233314_at\"                  \n",
+       "[47885] \"230924_at\"                   \"231311_at\"                  \n",
+       "[47887] \"234234_at\"                   \"232270_at\"                  \n",
+       "[47889] \"232975_at\"                   \"231657_s_at\"                \n",
+       "[47891] \"232959_at\"                   \"230608_at\"                  \n",
+       "[47893] \"231854_at\"                   \"235060_at\"                  \n",
+       "[47895] \"235167_at\"                   \"234706_x_at\"                \n",
+       "[47897] \"232136_s_at\"                 \"230907_at\"                  \n",
+       "[47899] \"231406_at\"                   \"235459_at\"                  \n",
+       "[47901] \"232335_at\"                   \"233062_at\"                  \n",
+       "[47903] \"233063_s_at\"                 \"231466_at\"                  \n",
+       "[47905] \"231667_at\"                   \"233995_at\"                  \n",
+       "[47907] \"231166_at\"                   \"230917_at\"                  \n",
+       "[47909] \"233885_at\"                   \"230917_at\"                  \n",
+       "[47911] \"233681_at\"                   \"233534_at\"                  \n",
+       "[47913] \"233537_at\"                   \"233533_at\"                  \n",
+       "[47915] \"234880_x_at\"                 \"234633_at\"                  \n",
+       "[47917] \"234637_at\"                   \"234684_s_at\"                \n",
+       "[47919] \"232005_at\"                   \"233124_s_at\"                \n",
+       "[47921] \"232147_at\"                   \"230854_at\"                  \n",
+       "[47923] \"235381_at\"                   \"230550_at\"                  \n",
+       "[47925] \"232725_s_at\"                 \"232724_at\"                  \n",
+       "[47927] \"232317_at\"                   \"234859_at\"                  \n",
+       "[47929] \"234975_at\"                   \"231700_at\"                  \n",
+       "[47931] \"230882_at\"                   \"231044_at\"                  \n",
+       "[47933] \"235354_s_at\"                 \"231571_at\"                  \n",
+       "[47935] \"230938_x_at\"                 \"233050_at\"                  \n",
+       "[47937] \"231021_at\"                   \"231480_at\"                  \n",
+       "[47939] \"231232_at\"                   \"234766_at\"                  \n",
+       "[47941] \"235432_at\"                   \"235410_at\"                  \n",
+       "[47943] \"234626_at\"                   \"234486_at\"                  \n",
+       "[47945] \"231297_at\"                   \"230871_at\"                  \n",
+       "[47947] \"233050_at\"                   \"233191_at\"                  \n",
+       "[47949] \"233192_s_at\"                 \"235345_at\"                  \n",
+       "[47951] \"232027_at\"                   \"234284_at\"                  \n",
+       "[47953] \"232650_at\"                   \"232603_at\"                  \n",
+       "[47955] \"235207_at\"                   \"232964_at\"                  \n",
+       "[47957] \"233743_x_at\"                 \"235467_s_at\"                \n",
+       "[47959] \"231810_at\"                   \"235335_at\"                  \n",
+       "[47961] \"234760_at\"                   \"234760_at\"                  \n",
+       "[47963] \"234862_at\"                   \"234862_at\"                  \n",
+       "[47965] \"233959_at\"                   \"234237_s_at\"                \n",
+       "[47967] \"234236_at\"                   \"233475_at\"                  \n",
+       "[47969] \"231997_at\"                   \"235291_s_at\"                \n",
+       "[47971] \"235292_at\"                   \"231989_s_at\"                \n",
+       "[47973] \"235167_at\"                   \"235060_at\"                  \n",
+       "[47975] \"232645_at\"                   \"230517_at\"                  \n",
+       "[47977] \"231626_at\"                   \"231335_at\"                  \n",
+       "[47979] \"232239_at\"                   \"233522_at\"                  \n",
+       "[47981] \"232042_at\"                   \"232964_at\"                  \n",
+       "[47983] \"234687_x_at\"                 \"235481_at\"                  \n",
+       "[47985] \"233091_at\"                   \"230672_at\"                  \n",
+       "[47987] \"231046_at\"                   \"234027_at\"                  \n",
+       "[47989] \"231653_at\"                   \"230685_at\"                  \n",
+       "[47991] \"232832_at\"                   \"233186_s_at\"                \n",
+       "[47993] \"235406_x_at\"                 \"232098_at\"                  \n",
+       "[47995] \"235468_at\"                   \"231781_s_at\"                \n",
+       "[47997] \"235286_at\"                   \"230761_at\"                  \n",
+       "[47999] \"232154_at\"                   \"231148_at\"                  \n",
+       "[48001] \"234886_at\"                   \"234865_at\"                  \n",
+       "[48003] \"230642_at\"                   \"231599_x_at\"                \n",
+       "[48005] \"230548_at\"                   \"230591_at\"                  \n",
+       "[48007] \"234379_at\"                   \"234280_at\"                  \n",
+       "[48009] \"231221_at\"                   \"231885_at\"                  \n",
+       "[48011] \"232029_at\"                   \"234369_at\"                  \n",
+       "[48013] \"231593_at\"                   \"233915_at\"                  \n",
+       "[48015] \"231994_at\"                   \"232262_at\"                  \n",
+       "[48017] \"232019_at\"                   \"233334_x_at\"                \n",
+       "[48019] \"233334_x_at\"                 \"234691_at\"                  \n",
+       "[48021] \"234631_at\"                   \"231455_at\"                  \n",
+       "[48023] \"230596_at\"                   \"232876_at\"                  \n",
+       "[48025] \"233895_at\"                   \"231403_at\"                  \n",
+       "[48027] \"231496_at\"                   \"233781_s_at\"                \n",
+       "[48029] \"233780_at\"                   \"230756_at\"                  \n",
+       "[48031] \"232521_at\"                   \"234702_x_at\"                \n",
+       "[48033] \"230995_at\"                   \"230716_at\"                  \n",
+       "[48035] \"232207_at\"                   \"234724_x_at\"                \n",
+       "[48037] \"234724_x_at\"                 \"232309_at\"                  \n",
+       "[48039] \"231746_at\"                   \"234297_at\"                  \n",
+       "[48041] \"231886_at\"                   \"232953_at\"                  \n",
+       "[48043] \"233353_at\"                   \"230596_at\"                  \n",
+       "[48045] \"233515_at\"                   \"231793_s_at\"                \n",
+       "[48047] \"231535_x_at\"                 \"233203_at\"                  \n",
+       "[48049] \"232309_at\"                   \"235464_at\"                  \n",
+       "[48051] \"235464_at\"                   \"230748_at\"                  \n",
+       "[48053] \"232228_at\"                   \"235397_at\"                  \n",
+       "[48055] \"231983_at\"                   \"232266_x_at\"                \n",
+       "[48057] \"235070_at\"                   \"234457_at\"                  \n",
+       "[48059] \"234097_s_at\"                 \"233645_s_at\"                \n",
+       "[48061] \"233795_at\"                   \"232604_at\"                  \n",
+       "[48063] \"231420_at\"                   \"233693_at\"                  \n",
+       "[48065] \"231045_x_at\"                 \"232313_at\"                  \n",
+       "[48067] \"231600_at\"                   \"231357_at\"                  \n",
+       "[48069] \"233732_at\"                   \"231989_s_at\"                \n",
+       "[48071] \"231019_x_at\"                 \"232485_at\"                  \n",
+       "[48073] \"230931_at\"                   \"231402_at\"                  \n",
+       "[48075] \"235407_at\"                   \"232950_s_at\"                \n",
+       "[48077] \"231782_s_at\"                 \"233854_x_at\"                \n",
+       "[48079] \"231989_s_at\"                 \"231989_s_at\"                \n",
+       "[48081] \"233687_s_at\"                 \"230552_at\"                  \n",
+       "[48083] \"231989_s_at\"                 \"233142_at\"                  \n",
+       "[48085] \"231989_s_at\"                 \"231989_s_at\"                \n",
+       "[48087] \"235299_at\"                   \"230952_at\"                  \n",
+       "[48089] \"231989_s_at\"                 \"232089_at\"                  \n",
+       "[48091] \"231410_at\"                   \"230721_at\"                  \n",
+       "[48093] \"232184_at\"                   \"231989_s_at\"                \n",
+       "[48095] \"231935_at\"                   \"230921_s_at\"                \n",
+       "[48097] \"231996_at\"                   \"233310_at\"                  \n",
+       "[48099] \"231813_s_at\"                 \"231989_s_at\"                \n",
+       "[48101] \"235160_at\"                   \"232732_at\"                  \n",
+       "[48103] \"231768_at\"                   \"230559_x_at\"                \n",
+       "[48105] \"235201_at\"                   \"235384_at\"                  \n",
+       "[48107] \"231761_at\"                   \"230754_at\"                  \n",
+       "[48109] \"235470_at\"                   \"231834_at\"                  \n",
+       "[48111] \"235227_at\"                   \"233720_at\"                  \n",
+       "[48113] \"233368_s_at\"                 \"233687_s_at\"                \n",
+       "[48115] \"230727_at\"                   \"232038_at\"                  \n",
+       "[48117] \"232107_at\"                   \"230619_at\"                  \n",
+       "[48119] \"235046_at\"                   \"233782_at\"                  \n",
+       "[48121] \"233477_at\"                   \"234495_at\"                  \n",
+       "[48123] \"232510_s_at\"                 \"232737_s_at\"                \n",
+       "[48125] \"231638_at\"                   \"231638_at\"                  \n",
+       "[48127] \"231785_at\"                   \"231951_at\"                  \n",
+       "[48129] \"230696_at\"                   \"232545_at\"                  \n",
+       "[48131] \"232485_at\"                   \"230788_at\"                  \n",
+       "[48133] \"232815_at\"                   \"231963_at\"                  \n",
+       "[48135] \"234936_s_at\"                 \"233052_at\"                  \n",
+       "[48137] \"233085_s_at\"                 \"235040_at\"                  \n",
+       "[48139] \"234682_at\"                   \"235248_at\"                  \n",
+       "[48141] \"231825_x_at\"                 \"230931_at\"                  \n",
+       "[48143] \"235104_at\"                   \"231319_x_at\"                \n",
+       "[48145] \"231799_at\"                   \"231419_at\"                  \n",
+       "[48147] \"231419_at\"                   \"231866_at\"                  \n",
+       "[48149] \"232066_x_at\"                 \"234661_at\"                  \n",
+       "[48151] \"230865_at\"                   \"230670_at\"                  \n",
+       "[48153] \"231974_at\"                   \"233712_at\"                  \n",
+       "[48155] \"231886_at\"                   \"232096_x_at\"                \n",
+       "[48157] \"233657_at\"                   \"231189_at\"                  \n",
+       "[48159] \"235263_at\"                   \"232139_s_at\"                \n",
+       "[48161] \"232772_at\"                   \"235263_at\"                  \n",
+       "[48163] \"235263_at\"                   \"235263_at\"                  \n",
+       "[48165] \"233471_at\"                   \"233864_s_at\"                \n",
+       "[48167] \"235444_at\"                   \"235263_at\"                  \n",
+       "[48169] \"233517_s_at\"                 \"231720_s_at\"                \n",
+       "[48171] \"231721_at\"                   \"233864_s_at\"                \n",
+       "[48173] \"232863_at\"                   \"232863_at\"                  \n",
+       "[48175] \"232863_at\"                   \"232204_at\"                  \n",
+       "[48177] \"231916_at\"                   \"230853_at\"                  \n",
+       "[48179] \"234721_s_at\"                 \"230840_at\"                  \n",
+       "[48181] \"235423_at\"                   \"235233_s_at\"                \n",
+       "[48183] \"230613_at\"                   \"235232_at\"                  \n",
+       "[48185] \"231254_at\"                   \"234127_at\"                  \n",
+       "[48187] \"233462_at\"                   \"231751_at\"                  \n",
+       "[48189] \"235217_at\"                   \"231314_at\"                  \n",
+       "[48191] \"231565_at\"                   \"231646_at\"                  \n",
+       "[48193] \"232950_s_at\"                 \"232409_x_at\"                \n",
+       "[48195] \"231179_at\"                   \"231651_at\"                  \n",
+       "[48197] \"231336_at\"                   \"234256_at\"                  \n",
+       "[48199] \"235280_at\"                   \"232642_at\"                  \n",
+       "[48201] \"231678_s_at\"                 \"231989_s_at\"                \n",
+       "[48203] \"235167_at\"                   \"231266_at\"                  \n",
+       "[48205] \"233342_at\"                   \"235259_at\"                  \n",
+       "[48207] \"235260_s_at\"                 \"234488_s_at\"                \n",
+       "[48209] \"231987_at\"                   \"231845_at\"                  \n",
+       "[48211] \"235135_at\"                   \"231921_at\"                  \n",
+       "[48213] \"233490_at\"                   \"234664_at\"                  \n",
+       "[48215] \"235361_at\"                   \"233134_at\"                  \n",
+       "[48217] \"233110_s_at\"                 \"231582_at\"                  \n",
+       "[48219] \"231742_at\"                   \"232152_at\"                  \n",
+       "[48221] \"233914_s_at\"                 \"232617_at\"                  \n",
+       "[48223] \"232861_at\"                   \"235039_x_at\"                \n",
+       "[48225] \"232100_at\"                   \"230956_at\"                  \n",
+       "[48227] \"235263_at\"                   \"231577_s_at\"                \n",
+       "[48229] \"232869_at\"                   \"231906_at\"                  \n",
+       "[48231] \"230965_at\"                   \"235175_at\"                  \n",
+       "[48233] \"233992_x_at\"                 \"231235_at\"                  \n",
+       "[48235] \"235377_at\"                   \"235377_at\"                  \n",
+       "[48237] \"230669_at\"                   \"231246_at\"                  \n",
+       "[48239] \"235041_at\"                   \"232530_at\"                  \n",
+       "[48241] \"231136_at\"                   \"231136_at\"                  \n",
+       "[48243] \"231700_at\"                   \"230923_at\"                  \n",
+       "[48245] \"233135_at\"                   \"234678_at\"                  \n",
+       "[48247] \"234671_at\"                   \"234635_at\"                  \n",
+       "[48249] \"233631_x_at\"                 \"234679_at\"                  \n",
+       "[48251] \"233631_x_at\"                 \"233640_x_at\"                \n",
+       "[48253] \"235297_at\"                   \"233573_s_at\"                \n",
+       "[48255] \"234444_at\"                   \"231978_at\"                  \n",
+       "[48257] \"232015_at\"                   \"235386_at\"                  \n",
+       "[48259] \"231855_at\"                   \"232969_at\"                  \n",
+       "[48261] \"231978_at\"                   \"231371_at\"                  \n",
+       "[48263] \"231816_s_at\"                 \"234393_at\"                  \n",
+       "[48265] \"230968_at\"                   \"231404_at\"                  \n",
+       "[48267] \"232802_at\"                   \"230969_at\"                  \n",
+       "[48269] \"235163_at\"                   \"233320_at\"                  \n",
+       "[48271] \"235372_at\"                   \"235401_s_at\"                \n",
+       "[48273] \"235400_at\"                   \"230901_x_at\"                \n",
+       "[48275] \"232114_at\"                   \"231243_s_at\"                \n",
+       "[48277] \"231242_at\"                   \"231478_at\"                  \n",
+       "[48279] \"231927_at\"                   \"233333_x_at\"                \n",
+       "[48281] \"233500_x_at\"                 \"232863_at\"                  \n",
+       "[48283] \"233936_s_at\"                 \"233937_at\"                  \n",
+       "[48285] \"235047_x_at\"                 \"233363_at\"                  \n",
+       "[48287] \"232709_at\"                   \"232914_s_at\"                \n",
+       "[48289] \"231929_at\"                   \"230526_at\"                  \n",
+       "[48291] \"231543_at\"                   \"232212_at\"                  \n",
+       "[48293] \"233943_x_at\"                 \"232238_at\"                  \n",
+       "[48295] \"232654_s_at\"                 \"235375_x_at\"                \n",
+       "[48297] \"235078_at\"                   \"233144_s_at\"                \n",
+       "[48299] \"231560_at\"                   \"232533_at\"                  \n",
+       "[48301] \"235011_at\"                   \"235254_at\"                  \n",
+       "[48303] \"233342_at\"                   \"233350_s_at\"                \n",
+       "[48305] \"234999_at\"                   \"230805_at\"                  \n",
+       "[48307] \"230980_x_at\"                 \"230867_at\"                  \n",
+       "[48309] \"231874_at\"                   \"232124_at\"                  \n",
+       "[48311] \"235322_at\"                   \"235267_at\"                  \n",
+       "[48313] \"233149_at\"                   \"234759_at\"                  \n",
+       "[48315] \"235161_at\"                   \"232899_at\"                  \n",
+       "[48317] \"235373_at\"                   \"235191_at\"                  \n",
+       "[48319] \"232281_at\"                   \"234683_at\"                  \n",
+       "[48321] \"234685_x_at\"                 \"234781_at\"                  \n",
+       "[48323] \"234772_s_at\"                 \"230552_at\"                  \n",
+       "[48325] \"231895_at\"                   \"231919_at\"                  \n",
+       "[48327] \"235220_at\"                   \"233467_s_at\"                \n",
+       "[48329] \"232612_s_at\"                 \"230849_at\"                  \n",
+       "[48331] \"233217_at\"                   \"233888_s_at\"                \n",
+       "[48333] \"232137_at\"                   \"231798_at\"                  \n",
+       "[48335] \"232289_at\"                   \"232315_at\"                  \n",
+       "[48337] \"230742_at\"                   \"235244_at\"                  \n",
+       "[48339] \"230973_at\"                   \"232462_s_at\"                \n",
+       "[48341] \"230857_s_at\"                 \"234948_at\"                  \n",
+       "[48343] \"231873_at\"                   \"234955_at\"                  \n",
+       "[48345] \"231687_at\"                   \"232497_at\"                  \n",
+       "[48347] \"231957_s_at\"                 \"232859_s_at\"                \n",
+       "[48349] \"231849_at\"                   \"232977_x_at\"                \n",
+       "[48351] \"234290_x_at\"                 \"233029_at\"                  \n",
+       "[48353] \"233158_at\"                   \"231535_x_at\"                \n",
+       "[48355] \"233203_at\"                   \"231461_at\"                  \n",
+       "[48357] \"231583_at\"                   \"231299_at\"                  \n",
+       "[48359] \"233150_at\"                   \"230738_at\"                  \n",
+       "[48361] \"231027_at\"                   \"234470_at\"                  \n",
+       "[48363] \"232240_at\"                   \"234068_s_at\"                \n",
+       "[48365] \"233016_at\"                   \"231539_at\"                  \n",
+       "[48367] \"235094_at\"                   \"232250_at\"                  \n",
+       "[48369] \"230698_at\"                   \"232399_at\"                  \n",
+       "[48371] \"233193_x_at\"                 \"232985_s_at\"                \n",
+       "[48373] \"231886_at\"                   \"231886_at\"                  \n",
+       "[48375] \"232616_at\"                   \"232616_at\"                  \n",
+       "[48377] \"235121_at\"                   \"235121_at\"                  \n",
+       "[48379] \"234652_at\"                   \"232686_at\"                  \n",
+       "[48381] \"235427_at\"                   \"231691_at\"                  \n",
+       "[48383] \"231837_at\"                   \"230623_x_at\"                \n",
+       "[48385] \"231691_at\"                   \"233748_x_at\"                \n",
+       "[48387] \"234410_at\"                   \"235073_at\"                  \n",
+       "[48389] \"230634_x_at\"                 \"235150_at\"                  \n",
+       "[48391] \"232327_at\"                   \"235358_at\"                  \n",
+       "[48393] \"232249_at\"                   \"230640_at\"                  \n",
+       "[48395] \"233938_at\"                   \"231785_at\"                  \n",
+       "[48397] \"231886_at\"                   \"235108_at\"                  \n",
+       "[48399] \"231936_at\"                   \"235272_at\"                  \n",
+       "[48401] \"232169_x_at\"                 \"232667_at\"                  \n",
+       "[48403] \"232169_x_at\"                 \"230839_at\"                  \n",
+       "[48405] \"233966_at\"                   \"231735_s_at\"                \n",
+       "[48407] \"233067_at\"                   \"233947_s_at\"                \n",
+       "[48409] \"230579_at\"                   \"230810_at\"                  \n",
+       "[48411] \"232971_at\"                   \"232586_x_at\"                \n",
+       "[48413] \"235014_at\"                   \"234775_at\"                  \n",
+       "[48415] \"234989_at\"                   \"230629_s_at\"                \n",
+       "[48417] \"230628_at\"                   \"235042_at\"                  \n",
+       "[48419] \"235383_at\"                   \"231002_s_at\"                \n",
+       "[48421] \"233157_x_at\"                 \"232816_s_at\"                \n",
+       "[48423] \"235134_at\"                   \"230999_at\"                  \n",
+       "[48425] \"230611_at\"                   \"232391_at\"                  \n",
+       "[48427] \"232563_at\"                   \"232133_at\"                  \n",
+       "[48429] \"233848_x_at\"                 \"235151_at\"                  \n",
+       "[48431] \"231453_at\"                   \"232206_at\"                  \n",
+       "[48433] \"231149_s_at\"                 \"231857_s_at\"                \n",
+       "[48435] \"233066_at\"                   \"235474_at\"                  \n",
+       "[48437] \"231306_at\"                   \"233095_at\"                  \n",
+       "[48439] \"233184_at\"                   \"232093_at\"                  \n",
+       "[48441] \"233095_at\"                   \"235317_at\"                  \n",
+       "[48443] \"233527_at\"                   \"234223_at\"                  \n",
+       "[48445] \"233669_s_at\"                 \"235455_at\"                  \n",
+       "[48447] \"235455_at\"                   \"232953_at\"                  \n",
+       "[48449] \"234664_at\"                   \"235142_at\"                  \n",
+       "[48451] \"232611_at\"                   \"233198_at\"                  \n",
+       "[48453] \"231229_at\"                   \"231038_s_at\"                \n",
+       "[48455] \"235294_at\"                   \"230812_at\"                  \n",
+       "[48457] \"230858_at\"                   \"230812_at\"                  \n",
+       "[48459] \"230858_at\"                   \"232323_s_at\"                \n",
+       "[48461] \"232646_at\"                   \"232953_at\"                  \n",
+       "[48463] \"231886_at\"                   \"231656_x_at\"                \n",
+       "[48465] \"234664_at\"                   \"231017_at\"                  \n",
+       "[48467] \"233472_at\"                   \"230805_at\"                  \n",
+       "[48469] \"230980_x_at\"                 \"231832_at\"                  \n",
+       "[48471] \"231832_at\"                   \"230941_at\"                  \n",
+       "[48473] \"235486_at\"                   \"231964_at\"                  \n",
+       "[48475] \"234784_at\"                   \"231049_at\"                  \n",
+       "[48477] \"233031_at\"                   \"232490_s_at\"                \n",
+       "[48479] \"233605_x_at\"                 \"232816_s_at\"                \n",
+       "[48481] \"230602_at\"                   \"235321_at\"                  \n",
+       "[48483] \"231836_at\"                   \"231261_at\"                  \n",
+       "[48485] \"234353_at\"                   \"232296_s_at\"                \n",
+       "[48487] \"232295_at\"                   \"234475_x_at\"                \n",
+       "[48489] \"232799_at\"                   \"235184_at\"                  \n",
+       "[48491] \"231765_at\"                   \"233040_at\"                  \n",
+       "[48493] \"233506_at\"                   \"233326_at\"                  \n",
+       "[48495] \"235169_at\"                   \"233326_at\"                  \n",
+       "[48497] \"231701_s_at\"                 \"230557_at\"                  \n",
+       "[48499] \"235179_at\"                   \"235398_at\"                  \n",
+       "[48501] \"235398_at\"                   \"233175_at\"                  \n",
+       "[48503] \"232547_at\"                   \"232578_at\"                  \n",
+       "[48505] \"235487_at\"                   \"233918_at\"                  \n",
+       "[48507] \"234295_at\"                   \"232039_at\"                  \n",
+       "[48509] \"233357_at\"                   \"235010_at\"                  \n",
+       "[48511] \"235415_at\"                   \"234394_at\"                  \n",
+       "[48513] \"233177_s_at\"                 \"230751_at\"                  \n",
+       "[48515] \"234873_x_at\"                 \"233117_at\"                  \n",
+       "[48517] \"235439_at\"                   \"235343_at\"                  \n",
+       "[48519] \"232065_x_at\"                 \"232418_at\"                  \n",
+       "[48521] \"232702_at\"                   \"232145_at\"                  \n",
+       "[48523] \"235117_at\"                   \"231767_at\"                  \n",
+       "[48525] \"230743_at\"                   \"231767_at\"                  \n",
+       "[48527] \"232979_at\"                   \"231250_at\"                  \n",
+       "[48529] \"234763_at\"                   \"234313_at\"                  \n",
+       "[48531] \"235413_at\"                   \"230928_at\"                  \n",
+       "[48533] \"231640_at\"                   \"231130_at\"                  \n",
+       "[48535] \"231712_at\"                   \"232320_at\"                  \n",
+       "[48537] \"235166_at\"                   \"230821_at\"                  \n",
+       "[48539] \"235352_at\"                   \"232362_at\"                  \n",
+       "[48541] \"231941_s_at\"                 \"235320_at\"                  \n",
+       "[48543] \"231865_at\"                   \"231381_at\"                  \n",
+       "[48545] \"234979_at\"                   \"232082_x_at\"                \n",
+       "[48547] \"230935_at\"                   \"234250_at\"                  \n",
+       "[48549] \"231471_at\"                   \"233483_at\"                  \n",
+       "[48551] \"235422_at\"                   \"235422_at\"                  \n",
+       "[48553] \"233587_s_at\"                 \"231285_at\"                  \n",
+       "[48555] \"230798_at\"                   \"233233_at\"                  \n",
+       "[48557] \"230551_at\"                   \"231514_at\"                  \n",
+       "[48559] \"233145_at\"                   \"232460_at\"                  \n",
+       "[48561] \"231898_x_at\"                 \"235207_at\"                  \n",
+       "[48563] \"235173_at\"                   \"232298_at\"                  \n",
+       "[48565] \"232242_at\"                   \"235418_at\"                  \n",
+       "[48567] \"232251_at\"                   \"232052_at\"                  \n",
+       "[48569] \"234915_s_at\"                 \"231896_s_at\"                \n",
+       "[48571] \"230786_at\"                   \"235145_at\"                  \n",
+       "[48573] \"233483_at\"                   \"231298_at\"                  \n",
+       "[48575] \"233880_at\"                   \"232155_at\"                  \n",
+       "[48577] \"231956_at\"                   \"231383_at\"                  \n",
+       "[48579] \"231184_at\"                   \"231776_at\"                  \n",
+       "[48581] \"234291_s_at\"                 \"231482_at\"                  \n",
+       "[48583] \"232987_at\"                   \"232987_at\"                  \n",
+       "[48585] \"235177_at\"                   \"231118_at\"                  \n",
+       "[48587] \"232987_at\"                   \"232987_at\"                  \n",
+       "[48589] \"232987_at\"                   \"232299_at\"                  \n",
+       "[48591] \"232451_at\"                   \"235036_at\"                  \n",
+       "[48593] \"232735_at\"                   \"231213_at\"                  \n",
+       "[48595] \"233547_x_at\"                 \"232909_s_at\"                \n",
+       "[48597] \"231953_at\"                   \"231551_at\"                  \n",
+       "[48599] \"231743_at\"                   \"231743_at\"                  \n",
+       "[48601] \"232493_at\"                   \"232060_at\"                  \n",
+       "[48603] \"233916_at\"                   \"232112_at\"                  \n",
+       "[48605] \"231903_x_at\"                 \"231773_at\"                  \n",
+       "[48607] \"230997_at\"                   \"232308_at\"                  \n",
+       "[48609] \"230710_at\"                   \"230872_s_at\"                \n",
+       "[48611] \"230873_at\"                   \"231337_at\"                  \n",
+       "[48613] \"231199_at\"                   \"235431_s_at\"                \n",
+       "[48615] \"231908_at\"                   \"231383_at\"                  \n",
+       "[48617] \"235058_at\"                   \"232608_x_at\"                \n",
+       "[48619] \"234972_at\"                   \"232260_at\"                  \n",
+       "[48621] \"232259_s_at\"                 \"232125_at\"                  \n",
+       "[48623] \"235308_at\"                   \"233633_at\"                  \n",
+       "[48625] \"234672_s_at\"                 \"232829_at\"                  \n",
+       "[48627] \"232829_at\"                   \"231433_at\"                  \n",
+       "[48629] \"235110_at\"                   \"235457_at\"                  \n",
+       "[48631] \"235106_at\"                   \"231941_s_at\"                \n",
+       "[48633] \"234362_s_at\"                 \"231794_at\"                  \n",
+       "[48635] \"234058_at\"                   \"231579_s_at\"                \n",
+       "[48637] \"232116_at\"                   \"231941_s_at\"                \n",
+       "[48639] \"231755_at\"                   \"234900_at\"                  \n",
+       "[48641] \"232090_at\"                   \"233375_at\"                  \n",
+       "[48643] \"235162_at\"                   \"231361_at\"                  \n",
+       "[48645] \"232322_x_at\"                 \"231715_s_at\"                \n",
+       "[48647] \"232647_at\"                   \"232970_at\"                  \n",
+       "[48649] \"235030_at\"                   \"231595_at\"                  \n",
+       "[48651] \"235066_at\"                   \"231839_at\"                  \n",
+       "[48653] \"232247_at\"                   \"233951_at\"                  \n",
+       "[48655] \"234714_x_at\"                 \"232041_at\"                  \n",
+       "[48657] \"235252_at\"                   \"233341_s_at\"                \n",
+       "[48659] \"234072_at\"                   \"231532_at\"                  \n",
+       "[48661] \"230773_at\"                   \"232274_at\"                  \n",
+       "[48663] \"234020_x_at\"                 \"232008_s_at\"                \n",
+       "[48665] \"231086_at\"                   \"231853_at\"                  \n",
+       "[48667] \"231036_at\"                   \"232349_x_at\"                \n",
+       "[48669] \"232489_at\"                   \"235190_at\"                  \n",
+       "[48671] \"232452_at\"                   \"232452_at\"                  \n",
+       "[48673] \"234198_at\"                   \"231774_at\"                  \n",
+       "[48675] \"232375_at\"                   \"230755_at\"                  \n",
+       "[48677] \"232904_at\"                   \"234826_at\"                  \n",
+       "[48679] \"235282_at\"                   \"233870_at\"                  \n",
+       "[48681] \"231182_at\"                   \"233080_s_at\"                \n",
+       "[48683] \"233917_s_at\"                 \"231386_at\"                  \n",
+       "[48685] \"230834_at\"                   \"231386_at\"                  \n",
+       "[48687] \"231081_at\"                   \"230540_at\"                  \n",
+       "[48689] \"232103_at\"                   \"232180_at\"                  \n",
+       "[48691] \"235242_at\"                   \"232945_at\"                  \n",
+       "[48693] \"235093_at\"                   \"235242_at\"                  \n",
+       "[48695] \"232168_x_at\"                 \"235111_at\"                  \n",
+       "[48697] \"230621_at\"                   \"235371_at\"                  \n",
+       "[48699] \"233559_s_at\"                 \"235214_at\"                  \n",
+       "[48701] \"233638_s_at\"                 \"233639_at\"                  \n",
+       "[48703] \"232639_at\"                   \"231540_at\"                  \n",
+       "[48705] \"232651_at\"                   \"231029_at\"                  \n",
+       "[48707] \"232187_at\"                   \"232104_at\"                  \n",
+       "[48709] \"231756_at\"                   \"235185_s_at\"                \n",
+       "[48711] \"235186_at\"                   \"235230_at\"                  \n",
+       "[48713] \"233093_s_at\"                 \"234016_at\"                  \n",
+       "[48715] \"235000_at\"                   \"231630_at\"                  \n",
+       "[48717] \"233590_at\"                   \"233601_at\"                  \n",
+       "[48719] \"232907_at\"                   \"231889_at\"                  \n",
+       "[48721] \"230799_at\"                   \"230595_at\"                  \n",
+       "[48723] \"235147_at\"                   \"235132_at\"                  \n",
+       "[48725] \"232397_at\"                   \"232790_at\"                  \n",
+       "[48727] \"230744_at\"                   \"230729_at\"                  \n",
+       "[48729] \"235137_at\"                   \"235482_at\"                  \n",
+       "[48731] \"230598_at\"                   \"233826_at\"                  \n",
+       "[48733] \"231135_at\"                   \"230649_at\"                  \n",
+       "[48735] \"232853_at\"                   \"231105_at\"                  \n",
+       "[48737] \"230662_at\"                   \"234898_at\"                  \n",
+       "[48739] \"235417_at\"                   \"234293_x_at\"                \n",
+       "[48741] \"233281_at\"                   \"231944_at\"                  \n",
+       "[48743] \"232095_at\"                   \"231427_at\"                  \n",
+       "[48745] \"231547_at\"                   \"231339_at\"                  \n",
+       "[48747] \"231489_x_at\"                 \"230588_s_at\"                \n",
+       "[48749] \"231973_s_at\"                 \"231932_at\"                  \n",
+       "[48751] \"231932_at\"                   \"233929_x_at\"                \n",
+       "[48753] \"233929_x_at\"                 \"230844_at\"                  \n",
+       "[48755] \"232245_at\"                   \"232621_at\"                  \n",
+       "[48757] \"235275_at\"                   \"235425_at\"                  \n",
+       "[48759] \"231397_at\"                   \"231647_s_at\"                \n",
+       "[48761] \"231093_at\"                   \"231504_at\"                  \n",
+       "[48763] \"234735_s_at\"                 \"232219_x_at\"                \n",
+       "[48765] \"231163_at\"                   \"235003_at\"                  \n",
+       "[48767] \"234343_s_at\"                 \"231075_x_at\"                \n",
+       "[48769] \"232546_at\"                   \"231962_at\"                  \n",
+       "[48771] \"231714_s_at\"                 \"231549_at\"                  \n",
+       "[48773] \"235349_at\"                   \"231769_at\"                  \n",
+       "[48775] \"233285_at\"                   \"230734_x_at\"                \n",
+       "[48777] \"230565_at\"                   \"232682_at\"                  \n",
+       "[48779] \"234006_s_at\"                 \"231103_at\"                  \n",
+       "[48781] \"231363_at\"                   \"232170_at\"                  \n",
+       "[48783] \"232032_x_at\"                 \"233563_s_at\"                \n",
+       "[48785] \"233625_x_at\"                 \"232437_at\"                  \n",
+       "[48787] \"233563_s_at\"                 \"233625_x_at\"                \n",
+       "[48789] \"233907_s_at\"                 \"230660_at\"                  \n",
+       "[48791] \"235337_at\"                   \"232105_at\"                  \n",
+       "[48793] \"233273_at\"                   \"230643_at\"                  \n",
+       "[48795] \"231364_at\"                   \"233004_x_at\"                \n",
+       "[48797] \"234462_at\"                   \"234677_at\"                  \n",
+       "[48799] \"232339_at\"                   \"235362_at\"                  \n",
+       "[48801] \"231275_at\"                   \"231275_at\"                  \n",
+       "[48803] \"232450_at\"                   \"230527_at\"                  \n",
+       "[48805] \"231313_at\"                   \"233960_s_at\"                \n",
+       "[48807] \"232190_x_at\"                 \"234665_x_at\"                \n",
+       "[48809] \"231690_at\"                   \"232589_at\"                  \n",
+       "[48811] \"235126_at\"                   \"234924_s_at\"                \n",
+       "[48813] \"230787_at\"                   \"234369_at\"                  \n",
+       "[48815] \"231886_at\"                   \"231886_at\"                  \n",
+       "[48817] \"234369_at\"                   \"231942_at\"                  \n",
+       "[48819] \"234664_at\"                   \"231909_x_at\"                \n",
+       "[48821] \"230926_s_at\"                 \"232467_at\"                  \n",
+       "[48823] \"235285_at\"                   \"231233_at\"                  \n",
+       "[48825] \"233851_s_at\"                 \"231907_at\"                  \n",
+       "[48827] \"231413_at\"                   \"231267_at\"                  \n",
+       "[48829] \"235453_at\"                   \"231719_at\"                  \n",
+       "[48831] \"230523_at\"                   \"232781_at\"                  \n",
+       "[48833] \"231886_at\"                   \"232953_at\"                  \n",
+       "[48835] \"231886_at\"                   \"235186_at\"                  \n",
+       "[48837] \"235185_s_at\"                 \"234890_at\"                  \n",
+       "[48839] \"234664_at\"                   \"231886_at\"                  \n",
+       "[48841] \"231886_at\"                   \"234664_at\"                  \n",
+       "[48843] \"232004_at\"                   \"234928_x_at\"                \n",
+       "[48845] \"234281_at\"                   \"230920_at\"                  \n",
+       "[48847] \"230920_at\"                   \"232378_at\"                  \n",
+       "[48849] \"231928_at\"                   \"230837_at\"                  \n",
+       "[48851] \"232509_at\"                   \"232509_at\"                  \n",
+       "[48853] \"232109_at\"                   \"232598_at\"                  \n",
+       "[48855] \"233979_s_at\"                 \"231851_at\"                  \n",
+       "[48857] \"231622_at\"                   \"235334_at\"                  \n",
+       "[48859] \"235186_at\"                   \"235185_s_at\"                \n",
+       "[48861] \"235186_at\"                   \"235185_s_at\"                \n",
+       "[48863] \"230822_at\"                   \"233091_at\"                  \n",
+       "[48865] \"231564_at\"                   \"234776_at\"                  \n",
+       "[48867] \"231517_at\"                   \"235305_s_at\"                \n",
+       "[48869] \"233148_at\"                   \"230769_at\"                  \n",
+       "[48871] \"233294_at\"                   \"234759_at\"                  \n",
+       "[48873] \"232350_x_at\"                 \"235125_x_at\"                \n",
+       "[48875] \"237342_at\"                   \"238594_x_at\"                \n",
+       "[48877] \"240441_at\"                   \"240441_at\"                  \n",
+       "[48879] \"239677_at\"                   \"235941_s_at\"                \n",
+       "[48881] \"235941_s_at\"                 \"238636_at\"                  \n",
+       "[48883] \"238636_at\"                   \"239858_at\"                  \n",
+       "[48885] \"237225_at\"                   \"236172_at\"                  \n",
+       "[48887] \"236270_at\"                   \"236694_at\"                  \n",
+       "[48889] \"240429_at\"                   \"238907_at\"                  \n",
+       "[48891] \"239441_at\"                   \"238053_at\"                  \n",
+       "[48893] \"238104_at\"                   \"239247_at\"                  \n",
+       "[48895] \"236504_x_at\"                 \"239417_x_at\"                \n",
+       "[48897] \"236311_at\"                   \"238328_at\"                  \n",
+       "[48899] \"236553_at\"                   \"235857_at\"                  \n",
+       "[48901] \"238163_at\"                   \"236181_at\"                  \n",
+       "[48903] \"240255_at\"                   \"236181_at\"                  \n",
+       "[48905] \"236181_at\"                   \"239155_at\"                  \n",
+       "[48907] \"237042_at\"                   \"237351_at\"                  \n",
+       "[48909] \"236805_at\"                   \"235824_at\"                  \n",
+       "[48911] \"240082_s_at\"                 \"236801_at\"                  \n",
+       "[48913] \"238880_at\"                   \"239903_at\"                  \n",
+       "[48915] \"237980_at\"                   \"239997_at\"                  \n",
+       "[48917] \"236953_s_at\"                 \"239314_at\"                  \n",
+       "[48919] \"236122_at\"                   \"236906_x_at\"                \n",
+       "[48921] \"236190_at\"                   \"240392_at\"                  \n",
+       "[48923] \"237326_at\"                   \"236181_at\"                  \n",
+       "[48925] \"240397_x_at\"                 \"239464_at\"                  \n",
+       "[48927] \"238428_at\"                   \"237858_s_at\"                \n",
+       "[48929] \"235972_at\"                   \"238464_at\"                  \n",
+       "[48931] \"239792_at\"                   \"238511_at\"                  \n",
+       "[48933] \"237699_at\"                   \"237771_s_at\"                \n",
+       "[48935] \"238228_at\"                   \"239834_at\"                  \n",
+       "[48937] \"236560_at\"                   \"237423_at\"                  \n",
+       "[48939] \"237697_at\"                   \"237697_at\"                  \n",
+       "[48941] \"240406_at\"                   \"237047_at\"                  \n",
+       "[48943] \"236390_at\"                   \"238676_at\"                  \n",
+       "[48945] \"237793_at\"                   \"236674_at\"                  \n",
+       "[48947] \"240317_at\"                   \"239443_at\"                  \n",
+       "[48949] \"240445_at\"                   \"235976_at\"                  \n",
+       "[48951] \"238919_at\"                   \"238966_at\"                  \n",
+       "[48953] \"238720_at\"                   \"238720_at\"                  \n",
+       "[48955] \"237923_at\"                   \"237047_at\"                  \n",
+       "[48957] \"235620_x_at\"                 \"237472_at\"                  \n",
+       "[48959] \"235507_at\"                   \"237612_at\"                  \n",
+       "[48961] \"240177_at\"                   \"239612_at\"                  \n",
+       "[48963] \"236449_at\"                   \"236201_at\"                  \n",
+       "[48965] \"237254_at\"                   \"238141_s_at\"                \n",
+       "[48967] \"237980_at\"                   \"238226_at\"                  \n",
+       "[48969] \"239308_at\"                   \"240218_at\"                  \n",
+       "[48971] \"237268_at\"                   \"236412_at\"                  \n",
+       "[48973] \"236061_at\"                   \"240264_at\"                  \n",
+       "[48975] \"238480_at\"                   \"237612_at\"                  \n",
+       "[48977] \"239246_at\"                   \"235501_at\"                  \n",
+       "[48979] \"237767_at\"                   \"235598_at\"                  \n",
+       "[48981] \"239271_at\"                   \"235882_at\"                  \n",
+       "[48983] \"235710_at\"                   \"240219_at\"                  \n",
+       "[48985] \"235561_at\"                   \"239098_at\"                  \n",
+       "[48987] \"240288_at\"                   \"239098_at\"                  \n",
+       "[48989] \"240288_at\"                   \"237262_at\"                  \n",
+       "[48991] \"239872_at\"                   \"235676_at\"                  \n",
+       "[48993] \"236540_at\"                   \"235793_at\"                  \n",
+       "[48995] \"237781_at\"                   \"240453_at\"                  \n",
+       "[48997] \"239416_at\"                   \"238353_at\"                  \n",
+       "[48999] \"239953_at\"                   \"235657_at\"                  \n",
+       "[49001] \"235639_at\"                   \"238138_at\"                  \n",
+       "[49003] \"238034_at\"                   \"236057_at\"                  \n",
+       "[49005] \"238468_at\"                   \"236258_at\"                  \n",
+       "[49007] \"237623_at\"                   \"236618_at\"                  \n",
+       "[49009] \"238127_at\"                   \"238097_at\"                  \n",
+       "[49011] \"238890_at\"                   \"236938_at\"                  \n",
+       "[49013] \"237552_at\"                   \"237344_at\"                  \n",
+       "[49015] \"236324_at\"                   \"235952_at\"                  \n",
+       "[49017] \"240145_at\"                   \"239558_at\"                  \n",
+       "[49019] \"237166_at\"                   \"240218_at\"                  \n",
+       "[49021] \"237268_at\"                   \"236600_at\"                  \n",
+       "[49023] \"238709_at\"                   \"239877_at\"                  \n",
+       "[49025] \"239209_at\"                   \"236047_at\"                  \n",
+       "[49027] \"236734_at\"                   \"240031_at\"                  \n",
+       "[49029] \"240069_at\"                   \"237630_s_at\"                \n",
+       "[49031] \"237711_at\"                   \"237711_at\"                  \n",
+       "[49033] \"238173_at\"                   \"237555_at\"                  \n",
+       "[49035] \"238197_at\"                   \"238095_at\"                  \n",
+       "[49037] \"236047_at\"                   \"238058_at\"                  \n",
+       "[49039] \"240174_at\"                   \"239572_at\"                  \n",
+       "[49041] \"236797_at\"                   \"238470_at\"                  \n",
+       "[49043] \"236689_at\"                   \"240368_at\"                  \n",
+       "[49045] \"238278_at\"                   \"238278_at\"                  \n",
+       "[49047] \"236051_at\"                   \"238576_at\"                  \n",
+       "[49049] \"240441_at\"                   \"240441_at\"                  \n",
+       "[49051] \"238594_x_at\"                 \"236440_at\"                  \n",
+       "[49053] \"238053_at\"                   \"236050_at\"                  \n",
+       "[49055] \"236480_at\"                   \"236647_at\"                  \n",
+       "[49057] \"236137_at\"                   \"238104_at\"                  \n",
+       "[49059] \"236440_at\"                   \"237155_at\"                  \n",
+       "[49061] \"239968_at\"                   \"240204_at\"                  \n",
+       "[49063] \"238717_at\"                   \"236290_at\"                  \n",
+       "[49065] \"236467_at\"                   \"238263_at\"                  \n",
+       "[49067] \"236634_at\"                   \"239315_at\"                  \n",
+       "[49069] \"236332_at\"                   \"238832_at\"                  \n",
+       "[49071] \"238792_at\"                   \"239100_x_at\"                \n",
+       "[49073] \"238700_at\"                   \"239087_at\"                  \n",
+       "[49075] \"238965_at\"                   \"239020_at\"                  \n",
+       "[49077] \"237593_at\"                   \"239509_at\"                  \n",
+       "[49079] \"236853_at\"                   \"236446_at\"                  \n",
+       "[49081] \"239657_x_at\"                 \"238647_at\"                  \n",
+       "[49083] \"235762_at\"                   \"235762_at\"                  \n",
+       "[49085] \"235608_at\"                   \"238490_at\"                  \n",
+       "[49087] \"239989_at\"                   \"237503_at\"                  \n",
+       "[49089] \"236420_s_at\"                 \"236788_at\"                  \n",
+       "[49091] \"238905_at\"                   \"238906_s_at\"                \n",
+       "[49093] \"237869_at\"                   \"237862_at\"                  \n",
+       "[49095] \"236391_at\"                   \"236835_at\"                  \n",
+       "[49097] \"240030_at\"                   \"236369_at\"                  \n",
+       "[49099] \"239565_at\"                   \"239729_at\"                  \n",
+       "[49101] \"238662_at\"                   \"238621_at\"                  \n",
+       "[49103] \"235902_at\"                   \"236164_at\"                  \n",
+       "[49105] \"239085_at\"                   \"238237_at\"                  \n",
+       "[49107] \"237447_at\"                   \"239513_at\"                  \n",
+       "[49109] \"237419_at\"                   \"237661_at\"                  \n",
+       "[49111] \"235507_at\"                   \"238114_at\"                  \n",
+       "[49113] \"239683_at\"                   \"238440_at\"                  \n",
+       "[49115] \"239712_at\"                   \"236945_at\"                  \n",
+       "[49117] \"236004_at\"                   \"236492_at\"                  \n",
+       "[49119] \"237094_at\"                   \"240441_at\"                  \n",
+       "[49121] \"238594_x_at\"                 \"240441_at\"                  \n",
+       "[49123] \"239133_at\"                   \"239436_at\"                  \n",
+       "[49125] \"236407_at\"                   \"239702_x_at\"                \n",
+       "[49127] \"237437_s_at\"                 \"240426_at\"                  \n",
+       "[49129] \"236012_at\"                   \"235993_at\"                  \n",
+       "[49131] \"237529_at\"                   \"238731_at\"                  \n",
+       "[49133] \"238684_at\"                   \"236726_at\"                  \n",
+       "[49135] \"239178_at\"                   \"237386_at\"                  \n",
+       "[49137] \"238915_at\"                   \"236887_at\"                  \n",
+       "[49139] \"236669_at\"                   \"240041_at\"                  \n",
+       "[49141] \"235762_at\"                   \"235762_at\"                  \n",
+       "[49143] \"238125_at\"                   \"239359_at\"                  \n",
+       "[49145] \"237004_at\"                   \"238485_at\"                  \n",
+       "[49147] \"236758_at\"                   \"237053_at\"                  \n",
+       "[49149] \"238746_at\"                   \"237069_s_at\"                \n",
+       "[49151] \"238912_x_at\"                 \"235866_at\"                  \n",
+       "[49153] \"238054_at\"                   \"236718_at\"                  \n",
+       "[49155] \"235827_at\"                   \"237168_at\"                  \n",
+       "[49157] \"240275_at\"                   \"237102_at\"                  \n",
+       "[49159] \"235591_at\"                   \"238537_at\"                  \n",
+       "[49161] \"237219_at\"                   \"238194_at\"                  \n",
+       "[49163] \"239307_at\"                   \"237853_x_at\"                \n",
+       "[49165] \"237676_at\"                   \"238536_at\"                  \n",
+       "[49167] \"240431_at\"                   \"239722_at\"                  \n",
+       "[49169] \"236181_at\"                   \"236181_at\"                  \n",
+       "[49171] \"239468_at\"                   \"239994_at\"                  \n",
+       "[49173] \"238926_at\"                   \"239547_at\"                  \n",
+       "[49175] \"237081_at\"                   \"237845_at\"                  \n",
+       "[49177] \"237909_at\"                   \"237909_at\"                  \n",
+       "[49179] \"235666_at\"                   \"239092_at\"                  \n",
+       "[49181] \"237824_at\"                   \"239399_at\"                  \n",
+       "[49183] \"237695_at\"                   \"239582_at\"                  \n",
+       "[49185] \"235508_at\"                   \"235798_at\"                  \n",
+       "[49187] \"240123_at\"                   \"238541_at\"                  \n",
+       "[49189] \"237651_x_at\"                 \"239553_at\"                  \n",
+       "[49191] \"240304_s_at\"                 \"236983_at\"                  \n",
+       "[49193] \"240303_at\"                   \"237749_at\"                  \n",
+       "[49195] \"240012_at\"                   \"239263_at\"                  \n",
+       "[49197] \"239911_at\"                   \"239812_s_at\"                \n",
+       "[49199] \"239813_at\"                   \"237294_at\"                  \n",
+       "[49201] \"237314_at\"                   \"238091_at\"                  \n",
+       "[49203] \"236045_x_at\"                 \"237410_x_at\"                \n",
+       "[49205] \"240276_at\"                   \"240435_at\"                  \n",
+       "[49207] \"236453_at\"                   \"239293_at\"                  \n",
+       "[49209] \"237331_s_at\"                 \"237536_at\"                  \n",
+       "[49211] \"236519_at\"                   \"236769_at\"                  \n",
+       "[49213] \"236416_at\"                   \"239523_at\"                  \n",
+       "[49215] \"236110_at\"                   \"236101_at\"                  \n",
+       "[49217] \"240223_at\"                   \"238380_s_at\"                \n",
+       "[49219] \"239609_s_at\"                 \"237331_s_at\"                \n",
+       "[49221] \"237536_at\"                   \"236627_at\"                  \n",
+       "[49223] \"237883_at\"                   \"238455_at\"                  \n",
+       "[49225] \"236297_at\"                   \"236988_x_at\"                \n",
+       "[49227] \"240211_at\"                   \"237572_at\"                  \n",
+       "[49229] \"235904_at\"                   \"236597_at\"                  \n",
+       "[49231] \"236190_at\"                   \"238244_at\"                  \n",
+       "[49233] \"235645_at\"                   \"236804_at\"                  \n",
+       "[49235] \"236671_at\"                   \"240147_at\"                  \n",
+       "[49237] \"239470_at\"                   \"237837_at\"                  \n",
+       "[49239] \"237250_at\"                   \"236992_at\"                  \n",
+       "[49241] \"238387_s_at\"                 \"236788_at\"                  \n",
+       "[49243] \"239781_at\"                   \"236280_at\"                  \n",
+       "[49245] \"235933_at\"                   \"236911_at\"                  \n",
+       "[49247] \"239330_at\"                   \"237353_at\"                  \n",
+       "[49249] \"239407_at\"                   \"239761_at\"                  \n",
+       "[49251] \"235573_at\"                   \"239162_at\"                  \n",
+       "[49253] \"240316_at\"                   \"238920_at\"                  \n",
+       "[49255] \"236881_at\"                   \"237301_at\"                  \n",
+       "[49257] \"237730_at\"                   \"239072_at\"                  \n",
+       "[49259] \"238091_at\"                   \"240068_at\"                  \n",
+       "[49261] \"238856_s_at\"                 \"236631_at\"                  \n",
+       "[49263] \"236631_at\"                   \"239999_at\"                  \n",
+       "[49265] \"240091_at\"                   \"237975_at\"                  \n",
+       "[49267] \"238287_at\"                   \"237475_x_at\"                \n",
+       "[49269] \"235899_at\"                   \"236366_at\"                  \n",
+       "[49271] \"238836_at\"                   \"238443_at\"                  \n",
+       "[49273] \"237414_at\"                   \"236859_at\"                  \n",
+       "[49275] \"236858_s_at\"                 \"240055_at\"                  \n",
+       "[49277] \"236271_at\"                   \"236033_at\"                  \n",
+       "[49279] \"235846_at\"                   \"235896_s_at\"                \n",
+       "[49281] \"238775_at\"                   \"239044_at\"                  \n",
+       "[49283] \"238434_at\"                   \"236933_at\"                  \n",
+       "[49285] \"236933_at\"                   \"236823_at\"                  \n",
+       "[49287] \"236194_at\"                   \"235533_at\"                  \n",
+       "[49289] \"238691_at\"                   \"237672_at\"                  \n",
+       "[49291] \"236161_at\"                   \"236823_at\"                  \n",
+       "[49293] \"239228_at\"                   \"238504_at\"                  \n",
+       "[49295] \"235699_at\"                   \"240020_at\"                  \n",
+       "[49297] \"240020_at\"                   \"237696_at\"                  \n",
+       "[49299] \"236701_at\"                   \"237784_at\"                  \n",
+       "[49301] \"239261_s_at\"                 \"239260_at\"                  \n",
+       "[49303] \"237519_at\"                   \"236287_at\"                  \n",
+       "[49305] \"239636_at\"                   \"236085_at\"                  \n",
+       "[49307] \"237452_at\"                   \"239719_at\"                  \n",
+       "[49309] \"239067_s_at\"                 \"238211_at\"                  \n",
+       "[49311] \"239602_at\"                   \"239169_at\"                  \n",
+       "[49313] \"236838_at\"                   \"238538_at\"                  \n",
+       "[49315] \"236048_at\"                   \"239273_s_at\"                \n",
+       "[49317] \"239272_at\"                   \"236478_at\"                  \n",
+       "[49319] \"238868_at\"                   \"236715_x_at\"                \n",
+       "[49321] \"240043_at\"                   \"237229_at\"                  \n",
+       "[49323] \"239500_at\"                   \"239936_at\"                  \n",
+       "[49325] \"237794_at\"                   \"237500_at\"                  \n",
+       "[49327] \"240225_at\"                   \"237842_at\"                  \n",
+       "[49329] \"240436_at\"                   \"236837_x_at\"                \n",
+       "[49331] \"238205_at\"                   \"239306_at\"                  \n",
+       "[49333] \"238067_at\"                   \"238678_at\"                  \n",
+       "[49335] \"238253_at\"                   \"236741_at\"                  \n",
+       "[49337] \"239925_at\"                   \"239985_at\"                  \n",
+       "[49339] \"237381_at\"                   \"239324_at\"                  \n",
+       "[49341] \"239598_s_at\"                 \"238501_at\"                  \n",
+       "[49343] \"237054_at\"                   \"237345_at\"                  \n",
+       "[49345] \"236150_at\"                   \"238703_at\"                  \n",
+       "[49347] \"237794_at\"                   \"238695_s_at\"                \n",
+       "[49349] \"236716_at\"                   \"236702_at\"                  \n",
+       "[49351] \"239733_at\"                   \"237392_at\"                  \n",
+       "[49353] \"239034_at\"                   \"239765_at\"                  \n",
+       "[49355] \"239143_x_at\"                 \"237342_at\"                  \n",
+       "[49357] \"235874_at\"                   \"235809_at\"                  \n",
+       "[49359] \"236352_at\"                   \"235822_at\"                  \n",
+       "[49361] \"236526_x_at\"                 \"236265_at\"                  \n",
+       "[49363] \"239115_at\"                   \"239613_at\"                  \n",
+       "[49365] \"239968_at\"                   \"236631_at\"                  \n",
+       "[49367] \"236407_at\"                   \"239787_at\"                  \n",
+       "[49369] \"236161_at\"                   \"238703_at\"                  \n",
+       "[49371] \"235863_at\"                   \"237853_x_at\"                \n",
+       "[49373] \"236982_at\"                   \"239058_at\"                  \n",
+       "[49375] \"236994_at\"                   \"238294_at\"                  \n",
+       "[49377] \"236721_at\"                   \"235818_at\"                  \n",
+       "[49379] \"238171_at\"                   \"237461_at\"                  \n",
+       "[49381] \"239537_at\"                   \"240406_at\"                  \n",
+       "[49383] \"240201_at\"                   \"238729_x_at\"                \n",
+       "[49385] \"237461_at\"                   \"235818_at\"                  \n",
+       "[49387] \"236606_at\"                   \"236506_at\"                  \n",
+       "[49389] \"237391_at\"                   \"237974_at\"                  \n",
+       "[49391] \"235698_at\"                   \"240163_at\"                  \n",
+       "[49393] \"236916_at\"                   \"236165_at\"                  \n",
+       "[49395] \"237461_at\"                   \"235818_at\"                  \n",
+       "[49397] \"238605_at\"                   \"237275_at\"                  \n",
+       "[49399] \"239123_at\"                   \"237196_at\"                  \n",
+       "[49401] \"237745_at\"                   \"237719_x_at\"                \n",
+       "[49403] \"240287_at\"                   \"237059_at\"                  \n",
+       "[49405] \"235830_at\"                   \"237129_at\"                  \n",
+       "[49407] \"236489_at\"                   \"235988_at\"                  \n",
+       "[49409] \"238689_at\"                   \"235653_s_at\"                \n",
+       "[49411] \"237885_at\"                   \"237818_at\"                  \n",
+       "[49413] \"236565_s_at\"                 \"236852_at\"                  \n",
+       "[49415] \"235567_at\"                   \"236266_at\"                  \n",
+       "[49417] \"238227_at\"                   \"238523_at\"                  \n",
+       "[49419] \"238025_at\"                   \"235997_at\"                  \n",
+       "[49421] \"237838_at\"                   \"239073_at\"                  \n",
+       "[49423] \"239848_at\"                   \"235964_x_at\"                \n",
+       "[49425] \"235529_x_at\"                 \"235818_at\"                  \n",
+       "[49427] \"238903_at\"                   \"237461_at\"                  \n",
+       "[49429] \"236179_at\"                   \"239286_at\"                  \n",
+       "[49431] \"239769_at\"                   \"239230_at\"                  \n",
+       "[49433] \"239076_at\"                   \"237932_at\"                  \n",
+       "[49435] \"236078_at\"                   \"239216_at\"                  \n",
+       "[49437] \"238475_at\"                   \"238251_at\"                  \n",
+       "[49439] \"235749_at\"                   \"237461_at\"                  \n",
+       "[49441] \"235818_at\"                   \"237605_at\"                  \n",
+       "[49443] \"236833_at\"                   \"236758_at\"                  \n",
+       "[49445] \"238113_at\"                   \"240407_at\"                  \n",
+       "[49447] \"238617_at\"                   \"235818_at\"                  \n",
+       "[49449] \"237461_at\"                   \"237645_at\"                  \n",
+       "[49451] \"237981_at\"                   \"236023_at\"                  \n",
+       "[49453] \"236940_at\"                   \"235818_at\"                  \n",
+       "[49455] \"237461_at\"                   \"235758_at\"                  \n",
+       "[49457] \"238116_at\"                   \"239897_at\"                  \n",
+       "[49459] \"237428_at\"                   \"235727_at\"                  \n",
+       "[49461] \"235818_at\"                   \"235802_at\"                  \n",
+       "[49463] \"237461_at\"                   \"237574_at\"                  \n",
+       "[49465] \"235520_at\"                   \"238748_at\"                  \n",
+       "[49467] \"238670_at\"                   \"238334_at\"                  \n",
+       "[49469] \"238333_s_at\"                 \"238940_at\"                  \n",
+       "[49471] \"239019_at\"                   \"238791_at\"                  \n",
+       "[49473] \"240439_at\"                   \"236588_at\"                  \n",
+       "[49475] \"239477_at\"                   \"240024_at\"                  \n",
+       "[49477] \"236517_at\"                   \"237827_at\"                  \n",
+       "[49479] \"236384_at\"                   \"237297_at\"                  \n",
+       "[49481] \"237728_at\"                   \"237117_at\"                  \n",
+       "[49483] \"238162_at\"                   \"239419_at\"                  \n",
+       "[49485] \"237461_at\"                   \"236533_at\"                  \n",
+       "[49487] \"239492_at\"                   \"239327_at\"                  \n",
+       "[49489] \"237489_at\"                   \"239252_at\"                  \n",
+       "[49491] \"238897_at\"                   \"239471_at\"                  \n",
+       "[49493] \"238999_at\"                   \"239891_x_at\"                \n",
+       "[49495] \"235818_at\"                   \"240311_at\"                  \n",
+       "[49497] \"237709_at\"                   \"237045_at\"                  \n",
+       "[49499] \"236822_at\"                   \"236434_at\"                  \n",
+       "[49501] \"235752_at\"                   \"236241_at\"                  \n",
+       "[49503] \"235731_at\"                   \"237845_at\"                  \n",
+       "[49505] \"237329_at\"                   \"236363_at\"                  \n",
+       "[49507] \"238395_at\"                   \"240197_at\"                  \n",
+       "[49509] \"238535_at\"                   \"239413_at\"                  \n",
+       "[49511] \"235940_at\"                   \"239528_at\"                  \n",
+       "[49513] \"235621_at\"                   \"237810_at\"                  \n",
+       "[49515] \"239793_at\"                   \"235946_at\"                  \n",
+       "[49517] \"240129_at\"                   \"238656_at\"                  \n",
+       "[49519] \"238196_at\"                   \"239585_at\"                  \n",
+       "[49521] \"239502_at\"                   \"238793_at\"                  \n",
+       "[49523] \"236117_at\"                   \"237358_at\"                  \n",
+       "[49525] \"239074_at\"                   \"238076_at\"                  \n",
+       "[49527] \"236356_at\"                   \"236656_s_at\"                \n",
+       "[49529] \"239483_at\"                   \"235496_at\"                  \n",
+       "[49531] \"239730_at\"                   \"237178_at\"                  \n",
+       "[49533] \"235582_at\"                   \"240048_at\"                  \n",
+       "[49535] \"237267_at\"                   \"237617_at\"                  \n",
+       "[49537] \"238411_x_at\"                 \"238411_x_at\"                \n",
+       "[49539] \"236295_s_at\"                 \"237766_at\"                  \n",
+       "[49541] \"236135_at\"                   \"235998_at\"                  \n",
+       "[49543] \"237003_at\"                   \"238099_at\"                  \n",
+       "[49545] \"237474_at\"                   \"237630_s_at\"                \n",
+       "[49547] \"238860_at\"                   \"240420_at\"                  \n",
+       "[49549] \"239300_at\"                   \"239643_at\"                  \n",
+       "[49551] \"239391_at\"                   \"235718_at\"                  \n",
+       "[49553] \"237450_at\"                   \"239497_at\"                  \n",
+       "[49555] \"235767_x_at\"                 \"236817_at\"                  \n",
+       "[49557] \"237919_at\"                   \"238074_at\"                  \n",
+       "[49559] \"236698_at\"                   \"239713_at\"                  \n",
+       "[49561] \"237048_at\"                   \"237523_at\"                  \n",
+       "[49563] \"236009_at\"                   \"238530_at\"                  \n",
+       "[49565] \"237226_at\"                   \"239480_at\"                  \n",
+       "[49567] \"237721_s_at\"                 \"237720_at\"                  \n",
+       "[49569] \"235619_at\"                   \"240427_at\"                  \n",
+       "[49571] \"237509_at\"                   \"238773_at\"                  \n",
+       "[49573] \"239680_at\"                   \"235600_at\"                  \n",
+       "[49575] \"238447_at\"                   \"235570_at\"                  \n",
+       "[49577] \"239367_at\"                   \"237122_at\"                  \n",
+       "[49579] \"237302_at\"                   \"239493_at\"                  \n",
+       "[49581] \"238763_at\"                   \"236239_at\"                  \n",
+       "[49583] \"239061_at\"                   \"236782_at\"                  \n",
+       "[49585] \"240459_at\"                   \"240162_at\"                  \n",
+       "[49587] \"235919_at\"                   \"237074_at\"                  \n",
+       "[49589] \"238656_at\"                   \"240083_at\"                  \n",
+       "[49591] \"239524_at\"                   \"238750_at\"                  \n",
+       "[49593] \"240124_at\"                   \"240228_at\"                  \n",
+       "[49595] \"240123_at\"                   \"236968_at\"                  \n",
+       "[49597] \"239084_at\"                   \"237945_at\"                  \n",
+       "[49599] \"235962_at\"                   \"236312_at\"                  \n",
+       "[49601] \"239816_at\"                   \"235615_at\"                  \n",
+       "[49603] \"238446_at\"                   \"235810_at\"                  \n",
+       "[49605] \"236644_at\"                   \"239752_at\"                  \n",
+       "[49607] \"236232_at\"                   \"236301_at\"                  \n",
+       "[49609] \"239888_at\"                   \"238077_at\"                  \n",
+       "[49611] \"238001_at\"                   \"235510_at\"                  \n",
+       "[49613] \"237774_at\"                   \"237924_at\"                  \n",
+       "[49615] \"236550_s_at\"                 \"236551_at\"                  \n",
+       "[49617] \"235924_at\"                   \"235625_at\"                  \n",
+       "[49619] \"239771_at\"                   \"237245_at\"                  \n",
+       "[49621] \"239299_at\"                   \"238041_at\"                  \n",
+       "[49623] \"238865_at\"                   \"238487_at\"                  \n",
+       "[49625] \"239068_at\"                   \"236006_s_at\"                \n",
+       "[49627] \"236007_at\"                   \"236782_at\"                  \n",
+       "[49629] \"238047_at\"                   \"236175_at\"                  \n",
+       "[49631] \"239353_at\"                   \"239074_at\"                  \n",
+       "[49633] \"236487_at\"                   \"236285_at\"                  \n",
+       "[49635] \"239087_at\"                   \"239854_at\"                  \n",
+       "[49637] \"240278_at\"                   \"239818_x_at\"                \n",
+       "[49639] \"239483_at\"                   \"236331_at\"                  \n",
+       "[49641] \"236843_at\"                   \"236550_s_at\"                \n",
+       "[49643] \"236551_at\"                   \"237630_s_at\"                \n",
+       "[49645] \"238093_at\"                   \"237177_at\"                  \n",
+       "[49647] \"236037_at\"                   \"238813_at\"                  \n",
+       "[49649] \"239223_s_at\"                 \"239224_at\"                  \n",
+       "[49651] \"237369_at\"                   \"236385_at\"                  \n",
+       "[49653] \"238487_at\"                   \"239068_at\"                  \n",
+       "[49655] \"235955_at\"                   \"237592_at\"                  \n",
+       "[49657] \"238620_at\"                   \"238557_at\"                  \n",
+       "[49659] \"237807_at\"                   \"238614_x_at\"                \n",
+       "[49661] \"238496_at\"                   \"238948_at\"                  \n",
+       "[49663] \"236541_at\"                   \"236128_at\"                  \n",
+       "[49665] \"239465_at\"                   \"236144_at\"                  \n",
+       "[49667] \"239054_at\"                   \"236707_at\"                  \n",
+       "[49669] \"236038_at\"                   \"236535_at\"                  \n",
+       "[49671] \"236420_s_at\"                 \"237592_at\"                  \n",
+       "[49673] \"235821_at\"                   \"236550_s_at\"                \n",
+       "[49675] \"236551_at\"                   \"235856_at\"                  \n",
+       "[49677] \"240167_at\"                   \"238190_at\"                  \n",
+       "[49679] \"238487_at\"                   \"239068_at\"                  \n",
+       "[49681] \"240115_at\"                   \"238074_at\"                  \n",
+       "[49683] \"235576_at\"                   \"238997_at\"                  \n",
+       "[49685] \"236172_at\"                   \"236270_at\"                  \n",
+       "[49687] \"239975_at\"                   \"239281_at\"                  \n",
+       "[49689] \"236550_s_at\"                 \"236551_at\"                  \n",
+       "[49691] \"237712_at\"                   \"239975_at\"                  \n",
+       "[49693] \"239884_at\"                   \"236768_at\"                  \n",
+       "[49695] \"239742_at\"                   \"239482_x_at\"                \n",
+       "[49697] \"235856_at\"                   \"235856_at\"                  \n",
+       "[49699] \"239575_at\"                   \"239439_at\"                  \n",
+       "[49701] \"239688_at\"                   \"237936_at\"                  \n",
+       "[49703] \"240439_at\"                   \"238327_at\"                  \n",
+       "[49705] \"235856_at\"                   \"239912_at\"                  \n",
+       "[49707] \"238943_at\"                   \"240042_at\"                  \n",
+       "[49709] \"237385_at\"                   \"235945_at\"                  \n",
+       "[49711] \"236344_at\"                   \"239218_at\"                  \n",
+       "[49713] \"236503_at\"                   \"238487_at\"                  \n",
+       "[49715] \"239068_at\"                   \"236577_at\"                  \n",
+       "[49717] \"239835_at\"                   \"238421_at\"                  \n",
+       "[49719] \"238051_x_at\"                 \"239580_at\"                  \n",
+       "[49721] \"235826_at\"                   \"236713_at\"                  \n",
+       "[49723] \"239894_at\"                   \"239975_at\"                  \n",
+       "[49725] \"236531_at\"                   \"237581_at\"                  \n",
+       "[49727] \"236189_at\"                   \"238165_at\"                  \n",
+       "[49729] \"237576_x_at\"                 \"235900_at\"                  \n",
+       "[49731] \"236016_at\"                   \"237132_at\"                  \n",
+       "[49733] \"237132_at\"                   \"237468_at\"                  \n",
+       "[49735] \"236530_at\"                   \"237407_at\"                  \n",
+       "[49737] \"240460_at\"                   \"236855_at\"                  \n",
+       "[49739] \"236044_at\"                   \"237416_at\"                  \n",
+       "[49741] \"238498_at\"                   \"239454_at\"                  \n",
+       "[49743] \"237111_at\"                   \"238997_at\"                  \n",
+       "[49745] \"237042_at\"                   \"237300_at\"                  \n",
+       "[49747] \"238071_at\"                   \"238195_at\"                  \n",
+       "[49749] \"238195_at\"                   \"238487_at\"                  \n",
+       "[49751] \"239068_at\"                   \"238071_at\"                  \n",
+       "[49753] \"236107_at\"                   \"239750_x_at\"                \n",
+       "[49755] \"236998_at\"                   \"238632_at\"                  \n",
+       "[49757] \"236518_at\"                   \"239942_at\"                  \n",
+       "[49759] \"239217_x_at\"                 \"239431_at\"                  \n",
+       "[49761] \"238845_at\"                   \"236744_at\"                  \n",
+       "[49763] \"235856_at\"                   \"235856_at\"                  \n",
+       "[49765] \"237771_s_at\"                 \"238922_at\"                  \n",
+       "[49767] \"239794_at\"                   \"239080_at\"                  \n",
+       "[49769] \"236459_at\"                   \"237384_x_at\"                \n",
+       "[49771] \"238878_at\"                   \"240063_at\"                  \n",
+       "[49773] \"240226_at\"                   \"239437_at\"                  \n",
+       "[49775] \"238066_at\"                   \"237758_at\"                  \n",
+       "[49777] \"235658_at\"                   \"238722_x_at\"                \n",
+       "[49779] \"236016_at\"                   \"239161_at\"                  \n",
+       "[49781] \"236700_at\"                   \"236130_at\"                  \n",
+       "[49783] \"238992_at\"                   \"240106_at\"                  \n",
+       "[49785] \"239484_at\"                   \"239704_at\"                  \n",
+       "[49787] \"235549_at\"                   \"238659_at\"                  \n",
+       "[49789] \"239230_at\"                   \"238461_at\"                  \n",
+       "[49791] \"235856_at\"                   \"237871_x_at\"                \n",
+       "[49793] \"239746_at\"                   \"239747_s_at\"                \n",
+       "[49795] \"239746_at\"                   \"239747_s_at\"                \n",
+       "[49797] \"236550_s_at\"                 \"236551_at\"                  \n",
+       "[49799] \"238679_at\"                   \"236152_at\"                  \n",
+       "[49801] \"238596_at\"                   \"237120_at\"                  \n",
+       "[49803] \"235709_at\"                   \"238756_at\"                  \n",
+       "[49805] \"236092_at\"                   \"237513_at\"                  \n",
+       "[49807] \"236550_s_at\"                 \"236551_at\"                  \n",
+       "[49809] \"238997_at\"                   \"240079_at\"                  \n",
+       "[49811] \"238487_at\"                   \"239068_at\"                  \n",
+       "[49813] \"239450_at\"                   \"236573_at\"                  \n",
+       "[49815] \"237328_at\"                   \"237870_at\"                  \n",
+       "[49817] \"239416_at\"                   \"238566_at\"                  \n",
+       "[49819] \"238225_at\"                   \"240038_at\"                  \n",
+       "[49821] \"238128_at\"                   \"236096_at\"                  \n",
+       "[49823] \"237142_at\"                   \"238752_at\"                  \n",
+       "[49825] \"235856_at\"                   \"235856_at\"                  \n",
+       "[49827] \"236219_at\"                   \"239265_at\"                  \n",
+       "[49829] \"240301_at\"                   \"236445_at\"                  \n",
+       "[49831] \"235775_at\"                   \"235618_at\"                  \n",
+       "[49833] \"239667_at\"                   \"236021_at\"                  \n",
+       "[49835] \"239514_at\"                   \"235856_at\"                  \n",
+       "[49837] \"238155_at\"                   \"238487_at\"                  \n",
+       "[49839] \"239068_at\"                   \"237583_at\"                  \n",
+       "[49841] \"239146_at\"                   \"235806_at\"                  \n",
+       "[49843] \"239863_at\"                   \"240261_at\"                  \n",
+       "[49845] \"238997_at\"                   \"239975_at\"                  \n",
+       "[49847] \"238842_at\"                   \"239329_at\"                  \n",
+       "[49849] \"239975_at\"                   \"236108_at\"                  \n",
+       "[49851] \"235550_at\"                   \"239415_at\"                  \n",
+       "[49853] \"236810_at\"                   \"237036_at\"                  \n",
+       "[49855] \"237036_at\"                   \"238587_at\"                  \n",
+       "[49857] \"238462_at\"                   \"236490_at\"                  \n",
+       "[49859] \"239478_x_at\"                 \"238574_at\"                  \n",
+       "[49861] \"235503_at\"                   \"239332_at\"                  \n",
+       "[49863] \"238641_at\"                   \"239120_at\"                  \n",
+       "[49865] \"239873_at\"                   \"240402_at\"                  \n",
+       "[49867] \"238937_at\"                   \"238528_at\"                  \n",
+       "[49869] \"236579_at\"                   \"235981_at\"                  \n",
+       "[49871] \"235864_at\"                   \"239583_x_at\"                \n",
+       "[49873] \"238243_at\"                   \"239318_at\"                  \n",
+       "[49875] \"237288_at\"                   \"236104_at\"                  \n",
+       "[49877] \"238963_at\"                   \"236226_at\"                  \n",
+       "[49879] \"239498_at\"                   \"235605_at\"                  \n",
+       "[49881] \"235579_at\"                   \"239436_at\"                  \n",
+       "[49883] \"239460_at\"                   \"239459_s_at\"                \n",
+       "[49885] \"238896_at\"                   \"239776_at\"                  \n",
+       "[49887] \"238425_at\"                   \"236246_x_at\"                \n",
+       "[49889] \"235800_at\"                   \"239760_at\"                  \n",
+       "[49891] \"237668_at\"                   \"240062_at\"                  \n",
+       "[49893] \"238924_at\"                   \"237332_at\"                  \n",
+       "[49895] \"235650_at\"                   \"239592_at\"                  \n",
+       "[49897] \"238551_at\"                   \"235700_at\"                  \n",
+       "[49899] \"235700_at\"                   \"235956_at\"                  \n",
+       "[49901] \"236325_at\"                   \"235700_at\"                  \n",
+       "[49903] \"235700_at\"                   \"235700_at\"                  \n",
+       "[49905] \"236532_at\"                   \"236995_x_at\"                \n",
+       "[49907] \"237706_at\"                   \"238206_at\"                  \n",
+       "[49909] \"237282_s_at\"                 \"237281_at\"                  \n",
+       "[49911] \"237724_at\"                   \"235914_at\"                  \n",
+       "[49913] \"239530_at\"                   \"237336_at\"                  \n",
+       "[49915] \"238765_at\"                   \"237047_at\"                  \n",
+       "[49917] \"235583_at\"                   \"237324_s_at\"                \n",
+       "[49919] \"237323_at\"                   \"239770_at\"                  \n",
+       "[49921] \"236756_at\"                   \"236756_at\"                  \n",
+       "[49923] \"236233_at\"                   \"240430_at\"                  \n",
+       "[49925] \"235651_at\"                   \"238846_at\"                  \n",
+       "[49927] \"238448_at\"                   \"238165_at\"                  \n",
+       "[49929] \"236392_at\"                   \"239202_at\"                  \n",
+       "[49931] \"236018_at\"                   \"238424_at\"                  \n",
+       "[49933] \"239711_at\"                   \"238356_at\"                  \n",
+       "[49935] \"237725_x_at\"                 \"240006_at\"                  \n",
+       "[49937] \"238640_at\"                   \"240365_at\"                  \n",
+       "[49939] \"235704_at\"                   \"238055_at\"                  \n",
+       "[49941] \"240066_at\"                   \"240184_at\"                  \n",
+       "[49943] \"237312_at\"                   \"239981_x_at\"                \n",
+       "[49945] \"236854_at\"                   \"237410_x_at\"                \n",
+       "[49947] \"237757_at\"                   \"235528_at\"                  \n",
+       "[49949] \"240336_at\"                   \"236573_at\"                  \n",
+       "[49951] \"237253_at\"                   \"239309_at\"                  \n",
+       "[49953] \"236054_at\"                   \"236118_at\"                  \n",
+       "[49955] \"238802_at\"                   \"237684_at\"                  \n",
+       "[49957] \"235908_at\"                   \"236896_at\"                  \n",
+       "[49959] \"236090_at\"                   \"237794_at\"                  \n",
+       "[49961] \"236595_at\"                   \"238318_at\"                  \n",
+       "[49963] \"240286_at\"                   \"238154_at\"                  \n",
+       "[49965] \"237799_at\"                   \"236453_at\"                  \n",
+       "[49967] \"236292_at\"                   \"238997_at\"                  \n",
+       "[49969] \"236748_at\"                   \"236339_at\"                  \n",
+       "[49971] \"239488_at\"                   \"239455_at\"                  \n",
+       "[49973] \"237188_x_at\"                 \"236160_at\"                  \n",
+       "[49975] \"237217_at\"                   \"238697_at\"                  \n",
+       "[49977] \"237217_at\"                   \"239909_at\"                  \n",
+       "[49979] \"239698_at\"                   \"235667_at\"                  \n",
+       "[49981] \"239277_at\"                   \"236942_at\"                  \n",
+       "[49983] \"238728_at\"                   \"237820_at\"                  \n",
+       "[49985] \"236933_at\"                   \"236378_at\"                  \n",
+       "[49987] \"236933_at\"                   \"237503_at\"                  \n",
+       "[49989] \"237099_at\"                   \"237604_at\"                  \n",
+       "[49991] \"236894_at\"                   \"236246_x_at\"                \n",
+       "[49993] \"240359_at\"                   \"240114_s_at\"                \n",
+       "[49995] \"238103_at\"                   \"236423_at\"                  \n",
+       "[49997] \"238637_at\"                   \"239887_at\"                  \n",
+       "[49999] \"235926_at\"                   \"239651_at\"                  \n",
+       "[50001] \"235837_at\"                   \"238008_at\"                  \n",
+       "[50003] \"235972_at\"                   \"238829_at\"                  \n",
+       "[50005] \"237400_at\"                   \"235512_at\"                  \n",
+       "[50007] \"237400_at\"                   \"238807_at\"                  \n",
+       "[50009] \"236590_at\"                   \"238633_at\"                  \n",
+       "[50011] \"238807_at\"                   \"236590_at\"                  \n",
+       "[50013] \"240243_at\"                   \"237230_at\"                  \n",
+       "[50015] \"236907_at\"                   \"240040_at\"                  \n",
+       "[50017] \"237856_at\"                   \"236362_at\"                  \n",
+       "[50019] \"240161_s_at\"                 \"236463_at\"                  \n",
+       "[50021] \"235722_at\"                   \"236710_at\"                  \n",
+       "[50023] \"236279_at\"                   \"236965_at\"                  \n",
+       "[50025] \"236615_at\"                   \"236984_at\"                  \n",
+       "[50027] \"238839_at\"                   \"239184_at\"                  \n",
+       "[50029] \"238232_at\"                   \"238870_at\"                  \n",
+       "[50031] \"236922_at\"                   \"236989_at\"                  \n",
+       "[50033] \"239187_at\"                   \"239101_at\"                  \n",
+       "[50035] \"240294_at\"                   \"240420_at\"                  \n",
+       "[50037] \"238432_at\"                   \"235527_at\"                  \n",
+       "[50039] \"239423_at\"                   \"239229_at\"                  \n",
+       "[50041] \"236585_at\"                   \"238803_at\"                  \n",
+       "[50043] \"236289_at\"                   \"236805_at\"                  \n",
+       "[50045] \"236688_at\"                   \"236046_at\"                  \n",
+       "[50047] \"238914_at\"                   \"236639_at\"                  \n",
+       "[50049] \"238142_at\"                   \"240101_at\"                  \n",
+       "[50051] \"237779_at\"                   \"237057_at\"                  \n",
+       "[50053] \"238737_at\"                   \"238013_at\"                  \n",
+       "[50055] \"237514_at\"                   \"239339_at\"                  \n",
+       "[50057] \"237537_at\"                   \"239821_at\"                  \n",
+       "[50059] \"240371_at\"                   \"238825_at\"                  \n",
+       "[50061] \"238972_at\"                   \"238007_at\"                  \n",
+       "[50063] \"236231_at\"                   \"238693_at\"                  \n",
+       "[50065] \"236548_at\"                   \"235854_x_at\"                \n",
+       "[50067] \"237622_at\"                   \"238798_at\"                  \n",
+       "[50069] \"236675_at\"                   \"236847_at\"                  \n",
+       "[50071] \"236514_at\"                   \"239475_at\"                  \n",
+       "[50073] \"239547_at\"                   \"236425_at\"                  \n",
+       "[50075] \"239190_at\"                   \"238115_at\"                  \n",
+       "[50077] \"238923_at\"                   \"237513_at\"                  \n",
+       "[50079] \"236714_at\"                   \"239053_at\"                  \n",
+       "[50081] \"235700_at\"                   \"238578_at\"                  \n",
+       "[50083] \"238867_at\"                   \"237403_at\"                  \n",
+       "[50085] \"239410_at\"                   \"239650_at\"                  \n",
+       "[50087] \"235730_at\"                   \"240176_at\"                  \n",
+       "[50089] \"239170_at\"                   \"237247_at\"                  \n",
+       "[50091] \"238568_s_at\"                 \"239481_at\"                  \n",
+       "[50093] \"236926_at\"                   \"237298_at\"                  \n",
+       "[50095] \"235736_at\"                   \"238332_at\"                  \n",
+       "[50097] \"239320_at\"                   \"236695_at\"                  \n",
+       "[50099] \"235725_at\"                   \"236259_at\"                  \n",
+       "[50101] \"236151_at\"                   \"237828_at\"                  \n",
+       "[50103] \"239879_at\"                   \"238724_at\"                  \n",
+       "[50105] \"236176_at\"                   \"235839_at\"                  \n",
+       "[50107] \"238613_at\"                   \"239207_at\"                  \n",
+       "[50109] \"236648_at\"                   \"239400_at\"                  \n",
+       "[50111] \"240449_at\"                   \"237453_at\"                  \n",
+       "[50113] \"240252_at\"                   \"237425_at\"                  \n",
+       "[50115] \"239910_at\"                   \"238780_s_at\"                \n",
+       "[50117] \"237186_at\"                   \"237274_at\"                  \n",
+       "[50119] \"236156_at\"                   \"238668_at\"                  \n",
+       "[50121] \"237322_at\"                   \"236787_at\"                  \n",
+       "[50123] \"235689_at\"                   \"238323_at\"                  \n",
+       "[50125] \"238322_s_at\"                 \"237421_at\"                  \n",
+       "[50127] \"235612_at\"                   \"235985_at\"                  \n",
+       "[50129] \"238805_at\"                   \"238347_at\"                  \n",
+       "[50131] \"238805_at\"                   \"239103_at\"                  \n",
+       "[50133] \"240268_at\"                   \"239288_at\"                  \n",
+       "[50135] \"236321_at\"                   \"236553_at\"                  \n",
+       "[50137] \"237470_at\"                   \"240183_at\"                  \n",
+       "[50139] \"239593_at\"                   \"236785_at\"                  \n",
+       "[50141] \"239431_at\"                   \"236072_at\"                  \n",
+       "[50143] \"239137_x_at\"                 \"236935_at\"                  \n",
+       "[50145] \"240081_at\"                   \"239307_at\"                  \n",
+       "[50147] \"239307_at\"                   \"240344_x_at\"                \n",
+       "[50149] \"235590_at\"                   \"238429_at\"                  \n",
+       "[50151] \"235708_at\"                   \"236335_at\"                  \n",
+       "[50153] \"235513_at\"                   \"238638_at\"                  \n",
+       "[50155] \"236330_at\"                   \"238497_at\"                  \n",
+       "[50157] \"237833_s_at\"                 \"237834_at\"                  \n",
+       "[50159] \"237252_at\"                   \"238328_at\"                  \n",
+       "[50161] \"238179_at\"                   \"238179_at\"                  \n",
+       "[50163] \"239715_at\"                   \"237205_at\"                  \n",
+       "[50165] \"237806_s_at\"                 \"237805_at\"                  \n",
+       "[50167] \"236846_at\"                   \"239548_at\"                  \n",
+       "[50169] \"236536_at\"                   \"236040_at\"                  \n",
+       "[50171] \"237033_at\"                   \"239921_at\"                  \n",
+       "[50173] \"235761_at\"                   \"237322_at\"                  \n",
+       "[50175] \"237494_at\"                   \"237654_at\"                  \n",
+       "[50177] \"239584_at\"                   \"238061_at\"                  \n",
+       "[50179] \"236645_at\"                   \"237413_at\"                  \n",
+       "[50181] \"237255_at\"                   \"238123_at\"                  \n",
+       "[50183] \"236403_at\"                   \"239015_at\"                  \n",
+       "[50185] \"236508_at\"                   \"240082_s_at\"                \n",
+       "[50187] \"235706_at\"                   \"239535_at\"                  \n",
+       "[50189] \"239924_at\"                   \"235816_s_at\"                \n",
+       "[50191] \"239248_at\"                   \"236520_at\"                  \n",
+       "[50193] \"238732_at\"                   \"236204_at\"                  \n",
+       "[50195] \"239789_at\"                   \"237271_at\"                  \n",
+       "[50197] \"237151_s_at\"                 \"237152_at\"                  \n",
+       "[50199] \"239632_at\"                   \"238692_at\"                  \n",
+       "[50201] \"236030_at\"                   \"235541_at\"                  \n",
+       "[50203] \"237021_at\"                   \"237260_at\"                  \n",
+       "[50205] \"239303_at\"                   \"239369_at\"                  \n",
+       "[50207] \"239703_at\"                   \"237848_at\"                  \n",
+       "[50209] \"238683_at\"                   \"238794_at\"                  \n",
+       "[50211] \"236027_at\"                   \"238590_x_at\"                \n",
+       "[50213] \"235490_at\"                   \"239824_s_at\"                \n",
+       "[50215] \"237760_at\"                   \"235490_at\"                  \n",
+       "[50217] \"238146_at\"                   \"239219_at\"                  \n",
+       "[50219] \"236618_at\"                   \"239420_at\"                  \n",
+       "[50221] \"239422_at\"                   \"236064_at\"                  \n",
+       "[50223] \"239710_at\"                   \"238964_at\"                  \n",
+       "[50225] \"238885_at\"                   \"237101_at\"                  \n",
+       "[50227] \"239741_at\"                   \"236491_at\"                  \n",
+       "[50229] \"240429_at\"                   \"239082_at\"                  \n",
+       "[50231] \"236377_at\"                   \"237286_at\"                  \n",
+       "[50233] \"239204_at\"                   \"239738_at\"                  \n",
+       "[50235] \"236188_s_at\"                 \"240100_at\"                  \n",
+       "[50237] \"235647_at\"                   \"237899_at\"                  \n",
+       "[50239] \"237899_at\"                   \"239916_at\"                  \n",
+       "[50241] \"238708_at\"                   \"240259_at\"                  \n",
+       "[50243] \"240259_at\"                   \"236262_at\"                  \n",
+       "[50245] \"237439_at\"                   \"236129_at\"                  \n",
+       "[50247] \"237183_at\"                   \"236550_s_at\"                \n",
+       "[50249] \"236551_at\"                   \"235557_at\"                  \n",
+       "[50251] \"237170_at\"                   \"236424_at\"                  \n",
+       "[50253] \"239637_at\"                   \"237515_at\"                  \n",
+       "[50255] \"237029_at\"                   \"237610_at\"                  \n",
+       "[50257] \"235987_at\"                   \"239401_at\"                  \n",
+       "[50259] \"240025_x_at\"                 \"239221_at\"                  \n",
+       "[50261] \"237476_at\"                   \"240029_at\"                  \n",
+       "[50263] \"237829_at\"                   \"239203_at\"                  \n",
+       "[50265] \"238532_at\"                   \"236442_at\"                  \n",
+       "[50267] \"236089_at\"                   \"239952_at\"                  \n",
+       "[50269] \"236808_at\"                   \"236677_at\"                  \n",
+       "[50271] \"238570_at\"                   \"239924_at\"                  \n",
+       "[50273] \"236236_at\"                   \"238955_at\"                  \n",
+       "[50275] \"239705_at\"                   \"238017_at\"                  \n",
+       "[50277] \"235773_at\"                   \"238488_at\"                  \n",
+       "[50279] \"237896_at\"                   \"238472_at\"                  \n",
+       "[50281] \"237032_x_at\"                 \"236001_at\"                  \n",
+       "[50283] \"236140_at\"                   \"238002_at\"                  \n",
+       "[50285] \"238454_at\"                   \"236170_x_at\"                \n",
+       "[50287] \"237992_at\"                   \"236831_at\"                  \n",
+       "[50289] \"238121_at\"                   \"240447_at\"                  \n",
+       "[50291] \"238488_at\"                   \"235495_at\"                  \n",
+       "[50293] \"239377_at\"                   \"239077_at\"                  \n",
+       "[50295] \"239158_at\"                   \"238721_at\"                  \n",
+       "[50297] \"237540_at\"                   \"240257_at\"                  \n",
+       "[50299] \"239337_at\"                   \"238229_at\"                  \n",
+       "[50301] \"240312_at\"                   \"235560_at\"                  \n",
+       "[50303] \"238904_at\"                   \"239522_at\"                  \n",
+       "[50305] \"238754_at\"                   \"236576_at\"                  \n",
+       "[50307] \"239525_at\"                   \"235614_at\"                  \n",
+       "[50309] \"240273_at\"                   \"238664_s_at\"                \n",
+       "[50311] \"240103_at\"                   \"237273_at\"                  \n",
+       "[50313] \"237115_at\"                   \"238653_at\"                  \n",
+       "[50315] \"236254_at\"                   \"236401_at\"                  \n",
+       "[50317] \"236583_at\"                   \"239438_at\"                  \n",
+       "[50319] \"237202_at\"                   \"239109_at\"                  \n",
+       "[50321] \"239110_s_at\"                 \"238881_at\"                  \n",
+       "[50323] \"237808_at\"                   \"238543_x_at\"                \n",
+       "[50325] \"240391_at\"                   \"238753_at\"                  \n",
+       "[50327] \"237083_at\"                   \"237063_at\"                  \n",
+       "[50329] \"240032_at\"                   \"238778_at\"                  \n",
+       "[50331] \"238451_at\"                   \"237495_at\"                  \n",
+       "[50333] \"240051_at\"                   \"236207_at\"                  \n",
+       "[50335] \"235665_at\"                   \"235815_at\"                  \n",
+       "[50337] \"235616_at\"                   \"238577_s_at\"                \n",
+       "[50339] \"236453_at\"                   \"235721_at\"                  \n",
+       "[50341] \"237222_at\"                   \"237200_at\"                  \n",
+       "[50343] \"239643_at\"                   \"236227_at\"                  \n",
+       "[50345] \"238783_at\"                   \"238757_at\"                  \n",
+       "[50347] \"238508_at\"                   \"237147_at\"                  \n",
+       "[50349] \"239837_at\"                   \"239810_at\"                  \n",
+       "[50351] \"239616_at\"                   \"236131_at\"                  \n",
+       "[50353] \"239877_at\"                   \"239690_at\"                  \n",
+       "[50355] \"240242_at\"                   \"240206_at\"                  \n",
+       "[50357] \"239596_at\"                   \"238922_at\"                  \n",
+       "[50359] \"239794_at\"                   \"238219_at\"                  \n",
+       "[50361] \"236196_at\"                   \"238799_at\"                  \n",
+       "[50363] \"239859_x_at\"                 \"237787_at\"                  \n",
+       "[50365] \"237325_at\"                   \"240233_at\"                  \n",
+       "[50367] \"238609_at\"                   \"237687_at\"                  \n",
+       "[50369] \"238622_at\"                   \"235871_at\"                  \n",
+       "[50371] \"236747_at\"                   \"236249_at\"                  \n",
+       "[50373] \"237250_at\"                   \"237863_at\"                  \n",
+       "[50375] \"238105_x_at\"                 \"238618_at\"                  \n",
+       "[50377] \"235715_at\"                   \"236655_at\"                  \n",
+       "[50379] \"236655_at\"                   \"238163_at\"                  \n",
+       "[50381] \"238331_at\"                   \"235635_at\"                  \n",
+       "[50383] \"239107_at\"                   \"236217_at\"                  \n",
+       "[50385] \"235880_at\"                   \"235930_at\"                  \n",
+       "[50387] \"236529_at\"                   \"236133_x_at\"                \n",
+       "[50389] \"236491_at\"                   \"240169_at\"                  \n",
+       "[50391] \"238835_at\"                   \"238583_at\"                  \n",
+       "[50393] \"240169_at\"                   \"238567_at\"                  \n",
+       "[50395] \"235626_at\"                   \"239349_at\"                  \n",
+       "[50397] \"239983_at\"                   \"237212_at\"                  \n",
+       "[50399] \"239580_at\"                   \"238030_at\"                  \n",
+       "[50401] \"238192_at\"                   \"236939_at\"                  \n",
+       "[50403] \"235746_s_at\"                 \"240039_at\"                  \n",
+       "[50405] \"239290_at\"                   \"240376_s_at\"                \n",
+       "[50407] \"236564_at\"                   \"240324_at\"                  \n",
+       "[50409] \"237543_at\"                   \"238863_x_at\"                \n",
+       "[50411] \"238810_at\"                   \"238863_x_at\"                \n",
+       "[50413] \"236034_at\"                   \"237261_at\"                  \n",
+       "[50415] \"236430_at\"                   \"235872_at\"                  \n",
+       "[50417] \"239257_at\"                   \"238539_at\"                  \n",
+       "[50419] \"237162_at\"                   \"238789_at\"                  \n",
+       "[50421] \"238554_at\"                   \"235823_at\"                  \n",
+       "[50423] \"237577_at\"                   \"236787_at\"                  \n",
+       "[50425] \"239211_at\"                   \"239211_at\"                  \n",
+       "[50427] \"235545_at\"                   \"237598_at\"                  \n",
+       "[50429] \"239617_at\"                   \"235932_x_at\"                \n",
+       "[50431] \"238561_s_at\"                 \"238562_at\"                  \n",
+       "[50433] \"238669_at\"                   \"235778_s_at\"                \n",
+       "[50435] \"235777_at\"                   \"238426_at\"                  \n",
+       "[50437] \"237789_at\"                   \"235700_at\"                  \n",
+       "[50439] \"236098_at\"                   \"236886_at\"                  \n",
+       "[50441] \"239150_at\"                   \"237240_at\"                  \n",
+       "[50443] \"240070_at\"                   \"239670_at\"                  \n",
+       "[50445] \"235617_x_at\"                 \"238947_at\"                  \n",
+       "[50447] \"237056_at\"                   \"236042_at\"                  \n",
+       "[50449] \"239322_at\"                   \"236365_at\"                  \n",
+       "[50451] \"239328_at\"                   \"235532_at\"                  \n",
+       "[50453] \"236622_at\"                   \"238608_at\"                  \n",
+       "[50455] \"237559_at\"                   \"236749_at\"                  \n",
+       "[50457] \"238931_at\"                   \"239337_at\"                  \n",
+       "[50459] \"236261_at\"                   \"238575_at\"                  \n",
+       "[50461] \"235889_at\"                   \"236587_at\"                  \n",
+       "[50463] \"238293_at\"                   \"238057_at\"                  \n",
+       "[50465] \"237759_at\"                   \"238771_at\"                  \n",
+       "[50467] \"235553_at\"                   \"240021_at\"                  \n",
+       "[50469] \"236481_at\"                   \"236138_at\"                  \n",
+       "[50471] \"239232_at\"                   \"236709_at\"                  \n",
+       "[50473] \"240209_at\"                   \"236927_at\"                  \n",
+       "[50475] \"238515_at\"                   \"238164_at\"                  \n",
+       "[50477] \"235569_at\"                   \"239194_at\"                  \n",
+       "[50479] \"239018_at\"                   \"236888_at\"                  \n",
+       "[50481] \"236888_at\"                   \"237161_at\"                  \n",
+       "[50483] \"237743_at\"                   \"239748_x_at\"                \n",
+       "[50485] \"239384_at\"                   \"239289_x_at\"                \n",
+       "[50487] \"238467_at\"                   \"239515_at\"                  \n",
+       "[50489] \"235548_at\"                   \"239786_at\"                  \n",
+       "[50491] \"238258_at\"                   \"235781_at\"                  \n",
+       "[50493] \"236359_at\"                   \"236469_at\"                  \n",
+       "[50495] \"238690_at\"                   \"239154_at\"                  \n",
+       "[50497] \"238782_at\"                   \"238548_at\"                  \n",
+       "[50499] \"238856_s_at\"                 \"239435_x_at\"                \n",
+       "[50501] \"239732_x_at\"                 \"235577_at\"                  \n",
+       "[50503] \"236095_at\"                   \"239538_at\"                  \n",
+       "[50505] \"240192_at\"                   \"235856_at\"                  \n",
+       "[50507] \"236303_at\"                   \"239773_at\"                  \n",
+       "[50509] \"239773_at\"                   \"239864_at\"                  \n",
+       "[50511] \"236043_at\"                   \"235764_at\"                  \n",
+       "[50513] \"239335_at\"                   \"239700_at\"                  \n",
+       "[50515] \"238862_at\"                   \"239304_at\"                  \n",
+       "[50517] \"236744_at\"                   \"238444_at\"                  \n",
+       "[50519] \"236218_at\"                   \"239027_at\"                  \n",
+       "[50521] \"236035_at\"                   \"237659_at\"                  \n",
+       "[50523] \"235546_at\"                   \"239669_at\"                  \n",
+       "[50525] \"235599_at\"                   \"239275_at\"                  \n",
+       "[50527] \"236471_at\"                   \"238152_at\"                  \n",
+       "[50529] \"236041_at\"                   \"238072_at\"                  \n",
+       "[50531] \"240343_at\"                   \"238761_at\"                  \n",
+       "[50533] \"236760_at\"                   \"237206_at\"                  \n",
+       "[50535] \"236050_at\"                   \"236208_at\"                  \n",
+       "[50537] \"238020_at\"                   \"238533_at\"                  \n",
+       "[50539] \"238584_at\"                   \"235975_at\"                  \n",
+       "[50541] \"239196_at\"                   \"238439_at\"                  \n",
+       "[50543] \"237522_at\"                   \"240284_x_at\"                \n",
+       "[50545] \"240284_x_at\"                 \"237430_at\"                  \n",
+       "[50547] \"237430_at\"                   \"238589_s_at\"                \n",
+       "[50549] \"237434_x_at\"                 \"239768_x_at\"                \n",
+       "[50551] \"236026_at\"                   \"238981_at\"                  \n",
+       "[50553] \"238255_at\"                   \"235711_at\"                  \n",
+       "[50555] \"235711_at\"                   \"238859_at\"                  \n",
+       "[50557] \"239433_at\"                   \"235916_at\"                  \n",
+       "[50559] \"236148_at\"                   \"238699_s_at\"                \n",
+       "[50561] \"238698_at\"                   \"238852_at\"                  \n",
+       "[50563] \"238423_at\"                   \"235604_x_at\"                \n",
+       "[50565] \"240155_x_at\"                 \"238122_at\"                  \n",
+       "[50567] \"240127_at\"                   \"237910_x_at\"                \n",
+       "[50569] \"239360_at\"                   \"235634_at\"                  \n",
+       "[50571] \"238218_at\"                   \"240168_at\"                  \n",
+       "[50573] \"235796_at\"                   \"238050_at\"                  \n",
+       "[50575] \"238138_at\"                   \"238034_at\"                  \n",
+       "[50577] \"237619_at\"                   \"239790_s_at\"                \n",
+       "[50579] \"238741_at\"                   \"238460_at\"                  \n",
+       "[50581] \"239586_at\"                   \"236724_at\"                  \n",
+       "[50583] \"239576_at\"                   \"238658_at\"                  \n",
+       "[50585] \"236658_at\"                   \"239388_at\"                  \n",
+       "[50587] \"237418_at\"                   \"235516_at\"                  \n",
+       "[50589] \"240300_at\"                   \"239385_at\"                  \n",
+       "[50591] \"239665_at\"                   \"238723_at\"                  \n",
+       "[50593] \"238499_at\"                   \"240153_at\"                  \n",
+       "[50595] \"236488_s_at\"                 \"235902_at\"                  \n",
+       "[50597] \"238617_at\"                   \"239852_at\"                  \n",
+       "[50599] \"236347_at\"                   \"237831_x_at\"                \n",
+       "[50601] \"235902_at\"                   \"238553_at\"                  \n",
+       "[50603] \"239151_at\"                   \"237939_at\"                  \n",
+       "[50605] \"237204_at\"                   \"235887_at\"                  \n",
+       "[50607] \"236731_at\"                   \"237595_at\"                  \n",
+       "[50609] \"239057_at\"                   \"239042_at\"                  \n",
+       "[50611] \"235677_at\"                   \"235700_at\"                  \n",
+       "[50613] \"235700_at\"                   \"238298_at\"                  \n",
+       "[50615] \"237542_at\"                   \"240005_at\"                  \n",
+       "[50617] \"238015_at\"                   \"236812_at\"                  \n",
+       "[50619] \"238675_x_at\"                 \"236185_at\"                  \n",
+       "[50621] \"236383_at\"                   \"235978_at\"                  \n",
+       "[50623] \"236126_at\"                   \"236028_at\"                  \n",
+       "[50625] \"235720_at\"                   \"238725_at\"                  \n",
+       "[50627] \"236497_at\"                   \"236614_at\"                  \n",
+       "[50629] \"239801_at\"                   \"238594_x_at\"                \n",
+       "[50631] \"240441_at\"                   \"240441_at\"                  \n",
+       "[50633] \"235799_at\"                   \"235536_at\"                  \n",
+       "[50635] \"238474_at\"                   \"239930_at\"                  \n",
+       "[50637] \"236899_at\"                   \"235692_at\"                  \n",
+       "[50639] \"240383_at\"                   \"239609_s_at\"                \n",
+       "[50641] \"239608_at\"                   \"238542_at\"                  \n",
+       "[50643] \"236326_at\"                   \"236008_at\"                  \n",
+       "[50645] \"235982_at\"                   \"236780_at\"                  \n",
+       "[50647] \"239875_at\"                   \"237603_at\"                  \n",
+       "[50649] \"235955_at\"                   \"239258_at\"                  \n",
+       "[50651] \"235596_at\"                   \"236581_at\"                  \n",
+       "[50653] \"239049_at\"                   \"239050_s_at\"                \n",
+       "[50655] \"240332_at\"                   \"235562_at\"                  \n",
+       "[50657] \"236937_at\"                   \"239831_at\"                  \n",
+       "[50659] \"238678_at\"                   \"237675_at\"                  \n",
+       "[50661] \"238417_at\"                   \"235937_at\"                  \n",
+       "[50663] \"236875_at\"                   \"239266_at\"                  \n",
+       "[50665] \"239963_at\"                   \"235594_at\"                  \n",
+       "[50667] \"236308_at\"                   \"238716_at\"                  \n",
+       "[50669] \"238458_at\"                   \"239346_at\"                  \n",
+       "[50671] \"235902_at\"                   \"237550_at\"                  \n",
+       "[50673] \"239830_at\"                   \"238779_at\"                  \n",
+       "[50675] \"238024_at\"                   \"239839_at\"                  \n",
+       "[50677] \"239047_at\"                   \"236070_at\"                  \n",
+       "[50679] \"239922_at\"                   \"236421_at\"                  \n",
+       "[50681] \"240160_x_at\"                 \"236225_at\"                  \n",
+       "[50683] \"236055_at\"                   \"235759_at\"                  \n",
+       "[50685] \"239929_at\"                   \"236905_at\"                  \n",
+       "[50687] \"239006_at\"                   \"238500_at\"                  \n",
+       "[50689] \"235950_at\"                   \"238004_at\"                  \n",
+       "[50691] \"237097_at\"                   \"239472_at\"                  \n",
+       "[50693] \"235812_at\"                   \"236068_s_at\"                \n",
+       "[50695] \"237406_at\"                   \"236800_at\"                  \n",
+       "[50697] \"238935_at\"                   \"236904_x_at\"                \n",
+       "[50699] \"236904_x_at\"                 \"235751_s_at\"                \n",
+       "[50701] \"235965_at\"                   \"237583_at\"                  \n",
+       "[50703] \"235660_at\"                   \"238158_at\"                  \n",
+       "[50705] \"237817_at\"                   \"239242_at\"                  \n",
+       "[50707] \"240180_at\"                   \"240280_at\"                  \n",
+       "[50709] \"236523_at\"                   \"240140_s_at\"                \n",
+       "[50711] \"238339_x_at\"                 \"238487_at\"                  \n",
+       "[50713] \"239068_at\"                   \"236264_at\"                  \n",
+       "[50715] \"236711_at\"                   \"236641_at\"                  \n",
+       "[50717] \"239933_x_at\"                 \"237382_at\"                  \n",
+       "[50719] \"236792_at\"                   \"239590_x_at\"                \n",
+       "[50721] \"239828_at\"                   \"236278_at\"                  \n",
+       "[50723] \"236504_x_at\"                 \"239417_x_at\"                \n",
+       "[50725] \"240329_at\"                   \"236495_at\"                  \n",
+       "[50727] \"236313_at\"                   \"236260_at\"                  \n",
+       "[50729] \"236162_at\"                   \"238494_at\"                  \n",
+       "[50731] \"236029_at\"                   \"240181_at\"                  \n",
+       "[50733] \"235949_at\"                   \"238311_at\"                  \n",
+       "[50735] \"238291_at\"                   \"238602_at\"                  \n",
+       "[50737] \"238853_at\"                   \"238526_at\"                  \n",
+       "[50739] \"236123_at\"                   \"238512_at\"                  \n",
+       "[50741] \"235801_at\"                   \"238625_at\"                  \n",
+       "[50743] \"239188_at\"                   \"238350_at\"                  \n",
+       "[50745] \"236703_at\"                   \"238615_at\"                  \n",
+       "[50747] \"237861_at\"                   \"236109_at\"                  \n",
+       "[50749] \"239136_at\"                   \"236109_at\"                  \n",
+       "[50751] \"235766_x_at\"                 \"239148_at\"                  \n",
+       "[50753] \"239350_at\"                   \"236920_at\"                  \n",
+       "[50755] \"236493_at\"                   \"236493_at\"                  \n",
+       "[50757] \"236920_at\"                   \"236493_at\"                  \n",
+       "[50759] \"239444_at\"                   \"236071_at\"                  \n",
+       "[50761] \"239671_at\"                   \"236186_x_at\"                \n",
+       "[50763] \"236203_at\"                   \"236294_at\"                  \n",
+       "[50765] \"239717_at\"                   \"235944_at\"                  \n",
+       "[50767] \"240367_at\"                   \"239394_at\"                  \n",
+       "[50769] \"239623_at\"                   \"236642_at\"                  \n",
+       "[50771] \"236894_at\"                   \"239798_at\"                  \n",
+       "[50773] \"237035_at\"                   \"237015_at\"                  \n",
+       "[50775] \"239937_at\"                   \"240021_at\"                  \n",
+       "[50777] \"238612_at\"                   \"240360_at\"                  \n",
+       "[50779] \"238650_x_at\"                 \"238820_at\"                  \n",
+       "[50781] \"240320_at\"                   \"238597_at\"                  \n",
+       "[50783] \"240049_at\"                   \"236300_at\"                  \n",
+       "[50785] \"235559_at\"                   \"235559_at\"                  \n",
+       "[50787] \"235582_at\"                   \"235852_at\"                  \n",
+       "[50789] \"235828_at\"                   \"236513_at\"                  \n",
+       "[50791] \"236626_at\"                   \"239565_at\"                  \n",
+       "[50793] \"235659_at\"                   \"236745_at\"                  \n",
+       "[50795] \"236724_at\"                   \"237465_at\"                  \n",
+       "[50797] \"239694_at\"                   \"239691_at\"                  \n",
+       "[50799] \"239333_x_at\"                 \"235588_at\"                  \n",
+       "[50801] \"235902_at\"                   \"236245_at\"                  \n",
+       "[50803] \"236502_at\"                   \"235849_at\"                  \n",
+       "[50805] \"236902_at\"                   \"239432_at\"                  \n",
+       "[50807] \"239193_at\"                   \"238841_at\"                  \n",
+       "[50809] \"239779_at\"                   \"236413_at\"                  \n",
+       "[50811] \"239529_at\"                   \"239529_at\"                  \n",
+       "[50813] \"236673_at\"                   \"238011_at\"                  \n",
+       "[50815] \"238011_at\"                   \"239830_at\"                  \n",
+       "[50817] \"238080_at\"                   \"238795_at\"                  \n",
+       "[50819] \"239315_at\"                   \"239619_at\"                  \n",
+       "[50821] \"239506_s_at\"                 \"239507_at\"                  \n",
+       "[50823] \"239382_at\"                   \"238506_at\"                  \n",
+       "[50825] \"239508_x_at\"                 \"239203_at\"                  \n",
+       "[50827] \"239793_at\"                   \"237905_at\"                  \n",
+       "[50829] \"240388_at\"                   \"238975_at\"                  \n",
+       "[50831] \"239079_at\"                   \"235745_at\"                  \n",
+       "[50833] \"239045_at\"                   \"238722_x_at\"                \n",
+       "[50835] \"239205_s_at\"                 \"239206_at\"                  \n",
+       "[50837] \"235723_at\"                   \"238478_at\"                  \n",
+       "[50839] \"239780_at\"                   \"237729_at\"                  \n",
+       "[50841] \"240170_at\"                   \"235855_at\"                  \n",
+       "[50843] \"237316_at\"                   \"238463_at\"                  \n",
+       "[50845] \"236024_at\"                   \"235732_at\"                  \n",
+       "[50847] \"235905_at\"                   \"237031_at\"                  \n",
+       "[50849] \"238945_at\"                   \"236889_at\"                  \n",
+       "[50851] \"239503_at\"                   \"237086_at\"                  \n",
+       "[50853] \"236222_at\"                   \"239239_at\"                  \n",
+       "[50855] \"238704_at\"                   \"239590_x_at\"                \n",
+       "[50857] \"238572_at\"                   \"238438_at\"                  \n",
+       "[50859] \"235730_at\"                   \"239479_x_at\"                \n",
+       "[50861] \"235505_s_at\"                 \"237711_at\"                  \n",
+       "[50863] \"237711_at\"                   \"236304_at\"                  \n",
+       "[50865] \"237266_at\"                   \"237320_at\"                  \n",
+       "[50867] \"236761_at\"                   \"240366_at\"                  \n",
+       "[50869] \"239656_at\"                   \"240015_at\"                  \n",
+       "[50871] \"236291_at\"                   \"237231_at\"                  \n",
+       "[50873] \"239878_at\"                   \"238739_at\"                  \n",
+       "[50875] \"237378_at\"                   \"237137_at\"                  \n",
+       "[50877] \"237137_at\"                   \"239025_at\"                  \n",
+       "[50879] \"236396_at\"                   \"236826_at\"                  \n",
+       "[50881] \"238247_at\"                   \"237187_at\"                  \n",
+       "[50883] \"235936_at\"                   \"238603_at\"                  \n",
+       "[50885] \"240119_at\"                   \"240144_at\"                  \n",
+       "[50887] \"239622_at\"                   \"239806_at\"                  \n",
+       "[50889] \"236525_at\"                   \"238029_s_at\"                \n",
+       "[50891] \"239345_at\"                   \"235740_at\"                  \n",
+       "[50893] \"238518_x_at\"                 \"237012_at\"                  \n",
+       "[50895] \"238818_at\"                   \"239594_at\"                  \n",
+       "[50897] \"236914_at\"                   \"236914_at\"                  \n",
+       "[50899] \"238284_at\"                   \"236255_at\"                  \n",
+       "[50901] \"238742_x_at\"                 \"237272_at\"                  \n",
+       "[50903] \"237734_s_at\"                 \"237735_at\"                  \n",
+       "[50905] \"237017_s_at\"                 \"239296_at\"                  \n",
+       "[50907] \"239128_at\"                   \"235970_at\"                  \n",
+       "[50909] \"239128_at\"                   \"236766_at\"                  \n",
+       "[50911] \"235509_at\"                   \"237287_at\"                  \n",
+       "[50913] \"237894_at\"                   \"240095_at\"                  \n",
+       "[50915] \"236885_at\"                   \"240317_at\"                  \n",
+       "[50917] \"239443_at\"                   \"237395_at\"                  \n",
+       "[50919] \"240433_x_at\"                 \"237224_at\"                  \n",
+       "[50921] \"239846_at\"                   \"240445_at\"                  \n",
+       "[50923] \"238821_at\"                   \"236296_x_at\"                \n",
+       "[50925] \"240373_at\"                   \"237990_x_at\"                \n",
+       "[50927] \"238073_at\"                   \"237638_at\"                  \n",
+       "[50929] \"239197_s_at\"                 \"239198_at\"                  \n",
+       "[50931] \"238085_at\"                   \"238153_at\"                  \n",
+       "[50933] \"237291_at\"                   \"236411_at\"                  \n",
+       "[50935] \"239365_at\"                   \"236578_at\"                  \n",
+       "[50937] \"237637_at\"                   \"239105_at\"                  \n",
+       "[50939] \"237601_at\"                   \"240380_at\"                  \n",
+       "[50941] \"235638_at\"                   \"236527_at\"                  \n",
+       "[50943] \"235556_at\"                   \"238476_at\"                  \n",
+       "[50945] \"236613_at\"                   \"238801_at\"                  \n",
+       "[50947] \"239767_at\"                   \"239021_at\"                  \n",
+       "[50949] \"236263_at\"                   \"236169_at\"                  \n",
+       "[50951] \"240374_at\"                   \"240415_at\"                  \n",
+       "[50953] \"235543_at\"                   \"238758_at\"                  \n",
+       "[50955] \"235543_at\"                   \"236357_at\"                  \n",
+       "[50957] \"238598_s_at\"                 \"238430_x_at\"                \n",
+       "[50959] \"237411_at\"                   \"236572_at\"                  \n",
+       "[50961] \"236693_at\"                   \"238661_at\"                  \n",
+       "[50963] \"236930_at\"                   \"240117_at\"                  \n",
+       "[50965] \"236967_at\"                   \"239459_s_at\"                \n",
+       "[50967] \"239460_at\"                   \"238027_at\"                  \n",
+       "[50969] \"238869_at\"                   \"235710_at\"                  \n",
+       "[50971] \"235882_at\"                   \"236081_at\"                  \n",
+       "[50973] \"237369_at\"                   \"238495_at\"                  \n",
+       "[50975] \"236374_at\"                   \"239663_x_at\"                \n",
+       "[50977] \"237908_at\"                   \"239008_at\"                  \n",
+       "[50979] \"238762_at\"                   \"239562_at\"                  \n",
+       "[50981] \"240011_at\"                   \"236666_s_at\"                \n",
+       "[50983] \"238406_x_at\"                 \"239915_at\"                  \n",
+       "[50985] \"235753_at\"                   \"239950_at\"                  \n",
+       "[50987] \"239950_at\"                   \"239950_at\"                  \n",
+       "[50989] \"239950_at\"                   \"238808_at\"                  \n",
+       "[50991] \"238571_at\"                   \"239577_at\"                  \n",
+       "[50993] \"237041_x_at\"                 \"239319_at\"                  \n",
+       "[50995] \"238844_s_at\"                 \"238843_at\"                  \n",
+       "[50997] \"237824_at\"                   \"238230_x_at\"                \n",
+       "[50999] \"235737_at\"                   \"238677_at\"                  \n",
+       "[51001] \"238266_at\"                   \"238132_at\"                  \n",
+       "[51003] \"238824_at\"                   \"237652_at\"                  \n",
+       "[51005] \"238089_at\"                   \"239316_at\"                  \n",
+       "[51007] \"238005_s_at\"                 \"238006_at\"                  \n",
+       "[51009] \"239727_at\"                   \"238816_at\"                  \n",
+       "[51011] \"240173_at\"                   \"238378_at\"                  \n",
+       "[51013] \"236543_at\"                   \"237690_at\"                  \n",
+       "[51015] \"235958_at\"                   \"239406_at\"                  \n",
+       "[51017] \"240412_s_at\"                 \"240411_at\"                  \n",
+       "[51019] \"239648_at\"                   \"238971_at\"                  \n",
+       "[51021] \"236178_at\"                   \"236178_at\"                  \n",
+       "[51023] \"235954_at\"                   \"239777_at\"                  \n",
+       "[51025] \"237460_x_at\"                 \"239777_at\"                  \n",
+       "[51027] \"237460_x_at\"                 \"239964_at\"                  \n",
+       "[51029] \"236991_at\"                   \"238691_at\"                  \n",
+       "[51031] \"239315_at\"                   \"235672_at\"                  \n",
+       "[51033] \"236950_s_at\"                 \"235521_at\"                  \n",
+       "[51035] \"235902_at\"                   \"235902_at\"                  \n",
+       "[51037] \"238086_at\"                   \"236698_at\"                  \n",
+       "[51039] \"239633_at\"                   \"236192_at\"                  \n",
+       "[51041] \"238465_at\"                   \"235857_at\"                  \n",
+       "[51043] \"238096_at\"                   \"239094_at\"                  \n",
+       "[51045] \"236771_at\"                   \"237765_at\"                  \n",
+       "[51047] \"239051_at\"                   \"238678_at\"                  \n",
+       "[51049] \"237339_at\"                   \"238538_at\"                  \n",
+       "[51051] \"238369_s_at\"                 \"238924_at\"                  \n",
+       "[51053] \"239151_at\"                   \"238939_at\"                  \n",
+       "[51055] \"238045_at\"                   \"238786_at\"                  \n",
+       "[51057] \"238642_at\"                   \"236848_s_at\"                \n",
+       "[51059] \"238217_at\"                   \"239247_at\"                  \n",
+       "[51061] \"239681_at\"                   \"238980_x_at\"                \n",
+       "[51063] \"236737_at\"                   \"239792_at\"                  \n",
+       "[51065] \"238511_at\"                   \"237909_at\"                  \n",
+       "[51067] \"239523_at\"                   \"237620_at\"                  \n",
+       "[51069] \"239581_at\"                   \"239403_at\"                  \n",
+       "[51071] \"239753_at\"                   \"237046_x_at\"                \n",
+       "[51073] \"240363_at\"                   \"236448_at\"                  \n",
+       "[51075] \"238435_at\"                   \"236840_at\"                  \n",
+       "[51077] \"239051_at\"                   \"240230_s_at\"                \n",
+       "[51079] \"238924_at\"                   \"240230_s_at\"                \n",
+       "[51081] \"235923_at\"                   \"236849_at\"                  \n",
+       "[51083] \"237585_at\"                   \"236915_at\"                  \n",
+       "[51085] \"236863_at\"                   \"236267_at\"                  \n",
+       "[51087] \"238694_at\"                   \"238457_at\"                  \n",
+       "[51089] \"236596_at\"                   \"239627_at\"                  \n",
+       "[51091] \"239587_at\"                   \"239371_at\"                  \n",
+       "[51093] \"239305_at\"                   \"238220_at\"                  \n",
+       "[51095] \"236211_at\"                   \"237304_at\"                  \n",
+       "[51097] \"237882_at\"                   \"237882_at\"                  \n",
+       "[51099] \"237490_at\"                   \"237333_at\"                  \n",
+       "[51101] \"236195_x_at\"                 \"235735_at\"                  \n",
+       "[51103] \"237169_at\"                   \"235669_at\"                  \n",
+       "[51105] \"239725_at\"                   \"235818_at\"                  \n",
+       "[51107] \"237544_at\"                   \"236689_at\"                  \n",
+       "[51109] \"238118_s_at\"                 \"238117_at\"                  \n",
+       "[51111] \"239590_x_at\"                 \"238109_at\"                  \n",
+       "[51113] \"236496_at\"                   \"236730_at\"                  \n",
+       "[51115] \"238312_s_at\"                 \"239590_x_at\"                \n",
+       "[51117] \"239590_x_at\"                 \"238312_s_at\"                \n",
+       "[51119] \"240014_at\"                   \"239607_at\"                  \n",
+       "[51121] \"239590_x_at\"                 \"236706_at\"                  \n",
+       "[51123] \"237909_at\"                   \"238983_at\"                  \n",
+       "[51125] \"238974_at\"                   \"235686_at\"                  \n",
+       "[51127] \"238554_at\"                   \"237693_at\"                  \n",
+       "[51129] \"237254_at\"                   \"238486_at\"                  \n",
+       "[51131] \"236079_at\"                   \"240282_at\"                  \n",
+       "[51133] \"236485_at\"                   \"237621_at\"                  \n",
+       "[51135] \"239774_at\"                   \"238606_at\"                  \n",
+       "[51137] \"239935_at\"                   \"238084_at\"                  \n",
+       "[51139] \"235921_at\"                   \"236274_at\"                  \n",
+       "[51141] \"239853_at\"                   \"236909_at\"                  \n",
+       "[51143] \"238062_at\"                   \"237362_at\"                  \n",
+       "[51145] \"237016_at\"                   \"236903_at\"                  \n",
+       "[51147] \"238520_at\"                   \"235770_at\"                  \n",
+       "[51149] \"236729_at\"                   \"238740_at\"                  \n",
+       "[51151] \"237449_at\"                   \"239743_at\"                  \n",
+       "[51153] \"236570_at\"                   \"240063_at\"                  \n",
+       "[51155] \"238028_at\"                   \"238729_x_at\"                \n",
+       "[51157] \"240421_x_at\"                 \"237055_at\"                  \n",
+       "[51159] \"239376_at\"                   \"236380_at\"                  \n",
+       "[51161] \"236213_at\"                   \"237466_s_at\"                \n",
+       "[51163] \"239543_s_at\"                 \"238223_at\"                  \n",
+       "[51165] \"238187_at\"                   \"236315_at\"                  \n",
+       "[51167] \"239590_x_at\"                 \"235765_at\"                  \n",
+       "[51169] \"235696_at\"                   \"238848_at\"                  \n",
+       "[51171] \"239931_at\"                   \"239635_at\"                  \n",
+       "[51173] \"236157_at\"                   \"235840_at\"                  \n",
+       "[51175] \"235678_at\"                   \"238136_at\"                  \n",
+       "[51177] \"240053_x_at\"                 \"238925_at\"                  \n",
+       "[51179] \"235939_at\"                   \"235917_at\"                  \n",
+       "[51181] \"239363_at\"                   \"238600_at\"                  \n",
+       "[51183] \"239298_at\"                   \"237069_s_at\"                \n",
+       "[51185] \"237070_at\"                   \"236281_x_at\"                \n",
+       "[51187] \"236112_at\"                   \"235544_x_at\"                \n",
+       "[51189] \"238365_s_at\"                 \"237236_x_at\"                \n",
+       "[51191] \"237236_x_at\"                 \"237682_at\"                  \n",
+       "[51193] \"238376_at\"                   \"237107_at\"                  \n",
+       "[51195] \"236562_at\"                   \"240087_at\"                  \n",
+       "[51197] \"235564_at\"                   \"235564_at\"                  \n",
+       "[51199] \"236632_at\"                   \"240256_at\"                  \n",
+       "[51201] \"235814_at\"                   \"239398_at\"                  \n",
+       "[51203] \"235869_at\"                   \"240214_at\"                  \n",
+       "[51205] \"238241_at\"                   \"238324_at\"                  \n",
+       "[51207] \"236776_at\"                   \"238213_at\"                  \n",
+       "[51209] \"238687_x_at\"                 \"239336_at\"                  \n",
+       "[51211] \"239552_at\"                   \"238907_at\"                  \n",
+       "[51213] \"239441_at\"                   \"237145_at\"                  \n",
+       "[51215] \"236834_at\"                   \"237061_at\"                  \n",
+       "[51217] \"238819_at\"                   \"240078_at\"                  \n",
+       "[51219] \"239976_at\"                   \"238522_at\"                  \n",
+       "[51221] \"235772_at\"                   \"239954_at\"                  \n",
+       "[51223] \"235540_at\"                   \"238556_at\"                  \n",
+       "[51225] \"239179_at\"                   \"235540_at\"                  \n",
+       "[51227] \"239462_at\"                   \"236957_at\"                  \n",
+       "[51229] \"235702_at\"                   \"238042_at\"                  \n",
+       "[51231] \"239297_at\"                   \"238936_at\"                  \n",
+       "[51233] \"235609_at\"                   \"235670_at\"                  \n",
+       "[51235] \"237504_at\"                   \"236077_at\"                  \n",
+       "[51237] \"235714_at\"                   \"235675_at\"                  \n",
+       "[51239] \"236065_at\"                   \"239494_at\"                  \n",
+       "[51241] \"236433_at\"                   \"239451_at\"                  \n",
+       "[51243] \"235901_at\"                   \"235673_at\"                  \n",
+       "[51245] \"235878_at\"                   \"239913_at\"                  \n",
+       "[51247] \"238654_at\"                   \"238491_at\"                  \n",
+       "[51249] \"236275_at\"                   \"240065_at\"                  \n",
+       "[51251] \"239147_at\"                   \"239684_at\"                  \n",
+       "[51253] \"239291_at\"                   \"237802_at\"                  \n",
+       "[51255] \"237544_at\"                   \"239078_at\"                  \n",
+       "[51257] \"240212_at\"                   \"238346_s_at\"                \n",
+       "[51259] \"239642_at\"                   \"236593_at\"                  \n",
+       "[51261] \"236268_at\"                   \"239056_at\"                  \n",
+       "[51263] \"239708_at\"                   \"236141_at\"                  \n",
+       "[51265] \"239352_at\"                   \"240419_at\"                  \n",
+       "[51267] \"237463_at\"                   \"238416_x_at\"                \n",
+       "[51269] \"235726_at\"                   \"236105_at\"                  \n",
+       "[51271] \"237244_at\"                   \"240110_at\"                  \n",
+       "[51273] \"238984_at\"                   \"235787_at\"                  \n",
+       "[51275] \"239452_at\"                   \"236060_at\"                  \n",
+       "[51277] \"235552_at\"                   \"237363_at\"                  \n",
+       "[51279] \"236871_s_at\"                 \"236870_at\"                  \n",
+       "[51281] \"236767_at\"                   \"240088_at\"                  \n",
+       "[51283] \"239958_at\"                   \"235752_at\"                  \n",
+       "[51285] \"240031_at\"                   \"238337_s_at\"                \n",
+       "[51287] \"235833_at\"                   \"236047_at\"                  \n",
+       "[51289] \"239209_at\"                   \"238666_at\"                  \n",
+       "[51291] \"237052_x_at\"                 \"236032_at\"                  \n",
+       "[51293] \"236866_at\"                   \"238626_at\"                  \n",
+       "[51295] \"235903_at\"                   \"235607_at\"                  \n",
+       "[51297] \"239928_at\"                   \"237338_at\"                  \n",
+       "[51299] \"238628_s_at\"                 \"238627_at\"                  \n",
+       "[51301] \"235776_x_at\"                 \"236444_x_at\"                \n",
+       "[51303] \"236976_at\"                   \"237357_at\"                  \n",
+       "[51305] \"236786_at\"                   \"239273_s_at\"                \n",
+       "[51307] \"239272_at\"                   \"235856_at\"                  \n",
+       "[51309] \"235856_at\"                   \"237929_at\"                  \n",
+       "[51311] \"240305_at\"                   \"238634_x_at\"                \n",
+       "[51313] \"235744_at\"                   \"237024_at\"                  \n",
+       "[51315] \"239659_at\"                   \"239093_at\"                  \n",
+       "[51317] \"240235_at\"                   \"236813_at\"                  \n",
+       "[51319] \"237020_at\"                   \"239044_at\"                  \n",
+       "[51321] \"237630_s_at\"                 \"239038_at\"                  \n",
+       "[51323] \"240069_at\"                   \"238536_at\"                  \n",
+       "[51325] \"238431_at\"                   \"236350_at\"                  \n",
+       "[51327] \"236466_at\"                   \"239311_at\"                  \n",
+       "[51329] \"238979_at\"                   \"237000_at\"                  \n",
+       "[51331] \"238900_at\"                   \"237265_at\"                  \n",
+       "[51333] \"236901_at\"                   \"235657_at\"                  \n",
+       "[51335] \"236121_at\"                   \"237016_at\"                  \n",
+       "[51337] \"235935_at\"                   \"236003_x_at\"                \n",
+       "[51339] \"239065_at\"                   \"238599_at\"                  \n",
+       "[51341] \"238871_at\"                   \"239118_at\"                  \n",
+       "[51343] \"238069_at\"                   \"238833_at\"                  \n",
+       "[51345] \"237044_s_at\"                 \"237753_at\"                  \n",
+       "[51347] \"235929_s_at\"                 \"235928_at\"                  \n",
+       "[51349] \"240289_at\"                   \"235836_at\"                  \n",
+       "[51351] \"239275_at\"                   \"238044_at\"                  \n",
+       "[51353] \"237872_at\"                   \"237872_at\"                  \n",
+       "[51355] \"235685_at\"                   \"236483_at\"                  \n",
+       "[51357] \"237334_at\"                   \"238453_at\"                  \n",
+       "[51359] \"239338_x_at\"                 \"238063_at\"                  \n",
+       "[51361] \"239186_at\"                   \"240037_at\"                  \n",
+       "[51363] \"236510_at\"                   \"239126_at\"                  \n",
+       "[51365] \"239425_at\"                   \"238479_at\"                  \n",
+       "[51367] \"239425_at\"                   \"238479_at\"                  \n",
+       "[51369] \"236405_at\"                   \"238681_at\"                  \n",
+       "[51371] \"235980_at\"                   \"239326_at\"                  \n",
+       "[51373] \"238781_at\"                   \"235611_at\"                  \n",
+       "[51375] \"238962_at\"                   \"238341_at\"                  \n",
+       "[51377] \"237019_at\"                   \"237731_at\"                  \n",
+       "[51379] \"237389_at\"                   \"239620_at\"                  \n",
+       "[51381] \"235774_at\"                   \"236214_at\"                  \n",
+       "[51383] \"236738_at\"                   \"238315_s_at\"                \n",
+       "[51385] \"235648_at\"                   \"238316_at\"                  \n",
+       "[51387] \"239533_at\"                   \"239429_at\"                  \n",
+       "[51389] \"237639_at\"                   \"239882_at\"                  \n",
+       "[51391] \"239429_at\"                   \"240361_at\"                  \n",
+       "[51393] \"236555_at\"                   \"237646_x_at\"                \n",
+       "[51395] \"239177_at\"                   \"240355_at\"                  \n",
+       "[51397] \"239059_at\"                   \"239687_at\"                  \n",
+       "[51399] \"236365_at\"                   \"240452_at\"                  \n",
+       "[51401] \"237365_at\"                   \"237193_s_at\"                \n",
+       "[51403] \"237192_at\"                   \"235707_at\"                  \n",
+       "[51405] \"240175_at\"                   \"238396_at\"                  \n",
+       "[51407] \"236282_at\"                   \"235817_at\"                  \n",
+       "[51409] \"238177_at\"                   \"238383_at\"                  \n",
+       "[51411] \"238215_at\"                   \"236182_at\"                  \n",
+       "[51413] \"239392_s_at\"                 \"239772_x_at\"                \n",
+       "[51415] \"238995_at\"                   \"237158_s_at\"                \n",
+       "[51417] \"240162_at\"                   \"239898_x_at\"                \n",
+       "[51419] \"239998_at\"                   \"238550_at\"                  \n",
+       "[51421] \"238898_at\"                   \"238601_at\"                  \n",
+       "[51423] \"239259_at\"                   \"236358_at\"                  \n",
+       "[51425] \"235747_at\"                   \"238446_at\"                  \n",
+       "[51427] \"236972_at\"                   \"237209_s_at\"                \n",
+       "[51429] \"237210_at\"                   \"239185_at\"                  \n",
+       "[51431] \"239095_at\"                   \"240280_at\"                  \n",
+       "[51433] \"239490_at\"                   \"236832_at\"                  \n",
+       "[51435] \"237646_x_at\"                 \"236589_at\"                  \n",
+       "[51437] \"236682_at\"                   \"237106_at\"                  \n",
+       "[51439] \"239157_at\"                   \"239157_at\"                  \n",
+       "[51441] \"238039_at\"                   \"236635_at\"                  \n",
+       "[51443] \"240136_at\"                   \"236124_at\"                  \n",
+       "[51445] \"239975_at\"                   \"236692_at\"                  \n",
+       "[51447] \"236692_at\"                   \"236174_at\"                  \n",
+       "[51449] \"238791_at\"                   \"238850_at\"                  \n",
+       "[51451] \"239679_at\"                   \"235654_at\"                  \n",
+       "[51453] \"235876_at\"                   \"240444_x_at\"                \n",
+       "[51455] \"235687_at\"                   \"239434_at\"                  \n",
+       "[51457] \"239160_at\"                   \"240447_at\"                  \n",
+       "[51459] \"236591_at\"                   \"238639_x_at\"                \n",
+       "[51461] \"239380_at\"                   \"237393_at\"                  \n",
+       "[51463] \"240210_at\"                   \"236076_at\"                  \n",
+       "[51465] \"239395_at\"                   \"235628_x_at\"                \n",
+       "[51467] \"239430_at\"                   \"236289_at\"                  \n",
+       "[51469] \"238245_at\"                   \"240084_at\"                  \n",
+       "[51471] \"238160_at\"                   \"238484_s_at\"                \n",
+       "[51473] \"238861_at\"                   \"238483_at\"                  \n",
+       "[51475] \"240027_at\"                   \"235792_x_at\"                \n",
+       "[51477] \"238631_at\"                   \"237350_at\"                  \n",
+       "[51479] \"238514_at\"                   \"238222_at\"                  \n",
+       "[51481] \"238022_at\"                   \"238021_s_at\"                \n",
+       "[51483] \"238720_at\"                   \"238720_at\"                  \n",
+       "[51485] \"239579_at\"                   \"238719_at\"                  \n",
+       "[51487] \"235502_at\"                   \"235785_at\"                  \n",
+       "[51489] \"235502_at\"                   \"238815_at\"                  \n",
+       "[51491] \"240311_at\"                   \"239457_at\"                  \n",
+       "[51493] \"238418_at\"                   \"238445_x_at\"                \n",
+       "[51495] \"240096_at\"                   \"240089_at\"                  \n",
+       "[51497] \"239269_at\"                   \"238743_at\"                  \n",
+       "[51499] \"237754_at\"                   \"236873_at\"                  \n",
+       "[51501] \"239845_at\"                   \"237265_at\"                  \n",
+       "[51503] \"239943_x_at\"                 \"236897_at\"                  \n",
+       "[51505] \"235531_at\"                   \"235585_at\"                  \n",
+       "[51507] \"237340_at\"                   \"237144_at\"                  \n",
+       "[51509] \"240376_s_at\"                 \"239800_at\"                  \n",
+       "[51511] \"239122_at\"                   \"238877_at\"                  \n",
+       "[51513] \"236620_at\"                   \"240098_at\"                  \n",
+       "[51515] \"239083_at\"                   \"236860_at\"                  \n",
+       "[51517] \"238678_at\"                   \"239294_at\"                  \n",
+       "[51519] \"239996_x_at\"                 \"235515_at\"                  \n",
+       "[51521] \"235661_at\"                   \"235888_at\"                  \n",
+       "[51523] \"235643_at\"                   \"236441_at\"                  \n",
+       "[51525] \"239751_at\"                   \"238619_at\"                  \n",
+       "[51527] \"238296_at\"                   \"238660_at\"                  \n",
+       "[51529] \"236651_at\"                   \"239668_at\"                  \n",
+       "[51531] \"239668_at\"                   \"238081_at\"                  \n",
+       "[51533] \"239113_at\"                   \"235688_s_at\"                \n",
+       "[51535] \"236168_at\"                   \"236594_at\"                  \n",
+       "[51537] \"235568_at\"                   \"238569_at\"                  \n",
+       "[51539] \"235791_x_at\"                 \"238456_at\"                  \n",
+       "[51541] \"237701_at\"                   \"240353_s_at\"                \n",
+       "[51543] \"240221_at\"                   \"235563_at\"                  \n",
+       "[51545] \"236115_at\"                   \"239412_at\"                  \n",
+       "[51547] \"240239_at\"                   \"235879_at\"                  \n",
+       "[51549] \"236816_at\"                   \"236340_at\"                  \n",
+       "[51551] \"236082_at\"                   \"238188_at\"                  \n",
+       "[51553] \"236629_at\"                   \"238797_at\"                  \n",
+       "[51555] \"238797_at\"                   \"237826_at\"                  \n",
+       "[51557] \"238552_at\"                   \"235979_at\"                  \n",
+       "[51559] \"236142_at\"                   \"240052_at\"                  \n",
+       "[51561] \"235927_at\"                   \"240459_at\"                  \n",
+       "[51563] \"239896_at\"                   \"239237_at\"                  \n",
+       "[51565] \"239381_at\"                   \"239775_at\"                  \n",
+       "[51567] \"239823_at\"                   \"239973_at\"                  \n",
+       "[51569] \"240423_at\"                   \"240194_at\"                  \n",
+       "[51571] \"240424_s_at\"                 \"237930_at\"                  \n",
+       "[51573] \"238540_at\"                   \"239313_at\"                  \n",
+       "[51575] \"239734_at\"                   \"239640_at\"                  \n",
+       "[51577] \"239458_at\"                   \"237299_at\"                  \n",
+       "[51579] \"237911_at\"                   \"239144_at\"                  \n",
+       "[51581] \"238412_at\"                   \"237956_s_at\"                \n",
+       "[51583] \"237237_at\"                   \"235572_at\"                  \n",
+       "[51585] \"238137_at\"                   \"236646_at\"                  \n",
+       "[51587] \"238263_at\"                   \"237597_at\"                  \n",
+       "[51589] \"238180_at\"                   \"239142_at\"                  \n",
+       "[51591] \"236305_at\"                   \"239502_at\"                  \n",
+       "[51593] \"238850_at\"                   \"236468_at\"                  \n",
+       "[51595] \"236824_at\"                   \"239201_at\"                  \n",
+       "[51597] \"236996_at\"                   \"238864_at\"                  \n",
+       "[51599] \"235974_at\"                   \"235712_at\"                  \n",
+       "[51601] \"239031_at\"                   \"236036_at\"                  \n",
+       "[51603] \"238183_at\"                   \"238682_at\"                  \n",
+       "[51605] \"236248_x_at\"                 \"235971_at\"                  \n",
+       "[51607] \"238858_at\"                   \"240318_at\"                  \n",
+       "[51609] \"236538_at\"                   \"236981_at\"                  \n",
+       "[51611] \"238031_at\"                   \"239499_at\"                  \n",
+       "[51613] \"240376_s_at\"                 \"238838_at\"                  \n",
+       "[51615] \"240376_s_at\"                 \"236557_at\"                  \n",
+       "[51617] \"237477_at\"                   \"236205_at\"                  \n",
+       "[51619] \"240376_s_at\"                 \"240376_s_at\"                \n",
+       "[51621] \"237354_at\"                   \"238921_at\"                  \n",
+       "[51623] \"235884_at\"                   \"236102_at\"                  \n",
+       "[51625] \"238685_at\"                   \"238524_at\"                  \n",
+       "[51627] \"235986_at\"                   \"237285_at\"                  \n",
+       "[51629] \"238751_at\"                   \"238788_at\"                  \n",
+       "[51631] \"238036_at\"                   \"237493_at\"                  \n",
+       "[51633] \"236691_at\"                   \"235967_at\"                  \n",
+       "[51635] \"235578_at\"                   \"236616_at\"                  \n",
+       "[51637] \"237163_x_at\"                 \"238547_at\"                  \n",
+       "[51639] \"240200_at\"                   \"238686_at\"                  \n",
+       "[51641] \"236337_at\"                   \"240290_at\"                  \n",
+       "[51643] \"236473_at\"                   \"239974_at\"                  \n",
+       "[51645] \"237484_at\"                   \"239231_at\"                  \n",
+       "[51647] \"238481_at\"                   \"238064_at\"                  \n",
+       "[51649] \"238170_at\"                   \"235542_at\"                  \n",
+       "[51651] \"238630_at\"                   \"236373_at\"                  \n",
+       "[51653] \"236728_at\"                   \"237642_at\"                  \n",
+       "[51655] \"236454_at\"                   \"236163_at\"                  \n",
+       "[51657] \"236320_at\"                   \"235885_at\"                  \n",
+       "[51659] \"237691_x_at\"                 \"236250_at\"                  \n",
+       "[51661] \"238570_at\"                   \"236429_at\"                  \n",
+       "[51663] \"235829_at\"                   \"236154_at\"                  \n",
+       "[51665] \"239028_at\"                   \"237489_at\"                  \n",
+       "[51667] \"239447_at\"                   \"240227_at\"                  \n",
+       "[51669] \"239949_at\"                   \"239315_at\"                  \n",
+       "[51671] \"236257_at\"                   \"239135_at\"                  \n",
+       "[51673] \"236220_at\"                   \"238828_at\"                  \n",
+       "[51675] \"238710_at\"                   \"239282_at\"                  \n",
+       "[51677] \"239004_at\"                   \"235530_at\"                  \n",
+       "[51679] \"238477_at\"                   \"236456_at\"                  \n",
+       "[51681] \"235728_at\"                   \"236075_s_at\"                \n",
+       "[51683] \"236074_at\"                   \"238712_at\"                  \n",
+       "[51685] \"236929_at\"                   \"238834_at\"                  \n",
+       "[51687] \"236182_at\"                   \"236182_at\"                  \n",
+       "[51689] \"239132_at\"                   \"238401_at\"                  \n",
+       "[51691] \"238402_s_at\"                 \"238623_at\"                  \n",
+       "[51693] \"240382_at\"                   \"237794_at\"                  \n",
+       "[51695] \"235920_at\"                   \"238527_at\"                  \n",
+       "[51697] \"238910_at\"                   \"239112_at\"                  \n",
+       "[51699] \"235754_at\"                   \"238527_at\"                  \n",
+       "[51701] \"238910_at\"                   \"238510_at\"                  \n",
+       "[51703] \"239270_at\"                   \"240392_at\"                  \n",
+       "[51705] \"237337_at\"                   \"239127_at\"                  \n",
+       "[51707] \"238706_at\"                   \"239629_at\"                  \n",
+       "[51709] \"236146_at\"                   \"239568_at\"                  \n",
+       "[51711] \"235580_at\"                   \"238545_at\"                  \n",
+       "[51713] \"237681_at\"                   \"238678_at\"                  \n",
+       "[51715] \"235690_at\"                   \"238473_at\"                  \n",
+       "[51717] \"239532_at\"                   \"236402_at\"                  \n",
+       "[51719] \"235768_at\"                   \"237783_at\"                  \n",
+       "[51721] \"239542_at\"                   \"239563_at\"                  \n",
+       "[51723] \"237121_at\"                   \"239180_at\"                  \n",
+       "[51725] \"240054_at\"                   \"237625_s_at\"                \n",
+       "[51727] \"235554_x_at\"                 \"235517_at\"                  \n",
+       "[51729] \"237625_s_at\"                 \"238427_at\"                  \n",
+       "[51731] \"237625_s_at\"                 \"237625_s_at\"                \n",
+       "[51733] \"236811_at\"                   \"239355_at\"                  \n",
+       "[51735] \"236334_at\"                   \"235587_at\"                  \n",
+       "[51737] \"239344_at\"                   \"239870_at\"                  \n",
+       "[51739] \"237280_at\"                   \"235906_at\"                  \n",
+       "[51741] \"239870_at\"                   \"238959_at\"                  \n",
+       "[51743] \"238960_s_at\"                 \"236045_x_at\"                \n",
+       "[51745] \"238120_at\"                   \"236868_at\"                  \n",
+       "[51747] \"236783_at\"                   \"238091_at\"                  \n",
+       "[51749] \"238949_at\"                   \"239295_at\"                  \n",
+       "[51751] \"236512_at\"                   \"238733_at\"                  \n",
+       "[51753] \"237891_at\"                   \"235492_at\"                  \n",
+       "[51755] \"236318_x_at\"                 \"235760_at\"                  \n",
+       "[51757] \"235892_at\"                   \"235907_at\"                  \n",
+       "[51759] \"238831_at\"                   \"236681_at\"                  \n",
+       "[51761] \"239215_at\"                   \"239182_at\"                  \n",
+       "[51763] \"235574_at\"                   \"239139_at\"                  \n",
+       "[51765] \"240293_at\"                   \"235977_at\"                  \n",
+       "[51767] \"239159_at\"                   \"237613_at\"                  \n",
+       "[51769] \"235771_at\"                   \"238469_at\"                  \n",
+       "[51771] \"236291_at\"                   \"238043_at\"                  \n",
+       "[51773] \"240008_at\"                   \"239977_at\"                  \n",
+       "[51775] \"240395_at\"                   \"236705_at\"                  \n",
+       "[51777] \"239463_at\"                   \"236690_at\"                  \n",
+       "[51779] \"237440_at\"                   \"235915_at\"                  \n",
+       "[51781] \"236302_at\"                   \"239720_at\"                  \n",
+       "[51783] \"235991_at\"                   \"237211_x_at\"                \n",
+       "[51785] \"236465_at\"                   \"236667_at\"                  \n",
+       "[51787] \"236087_at\"                   \"238525_at\"                  \n",
+       "[51789] \"238866_at\"                   \"239647_at\"                  \n",
+       "[51791] \"235938_at\"                   \"236240_at\"                  \n",
+       "[51793] \"240342_at\"                   \"238990_x_at\"                \n",
+       "[51795] \"238505_at\"                   \"236309_x_at\"                \n",
+       "[51797] \"239926_at\"                   \"237040_at\"                  \n",
+       "[51799] \"238196_at\"                   \"236111_at\"                  \n",
+       "[51801] \"235795_at\"                   \"235820_at\"                  \n",
+       "[51803] \"235794_at\"                   \"236345_at\"                  \n",
+       "[51805] \"235996_at\"                   \"236563_at\"                  \n",
+       "[51807] \"239825_at\"                   \"238790_at\"                  \n",
+       "[51809] \"235522_at\"                   \"236022_at\"                  \n",
+       "[51811] \"238787_at\"                   \"236554_x_at\"                \n",
+       "[51813] \"239805_at\"                   \"238872_at\"                  \n",
+       "[51815] \"237512_at\"                   \"238917_s_at\"                \n",
+       "[51817] \"237160_at\"                   \"238035_at\"                  \n",
+       "[51819] \"239062_at\"                   \"238607_at\"                  \n",
+       "[51821] \"239002_at\"                   \"236505_at\"                  \n",
+       "[51823] \"236664_at\"                   \"236917_at\"                  \n",
+       "[51825] \"236918_s_at\"                 \"236654_s_at\"                \n",
+       "[51827] \"237635_at\"                   \"235514_at\"                  \n",
+       "[51829] \"238010_at\"                   \"236661_at\"                  \n",
+       "[51831] \"238932_at\"                   \"236070_at\"                  \n",
+       "[51833] \"235523_at\"                   \"237942_at\"                  \n",
+       "[51835] \"239947_at\"                   \"240121_x_at\"                \n",
+       "[51837] \"239244_at\"                   \"237025_at\"                  \n",
+       "[51839] \"236093_at\"                   \"238126_at\"                  \n",
+       "[51841] \"237848_at\"                   \"240186_at\"                  \n",
+       "[51843] \"236311_at\"                   \"235663_at\"                  \n",
+       "[51845] \"236653_at\"                   \"236001_at\"                  \n",
+       "[51847] \"235934_at\"                   \"239362_at\"                  \n",
+       "[51849] \"236166_at\"                   \"239699_s_at\"                \n",
+       "[51851] \"238087_at\"                   \"236433_at\"                  \n",
+       "[51853] \"239342_at\"                   \"238784_at\"                  \n",
+       "[51855] \"238956_at\"                   \"239007_at\"                  \n",
+       "[51857] \"238107_at\"                   \"235953_at\"                  \n",
+       "[51859] \"235913_at\"                   \"236574_at\"                  \n",
+       "[51861] \"236136_at\"                   \"240055_at\"                  \n",
+       "[51863] \"235850_at\"                   \"238493_at\"                  \n",
+       "[51865] \"240109_at\"                   \"237812_at\"                  \n",
+       "[51867] \"237711_at\"                   \"238565_at\"                  \n",
+       "[51869] \"238826_x_at\"                 \"235769_at\"                  \n",
+       "[51871] \"236069_at\"                   \"239446_x_at\"                \n",
+       "[51873] \"235835_at\"                   \"235498_at\"                  \n",
+       "[51875] \"238516_at\"                   \"237242_at\"                  \n",
+       "[51877] \"239108_at\"                   \"240172_at\"                  \n",
+       "[51879] \"237507_at\"                   \"235957_at\"                  \n",
+       "[51881] \"239026_x_at\"                 \"240323_at\"                  \n",
+       "[51883] \"239706_x_at\"                 \"237234_at\"                  \n",
+       "[51885] \"238529_at\"                   \"236686_at\"                  \n",
+       "[51887] \"236637_at\"                   \"237415_at\"                  \n",
+       "[51889] \"238986_at\"                   \"237203_at\"                  \n",
+       "[51891] \"239697_x_at\"                 \"235922_at\"                  \n",
+       "[51893] \"239650_at\"                   \"237284_at\"                  \n",
+       "[51895] \"239250_at\"                   \"238464_at\"                  \n",
+       "[51897] \"236417_at\"                   \"238702_at\"                  \n",
+       "[51899] \"239629_at\"                   \"237367_x_at\"                \n",
+       "[51901] \"237722_at\"                   \"238148_s_at\"                \n",
+       "[51903] \"238149_at\"                   \"236751_at\"                  \n",
+       "[51905] \"236977_at\"                   \"238929_at\"                  \n",
+       "[51907] \"235683_at\"                   \"235684_s_at\"                \n",
+       "[51909] \"237739_at\"                   \"239340_at\"                  \n",
+       "[51911] \"238319_at\"                   \"235779_at\"                  \n",
+       "[51913] \"238952_x_at\"                 \"237306_at\"                  \n",
+       "[51915] \"240199_x_at\"                 \"240199_x_at\"                \n",
+       "[51917] \"238823_at\"                   \"239995_at\"                  \n",
+       "[51919] \"238092_at\"                   \"238026_at\"                  \n",
+       "[51921] \"238037_at\"                   \"236436_at\"                  \n",
+       "[51923] \"237535_x_at\"                 \"235911_at\"                  \n",
+       "[51925] \"239233_at\"                   \"238759_at\"                  \n",
+       "[51927] \"236328_at\"                   \"235717_at\"                  \n",
+       "[51929] \"237251_at\"                   \"235504_at\"                  \n",
+       "[51931] \"235649_at\"                   \"235713_at\"                  \n",
+       "[51933] \"235610_at\"                   \"238916_at\"                  \n",
+       "[51935] \"236088_at\"                   \"238133_at\"                  \n",
+       "[51937] \"237175_at\"                   \"239763_at\"                  \n",
+       "[51939] \"238201_at\"                   \"237461_at\"                  \n",
+       "[51941] \"239919_at\"                   \"239343_at\"                  \n",
+       "[51943] \"238242_at\"                   \"237591_at\"                  \n",
+       "[51945] \"235539_at\"                   \"240284_x_at\"                \n",
+       "[51947] \"237430_at\"                   \"239269_at\"                  \n",
+       "[51949] \"238320_at\"                   \"238755_at\"                  \n",
+       "[51951] \"235734_at\"                   \"238141_s_at\"                \n",
+       "[51953] \"237131_at\"                   \"237092_at\"                  \n",
+       "[51955] \"239461_at\"                   \"236361_at\"                  \n",
+       "[51957] \"237741_at\"                   \"239720_at\"                  \n",
+       "[51959] \"237002_at\"                   \"235734_at\"                  \n",
+       "[51961] \"239796_x_at\"                 \"235597_s_at\"                \n",
+       "[51963] \"236608_at\"                   \"239612_at\"                  \n",
+       "[51965] \"237748_at\"                   \"240346_at\"                  \n",
+       "[51967] \"235762_at\"                   \"235762_at\"                  \n",
+       "[51969] \"238216_at\"                   \"237386_at\"                  \n",
+       "[51971] \"238915_at\"                   \"236479_at\"                  \n",
+       "[51973] \"235969_at\"                   \"236329_at\"                  \n",
+       "[51975] \"237790_at\"                   \"237364_at\"                  \n",
+       "[51977] \"240142_at\"                   \"238646_at\"                  \n",
+       "[51979] \"236039_at\"                   \"239043_at\"                  \n",
+       "[51981] \"238944_at\"                   \"238944_at\"                  \n",
+       "[51983] \"237058_x_at\"                 \"237643_at\"                  \n",
+       "[51985] \"236269_at\"                   \"238288_at\"                  \n",
+       "[51987] \"238889_at\"                   \"238665_at\"                  \n",
+       "[51989] \"238009_at\"                   \"236461_at\"                  \n",
+       "[51991] \"239169_at\"                   \"237319_at\"                  \n",
+       "[51993] \"237882_at\"                   \"236127_at\"                  \n",
+       "[51995] \"236059_at\"                   \"240075_at\"                  \n",
+       "[51997] \"238003_at\"                   \"238678_at\"                  \n",
+       "[51999] \"238790_at\"                   \"238678_at\"                  \n",
+       "[52001] \"237641_at\"                   \"239625_at\"                  \n",
+       "[52003] \"236521_at\"                   \"239402_at\"                  \n",
+       "[52005] \"235877_at\"                   \"238893_at\"                  \n",
+       "[52007] \"236898_at\"                   \"236842_at\"                  \n",
+       "[52009] \"236075_s_at\"                 \"236611_at\"                  \n",
+       "[52011] \"236074_at\"                   \"239754_at\"                  \n",
+       "[52013] \"236913_at\"                   \"235593_at\"                  \n",
+       "[52015] \"236534_at\"                   \"239536_at\"                  \n",
+       "[52017] \"237943_at\"                   \"236640_at\"                  \n",
+       "[52019] \"238464_at\"                   \"239527_at\"                  \n",
+       "[52021] \"238790_at\"                   \"239644_at\"                  \n",
+       "[52023] \"239984_at\"                   \"238790_at\"                  \n",
+       "[52025] \"237215_s_at\"                 \"237214_at\"                  \n",
+       "[52027] \"238624_at\"                   \"236356_at\"                  \n",
+       "[52029] \"236158_at\"                   \"239900_x_at\"                \n",
+       "[52031] \"236933_at\"                   \"238854_at\"                  \n",
+       "[52033] \"239569_at\"                   \"235896_s_at\"                \n",
+       "[52035] \"237090_at\"                   \"238434_at\"                  \n",
+       "[52037] \"237666_at\"                   \"235960_at\"                  \n",
+       "[52039] \"238437_at\"                   \"238436_s_at\"                \n",
+       "[52041] \"238437_at\"                   \"238436_s_at\"                \n",
+       "[52043] \"237679_at\"                   \"239181_at\"                  \n",
+       "[52045] \"236838_at\"                   \"239785_at\"                  \n",
+       "[52047] \"238373_at\"                   \"236876_at\"                  \n",
+       "[52049] \"237995_at\"                   \"238817_at\"                  \n",
+       "[52051] \"237313_at\"                   \"236803_at\"                  \n",
+       "[52053] \"239064_at\"                   \"236571_at\"                  \n",
+       "[52055] \"236025_at\"                   \"237360_at\"                  \n",
+       "[52057] \"239641_at\"                   \"240306_at\"                  \n",
+       "[52059] \"240292_x_at\"                 \"237331_s_at\"                \n",
+       "[52061] \"237536_at\"                   \"235558_at\"                  \n",
+       "[52063] \"235992_s_at\"                 \"235991_at\"                  \n",
+       "[52065] \"238280_at\"                   \"236546_at\"                  \n",
+       "[52067] \"236299_at\"                   \"237553_at\"                  \n",
+       "[52069] \"238768_at\"                   \"239806_at\"                  \n",
+       "[52071] \"237189_at\"                   \"239791_at\"                  \n",
+       "[52073] \"236892_s_at\"                 \"240151_at\"                  \n",
+       "[52075] \"236893_at\"                   \"239153_at\"                  \n",
+       "[52077] \"239389_at\"                   \"236668_at\"                  \n",
+       "[52079] \"239920_at\"                   \"239487_at\"                  \n",
+       "[52081] \"240314_at\"                   \"238078_at\"                  \n",
+       "[52083] \"238290_at\"                   \"238636_at\"                  \n",
+       "[52085] \"238636_at\"                   \"238420_at\"                  \n",
+       "[52087] \"236500_at\"                   \"238711_s_at\"                \n",
+       "[52089] \"239024_at\"                   \"236665_at\"                  \n",
+       "[52091] \"236754_at\"                   \"236119_s_at\"                \n",
+       "[52093] \"238124_at\"                   \"240285_at\"                  \n",
+       "[52095] \"236630_at\"                   \"236990_at\"                  \n",
+       "[52097] \"237113_at\"                   \"237075_at\"                  \n",
+       "[52099] \"236400_at\"                   \"236336_at\"                  \n",
+       "[52101] \"239517_at\"                   \"237375_at\"                  \n",
+       "[52103] \"237248_at\"                   \"237034_at\"                  \n",
+       "[52105] \"239511_s_at\"                 \"239512_at\"                  \n",
+       "[52107] \"239491_at\"                   \"239764_at\"                  \n",
+       "[52109] \"236575_at\"                   \"236323_at\"                  \n",
+       "[52111] \"239347_at\"                   \"237270_at\"                  \n",
+       "[52113] \"240272_at\"                   \"239666_at\"                  \n",
+       "[52115] \"239736_at\"                   \"239528_at\"                  \n",
+       "[52117] \"239521_at\"                   \"235621_at\"                  \n",
+       "[52119] \"238969_at\"                   \"238982_at\"                  \n",
+       "[52121] \"237482_s_at\"                 \"238655_at\"                  \n",
+       "[52123] \"235886_at\"                   \"239639_at\"                  \n",
+       "[52125] \"238916_at\"                   \"237584_at\"                  \n",
+       "[52127] \"235644_at\"                   \"238663_x_at\"                \n",
+       "[52129] \"237289_at\"                   \"238573_at\"                  \n",
+       "[52131] \"238994_at\"                   \"235931_at\"                  \n",
+       "[52133] \"239287_at\"                   \"236234_at\"                  \n",
+       "[52135] \"238328_at\"                   \"237982_at\"                  \n",
+       "[52137] \"236704_at\"                   \"237917_at\"                  \n",
+       "[52139] \"238442_at\"                   \"239183_at\"                  \n",
+       "[52141] \"236458_at\"                   \"239220_at\"                  \n",
+       "[52143] \"239262_at\"                   \"238513_at\"                  \n",
+       "[52145] \"236480_at\"                   \"236954_at\"                  \n",
+       "[52147] \"238275_at\"                   \"239138_at\"                  \n",
+       "[52149] \"236997_at\"                   \"238139_at\"                  \n",
+       "[52151] \"238094_at\"                   \"237335_at\"                  \n",
+       "[52153] \"239675_at\"                   \"239685_at\"                  \n",
+       "[52155] \"235890_at\"                   \"240313_at\"                  \n",
+       "[52157] \"237960_at\"                   \"236341_at\"                  \n",
+       "[52159] \"236856_x_at\"                 \"239090_at\"                  \n",
+       "[52161] \"237350_at\"                   \"235891_at\"                  \n",
+       "[52163] \"236251_at\"                   \"235891_at\"                  \n",
+       "[52165] \"236814_at\"                   \"238911_at\"                  \n",
+       "[52167] \"238295_at\"                   \"239653_at\"                  \n",
+       "[52169] \"238591_at\"                   \"237030_at\"                  \n",
+       "[52171] \"235845_at\"                   \"236273_at\"                  \n",
+       "[52173] \"236871_s_at\"                 \"238911_at\"                  \n",
+       "[52175] \"239427_at\"                   \"238911_at\"                  \n",
+       "[52177] \"240319_at\"                   \"238678_at\"                  \n",
+       "[52179] \"236286_at\"                   \"236113_at\"                  \n",
+       "[52181] \"236798_at\"                   \"236798_at\"                  \n",
+       "[52183] \"238649_at\"                   \"239749_at\"                  \n",
+       "[52185] \"236200_at\"                   \"237431_at\"                  \n",
+       "[52187] \"238671_at\"                   \"237249_at\"                  \n",
+       "[52189] \"239357_at\"                   \"239390_at\"                  \n",
+       "[52191] \"238585_at\"                   \"236457_at\"                  \n",
+       "[52193] \"239173_at\"                   \"238129_s_at\"                \n",
+       "[52195] \"239081_at\"                   \"240425_x_at\"                \n",
+       "[52197] \"239241_at\"                   \"238441_at\"                  \n",
+       "[52199] \"238489_at\"                   \"240349_at\"                  \n",
+       "[52201] \"236507_at\"                   \"235831_at\"                  \n",
+       "[52203] \"235918_x_at\"                 \"236058_at\"                  \n",
+       "[52205] \"235606_at\"                   \"239466_at\"                  \n",
+       "[52207] \"239833_at\"                   \"238147_at\"                  \n",
+       "[52209] \"238112_at\"                   \"238075_at\"                  \n",
+       "[52211] \"239755_at\"                   \"236198_at\"                  \n",
+       "[52213] \"238521_at\"                   \"238581_at\"                  \n",
+       "[52215] \"237109_at\"                   \"235703_at\"                  \n",
+       "[52217] \"238262_at\"                   \"236717_at\"                  \n",
+       "[52219] \"237840_at\"                   \"239618_at\"                  \n",
+       "[52221] \"239618_at\"                   \"237772_at\"                  \n",
+       "[52223] \"237546_at\"                   \"239696_at\"                  \n",
+       "[52225] \"239707_at\"                   \"238167_at\"                  \n",
+       "[52227] \"238166_s_at\"                 \"240236_at\"                  \n",
+       "[52229] \"238360_s_at\"                 \"235534_at\"                  \n",
+       "[52231] \"235534_at\"                   \"236066_at\"                  \n",
+       "[52233] \"240369_at\"                   \"238953_at\"                  \n",
+       "[52235] \"238207_at\"                   \"235897_at\"                  \n",
+       "[52237] \"237560_at\"                   \"236779_at\"                  \n",
+       "[52239] \"235729_at\"                   \"236477_at\"                  \n",
+       "[52241] \"238777_x_at\"                 \"238804_at\"                  \n",
+       "[52243] \"235627_at\"                   \"238811_at\"                  \n",
+       "[52245] \"237408_at\"                   \"238879_at\"                  \n",
+       "[52247] \"239063_at\"                   \"237579_at\"                  \n",
+       "[52249] \"240234_at\"                   \"237005_at\"                  \n",
+       "[52251] \"239782_at\"                   \"239880_at\"                  \n",
+       "[52253] \"238958_at\"                   \"237227_at\"                  \n",
+       "[52255] \"239486_at\"                   \"235566_at\"                  \n",
+       "[52257] \"236829_at\"                   \"235494_at\"                  \n",
+       "[52259] \"237027_at\"                   \"237190_at\"                  \n",
+       "[52261] \"235733_at\"                   \"235968_at\"                  \n",
+       "[52263] \"237159_x_at\"                 \"237159_x_at\"                \n",
+       "[52265] \"236314_at\"                   \"239240_at\"                  \n",
+       "[52267] \"240340_at\"                   \"238727_at\"                  \n",
+       "[52269] \"238419_at\"                   \"235584_at\"                  \n",
+       "[52271] \"235739_at\"                   \"238014_at\"                  \n",
+       "[52273] \"238559_at\"                   \"236719_at\"                  \n",
+       "[52275] \"237880_at\"                   \"237321_at\"                  \n",
+       "[52277] \"235861_at\"                   \"237982_at\"                  \n",
+       "[52279] \"237934_at\"                   \"239325_at\"                  \n",
+       "[52281] \"236656_s_at\"                 \"236657_at\"                  \n",
+       "[52283] \"238934_at\"                   \"236451_at\"                  \n",
+       "[52285] \"236598_at\"                   \"238887_at\"                  \n",
+       "[52287] \"235783_at\"                   \"237764_at\"                  \n",
+       "[52289] \"235813_at\"                   \"237105_at\"                  \n",
+       "[52291] \"239168_at\"                   \"236739_at\"                  \n",
+       "[52293] \"239366_at\"                   \"236351_at\"                  \n",
+       "[52295] \"235514_at\"                   \"240017_at\"                  \n",
+       "[52297] \"240028_at\"                   \"235557_at\"                  \n",
+       "[52299] \"237387_at\"                   \"238482_at\"                  \n",
+       "[52301] \"238517_at\"                   \"240432_x_at\"                \n",
+       "[52303] \"239809_at\"                   \"239302_s_at\"                \n",
+       "[52305] \"239570_at\"                   \"239657_x_at\"                \n",
+       "[52307] \"235870_at\"                   \"238135_at\"                  \n",
+       "[52309] \"239035_at\"                   \"239631_at\"                  \n",
+       "[52311] \"235763_at\"                   \"237660_at\"                  \n",
+       "[52313] \"237789_at\"                   \"236398_s_at\"                \n",
+       "[52315] \"236399_at\"                   \"236601_at\"                  \n",
+       "[52317] \"237680_at\"                   \"237060_at\"                  \n",
+       "[52319] \"238133_at\"                   \"237276_at\"                  \n",
+       "[52321] \"235898_at\"                   \"237627_at\"                  \n",
+       "[52323] \"240413_at\"                   \"235597_s_at\"                \n",
+       "[52325] \"238422_at\"                   \"240265_at\"                  \n",
+       "[52327] \"235948_at\"                   \"236884_at\"                  \n",
+       "[52329] \"236376_at\"                   \"238760_at\"                  \n",
+       "[52331] \"238340_at\"                   \"236679_x_at\"                \n",
+       "[52333] \"236679_x_at\"                 \"235518_at\"                  \n",
+       "[52335] \"238546_at\"                   \"237866_at\"                  \n",
+       "[52337] \"237867_s_at\"                 \"236387_at\"                  \n",
+       "[52339] \"239442_at\"                   \"239847_at\"                  \n",
+       "[52341] \"237501_at\"                   \"235695_at\"                  \n",
+       "[52343] \"235595_at\"                   \"237685_at\"                  \n",
+       "[52345] \"236638_at\"                   \"240379_at\"                  \n",
+       "[52347] \"236752_at\"                   \"235631_at\"                  \n",
+       "[52349] \"238100_at\"                   \"237530_at\"                  \n",
+       "[52351] \"240189_at\"                   \"238991_at\"                  \n",
+       "[52353] \"238308_at\"                   \"238250_at\"                  \n",
+       "[52355] \"237343_at\"                   \"238977_at\"                  \n",
+       "[52357] \"240045_at\"                   \"236381_s_at\"                \n",
+       "[52359] \"236382_at\"                   \"237608_at\"                  \n",
+       "[52361] \"237039_at\"                   \"237801_at\"                  \n",
+       "[52363] \"237801_at\"                   \"236539_at\"                  \n",
+       "[52365] \"236979_at\"                   \"236083_at\"                  \n",
+       "[52367] \"235624_at\"                   \"238644_at\"                  \n",
+       "[52369] \"235848_x_at\"                 \"237968_at\"                  \n",
+       "[52371] \"238018_at\"                   \"236980_at\"                  \n",
+       "[52373] \"236388_at\"                   \"236958_at\"                  \n",
+       "[52375] \"239467_at\"                   \"236177_s_at\"                \n",
+       "[52377] \"240148_at\"                   \"237095_at\"                  \n",
+       "[52379] \"240072_at\"                   \"237732_at\"                  \n",
+       "[52381] \"237327_at\"                   \"239383_at\"                  \n",
+       "[52383] \"238950_at\"                   \"239130_at\"                  \n",
+       "[52385] \"239695_at\"                   \"239982_at\"                  \n",
+       "[52387] \"237076_at\"                   \"239205_s_at\"                \n",
+       "[52389] \"239036_at\"                   \"235782_at\"                  \n",
+       "[52391] \"239210_at\"                   \"237917_at\"                  \n",
+       "[52393] \"238452_at\"                   \"237917_at\"                  \n",
+       "[52395] \"236623_at\"                   \"239797_at\"                  \n",
+       "[52397] \"240352_at\"                   \"239822_at\"                  \n",
+       "[52399] \"235571_at\"                   \"235691_at\"                  \n",
+       "[52401] \"237108_x_at\"                 \"236360_at\"                  \n",
+       "[52403] \"237108_x_at\"                 \"236360_at\"                  \n",
+       "[52405] \"239370_at\"                   \"240398_at\"                  \n",
+       "[52407] \"237154_at\"                   \"237065_s_at\"                \n",
+       "[52409] \"235808_at\"                   \"240309_at\"                  \n",
+       "[52411] \"236080_at\"                   \"238678_at\"                  \n",
+       "[52413] \"238076_at\"                   \"235867_at\"                  \n",
+       "[52415] \"236564_at\"                   \"235497_at\"                  \n",
+       "[52417] \"237011_at\"                   \"236624_at\"                  \n",
+       "[52419] \"237420_at\"                   \"240258_at\"                  \n",
+       "[52421] \"237028_at\"                   \"239843_at\"                  \n",
+       "[52423] \"236723_at\"                   \"235603_at\"                  \n",
+       "[52425] \"236498_s_at\"                 \"236584_at\"                  \n",
+       "[52427] \"236499_at\"                   \"240310_at\"                  \n",
+       "[52429] \"240210_at\"                   \"237473_at\"                  \n",
+       "[52431] \"238678_at\"                   \"238065_at\"                  \n",
+       "[52433] \"238079_at\"                   \"236856_x_at\"                \n",
+       "[52435] \"240422_at\"                   \"238070_at\"                  \n",
+       "[52437] \"238459_x_at\"                 \"238131_at\"                  \n",
+       "[52439] \"236379_at\"                   \"236962_at\"                  \n",
+       "[52441] \"235663_at\"                   \"236418_at\"                  \n",
+       "[52443] \"237173_at\"                   \"238657_at\"                  \n",
+       "[52445] \"238652_at\"                   \"236013_at\"                  \n",
+       "[52447] \"238747_at\"                   \"239280_at\"                  \n",
+       "[52449] \"235780_at\"                   \"239156_at\"                  \n",
+       "[52451] \"237736_at\"                   \"240210_at\"                  \n",
+       "[52453] \"236073_at\"                   \"236247_at\"                  \n",
+       "[52455] \"239836_at\"                   \"236524_at\"                  \n",
+       "[52457] \"237448_at\"                   \"238389_s_at\"                \n",
+       "[52459] \"238678_at\"                   \"238503_at\"                  \n",
+       "[52461] \"237563_s_at\"                 \"237564_at\"                  \n",
+       "[52463] \"236986_at\"                   \"238143_at\"                  \n",
+       "[52465] \"235961_at\"                   \"238056_at\"                  \n",
+       "[52467] \"240437_at\"                   \"237451_x_at\"                \n",
+       "[52469] \"238519_at\"                   \"242884_at\"                  \n",
+       "[52471] \"244631_at\"                   \"241624_at\"                  \n",
+       "[52473] \"242841_at\"                   \"242841_at\"                  \n",
+       "[52475] \"243384_at\"                   \"243384_at\"                  \n",
+       "[52477] \"242973_at\"                   \"242973_at\"                  \n",
+       "[52479] \"242595_at\"                   \"244498_x_at\"                \n",
+       "[52481] \"244498_x_at\"                 \"244818_at\"                  \n",
+       "[52483] \"242969_at\"                   \"243294_at\"                  \n",
+       "[52485] \"241354_at\"                   \"36554_at\"                   \n",
+       "[52487] \"36553_at\"                    \"243943_x_at\"                \n",
+       "[52489] \"244379_at\"                   \"244379_at\"                  \n",
+       "[52491] \"244834_at\"                   \"47773_at\"                   \n",
+       "[52493] \"242884_at\"                   \"34697_at\"                   \n",
+       "[52495] \"242434_at\"                   \"244037_at\"                  \n",
+       "[52497] \"242656_at\"                   \"241624_at\"                  \n",
+       "[52499] \"36830_at\"                    \"240814_at\"                  \n",
+       "[52501] \"242822_at\"                   \"61874_at\"                   \n",
+       "[52503] \"243759_at\"                   \"56197_at\"                   \n",
+       "[52505] \"56197_at\"                    \"240878_at\"                  \n",
+       "[52507] \"240878_at\"                   \"244088_at\"                  \n",
+       "[52509] \"240801_at\"                   \"241224_x_at\"                \n",
+       "[52511] \"241611_s_at\"                 \"242102_at\"                  \n",
+       "[52513] \"35776_at\"                    \"241386_at\"                  \n",
+       "[52515] \"241672_at\"                   \"242276_at\"                  \n",
+       "[52517] \"AFFX-HUMRGE/M10098_5_at\"     \"AFFX-HUMRGE/M10098_5_at\"    \n",
+       "[52519] \"AFFX-HUMRGE/M10098_5_at\"     \"AFFX-HUMRGE/M10098_5_at\"    \n",
+       "[52521] \"240809_at\"                   \"243947_s_at\"                \n",
+       "[52523] \"243507_s_at\"                 \"243508_at\"                  \n",
+       "[52525] \"244369_at\"                   \"242481_at\"                  \n",
+       "[52527] \"244183_x_at\"                 \"241910_x_at\"                \n",
+       "[52529] \"243098_at\"                   \"241726_at\"                  \n",
+       "[52531] \"37079_at\"                    \"243966_at\"                  \n",
+       "[52533] \"243884_at\"                   \"243506_at\"                  \n",
+       "[52535] \"242073_at\"                   \"241803_s_at\"                \n",
+       "[52537] \"241803_s_at\"                 \"240719_at\"                  \n",
+       "[52539] \"243090_at\"                   \"242997_at\"                  \n",
+       "[52541] \"241362_at\"                   \"41577_at\"                   \n",
+       "[52543] \"244493_at\"                   \"243814_at\"                  \n",
+       "[52545] \"241646_s_at\"                 \"241759_at\"                  \n",
+       "[52547] \"244498_x_at\"                 \"244498_x_at\"                \n",
+       "[52549] \"55692_at\"                    \"240920_at\"                  \n",
+       "[52551] \"54051_at\"                    \"244051_at\"                  \n",
+       "[52553] \"37079_at\"                    \"243978_at\"                  \n",
+       "[52555] \"240869_at\"                   \"242499_at\"                  \n",
+       "[52557] \"242499_at\"                   \"244233_at\"                  \n",
+       "[52559] \"243710_at\"                   \"242524_at\"                  \n",
+       "[52561] \"240531_at\"                   \"241829_at\"                  \n",
+       "[52563] \"241013_at\"                   \"243843_at\"                  \n",
+       "[52565] \"35201_at\"                    \"36545_s_at\"                 \n",
+       "[52567] \"242867_x_at\"                 \"241623_at\"                  \n",
+       "[52569] \"241937_s_at\"                 \"33132_at\"                   \n",
+       "[52571] \"33132_at\"                    \"242913_at\"                  \n",
+       "[52573] \"240897_at\"                   \"242880_at\"                  \n",
+       "[52575] \"242881_x_at\"                 \"242546_at\"                  \n",
+       "[52577] \"243676_at\"                   \"242766_at\"                  \n",
+       "[52579] \"242301_at\"                   \"244296_at\"                  \n",
+       "[52581] \"241064_at\"                   \"241522_at\"                  \n",
+       "[52583] \"33778_at\"                    \"244564_at\"                  \n",
+       "[52585] \"241573_at\"                   \"244237_at\"                  \n",
+       "[52587] \"240754_at\"                   \"241939_at\"                  \n",
+       "[52589] \"244231_at\"                   \"243979_at\"                  \n",
+       "[52591] \"242291_at\"                   \"242683_at\"                  \n",
+       "[52593] \"242722_at\"                   \"243007_at\"                  \n",
+       "[52595] \"240887_at\"                   \"244495_x_at\"                \n",
+       "[52597] \"244130_at\"                   \"37117_at\"                   \n",
+       "[52599] \"243735_at\"                   \"243239_at\"                  \n",
+       "[52601] \"240626_at\"                   \"243260_x_at\"                \n",
+       "[52603] \"243690_at\"                   \"240567_at\"                  \n",
+       "[52605] \"44790_s_at\"                  \"242666_at\"                  \n",
+       "[52607] \"240731_at\"                   \"240731_at\"                  \n",
+       "[52609] \"47069_at\"                    \"241428_x_at\"                \n",
+       "[52611] \"244763_at\"                   \"242996_at\"                  \n",
+       "[52613] \"240626_at\"                   \"243260_x_at\"                \n",
+       "[52615] \"244135_at\"                   \"242546_at\"                  \n",
+       "[52617] \"242881_x_at\"                 \"242597_at\"                  \n",
+       "[52619] \"240642_at\"                   \"243499_at\"                  \n",
+       "[52621] \"89476_r_at\"                  \"89476_r_at\"                 \n",
+       "[52623] \"89476_r_at\"                  \"243110_x_at\"                \n",
+       "[52625] \"241354_at\"                   \"243812_at\"                  \n",
+       "[52627] \"244444_at\"                   \"242841_at\"                  \n",
+       "[52629] \"242841_at\"                   \"242592_at\"                  \n",
+       "[52631] \"241398_at\"                   \"244229_at\"                  \n",
+       "[52633] \"242631_x_at\"                 \"244608_at\"                  \n",
+       "[52635] \"36554_at\"                    \"36553_at\"                   \n",
+       "[52637] \"40359_at\"                    \"242408_at\"                  \n",
+       "[52639] \"244030_at\"                   \"240589_at\"                  \n",
+       "[52641] \"241834_at\"                   \"244449_at\"                  \n",
+       "[52643] \"59433_at\"                    \"244885_at\"                  \n",
+       "[52645] \"240890_at\"                   \"240890_at\"                  \n",
+       "[52647] \"241729_at\"                   \"244676_s_at\"                \n",
+       "[52649] \"241283_at\"                   \"52837_at\"                   \n",
+       "[52651] \"241291_at\"                   \"244724_at\"                  \n",
+       "[52653] \"37433_at\"                    \"243624_at\"                  \n",
+       "[52655] \"241572_at\"                   \"241068_at\"                  \n",
+       "[52657] \"242904_x_at\"                 \"244858_at\"                  \n",
+       "[52659] \"244255_at\"                   \"243983_at\"                  \n",
+       "[52661] \"243983_at\"                   \"241696_at\"                  \n",
+       "[52663] \"244725_at\"                   \"243481_at\"                  \n",
+       "[52665] \"241603_at\"                   \"243081_at\"                  \n",
+       "[52667] \"243452_at\"                   \"242502_at\"                  \n",
+       "[52669] \"242444_at\"                   \"242093_at\"                  \n",
+       "[52671] \"242335_at\"                   \"243101_x_at\"                \n",
+       "[52673] \"241144_at\"                   \"242889_x_at\"                \n",
+       "[52675] \"78047_s_at\"                  \"49679_s_at\"                 \n",
+       "[52677] \"244439_at\"                   \"243132_at\"                  \n",
+       "[52679] \"243146_at\"                   \"244368_x_at\"                \n",
+       "[52681] \"242418_at\"                   \"241713_s_at\"                \n",
+       "[52683] \"240747_at\"                   \"240721_at\"                  \n",
+       "[52685] \"244779_at\"                   \"244706_at\"                  \n",
+       "[52687] \"240983_s_at\"                 \"244001_at\"                  \n",
+       "[52689] \"244149_at\"                   \"244179_x_at\"                \n",
+       "[52691] \"240462_at\"                   \"242821_at\"                  \n",
+       "[52693] \"240799_at\"                   \"242841_at\"                  \n",
+       "[52695] \"240943_at\"                   \"240550_at\"                  \n",
+       "[52697] \"240937_at\"                   \"240682_at\"                  \n",
+       "[52699] \"89948_at\"                    \"241718_x_at\"                \n",
+       "[52701] \"240703_s_at\"                 \"242178_at\"                  \n",
+       "[52703] \"243782_at\"                   \"241230_at\"                  \n",
+       "[52705] \"244754_at\"                   \"33307_at\"                   \n",
+       "[52707] \"241538_at\"                   \"243132_at\"                  \n",
+       "[52709] \"40524_at\"                    \"243406_at\"                  \n",
+       "[52711] \"243504_at\"                   \"242939_at\"                  \n",
+       "[52713] \"244105_at\"                   \"244105_at\"                  \n",
+       "[52715] \"243200_at\"                   \"244350_at\"                  \n",
+       "[52717] \"240474_x_at\"                 \"241310_at\"                  \n",
+       "[52719] \"244707_at\"                   \"241658_at\"                  \n",
+       "[52721] \"242893_at\"                   \"244104_at\"                  \n",
+       "[52723] \"241926_s_at\"                 \"240888_at\"                  \n",
+       "[52725] \"244561_at\"                   \"243862_at\"                  \n",
+       "[52727] \"243402_at\"                   \"241118_at\"                  \n",
+       "[52729] \"241972_at\"                   \"244033_at\"                  \n",
+       "[52731] \"241803_s_at\"                 \"243674_at\"                  \n",
+       "[52733] \"240817_at\"                   \"243729_at\"                  \n",
+       "[52735] \"242874_at\"                   \"243514_at\"                  \n",
+       "[52737] \"242660_at\"                   \"242776_at\"                  \n",
+       "[52739] \"81737_at\"                    \"243986_at\"                  \n",
+       "[52741] \"241953_at\"                   \"244585_at\"                  \n",
+       "[52743] \"242722_at\"                   \"241140_at\"                  \n",
+       "[52745] \"242922_at\"                   \"243027_at\"                  \n",
+       "[52747] \"35156_at\"                    \"241614_at\"                  \n",
+       "[52749] \"243580_at\"                   \"241902_at\"                  \n",
+       "[52751] \"244787_at\"                   \"240689_at\"                  \n",
+       "[52753] \"241942_at\"                   \"240860_at\"                  \n",
+       "[52755] \"241781_at\"                   \"241700_at\"                  \n",
+       "[52757] \"243405_at\"                   \"242071_x_at\"                \n",
+       "[52759] \"242810_x_at\"                 \"242565_x_at\"                \n",
+       "[52761] \"244206_at\"                   \"242650_at\"                  \n",
+       "[52763] \"244829_at\"                   \"242600_at\"                  \n",
+       "[52765] \"241417_at\"                   \"41113_at\"                   \n",
+       "[52767] \"32128_at\"                    \"241141_at\"                  \n",
+       "[52769] \"244364_at\"                   \"241141_at\"                  \n",
+       "[52771] \"33148_at\"                    \"41660_at\"                   \n",
+       "[52773] \"241425_at\"                   \"244465_at\"                  \n",
+       "[52775] \"240763_at\"                   \"241326_at\"                  \n",
+       "[52777] \"244366_at\"                   \"242576_x_at\"                \n",
+       "[52779] \"244822_at\"                   \"244880_at\"                  \n",
+       "[52781] \"244880_at\"                   \"244059_at\"                  \n",
+       "[52783] \"243709_at\"                   \"242330_at\"                  \n",
+       "[52785] \"243216_x_at\"                 \"240674_at\"                  \n",
+       "[52787] \"244498_x_at\"                 \"37966_at\"                   \n",
+       "[52789] \"37965_at\"                    \"244758_at\"                  \n",
+       "[52791] \"243610_at\"                   \"241187_at\"                  \n",
+       "[52793] \"241120_s_at\"                 \"243017_at\"                  \n",
+       "[52795] \"242999_at\"                   \"242723_at\"                  \n",
+       "[52797] \"243336_at\"                   \"244738_at\"                  \n",
+       "[52799] \"241171_at\"                   \"40472_at\"                   \n",
+       "[52801] \"243897_at\"                   \"242261_at\"                  \n",
+       "[52803] \"57588_at\"                    \"241596_at\"                  \n",
+       "[52805] \"240679_at\"                   \"243870_at\"                  \n",
+       "[52807] \"243824_at\"                   \"244116_at\"                  \n",
+       "[52809] \"241436_at\"                   \"243721_at\"                  \n",
+       "[52811] \"244701_at\"                   \"244701_at\"                  \n",
+       "[52813] \"244701_at\"                   \"244701_at\"                  \n",
+       "[52815] \"242908_x_at\"                 \"241432_at\"                  \n",
+       "[52817] \"240900_at\"                   \"240828_at\"                  \n",
+       "[52819] \"241316_at\"                   \"241847_at\"                  \n",
+       "[52821] \"240967_at\"                   \"244119_at\"                  \n",
+       "[52823] \"244035_at\"                   \"240616_at\"                  \n",
+       "[52825] \"240472_at\"                   \"244852_at\"                  \n",
+       "[52827] \"241943_at\"                   \"243721_at\"                  \n",
+       "[52829] \"241890_at\"                   \"241359_at\"                  \n",
+       "[52831] \"34697_at\"                    \"242149_at\"                  \n",
+       "[52833] \"240734_at\"                   \"244170_at\"                  \n",
+       "[52835] \"242328_at\"                   \"241442_at\"                  \n",
+       "[52837] \"242288_s_at\"                 \"50314_i_at\"                 \n",
+       "[52839] \"33736_at\"                    \"242414_at\"                  \n",
+       "[52841] \"244880_at\"                   \"242158_at\"                  \n",
+       "[52843] \"244107_at\"                   \"244880_at\"                  \n",
+       "[52845] \"243786_at\"                   \"242519_at\"                  \n",
+       "[52847] \"48612_at\"                    \"32069_at\"                   \n",
+       "[52849] \"242338_at\"                   \"243082_at\"                  \n",
+       "[52851] \"241828_x_at\"                 \"240561_at\"                  \n",
+       "[52853] \"241828_x_at\"                 \"240974_at\"                  \n",
+       "[52855] \"243823_at\"                   \"240763_at\"                  \n",
+       "[52857] \"243311_at\"                   \"241758_at\"                  \n",
+       "[52859] \"240549_at\"                   \"60471_at\"                   \n",
+       "[52861] \"90265_at\"                    \"240811_at\"                  \n",
+       "[52863] \"244410_at\"                   \"241694_at\"                  \n",
+       "[52865] \"244786_at\"                   \"244790_at\"                  \n",
+       "[52867] \"242292_at\"                   \"240687_at\"                  \n",
+       "[52869] \"241500_at\"                   \"242194_at\"                  \n",
+       "[52871] \"244604_at\"                   \"90265_at\"                   \n",
+       "[52873] \"242455_at\"                   \"49306_at\"                   \n",
+       "[52875] \"35147_at\"                    \"241713_s_at\"                \n",
+       "[52877] \"241098_at\"                   \"244316_at\"                  \n",
+       "[52879] \"244293_at\"                   \"32128_at\"                   \n",
+       "[52881] \"64418_at\"                    \"241161_at\"                  \n",
+       "[52883] \"241161_at\"                   \"240842_at\"                  \n",
+       "[52885] \"51176_at\"                    \"244785_at\"                  \n",
+       "[52887] \"241953_at\"                   \"241594_at\"                  \n",
+       "[52889] \"241961_at\"                   \"240660_at\"                  \n",
+       "[52891] \"243672_at\"                   \"242686_at\"                  \n",
+       "[52893] \"243298_at\"                   \"240917_at\"                  \n",
+       "[52895] \"266_s_at\"                    \"243672_at\"                  \n",
+       "[52897] \"244688_at\"                   \"242190_at\"                  \n",
+       "[52899] \"240519_at\"                   \"241985_at\"                  \n",
+       "[52901] \"240767_x_at\"                 \"244401_at\"                  \n",
+       "[52903] \"242006_at\"                   \"32723_at\"                   \n",
+       "[52905] \"240894_at\"                   \"244631_at\"                  \n",
+       "[52907] \"241624_at\"                   \"244631_at\"                  \n",
+       "[52909] \"241624_at\"                   \"243932_at\"                  \n",
+       "[52911] \"242352_at\"                   \"244075_at\"                  \n",
+       "[52913] \"241233_x_at\"                 \"243780_at\"                  \n",
+       "[52915] \"243467_at\"                   \"243780_at\"                  \n",
+       "[52917] \"243467_at\"                   \"241233_x_at\"                \n",
+       "[52919] \"242766_at\"                   \"244682_at\"                  \n",
+       "[52921] \"243225_at\"                   \"243807_at\"                  \n",
+       "[52923] \"243092_at\"                   \"244641_at\"                  \n",
+       "[52925] \"242385_at\"                   \"243233_at\"                  \n",
+       "[52927] \"241117_at\"                   \"39318_at\"                   \n",
+       "[52929] \"243698_at\"                   \"243477_at\"                  \n",
+       "[52931] \"35148_at\"                    \"242982_x_at\"                \n",
+       "[52933] \"242928_at\"                   \"243136_at\"                  \n",
+       "[52935] \"240512_x_at\"                 \"244667_at\"                  \n",
+       "[52937] \"243750_x_at\"                 \"242798_at\"                  \n",
+       "[52939] \"242873_at\"                   \"244099_at\"                  \n",
+       "[52941] \"240938_at\"                   \"243457_s_at\"                \n",
+       "[52943] \"243456_at\"                   \"243074_at\"                  \n",
+       "[52945] \"242400_at\"                   \"240755_at\"                  \n",
+       "[52947] \"243515_at\"                   \"241760_x_at\"                \n",
+       "[52949] \"241126_at\"                   \"37577_at\"                   \n",
+       "[52951] \"52975_at\"                    \"241762_at\"                  \n",
+       "[52953] \"241763_s_at\"                 \"243217_at\"                  \n",
+       "[52955] \"242329_at\"                   \"243133_at\"                  \n",
+       "[52957] \"243566_at\"                   \"241749_at\"                  \n",
+       "[52959] \"241962_at\"                   \"243783_at\"                  \n",
+       "[52961] \"243414_at\"                   \"243755_at\"                  \n",
+       "[52963] \"243163_at\"                   \"36129_at\"                   \n",
+       "[52965] \"243928_s_at\"                 \"244275_at\"                  \n",
+       "[52967] \"43544_at\"                    \"240951_at\"                  \n",
+       "[52969] \"240710_at\"                   \"242367_at\"                  \n",
+       "[52971] \"240602_at\"                   \"244209_at\"                  \n",
+       "[52973] \"49329_at\"                    \"240780_at\"                  \n",
+       "[52975] \"241871_at\"                   \"244600_at\"                  \n",
+       "[52977] \"37652_at\"                    \"243679_at\"                  \n",
+       "[52979] \"241780_at\"                   \"243734_x_at\"                \n",
+       "[52981] \"244142_at\"                   \"65438_at\"                   \n",
+       "[52983] \"55662_at\"                    \"243029_at\"                  \n",
+       "[52985] \"242900_at\"                   \"240574_at\"                  \n",
+       "[52987] \"242159_at\"                   \"44146_at\"                   \n",
+       "[52989] \"244734_at\"                   \"243856_at\"                  \n",
+       "[52991] \"243197_at\"                   \"243343_at\"                  \n",
+       "[52993] \"241412_at\"                   \"33767_at\"                   \n",
+       "[52995] \"242107_x_at\"                 \"244831_at\"                  \n",
+       "[52997] \"243018_at\"                   \"244025_at\"                  \n",
+       "[52999] \"242141_at\"                   \"57539_at\"                   \n",
+       "[53001] \"564_at\"                      \"40562_at\"                   \n",
+       "[53003] \"244455_at\"                   \"244589_at\"                  \n",
+       "[53005] \"57539_at\"                    \"244405_s_at\"                \n",
+       "[53007] \"243850_at\"                   \"244481_at\"                  \n",
+       "[53009] \"244481_at\"                   \"244334_at\"                  \n",
+       "[53011] \"243979_at\"                   \"244667_at\"                  \n",
+       "[53013] \"243863_at\"                   \"243173_at\"                  \n",
+       "[53015] \"243432_at\"                   \"240618_at\"                  \n",
+       "[53017] \"243007_at\"                   \"244177_at\"                  \n",
+       "[53019] \"244806_at\"                   \"242834_at\"                  \n",
+       "[53021] \"240707_at\"                   \"244684_at\"                  \n",
+       "[53023] \"41047_at\"                    \"243083_at\"                  \n",
+       "[53025] \"240999_at\"                   \"823_at\"                     \n",
+       "[53027] \"243727_at\"                   \"241706_at\"                  \n",
+       "[53029] \"243049_at\"                   \"243409_at\"                  \n",
+       "[53031] \"242738_s_at\"                 \"240472_at\"                  \n",
+       "[53033] \"244852_at\"                   \"244874_at\"                  \n",
+       "[53035] \"244237_at\"                   \"243035_at\"                  \n",
+       "[53037] \"242386_x_at\"                 \"240699_at\"                  \n",
+       "[53039] \"241925_x_at\"                 \"241866_at\"                  \n",
+       "[53041] \"240741_x_at\"                 \"244325_at\"                  \n",
+       "[53043] \"241731_x_at\"                 \"243697_at\"                  \n",
+       "[53045] \"244434_at\"                   \"244323_at\"                  \n",
+       "[53047] \"242562_at\"                   \"58994_at\"                   \n",
+       "[53049] \"243059_at\"                   \"242332_at\"                  \n",
+       "[53051] \"91952_at\"                    \"47560_at\"                   \n",
+       "[53053] \"58780_s_at\"                  \"241627_x_at\"                \n",
+       "[53055] \"243358_at\"                   \"241899_at\"                  \n",
+       "[53057] \"240805_at\"                   \"44702_at\"                   \n",
+       "[53059] \"37802_r_at\"                  \"240902_at\"                  \n",
+       "[53061] \"244557_at\"                   \"241895_at\"                  \n",
+       "[53063] \"52741_at\"                    \"244196_at\"                  \n",
+       "[53065] \"243083_at\"                   \"240999_at\"                  \n",
+       "[53067] \"242206_at\"                   \"241503_at\"                  \n",
+       "[53069] \"244163_at\"                   \"243001_at\"                  \n",
+       "[53071] \"241843_at\"                   \"45526_g_at\"                 \n",
+       "[53073] \"242708_at\"                   \"240728_at\"                  \n",
+       "[53075] \"242634_at\"                   \"243996_at\"                  \n",
+       "[53077] \"241010_x_at\"                 \"241443_at\"                  \n",
+       "[53079] \"244283_x_at\"                 \"244283_x_at\"                \n",
+       "[53081] \"240871_at\"                   \"243070_at\"                  \n",
+       "[53083] \"243948_at\"                   \"242443_at\"                  \n",
+       "[53085] \"240871_at\"                   \"241552_at\"                  \n",
+       "[53087] \"32032_at\"                    \"244490_at\"                  \n",
+       "[53089] \"242316_at\"                   \"241976_at\"                  \n",
+       "[53091] \"242763_at\"                   \"243774_at\"                  \n",
+       "[53093] \"241620_at\"                   \"241363_at\"                  \n",
+       "[53095] \"243774_at\"                   \"243143_at\"                  \n",
+       "[53097] \"244789_at\"                   \"240566_at\"                  \n",
+       "[53099] \"243774_at\"                   \"243774_at\"                  \n",
+       "[53101] \"37549_g_at\"                  \"37547_at\"                   \n",
+       "[53103] \"241585_at\"                   \"243040_at\"                  \n",
+       "[53105] \"242817_at\"                   \"243774_at\"                  \n",
+       "[53107] \"243774_at\"                   \"65585_at\"                   \n",
+       "[53109] \"242169_at\"                   \"242764_at\"                  \n",
+       "[53111] \"243774_at\"                   \"243482_at\"                  \n",
+       "[53113] \"243219_x_at\"                 \"36475_at\"                   \n",
+       "[53115] \"244782_at\"                   \"33579_i_at\"                 \n",
+       "[53117] \"242138_at\"                   \"243774_at\"                  \n",
+       "[53119] \"243494_at\"                   \"242363_at\"                  \n",
+       "[53121] \"243774_at\"                   \"241527_at\"                  \n",
+       "[53123] \"243774_at\"                   \"55081_at\"                   \n",
+       "[53125] \"244120_at\"                   \"244531_at\"                  \n",
+       "[53127] \"244435_at\"                   \"37872_at\"                   \n",
+       "[53129] \"241317_at\"                   \"244370_at\"                  \n",
+       "[53131] \"244076_at\"                   \"242247_at\"                  \n",
+       "[53133] \"242418_at\"                   \"241381_at\"                  \n",
+       "[53135] \"241789_at\"                   \"242137_at\"                  \n",
+       "[53137] \"243672_at\"                   \"242246_x_at\"                \n",
+       "[53139] \"244785_at\"                   \"244108_at\"                  \n",
+       "[53141] \"242394_at\"                   \"240996_at\"                  \n",
+       "[53143] \"241466_at\"                   \"241754_at\"                  \n",
+       "[53145] \"243683_at\"                   \"243857_at\"                  \n",
+       "[53147] \"244546_at\"                   \"244065_at\"                  \n",
+       "[53149] \"241327_at\"                   \"243016_at\"                  \n",
+       "[53151] \"242246_x_at\"                 \"242856_at\"                  \n",
+       "[53153] \"38766_at\"                    \"241592_at\"                  \n",
+       "[53155] \"244063_at\"                   \"242856_at\"                  \n",
+       "[53157] \"242881_x_at\"                 \"243762_at\"                  \n",
+       "[53159] \"242970_at\"                   \"243774_at\"                  \n",
+       "[53161] \"240770_at\"                   \"244722_at\"                  \n",
+       "[53163] \"244028_at\"                   \"244024_at\"                  \n",
+       "[53165] \"243962_at\"                   \"243774_at\"                  \n",
+       "[53167] \"244617_at\"                   \"242033_at\"                  \n",
+       "[53169] \"242985_x_at\"                 \"244084_at\"                  \n",
+       "[53171] \"241266_at\"                   \"244800_x_at\"                \n",
+       "[53173] \"244692_at\"                   \"243774_at\"                  \n",
+       "[53175] \"240990_at\"                   \"31837_at\"                   \n",
+       "[53177] \"243774_at\"                   \"40640_at\"                   \n",
+       "[53179] \"244643_at\"                   \"241396_at\"                  \n",
+       "[53181] \"242132_x_at\"                 \"243910_x_at\"                \n",
+       "[53183] \"240974_at\"                   \"242618_at\"                  \n",
+       "[53185] \"242812_at\"                   \"55616_at\"                   \n",
+       "[53187] \"242943_at\"                   \"241805_at\"                  \n",
+       "[53189] \"243764_at\"                   \"241492_at\"                  \n",
+       "[53191] \"243181_at\"                   \"32836_at\"                   \n",
+       "[53193] \"244497_at\"                   \"244574_at\"                  \n",
+       "[53195] \"244317_at\"                   \"79005_at\"                   \n",
+       "[53197] \"241945_at\"                   \"243754_at\"                  \n",
+       "[53199] \"43977_at\"                    \"241137_at\"                  \n",
+       "[53201] \"36742_at\"                    \"243302_at\"                  \n",
+       "[53203] \"38157_at\"                    \"242618_at\"                  \n",
+       "[53205] \"242812_at\"                   \"241443_at\"                  \n",
+       "[53207] \"242098_at\"                   \"243332_at\"                  \n",
+       "[53209] \"241804_at\"                   \"240786_at\"                  \n",
+       "[53211] \"241841_at\"                   \"240954_at\"                  \n",
+       "[53213] \"244007_at\"                   \"35685_at\"                   \n",
+       "[53215] \"56748_at\"                    \"36742_at\"                   \n",
+       "[53217] \"241811_x_at\"                 \"242009_at\"                  \n",
+       "[53219] \"241343_at\"                   \"244259_s_at\"                \n",
+       "[53221] \"240786_at\"                   \"241068_at\"                  \n",
+       "[53223] \"241755_at\"                   \"242595_at\"                  \n",
+       "[53225] \"244056_at\"                   \"37425_g_at\"                 \n",
+       "[53227] \"37424_at\"                    \"42361_g_at\"                 \n",
+       "[53229] \"243719_at\"                   \"36019_at\"                   \n",
+       "[53231] \"35685_at\"                    \"37425_g_at\"                 \n",
+       "[53233] \"37424_at\"                    \"42361_g_at\"                 \n",
+       "[53235] \"31846_at\"                    \"244056_at\"                  \n",
+       "[53237] \"35685_at\"                    \"56748_at\"                   \n",
+       "[53239] \"48117_at\"                    \"64371_at\"                   \n",
+       "[53241] \"37384_at\"                    \"242626_at\"                  \n",
+       "[53243] \"243815_at\"                   \"32836_at\"                   \n",
+       "[53245] \"244353_s_at\"                 \"244279_at\"                  \n",
+       "[53247] \"40420_at\"                    \"77508_r_at\"                 \n",
+       "[53249] \"74694_s_at\"                  \"36742_at\"                   \n",
+       "[53251] \"244056_at\"                   \"244056_at\"                  \n",
+       "[53253] \"241988_x_at\"                 \"63825_at\"                   \n",
+       "[53255] \"87100_at\"                    \"244056_at\"                  \n",
+       "[53257] \"37425_g_at\"                  \"37424_at\"                   \n",
+       "[53259] \"42361_g_at\"                  \"242618_at\"                  \n",
+       "[53261] \"242812_at\"                   \"240701_at\"                  \n",
+       "[53263] \"244663_at\"                   \"241815_at\"                  \n",
+       "[53265] \"243491_at\"                   \"243719_at\"                  \n",
+       "[53267] \"36019_at\"                    \"243962_at\"                  \n",
+       "[53269] \"243438_at\"                   \"56748_at\"                   \n",
+       "[53271] \"56748_at\"                    \"244320_at\"                  \n",
+       "[53273] \"241599_at\"                   \"242112_at\"                  \n",
+       "[53275] \"244351_at\"                   \"242516_x_at\"                \n",
+       "[53277] \"242949_x_at\"                 \"243487_at\"                  \n",
+       "[53279] \"244628_at\"                   \"32836_at\"                   \n",
+       "[53281] \"243043_at\"                   \"244467_at\"                  \n",
+       "[53283] \"243060_at\"                   \"36742_at\"                   \n",
+       "[53285] \"243124_at\"                   \"244600_at\"                  \n",
+       "[53287] \"241422_at\"                   \"242618_at\"                  \n",
+       "[53289] \"242812_at\"                   \"242914_at\"                  \n",
+       "[53291] \"38157_at\"                    \"240731_at\"                  \n",
+       "[53293] \"240731_at\"                   \"240786_at\"                  \n",
+       "[53295] \"36004_at\"                    \"243726_at\"                  \n",
+       "[53297] \"240685_at\"                   \"241137_at\"                  \n",
+       "[53299] \"241869_at\"                   \"33760_at\"                   \n",
+       "[53301] \"240532_at\"                   \"244056_at\"                  \n",
+       "[53303] \"241124_at\"                   \"241337_at\"                  \n",
+       "[53305] \"243844_at\"                   \"244190_at\"                  \n",
+       "[53307] \"243773_at\"                   \"241357_at\"                  \n",
+       "[53309] \"241406_at\"                   \"241475_at\"                  \n",
+       "[53311] \"36936_at\"                    \"242005_at\"                  \n",
+       "[53313] \"243892_at\"                   \"241369_at\"                  \n",
+       "[53315] \"242525_at\"                   \"244111_at\"                  \n",
+       "[53317] \"244344_at\"                   \"241046_at\"                  \n",
+       "[53319] \"242991_at\"                   \"241856_at\"                  \n",
+       "[53321] \"243601_at\"                   \"242389_at\"                  \n",
+       "[53323] \"241792_x_at\"                 \"242991_at\"                  \n",
+       "[53325] \"242205_at\"                   \"242197_x_at\"                \n",
+       "[53327] \"242234_at\"                   \"47773_at\"                   \n",
+       "[53329] \"31637_s_at\"                  \"243768_at\"                  \n",
+       "[53331] \"243969_at\"                   \"242007_at\"                  \n",
+       "[53333] \"242303_at\"                   \"241838_at\"                  \n",
+       "[53335] \"241358_at\"                   \"242780_at\"                  \n",
+       "[53337] \"244056_at\"                   \"241449_at\"                  \n",
+       "[53339] \"241994_at\"                   \"242649_x_at\"                \n",
+       "[53341] \"242207_at\"                   \"38157_at\"                   \n",
+       "[53343] \"48808_at\"                    \"240786_at\"                  \n",
+       "[53345] \"242492_at\"                   \"37232_at\"                   \n",
+       "[53347] \"243719_at\"                   \"36019_at\"                   \n",
+       "[53349] \"39835_at\"                    \"242586_at\"                  \n",
+       "[53351] \"242807_at\"                   \"244210_at\"                  \n",
+       "[53353] \"240751_at\"                   \"242700_at\"                  \n",
+       "[53355] \"242229_at\"                   \"242635_s_at\"                \n",
+       "[53357] \"242752_at\"                   \"244834_at\"                  \n",
+       "[53359] \"240655_at\"                   \"241992_at\"                  \n",
+       "[53361] \"242618_at\"                   \"242812_at\"                  \n",
+       "[53363] \"36742_at\"                    \"56748_at\"                   \n",
+       "[53365] \"32836_at\"                    \"33132_at\"                   \n",
+       "[53367] \"56748_at\"                    \"241507_x_at\"                \n",
+       "[53369] \"241208_at\"                   \"37425_g_at\"                 \n",
+       "[53371] \"37424_at\"                    \"42361_g_at\"                 \n",
+       "[53373] \"244324_at\"                   \"35685_at\"                   \n",
+       "[53375] \"36742_at\"                    \"244056_at\"                  \n",
+       "[53377] \"36019_at\"                    \"243719_at\"                  \n",
+       "[53379] \"244118_at\"                   \"33132_at\"                   \n",
+       "[53381] \"240856_at\"                   \"244767_at\"                  \n",
+       "[53383] \"242348_at\"                   \"56748_at\"                   \n",
+       "[53385] \"241374_at\"                   \"244062_at\"                  \n",
+       "[53387] \"242083_at\"                   \"242676_at\"                  \n",
+       "[53389] \"241778_at\"                   \"244549_at\"                  \n",
+       "[53391] \"243719_at\"                   \"36019_at\"                   \n",
+       "[53393] \"244855_at\"                   \"241426_at\"                  \n",
+       "[53395] \"38157_at\"                    \"37831_at\"                   \n",
+       "[53397] \"244689_at\"                   \"40446_at\"                   \n",
+       "[53399] \"32836_at\"                    \"242324_x_at\"                \n",
+       "[53401] \"36742_at\"                    \"36019_at\"                   \n",
+       "[53403] \"57082_at\"                    \"45714_at\"                   \n",
+       "[53405] \"241137_at\"                   \"244056_at\"                  \n",
+       "[53407] \"45633_at\"                    \"46142_at\"                   \n",
+       "[53409] \"242334_at\"                   \"242618_at\"                  \n",
+       "[53411] \"242812_at\"                   \"240786_at\"                  \n",
+       "[53413] \"35685_at\"                    \"240786_at\"                  \n",
+       "[53415] \"37425_g_at\"                  \"37424_at\"                   \n",
+       "[53417] \"42361_g_at\"                  \"242965_at\"                  \n",
+       "[53419] \"244056_at\"                   \"40569_at\"                   \n",
+       "[53421] \"32836_at\"                    \"241263_at\"                  \n",
+       "[53423] \"241045_at\"                   \"244198_at\"                  \n",
+       "[53425] \"38157_at\"                    \"241999_at\"                  \n",
+       "[53427] \"243179_at\"                   \"243907_at\"                  \n",
+       "[53429] \"241782_at\"                   \"241709_s_at\"                \n",
+       "[53431] \"241708_at\"                   \"242020_s_at\"                \n",
+       "[53433] \"243722_at\"                   \"62987_r_at\"                 \n",
+       "[53435] \"244460_at\"                   \"243896_at\"                  \n",
+       "[53437] \"243595_at\"                   \"242064_at\"                  \n",
+       "[53439] \"32541_at\"                    \"244099_at\"                  \n",
+       "[53441] \"244828_x_at\"                 \"34858_at\"                   \n",
+       "[53443] \"243336_at\"                   \"242761_s_at\"                \n",
+       "[53445] \"242647_at\"                   \"243104_at\"                  \n",
+       "[53447] \"242781_at\"                   \"242998_at\"                  \n",
+       "[53449] \"240565_at\"                   \"241114_s_at\"                \n",
+       "[53451] \"244166_at\"                   \"241449_at\"                  \n",
+       "[53453] \"243116_at\"                   \"240830_at\"                  \n",
+       "[53455] \"240830_at\"                   \"241405_at\"                  \n",
+       "[53457] \"48580_at\"                    \"243308_at\"                  \n",
+       "[53459] \"243737_at\"                   \"243386_at\"                  \n",
+       "[53461] \"240955_at\"                   \"242531_at\"                  \n",
+       "[53463] \"242627_at\"                   \"242905_at\"                  \n",
+       "[53465] \"320_at\"                      \"240784_at\"                  \n",
+       "[53467] \"63305_at\"                    \"52285_f_at\"                 \n",
+       "[53469] \"241183_at\"                   \"240769_at\"                  \n",
+       "[53471] \"244185_at\"                   \"243552_at\"                  \n",
+       "[53473] \"243067_at\"                   \"243510_at\"                  \n",
+       "[53475] \"35666_at\"                    \"242938_s_at\"                \n",
+       "[53477] \"243313_at\"                   \"242140_at\"                  \n",
+       "[53479] \"242139_s_at\"                 \"243937_x_at\"                \n",
+       "[53481] \"242393_x_at\"                 \"242522_at\"                  \n",
+       "[53483] \"243220_at\"                   \"244404_at\"                  \n",
+       "[53485] \"241380_at\"                   \"242140_at\"                  \n",
+       "[53487] \"242139_s_at\"                 \"242698_at\"                  \n",
+       "[53489] \"242150_at\"                   \"243840_at\"                  \n",
+       "[53491] \"240487_at\"                   \"241775_at\"                  \n",
+       "[53493] \"243525_at\"                   \"241475_at\"                  \n",
+       "[53495] \"241357_at\"                   \"241528_at\"                  \n",
+       "[53497] \"242833_at\"                   \"242925_at\"                  \n",
+       "[53499] \"244254_at\"                   \"32502_at\"                   \n",
+       "[53501] \"241406_at\"                   \"243345_at\"                  \n",
+       "[53503] \"243411_at\"                   \"243617_at\"                  \n",
+       "[53505] \"243618_s_at\"                 \"240859_at\"                  \n",
+       "[53507] \"242887_at\"                   \"241032_at\"                  \n",
+       "[53509] \"242764_at\"                   \"40687_at\"                   \n",
+       "[53511] \"244273_at\"                   \"242687_at\"                  \n",
+       "[53513] \"244832_at\"                   \"243555_at\"                  \n",
+       "[53515] \"243161_x_at\"                 \"242474_s_at\"                \n",
+       "[53517] \"243013_at\"                   \"38521_at\"                   \n",
+       "[53519] \"244034_at\"                   \"243099_at\"                  \n",
+       "[53521] \"242629_at\"                   \"241454_at\"                  \n",
+       "[53523] \"240830_at\"                   \"242100_at\"                  \n",
+       "[53525] \"242971_at\"                   \"241350_at\"                  \n",
+       "[53527] \"242278_at\"                   \"243383_at\"                  \n",
+       "[53529] \"241534_at\"                   \"244362_at\"                  \n",
+       "[53531] \"39817_s_at\"                  \"243426_at\"                  \n",
+       "[53533] \"241550_at\"                   \"242994_at\"                  \n",
+       "[53535] \"241512_at\"                   \"243521_at\"                  \n",
+       "[53537] \"243814_at\"                   \"240598_at\"                  \n",
+       "[53539] \"242940_x_at\"                 \"35150_at\"                   \n",
+       "[53541] \"58696_at\"                    \"243742_at\"                  \n",
+       "[53543] \"40255_at\"                    \"241308_at\"                  \n",
+       "[53545] \"241933_at\"                   \"241440_at\"                  \n",
+       "[53547] \"35160_at\"                    \"241813_at\"                  \n",
+       "[53549] \"242274_x_at\"                 \"243900_at\"                  \n",
+       "[53551] \"243382_at\"                   \"61732_r_at\"                 \n",
+       "[53553] \"241751_at\"                   \"241067_at\"                  \n",
+       "[53555] \"241946_at\"                   \"243550_at\"                  \n",
+       "[53557] \"243835_at\"                   \"243281_at\"                  \n",
+       "[53559] \"244056_at\"                   \"244056_at\"                  \n",
+       "[53561] \"241725_at\"                   \"36711_at\"                   \n",
+       "[53563] \"241984_at\"                   \"244721_at\"                  \n",
+       "[53565] \"243729_at\"                   \"242874_at\"                  \n",
+       "[53567] \"243264_s_at\"                 \"243264_s_at\"                \n",
+       "[53569] \"240467_at\"                   \"242668_x_at\"                \n",
+       "[53571] \"241066_at\"                   \"240669_at\"                  \n",
+       "[53573] \"241078_at\"                   \"241218_at\"                  \n",
+       "[53575] \"243630_at\"                   \"240490_at\"                  \n",
+       "[53577] \"244870_at\"                   \"242734_x_at\"                \n",
+       "[53579] \"244008_at\"                   \"242111_at\"                  \n",
+       "[53581] \"46167_at\"                    \"241017_at\"                  \n",
+       "[53583] \"60528_at\"                    \"244844_at\"                  \n",
+       "[53585] \"243270_at\"                   \"243269_s_at\"                \n",
+       "[53587] \"54037_at\"                    \"37950_at\"                   \n",
+       "[53589] \"242470_at\"                   \"635_s_at\"                   \n",
+       "[53591] \"241987_x_at\"                 \"244096_at\"                  \n",
+       "[53593] \"243571_at\"                   \"243571_at\"                  \n",
+       "[53595] \"244372_at\"                   \"244278_at\"                  \n",
+       "[53597] \"242639_at\"                   \"48106_at\"                   \n",
+       "[53599] \"78495_at\"                    \"47571_at\"                   \n",
+       "[53601] \"243171_at\"                   \"45572_s_at\"                 \n",
+       "[53603] \"50277_at\"                    \"243984_at\"                  \n",
+       "[53605] \"242964_at\"                   \"243668_at\"                  \n",
+       "[53607] \"244487_at\"                   \"241233_x_at\"                \n",
+       "[53609] \"243417_at\"                   \"242465_at\"                  \n",
+       "[53611] \"34221_at\"                    \"32402_s_at\"                 \n",
+       "[53613] \"244749_at\"                   \"240928_at\"                  \n",
+       "[53615] \"40284_at\"                    \"242587_at\"                  \n",
+       "[53617] \"32811_at\"                    \"241852_at\"                  \n",
+       "[53619] \"61874_at\"                    \"241822_at\"                  \n",
+       "[53621] \"244123_at\"                   \"33768_at\"                   \n",
+       "[53623] \"37943_at\"                    \"242260_at\"                  \n",
+       "[53625] \"242262_x_at\"                 \"241089_at\"                  \n",
+       "[53627] \"242210_at\"                   \"240841_at\"                  \n",
+       "[53629] \"241359_at\"                   \"45297_at\"                   \n",
+       "[53631] \"244545_at\"                   \"39402_at\"                   \n",
+       "[53633] \"243799_x_at\"                 \"244638_at\"                  \n",
+       "[53635] \"241546_at\"                   \"242251_at\"                  \n",
+       "[53637] \"241157_at\"                   \"242961_x_at\"                \n",
+       "[53639] \"240777_at\"                   \"241931_at\"                  \n",
+       "[53641] \"243095_at\"                   \"242375_x_at\"                \n",
+       "[53643] \"242029_at\"                   \"31874_at\"                   \n",
+       "[53645] \"242961_x_at\"                 \"39854_r_at\"                 \n",
+       "[53647] \"244654_at\"                   \"243228_at\"                  \n",
+       "[53649] \"241407_at\"                   \"244596_at\"                  \n",
+       "[53651] \"240804_at\"                   \"242293_at\"                  \n",
+       "[53653] \"242941_x_at\"                 \"243045_at\"                  \n",
+       "[53655] \"243421_at\"                   \"41469_at\"                   \n",
+       "[53657] \"241715_x_at\"                 \"241907_at\"                  \n",
+       "[53659] \"244877_at\"                   \"243517_at\"                  \n",
+       "[53661] \"240729_at\"                   \"241464_s_at\"                \n",
+       "[53663] \"241464_s_at\"                 \"243994_at\"                  \n",
+       "[53665] \"243663_at\"                   \"37254_at\"                   \n",
+       "[53667] \"243766_s_at\"                 \"244347_at\"                  \n",
+       "[53669] \"241587_at\"                   \"242638_at\"                  \n",
+       "[53671] \"241922_at\"                   \"244826_at\"                  \n",
+       "[53673] \"242942_at\"                   \"242871_at\"                  \n",
+       "[53675] \"242783_at\"                   \"243622_at\"                  \n",
+       "[53677] \"242871_at\"                   \"241411_at\"                  \n",
+       "[53679] \"36994_at\"                    \"36994_at\"                   \n",
+       "[53681] \"244037_at\"                   \"32029_at\"                   \n",
+       "[53683] \"244629_s_at\"                 \"244189_at\"                  \n",
+       "[53685] \"242611_at\"                   \"39549_at\"                   \n",
+       "[53687] \"39548_at\"                    \"241741_at\"                  \n",
+       "[53689] \"241741_at\"                   \"243062_at\"                  \n",
+       "[53691] \"244431_at\"                   \"241084_x_at\"                \n",
+       "[53693] \"244768_at\"                   \"241793_at\"                  \n",
+       "[53695] \"243485_at\"                   \"60474_at\"                   \n",
+       "[53697] \"244863_at\"                   \"243762_at\"                  \n",
+       "[53699] \"242881_x_at\"                 \"243708_at\"                  \n",
+       "[53701] \"53991_at\"                    \"59999_at\"                   \n",
+       "[53703] \"240966_at\"                   \"244276_at\"                  \n",
+       "[53705] \"242342_at\"                   \"242204_at\"                  \n",
+       "[53707] \"242984_at\"                   \"244171_at\"                  \n",
+       "[53709] \"59697_at\"                    \"35846_at\"                   \n",
+       "[53711] \"44696_at\"                    \"244615_x_at\"                \n",
+       "[53713] \"243952_at\"                   \"243048_at\"                  \n",
+       "[53715] \"244179_x_at\"                 \"243669_s_at\"                \n",
+       "[53717] \"243790_at\"                   \"243669_s_at\"                \n",
+       "[53719] \"243357_at\"                   \"33307_at\"                   \n",
+       "[53721] \"243779_at\"                   \"33307_at\"                   \n",
+       "[53723] \"242442_x_at\"                 \"50400_at\"                   \n",
+       "[53725] \"244176_at\"                   \"241355_at\"                  \n",
+       "[53727] \"242670_at\"                   \"242345_at\"                  \n",
+       "[53729] \"242617_at\"                   \"244739_at\"                  \n",
+       "[53731] \"56197_at\"                    \"244270_at\"                  \n",
+       "[53733] \"242760_x_at\"                 \"56197_at\"                   \n",
+       "[53735] \"240878_at\"                   \"34187_at\"                   \n",
+       "[53737] \"240878_at\"                   \"243403_x_at\"                \n",
+       "[53739] \"241765_at\"                   \"241998_at\"                  \n",
+       "[53741] \"244493_at\"                   \"243824_at\"                  \n",
+       "[53743] \"244565_at\"                   \"243914_at\"                  \n",
+       "[53745] \"243816_at\"                   \"242987_x_at\"                \n",
+       "[53747] \"57739_at\"                    \"36920_at\"                   \n",
+       "[53749] \"244833_at\"                   \"243402_at\"                  \n",
+       "[53751] \"50221_at\"                    \"243478_at\"                  \n",
+       "[53753] \"244601_at\"                   \"242800_at\"                  \n",
+       "[53755] \"36829_at\"                    \"242832_at\"                  \n",
+       "[53757] \"243204_at\"                   \"241799_x_at\"                \n",
+       "[53759] \"55872_at\"                    \"240945_at\"                  \n",
+       "[53761] \"242832_at\"                   \"241572_at\"                  \n",
+       "[53763] \"244417_at\"                   \"242637_at\"                  \n",
+       "[53765] \"240807_at\"                   \"46167_at\"                   \n",
+       "[53767] \"244598_at\"                   \"244251_at\"                  \n",
+       "[53769] \"244556_at\"                   \"41160_at\"                   \n",
+       "[53771] \"243724_at\"                   \"34031_i_at\"                 \n",
+       "[53773] \"243000_at\"                   \"242828_at\"                  \n",
+       "[53775] \"242921_at\"                   \"38691_s_at\"                 \n",
+       "[53777] \"242404_at\"                   \"244764_at\"                  \n",
+       "[53779] \"242994_at\"                   \"241874_at\"                  \n",
+       "[53781] \"241685_x_at\"                 \"241874_at\"                  \n",
+       "[53783] \"241685_x_at\"                 \"243251_at\"                  \n",
+       "[53785] \"242331_x_at\"                 \"242088_at\"                  \n",
+       "[53787] \"243918_at\"                   \"242633_x_at\"                \n",
+       "[53789] \"244818_at\"                   \"242969_at\"                  \n",
+       "[53791] \"243294_at\"                   \"244463_at\"                  \n",
+       "[53793] \"244363_at\"                   \"243190_at\"                  \n",
+       "[53795] \"31845_at\"                    \"243170_at\"                  \n",
+       "[53797] \"64474_g_at\"                  \"91617_at\"                   \n",
+       "[53799] \"241312_at\"                   \"52255_s_at\"                 \n",
+       "[53801] \"37860_at\"                    \"243397_at\"                  \n",
+       "[53803] \"41512_at\"                    \"53720_at\"                   \n",
+       "[53805] \"243526_at\"                   \"243496_at\"                  \n",
+       "[53807] \"241861_at\"                   \"34471_at\"                   \n",
+       "[53809] \"243957_at\"                   \"240919_at\"                  \n",
+       "[53811] \"243349_at\"                   \"49878_at\"                   \n",
+       "[53813] \"242264_at\"                   \"242699_at\"                  \n",
+       "[53815] \"242319_at\"                   \"244291_x_at\"                \n",
+       "[53817] \"243619_at\"                   \"244842_x_at\"                \n",
+       "[53819] \"48030_i_at\"                  \"48031_r_at\"                 \n",
+       "[53821] \"242247_at\"                   \"241698_at\"                  \n",
+       "[53823] \"241095_at\"                   \"240915_at\"                  \n",
+       "[53825] \"240989_at\"                   \"240915_at\"                  \n",
+       "[53827] \"37117_at\"                    \"242344_at\"                  \n",
+       "[53829] \"244861_at\"                   \"242387_at\"                  \n",
+       "[53831] \"240857_at\"                   \"241056_at\"                  \n",
+       "[53833] \"242697_at\"                   \"242815_x_at\"                \n",
+       "[53835] \"242138_at\"                   \"243700_x_at\"                \n",
+       "[53837] \"241170_at\"                   \"244475_at\"                  \n",
+       "[53839] \"241384_x_at\"                 \"241146_at\"                  \n",
+       "[53841] \"65884_at\"                    \"244514_at\"                  \n",
+       "[53843] \"243170_at\"                   \"243917_at\"                  \n",
+       "[53845] \"242917_at\"                   \"36936_at\"                   \n",
+       "[53847] \"242265_at\"                   \"243965_at\"                  \n",
+       "[53849] \"241736_at\"                   \"244481_at\"                  \n",
+       "[53851] \"243156_at\"                   \"242655_at\"                  \n",
+       "[53853] \"243128_at\"                   \"44673_at\"                   \n",
+       "[53855] \"241206_at\"                   \"244795_at\"                  \n",
+       "[53857] \"33304_at\"                    \"63009_at\"                   \n",
+       "[53859] \"241521_at\"                   \"241255_at\"                  \n",
+       "[53861] \"46270_at\"                    \"241247_at\"                  \n",
+       "[53863] \"244274_at\"                   \"240760_at\"                  \n",
+       "[53865] \"240550_at\"                   \"240715_at\"                  \n",
+       "[53867] \"240760_at\"                   \"243770_at\"                  \n",
+       "[53869] \"60084_at\"                    \"39582_at\"                   \n",
+       "[53871] \"242128_at\"                   \"242164_s_at\"                \n",
+       "[53873] \"242165_at\"                   \"64064_at\"                   \n",
+       "[53875] \"32137_at\"                    \"243770_at\"                  \n",
+       "[53877] \"242460_at\"                   \"242757_at\"                  \n",
+       "[53879] \"44120_at\"                    \"34406_at\"                   \n",
+       "[53881] \"242294_at\"                   \"244481_at\"                  \n",
+       "[53883] \"243594_x_at\"                 \"242077_x_at\"                \n",
+       "[53885] \"240615_at\"                   \"244699_at\"                  \n",
+       "[53887] \"243940_at\"                   \"244521_at\"                  \n",
+       "[53889] \"242580_at\"                   \"49051_g_at\"                 \n",
+       "[53891] \"49049_at\"                    \"241738_at\"                  \n",
+       "[53893] \"242507_at\"                   \"241564_at\"                  \n",
+       "[53895] \"244513_at\"                   \"241867_at\"                  \n",
+       "[53897] \"243870_at\"                   \"57715_at\"                   \n",
+       "[53899] \"243212_at\"                   \"36865_at\"                   \n",
+       "[53901] \"244685_at\"                   \"243502_at\"                  \n",
+       "[53903] \"242773_at\"                   \"65086_at\"                   \n",
+       "[53905] \"45828_at\"                    \"241720_at\"                  \n",
+       "[53907] \"242056_at\"                   \"242307_at\"                  \n",
+       "[53909] \"243024_at\"                   \"244400_at\"                  \n",
+       "[53911] \"244843_x_at\"                 \"241898_at\"                  \n",
+       "[53913] \"240671_at\"                   \"242816_at\"                  \n",
+       "[53915] \"242975_s_at\"                 \"64408_s_at\"                 \n",
+       "[53917] \"243117_at\"                   \"241367_at\"                  \n",
+       "[53919] \"242621_at\"                   \"241468_at\"                  \n",
+       "[53921] \"53071_s_at\"                  \"64438_at\"                   \n",
+       "[53923] \"240876_x_at\"                 \"243609_at\"                  \n",
+       "[53925] \"60528_at\"                    \"38707_r_at\"                 \n",
+       "[53927] \"241996_at\"                   \"240825_at\"                  \n",
+       "[53929] \"243050_at\"                   \"244747_at\"                  \n",
+       "[53931] \"242602_x_at\"                 \"241014_at\"                  \n",
+       "[53933] \"243439_at\"                   \"242680_at\"                  \n",
+       "[53935] \"244079_at\"                   \"243577_at\"                  \n",
+       "[53937] \"244780_at\"                   \"244538_at\"                  \n",
+       "[53939] \"AFFX-HSAC07/X00351_M_at\"     \"AFFX-HSAC07/X00351_3_at\"    \n",
+       "[53941] \"AFFX-HSAC07/X00351_5_at\"     \"242810_x_at\"                \n",
+       "[53943] \"241803_s_at\"                 \"243674_at\"                  \n",
+       "[53945] \"56748_at\"                    \"36742_at\"                   \n",
+       "[53947] \"244050_at\"                   \"242946_at\"                  \n",
+       "[53949] \"78383_at\"                    \"241701_at\"                  \n",
+       "[53951] \"243868_at\"                   \"34478_at\"                   \n",
+       "[53953] \"241742_at\"                   \"241036_at\"                  \n",
+       "[53955] \"241661_at\"                   \"243070_at\"                  \n",
+       "[53957] \"240614_at\"                   \"244572_at\"                  \n",
+       "[53959] \"240488_at\"                   \"240983_s_at\"                \n",
+       "[53961] \"32836_at\"                    \"40273_at\"                   \n",
+       "[53963] \"242922_at\"                   \"57739_at\"                   \n",
+       "[53965] \"243945_at\"                   \"35617_at\"                   \n",
+       "[53967] \"243376_at\"                   \"241840_at\"                  \n",
+       "[53969] \"241658_at\"                   \"244695_at\"                  \n",
+       "[53971] \"240786_at\"                   \"241650_x_at\"                \n",
+       "[53973] \"37986_at\"                    \"396_f_at\"                   \n",
+       "[53975] \"50374_at\"                    \"242648_at\"                  \n",
+       "[53977] \"244113_at\"                   \"242554_at\"                  \n",
+       "[53979] \"34063_at\"                    \"242545_at\"                  \n",
+       "[53981] \"240534_at\"                   \"242623_x_at\"                \n",
+       "[53983] \"241371_at\"                   \"244886_at\"                  \n",
+       "[53985] \"241328_at\"                   \"241373_at\"                  \n",
+       "[53987] \"31861_at\"                    \"243746_at\"                  \n",
+       "[53989] \"240950_s_at\"                 \"32042_at\"                   \n",
+       "[53991] \"244841_at\"                   \"244009_at\"                  \n",
+       "[53993] \"241920_x_at\"                 \"244825_at\"                  \n",
+       "[53995] \"243172_at\"                   \"243937_x_at\"                \n",
+       "[53997] \"34225_at\"                    \"243901_at\"                  \n",
+       "[53999] \"244389_at\"                   \"241642_x_at\"                \n",
+       "[54001] \"32062_at\"                    \"47530_at\"                   \n",
+       "[54003] \"241524_at\"                   \"241422_at\"                  \n",
+       "[54005] \"241112_at\"                   \"241734_at\"                  \n",
+       "[54007] \"244006_at\"                   \"46947_at\"                   \n",
+       "[54009] \"244580_at\"                   \"61734_at\"                   \n",
+       "[54011] \"37152_at\"                    \"57516_at\"                   \n",
+       "[54013] \"242272_at\"                   \"242388_x_at\"                \n",
+       "[54015] \"45687_at\"                    \"244519_at\"                  \n",
+       "[54017] \"242438_at\"                   \"242439_s_at\"                \n",
+       "[54019] \"241839_at\"                   \"241408_at\"                  \n",
+       "[54021] \"242217_s_at\"                 \"244814_at\"                  \n",
+       "[54023] \"244212_at\"                   \"241495_at\"                  \n",
+       "[54025] \"240495_at\"                   \"244266_at\"                  \n",
+       "[54027] \"243579_at\"                   \"243010_at\"                  \n",
+       "[54029] \"241960_at\"                   \"241122_s_at\"                \n",
+       "[54031] \"243259_at\"                   \"242422_at\"                  \n",
+       "[54033] \"244396_at\"                   \"243038_at\"                  \n",
+       "[54035] \"242605_at\"                   \"240556_at\"                  \n",
+       "[54037] \"53912_at\"                    \"64883_at\"                   \n",
+       "[54039] \"51226_at\"                    \"241256_at\"                  \n",
+       "[54041] \"243741_at\"                   \"243511_at\"                  \n",
+       "[54043] \"241935_at\"                   \"242187_s_at\"                \n",
+       "[54045] \"38157_at\"                    \"244092_at\"                  \n",
+       "[54047] \"39249_at\"                    \"39248_at\"                   \n",
+       "[54049] \"240827_at\"                   \"36019_at\"                   \n",
+       "[54051] \"241368_at\"                   \"242613_at\"                  \n",
+       "[54053] \"39891_at\"                    \"37590_g_at\"                 \n",
+       "[54055] \"242372_s_at\"                 \"243761_at\"                  \n",
+       "[54057] \"36004_at\"                    \"40189_at\"                   \n",
+       "[54059] \"243459_x_at\"                 \"244065_at\"                  \n",
+       "[54061] \"241957_x_at\"                 \"41329_at\"                   \n",
+       "[54063] \"244597_at\"                   \"244281_at\"                  \n",
+       "[54065] \"243761_at\"                   \"53202_at\"                   \n",
+       "[54067] \"242774_at\"                   \"243841_at\"                  \n",
+       "[54069] \"64408_s_at\"                  \"240993_at\"                  \n",
+       "[54071] \"243497_at\"                   \"50376_at\"                   \n",
+       "[54073] \"38241_at\"                    \"242916_at\"                  \n",
+       "[54075] \"40359_at\"                    \"242493_at\"                  \n",
+       "[54077] \"242753_x_at\"                 \"40489_at\"                   \n",
+       "[54079] \"240771_at\"                   \"38043_at\"                   \n",
+       "[54081] \"243951_at\"                   \"243818_at\"                  \n",
+       "[54083] \"241989_at\"                   \"243065_at\"                  \n",
+       "[54085] \"244066_at\"                   \"243078_at\"                  \n",
+       "[54087] \"243472_at\"                   \"242213_at\"                  \n",
+       "[54089] \"244751_at\"                   \"243282_at\"                  \n",
+       "[54091] \"243704_at\"                   \"242224_at\"                  \n",
+       "[54093] \"242213_at\"                   \"244258_at\"                  \n",
+       "[54095] \"244644_at\"                   \"241887_at\"                  \n",
+       "[54097] \"242857_at\"                   \"242027_at\"                  \n",
+       "[54099] \"243026_x_at\"                 \"76897_s_at\"                 \n",
+       "[54101] \"31826_at\"                    \"241826_x_at\"                \n",
+       "[54103] \"51228_at\"                    \"244126_at\"                  \n",
+       "[54105] \"241862_x_at\"                 \"241842_x_at\"                \n",
+       "[54107] \"243869_at\"                   \"49077_at\"                   \n",
+       "[54109] \"242944_at\"                   \"243443_at\"                  \n",
+       "[54111] \"244661_at\"                   \"243336_at\"                  \n",
+       "[54113] \"240720_at\"                   \"243444_at\"                  \n",
+       "[54115] \"38918_at\"                    \"244686_at\"                  \n",
+       "[54117] \"243153_at\"                   \"242923_at\"                  \n",
+       "[54119] \"244614_at\"                   \"244649_at\"                  \n",
+       "[54121] \"241844_x_at\"                 \"64486_at\"                   \n",
+       "[54123] \"242271_at\"                   \"242323_at\"                  \n",
+       "[54125] \"244117_at\"                   \"241241_at\"                  \n",
+       "[54127] \"244184_at\"                   \"243975_at\"                  \n",
+       "[54129] \"244446_at\"                   \"242702_at\"                  \n",
+       "[54131] \"242750_at\"                   \"242393_x_at\"                \n",
+       "[54133] \"243937_x_at\"                 \"241018_at\"                  \n",
+       "[54135] \"56919_at\"                    \"65591_at\"                   \n",
+       "[54137] \"243276_at\"                   \"35685_at\"                   \n",
+       "[54139] \"244533_at\"                   \"242321_at\"                  \n",
+       "[54141] \"38964_r_at\"                  \"59644_at\"                   \n",
+       "[54143] \"37170_at\"                    \"65585_at\"                   \n",
+       "[54145] \"65585_at\"                    \"241196_at\"                  \n",
+       "[54147] \"240578_at\"                   \"242967_at\"                  \n",
+       "[54149] \"241966_at\"                   \"240746_s_at\"                \n",
+       "[54151] \"240745_at\"                   \"241448_at\"                  \n",
+       "[54153] \"243003_at\"                   \"48825_at\"                   \n",
+       "[54155] \"242226_at\"                   \"39729_at\"                   \n",
+       "[54157] \"242048_at\"                   \"33494_at\"                   \n",
+       "[54159] \"242048_at\"                   \"241202_at\"                  \n",
+       "[54161] \"244393_x_at\"                 \"242552_x_at\"                \n",
+       "[54163] \"36994_at\"                    \"243740_at\"                  \n",
+       "[54165] \"40446_at\"                    \"242195_x_at\"                \n",
+       "[54167] \"242841_at\"                   \"242841_at\"                  \n",
+       "[54169] \"240778_at\"                   \"242609_x_at\"                \n",
+       "[54171] \"242609_x_at\"                 \"241469_at\"                  \n",
+       "[54173] \"40472_at\"                    \"244385_at\"                  \n",
+       "[54175] \"243968_x_at\"                 \"241823_at\"                  \n",
+       "[54177] \"242582_at\"                   \"244132_x_at\"                \n",
+       "[54179] \"244172_at\"                   \"242146_at\"                  \n",
+       "[54181] \"242725_at\"                   \"59437_at\"                   \n",
+       "[54183] \"89977_at\"                    \"242440_at\"                  \n",
+       "[54185] \"241914_s_at\"                 \"243903_at\"                  \n",
+       "[54187] \"243903_at\"                   \"242447_at\"                  \n",
+       "[54189] \"244723_at\"                   \"242472_x_at\"                \n",
+       "[54191] \"242846_at\"                   \"243109_at\"                  \n",
+       "[54193] \"241375_at\"                   \"243248_at\"                  \n",
+       "[54195] \"243831_at\"                   \"244653_at\"                  \n",
+       "[54197] \"243483_at\"                   \"244669_at\"                  \n",
+       "[54199] \"31807_at\"                    \"240541_at\"                  \n",
+       "[54201] \"244669_at\"                   \"243304_at\"                  \n",
+       "[54203] \"242230_at\"                   \"241387_at\"                  \n",
+       "[54205] \"241453_at\"                   \"240479_at\"                  \n",
+       "[54207] \"242549_at\"                   \"56821_at\"                   \n",
+       "[54209] \"244505_at\"                   \"244777_at\"                  \n",
+       "[54211] \"242977_at\"                   \"242864_at\"                  \n",
+       "[54213] \"242571_at\"                   \"244869_at\"                  \n",
+       "[54215] \"241619_at\"                   \"65133_i_at\"                 \n",
+       "[54217] \"244502_at\"                   \"65133_i_at\"                 \n",
+       "[54219] \"65517_at\"                    \"241766_at\"                  \n",
+       "[54221] \"242286_at\"                   \"242754_at\"                  \n",
+       "[54223] \"244823_at\"                   \"244043_at\"                  \n",
+       "[54225] \"243198_at\"                   \"244801_at\"                  \n",
+       "[54227] \"240744_at\"                   \"243938_x_at\"                \n",
+       "[54229] \"242479_s_at\"                 \"240464_at\"                  \n",
+       "[54231] \"244752_at\"                   \"241894_at\"                  \n",
+       "[54233] \"632_at\"                      \"242173_at\"                  \n",
+       "[54235] \"36612_at\"                    \"242023_at\"                  \n",
+       "[54237] \"241914_s_at\"                 \"241915_at\"                  \n",
+       "[54239] \"242419_at\"                   \"243977_at\"                  \n",
+       "[54241] \"242361_at\"                   \"242608_x_at\"                \n",
+       "[54243] \"242758_x_at\"                 \"241951_at\"                  \n",
+       "[54245] \"242186_x_at\"                 \"59705_at\"                   \n",
+       "[54247] \"243943_x_at\"                 \"241990_at\"                  \n",
+       "[54249] \"243296_at\"                   \"241181_x_at\"                \n",
+       "[54251] \"243324_x_at\"                 \"38269_at\"                   \n",
+       "[54253] \"241669_x_at\"                 \"243213_at\"                  \n",
+       "[54255] \"242539_at\"                   \"244304_at\"                  \n",
+       "[54257] \"243141_at\"                   \"242963_at\"                  \n",
+       "[54259] \"243328_at\"                   \"243468_at\"                  \n",
+       "[54261] \"243268_at\"                   \"244294_at\"                  \n",
+       "[54263] \"242539_at\"                   \"244304_at\"                  \n",
+       "[54265] \"244623_at\"                   \"243686_at\"                  \n",
+       "[54267] \"243686_at\"                   \"243881_at\"                  \n",
+       "[54269] \"52159_at\"                    \"244700_at\"                  \n",
+       "[54271] \"41856_at\"                    \"240836_at\"                  \n",
+       "[54273] \"240836_at\"                   \"240884_at\"                  \n",
+       "[54275] \"243777_at\"                   \"243344_at\"                  \n",
+       "[54277] \"243995_at\"                   \"65718_at\"                   \n",
+       "[54279] \"241143_at\"                   \"241895_at\"                  \n",
+       "[54281] \"240546_at\"                   \"41858_at\"                   \n",
+       "[54283] \"244540_at\"                   \"243542_at\"                  \n",
+       "[54285] \"240824_at\"                   \"52005_at\"                   \n",
+       "[54287] \"244761_at\"                   \"240929_at\"                  \n",
+       "[54289] \"244057_s_at\"                 \"244058_at\"                  \n",
+       "[54291] \"243902_at\"                   \"243262_at\"                  \n",
+       "[54293] \"244153_at\"                   \"47553_at\"                   \n",
+       "[54295] \"243875_at\"                   \"244038_at\"                  \n",
+       "[54297] \"242015_x_at\"                 \"242583_at\"                  \n",
+       "[54299] \"242535_at\"                   \"242911_at\"                  \n",
+       "[54301] \"240584_at\"                   \"242636_at\"                  \n",
+       "[54303] \"241447_at\"                   \"241949_at\"                  \n",
+       "[54305] \"242890_at\"                   \"37020_at\"                   \n",
+       "[54307] \"243325_at\"                   \"240590_at\"                  \n",
+       "[54309] \"241252_at\"                   \"41644_at\"                   \n",
+       "[54311] \"34449_at\"                    \"242888_at\"                  \n",
+       "[54313] \"243103_at\"                   \"242297_at\"                  \n",
+       "[54315] \"242402_x_at\"                 \"244343_at\"                  \n",
+       "[54317] \"49327_at\"                    \"242426_at\"                  \n",
+       "[54319] \"241955_at\"                   \"242349_at\"                  \n",
+       "[54321] \"241683_at\"                   \"241009_at\"                  \n",
+       "[54323] \"240661_at\"                   \"241482_at\"                  \n",
+       "[54325] \"37566_at\"                    \"52940_at\"                   \n",
+       "[54327] \"241525_at\"                   \"241739_at\"                  \n",
+       "[54329] \"241483_at\"                   \"244115_at\"                  \n",
+       "[54331] \"244196_at\"                   \"241790_at\"                  \n",
+       "[54333] \"242116_x_at\"                 \"56829_at\"                   \n",
+       "[54335] \"35436_at\"                    \"243998_at\"                  \n",
+       "[54337] \"244111_at\"                   \"240948_at\"                  \n",
+       "[54339] \"38290_at\"                    \"242082_at\"                  \n",
+       "[54341] \"242794_at\"                   \"241324_at\"                  \n",
+       "[54343] \"58916_at\"                    \"242229_at\"                  \n",
+       "[54345] \"242635_s_at\"                 \"243445_at\"                  \n",
+       "[54347] \"241031_at\"                   \"242034_at\"                  \n",
+       "[54349] \"241510_at\"                   \"244315_at\"                  \n",
+       "[54351] \"243946_at\"                   \"242031_at\"                  \n",
+       "[54353] \"38340_at\"                    \"241403_at\"                  \n",
+       "[54355] \"244443_at\"                   \"35179_at\"                   \n",
+       "[54357] \"41397_at\"                    \"241963_at\"                  \n",
+       "[54359] \"243985_at\"                   \"44617_at\"                   \n",
+       "[54361] \"244127_at\"                   \"242209_at\"                  \n",
+       "[54363] \"244242_at\"                   \"242208_at\"                  \n",
+       "[54365] \"240662_at\"                   \"241038_at\"                  \n",
+       "[54367] \"242488_at\"                   \"36552_at\"                   \n",
+       "[54369] \"240633_at\"                   \"242705_x_at\"                \n",
+       "[54371] \"244743_x_at\"                 \"44111_at\"                   \n",
+       "[54373] \"240731_at\"                   \"240731_at\"                  \n",
+       "[54375] \"242350_s_at\"                 \"240731_at\"                  \n",
+       "[54377] \"242079_at\"                   \"240837_at\"                  \n",
+       "[54379] \"244717_x_at\"                 \"241322_at\"                  \n",
+       "[54381] \"242735_x_at\"                 \"241816_at\"                  \n",
+       "[54383] \"244173_at\"                   \"244194_at\"                  \n",
+       "[54385] \"242711_x_at\"                 \"40016_g_at\"                 \n",
+       "[54387] \"243575_at\"                   \"242477_at\"                  \n",
+       "[54389] \"243643_x_at\"                 \"243127_x_at\"                \n",
+       "[54391] \"241854_at\"                   \"240880_at\"                  \n",
+       "[54393] \"242515_x_at\"                 \"243400_x_at\"                \n",
+       "[54395] \"240523_at\"                   \"242341_x_at\"                \n",
+       "[54397] \"242162_at\"                   \"34868_at\"                   \n",
+       "[54399] \"242692_at\"                   \"243602_at\"                  \n",
+       "[54401] \"240838_s_at\"                 \"242012_at\"                  \n",
+       "[54403] \"242036_x_at\"                 \"240585_at\"                  \n",
+       "[54405] \"240861_at\"                   \"241253_at\"                  \n",
+       "[54407] \"242378_at\"                   \"242354_at\"                  \n",
+       "[54409] \"34187_at\"                    \"243758_at\"                  \n",
+       "[54411] \"242615_at\"                   \"241385_at\"                  \n",
+       "[54413] \"244441_at\"                   \"240592_at\"                  \n",
+       "[54415] \"244830_at\"                   \"241150_at\"                  \n",
+       "[54417] \"244681_at\"                   \"242481_at\"                  \n",
+       "[54419] \"244569_at\"                   \"244183_x_at\"                \n",
+       "[54421] \"37512_at\"                    \"242795_at\"                  \n",
+       "[54423] \"242281_at\"                   \"31799_at\"                   \n",
+       "[54425] \"336_at\"                      \"242596_at\"                  \n",
+       "[54427] \"241424_at\"                   \"51158_at\"                   \n",
+       "[54429] \"32259_at\"                    \"38158_at\"                   \n",
+       "[54431] \"240912_x_at\"                 \"242057_at\"                  \n",
+       "[54433] \"243728_at\"                   \"241219_at\"                  \n",
+       "[54435] \"244808_at\"                   \"241684_at\"                  \n",
+       "[54437] \"37226_at\"                    \"243224_at\"                  \n",
+       "[54439] \"243252_at\"                   \"242966_x_at\"                \n",
+       "[54441] \"243503_at\"                   \"242155_x_at\"                \n",
+       "[54443] \"241767_at\"                   \"241106_at\"                  \n",
+       "[54445] \"242035_at\"                   \"243813_at\"                  \n",
+       "[54447] \"243999_at\"                   \"242193_at\"                  \n",
+       "[54449] \"240575_at\"                   \"243589_at\"                  \n",
+       "[54451] \"242069_at\"                   \"241875_at\"                  \n",
+       "[54453] \"240863_at\"                   \"244627_at\"                  \n",
+       "[54455] \"244847_at\"                   \"244246_at\"                  \n",
+       "[54457] \"240554_at\"                   \"242511_at\"                  \n",
+       "[54459] \"240734_at\"                   \"241265_x_at\"                \n",
+       "[54461] \"AFFX-HUMGAPDH/M33197_5_at\"   \"AFFX-HUMGAPDH/M33197_3_at\"  \n",
+       "[54463] \"AFFX-HUMGAPDH/M33197_M_at\"   \"242157_at\"                  \n",
+       "[54465] \"242121_at\"                   \"242370_at\"                  \n",
+       "[54467] \"244662_at\"                   \"240610_at\"                  \n",
+       "[54469] \"240562_at\"                   \"242336_at\"                  \n",
+       "[54471] \"58994_at\"                    \"243222_at\"                  \n",
+       "[54473] \"242528_at\"                   \"242712_x_at\"                \n",
+       "[54475] \"243058_at\"                   \"243058_at\"                  \n",
+       "[54477] \"244553_at\"                   \"242222_at\"                  \n",
+       "[54479] \"244553_at\"                   \"240624_x_at\"                \n",
+       "[54481] \"241756_at\"                   \"242299_at\"                  \n",
+       "[54483] \"243712_at\"                   \"242222_at\"                  \n",
+       "[54485] \"241477_at\"                   \"241817_at\"                  \n",
+       "[54487] \"35179_at\"                    \"244192_x_at\"                \n",
+       "[54489] \"242585_at\"                   \"241462_at\"                  \n",
+       "[54491] \"53968_at\"                    \"242804_at\"                  \n",
+       "[54493] \"242690_at\"                   \"241366_at\"                  \n",
+       "[54495] \"243167_at\"                   \"240717_at\"                  \n",
+       "[54497] \"244138_at\"                   \"41387_r_at\"                 \n",
+       "[54499] \"41386_i_at\"                  \"242727_at\"                  \n",
+       "[54501] \"53968_at\"                    \"242482_at\"                  \n",
+       "[54503] \"241981_at\"                   \"242945_at\"                  \n",
+       "[54505] \"244133_at\"                   \"242120_at\"                  \n",
+       "[54507] \"243392_at\"                   \"66053_at\"                   \n",
+       "[54509] \"243776_at\"                   \"244133_at\"                  \n",
+       "[54511] \"242120_at\"                   \"243392_at\"                  \n",
+       "[54513] \"66053_at\"                    \"36084_at\"                   \n",
+       "[54515] \"241747_s_at\"                 \"243073_at\"                  \n",
+       "[54517] \"241746_at\"                   \"61297_at\"                   \n",
+       "[54519] \"241402_at\"                   \"244424_at\"                  \n",
+       "[54521] \"244783_at\"                   \"240604_at\"                  \n",
+       "[54523] \"240603_s_at\"                 \"37278_at\"                   \n",
+       "[54525] \"240873_x_at\"                 \"240672_at\"                  \n",
+       "[54527] \"40225_at\"                    \"242533_at\"                  \n",
+       "[54529] \"242019_at\"                   \"243245_at\"                  \n",
+       "[54531] \"242219_at\"                   \"243245_at\"                  \n",
+       "[54533] \"242219_at\"                   \"242187_s_at\"                \n",
+       "[54535] \"243680_at\"                   \"244786_at\"                  \n",
+       "[54537] \"36030_at\"                    \"244498_x_at\"                \n",
+       "[54539] \"244498_x_at\"                 \"240762_at\"                  \n",
+       "[54541] \"241980_at\"                   \"242806_at\"                  \n",
+       "[54543] \"243957_at\"                   \"244105_at\"                  \n",
+       "[54545] \"244498_x_at\"                 \"243720_at\"                  \n",
+       "[54547] \"242363_at\"                   \"91684_g_at\"                 \n",
+       "[54549] \"58696_at\"                    \"91684_g_at\"                 \n",
+       "[54551] \"58696_at\"                    \"244551_at\"                  \n",
+       "[54553] \"244551_at\"                   \"243356_at\"                  \n",
+       "[54555] \"240646_at\"                   \"243661_at\"                  \n",
+       "[54557] \"244766_at\"                   \"240840_s_at\"                \n",
+       "[54559] \"244704_at\"                   \"242912_at\"                  \n",
+       "[54561] \"241911_at\"                   \"41220_at\"                   \n",
+       "[54563] \"243762_at\"                   \"242546_at\"                  \n",
+       "[54565] \"242881_x_at\"                 \"242881_x_at\"                \n",
+       "[54567] \"243164_s_at\"                 \"48531_at\"                   \n",
+       "[54569] \"243916_x_at\"                 \"244774_at\"                  \n",
+       "[54571] \"243166_at\"                   \"34031_i_at\"                 \n",
+       "[54573] \"242393_x_at\"                 \"243937_x_at\"                \n",
+       "[54575] \"37425_g_at\"                  \"37424_at\"                   \n",
+       "[54577] \"42361_g_at\"                  \"242393_x_at\"                \n",
+       "[54579] \"243937_x_at\"                 \"241370_at\"                  \n",
+       "[54581] \"241342_at\"                   \"38447_at\"                   \n",
+       "[54583] \"244756_at\"                   \"242441_at\"                  \n",
+       "[54585] \"37796_at\"                    \"51192_at\"                   \n",
+       "[54587] \"244827_at\"                   \"244884_at\"                  \n",
+       "[54589] \"243199_at\"                   \"240716_at\"                  \n",
+       "[54591] \"243061_at\"                   \"242548_x_at\"                \n",
+       "[54593] \"242393_x_at\"                 \"243937_x_at\"                \n",
+       "[54595] \"242393_x_at\"                 \"243937_x_at\"                \n",
+       "[54597] \"242356_at\"                   \"241740_at\"                  \n",
+       "[54599] \"64900_at\"                    \"242667_at\"                  \n",
+       "[54601] \"53076_at\"                    \"48659_at\"                   \n",
+       "[54603] \"242028_at\"                   \"242028_at\"                  \n",
+       "[54605] \"243565_at\"                   \"244105_at\"                  \n",
+       "[54607] \"241819_at\"                   \"243804_at\"                  \n",
+       "[54609] \"244321_at\"                   \"241801_at\"                  \n",
+       "[54611] \"240834_at\"                   \"244105_at\"                  \n",
+       "[54613] \"244105_at\"                   \"242037_at\"                  \n",
+       "[54615] \"242809_at\"                   \"242096_at\"                  \n",
+       "[54617] \"243269_s_at\"                 \"243269_s_at\"                \n",
+       "[54619] \"242423_x_at\"                 \"241843_at\"                  \n",
+       "[54621] \"243751_at\"                   \"40850_at\"                   \n",
+       "[54623] \"58900_at\"                    \"51774_s_at\"                 \n",
+       "[54625] \"65521_at\"                    \"243887_at\"                  \n",
+       "[54627] \"243801_x_at\"                 \"243953_at\"                  \n",
+       "[54629] \"242096_at\"                   \"243312_at\"                  \n",
+       "[54631] \"244409_at\"                   \"241825_at\"                  \n",
+       "[54633] \"241737_x_at\"                 \"241348_at\"                  \n",
+       "[54635] \"242017_at\"                   \"51200_at\"                   \n",
+       "[54637] \"240581_at\"                   \"241808_at\"                  \n",
+       "[54639] \"244552_at\"                   \"242723_at\"                  \n",
+       "[54641] \"244406_at\"                   \"244406_at\"                  \n",
+       "[54643] \"242550_at\"                   \"241682_at\"                  \n",
+       "[54645] \"241682_at\"                   \"243309_at\"                  \n",
+       "[54647] \"244411_at\"                   \"242290_at\"                  \n",
+       "[54649] \"243446_at\"                   \"243372_at\"                  \n",
+       "[54651] \"241716_at\"                   \"241388_at\"                  \n",
+       "[54653] \"241313_at\"                   \"243423_at\"                  \n",
+       "[54655] \"243337_at\"                   \"241455_at\"                  \n",
+       "[54657] \"240708_at\"                   \"240823_at\"                  \n",
+       "[54659] \"244154_at\"                   \"243705_at\"                  \n",
+       "[54661] \"44783_s_at\"                  \"242927_at\"                  \n",
+       "[54663] \"45288_at\"                    \"242845_at\"                  \n",
+       "[54665] \"241382_at\"                   \"240872_at\"                  \n",
+       "[54667] \"243413_at\"                   \"242777_at\"                  \n",
+       "[54669] \"241959_at\"                   \"37996_s_at\"                 \n",
+       "[54671] \"39705_at\"                    \"242129_at\"                  \n",
+       "[54673] \"244788_at\"                   \"37408_at\"                   \n",
+       "[54675] \"241300_at\"                   \"242747_at\"                  \n",
+       "[54677] \"33646_g_at\"                  \"35820_at\"                   \n",
+       "[54679] \"242196_at\"                   \"244864_at\"                  \n",
+       "[54681] \"241833_at\"                   \"242289_at\"                  \n",
+       "[54683] \"241892_at\"                   \"244712_at\"                  \n",
+       "[54685] \"91816_f_at\"                  \"241545_x_at\"                \n",
+       "[54687] \"242883_at\"                   \"241429_at\"                  \n",
+       "[54689] \"241547_at\"                   \"242123_at\"                  \n",
+       "[54691] \"44822_s_at\"                  \"242594_at\"                  \n",
+       "[54693] \"243139_at\"                   \"242530_at\"                  \n",
+       "[54695] \"242520_s_at\"                 \"243971_x_at\"                \n",
+       "[54697] \"241826_x_at\"                 \"64418_at\"                   \n",
+       "[54699] \"243362_s_at\"                 \"243363_at\"                  \n",
+       "[54701] \"243063_at\"                   \"244047_at\"                  \n",
+       "[54703] \"241423_at\"                   \"45749_at\"                   \n",
+       "[54705] \"241423_at\"                   \"241001_at\"                  \n",
+       "[54707] \"244760_at\"                   \"240793_at\"                  \n",
+       "[54709] \"242729_at\"                   \"241606_s_at\"                \n",
+       "[54711] \"31835_at\"                    \"242062_at\"                  \n",
+       "[54713] \"243195_s_at\"                 \"243194_at\"                  \n",
+       "[54715] \"243590_at\"                   \"240637_at\"                  \n",
+       "[54717] \"53987_at\"                    \"244381_at\"                  \n",
+       "[54719] \"244544_at\"                   \"244462_at\"                  \n",
+       "[54721] \"241192_at\"                   \"242953_at\"                  \n",
+       "[54723] \"242749_at\"                   \"244593_at\"                  \n",
+       "[54725] \"242632_at\"                   \"243871_at\"                  \n",
+       "[54727] \"40612_at\"                    \"36019_at\"                   \n",
+       "[54729] \"243719_at\"                   \"241727_x_at\"                \n",
+       "[54731] \"243711_at\"                   \"241601_at\"                  \n",
+       "[54733] \"53202_at\"                    \"241703_at\"                  \n",
+       "[54735] \"244694_at\"                   \"243825_at\"                  \n",
+       "[54737] \"240933_at\"                   \"47550_at\"                   \n",
+       "[54739] \"47105_at\"                    \"244650_at\"                  \n",
+       "[54741] \"241908_at\"                   \"241138_at\"                  \n",
+       "[54743] \"243368_at\"                   \"242934_at\"                  \n",
+       "[54745] \"243541_at\"                   \"242282_at\"                  \n",
+       "[54747] \"241111_at\"                   \"242317_at\"                  \n",
+       "[54749] \"244074_at\"                   \"243520_x_at\"                \n",
+       "[54751] \"242326_at\"                   \"243301_at\"                  \n",
+       "[54753] \"241689_at\"                   \"244680_at\"                  \n",
+       "[54755] \"241568_at\"                   \"241249_at\"                  \n",
+       "[54757] \"242043_s_at\"                 \"242044_at\"                  \n",
+       "[54759] \"244466_at\"                   \"242309_at\"                  \n",
+       "[54761] \"242084_at\"                   \"244889_at\"                  \n",
+       "[54763] \"241580_at\"                   \"243893_at\"                  \n",
+       "[54765] \"242434_at\"                   \"244135_at\"                  \n",
+       "[54767] \"243260_x_at\"                 \"240626_at\"                  \n",
+       "[54769] \"243023_at\"                   \"57532_at\"                   \n",
+       "[54771] \"240947_at\"                   \"243933_at\"                  \n",
+       "[54773] \"243157_at\"                   \"242207_at\"                  \n",
+       "[54775] \"65585_at\"                    \"242512_at\"                  \n",
+       "[54777] \"244656_at\"                   \"35671_at\"                   \n",
+       "[54779] \"243111_at\"                   \"243407_at\"                  \n",
+       "[54781] \"243534_at\"                   \"244391_at\"                  \n",
+       "[54783] \"241803_s_at\"                 \"243674_at\"                  \n",
+       "[54785] \"244582_at\"                   \"242643_x_at\"                \n",
+       "[54787] \"243556_at\"                   \"243425_at\"                  \n",
+       "[54789] \"240567_at\"                   \"243696_at\"                  \n",
+       "[54791] \"244284_at\"                   \"242249_at\"                  \n",
+       "[54793] \"243689_s_at\"                 \"243176_at\"                  \n",
+       "[54795] \"244784_at\"                   \"242682_at\"                  \n",
+       "[54797] \"34689_at\"                    \"242270_at\"                  \n",
+       "[54799] \"242153_at\"                   \"240897_at\"                  \n",
+       "[54801] \"32837_at\"                    \"244490_at\"                  \n",
+       "[54803] \"241976_at\"                   \"244193_at\"                  \n",
+       "[54805] \"244052_at\"                   \"242902_at\"                  \n",
+       "[54807] \"241787_at\"                   \"244730_x_at\"                \n",
+       "[54809] \"241047_at\"                   \"241671_x_at\"                \n",
+       "[54811] \"244297_at\"                   \"244297_at\"                  \n",
+       "[54813] \"243140_at\"                   \"244811_at\"                  \n",
+       "[54815] \"242211_x_at\"                 \"244252_at\"                  \n",
+       "[54817] \"242731_x_at\"                 \"40020_at\"                   \n",
+       "[54819] \"242839_at\"                   \"242010_at\"                  \n",
+       "[54821] \"244234_at\"                   \"244635_s_at\"                \n",
+       "[54823] \"244570_at\"                   \"241745_at\"                  \n",
+       "[54825] \"240677_at\"                   \"243662_at\"                  \n",
+       "[54827] \"37586_at\"                    \"240913_at\"                  \n",
+       "[54829] \"242782_x_at\"                 \"65770_at\"                   \n",
+       "[54831] \"242618_at\"                   \"242812_at\"                  \n",
+       "[54833] \"242972_at\"                   \"241846_at\"                  \n",
+       "[54835] \"244227_at\"                   \"242305_at\"                  \n",
+       "[54837] \"242425_at\"                   \"44040_at\"                   \n",
+       "[54839] \"244287_at\"                   \"243361_at\"                  \n",
+       "[54841] \"242184_s_at\"                 \"242185_at\"                  \n",
+       "[54843] \"38703_at\"                    \"241744_x_at\"                \n",
+       "[54845] \"55093_at\"                    \"55093_at\"                   \n",
+       "[54847] \"59631_at\"                    \"244567_at\"                  \n",
+       "[54849] \"242429_at\"                   \"244509_at\"                  \n",
+       "[54851] \"241356_at\"                   \"240734_at\"                  \n",
+       "[54853] \"242714_at\"                   \"243553_x_at\"                \n",
+       "[54855] \"240577_at\"                   \"243562_at\"                  \n",
+       "[54857] \"240475_at\"                   \"244029_at\"                  \n",
+       "[54859] \"45653_at\"                    \"242183_at\"                  \n",
+       "[54861] \"64488_at\"                    \"242855_at\"                  \n",
+       "[54863] \"243185_at\"                   \"244250_at\"                  \n",
+       "[54865] \"242813_at\"                   \"241433_at\"                  \n",
+       "[54867] \"65630_at\"                    \"241519_at\"                  \n",
+       "[54869] \"39966_at\"                    \"240712_s_at\"                \n",
+       "[54871] \"240711_at\"                   \"34726_at\"                   \n",
+       "[54873] \"243883_at\"                   \"37796_at\"                   \n",
+       "[54875] \"90610_at\"                    \"37796_at\"                   \n",
+       "[54877] \"37462_i_at\"                  \"243155_at\"                  \n",
+       "[54879] \"242203_at\"                   \"242248_at\"                  \n",
+       "[54881] \"244070_at\"                   \"244144_at\"                  \n",
+       "[54883] \"240576_at\"                   \"240576_at\"                  \n",
+       "[54885] \"34689_at\"                    \"32094_at\"                   \n",
+       "[54887] \"34260_at\"                    \"244180_at\"                  \n",
+       "[54889] \"242541_at\"                   \"38069_at\"                   \n",
+       "[54891] \"47083_at\"                    \"242273_at\"                  \n",
+       "[54893] \"243909_x_at\"                 \"52731_at\"                   \n",
+       "[54895] \"241877_at\"                   \"241986_at\"                  \n",
+       "[54897] \"55065_at\"                    \"241850_at\"                  \n",
+       "[54899] \"243604_at\"                   \"60794_f_at\"                 \n",
+       "[54901] \"241912_at\"                   \"242287_at\"                  \n",
+       "[54903] \"34764_at\"                    \"58367_s_at\"                 \n",
+       "[54905] \"240882_at\"                   \"242168_at\"                  \n",
+       "[54907] \"240595_at\"                   \"244857_at\"                  \n",
+       "[54909] \"243021_at\"                   \"49111_at\"                   \n",
+       "[54911] \"43511_s_at\"                  \"240648_at\"                  \n",
+       "[54913] \"244769_at\"                   \"244856_at\"                  \n",
+       "[54915] \"46323_at\"                    \"243124_at\"                  \n",
+       "[54917] \"243174_at\"                   \"240810_at\"                  \n",
+       "[54919] \"49111_at\"                    \"43511_s_at\"                 \n",
+       "[54921] \"65635_at\"                    \"243256_at\"                  \n",
+       "[54923] \"243331_at\"                   \"241652_x_at\"                \n",
+       "[54925] \"39313_at\"                    \"243154_at\"                  \n",
+       "[54927] \"47560_at\"                    \"91952_at\"                   \n",
+       "[54929] \"241487_at\"                   \"240537_s_at\"                \n",
+       "[54931] \"244710_at\"                   \"244131_at\"                  \n",
+       "[54933] \"32209_at\"                    \"57739_at\"                   \n",
+       "[54935] \"242898_at\"                   \"32209_at\"                   \n",
+       "[54937] \"91703_at\"                    \"242560_at\"                  \n",
+       "[54939] \"243635_at\"                   \"38766_at\"                   \n",
+       "[54941] \"242625_at\"                   \"243539_at\"                  \n",
+       "[54943] \"242179_s_at\"                 \"242180_at\"                  \n",
+       "[54945] \"241820_at\"                   \"34210_at\"                   \n",
+       "[54947] \"242684_at\"                   \"240774_at\"                  \n",
+       "[54949] \"64899_at\"                    \"241090_at\"                  \n",
+       "[54951] \"50965_at\"                    \"244280_at\"                  \n",
+       "[54953] \"242848_x_at\"                 \"244151_at\"                  \n",
+       "[54955] \"244103_at\"                   \"242304_at\"                  \n",
+       "[54957] \"44669_at\"                    \"242866_x_at\"                \n",
+       "[54959] \"242601_at\"                   \"243909_x_at\"                \n",
+       "[54961] \"244289_at\"                   \"242957_at\"                  \n",
+       "[54963] \"241321_at\"                   \"243930_x_at\"                \n",
+       "[54965] \"46665_at\"                    \"241401_at\"                  \n",
+       "[54967] \"243365_s_at\"                 \"243364_at\"                  \n",
+       "[54969] \"242473_at\"                   \"242726_at\"                  \n",
+       "[54971] \"244500_s_at\"                 \"244501_at\"                  \n",
+       "[54973] \"242450_at\"                   \"244660_at\"                  \n",
+       "[54975] \"241722_x_at\"                 \"241722_x_at\"                \n",
+       "[54977] \"243338_at\"                   \"244664_at\"                  \n",
+       "[54979] \"242238_at\"                   \"243430_at\"                  \n",
+       "[54981] \"240970_x_at\"                 \"242187_s_at\"                \n",
+       "[54983] \"35254_at\"                    \"243196_s_at\"                \n",
+       "[54985] \"38037_at\"                    \"242557_at\"                  \n",
+       "[54987] \"241302_at\"                   \"242804_at\"                  \n",
+       "[54989] \"244305_at\"                   \"244705_at\"                  \n",
+       "[54991] \"244705_at\"                   \"242463_x_at\"                \n",
+       "[54993] \"241704_x_at\"                 \"241420_at\"                  \n",
+       "[54995] \"240609_at\"                   \"241399_at\"                  \n",
+       "[54997] \"242661_x_at\"                 \"241353_s_at\"                \n",
+       "[54999] \"241133_at\"                   \"33814_at\"                   \n",
+       "[55001] \"243894_at\"                   \"243124_at\"                  \n",
+       "[55003] \"49485_at\"                    \"243547_at\"                  \n",
+       "[55005] \"241646_s_at\"                 \"243634_at\"                  \n",
+       "[55007] \"240528_s_at\"                 \"244766_at\"                  \n",
+       "[55009] \"244587_at\"                   \"241809_at\"                  \n",
+       "[55011] \"241172_at\"                   \"241470_x_at\"                \n",
+       "[55013] \"240649_at\"                   \"242445_at\"                  \n",
+       "[55015] \"243278_at\"                   \"33197_at\"                   \n",
+       "[55017] \"241346_at\"                   \"240734_at\"                  \n",
+       "[55019] \"241395_at\"                   \"35974_at\"                   \n",
+       "[55021] \"240718_at\"                   \"38521_at\"                   \n",
+       "[55023] \"244269_at\"                   \"39763_at\"                   \n",
+       "[55025] \"36888_at\"                    \"244632_at\"                  \n",
+       "[55027] \"244063_at\"                   \"64064_at\"                   \n",
+       "[55029] \"44065_at\"                    \"241885_at\"                  \n",
+       "[55031] \"243904_at\"                   \"240518_at\"                  \n",
+       "[55033] \"43544_at\"                    \"244316_at\"                  \n",
+       "[55035] \"242706_s_at\"                 \"242707_at\"                  \n",
+       "[55037] \"242353_at\"                   \"243189_at\"                  \n",
+       "[55039] \"240675_at\"                   \"81737_at\"                   \n",
+       "[55041] \"242640_at\"                   \"244524_at\"                  \n",
+       "[55043] \"244716_x_at\"                 \"242214_at\"                  \n",
+       "[55045] \"244624_at\"                   \"242366_at\"                  \n",
+       "[55047] \"243110_x_at\"                 \"55705_at\"                   \n",
+       "[55049] \"242791_at\"                   \"59625_at\"                   \n",
+       "[55051] \"243592_at\"                   \"242517_at\"                  \n",
+       "[55053] \"242861_at\"                   \"244461_at\"                  \n",
+       "[55055] \"241895_at\"                   \"241239_at\"                  \n",
+       "[55057] \"244647_at\"                   \"38671_at\"                   \n",
+       "[55059] \"243056_at\"                   \"242496_at\"                  \n",
+       "[55061] \"46256_at\"                    \"34408_at\"                   \n",
+       "[55063] \"242918_at\"                   \"241602_at\"                  \n",
+       "[55065] \"240893_at\"                   \"243545_at\"                  \n",
+       "[55067] \"243532_at\"                   \"40149_at\"                   \n",
+       "[55069] \"241666_at\"                   \"243122_at\"                  \n",
+       "[55071] \"241393_at\"                   \"241434_at\"                  \n",
+       "[55073] \"242656_at\"                   \"241420_at\"                  \n",
+       "[55075] \"242295_at\"                   \"241930_x_at\"                \n",
+       "[55077] \"240697_at\"                   \"54632_at\"                   \n",
+       "[55079] \"242851_at\"                   \"242103_at\"                  \n",
+       "[55081] \"242951_at\"                   \"242568_s_at\"                \n",
+       "[55083] \"244804_at\"                   \"240936_at\"                  \n",
+       "[55085] \"244152_at\"                   \"244577_at\"                  \n",
+       "[55087] \"242242_at\"                   \"241110_at\"                  \n",
+       "[55089] \"242555_at\"                   \"240911_at\"                  \n",
+       "[55091] \"241480_at\"                   \"244867_at\"                  \n",
+       "[55093] \"242091_at\"                   \"36564_at\"                   \n",
+       "[55095] \"242487_at\"                   \"243650_at\"                  \n",
+       "[55097] \"242436_at\"                   \"241779_at\"                  \n",
+       "[55099] \"241757_x_at\"                 \"243614_s_at\"                \n",
+       "[55101] \"243648_at\"                   \"44654_at\"                   \n",
+       "[55103] \"243681_at\"                   \"244444_at\"                  \n",
+       "[55105] \"241710_at\"                   \"242314_at\"                  \n",
+       "[55107] \"243829_at\"                   \"243582_at\"                  \n",
+       "[55109] \"241137_at\"                   \"242579_at\"                  \n",
+       "[55111] \"242094_at\"                   \"242259_at\"                  \n",
+       "[55113] \"241873_at\"                   \"38892_at\"                   \n",
+       "[55115] \"244547_at\"                   \"47608_at\"                   \n",
+       "[55117] \"243295_at\"                   \"243295_at\"                  \n",
+       "[55119] \"243366_s_at\"                 \"244599_at\"                  \n",
+       "[55121] \"243685_at\"                   \"241430_at\"                  \n",
+       "[55123] \"242567_at\"                   \"244771_at\"                  \n",
+       "[55125] \"244289_at\"                   \"244366_at\"                  \n",
+       "[55127] \"90610_at\"                    \"244455_at\"                  \n",
+       "[55129] \"241024_at\"                   \"244880_at\"                  \n",
+       "[55131] \"244880_at\"                   \"240591_at\"                  \n",
+       "[55133] \"244888_at\"                   \"242331_x_at\"                \n",
+       "[55135] \"244534_at\"                   \"244534_at\"                  \n",
+       "[55137] \"243118_at\"                   \"240756_at\"                  \n",
+       "[55139] \"58308_at\"                    \"242935_at\"                  \n",
+       "[55141] \"241950_at\"                   \"244616_x_at\"                \n",
+       "[55143] \"40148_at\"                    \"242002_at\"                  \n",
+       "[55145] \"36566_at\"                    \"244071_at\"                  \n",
+       "[55147] \"243585_at\"                   \"243612_at\"                  \n",
+       "[55149] \"241513_at\"                   \"242907_at\"                  \n",
+       "[55151] \"242042_s_at\"                 \"243793_at\"                  \n",
+       "[55153] \"49452_at\"                    \"43427_at\"                   \n",
+       "[55155] \"242078_at\"                   \"243967_at\"                  \n",
+       "[55157] \"243576_at\"                   \"243531_at\"                  \n",
+       "[55159] \"240693_at\"                   \"243880_at\"                  \n",
+       "[55161] \"243974_at\"                   \"243371_at\"                  \n",
+       "[55163] \"242979_at\"                   \"241880_x_at\"                \n",
+       "[55165] \"52169_at\"                    \"243608_at\"                  \n",
+       "[55167] \"242624_at\"                   \"241886_x_at\"                \n",
+       "[55169] \"241886_x_at\"                 \"241783_at\"                  \n",
+       "[55171] \"243408_at\"                   \"243360_at\"                  \n",
+       "[55173] \"241968_at\"                   \"243802_at\"                  \n",
+       "[55175] \"54970_at\"                    \"242521_at\"                  \n",
+       "[55177] \"52169_at\"                    \"243175_at\"                  \n",
+       "[55179] \"242765_at\"                   \"241717_at\"                  \n",
+       "[55181] \"243581_at\"                   \"241383_at\"                  \n",
+       "[55183] \"242140_at\"                   \"242139_s_at\"                \n",
+       "[55185] \"241735_at\"                   \"241458_at\"                  \n",
+       "[55187] \"240572_s_at\"                 \"34846_at\"                   \n",
+       "[55189] \"244691_at\"                   \"244403_at\"                  \n",
+       "[55191] \"242644_at\"                   \"57163_at\"                   \n",
+       "[55193] \"240944_at\"                   \"243613_at\"                  \n",
+       "[55195] \"44563_at\"                    \"57163_at\"                   \n",
+       "[55197] \"242364_x_at\"                 \"240559_at\"                  \n",
+       "[55199] \"243306_s_at\"                 \"242879_x_at\"                \n",
+       "[55201] \"242484_at\"                   \"241730_at\"                  \n",
+       "[55203] \"243339_at\"                   \"241939_at\"                  \n",
+       "[55205] \"241802_x_at\"                 \"91920_at\"                   \n",
+       "[55207] \"242719_at\"                   \"240557_at\"                  \n",
+       "[55209] \"242641_at\"                   \"240918_at\"                  \n",
+       "[55211] \"242843_at\"                   \"240664_at\"                  \n",
+       "[55213] \"240875_at\"                   \"244190_at\"                  \n",
+       "[55215] \"241904_at\"                   \"243703_x_at\"                \n",
+       "[55217] \"241904_at\"                   \"243703_x_at\"                \n",
+       "[55219] \"242358_at\"                   \"244741_s_at\"                \n",
+       "[55221] \"244740_at\"                   \"243924_at\"                  \n",
+       "[55223] \"242462_at\"                   \"242663_at\"                  \n",
+       "[55225] \"242847_at\"                   \"243961_at\"                  \n",
+       "[55227] \"242852_at\"                   \"242032_at\"                  \n",
+       "[55229] \"244687_at\"                   \"242201_at\"                  \n",
+       "[55231] \"242818_x_at\"                 \"242620_at\"                  \n",
+       "[55233] \"55583_at\"                    \"242200_at\"                  \n",
+       "[55235] \"244095_at\"                   \"244110_at\"                  \n",
+       "[55237] \"243752_s_at\"                 \"244330_at\"                  \n",
+       "[55239] \"242744_s_at\"                 \"240886_at\"                  \n",
+       "[55241] \"242745_at\"                   \"243747_at\"                  \n",
+       "[55243] \"242919_at\"                   \"243644_at\"                  \n",
+       "[55245] \"241687_at\"                   \"241277_x_at\"                \n",
+       "[55247] \"243015_at\"                   \"243731_at\"                  \n",
+       "[55249] \"240551_at\"                   \"243753_at\"                  \n",
+       "[55251] \"244145_at\"                   \"37028_at\"                   \n",
+       "[55253] \"36907_at\"                    \"243519_at\"                  \n",
+       "[55255] \"242540_at\"                   \"244322_at\"                  \n",
+       "[55257] \"243803_at\"                   \"243670_at\"                  \n",
+       "[55259] \"240792_at\"                   \"244529_at\"                  \n",
+       "[55261] \"242788_at\"                   \"242906_at\"                  \n",
+       "[55263] \"242899_at\"                   \"242715_at\"                  \n",
+       "[55265] \"242124_at\"                   \"241827_at\"                  \n",
+       "[55267] \"242070_at\"                   \"242016_at\"                  \n",
+       "[55269] \"240898_at\"                   \"242954_at\"                  \n",
+       "[55271] \"244881_at\"                   \"240678_at\"                  \n",
+       "[55273] \"57703_at\"                    \"244020_at\"                  \n",
+       "[55275] \"241364_at\"                   \"41037_at\"                   \n",
+       "[55277] \"32699_s_at\"                  \"52164_at\"                   \n",
+       "[55279] \"240509_s_at\"                 \"243854_at\"                  \n",
+       "[55281] \"243205_at\"                   \"40093_at\"                   \n",
+       "[55283] \"44617_at\"                    \"242456_at\"                  \n",
+       "[55285] \"242362_at\"                   \"241510_at\"                  \n",
+       "[55287] \"241485_at\"                   \"242417_at\"                  \n",
+       "[55289] \"91826_at\"                    \"243905_at\"                  \n",
+       "[55291] \"64440_at\"                    \"244429_at\"                  \n",
+       "[55293] \"244798_at\"                   \"243285_at\"                  \n",
+       "[55295] \"244413_at\"                   \"242682_at\"                  \n",
+       "[55297] \"242267_x_at\"                 \"64440_at\"                   \n",
+       "[55299] \"244806_at\"                   \"241791_at\"                  \n",
+       "[55301] \"244839_at\"                   \"35201_at\"                   \n",
+       "[55303] \"40465_at\"                    \"241889_at\"                  \n",
+       "[55305] \"243326_at\"                   \"243492_at\"                  \n",
+       "[55307] \"241336_at\"                   \"242253_at\"                  \n",
+       "[55309] \"240986_at\"                   \"242612_at\"                  \n",
+       "[55311] \"243475_at\"                   \"243645_at\"                  \n",
+       "[55313] \"241499_at\"                   \"242646_at\"                  \n",
+       "[55315] \"32099_at\"                    \"244374_at\"                  \n",
+       "[55317] \"244428_at\"                   \"244708_at\"                  \n",
+       "[55319] \"244640_at\"                   \"242786_at\"                  \n",
+       "[55321] \"244398_x_at\"                 \"243208_x_at\"                \n",
+       "[55323] \"243188_at\"                   \"244361_at\"                  \n",
+       "[55325] \"242915_at\"                   \"244168_s_at\"                \n",
+       "[55327] \"241876_at\"                   \"242808_at\"                  \n",
+       "[55329] \"243570_at\"                   \"242346_x_at\"                \n",
+       "[55331] \"241964_at\"                   \"244244_at\"                  \n",
+       "[55333] \"244698_at\"                   \"240627_x_at\"                \n",
+       "[55335] \"244698_at\"                   \"244001_at\"                  \n",
+       "[55337] \"244002_at\"                   \"241881_at\"                  \n",
+       "[55339] \"241161_at\"                   \"241161_at\"                  \n",
+       "[55341] \"32128_at\"                    \"242340_at\"                  \n",
+       "[55343] \"241360_at\"                   \"65585_at\"                   \n",
+       "[55345] \"240572_s_at\"                 \"240573_at\"                  \n",
+       "[55347] \"241437_s_at\"                 \"244136_at\"                  \n",
+       "[55349] \"241803_s_at\"                 \"241803_s_at\"                \n",
+       "[55351] \"244806_at\"                   \"41657_at\"                   \n",
+       "[55353] \"40837_at\"                    \"241345_at\"                  \n",
+       "[55355] \"243263_at\"                   \"244765_at\"                  \n",
+       "[55357] \"241345_at\"                   \"242685_at\"                  \n",
+       "[55359] \"244807_at\"                   \"244584_at\"                  \n",
+       "[55361] \"242228_at\"                   \"243370_at\"                  \n",
+       "[55363] \"241190_at\"                   \"240652_at\"                  \n",
+       "[55365] \"243412_at\"                   \"32091_at\"                   \n",
+       "[55367] \"241975_at\"                   \"241541_at\"                  \n",
+       "[55369] \"35626_at\"                    \"242014_at\"                  \n",
+       "[55371] \"240572_s_at\"                 \"240572_s_at\"                \n",
+       "[55373] \"243924_at\"                   \"242462_at\"                  \n",
+       "[55375] \"240890_at\"                   \"240890_at\"                  \n",
+       "[55377] \"243794_at\"                   \"243351_at\"                  \n",
+       "[55379] \"240862_at\"                   \"243236_at\"                  \n",
+       "[55381] \"241863_x_at\"                 \"244745_at\"                  \n",
+       "[55383] \"242710_at\"                   \"242283_at\"                  \n",
+       "[55385] \"242691_at\"                   \"240752_at\"                  \n",
+       "[55387] \"240818_at\"                   \"241858_at\"                  \n",
+       "[55389] \"244506_at\"                   \"65585_at\"                   \n",
+       "[55391] \"243621_at\"                   \"34187_at\"                   \n",
+       "[55393] \"244575_at\"                   \"243732_at\"                  \n",
+       "[55395] \"59375_at\"                    \"65472_at\"                   \n",
+       "[55397] \"37004_at\"                    \"37145_at\"                   \n",
+       "[55399] \"243231_at\"                   \"242543_at\"                  \n",
+       "[55401] \"244302_at\"                   \"243066_at\"                  \n",
+       "[55403] \"243811_at\"                   \"244512_at\"                  \n",
+       "[55405] \"243441_at\"                   \"244452_at\"                  \n",
+       "[55407] \"244526_at\"                   \"52651_at\"                   \n",
+       "[55409] \"241832_at\"                   \"242973_at\"                  \n",
+       "[55411] \"242973_at\"                   \"243039_at\"                  \n",
+       "[55413] \"35265_at\"                    \"241365_at\"                  \n",
+       "[55415] \"244041_at\"                   \"242263_at\"                  \n",
+       "[55417] \"244013_at\"                   \"241235_at\"                  \n",
+       "[55419] \"244542_at\"                   \"244543_s_at\"                \n",
+       "[55421] \"91580_at\"                    \"243334_at\"                  \n",
+       "[55423] \"38398_at\"                    \"244261_at\"                  \n",
+       "[55425] \"243908_at\"                   \"241828_x_at\"                \n",
+       "[55427] \"241828_x_at\"                 \"37953_s_at\"                 \n",
+       "[55429] \"240979_at\"                   \"241828_x_at\"                \n",
+       "[55431] \"244453_at\"                   \"40665_at\"                   \n",
+       "[55433] \"243837_x_at\"                 \"241563_at\"                  \n",
+       "[55435] \"242872_at\"                   \"241828_x_at\"                \n",
+       "[55437] \"243399_at\"                   \"241394_at\"                  \n",
+       "[55439] \"244620_at\"                   \"240672_at\"                  \n",
+       "[55441] \"243954_at\"                   \"243687_at\"                  \n",
+       "[55443] \"243629_x_at\"                 \"242087_x_at\"                \n",
+       "[55445] \"241386_at\"                   \"241743_at\"                  \n",
+       "[55447] \"242988_at\"                   \"241828_x_at\"                \n",
+       "[55449] \"243991_at\"                   \"64432_at\"                   \n",
+       "[55451] \"243611_at\"                   \"241480_at\"                  \n",
+       "[55453] \"241347_at\"                   \"242523_at\"                  \n",
+       "[55455] \"244101_at\"                   \"242630_at\"                  \n",
+       "[55457] \"241498_at\"                   \"243899_at\"                  \n",
+       "[55459] \"243899_at\"                   \"243899_at\"                  \n",
+       "[55461] \"243899_at\"                   \"243899_at\"                  \n",
+       "[55463] \"241419_at\"                   \"241053_at\"                  \n",
+       "[55465] \"242789_at\"                   \"37201_at\"                   \n",
+       "[55467] \"242720_at\"                   \"243796_at\"                  \n",
+       "[55469] \"242458_at\"                   \"241219_at\"                  \n",
+       "[55471] \"37201_at\"                    \"244563_at\"                  \n",
+       "[55473] \"38710_at\"                    \"243529_at\"                  \n",
+       "[55475] \"240492_at\"                   \"242513_x_at\"                \n",
+       "[55477] \"242508_at\"                   \"244214_at\"                  \n",
+       "[55479] \"51146_at\"                    \"33322_i_at\"                 \n",
+       "[55481] \"33323_r_at\"                  \"242433_at\"                  \n",
+       "[55483] \"240628_at\"                   \"244581_at\"                  \n",
+       "[55485] \"242510_at\"                   \"240922_at\"                  \n",
+       "[55487] \"244128_x_at\"                 \"240908_at\"                  \n",
+       "[55489] \"243774_at\"                   \"244523_at\"                  \n",
+       "[55491] \"242584_at\"                   \"244110_at\"                  \n",
+       "[55493] \"244301_at\"                   \"243774_at\"                  \n",
+       "[55495] \"242762_s_at\"                 \"34206_at\"                   \n",
+       "[55497] \"241910_x_at\"                 \"243738_at\"                  \n",
+       "[55499] \"243476_at\"                   \"243606_at\"                  \n",
+       "[55501] \"240931_s_at\"                 \"242235_x_at\"                \n",
+       "[55503] \"241418_at\"                   \"241418_at\"                  \n",
+       "[55505] \"242712_x_at\"                 \"242990_at\"                  \n",
+       "[55507] \"65585_at\"                    \"65585_at\"                   \n",
+       "[55509] \"38149_at\"                    \"243628_at\"                  \n",
+       "[55511] \"243011_at\"                   \"243606_at\"                  \n",
+       "[55513] \"65493_at\"                    \"243_g_at\"                   \n",
+       "[55515] \"33850_at\"                    \"244871_s_at\"                \n",
+       "[55517] \"244727_at\"                   \"243428_at\"                  \n",
+       "[55519] \"243435_at\"                   \"243484_x_at\"                \n",
+       "[55521] \"242610_x_at\"                 \"242787_at\"                  \n",
+       "[55523] \"40560_at\"                    \"240570_at\"                  \n",
+       "[55525] \"43934_at\"                    \"241198_s_at\"                \n",
+       "[55527] \"241836_x_at\"                 \"244571_s_at\"                \n",
+       "[55529] \"56256_at\"                    \"241828_x_at\"                \n",
+       "[55531] \"240889_at\"                   \"244735_at\"                  \n",
+       "[55533] \"57540_at\"                    \"241824_at\"                  \n",
+       "[55535] \"244824_at\"                   \"AFFX-HUMISGF3A/M97935_MA_at\"\n",
+       "[55537] \"AFFX-HUMISGF3A/M97935_5_at\"  \"AFFX-HUMISGF3A/M97935_MB_at\"\n",
+       "[55539] \"AFFX-HUMISGF3A/M97935_3_at\"  \"241049_at\"                  \n",
+       "[55541] \"243209_at\"                   \"38487_at\"                   \n",
+       "[55543] \"244032_at\"                   \"242561_at\"                  \n",
+       "[55545] \"244703_x_at\"                 \"242986_at\"                  \n",
+       "[55547] \"244611_at\"                   \"242413_at\"                  \n",
+       "[55549] \"243902_at\"                   \"242030_at\"                  \n",
+       "[55551] \"240781_x_at\"                 \"243396_at\"                  \n",
+       "[55553] \"242220_at\"                   \"242482_at\"                  \n",
+       "[55555] \"242785_at\"                   \"240806_at\"                  \n",
+       "[55557] \"37793_r_at\"                  \"241896_at\"                  \n",
+       "[55559] \"242243_at\"                   \"244319_at\"                  \n",
+       "[55561] \"243346_at\"                   \"243864_at\"                  \n",
+       "[55563] \"244215_at\"                   \"243921_at\"                  \n",
+       "[55565] \"241325_at\"                   \"241325_at\"                  \n",
+       "[55567] \"32088_at\"                    \"243100_at\"                  \n",
+       "[55569] \"244159_at\"                   \"242049_s_at\"                \n",
+       "[55571] \"240579_at\"                   \"241879_at\"                  \n",
+       "[55573] \"242835_s_at\"                 \"242313_at\"                  \n",
+       "[55575] \"241234_at\"                   \"243699_at\"                  \n",
+       "[55577] \"244797_at\"                   \"244174_at\"                  \n",
+       "[55579] \"243355_at\"                   \"244448_at\"                  \n",
+       "[55581] \"243549_at\"                   \"241535_at\"                  \n",
+       "[55583] \"242679_at\"                   \"242771_at\"                  \n",
+       "[55585] \"242679_at\"                   \"242771_at\"                  \n",
+       "[55587] \"244728_at\"                   \"240891_at\"                  \n",
+       "[55589] \"62212_at\"                    \"244438_at\"                  \n",
+       "[55591] \"241282_at\"                   \"62212_at\"                   \n",
+       "[55593] \"242665_at\"                   \"241393_at\"                  \n",
+       "[55595] \"244377_at\"                   \"244690_at\"                  \n",
+       "[55597] \"243501_at\"                   \"243836_at\"                  \n",
+       "[55599] \"242896_at\"                   \"243052_at\"                  \n",
+       "[55601] \"244675_at\"                   \"36499_at\"                   \n",
+       "[55603] \"241504_at\"                   \"241075_at\"                  \n",
+       "[55605] \"241895_at\"                   \"241895_at\"                  \n",
+       "[55607] \"242418_at\"                   \"244352_at\"                  \n",
+       "[55609] \"243367_at\"                   \"242133_s_at\"                \n",
+       "[55611] \"243367_at\"                   \"242133_s_at\"                \n",
+       "[55613] \"241752_at\"                   \"241379_at\"                  \n",
+       "[55615] \"241526_at\"                   \"243244_at\"                  \n",
+       "[55617] \"244848_at\"                   \"243902_at\"                  \n",
+       "[55619] \"243902_at\"                   \"242569_at\"                  \n",
+       "[55621] \"243036_at\"                   \"241895_at\"                  \n",
+       "[55623] \"244182_at\"                   \"244419_at\"                  \n",
+       "[55625] \"244796_at\"                   \"243087_at\"                  \n",
+       "[55627] \"242308_at\"                   \"242825_at\"                  \n",
+       "[55629] \"244709_at\"                   \"243433_at\"                  \n",
+       "[55631] \"244075_at\"                   \"241607_at\"                  \n",
+       "[55633] \"244732_at\"                   \"244744_at\"                  \n",
+       "[55635] \"243440_at\"                   \"242054_s_at\"                \n",
+       "[55637] \"241859_at\"                   \"240821_at\"                  \n",
+       "[55639] \"242013_at\"                   \"241918_at\"                  \n",
+       "[55641] \"242459_at\"                   \"243648_at\"                  \n",
+       "[55643] \"242989_at\"                   \"244354_at\"                  \n",
+       "[55645] \"242989_at\"                   \"244354_at\"                  \n",
+       "[55647] \"241612_at\"                   \"242284_at\"                  \n",
+       "[55649] \"243093_at\"                   \"241372_at\"                  \n",
+       "[55651] \"244865_at\"                   \"241389_at\"                  \n",
+       "[55653] \"244040_at\"                   \"240696_at\"                  \n",
+       "[55655] \"243484_x_at\"                 \"242610_x_at\"                \n",
+       "[55657] \"243292_at\"                   \"52078_at\"                   \n",
+       "[55659] \"243976_at\"                   \"243484_x_at\"                \n",
+       "[55661] \"242610_x_at\"                 \"242610_x_at\"                \n",
+       "[55663] \"244313_at\"                   \"241091_at\"                  \n",
+       "[55665] \"244504_x_at\"                 \"40829_at\"                   \n",
+       "[55667] \"244422_at\"                   \"244718_at\"                  \n",
+       "[55669] \"242269_at\"                   \"242269_at\"                  \n",
+       "[55671] \"242038_at\"                   \"243297_at\"                  \n",
+       "[55673] \"240681_at\"                   \"32625_at\"                   \n",
+       "[55675] \"244049_at\"                   \"244618_at\"                  \n",
+       "[55677] \"243150_at\"                   \"240819_at\"                  \n",
+       "[55679] \"243463_s_at\"                 \"243551_at\"                  \n",
+       "[55681] \"243551_at\"                   \"240700_at\"                  \n",
+       "[55683] \"240634_x_at\"                 \"244379_at\"                  \n",
+       "[55685] \"244379_at\"                   \"37022_at\"                   \n",
+       "[55687] \"243558_at\"                   \"37012_at\"                   \n",
+       "[55689] \"37005_at\"                    \"37005_at\"                   \n",
+       "[55691] \"240634_x_at\"                 \"244848_at\"                  \n",
+       "[55693] \"244472_at\"                   \"241707_at\"                  \n",
+       "[55695] \"242086_at\"                   \"37892_at\"                   \n",
+       "[55697] \"242882_at\"                   \"64942_at\"                   \n",
+       "[55699] \"244489_at\"                   \"242327_x_at\"                \n",
+       "[55701] \"242410_s_at\"                 \"243707_at\"                  \n",
+       "[55703] \"241290_at\"                   \"39650_s_at\"                 \n",
+       "[55705] \"241450_at\"                   \"243717_at\"                  \n",
+       "[55707] \"242381_x_at\"                 \"243623_at\"                  \n",
+       "[55709] \"240692_at\"                   \"241853_at\"                  \n",
+       "[55711] \"241456_at\"                   \"241544_at\"                  \n",
+       "[55713] \"243873_at\"                   \"244080_at\"                  \n",
+       "[55715] \"244555_at\"                   \"241753_at\"                  \n",
+       "[55717] \"244225_x_at\"                 \"243042_at\"                  \n",
+       "[55719] \"242947_at\"                  "
+      ]
+     },
+     "metadata": {},
+     "output_type": "display_data"
+    }
+   ],
+   "source": [
+    "mapped_id[,platform]"
+   ]
+  },
+  {
+   "cell_type": "code",
+   "execution_count": 20,
+   "metadata": {
+    "vscode": {
+     "languageId": "r"
+    }
+   },
+   "outputs": [
+    {
+     "name": "stderr",
+     "output_type": "stream",
+     "text": [
+      "Warning message:\n",
+      "\"package 'WGCNA' was built under R version 4.1.2\"\n"
+     ]
+    },
+    {
+     "name": "stderr",
+     "output_type": "stream",
+     "text": [
+      "Loading required package: dynamicTreeCut\n",
+      "\n",
+      "Loading required package: fastcluster\n",
+      "\n",
+      "\n",
+      "Attaching package: 'fastcluster'\n",
+      "\n",
+      "\n",
+      "The following object is masked from 'package:stats':\n",
+      "\n",
+      "    hclust\n",
+      "\n",
+      "\n",
+      "\n",
+      "\n",
+      "\n",
+      "Attaching package: 'WGCNA'\n",
+      "\n",
+      "\n",
+      "The following object is masked from 'package:stats':\n",
+      "\n",
+      "    cor\n",
+      "\n",
+      "\n"
+     ]
+    }
+   ],
+   "source": [
+    "library(WGCNA)"
+   ]
+  },
+  {
+   "cell_type": "code",
+   "execution_count": 50,
+   "metadata": {
+    "vscode": {
+     "languageId": "r"
+    }
+   },
+   "outputs": [
+    {
+     "name": "stderr",
+     "output_type": "stream",
+     "text": [
+      "Warning message in WGCNA::collapseRows(log2_exprs[(unique_probes$affy_hg_u133_plus), :\n",
+      "\"rowGroup contains blanks. It is strongly recommended that you remove these rows before calling the function.\n",
+      "    But for your convenience, the collapseRow function will remove these rows\"\n",
+      "Warning message in WGCNA::collapseRows(log2_exprs[(unique_probes$affy_hg_u133_plus), :\n",
+      "\"The argument rowGroup contains missing data. It is strongly recommended\n",
+      "    that you remove these rows before calling the function. Or redefine rowGroup\n",
+      "    so that it has no missing data. But for convenience, we remove these data.\"\n"
+     ]
+    }
+   ],
+   "source": [
+    "#keep rows with maxRowVariance per ENSG\n",
+    "CR <- WGCNA::collapseRows(log2_exprs[(unique_probes$affy_hg_u133_plus),], \n",
+    "rowGroup = unique_probes$hgnc_symbol, \n",
+    "rowID = unique_probes[,platform], method = \"maxRowVariance\")"
+   ]
+  },
+  {
+   "cell_type": "code",
+   "execution_count": 51,
+   "metadata": {
+    "vscode": {
+     "languageId": "r"
+    }
+   },
+   "outputs": [
+    {
+     "data": {
+      "text/html": [
+       "<style>\n",
+       ".list-inline {list-style: none; margin:0; padding: 0}\n",
+       ".list-inline>li {display: inline-block}\n",
+       ".list-inline>li:not(:last-child)::after {content: \"\\00b7\"; padding: 0 .5ex}\n",
+       "</style>\n",
+       "<ol class=list-inline><li>18166</li><li>21</li></ol>\n"
+      ],
+      "text/latex": [
+       "\\begin{enumerate*}\n",
+       "\\item 18166\n",
+       "\\item 21\n",
+       "\\end{enumerate*}\n"
+      ],
+      "text/markdown": [
+       "1. 18166\n",
+       "2. 21\n",
+       "\n",
+       "\n"
+      ],
+      "text/plain": [
+       "[1] 18166    21"
+      ]
+     },
+     "metadata": {},
+     "output_type": "display_data"
+    }
+   ],
+   "source": [
+    "dim(CR$datETcollapsed)"
+   ]
+  },
+  {
+   "cell_type": "code",
+   "execution_count": 53,
+   "metadata": {
+    "vscode": {
+     "languageId": "r"
+    }
+   },
+   "outputs": [
+    {
+     "data": {
+      "text/html": [
+       "<table class=\"dataframe\">\n",
+       "<caption>A matrix: 18166 x 21 of type dbl</caption>\n",
+       "<thead>\n",
+       "\t<tr><th></th><th scope=col>GSM1176255</th><th scope=col>GSM1176256</th><th scope=col>GSM1176257</th><th scope=col>GSM1176258</th><th scope=col>GSM1176259</th><th scope=col>GSM1176260</th><th scope=col>GSM1176261</th><th scope=col>GSM1176262</th><th scope=col>GSM1176263</th><th scope=col>GSM1176264</th><th scope=col>...</th><th scope=col>GSM1176266</th><th scope=col>GSM1176267</th><th scope=col>GSM1176268</th><th scope=col>GSM1176269</th><th scope=col>GSM1176270</th><th scope=col>GSM1176271</th><th scope=col>GSM1176272</th><th scope=col>GSM1176273</th><th scope=col>GSM1176274</th><th scope=col>GSM1176275</th></tr>\n",
+       "</thead>\n",
+       "<tbody>\n",
+       "\t<tr><th scope=row>A1BG-AS1</th><td> 5.352710</td><td> 5.310486</td><td> 5.665272</td><td> 5.630609</td><td> 5.264279</td><td> 6.131864</td><td> 5.640623</td><td> 5.386624</td><td> 5.831295</td><td> 5.812792</td><td>...</td><td> 6.039418</td><td> 5.740408</td><td> 5.931576</td><td> 5.650132</td><td> 5.382606</td><td> 5.616595</td><td> 5.610657</td><td> 6.022755</td><td> 5.668250</td><td> 5.704254</td></tr>\n",
+       "\t<tr><th scope=row>A1CF</th><td> 4.795585</td><td> 4.807935</td><td> 4.929803</td><td> 4.713392</td><td> 5.045673</td><td> 5.218089</td><td> 5.004081</td><td> 4.824109</td><td> 4.872692</td><td> 5.049890</td><td>...</td><td> 5.049183</td><td> 5.132549</td><td> 5.281722</td><td> 4.879358</td><td> 4.817109</td><td> 5.047605</td><td> 4.798238</td><td> 4.839832</td><td> 4.754876</td><td> 4.936728</td></tr>\n",
+       "\t<tr><th scope=row>A2M</th><td>11.479278</td><td>10.497342</td><td> 9.785809</td><td> 9.171326</td><td> 9.980392</td><td>10.758403</td><td>10.372794</td><td>10.006030</td><td> 9.726066</td><td> 9.957200</td><td>...</td><td> 8.939033</td><td>10.159872</td><td>10.763805</td><td> 9.681134</td><td> 9.806814</td><td>10.106565</td><td>10.083203</td><td> 9.714768</td><td>10.150955</td><td>10.350177</td></tr>\n",
+       "\t<tr><th scope=row>A2M-AS1</th><td> 6.935550</td><td> 6.793257</td><td> 7.156812</td><td> 6.634913</td><td> 6.363635</td><td> 6.791488</td><td> 6.430080</td><td> 6.666250</td><td> 6.438420</td><td> 6.304728</td><td>...</td><td> 6.483574</td><td> 6.571557</td><td> 6.923461</td><td> 7.068161</td><td> 6.707183</td><td> 6.273774</td><td> 6.898648</td><td> 6.680282</td><td> 6.545151</td><td> 6.151864</td></tr>\n",
+       "\t<tr><th scope=row>A2ML1</th><td> 6.208239</td><td> 5.584823</td><td> 5.505287</td><td> 5.965894</td><td> 5.096385</td><td> 5.532229</td><td> 6.429772</td><td> 5.652996</td><td> 6.438971</td><td> 6.039918</td><td>...</td><td> 5.843701</td><td> 6.051888</td><td> 6.080001</td><td> 6.239739</td><td> 5.528324</td><td> 5.895021</td><td> 5.259980</td><td> 5.683725</td><td> 5.660833</td><td> 5.292557</td></tr>\n",
+       "\t<tr><th scope=row>A4GALT</th><td> 7.229002</td><td> 7.180768</td><td> 7.513902</td><td> 7.566443</td><td> 7.054660</td><td> 7.864845</td><td> 8.192700</td><td> 7.468595</td><td> 7.476169</td><td> 7.501033</td><td>...</td><td> 7.511111</td><td> 7.598446</td><td> 7.767497</td><td> 7.430703</td><td> 6.984409</td><td> 7.495127</td><td> 7.083588</td><td> 7.628321</td><td> 7.407607</td><td> 7.481420</td></tr>\n",
+       "\t<tr><th scope=row>A4GNT</th><td> 5.035228</td><td> 4.785097</td><td> 4.952519</td><td> 5.218072</td><td> 4.968186</td><td> 4.821987</td><td> 5.433437</td><td> 4.969099</td><td> 5.185253</td><td> 4.876602</td><td>...</td><td> 4.875989</td><td> 4.821987</td><td> 5.320533</td><td> 5.354527</td><td> 5.054591</td><td> 5.054017</td><td> 4.906461</td><td> 5.025499</td><td> 4.810721</td><td> 4.994511</td></tr>\n",
+       "\t<tr><th scope=row>AACS</th><td> 8.201470</td><td> 8.980021</td><td> 9.070221</td><td> 8.918858</td><td> 9.142708</td><td> 8.984893</td><td> 8.088342</td><td> 8.644050</td><td> 9.266125</td><td> 9.146684</td><td>...</td><td> 9.129085</td><td> 9.231949</td><td> 8.418083</td><td> 9.220410</td><td> 8.549966</td><td> 8.987171</td><td> 8.794645</td><td> 8.844288</td><td> 9.085818</td><td> 9.181233</td></tr>\n",
+       "\t<tr><th scope=row>AACSP1</th><td> 3.548233</td><td> 4.331883</td><td> 4.102467</td><td> 3.833781</td><td> 3.879744</td><td> 3.755773</td><td> 4.187236</td><td> 3.996955</td><td> 3.957779</td><td> 3.838220</td><td>...</td><td> 3.747050</td><td> 3.936461</td><td> 3.957003</td><td> 3.901644</td><td> 3.782266</td><td> 3.679628</td><td> 3.981167</td><td> 3.966902</td><td> 3.769766</td><td> 3.985293</td></tr>\n",
+       "\t<tr><th scope=row>AADAC</th><td> 4.867412</td><td> 4.970419</td><td> 5.128967</td><td> 5.066386</td><td> 5.069592</td><td> 5.092934</td><td> 5.079824</td><td> 5.123239</td><td> 5.091224</td><td> 5.250258</td><td>...</td><td> 4.915415</td><td> 5.118931</td><td> 5.222093</td><td> 5.210532</td><td> 5.184718</td><td> 5.069592</td><td> 4.789107</td><td> 5.065328</td><td> 5.047868</td><td> 5.154316</td></tr>\n",
+       "\t<tr><th scope=row>AADAT</th><td> 6.872976</td><td> 7.440623</td><td> 7.586675</td><td> 6.965607</td><td> 7.262888</td><td> 7.111646</td><td> 6.729255</td><td> 7.115992</td><td> 6.908567</td><td> 7.028483</td><td>...</td><td> 7.101008</td><td> 7.160222</td><td> 6.943145</td><td> 7.160222</td><td> 7.519034</td><td> 6.951425</td><td> 7.650060</td><td> 7.103773</td><td> 7.304019</td><td> 6.989930</td></tr>\n",
+       "\t<tr><th scope=row>AAGAB</th><td> 7.130276</td><td> 7.078394</td><td> 7.025149</td><td> 6.891299</td><td> 6.964322</td><td> 6.782035</td><td> 6.580391</td><td> 6.867517</td><td> 7.326018</td><td> 7.540941</td><td>...</td><td> 7.342288</td><td> 6.832960</td><td> 6.652421</td><td> 7.063244</td><td> 7.029780</td><td> 7.094582</td><td> 5.843337</td><td> 6.882988</td><td> 7.618091</td><td> 7.101377</td></tr>\n",
+       "\t<tr><th scope=row>AAK1</th><td> 6.878053</td><td> 8.110100</td><td> 8.808601</td><td> 7.885628</td><td> 8.843792</td><td> 7.603272</td><td> 6.787050</td><td> 7.640654</td><td> 8.601228</td><td> 8.836744</td><td>...</td><td> 8.512053</td><td> 8.235025</td><td> 7.266030</td><td> 8.613002</td><td> 8.025170</td><td> 8.865122</td><td> 8.047384</td><td> 8.233787</td><td> 9.142343</td><td> 9.020943</td></tr>\n",
+       "\t<tr><th scope=row>AAMDC</th><td> 7.797431</td><td> 6.869771</td><td> 7.272886</td><td> 7.200384</td><td> 7.180039</td><td> 7.386617</td><td> 7.296426</td><td> 7.291830</td><td> 7.084344</td><td> 7.085506</td><td>...</td><td> 7.251738</td><td> 6.975882</td><td> 7.421897</td><td> 7.029575</td><td> 7.710682</td><td> 6.927991</td><td> 7.736302</td><td> 7.357308</td><td> 6.902398</td><td> 7.016611</td></tr>\n",
+       "\t<tr><th scope=row>AAMP</th><td> 8.784029</td><td> 8.542925</td><td> 8.788936</td><td> 8.475695</td><td> 8.815060</td><td> 8.466660</td><td> 8.663665</td><td> 8.661131</td><td> 8.619995</td><td> 8.952774</td><td>...</td><td> 8.793182</td><td> 8.371337</td><td> 8.346435</td><td> 8.294783</td><td> 8.889969</td><td> 8.680207</td><td> 8.887860</td><td> 8.321668</td><td> 9.116928</td><td> 8.762322</td></tr>\n",
+       "\t<tr><th scope=row>AANAT</th><td> 3.863903</td><td> 4.346829</td><td> 4.133816</td><td> 3.959366</td><td> 4.065144</td><td> 4.288956</td><td> 4.171600</td><td> 3.852393</td><td> 3.922564</td><td> 4.137867</td><td>...</td><td> 4.312099</td><td> 4.210694</td><td> 4.129817</td><td> 3.947461</td><td> 4.337245</td><td> 4.133816</td><td> 4.056243</td><td> 4.015712</td><td> 4.085390</td><td> 4.118834</td></tr>\n",
+       "\t<tr><th scope=row>AAR2</th><td> 7.972548</td><td> 7.794187</td><td> 7.987219</td><td> 7.949047</td><td> 7.736807</td><td> 7.838738</td><td> 7.826099</td><td> 7.722029</td><td> 7.687871</td><td> 7.757003</td><td>...</td><td> 7.669757</td><td> 7.878265</td><td> 7.734023</td><td> 7.842816</td><td> 8.071806</td><td> 7.417583</td><td> 8.091202</td><td> 7.599732</td><td> 8.001770</td><td> 7.806474</td></tr>\n",
+       "\t<tr><th scope=row>AARS1</th><td>10.479690</td><td>10.432092</td><td>10.417579</td><td>10.322909</td><td>10.729068</td><td>10.545232</td><td>10.266697</td><td>10.446471</td><td>10.360088</td><td>10.731985</td><td>...</td><td>10.633029</td><td>10.288472</td><td>10.285859</td><td>10.474160</td><td>10.596143</td><td>10.617278</td><td>10.956661</td><td>10.439639</td><td>10.980116</td><td>10.713152</td></tr>\n",
+       "\t<tr><th scope=row>AARS2</th><td> 7.626195</td><td> 7.878897</td><td> 7.976353</td><td> 7.697946</td><td> 7.689406</td><td> 7.845849</td><td> 7.625383</td><td> 7.460262</td><td> 7.584747</td><td> 7.533378</td><td>...</td><td> 7.561384</td><td> 7.574470</td><td> 7.894660</td><td> 7.473550</td><td> 7.639636</td><td> 7.376617</td><td> 7.650404</td><td> 7.604732</td><td> 7.709588</td><td> 7.547223</td></tr>\n",
+       "\t<tr><th scope=row>AASDH</th><td> 8.310263</td><td> 8.108231</td><td> 8.250010</td><td> 8.406444</td><td> 7.933456</td><td> 7.352683</td><td> 7.916343</td><td> 8.553360</td><td> 8.288538</td><td> 8.368637</td><td>...</td><td> 8.489828</td><td> 8.063037</td><td> 8.190560</td><td> 8.260908</td><td> 7.771576</td><td> 8.079380</td><td> 7.698635</td><td> 8.459084</td><td> 8.263091</td><td> 7.497972</td></tr>\n",
+       "\t<tr><th scope=row>AASDHPPT</th><td> 8.124437</td><td> 8.851917</td><td> 8.552943</td><td> 8.973230</td><td> 9.231009</td><td> 8.216023</td><td> 7.876563</td><td> 8.665634</td><td> 9.779260</td><td> 9.762024</td><td>...</td><td> 9.672192</td><td> 8.798504</td><td> 8.294225</td><td> 8.993137</td><td> 9.104552</td><td> 9.047525</td><td> 8.950250</td><td> 8.974705</td><td> 9.889588</td><td> 9.268361</td></tr>\n",
+       "\t<tr><th scope=row>AASS</th><td> 7.245229</td><td> 7.025075</td><td> 6.572515</td><td> 6.681910</td><td> 6.480812</td><td> 6.084467</td><td> 7.230910</td><td> 7.064489</td><td> 6.039863</td><td> 6.780253</td><td>...</td><td> 6.780253</td><td> 5.879743</td><td> 6.596458</td><td> 6.703844</td><td> 7.595345</td><td> 6.787972</td><td> 7.675935</td><td> 6.780253</td><td> 6.780253</td><td> 6.460387</td></tr>\n",
+       "\t<tr><th scope=row>AATBC</th><td> 4.268163</td><td> 4.204853</td><td> 4.194662</td><td> 4.123555</td><td> 3.917634</td><td> 4.247628</td><td> 4.298790</td><td> 3.949999</td><td> 4.125741</td><td> 4.125903</td><td>...</td><td> 4.084403</td><td> 4.266832</td><td> 4.533765</td><td> 3.891895</td><td> 4.380649</td><td> 3.994687</td><td> 3.849680</td><td> 4.215241</td><td> 4.104258</td><td> 4.106699</td></tr>\n",
+       "\t<tr><th scope=row>AATK</th><td> 7.182520</td><td> 6.809297</td><td> 6.841369</td><td> 5.735864</td><td> 6.023089</td><td> 6.826324</td><td> 6.007516</td><td> 5.364520</td><td> 5.483834</td><td> 5.483601</td><td>...</td><td> 5.374082</td><td> 6.004154</td><td> 6.155436</td><td> 5.255921</td><td> 6.362812</td><td> 5.820448</td><td> 7.195941</td><td> 5.831279</td><td> 5.005930</td><td> 6.207210</td></tr>\n",
+       "\t<tr><th scope=row>ABAT</th><td> 9.011646</td><td> 8.346857</td><td> 6.910624</td><td> 8.120092</td><td> 7.649525</td><td> 6.673519</td><td> 8.605274</td><td> 8.992588</td><td> 8.183827</td><td> 8.654687</td><td>...</td><td> 8.615950</td><td> 7.683251</td><td> 7.816261</td><td> 7.532742</td><td> 7.696437</td><td> 8.444637</td><td> 6.987315</td><td> 8.278001</td><td> 8.461997</td><td> 8.747737</td></tr>\n",
+       "\t<tr><th scope=row>ABCA1</th><td> 8.660904</td><td> 6.962448</td><td> 7.219826</td><td> 6.753696</td><td> 6.759389</td><td> 6.234833</td><td> 7.779428</td><td> 7.337783</td><td> 7.183990</td><td> 6.458844</td><td>...</td><td> 5.917207</td><td> 6.803134</td><td> 7.178548</td><td> 7.024548</td><td> 7.244482</td><td> 6.557603</td><td> 7.200149</td><td> 6.640673</td><td> 6.667382</td><td> 6.498045</td></tr>\n",
+       "\t<tr><th scope=row>ABCA12</th><td> 3.312110</td><td> 3.045365</td><td> 3.172266</td><td> 3.171774</td><td> 3.024929</td><td> 3.025347</td><td> 3.089437</td><td> 3.239580</td><td> 3.259477</td><td> 3.192086</td><td>...</td><td> 2.960342</td><td> 3.023154</td><td> 3.222052</td><td> 3.052671</td><td> 3.104452</td><td> 3.086559</td><td> 3.033578</td><td> 3.144300</td><td> 3.104452</td><td> 3.074711</td></tr>\n",
+       "\t<tr><th scope=row>ABCA13</th><td> 2.980436</td><td> 2.920541</td><td> 2.830552</td><td> 2.861145</td><td> 2.868411</td><td> 3.212728</td><td> 2.852709</td><td> 2.862569</td><td> 2.861145</td><td> 3.024587</td><td>...</td><td> 2.865514</td><td> 2.933172</td><td> 2.978712</td><td> 2.893349</td><td> 2.767334</td><td> 2.811774</td><td> 2.711867</td><td> 2.913963</td><td> 2.792902</td><td> 2.680530</td></tr>\n",
+       "\t<tr><th scope=row>ABCA17P</th><td> 6.296941</td><td> 6.249987</td><td> 7.076512</td><td> 6.102720</td><td> 6.467738</td><td> 6.167985</td><td> 6.390769</td><td> 6.143856</td><td> 6.211597</td><td> 6.129382</td><td>...</td><td> 6.552807</td><td> 5.876977</td><td> 6.227943</td><td> 6.294908</td><td> 6.820506</td><td> 6.284706</td><td> 6.719113</td><td> 6.481484</td><td> 6.596028</td><td> 6.229354</td></tr>\n",
+       "\t<tr><th scope=row>ABCA2</th><td> 9.720611</td><td> 9.685208</td><td> 9.263451</td><td> 9.546373</td><td> 9.426914</td><td>10.039233</td><td> 8.770538</td><td> 9.085378</td><td> 8.513676</td><td> 9.328878</td><td>...</td><td> 9.868501</td><td> 8.612665</td><td> 9.154906</td><td> 7.999982</td><td>11.195790</td><td> 9.392229</td><td>11.099602</td><td> 9.454239</td><td> 8.904484</td><td> 9.464121</td></tr>\n",
+       "\t<tr><th scope=row>...</th><td>...</td><td>...</td><td>...</td><td>...</td><td>...</td><td>...</td><td>...</td><td>...</td><td>...</td><td>...</td><td></td><td>...</td><td>...</td><td>...</td><td>...</td><td>...</td><td>...</td><td>...</td><td>...</td><td>...</td><td>...</td></tr>\n",
+       "\t<tr><th scope=row>ZSCAN23</th><td>3.199741</td><td> 3.199741</td><td>3.121723</td><td>3.227038</td><td>3.194199</td><td>3.251840</td><td>3.196633</td><td>3.159831</td><td>3.091098</td><td>3.136453</td><td>...</td><td>3.142247</td><td>3.336370</td><td>3.386130</td><td>3.038206</td><td> 3.311563</td><td>3.260079</td><td> 3.183908</td><td>3.201331</td><td>3.146386</td><td>3.231355</td></tr>\n",
+       "\t<tr><th scope=row>ZSCAN25</th><td>6.250361</td><td> 6.435434</td><td>6.376971</td><td>6.315956</td><td>6.616638</td><td>6.454525</td><td>6.476860</td><td>5.558148</td><td>5.949517</td><td>6.306659</td><td>...</td><td>5.883532</td><td>6.483015</td><td>6.675298</td><td>6.078541</td><td> 6.706457</td><td>6.127540</td><td> 6.383794</td><td>6.051888</td><td>6.407161</td><td>6.200612</td></tr>\n",
+       "\t<tr><th scope=row>ZSCAN26</th><td>7.940282</td><td> 7.475320</td><td>7.749370</td><td>6.991254</td><td>7.378298</td><td>6.572838</td><td>7.285854</td><td>7.308960</td><td>6.999520</td><td>6.958512</td><td>...</td><td>7.046733</td><td>6.620292</td><td>7.225109</td><td>7.081733</td><td> 7.672952</td><td>7.051281</td><td> 7.530652</td><td>7.208643</td><td>7.337152</td><td>6.941345</td></tr>\n",
+       "\t<tr><th scope=row>ZSCAN29</th><td>7.479940</td><td> 6.935852</td><td>7.319632</td><td>7.231962</td><td>7.321726</td><td>7.710988</td><td>7.438547</td><td>6.889805</td><td>7.209744</td><td>6.845596</td><td>...</td><td>6.833227</td><td>7.437456</td><td>7.094176</td><td>7.464834</td><td> 7.156085</td><td>6.734462</td><td> 7.661313</td><td>7.334187</td><td>6.837380</td><td>6.996262</td></tr>\n",
+       "\t<tr><th scope=row>ZSCAN30</th><td>7.600206</td><td> 7.344207</td><td>7.535697</td><td>7.326033</td><td>7.228941</td><td>6.826324</td><td>6.959821</td><td>6.888474</td><td>7.021952</td><td>7.167485</td><td>...</td><td>6.969267</td><td>7.229835</td><td>7.166496</td><td>7.166496</td><td> 7.609624</td><td>6.857509</td><td> 7.480714</td><td>7.132777</td><td>7.057318</td><td>7.166496</td></tr>\n",
+       "\t<tr><th scope=row>ZSCAN31</th><td>6.847958</td><td> 7.070561</td><td>6.964819</td><td>7.783712</td><td>7.167121</td><td>7.067735</td><td>8.048066</td><td>7.728624</td><td>7.169705</td><td>7.198808</td><td>...</td><td>7.226518</td><td>6.844157</td><td>6.665145</td><td>7.139850</td><td> 7.171039</td><td>7.221009</td><td> 7.486754</td><td>7.427672</td><td>7.581492</td><td>6.904099</td></tr>\n",
+       "\t<tr><th scope=row>ZSCAN32</th><td>7.846250</td><td> 7.909501</td><td>7.746586</td><td>7.644244</td><td>7.666471</td><td>7.847087</td><td>7.702532</td><td>7.223371</td><td>7.389134</td><td>7.532079</td><td>...</td><td>7.018710</td><td>7.603674</td><td>7.795436</td><td>7.501162</td><td> 8.086763</td><td>7.565455</td><td> 8.096539</td><td>7.471607</td><td>7.529237</td><td>7.522139</td></tr>\n",
+       "\t<tr><th scope=row>ZSCAN4</th><td>3.402861</td><td> 3.622573</td><td>3.648335</td><td>3.371048</td><td>3.490364</td><td>3.381511</td><td>3.291837</td><td>3.412651</td><td>3.586570</td><td>3.207225</td><td>...</td><td>3.238818</td><td>3.255924</td><td>3.795836</td><td>3.188029</td><td> 3.265767</td><td>3.391948</td><td> 3.387413</td><td>3.402861</td><td>3.600451</td><td>3.385749</td></tr>\n",
+       "\t<tr><th scope=row>ZSCAN5A</th><td>6.083614</td><td> 5.932631</td><td>6.263221</td><td>6.158142</td><td>6.538515</td><td>6.456285</td><td>6.148946</td><td>5.710112</td><td>5.972602</td><td>6.281396</td><td>...</td><td>6.003897</td><td>6.351425</td><td>6.479635</td><td>5.914714</td><td> 5.812066</td><td>5.924787</td><td> 6.122436</td><td>5.753054</td><td>5.935657</td><td>6.067586</td></tr>\n",
+       "\t<tr><th scope=row>ZSCAN5A-AS1</th><td>3.909486</td><td> 3.698342</td><td>3.896219</td><td>4.088790</td><td>3.980744</td><td>3.948434</td><td>3.933612</td><td>3.898512</td><td>3.920508</td><td>3.842323</td><td>...</td><td>3.872679</td><td>3.581085</td><td>3.823706</td><td>4.039102</td><td> 4.100178</td><td>4.044240</td><td> 3.674506</td><td>3.843817</td><td>3.952396</td><td>3.747088</td></tr>\n",
+       "\t<tr><th scope=row>ZSCAN9</th><td>5.525605</td><td> 5.583303</td><td>5.195300</td><td>5.439449</td><td>5.257319</td><td>5.218523</td><td>5.475873</td><td>5.336915</td><td>5.318813</td><td>5.333589</td><td>...</td><td>4.946142</td><td>4.964066</td><td>5.130515</td><td>5.289658</td><td> 5.910066</td><td>5.185209</td><td> 5.516115</td><td>5.348104</td><td>5.246839</td><td>5.410583</td></tr>\n",
+       "\t<tr><th scope=row>ZSWIM1</th><td>7.949111</td><td> 7.742150</td><td>7.899407</td><td>7.817575</td><td>7.907426</td><td>7.818025</td><td>7.884122</td><td>7.559377</td><td>7.945689</td><td>7.700010</td><td>...</td><td>7.733184</td><td>7.843434</td><td>8.081928</td><td>7.867805</td><td> 7.612775</td><td>7.591316</td><td> 7.575989</td><td>7.760918</td><td>7.746171</td><td>7.640036</td></tr>\n",
+       "\t<tr><th scope=row>ZSWIM2</th><td>2.967328</td><td> 3.124250</td><td>3.151328</td><td>3.109947</td><td>3.218620</td><td>3.275645</td><td>3.429652</td><td>3.104452</td><td>3.112628</td><td>2.976702</td><td>...</td><td>3.109947</td><td>3.136453</td><td>3.212808</td><td>3.192173</td><td> 3.030090</td><td>3.082422</td><td> 3.022550</td><td>3.104009</td><td>2.949070</td><td>3.270103</td></tr>\n",
+       "\t<tr><th scope=row>ZSWIM3</th><td>6.742269</td><td> 7.024032</td><td>6.899933</td><td>7.020320</td><td>7.097199</td><td>6.788293</td><td>6.770751</td><td>6.729924</td><td>6.822269</td><td>6.838381</td><td>...</td><td>6.816686</td><td>6.909995</td><td>7.147720</td><td>6.809176</td><td> 6.619993</td><td>6.746679</td><td> 6.729221</td><td>6.783312</td><td>7.099124</td><td>6.838381</td></tr>\n",
+       "\t<tr><th scope=row>ZSWIM5</th><td>7.639787</td><td> 7.501874</td><td>7.415938</td><td>7.394310</td><td>7.153674</td><td>7.411413</td><td>7.499564</td><td>7.234186</td><td>7.425449</td><td>7.265663</td><td>...</td><td>7.130817</td><td>7.514114</td><td>7.532158</td><td>7.596063</td><td> 7.609677</td><td>7.478675</td><td> 7.182700</td><td>7.326481</td><td>7.531008</td><td>7.460208</td></tr>\n",
+       "\t<tr><th scope=row>ZSWIM6</th><td>9.939892</td><td>10.000556</td><td>9.409903</td><td>9.901621</td><td>9.580405</td><td>9.976033</td><td>9.710503</td><td>9.561646</td><td>9.632100</td><td>9.370709</td><td>...</td><td>9.553541</td><td>9.836286</td><td>9.652378</td><td>9.992764</td><td>10.271927</td><td>9.918371</td><td>10.580333</td><td>9.875722</td><td>9.214551</td><td>9.196119</td></tr>\n",
+       "\t<tr><th scope=row>ZSWIM7</th><td>7.751726</td><td> 5.899633</td><td>7.143590</td><td>6.812706</td><td>6.915537</td><td>7.368805</td><td>7.494952</td><td>7.041152</td><td>6.353000</td><td>7.108073</td><td>...</td><td>6.906122</td><td>6.966404</td><td>7.527723</td><td>6.876405</td><td> 7.423930</td><td>6.769222</td><td> 7.162255</td><td>7.148593</td><td>7.106903</td><td>7.305811</td></tr>\n",
+       "\t<tr><th scope=row>ZSWIM8</th><td>5.803377</td><td> 5.851839</td><td>5.980962</td><td>6.020280</td><td>5.692661</td><td>6.491155</td><td>6.944787</td><td>5.710112</td><td>6.101297</td><td>6.054132</td><td>...</td><td>6.003461</td><td>6.024672</td><td>6.281585</td><td>5.988476</td><td> 6.022633</td><td>6.022633</td><td> 5.710812</td><td>6.447684</td><td>5.855048</td><td>5.977539</td></tr>\n",
+       "\t<tr><th scope=row>ZSWIM9</th><td>7.421328</td><td> 7.309810</td><td>7.774200</td><td>7.538855</td><td>6.895781</td><td>8.085814</td><td>8.231883</td><td>7.332572</td><td>7.739870</td><td>7.559992</td><td>...</td><td>7.607867</td><td>7.764217</td><td>7.682392</td><td>7.592298</td><td> 7.255209</td><td>7.534537</td><td> 7.230919</td><td>7.648266</td><td>7.480148</td><td>7.484119</td></tr>\n",
+       "\t<tr><th scope=row>ZUP1</th><td>6.765563</td><td> 6.957004</td><td>7.164376</td><td>6.927919</td><td>7.466029</td><td>6.797921</td><td>6.512822</td><td>7.252949</td><td>6.980356</td><td>6.989788</td><td>...</td><td>7.101513</td><td>6.785380</td><td>6.606286</td><td>6.895661</td><td> 6.957004</td><td>6.880944</td><td> 7.434483</td><td>6.863170</td><td>7.109914</td><td>6.967503</td></tr>\n",
+       "\t<tr><th scope=row>ZW10</th><td>7.133824</td><td> 7.203466</td><td>7.014177</td><td>6.982698</td><td>7.280296</td><td>6.886194</td><td>6.808033</td><td>6.768584</td><td>7.194065</td><td>7.329752</td><td>...</td><td>7.185494</td><td>6.976970</td><td>6.884463</td><td>6.871101</td><td> 7.688593</td><td>7.096756</td><td> 7.231129</td><td>7.076369</td><td>7.364292</td><td>7.303738</td></tr>\n",
+       "\t<tr><th scope=row>ZWILCH</th><td>5.240396</td><td> 5.341749</td><td>5.532942</td><td>5.025319</td><td>5.965352</td><td>5.158219</td><td>4.612844</td><td>5.255974</td><td>5.691886</td><td>6.022633</td><td>...</td><td>6.109231</td><td>5.039536</td><td>4.902581</td><td>4.903210</td><td> 5.445425</td><td>5.344416</td><td> 5.543285</td><td>5.092664</td><td>6.262775</td><td>6.077524</td></tr>\n",
+       "\t<tr><th scope=row>ZWINT</th><td>6.768497</td><td> 7.281932</td><td>7.322624</td><td>6.396535</td><td>7.283911</td><td>6.560371</td><td>5.598903</td><td>6.538515</td><td>6.494239</td><td>6.648036</td><td>...</td><td>6.728861</td><td>6.263785</td><td>6.296770</td><td>6.317377</td><td> 7.067840</td><td>6.698251</td><td> 6.829920</td><td>6.601264</td><td>6.943232</td><td>6.525293</td></tr>\n",
+       "\t<tr><th scope=row>ZXDA</th><td>6.044884</td><td> 6.234170</td><td>6.474266</td><td>6.059113</td><td>6.153997</td><td>5.479325</td><td>6.005482</td><td>5.655311</td><td>5.918421</td><td>5.557230</td><td>...</td><td>5.159925</td><td>5.615202</td><td>5.861752</td><td>5.705740</td><td> 6.191684</td><td>5.575933</td><td> 6.140988</td><td>5.776211</td><td>5.905862</td><td>5.664658</td></tr>\n",
+       "\t<tr><th scope=row>ZXDB</th><td>6.272985</td><td> 6.592185</td><td>7.034104</td><td>6.741505</td><td>6.998420</td><td>6.415183</td><td>5.799313</td><td>6.592185</td><td>6.838381</td><td>6.458138</td><td>...</td><td>6.551742</td><td>6.330846</td><td>6.443835</td><td>6.823765</td><td> 6.608122</td><td>6.719435</td><td> 7.106164</td><td>6.592185</td><td>6.753856</td><td>6.581902</td></tr>\n",
+       "\t<tr><th scope=row>ZXDC</th><td>7.111151</td><td> 7.016501</td><td>7.309052</td><td>6.932323</td><td>6.830365</td><td>7.281932</td><td>6.929413</td><td>6.234943</td><td>6.667134</td><td>6.802326</td><td>...</td><td>6.579402</td><td>6.824148</td><td>7.079300</td><td>6.689427</td><td> 7.306438</td><td>6.506272</td><td> 7.578248</td><td>6.879152</td><td>6.913739</td><td>6.679034</td></tr>\n",
+       "\t<tr><th scope=row>ZYG11A</th><td>5.232249</td><td> 5.365235</td><td>5.308019</td><td>5.250898</td><td>5.335680</td><td>5.426472</td><td>5.382704</td><td>5.104962</td><td>5.517993</td><td>5.335767</td><td>...</td><td>5.481580</td><td>5.500762</td><td>5.391060</td><td>5.279286</td><td> 5.310956</td><td>5.027772</td><td> 4.950274</td><td>5.111942</td><td>5.220256</td><td>5.299239</td></tr>\n",
+       "\t<tr><th scope=row>ZYG11B</th><td>6.730424</td><td> 7.219228</td><td>6.431596</td><td>7.695187</td><td>7.487052</td><td>6.273348</td><td>7.419599</td><td>7.464194</td><td>8.070276</td><td>8.317744</td><td>...</td><td>8.312155</td><td>7.509729</td><td>7.337697</td><td>8.252282</td><td> 7.231209</td><td>7.470370</td><td> 7.217170</td><td>8.314922</td><td>7.892701</td><td>8.185472</td></tr>\n",
+       "\t<tr><th scope=row>ZZEF1</th><td>8.120702</td><td> 8.167427</td><td>8.535162</td><td>8.098990</td><td>8.337401</td><td>8.174365</td><td>7.700096</td><td>8.054082</td><td>8.138822</td><td>8.133361</td><td>...</td><td>8.013656</td><td>8.138008</td><td>7.986931</td><td>7.788641</td><td> 8.172119</td><td>8.251825</td><td> 8.499680</td><td>7.698604</td><td>8.194552</td><td>8.159556</td></tr>\n",
+       "\t<tr><th scope=row>ZZZ3</th><td>8.177778</td><td> 8.095711</td><td>7.877595</td><td>8.065969</td><td>7.924424</td><td>7.625581</td><td>7.763806</td><td>7.820191</td><td>8.060748</td><td>7.582867</td><td>...</td><td>7.437419</td><td>7.884578</td><td>7.715052</td><td>8.168349</td><td> 8.312459</td><td>7.539194</td><td> 8.521929</td><td>8.185983</td><td>7.716461</td><td>7.807617</td></tr>\n",
+       "</tbody>\n",
+       "</table>\n"
+      ],
+      "text/latex": [
+       "A matrix: 18166 x 21 of type dbl\n",
+       "\\begin{tabular}{r|lllllllllllllllllllll}\n",
+       "  & GSM1176255 & GSM1176256 & GSM1176257 & GSM1176258 & GSM1176259 & GSM1176260 & GSM1176261 & GSM1176262 & GSM1176263 & GSM1176264 & ... & GSM1176266 & GSM1176267 & GSM1176268 & GSM1176269 & GSM1176270 & GSM1176271 & GSM1176272 & GSM1176273 & GSM1176274 & GSM1176275\\\\\n",
+       "\\hline\n",
+       "\tA1BG-AS1 &  5.352710 &  5.310486 &  5.665272 &  5.630609 &  5.264279 &  6.131864 &  5.640623 &  5.386624 &  5.831295 &  5.812792 & ... &  6.039418 &  5.740408 &  5.931576 &  5.650132 &  5.382606 &  5.616595 &  5.610657 &  6.022755 &  5.668250 &  5.704254\\\\\n",
+       "\tA1CF &  4.795585 &  4.807935 &  4.929803 &  4.713392 &  5.045673 &  5.218089 &  5.004081 &  4.824109 &  4.872692 &  5.049890 & ... &  5.049183 &  5.132549 &  5.281722 &  4.879358 &  4.817109 &  5.047605 &  4.798238 &  4.839832 &  4.754876 &  4.936728\\\\\n",
+       "\tA2M & 11.479278 & 10.497342 &  9.785809 &  9.171326 &  9.980392 & 10.758403 & 10.372794 & 10.006030 &  9.726066 &  9.957200 & ... &  8.939033 & 10.159872 & 10.763805 &  9.681134 &  9.806814 & 10.106565 & 10.083203 &  9.714768 & 10.150955 & 10.350177\\\\\n",
+       "\tA2M-AS1 &  6.935550 &  6.793257 &  7.156812 &  6.634913 &  6.363635 &  6.791488 &  6.430080 &  6.666250 &  6.438420 &  6.304728 & ... &  6.483574 &  6.571557 &  6.923461 &  7.068161 &  6.707183 &  6.273774 &  6.898648 &  6.680282 &  6.545151 &  6.151864\\\\\n",
+       "\tA2ML1 &  6.208239 &  5.584823 &  5.505287 &  5.965894 &  5.096385 &  5.532229 &  6.429772 &  5.652996 &  6.438971 &  6.039918 & ... &  5.843701 &  6.051888 &  6.080001 &  6.239739 &  5.528324 &  5.895021 &  5.259980 &  5.683725 &  5.660833 &  5.292557\\\\\n",
+       "\tA4GALT &  7.229002 &  7.180768 &  7.513902 &  7.566443 &  7.054660 &  7.864845 &  8.192700 &  7.468595 &  7.476169 &  7.501033 & ... &  7.511111 &  7.598446 &  7.767497 &  7.430703 &  6.984409 &  7.495127 &  7.083588 &  7.628321 &  7.407607 &  7.481420\\\\\n",
+       "\tA4GNT &  5.035228 &  4.785097 &  4.952519 &  5.218072 &  4.968186 &  4.821987 &  5.433437 &  4.969099 &  5.185253 &  4.876602 & ... &  4.875989 &  4.821987 &  5.320533 &  5.354527 &  5.054591 &  5.054017 &  4.906461 &  5.025499 &  4.810721 &  4.994511\\\\\n",
+       "\tAACS &  8.201470 &  8.980021 &  9.070221 &  8.918858 &  9.142708 &  8.984893 &  8.088342 &  8.644050 &  9.266125 &  9.146684 & ... &  9.129085 &  9.231949 &  8.418083 &  9.220410 &  8.549966 &  8.987171 &  8.794645 &  8.844288 &  9.085818 &  9.181233\\\\\n",
+       "\tAACSP1 &  3.548233 &  4.331883 &  4.102467 &  3.833781 &  3.879744 &  3.755773 &  4.187236 &  3.996955 &  3.957779 &  3.838220 & ... &  3.747050 &  3.936461 &  3.957003 &  3.901644 &  3.782266 &  3.679628 &  3.981167 &  3.966902 &  3.769766 &  3.985293\\\\\n",
+       "\tAADAC &  4.867412 &  4.970419 &  5.128967 &  5.066386 &  5.069592 &  5.092934 &  5.079824 &  5.123239 &  5.091224 &  5.250258 & ... &  4.915415 &  5.118931 &  5.222093 &  5.210532 &  5.184718 &  5.069592 &  4.789107 &  5.065328 &  5.047868 &  5.154316\\\\\n",
+       "\tAADAT &  6.872976 &  7.440623 &  7.586675 &  6.965607 &  7.262888 &  7.111646 &  6.729255 &  7.115992 &  6.908567 &  7.028483 & ... &  7.101008 &  7.160222 &  6.943145 &  7.160222 &  7.519034 &  6.951425 &  7.650060 &  7.103773 &  7.304019 &  6.989930\\\\\n",
+       "\tAAGAB &  7.130276 &  7.078394 &  7.025149 &  6.891299 &  6.964322 &  6.782035 &  6.580391 &  6.867517 &  7.326018 &  7.540941 & ... &  7.342288 &  6.832960 &  6.652421 &  7.063244 &  7.029780 &  7.094582 &  5.843337 &  6.882988 &  7.618091 &  7.101377\\\\\n",
+       "\tAAK1 &  6.878053 &  8.110100 &  8.808601 &  7.885628 &  8.843792 &  7.603272 &  6.787050 &  7.640654 &  8.601228 &  8.836744 & ... &  8.512053 &  8.235025 &  7.266030 &  8.613002 &  8.025170 &  8.865122 &  8.047384 &  8.233787 &  9.142343 &  9.020943\\\\\n",
+       "\tAAMDC &  7.797431 &  6.869771 &  7.272886 &  7.200384 &  7.180039 &  7.386617 &  7.296426 &  7.291830 &  7.084344 &  7.085506 & ... &  7.251738 &  6.975882 &  7.421897 &  7.029575 &  7.710682 &  6.927991 &  7.736302 &  7.357308 &  6.902398 &  7.016611\\\\\n",
+       "\tAAMP &  8.784029 &  8.542925 &  8.788936 &  8.475695 &  8.815060 &  8.466660 &  8.663665 &  8.661131 &  8.619995 &  8.952774 & ... &  8.793182 &  8.371337 &  8.346435 &  8.294783 &  8.889969 &  8.680207 &  8.887860 &  8.321668 &  9.116928 &  8.762322\\\\\n",
+       "\tAANAT &  3.863903 &  4.346829 &  4.133816 &  3.959366 &  4.065144 &  4.288956 &  4.171600 &  3.852393 &  3.922564 &  4.137867 & ... &  4.312099 &  4.210694 &  4.129817 &  3.947461 &  4.337245 &  4.133816 &  4.056243 &  4.015712 &  4.085390 &  4.118834\\\\\n",
+       "\tAAR2 &  7.972548 &  7.794187 &  7.987219 &  7.949047 &  7.736807 &  7.838738 &  7.826099 &  7.722029 &  7.687871 &  7.757003 & ... &  7.669757 &  7.878265 &  7.734023 &  7.842816 &  8.071806 &  7.417583 &  8.091202 &  7.599732 &  8.001770 &  7.806474\\\\\n",
+       "\tAARS1 & 10.479690 & 10.432092 & 10.417579 & 10.322909 & 10.729068 & 10.545232 & 10.266697 & 10.446471 & 10.360088 & 10.731985 & ... & 10.633029 & 10.288472 & 10.285859 & 10.474160 & 10.596143 & 10.617278 & 10.956661 & 10.439639 & 10.980116 & 10.713152\\\\\n",
+       "\tAARS2 &  7.626195 &  7.878897 &  7.976353 &  7.697946 &  7.689406 &  7.845849 &  7.625383 &  7.460262 &  7.584747 &  7.533378 & ... &  7.561384 &  7.574470 &  7.894660 &  7.473550 &  7.639636 &  7.376617 &  7.650404 &  7.604732 &  7.709588 &  7.547223\\\\\n",
+       "\tAASDH &  8.310263 &  8.108231 &  8.250010 &  8.406444 &  7.933456 &  7.352683 &  7.916343 &  8.553360 &  8.288538 &  8.368637 & ... &  8.489828 &  8.063037 &  8.190560 &  8.260908 &  7.771576 &  8.079380 &  7.698635 &  8.459084 &  8.263091 &  7.497972\\\\\n",
+       "\tAASDHPPT &  8.124437 &  8.851917 &  8.552943 &  8.973230 &  9.231009 &  8.216023 &  7.876563 &  8.665634 &  9.779260 &  9.762024 & ... &  9.672192 &  8.798504 &  8.294225 &  8.993137 &  9.104552 &  9.047525 &  8.950250 &  8.974705 &  9.889588 &  9.268361\\\\\n",
+       "\tAASS &  7.245229 &  7.025075 &  6.572515 &  6.681910 &  6.480812 &  6.084467 &  7.230910 &  7.064489 &  6.039863 &  6.780253 & ... &  6.780253 &  5.879743 &  6.596458 &  6.703844 &  7.595345 &  6.787972 &  7.675935 &  6.780253 &  6.780253 &  6.460387\\\\\n",
+       "\tAATBC &  4.268163 &  4.204853 &  4.194662 &  4.123555 &  3.917634 &  4.247628 &  4.298790 &  3.949999 &  4.125741 &  4.125903 & ... &  4.084403 &  4.266832 &  4.533765 &  3.891895 &  4.380649 &  3.994687 &  3.849680 &  4.215241 &  4.104258 &  4.106699\\\\\n",
+       "\tAATK &  7.182520 &  6.809297 &  6.841369 &  5.735864 &  6.023089 &  6.826324 &  6.007516 &  5.364520 &  5.483834 &  5.483601 & ... &  5.374082 &  6.004154 &  6.155436 &  5.255921 &  6.362812 &  5.820448 &  7.195941 &  5.831279 &  5.005930 &  6.207210\\\\\n",
+       "\tABAT &  9.011646 &  8.346857 &  6.910624 &  8.120092 &  7.649525 &  6.673519 &  8.605274 &  8.992588 &  8.183827 &  8.654687 & ... &  8.615950 &  7.683251 &  7.816261 &  7.532742 &  7.696437 &  8.444637 &  6.987315 &  8.278001 &  8.461997 &  8.747737\\\\\n",
+       "\tABCA1 &  8.660904 &  6.962448 &  7.219826 &  6.753696 &  6.759389 &  6.234833 &  7.779428 &  7.337783 &  7.183990 &  6.458844 & ... &  5.917207 &  6.803134 &  7.178548 &  7.024548 &  7.244482 &  6.557603 &  7.200149 &  6.640673 &  6.667382 &  6.498045\\\\\n",
+       "\tABCA12 &  3.312110 &  3.045365 &  3.172266 &  3.171774 &  3.024929 &  3.025347 &  3.089437 &  3.239580 &  3.259477 &  3.192086 & ... &  2.960342 &  3.023154 &  3.222052 &  3.052671 &  3.104452 &  3.086559 &  3.033578 &  3.144300 &  3.104452 &  3.074711\\\\\n",
+       "\tABCA13 &  2.980436 &  2.920541 &  2.830552 &  2.861145 &  2.868411 &  3.212728 &  2.852709 &  2.862569 &  2.861145 &  3.024587 & ... &  2.865514 &  2.933172 &  2.978712 &  2.893349 &  2.767334 &  2.811774 &  2.711867 &  2.913963 &  2.792902 &  2.680530\\\\\n",
+       "\tABCA17P &  6.296941 &  6.249987 &  7.076512 &  6.102720 &  6.467738 &  6.167985 &  6.390769 &  6.143856 &  6.211597 &  6.129382 & ... &  6.552807 &  5.876977 &  6.227943 &  6.294908 &  6.820506 &  6.284706 &  6.719113 &  6.481484 &  6.596028 &  6.229354\\\\\n",
+       "\tABCA2 &  9.720611 &  9.685208 &  9.263451 &  9.546373 &  9.426914 & 10.039233 &  8.770538 &  9.085378 &  8.513676 &  9.328878 & ... &  9.868501 &  8.612665 &  9.154906 &  7.999982 & 11.195790 &  9.392229 & 11.099602 &  9.454239 &  8.904484 &  9.464121\\\\\n",
+       "\t... & ... & ... & ... & ... & ... & ... & ... & ... & ... & ... &  & ... & ... & ... & ... & ... & ... & ... & ... & ... & ...\\\\\n",
+       "\tZSCAN23 & 3.199741 &  3.199741 & 3.121723 & 3.227038 & 3.194199 & 3.251840 & 3.196633 & 3.159831 & 3.091098 & 3.136453 & ... & 3.142247 & 3.336370 & 3.386130 & 3.038206 &  3.311563 & 3.260079 &  3.183908 & 3.201331 & 3.146386 & 3.231355\\\\\n",
+       "\tZSCAN25 & 6.250361 &  6.435434 & 6.376971 & 6.315956 & 6.616638 & 6.454525 & 6.476860 & 5.558148 & 5.949517 & 6.306659 & ... & 5.883532 & 6.483015 & 6.675298 & 6.078541 &  6.706457 & 6.127540 &  6.383794 & 6.051888 & 6.407161 & 6.200612\\\\\n",
+       "\tZSCAN26 & 7.940282 &  7.475320 & 7.749370 & 6.991254 & 7.378298 & 6.572838 & 7.285854 & 7.308960 & 6.999520 & 6.958512 & ... & 7.046733 & 6.620292 & 7.225109 & 7.081733 &  7.672952 & 7.051281 &  7.530652 & 7.208643 & 7.337152 & 6.941345\\\\\n",
+       "\tZSCAN29 & 7.479940 &  6.935852 & 7.319632 & 7.231962 & 7.321726 & 7.710988 & 7.438547 & 6.889805 & 7.209744 & 6.845596 & ... & 6.833227 & 7.437456 & 7.094176 & 7.464834 &  7.156085 & 6.734462 &  7.661313 & 7.334187 & 6.837380 & 6.996262\\\\\n",
+       "\tZSCAN30 & 7.600206 &  7.344207 & 7.535697 & 7.326033 & 7.228941 & 6.826324 & 6.959821 & 6.888474 & 7.021952 & 7.167485 & ... & 6.969267 & 7.229835 & 7.166496 & 7.166496 &  7.609624 & 6.857509 &  7.480714 & 7.132777 & 7.057318 & 7.166496\\\\\n",
+       "\tZSCAN31 & 6.847958 &  7.070561 & 6.964819 & 7.783712 & 7.167121 & 7.067735 & 8.048066 & 7.728624 & 7.169705 & 7.198808 & ... & 7.226518 & 6.844157 & 6.665145 & 7.139850 &  7.171039 & 7.221009 &  7.486754 & 7.427672 & 7.581492 & 6.904099\\\\\n",
+       "\tZSCAN32 & 7.846250 &  7.909501 & 7.746586 & 7.644244 & 7.666471 & 7.847087 & 7.702532 & 7.223371 & 7.389134 & 7.532079 & ... & 7.018710 & 7.603674 & 7.795436 & 7.501162 &  8.086763 & 7.565455 &  8.096539 & 7.471607 & 7.529237 & 7.522139\\\\\n",
+       "\tZSCAN4 & 3.402861 &  3.622573 & 3.648335 & 3.371048 & 3.490364 & 3.381511 & 3.291837 & 3.412651 & 3.586570 & 3.207225 & ... & 3.238818 & 3.255924 & 3.795836 & 3.188029 &  3.265767 & 3.391948 &  3.387413 & 3.402861 & 3.600451 & 3.385749\\\\\n",
+       "\tZSCAN5A & 6.083614 &  5.932631 & 6.263221 & 6.158142 & 6.538515 & 6.456285 & 6.148946 & 5.710112 & 5.972602 & 6.281396 & ... & 6.003897 & 6.351425 & 6.479635 & 5.914714 &  5.812066 & 5.924787 &  6.122436 & 5.753054 & 5.935657 & 6.067586\\\\\n",
+       "\tZSCAN5A-AS1 & 3.909486 &  3.698342 & 3.896219 & 4.088790 & 3.980744 & 3.948434 & 3.933612 & 3.898512 & 3.920508 & 3.842323 & ... & 3.872679 & 3.581085 & 3.823706 & 4.039102 &  4.100178 & 4.044240 &  3.674506 & 3.843817 & 3.952396 & 3.747088\\\\\n",
+       "\tZSCAN9 & 5.525605 &  5.583303 & 5.195300 & 5.439449 & 5.257319 & 5.218523 & 5.475873 & 5.336915 & 5.318813 & 5.333589 & ... & 4.946142 & 4.964066 & 5.130515 & 5.289658 &  5.910066 & 5.185209 &  5.516115 & 5.348104 & 5.246839 & 5.410583\\\\\n",
+       "\tZSWIM1 & 7.949111 &  7.742150 & 7.899407 & 7.817575 & 7.907426 & 7.818025 & 7.884122 & 7.559377 & 7.945689 & 7.700010 & ... & 7.733184 & 7.843434 & 8.081928 & 7.867805 &  7.612775 & 7.591316 &  7.575989 & 7.760918 & 7.746171 & 7.640036\\\\\n",
+       "\tZSWIM2 & 2.967328 &  3.124250 & 3.151328 & 3.109947 & 3.218620 & 3.275645 & 3.429652 & 3.104452 & 3.112628 & 2.976702 & ... & 3.109947 & 3.136453 & 3.212808 & 3.192173 &  3.030090 & 3.082422 &  3.022550 & 3.104009 & 2.949070 & 3.270103\\\\\n",
+       "\tZSWIM3 & 6.742269 &  7.024032 & 6.899933 & 7.020320 & 7.097199 & 6.788293 & 6.770751 & 6.729924 & 6.822269 & 6.838381 & ... & 6.816686 & 6.909995 & 7.147720 & 6.809176 &  6.619993 & 6.746679 &  6.729221 & 6.783312 & 7.099124 & 6.838381\\\\\n",
+       "\tZSWIM5 & 7.639787 &  7.501874 & 7.415938 & 7.394310 & 7.153674 & 7.411413 & 7.499564 & 7.234186 & 7.425449 & 7.265663 & ... & 7.130817 & 7.514114 & 7.532158 & 7.596063 &  7.609677 & 7.478675 &  7.182700 & 7.326481 & 7.531008 & 7.460208\\\\\n",
+       "\tZSWIM6 & 9.939892 & 10.000556 & 9.409903 & 9.901621 & 9.580405 & 9.976033 & 9.710503 & 9.561646 & 9.632100 & 9.370709 & ... & 9.553541 & 9.836286 & 9.652378 & 9.992764 & 10.271927 & 9.918371 & 10.580333 & 9.875722 & 9.214551 & 9.196119\\\\\n",
+       "\tZSWIM7 & 7.751726 &  5.899633 & 7.143590 & 6.812706 & 6.915537 & 7.368805 & 7.494952 & 7.041152 & 6.353000 & 7.108073 & ... & 6.906122 & 6.966404 & 7.527723 & 6.876405 &  7.423930 & 6.769222 &  7.162255 & 7.148593 & 7.106903 & 7.305811\\\\\n",
+       "\tZSWIM8 & 5.803377 &  5.851839 & 5.980962 & 6.020280 & 5.692661 & 6.491155 & 6.944787 & 5.710112 & 6.101297 & 6.054132 & ... & 6.003461 & 6.024672 & 6.281585 & 5.988476 &  6.022633 & 6.022633 &  5.710812 & 6.447684 & 5.855048 & 5.977539\\\\\n",
+       "\tZSWIM9 & 7.421328 &  7.309810 & 7.774200 & 7.538855 & 6.895781 & 8.085814 & 8.231883 & 7.332572 & 7.739870 & 7.559992 & ... & 7.607867 & 7.764217 & 7.682392 & 7.592298 &  7.255209 & 7.534537 &  7.230919 & 7.648266 & 7.480148 & 7.484119\\\\\n",
+       "\tZUP1 & 6.765563 &  6.957004 & 7.164376 & 6.927919 & 7.466029 & 6.797921 & 6.512822 & 7.252949 & 6.980356 & 6.989788 & ... & 7.101513 & 6.785380 & 6.606286 & 6.895661 &  6.957004 & 6.880944 &  7.434483 & 6.863170 & 7.109914 & 6.967503\\\\\n",
+       "\tZW10 & 7.133824 &  7.203466 & 7.014177 & 6.982698 & 7.280296 & 6.886194 & 6.808033 & 6.768584 & 7.194065 & 7.329752 & ... & 7.185494 & 6.976970 & 6.884463 & 6.871101 &  7.688593 & 7.096756 &  7.231129 & 7.076369 & 7.364292 & 7.303738\\\\\n",
+       "\tZWILCH & 5.240396 &  5.341749 & 5.532942 & 5.025319 & 5.965352 & 5.158219 & 4.612844 & 5.255974 & 5.691886 & 6.022633 & ... & 6.109231 & 5.039536 & 4.902581 & 4.903210 &  5.445425 & 5.344416 &  5.543285 & 5.092664 & 6.262775 & 6.077524\\\\\n",
+       "\tZWINT & 6.768497 &  7.281932 & 7.322624 & 6.396535 & 7.283911 & 6.560371 & 5.598903 & 6.538515 & 6.494239 & 6.648036 & ... & 6.728861 & 6.263785 & 6.296770 & 6.317377 &  7.067840 & 6.698251 &  6.829920 & 6.601264 & 6.943232 & 6.525293\\\\\n",
+       "\tZXDA & 6.044884 &  6.234170 & 6.474266 & 6.059113 & 6.153997 & 5.479325 & 6.005482 & 5.655311 & 5.918421 & 5.557230 & ... & 5.159925 & 5.615202 & 5.861752 & 5.705740 &  6.191684 & 5.575933 &  6.140988 & 5.776211 & 5.905862 & 5.664658\\\\\n",
+       "\tZXDB & 6.272985 &  6.592185 & 7.034104 & 6.741505 & 6.998420 & 6.415183 & 5.799313 & 6.592185 & 6.838381 & 6.458138 & ... & 6.551742 & 6.330846 & 6.443835 & 6.823765 &  6.608122 & 6.719435 &  7.106164 & 6.592185 & 6.753856 & 6.581902\\\\\n",
+       "\tZXDC & 7.111151 &  7.016501 & 7.309052 & 6.932323 & 6.830365 & 7.281932 & 6.929413 & 6.234943 & 6.667134 & 6.802326 & ... & 6.579402 & 6.824148 & 7.079300 & 6.689427 &  7.306438 & 6.506272 &  7.578248 & 6.879152 & 6.913739 & 6.679034\\\\\n",
+       "\tZYG11A & 5.232249 &  5.365235 & 5.308019 & 5.250898 & 5.335680 & 5.426472 & 5.382704 & 5.104962 & 5.517993 & 5.335767 & ... & 5.481580 & 5.500762 & 5.391060 & 5.279286 &  5.310956 & 5.027772 &  4.950274 & 5.111942 & 5.220256 & 5.299239\\\\\n",
+       "\tZYG11B & 6.730424 &  7.219228 & 6.431596 & 7.695187 & 7.487052 & 6.273348 & 7.419599 & 7.464194 & 8.070276 & 8.317744 & ... & 8.312155 & 7.509729 & 7.337697 & 8.252282 &  7.231209 & 7.470370 &  7.217170 & 8.314922 & 7.892701 & 8.185472\\\\\n",
+       "\tZZEF1 & 8.120702 &  8.167427 & 8.535162 & 8.098990 & 8.337401 & 8.174365 & 7.700096 & 8.054082 & 8.138822 & 8.133361 & ... & 8.013656 & 8.138008 & 7.986931 & 7.788641 &  8.172119 & 8.251825 &  8.499680 & 7.698604 & 8.194552 & 8.159556\\\\\n",
+       "\tZZZ3 & 8.177778 &  8.095711 & 7.877595 & 8.065969 & 7.924424 & 7.625581 & 7.763806 & 7.820191 & 8.060748 & 7.582867 & ... & 7.437419 & 7.884578 & 7.715052 & 8.168349 &  8.312459 & 7.539194 &  8.521929 & 8.185983 & 7.716461 & 7.807617\\\\\n",
+       "\\end{tabular}\n"
+      ],
+      "text/markdown": [
+       "\n",
+       "A matrix: 18166 x 21 of type dbl\n",
+       "\n",
+       "| <!--/--> | GSM1176255 | GSM1176256 | GSM1176257 | GSM1176258 | GSM1176259 | GSM1176260 | GSM1176261 | GSM1176262 | GSM1176263 | GSM1176264 | ... | GSM1176266 | GSM1176267 | GSM1176268 | GSM1176269 | GSM1176270 | GSM1176271 | GSM1176272 | GSM1176273 | GSM1176274 | GSM1176275 |\n",
+       "|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|\n",
+       "| A1BG-AS1 |  5.352710 |  5.310486 |  5.665272 |  5.630609 |  5.264279 |  6.131864 |  5.640623 |  5.386624 |  5.831295 |  5.812792 | ... |  6.039418 |  5.740408 |  5.931576 |  5.650132 |  5.382606 |  5.616595 |  5.610657 |  6.022755 |  5.668250 |  5.704254 |\n",
+       "| A1CF |  4.795585 |  4.807935 |  4.929803 |  4.713392 |  5.045673 |  5.218089 |  5.004081 |  4.824109 |  4.872692 |  5.049890 | ... |  5.049183 |  5.132549 |  5.281722 |  4.879358 |  4.817109 |  5.047605 |  4.798238 |  4.839832 |  4.754876 |  4.936728 |\n",
+       "| A2M | 11.479278 | 10.497342 |  9.785809 |  9.171326 |  9.980392 | 10.758403 | 10.372794 | 10.006030 |  9.726066 |  9.957200 | ... |  8.939033 | 10.159872 | 10.763805 |  9.681134 |  9.806814 | 10.106565 | 10.083203 |  9.714768 | 10.150955 | 10.350177 |\n",
+       "| A2M-AS1 |  6.935550 |  6.793257 |  7.156812 |  6.634913 |  6.363635 |  6.791488 |  6.430080 |  6.666250 |  6.438420 |  6.304728 | ... |  6.483574 |  6.571557 |  6.923461 |  7.068161 |  6.707183 |  6.273774 |  6.898648 |  6.680282 |  6.545151 |  6.151864 |\n",
+       "| A2ML1 |  6.208239 |  5.584823 |  5.505287 |  5.965894 |  5.096385 |  5.532229 |  6.429772 |  5.652996 |  6.438971 |  6.039918 | ... |  5.843701 |  6.051888 |  6.080001 |  6.239739 |  5.528324 |  5.895021 |  5.259980 |  5.683725 |  5.660833 |  5.292557 |\n",
+       "| A4GALT |  7.229002 |  7.180768 |  7.513902 |  7.566443 |  7.054660 |  7.864845 |  8.192700 |  7.468595 |  7.476169 |  7.501033 | ... |  7.511111 |  7.598446 |  7.767497 |  7.430703 |  6.984409 |  7.495127 |  7.083588 |  7.628321 |  7.407607 |  7.481420 |\n",
+       "| A4GNT |  5.035228 |  4.785097 |  4.952519 |  5.218072 |  4.968186 |  4.821987 |  5.433437 |  4.969099 |  5.185253 |  4.876602 | ... |  4.875989 |  4.821987 |  5.320533 |  5.354527 |  5.054591 |  5.054017 |  4.906461 |  5.025499 |  4.810721 |  4.994511 |\n",
+       "| AACS |  8.201470 |  8.980021 |  9.070221 |  8.918858 |  9.142708 |  8.984893 |  8.088342 |  8.644050 |  9.266125 |  9.146684 | ... |  9.129085 |  9.231949 |  8.418083 |  9.220410 |  8.549966 |  8.987171 |  8.794645 |  8.844288 |  9.085818 |  9.181233 |\n",
+       "| AACSP1 |  3.548233 |  4.331883 |  4.102467 |  3.833781 |  3.879744 |  3.755773 |  4.187236 |  3.996955 |  3.957779 |  3.838220 | ... |  3.747050 |  3.936461 |  3.957003 |  3.901644 |  3.782266 |  3.679628 |  3.981167 |  3.966902 |  3.769766 |  3.985293 |\n",
+       "| AADAC |  4.867412 |  4.970419 |  5.128967 |  5.066386 |  5.069592 |  5.092934 |  5.079824 |  5.123239 |  5.091224 |  5.250258 | ... |  4.915415 |  5.118931 |  5.222093 |  5.210532 |  5.184718 |  5.069592 |  4.789107 |  5.065328 |  5.047868 |  5.154316 |\n",
+       "| AADAT |  6.872976 |  7.440623 |  7.586675 |  6.965607 |  7.262888 |  7.111646 |  6.729255 |  7.115992 |  6.908567 |  7.028483 | ... |  7.101008 |  7.160222 |  6.943145 |  7.160222 |  7.519034 |  6.951425 |  7.650060 |  7.103773 |  7.304019 |  6.989930 |\n",
+       "| AAGAB |  7.130276 |  7.078394 |  7.025149 |  6.891299 |  6.964322 |  6.782035 |  6.580391 |  6.867517 |  7.326018 |  7.540941 | ... |  7.342288 |  6.832960 |  6.652421 |  7.063244 |  7.029780 |  7.094582 |  5.843337 |  6.882988 |  7.618091 |  7.101377 |\n",
+       "| AAK1 |  6.878053 |  8.110100 |  8.808601 |  7.885628 |  8.843792 |  7.603272 |  6.787050 |  7.640654 |  8.601228 |  8.836744 | ... |  8.512053 |  8.235025 |  7.266030 |  8.613002 |  8.025170 |  8.865122 |  8.047384 |  8.233787 |  9.142343 |  9.020943 |\n",
+       "| AAMDC |  7.797431 |  6.869771 |  7.272886 |  7.200384 |  7.180039 |  7.386617 |  7.296426 |  7.291830 |  7.084344 |  7.085506 | ... |  7.251738 |  6.975882 |  7.421897 |  7.029575 |  7.710682 |  6.927991 |  7.736302 |  7.357308 |  6.902398 |  7.016611 |\n",
+       "| AAMP |  8.784029 |  8.542925 |  8.788936 |  8.475695 |  8.815060 |  8.466660 |  8.663665 |  8.661131 |  8.619995 |  8.952774 | ... |  8.793182 |  8.371337 |  8.346435 |  8.294783 |  8.889969 |  8.680207 |  8.887860 |  8.321668 |  9.116928 |  8.762322 |\n",
+       "| AANAT |  3.863903 |  4.346829 |  4.133816 |  3.959366 |  4.065144 |  4.288956 |  4.171600 |  3.852393 |  3.922564 |  4.137867 | ... |  4.312099 |  4.210694 |  4.129817 |  3.947461 |  4.337245 |  4.133816 |  4.056243 |  4.015712 |  4.085390 |  4.118834 |\n",
+       "| AAR2 |  7.972548 |  7.794187 |  7.987219 |  7.949047 |  7.736807 |  7.838738 |  7.826099 |  7.722029 |  7.687871 |  7.757003 | ... |  7.669757 |  7.878265 |  7.734023 |  7.842816 |  8.071806 |  7.417583 |  8.091202 |  7.599732 |  8.001770 |  7.806474 |\n",
+       "| AARS1 | 10.479690 | 10.432092 | 10.417579 | 10.322909 | 10.729068 | 10.545232 | 10.266697 | 10.446471 | 10.360088 | 10.731985 | ... | 10.633029 | 10.288472 | 10.285859 | 10.474160 | 10.596143 | 10.617278 | 10.956661 | 10.439639 | 10.980116 | 10.713152 |\n",
+       "| AARS2 |  7.626195 |  7.878897 |  7.976353 |  7.697946 |  7.689406 |  7.845849 |  7.625383 |  7.460262 |  7.584747 |  7.533378 | ... |  7.561384 |  7.574470 |  7.894660 |  7.473550 |  7.639636 |  7.376617 |  7.650404 |  7.604732 |  7.709588 |  7.547223 |\n",
+       "| AASDH |  8.310263 |  8.108231 |  8.250010 |  8.406444 |  7.933456 |  7.352683 |  7.916343 |  8.553360 |  8.288538 |  8.368637 | ... |  8.489828 |  8.063037 |  8.190560 |  8.260908 |  7.771576 |  8.079380 |  7.698635 |  8.459084 |  8.263091 |  7.497972 |\n",
+       "| AASDHPPT |  8.124437 |  8.851917 |  8.552943 |  8.973230 |  9.231009 |  8.216023 |  7.876563 |  8.665634 |  9.779260 |  9.762024 | ... |  9.672192 |  8.798504 |  8.294225 |  8.993137 |  9.104552 |  9.047525 |  8.950250 |  8.974705 |  9.889588 |  9.268361 |\n",
+       "| AASS |  7.245229 |  7.025075 |  6.572515 |  6.681910 |  6.480812 |  6.084467 |  7.230910 |  7.064489 |  6.039863 |  6.780253 | ... |  6.780253 |  5.879743 |  6.596458 |  6.703844 |  7.595345 |  6.787972 |  7.675935 |  6.780253 |  6.780253 |  6.460387 |\n",
+       "| AATBC |  4.268163 |  4.204853 |  4.194662 |  4.123555 |  3.917634 |  4.247628 |  4.298790 |  3.949999 |  4.125741 |  4.125903 | ... |  4.084403 |  4.266832 |  4.533765 |  3.891895 |  4.380649 |  3.994687 |  3.849680 |  4.215241 |  4.104258 |  4.106699 |\n",
+       "| AATK |  7.182520 |  6.809297 |  6.841369 |  5.735864 |  6.023089 |  6.826324 |  6.007516 |  5.364520 |  5.483834 |  5.483601 | ... |  5.374082 |  6.004154 |  6.155436 |  5.255921 |  6.362812 |  5.820448 |  7.195941 |  5.831279 |  5.005930 |  6.207210 |\n",
+       "| ABAT |  9.011646 |  8.346857 |  6.910624 |  8.120092 |  7.649525 |  6.673519 |  8.605274 |  8.992588 |  8.183827 |  8.654687 | ... |  8.615950 |  7.683251 |  7.816261 |  7.532742 |  7.696437 |  8.444637 |  6.987315 |  8.278001 |  8.461997 |  8.747737 |\n",
+       "| ABCA1 |  8.660904 |  6.962448 |  7.219826 |  6.753696 |  6.759389 |  6.234833 |  7.779428 |  7.337783 |  7.183990 |  6.458844 | ... |  5.917207 |  6.803134 |  7.178548 |  7.024548 |  7.244482 |  6.557603 |  7.200149 |  6.640673 |  6.667382 |  6.498045 |\n",
+       "| ABCA12 |  3.312110 |  3.045365 |  3.172266 |  3.171774 |  3.024929 |  3.025347 |  3.089437 |  3.239580 |  3.259477 |  3.192086 | ... |  2.960342 |  3.023154 |  3.222052 |  3.052671 |  3.104452 |  3.086559 |  3.033578 |  3.144300 |  3.104452 |  3.074711 |\n",
+       "| ABCA13 |  2.980436 |  2.920541 |  2.830552 |  2.861145 |  2.868411 |  3.212728 |  2.852709 |  2.862569 |  2.861145 |  3.024587 | ... |  2.865514 |  2.933172 |  2.978712 |  2.893349 |  2.767334 |  2.811774 |  2.711867 |  2.913963 |  2.792902 |  2.680530 |\n",
+       "| ABCA17P |  6.296941 |  6.249987 |  7.076512 |  6.102720 |  6.467738 |  6.167985 |  6.390769 |  6.143856 |  6.211597 |  6.129382 | ... |  6.552807 |  5.876977 |  6.227943 |  6.294908 |  6.820506 |  6.284706 |  6.719113 |  6.481484 |  6.596028 |  6.229354 |\n",
+       "| ABCA2 |  9.720611 |  9.685208 |  9.263451 |  9.546373 |  9.426914 | 10.039233 |  8.770538 |  9.085378 |  8.513676 |  9.328878 | ... |  9.868501 |  8.612665 |  9.154906 |  7.999982 | 11.195790 |  9.392229 | 11.099602 |  9.454239 |  8.904484 |  9.464121 |\n",
+       "| ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | <!----> | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... |\n",
+       "| ZSCAN23 | 3.199741 |  3.199741 | 3.121723 | 3.227038 | 3.194199 | 3.251840 | 3.196633 | 3.159831 | 3.091098 | 3.136453 | ... | 3.142247 | 3.336370 | 3.386130 | 3.038206 |  3.311563 | 3.260079 |  3.183908 | 3.201331 | 3.146386 | 3.231355 |\n",
+       "| ZSCAN25 | 6.250361 |  6.435434 | 6.376971 | 6.315956 | 6.616638 | 6.454525 | 6.476860 | 5.558148 | 5.949517 | 6.306659 | ... | 5.883532 | 6.483015 | 6.675298 | 6.078541 |  6.706457 | 6.127540 |  6.383794 | 6.051888 | 6.407161 | 6.200612 |\n",
+       "| ZSCAN26 | 7.940282 |  7.475320 | 7.749370 | 6.991254 | 7.378298 | 6.572838 | 7.285854 | 7.308960 | 6.999520 | 6.958512 | ... | 7.046733 | 6.620292 | 7.225109 | 7.081733 |  7.672952 | 7.051281 |  7.530652 | 7.208643 | 7.337152 | 6.941345 |\n",
+       "| ZSCAN29 | 7.479940 |  6.935852 | 7.319632 | 7.231962 | 7.321726 | 7.710988 | 7.438547 | 6.889805 | 7.209744 | 6.845596 | ... | 6.833227 | 7.437456 | 7.094176 | 7.464834 |  7.156085 | 6.734462 |  7.661313 | 7.334187 | 6.837380 | 6.996262 |\n",
+       "| ZSCAN30 | 7.600206 |  7.344207 | 7.535697 | 7.326033 | 7.228941 | 6.826324 | 6.959821 | 6.888474 | 7.021952 | 7.167485 | ... | 6.969267 | 7.229835 | 7.166496 | 7.166496 |  7.609624 | 6.857509 |  7.480714 | 7.132777 | 7.057318 | 7.166496 |\n",
+       "| ZSCAN31 | 6.847958 |  7.070561 | 6.964819 | 7.783712 | 7.167121 | 7.067735 | 8.048066 | 7.728624 | 7.169705 | 7.198808 | ... | 7.226518 | 6.844157 | 6.665145 | 7.139850 |  7.171039 | 7.221009 |  7.486754 | 7.427672 | 7.581492 | 6.904099 |\n",
+       "| ZSCAN32 | 7.846250 |  7.909501 | 7.746586 | 7.644244 | 7.666471 | 7.847087 | 7.702532 | 7.223371 | 7.389134 | 7.532079 | ... | 7.018710 | 7.603674 | 7.795436 | 7.501162 |  8.086763 | 7.565455 |  8.096539 | 7.471607 | 7.529237 | 7.522139 |\n",
+       "| ZSCAN4 | 3.402861 |  3.622573 | 3.648335 | 3.371048 | 3.490364 | 3.381511 | 3.291837 | 3.412651 | 3.586570 | 3.207225 | ... | 3.238818 | 3.255924 | 3.795836 | 3.188029 |  3.265767 | 3.391948 |  3.387413 | 3.402861 | 3.600451 | 3.385749 |\n",
+       "| ZSCAN5A | 6.083614 |  5.932631 | 6.263221 | 6.158142 | 6.538515 | 6.456285 | 6.148946 | 5.710112 | 5.972602 | 6.281396 | ... | 6.003897 | 6.351425 | 6.479635 | 5.914714 |  5.812066 | 5.924787 |  6.122436 | 5.753054 | 5.935657 | 6.067586 |\n",
+       "| ZSCAN5A-AS1 | 3.909486 |  3.698342 | 3.896219 | 4.088790 | 3.980744 | 3.948434 | 3.933612 | 3.898512 | 3.920508 | 3.842323 | ... | 3.872679 | 3.581085 | 3.823706 | 4.039102 |  4.100178 | 4.044240 |  3.674506 | 3.843817 | 3.952396 | 3.747088 |\n",
+       "| ZSCAN9 | 5.525605 |  5.583303 | 5.195300 | 5.439449 | 5.257319 | 5.218523 | 5.475873 | 5.336915 | 5.318813 | 5.333589 | ... | 4.946142 | 4.964066 | 5.130515 | 5.289658 |  5.910066 | 5.185209 |  5.516115 | 5.348104 | 5.246839 | 5.410583 |\n",
+       "| ZSWIM1 | 7.949111 |  7.742150 | 7.899407 | 7.817575 | 7.907426 | 7.818025 | 7.884122 | 7.559377 | 7.945689 | 7.700010 | ... | 7.733184 | 7.843434 | 8.081928 | 7.867805 |  7.612775 | 7.591316 |  7.575989 | 7.760918 | 7.746171 | 7.640036 |\n",
+       "| ZSWIM2 | 2.967328 |  3.124250 | 3.151328 | 3.109947 | 3.218620 | 3.275645 | 3.429652 | 3.104452 | 3.112628 | 2.976702 | ... | 3.109947 | 3.136453 | 3.212808 | 3.192173 |  3.030090 | 3.082422 |  3.022550 | 3.104009 | 2.949070 | 3.270103 |\n",
+       "| ZSWIM3 | 6.742269 |  7.024032 | 6.899933 | 7.020320 | 7.097199 | 6.788293 | 6.770751 | 6.729924 | 6.822269 | 6.838381 | ... | 6.816686 | 6.909995 | 7.147720 | 6.809176 |  6.619993 | 6.746679 |  6.729221 | 6.783312 | 7.099124 | 6.838381 |\n",
+       "| ZSWIM5 | 7.639787 |  7.501874 | 7.415938 | 7.394310 | 7.153674 | 7.411413 | 7.499564 | 7.234186 | 7.425449 | 7.265663 | ... | 7.130817 | 7.514114 | 7.532158 | 7.596063 |  7.609677 | 7.478675 |  7.182700 | 7.326481 | 7.531008 | 7.460208 |\n",
+       "| ZSWIM6 | 9.939892 | 10.000556 | 9.409903 | 9.901621 | 9.580405 | 9.976033 | 9.710503 | 9.561646 | 9.632100 | 9.370709 | ... | 9.553541 | 9.836286 | 9.652378 | 9.992764 | 10.271927 | 9.918371 | 10.580333 | 9.875722 | 9.214551 | 9.196119 |\n",
+       "| ZSWIM7 | 7.751726 |  5.899633 | 7.143590 | 6.812706 | 6.915537 | 7.368805 | 7.494952 | 7.041152 | 6.353000 | 7.108073 | ... | 6.906122 | 6.966404 | 7.527723 | 6.876405 |  7.423930 | 6.769222 |  7.162255 | 7.148593 | 7.106903 | 7.305811 |\n",
+       "| ZSWIM8 | 5.803377 |  5.851839 | 5.980962 | 6.020280 | 5.692661 | 6.491155 | 6.944787 | 5.710112 | 6.101297 | 6.054132 | ... | 6.003461 | 6.024672 | 6.281585 | 5.988476 |  6.022633 | 6.022633 |  5.710812 | 6.447684 | 5.855048 | 5.977539 |\n",
+       "| ZSWIM9 | 7.421328 |  7.309810 | 7.774200 | 7.538855 | 6.895781 | 8.085814 | 8.231883 | 7.332572 | 7.739870 | 7.559992 | ... | 7.607867 | 7.764217 | 7.682392 | 7.592298 |  7.255209 | 7.534537 |  7.230919 | 7.648266 | 7.480148 | 7.484119 |\n",
+       "| ZUP1 | 6.765563 |  6.957004 | 7.164376 | 6.927919 | 7.466029 | 6.797921 | 6.512822 | 7.252949 | 6.980356 | 6.989788 | ... | 7.101513 | 6.785380 | 6.606286 | 6.895661 |  6.957004 | 6.880944 |  7.434483 | 6.863170 | 7.109914 | 6.967503 |\n",
+       "| ZW10 | 7.133824 |  7.203466 | 7.014177 | 6.982698 | 7.280296 | 6.886194 | 6.808033 | 6.768584 | 7.194065 | 7.329752 | ... | 7.185494 | 6.976970 | 6.884463 | 6.871101 |  7.688593 | 7.096756 |  7.231129 | 7.076369 | 7.364292 | 7.303738 |\n",
+       "| ZWILCH | 5.240396 |  5.341749 | 5.532942 | 5.025319 | 5.965352 | 5.158219 | 4.612844 | 5.255974 | 5.691886 | 6.022633 | ... | 6.109231 | 5.039536 | 4.902581 | 4.903210 |  5.445425 | 5.344416 |  5.543285 | 5.092664 | 6.262775 | 6.077524 |\n",
+       "| ZWINT | 6.768497 |  7.281932 | 7.322624 | 6.396535 | 7.283911 | 6.560371 | 5.598903 | 6.538515 | 6.494239 | 6.648036 | ... | 6.728861 | 6.263785 | 6.296770 | 6.317377 |  7.067840 | 6.698251 |  6.829920 | 6.601264 | 6.943232 | 6.525293 |\n",
+       "| ZXDA | 6.044884 |  6.234170 | 6.474266 | 6.059113 | 6.153997 | 5.479325 | 6.005482 | 5.655311 | 5.918421 | 5.557230 | ... | 5.159925 | 5.615202 | 5.861752 | 5.705740 |  6.191684 | 5.575933 |  6.140988 | 5.776211 | 5.905862 | 5.664658 |\n",
+       "| ZXDB | 6.272985 |  6.592185 | 7.034104 | 6.741505 | 6.998420 | 6.415183 | 5.799313 | 6.592185 | 6.838381 | 6.458138 | ... | 6.551742 | 6.330846 | 6.443835 | 6.823765 |  6.608122 | 6.719435 |  7.106164 | 6.592185 | 6.753856 | 6.581902 |\n",
+       "| ZXDC | 7.111151 |  7.016501 | 7.309052 | 6.932323 | 6.830365 | 7.281932 | 6.929413 | 6.234943 | 6.667134 | 6.802326 | ... | 6.579402 | 6.824148 | 7.079300 | 6.689427 |  7.306438 | 6.506272 |  7.578248 | 6.879152 | 6.913739 | 6.679034 |\n",
+       "| ZYG11A | 5.232249 |  5.365235 | 5.308019 | 5.250898 | 5.335680 | 5.426472 | 5.382704 | 5.104962 | 5.517993 | 5.335767 | ... | 5.481580 | 5.500762 | 5.391060 | 5.279286 |  5.310956 | 5.027772 |  4.950274 | 5.111942 | 5.220256 | 5.299239 |\n",
+       "| ZYG11B | 6.730424 |  7.219228 | 6.431596 | 7.695187 | 7.487052 | 6.273348 | 7.419599 | 7.464194 | 8.070276 | 8.317744 | ... | 8.312155 | 7.509729 | 7.337697 | 8.252282 |  7.231209 | 7.470370 |  7.217170 | 8.314922 | 7.892701 | 8.185472 |\n",
+       "| ZZEF1 | 8.120702 |  8.167427 | 8.535162 | 8.098990 | 8.337401 | 8.174365 | 7.700096 | 8.054082 | 8.138822 | 8.133361 | ... | 8.013656 | 8.138008 | 7.986931 | 7.788641 |  8.172119 | 8.251825 |  8.499680 | 7.698604 | 8.194552 | 8.159556 |\n",
+       "| ZZZ3 | 8.177778 |  8.095711 | 7.877595 | 8.065969 | 7.924424 | 7.625581 | 7.763806 | 7.820191 | 8.060748 | 7.582867 | ... | 7.437419 | 7.884578 | 7.715052 | 8.168349 |  8.312459 | 7.539194 |  8.521929 | 8.185983 | 7.716461 | 7.807617 |\n",
+       "\n"
+      ],
+      "text/plain": [
+       "            GSM1176255 GSM1176256 GSM1176257 GSM1176258 GSM1176259 GSM1176260\n",
+       "A1BG-AS1     5.352710   5.310486   5.665272   5.630609   5.264279   6.131864 \n",
+       "A1CF         4.795585   4.807935   4.929803   4.713392   5.045673   5.218089 \n",
+       "A2M         11.479278  10.497342   9.785809   9.171326   9.980392  10.758403 \n",
+       "A2M-AS1      6.935550   6.793257   7.156812   6.634913   6.363635   6.791488 \n",
+       "A2ML1        6.208239   5.584823   5.505287   5.965894   5.096385   5.532229 \n",
+       "A4GALT       7.229002   7.180768   7.513902   7.566443   7.054660   7.864845 \n",
+       "A4GNT        5.035228   4.785097   4.952519   5.218072   4.968186   4.821987 \n",
+       "AACS         8.201470   8.980021   9.070221   8.918858   9.142708   8.984893 \n",
+       "AACSP1       3.548233   4.331883   4.102467   3.833781   3.879744   3.755773 \n",
+       "AADAC        4.867412   4.970419   5.128967   5.066386   5.069592   5.092934 \n",
+       "AADAT        6.872976   7.440623   7.586675   6.965607   7.262888   7.111646 \n",
+       "AAGAB        7.130276   7.078394   7.025149   6.891299   6.964322   6.782035 \n",
+       "AAK1         6.878053   8.110100   8.808601   7.885628   8.843792   7.603272 \n",
+       "AAMDC        7.797431   6.869771   7.272886   7.200384   7.180039   7.386617 \n",
+       "AAMP         8.784029   8.542925   8.788936   8.475695   8.815060   8.466660 \n",
+       "AANAT        3.863903   4.346829   4.133816   3.959366   4.065144   4.288956 \n",
+       "AAR2         7.972548   7.794187   7.987219   7.949047   7.736807   7.838738 \n",
+       "AARS1       10.479690  10.432092  10.417579  10.322909  10.729068  10.545232 \n",
+       "AARS2        7.626195   7.878897   7.976353   7.697946   7.689406   7.845849 \n",
+       "AASDH        8.310263   8.108231   8.250010   8.406444   7.933456   7.352683 \n",
+       "AASDHPPT     8.124437   8.851917   8.552943   8.973230   9.231009   8.216023 \n",
+       "AASS         7.245229   7.025075   6.572515   6.681910   6.480812   6.084467 \n",
+       "AATBC        4.268163   4.204853   4.194662   4.123555   3.917634   4.247628 \n",
+       "AATK         7.182520   6.809297   6.841369   5.735864   6.023089   6.826324 \n",
+       "ABAT         9.011646   8.346857   6.910624   8.120092   7.649525   6.673519 \n",
+       "ABCA1        8.660904   6.962448   7.219826   6.753696   6.759389   6.234833 \n",
+       "ABCA12       3.312110   3.045365   3.172266   3.171774   3.024929   3.025347 \n",
+       "ABCA13       2.980436   2.920541   2.830552   2.861145   2.868411   3.212728 \n",
+       "ABCA17P      6.296941   6.249987   7.076512   6.102720   6.467738   6.167985 \n",
+       "ABCA2        9.720611   9.685208   9.263451   9.546373   9.426914  10.039233 \n",
+       "...         ...        ...        ...        ...        ...        ...       \n",
+       "ZSCAN23     3.199741    3.199741  3.121723   3.227038   3.194199   3.251840  \n",
+       "ZSCAN25     6.250361    6.435434  6.376971   6.315956   6.616638   6.454525  \n",
+       "ZSCAN26     7.940282    7.475320  7.749370   6.991254   7.378298   6.572838  \n",
+       "ZSCAN29     7.479940    6.935852  7.319632   7.231962   7.321726   7.710988  \n",
+       "ZSCAN30     7.600206    7.344207  7.535697   7.326033   7.228941   6.826324  \n",
+       "ZSCAN31     6.847958    7.070561  6.964819   7.783712   7.167121   7.067735  \n",
+       "ZSCAN32     7.846250    7.909501  7.746586   7.644244   7.666471   7.847087  \n",
+       "ZSCAN4      3.402861    3.622573  3.648335   3.371048   3.490364   3.381511  \n",
+       "ZSCAN5A     6.083614    5.932631  6.263221   6.158142   6.538515   6.456285  \n",
+       "ZSCAN5A-AS1 3.909486    3.698342  3.896219   4.088790   3.980744   3.948434  \n",
+       "ZSCAN9      5.525605    5.583303  5.195300   5.439449   5.257319   5.218523  \n",
+       "ZSWIM1      7.949111    7.742150  7.899407   7.817575   7.907426   7.818025  \n",
+       "ZSWIM2      2.967328    3.124250  3.151328   3.109947   3.218620   3.275645  \n",
+       "ZSWIM3      6.742269    7.024032  6.899933   7.020320   7.097199   6.788293  \n",
+       "ZSWIM5      7.639787    7.501874  7.415938   7.394310   7.153674   7.411413  \n",
+       "ZSWIM6      9.939892   10.000556  9.409903   9.901621   9.580405   9.976033  \n",
+       "ZSWIM7      7.751726    5.899633  7.143590   6.812706   6.915537   7.368805  \n",
+       "ZSWIM8      5.803377    5.851839  5.980962   6.020280   5.692661   6.491155  \n",
+       "ZSWIM9      7.421328    7.309810  7.774200   7.538855   6.895781   8.085814  \n",
+       "ZUP1        6.765563    6.957004  7.164376   6.927919   7.466029   6.797921  \n",
+       "ZW10        7.133824    7.203466  7.014177   6.982698   7.280296   6.886194  \n",
+       "ZWILCH      5.240396    5.341749  5.532942   5.025319   5.965352   5.158219  \n",
+       "ZWINT       6.768497    7.281932  7.322624   6.396535   7.283911   6.560371  \n",
+       "ZXDA        6.044884    6.234170  6.474266   6.059113   6.153997   5.479325  \n",
+       "ZXDB        6.272985    6.592185  7.034104   6.741505   6.998420   6.415183  \n",
+       "ZXDC        7.111151    7.016501  7.309052   6.932323   6.830365   7.281932  \n",
+       "ZYG11A      5.232249    5.365235  5.308019   5.250898   5.335680   5.426472  \n",
+       "ZYG11B      6.730424    7.219228  6.431596   7.695187   7.487052   6.273348  \n",
+       "ZZEF1       8.120702    8.167427  8.535162   8.098990   8.337401   8.174365  \n",
+       "ZZZ3        8.177778    8.095711  7.877595   8.065969   7.924424   7.625581  \n",
+       "            GSM1176261 GSM1176262 GSM1176263 GSM1176264 ... GSM1176266\n",
+       "A1BG-AS1     5.640623   5.386624   5.831295   5.812792  ...  6.039418 \n",
+       "A1CF         5.004081   4.824109   4.872692   5.049890  ...  5.049183 \n",
+       "A2M         10.372794  10.006030   9.726066   9.957200  ...  8.939033 \n",
+       "A2M-AS1      6.430080   6.666250   6.438420   6.304728  ...  6.483574 \n",
+       "A2ML1        6.429772   5.652996   6.438971   6.039918  ...  5.843701 \n",
+       "A4GALT       8.192700   7.468595   7.476169   7.501033  ...  7.511111 \n",
+       "A4GNT        5.433437   4.969099   5.185253   4.876602  ...  4.875989 \n",
+       "AACS         8.088342   8.644050   9.266125   9.146684  ...  9.129085 \n",
+       "AACSP1       4.187236   3.996955   3.957779   3.838220  ...  3.747050 \n",
+       "AADAC        5.079824   5.123239   5.091224   5.250258  ...  4.915415 \n",
+       "AADAT        6.729255   7.115992   6.908567   7.028483  ...  7.101008 \n",
+       "AAGAB        6.580391   6.867517   7.326018   7.540941  ...  7.342288 \n",
+       "AAK1         6.787050   7.640654   8.601228   8.836744  ...  8.512053 \n",
+       "AAMDC        7.296426   7.291830   7.084344   7.085506  ...  7.251738 \n",
+       "AAMP         8.663665   8.661131   8.619995   8.952774  ...  8.793182 \n",
+       "AANAT        4.171600   3.852393   3.922564   4.137867  ...  4.312099 \n",
+       "AAR2         7.826099   7.722029   7.687871   7.757003  ...  7.669757 \n",
+       "AARS1       10.266697  10.446471  10.360088  10.731985  ... 10.633029 \n",
+       "AARS2        7.625383   7.460262   7.584747   7.533378  ...  7.561384 \n",
+       "AASDH        7.916343   8.553360   8.288538   8.368637  ...  8.489828 \n",
+       "AASDHPPT     7.876563   8.665634   9.779260   9.762024  ...  9.672192 \n",
+       "AASS         7.230910   7.064489   6.039863   6.780253  ...  6.780253 \n",
+       "AATBC        4.298790   3.949999   4.125741   4.125903  ...  4.084403 \n",
+       "AATK         6.007516   5.364520   5.483834   5.483601  ...  5.374082 \n",
+       "ABAT         8.605274   8.992588   8.183827   8.654687  ...  8.615950 \n",
+       "ABCA1        7.779428   7.337783   7.183990   6.458844  ...  5.917207 \n",
+       "ABCA12       3.089437   3.239580   3.259477   3.192086  ...  2.960342 \n",
+       "ABCA13       2.852709   2.862569   2.861145   3.024587  ...  2.865514 \n",
+       "ABCA17P      6.390769   6.143856   6.211597   6.129382  ...  6.552807 \n",
+       "ABCA2        8.770538   9.085378   8.513676   9.328878  ...  9.868501 \n",
+       "...         ...        ...        ...        ...            ...       \n",
+       "ZSCAN23     3.196633   3.159831   3.091098   3.136453   ... 3.142247  \n",
+       "ZSCAN25     6.476860   5.558148   5.949517   6.306659   ... 5.883532  \n",
+       "ZSCAN26     7.285854   7.308960   6.999520   6.958512   ... 7.046733  \n",
+       "ZSCAN29     7.438547   6.889805   7.209744   6.845596   ... 6.833227  \n",
+       "ZSCAN30     6.959821   6.888474   7.021952   7.167485   ... 6.969267  \n",
+       "ZSCAN31     8.048066   7.728624   7.169705   7.198808   ... 7.226518  \n",
+       "ZSCAN32     7.702532   7.223371   7.389134   7.532079   ... 7.018710  \n",
+       "ZSCAN4      3.291837   3.412651   3.586570   3.207225   ... 3.238818  \n",
+       "ZSCAN5A     6.148946   5.710112   5.972602   6.281396   ... 6.003897  \n",
+       "ZSCAN5A-AS1 3.933612   3.898512   3.920508   3.842323   ... 3.872679  \n",
+       "ZSCAN9      5.475873   5.336915   5.318813   5.333589   ... 4.946142  \n",
+       "ZSWIM1      7.884122   7.559377   7.945689   7.700010   ... 7.733184  \n",
+       "ZSWIM2      3.429652   3.104452   3.112628   2.976702   ... 3.109947  \n",
+       "ZSWIM3      6.770751   6.729924   6.822269   6.838381   ... 6.816686  \n",
+       "ZSWIM5      7.499564   7.234186   7.425449   7.265663   ... 7.130817  \n",
+       "ZSWIM6      9.710503   9.561646   9.632100   9.370709   ... 9.553541  \n",
+       "ZSWIM7      7.494952   7.041152   6.353000   7.108073   ... 6.906122  \n",
+       "ZSWIM8      6.944787   5.710112   6.101297   6.054132   ... 6.003461  \n",
+       "ZSWIM9      8.231883   7.332572   7.739870   7.559992   ... 7.607867  \n",
+       "ZUP1        6.512822   7.252949   6.980356   6.989788   ... 7.101513  \n",
+       "ZW10        6.808033   6.768584   7.194065   7.329752   ... 7.185494  \n",
+       "ZWILCH      4.612844   5.255974   5.691886   6.022633   ... 6.109231  \n",
+       "ZWINT       5.598903   6.538515   6.494239   6.648036   ... 6.728861  \n",
+       "ZXDA        6.005482   5.655311   5.918421   5.557230   ... 5.159925  \n",
+       "ZXDB        5.799313   6.592185   6.838381   6.458138   ... 6.551742  \n",
+       "ZXDC        6.929413   6.234943   6.667134   6.802326   ... 6.579402  \n",
+       "ZYG11A      5.382704   5.104962   5.517993   5.335767   ... 5.481580  \n",
+       "ZYG11B      7.419599   7.464194   8.070276   8.317744   ... 8.312155  \n",
+       "ZZEF1       7.700096   8.054082   8.138822   8.133361   ... 8.013656  \n",
+       "ZZZ3        7.763806   7.820191   8.060748   7.582867   ... 7.437419  \n",
+       "            GSM1176267 GSM1176268 GSM1176269 GSM1176270 GSM1176271 GSM1176272\n",
+       "A1BG-AS1     5.740408   5.931576   5.650132   5.382606   5.616595   5.610657 \n",
+       "A1CF         5.132549   5.281722   4.879358   4.817109   5.047605   4.798238 \n",
+       "A2M         10.159872  10.763805   9.681134   9.806814  10.106565  10.083203 \n",
+       "A2M-AS1      6.571557   6.923461   7.068161   6.707183   6.273774   6.898648 \n",
+       "A2ML1        6.051888   6.080001   6.239739   5.528324   5.895021   5.259980 \n",
+       "A4GALT       7.598446   7.767497   7.430703   6.984409   7.495127   7.083588 \n",
+       "A4GNT        4.821987   5.320533   5.354527   5.054591   5.054017   4.906461 \n",
+       "AACS         9.231949   8.418083   9.220410   8.549966   8.987171   8.794645 \n",
+       "AACSP1       3.936461   3.957003   3.901644   3.782266   3.679628   3.981167 \n",
+       "AADAC        5.118931   5.222093   5.210532   5.184718   5.069592   4.789107 \n",
+       "AADAT        7.160222   6.943145   7.160222   7.519034   6.951425   7.650060 \n",
+       "AAGAB        6.832960   6.652421   7.063244   7.029780   7.094582   5.843337 \n",
+       "AAK1         8.235025   7.266030   8.613002   8.025170   8.865122   8.047384 \n",
+       "AAMDC        6.975882   7.421897   7.029575   7.710682   6.927991   7.736302 \n",
+       "AAMP         8.371337   8.346435   8.294783   8.889969   8.680207   8.887860 \n",
+       "AANAT        4.210694   4.129817   3.947461   4.337245   4.133816   4.056243 \n",
+       "AAR2         7.878265   7.734023   7.842816   8.071806   7.417583   8.091202 \n",
+       "AARS1       10.288472  10.285859  10.474160  10.596143  10.617278  10.956661 \n",
+       "AARS2        7.574470   7.894660   7.473550   7.639636   7.376617   7.650404 \n",
+       "AASDH        8.063037   8.190560   8.260908   7.771576   8.079380   7.698635 \n",
+       "AASDHPPT     8.798504   8.294225   8.993137   9.104552   9.047525   8.950250 \n",
+       "AASS         5.879743   6.596458   6.703844   7.595345   6.787972   7.675935 \n",
+       "AATBC        4.266832   4.533765   3.891895   4.380649   3.994687   3.849680 \n",
+       "AATK         6.004154   6.155436   5.255921   6.362812   5.820448   7.195941 \n",
+       "ABAT         7.683251   7.816261   7.532742   7.696437   8.444637   6.987315 \n",
+       "ABCA1        6.803134   7.178548   7.024548   7.244482   6.557603   7.200149 \n",
+       "ABCA12       3.023154   3.222052   3.052671   3.104452   3.086559   3.033578 \n",
+       "ABCA13       2.933172   2.978712   2.893349   2.767334   2.811774   2.711867 \n",
+       "ABCA17P      5.876977   6.227943   6.294908   6.820506   6.284706   6.719113 \n",
+       "ABCA2        8.612665   9.154906   7.999982  11.195790   9.392229  11.099602 \n",
+       "...         ...        ...        ...        ...        ...        ...       \n",
+       "ZSCAN23     3.336370   3.386130   3.038206    3.311563  3.260079    3.183908 \n",
+       "ZSCAN25     6.483015   6.675298   6.078541    6.706457  6.127540    6.383794 \n",
+       "ZSCAN26     6.620292   7.225109   7.081733    7.672952  7.051281    7.530652 \n",
+       "ZSCAN29     7.437456   7.094176   7.464834    7.156085  6.734462    7.661313 \n",
+       "ZSCAN30     7.229835   7.166496   7.166496    7.609624  6.857509    7.480714 \n",
+       "ZSCAN31     6.844157   6.665145   7.139850    7.171039  7.221009    7.486754 \n",
+       "ZSCAN32     7.603674   7.795436   7.501162    8.086763  7.565455    8.096539 \n",
+       "ZSCAN4      3.255924   3.795836   3.188029    3.265767  3.391948    3.387413 \n",
+       "ZSCAN5A     6.351425   6.479635   5.914714    5.812066  5.924787    6.122436 \n",
+       "ZSCAN5A-AS1 3.581085   3.823706   4.039102    4.100178  4.044240    3.674506 \n",
+       "ZSCAN9      4.964066   5.130515   5.289658    5.910066  5.185209    5.516115 \n",
+       "ZSWIM1      7.843434   8.081928   7.867805    7.612775  7.591316    7.575989 \n",
+       "ZSWIM2      3.136453   3.212808   3.192173    3.030090  3.082422    3.022550 \n",
+       "ZSWIM3      6.909995   7.147720   6.809176    6.619993  6.746679    6.729221 \n",
+       "ZSWIM5      7.514114   7.532158   7.596063    7.609677  7.478675    7.182700 \n",
+       "ZSWIM6      9.836286   9.652378   9.992764   10.271927  9.918371   10.580333 \n",
+       "ZSWIM7      6.966404   7.527723   6.876405    7.423930  6.769222    7.162255 \n",
+       "ZSWIM8      6.024672   6.281585   5.988476    6.022633  6.022633    5.710812 \n",
+       "ZSWIM9      7.764217   7.682392   7.592298    7.255209  7.534537    7.230919 \n",
+       "ZUP1        6.785380   6.606286   6.895661    6.957004  6.880944    7.434483 \n",
+       "ZW10        6.976970   6.884463   6.871101    7.688593  7.096756    7.231129 \n",
+       "ZWILCH      5.039536   4.902581   4.903210    5.445425  5.344416    5.543285 \n",
+       "ZWINT       6.263785   6.296770   6.317377    7.067840  6.698251    6.829920 \n",
+       "ZXDA        5.615202   5.861752   5.705740    6.191684  5.575933    6.140988 \n",
+       "ZXDB        6.330846   6.443835   6.823765    6.608122  6.719435    7.106164 \n",
+       "ZXDC        6.824148   7.079300   6.689427    7.306438  6.506272    7.578248 \n",
+       "ZYG11A      5.500762   5.391060   5.279286    5.310956  5.027772    4.950274 \n",
+       "ZYG11B      7.509729   7.337697   8.252282    7.231209  7.470370    7.217170 \n",
+       "ZZEF1       8.138008   7.986931   7.788641    8.172119  8.251825    8.499680 \n",
+       "ZZZ3        7.884578   7.715052   8.168349    8.312459  7.539194    8.521929 \n",
+       "            GSM1176273 GSM1176274 GSM1176275\n",
+       "A1BG-AS1     6.022755   5.668250   5.704254 \n",
+       "A1CF         4.839832   4.754876   4.936728 \n",
+       "A2M          9.714768  10.150955  10.350177 \n",
+       "A2M-AS1      6.680282   6.545151   6.151864 \n",
+       "A2ML1        5.683725   5.660833   5.292557 \n",
+       "A4GALT       7.628321   7.407607   7.481420 \n",
+       "A4GNT        5.025499   4.810721   4.994511 \n",
+       "AACS         8.844288   9.085818   9.181233 \n",
+       "AACSP1       3.966902   3.769766   3.985293 \n",
+       "AADAC        5.065328   5.047868   5.154316 \n",
+       "AADAT        7.103773   7.304019   6.989930 \n",
+       "AAGAB        6.882988   7.618091   7.101377 \n",
+       "AAK1         8.233787   9.142343   9.020943 \n",
+       "AAMDC        7.357308   6.902398   7.016611 \n",
+       "AAMP         8.321668   9.116928   8.762322 \n",
+       "AANAT        4.015712   4.085390   4.118834 \n",
+       "AAR2         7.599732   8.001770   7.806474 \n",
+       "AARS1       10.439639  10.980116  10.713152 \n",
+       "AARS2        7.604732   7.709588   7.547223 \n",
+       "AASDH        8.459084   8.263091   7.497972 \n",
+       "AASDHPPT     8.974705   9.889588   9.268361 \n",
+       "AASS         6.780253   6.780253   6.460387 \n",
+       "AATBC        4.215241   4.104258   4.106699 \n",
+       "AATK         5.831279   5.005930   6.207210 \n",
+       "ABAT         8.278001   8.461997   8.747737 \n",
+       "ABCA1        6.640673   6.667382   6.498045 \n",
+       "ABCA12       3.144300   3.104452   3.074711 \n",
+       "ABCA13       2.913963   2.792902   2.680530 \n",
+       "ABCA17P      6.481484   6.596028   6.229354 \n",
+       "ABCA2        9.454239   8.904484   9.464121 \n",
+       "...         ...        ...        ...       \n",
+       "ZSCAN23     3.201331   3.146386   3.231355  \n",
+       "ZSCAN25     6.051888   6.407161   6.200612  \n",
+       "ZSCAN26     7.208643   7.337152   6.941345  \n",
+       "ZSCAN29     7.334187   6.837380   6.996262  \n",
+       "ZSCAN30     7.132777   7.057318   7.166496  \n",
+       "ZSCAN31     7.427672   7.581492   6.904099  \n",
+       "ZSCAN32     7.471607   7.529237   7.522139  \n",
+       "ZSCAN4      3.402861   3.600451   3.385749  \n",
+       "ZSCAN5A     5.753054   5.935657   6.067586  \n",
+       "ZSCAN5A-AS1 3.843817   3.952396   3.747088  \n",
+       "ZSCAN9      5.348104   5.246839   5.410583  \n",
+       "ZSWIM1      7.760918   7.746171   7.640036  \n",
+       "ZSWIM2      3.104009   2.949070   3.270103  \n",
+       "ZSWIM3      6.783312   7.099124   6.838381  \n",
+       "ZSWIM5      7.326481   7.531008   7.460208  \n",
+       "ZSWIM6      9.875722   9.214551   9.196119  \n",
+       "ZSWIM7      7.148593   7.106903   7.305811  \n",
+       "ZSWIM8      6.447684   5.855048   5.977539  \n",
+       "ZSWIM9      7.648266   7.480148   7.484119  \n",
+       "ZUP1        6.863170   7.109914   6.967503  \n",
+       "ZW10        7.076369   7.364292   7.303738  \n",
+       "ZWILCH      5.092664   6.262775   6.077524  \n",
+       "ZWINT       6.601264   6.943232   6.525293  \n",
+       "ZXDA        5.776211   5.905862   5.664658  \n",
+       "ZXDB        6.592185   6.753856   6.581902  \n",
+       "ZXDC        6.879152   6.913739   6.679034  \n",
+       "ZYG11A      5.111942   5.220256   5.299239  \n",
+       "ZYG11B      8.314922   7.892701   8.185472  \n",
+       "ZZEF1       7.698604   8.194552   8.159556  \n",
+       "ZZZ3        8.185983   7.716461   7.807617  "
+      ]
+     },
+     "metadata": {},
+     "output_type": "display_data"
+    }
+   ],
+   "source": [
+    "CR$datETcollapsed"
+   ]
+  },
+  {
+   "cell_type": "code",
+   "execution_count": 55,
+   "metadata": {
+    "vscode": {
+     "languageId": "r"
+    }
+   },
+   "outputs": [],
+   "source": [
+    "# normalized gene level expressions\n",
+    "write.table(CR$datETcollapsed, file = paste0(\"AD-GSE48350\", \".RMA.maxRowVariance.log2exprs.tsv\"), sep = \"\\t\")"
+   ]
+  }
+ ],
+ "metadata": {
+  "kernelspec": {
+   "display_name": "R",
+   "language": "R",
+   "name": "ir"
+  },
+  "language_info": {
+   "codemirror_mode": "r",
+   "file_extension": ".r",
+   "mimetype": "text/x-r-source",
+   "name": "R",
+   "pygments_lexer": "r",
+   "version": "4.1.0"
+  }
+ },
+ "nbformat": 4,
+ "nbformat_minor": 2
+}
diff --git a/preprocessing-of-data/AD-GSE48350.RMA.maxRowVariance.log2exprs.tsv b/preprocessing-of-data/AD-GSE48350.RMA.maxRowVariance.log2exprs.tsv
new file mode 100644
index 0000000..e5deda3
--- /dev/null
+++ b/preprocessing-of-data/AD-GSE48350.RMA.maxRowVariance.log2exprs.tsv
@@ -0,0 +1,18167 @@
+"GSM1176255"	"GSM1176256"	"GSM1176257"	"GSM1176258"	"GSM1176259"	"GSM1176260"	"GSM1176261"	"GSM1176262"	"GSM1176263"	"GSM1176264"	"GSM1176265"	"GSM1176266"	"GSM1176267"	"GSM1176268"	"GSM1176269"	"GSM1176270"	"GSM1176271"	"GSM1176272"	"GSM1176273"	"GSM1176274"	"GSM1176275"
+"A1BG-AS1"	5.35271011601087	5.31048580312236	5.66527197731348	5.63060940242393	5.26427929001776	6.13186379700965	5.64062277618062	5.38662364208485	5.83129532939726	5.81279231660997	5.43164288436898	6.03941758520597	5.74040772499344	5.93157573662361	5.65013175146635	5.38260640781572	5.61659493948284	5.61065743772847	6.02275454361382	5.66825021286145	5.70425368937524
+"A1CF"	4.79558469357895	4.80793477563014	4.9298031953012	4.71339195066888	5.04567258466027	5.21808947540515	5.00408064812451	4.82410900131389	4.87269202133473	5.0498904385735	4.47086989859808	5.04918287706539	5.13254939416289	5.28172234130511	4.87935795995485	4.81710940048233	5.04760514887188	4.79823755999897	4.83983196312899	4.75487566511653	4.9367278553296
+"A2M"	11.4792781210025	10.497341537248	9.78580859038054	9.17132636322735	9.98039238963694	10.75840288579	10.3727941143131	10.0060296448886	9.72606635037678	9.95719958423223	10.6666282129169	8.93903307038722	10.1598717813105	10.7638051613575	9.68113412504849	9.80681392799806	10.1065651046484	10.0832033681668	9.71476765575012	10.1509550404351	10.3501765727207
+"A2M-AS1"	6.93555046856707	6.7932570645231	7.1568124650712	6.63491289334204	6.36363544935174	6.79148843847223	6.43008015880987	6.66625000402392	6.43841971724858	6.30472807655574	6.85599018703134	6.48357417009112	6.57155733975712	6.92346107059939	7.06816140499412	6.70718313550708	6.27377358068911	6.89864822629326	6.68028218197097	6.54515100452522	6.15186442930145
+"A2ML1"	6.20823873239784	5.5848229315028	5.50528692233858	5.96589393035559	5.09638535781611	5.53222916490259	6.42977215075471	5.65299559928526	6.4389707459192	6.03991804737594	5.67593138489352	5.8437010514328	6.0518882389905	6.08000070869317	6.23973920358701	5.52832449933149	5.89502112910415	5.25997952017332	5.68372548594654	5.6608334868855	5.29255745674315
+"A4GALT"	7.22900197697187	7.18076827022625	7.51390226776091	7.56644256157481	7.05466025242381	7.86484542883041	8.19269963130664	7.46859477103887	7.47616889260623	7.50103282078558	7.36117232466818	7.51111071041014	7.5984460032523	7.76749714817309	7.43070281395355	6.98440910314511	7.49512690732499	7.0835884871095	7.62832121416934	7.40760718627167	7.48142030827635
+"A4GNT"	5.03522791327168	4.78509650839068	4.95251895370453	5.21807191431801	4.96818647878176	4.8219866447674	5.43343726369294	4.96909933408298	5.18525275347055	4.87660171787453	4.7008618824738	4.87598852855677	4.8219866447674	5.32053272622342	5.35452744491231	5.05459146235818	5.05401652157098	4.90646112223635	5.02549910065969	4.81072135016832	4.99451070790126
+"AACS"	8.20146963190803	8.98002100711031	9.07022085374539	8.91885812249309	9.14270849651979	8.98489253554893	8.08834233630875	8.64405035724351	9.2661249856353	9.14668393082641	8.56103326695062	9.1290851166123	9.23194903505769	8.41808260266483	9.22041042808134	8.54996618913533	8.9871711665826	8.79464463956266	8.8442876488679	9.0858182902995	9.18123262194413
+"AACSP1"	3.54823293856956	4.33188251003414	4.10246670667321	3.83378112808658	3.87974393042908	3.75577345349829	4.18723645869306	3.9969553068803	3.95777888067322	3.83822027041015	3.883009174362	3.74705016859199	3.93646097841428	3.95700348201457	3.90164376132203	3.78226643071299	3.67962792998701	3.98116682650014	3.96690202539222	3.76976585605798	3.98529328039523
+"AADAC"	4.86741243991572	4.9704185694965	5.12896709338085	5.06638576258987	5.06959211468852	5.09293372613656	5.07982363199698	5.12323870800121	5.09122390903668	5.25025811315137	5.02910116212264	4.91541530958318	5.11893123060207	5.22209266910451	5.21053199551705	5.18471768850849	5.06959211468852	4.7891066493584	5.06532773006654	5.04786762910294	5.15431641738878
+"AADAT"	6.87297620686564	7.44062338716213	7.58667475834371	6.96560682691066	7.2628880717677	7.11164620642768	6.72925480110632	7.1159918923854	6.90856702807903	7.02848264979762	7.4757830037513	7.10100770844843	7.16022244103707	6.94314464308857	7.16022244103707	7.51903400604888	6.95142455491167	7.65005985600656	7.10377258249106	7.30401900497076	6.98992955213765
+"AAGAB"	7.13027559381059	7.07839424321489	7.02514914397763	6.89129870054664	6.96432202932344	6.78203460759129	6.58039060440497	6.86751731837794	7.32601828915034	7.54094091418213	6.86358161852076	7.34228800363162	6.83296022904631	6.65242124181952	7.06324360131092	7.02978016477746	7.09458216397847	5.84333670849618	6.88298827069939	7.61809092269869	7.10137729488363
+"AAK1"	6.87805292457172	8.11009952377401	8.80860086205893	7.88562845076064	8.84379154830428	7.60327245716287	6.78704958814415	7.64065402159943	8.60122787841327	8.83674409158477	7.24142368659593	8.51205291454292	8.23502494883883	7.26602994575599	8.61300189632719	8.02516951106101	8.86512169730012	8.04738388250522	8.23378676160548	9.14234326619541	9.02094312855841
+"AAMDC"	7.79743066144971	6.8697712050546	7.27288575169556	7.20038396931415	7.18003908187215	7.386616934275	7.2964261357508	7.29182999818188	7.08434390690508	7.08550581634435	7.57999054424517	7.25173786278749	6.97588223791718	7.4218970688282	7.02957454442219	7.71068188974431	6.92799149083855	7.73630236949374	7.35730775656717	6.90239781535616	7.01661116399222
+"AAMP"	8.78402866889457	8.54292533947943	8.78893630531389	8.47569524855724	8.81505972605857	8.46665983139009	8.66366457128558	8.66113089219431	8.61999548128193	8.95277371782869	8.71961135384801	8.79318224704141	8.37133657613642	8.34643531083573	8.29478315146399	8.88996891334519	8.680207351693	8.88785974686159	8.3216677056167	9.11692763035527	8.76232213639648
+"AANAT"	3.86390277197925	4.34682896596222	4.1338155390393	3.95936646945639	4.06514424378975	4.2889561675285	4.17159961691158	3.85239334936516	3.92256445276386	4.13786716435179	4.3487859408595	4.31209882826844	4.2106938320888	4.12981651342373	3.94746062951183	4.33724506259875	4.1338155390393	4.05624309436485	4.01571242466246	4.08539045234932	4.1188342745062
+"AAR2"	7.97254839054341	7.79418743950165	7.98721923196933	7.94904696059859	7.73680668924416	7.83873817789357	7.8260994301414	7.72202933140391	7.68787061991859	7.75700262207565	7.83346894451676	7.66975653785608	7.87826463945987	7.73402290424099	7.84281591012685	8.07180600688991	7.41758264864669	8.09120155874146	7.59973173728004	8.00177048095337	7.80647396035203
+"AARS1"	10.4796902224095	10.4320924490025	10.4175786508559	10.322908775056	10.7290678647646	10.5452323753145	10.2666967626886	10.4464713881763	10.3600876313984	10.7319847096957	10.415833155809	10.6330294998812	10.2884722026783	10.2858589509724	10.4741595259342	10.5961428316037	10.6172778740045	10.9566609640405	10.4396393846287	10.9801159420026	10.7131524694848
+"AARS2"	7.62619527670851	7.87889687487779	7.97635263557691	7.69794567842675	7.68940554173572	7.84584931491757	7.62538289174546	7.46026219561286	7.58474732348414	7.53337751082049	7.74688733754703	7.56138367836669	7.57446971381	7.89466049788785	7.47355017070534	7.63963620288745	7.3766172276878	7.65040389640443	7.60473160126997	7.70958751414341	7.54722315333381
+"AASDH"	8.31026309606453	8.10823139791855	8.25001045212013	8.40644352893677	7.93345640862522	7.35268258837589	7.91634254983272	8.55335997287056	8.28853775557264	8.36863708793647	8.36500630381025	8.48982795366383	8.06303657019137	8.19056041022364	8.26090792830483	7.77157635942387	8.07937973654167	7.6986346672397	8.45908437430689	8.26309076318318	7.49797225845149
+"AASDHPPT"	8.12443710419547	8.85191683224527	8.55294267685089	8.97323030320277	9.23100927516533	8.21602318504887	7.87656304827172	8.6656341310482	9.77926038057758	9.76202365657295	9.31288694584383	9.67219182872777	8.798504156166	8.29422501946843	8.99313724206699	9.10455238447296	9.04752469688618	8.95025018433807	8.97470526357285	9.8895882841259	9.26836136397477
+"AASS"	7.24522943453735	7.02507544696864	6.57251514316187	6.68190999382521	6.48081152590403	6.08446671169623	7.23091008958888	7.06448938728497	6.03986269519091	6.78025326501044	7.91528106208767	6.78025326501044	5.87974272841236	6.59645849546553	6.7038435636767	7.59534534987608	6.78797156015436	7.67593508503574	6.78025326501044	6.78025326501044	6.46038714432665
+"AATBC"	4.26816332536312	4.20485338070628	4.19466175694604	4.12355532238704	3.91763432646522	4.24762788891764	4.29879007259721	3.94999942065667	4.12574102100358	4.12590318330011	4.13681864761588	4.08440253215575	4.26683226747841	4.53376458413562	3.89189533164077	4.38064867249402	3.99468663295238	3.84968038834252	4.21524078800747	4.10425832773053	4.10669851990395
+"AATK"	7.1825203912901	6.80929700901817	6.8413686740704	5.73586417311183	6.0230890663462	6.82632357330451	6.00751575471525	5.36451959004912	5.48383408868258	5.48360080583114	7.26686683838747	5.37408190353583	6.00415350488704	6.15543645705662	5.25592100773308	6.36281196636636	5.82044835985698	7.19594130934732	5.83127893085894	5.00592952696112	6.20721007924662
+"ABAT"	9.01164561627582	8.34685739039812	6.9106242499741	8.12009200305986	7.64952469540914	6.67351901469159	8.60527386667906	8.99258771530722	8.18382652148781	8.6546869710488	8.12320514709938	8.61594992927416	7.68325091190808	7.81626093539405	7.53274229967373	7.69643726393795	8.44463726867425	6.9873151648498	8.27800071384368	8.46199679015254	8.74773741295472
+"ABCA1"	8.66090401955889	6.96244848347862	7.21982582126591	6.75369649905545	6.75938877791852	6.23483297890378	7.77942754385433	7.33778262904079	7.18399003484621	6.45884396389304	7.70191934944232	5.91720723076735	6.80313380468457	7.17854792958793	7.0245478816755	7.24448246779855	6.55760306617614	7.20014865673065	6.64067258616014	6.66738158252482	6.49804472660575
+"ABCA12"	3.31211011081611	3.04536473856866	3.17226587333106	3.17177438145289	3.02492882398981	3.02534707186513	3.08943668618129	3.23958005443972	3.25947653506592	3.19208553148998	3.1074404182012	2.96034245787938	3.0231538004503	3.2220520510891	3.05267091399125	3.10445188916792	3.08655854730511	3.033578174678	3.14430002199818	3.10445188916792	3.07471097979719
+"ABCA13"	2.98043599136943	2.92054089082572	2.83055225671523	2.86114503983006	2.86841134878158	3.21272789236476	2.85270885281754	2.86256868935189	2.86114503983006	3.0245868058425	2.76661302462861	2.86551421916042	2.93317228547729	2.97871209145959	2.89334938526495	2.76733408049156	2.81177368471102	2.71186667559447	2.91396281483391	2.79290217150161	2.68053045609736
+"ABCA17P"	6.29694108308479	6.24998681185521	7.07651185927086	6.10271985819724	6.46773758300785	6.16798533789515	6.3907693487495	6.14385636101292	6.2115968669589	6.12938217783715	6.31210747737159	6.55280659305367	5.87697710827764	6.2279433931208	6.29490831150527	6.82050584128915	6.28470588401401	6.71911279575518	6.48148363062424	6.59602845472231	6.22935432089976
+"ABCA2"	9.72061130678487	9.68520808585299	9.26345070277434	9.54637282407822	9.42691430951417	10.0392330916128	8.770538417596	9.08537812888384	8.51367630822502	9.32887772749438	10.6846123640692	9.86850085261821	8.61266511433165	9.15490603113155	7.99998164173292	11.1957902391619	9.39222924998382	11.0996023103873	9.4542392781516	8.9044837970132	9.46412059947212
+"ABCA3"	8.4975466993381	8.62630454159101	9.08240021088379	8.57349002497908	8.86695471706341	9.25065128673372	8.85284329797213	8.48544384047838	8.71883919059661	8.85683420303921	8.6282864867104	8.74159745261138	8.81769922393209	8.8326039592145	8.72432893268871	8.42926937015061	8.75415962637093	8.67631450365112	8.30097969904495	8.96590236404946	8.8759319523159
+"ABCA4"	4.14431739224324	3.72595178329196	3.95349469319811	4.15380180029431	3.69254950081495	3.45828368286978	4.07644071225079	4.13452365255722	4.49142811916443	4.11942082835616	4.07792606942969	4.07792606942969	4.11870245959564	4.14609230894564	4.08153995665451	4.1971731462575	4.04429511901571	4.01912291362431	4.2640431697708	4.00175098673141	4.22742135023581
+"ABCA5"	6.5758088482198	7.62235825904377	8.08005140185005	7.24661197521341	7.89839485528202	6.93568168072035	6.53481626714197	7.49790983980626	7.4399343069839	7.58902828121529	7.5247295454083	7.76554468895915	7.35272856416719	6.62152247529881	7.35129509048257	7.7048388577403	7.60700106866895	7.78471264892674	7.33530742687331	7.63365062414754	7.6658484724156
+"ABCA6"	4.95680915380617	4.77373551933988	4.36366202850786	4.41342939383662	4.55788770586872	4.81701611769725	4.20479628536753	4.71754455251773	4.75668395809773	4.6881831043624	5.06823561475885	5.22869540487887	4.59947079553165	5.06672497746199	4.63193345645271	6.19651043650113	4.92135070052376	5.69633396343009	4.62511244867806	4.61429846782031	4.57512919121534
+"ABCA7"	6.88568370895027	6.88381717837156	7.16276031802676	6.92281764883835	6.76826527863109	7.70241988621888	7.33176027355981	6.87724780869807	7.07514309522896	7.18202125662575	6.59351070649593	6.81916536449183	7.45747435697534	7.80145145614932	7.13779566828271	6.69575056906863	6.76489263544438	6.95466907148953	7.04575625533365	6.91719583812544	7.14731116518835
+"ABCA8"	9.51792282450075	9.0826819039663	8.49217009299571	8.93121236355837	8.39186013562477	8.55914707736188	8.567192797816	8.7763904997992	7.26936336590922	7.44353431100722	10.2296759503745	8.08116724998937	7.48672050499489	8.65041924819045	7.52239215915755	10.8497042200246	8.10227735863351	10.8535790719488	8.99450543644191	8.05393219548757	8.37815671981396
+"ABCA9"	6.65903498647268	6.73980013641253	5.68636887436646	6.27556847285801	5.98272772096081	6.43725360316327	6.36489959316848	6.41461031339228	6.54220541910782	7.17075695561112	6.36114694761261	6.6073629927303	6.82970358960791	7.16712106679049	6.54220541910782	6.29893067311294	6.57900739733428	5.31442997940554	6.54220541910782	7.05407668758015	6.75567439326456
+"ABCB1"	8.70577570866874	7.21675065842421	6.40649404757557	6.34446620133985	6.80402963284162	7.7104008849348	7.27417650178145	7.34245891397671	6.46689688407336	6.846404562569	7.19270539772748	6.30407052655264	7.55844910351491	7.61395270496343	6.91871658035063	6.42784958792146	6.96436554401928	7.22337126532421	6.48098016857635	7.29698002929169	6.5217147355036
+"ABCB10"	5.99743095751837	5.78787905309721	5.7319447692625	5.66630748602263	5.88802433581767	5.11966159279059	5.26101829367846	5.71011156651643	5.3299435317274	5.70881492160149	6.10903441428917	5.13595485572545	5.26776892958179	5.11742095328552	5.84402269199295	5.94600592958047	5.57712665956157	6.52945939480536	5.62884523384034	5.73971809950586	5.56035088690433
+"ABCB4"	4.56011283911995	4.87872780207997	4.46533405022789	4.6552704405929	4.49293584760748	4.85823568042597	5.10558054174477	4.715358520815	4.80034306955918	4.52575082756299	4.61541967578386	4.68622407257493	4.69182046949555	5.05452620857354	4.36920210396028	4.4477747772783	4.60414232802981	4.43398002578862	4.48290274332913	4.88796892987834	4.51820349398855
+"ABCB5"	3.29770712148882	3.66460139364954	3.53194549011528	3.47115147475991	3.57552466746661	3.8176035280218	3.19272595479002	3.41137329987572	3.29369297297836	3.44907516108264	3.35180344287785	3.37368404637707	3.7435101840486	3.62677620630566	3.41287185286184	3.48498631930885	3.47298025610708	3.20550632740033	3.39466415280945	3.68677898483993	3.52943203886617
+"ABCB7"	7.80158413138899	7.25546084149368	7.37867038858933	7.1560673172625	7.18222625075132	7.54306117552027	7.3399096338651	8.15484477510694	7.26416484525954	7.3082316950031	7.38104804909531	7.38005012508558	7.13750501708986	7.39842066424712	7.22920484376602	7.51923558099952	7.13717581818329	7.8089558607872	7.3829341742671	7.24209816791887	7.02969542877049
+"ABCB8"	6.29815094570296	6.62607215046715	6.78417561356228	6.48736446627437	6.53244259835076	6.35228586218234	6.5775511347531	6.34611516108768	6.11839422323273	6.47284776350153	6.74918428752487	6.54048905620653	6.21904614140877	6.34973638297142	6.17650490207879	6.70393633765779	6.24992212939183	6.70593280643989	6.36053261517328	6.66818131796183	6.57267542061267
+"ABCB9"	7.60213310576001	7.50040039225741	8.28976156835829	7.33347114231477	7.81375477666895	8.00779576366413	7.10349419296155	7.4087429249324	7.58011572690279	7.97398746236511	8.11016783519611	7.73829446553951	7.24490649722461	7.63298443327788	7.08954679982854	7.11653427070356	7.69539653496281	7.4178616041549	7.76039411895183	7.59899139096423	7.63839169795631
+"ABCC10"	7.98318893594646	8.12695854987955	8.33214904432896	8.12562929842222	7.66479838925535	8.37034567990709	7.88316227499171	7.8447585757362	7.97513239735554	7.47718163027633	8.03231999873281	6.90411032251141	8.40536660541231	8.4745389243445	8.20954518700342	7.75088497050406	7.64139273983158	7.97637950456939	7.55792075641965	7.65440767449093	7.6031348806221
+"ABCC11"	5.79976601284619	6.02157572737164	5.59534542782149	5.92453722164009	5.75124468528035	5.89823397989782	5.66563370282033	5.97211190921086	5.79976601284619	5.76125936971348	5.69073957528044	5.75801006481468	5.79976601284619	5.97190714850458	5.83435749196775	5.84680436663177	5.78229910451967	5.62841551613552	5.60220240159976	5.63219417595889	6.04585605961681
+"ABCC12"	4.2642777678004	5.40346037189359	5.39852166244206	4.91093873329271	6.03105185904622	4.84093060099525	4.68047967598715	4.69356966264074	5.35914870358591	5.47040996149076	4.38213029708313	5.05987390173371	4.54137198263651	4.84699737023095	4.99078856934018	5.07447171265084	5.29635129729454	5.12493274547226	5.1157495759304	6.25420493921855	5.29893937614081
+"ABCC2"	4.255727397313	4.42017242541492	4.44835598190362	4.38325531816624	4.53522350251011	4.56911827741005	4.95371254350511	4.53979191773571	4.66567291581313	4.42443907093912	4.51377249020513	4.46971636598879	4.56846664970578	4.47849880219877	4.73950026535859	4.57394814572581	4.38345091836973	4.41285137893239	4.46971636598879	4.42231075360973	4.24723126797122
+"ABCC3"	5.4323558127627	5.35018263001204	5.10545684906103	5.14329735825345	5.22025635773318	5.36488237209015	5.81276777072141	4.9603288996921	4.96287241135421	5.15239917715336	5.38396322743687	5.17370223639402	5.15239917715336	5.51069001481427	5.02950437877242	5.00577359499037	4.98015199101665	4.85295986824123	5.17531102246592	4.95750774759724	5.04361392246143
+"ABCC4"	6.57942476978459	5.60369800590374	4.82224902123056	5.31119438149806	5.34563702856237	4.58683412349145	4.72083029964895	5.75348517346795	5.32608970327172	5.76375165216602	5.98847106164484	5.40324981624236	5.30560655349379	5.07232473450432	4.79874221203973	5.75818476855746	5.6132564039746	5.24052829786083	5.42465928226862	5.74723741663193	5.30788934548409
+"ABCC5"	8.92667845504506	9.10686528627702	9.47168764265867	9.30074786426389	9.50422784379829	9.60725567739663	8.5139609939556	9.07879532461311	9.41548168275927	9.28785123741085	8.59618350201337	9.20111467237624	9.24989810813311	9.25296917456502	9.59287641560445	8.66109653449474	9.47159762328678	8.99568907286023	9.12596682680137	9.30743763129935	9.34124118536712
+"ABCC6P1"	3.97071312210086	3.86394812718984	3.93453870094933	3.74825577360268	3.90970410463368	4.08907663066126	3.86407433824592	4.07839555369981	3.98898326877006	3.90970410463368	3.78823365730846	3.9946787930115	3.85521464102254	4.20399516963409	3.90970410463368	3.70863082135789	3.88926068228615	3.90053166758242	3.90970410463368	4.2493817728559	3.90970410463368
+"ABCC8"	8.62958730773443	9.05595541942319	9.67368917752146	8.29282688364979	8.940436439611	8.83943574162172	8.45665676155224	8.82645546821805	8.61618845965105	8.49289813187424	8.29004703869332	8.78478044258275	8.6330174239423	8.35191273673755	8.46452789242474	7.96538211103159	9.03738202539028	8.59664808591256	8.41560307144536	8.86772805802303	8.6330174239423
+"ABCC9"	5.74233195018829	5.65582391167199	4.02259628121968	4.4468506696062	4.91642405026011	3.74221610528711	5.21756890420594	6.07087312215946	4.21971147402758	5.03565684662619	5.88398088243202	4.85354470316072	3.80558258762225	4.3488080387308	4.39880057951046	4.48415457482441	5.0987859834324	4.76217708718285	5.02116095800405	4.64156502492517	4.17984613577817
+"ABCD1"	6.87256822207154	6.49687360479709	6.53355864473397	6.66622798100035	6.48860120084576	6.93549917315596	7.40744923657716	6.50808642444693	6.40647912885289	6.51150360465889	6.26675049534042	6.40508693856835	6.62067477643484	7.14204793514497	6.56992215410782	6.26287650503813	6.52710765652472	6.62067477643484	6.71147837627869	6.68107464867437	6.55848025865582
+"ABCD2"	4.65020265918599	5.39425943693686	4.27891744527021	4.42181742630948	4.78773956369077	3.16043901888889	4.62019316574247	4.83948320749434	4.71589459026634	4.63156068855808	4.25738521218327	4.32119564081066	3.93668319481726	4.24953940957582	3.8353901343978	4.51059079880936	4.31590227140315	4.2850035984345	4.53011772624419	4.54274814688349	4.62020855829817
+"ABCD3"	6.93949041297461	6.42516110606569	5.12557261187884	5.8847999710015	6.34625633559568	5.1138640326707	5.61627678101764	6.09899770785839	5.79172067879178	6.22745378548436	6.72960464097582	6.13362944179324	5.12175443802844	5.33443171797473	5.45602585532809	6.92065425797514	5.84168843949048	6.91430931003693	5.96918520340831	5.99196570873646	6.07752419170842
+"ABCD4"	7.58949369738133	7.61824745494479	7.76965510012518	7.83820261547757	7.43348466571064	8.02562673524743	7.29024897288656	8.16112883091425	7.63632370646767	7.42369599439575	7.89976348127827	7.63578491063115	7.82769224381911	7.85821332648158	7.8623886102663	7.6048115570922	7.63632370646767	7.91921740143845	7.81137574698461	7.2210707769658	7.56417806320599
+"ABCE1"	7.46180830579862	7.76763101345805	7.52436160878573	7.02672131514009	7.780775161387	7.19847934683114	6.71955404869417	7.46725057346105	7.33456832356551	7.56812034533523	7.45509088860195	7.33371241247691	7.23588017386	7.19799189884442	7.22442834221871	7.84449711630459	7.37509258764062	8.02645869318654	7.14201821683177	7.52662227258852	7.57529722356166
+"ABCF2"	7.96328272474848	7.89984490068136	7.75478197759505	7.76281532490146	7.94050708946402	7.58613989245961	7.73508306495485	7.76174371064224	7.94941173720266	8.1742446951575	7.35242730500504	7.93161790237891	7.69196326487693	7.64390030963666	7.91419889614014	8.23790404315467	7.82592390420509	7.94467481411591	7.68434411052679	8.44078965684293	8.22019613462624
+"ABCF3"	8.01149435127063	7.94954244868964	8.3893909587184	7.64185058749299	8.20605808062658	7.88006540392665	7.80032321328468	7.8672987361907	7.83816237381076	8.3181655993799	8.00508773286253	8.20490990088929	7.82268686153673	7.6255795928465	7.65362261556024	8.06616997773349	8.0536383442107	8.30463586664148	7.84616699931883	8.4598396474514	8.14531902908541
+"ABCG1"	7.31495632311891	7.04012735222457	6.35986684403864	6.60630052434919	7.14107482715145	7.25487506944471	6.49832873876173	6.86254084079052	6.03911434729516	6.60873402685947	6.91426233599167	6.35862333951525	6.61992332431323	6.34013481979536	6.06207142297671	7.92750854717437	6.67971250178115	7.64680749088266	6.09188541810543	6.37179140762393	5.89729726428456
+"ABCG2"	10.3304303684986	9.2752576494055	8.08670222370625	8.36655061247929	7.92091556213938	9.15699456035396	8.87923729454344	8.22023899435624	8.28707603778954	8.59709986417741	8.92088198117047	6.81889352988194	9.13381080226193	9.25526786852307	8.64197594094287	8.25892282893826	8.16617717640356	8.78531845838025	8.72063163621263	8.11959047156993	7.45901478874988
+"ABCG4"	7.03201347540963	7.55148757193771	8.10081547400424	7.46848680634061	7.91011860892165	7.71108243008593	6.8503261809843	7.27198050666654	7.60384830214911	7.72504317830619	7.19343693120811	7.741215888524	7.84646055678784	7.7631739274823	7.58786802201582	7.13032709359118	7.8495357917075	7.38356087850776	7.4042320084614	8.08301163040328	8.06015023936521
+"ABCG5"	4.06720612310757	4.60822068196307	4.8373574433282	4.56414903066203	4.76743539810784	4.59176872919853	3.84754420597074	4.30464245951281	4.78783743851491	4.59033777237524	4.06770332496603	4.36800285345266	4.39893437511516	4.18234803252526	4.19775729317605	4.13974103547436	4.39893437511516	4.39893437511516	4.38844627580019	4.43362233614939	4.28033851228107
+"ABCG8"	5.10676068368823	5.55711716253696	5.71682980264925	5.5414112298557	5.64912582762758	5.64372325546358	5.8025548114608	5.46731769045106	5.24110066921306	5.41785482328397	5.26713896957216	5.62173729400616	5.58240781084141	5.84810445983025	5.52709528988894	5.4411864656995	5.62805970927963	5.40604789957657	5.41721492149519	5.38523796747997	5.60457597509591
+"ABHD1"	5.41026985384963	5.6957520216842	5.33818752166865	5.76712050687694	5.43482819735972	5.43482819735972	5.23634232041441	5.00690277124608	5.55787665545258	5.32256183523367	5.62746373950988	5.1787806156795	5.3973365424759	5.57858462715126	5.70568450697817	5.57314804468203	5.42820387027495	5.1805457763234	5.50864562374727	5.24646911758282	5.40399645092175
+"ABHD10"	7.66744641780217	7.8010252578316	7.4107195294863	7.45171510178658	8.38971734252928	6.93394810722674	7.03633568930757	7.73693453639458	7.45398501713515	8.36237036879849	7.99352137315327	8.24791583277963	7.05224635229932	6.8398038143208	7.02251846722344	8.32113731665835	7.87201445763137	8.41466076429227	7.77711869693231	8.10088690872931	8.11028342825458
+"ABHD11"	4.49941782529266	4.65313295696759	4.14864712776524	4.21381692702974	4.17380608351944	3.70402414710473	3.68737553455709	4.2493817728559	4.04465765075252	4.41958371128299	4.84623267483245	4.17163199987947	3.82262000993882	3.67484441106243	3.62909404007626	4.33921396800599	4.4512087386164	4.19520385100596	4.21381692702974	5.30918070843266	4.47003166119716
+"ABHD12"	7.77580776981139	6.49447459973859	7.42020645517392	7.05607652582314	6.45858037658363	7.88128756113656	8.04254963961459	7.2721958924521	7.23573090892828	6.92287939912144	6.74608537881089	6.60022528463327	7.35461703276202	7.70595670015948	7.68463462084406	7.97883595871574	6.90884094932887	8.39501880941838	7.2023923105188	6.54515100452522	7.34867974900753
+"ABHD12B"	3.94367972856244	4.38292387164569	4.37464903695633	4.55668371424499	4.99534942977856	4.85187203700627	4.50810106110129	4.29938893389525	4.55544440659594	5.02328279175727	4.31929262121931	4.54137198263651	4.17621037017311	4.61573731048551	4.53980314622457	4.5779293138566	4.63185270387159	4.47411006883725	4.48852828832761	5.04069446919295	5.02490347981476
+"ABHD13"	3.9969435840913	4.29297364899221	5.05464894124822	4.24466649693606	4.6750996297423	4.2130748118448	3.76400695438037	4.06495110852253	4.38362637922296	4.49918930687964	4.13725714722534	4.04719727441599	4.36238543586501	4.09705982441308	4.62743368782135	4.22039758210171	4.24597795559529	4.58732840902466	4.23722557656906	4.255945292694	4.21749257809528
+"ABHD14A"	8.25915153099082	8.78131821413907	9.15832884928721	8.52414586885055	9.31704476117669	9.14495192015411	8.40744993706742	8.6808414624055	9.15202781355042	9.36760152565169	8.55908073812372	9.17606123772315	8.59946828365331	8.66654162616051	8.70748935655961	8.47108667493467	8.98323888216583	9.08780964479667	8.650821008188	9.33886093262168	9.1758171231902
+"ABHD14B"	8.28877163648848	8.20074176438751	8.18246015816087	7.67787064450207	7.84008797492803	8.27731385939101	8.09560203034556	7.99877666957492	7.49289222386228	8.0178599314202	8.50441769201542	7.80111457475106	7.79768637900554	8.40176469530804	7.5767555011942	8.12042239205281	7.80245856129866	8.17233902837732	8.35988098200517	8.2323968045675	7.71176125531429
+"ABHD15"	6.29866449627665	5.55585726287723	5.11315222437089	5.22585159670841	5.46354466087423	5.59139215865385	6.24786287013857	5.61658415176012	5.79598376070827	5.59139215865385	5.74988123258855	5.09141664139848	5.31318139894618	5.91948598344274	5.63502892576857	5.38147543530586	5.81486687628962	5.8498187050054	5.66659131279948	5.65373005428671	4.95943014296011
+"ABHD16B"	5.25843191150809	5.07563281716269	5.12906069912838	5.35189322706703	5.08375534928464	5.74474719578938	5.75964859076533	5.19706665720383	5.37922694370527	5.405004962171	5.28203938306182	5.44532603703512	5.52698051509199	5.69211693719463	5.23517442976396	5.1025890455309	5.29715019723856	5.22008555779137	5.47476273149705	5.27492006288079	5.37843152317791
+"ABHD17B"	8.25171580354169	8.25910293839844	6.64582968223415	7.69602980900005	7.3605350310509	6.21699543390393	7.51341923898143	7.682870365319	7.23734267993553	7.76998721794616	8.47582108293334	7.95416030525373	7.18049165681232	7.49714496182206	7.41429006158563	9.03582469974681	7.66554201965174	8.90457301103103	7.51880345623802	7.52845539248031	7.75894011414272
+"ABHD17C"	8.32158258295169	8.22232365167926	8.18162568932931	7.88647160394236	8.30958456069156	7.29651691657842	7.97768006952615	8.08523102629319	8.02913567945105	8.05350662784549	8.42952249243612	7.83610768524633	7.46769241590092	7.31146456282152	7.45623331771132	7.73009446635127	7.97768006952615	7.87640831372133	7.8604211437366	8.14960149237823	7.90057411381682
+"ABHD18"	7.36934003659369	7.61577259975502	7.88355345441636	7.17542104543055	7.55403977254315	7.21911580619696	6.91879670781365	7.30122548359148	7.32414018583054	7.22011297036343	7.36030350597694	7.24256026082912	6.89266682444248	6.92781926402409	6.73813232799763	7.75662287763223	7.39438652371949	7.92476951055626	7.28697730847747	7.22858406577661	7.23779032672978
+"ABHD2"	7.09748629511261	7.1552669577497	5.91271925074265	6.79868840422937	7.60186610088367	6.22127417221667	6.90074892861593	7.3144932195876	7.26776158189656	7.72120855808917	7.09012855231856	7.32866723256742	7.63358722763851	6.60587242623212	6.68292158233922	6.64013308439819	7.50146405375979	6.4990941558764	6.75523018564131	7.60659434236877	7.48411987669695
+"ABHD3"	7.93891541477484	7.67896944995703	7.4295439312108	7.83351294781739	7.46732976306953	7.05249308242077	7.56940170446101	7.89996679273514	7.52085513622905	7.1732653000608	7.68687680758034	7.24617661621821	7.95718763325765	7.51414356140377	7.95540726022567	7.4717325259144	7.36985302112951	7.5738345088772	7.82223868043013	7.44156188021481	7.53779993802921
+"ABHD4"	9.87417230837269	8.77119521656468	8.41593512146868	8.89931939633108	8.43350339509405	8.86228731444706	9.31099707325646	9.29165584800274	8.72584036830089	8.4847357404392	9.31736285937212	8.65881531562513	8.80758240132457	8.8857664066379	8.48966430413354	9.1456077328512	8.68414955332927	8.77389127493015	9.01859585328873	8.77245048764311	8.20104385639901
+"ABHD5"	7.35541657949581	6.4109242866411	5.7662511083396	6.66576122473134	6.2723851928813	6.26010019123716	6.80313380468457	7.0240724184264	6.58616078140313	6.34723255322785	6.69878641232511	6.10670738260209	6.24881748809275	6.55190197594512	6.4517891232338	6.99271437347991	6.30057315503851	7.24338041608061	6.73052142472372	6.48583228849031	6.1997935745447
+"ABHD6"	7.49316511609916	7.15201429055971	6.46485036478839	7.370232303321	7.32092172400465	6.91182109818424	7.04363826345601	6.47609706389342	6.74467982060353	7.66656682891581	7.81020467465328	7.19208660822813	6.82930797308987	6.53004614053864	6.70500002185222	8.53815435576498	7.08571684357597	8.51797460483094	7.23157372753309	7.60676548557055	7.5654234438894
+"ABHD8"	8.03700123416811	8.00432172488057	8.3819650143238	8.23171703421128	8.37547979676754	8.6608276171716	8.3048948748237	8.30532480771866	8.51210997371297	8.36061118344946	7.72505537941809	8.26171077746926	8.58271908315474	8.35926736955681	8.37994738953846	7.24692739896085	8.29860042305128	8.07074371150038	8.3048948748237	8.50804688900027	8.15013318516774
+"ABI1"	9.31132401228134	9.11021960347083	8.60362693828063	9.08630035000048	9.04745972757637	7.62708722397767	8.6543362357031	9.36694486994893	9.18166385420352	9.1758173248236	9.24172448283045	9.3712020058456	8.66417270394194	8.10829017775206	8.60394907785374	8.84491172863711	9.04703724883874	9.00367788097386	9.04361347912115	8.86021323855829	9.09243081086628
+"ABI2"	8.29260115317885	8.62748278740689	7.61229928933642	8.13882382495106	8.6311126765258	7.63817234467814	8.29333554452003	8.5646228683153	8.3051239807701	8.68618841716192	8.48261687211884	8.776053774654	8.25057601904047	7.92823732940564	7.75935538589294	8.52375541545405	8.43234504083293	7.92614401458385	8.49018397379427	8.63090210614025	8.77519665571944
+"ABI3"	7.46930796752175	7.21136846668994	7.10074164664343	7.499515044419	7.3412622394453	7.81819260336685	7.93579538802266	7.37885584879822	7.55436436499419	7.37073991446	7.28520057012283	7.08875245743124	7.4886959733769	7.8149042092052	7.41910882970235	7.42096393753768	7.31314427029085	7.14058509384174	7.41041997893599	7.62523167282733	7.52132000574094
+"ABI3BP"	7.166484623627	6.6448797466806	7.04821557483349	6.32640442558623	6.24781542316215	6.43617925303219	5.9721574541798	6.00736069424842	5.72642713877875	7.50897505495459	8.43347526083368	5.69431779059845	6.02779882842862	6.443834933189	5.66609236585382	7.88176323920578	5.68512406239263	7.36437556997509	7.02968433280805	8.15316075660139	5.69128855155097
+"ABITRAM"	8.07659381831432	7.89539405727365	8.13323481512146	7.95786582901469	8.26811675744116	7.79322248183326	7.78235030844539	7.98581601413109	8.22741008033072	8.08544573637293	7.83118810627187	8.15432513139552	8.05572887092211	7.91517081070569	8.14260750638862	8.07251756956554	8.08701704476369	8.11772447683796	8.08609725576992	8.21335209082681	8.19734264156331
+"ABL1"	10.0858562453789	9.78872966044873	9.74995946392659	9.55958517638991	9.45111748420598	10.6248983655981	9.98309657431986	9.6619541668269	9.31529533406192	9.29945906649526	10.155627587316	9.18229996074418	9.56914388806299	9.93898611818633	9.32095186530263	10.4148373440035	9.54896230184133	10.3372767588149	9.4131216333138	9.42407913093572	9.3681712461616
+"ABL2"	8.08733066987001	8.13032827580318	8.68064656342884	8.39689207870719	8.71573789309275	8.47826469512684	7.81862986475936	8.38701791029362	8.53823986742487	8.43188976621292	8.03296888743256	8.47776740003949	8.38701791029362	7.9992291879311	8.30337380654766	8.31534535329437	8.51396633652826	8.79420363105865	8.38885305477184	8.43941454558547	8.36810591725656
+"ABLIM1"	9.10597399627725	8.88122279042519	8.66088676771967	8.70197784204331	8.17067107030133	7.81937452953227	9.01973556762632	9.3311095583623	8.82805680737757	9.14720572441265	9.34230851957922	8.81727087294304	8.33442238918429	8.87382452170521	8.67094817047247	8.07226111314401	8.92483066009094	8.41289355142992	9.0116851422595	9.28427370904177	8.8543336941
+"ABLIM2"	7.73635002214015	8.47029384242884	9.1679598431886	8.49753580206757	9.20168165347397	8.35757890713345	7.99995948203172	8.25268834347994	9.13694897734102	9.05617233951503	7.91270319902557	9.09170469608425	8.24197118036257	8.29108515686418	8.59055303492805	8.32336333947808	9.02242668609148	8.60209424774188	8.57170668067077	9.32946985297466	9.16076043746191
+"ABLIM3"	8.25021608592203	8.07500610733082	8.07284011391986	7.64067635818335	7.89736770326952	8.27269826467363	8.16613489239165	8.16544349909626	8.07519572855511	8.05368904976334	7.90382046681321	8.02862887870492	8.16348470797374	8.19494496428172	7.90126330624061	7.90682892167306	8.10456841415853	7.52646071688235	8.09681418922166	8.20072732887784	8.13218089063673
+"ABRA"	3.01601282847508	2.95230893690578	2.88303668165656	3.0260106337023	3.169828338866	2.92533617986625	3.06299807303735	2.8497979201399	3.11728398778737	3.0153203547338	2.8785214516775	3.04943308159685	2.92383634746193	2.89036260998382	2.87588877220627	2.91839396010463	3.50791425488834	2.89226275288161	2.87402849987419	2.98400369984491	3.06428864068031
+"ABRACL"	6.13767375152083	6.44129521100846	6.8796560864233	6.279292677199	7.17567435522896	5.97568614053584	5.52254338409379	6.2370868434602	6.79976039529338	6.93282374623647	5.82287033003888	6.42229996403752	6.67873216149565	5.71640232278246	6.57504422479592	6.08181751400771	6.19229968366662	6.42229996403752	6.57637258927359	6.96224268552064	6.84528824871405
+"ABRAXAS1"	7.01263123960321	6.68913727194089	6.82168077483864	6.49586790107157	6.68274177589111	6.56422074295093	6.61769563043682	6.57004835462455	6.79154171393654	6.74669473166716	7.18158704022898	6.63411060027559	6.87632506664905	6.72215921664424	6.78953578471793	6.72014551669575	6.57074174838402	6.87097841302665	6.71257906940275	6.93474307686211	6.22287083942779
+"ABRAXAS2"	7.10257687411783	7.23029068564523	6.90524569840447	7.0449971806658	7.64379921996759	6.67900800566125	6.74454032504846	7.19475432874023	7.19011440732237	7.55776419500768	6.98262659257909	7.28430547024939	7.0420421497638	6.79013307533773	7.25025713136747	7.27811085043905	7.21234736628478	7.47186185035778	7.24610184014266	7.59663058895971	7.43287958446614
+"ABTB1"	7.31116021695887	6.9513063589903	7.26726602609484	6.85619440318034	7.36744522693736	7.18611586451469	7.05715839763738	6.80923450286486	7.06131775962105	7.64116519764696	7.07891498113306	7.55523652883574	6.68524655790962	6.73977886329965	6.60424680594401	7.05148951908443	7.4524333357032	7.23609176243735	7.11439824852257	7.84799650534465	7.8152483473865
+"ABTB2"	7.87040242895089	7.88265538048221	7.67847644832864	7.69377494008237	7.37421177573979	8.62312989268501	8.15965568980906	7.62149481247286	7.79068374721601	7.63643506775891	7.89402190141131	7.61895472202694	8.04048916992394	8.12085080702276	7.73864067794497	8.24637380131947	7.52969186804642	7.77433252245006	7.68654002625353	7.67734199943771	7.66039067933158
+"ABTB3"	3.74081207504579	4.29938893389525	4.68860543161811	4.24487326723926	4.80076177739802	3.7732232302006	3.71023655199314	3.94015758576047	4.36865402380743	5.17223763170063	4.16547427429933	4.74889707301946	4.22403365023719	4.08687852696792	4.182215428025	4.48138931353222	4.56570298183391	4.31678879262298	4.11200541366428	6.00553135353604	4.93678174621554
+"ACAA1"	8.78774629327278	8.35453584320465	8.70463549600273	8.44401513360501	8.32961128642309	8.703265602796	8.40537012899946	8.49333652934822	8.41608542008732	8.23921878354795	8.84121135463294	8.07810821263545	8.46675982394222	8.62035742138804	8.66261245173222	8.48979730317554	8.08002886058223	8.81652939793368	8.34468968611373	8.29442781869554	8.19455248617123
+"ACAA2"	7.69506303880457	7.33166171511718	7.40087790960307	7.09326795079408	7.09326795079408	6.81685281319191	7.42310378892007	7.63894458608865	6.92974420274225	6.67578305437431	7.32904086361433	6.81293816559191	6.57738170630176	7.25656812508297	6.83562667172376	7.5211057758126	6.41755486876755	6.8585442530808	7.02823679380972	7.05632398082444	6.18634823381073
+"ACACB"	9.25555070303987	7.79074991161594	8.14592814643812	7.88459902948108	7.29336714044681	8.4922656682861	8.60234202393976	7.88322465350637	7.82868314746871	7.82253146694483	8.21604701920012	7.57670875442669	7.84024879585432	8.41690552550196	7.96569961259661	7.8636899696199	7.73311498813723	8.03506714566555	7.75946968873952	7.56244131628827	7.15980575190375
+"ACAD10"	5.60375811326339	5.143684115526	5.4894199641398	5.26810121587291	5.25982838417952	4.99657103252209	5.60280533408733	5.22685512514569	5.47748923488387	5.08335561811711	5.52614044273746	5.3173421947916	5.02281143394507	5.50630878150715	5.32528961334739	5.44579375049894	4.99717515006808	5.70505148041217	5.23228619136102	5.57354746137015	5.3173421947916
+"ACAD8"	8.33818678299277	8.07858958209536	8.02268558596102	7.84873689254805	8.02522769956574	7.48824297414475	7.26416484525954	7.90423772195638	7.96803942450003	8.15731634278661	8.28038039634265	7.98550523459881	7.70072983132117	7.5482957024587	7.70625965781599	7.98131703426822	8.08329970860699	8.60366637214984	8.19361416749723	8.04961996782109	8.13517219591754
+"ACAD9"	8.47554213599281	8.58806725977787	8.70721588177175	8.01104310898535	8.4495474523035	7.87032117219789	7.61931634294843	8.22832796073213	8.11416051800003	8.57679989749598	8.5467615569189	8.37567097273488	7.8539313681802	7.82061330814084	7.79212984782467	8.47556135197904	8.09354900021713	8.38235609357137	8.14338787274636	8.71630417791217	8.49737638135146
+"ACADL"	5.71918708336172	4.90891536730434	4.59919141320322	4.58456255208624	4.29696906150851	4.08248747189831	4.8603006089095	4.6822302313841	4.31785934843106	5.67709202840533	5.31657796431457	4.70211944580292	4.32141279045152	4.64680692485045	4.50276665825411	4.70211944580292	4.64709618684463	4.33979306340102	5.00822128884889	6.692595050246	4.30291884282523
+"ACADM"	9.60300031816228	9.49960797784449	9.15690884767421	9.37325462588462	9.21221820200812	8.16505201919254	8.88090924761084	9.42345549462259	9.37857292226351	9.25751601545974	9.5299683297062	9.16003367733575	9.3074811954942	8.89822305343553	9.25335546853484	9.2718107584846	9.32416073702449	9.53174503414601	9.29616549611151	9.0861964043273	9.34352144543038
+"ACADS"	7.69259316216915	7.47171950054299	7.56343906642132	7.5473161300324	7.31718771808298	7.91640181050416	8.08266819113542	7.4777731691817	7.66343478408166	7.68232627874445	7.70804044581093	7.58753633183961	7.47883170041134	7.92458049897386	7.47147955591086	7.55923364396532	7.57495511559805	7.67216787937985	7.69386142035264	7.57660952164639	7.37425330750051
+"ACADSB"	7.60167249109965	7.96841731395625	8.49272059228412	7.27268721874409	8.31657426836	6.92007119124133	6.94304157989354	7.69333019043647	7.50693772795617	7.66343869392306	7.93161790237891	7.92959393064336	7.04029151883567	6.84708442934867	7.27948774605071	8.29406393651125	7.73145507590583	8.28296875740319	7.29418444305787	7.96898052257959	7.87263478791552
+"ACADVL"	11.2556438549429	10.2935881569902	10.7295628522366	10.4388892666054	10.0427333652941	10.8864814093402	11.1126606833471	10.7427282268077	10.4388040585276	10.2776374113368	10.3977320071443	9.956980830084	10.489145448707	10.779473308125	10.3028989395896	10.077317451902	10.2729109771344	10.4693161320193	10.5561991606944	10.1881842694993	10.0966028233305
+"ACAN"	6.70264919426901	6.44428007008276	6.28235654927341	6.61761784944872	6.11024362628361	6.9609962690855	7.18988451528503	6.77835977614923	6.46964488619953	6.45441392048063	6.45582094834351	6.58892514325938	6.85276159225379	6.73794067144655	6.81794488788924	6.42716678958973	6.71954927148413	6.51438914514801	6.61343942900879	6.17000009867589	6.50241935670178
+"ACAP2"	8.08926216892351	8.15773873418163	7.9942456395533	8.42596620960485	8.11939485307852	7.61413216041822	7.70738808794863	8.11939485307852	8.42569116632044	7.59170109909468	9.10903817538158	7.6911830878718	8.0857679858343	7.90139485000684	8.57519008817224	8.6100496533087	8.11939485307852	8.53724088369615	8.09264780457016	7.4764753558475	7.94622576062721
+"ACAP3"	9.71681950979006	10.1178781203415	10.3002635420895	9.82888140685422	9.54026856943303	10.3056153503794	9.63741981659753	9.69067386902103	9.7180132283601	9.55227095073597	9.93397434350015	9.63574791666193	9.78921499814328	9.87477761315175	9.49893138925753	10.009617817198	9.71261296987249	9.75892317648603	9.60226985479117	9.77675848663388	9.70303546521781
+"ACAT1"	5.23863607529339	5.23863607529339	5.28797186715044	5.1387930330734	5.17727695306639	4.82543922033105	5.28524591586866	5.28391960985267	5.34161232542072	5.07059484291314	4.94353236858526	5.22482125189488	5.35695456768811	5.55436534940129	5.05956450495855	5.2271134589407	5.23863607529339	5.24821002849896	6.20435711821928	5.08998984620086	5.20547467774465
+"ACAT2"	7.50065352636442	7.73622241059512	7.6555647259768	7.70346522506026	8.24293267197182	8.27804196777393	7.12245996088349	7.63452015447844	7.37906626833111	8.36416746131751	8.07900636162781	8.03376166202012	7.56677435607639	7.32584229263485	7.96187404183968	7.57600555246163	7.83286960633238	8.41415755814756	7.54848263952764	8.22677614309069	8.18020633589853
+"ACBD3"	8.77820574888824	8.78802293821561	8.97125717246922	8.71081608368204	8.94249927011503	8.14959806141601	8.53622472168476	8.92662147328669	8.73175325685781	8.7981404547518	8.99639558421499	8.7731098704082	8.58965135608036	8.36336185380217	8.93126217614531	8.82451219409159	8.62470400180877	9.15218861436281	8.74673540026979	8.82913807796899	8.79226793353156
+"ACBD4"	8.40727154540506	8.5280884818758	8.680938546286	8.55439488032662	8.25304916296953	8.43278390238441	8.58989859558494	8.4337518154166	8.31617481403498	8.34813024635929	8.28765134216463	8.35159268726564	8.64831022551599	8.55912364006163	8.05714093837263	8.30815013557652	8.42815059779369	8.21079958866467	8.4937846409162	8.66436282883333	8.43278390238441
+"ACBD5"	7.20212461139036	7.02507544696864	6.0727748694933	6.88414320807895	6.70147849058785	6.05917010652314	7.44145847388266	7.18443124924803	6.99840568978867	7.12883611563829	7.29130838543349	6.9030008914854	6.82172717916899	7.03884038384939	6.59570704272661	7.01864044926924	6.70118495231485	7.00489239622613	6.91737134392273	6.65426731188295	6.91048041224151
+"ACCS"	7.89345675846234	6.95149303950551	7.51724885974248	6.48736446627437	7.06973921445535	7.27464933373124	6.63834635266641	6.56565347189329	6.61199328951794	7.11613559956521	7.53772544708792	6.79899070635164	6.80203624044039	7.00669928602243	6.4337020633193	6.55072480417803	6.50257533139988	6.80203624044039	6.65630565363759	6.80203624044039	6.78182787288513
+"ACD"	8.26289228161653	8.00939634900932	8.50774786213847	8.04661997882549	8.00939634900932	8.21920899796453	7.72601648896549	8.36749705666998	8.00646580549193	7.96171477946592	8.02685973800025	8.01094243781185	7.60284190460149	7.9471229234032	7.963865189196	7.86489603824043	7.69047467759744	8.21632451483626	8.00939634900932	8.10717513077822	7.98221362009024
+"ACE"	5.50147602788288	5.86735434360045	6.14455950684536	5.88622254546391	5.89708195618327	6.16998469788754	6.41109463787025	5.84989199462538	6.07897676823839	5.8764032616047	5.60324373070147	5.76432875405302	5.88622254546391	5.99100492736284	5.92683044374985	5.39737032459343	5.92346513370268	5.65295908952203	5.74214363205597	5.8377981908125	5.88622254546391
+"ACE2"	3.24457582747792	3.52712266805373	3.49907232928224	3.43359552805148	3.52847896701741	3.94691149704602	3.85100956681582	3.52081092638244	3.43359552805148	3.38815919666752	3.32028970088288	3.5479144359899	3.33419767591567	3.43359552805148	3.0290925479074	3.27141546438193	3.54288613862457	3.3404502796778	3.45759124330526	3.40159485073112	3.30269762995825
+"ACER1"	4.77430784169464	4.83851391392687	4.84827841526204	5.12882334039625	4.76167518541064	4.92537463827765	5.14213622184959	4.77089058483577	5.14785645014479	4.97596243408266	4.75331404873222	4.67483466618285	5.12080265599253	4.72361648103345	5.00504423658008	4.95904208243658	4.88936177279476	4.91708165502444	5.26881620375769	4.7948894048553	4.98398650285993
+"ACER3"	7.40883653086725	7.7736588566829	6.65601323336619	7.16215211825674	6.88061507866207	6.59989514742389	6.70188802820211	7.68987435462424	7.28351225414573	8.23551653675211	8.25082721678122	7.22688840144499	8.37545839725203	7.1767179170012	7.99573443421439	8.65673337527432	7.84040447567583	8.02638155230753	7.31516598704575	7.36088688082487	7.39747229627961
+"ACHE"	5.86683205985025	6.21976314139905	7.02144985006586	6.76889537870552	7.03206956690015	7.04867247816462	6.68039456043357	6.42473606224458	6.52290939276781	6.87869675149334	5.98650352073157	6.56433881184727	7.20443061421886	6.63206615754826	6.28175599182391	5.86683205985025	6.48834957751117	6.55541343581233	6.48242309311761	7.11346990825616	6.94304365397031
+"ACIN1"	8.15217435860316	7.78860241354091	8.09627112209464	8.12166797200786	7.80886970658505	8.19496690663784	8.36888448402277	7.62070106067301	8.0377683403462	7.84282436476035	7.96251829842973	7.47876313534713	8.2406869546806	8.06926913436378	7.97945569495134	7.90218170247844	7.6916045741993	8.1953157298344	8.03327413692665	7.93520597779679	7.84835989071951
+"ACKR1"	8.64242978599354	6.85246569544042	7.17807361292493	7.23961699802846	7.85950112747259	7.93549240314794	6.91483020088841	7.88211123501086	7.25195116841446	7.54965335947817	6.3595704305274	7.93966343799418	7.77198761271735	7.07120727053352	7.09918487724559	6.59111022307344	7.43468804820203	6.91490795163938	6.58721545154708	8.42534323534083	7.34368908793024
+"ACKR2"	5.44216632379867	5.55726177586519	5.2959536581184	5.60489617787937	5.41759730121164	5.50707007137177	5.3342068476764	5.63912971818629	5.63718476848256	5.32368778303744	5.12746650795198	5.11216534696164	5.6935650280939	5.73607262230602	5.40141009611397	5.46492677112873	5.46049976254501	5.32221789466277	5.63180233625507	5.39078825569127	5.54204454290413
+"ACKR3"	8.00188112273335	7.09458216397847	7.30696891453563	6.85142043172629	7.16100815394438	6.69504968904936	7.36519218859199	7.77664594798934	7.36095300623976	6.77715443433977	7.42650963635945	6.50573237448134	6.88878081750615	6.85879343146915	7.15467793586	6.91774628604157	6.90322486700409	7.33027854616708	7.1260180613231	7.41701810377763	6.27549210462646
+"ACLY"	8.50123741724019	8.42669367722477	7.69604716131739	7.95333561798384	8.84678049389224	7.93117285704181	7.96472392569575	8.16353687034325	7.75984640938511	8.93679614231008	8.45619637987695	8.78234422816863	8.22837962186125	7.63049017259328	7.33820724729286	8.57164215655635	8.4679367256223	8.77537633659602	8.13894723065359	9.06056112398719	9.09830946986239
+"ACMSD"	3.65653059714466	3.60632890537885	3.59180011504382	3.58715382574403	3.66249043067709	3.48161192597023	3.65653059714466	3.59086391225974	3.55611366251568	3.59459062903846	3.47657470952327	3.47679678385861	3.62923318081079	3.76106891385656	3.65653059714466	3.8850740509869	3.71391267641781	3.78232493992916	3.4860686478104	3.84447607821437	3.82672040080532
+"ACO1"	4.63203633436273	4.49940973787884	4.27671465435345	4.72750003183987	4.46135208519958	4.50761338705867	4.43854014621972	4.35204624351546	6.31073230267327	4.49589935644462	4.55728585471009	4.4639965426867	4.39893437511516	4.52346340262301	4.47179807334838	4.34057268666813	4.64423178974708	4.35945502209503	4.38835939175245	6.21144385249889	4.34335004899842
+"ACO2"	10.0730175167589	10.4801473130063	10.3985515328944	10.1390189924906	10.6998149773906	9.7126823033252	10.4632843540836	10.5991369311696	10.3127765874202	10.590870941181	10.463592686928	10.4060343062521	10.0618423169885	10.2302607728363	10.1478426991416	10.209264676215	10.3905616511726	10.5096891982727	10.2497769162994	10.7332203767202	10.5305176246148
+"ACOD1"	4.68581170731788	4.87509665386532	4.68526264622973	5.01134376396248	5.0672547607726	5.17602912267402	5.1716869876303	4.8317185577408	4.96626495696408	5.08980574525491	4.90895144177592	5.2775118210477	5.08446108022282	5.00902593144034	5.13226312546674	4.96419157927207	5.14823131254387	4.87573561339841	5.00085833622707	5.00588272800322	5.03101637209362
+"ACOT11"	5.70151389243988	6.08866833249608	6.13211286267092	5.72012537812218	5.18452693321863	4.90751211657488	6.32185705072194	5.73497353767418	5.59617902289891	5.59240830833065	6.3652132182527	5.6076994458278	5.95128058242495	5.48078413069002	5.63989270682337	5.94791943085733	5.49607291855363	5.4771577991936	5.70055990725675	5.42368688596723	5.59054547035426
+"ACOT12"	2.80727337020919	3.0658948789154	3.04385858196007	2.85620211673196	3.0579037973092	3.39416070851871	2.96044971977131	3.04385858196007	3.02668349310352	3.10219658508618	3.02626355327575	3.13310525131298	3.13645256648828	3.15089716846058	3.0579037973092	3.08953804623357	3.01449908281559	2.95998657204285	3.08753501009456	2.93025361191648	2.95894620149217
+"ACOT13"	8.8843343781744	8.64771394119039	8.31183013502396	8.5070230849053	8.9108639043671	7.75998220721024	8.49840752182604	8.91092508103564	8.75092681581864	8.84837036786323	8.57908284612519	8.54834305472706	8.32726514542388	8.33495035239127	8.39231896398426	8.57521656476687	8.30902158323746	8.6357244080306	8.77069494141076	8.8782920870655	8.41405667362387
+"ACOT6"	3.68355101156615	3.76093030444485	3.89358571911225	3.90013181131569	3.89358571911225	3.91924467093372	4.41087827063708	3.91977967638055	3.99509578043743	3.89358571911225	3.65878421289933	3.97882535456508	3.77283496231095	4.02308970002745	3.93022139362071	3.78088074134284	3.95936161917214	3.75001039466816	3.92964095431265	3.74693651493125	3.67224475524409
+"ACOT7"	7.05007997352517	7.55338903176455	7.7626326578552	7.43120576083464	8.93359242178375	7.46881772228642	6.76232973941171	7.58357654902623	7.77576811134443	8.83981693447823	7.51510103010866	8.82219453710216	7.68862046989417	7.14378187559207	7.48040687164655	7.8584448856341	8.09306411619341	8.0436328936385	7.60077508235781	9.27082353044204	8.95234783543847
+"ACOT8"	8.28245237733933	8.05043538969864	8.57946951546452	8.18895805383791	8.38771250682963	8.26858725924846	7.57357968026212	8.20154004499059	8.22978843432602	8.48285056269978	8.0392664651515	8.45358978202599	7.99944106807834	7.99712716626462	8.27252844385966	8.31377216329578	8.16209467643403	8.36761556005766	8.09395794262372	8.89152278238064	8.41304992568083
+"ACOT9"	8.66321702428391	8.19448577257656	7.84851219529122	7.49932639169301	7.98681563030893	7.71755515538265	7.77689680809456	8.34659582020237	7.92657039821047	8.56936710477192	7.89039029973954	8.20517551159669	7.76960064171731	8.12936586778788	7.90520888884896	8.081674515277	8.25734332463282	7.8172228852198	7.95852769079995	8.4054174477277	8.1486755919351
+"ACOX1"	7.67191624878642	7.00181399534022	6.6214400573581	6.61810264808339	7.00005008807297	6.18073867002617	6.97352842920314	7.40133808450103	6.61925720667477	6.40590970628817	6.91296556188826	6.84197817604516	6.17900448064375	6.24332427244828	6.47930780223802	6.73479117756972	6.45179183045525	6.78580488134113	6.59097346253952	7.00753358101122	6.39984735252088
+"ACOX2"	7.2596887710881	6.42955973830883	6.19540763497239	6.27353236904706	5.62463761552528	5.39256889886875	7.16876989881171	6.34609081515866	6.22894975166585	6.12552208993326	6.12552208993326	5.33900661256016	5.82862841460813	5.87985262577887	6.12552208993326	5.93117398469806	5.69260309112501	5.99920519953708	6.17283807524817	6.40533724122691	5.42982167490091
+"ACOX3"	6.37597831206446	6.35655292838312	6.69141615893634	6.03231359043204	6.15244618908797	5.88759026564901	6.06468885538648	6.14210885099371	5.70397225217074	6.05966803499721	5.95659189957797	6.00733324095061	5.93938075683843	6.15324224836451	5.47239276043129	6.20866008511568	5.43258160914314	5.95500603088537	6.0268456023735	6.29079601809376	5.87927420805117
+"ACOXL"	4.6558778665909	4.96782270704568	4.87123364900048	4.82746739733341	4.89890798574263	5.07826028645835	5.59343956434776	4.88175692707423	5.04323377156366	5.0672706723412	4.89861709924623	5.07861711917489	5.22120007751879	5.22209266910451	4.87934514536388	4.95832968940393	5.10584281185262	4.94187158726445	5.10863891638492	5.32845212499563	4.82153932329143
+"ACP1"	9.32542179129534	9.60116310028731	9.57844349947104	9.38846892431032	9.97198239518547	8.72335486037268	8.93929800445321	9.35056132363458	9.56726132485118	9.9392832646589	9.59398048145327	9.77204968389204	9.06170832386147	8.93341215921217	9.28137588827574	9.82606224702311	9.67439008259494	9.85851591928173	9.71401673609086	9.92223289830555	9.93391717188678
+"ACP2"	8.30268144610671	8.21576246808497	8.21206446111781	7.72194998275773	8.11202662646975	7.8513882070532	7.45909137592536	7.68532571593961	7.73302027519519	8.43059052038329	8.08192808105176	8.2324541113477	7.5870552705817	7.69527460309982	7.40749357251713	8.0778924713525	8.03910491035689	7.41501610029427	7.58848618465119	8.70773326198823	8.33794661899952
+"ACP3"	4.88710808964902	5.08046767691731	4.73980808116352	5.0068161918095	4.71963631556825	4.57341129780702	4.88710808964902	4.79814767992321	5.41670435431942	4.81989241701539	4.80208665777843	4.84773187406984	4.84927129955732	4.88710808964902	4.53950263451484	4.88710808964902	4.96556391166245	4.88710808964902	4.8635559957667	4.83851391392687	5.00818437894499
+"ACP4"	6.20250141825504	6.51724251496643	6.36684748168555	6.59055310073378	6.2572397940191	6.28459859710523	6.49465118905311	6.25970597425512	6.50263912683516	6.39964675724309	6.37530177146939	6.59743340209274	6.5755585125957	6.36572414378148	6.42476980751571	6.36191847832597	6.35015811154693	6.29823458488036	6.4312999030734	6.16551775427244	6.47773290220451
+"ACP5"	5.9841263243859	5.84032097084467	5.83438649641965	5.9488206436874	6.02157572737164	6.01106792650475	6.47315579456778	5.9601154404554	6.01779005840685	6.13012840652095	6.33886016808295	6.08265929810505	6.03127455872723	6.22081925815384	5.95054240846128	6.25807604879329	5.86895679332796	5.75699267477794	6.02157572737164	6.14505941677971	5.99185094284378
+"ACP6"	5.56374450958539	6.62390411819871	6.33310415490061	6.5132379669811	6.74283291742948	6.35296946211919	6.75338156751858	6.29474540395143	6.80005458067239	6.33858247236274	5.9841263243859	6.62813450530754	6.86177376632512	6.61387187602141	6.978992820424	6.76655997407461	6.63144202746859	6.34701981685623	6.53851495905203	6.49943871795017	6.66830696176133
+"ACRBP"	4.92330458435023	5.19564834736217	5.26590355278674	5.5921722964154	5.21536693609548	5.98867003137266	5.63282737911643	5.28322836524384	5.64453284022474	5.58435872996778	5.05673429635377	5.48727656267318	5.71958547268597	5.7875422374386	5.30650648409912	5.26145089232015	5.49221726000655	5.21012407278797	5.74415044923097	5.25224465281452	5.32160426160206
+"ACRV1"	5.03534266027381	5.7344943751448	5.57689623942811	5.68680325721449	5.75999274188423	5.54856583236018	5.45668334070842	5.54712357383673	5.65938550213064	5.61139796367532	5.24016097669997	5.7637414832805	5.75463926504783	5.78337990685669	5.8046063198732	5.59825426295675	5.6355314626734	5.46924473932173	5.5433873678975	5.83877177181538	5.84661773542525
+"ACSBG1"	10.3381595311291	10.0323390219678	9.62073471228456	9.44111011783811	9.40435300292059	8.66519921199739	9.99510522119394	10.3247166018239	9.42231141946072	9.46337575994403	10.1939128648346	9.47276866104706	9.00176048994496	9.38675269367823	9.44328366132522	9.45688979469007	9.29166314035761	9.56854029813787	9.37485427390264	9.59807903421093	8.95743912974506
+"ACSBG2"	4.98421502236048	4.83851391392687	4.66262549078128	4.83851391392687	4.811747449226	4.83851391392687	5.17979162671656	4.76363878477608	5.09979268537097	5.00235140072787	4.42751974184066	4.69439369629525	4.86636554065202	5.01095917178747	4.88268268010129	4.86986392122983	4.90979887743712	4.33638784695214	4.58671414981587	5.00431219157295	4.75391176901744
+"ACSF2"	7.98736155632125	6.97372671879338	7.20238379225951	6.68211114251801	6.80128705907523	7.41460788809988	7.6011465436675	7.20306168373587	6.82771224076656	7.07142886319918	6.98760431447075	6.32643132474619	6.72579916631472	7.2645867279058	6.66455544322803	6.67112363202072	6.8848635445188	6.90281607975117	7.14554647135955	7.32370597438526	6.71656169273953
+"ACSF3"	4.4186561086729	4.59867972508526	4.70548325674936	4.7724668187878	4.76125661529464	4.48412159374723	4.7462500892869	4.50257225559448	4.54832370841981	4.74528841372213	4.36369639597174	4.93115362903948	4.58899200981226	4.70548325674936	4.82815734796598	4.90355532869339	4.77294581093768	4.54137198263651	4.71161194803908	4.70548325674936	4.99031328564845
+"ACSL1"	9.41149730390609	8.86327234293861	7.89625791604325	8.55199113561573	8.51411054516411	9.23187191316738	8.13713032614795	9.41103213199027	7.90121080454004	8.6059976161466	9.21899837635753	8.85592571159994	8.31700949970741	8.8197047347404	8.30430464079723	9.70456119631455	9.24267206407913	10.0352002629941	8.8197047347404	8.37423838111802	9.10472849886543
+"ACSL3"	6.10271985819724	6.11198973268639	6.40951619681167	6.06764578049099	6.39034340292062	6.15018062200664	6.01553189604811	6.22390564470481	6.06125912757169	6.13790713765117	6.11505748945997	6.88391475055555	5.82814524986519	5.53236141107649	5.87143673966761	6.18521320970325	6.60549491542337	6.82571806762229	5.9225008941498	5.88194476083525	5.94259995451182
+"ACSL4"	5.28527876802869	5.49130865776282	6.07507593675963	5.80664547578724	5.97395088260108	5.41400920471526	4.45134011333236	5.86651892244148	5.6915264623587	5.72331457032705	5.34410383955148	5.5799880701673	5.88520789335151	5.11002286640309	5.93361638058974	5.52445925133846	5.79165688330376	5.72013962213263	5.86219836836549	5.87073187807429	6.15929487679361
+"ACSL5"	8.95237738845847	6.39843141558481	6.12748422649513	6.75434281506369	6.72002404428087	8.1223168427427	7.32189127570693	7.53894959055437	6.93193539437146	6.78206430457926	6.11094232977321	6.7118693612033	7.05224635229932	7.39920372823402	6.55414679939723	6.10225168327389	6.6692147486289	6.3507022432234	6.3861318254335	7.02388707224847	6.84296936215187
+"ACSL6"	6.30173987123735	7.3833457110496	7.3483151543659	6.949518966787	7.45659370866752	5.08716461204417	6.43582740883613	7.6436767103066	7.05416402567884	7.24376157857496	7.42751376852352	7.22887751667864	6.74962493053794	6.34607233784851	5.9487298280749	6.66123394031226	7.19992852887011	6.71769600226191	6.45527348819951	6.93230705786387	7.5270741533102
+"ACSM1"	4.14852369828511	4.0590645566545	4.35246042051741	4.35246042051741	4.13932123380392	4.38409744050004	4.43751808957827	4.32367270306633	4.58359512828061	4.39900851237613	4.16854355203738	4.3640730685237	4.35246042051741	4.30905570602379	4.41016449365541	4.24357644163551	4.49608202916961	4.44003946948174	4.57845367478741	4.27091390932763	4.44588501441728
+"ACSM2B"	3.83353097716374	3.89068070931413	3.79340624972589	3.8317662330604	3.74116882116895	3.78437334665541	3.92762007172707	3.66392897206246	3.82656545127531	3.68266406929712	3.72553947866262	3.94104822118325	3.75924473472407	4.17717215087726	3.77780471230855	3.78299864070937	3.79039004162473	3.41798111545196	3.64215274961321	3.60441727297178	3.74309744003558
+"ACSM3"	4.61116727816347	4.44381837719563	4.47291151653121	4.43648090497374	4.67514930272691	4.89913346220745	4.80336475998046	4.22134073517978	4.35794210178353	4.29424149813168	3.68588686643644	4.50027435686551	4.25764598741995	4.90809511214322	4.22829413816444	4.25876696217568	4.28605031295278	4.05620112450869	4.46024669414881	4.43997767611285	4.5147202560155
+"ACSM5"	7.78790895608758	6.67177821437633	6.35236049996249	6.6319957537632	6.38094428131044	6.04223161769201	6.9461787839067	6.89426944705634	6.41258652839957	6.19318000168266	6.95525259875924	5.95763333082136	6.16947860193034	6.26635275814611	6.08082746797163	6.307982202069	6.60055975443931	6.08816496489119	6.39318038978625	6.65059337988754	6.37513110945595
+"ACSS1"	9.18090577266561	8.66417270394194	8.74262810288322	8.36905272272698	8.02511992589531	8.14075107587077	9.02953053893243	8.64224726435368	8.21224247389243	8.15019445387218	8.99356228962857	8.36905272272698	7.81523237058003	8.5381189881268	8.12115779643308	8.31959325670064	8.37515863923434	8.43933345352905	8.46460544328875	8.24608751238059	7.51666589696375
+"ACSS2"	8.96786142977161	8.66921935902774	8.75665614332326	8.70317851687907	8.54237362994292	9.42004409632614	8.42445379147425	8.73843466309505	8.57607725302615	8.62751704808669	9.01258431195279	8.63716520978041	8.50805990378832	8.91677205679938	8.79974503065895	9.3286617665417	8.64286225295477	9.43481802104915	8.62366891084034	8.59582407932699	8.67806454268668
+"ACSS3"	8.43527219169128	7.41931081078202	7.73636277095728	7.72228630401869	7.32679091577384	6.00077635795775	8.59148156281006	8.3089696648907	7.90578282933133	6.97872430461072	7.97474137155112	7.34963679005635	7.42609543240481	7.62158827664676	7.93192216016114	6.69928901463835	7.55232798788412	7.49174867319336	8.09511457808365	7.08668720248179	7.15223029850478
+"ACTA1"	4.78994527579389	4.97078882060694	5.21816582622393	5.09568141379141	4.94133696086446	4.88394059159772	4.7570836453386	4.64342115920604	4.97078882060694	5.39149616770525	4.71390006178364	5.07555546258671	5.13254939416289	4.74931475953605	4.96092224634952	4.69216229378838	4.83202986104877	4.46104653773343	5.22842502192622	5.04231532519083	4.97941757307921
+"ACTA2"	9.94105389473732	8.98931785088269	7.90269765474279	8.45495531353364	7.60683537728635	7.43538484601664	7.92115072762006	8.14120302664921	7.31163503257872	8.00975696803198	8.21774584810736	8.19032523786444	7.76650393463779	8.51269582899233	6.96392210450469	7.64131343024215	7.28810886620932	7.89440853351961	8.78274341416967	8.5962341071116	8.06945064834639
+"ACTA2-AS1"	4.30558800532618	4.49497619638741	4.32020294701027	4.61927646149738	4.49497619638741	4.69602544050801	4.38412909736769	4.5899945207622	4.42615608677793	4.54597470348249	4.23578285674661	4.79863242807683	4.63702835878742	4.55843120091677	4.33683212154292	4.31106894650481	4.49497619638741	4.47688913304937	4.5639862362313	4.57589169004959	4.73052043204854
+"ACTB"	12.4850173966464	12.4638046765585	11.4071924011644	12.1342365508963	12.5340474749966	11.643090955613	11.6688319668589	12.2710371392194	11.8160157663617	12.7985376642792	12.6495792117518	12.8993145967871	11.7599849057245	11.4083563839947	10.9695959168354	12.9218235655488	12.3016030838034	12.3384769901605	12.0677113672841	12.9233396001364	12.8799281349604
+"ACTBP9"	6.98090831636467	7.26124092232125	6.64459408899554	7.25847493297193	7.35993249752095	6.71657384125988	6.88753509595382	7.11722132416524	7.11441444850985	7.46629752188851	7.26731453410396	7.46667257491846	7.05440171958288	6.75687616389373	6.4734430756991	7.58299940256959	7.25989536067927	7.08527407302564	6.92669637723023	7.35386447716859	7.74421104431241
+"ACTC1"	6.8135542779583	6.88946769101493	6.69729337973234	6.94370282585637	6.99674018769466	6.28087068419149	6.54903454930507	6.63099167712788	7.09257186920689	7.40296268250291	6.67654712921	6.8883895025359	6.79015666489124	6.87454432148369	6.75835879430565	6.64570427882719	6.96524852149657	6.45192102563677	6.87454432148369	7.07637200547968	7.00396419182779
+"ACTG1P17"	4.99297534955404	5.15972106248813	4.89371303455967	4.89371303455967	4.92954048430687	4.88844213525501	4.73838619348415	4.94044136400204	4.70059265984022	5.12393636189672	5.11664331173249	4.79877053512605	4.77087680447279	4.792041545333	4.61826588574574	5.12101804454412	4.879755604757	4.69407930978773	4.83842280929359	5.04116646311295	4.90019343119712
+"ACTG1P25"	3.85762727268385	3.9264255928713	3.76161065397164	3.98471161068061	4.01438957435757	3.78830177254847	3.8954741766497	4.0348721592853	3.86223541513303	3.95214308226565	3.89095894667064	3.91806613517251	4.06557564433787	4.31826259242082	3.9529767381696	3.98788018316441	3.77272542499735	3.71944685806819	3.91806613517251	3.95945546455716	3.83858249371332
+"ACTG2"	5.55890411844152	5.44508699990084	5.17476846065636	5.50518241737376	5.42629492128275	5.18035884024487	5.33189672059767	5.28565260461668	5.44077569236042	5.47238404453623	5.45834217888475	5.40330342214388	5.36770642377905	5.38881679089147	5.23411653955603	5.13547343498237	5.23514182798187	5.16264002609886	5.91990249821116	5.40022653973374	5.55451806301348
+"ACTL10"	5.50453202860183	5.87392215693814	5.65037583535205	5.84994893055942	5.57856064343884	6.04313421256651	5.94410953245004	5.68252365059641	5.89417062707626	5.87392215693814	5.99329651263935	5.94336781237103	5.83606072780774	5.88239975986415	5.57656190497719	5.78377158834451	5.87392215693814	5.83127806877543	5.92697097900277	5.87392215693814	6.08784304484865
+"ACTL6A"	6.14653397797506	5.28268643269157	4.8395792263003	5.59822287891793	4.73529941902018	5.20137386250831	5.49552830231733	5.45561793194138	5.19491964479134	4.7198295348892	6.12457815171924	4.6114915946386	5.62070623637242	5.33036240519248	5.3393791128267	6.29136562537852	5.04942482604847	5.99458823168701	5.3890986756108	4.66181296409186	5.15954824693267
+"ACTL6B"	6.38892273662363	7.66199128690472	8.28037547342011	7.37808915023156	7.89029747395399	7.43457783026841	6.52983678319547	7.28193154751261	7.93330600489683	8.64153111268424	7.07246453132204	8.61146590294499	7.39037915470621	7.06666761084124	7.4673585799853	7.68309090720545	8.19444407203327	7.73962440766335	7.64883870609251	8.82422472010393	8.57964902677638
+"ACTL7A"	4.8839985688407	4.88798869378356	4.64599454203532	4.95771342590708	5.20582796770954	4.94188015289709	4.98254516896264	4.73643447187079	5.09597638810417	4.95771342590708	4.89881266746345	4.97735182093296	4.97801164673342	4.96687989162366	4.93712554987428	5.11401774962294	4.95771342590708	4.58304325422394	5.03199966834674	4.91512066266508	4.92764084481466
+"ACTL7B"	4.56621258106365	4.84621247665334	4.38862744867169	4.83139130738237	4.37037220219996	4.67614687088557	5.33384378403174	4.75799280259008	4.86361138153057	4.87581584570086	4.62941874325516	4.97399232501515	5.13254939416289	4.6711339121423	5.1273599705139	4.71776622259323	4.78421633930348	4.40114426228569	4.7499145483432	4.85540432663714	4.70657479249058
+"ACTL8"	6.52154452126735	6.43424125557459	6.50793007682194	6.59219254372013	6.50810963221079	7.17706775598973	6.93548557673265	6.51548015428969	6.80259576884194	6.66101691426689	6.36484441290187	6.59352567164686	6.7479933012237	7.0304861174895	6.73551732960833	6.33602959287977	6.76786155021073	6.09119283975406	6.77116566532637	6.62091125481868	6.55553057454139
+"ACTL9"	3.97031768889076	4.16805867130003	4.48924008384927	4.34754901239351	3.98919605671106	4.69050322438175	4.85565761406366	4.2821040634858	4.0886187951294	4.52798406891513	4.34921545494278	4.50027435686551	4.19459828410858	4.34921545494278	4.40915344912174	4.29243939449746	4.35321081953799	4.15386279238165	4.42129975894272	4.30392867758877	4.45740660807066
+"ACTMAP"	7.1100810326869	6.81066268610669	6.74881982255695	6.7907772780761	6.58867737086971	7.06255462605892	6.89950277173478	6.9438132340161	6.48762722929228	6.73324986843164	7.04974532873473	6.62502955665756	6.80428708635561	7.10460047299542	6.22687103603252	7.22087523463106	6.39236087619525	7.36339186436063	6.40923078996112	6.71972850003257	6.6922520012599
+"ACTN1"	9.56211733152156	9.76577768490714	9.94961980072592	10.1032021462885	9.87937579050666	9.87937579050666	9.46112629197913	10.0782341216338	10.1828221488677	9.90411870497799	9.31955402946288	9.92043120287839	10.2896206027945	9.91665275913784	10.2021773373998	8.62164466725037	10.0631147237603	9.48919255514383	9.86187897527322	9.95140144405923	9.90687607513674
+"ACTN2"	6.42920405422123	7.43263661962658	7.21997566062071	6.79696877046717	7.50467473220259	6.62851601728605	6.12527798719111	6.62284698503244	6.91285634018496	7.16903184016095	7.01501856748764	7.40128477564408	6.47154849845084	6.443834933189	6.97440577774541	8.00303083764845	7.40641356430449	7.63375795079711	6.99505818543901	7.48805872669709	7.58819877116462
+"ACTN3"	5.23979485704767	5.18717804155596	5.43300576023898	5.45854187045104	5.26356960537439	5.5545881233427	5.71837996703074	5.35155043390289	5.63058981845374	5.38630060270381	5.31574531496294	5.46824548176755	5.55433711781104	5.52753784792197	5.58665841303602	5.31208041372946	5.42733838510655	5.1682659453053	5.67819952244106	5.30217491239531	5.38869509925811
+"ACTR10"	10.1703869587272	10.4391946010543	10.3838133415496	10.1538613250895	10.7236864758158	9.36764976419129	9.52619323429192	10.1723412056943	10.1811676108467	10.7892640644516	10.2134878018138	10.5157681662127	9.62658936132703	9.48100743395041	9.90782979091444	10.8278767940245	10.0937086693834	10.3962293899679	10.2259607248246	10.6292930490373	10.6462557460966
+"ACTR1A"	9.10994547323356	9.06580420953278	8.87775075445416	8.67881883124825	9.49750590361079	8.58948242741788	8.41526460211944	9.04200204745162	8.54838679531462	9.81295046849254	9.1922330692267	9.69747469333224	8.33911040841364	8.2954631361741	8.40870601619568	9.31684985653635	9.17273188859862	9.15599872411981	8.89831518159871	9.87530221762548	9.8266338634774
+"ACTR2"	8.20630649041253	7.98655408277492	6.32495471884219	7.97020957202418	8.34399579259915	6.98598357753382	7.76935170176116	8.45477684945338	7.90147849266155	8.65015387393981	8.03630719979457	8.38516978279212	7.65519112645325	7.26793429579358	6.90867394832267	7.99782073441673	8.12388307622423	6.96357551753599	7.98655408277492	8.38771444930315	8.81326526664868
+"ACTR3"	7.0736437675001	7.19906674568225	7.4123282846739	6.50098892012118	7.58658959635683	7.35194197245928	6.1393581212396	6.81110916462199	6.69321738251937	6.9804459602418	7.35227299809053	7.04438983649765	6.17678925229697	6.75641855608737	6.77659676563093	7.40605062386684	6.62301757246222	7.61843379106721	6.40150933276168	6.90208518716351	6.71671445386906
+"ACTR3-AS1"	3.7902097970082	3.63380446419854	4.18481308729242	3.71251522390235	4.55618756450569	3.65863651215618	3.72019503062592	3.91977967638055	3.61224917670064	3.95250383826323	3.78876935176997	3.78297888567371	3.73498458080285	3.90801642859778	3.94920180668529	3.84746626312461	3.70489193036189	4.17591651373491	3.89839777003682	3.98700052544992	3.88082436219334
+"ACTR3B"	6.96195143882985	8.02872922295006	8.4316210325207	7.61144214532997	8.61684374534384	7.32867340840639	6.95357205913066	7.93478371637534	8.03318047919257	8.46010433205006	7.74841340226885	8.76578568521976	7.28521090544268	6.72539122108456	7.75936157521946	7.86867788524561	8.40160380356729	8.26720589522342	7.76290251489787	8.82399308793019	8.63874126158671
+"ACTR3C"	5.31201061554129	5.59503679263321	5.65034776702774	5.63920012751215	5.51865145789701	5.50867561096519	5.26265897708434	5.50728577691819	5.46398865923633	5.84744190639141	5.31181556729414	5.37002225521504	5.7410983748173	5.51865145789701	5.22562405984371	5.27918691854958	5.70109107529694	5.43773596423483	5.55877618533485	5.91297807447832	5.68026162049678
+"ACTR3P2"	3.02017608289004	3.19083666701576	2.98228070136061	3.1744852331842	3.06081482724495	2.97097742475787	2.82929741145227	3.06768044864602	3.16788982878291	3.081828861703	2.94906970106365	3.22565377317576	3.11935306626274	3.02017608289004	3.13365664709441	3.17461324481848	3.09146463298794	2.92135934273138	3.162692394995	3.081828861703	3.081828861703
+"ACTR5"	6.27781233286271	6.22060635298131	6.41615218541734	5.95176461965422	6.25161709299677	6.36055058983154	5.52912084195894	6.33486472787957	5.75769569414461	6.43909217491704	6.41302412001373	6.43136840721677	5.48246934839854	6.15482080512287	5.75229674991669	6.83212683237594	6.24970239542986	6.66896499009742	6.16211214284511	6.3891490449573	6.17203003197138
+"ACTR6"	7.41106692797949	7.82920494273863	7.94054843511861	7.81796255099814	8.14687252143649	6.94112329274447	6.70259979533038	7.80124749872009	7.79703416127231	7.84433317440916	7.77239005595409	7.93975863894515	7.72613349148032	6.76068396668204	8.07248742342697	8.09675036546963	7.92502426064909	8.18516896366319	7.82426281211914	7.75434968978102	7.79207726737052
+"ACTR8"	7.33610788482063	7.5286730362294	7.26416484525954	7.12855531498198	7.28410000450742	6.67998114040358	7.26573686777756	7.03892050131657	7.26416484525954	7.35007578731579	7.7727902986099	7.04252205921544	7.06511796944869	7.26416484525954	7.17366160574908	7.64236135725597	6.98637633803486	7.36135161535972	6.90365858856304	7.5139582593123	7.35246282104712
+"ACTRT2"	4.88246528509922	5.0621394301068	5.05497694948843	5.17649557408021	5.08249708374252	5.50937475170781	5.28061759554097	4.78459774746816	5.28851334003626	5.02207407168608	4.61183008444997	5.17325177681981	5.23789471009542	5.23866784527718	4.99910039309659	5.26495507897281	4.77867868365123	4.9169505208033	5.13446059094763	5.20024326759976	5.26943267400841
+"ACTRT3"	4.79506157855074	4.61552486600255	4.90263328791141	5.0598394684389	4.78203700393368	4.92027824194726	4.82661540777374	4.82661540777374	4.61203342093381	5.22802723859978	4.41984065756356	4.65099929867922	5.0579157017459	5.0259663737539	4.76520614646886	4.74714089040026	4.70742628087566	4.52817660748906	4.8160366094497	4.9527149097286	4.94875477529194
+"ACVR1"	8.57476215903463	8.07708482620353	7.60100514949784	7.53876421284667	7.8755072630928	8.31324645673585	7.44828909851236	7.6043075955691	7.74790130752997	7.89925389658496	8.1247652776048	7.09943286969756	8.19432976817101	8.08250683305778	7.63523521782172	7.65856561383587	7.47987451403472	8.13880334615927	7.4026635678859	8.02157546699498	7.70871554286297
+"ACVR1B"	5.87072082206871	5.86008077007649	5.39618755078383	5.85438350365404	6.44313809850416	5.71190839665715	5.75931278972696	5.97540855784878	6.1132152423115	6.85445300655262	5.72371243456281	6.70052456767945	5.9091916028642	5.70468475452527	5.71905381586099	6.01566459615038	6.51344240218417	5.54878572814336	5.55357784219966	6.3967323640423	6.16338232955149
+"ACVR1C"	4.48238857440807	5.45294748166406	5.63262480250029	5.90857016469958	6.1293755134659	5.16605571068937	4.75922201457659	5.10635520224017	6.50612009996409	5.84278002052294	5.62259646278022	5.82998465257818	6.04876897013532	4.79160716490557	5.8446009893148	5.37977025541443	5.91943914209329	6.30103657314583	5.66110470743503	5.4950604624644	5.74445992194678
+"ACVR2A"	6.91399481429651	7.98875449150133	8.40261355589406	8.02294289479769	8.0553760069202	7.73993788931681	7.21958324953346	7.8834060585065	7.96554476215375	7.64707183377394	7.44591112297625	7.8262846937633	7.75495569323009	7.46877853729027	8.08227741728243	7.45736536170105	7.74407407896198	7.86124716005345	7.81137574698461	7.72639490472458	7.44640297142303
+"ACVR2B"	6.3956553130234	6.19785855236571	6.92052715905638	6.46807799598008	6.58897182924065	6.4191613175982	6.45890276894021	6.82390002428263	6.44137555034086	6.02455356371227	6.5505156738301	6.59353515647563	6.05444149822341	6.5793184786918	6.24973546919986	6.46471404926201	6.38390022975561	6.51273000897821	6.19954489325145	6.55815475786374	5.97327626375527
+"ACVR2B-AS1"	5.55341769558655	5.74433437907834	5.69979758686382	5.85211904605522	5.71943708659887	5.54963431043472	5.71943708659887	5.7032009508418	5.57578884141489	6.03193877800661	5.61231273752917	5.71943708659887	5.72981019199878	5.8727610397312	5.6441341293735	5.82648687307589	5.77204145862659	5.32857592899041	5.90796347854909	5.29912752029605	5.82044835985698
+"ACVRL1"	8.67436415139405	6.44850752567761	6.39678121336893	6.62373790735318	6.40174764246245	7.33785971525851	7.08667656647312	6.69265065207063	6.56154437587085	6.54227667825934	6.22142772427606	6.28385227681082	6.91008097711921	7.19911564283242	6.5273611317591	5.95259396098481	6.36153496243364	6.35430717119677	6.62373790735318	6.79618022816845	7.40456769247752
+"ACY3"	6.0368786719015	6.99331754971242	6.3040234018764	6.28822075733353	6.41724718365239	6.32197559786298	6.97138955101477	6.15037052939077	6.65587034022071	6.28961623026924	6.82845742575325	6.22729104293922	6.67386752009858	6.46654086522946	6.24811202026713	6.41151874428857	6.20918314153593	6.68668312457269	6.49616715397319	6.31494403540414	6.67266623143866
+"ACYP1"	7.32759620506476	8.11150801914394	8.21965912037549	8.17247352906794	8.06464104811466	7.66825609022306	7.57945664142349	7.94226864260356	8.3144221416445	8.11191227174377	8.17743958234823	8.3938662715962	8.17275661606545	7.8601506976139	8.48846664481466	8.02095165252212	8.32764094462395	8.31148068676928	8.28401294794127	8.15392493749927	8.14269068940613
+"ACYP2"	8.54802701375851	8.87047572151485	8.65124452374189	8.87407825703593	9.03894296752098	8.21587460850455	8.41592877490987	9.00398668550677	9.14692263649995	9.54104477446248	8.84440227898502	9.19144704070072	8.96756226619534	8.63267129322769	9.18833351457842	8.87450770152446	9.08728962214145	9.49948624469897	9.06480178208459	8.92650354453403	9.35680452225247
+"ADA"	7.19512161097259	7.21438799703804	6.54503450597647	6.78368824280191	6.88794787751089	8.01972249423016	7.60272128340414	7.42125190997809	6.47385134523859	6.44934707605805	7.37302190858925	6.3395284570486	7.2325367102459	7.24934079071722	7.30778006173663	7.79979999144396	6.7346687052722	8.15275951118885	6.95276448759194	6.64164668758457	6.73131274875075
+"ADA2"	9.44105872277006	8.33201041891118	8.04302989785394	7.67163093957109	7.80032321328468	8.07196792203166	7.84189195490748	7.89717505825309	7.54119508733687	7.71118861444059	8.38689888366173	7.28932164810974	7.20693110639885	8.05799592401478	6.96395098306359	8.73701880931764	7.8761329869713	7.65069802478788	7.38309129904373	8.09874512357531	8.31773965904321
+"ADAD1"	4.35896085129991	4.78534038653498	4.58634753111373	4.94496720671455	4.65615904547968	4.84897856134511	4.9860253261445	4.76795821892948	4.76218034426239	4.6164416051162	4.54751080496412	5.0663645280457	4.93592969269097	4.79385627079795	4.73886585723099	4.73886585723099	4.90488286917265	4.48253870421857	4.65615904547968	4.50635098662368	4.76866276281339
+"ADAD2"	6.62492839953599	6.64162297568517	6.76530392775177	6.9604023975415	6.588608195794	7.52292357925749	7.35831141255849	6.7833398391062	6.91979943681675	6.86985287112989	6.60802286033504	6.83205274698356	7.13947010152084	7.19026845929019	6.79441298161163	6.93236037493122	6.93227668459708	6.65714643937982	7.10456893168154	6.83816763373785	6.96216090322734
+"ADAL"	4.7161185853626	4.99759800162627	5.24294705051437	4.96577420473535	5.33829396280852	5.04003097162902	5.56766740235146	5.04099860917145	4.8926673074044	5.01717040469689	5.30061494489171	4.99616015624907	5.0590204476559	4.93660183138593	4.93689958266874	4.96001637203466	4.89388367924923	4.83088792661804	5.26450247187399	5.39576317200021	4.8441139753827
+"ADAM10"	7.00918785951928	6.7977834289223	5.96400290403608	5.98737603366594	6.45446197288689	5.88656894348564	6.00457456699752	6.59746813076105	6.13242620904027	6.44314580791598	7.0958682726446	6.36518168044999	6.01483596684661	5.83248475931933	5.962812278102	7.74050096580308	6.35750610899353	7.54068286154127	6.21132177557653	6.21561546416743	6.43596461565304
+"ADAM11"	6.8534197733934	7.50112073327184	7.5469859383288	7.45581878025838	7.87651387655842	7.47186730205373	6.88649183484536	7.11588844071773	7.50179111060163	7.81804460087478	7.0252679168706	7.91406571608329	7.56538665813662	7.48348123760534	7.28736702841208	7.64171939564776	7.65808877334951	7.3029280993713	7.26099267589268	8.02899226630103	8.2024952090443
+"ADAM12"	4.44059724046853	4.56348282072038	4.37890464533819	4.2493817728559	4.70089891186444	5.1586222548959	4.72222799074604	4.99345254613588	4.50239869378144	4.6786166792638	4.84401728520121	4.71277307095254	4.97509121958254	4.95566034937066	4.67667630755565	5.17172859199116	4.36145677538909	5.99620775800193	4.81860476634011	5.24290874600693	4.3901313144739
+"ADAM15"	8.00313844589684	7.15084647207204	6.46036744593924	6.83070922930912	6.64490206584503	7.02276936721762	7.33539483517969	7.17105939204477	6.42793337235862	6.75751125677883	7.02507544696864	7.02449324139583	6.71891693410393	6.85186015237557	6.41589426922215	7.53884932599657	6.72800370118402	6.97176468753921	6.77967170766585	6.94043917897631	7.00117945824451
+"ADAM17"	5.85886714268308	6.02974776500506	5.66527197731348	6.05032239255146	5.95817683456741	5.63283554068949	6.31372494689085	6.0580826474935	5.60438948122924	5.74663747137761	5.94326164590735	6.03035749887628	5.89936399910445	4.75296444335541	5.78299935690405	6.1042574610935	5.86588884132446	6.1271370630039	5.82750100466961	6.22043384928198	5.88100301763522
+"ADAM19"	5.93480076655054	6.64285488759812	6.89802923457087	6.66353282349015	6.7560431042198	7.5259610805934	6.40790913558414	6.61620117866378	6.64443717067757	6.53925380671176	6.26897869629725	6.35834287662217	6.79903175897608	6.75221648931069	6.74663627401454	6.80810670423529	6.62920341121542	7.31794395315301	6.27225131441596	6.65391998903105	6.46352787504524
+"ADAM20"	4.93863123512971	5.14873718901971	5.08760625354386	5.22831061321592	5.12730854064865	5.50060075080556	5.23549835988879	4.95733708039412	5.23586480856246	5.12730854064865	4.8331444328351	5.03608366461673	5.14755709103591	5.0679517454409	5.12031555410295	5.20716677579879	5.09972733862226	4.86931187925546	5.13623606263037	5.23867958459778	5.04534558198502
+"ADAM21"	4.17824487950038	4.30685483339546	4.06439221227343	4.65633521646796	4.86799166331324	4.16853839914684	3.93818746272324	4.1112004030439	4.56947030708994	4.73150203762978	4.39893437511516	4.54137198263651	4.20964654192166	4.21591894296814	4.54945414707223	4.83851391392687	4.50122099768716	4.31045124082389	4.67606429168771	4.41644281758322	4.59469166005842
+"ADAM22"	8.67103893388148	9.52896514807655	9.86894709536064	9.20699681641844	10.0299830740839	9.24310154171643	8.51756123845509	9.14907343384812	9.89641318896608	9.87133189925905	8.87808233630821	9.9340721380884	9.53436110648436	8.72618904662351	9.80229790754294	9.19223062278	10.0549500398086	9.5236930531511	9.51597526008345	9.91525684444443	9.9505995285143
+"ADAM23"	7.52550373335507	8.64593774058341	9.13431977597271	7.9278087368946	9.36550834339574	7.98302138837841	7.19625039593003	8.10664636472871	8.78624996791478	9.12781019309326	8.07464892106019	9.14029765346801	8.73623139887765	7.67141984592703	9.08420960020975	8.27075228356191	9.49969008140268	8.64593774058341	8.53458579055131	8.97920447417972	9.59203209921752
+"ADAM28"	7.93184219435423	7.27271030710923	5.74338709969078	5.81105028725889	6.67000697181081	6.02070369995435	6.39421758485092	7.10200207719482	6.67000697181081	6.75882461603303	6.75023693635443	5.83429062408348	6.02497997977966	6.79596666342141	5.54611941180493	6.99854987626429	6.46764173426542	7.30637441202357	6.68022288789136	7.18223900947409	6.74411523989293
+"ADAM29"	4.97343109418379	4.8298557697397	4.90458799049406	5.05273155275864	4.96239831495669	5.23734256314218	5.39564916904756	5.25968852158221	5.19973652481879	4.66556334516546	4.77782678681614	4.85229129335709	5.21379156186975	5.47359765379962	5.09158535843697	4.7939943459758	4.97343109418379	4.7187320312469	4.9617954849917	4.91265469410226	4.91539886654795
+"ADAM30"	4.72585821532508	4.86351705735105	4.91977818398181	5.03030837431343	4.86691518695364	5.57309234537174	5.1746058785798	4.93905391030377	5.082796848049	4.99031202683366	4.8503262908364	4.97798170405006	5.14937853784037	5.01347302095679	5.02456925031709	4.92402282522182	5.05285774901239	4.59091094795694	4.97454164571476	5.03531742348405	4.75391176901744
+"ADAM33"	7.61143415920558	6.27580215003386	6.3914273843693	6.55650045939706	5.661994491298	6.30997109772858	7.0796859312911	6.51669274696749	7.14538003160842	7.35785085850952	6.60356231220913	6.36425460628456	7.07902654355862	7.09596690856355	6.7086206416704	6.24606957027382	6.55760306617614	6.0907960379207	6.95370952812564	7.26094805264272	6.27611250893669
+"ADAM3A"	3.58575172306026	3.65619980853958	3.68398328232462	3.85461398735854	3.76584059829221	3.68163439492604	3.64412061090917	3.54819034127872	3.57541533789643	3.71416760744319	3.75798628312936	3.81988996133648	3.73595986103569	3.68398328232462	3.73131917088879	3.55133146094305	3.91012199332779	3.49484224667358	3.52646191980167	3.7893945783658	3.63139898091559
+"ADAM5"	4.82379686139643	4.80525469655155	4.70256188942853	4.8927095062873	4.81476927901602	4.82255418563632	5.03232028659682	4.63003430981934	4.74052899588457	4.97736170163696	4.61725707716048	4.79915230767889	4.65380172718403	5.036056547652	4.7724649437172	4.84404396014211	4.77060455400813	4.58391213774402	4.63003430981934	4.8141228366987	4.73056134192502
+"ADAM7"	3.11065019511973	2.84308943440306	3.11065019511973	2.99262439152742	3.03210142594065	3.44439986220681	3.22966840618344	3.07864951779937	3.22725413864781	3.13645256648828	2.85956438943867	3.17389427036006	3.11423275409142	3.11065019511973	3.09900453182134	2.82208343675669	3.07714251975623	2.86943734584551	3.32273215137755	3.29897211231119	3.1998925136729
+"ADAM7-AS2"	3.99134127786909	4.01352624387127	4.05473763002037	4.00171171488096	4.02308605133924	3.98279445683283	4.01804147385032	3.72736678078807	3.91419841686809	4.1592076396302	4.01352624387127	4.11584030670568	3.9401552169933	3.98023403089304	4.00617054057753	4.08950244132383	4.12285302806674	4.01862190658004	4.01352624387127	4.05823209195714	4.21749257809528
+"ADAM8"	4.99942775806555	5.20942833536239	5.09122390903668	5.53569236320718	5.23735010224044	5.37417530051797	5.80791514878284	5.25505716440529	5.56556721175003	5.38196574559011	5.23735010224044	5.7637414832805	5.71871011077108	5.82541462409318	5.32181302365593	5.3988264589125	5.43300576023898	5.2051803601227	5.49296288527729	5.29441119148089	5.59556461271753
+"ADAM9"	7.38976564818278	6.86065637362294	5.967501515615	6.40466408091235	6.76193972165006	6.08361367529484	6.86065637362294	7.3448444354451	6.66734654118737	7.17365367380282	7.07434482976466	7.04548801097923	6.60114425045188	6.25035178452685	6.19673618734859	7.10749563969638	7.07334152617498	7.39056654110422	6.8330403485596	7.14113096478395	7.2045616505805
+"ADAMDEC1"	3.01565371472498	3.09768978315225	3.25392379147884	2.99081067507619	3.0868448784333	3.11039984283196	3.09436293317502	3.43725914945337	2.98674133862734	3.10445188916792	3.00968883572818	3.05356831819614	3.07630583740724	3.17505815500549	3.10445188916792	3.09559428223891	3.19310500302735	2.98073613511573	3.12134775472086	3.0768461069553	3.14150465226646
+"ADAMTS1"	10.050127859275	8.16724314179793	7.54446405953	7.97513008347534	7.97065575676035	10.2451156349936	7.35969871721245	9.76743416805454	7.27960375296394	7.67459169996619	8.77048676549572	7.96071830650402	8.25175544007417	7.78301608844881	8.19361416749723	8.34917679917593	8.94669063886242	8.9177410203238	8.34306896794661	7.88165639467965	8.38348365009038
+"ADAMTS10"	8.307933372418	8.38227435274195	8.68935382049868	8.6997436287718	8.28527233822711	9.2803444495408	9.5081765316613	8.51937790885956	8.80046100084591	8.58538778062212	8.27082853257684	8.56571474914738	8.95526198417525	9.2209486063629	8.7083916004789	8.09458793600818	8.51799043933971	8.06329965467611	8.85201033704845	8.63861038848301	8.35311533795636
+"ADAMTS12"	4.95811632733739	5.12593684319866	5.06581372913902	5.4119208559002	5.14423083047835	5.13585250057063	5.25118678776487	5.0906546037711	4.86919747816485	5.08889654735526	5.08610613927076	5.12746650795198	5.23816575270116	5.34808086598143	4.95167958604244	5.10050304169266	5.12746650795198	4.85678149659	5.23816575270116	5.23434720628505	4.91137503643651
+"ADAMTS14"	6.49245189744966	6.76095622744766	6.66268403238982	7.0046372559164	6.39779349595428	7.02583310020611	6.62875171226049	6.59092108679583	6.49601828553617	6.62960266489475	7.25886386951828	6.79744037072652	6.84376926749776	6.7212393040021	6.50199091574483	8.08616715713665	6.46086926349671	6.99841927402003	6.86807368955043	6.33259443896475	6.91708795960262
+"ADAMTS15"	4.10126630938905	5.03449085021134	4.61840335319363	5.03146224494142	4.45181170357321	5.02911786542874	4.99973697454763	4.76898125678417	4.73693259459463	5.13702998494163	4.5979566680646	4.78848193079716	4.97776044821391	5.19631362686498	4.54633377789638	4.41325501822661	4.83081951991558	4.36407463335114	4.91195924602937	5.7668121545289	4.66517266901019
+"ADAMTS16"	6.04413477981287	5.67593138489352	6.02174265048586	6.08228006783329	5.77127192872887	6.33623866884029	6.60386786240756	5.80581698188377	6.08097005696062	6.09726282226715	5.86411767172255	5.83700019066507	6.03741242719436	6.10797456932898	5.85966627859731	5.50818936919319	5.82641980042646	5.93964528748646	5.96400573440911	5.92629138398769	5.76556239581695
+"ADAMTS16-DT"	4.32768674983503	4.69895205803882	5.18618536790485	4.73981107992286	4.67126949306664	4.54394845975192	5.0941809304721	4.69895205803882	4.67330492209023	4.75636073771842	4.46132710443456	4.75429996587998	4.69895205803882	4.94337106559346	4.71159395479957	4.5626608423337	4.99169548668545	4.4972579038822	4.61284354163675	4.51675291141419	4.7096388695463
+"ADAMTS17"	5.30825166806071	5.54687435654571	5.20014991659017	5.2908709986534	5.53362207856636	5.21177736863107	5.09193518786847	5.09188237346621	5.49083588696141	5.03485355610057	5.16470048002513	4.91512066266508	5.39974112875291	5.48166004995059	5.2226485266109	5.02086213571519	5.30244655467032	4.89478022081704	5.20014991659017	4.77099105249044	4.91035606265179
+"ADAMTS18"	4.90303354353304	6.23402678222336	5.93962092412313	5.7031310520236	6.46317551595007	8.25842691042165	5.24694539843234	5.70638488748316	5.45299173078838	5.85037860556996	5.32252099121544	5.89602612634691	5.39448241590564	6.00806198868373	5.5491625587604	9.2803154762472	6.30442004015492	9.97660697537369	5.99306990481596	5.49905981342661	5.39596704536305
+"ADAMTS19"	5.2272095405193	5.08243153989682	6.0370956235491	5.34206471072471	5.52531146114226	5.34212065200945	4.72984515446621	5.62289542299681	5.29788517056203	5.18773931652038	5.18496557118214	5.28323531965351	5.16731661965038	5.25653355471054	5.29264413013754	5.02872823349687	5.23232351698409	5.12092810123839	5.2272095405193	5.38028288454554	5.04045662574191
+"ADAMTS2"	7.28753601306233	5.63410419251032	7.21632744860002	7.67613481754074	6.74692646818025	8.12543012049013	6.38586673202084	7.0688051605549	8.10900412292203	7.64116951406823	6.32889491394042	7.27957065994104	7.70218148370747	7.4629673001238	7.86642258291867	6.16621029200931	7.89417196139399	6.99035352657923	7.3688508627612	7.38581471717803	7.36254805174028
+"ADAMTS20"	3.1544149063617	3.31200842651634	3.20941757777996	3.48912542635206	3.26891949944579	3.41164786327949	3.53652584645969	3.35895362262619	3.45714974912001	3.42598080769835	3.45506750027482	3.45714974912001	3.33419767591567	3.5444938857236	3.26295130404472	3.28173794149508	3.52642592245211	3.35895362262619	3.47460871671873	3.38873591261926	3.4624964680908
+"ADAMTS3"	4.30909399364933	5.23792316971132	6.99769895641739	5.64901798851847	6.46740029836918	4.81816032781646	4.53114084358962	5.23389961059546	6.22586891704203	5.55890411844152	5.21639794395199	5.73723865549501	5.19714123537623	5.08434163260989	4.90076883482757	4.77789826950888	5.62229611354135	5.4278569615331	5.59231547705313	6.73135236254241	5.73363979379829
+"ADAMTS4"	5.92399564417414	6.03225899335856	5.73971809950586	6.11873968436888	5.75906982676686	5.69050004291591	5.88490396230616	6.3570571530748	5.80868202421989	6.10932010415434	6.01271945337171	6.01783882919657	5.95374681626869	5.73516092919123	5.8046063198732	6.3152997801735	6.06616898477031	5.74352776239508	5.94334052593464	5.77740263747385	6.06570148903573
+"ADAMTS5"	3.72015383802523	4.22382819483811	4.17271495032611	4.05412579075747	4.40455215235248	4.13559873322917	4.03127329334396	3.89785243790348	4.0912169822079	4.07157315473114	4.07792606942969	3.77163664864451	4.07792606942969	4.23157512524489	4.13029513326367	4.52967399270842	4.1338155390393	3.99355894292255	4.01400934178905	4.96293711506051	3.92408674738599
+"ADAMTS6"	4.1342765216056	3.91937586844196	4.24682115857078	3.94954094524847	4.07792606942969	4.53324268831783	3.89877833080119	3.970057740719	3.89581485421599	3.95980691649727	3.95184369533274	3.8375693059025	4.19463935442494	4.37020793150843	4.07237434308271	4.01427305640163	4.01705718912773	3.99927593744546	4.00088224676212	4.21790811893026	3.99419903819124
+"ADAMTS7"	5.61033544240488	5.65126439506809	5.62595520875618	5.83483902162649	5.66730126976222	6.22510709198636	6.07268435487408	5.52769929297884	5.8704121990033	5.93493798339942	5.64023250870637	5.67659706349348	6.05438075194485	5.87415726918524	5.56346874905691	5.55388810979988	5.95001584206114	5.59586840119116	5.71011156651643	5.50916452132547	5.94308823683513
+"ADAMTS8"	6.54433048032164	6.89867294776818	7.19893730852206	6.66576122473134	6.87980403148404	6.45384869385577	6.16158385768716	6.15349601155541	6.54701756097357	6.83948281039118	6.79115863531415	7.01278589595584	6.73815490363936	6.61649237852547	6.49105388861823	7.25289547660226	6.53255253562163	7.23895067532055	6.46370011357605	7.36318784595971	6.65472930318804
+"ADAMTS9"	7.47888697098668	5.28698158103156	4.93050010754125	5.46049976254501	5.08162613920704	7.79934920754406	4.97996265113183	7.19037636620246	5.02255446720074	5.14290539493191	5.14297055926202	6.86131757842923	5.44399010694691	5.30414423973762	5.17354415569045	5.40635938866884	6.81685656320364	5.01081626940263	5.46049976254501	5.33633999760304	5.82498983316103
+"ADAMTS9-AS1"	3.5118576957512	3.05959066406502	2.96289169045176	3.06431458652283	3.03687059983144	3.17994410610421	3.06876449458992	3.42733288305214	3.30197427762968	3.04603883394011	2.98329465574991	3.2719571006808	3.1835459119323	3.29900775625933	3.11950823403743	2.9786474083949	3.02703590609677	3.1109744141649	3.07988253187153	3.18720375163747	3.29741235653006
+"ADAMTS9-AS2"	7.35577841156389	6.43434898559585	7.30838052386398	7.14009735750138	6.84979045564501	7.16820330689593	6.94747223969946	7.49425689616572	7.45116282787197	7.01215635548544	6.62249009445852	7.14787283952984	6.95315903904111	7.15939405566913	7.00740669197549	6.34438126745298	7.14889960353564	6.56705322083808	7.01661116399222	7.08984210096996	6.51561374797587
+"ADAMTSL1"	5.08961543800521	5.49477410962731	5.74702270702417	5.42468421641434	5.87253079259676	5.7453338318284	5.76965762408397	5.54593343519761	5.60164450564103	5.60965502770468	5.37842224072824	5.47735283540759	5.50527368992992	5.54450087133998	5.63004396814823	5.25991709156851	5.68374879989452	5.36067337644226	5.57614926539671	5.4461307185509	5.75489211814704
+"ADAMTSL2"	5.61933027840655	5.78407369079501	6.3213834638982	6.04987549466856	5.97531019294998	6.40509946000025	6.94225545484436	5.85102660887592	6.16254221951777	6.04358770183941	5.70230056550291	5.76232142543483	6.18656919558866	6.29596594874095	5.79439442882583	5.80197592515424	5.84261345919629	6.39487517988831	6.04619096145435	6.42464931077102	5.90548650475066
+"ADAMTSL4"	5.85340337965682	4.98214674470502	4.74870525622594	4.88837276157902	4.97078882060694	5.12421834933287	5.09106328592462	5.39529127108358	4.70868931112268	4.71822395526969	4.67843117977205	5.27331015424838	5.02480333474418	4.82643817503583	4.67507630272961	4.97078882060694	4.86406362725754	4.43748415462534	5.07302541192521	5.61641619640992	5.04561369725387
+"ADAMTSL4-AS2"	5.77001484075164	5.78918992038646	5.77001484075164	5.82926121606087	5.62824965526543	5.62271483226614	5.99648759134358	5.83409272753245	5.56041961903857	5.7966446191453	5.77001484075164	5.67301981375579	5.84350317607224	6.200071639698	5.69706808071343	5.84885980175997	5.69853290647151	5.93640748489562	5.8389319587131	5.35942327137714	5.65263111781115
+"ADAMTSL5"	5.53105197227135	5.67193313290703	5.47822905292099	5.7849637082839	5.22794797946287	5.99540610155568	6.4813816100819	5.73971809950586	5.75999274188423	5.67193313290703	5.21017371155749	5.81439665249	5.96082493392603	5.79976601284619	5.78034859524127	5.59256565848175	5.67193313290703	5.34893225448825	5.48270667978417	5.67593138489352	5.71696234520057
+"ADAP2"	7.65449301794282	7.26831024118101	7.01672889049077	6.80116969120503	7.0376794812935	7.23691410664977	7.3355656591962	6.72141440861458	6.56921998079376	6.87651630975738	7.32615135786068	6.02881564200251	6.92941096603984	7.39704958145222	7.1685543840208	7.35413173736757	6.39921594836169	6.69778681918263	6.81511242448504	7.25609788588084	7.26309580900048
+"ADAR"	10.8279772873543	10.5883264977976	11.0017592141804	10.525691381316	10.8455111715462	10.7309855329633	10.4896344656797	10.8187776068109	10.8834997842564	10.8999548854007	10.6407490502242	10.7450736941443	10.5923463562567	10.5110953264362	10.4712007379468	10.699302554637	10.7560504297669	10.8987458175935	10.558019330593	11.0343282840577	10.9272693868402
+"ADARB1"	7.75970290701227	8.11178859124344	8.82056332588401	8.08322947436561	8.74704888503037	7.99383027422847	7.5670563398829	8.09120147346751	8.60824365862915	8.71834995504306	7.87311283814835	8.47731935028175	8.43179978348063	7.92185732834339	8.25386822159565	7.6133881042291	8.54461262366668	8.20975363874854	7.90896949704284	8.89609197769871	8.58568101042811
+"ADARB2"	8.92712805917353	7.52715244025032	6.85271069095417	7.41465143794072	7.092479924104	7.31702810210508	7.20439645710579	7.24504986726535	6.90755106016282	7.20021433340101	7.74855967619992	7.353779405646	6.32922025958061	7.80095462512628	6.93498855516637	7.09254825229681	7.21661233735906	8.90606876344905	7.57936689217539	7.00014973615533	6.22262782849576
+"ADARB2-AS1"	7.29714069510528	7.55169283738852	6.86553400806662	7.41723095882787	7.27028092361175	7.4981260395813	7.17189326348289	7.03886688565042	7.12114481153377	7.42038950099937	7.4964536597202	7.22887751667864	7.18894363642089	7.41478375422657	7.1060972370486	7.51268143236954	7.41551282651669	7.03765532330781	7.30514243608946	7.01259252668167	7.35692527060075
+"ADAT1"	7.84027812986067	7.96652036743431	7.55540651376481	7.58125864605892	7.64229451496567	7.11405385793062	7.2663168073884	7.27263131536736	7.7344987042676	7.97939156142518	8.08902663845933	7.80969289726796	7.96354099533904	7.69142310357884	7.83838471359494	8.15581293496879	7.58993260200547	8.10731820618879	7.83535338371945	8.39531935509292	7.91888282168113
+"ADAT2"	4.70197356370734	4.84066644399949	5.27991789483301	4.83253003256814	5.01665181717496	4.69297179974339	4.54637427717188	4.74474514317599	4.84454055926157	4.74687803156437	4.75391399421147	4.74687803156437	4.49850912333571	4.55595088461913	4.72083029964895	4.91248277560481	4.65244588945493	5.20206448029449	4.47741573501761	4.99155739662506	4.84811264263228
+"ADCK1"	7.61905159016598	7.80233694477762	8.11188734222074	7.62664192195277	8.15326318352048	8.42449258201885	7.70160283460722	7.57394593534028	7.69373674771583	7.83568965650917	7.6922357696404	7.83031720712268	7.88223435464714	7.90180768291218	7.70964280169785	8.33392040023953	7.80337533696131	8.2625008386506	7.8078192026119	7.80826869235113	7.68100870770554
+"ADCK2"	7.64919946370764	7.86684248825706	7.76965639835236	7.83098223575113	8.23096626671237	7.87097156715705	7.48416855625652	7.76602486807961	7.79464664400536	8.14121185884672	7.85854048163096	8.06712639042951	7.57601325785755	7.564439365701	7.73924394534555	8.21992773120305	8.00422860653071	8.30603091259673	7.84223911570746	8.35591502465517	8.18348433239587
+"ADCY1"	6.68509787492854	7.05581168230269	6.55125398862241	6.93235777097571	7.55282336672078	5.95926270418606	6.10110096895838	6.82874968810965	7.20670557514591	7.90262061972533	6.5793184786918	8.04364204448055	6.70025548352653	6.29421773361498	6.78953578471793	7.30910039229855	7.67471558567873	7.05581168230269	7.2557378104016	7.96413703258458	8.38390304686737
+"ADCY10"	4.17282136800785	4.27144444037946	4.47442253593592	4.44708809221718	4.52346340262301	4.75405751950732	4.76465205861304	4.61552486600255	4.61552486600255	4.72165637080763	4.57766462638432	4.6408189358762	4.65026210851135	4.83851391392687	4.75494901906736	4.57018250120868	4.3947830710194	4.6264511168775	4.6209904395737	4.61552486600255	4.71054395753109
+"ADCY10P1"	7.77203482116786	6.81161462120256	6.69986388061975	6.86547290432043	6.54552589476384	7.37323952222154	7.44551301090319	7.01585275400906	6.98271001592649	6.16037764689133	7.12650964638445	6.46061529163956	7.17061690642	7.17254006859627	6.98073042575214	7.90849714068281	6.77859986251897	8.17233902837732	6.96090673228171	6.16621148930534	6.49102632339526
+"ADCY2"	8.60407024002942	7.48778537161324	6.22275779008637	7.28853805487333	7.11207031634501	5.93893957871764	7.6882098196746	7.91388303050988	7.27129780307389	7.65559656897238	7.27129780307389	7.69491534581032	6.62792281902949	6.54566174171438	6.55537642612616	6.81294338801741	7.34708236550218	6.46498350946306	7.29909092602678	7.54583912648351	7.2523312560033
+"ADCY3"	7.84264315860468	7.55722839812903	7.55536642738593	7.74332611796793	7.75747047657509	7.69675599213217	7.05432472125734	7.67636258918535	7.39972694715055	7.93171034786645	7.14630127469178	7.92148871999669	7.45323952961196	7.24886685721491	7.08117408928397	7.64512554406535	7.74642474475649	8.09845873586559	7.58868779495254	8.36551600433261	8.02587869289798
+"ADCY5"	7.48002211484443	7.89427742927587	8.16193967714467	7.78439340191595	8.02728585201392	8.10475918550367	7.5355155295419	7.80482448578792	7.89378583686279	7.94413091904671	7.63787974822105	7.84820789578672	7.6935123025251	7.81831969596766	7.61758639579544	8.02082038142369	7.82143338664233	8.25650176341665	7.65547559419651	8.03633626249534	7.79945910653145
+"ADCY6"	4.28150546924668	4.40567015038536	4.30390742818104	4.48101624424806	4.3096983785023	4.62576977196262	4.41921780117707	4.21150347642824	4.5012668369402	4.37556084621062	4.20057811324954	4.66735042697205	4.44604176259624	4.89641929681709	4.41016449365541	4.16298697747816	4.45316325581514	4.03979539245002	4.55630006655404	4.44599194340262	4.41499783331415
+"ADCY6-DT"	4.05626290987269	4.12939385756265	4.21269877405786	4.34227119376949	4.21269877405786	4.05918390940908	4.44619137789474	4.1406501684265	4.17754624446265	4.1363153113128	4.24033184453534	4.09021584534398	4.17810334850891	4.31396175564262	4.1406501684265	4.14234915995348	4.03912653186408	4.1406501684265	4.1406501684265	4.12590318330011	3.95031062631972
+"ADCY7"	6.62266892338297	6.29048015624745	5.91848838458128	6.25807666459182	5.94588267272315	5.77872950452485	6.22818858788416	5.89386136908106	5.91052327060141	5.31062978257363	6.12220692814415	4.78584622855274	6.58916832828632	6.04058231028851	5.96028768442705	6.30434453319141	5.67707097732757	6.31272471296501	6.17178509523508	6.20704784584491	6.11266580450912
+"ADCY8"	8.29384365879622	7.10820372332312	7.41086343631909	7.24728142271755	7.32310578140932	7.3770937917336	8.09954508996952	7.35409619167874	7.49976865508552	7.37676309773443	8.19462886835685	7.3770937917336	7.52243453996932	7.18043409065196	7.39155188982518	6.81836504689738	7.15693864194323	7.25323473745961	7.56982705594102	7.48666876780338	7.23165706436705
+"ADCY9"	8.45236592561512	8.21622290054896	8.52918298977023	8.49586982473933	8.42582056128031	8.57020688891407	8.0703230055145	8.48266180545036	8.97599949650898	8.270517432589	7.69763259900303	7.9838462664078	8.82471843963729	8.52865974711814	8.80076564332259	7.26243862556457	8.54621395284579	8.16147416313631	8.0722722751678	8.22023749064379	8.40037741470946
+"ADCYAP1"	4.53035515372816	5.87890243675184	6.74724415525194	5.15206540802591	6.47096087425943	4.76551932277483	4.31844538136532	5.79719431560467	4.91903943777894	5.17432474534881	4.53063546435169	5.14842396624412	4.74412552647046	4.72153978763043	4.76340800447695	5.10050304169266	6.51293387173376	5.02911786542874	4.97941920713636	6.82048189317368	4.90292519930062
+"ADCYAP1R1"	7.44943541086629	7.42444244186323	5.93109626585495	6.58903938312977	6.18200436274889	5.80679527094892	7.04636100767408	7.43718688278101	6.81393011638755	6.90289282147955	7.21538534102002	6.67761765678423	6.32647910415505	6.0589308492963	5.69150540726875	5.98260754539025	6.73807331472682	5.68252365059641	6.94920086482515	6.67893268109479	6.07856770928537
+"ADD1"	10.8209792562525	10.3702618984148	10.6245264834553	10.0958856431982	10.482185053271	10.4733604283975	10.4453377904334	10.5610837505508	10.1680993571381	10.3535020608589	10.38498813703	10.4339053768552	9.82941892120422	10.0441909583617	9.96139049712502	10.353140997761	10.3799617074404	10.9118198843617	10.1178277520035	10.6309449421674	10.2934187123318
+"ADD2"	5.80268883818067	6.65507483796642	7.56678011302684	7.06204790862196	7.6334132274565	7.35343839465922	6.60270225197663	6.9987149182538	7.3295208782914	7.45217932362583	6.4877520389015	7.46028597493108	7.06204790862196	6.6377972540324	7.11352527453294	6.5258963533309	7.09044205675844	6.99657763184013	7.02892318023667	7.67465725240794	7.18473994684138
+"ADD3"	12.0470361875062	11.8660577440003	11.1841348454582	11.4776000936827	11.4969756832847	10.6205930667581	11.8507473509091	11.8834977628271	11.4135915737166	11.1466884734223	12.15168968325	11.3736282752944	11.1423389290824	11.7988091373658	11.2237100247622	11.457684076169	11.451447066738	11.5343504461483	11.7992845642123	11.2951123256974	11.0791520316535
+"ADD3-AS1"	5.06853137509907	5.26265897708434	5.23110920686585	4.81664414617332	5.19369470691307	4.66913174342599	4.83024549259234	4.96217347735637	4.87226700812306	4.50728064495137	5.75624285148729	4.60103320342958	4.25964472169835	5.03256595106673	4.73878253918719	5.15589478734988	4.69370716187193	4.68878752922069	4.72568360525684	4.70831837823265	4.66044447411148
+"ADGB"	3.05052419962355	3.00093061873064	3.10286633671339	3.03246441295881	2.94746089819481	3.27322129377257	3.27088355493495	3.20333562556395	3.04307901497847	3.03179879520927	3.30682329388062	2.9764876494083	3.0579037973092	3.54543164216267	2.955212351114	3.08210952273455	2.89354809900978	2.99430890210658	2.93413831357758	3.09522228612115	3.08210952273455
+"ADGB-DT"	5.17202793751522	5.39218036229573	4.86656085278424	5.27646120617813	5.152463286025	5.25349856402213	5.26265897708434	5.18137484080848	5.27270879796582	5.26567042943084	5.07871676973425	5.19153858200867	5.28987763168269	5.17050554979583	5.21294188835986	5.29824817180771	5.2166314155792	4.74814668263573	5.10875381307382	5.09213252225531	5.34078062873715
+"ADGRA1"	7.45879888706556	7.95268485788069	8.59265556490421	7.81541842294116	8.27492998673919	8.15836819863139	7.76788229218288	7.682870365319	7.78001199059332	7.94685386075034	7.47367920327856	8.05182944163498	7.99263318962682	7.83428755099581	7.92875803584812	7.37457376497755	7.99540992388601	7.63276170685877	7.59606560738854	8.38262705469723	8.11244544898137
+"ADGRA2"	8.43901322303271	7.47478427673256	7.35970887246236	7.3902874206373	7.3159596876233	7.73973153651945	7.81550195340488	7.1084344873005	7.42462549240639	7.45324843368589	7.4001184343043	7.2622088565597	7.85464388958476	8.10287101499704	7.30271856490672	6.97369058951765	7.41090929844571	6.92004692657045	7.38837407766815	7.92315157061392	7.27967074882376
+"ADGRA3"	9.55868756126642	9.27499408278589	8.87393665684722	8.94319767290379	8.45485293711958	7.38207981831057	9.36612738984866	9.1930264336815	8.65244013284563	8.32512107450708	9.38553604180309	8.3935152091419	8.72820420800721	8.32821235259945	8.7389171359998	8.44972327783088	8.67053563576199	8.59801747838004	8.80750069743588	8.45578095214525	8.01471884484022
+"ADGRB1"	7.06709491208478	7.19608448173357	7.53677106927393	7.43637287761969	7.13753972504123	7.59392583938937	7.44411892626183	7.2925042553457	7.46516176304648	7.10144388731879	6.99690803241151	7.11669741682012	7.64506891768577	7.44589288286356	7.38392755286531	6.66744826708672	7.36222758723468	7.03664969129838	7.22344341120522	7.19988270135648	7.35981522127119
+"ADGRB2"	9.04131314298204	9.5133166963623	9.98086518974451	9.54061412864258	9.73467547532996	9.46744978514354	9.52742805018409	9.32326485834336	9.39500283015908	9.58309427216021	9.13807878033225	9.50231351400473	9.61295057578924	9.48069312407662	9.14650395951256	8.92839987564638	9.48195977755275	9.50577437379845	9.3787877717457	9.82620493443944	9.52321332382804
+"ADGRB3"	8.96727310861786	9.76236368845472	9.7049941822208	9.47769793439192	10.0123644831238	8.9418785478355	8.72230990070674	9.78290223226291	10.0399174495093	9.85011898143151	9.25382839334333	9.94594042681946	9.16872068464265	8.87008995961692	9.7490574731345	9.14398619834864	9.96809989445095	9.43850756637995	9.70610680403126	9.68840436644222	9.58926774091381
+"ADGRB3-DT"	7.88334029687762	9.00564171661569	9.70054641020101	7.90092991897857	8.86039795676189	8.03622999142141	7.3470630711694	8.76710117919526	8.3857535730053	8.17210086668461	8.86367432657909	8.40631554914392	7.86421713319646	8.04617301784607	7.58489756604401	8.31700949970741	8.82205355854833	8.7718921922542	8.06901274040778	8.4034177675742	8.21543941753039
+"ADGRD1"	5.65859932677994	4.96032619284452	4.570913255069	4.87178155670733	4.82998859555617	5.0778849054015	4.79166946104927	5.66186445178059	4.50949781870039	4.82347828960185	4.63023366329134	4.45757690829544	5.0575604656741	5.43464665812654	4.74122558007933	4.02256697375041	5.13363167848787	4.24033533765474	4.08841948699571	4.3761592625393	4.79621578218669
+"ADGRD2"	7.59117702991057	7.84223911570746	8.03090525827657	7.90047250498727	7.59341055249146	8.35086099941393	8.87389992394902	7.78384908446475	7.90880384355783	8.00137560540562	7.86352393855399	7.89860237907183	8.10714356356511	8.36414955567225	7.98958522569484	7.72047415637152	8.02552127432488	7.59380118698349	8.14801936414292	8.06055208489293	7.96306903700149
+"ADGRE1"	6.48659855365978	5.27850991453882	5.12588360173541	5.4550230689438	5.34015531459206	5.23961330687153	5.35182985730693	5.73117993644686	5.2058556652401	5.1994202337602	4.82167909666743	5.55585932960428	5.35182985730693	5.76796146025222	5.36954943738177	5.16745113762457	5.5130178610298	4.98062527092225	5.56676893988078	5.02724438788711	5.76500536145535
+"ADGRE2"	5.83688391899772	4.78275752693234	4.70487235148272	4.66479193471829	4.75799280259008	6.04994373964248	4.41337478694329	5.70160846141557	4.99878599761738	4.94825463985521	4.55737721947821	4.93481203054932	4.87217001315961	4.87469512837161	4.94128352315544	5.19388371848417	5.0770600617689	5.2753594697702	4.75799280259008	4.97808546410614	5.67297169643681
+"ADGRE3"	4.22957772578945	4.48904941157541	4.42478777635778	4.38868458282386	4.2233946961564	4.45227481993848	4.20640980578422	4.36250508826587	4.36498275378242	4.42590663666915	4.39873774996914	4.26237605910758	4.49497619638741	4.81662973764214	4.42521613639543	4.73842690845241	4.47042915046897	4.33525509875202	4.34753628339747	4.35415226248077	4.54405544121823
+"ADGRE5"	7.09973759523713	6.46602931492898	6.55468281999552	5.66992429180902	6.43224142969941	7.05379840042126	6.21179554901786	6.21422578127127	5.83851322096555	6.23662267723548	6.75878060415813	6.16727593591969	6.02370878157956	6.32406946888777	5.59903217989477	7.13957483496864	6.13532566456764	7.32694825540482	5.79976601284619	6.31946411537033	6.42955973830883
+"ADGRF1"	5.0358470404579	4.95271006890043	4.86988294516851	5.05049977212106	4.86691687071429	5.58661620490969	5.80824238292124	4.82484083632988	5.30283750765359	5.09122390903668	4.84870006563341	5.44014855612504	5.18619130836844	5.34956304387601	4.87731955559286	4.75799280259008	5.12171929200736	5.09122390903668	5.07144102154528	5.22457349994573	4.86988294516851
+"ADGRF2"	3.44843731610509	3.43075197119073	3.70262705445283	3.55314800567488	3.59130551910796	3.87365432992726	4.03727593620776	3.58849460622507	3.70577579879609	3.79239215981336	3.41127366380009	3.55653253691641	3.65377219208063	3.73543238412871	3.3932115525595	3.43561657898329	3.58849460622507	3.34298323220845	3.42444232623288	3.54886124558016	3.58289492345288
+"ADGRF3"	5.60783761893639	5.85082767884764	5.77978640875862	5.94347749257532	5.80260065179913	5.90827736161748	6.29509604037368	5.9322943097422	5.93261611713933	5.74651936864362	5.83000479657575	5.86579141346512	5.93644266739387	5.98372861177182	6.0271496202818	5.79198114240456	5.86823482052134	5.47542763050103	5.83802440622755	5.76938996238068	5.88256438743002
+"ADGRF4"	4.79449749536103	4.81330593595902	4.60702923753097	4.59478359440292	4.75057836857167	4.4698895223793	4.56972824567972	4.88175692707423	4.89491830300229	4.72083029964895	4.72083029964895	4.60620251978129	4.72083029964895	4.67784765753054	4.72083029964895	4.93778468877771	4.93885658821241	4.48977483937368	4.66317037937965	4.7333739628002	4.77935320213529
+"ADGRF5"	9.72416577778443	8.5581375791649	8.15242140857816	8.49173120718209	8.38757368284476	9.06042070723564	8.70298248720164	8.73445524948923	8.52411712819973	8.09569834567152	8.49967817322239	8.13742092908187	8.86006397282125	9.23009787053521	7.87642252375477	7.71484472519078	8.38187120521535	8.24533467082069	8.12337989458619	8.24906745473043	7.89860237907183
+"ADGRF5-AS1"	4.55851718192291	4.45910761774405	4.39631788577031	4.41269422868969	4.41821771666326	4.26401310062427	4.63207675389331	4.4243114022179	4.57452650210716	4.57512919121534	4.14766503319478	4.48014212225738	4.64174594347385	4.46425993483033	4.70519928877861	4.48294631150322	4.65616361314753	4.30537502512474	4.44176400213792	4.31287045348795	4.42586176725551
+"ADGRG1"	9.37638413118123	8.9732339834521	8.07736415113854	8.87163580122986	8.4481064555708	8.07797753552902	9.09917809751646	9.27483448213602	8.49244998227919	9.07632202408782	9.02745438421435	9.50664992383668	8.67560901246012	8.5237176992618	7.95528374223176	8.3126946547683	8.78464397771821	8.41179882128466	8.34370389189437	9.17751275934717	8.95641689605762
+"ADGRG2"	4.390687706716	4.57235991802375	4.36448959763263	4.82172732982816	4.42720027069409	4.57553074256269	4.47150835258285	4.53196424323654	4.70542973983795	4.54532639109932	4.20954984641821	4.63445811704958	4.80419531992814	4.81458097663018	4.40197988412299	4.65619870813265	4.5165781350257	4.49820703465771	4.46314414370243	5.09675879369371	4.4198832865516
+"ADGRG3"	6.09623493779139	5.91998879234965	5.84692224068959	5.97615732185271	5.84312664290861	6.0793293934617	6.85933161351282	6.04349573455981	5.9712555186241	6.25836345274237	5.87494810882707	6.21500855920273	6.22655164358394	6.22252446899197	6.06408261971549	5.93302738804022	6.19447461799653	5.58833404164946	6.26807425735041	6.21275022750103	6.08891802101102
+"ADGRG4"	3.89763261335593	3.96660465155351	3.94947849532218	4.14361989992278	4.11441863304596	4.41684209887718	4.264798912395	4.03788873850781	3.94487176611484	4.02621752039822	4.09237099561811	3.88122381823942	4.20954984641821	4.19774714089078	4.26980178500161	4.26697610393493	3.99948816993116	3.94241702993558	4.02621752039822	3.83699280647183	4.02621752039822
+"ADGRG5"	4.18885930034561	4.29424623803166	4.33078922601982	4.29350520794468	3.9270579280259	3.96696290897302	4.21293773136495	4.12777015249672	4.21971147402758	4.25562083820636	4.30161093437792	4.41971392759259	4.77089909409107	4.34921545494278	4.26450895242297	4.39427310901606	4.51575548873346	4.22976487402365	4.65150694210673	4.40272799673001	4.30161093437792
+"ADGRG6"	5.96377924365015	4.94219664639446	4.69520810791931	4.40975611340668	4.10497962399358	5.33358936572871	4.50910357912392	5.07153558713092	4.26920102128111	4.90245612599875	4.27784037450937	4.33354094822647	4.891431597517	4.94025690417638	4.8668825346893	4.45779745883793	4.80325945419544	4.92915141543287	5.0383382381155	5.82837126397795	4.69683282406733
+"ADGRG7"	3.21317574982065	3.53031155366049	3.49230775288789	3.35019738557762	3.39264454395258	3.37162834704064	3.48401303533419	3.18233269117188	3.30052234573295	3.40987914166903	3.25792401063299	3.36560010406572	3.50855443773299	3.52622820239605	3.41047797209228	3.25024843917652	3.52259019343559	3.18536288546108	3.34576704759543	3.24918593826639	3.37162834704064
+"ADGRL2"	7.64552801718353	7.96875310643136	8.32042713301479	8.16191373571936	8.40112982115277	7.945004080941	6.80313380468457	8.1900402525207	8.49244998227919	8.29549042152893	7.24111873548574	8.36614822515552	8.3100612453608	7.74139672420057	8.60617754707593	7.32011566812257	8.52078388956486	7.71391924333809	7.95570909199491	8.50639066036386	8.39920456668996
+"ADGRL3"	7.54643132457143	7.84794586526397	8.62787481707711	8.18394011023168	8.35120113343022	7.69204161045002	8.01389872780487	8.13828516522462	8.77132754521498	8.25539472221498	7.49639477140128	8.19972925633014	8.13114899323723	7.86545099491375	8.93304420866001	7.39163578917994	8.69681969976902	8.14038532384231	8.52342303412746	8.44476566641903	8.34368877961816
+"ADGRL4"	7.46988032223165	5.42077243571029	5.4974999218132	6.03260544460879	5.75004731028341	7.64631507824631	5.99745849624052	6.79781199360545	5.8704121990033	5.62924485172858	5.68996416488147	5.72089089161741	6.63004665453294	6.79246315162059	6.1226305103145	5.39765080241033	5.72558353528687	5.67307586353045	5.87493364108015	5.87131530283301	5.91988298819762
+"ADGRV1"	8.3444162559648	7.24404007166041	7.14544865350116	6.53961314499771	5.95860797680939	4.40703178494161	6.62210799313906	6.59858801060223	6.7289020025915	6.49423943161767	6.80297424174105	6.12233590861124	6.13065945701223	6.3036354801158	6.12192632940625	6.59961768944278	6.54875429761859	6.17896360119906	6.32727570717054	6.28597482922035	5.45274664692574
+"ADH1A"	4.35758352637068	4.39515686790026	4.65365728954284	4.47281203588894	4.78777589336448	4.70442382018678	4.81720519984763	4.49008176145483	4.5354241262487	4.39719234054123	4.26756831480255	4.5354241262487	4.37321949457976	4.4981061057626	4.75358993439253	4.42895353193111	4.42016415958347	4.55188703643097	4.58114013166788	4.74078570571323	4.49008176145483
+"ADH1B"	6.06425536978966	4.60424547235668	3.84179810022593	4.97417497495052	4.65372445182867	4.65433684120842	5.13063522806286	6.25975585486541	4.96385191169033	6.08862611156906	4.14492787339455	5.25144978254676	4.53202454289782	6.36931940278207	4.30510743651094	4.48383505583575	4.46497854238098	4.08033337816278	5.2940448639697	7.16185335343875	4.68632559416268
+"ADH1C"	3.59065574153786	3.47115147475991	3.47349529015641	3.53543479806388	3.59222776405588	3.76383283252809	3.59035006425724	3.58173966474091	3.59222776405588	3.92620206419492	3.59222776405588	3.64449053998406	3.67350486783617	3.88595430133643	3.59518264268502	3.60728687186105	3.59114279037934	3.45372895834848	3.66814491429865	3.65646960505139	3.72000330795457
+"ADH4"	7.14019706353686	7.29117221017076	7.39203344121551	7.49181430730022	7.01147493041909	7.54789260233733	7.32412814438754	7.44071893597704	7.34072823300983	7.09263849614573	7.35592929390203	7.19628832014134	7.57033836675737	7.29261837641913	7.61467296731506	7.24442315030921	7.28690825539113	7.12675151977952	7.26314934700441	6.94643976101619	7.17120866950748
+"ADH5"	9.33901523364179	9.38564869512918	9.24881976813124	9.25601021768088	9.31209641121723	7.84271744685691	8.92787286330283	9.58092501041449	9.2407277779246	9.08986660157138	9.51059995478457	8.93064474619424	8.78362115836013	8.73565103996146	8.82604215776355	9.10520756031431	9.07412153820678	9.0393283613427	9.31997317165467	9.08349474197796	8.77673622964555
+"ADH6"	4.41579918336801	4.70027236563927	4.45577176056681	4.77391548284192	4.39490766649954	4.42242482960609	4.93183408559379	4.56221370413486	4.92941514670884	4.81363027678406	4.56095544725568	4.63461267287396	4.79911872137277	4.56807800679941	4.71672414257471	4.64751364395046	4.72083029964895	4.10467775808625	4.63189390555307	4.60926949437511	4.736580006413
+"ADH7"	3.9526432462815	4.02224898595962	4.08054150138251	4.12304669138955	3.99031459345538	3.95340001037721	3.91977967638055	4.06239889745532	3.87993000749154	4.20377116846195	3.91352750195008	4.34773322355885	4.38547112881434	4.14614985749216	4.05897922644843	4.06994131688668	4.12455446196928	4.01562436602286	4.06239889745532	3.95823335003595	4.31503744550267
+"ADHFE1"	8.7340260378733	8.93297756286096	8.67820439698179	8.06170885481152	8.10207086810965	8.10249609103111	8.35446735739307	8.72284611605363	7.64467670414392	8.2041922926885	8.80418816794931	8.34727934651167	7.50521173072784	8.00619340059111	7.2281074133284	8.3614717284929	7.90345309737575	8.81731659351248	7.83551375459307	8.45775289881106	7.65539748875453
+"ADIG"	5.91485332630148	6.13591621959149	6.11918762573098	6.36488141244738	6.04225942393379	6.22496624270867	6.59219254372013	5.86720297176907	6.56189675044036	6.20834615549909	5.98325875595327	6.24005275356003	6.26690882677525	6.5143677742767	6.23103116109414	6.18804448466321	6.2775742785139	5.7458362348229	6.48967442739047	6.12675023272152	6.27724493397963
+"ADIPOQ"	3.11134643898142	3.04726212053327	3.0567328099172	3.35800665759617	3.22669862477545	3.51705423879426	3.1875330300956	3.27937179474046	3.3479316507323	2.9835177108062	2.91474909828601	3.37466081090877	3.25410887935732	3.48462216342131	3.17060261855207	3.14919240839127	3.08163524336461	3.1875330300956	3.05914070323244	3.04725441752665	3.07114714404964
+"ADIPOR1"	9.17346596651447	9.08413259466936	8.81274224002329	9.03433781629951	9.17363356776642	8.86433063802135	8.96070923441325	9.16169714500552	8.99997011610513	8.91373840335147	9.11827435121181	9.07524893445379	8.9788243753101	8.83581447922319	8.82649282236726	9.30745566757972	9.07937410369128	9.24388707282392	9.08166907283853	9.13639654071137	9.03815191377587
+"ADIRF"	9.99484641699748	8.90608147927683	9.04997493360532	8.63382060828248	8.74677477202337	9.72162698929091	9.37151025729133	9.17853224517937	8.90804621991998	8.69452130751209	9.49516405680975	8.0759626954188	8.764741497914	9.14558938074859	9.2417140489549	8.12050642089936	8.3849605014618	7.7740351923062	8.6785323228244	8.42116453867141	7.45835380324792
+"ADIRF-AS1"	6.29079601809376	6.05253870505962	6.18800875900575	6.56573612754658	6.28985747365034	6.36117477459582	6.31528494376732	6.37081202349136	6.44891224546446	6.46507067455619	6.17396006613004	6.75994422522308	6.33996500478271	6.75311538006656	6.51429812640917	6.31131157767549	6.33996500478271	5.88090888010447	6.64432208753458	6.17960136815629	6.35021479707401
+"ADISSP"	7.57616574868179	7.16156195150111	7.26466182807107	7.06391353481301	6.9772552979767	7.00053590262576	6.78879266925716	7.00851951266849	7.02712340619152	7.34857960905046	7.29441022862078	7.2210707769658	7.03222920521359	6.58545609874857	7.02304227000672	7.11677952737617	7.16995056065602	7.26324559875185	7.00076218818964	7.68502276739232	7.50595947168516
+"ADK"	8.5984124140775	8.70861920938906	8.2706629929269	8.38459538744953	8.79899372531187	8.04184535994093	8.23954706012338	8.70993615517284	8.63063481670055	9.20704645255816	8.62855929749265	9.14184952382275	8.19000681128294	8.16702206411211	8.56295270156021	8.69602416006765	8.76924740369357	8.69207467014216	8.76552345071799	9.13717526168812	8.65958510820728
+"ADM"	7.11447161277361	6.18932975220813	6.60424680594401	6.94238899203355	6.47537336491931	8.07547936744262	7.74476629793692	7.8075860230237	6.91438709392853	8.70446901155666	6.89668436548137	7.0140291292727	7.63018721774638	6.96095321101228	8.53784425814807	8.9747755816727	8.83735686169656	6.92473142934194	7.79504814679376	9.36376964222778	8.49434973338551
+"ADM2"	6.49124976720373	6.62765034140336	6.67549188605178	6.78493756193266	6.65710896593321	6.91007739963035	6.76407146268058	6.52796907784557	6.91159809796107	6.86808301080335	6.82818123527491	6.77491946340342	6.91592572185085	6.8607579777081	6.83054971935561	6.7626603366274	6.90549151737634	6.55418093333351	6.77491946340342	6.70579919937004	6.86956079720868
+"ADM5"	6.58444949614676	6.45718866223775	6.48704437999154	6.60188015265186	6.32497677029587	7.02084951295858	6.83819987643627	6.2580006642413	6.45937489600235	6.57471354000352	6.27315404524988	6.33054199862554	6.6557584604457	6.77525152751033	6.59273873893194	6.14819284821974	6.33388383894062	6.32542219640732	6.49648069658796	6.29205758978222	6.31427120920043
+"ADNP"	9.20688431481296	8.96997176105429	9.0665313501049	9.02290602311788	9.08654146778722	8.75430283957264	8.78418744017182	9.10518951722082	9.12278032697319	8.92072595139609	9.03642017268876	8.58882279920062	8.56446241248445	8.65982234081265	9.12628356686771	9.20779327796086	8.90318298189631	9.27012734813253	9.04233441605115	8.98679039615453	8.71802370581316
+"ADNP2"	8.06347314017149	7.96752836697934	8.2896506728765	7.75755712481007	8.16249949913811	7.94728082314805	7.52359290640951	8.21066373242418	7.55535333958982	8.02890832523171	7.90761380141864	7.98888373849839	7.35314368176253	7.3651261113759	7.87349041846301	8.08931147139947	7.97850753734696	8.32986764771376	7.78402769650343	8.07695649931891	7.74823351983672
+"ADO"	7.47503447819421	7.78418948017672	8.00539155117176	7.56106723754371	7.98922369022827	7.65229718348311	7.21632141344401	7.34423313583814	7.52583829024892	7.63425043570484	7.81248617241479	7.30755355459429	7.46708592457996	7.30344068064619	7.82055414014339	8.5520321529047	7.64614413059765	8.6247425488664	7.47826781107466	7.75216576813649	7.56866257295461
+"ADORA1"	8.07916440367681	8.83357563161196	8.9426960723057	8.66960976223056	9.03291077015887	9.15181211209758	8.8255755198788	8.48546437050522	8.50511531514961	8.88495396428725	8.9594059056244	8.73634208066392	8.83332447709103	8.81279807756805	8.93483797022541	9.40358284435378	8.543993524369	9.29539955098052	8.32342581137269	8.86505511712213	8.89284774734865
+"ADORA2A-AS1"	5.38143036669467	5.4381982605741	5.5870556122857	5.61850910447107	5.54132130573749	5.49944358367513	5.54975462043445	5.43236187360688	5.43236187360688	5.32656757372034	5.19258735913729	5.34889386236714	5.32268747205847	5.85155562313401	5.50232211162852	5.29925767869101	5.40067998337791	5.11709479820368	5.35184668030029	5.48880773715254	5.43236187360688
+"ADORA2B"	7.91001813479351	8.24567267008105	7.61229928933642	8.17147600770936	7.42710190164022	6.29037998105307	8.38064860965962	9.31114524369462	8.41652790294142	7.98287975207661	7.60763476657983	7.56649786558305	7.69464276163353	7.78630976954081	8.12649822980153	6.53337455902504	8.0926497175673	6.87188679138745	8.160668985138	8.23472990613859	7.6010527685715
+"ADORA3"	8.29431386184626	7.67767124808201	6.01886929305381	7.06717999913554	7.10753017551224	6.59191340274615	7.52153424348037	6.89513765141923	7.22611565797533	7.20346614286036	7.09293859981998	5.99669857819758	7.40451916379633	7.95699931849038	7.02494521181822	7.52360991236492	6.48156280695987	7.16233307507733	7.60932935835989	7.76762642110445	7.98871075466554
+"ADPGK"	6.63990232882144	6.50864653153082	6.215132217474	6.32979778079884	6.67652789037612	6.27937951968215	6.18681104063747	6.23840944194748	5.8812045003534	6.75751125677883	6.64613000632075	6.4423847142821	5.98203652195362	5.99177330749822	5.70075077040844	7.01661116399222	6.4423847142821	6.79296129583566	6.4423847142821	6.62940269017409	6.91358383851435
+"ADPRH"	6.46395313084196	6.30965046082965	5.5025580114009	6.22711676241055	6.03795646402897	6.59672884275148	6.55922462368689	6.1707958290243	6.22228623744097	6.22228623744097	5.96118582928058	6.08807087865863	6.3474122644816	6.46668132970692	6.33826500249025	6.55384501285163	6.33130540929765	5.80869323801478	6.37747645397583	6.21387909431361	6.3209067716935
+"ADPRHL1"	6.88906866519447	7.15466228660775	7.2397145158366	7.17678770000059	7.71211405012962	7.3188617012991	7.15337330307467	6.97896005521461	7.3730503757451	7.82139186226485	6.87123426410499	7.56386568455809	7.29782990459131	7.01289236700537	7.3590389670227	6.9296829321201	7.54289494633838	7.00027484322162	7.25914377205044	7.45506743508184	7.5949922305062
+"ADPRM"	6.23776841265415	6.42794749783889	5.88123952653496	5.78359024906832	6.60247651241986	5.69772139196203	6.06005022333754	6.30742303155334	6.15828201504529	6.55095150357277	6.51285157999862	6.12382346197112	5.60336450453176	5.90727697701622	5.84617301864976	6.900120890169	6.14060900854697	6.45745490358553	6.47142267911098	6.55601903875816	6.41201208040782
+"ADPRS"	8.84918665139654	8.78200416766098	9.02027839858906	8.58265786712288	8.7389171359998	8.79968650257264	8.16892383204467	8.40827394790839	8.45167083643784	8.64181581497673	9.0335368749695	8.17600003732195	8.47305405514694	8.66260321196426	8.61079022131186	9.41243157820089	8.31610431659372	9.25448071669086	8.44629666347907	8.80500298126683	8.71633726227033
+"ADRA1A"	6.66152057898585	6.25213880676902	6.04280954042589	6.20554953089613	6.40115315322117	5.99232384528524	6.92941727194282	7.03859897395349	6.11779918445763	6.28944218871947	6.74589827206401	6.25256561523732	6.32433468944862	5.94868911636991	6.11779918445763	5.89303720225822	6.29143131715562	6.2241550159122	6.34818096364423	6.37530529597372	6.22436321691284
+"ADRA1B"	4.85246597055884	4.93454994003792	5.30324826373296	5.15421464215208	5.53620400961511	5.32978952603402	5.47542763050103	4.96361070173292	5.08645740868175	5.41162288422138	5.12431025789315	5.27106637956688	5.09122390903668	5.13512532960298	5.01728460890796	4.94987525603407	5.05853522529787	4.81475162013743	4.99312742550762	5.4271485375338	5.35670972226072
+"ADRA1D"	4.14653279552657	4.12484937989616	4.36002812208758	4.29938893389525	4.36992954360184	4.47370382145743	4.50140451039041	4.17318564575345	4.47105272002065	4.57900092927281	4.17418022088214	4.36002812208758	4.48646762204458	4.31805542198554	4.40784177802744	4.06139938560571	4.38429658415596	3.95227946906542	4.66124087142173	4.70676629884461	4.56577209243802
+"ADRA2A"	6.25685347844539	6.40353251880475	6.81049166803057	5.68052495242276	6.68958955473605	6.7882932219884	5.49034268406301	5.60234740594195	6.22159998340026	6.03488454742869	6.11665611701498	5.92532131804116	5.78762554750955	6.17007248696622	5.83777689955182	5.81936429626455	6.04692015970001	6.06067423379304	5.75817239283329	6.59589948518535	6.2030763496523
+"ADRA2B"	5.82568234745169	6.15653043579855	6.19586638164331	6.13927583705724	5.88418406950067	6.69634731080283	6.5472373158718	6.21999196525569	6.14294543736892	6.1618116766749	5.91634987278314	6.25021354026499	6.14658297918172	6.73833579171416	6.1120224847872	6.11871346946774	6.00495245662473	5.91450516216152	6.30855420524419	5.81403097316221	6.14214476769302
+"ADRA2C"	6.91087702128256	6.79953555535629	7.14544865350116	7.3137039715396	6.76826527863109	7.38719641248661	7.45502676702811	7.04996573576117	7.2210707769658	6.94797443424538	6.8377301580686	7.07641234631417	7.32093693816028	7.4023797591711	7.21485235444312	6.65659119728682	7.10997926300561	6.66191455457458	7.21376915152103	7.16364146458638	6.90857642747681
+"ADRB1"	8.92440586678847	8.71839888055453	8.99757897146025	9.03817424951048	8.92090661493278	8.31558793942018	8.82132086950949	8.90368511930001	9.41310331207627	8.53009216505951	7.98628586697858	8.43897908772435	9.19092990505068	8.40909475624387	9.55931720797578	7.43623129210373	9.01334764831613	8.36628753625429	8.62063462108645	8.65431680482048	8.75331883454738
+"ADRB2"	6.63029698403884	6.61881367058518	6.22001817872267	6.44831685618865	5.9743436879444	5.858225826088	6.75369649905545	6.93306039036595	5.67780745357948	6.12796578137082	6.75010845582481	5.65909954655608	6.13163799504633	6.51279813054589	6.28514223216395	6.68902887265913	5.62084135975453	6.44582337805356	5.91331598408384	6.51614851640217	6.50633158091348
+"ADRB3"	5.98504821168088	6.23931787909425	6.15842630055754	6.18902521443021	6.14166405584301	6.30039694207202	6.82086485154473	6.14311711861758	6.08054810561468	6.19039494706335	6.21499265541124	6.22617045629426	6.24132040243013	6.52274958522429	6.11973034819511	6.05383390295724	6.23040261429691	6.14125212184595	6.34598821041505	6.09716305398148	6.25465562233869
+"ADRM1"	8.71000746617602	8.48384042539815	8.73214438618199	8.43035575392555	8.7331167846027	9.06553716722587	8.619199327495	8.41667257496592	8.42656283581241	8.88097588153135	8.61450376478063	8.60435526919751	8.49783014874567	8.62538329894432	8.33337048455516	8.66200240980688	8.43721601571421	8.93324879285009	8.26469834121735	8.81604823974416	8.75204263510694
+"ADSS1"	6.82296817658074	6.95117148830053	6.48306564340622	6.3206997435658	7.07633239222136	6.90237709266814	7.02550461688466	6.45163276710381	6.21942307748564	6.65405303059368	6.80067095148751	6.38463380462656	6.02265178776147	6.7142118531805	6.4064927551589	7.54802241591236	6.6143375056452	7.61307187351626	6.38558530760034	6.92260870986526	6.5856974902549
+"ADSS2"	7.97957168670133	8.70606282538055	8.5596623711941	8.30513937697362	8.70112576794586	8.01014827385452	7.05992433105747	7.7445813167601	7.86466129135498	8.49790984507457	8.70683981575086	8.39316129248573	8.32535261093453	7.51932035865017	8.04795533018557	9.22099732773209	8.24993555953779	9.13675769803872	8.08383817991758	8.3948194672164	8.74892463554029
+"ADTRP"	5.41566494169252	5.99718712898005	6.72411001006446	5.46682532804899	6.25463980556325	6.24192916019731	5.87275755679131	5.52732261788584	5.374224106346	5.69058011877604	5.7213897052567	5.68513215593359	5.5941733389914	5.78505507002882	5.73515674076718	5.99877991368596	5.53933340626834	5.85607296980042	5.81747218284655	6.2461391698273	5.78505507002882
+"AEBP1"	9.6164454867743	8.56916598908091	8.15466038227467	8.21749496884047	7.83179503443324	6.83626146535432	9.14692498234851	8.80592438479476	7.97332046790513	8.44524841800912	9.01251257387205	8.33399133688886	8.06201489010932	8.03639646663311	7.85228632905974	8.31144895630066	7.91004749809815	7.86583721361592	8.42652915202197	8.44260880563915	7.78044437365691
+"AEBP2"	7.49966622448012	7.82878003561563	7.8465826667484	8.4091203090487	7.87440813212574	7.3138738823832	7.58963162759805	7.64453919576361	8.18053162298176	7.90759336130193	7.9500707707217	7.57834472341847	8.4312505210864	7.64735549865331	8.46673410586836	7.87654279109974	8.05248988268752	7.92020921446888	8.16876049989833	7.69559836656923	7.89860237907183
+"AEN"	7.31062657875002	7.04621224190393	7.16505978221128	7.40158507186622	7.03793998870541	7.73410823949464	7.85565746931532	7.35972438883483	7.23614461361416	7.35972438883483	7.34227980073963	7.39836107200823	7.56671399404858	7.57584016684483	7.39155188982518	7.20160046509388	7.29284330591131	7.15349476256095	7.6131791599134	7.19004092453018	7.42139872512794
+"AFAP1"	3.15257383878802	3.13250259727322	3.78898222985436	3.15739310748834	3.18404779816901	3.1976051540923	3.11239254052194	3.25937764495328	3.26867547974022	3.2519979851772	3.05768570676437	3.11239254052194	3.4353694942396	3.22370786088142	3.310981658513	3.15828382342225	3.17308174625344	3.19013935873175	3.12594989644522	3.47406467765541	3.09444440841962
+"AFAP1-AS1"	5.01414913372909	5.37558919412173	5.13160427634725	5.51339588434512	5.50477628405447	5.86716007233556	5.54747546605346	5.17670625864838	5.52244309778124	5.33428994027628	4.71721641242413	5.2565992282526	5.31307299517649	5.59140381272771	5.21117516782827	5.31730919846428	5.30743269803575	5.03029891046164	5.52183277009759	5.1829357417459	5.31730919846428
+"AFAP1L1"	5.50492497278215	4.70806319206891	4.40827564418163	4.85797387033997	4.49497619638741	5.27665603244818	4.48730766433141	5.02053643735958	4.61252315175093	4.77810718277884	4.75799280259008	4.74454450567034	4.88767598364787	5.12258120232629	4.96866690464053	4.45098570805465	4.94035437834155	4.56257806271038	4.57961755919419	5.83876938214854	4.72919905651307
+"AFAP1L2"	6.46886950588064	6.11169307691453	5.86372337380386	6.12407769121289	6.37516415327123	6.08578240300568	6.51566985326603	5.82390658140313	6.18175074806511	6.55146437538724	6.14714667061021	5.93201927067623	6.65267334037618	6.65249266737256	6.3042975156586	5.84489598032955	6.08614241741954	6.03928167270153	5.6547084762382	6.29692766908023	6.08851270440683
+"AFDN"	5.36953092862777	4.48779337588062	4.61456901841975	4.92345489856081	4.83098163007934	4.94645568392624	5.1997176905954	4.92173664174838	4.35938475971179	5.12305840733969	5.19427244768956	5.05108007990599	4.44677790861498	4.94831912682908	4.57123205747655	4.89016533550201	5.10328524889314	5.48810412431029	4.95595505435816	4.71164130385098	4.91912212229306
+"AFDN-DT"	5.34456671718576	5.33655730075999	5.15262797005699	5.43897187298703	4.97078882060694	5.8365889737488	5.58801602223261	5.59431347084947	4.81541821864853	4.4332757772185	5.84377117322077	5.58998915888436	4.89779524894271	5.26230531980512	5.03502285570886	6.29900962642977	6.11521610777877	5.37522421249729	5.39549822409796	4.9298798335942	4.87073050295671
+"AFF1"	9.88192446626983	8.76476581402773	8.71062113274997	9.01276952330427	8.62309718488418	9.0857100765857	9.59767645639723	9.71098385979566	8.95058623976334	8.46329732124286	9.10913292210103	8.90519048373299	9.01534038832209	9.21781504690625	9.49420330758779	8.65526602908979	8.90344960144959	9.00808370039529	9.10012303155555	8.60984156105514	8.62177213361937
+"AFF2"	6.75287876194942	7.33247647608316	7.96746941079506	7.37789258704566	7.7656189122107	7.17613131829703	6.09646447008419	7.25651778476182	7.61354746696037	7.98831124473544	7.07364304431138	7.77360611531151	7.48293920996874	7.28481715959575	7.56264716338548	7.51615137508446	7.85475811652112	7.43337268843679	7.33564644950606	8.0262107774194	7.70677972096705
+"AFF3"	5.45374652521504	5.80018027138801	5.2434262204828	5.95692114639547	5.71241999249129	4.73488421179242	5.15796822503356	5.53584279132252	6.19662762216056	7.25833917442098	5.0453032462098	7.05486123889098	5.60131099999961	5.274919627544	5.49013729286117	6.40536490570112	6.80620647061034	5.6125433941459	5.50756175839118	6.89014792605354	7.2153593838409
+"AFF4"	6.85253405044498	6.72805716670404	4.49497619638741	5.72262300151709	5.72876263270792	5.59751944148413	6.17006346605551	7.16174804569999	6.26975806883548	6.58257527259458	6.72353838944352	6.41514183788059	5.82113047467953	5.95193470525667	5.82287416588271	7.04368011286608	6.74165601962312	5.54988363509976	6.42476980751571	5.93754086041075	6.62706767021275
+"AFG1L"	4.22043317922283	4.39220944231318	4.41524567759717	4.46352585322327	4.65380019183697	4.29478046486723	4.17159391933677	4.28028772395735	4.21020632681371	4.55084700040741	4.13500281445835	4.33792874719157	4.20510273975902	4.57512919121534	4.45342604567213	4.57487789759194	4.38691141580014	4.4955253355533	4.36948660980628	4.26107532908343	4.30898558395952
+"AFG3L1P"	7.60702322642022	7.68579088660419	7.95733262120107	7.08568006407101	7.22143934133428	7.18477000984061	7.15631849014897	7.03264044303279	7.05796984762573	6.89207031603567	7.56242966617539	6.7082786574019	6.88528828223679	7.22170350283163	7.10017317148915	7.97359908764224	6.82479796949001	8.33411856050376	6.83533370079244	6.85635692562469	7.14377312735382
+"AFG3L2"	7.9095012403808	8.16936212580801	8.39642709766916	7.92063579406098	8.53780335334879	8.14970143260555	7.754181576827	7.78956601330544	8.10270941945259	8.56149883237792	8.02964628298641	8.40959521523915	8.0318008640371	7.66653001895468	8.03748239771073	8.40454349918845	8.29237751249706	8.43945113232157	8.11291612088595	8.50265037364935	8.40884893788598
+"AFM"	3.59035006425724	3.69266422573488	3.45862655418068	3.35348262157669	3.81734143042512	3.37103166535283	3.2739569252445	3.18404779816901	3.54492327225058	3.47097449905247	3.17762210814161	3.39017963957346	3.47974165197397	3.51696324429849	3.55237495320616	3.47097449905247	3.43561657898329	3.31415842856044	3.33723574395102	3.4620541437146	3.47097449905247
+"AFMID"	6.82827437733685	6.92740700286213	6.24960682688166	6.56166230104298	5.75842473896849	6.15581870805871	6.61589240371625	6.21595425616282	6.30802398526563	6.30615937961083	7.49215855025871	6.43829469755035	6.15455704242758	6.66529330259359	6.37788775430496	7.92040471336166	6.48565098454116	6.41832201969247	6.51670283430586	6.43297568603497	6.5389494324369
+"AFP"	4.38912383249881	4.4690660217228	4.66181396563038	4.74905348844174	4.77191958432469	4.92923319227525	4.75313715802536	4.66518782970591	4.65873766964386	4.90850593414061	4.36550540925409	4.68176716883751	4.80419531992814	4.51587100240287	4.73862924077338	4.86683019862754	4.879755604757	4.72022417318643	4.62544847747847	4.72193841854105	4.71519866995572
+"AFTPH"	8.15076871280849	8.14517484161907	8.52997822465925	8.41175452749597	8.3553000463935	7.64072017397536	7.74547366714543	8.08016132423027	8.50110936961771	8.32026313059109	8.076599177384	8.25296869919022	8.6170426960797	7.93057279524158	8.68324019335233	8.3126946547683	8.50006833422372	8.37494195136197	8.43291352812707	8.36945157174108	8.54247625529579
+"AFTPH-DT"	4.04650012046351	4.160543237765	4.50031817876324	4.02658458055701	3.99823394595316	4.2245781481505	3.94272611226539	4.30906702268708	4.09800962415924	3.97248607518291	4.02710810875266	4.10514258197358	3.80019226784043	4.22359524084555	4.00668938513207	4.13484972834528	3.96779852709763	4.10514258197358	4.10514258197358	4.10514258197358	4.12677042439553
+"AGA"	6.4012079529083	6.65765880559555	5.78521836223722	5.31398204338198	6.62304412778148	5.80580350462607	5.19093086788027	6.31127351745035	5.22669888104043	6.48699581460746	7.4381740981244	6.07650775961619	4.87122629785907	5.6217565788203	4.72083029964895	7.86784695571012	5.58336333056866	7.3496856721675	5.3880110338176	6.41114173844839	5.81561767712338
+"AGA-DT"	3.56261428475592	3.64892839469965	3.75971311877668	3.27694356390311	3.53525283905784	3.64845617117614	3.36213673749021	3.47298025610708	3.35407578195794	3.36425877209755	3.47298025610708	3.28843713162891	3.33778259862883	3.45020442753423	3.28249727257368	3.75755362172762	3.46974102026495	3.74575685880151	3.60093709716349	3.50467501904621	3.44164902581815
+"AGAP1"	9.78281793674284	10.0763306042125	9.83990458877685	10.140205760871	10.4074450292773	9.85113478958401	9.3632395950262	9.88677058201116	10.2913978294215	10.3352067105684	10.3867159374993	10.3272661432003	9.65379411620406	9.63161291550937	9.80237237650224	10.663075067001	10.328868439157	10.497854017668	10.2471746293127	10.1106679935814	10.2147887847594
+"AGAP2"	5.9085015061674	6.37009717660903	7.32640453990082	6.42246353662638	7.01224861603359	6.23662439329437	6.21884127629051	6.31423162002914	6.71824969846691	7.16410848101884	6.07809710701682	6.85000114370045	6.56968482197096	6.3348875146667	6.22528175453793	5.8692499132607	6.62846034376971	7.0059178881413	6.53922519834815	6.92057973672786	6.87922056530913
+"AGAP3"	8.05577904769173	8.63303775415215	8.37228576583759	8.68006955144368	8.45254752633825	7.73244231662277	8.29406397576547	8.43672090556013	9.12708740850208	9.33341042414411	8.27158679684868	9.12996879600605	8.76489187589765	8.45319780542603	8.58043622632118	8.29194884068984	9.08566536645732	8.27318066945248	8.64692452037668	9.03096862868789	9.19038133957724
+"AGBL1"	4.78251242420695	4.7155228034126	4.89486254566113	4.82637259215287	4.95007897331937	5.05053614973444	5.23962993995155	4.715358520815	4.99688455512835	5.02911786542874	4.4908396642771	4.61552486600255	4.97430435491351	4.96135052209562	4.69689357710136	4.67161030021385	4.86870437617118	4.49049723805805	4.70905722488294	4.88582077289715	4.91703986111475
+"AGBL3"	3.15516718662944	3.28451106007486	3.33344264489367	3.00292950506622	3.24043507069223	3.42612570285679	3.0767888570736	3.41003760388047	2.6181510731707	2.92113537464329	3.32202713791482	3.23184950254586	2.96446118717125	3.08472076374242	2.95555792361577	3.43760220757973	3.42084387807348	3.76145915426798	3.30132557786991	3.06269905861175	3.03494250516311
+"AGBL4"	5.55717888543425	5.66408935592755	6.01821625049865	5.7899061833471	5.7662511083396	6.08563218903376	5.98130886209211	5.7662511083396	5.60046355401093	5.5083902974322	5.51407004303873	5.89477042986077	5.78377302436409	5.74558913701646	5.70110820009493	5.55165512599365	5.81614291543829	5.45124121372987	5.86219836836549	5.16546040467916	5.74215824717918
+"AGBL5"	5.66434265166573	6.05598723480463	7.04708147162636	5.7899061833471	6.60379852454115	6.00990179220662	5.39457170411795	5.85655941525568	6.05891284903982	6.33160154509006	6.04948507592031	5.99191356316529	6.04051869153526	5.36866351842485	6.37285590464061	6.00990179220662	5.86127779835294	6.29132213720495	5.78811469615307	6.45455417328738	5.86671703249451
+"AGFG1"	8.08622589112743	7.68969127718148	7.7160765727482	7.48776308036677	7.7026070907266	7.29184867468368	7.19270400798904	8.047945680758	7.75476932244074	7.82148558793061	7.97945949360438	7.74050097345906	7.62663815180125	7.1932781338347	7.75476932244074	8.12980514971768	7.88018610955118	8.188304231939	7.6182331183022	7.7781438757507	7.80351453228264
+"AGFG2"	6.11546024790472	5.76735711044804	5.02256762650681	6.17848774799329	4.89920555102187	4.82788543801973	5.88977883699462	6.21980625752134	6.05302877487213	5.88853861399154	5.89335263144189	5.98800342812787	6.09716397496073	6.1896381235816	6.23709662534477	5.93068828050466	5.98464213894049	5.08745469996208	5.6038505544098	5.80493483432779	5.77072884245682
+"AGGF1"	7.7521489303011	7.95869801281613	8.40982094156302	7.44997539085987	8.28923404708219	7.04454435324061	7.1284634831572	7.62749252131738	7.87958425642663	8.1951048062324	7.73187216544149	7.40825137894983	7.31233962231738	7.49056474991596	7.78886351404268	8.0693788822511	7.80440692512127	8.1271749388514	7.72888543501242	8.2224257075419	8.06838672845831
+"AGK"	2.97284203801117	3.05300343797292	2.90001318372758	2.91300937122438	2.96168524133845	3.07041199736135	2.84746225710928	2.86876234619276	3.09953531362395	2.97284203801117	2.91878129070381	2.92255897279243	2.80320419669205	3.0085617433796	3.08119124487954	3.13672719556666	3.02240602395966	3.02904913268095	2.84995876213846	2.91928741107058	2.97284203801117
+"AGL"	8.0364112045562	8.49308743287885	8.69184792649175	7.96295610223914	8.454401328417	7.59679183456387	7.55166303965146	7.90804735847553	8.18451748191179	8.00544438408655	8.33172575035224	7.90389779196377	7.53639046614784	7.7756624604439	7.97336313868462	8.15935613234587	8.0072166051689	8.33637091380976	7.53592356331628	7.92744028921289	7.99393038769229
+"AGMAT"	5.89708195618327	6.22695166871755	6.82338151054694	6.14545486117204	6.50864653153082	5.93295629614317	5.36186439830678	5.80031777523354	6.26756257796408	6.63633252686335	5.95278959438918	5.7358915413173	6.66025895153551	6.55945641886899	7.01088335459905	5.64552488329759	5.78348234309894	6.41573811764954	6.11212407675947	6.7986582633995	6.44994071664186
+"AGO1"	6.40577205160882	6.10446624614855	6.59317593419057	6.5017738757668	6.49243195804841	6.95573331902844	7.06973921445535	6.13110847630503	6.41356316589987	6.42322321375414	6.26317217993658	6.55687355857933	6.77296417165209	6.78252953519799	6.51269910237151	6.05683570869116	6.58174776375801	6.28793570460117	6.81128552571755	6.48848902363457	6.55729278077849
+"AGO2"	6.51509026082418	5.9898393180476	5.70040934462618	6.26453639735236	5.64295195146543	6.06880355299666	6.34192297763056	6.85094207615891	5.62882545343001	5.49443728520895	6.69436402118882	6.06880355299666	6.06880355299666	6.02889397255996	5.99190162678582	7.14738832808681	6.26065213410191	7.08872898035872	6.0197854530193	5.64248233295389	5.91921098229453
+"AGO3"	7.90914316570266	7.73668489972164	8.44739750450572	8.12183863215611	8.64589186841055	9.0391969542143	8.19645469049782	8.2903463726381	8.20730787163892	7.47827825256388	8.31759338230967	7.96046801079987	8.1349465952049	8.27615286985574	8.6050144228093	7.98102458383759	7.8482140949179	8.47787936652032	8.1596471959203	7.77361929333454	7.33140248783129
+"AGO4"	8.71274403713015	8.33675580678477	8.61980572465389	7.83579104924069	8.20074982478778	7.63476754988864	7.43526737380212	8.21583852870357	8.08841640374563	7.94156671457871	8.37261907044813	7.98380939029368	7.73447410668846	8.0657990945331	7.86834589644993	8.17392437602341	7.99459041272286	8.47590963908796	7.93206033943166	7.83670416834222	7.71805450598379
+"AGPAT2"	8.17077969566592	8.02076399525823	8.00090120456787	8.24263339755043	7.97751419364973	8.18798032854166	8.25976349681063	8.00967737491371	8.23942271628323	8.19589150974115	7.72496524240876	8.11960267420396	8.33983104202963	8.37790598914223	8.01366476455055	7.6366244117526	8.16857777107347	7.63320845968063	8.15393029487558	8.17706022973226	8.13444113661466
+"AGPAT3"	8.66438808118759	8.6946207171652	9.02839877962124	8.59526995854606	8.84580656797018	9.15840564351292	8.81945422787076	8.80740897246172	8.80562957815409	8.59420363834257	8.82797718131201	8.66612262842091	9.05245528621549	8.59761586635598	8.75141194284598	7.96528027979577	8.92116593112258	8.46130957726734	8.37820151923121	8.94146094670605	8.59230191064715
+"AGPAT4"	8.36759747678359	8.6371735402716	8.90843416828697	8.15074235727137	8.19207666099751	8.73680904853405	7.28822673673606	7.96283752931031	8.42008656434023	8.00871892632484	8.78346595290898	8.54121612604128	7.65752055391586	8.09565949260639	8.11887166595778	9.70975198913444	8.48215748806257	9.68730760324951	7.95799367133895	8.10580313787916	8.46092657737577
+"AGPS"	5.52229911488946	5.41864404683722	4.57512919121534	5.19928054476253	5.42517729492961	4.73697632643002	3.95878589514187	5.08644063082694	4.93027436429676	5.0758843063736	5.76447481989359	4.65391589297009	4.93253094797053	4.75927269432648	4.90913780866983	6.06243790117223	4.64513367008199	5.82920194360233	4.94445667398711	4.83113533270657	5.344086033184
+"AGR2"	4.37253480609131	4.59639370478158	4.47826609981675	4.54868059434629	4.70769861043774	4.85596654062801	4.60089348231079	4.39057267959009	4.43443154748092	4.41997821746481	4.42703628647525	4.59639370478158	4.74037763424336	4.6394534072746	4.6908252637182	4.2947976575029	4.78223929541993	4.37000353158389	4.42263135416522	4.69791364472043	4.59812245217702
+"AGR3"	3.4531893556219	3.65047228134954	3.44945579792851	3.63793707956031	3.57521054957875	3.63943460232443	3.6867643868618	3.38030520227471	3.68473429006894	3.41971690807889	3.38613004288932	3.53152396919734	3.49776641408253	3.49776641408253	3.46019998155438	3.48553142372936	3.55245682978738	3.274333172584	3.2953250611449	3.49776641408253	3.35167638042782
+"AGRN"	9.32746955157443	9.40166183745213	9.23163464572879	8.98605896287603	9.08479537294542	9.64479914419332	9.40768120962463	8.94150891031475	8.64164381224054	8.8001206618635	8.98605896287603	8.61069687856281	9.20832046499962	9.31354478881602	8.62148501195369	8.65351792452624	8.88174092145605	9.2653921893967	8.95891563162372	8.69025419479923	8.92765500888313
+"AGRP"	6.4219965822238	6.71364892278438	6.60141955524593	6.63165790459242	6.41130106575943	6.45392569022523	6.86282175332921	6.60141955524593	6.63587624813855	6.66110300373208	6.58039445610072	6.3705277956962	6.84496929924392	6.29152059613963	6.88388170087791	6.44893961550498	6.8096954768285	6.50983738304177	6.62034831336194	6.5105324472503	6.67941475119035
+"AGT"	12.4863473252017	11.3183754948728	11.0995044783209	11.0520968469166	11.0599125659874	9.76875196796863	11.278630776944	11.9594781124135	11.0600204052248	10.893359354919	12.1130428061728	11.2446600243082	10.2740215012865	10.8607863349186	10.0941610018326	11.3952383201967	10.8274597360805	11.3525605868271	11.0056862206498	11.1239992992727	10.4216946607811
+"AGTPBP1"	8.38185566737131	8.97229287898038	8.91805306492595	8.6951342185459	8.89512513078063	8.70513927090494	7.26591522774788	8.34037941759584	8.32870427180148	9.08135734162785	9.19277755894393	8.99223535000608	8.46890723772161	8.16857857653018	8.87699773479174	9.42476942384663	8.76859035998601	9.67371923952252	8.67002397911058	8.82712117078107	8.9003502840177
+"AGTR1"	4.49937833450421	4.22649105663712	4.21428006248524	4.21467652764681	4.1537565823937	4.44562250877002	4.36934679744176	4.12397429240063	4.31563089215918	4.49665310682498	3.89117641123968	4.21918596414564	4.49455955194566	4.4170147597586	4.15862785540435	4.05049959983287	4.26414216161066	4.08357869808622	3.79258354593096	4.40690486290723	4.23962938649317
+"AGTR2"	4.14585581607467	4.41036914744023	4.28320749392474	4.40443075852183	4.20847393066862	4.32347067403322	4.30686127339287	4.29865528179404	4.33824694399033	4.40831480048545	4.00498927431478	4.2330209192495	4.49791451001905	4.18811068535	4.28811339558514	4.26297468459536	4.26615287540674	4.01029052215768	4.28811339558514	4.35046041972485	4.53600332901679
+"AGTRAP"	8.6919931100041	6.9521324664288	6.42716678958973	6.85208393209929	6.48595195903407	6.49839373000122	7.04076343096898	7.19515709617787	6.42275134343244	7.02293081841861	7.57927119248775	6.81037989779534	5.93453513626568	6.57917776875277	6.71923623302257	7.32054889088774	6.82187100540002	6.99091621329748	7.18835751407505	7.19571555584063	6.46113777085438
+"AGXT"	5.06507383424472	5.13766040406306	5.39916371512852	5.14809318067121	5.02804918291617	5.69053011434282	5.55306458412424	5.18831956967966	5.14765440240696	5.17873570814796	5.05595401806415	4.99771508102496	5.31247724654619	5.72254103296066	4.89337412794406	5.40511858314464	5.21823444873807	5.01270346058513	5.43464881235395	5.44847358079805	5.1587428443938
+"AGXT2"	4.80235599911264	4.85585401721334	4.64380630359474	4.82013662932669	4.87332167894086	5.10903550643953	5.15911593520981	4.85755885644522	4.93864718917497	4.91305846191026	4.77341234615102	4.70779157008402	4.94190045589274	5.11418341002644	5.01728460890796	4.73207173124372	4.95591438731231	4.46812783618355	4.80254910085625	4.70661547035253	4.90122496205643
+"AHCTF1"	6.91970839552327	6.39211593147015	6.77153218090147	7.1752938186027	6.79365229085414	7.38204018872651	7.47990246894508	7.20594069072547	7.25444477406259	6.54413919528758	6.96947216695979	6.98732473688988	7.3493999237208	6.97898465718357	7.69704585715266	6.6250218296444	6.97898465718357	7.17889284778625	6.80035686090348	6.18763269934703	6.97898465718357
+"AHCYL1"	11.8209372788909	11.5347079599804	11.2851809965166	11.2706631653511	11.3710279712284	9.98115323136919	11.3913747535789	11.9523292215692	10.8602331645173	11.1384536847883	11.9943135036341	11.7064497584659	10.5018119759573	10.8777555362211	10.4566924655982	11.0396893844286	11.0216150456654	10.9671088210606	11.550476646496	11.4102813594909	10.6576269064172
+"AHCYL2"	8.0088790687583	7.93358625127847	6.19186556519122	7.59572046453265	6.95179773662893	6.21567599798133	7.82316782925405	8.1935905311429	7.8958340979324	7.76165167747166	7.40584726158654	7.48852797443279	7.03812476918397	7.16797292077088	7.0377642831399	7.27875311420073	7.68267906514048	7.28564107836084	7.86020209936572	7.70467168587751	7.14402221306166
+"AHDC1"	8.14648091458369	8.10504925023281	8.47262976205906	8.39236850708076	8.08860013278975	9.04458428104505	8.39199249734745	8.40625488200643	8.10700397849072	8.22598827787456	8.17865839864504	8.06011813850872	8.36242179848333	8.44158862847353	7.95067306114047	7.12048645623999	8.05838133825716	7.89526924497059	7.5348183797948	8.3253865098611	7.89549651700323
+"AHI1"	6.99905543366605	8.06373147697711	6.64305334744308	6.81247334291085	8.41355480075448	7.24300548667257	6.51166132831683	7.1514525995619	7.60794365814533	8.33069410683585	7.74794851347047	8.53101924723637	7.06817236815335	6.54146808189856	7.08348645896826	7.12048645623999	7.84017742200958	7.65595685650511	7.14956957049007	7.94107217944104	7.4799469339624
+"AHI1-DT"	4.44141663999302	4.49091360152682	4.57303407193992	4.37094286763498	4.4639965426867	4.36598884223647	4.19582942990414	4.24602999618928	4.36933059484611	4.39735090039328	4.78343374048915	4.3858499817178	4.54764627000658	4.701187746586	4.48905404103944	4.63663768337043	4.3626060750784	4.72082581225193	4.35237833415861	4.528741761396	4.6311859578754
+"AHNAK"	9.38728287808082	7.87596078645872	5.46255876034063	7.21014253143039	6.46964488619953	6.37730867772021	8.06802084600411	8.39949827105547	7.87362821159696	8.14494264626088	8.31330559979719	7.3972741387733	7.25291048917283	7.90913688326646	6.8136668125122	6.72602714983736	7.69486351643124	5.84182372328229	7.7407019561702	6.98027440746739	6.75172157782256
+"AHNAK2"	8.22011996224001	7.90136354494828	8.50557887911358	7.48392649829369	8.84573495816714	7.69923650242313	7.09608935253017	7.52353645252494	7.54767619262844	8.63093939290496	8.07558818650626	8.37582332571499	7.8208981034599	7.46585586191097	7.82717468917457	7.53119917044189	8.18411521334624	8.07851858108507	7.49124778522871	8.96960751181706	8.48500131466937
+"AHR"	6.54809057595236	6.48995878092476	6.46173223447724	6.49588445023521	6.20597478143063	6.34231827324641	6.0355093429204	6.30441658080521	6.14579395150604	6.15501186702745	7.06205092472152	6.2929536054907	6.15844670676689	6.37549430119177	6.38956309108732	6.32642657759417	6.0582999510805	6.75457296343956	6.33391597303734	6.33559901464543	5.99061702314367
+"AHSA1"	9.95125784828547	9.69506733257046	9.8522124037607	10.4343832122349	10.0323680961	9.85895697116205	10.3551347990877	10.3086577263477	10.4014013653896	10.1989433632036	9.70650563307896	10.2648191474836	10.5814669227938	9.8148976382509	10.7729479513505	10.3089689173704	10.2313139788418	10.2723860092487	10.6056423768201	10.4216241854106	10.3583570724688
+"AHSA2P"	8.08519597862191	7.02143188452973	7.70423738715476	6.89761576545382	6.28691522951367	7.30812813277842	7.65195246462056	7.05431537897466	6.412429976251	6.09272813329228	8.0521862091857	5.81122620091452	7.67928695926698	7.24236234908235	8.16899196673231	7.65336485960071	7.00786902623062	7.89960700127874	8.1723706930091	6.89546907740355	6.56467426271989
+"AHSG"	5.53038548552151	5.50972092853006	5.74228459209479	5.64778786003062	5.52869073919784	6.38077224862978	5.91233111116793	5.51328993149336	5.67593138489352	5.47601381209849	5.46654585657986	5.47936923142264	5.86709989097313	5.92597582194847	5.86902862868679	5.38552419293616	5.56024343408174	5.51733206155101	5.68519176832874	5.64912582762758	5.5941733389914
+"AHSP"	5.41487574821744	5.47807128809942	5.45733218792198	5.53323731154012	5.58260984291946	5.79602245086611	5.51273210176881	5.51273210176881	5.57142901312345	5.54255690165378	5.37192283774417	5.55946104424135	5.66164260100664	5.5269215479867	5.50564179934643	5.51273210176881	5.43785980830692	5.21162510184184	5.72937008916101	5.51273210176881	5.36908442190065
+"AICDA"	3.71539966886992	3.77190491531655	3.92458110470422	3.70270954209984	3.4410089951299	3.80141118436458	4.19595404213	4.03522704876104	3.69492305489115	3.61963259459902	3.72567797319092	3.65793501916975	3.73425107147365	4.20054628400704	3.73425107147365	3.5985909580847	3.81498223768892	3.55244239543254	3.83353097716374	3.85153843616355	3.63083052751396
+"AIDA"	11.2447519153611	10.5331803868144	10.5216464922758	10.7874212673723	10.3789723234474	10.6138705166418	10.8096901022707	10.8412564946505	10.763781878233	10.3777852441043	10.966926161879	10.5572139402713	10.8041447715812	10.9940807225447	10.7988526300494	10.589780325671	10.6455324503062	10.8399778185064	10.8824656971779	10.5089881695681	10.7270544984911
+"AIF1"	5.25133219537269	5.44908710784636	5.16304009926144	5.85765317801578	5.52269681306219	5.64314995522202	5.8990767444045	5.49060423715084	5.53763045989841	5.4875920998132	5.28339384878028	5.61164744972172	5.63073134795799	6.07928752015583	5.56259587515404	5.43300576023898	5.56869591995839	4.91497107428232	5.67258678389626	5.44589091790986	5.63403213335507
+"AIF1L"	10.70050558863	10.5260809631207	9.97443013540449	10.0459638335724	9.66315817307907	11.4656408103279	10.1003624100741	9.62222748853925	9.41890762703311	9.45851335516679	10.8859188840284	9.36007665170104	9.62624918967984	10.2601060533355	9.97460005154462	11.4657587000806	9.67215489112576	11.3712873268739	9.86006016200422	9.11505966435463	10.2442816449276
+"AIFM1"	7.06535681984097	7.23302649526933	7.45067377603694	7.092887133653	7.58200505432318	7.30152064819617	7.05785411960632	7.04056255369239	7.10625613647501	7.65250018521972	7.27886518643044	7.36387544680352	7.02680934832021	7.10319828699471	6.8306974752806	7.53662679403782	7.31350331743273	7.69229124342225	6.99658658820846	7.84572110043676	7.35811854302303
+"AIFM2"	6.24624496249475	6.443834933189	6.75373021677339	6.0046466383863	6.19109770579412	5.92635805262859	6.47149667606793	6.2775742785139	6.10238274200186	6.50245022907331	6.11702244047819	6.36229111409247	6.13173806981801	6.23667139648099	6.04800473010971	6.2312569412504	6.19675569690973	6.24624496249475	6.12803114808854	6.49033459067234	6.32032406766099
+"AIFM3"	9.16667528316187	9.1479697534272	9.22852145052452	8.91944911656562	8.78554001243726	8.26710693644027	9.50581787226541	9.43212377929136	8.79302792940874	8.9861843452856	9.10583586292288	8.87174851376806	9.16374504544314	9.11541731846218	9.07080746540417	8.28874367022423	8.5531753227992	8.76179604205444	8.87893785740819	9.21893941017144	8.89831602418809
+"AIG1"	6.7573097224233	7.60505032428139	7.93812301387402	6.69803887552094	7.19856559695358	7.68799386473201	5.93900793816728	7.33762233444743	6.46964488619953	6.08199751010921	7.8087387599801	7.15456879439605	6.54161312697582	6.88530130353436	6.45461269085082	6.93601537597972	6.97738255709782	7.11106248553762	7.05669277675971	6.97738255709782	6.6142519236177
+"AIM2"	4.62983920900045	4.63997045823128	4.74843507183455	4.65995868196511	4.76831124452389	4.66124087142173	4.73118544429299	4.89363951924123	4.5866222772551	4.65026013501354	4.52379630289583	4.57512919121534	4.91071610092055	4.90919074895341	4.66124087142173	4.61945910449361	4.57379426098878	4.3933149381427	4.40914568253651	4.66862684732943	4.78520295235059
+"AIMP1"	7.2596887710881	7.06981133062658	7.20507357611121	6.64911304253354	7.10299919469783	6.38158791195704	6.63553393626647	7.3144509857625	6.66511995138541	6.97639500370212	7.45905405722511	7.07433439269625	6.04538294180239	6.667733547217	6.38417095416074	7.3930211697509	6.92799149083855	7.55876554692859	6.97639500370212	7.10318274712378	6.44698808816002
+"AIMP2"	8.89900761963382	8.75000596954296	8.52303620256523	8.25152006969046	8.58151713905688	7.70323228585052	8.09408200405437	8.10379552061661	8.19642729467391	8.60414261480324	8.63923361824366	8.33584298843381	7.81210961466214	8.00343091303987	8.08231005111473	8.95164946383806	7.96870228772964	8.57457162334537	8.0959908680827	8.75868553337226	8.60931625996975
+"AIP"	7.78264833404717	7.60318215917803	7.54779828845293	7.69673251164679	7.95683882576482	8.11486308552462	8.12598245903468	7.91775340151802	7.75805585065154	8.09617633086199	7.83081802593841	7.84881023408154	7.64499696143871	7.83753066319571	7.7898063827149	8.21536124570613	7.83324909211702	8.33881668627956	7.957455605919	8.18825285423801	7.90978331144225
+"AIPL1"	6.19969326384389	6.29700408713993	6.15569693836323	6.03774925812932	6.11367082491704	6.71420474565105	6.6469372745776	6.21837226715427	6.09529183329699	6.17079294579151	5.98176278977539	6.27665765969023	6.2466040923485	6.79240028240641	6.10077451258867	6.0951531833628	6.11965568409604	5.96283921569126	5.97415452662678	6.05714095598799	6.08827269336347
+"AIRE"	6.70896912639213	6.85629719719491	6.81640557606788	6.81640557606788	6.55634313674447	6.82997864638292	7.01285752315525	6.77671974982843	6.7783334016352	7.03893161250244	6.84914648052151	7.1422992393473	6.96804133540024	6.67848148692997	6.81876472505709	6.78647884004175	6.69292619125425	6.5677173764007	6.90412645493148	6.81640557606788	7.02350159616325
+"AJAP1"	7.20317434146247	7.35647140083532	8.44541455177011	7.96918854677707	8.45693994135527	9.23164354136744	7.53943834037297	7.64016771706132	8.35636418210388	7.83864221409596	7.59590335978444	7.90291440215995	8.1346486543956	7.92863479304376	8.21689097354966	7.18837707658296	7.50098837579878	7.8683833534872	7.90953175402308	7.81935167509867	7.44502219350234
+"AJUBA"	4.89531982917338	4.12725533341089	3.67405707027126	3.96330214208285	3.84746626312461	4.26625804058613	4.39450242749117	3.96779852709763	4.14932485862526	4.47278458566676	3.82782091085306	3.47993395374646	4.29943976547832	4.93593864363051	4.10534720924423	3.78636058236057	3.67405707027126	3.68550484648377	3.77840740537392	4.57512919121534	3.83785193625909
+"AJUBA-DT"	5.1668958598745	5.31894783821393	4.90347048654723	5.21009298002313	4.89376246512413	5.23671813219926	5.63282737911643	4.96530284883724	5.12746650795198	5.12746650795198	5.26926283880644	5.0536071559446	5.14822279818964	5.33525176748848	5.21354252300774	5.08865635570157	5.0987859834324	5.02655479599216	5.26265897708434	5.15905277435521	4.8828745458131
+"AK2"	7.77388597833217	7.58507754147698	7.22241617009411	6.9375722920613	7.01280248257073	7.0180087939697	7.36156227992701	6.87184044516932	6.72523075370222	7.00841965569594	8.03610184800708	6.73227681115277	6.78336016016059	7.26172526258072	6.97597703950471	7.96923588797945	6.82855904393702	8.09143079406483	7.07253144596726	7.35046712516762	7.08550581634435
+"AK3"	8.33425720662771	8.07671766958938	7.72267640315875	8.21046649232632	7.61684678487919	6.9842176713285	7.92091678405708	8.02372965805412	8.43782706707731	7.94760005511037	8.76415900458687	7.96435498034072	8.16011658546124	7.59604649103593	8.11021241921837	8.08973588680758	7.91195731995507	7.81565119071814	8.27403228821751	7.64599057401481	7.7768292881002
+"AK3P3"	5.39519171823254	5.62954566831	5.92324546730863	5.77561642228932	6.03426807708932	6.33188591551045	5.66128153398499	5.68578646938107	5.45124121372987	5.20894937914332	5.96544380940491	5.66128153398499	5.87327230133808	5.92009960637507	5.88654716908125	5.49024500586102	5.4081768378713	5.63828899016293	5.63977729965149	5.06217294410693	5.12642224950293
+"AK4"	8.22667101388207	8.42889015454415	8.05728304309119	8.34410695317373	8.28477713021335	7.80428231016216	8.47009232473711	8.67345689145547	9.18510277338741	8.55271392892269	8.32997864197887	8.42933238163886	8.74182155933589	8.55032845303848	9.04523185288608	7.77182663193052	8.33067145869954	7.69660277782899	8.28097484078487	8.54854212443992	7.8936487915093
+"AK5"	8.90371886982749	9.45420399562567	9.34559853215504	9.17903421207067	9.98677161467182	9.44303145916554	8.18664546867901	8.91780193581394	9.37738926139492	10.2962231127301	9.57071025898253	9.84545856284941	8.82306715605822	8.41113510772916	8.7681292933795	10.4064887757274	9.60387438573243	10.0510372842739	9.32927615943157	9.95324610407176	10.0481943854253
+"AK7"	4.49497619638741	4.58828756433978	4.79070084599918	4.30489993383538	4.67635283776473	4.61670593318764	4.28957718118839	4.44686193919642	4.41257744639995	4.55305919934155	4.48746077423961	4.2330209192495	4.16089863856463	4.47617687271173	4.22257849941971	4.77168690983368	4.49036727225149	4.89550325299867	4.23946860703531	4.54669353423256	4.39958052940144
+"AK8"	7.71801126256834	7.69972381352769	7.89125990380819	8.06834696421794	7.98932204681938	7.94577423564588	8.07220089061198	7.83549505754316	7.93252788227008	7.87483837821105	7.85750248817553	8.00116624026927	8.02033102557378	8.09790201856127	7.83892194068088	7.89138690954764	7.73052610809631	7.33283768888481	7.89138690954764	7.97399696576479	8.01500644170252
+"AK9"	6.28166793087302	6.01247385317722	5.79381588239895	5.91677987896235	5.87980932627763	5.42315954254366	5.66729697423349	6.01790143486981	5.71329852628436	6.17268358508476	5.98762145481637	5.33555858344962	5.68535766002641	5.71838266194747	5.7546956434223	6.31096144180218	5.95897888462817	6.47631036438328	6.0720051631489	6.21144385249889	5.86458711863812
+"AKAIN1"	3.45954188581874	3.84054160309622	3.89374457355512	3.40870734358068	4.15180575478491	3.91747881625649	3.70034397628044	3.40742009370891	3.91075261182563	3.80005852962073	3.68559388292172	3.95664975860059	3.93706557661304	3.95370758543593	3.70018694605949	3.7952452767126	3.56251377434887	3.85561776684914	3.5979503417709	4.43692664580633	3.97655529991862
+"AKAP1"	8.06848178865853	8.32258237887261	7.8093871317642	7.86792356307767	8.41419004929432	7.58172749692947	8.39540732746757	8.32667440848129	7.79051656257708	8.3884328774547	8.39471224413924	8.25795834433406	7.54705680675771	7.62675920301502	7.61412642110864	8.08301947679818	8.07607828873113	8.27282636737912	8.1965387072401	8.34737629346798	8.2556822248096
+"AKAP10"	7.26093326924296	6.67484711656888	6.27981921840194	6.60787909430405	6.87703311993538	6.61587605897859	6.55688990350924	7.50731827333591	6.67593405197437	6.9879242141956	6.89430878910855	7.10425155479756	6.32161374901055	7.05783815120884	6.67096118560671	7.1572956708136	7.0313473671442	7.2411439401195	7.19223571362352	7.09204873389099	7.26115770141193
+"AKAP11"	10.3281844343238	10.9925380976015	11.1539294037492	11.0239565594407	11.2764880372812	10.3402291892633	10.1681606476912	10.768665754619	11.1217765710436	11.1429155079721	10.734622787023	11.0463608872775	10.8472012136765	10.2667448982248	10.8162494594302	11.1801209686239	10.9731964378109	10.9965894525525	11.1149787603887	11.0390048106545	11.3044603205269
+"AKAP12"	8.1441062753226	8.04208365749965	8.23227893942254	8.02060153326006	8.72904570609324	7.47411417736822	7.60826869156815	8.36687248645672	8.9583212121412	8.85825291488471	7.50103282078558	8.38871016024519	8.4730864656193	7.64561832217052	8.71908367526043	7.70648332069898	9.08476137824545	7.90183782641378	8.24141228812601	8.5175022952696	9.03269144472125
+"AKAP13"	8.46474608692938	8.06779144549547	8.03783376969027	8.36782085431691	8.0133183678162	9.37788700577891	8.46090805244271	8.65802327954638	8.57723974748252	8.19276701138726	7.81431334030197	8.18529913414424	8.56932657188757	8.92142996876747	8.20425247084001	7.28613248660111	8.42881866143571	7.28205448399004	8.33243398912414	8.51458417572142	8.26430568370122
+"AKAP14"	3.1451251161025	3.16966762300194	3.25081485849819	3.23769110446397	3.21148241142689	3.10305999553529	3.38543385164795	3.15389286222508	3.41222410027302	3.28130457942661	3.09277765197846	3.25662684254785	3.20901276928803	3.50543093250174	3.37691869806228	3.33670144983492	3.37861817419518	3.17261919723556	3.17144444842969	3.43020037932244	3.30607613681088
+"AKAP3"	6.53959370454129	6.13230487762129	5.69784488968587	5.96103741548077	6.14737988463982	6.22554000767063	6.10776633949671	6.14751055169361	6.06783309182595	6.00790630237936	5.82287033003888	5.55890411844152	5.92892004944504	6.34836964075228	6.11386642814433	6.43431814974516	5.93572296416023	6.12502776587157	6.06783309182595	5.73189060864755	6.06783309182595
+"AKAP4"	5.51523097203409	5.22780951787767	5.40367087178076	5.28967106623133	5.26491054110526	5.54327526293261	5.68565290154606	5.38232074837512	5.3433147296569	5.4753753199732	5.42924782556182	5.45091955997903	5.52360270973271	5.70322454372206	5.48203871695589	5.24149080811121	5.28079401112361	5.02911786542874	5.43089464137335	5.30022789584001	5.3325704502683
+"AKAP5"	4.32480476417148	5.27327509594699	4.57867725184521	4.93834878170546	4.62437195330911	4.42599030988652	4.23835091146722	4.79814767992321	6.07854110773496	6.34771075014622	4.91292434323315	5.01923002702709	5.39111381408171	4.7820398660578	5.66537198029963	4.97676587294595	5.8404534898571	4.28370200768974	5.19713211899226	6.39500502625985	4.65067010210486
+"AKAP6"	7.63634086863308	8.33553959260494	8.60005266886423	8.13101406353272	8.92433120900324	8.02925880775849	7.6004465718657	7.95643181749258	8.27655453128559	8.48133987291412	7.62996820535934	8.49987026286433	8.25057428769042	7.79394117789412	8.31361497151613	8.19559350656197	8.3894960566627	8.34604815408805	8.18981117603564	8.71093013782691	8.52182984586852
+"AKAP7"	8.37399639792979	8.14774393506992	8.54083444296936	8.38599146509014	8.06114416498247	7.70827325694924	8.17876526019679	8.07151153669358	8.10930295466328	7.83864221409596	8.07151153669358	8.10630772708748	8.02225625570071	8.15942170231153	8.41006102542423	7.99853721641431	7.82514010646792	8.14540501638121	7.91155789033544	7.96329224906093	7.55668429820111
+"AKAP8"	7.65271623947391	7.52815617582596	7.52685318629913	7.56927900325146	7.75578189639087	7.43887436506146	7.37011795583607	7.54811682613841	7.54577673643844	8.04410988014999	7.58730095013387	7.77339865652585	7.3674043289245	7.30987120041406	7.65450934418381	7.90878222814298	7.70048214111021	7.96127503944286	7.37090538086408	7.86097711353987	7.92724481078925
+"AKAP8L"	5.9841263243859	6.26351117378541	7.90440650970678	6.31649991656958	7.1256323486408	7.17660921140961	6.13429885524593	6.08330607152319	6.53329670870594	6.06738438992825	6.31601944212345	6.13493385581676	6.49124348267273	6.12662564943722	6.70457479913948	5.82822375253316	6.1667863267361	7.29423932486654	6.43908551165246	5.68514816608519	5.97912638557299
+"AKAP9"	6.78083848579821	6.73099005643654	6.59596462811989	5.6252080196816	5.4777228658803	6.24448833992097	5.39671849496065	6.12059484398192	6.41630977104424	6.48987276456495	6.86333032582868	6.789464896012	5.89485644193968	6.49891147628605	6.65096248888714	6.45727137965553	6.72594130865611	6.46666991032835	6.8456740394105	5.62218223297048	5.93376899708761
+"AKIP1"	7.28880638304937	7.25413826903825	7.32778812894103	7.23470886295968	7.01077210003662	6.1024606182907	7.46843143587616	7.10074812624706	7.32778812894103	7.60437132196598	7.34225421184074	7.41132998568335	7.42167264884619	7.28193154751261	6.84104415081558	7.30470591751249	7.31958728518124	7.48878941956586	7.32778812894103	7.65093206455623	7.5273386483443
+"AKIRIN1"	8.01859647317768	7.78299821451548	6.87664735407754	7.84158949948408	7.59224928949767	6.65423691853967	7.61180932122458	7.84509950934908	7.73378314823404	7.98547019073604	7.66016076876003	7.57246926529524	7.44733062040791	7.3362952091054	7.43951502349941	8.18046898461289	7.48246927254512	8.14456568667369	7.57547460143908	7.87613549491229	8.08518166495385
+"AKIRIN2"	5.76383653060774	5.38754161516212	5.07512548996821	5.56495664732241	5.73402348893624	4.7048185140642	5.70491146600838	5.72721639627724	5.47456416216172	6.12743975821509	5.70487755190197	6.18754520525577	5.11936015040169	4.92726563688507	4.91084195750041	5.55993205560196	5.72770453291377	5.54219866750948	5.64040473302744	6.41755486876755	6.18387299158026
+"AKNA"	8.53873889460611	7.77388597833217	7.86342990906297	7.94895910867927	7.7731930297683	8.36707624151212	7.80727488224079	7.94960075030418	7.41280818078293	7.40848947924813	8.01632838903882	7.69963500691281	7.7510295721628	8.0635677602153	7.46025635929755	7.650622818334	7.98520061578831	7.81733429954935	7.69186649440771	7.82325453906769	7.885937952415
+"AKNAD1"	3.5822432273794	3.2494349089855	3.21432749742003	3.63167205713835	3.20721602235526	4.07792606942969	3.40319987385351	3.24051883218855	3.46924752939726	3.31394912552841	3.3441691426027	3.28482352998115	3.39041839038457	3.87004250567225	3.77216330589925	3.35671987780393	3.08026577796219	3.84054160309622	3.33095597623162	3.31002821619336	3.15132839120907
+"AKR1A1"	8.87151913320031	8.87282514462918	8.83705070500596	8.30135447481494	9.09201817060505	8.52209377127998	8.04208365749965	8.44769892116954	8.32643612398304	8.87545189948299	8.97543289757019	8.71393617758062	8.0684273021924	8.30449935165164	8.03809305404767	9.06581850697045	8.32174670203206	9.15362784005742	8.49912758480731	9.23913360719356	9.03869060064511
+"AKR1B1"	10.3896702816762	10.0193157269932	9.86609331457078	9.90086645896409	10.3731825385192	10.4354720628195	9.84185880749145	10.0771188992129	10.1390459549338	10.7750987601131	10.279111098346	10.448230190898	10.2255514462828	10.0739559971765	10.1583168547248	10.3503333518385	10.3906756265035	10.3746481552087	10.1734738889004	10.6958650354562	10.5247203099953
+"AKR1B10"	4.12371395472299	4.13127006103046	4.12136487154541	4.20560044585264	4.44842325301359	4.83312685357728	4.74834586600048	4.21812225556393	4.54751080496412	4.24342205688347	4.17074341613957	4.20475837172901	4.62386149033114	4.81444104677359	4.39655224121077	4.2947976575029	4.01817247352509	4.11945912097177	4.14861287155912	4.72746897782316	4.37717054427281
+"AKR1C1"	4.0947949555576	4.06614571212614	4.02847867025739	4.07661757026187	3.93258445220073	4.59943135865691	4.6149929552899	4.0947949555576	4.27011223423008	3.93983531939444	4.07689118438456	3.91747881625649	4.19880980860617	4.21758798993842	4.05766901934315	3.9091670494736	4.17271953543799	3.98222577078635	4.23994421651093	3.51342887760513	4.09042066822947
+"AKR1C2"	4.12900049951778	4.44125476462013	4.46627208411939	4.47959620425111	4.66228675523855	4.48463290249536	4.25964472169835	4.57512919121534	4.52525649092438	4.31213595390218	4.47959620425111	4.39141724976956	4.70142717006196	4.53507760034197	4.7838205415373	4.43783871605598	4.45727086018078	4.26147933962699	4.45088597590854	4.38460945349623	4.79835879865934
+"AKR1C3"	9.59690495057547	7.86963448258714	7.50371279045312	8.11552650318541	7.30587795664099	8.36247631122118	9.03081447376245	8.05136313755652	8.25575141975863	7.51581830173506	8.88313080513335	7.12742319241895	8.73763786040607	7.97103121031649	8.51540133783061	7.13432266211682	7.13308370968156	8.05969942675727	8.48120150452731	7.64761208052996	6.44698808816002
+"AKR1C4"	3.73701029146826	3.9526432462815	3.90954570606275	3.9526432462815	3.80996754472273	4.05233300141476	4.12177126802062	3.80618507896634	3.9526432462815	4.2363299920098	3.94090110213321	3.77412524962369	4.13701114318059	4.04976698210623	3.9526432462815	3.9720558627555	3.79662525176716	4.01387443199538	3.94609715407807	3.9660072090085	3.9559736545066
+"AKR1C6P"	4.64440512832205	4.92414079199794	4.56379256770499	4.88346953644737	4.70853386298378	4.94977480643086	5.05129366568212	4.7491835749737	5.03605402919124	4.82973067334206	4.79629555114741	4.98200908134609	4.91740388825379	5.01470607485406	4.72667048967846	4.70343820027501	4.99913066865121	4.56857065891653	5.03715381269319	4.63433597494217	4.75391176901744
+"AKR1D1"	3.46722063186576	2.93823632708874	3.2547017463936	3.45624752245104	3.2547017463936	3.4042537752006	3.2830364232986	3.15699178551122	3.4695586249103	3.31371511805912	3.2371083959586	3.15070994611073	3.3440081206712	3.15132839120907	3.13822599822528	3.24476148094593	3.06930623368531	3.08324849108514	3.14449168194237	3.37752464290726	3.2547017463936
+"AKR1E2"	4.15397426653427	3.63380446419854	3.97494889214925	4.11245113596681	4.02562650076611	3.4896652955011	4.08344856499198	3.96838717342531	3.77656958186494	4.06770583691058	3.83848068328735	4.10942415428417	4.12111016678412	4.10828838665698	3.806907659769	3.73820188779484	3.71031846596918	3.97494889214925	3.93544590413689	3.96163371652276	4.05976960318098
+"AKR7A2"	8.57868005592881	8.24214287835688	7.91134884382662	7.8170827878644	8.0853526484026	7.04447887814043	7.93779512035476	8.1541740703926	7.67079967961276	7.94483025073319	8.82093347759613	7.96832368746203	7.35784198890808	7.37103808060967	7.51235008283734	8.40496482796813	7.66173845045737	8.39527786811578	7.83820277648936	8.24655174139135	7.73147534865559
+"AKR7A3"	7.69120460121473	8.11600436978296	7.70921267054973	7.6824334130381	7.66213044906327	7.22573503597852	7.78992878396824	7.69120460121473	7.62454810732124	7.69069087196963	8.08662059599003	7.70215809502476	7.35952840113879	7.35594798024425	7.56519401775571	7.99269584692067	7.33054601171714	7.7129029791952	7.83443446317354	7.7394520058782	7.42690510315175
+"AKT1"	9.16271199963282	8.84799620099596	8.94097474600193	8.77033651994954	8.8777663357396	8.99323913748982	8.96209366129707	8.74585405430849	8.8777663357396	8.90640155744577	8.76948128778506	8.78270946596788	8.88623280584742	9.06322670987708	8.62009638995405	8.60800710620101	8.8777663357396	8.90141722651126	8.65634271753582	8.98236463793228	8.9335953225014
+"AKT1S1"	7.97229079651052	7.96641702613805	7.86085296909999	7.94574188355945	7.8791830856771	8.02762406623105	8.29146319459631	7.87700881309816	7.72767527695612	7.97401247812601	7.98346816338374	7.92615336389963	7.80137166225627	7.99344720627145	7.83128470539509	8.2311362338689	7.72753420708174	8.16815429598168	7.68043992429996	8.09304108320019	7.73540868837925
+"AKT2"	7.03634029316296	7.18446374727799	7.18532723200347	7.29195521680845	7.02136355646215	7.54532346449745	7.24878587632843	7.9204604578105	7.43590075157838	6.86476986588172	7.39449612217809	7.51048291672943	7.23912575685905	7.26746316498156	7.58920084593103	6.77830440073146	7.80001057507849	7.02153182653898	7.40561231838293	6.81121670427619	6.67994577737429
+"AKT3"	7.8482140949179	7.78944356426448	6.85200498268718	7.82900640210215	6.71366440491756	6.99206720232241	7.17401819189617	7.84215880910004	7.46536664972727	7.55755612904339	7.80405875908304	8.26798253163969	7.86581715096921	7.59887349865331	7.55691060967953	7.95646888765289	8.31897344683566	6.47970883451	7.77112370861238	7.75203807636986	7.57538681731043
+"AKTIP"	10.0004383663116	10.0508225342741	10.0834558010805	10.0966276615495	10.3051066340427	9.83730319213854	10.0055595605278	10.0240094436671	10.3204637785701	10.2523776356933	10.0359202808384	9.99802045645489	10.2288896337348	9.68143921909184	10.1664039701425	10.2050237940002	9.97693804923169	10.1245147524905	10.1051320679971	10.2576069065002	10.1941948310084
+"ALAD"	7.87040242895089	7.91946734067482	6.98803054605002	7.4234185327954	7.41709175406645	7.5247295454083	7.62445034621697	7.43912166459256	7.27920946782635	7.70460277064584	8.45305011411484	7.59952478595887	7.2210707769658	7.30979554999787	6.86086683842967	8.01604550675495	7.41836113758835	7.47230535142241	7.65927506782894	7.61997178271898	7.49283279815963
+"ALAS1"	8.18802255622207	7.94885746789556	8.10363650658972	7.79660207421995	8.68528921323271	7.69094241565867	7.55556823800043	8.14537730580354	8.08716393682075	8.65226939219685	7.7988868182151	8.26868749172346	7.84455377867557	7.50275625255084	7.80856028402025	8.27716227749412	8.17325723920692	8.48900279096606	7.58330186141623	8.67469191849897	8.61657924693661
+"ALAS2"	6.26697726930785	5.35956375942597	5.4936423108613	5.54018066537254	5.63497531086933	6.43516978483189	5.66037243817944	5.29580432286388	5.63282737911643	5.82227005081719	4.94427432886552	5.27941117347017	5.4238248506521	5.65959189324044	5.37274939218417	5.35521670755579	5.51758103472685	5.04788906330882	5.4614720877459	6.13156497226722	5.49266795434184
+"ALB"	3.74561527245039	3.5485750409567	4.07508604617053	3.69404431330613	3.92324789582899	6.53339618769916	3.58119109436196	3.66235905305354	3.48483019094752	3.71899858528714	3.92189053277319	3.77779873893477	3.73245120943691	3.47196746341662	3.6552687239213	3.44318942392462	3.5720615199002	3.7984325613499	3.50559675137982	3.50520529248584	3.7984325613499
+"ALCAM"	7.4606683363501	7.37833906172742	7.35074424429625	7.30247075941133	7.28696138559902	8.42549136445357	6.81865050330422	8.13512052040874	6.61704785192457	6.59361157207629	7.88425512401766	7.82398732208741	6.54041773573281	7.01550488042937	6.97298166974515	8.08284241376615	7.78055168344298	8.53259101643283	7.36461186707479	6.724039122144	7.06340519713787
+"ALDH16A1"	6.123418651982	6.10739698847226	6.06842691298795	6.07061244718179	5.82904162722305	6.6083792488157	6.38387913840451	6.09021603148974	6.22894975166585	6.20537845993202	6.35402320881767	6.21364269568394	6.23678084656788	6.28884553129086	6.18157157899616	6.42154065086927	6.12783528968213	6.76551298638999	6.34567673159129	6.56202966947807	6.14875922400175
+"ALDH18A1"	8.36217938936102	8.00112654097748	7.87294464925897	7.7843260901125	8.0392819949339	7.38536697048613	7.95450887278054	8.03774795769121	7.97127536232726	8.29549377643147	7.85624126350121	8.1115402202109	7.63379318567601	7.52066040985251	7.96795148522622	7.98167014291766	7.98167014291766	7.93785365496736	7.98167014291766	8.29505286877468	8.26159778795073
+"ALDH1A1"	8.25539227893443	8.65419372820796	7.86703993398784	7.23529684608751	7.84202175543309	5.13358597683563	9.24024180820224	8.26504524881729	6.82418557438385	7.18029095054289	8.74437391528285	7.6420753402316	7.03870342507332	6.7766646249036	7.7350997603185	8.07949518901417	7.80124749872009	8.69495710861764	8.6315036653623	8.19755381333196	7.55908646234036
+"ALDH1A2"	6.13473315973805	6.48708440617411	6.63071001868682	5.87973240307054	6.31688145576524	6.42505480895706	5.30226303474322	5.82154005813324	5.75075508993508	6.81220249272192	5.87562376816798	6.13512663219571	5.60738301588637	5.62135512818839	5.69775816273446	6.26851237234458	6.12488129198038	5.63187154664599	6.0449938814214	7.21259317153996	5.97316392851462
+"ALDH1A3"	6.16795407440436	6.58641998588653	6.51569801247752	5.81731634780661	6.94640954222959	6.68824224715285	6.55582394750232	6.53851495905203	6.71254320775953	6.1062368498856	6.22610669350605	6.45792499391668	6.59219254372013	6.61775319092032	6.50063871852948	6.99864250997006	6.66169562882496	6.45792499391668	6.36969920572413	6.67398181444724	6.73697475184137
+"ALDH1B1"	5.96917651424245	6.24419726254537	5.83489135196075	6.24805382549595	6.09894494758374	6.06816409114542	6.48548562491852	6.02866262155913	5.82773250281364	6.47522267607607	6.2046905680763	6.3061131436477	6.2030763496523	6.19200433550735	5.99107315180425	6.43605248652247	6.16179896958241	6.19766765323001	6.27516043654425	6.56298942895516	6.51690745120025
+"ALDH1L1"	9.99853807631182	9.01186520465255	9.00881151279773	9.2212882388758	8.96279285817317	8.60328600974768	9.20427171923096	10.1613408505447	9.15135603211164	9.28948412370896	9.07224472044273	9.58555339365908	8.72646220974891	8.89555774771529	8.69354088905295	8.54141253344546	9.04335307904529	8.73758122184912	9.05167874806959	9.54720882029947	8.29262139665492
+"ALDH1L1-AS2"	6.91808526391351	6.25279258417094	6.45388567014816	6.17264105054987	6.43434861232217	5.88372007228427	6.47758466426602	6.12162765267886	6.18755097005693	6.50697335404112	6.11151519659019	6.07598964704131	6.31068865087857	6.80662173616715	6.08969440633891	6.25975585486541	6.40904796594456	6.09022763756196	6.40509656504057	6.15996094834408	6.05499011353193
+"ALDH1L2"	3.76649585251223	3.77345128472541	3.86126912318829	3.45012449003705	3.54525743153155	4.01170671210806	3.75714810291262	3.82868645673475	3.46924752939726	3.76649585251223	4.20954984641821	3.76649585251223	3.78670839044782	3.74904293304137	4.1016769875177	3.55468288076923	3.65686162893473	3.8427984127435	3.77840740537392	3.76649585251223	3.70032139677655
+"ALDH2"	11.5253804368079	11.5500792455296	11.4321082162324	11.5008018630731	11.1907951322649	10.4981373846464	12.0013762106317	11.8340407365108	11.3315650901276	11.2703476964456	11.6404664165955	11.2495061370687	11.2723120142425	11.2925561669734	11.0427562728668	10.8755346603662	11.2256468115181	11.058930665894	11.4591788083663	11.3269121328645	10.7960608959554
+"ALDH3A1"	6.17007248696622	6.032785082024	6.23993456203132	6.0034690179845	6.10426660783611	6.59335618939476	6.9233295345572	6.13541364617356	6.37277049926217	6.1938611049714	6.02299453553285	6.14595761771028	5.97915108352011	6.70283390462906	6.29807885704494	6.17355825131509	6.09626286515329	6.05104636054933	6.1686327021972	5.96277268306892	6.19639537323331
+"ALDH3A2"	8.89063939403091	8.23306607505258	7.65632469509884	8.27858283184822	8.41986760095314	7.42955705643426	7.98628318609856	8.51816326134954	8.36112250984	8.76520769786872	8.70687040176773	8.6293789030068	7.73957734103419	7.81263713095622	8.1452277037345	8.84979604818481	8.62499389555743	8.59395670634762	8.70533374528766	8.90970095657292	8.44769892116954
+"ALDH3B1"	7.20115060840781	7.12354032369852	7.08499989662734	7.35649491309579	6.88556709798854	7.15463896968782	7.42641140802426	7.02398884996546	7.19993865743233	6.91670958430777	7.15463896968782	7.15463896968782	7.25204742771898	7.52300010100356	7.29598903867181	7.10160227823993	7.08634855441639	6.80387928395794	7.2116554818718	6.78397091686137	7.24029158676362
+"ALDH3B2"	3.33204848743336	3.4067418420599	3.38685138699846	3.40009536062037	3.2648838782429	3.56570025510422	3.77697961651859	3.30940040090839	3.39663704020573	3.38685138699846	3.20599419708473	3.38685138699846	3.48853275466798	3.69068742859288	3.37829297146133	3.26505931090937	3.36731624877435	3.26267207146602	3.47001296249172	3.41854614993758	3.41700715021833
+"ALDH4A1"	9.24895387969525	8.88197414047163	8.9119754742717	8.67091667493867	8.45045098319569	7.83462817488289	9.47280804167948	9.61021799653413	8.55904372299086	8.15773873418163	9.11122094264779	8.71264058969074	8.23700529390747	8.26970353726884	8.4166293040686	8.5227748470255	8.57559312523206	8.33074248213625	9.27519817953206	8.80715940968711	8.04791183138294
+"ALDH5A1"	7.21136846668994	7.89169932630207	7.59117977148433	7.32921278894861	7.31734507129317	6.23629532392068	7.42139149307051	8.02335506238383	7.67340829871731	7.99781866033805	7.79240459068157	8.24719880280582	7.32124364406208	7.33395745671441	7.25033040882032	7.02626436873543	7.66166145673377	6.86517359433446	7.47396791179288	8.19837049304019	7.31777731655251
+"ALDH6A1"	8.97466565801106	8.78148065957077	7.98998713757109	8.82283084000727	7.90105269107671	5.27985797422367	9.37617213084422	9.2560645099337	8.56510961738205	8.48215576408215	9.06434310409192	8.59067047382633	8.2728249178754	8.32525876496607	8.1500483838008	8.28014965198903	8.50730014190921	8.47148709097382	8.66643476981486	8.22747348195004	7.4347763776439
+"ALDH7A1"	7.24517245394878	6.94502706129673	7.03217226255131	7.21647733435549	6.90712882860868	6.19613083246394	7.63518082527056	7.29073522762086	6.7639759940971	6.52903239544758	7.59710230569763	6.85279572862584	6.88914599051442	6.95703483007389	6.74112116770189	7.09491073798501	6.79743288025688	7.12557868511125	6.98713050202263	6.3891490449573	6.39129182475494
+"ALDH8A1"	6.50864653153082	6.31589543539502	7.60150388454229	7.2342010856731	6.75520277173549	6.79917857654173	6.23952461097529	7.19668559010473	7.0141317443113	6.36785204480679	6.87753478546488	7.01677691505611	7.42644708218473	6.84270191170394	8.02980856653562	7.4568400949993	6.54199648289586	8.53645960719888	6.83481549797604	6.20722769112796	6.86589395821391
+"ALDOAP2"	5.53226100596582	5.4484418523801	5.41514057525834	5.65695251743767	5.44634370152877	5.6613527045335	5.54679048823363	5.36546720385087	5.48202505821198	5.50076182085259	5.42210685631753	5.52663863620094	5.85742244564336	5.81673867861378	5.39644641378529	5.09203529406243	5.49526024846695	5.06731107798892	5.62574972857533	5.46582702907449	5.31620565531914
+"ALDOB"	5.25806622437026	5.60836078378545	5.44969832233166	5.54253462580825	5.27420623096716	6.0178463403229	5.60439507654595	5.25034873238712	5.45124121372987	5.41757305243981	5.48889427856605	5.38998946985972	5.44228024305405	5.73611527441596	5.71921728086173	5.71361291533934	5.49389740352218	5.23053353299887	5.34810385551279	5.3503641221999	5.51620523366101
+"ALDOC"	11.8268260283948	12.2827548683892	11.9019719890238	12.1498771896885	12.2146649675263	11.4174293345308	12.1431910395436	12.439721791673	11.9957020233186	12.397204494503	11.8711818016618	12.2453783903213	11.9575127325509	11.8479187502383	11.8011936709929	11.6192272791397	12.0235906038302	11.8715579802655	11.8837328219157	12.4521998325317	12.1408318941799
+"ALG1"	3.79545438961439	3.97761774245379	4.35895414104463	3.9263795403599	4.00837637269338	4.07792606942969	4.0901025627255	4.00561125890138	3.96779852709763	3.76649585251223	4.17917323051517	4.00961841977415	4.07541189462292	4.21360356417597	3.96052542720231	3.88401264201413	3.63613425140191	3.76145915426798	3.78735760164768	3.97172190515378	3.93746545015354
+"ALG10"	3.83353097716374	3.78305690521	3.64646847182225	3.5420948749893	3.64265268294643	3.64646847182225	3.67400141100695	3.71338628312354	3.46648410847177	3.59117398689131	3.62589837570552	3.79188804470988	3.64022843684781	3.50216816632362	3.47663337948422	4.04423264872699	3.77635970355566	3.67607933018483	3.42737851565301	3.43703590748736	3.64646847182225
+"ALG10B"	4.31340678635639	4.55163950780975	4.98200908134609	4.50477498165692	4.46597958559508	4.01874280387917	4.03370460317926	4.84068122286209	4.29321164699805	4.12840785472907	4.62173119759569	3.97451627180485	4.03457607688916	4.0406792130339	4.22544322165047	4.36523493577008	4.04270026396571	4.64429582040725	4.50643129871752	4.14549439841144	3.93684356768398
+"ALG12"	7.32333236068165	7.27934020510628	6.95741600094938	7.48045350703184	6.95865118779557	7.68845186319032	7.49849461643837	7.31020946709166	7.53004354662442	7.32152005988501	7.4574318828801	7.46688529530716	7.61832475045007	7.62375405164198	7.44800460202237	7.37937533400097	7.28413707979232	7.01551349087139	7.46147994739967	7.39799803926381	7.45081149515965
+"ALG13"	7.16781237728405	6.11819320391438	5.26404861180244	5.92951934088331	6.08109607417977	5.40320276779695	6.49195141287381	6.40447812994781	6.13204496563305	6.12924174923333	6.25607395714377	5.85695570039697	5.25854087705773	5.91151116348622	5.38029891942536	6.37155925265326	5.89254601871968	6.50335827678429	6.00457456699752	6.29979071193041	6.08056268101648
+"ALG14"	6.80965400333944	6.61461047627586	6.85550685620835	6.37164021987937	6.77938029946774	5.69245924585446	5.53697720819589	6.88535189655196	6.38122364250836	6.53374623643043	7.13130747560549	6.68395392302912	6.21770058839903	5.18167638335373	6.57711526193229	7.210165795751	6.31921092969829	7.0376389407108	6.17901050927455	6.71694416838411	6.30074942855956
+"ALG14-AS1"	3.94415313891307	4.01427305640163	4.01551272843272	4.18202709628414	4.12802843634809	4.40730753812245	4.21982543583299	3.81656400199742	3.98646564484805	4.03979539245002	3.79628675808934	4.19818030628423	4.15771954699887	4.15660599614857	4.26860012111439	4.13611179147997	4.02863408923828	4.05298723515863	4.03771313355036	4.02742355965121	3.99537302168068
+"ALG2"	8.23239602444231	7.96102903424006	7.7588720639641	7.88767583543476	7.70713285115488	7.48259806887454	7.5767555011942	8.13879919829457	8.05969942675727	7.66649090391124	8.07933293967815	7.10384148145142	7.98587674568525	7.18988499670526	8.10681302815782	8.08798047862368	7.74710853133296	8.3875493617197	7.92597920523429	7.84854718860499	8.06604544164071
+"ALG3"	7.27218694821019	7.39272381239181	7.42191592015877	7.32333439959904	7.31002499659367	7.46510958812682	7.55261662387004	7.12643338250835	6.99840430312291	7.34726170156773	7.13774382854218	7.30062852691328	7.19682649686728	7.28588131425496	7.30003145102654	7.28819085569563	7.30441026790625	7.12076562153304	7.30965974975213	7.62546513811228	7.26774340657569
+"ALG5"	8.58163595022044	8.57036919156352	8.28957020765649	8.01757289695206	8.73473033394407	8.50751569999136	8.12888865320074	7.88664612097166	8.04550995257321	8.62311409216415	8.73596661460178	7.96322632584529	8.02050108336394	8.06405032475278	8.07100774964878	9.04621980756748	7.94255037524826	9.16555013334233	8.06237566848597	8.50011752817463	8.37576385449386
+"ALG6"	7.90920658764839	7.84597364310301	7.41319234073724	7.36694646457135	7.69844815752551	7.35718686294717	6.95318402210119	7.42056715224699	7.29550058109154	7.25714106671254	7.6745883442331	7.02123315539447	6.79015666489124	7.17204253437213	6.51504763533979	8.17540503607839	7.35718686294717	7.98545331053822	7.25985161126719	7.50859832940592	7.12631106911256
+"ALG8"	8.16589482238061	8.2634765376807	8.18322585959543	7.85034746525083	8.0842472013788	7.69810597485182	7.51616258171756	7.76364893912351	7.74439449070916	7.88421558326522	8.03874018872406	7.84780230821258	7.72278875466661	7.70430699606481	7.77789856168375	8.55780862185629	7.76601721979927	8.35235891850938	7.91064615606479	8.27571208274969	7.77973126005977
+"ALG9"	7.30274087316925	7.21330502181499	7.6659421665035	7.18552546853191	7.52332855754917	6.9318159794295	6.56446352550652	7.15824105724925	7.23951472325573	7.49269894892084	7.22245151013071	7.42734539964511	6.80149845453951	6.91388802013517	7.09299291029247	7.36796501714587	7.50142296826259	7.43859460257103	7.27399460979361	7.73691033059621	7.29939858400709
+"ALK"	6.01280128075337	5.77872950452485	5.96668269176176	6.19526638197876	5.78040328078229	6.37017959761513	6.68521713404579	6.1667755705261	6.3416570284169	6.11572714553426	5.8841739305571	6.12059484398192	6.29316374566877	6.47316006987346	6.18653500323639	5.88951664322027	6.12059484398192	5.88090888010447	6.02362962313238	6.36684480235943	6.14893567527292
+"ALKAL2"	4.49419671153019	4.61552486600255	5.35265810891341	4.79930958860664	4.70440350626742	4.72083029964895	4.54099066506866	4.24030889194336	5.36647130865323	4.13713434086582	5.00554755670629	4.68877169612033	4.47854402090322	4.35056880042072	4.6789520602651	4.96474627150647	4.6041210398643	5.18414187854178	4.7927634964032	5.62038484963318	4.69877861390429
+"ALKBH1"	7.89042872993051	7.69089750288295	7.67434773647753	7.45518285826135	7.8296105295157	7.36537963057872	7.23663301506652	7.59369549565259	7.69016794574436	7.75579932402166	7.65627690906996	7.64707985093385	7.45306368627335	7.28126070113763	7.30690749072381	8.19444411754519	7.77662838885016	8.1323618438346	7.55504903282433	7.92583311638645	7.71624899585601
+"ALKBH2"	6.90925218805527	6.52544234972078	7.16697025974708	6.39590528077649	6.72189694901788	6.95848254992626	6.72454868923401	7.01228862727128	6.46804224548798	6.53935270608525	6.74085923072807	6.68078056152651	6.48503700672675	6.87522332949418	6.48707035484551	6.68078056152651	6.52485695967418	6.5793784210636	6.61031928663876	6.91390128464049	6.68078056152651
+"ALKBH3"	6.81010276612632	7.11225819770545	6.91484532706007	6.12818530139829	6.87633804371073	6.77671800511544	6.17463729525349	6.59050105829616	6.34490886953859	7.27307554569634	6.70052456767945	6.70879535627442	5.92663421142249	6.2593101257471	6.60542161137379	7.30082928286941	6.38906555103713	7.1688841834422	6.40462344472769	6.91370008346891	6.70052456767945
+"ALKBH3-AS1"	4.27796449885372	4.60830145913508	4.31446380181138	4.65546097077809	4.36744500516963	4.22030418808619	4.52314212684385	4.2634477428361	4.68991662013104	4.44128481087626	4.39241839164032	4.42764418536644	4.39970814197587	4.37755632843117	4.66400151523489	4.50803891605664	4.55974308300449	4.23844592167372	4.47987932666017	4.46356703911649	4.57512919121534
+"ALKBH4"	7.19491669036897	7.2147896030819	7.48062018239015	7.40174440554334	7.35190398048839	7.47864481037268	8.14292063578263	6.9565088494551	7.56083259710637	7.64011698180338	7.31531762475936	7.40073047674698	7.50217010610125	7.40136761089529	7.3441892562254	7.3275331602078	7.31743323620021	7.55907147271962	7.50217010610125	7.62523167282733	7.4727017671307
+"ALKBH5"	9.2821845128264	9.28884953843614	9.04261358176145	9.5095148307607	9.75539346131626	9.25413544785823	9.18260668939023	9.26038183441232	9.27161668182116	9.82000499329977	9.63250016865319	9.94500915899496	9.37463881104732	8.76575181746398	8.99561444454763	10.0058288778513	9.72194407259475	9.82587710447938	9.49819018610643	9.96040800619268	9.85541068343734
+"ALKBH6"	7.6487770841221	8.06641218715566	8.6165613003779	7.499515044419	7.99752400127085	7.86799348524362	7.64687992379659	7.81817312076346	7.67927667615059	8.17287009201214	7.93105173697558	8.04631182969266	7.80455792782978	7.4752114991642	7.72856093584034	7.83115797552947	7.55082628631395	8.09988984130393	7.6845968413704	8.27615286985574	8.05065329173878
+"ALKBH7"	8.11289492743794	7.90387542086755	7.89043075934208	7.53402618330654	8.02272214180509	7.4261950609055	7.89324664457706	8.00191171117581	7.63133369199315	8.01710161839816	8.31245839448365	7.91701814184291	7.17195549321335	7.01976789224603	7.60345146752592	8.38495962577489	7.51574917635138	8.59169679982394	7.95348565937116	8.26339363497326	7.69630946445856
+"ALKBH8"	3.76649585251223	3.80104895832632	4.36860502486288	3.50310234788329	3.89394513634322	3.34215571292522	3.79006357563957	3.27901782950089	3.94630077755333	3.74381590098132	4.10520762258008	3.75639252760359	3.73753504271604	3.64244051417368	3.58520928618764	3.82791964533291	3.57126948648088	3.95321357343293	3.7069588632339	3.85166155105008	3.75639252760359
+"ALLC"	4.8103644476753	4.87598852855677	5.03063876174468	6.08057199939813	5.29883303070901	5.09122390903668	5.19466025953478	4.95608350089395	5.35731962094135	5.28989473578001	4.67278643545886	5.1261334249658	5.21332138858814	5.09199304289279	5.19684527067129	4.76161898393839	5.25977610981147	4.59721067321528	5.14002768758432	6.64910067317573	5.21878306423642
+"ALMS1"	8.03028942996987	8.41236511557839	7.71251101173421	8.33968138068468	7.22891712930084	7.62138899953958	8.27595658415412	8.32204895732171	8.39626487947479	7.95967937553017	8.55672356395032	8.17429693374167	8.68462122609993	8.33323994344782	8.65664863966461	7.94586134817455	8.22665308683398	7.37011795583607	8.28441706667673	7.71453393283303	8.12407631099197
+"ALOX12"	4.75258827413984	4.57991790033665	4.68090610038749	4.75676017654656	4.72815991641917	4.84316030690396	4.78237804541578	4.68090610038749	4.70355591575211	4.57512919121534	4.15540888773757	4.68090610038749	4.81187850263592	4.83417976006716	4.86799124807299	4.666540636243	4.69582317226177	4.19306698925945	4.68090610038749	4.76114473065924	5.09656251772232
+"ALOX12-AS1"	7.19842461816775	6.80641008764206	6.62163034527793	6.96969675435399	6.46247661491795	6.63947637422974	7.238291877288	6.86260644054108	6.96061407112803	6.74418891407411	7.04730231824668	6.57754326091219	6.55906097447666	6.82805333385267	6.89373825933526	7.11488743149434	6.80641008764206	6.77164508823552	6.86927096153711	6.63378652119074	6.85330691425763
+"ALOX12B"	4.72020566715297	5.19712208780332	5.40160418954683	4.91100454531016	5.61846036574651	5.31807173223432	5.2797419006391	5.2303468820958	4.85692912108002	5.51996276862259	4.83054129765694	5.39263803902856	4.891431597517	5.37402298752044	4.62731543944863	4.68751945848515	5.16304009926144	4.83253003256814	5.1562750658443	5.8103340111392	5.27004090219661
+"ALOX15"	4.07521934942674	4.05697577614979	3.95154037522591	4.18172227812155	4.0955852770601	4.26375793771961	4.61284354163675	4.03271676167544	4.21971147402758	4.10050603131006	4.0746064250271	4.1445885979783	4.3443387056477	4.53582398133403	4.12406993622506	3.93668319481726	4.23356545027009	3.93301954964195	4.21994713520226	4.15299977770582	4.20072330981513
+"ALOX15B"	7.30428324803032	6.62969992074924	6.64791128511552	7.3297472176012	6.6033978353033	7.67431767685759	7.05565680253432	6.59767079723032	7.03162974356818	6.87195476628032	6.27076667335999	6.87059862048354	6.82956731391017	7.36807269710264	6.45262733233355	6.09656094332328	7.46053563422335	6.31068000508098	7.18219158914246	7.09103716669186	6.70745766219475
+"ALOX5AP"	9.91937568216464	8.28622078494348	5.61365293098007	8.44094511651849	7.83239803992389	6.71936986399564	8.24275892164569	8.42145352598839	8.26402582679471	8.39501749663721	7.89946581535078	7.717128360474	8.9983556443881	8.04432543277861	8.31787092226153	8.11762950533772	7.95096231797947	7.89109753879693	8.27323948698317	9.19686632882705	9.10331560209239
+"ALOXE3"	6.07351031007307	6.02557017221742	6.5258963533309	6.51083436018535	6.37780371607875	6.749907651904	6.74226416292491	6.1809530164472	6.30290285629797	6.48033797330829	6.14536570828007	6.41514183788059	6.58437917700154	6.53146389999618	6.30273147641916	6.42193771400165	6.54646672144586	6.42996953547419	6.40361640221656	6.47765624077408	6.77407094160992
+"ALPG"	6.83657847678666	6.78627177873832	6.83657847678666	6.83657847678666	6.57872145182538	6.68458396877338	7.37011795583607	6.63536426248002	7.0047368331156	6.91263310188055	6.67198141122487	6.83236469371306	7.08618607616654	7.28193154751261	6.81292514939627	6.62228737149407	6.79961541443698	6.67327717026329	7.18778704202335	6.35446000683156	7.13022900732002
+"ALPI"	5.59576040171865	5.55452185541382	5.75574571811147	6.00271805442409	5.27969535199701	6.21545729741557	5.95918042117764	5.87950609870494	5.96450764638674	5.61650788667443	5.60628461160665	5.70746115621166	6.00845032975021	6.13258327428302	5.91186450216551	5.31730919846428	5.79036404493683	5.09138101041691	5.84758030340856	5.40584706790999	5.81254190100564
+"ALPK1"	7.10655687871514	7.1733062385421	7.20676976990782	7.54782163456227	6.71930419427681	7.246073178669	7.7220702811801	7.7173213251111	7.54007962857252	7.06926115042148	7.68314114348819	7.19257115975335	7.87626213403568	7.32584229263485	7.75729490265052	7.00806809482174	7.35692461561413	6.94261296613637	7.58204792599638	6.79824706311758	7.10103090058587
+"ALPK2"	4.97771464560958	5.06657204392265	5.36791597311409	5.29753772916042	5.21935613179034	5.54450087133998	5.11192349230142	4.98536041279615	5.11594339904169	5.37456825300893	4.8116181193468	5.31699176598369	5.15254590801357	5.08434163260989	5.40870669808142	5.31277643560669	5.13970081066591	5.01891413851982	5.2591171334287	5.22124185084564	5.2272095405193
+"ALPK3"	6.13677400696509	5.79926134619878	5.86618979569011	6.12642601548769	5.98666990739126	6.57055257515575	6.42955973830883	5.95186916136157	6.19907452911333	5.95762439981408	5.89822510465636	6.13434898784708	6.15898994914293	6.2572670422974	6.13882184746058	6.03714682589027	6.06425536978966	5.80574984101243	6.01453185239691	6.11722989043106	5.85717980896048
+"ALPL"	7.89918563752837	6.36199217988621	6.55219944242996	6.4372079536123	7.1345712431774	7.7917824873877	7.73472126703878	6.93208013771899	6.55271183072426	7.10618071368882	6.64225065736962	6.60410275394263	7.21996031805576	8.19396956283271	6.32594117035974	5.72147626687309	7.0314307663308	7.027183781052	6.7159780187689	7.88582749538667	6.80233621466821
+"ALPP"	4.99649866897971	4.54626516526887	4.84340939222804	5.01173213479792	4.90539531300568	4.87996799814403	5.31661565164498	4.80235787391579	4.97066631622946	4.94742361195915	4.79922453258819	5.01291014762464	5.107609754491	5.2063248845623	5.2641683910247	4.78396749418007	4.88253539159182	4.66479201751577	4.94742361195915	5.08480378316267	4.98606159576027
+"ALS2"	8.73354451180278	8.88698577821052	9.19684097573629	8.71595284878365	9.09798550232788	8.64331992417046	8.42362626780761	9.26060960823788	9.08495115030073	8.88773713712351	8.53565990641555	9.12352078296345	8.46564866939144	8.65614151291845	8.88818201116349	8.67424706791004	9.19858171379487	8.97558364093717	8.95418296882393	9.15622288946388	8.940436439611
+"ALS2CL"	8.20109046108822	8.11453541508526	7.99115156068846	8.11451474190872	8.0628865305337	8.24680572498555	8.27493824443819	8.08787635399073	8.10813415613258	8.06802143640697	7.8379794698352	8.06618768976858	8.30540757315757	8.485743456937	8.24340672574223	7.79566769976188	8.1223058761818	7.83266508100087	8.27412079871843	8.04046067972257	8.08901934581379
+"ALX1"	5.46569537163224	5.29004387678753	5.26281162384279	5.32692006831047	5.26894414981644	5.67249288600674	5.30292226782929	5.26256832106964	5.34865741652847	5.4322918669359	5.16304009926144	5.41234325183995	5.51728685110317	5.73346045151679	5.1672319149605	5.13273792428112	5.31745982802716	5.21794980820394	5.1788273344426	5.19309213555051	5.12057429431316
+"ALX3"	5.89708195618327	5.68252365059641	5.73186344290391	5.68252365059641	5.41974551651577	5.97627114862853	5.81221602889441	5.79785118219313	5.85199754975497	5.70584767107086	5.3663877184891	5.63927020250587	5.47457991456081	5.83733602682885	5.41334577829929	5.29274730601974	5.64802317106299	5.41430596273146	5.9454030297777	5.82440677574785	5.68252365059641
+"ALX4"	5.80337704455406	5.70573020397916	5.61295889739723	5.8668976310647	5.72783373244523	5.82287033003888	6.10372571657931	5.82531542674776	6.05450730401669	5.73122202605773	5.8512934538277	5.4686867227142	5.90782281088421	5.88997852503247	5.6515591220704	5.80336617034813	5.92028831930289	5.7745698167889	5.77127192872887	5.53361732479923	5.65163391071136
+"ALYREF"	7.07079616247665	6.22598703281347	6.69680027704187	6.47186991590981	6.31800539841422	4.36522841767658	6.39368524198192	6.7458244897887	6.59414541791554	6.90058681054541	6.92223562945365	6.69706403350646	6.18363186022627	5.85951727256422	6.25796161345581	6.92457327031739	6.10142124542495	6.72354998103509	6.35295724894461	7.0562828811935	6.50905922266351
+"AMBN"	5.17529259887783	5.16865733007765	4.77245242265229	5.25230509889418	5.128232587689	5.13850321366542	5.23616959708651	5.02297040523426	5.1716869876303	5.17329272626392	4.99652400202062	5.28635512794579	5.24344989399515	5.27159475447289	5.33358936572871	5.14637435872349	5.1716869876303	4.93352617765821	5.1716869876303	5.02297040523426	5.13011028748764
+"AMBP"	5.91193508240651	5.66732016428347	5.78717094131373	5.69869204991546	5.59011892219728	6.49804472660575	6.44958144829378	5.7662511083396	5.86303713327802	5.87275755679131	5.45917150300587	5.83298841256193	5.79489428053778	5.78812606596317	5.67442162182427	5.43300576023898	5.76209955312936	5.67342991908882	5.79976601284619	5.85783582018099	5.81240333052648
+"AMBRA1"	4.44126121740633	3.94200802720919	3.86258566240899	3.93737693037911	4.33412593032964	3.93787158425111	4.16511010876998	4.16959275694442	4.12070952882824	4.21274871574948	4.32051532165868	4.25341368724413	3.67007307196875	3.76274493816815	3.60105347301008	4.34634699370544	4.13042214773575	4.43766911767005	4.34634699370544	4.59883141503884	4.33412593032964
+"AMD1"	9.36612738984866	9.51019295823746	9.57738663312181	9.4449595333269	9.49801623665922	9.73237972458305	8.80021845226114	9.17541629658357	9.52939635333919	9.58112711174397	9.85680529854319	9.42855178121751	9.52704086421546	8.89402905076576	9.74045394115459	10.2613817377144	9.5099755715026	10.386844218663	9.57257617786964	9.36740467555952	9.3793916164208
+"AMDHD1"	3.51462076717672	3.62643830603757	3.41968830827479	3.29381355250443	3.59023465426437	3.51736962896056	3.60126743349148	3.18955008431709	3.45743800259561	3.29361187791554	3.15109799107889	3.31797419706275	3.41968830827479	3.60126743349148	3.41968830827479	3.54749172073676	3.33542734917176	3.39442081186062	3.41968830827479	3.62643830603757	3.43051941574279
+"AMDHD2"	7.67009853341559	7.85170596265243	8.24452100478127	7.76853989504387	7.67596952133228	8.09612837942283	7.43039065271235	7.4865530757953	7.63966582241733	7.58522046002147	7.98605774450131	7.74503510079938	7.66570289799546	7.90310310898559	7.61605196430547	8.05946618261951	7.60490738676515	7.8028063433935	7.93385056348047	7.79298553433412	7.63125585924127
+"AMELX"	3.95934850653495	3.89453690819314	4.15608390748972	4.23172709181001	4.00684565691999	3.92350540584308	4.25693818836917	3.97211820616635	4.14078509183807	3.91715372199708	4.0856066102298	4.00443739968284	4.02714387774633	4.10913267862265	3.97547742438485	4.10013580222789	4.01067301408564	4.13789210809795	3.89411238922752	3.95231873394473	3.8726237497961
+"AMELY"	5.10362501509115	5.12472669216831	5.1484185291085	5.28920427458433	5.10150808280312	5.19456617570161	5.59842518467868	5.13732979570986	5.50803284400434	5.35683636637551	5.16304009926144	5.06133538870647	5.25441272145335	5.42476941474546	5.32933435143122	5.23045797676844	5.30401581767958	5.17167188827816	5.37960874065414	5.26275257265145	5.42402162169752
+"AMER1"	4.852312671044	4.97373294213815	5.32162312963428	5.14821689323454	4.94020564434806	5.55709549122803	5.80926905487257	4.90673461352106	5.073694096207	5.15239917715336	4.82815792060336	5.40724631050494	5.45839357062239	5.39725690188456	5.16112522096038	5.30040837431127	4.9152793846859	5.15239917715336	5.16035187536056	5.15286274555932	5.12764182416406
+"AMER2"	10.6405518508776	10.4650867115399	10.5804886751613	10.667630250445	10.6437020153955	10.6348060390241	10.5867561864366	10.1481169824001	10.1599267722303	9.42741689121734	11.0706618976679	9.70042278160617	10.0937519362511	10.7592163655134	11.0896769949157	11.6678956817567	10.8334402374588	11.2260122019613	10.8039035284175	9.41984340497735	9.71546377336411
+"AMER3"	5.37067695936507	6.30128456218684	6.38677624984375	6.03837270463874	6.99673657299825	6.16846440439512	5.96937887146359	5.61952136939385	6.06581200781587	6.42649173850813	5.89266593371139	6.51608229163668	6.13682738441248	6.08481761857536	5.99959115959618	5.69050004291591	6.16164556398014	6.13682738441248	5.97325139048016	6.46726123120396	6.37725665658829
+"AMFR"	7.82333716790601	7.80315518103702	8.39083477302189	6.05422099532638	7.28083523195875	4.69808340608843	7.39907268883342	7.18619754810033	8.33563034671654	8.07222940040869	7.84785266126906	7.90184440077727	6.33935522268927	5.48929884001985	8.20577247946329	6.14351889631686	6.45507619892782	6.36193940735653	7.52753409992436	7.84545746478291	7.29322389194215
+"AMH"	5.36411657772664	5.22261291204859	6.03429847126945	5.48835733413639	5.28948084130776	6.14599307854642	6.17975589787535	5.58998915888436	5.69234569197191	5.05698318051844	5.90673424936038	5.62029297949512	5.71341851500174	5.57039281793457	6.07394763671519	5.43300576023898	5.37239156232552	5.35002477843176	5.51254174749745	5.5443419638308	5.6638419076021
+"AMHR2"	6.52737535402981	6.6285639095528	6.55112222105457	6.89340956736545	6.54225302871368	6.79444266202651	7.10117281891684	6.63013949616293	6.54867788128976	6.74539642359874	6.35729282429687	6.68791948317856	6.77111993235552	7.22372172702308	6.78953578471793	6.66185396242524	6.68791948317856	6.58025657846691	6.83355228787482	6.44134714950639	6.51489962373905
+"AMIGO1"	8.11942840461902	8.38110441747023	9.13952344528182	8.624189751145	9.07848485512113	8.61515214240607	8.45670965973849	8.47234422805425	8.87535402790126	8.75043357065417	8.04213996782831	8.72554354736868	8.58141203304116	8.37784659655252	8.54838679531462	7.89251591904773	8.83847490375632	8.6758084099783	8.19884155254398	9.08545971459366	8.77362841024632
+"AMIGO2"	6.97155815694351	6.24151644797765	7.45489446120542	6.89715981140747	7.02981487324759	5.92231866186078	5.70243528032694	6.96339159783838	6.34686103577174	6.46919611500168	6.67043576136555	5.95429630323877	6.10052695544261	5.63526989645709	6.39351515144647	5.58217587731769	6.39351515144647	5.78006809192567	6.60702626445505	7.40096947760343	6.34203279724286
+"AMMECR1"	5.09005398217244	5.14873718901971	5.59408711679834	4.81317210903578	5.33867668397089	5.83199242990119	5.15594386977449	5.53584279132252	5.19973652481879	5.08937474887717	5.05360121580786	5.63691896946738	4.93930627648253	4.94270446303266	5.2192290607781	4.93835549675466	5.53749848231488	5.60080572041532	4.87539049393121	5.2228862718574	4.89497208645303
+"AMMECR1L"	8.07021768187822	7.74075578619848	7.8425472525152	7.51606084135757	7.48564612753159	7.32395131407865	7.31733885297529	7.53108633347139	7.54333229973037	7.29269082727161	7.69383330827324	7.11556053708629	7.52756382907446	7.39577349072603	7.77877621625351	7.74696004542077	7.13690046415957	8.06726187694215	7.24437652507925	7.60042075413913	7.3802117002935
+"AMN"	7.32052020348184	7.22878751356354	7.45602055791726	7.44046307041281	7.11554085140586	7.88259740942595	8.18184367230973	7.42832768281687	7.31541067233707	7.54745783978624	7.27025493480798	7.49495211114579	7.59269639686626	7.70015182568492	7.45075356634517	7.11005913598854	7.44046307041281	7.03592213781849	7.70353821431164	7.43532786187535	7.3916822343843
+"AMN1"	8.46093184470022	9.36449617741143	9.29660253974009	9.13761531088379	9.61706336213889	8.90463746641351	8.65107364152765	9.13476532980726	9.39970773473295	9.37571591081797	8.99997633515225	9.31621912600622	9.08923709666815	8.87146675157416	9.2587748761022	9.27102831547574	9.44303449607412	9.35668978006788	9.36799459805603	9.28945226158313	9.38799369218975
+"AMOT"	4.92654893471693	4.62665817582623	4.35967671363689	4.41087818020856	4.39494028479236	4.25146069565779	4.76968755238661	4.64470596756199	4.58658913557431	4.10432657895314	4.36392012039837	4.26120450151034	4.33290659538369	4.88828591921412	4.53396827354628	4.23736744607599	4.36395563801716	4.1576162651875	4.41087818020856	4.41024540282669	4.25085218467347
+"AMOTL1"	6.38048483186676	5.64366039222378	5.34985345302541	5.55497965599273	5.33984752339043	5.56880006231516	5.96709189624537	5.68853857626246	5.22625610727944	5.62432255483626	5.51462546430823	5.54358207097787	5.73082883492788	5.78459278902469	5.37682447631082	5.35821453524728	5.71656556366923	5.3634836907951	5.90120135265929	6.169588174684	5.9409645868078
+"AMOTL2"	9.04291377077538	9.25887652669517	9.36738339086993	9.17306735514186	9.05871064867335	9.50370847758737	8.44201913744282	8.66721731054159	8.6492076924845	8.98436806152482	10.0524852241365	8.80143423237768	8.84219127100481	8.93727841586292	8.84690767016752	10.2749147275561	8.80290922870324	10.0787048400713	8.90624350858242	8.91448168990743	8.76162601889793
+"AMPD1"	3.99299080026341	3.84054160309622	3.91020436468035	3.78555437998523	3.92199870624581	4.30291884282523	3.98686925603022	3.72677301887207	4.02246647083746	3.67988517559311	3.75655530886514	3.57219486550486	3.96754008411434	4.26759568150848	4.08760134636187	3.94075421234584	4.21696563667724	3.69956166548444	3.89892833197753	4.03313892584024	3.85006317093893
+"AMPD2"	9.43939380700793	9.30044307086823	10.0495549125491	9.46175003195491	9.56760392065563	9.89868867665638	9.42817089822579	9.5045093707698	9.9917499995341	9.68858225714492	9.20660084841757	9.69804716226714	9.8005831132252	9.65778762557092	9.93118785676398	9.17470117248418	9.71130875994944	9.42692809721735	9.42906548142719	9.72852339402735	9.64472863842725
+"AMPD3"	8.75137087613068	8.64138014011569	8.41827093623773	8.35589270627868	8.26155566118097	8.48483820370605	8.04614567146255	7.84921297637009	7.76369834335092	7.88930500304498	8.59388174863565	7.70935113416166	7.79631111952332	8.18692097548805	8.15466152757282	9.2891962456971	8.19093679124645	8.69507482741816	8.25556653386676	8.279139290275	8.1387887392723
+"AMPH"	8.44160498591908	9.41812301838663	10.0295704186221	9.27903379037779	10.4196637268582	9.44151102529136	8.21887438209095	9.65667176448385	10.2212388334234	10.3986983982696	8.69755735489085	10.4138265820347	9.36935102849909	8.99638988236441	9.87457965421806	9.39377958236424	10.1815749839631	9.69763405407527	9.60797490330137	10.7052673868412	10.6754584302522
+"AMZ1"	5.11810772011726	4.94803621949575	5.4617174808033	5.2868701851914	5.03103113141015	5.73312485910931	5.5941733389914	5.15795294284374	5.22370997974817	5.21418564013211	5.3712294916404	4.91874783082991	4.98662276818966	5.4718926747376	5.15795294284374	5.1028652644123	5.13758924045917	5.24298033165874	5.14525166561464	5.01118938132214	4.74122334887782
+"AMZ2"	10.3903835060908	9.99766298698257	9.73358988413628	9.44596356092735	9.88792478104232	8.96378430748819	9.65288923365647	10.0295165741212	9.64325709534863	9.88526991023387	10.0656515649746	9.78966402848053	9.2240462996909	9.46922262249589	9.5557827738125	9.73161812385706	9.79488991311082	9.87348998841429	10.1125704986509	9.94529487114422	9.64704106595158
+"ANAPC1"	7.41954763023314	7.94867047990556	7.87521144757263	7.57453231745731	8.19431796370989	7.55467923819897	7.23483823235101	7.76774121306268	7.75184919925465	7.93851514541113	7.43442449477792	7.86544718906943	7.59383034814379	7.54067711602473	7.82553554781742	7.5756209484967	7.76055959815163	7.63562580065119	7.41347820996767	8.12093821499797	7.9859098450569
+"ANAPC10"	6.11950480055644	6.32290212762028	5.8301580698393	6.05748170120775	6.27116601502608	5.24599077798016	5.70130982136432	6.35045546828082	5.98376981811954	6.56666311884387	6.35182872706874	6.04110624445948	5.5863684961505	5.55974667297841	5.81709673292333	6.1864449480428	5.66128153398499	6.57933658088893	6.07975223812441	6.08853060229578	5.95729871296092
+"ANAPC13"	9.87486092103281	10.3452001813396	10.5346786217324	10.1381991899931	10.4757396276577	9.81297868396475	10.0998030723708	10.2380138964544	10.1462775735509	10.3993817800082	10.2423621636155	10.3101591936864	10.2730578006758	10.0964801882634	10.2516842528524	10.2865639850075	10.2516842528524	10.0647392956079	10.0607041939367	10.3167036280496	10.3161948905949
+"ANAPC15"	7.58282702645606	8.02246199058882	8.52216711034003	7.72322310763188	8.45981459197467	8.10332655362893	8.11044665019628	7.81504118822908	8.03269128733742	8.08128007942716	7.95883262181128	7.97815396761246	7.83158024226684	7.90014571211946	7.7898063827149	7.95069107992017	7.8905479060644	8.24959132438531	7.73797693306396	8.18112728914974	8.04171344341363
+"ANAPC16"	8.62521998078674	7.70685359611946	7.7477110176682	8.29683143334337	7.73212956664426	7.78720910725216	8.38462186477591	8.05350662784549	8.18320065628831	7.60486813127767	8.13349864883291	7.25720886214632	8.54705790462694	8.38864996676184	8.68602022717874	7.90766550461326	7.83731983397101	8.32743029049661	8.3515566512706	7.54588363584151	7.43392147024443
+"ANAPC2"	8.38640661913514	8.16134269353849	8.64833984502308	7.9968654026535	8.12329827190053	8.5440879380697	8.09771888473534	8.06406996459573	8.00840538561269	8.20575459526106	8.46812373158697	8.10393943534512	8.03784247971834	8.32179184423174	7.89171750913344	8.38855272389892	8.03636324679302	8.62825378882944	7.963552595175	8.28977165171992	8.27875532338362
+"ANAPC4"	8.44930481888741	8.52619710450663	8.79902963764077	8.30532495251495	8.29075560949888	8.34839040554146	7.83443446317354	8.42011479277468	8.05622962527703	7.99573443421439	8.67964186662399	8.21967180436171	7.9567051905602	8.31464507876646	8.44750214427965	8.35977865547143	8.1749347267579	8.77928265182507	8.52355338610029	8.29129669395363	8.23920520635999
+"ANAPC5"	9.09763249047266	9.37923124173428	9.4655558073706	8.81554390820064	9.27140898307199	9.21030817484246	8.22586809921009	8.76418745288769	8.63089417249449	9.18121331316909	9.79821167089524	9.05878141782918	8.62185612196424	8.64304769925974	8.47879806014231	10.0913951752803	9.02472737832679	10.1131552062299	9.13282488852584	9.26009383022807	9.29875962839842
+"ANAPC7"	6.76938704988304	7.48111391193399	7.83511579322754	6.85146607860969	7.54474111440727	6.41879346660187	6.02006872004103	6.56777760043105	6.9455179223422	7.22436911375526	7.23621861785816	7.07575905916013	6.88358441061745	6.42474487189749	6.97655481508175	7.38053713410031	6.88672484998596	7.58422929345733	6.80627072383859	7.48111391193399	7.30147201754781
+"ANG"	6.85410171081353	5.73586417311183	5.44281404072242	5.7273706461625	5.54431785365168	5.96609793191349	5.94340497925111	6.21658500667171	5.67593138489352	5.73586417311183	6.16250667202001	5.32270807436876	5.70067976342325	6.23481056702974	5.7033729788721	5.60294086785671	5.70065639457278	5.40144437802822	5.86219836836549	5.79483226187261	5.53295917600485
+"ANGEL1"	8.27991529162963	8.03783912304649	8.16380591420939	7.90645547152044	7.9681237132051	8.33881668627956	7.86729960374836	7.99242330131249	8.14858644311635	8.1712605441618	8.43366063528134	8.06031683524529	7.70948612356506	7.81784837517774	7.79232584240323	8.62667781695414	8.25815092999876	8.37630605416294	8.14065317476576	8.14711488412681	8.25184914433043
+"ANGEL2"	6.50984694418445	6.54138743094961	5.77020676490812	5.97507331111237	6.07077782838856	5.57468625217797	5.95419602833066	6.09355038994585	6.38264494996375	6.33861751866731	6.72855713811001	6.04852130087981	5.82648687307589	5.79976601284619	6.16893526888229	7.28677927554608	6.31533445782848	6.97544716045663	6.40727561691257	6.06069869650166	6.41835373613571
+"ANGPT1"	6.26107621343306	6.48506556423064	6.0580826474935	6.18515370831188	5.52882775148553	5.7515154435716	5.42147443258355	5.78210959957772	5.42666799807837	5.95439434993661	8.19122483713759	5.86267235104394	5.79976601284619	6.09319142197657	6.24640456468496	6.85350448368524	5.62265588147451	6.57294568150552	6.53794470292504	6.39934905628304	5.67527914703384
+"ANGPT2"	9.21086377390546	5.49875253924955	5.29034009134134	7.09501662678559	6.15110324409842	9.90749199263544	6.14117216891384	8.32414751948578	7.20734685309184	7.83856974482836	5.99965567971153	6.883620498715	7.76189453088888	7.78713020879457	7.51441340006876	5.66924473452819	6.15742147611149	6.16523844958488	6.20803986809561	6.39214318940346	8.22313102266429
+"ANGPT4"	6.29079601809376	6.30281224983407	6.23050134507167	6.40445708654392	6.17575920960265	6.3643480768716	6.48862389482629	6.21565020099937	6.4150551323787	6.31250241533808	6.34629612833554	6.44567441705075	6.44067483123101	6.52194496043307	6.42730448228617	6.30051651425134	6.36400625691123	6.20521661957975	6.43211261876244	6.39599386250509	6.43587390624364
+"ANGPTL1"	5.20491185523451	4.2766536562591	4.54441054696526	4.15320700481835	4.30046421279771	3.69305848859646	4.23511234359296	4.61738986277418	4.08950244132383	3.86554649788355	4.28530672534945	3.5507215800593	3.28881978606701	4.08038562899323	3.90651558929953	4.0721680665969	3.76160395994396	3.86230411803962	4.28777756796926	4.00976839831977	3.94847753638272
+"ANGPTL2"	6.89578557732448	7.02612134079835	6.77065148477264	6.29348260327199	6.47231995937897	7.14492175373236	6.86014371870781	6.572674760607	5.99090219860005	6.26805316126147	7.55069610977567	6.14957966650552	6.47041984704298	6.38646157921898	6.71972380020033	7.95158726462696	6.06202152898964	7.98792584970016	6.27985844046759	6.5029841154914	6.23644587806046
+"ANGPTL3"	4.00050488100392	3.54228774055999	3.86296776757305	3.71199249725354	3.68677898483993	3.84930469496979	4.19730113347751	3.76969331985437	3.49914467752974	3.68677898483993	3.58159913167913	3.64731208471121	4.15157689441414	4.06249239718452	3.72329261645451	3.59743992747629	3.61106838641671	3.69121178925612	3.68013914919233	3.52711824350504	3.68677898483993
+"ANGPTL4"	8.35494181813171	6.58835759501388	6.9664043423685	7.25532350556468	6.31195214306154	7.30495226336595	7.68652478923933	9.22675957456302	6.28816126081896	7.79595490553721	7.13638920567089	7.86746362717362	6.84124054017797	7.30013509215475	6.74898540316617	7.36371661742232	8.03270527574192	6.88374089022364	7.05920488239284	7.0258078688845	7.85506474093764
+"ANGPTL6"	5.52348517684619	5.49477410962731	5.11044535339134	5.31934390550631	5.48077605035627	5.61836989603593	5.47542763050103	5.25860221483695	5.39892754370658	5.59736755400282	5.21393206839388	5.33951148210415	5.51813550545147	5.56906951496614	5.03164404762089	4.90696901035001	5.31939835416661	5.17953437290741	5.30097962000209	5.47542763050103	5.5941733389914
+"ANGPTL7"	4.33216523700319	4.55589522731289	4.56590249071832	4.62239093767484	4.32666333284192	4.69218427655041	4.9127416688219	4.60837007798275	4.44090731229427	4.40890663497391	4.41729913012034	4.87148537338438	4.58491342002184	4.74638015793932	4.89847678588458	4.56033024068644	4.56056027410149	4.50591881497085	4.66328521072218	4.63053976129679	4.42737300871997
+"ANGPTL8"	5.16271032125142	5.34174865786296	5.48233599141907	5.4787486404723	5.13787422271295	5.64940058415214	5.56072054115665	5.09714338382779	5.35142859049121	5.44273290192629	5.43474734172549	5.3957631720002	5.61969006918475	5.7112476415172	5.38071337027103	5.57918316428612	5.31706372744757	5.19687532660365	5.53746732631627	5.04902756148391	5.43260725221972
+"ANHX"	7.65808939753962	7.90859193835257	7.69551945116139	8.12980514971768	7.7860611202066	7.51353306230894	7.79091998863374	7.73407518884947	7.99166531084415	8.01413861103015	7.76512046373356	8.0126431413742	8.07276630824721	8.06105508939424	7.8361666910234	7.87308926979037	8.08304342615791	7.54309146650128	7.9206603874108	8.01966341271374	8.07963112323841
+"ANK1"	6.40155442162572	6.79659431812216	7.15758507703979	6.87980403148404	7.41030595553241	7.24714486923403	6.53446267418273	6.47095631655538	7.2588058940001	7.12305985672662	6.54717094202004	7.26135966896262	7.61260492501409	7.49863610190125	7.13815155875253	6.41799810885931	7.27659463943421	6.60298107972887	6.80559090623383	7.35069436389836	7.54436778745283
+"ANK2"	9.23754377282188	9.43116211982899	8.76806463890713	9.24319107688602	9.6974322765692	8.16413522114666	9.04739051347984	9.58728811527506	9.2771316326459	9.94494441321997	9.5918698690214	9.97787498402275	9.03149971719653	8.15951726219105	8.93546195878463	9.7090763187776	9.65365270359934	9.59296488330692	9.43235581686784	10.051476232988	10.0546054292542
+"ANK3"	6.1662901972188	6.90022109646345	7.83644146322319	6.71039873609301	7.47027415065346	6.71270785623212	5.83833606553691	6.37017332102002	6.88154607046652	7.03187864059022	6.87355133928348	6.87355133928348	6.80502621901735	6.54036759035429	6.99738138511222	6.92848566503328	6.99498802707258	7.59238054013218	5.98279057635053	7.07355904264879	7.01091161378678
+"ANKAR"	3.56052808151949	3.877760442334	3.7422457953686	3.70717362951406	3.63689854792933	3.69782595547211	3.55129921163869	3.51943634186783	3.81530564560868	3.67216776847921	3.64860404314389	3.56606240292008	3.43774805577368	3.46899073448532	3.79749721902778	3.82367814345838	3.67216776847921	3.45804925888295	3.63380446419854	3.94089937654294	3.67216776847921
+"ANKDD1A"	7.69811092557266	8.13232387884358	8.58230560189084	7.70899352001125	7.70901738413245	7.53434410997273	7.7006793295455	8.29671225768798	7.70430539766992	7.42086941136118	8.00932791852733	7.66673239952913	7.64575525899369	7.69971920557557	7.64050834015149	6.98295093139509	7.65253454093561	7.61186612963996	7.73571829757093	7.61495220170991	7.5273386483443
+"ANKEF1"	4.85684288570712	4.86683894550556	4.97890962565814	4.88880501498982	5.22452195194723	5.61930915624374	5.6337205793362	4.75799280259008	4.94413462892842	4.79850094214677	4.91188524235788	4.82068944336005	5.72857512617402	5.19471266611457	4.91167228998305	4.91798686739031	4.90570159106885	5.05667526508222	5.04363530261249	5.34896366969927	4.98363646665152
+"ANKFN1"	6.32232198145195	5.64670485501094	5.19049772321554	5.32585812841788	4.76573607482962	4.74016527140363	5.65168743500404	6.04780890771933	5.50713191503281	5.05194671641825	5.51724259379152	5.36043140269958	4.94789520210752	4.75105675033421	4.83851391392687	5.16630390269094	5.24373083931544	4.92462663845571	5.10201311642323	5.24849751923867	4.75105675033421
+"ANKFY1"	8.54341921275592	7.98041733780494	7.27282420934674	7.73470892963093	7.69928157538801	7.20835969739589	7.6695213678026	8.10330463581419	7.47226411673504	7.85882695880554	8.51096983614	7.78237495580919	7.18021534418777	7.54684304926272	7.11942671866634	8.36610156996848	7.81473609023646	8.28315319737847	7.7330934754449	7.83895578812674	7.80711547605552
+"ANKH"	6.64188210616937	7.23819381403874	7.38764694440972	7.16982514297837	7.94840361159727	7.25363966725378	6.540175149796	6.92627366021882	7.8574091688255	7.72982099175059	6.89950277173478	7.63929763309161	7.56764632083094	6.91463807915867	7.49600512394581	6.51780238063815	7.85023493822825	7.03330520247093	6.86572349538437	7.21444503618563	7.76853989504387
+"ANKHD1"	4.84682222768896	4.9815303605312	5.07267738536687	4.72897202562722	4.4762829683346	4.71063505864897	4.38575553172109	4.92059008247208	4.4660854305298	4.73150203762978	5.11498849046372	4.85667174093667	4.58150184416857	4.54286512095067	5.07030424339162	4.83641082091343	5.02551422669327	5.0519654679585	4.79670228474863	4.53032645306935	4.47233425131675
+"ANKHD1-DT"	6.36951315179598	6.77827614944023	6.96279657046308	6.84941547541792	6.81740118238769	6.83790723065596	6.51401051327703	6.63184513312968	6.61459015892547	6.66828800177373	6.66190307247722	6.89947661391954	6.71210437305976	6.76158201604405	6.71039873609301	7.09934032364064	6.49281571296787	6.72950958311735	6.56765011739583	6.70222548926262	6.43506215499034
+"ANKIB1"	9.54950470798339	8.9909533078169	9.17078576585284	8.68211350775138	8.81685633513856	8.48910585216793	8.60379681602114	8.75188328517877	8.59126144244682	8.3518820880418	9.52754843507038	8.56245778402251	8.28021268896638	8.29330582109043	8.57500104161555	9.79821167089524	8.52121257251057	9.69078208714587	8.99826491993862	8.50050100890159	8.43139444999499
+"ANKLE1"	4.2857474549844	4.46444169300833	4.57512919121534	4.62819298583632	4.49220926368791	4.90369374589964	5.25068025636959	4.58482078250237	5.09688431765677	4.82069261488785	4.69626343807439	4.75160147208712	4.97113695147524	4.72855851577467	5.44882320303797	4.49897349965829	4.88073490651995	3.92291988949513	5.05174767853514	4.44673353462777	4.69653788900721
+"ANKLE2"	6.32545109696288	6.43918089943612	6.55284581863699	6.25172680569145	6.4712789340158	5.84630178154501	5.78957252763051	5.862877770805	6.39589504219214	6.49392681630828	6.48744119263369	6.29240809405726	6.42982471330203	5.75096061693567	6.40130104517961	6.47599330787531	6.37378773865314	6.50713674819984	6.29430090802031	6.32758085505325	6.33187845842668
+"ANKMY1"	4.5458009654471	4.61905794388645	4.53455932349442	4.91100454531016	4.63880049993818	4.59905086913682	5.1085600032878	4.80195737060078	5.03345478946659	4.92994178961683	4.77454860678167	5.04197660028186	5.18092628720186	4.92451212762505	4.76637612644997	4.78232541913553	4.90899121118679	4.72960897130447	5.04003097162902	4.78503885924167	4.93378970898806
+"ANKMY2"	8.99211971959611	9.43574792628915	9.61575675719082	8.6395107226542	9.61601843314491	8.77631265533963	8.31438572077446	9.46794073109556	9.11389645174081	9.57369751681447	9.04778127893851	9.79601027409665	8.37757106066694	8.39781492499841	9.12120792410646	9.38066425550839	9.47863994854229	9.38142815189823	9.19731285223844	9.4697511556507	9.43508232606302
+"ANKRA2"	7.26168483055009	7.51799035189182	7.46998225058339	7.29258005409838	7.54310909559094	7.20160046509388	6.80370171649587	7.37630791147159	6.93929540780509	7.28662915521951	7.95277951842372	7.27595671540577	6.94866283607236	7.49590435822269	6.72688739822111	7.76190844108125	7.32204627458006	7.96386854068518	7.24308056796595	7.27069878457452	7.08566340789941
+"ANKRD1"	3.60924373713182	3.6978448260454	3.53932555628666	3.32915991210885	3.72991576400557	3.80269637928757	3.45148508943459	3.54080644432455	3.64244440333094	3.41510190334686	3.44696985945553	3.54080644432455	3.41603442714824	3.45304254344407	3.54080644432455	3.59503258597204	3.54080644432455	3.72802804934018	3.6348674902296	3.54080644432455	3.39025281147034
+"ANKRD10"	8.40616291695673	8.59891572085295	8.81780729305946	7.93245878726465	8.00335477110342	8.07090836325211	7.42871048680333	8.88263462110517	7.36130437731423	7.56791266540889	9.0306840082464	8.26909389665366	7.26722808075353	7.68222730322978	7.60221103314339	9.03153127835888	8.01485484657833	8.58143686955302	8.3996108049784	8.08941684816201	8.04112666596422
+"ANKRD10-IT1"	8.2913111219961	9.21908941558962	8.22128517735215	8.67651536096808	7.97328807366945	7.48127139266278	8.10519126781965	9.13260725155523	8.39512732188193	8.70569876406903	9.33670291556998	8.71382388762165	8.85713112017201	8.51885975339648	8.91212216048836	8.81573256755804	8.72777222304449	8.12887167978445	9.02327430527439	8.69924073353479	8.45574120517743
+"ANKRD11"	7.92117352613528	7.95810480478392	8.39305000391382	8.60769355600337	8.46179182625463	8.68992468722603	7.40133808450103	8.21755919933695	8.46862559838677	8.30457912610506	8.33179742661421	8.53368712919613	8.56002619691363	8.31851381969313	8.54838679531462	7.78692043455258	8.23998116338059	8.35460207051692	8.33548804188067	8.37913648444338	8.13956439165626
+"ANKRD12"	8.26792999304175	8.48959462768229	7.78326714160843	8.23732741219266	8.48036711315982	7.94820687122463	7.74372969855252	8.3718326057799	8.39925309698741	8.28731329551757	8.65024241959949	8.16517291686163	8.00207443210875	7.73581191495021	8.3009911860316	8.94554850870989	8.16958709882286	8.90213506769734	8.414617294221	8.13112654978289	8.28073712670617
+"ANKRD13A"	9.54874196544744	9.24787177245902	9.29151673518931	8.70208422625761	8.91764983556144	9.40690199368193	8.41740423672638	8.76749378863625	8.43333570327076	8.58722648110102	9.68252163439485	8.61473235441744	8.6293789030068	9.01235151880357	8.80790196504669	10.07308624218	8.65124452374189	9.98920306221909	8.77335899028889	8.60646095087506	8.92765500888313
+"ANKRD13B"	8.18058269207381	8.2759312450647	8.42368965346773	8.57737681072748	7.87449228129871	8.78065473713044	8.9187395219361	8.34151706664424	8.19482646162711	8.06420448052523	8.34075877682819	8.12180542337229	8.65551001418209	8.69313934429798	8.39467639819528	8.10804125881913	8.22772394449353	8.23454729213526	8.47581122637711	8.14914079610056	8.06528071807556
+"ANKRD13C"	6.2140489552715	6.71133752013551	6.88643367154487	6.39588072799759	7.17231861783914	6.11311883702646	5.43604477956549	6.84867144628823	6.6099988073823	6.77028679080544	6.82944577677647	6.51552716050982	6.1816692264776	5.73993214589445	6.3758087643065	7.13024289174058	6.9936320204223	7.00549234203683	6.15280353122745	6.26689884785317	6.64236116647643
+"ANKRD13D"	8.18612413587588	7.80367282646159	8.14906059099652	8.49070065586538	7.92298305143963	8.92242912769887	8.57883237604084	8.32278622964303	8.6701111289829	7.59653674340696	7.87889702325942	7.89716216926521	8.61353046386743	8.49015911951889	8.81722532981758	7.61696774625064	8.07226111314401	8.08547333037047	8.3686109390025	7.734652646955	7.95727576948908
+"ANKRD16"	6.80993063935993	7.37053316427458	7.4486018833495	7.05937254400644	7.43404172636599	6.6396421538492	6.73684250798758	6.78188532955806	7.22595159022575	7.60413978363806	7.22197986805362	7.31589786492624	7.0110316734886	6.58692730925733	6.58140045317889	7.43787345723581	7.25619744874597	7.3184721590754	7.24340092669927	7.36627185210362	7.28237774961452
+"ANKRD17"	3.03650396688289	3.18449409207715	3.07497448596328	2.84692242145339	3.64295994170738	2.89527575877177	2.9681824463747	2.87480859509076	2.89823623128049	3.29659301033473	3.3441691426027	3.1752036177998	2.94906970106365	2.99571974071159	2.78084462164833	3.62589837570552	3.01449908281559	3.48401303533419	2.86284684184326	3.18534760179241	3.23294283347314
+"ANKRD18B"	5.77308459136395	5.7868641080414	5.98195862516118	6.26724748454882	5.75999274188423	6.18261754123772	5.67352030534648	6.12059484398192	6.14308794486416	5.79909501378644	6.06247973649797	6.07359450752368	6.44749034521853	6.34795892424623	6.22919147734636	5.82377223760944	5.53799943642204	5.5941733389914	6.14461161459981	5.82797416616398	5.89076820564187
+"ANKRD2"	6.34253160568995	5.95864096155769	6.63488323025436	6.36495058090209	6.80128705907523	6.98623882616272	7.1100810326869	6.37634751461997	6.7486534439416	6.7893277188237	6.16307758296148	6.55687355857933	6.74116431155332	7.01289236700537	6.87165695612556	6.3874122909386	6.52057826972521	6.57296509573494	6.56905924249958	6.54489405087214	6.72677449543465
+"ANKRD22"	6.60346243572642	4.82734300998122	4.35317599760458	5.49706301796979	4.52079418551624	4.57916524836669	4.24241810524556	5.3272394340377	4.49008176145483	4.53449704501588	4.28854898781166	5.10984062023789	4.8509758180076	5.13459576140125	4.85746393527794	3.97815805333604	4.87850288598218	4.45315659660312	4.42001337410702	5.08097580298488	5.83176943019925
+"ANKRD23"	6.28492685589671	5.84708437094902	5.95465196896621	6.2000500079379	5.72057128954708	6.7335350546221	6.50060150574558	5.75506246600247	5.54202173451786	5.81876709705266	6.48082460171109	6.07990793147301	5.75189864572531	6.12157025913775	6.10019437751119	6.44518044000113	5.38277379895692	6.58239758733469	6.24624496249475	5.88692998804906	5.89184013312405
+"ANKRD24"	6.72160346524183	7.31058205042082	7.54515847578404	7.46742004786589	7.26349113290386	7.50870199249969	7.28238965076863	7.23510690774965	7.23573090892828	7.18611586451469	6.78580488134113	7.35481721372709	7.30470591751249	7.23779442812665	6.9561203955782	7.13181042853328	7.13045715721063	7.20904874364672	7.21695136801341	7.07637200547968	6.99555525231078
+"ANKRD26"	6.05897258363011	6.33505883490666	6.60424680594401	6.19926730609466	6.58290614466791	6.21868985566996	6.01312363373167	6.24668337211755	6.29735500601108	6.25796161345581	5.73578545369762	6.156775225685	5.95959019511426	6.01996493795296	6.32516883602386	6.35684479822043	6.2202265398659	6.8187063133632	6.09221369051179	6.5060348168469	6.69654185323153
+"ANKRD26P3"	4.11427704444146	4.80740052934234	4.26641233841133	4.63154421292467	4.94939883545919	4.44629676895697	4.39467587430767	4.59372260189384	4.45698304467963	4.44142921143732	4.12590318330011	5.40401077885471	4.73251233106216	4.31691168223898	4.88393877587991	4.93779438031075	4.74852842662281	4.46275397417721	4.61932415664341	4.60056756217148	5.10202615233036
+"ANKRD27"	8.91679158547317	8.55242645189471	9.15744117680044	8.82787478692543	8.826419879322	8.8160243369965	8.41529926821852	8.77025202828156	8.82540245103232	8.74453409675933	8.80335907456566	8.34727934651167	8.80003347907907	8.38321492307884	8.92400247208632	8.52321252401352	8.76204636267565	8.75044295436063	8.60849233204952	8.60189441899895	8.71410294953502
+"ANKRD28"	8.31601449159571	8.54367405453922	8.48169581841723	7.90721357558249	8.60070445338789	7.93695749882319	6.90553126625589	7.93028671098222	7.77485632041129	8.23275903917093	8.6596177779494	8.13693663874042	7.49447348830091	7.61790590327054	7.6434370948732	8.67951960520839	8.06839396792786	8.91003335326384	7.87088401314399	8.38902786239491	8.19843250206898
+"ANKRD29"	7.65212056576441	7.42751504901758	7.47650287242526	7.12541516528508	8.05796977026245	6.15481600200319	6.72969692190765	7.19364430745277	7.46493599564205	8.08293975889688	7.35627193679831	7.75797470005272	7.55046557968185	6.70859682046798	7.54289494633838	7.68689705367549	7.74407407896198	7.65668164443839	7.42751504901758	7.98329996062144	8.29092470677087
+"ANKRD30A"	3.43165278744282	3.81209831297878	3.37012553594607	3.50729597176311	3.49217626753436	3.53125789288654	3.72521939496277	3.48355006027774	3.54830920900014	3.67356215012819	3.34369835283228	3.30252427916207	3.50573688682947	3.72257344995342	3.28871552770152	3.42647138990591	3.67216776847921	3.21896547713957	3.43746437838788	3.52346210764086	3.49008796757711
+"ANKRD30B"	3.27753064784699	3.53614625690555	3.54449379558153	3.48804305393524	3.37991158813891	3.54127067137852	3.60068058410762	3.62301022333356	3.48401303533419	3.51700056032942	3.28283433082354	3.54717922928241	3.37841976598115	3.37107074894127	3.556878060638	3.26382581637207	3.44330384979516	3.48401303533419	3.48401303533419	3.23062594932219	3.59220418846208
+"ANKRD31"	3.73613362968122	3.83858939191624	3.97599713233258	3.91286697635475	3.92721980109925	4.40128729550162	4.00990461910255	3.86821893819796	3.98120502564255	3.87701114895947	3.70034397628044	3.98090303399298	3.91977967638055	4.07236074337215	4.02902103000701	3.83612994906068	3.86176274350796	3.63206667057089	4.03771313355036	3.98467506700649	3.66675849244267
+"ANKRD33"	4.9968566515999	4.85695161442531	4.85513259189855	5.07854266558922	4.94877983352093	5.13654866310909	4.84534830478678	4.74048995442927	5.06487135114116	4.89603214766891	4.76921348596688	4.9852068658965	4.94877983352093	5.1326918717454	4.81897541833559	5.14412692678499	4.91501642279045	4.85854225456622	4.94877983352093	4.81391933405275	5.00236088513113
+"ANKRD33B"	7.66348585811229	7.89544456100434	7.95177065834568	8.5443519567245	8.71022818215604	8.469508823494	7.59033053358382	8.24217378705401	8.67533862533583	8.43197250143104	7.94847721451967	8.2679329005561	8.59922739410469	7.76355014735115	8.42966984076306	7.69822076383311	8.25717039006491	7.78018703957263	8.36359217067687	9.14454109740717	8.43982388716627
+"ANKRD34A"	7.51992459082531	8.54957265910493	8.81364812806634	8.57867939871386	8.90154625807472	8.56098824089002	8.08146991964334	7.95930221001927	8.73728543880513	8.64430739954929	7.56894231808765	8.38483231882147	8.95932453185952	8.33359882448999	8.62184698259552	7.92597920523429	8.45827867171567	8.43313820232001	8.56051490287022	9.14191240190021	8.63840947556422
+"ANKRD34C"	5.77001484075164	6.92668081377474	7.21861919964963	7.11405436816448	7.69982677619596	6.31353883293073	6.1413152268818	6.69382427042189	7.53154716308316	6.9069196485185	6.092046436885	7.08861026385451	7.63329208519816	6.33571552327933	7.75873986009699	6.49655726212039	7.2088390754139	6.76830922679947	7.3131216255667	7.79236495420711	6.96099744551725
+"ANKRD35"	8.70824218949876	8.1089141999031	8.0206358348575	7.81382040893872	7.97461306586127	7.6641746627492	8.68117622828274	8.60697829914983	8.15797927843301	8.01296692680154	8.21785995315179	7.96801773270234	7.90492227749861	8.15290673492698	8.09277325389834	7.85894629414547	7.69959237091456	7.59712265092893	8.04760565198588	8.33234958285222	7.61813138120026
+"ANKRD37"	7.12268397043117	7.76992849944041	8.15059124442336	8.27921845966846	8.01523721997914	7.90592735128126	9.70872749255558	8.26995324665141	8.46317436503621	7.72439315882985	7.49416258753648	7.27986600668562	9.00855842590135	7.82386107936988	9.41814859844673	8.27858849818449	8.8717770813407	7.88838516651533	9.22042303214942	8.28427870501682	8.27281083436593
+"ANKRD39"	6.2695824894001	6.67768110525877	7.10673362250014	6.17529684264083	7.23982737143772	6.13391221109221	6.05559651264569	6.38116661118366	6.08497560779169	6.88936842457048	6.4601386974552	6.95885548818815	6.4930482892398	6.12134716751559	6.29785873898151	6.87794051557585	6.50248333523753	7.07012946525795	6.45597705815594	6.94669860818705	7.18216064386025
+"ANKRD40"	8.57470044047005	7.78118526006883	7.0732708760411	8.07716511497648	7.25470027496599	7.45504820271404	8.38228626745553	7.3707522712821	7.61050083847485	7.85861193706853	8.66738672801301	7.76124195531841	7.86706858355901	8.07446582349604	7.90395118927682	8.37105394623157	8.08906311724345	7.73415659846727	7.61135424629205	7.13081736787554	7.34692176576455
+"ANKRD40CL"	3.73722659451502	3.71812117884002	3.79340624972589	3.90374412086132	3.79340624972589	3.84232318792524	3.99802376826904	3.93612555337675	3.7323728066037	3.72289136881436	3.9526432462815	3.72484727251502	3.79340624972589	3.79585324800889	3.88628408716469	3.73943596849769	3.8865672898539	3.63079010473115	3.44745065710471	3.64565138676299	3.86628127346744
+"ANKRD42-DT"	5.72999005648439	5.83848924790529	5.94094122705529	5.77572229199513	5.31862185428686	5.87935392333208	6.09256572811848	5.80675160403549	5.8704121990033	5.65859722592425	6.28595041781282	5.89489770974641	6.05632312920317	5.73394919926407	6.08085470459732	5.45714441453276	5.73896082555407	6.06931829069048	5.87414174854187	5.16724899059514	5.66638746116167
+"ANKRD44"	6.78883034282664	7.05035782953634	6.60424680594401	6.81846380350695	6.72540907508622	6.57735544451323	6.36768446231119	6.60689698145266	6.40418635916249	5.90237452174138	7.28546654599061	5.76397157148871	6.50864653153082	6.58221298173183	6.5431082629724	7.34502740693507	6.54442245376311	7.66191388925594	6.38340007371235	6.63912772530551	6.32263759949042
+"ANKRD44-IT1"	3.6480204473819	3.62868926076012	3.3024339101175	3.60379003166627	3.26198807390539	3.44521581868822	3.75714810291262	3.53388385998323	3.74744847645932	3.53741376891322	3.53741376891322	3.31967053680204	3.64289601708062	3.60086877344258	3.50259655182097	3.9347319169362	3.53741376891322	3.36827860552795	3.27220805963835	3.26727170342266	3.68981448245317
+"ANKRD45"	4.10483595567568	4.02326453156792	3.99311038600573	3.84605881164928	3.93351609358966	3.72126616256021	3.73473130604945	3.86368120001477	3.57569090776104	3.74293772223912	3.92980454659244	3.65159554047375	3.6975682407486	3.51837977215046	4.08760134636187	3.50667486874802	3.72387280147886	3.64557858132581	4.25356683752487	3.72421426249425	3.71577197907221
+"ANKRD46"	9.55195499172793	10.1130376932821	10.321371429427	10.0879876025197	10.2910886015044	9.36059310671311	9.22581668200355	9.86545461445128	10.2065544179137	10.3264960167224	9.98578288682394	10.2439179508876	9.9887291977462	9.54066201027269	10.1545847788266	10.1529105063404	10.2694196827698	10.041543482692	10.3118860384759	10.1910032724127	10.2469218584106
+"ANKRD49"	8.44966519695696	8.32467754632865	8.3329921541471	8.23248323111574	8.32601799668922	8.36454203896938	8.45040557626144	8.40663820052404	8.30076185577385	7.93309034775868	8.25598289161356	7.92541412150206	7.98587674568525	8.44183030927286	8.44099340395712	8.30763717433206	8.00936600544911	8.56529413604956	8.38370488400719	8.11575672353189	7.94514709936692
+"ANKRD50"	7.04904044561766	7.73268688802411	8.41295312204122	7.43014863659944	8.22426557507384	7.48030959464759	6.79939614132145	7.48030959464759	7.40016327868147	7.7548644792145	7.4373984097578	7.59654244775191	7.26643194964364	7.00617284576375	7.4177699041447	7.55091747240087	7.32069459781919	7.79749179753448	7.36083446727354	7.80735624781501	7.66063381660838
+"ANKRD52"	8.17412986661446	7.9245660806828	8.4326113903255	8.1457406875867	8.19568007952301	8.52865609451522	8.43087115653742	8.13859050182064	8.08647178289163	8.08647178289163	7.8844081711109	7.85853646568162	8.27726503371011	8.37141886135528	8.09725940143434	7.63217418119396	7.98218206194445	7.94771754447618	7.7640102262071	8.17179909484191	8.05541886422496
+"ANKRD53"	6.81075028765618	6.79531337045604	6.75499422215216	6.80190290366883	6.72059983848576	7.23268831899414	6.90562364169215	6.80400531597915	7.00114192010537	6.78206430457926	6.64796242231929	6.71667952957305	7.06097201589519	7.18451828952172	6.78671487963505	6.70097052251434	6.989516005762	6.33317820167064	7.09012803683869	6.74732594064219	6.60752663829897
+"ANKRD54"	8.14325814627288	8.27193616595937	8.49400554548377	8.13960415647778	8.34367554190342	7.97336691199697	7.83161978752337	7.84861106586808	8.36379087870925	8.38427281534092	8.35710290760064	8.21212699166522	8.44458509417948	8.21212699166522	8.31546569904474	8.07447720655069	8.16115043605974	8.03749695779341	8.08812843659497	8.45458441945265	8.31497661482294
+"ANKRD55"	4.91407831666516	4.72478367967201	5.92215013472151	5.01205586545445	5.14129899243272	4.80248479617527	4.77773012963459	5.20122154063947	4.93087594605059	4.63066504502985	4.7120452908078	4.70666916727769	4.80226822515135	4.72478688773056	5.01044087386933	4.67133331134754	5.17025145254052	4.68303805452752	4.71358401269356	5.51827770936033	5.08634890579823
+"ANKRD6"	7.65758640422312	7.14593381668863	7.91646869787179	7.10958365941667	7.23613858776175	6.47864616964338	6.82218752464871	7.21300658057458	6.90686542169614	6.94899188969851	7.35940376092516	7.2210707769658	5.839710528712	6.4457926126124	6.44459188695789	7.0974887030392	6.72457082405717	7.10958365941667	7.19870025180328	7.77426526499769	6.89538979611748
+"ANKRD60"	5.27078475882974	5.46049976254501	5.52288565438236	5.45842285599865	5.36459779753526	5.36900350431752	5.52196417795913	5.50528692233858	5.46049976254501	5.53281317580094	5.40954138968967	5.51618991524498	5.4451357331147	5.68935667006812	5.48269230605708	5.32993705921693	5.32335196538957	5.24039950267442	5.46049976254501	5.36497403936574	5.50672307054889
+"ANKRD65"	7.4586479099309	7.45427590814879	7.5000291113576	7.51401132189411	7.51714059339284	7.58261802418555	7.5000291113576	7.72887377008322	7.45980758210243	7.19917042991778	7.59327861532403	7.49127439693823	7.38659988348749	7.5852341091749	7.17675524738388	7.4724961721729	7.47867465739252	7.88488831753048	7.5000291113576	7.31128772133085	7.40743925131135
+"ANKRD7"	3.27440254276799	3.39234314789479	3.35887564052711	3.27420848537286	3.70632310137397	3.53194753904664	3.36470565104996	3.39234314789479	3.39653651984741	3.32605922258749	3.38613004288932	3.34895801382641	3.33188399702886	3.24855840728812	3.53009906677937	3.54906249493913	3.29644277718209	3.61394123122929	3.0973145716604	3.45543993057874	3.30877030426972
+"ANKRD9"	8.0712146883938	7.23361592507368	7.25972745980686	7.76853989504387	7.58822506920986	7.72682878199369	8.74119423658024	7.66774632832548	8.09196655590345	8.0108182545645	7.14534932386133	7.3077588071227	8.68343524826157	8.64606324158832	8.58799336960524	6.94501448415659	8.06047166086143	7.74786740870769	8.12818366720391	7.5300216656855	7.5501854877545
+"ANKS1A"	9.06923915189691	8.35015300248265	8.50684501301292	8.24999185855512	8.34455184507403	9.53426845753332	8.49114470403636	8.35167586866473	8.49444527870471	8.16060021731272	8.50151412546407	8.35052134609615	8.9266671156289	8.99589775637032	8.87434153630237	8.0815637649808	8.63717374611832	8.7483730862288	8.20164548815822	8.49073595417378	8.49073595417378
+"ANKS1B"	9.75470387859804	10.3382457177218	10.344987393045	10.2105630437905	10.6052645179267	10.5298585556665	9.24582371794386	9.80905939148279	10.1592469069927	10.5894785372614	10.7099790904317	10.628843489754	9.95435463568956	9.76625569850438	9.7811745592549	11.283355102877	10.6085961822724	11.1085970797969	10.249656719792	10.6088639434001	10.537189066581
+"ANKS3"	7.65494310898712	7.7503592832596	8.39476575506924	7.81034248812678	7.88858950088909	8.1850443636256	8.1581300845015	7.80956261088075	7.92880130862349	7.86915765685762	7.89542399728815	7.93302212450157	8.00973111767413	8.124633921702	7.91790117620494	7.91406571608329	7.93021029286052	7.86922762651084	7.91406571608329	7.89542399728815	7.94762306612015
+"ANKS6"	7.76548626214561	7.85624550897912	8.15436689667371	7.79301686039724	7.78754562066286	7.93162894662269	7.75978970859505	7.52771099244633	7.56327208366724	7.19479129918749	7.88230493103026	7.21515796830753	7.97125088977567	8.00265641579137	7.85824015463461	7.91658176331155	7.53761771930995	8.02617763017887	7.86996211989381	7.44206898247785	7.67622075315393
+"ANKUB1"	5.05236637380191	5.33173174441674	5.24370974911605	5.34510547517398	5.0419730838232	5.2053320858644	5.42427167702257	5.22787763874173	5.29785633629481	5.28722831735602	4.98283387179672	5.06550945678756	5.28026119713137	5.48681342141781	5.27344748391077	5.09358174417906	5.18756249717716	5.10500905620095	5.22025635773318	5.13996173187172	5.4825198872768
+"ANKZF1"	8.27893294648628	8.06612211585562	8.26751729768445	8.03454245620749	7.85711070005497	8.42033769439441	8.30770115881643	8.15578263957035	7.89747529573868	7.82421709626406	8.06612211585562	8.01365591540623	7.94140409548196	8.19296109144196	7.99839501851935	8.08822114255087	8.14430848767136	8.11630388966581	8.06612211585562	7.64380738229433	7.79470384314706
+"ANLN"	9.51718307873833	9.46946045828032	8.29064236469059	9.83096413630237	8.76867718415641	9.76313325346499	8.58967213195919	8.55864519471567	8.32353569203141	8.16584396662355	10.3159349411818	8.39254155875198	9.38305120362891	9.58286095058433	9.77241283368629	10.8286106216666	8.91630298539255	10.845717863738	9.64331507400124	7.30322887454128	8.99433820621487
+"ANO1"	3.08280218018739	3.11792808371396	3.51240345077546	3.09431854558307	3.53418643889276	3.54127067137852	3.06556325241245	3.0068080630277	3.12134775472086	3.10965942242792	2.88466942965491	3.11946435765129	3.14430904686695	3.28881978606701	3.07929401847389	3.10715384459329	3.08280218018739	3.05573455061752	3.12134775472086	3.27248788734998	3.37303382312879
+"ANO10"	8.15812767662544	8.02138197542188	7.99650240487186	7.77639494376111	8.04657359572522	8.35349980987059	8.03937434887331	8.00191171117581	7.79583204801083	8.01958069225006	8.0318056245861	7.87848674763176	8.023977579646	8.14020637047353	7.91436905470048	7.92481553991836	7.93733919279292	7.86785355817898	7.77129142744591	8.15852331499889	7.8951056859756
+"ANO2"	4.84676972250687	4.68831058621003	4.62183031035446	5.02911786542874	4.72416333342878	5.38761231374325	5.5632500243223	4.90152403686537	5.01220401026586	4.71811311202132	4.64937099777935	4.83246067290528	5.25554315291458	5.30414423973762	5.09739611561865	4.68234047686939	4.92466153426247	4.65527403421857	4.6821738044661	5.29652261530001	5.01621962612989
+"ANO3"	7.29319076945114	8.87682133045472	9.42835997330745	9.22263719460252	9.25356482540881	8.52321252401352	7.35969871721245	8.53927368456016	9.58318858198936	8.89077604077919	7.75028061408053	8.07955966754208	9.11199220403452	8.30880516768392	9.16910519522775	7.67091293679975	9.1431490717171	8.66963702567692	8.77009411812426	8.9771611177024	8.87283552436693
+"ANO6"	9.10399253502474	8.14881028388903	7.79355867952605	7.98474990106586	7.75847545245522	8.01442337800964	8.23812472365047	8.55138338597905	7.937985538649	7.80041453798714	8.67599695463313	7.98109845666749	8.09197785416904	8.21028335400445	8.38136953450683	7.79511865195207	7.97189710062917	7.80753858820175	8.29377628461789	7.96414448770033	7.98354349516189
+"ANO7"	6.95699133239106	7.28375297050298	7.18184679880509	7.34296565074493	7.22388946620247	7.44567407508414	7.10412058696076	7.17189326348289	7.20601617965326	7.38630954958834	7.20299994955822	7.29194114277434	7.30301803576479	7.27829136512789	7.11972669248125	7.51724885974248	7.21275851227008	6.97751349015338	7.0515600368374	7.21275851227008	7.1630594234488
+"ANO8"	8.75538492426909	8.7217039300322	8.49601917413583	8.6640822170393	8.48770487157646	8.71743969185796	8.91082413382825	8.86390773709369	8.30462650394398	8.58319534196138	9.03711070731137	8.70342132604462	8.99050611105839	8.85176747932763	8.34061846975649	8.66914762266801	8.69667364892559	8.49798153590035	8.2621485507317	8.47560465901949	8.78761801400348
+"ANO9"	5.76430196463223	5.72134016553971	5.82886473134627	6.05911335515184	5.86382058104372	6.18357337497392	6.23400968579494	5.77950737004162	5.86129215248101	6.00742605604033	5.86487957243956	6.04677161331022	6.04393508833143	6.27950665998799	5.7179730271865	5.72250682958412	6.01321130678066	5.53397704625316	6.202143603654	5.79276490985976	5.81810501088827
+"ANOS1"	9.41349874997118	9.58774595379027	9.81014076897451	9.14711824709872	9.24320224610191	7.58806195576549	8.80809926517632	10.2077190729499	8.90949483767388	8.82769070476683	10.1046195843723	9.3294674990123	8.60301200194447	8.20131097196483	9.25572642114833	9.5039165004495	9.1440380341407	9.56615630878246	9.3226930833689	9.89191895999824	9.16395201788838
+"ANP32A"	8.15907730385132	8.15500319282997	7.48711263959629	7.73765085468487	7.80032321328468	8.06759137441291	7.86333922150254	8.0188579620821	7.4586849422837	7.79135779181902	8.81155381969854	7.95395485608376	7.75896857759627	7.42034471060233	7.64215234697415	8.76393638927305	7.83404634729365	7.86097711353987	7.90434888392339	7.78304304420291	7.88570776677447
+"ANP32B"	11.2287244740733	10.8264351216579	10.6545702169842	10.5985856255104	10.5521603181321	11.5980312047254	11.2541662958826	10.8680750877991	10.1268205639499	10.1997090899524	11.5332780706642	10.3640059359877	10.5469663626035	10.8974003267986	10.6091208497626	11.5982896870969	10.5496275076301	11.5244747497396	11.0078124158345	10.1795973018153	10.4539415609206
+"ANP32C"	4.79677992127549	4.96112382243425	4.82206033483519	5.07632750436135	4.87973920609481	5.33775022249162	5.17164249641243	5.04569762236423	5.02439494286608	4.97518565476585	4.97951949495783	4.99080572319122	5.3350334126643	4.96294627430034	5.11203603687944	5.01138458678101	4.7746203762939	4.71126513081417	5.42524687603376	4.77914319752818	5.21923772809316
+"ANP32D"	3.32921604749499	3.40496611504133	3.36997340502376	3.63986863795582	3.58083502033085	3.66853987864004	3.88220715461572	3.33253406450222	3.71902344724136	3.31394912552841	3.37654107110391	3.36560010406572	3.35635928097326	3.7534875752566	3.4551080395083	3.59119275706312	3.43831472982134	3.38293903238104	3.69827155086507	3.45161994679316	3.46924752939726
+"ANP32E"	9.78713519071807	9.87453876575826	9.91104835742944	9.67272187044786	9.56102019978445	8.86656191345037	9.7277879403042	10.2117216582563	9.41615228791647	9.44229840986782	10.2523764901022	9.74771496036833	9.83928068559715	9.65801810883819	9.63648246354566	9.66504714975068	9.43030199316451	9.57446994756823	9.69210697290084	9.26904009320281	9.39914248173044
+"ANPEP"	5.24564380224293	4.56151296441728	4.47666560447326	4.87447844908249	4.62978109716279	5.22698656893233	5.20617703345863	4.54951800835914	4.71253459086603	4.89617849745003	4.66297501419631	4.62427532607771	4.93146567745943	5.4791221472797	4.72083029964895	4.54538142962353	4.61594491210002	4.77335642160688	4.66808183489995	4.90548605967043	4.88479315845733
+"ANTKMT"	7.35424237993256	7.38413877080901	8.03106225882519	7.21975439026032	7.56035733683918	7.50440945667794	7.62298753134633	7.13799481749992	7.39569177692011	7.58138644928832	7.5716382329203	7.27218694821019	7.46976988300531	7.42941651051136	7.55898781563321	7.4792350423229	7.11828915552513	7.81313100360225	7.3829341742671	7.70360459778609	7.28565285432772
+"ANTXR1"	10.24946798759	9.6010100077695	8.67285360392781	8.98318663030491	8.62078889355049	7.65508929753275	10.1998491916043	9.66749763254365	8.75919459472146	8.71723014146511	10.3880238704848	8.96324961749573	8.79680184185358	9.18193649255102	9.21052651868406	8.76228275406285	8.67066465685143	8.95467248840067	9.39942242064132	8.97465791612027	8.63324810411559
+"ANTXR2"	7.15790517893978	6.43726165449807	5.99034081447287	6.10518652122597	5.81332100764066	6.16230156102981	6.29193062851546	6.21157996526425	5.74760638949067	6.41135323702983	6.74939445531177	5.89477565612256	5.99447523099425	6.17007248696622	5.76459684164068	5.57709019540435	5.8668976310647	6.13789215454128	6.20374329185863	6.76699892755069	5.77926809102258
+"ANXA1"	10.4131430680264	7.44121729179334	6.59345689843686	6.81568963058338	7.20091531435829	7.78071807223403	6.55476450410932	8.58154638061271	6.79307815136521	7.95145221156228	9.48386408847501	7.68087081927419	7.1001499784543	7.19478738064019	7.41791271572493	7.13726230133023	6.96543448665202	7.02552723905746	7.8896859727306	8.25831441816171	8.38726853494635
+"ANXA10"	4.76138727298628	4.7645345939414	4.66309177277099	4.82129305787578	4.69631168162514	4.56856329113503	4.74996596917322	4.92589675784261	4.72280320481579	4.57422901234835	4.61253762109913	4.57512919121534	4.65238838590816	4.59137187038443	4.79585776316405	4.64277751606198	4.65238838590816	4.494826608492	4.48982643182482	4.68966246362145	4.4514080196034
+"ANXA11"	9.62690720811736	9.27360442490297	9.77942908638238	9.06762252790181	9.78396112471013	9.2762957884287	8.25134228661924	9.18944561845572	9.35057807937196	9.63396463246711	9.58523196595669	9.83917592126164	9.47730632871322	9.137645921539	9.21983860766833	8.79916784191582	9.43856588701496	9.30144299178654	9.39556390059113	9.96616335325728	9.65589050193048
+"ANXA13"	5.478486163611	5.46049976254501	5.32340159676596	5.46268393901567	5.09320258858895	5.51975378694292	5.85030982761604	5.21485449501399	5.48816674721766	5.33916103282596	5.65892537153466	5.41631698811205	5.08601862848395	5.57027682161853	5.531001272756	6.36184658226207	5.32899944513071	5.17648937657315	5.46049976254501	5.65154856406555	5.48221854547562
+"ANXA2"	10.3286263656096	8.2313672853925	7.44969045385057	8.2391662653595	8.24116630086624	8.95779324728275	7.93354864252145	9.20981636623919	7.61405369788543	9.26370904515596	8.78637955048444	8.81321271509452	7.96978442600417	8.98544475812066	8.09068765458188	8.31910819350819	8.10589307445015	7.70292704973355	9.0259474410108	10.3454648333974	9.60641209546491
+"ANXA2P1"	5.02331492608565	4.86384948329679	5.02331492608565	5.06199453476598	4.89570296147732	5.02331492608565	5.36861640387303	4.63652894824183	4.90088680639019	4.97365871426689	4.7506181807893	4.89151444054562	5.05810525084838	5.75919523680889	5.09239782788551	4.98687899336582	5.03087700048137	4.88679060369067	5.01595719833186	5.18294810102626	5.04003097162902
+"ANXA2P2"	8.86761785813496	8.08677328834327	7.50185651008007	8.11197462965223	7.63425043570484	8.48684121031813	8.10506751915823	8.47338226161289	7.61645016351177	8.63311731883894	8.21965864730894	7.9957975318078	7.88284685535115	8.44835411724064	7.91900943126485	7.84794071693928	7.6569853065368	7.31042815659773	8.10790352487842	9.23428548822218	9.0166594372717
+"ANXA2P3"	4.93794388737948	4.84746756435277	4.99159559771902	5.00000946159164	5.00756856073739	4.76900008240341	5.39170221278196	5.04879749885185	5.07959320079241	5.04879749885185	4.99851990930035	4.93300411260373	5.04294376891933	5.16432311068431	5.08616100331371	4.75186999974322	4.91273811755711	4.62714317316961	4.97068325205997	4.99603389941752	5.08434163260989
+"ANXA2R"	5.83489135196075	5.65143882133269	5.61365293098007	5.67638566525287	5.52247627989396	6.17039401488447	5.59674941254336	5.8393478045909	5.26167076399923	5.47238404453623	5.67991398079187	5.63714182557297	5.48590975696538	5.61365293098007	5.5261629839698	5.87594987993772	5.61365293098007	6.03382547599935	5.6951637158559	5.57025340689196	5.51154657227449
+"ANXA2R-AS1"	7.26103174046396	6.92387265907608	6.72913922249972	6.74026484809245	6.44327781007416	7.64252570171878	6.88388170087791	6.44540033085659	6.4685671689021	6.03575933306104	7.36587571294714	6.25061050292997	6.35752326202183	7.13137488583716	6.60597870258714	7.66088462880459	6.54260875036763	7.19839105585758	7.07113874502319	6.56075884176581	6.4999316011358
+"ANXA2R-OT1"	6.73253309867692	6.73621590191449	6.98107414192084	7.08036822387503	6.81294338801741	7.30730835256006	7.61972986648168	6.64430639180795	6.85333383149342	6.8060099159108	6.67306779466005	6.83721724336296	7.08601155870924	7.24934079071722	6.65902053016091	6.60480396572784	6.63904978761881	6.5021004726175	6.7910147260249	6.75216698793587	6.84541647879792
+"ANXA3"	8.35530054820913	6.49430655550774	5.05718148624961	6.57995846311543	6.24670281676509	7.33836076725332	6.70202259336602	7.46177410822642	6.81527418289436	7.12541014233382	5.75114115494353	6.03171693709879	7.20685834328497	7.92823732940564	6.68991709560082	5.34810385551279	6.84317536960288	7.02600139628277	6.78331224141729	6.36726085835818	6.99366796071709
+"ANXA4"	8.83832278885875	8.14355169363587	7.32268415347144	7.72952722919937	7.86253890047642	7.49695550300408	7.77306893730763	8.167568308414	7.37180660545758	8.12083888856755	8.49504202422733	7.57426939150831	7.56059660955251	7.98287116992775	7.51538468781969	8.54926469294048	7.67626531661755	8.50756331052967	7.89572052029293	7.96956656454667	7.82155899123219
+"ANXA5"	10.4433560217587	9.67893313908384	8.80260911458485	9.67592617990057	9.10459238953749	9.64649459517437	9.93316523068328	10.1005391025223	9.14444728259597	9.7533065770558	10.1666160772982	9.5846437847233	9.54288338195058	9.86615035754353	9.56049355373417	10.1219292270386	9.1292658976936	9.67369311388424	9.67369311388424	9.83511484924298	9.39285907281232
+"ANXA6"	9.30835831712148	9.43147806649202	10.0273818048694	9.28910575866689	10.1709313532488	9.25067337554575	8.83941441099432	9.27067313752459	9.42847268482078	10.5163516530685	9.09504883806485	10.1943795513344	9.59351275812566	8.94424192186128	9.78447526010672	9.39798356327178	10.0522936245187	9.56497768284772	9.43897521010604	10.4614892135954	10.3792251975999
+"ANXA7"	9.71264946676888	9.60735477450535	9.48797274433769	9.16856012916019	9.87324070168416	9.04931101413768	8.97299285735001	9.61651172059482	9.38611587998476	9.77413142304836	9.72338840120805	9.79233241881875	8.97675978097466	8.73732024795252	8.98816101901104	9.72029544171778	9.48331252373318	9.86656921035469	9.26181062931828	9.75928874864158	9.5182436567578
+"ANXA9"	3.71071376444635	3.83380854125371	3.79928664941181	3.9101335519815	3.78040852441194	4.19811654700961	3.92022150133832	3.66974033460473	3.88724834964154	4.02117058347424	3.87950087325292	3.84344086762586	3.96963154612498	3.77671899345136	3.98918549215871	3.86752472944211	3.77619198638471	4.06270452923132	3.97020652838927	3.91878308855085	3.87950087325292
+"AOAH"	6.85502489004972	6.41888886791724	6.1266299980968	6.26561327408508	6.11216269008213	6.24624496249475	6.51057992242656	6.68991709560082	6.4167838317448	6.38569343162664	6.27932571914176	6.34220265759684	6.15647688472684	6.379334552633	6.44067483123101	6.51057992242656	6.50935013520955	6.57874313538461	6.80005458067239	6.60488405879193	6.58466152132678
+"AOC1"	4.03823990806462	3.9314220894514	3.7936615119944	4.08094594908054	3.96509166147842	3.95924706274084	4.00124990939783	4.06121057293932	4.3846055486573	4.13599151030592	4.07458091520455	4.2330209192495	4.04705462014206	4.10871077349892	4.00419323356332	4.02551638888997	4.11605900927014	3.85342518431648	4.04558171201021	4.10945886790639	4.12761737160828
+"AOC2"	5.03854156955732	5.43346287757037	5.14040128774044	5.47457482320796	5.47132736981089	5.58998212758091	5.93214803302277	5.61537638760618	5.83489135196075	5.29676884987774	5.00036983297051	5.4413071804275	5.87368782647837	5.63851052033293	6.02302494386776	5.25329077175822	5.51191580738134	5.2325697040779	5.30647167601648	5.2328171594627	5.0318514121426
+"AOC3"	5.27038055956124	4.95309907873452	5.11462761747666	5.32692006831047	5.06229222843412	5.43022496288708	5.44927521332296	4.84945257451603	5.37864731442992	4.97778536756742	4.89551379005318	5.03879253984954	5.51206208055897	5.44710489637116	5.49496130069072	4.84675918759096	5.25930987396016	4.72112065016401	5.17231199555561	5.03739182710041	4.89339810901361
+"AOC4P"	6.97878264796433	7.02720413990012	6.90923716605792	7.15210552396514	7.057703343031	7.37642917914359	7.68700884826544	6.90593981116278	7.06024993371871	7.13114291520207	7.062495086239	7.02698036047071	7.28193154751261	7.17854792958793	7.04123345025419	6.90342825100019	7.06585627741845	6.94048071523494	7.06733080940211	7.06418148038671	6.91283828344367
+"AOPEP"	5.93579882253883	5.88972405586481	6.1011806846819	5.81663253428093	6.44517346151455	7.47010029277622	5.68685708142968	5.58702051523717	5.66041247334525	5.20971167116343	5.88972405586481	5.6817606158863	5.88972405586481	5.97914633280765	5.95893455448906	6.9664043423685	5.56562990145675	6.65146582060693	5.63607499952343	5.29730356206235	6.25750371406581
+"AOX1"	4.19957259807244	4.19007748277625	3.96204453873319	4.19957259807244	4.28811339558514	4.68207607728669	4.19007748277625	4.14594268130837	4.23191562384986	4.78564951707988	4.12590318330011	4.02410237313785	4.32485542122062	4.50501969930852	3.76942048052065	4.18361242615228	4.2577259974392	4.04482686672444	4.03771313355036	5.620058714107	4.11860218746005
+"AP1AR"	5.33014994917618	6.17007248696622	6.8349557186983	6.07199242202813	7.2836123005232	6.57508909913619	5.14229530973435	6.03530752586033	6.37308986132506	6.49576276296102	5.83592475904095	6.32995626758877	6.11292071845894	5.65521143818744	6.29047002031083	5.82821232280679	5.98502944381093	6.75326468725605	6.16360660857831	6.17007248696622	6.28645218929844
+"AP1AR-DT"	4.79560050079484	5.39846992606717	5.20723338689514	5.02799895503813	5.34140927924914	5.56246434823578	5.00799666046355	5.29183329441827	5.03539811766548	4.76968755238661	5.12005863186673	5.12608557299973	4.56147775804551	5.12302478611504	5.24758786385519	4.97788534658197	5.15620180397784	5.41078314231402	4.87489488468859	5.12005863186673	4.83760389068955
+"AP1B1"	9.11513291573177	8.83817268993946	8.81858735138993	8.60579596445056	8.82202119560212	9.10926788493691	8.9482611293264	8.66679767649752	8.83817268993946	9.00568586624481	8.7855320393096	8.83817268993946	8.74055439365803	8.86387618201781	8.45543953286165	8.69637340487674	8.86471696400141	8.73467422473463	8.57377866342764	9.07156113319679	9.01961615832956
+"AP1G1"	7.13497798605798	6.5989716579578	6.32739643059575	6.64834086403092	6.67734138009225	6.28168956010605	6.25593608462577	6.58586203931918	6.51467347039206	6.98053802000255	7.03497810735025	6.84455811016871	6.30040272410632	6.32185211806696	6.26444550784426	7.25717956870752	6.8019308352322	7.0234565387126	6.51326877221611	7.01254997385642	6.84188019160905
+"AP1G2"	8.75866143868782	8.72290971450752	9.25917193950519	8.88026515266032	8.23642599682626	9.04800106253476	8.95597523621385	9.25830000887109	8.96542274611335	8.23423523151801	8.33179742661421	8.72290971450752	8.726976885889	8.90473913573077	8.80636796548803	7.65609861384385	9.08119915696047	8.37605070923713	8.72290971450752	8.13667721306539	8.36775500081196
+"AP1G2-AS1"	7.22117701761669	7.1165120373014	7.11405385793062	7.1691218247192	6.9076697486226	7.25972555919835	7.19444219018882	6.9498438907267	7.11405385793062	6.99755478753854	7.07887593753732	7.0901807025141	7.14164724086533	7.32584229263485	7.14124154877042	6.82160254280535	7.02543418477695	6.63072070674817	7.18941239515458	7.08859553385233	7.07484406575444
+"AP1M1"	9.50367815443773	9.45480229326715	9.6019538670043	9.01045800324031	9.73504858422058	9.44065104279291	8.71372235450886	9.11127585125619	9.05430467691844	9.57577487451414	9.40981246730644	9.72125615138852	9.15874526494231	9.17683786014808	8.37712058124364	9.43692536050455	9.31879271166288	9.5511712327628	8.80172154112954	9.94025735574998	9.59984256602663
+"AP1M2"	6.18932697534189	6.80299035358274	6.4795563085538	6.87013028784767	6.75455298848334	6.92357633895278	6.92129888395844	6.61413273384323	6.97520683861564	6.94143548711946	6.61874879316878	6.87652623520846	7.04834158843556	6.96939086632813	6.93081758533643	6.8328460884363	6.96546345753379	6.36356600215014	6.8095524593576	6.68407683263422	6.95917089994646
+"AP1S1"	6.965711016443	7.36377288852576	7.81539341350013	7.01836780193303	8.67421975530286	7.43059224201847	6.54927275057572	7.23345006031344	7.7148433717115	8.50364998802096	6.97616589569807	7.82609774976126	6.9520852862184	6.37523462988805	7.29829148299962	7.67684531719541	7.65075377158204	8.28075325158732	7.17711876154777	8.4238521803193	7.54323229120344
+"AP1S2"	8.89487932464845	8.32102006996785	7.67864936178912	7.72069094968897	7.45939519467874	7.03359290398461	7.58418825674966	8.19742475479593	6.74050785955401	6.91438709392853	9.16219326884712	7.56350320517881	6.50091358485248	7.14204793514497	7.25576010456943	9.34991478798472	7.5273386483443	8.76588818599587	8.40171831412871	7.18433661346996	7.52553659756617
+"AP2A1"	8.06270373638271	8.01793284863226	7.86154156457896	8.02176883328063	8.80152881497448	7.76709381847116	7.64895676349074	8.05406689383576	7.66631279067488	9.11394409010005	8.05688002101244	9.11843331749559	7.93789089871156	7.24934079071722	7.13815155875253	8.39327188822964	8.57585781714211	8.30783272186199	8.13183908011864	8.85249011526844	8.79879011557664
+"AP2B1"	9.57119211668385	9.09116486956659	8.2738355534779	8.67853529756701	9.14878103666219	8.28049006970586	8.9266671156289	9.27551511721765	8.70655227874594	9.41899425089475	9.04884237470614	9.34880808242114	8.56395747502148	8.81599340701513	8.52377260337139	9.44057442792323	9.02291313911031	8.78169414539309	8.86941583690623	9.49198758633926	9.36233070234894
+"AP2M1"	10.8020019269934	10.8785788668158	11.0786798702749	10.7622438044955	11.4142837074735	10.8064782955081	10.4613650912367	10.6881235217944	11.1462488840537	11.5157945871329	10.8136050225094	11.3408247654829	10.7836658864581	10.5052453720175	10.8039437660512	10.8825162982846	11.2271529236926	11.0748107622502	10.8152103308846	11.5867310154188	11.45832047111
+"AP2S1"	9.1567013414092	9.11635986044232	9.59185420507147	9.15446377432146	9.73622018281791	8.99616016590041	8.64811618347366	9.22972221684689	9.35383673049371	10.0003361264158	9.26607034395442	9.71193990530339	9.23850857405489	8.83920341037296	9.2540565714122	9.35504988149484	9.51926922589054	9.54048350120897	9.27805723943271	10.0376858638943	9.85998791509681
+"AP3B1"	8.62049060280983	8.54195278460656	7.97748191206855	8.08929524226086	8.20279998307984	8.0502042160875	8.21458012032573	8.081674515277	8.06428903855674	8.14729161751523	8.4716529347272	7.91796109440063	7.90239853025738	8.17393082645701	8.06588395026299	8.81227335123664	8.11930492904899	8.6150441237872	8.21810202352377	8.18970157733931	8.17210086668461
+"AP3B2"	7.80105243650711	8.44628459308855	9.24618045045571	8.46070626059001	9.06053099601133	8.4560597364773	7.51406884191444	8.18220227414654	8.42126210087508	8.73376242091188	8.02297308866719	8.75907994197617	8.46031650175248	8.12234430533229	8.23084670715896	7.79433778032561	8.66098511408792	8.35266652484353	8.26341071158402	9.10455238447296	8.75973941647181
+"AP3D1"	6.8649805206965	6.74835914311796	6.67186464972606	6.61969840473883	7.03832606902202	6.47435568606308	6.51166132831683	6.88189214510221	6.78942689289995	7.4064463846001	7.12898213460249	7.47419645028528	6.70334622552521	6.53739238231886	6.6523506144703	6.8581693328536	6.9967602850737	6.71831422545208	6.81416490933598	7.67228456152969	7.26577751225527
+"AP3M1"	8.6574149801874	7.9923230157325	7.40140054865412	7.66808414629917	7.6361155461603	7.37947931143716	8.20842681878555	8.1688670173363	7.80324247790922	7.7201965180589	8.04207447665162	7.51742620635339	7.29077645959434	7.57401581646545	7.74697805534275	8.42761076872264	7.59054907169237	8.19720809615193	7.8412284320999	8.08498037655536	7.66784537922049
+"AP3M2"	9.07087971827519	9.45275114241756	10.0066616232737	9.2039040386076	9.81562181482891	9.04069059405736	9.22944409225903	9.49586724859069	9.58858940927929	9.64616726146503	9.1692290530644	9.8949640686745	9.02827743553926	8.9775024226944	9.45866326917879	9.49586724859069	9.67951343062994	9.50665664020161	9.39438012779018	10.0722128007948	9.86839845413641
+"AP3S2"	8.74435368890661	8.69945997812625	9.04898111618448	8.70651904258229	8.75535465638071	8.59517812383851	8.5268545229536	8.64456507349418	8.56492939598494	8.77635048324997	8.59532470431281	8.59757099171961	8.50157722896337	8.79273273785509	8.44120503987542	8.52995527760377	8.68873344245357	8.90830370116562	8.55672523586699	8.91332999246351	8.44974978147831
+"AP4B1"	7.55407747485873	7.88737761542883	8.4710901709289	7.68073145413608	7.99976131304697	7.65259530468565	7.2441687582234	7.68000150466129	7.42438396152714	7.45956876674837	7.65259530468565	7.60410445219643	7.50629496861318	7.39396928176076	7.6200027788609	7.9334115350749	7.53462921674	7.98706143977588	7.59987422354919	7.91897617820441	7.72030869743926
+"AP4E1"	6.96218952769696	6.85385190365065	7.12885527027867	6.94354169915458	7.27142484731947	7.16684809835329	6.81013257786026	6.67954995308818	7.23528825572124	6.81445692459113	7.00863436051504	6.57568010558333	7.09690679141591	7.09635402895651	7.16220424979692	7.27794873856375	6.63931659691851	7.55207563070288	6.72524200152824	6.83182239234037	6.8462561990673
+"AP4M1"	7.08829986681354	6.9194246921983	6.85932299851427	6.8474884856218	7.05264369098182	6.94504207790289	7.04271865845689	6.60567703031755	6.87554684283297	6.75485833635951	7.04064816305562	6.82835674523437	6.6815312203269	6.88446328538064	6.55539258901313	7.21136846668994	6.96934434889882	7.27782113337281	6.96250422057601	7.3702583518688	7.04726497959431
+"AP4S1"	5.95646657560159	6.14242164692162	6.10905719917437	5.95419556038435	6.45197470403156	4.98481816686259	4.98163957293637	6.00100777665067	6.18142979154025	6.45363995330991	6.07582637699127	6.5010817744764	5.91165349625731	4.90484603289732	5.92833085916924	6.23381505201597	6.12020728863088	6.56411499552076	6.10948978523044	6.71217305195155	6.56710976749295
+"AP5B1"	5.97540228370792	6.42873810577536	5.33376289579036	6.30570484733214	5.52534218540569	5.79377857928144	6.35283048499657	6.19125010841323	6.82108836088609	6.32697309368573	6.35453340804903	6.08769099662401	6.72192667653394	6.31051544606114	6.1936029444154	6.10424423605742	6.33401339575911	5.5788703855801	6.26220897927328	6.1565058146808	6.1936029444154
+"AP5M1"	8.52374083688373	8.58271644037519	8.22360919268161	8.35505383632941	8.71989750175498	7.53290975276649	7.81478041206162	8.44838663286335	8.58869639477371	8.79608855635741	8.59073994048188	8.70989057876698	8.18745785376443	7.80498150785071	8.51061304214759	8.86504068930588	8.43506309877408	8.68826729218362	8.52732179607155	8.66112121998529	8.83259525067613
+"AP5Z1"	7.21136846668994	7.21093119453148	7.38584206362302	6.97386698741526	6.88896303285981	7.44508335356629	7.1385516764624	6.76626217123782	7.02934502914493	7.1149341468673	7.37217093225623	6.87681682102636	7.17916268120951	7.04147135247415	7.02939631102898	7.27365463580643	6.71886955406397	7.43272158145354	6.94816053035147	7.13125433315093	7.10958365941667
+"APAF1"	6.47817609501643	6.24624496249475	6.1762268963332	6.36630474953106	5.98571103556926	5.87431730962992	6.10320339375209	6.27201948172677	6.34134007968239	6.0949810229197	6.06068683277247	6.00628428374458	6.34291951971956	6.41045652656153	6.45502803598812	6.29880880738763	6.44977711881651	5.96484416165142	6.3817166071932	6.37800677890052	6.49024650535826
+"APBA3"	7.32557390745854	6.84959239360257	7.21285093158469	7.02032039977487	6.40648920554373	6.99415322081466	7.31854429215667	7.03551662147002	6.93071141332787	6.79393331393146	7.21015691469982	6.87825128451994	6.90824534158251	7.01289236700537	6.83845582773127	7.19584034517504	6.72615579973415	7.3728596511231	7.22394780812203	6.67381036782303	6.82511230770062
+"APBB1"	8.53393367176629	8.64209519901625	8.84641954021142	8.6182871873286	8.91632428620815	8.87927091952859	8.60024109673577	8.37858440422686	8.65786162394466	8.9946440468441	8.72459093772635	8.93578107055513	8.62889156897614	8.36357622854614	8.49430246551371	8.98680753579315	8.72442238622841	9.13834841568749	8.65692539966528	9.02569348179568	8.81490729393307
+"APBB1IP"	10.0880249580835	9.12800216673238	8.56814377595187	8.66974417904716	8.90467999771509	8.51606020786151	9.09598558400399	8.51768858070928	8.56552428985721	8.60187591291462	9.34089467177813	7.6915512733785	8.87950464639724	9.46192802470103	8.58373261663865	9.26155737311507	7.7448296029902	9.43638992522605	8.56770776540881	9.44236893818358	9.66964233903498
+"APBB2"	9.13800050959415	9.41748612106404	8.91091085868246	8.93366114954036	9.14350306842795	9.4395209963532	8.84832102384056	8.88335979592316	8.64164381224054	8.73235378877103	9.38024787941616	8.62406887611397	8.87121208650351	8.95865897603255	9.02860753894856	10.0947888709512	8.83015726241805	10.2272517244597	8.69489732153531	8.67292715896254	8.49004348603224
+"APBB3"	8.34569065744257	8.5967450069007	8.76905256557099	8.37607841988391	8.60064827618453	8.26049970147458	8.02629988716948	8.12592713536932	8.02797046001725	8.30806439481637	8.56394200657391	8.40090554287235	8.11257848352123	8.23366286848363	8.00429353086027	8.6970295488871	8.32747449851012	8.45855432522236	8.22760195880146	8.67194174331977	8.57543957809533
+"APC"	9.02809504775564	9.03838357838862	7.45524362136546	8.53509506839934	7.99140619698911	7.64636339102016	8.35355998815593	9.4895346028885	8.75092681581864	8.8629382934779	9.17024450660087	8.92785120845812	8.0783793887901	8.15267801808648	8.41466076429227	8.48631508100846	8.63741906767743	7.3793665455774	8.54556838606728	8.22563525449338	8.67298475292801
+"APC2"	9.75706958054645	9.59398048145327	9.61629751592151	9.5183373405143	9.2756953496285	9.24633066978319	10.1213939744345	9.40713446590927	9.31322084558545	9.64044129443475	9.60431240955561	9.54492997003442	9.42757509120177	9.54903316274977	9.12598269218419	9.09817354294323	9.62258601329922	9.40978368519481	9.50639056108609	9.60301943812024	9.52565121186757
+"APCDD1"	10.3904041963503	9.70365071927887	9.39855319725793	9.52888461259992	9.28715402311531	9.01048107886756	9.98351336017986	9.2284122930985	9.36900364477173	9.46627240597046	9.74774204617597	8.75269356816706	9.10539497029815	9.55833963914993	9.05643231922409	9.30984442663554	9.27961499595262	9.75699601371867	9.56576618227347	9.72442707255772	8.21713561763618
+"APCDD1L"	6.83256000865781	7.25021115310697	7.17523251066915	7.33967854931607	7.13907735230224	7.37112738214021	7.63150543156231	7.33502946885692	7.54767619262844	7.23788550084749	7.16281255123941	7.1872281558404	7.49458173599561	7.15738567240906	7.37080834213468	7.11870813914785	7.36047356625016	6.90157962206157	7.20346614286036	7.37789672313691	7.38479134317262
+"APCDD1L-DT"	7.36653214576371	7.46202443191948	7.22277358761186	7.72226324284664	7.40984322463243	7.17502248388834	7.38664855103788	7.33460430264506	7.66006282331625	7.63549139779076	7.4359874780906	7.67527644809356	7.65943267162857	7.30242903316288	7.60260760917237	7.64747510640685	7.70119071039116	7.16836037797428	7.63825953967147	7.47647163332533	7.85269959540281
+"APCS"	4.4338526546948	4.77945022780158	4.78608825748278	4.88177538173288	4.75776839290571	4.84354426244798	4.94601044544389	4.66167904018257	4.73235067421964	4.84653920083665	4.68490077869077	4.66657480600346	5.08715047349903	4.94045502757262	4.80226401084874	4.7939943459758	4.93125419697511	4.7486667644702	4.7939943459758	4.55044671042311	4.86619413522059
+"APEH"	7.73111278977913	7.47825686417347	7.62025272631898	6.81110916462199	7.72518885448222	6.85465686150394	6.86691294853639	7.05036603672356	6.80024050232621	7.56483122423134	7.27381478666593	7.33057659156913	6.50618706886458	7.01174028195564	6.71846010487365	7.11226546171	6.9106669607445	7.26623909127021	7.07783923290117	8.06172261907695	7.58896105669641
+"APELA"	3.02344690565755	3.01281455107283	2.90068110756082	3.16812787106595	2.97285346170247	3.09782467255632	2.96044971977131	3.02344690565755	2.95087354126516	2.97592694330417	2.87689920448411	2.84996886579177	3.11516890455023	2.99587766110689	3.01432232165255	3.22973333619254	3.03617429949924	3.02873284055681	2.76252510939685	3.04673027636388	3.0909489573067
+"APEX2"	5.65726416476635	5.21594349485884	5.44525315439252	5.41280703288733	5.2866961557319	6.18525411831997	5.37880106923967	5.19620469390342	5.5416937103325	5.38630060270381	5.19415077013943	5.16128928871356	4.96393377467329	5.47077523405549	5.48276423366983	5.07448035390873	5.16272685784027	5.61972028842144	5.15541119255122	5.33691139859507	4.94091779827066
+"APH1A"	7.87040242895089	7.41346964135899	7.0702406674161	7.12721186948406	7.53338822438273	7.20055670302959	7.32781752058826	7.15295557538898	6.96129787384355	7.21811907895558	7.46255646631295	7.41773224241599	6.71935213341115	6.85121083830972	6.28831941473465	7.77357205063675	6.87980403148404	7.94837426221011	7.20351285975386	7.51919694443267	7.25580427641042
+"APH1B"	7.01552003234431	7.1253996423999	6.47683037252637	6.55017099220424	6.74095727715205	6.89918811233117	7.18266969847882	6.89392081843171	6.75792821926604	7.11956541045405	7.00290304091535	6.90476373424555	6.7509126880402	6.87701777332752	6.35612360705861	7.36803789724322	6.94324464403254	6.97914137643686	6.96996488887282	6.78263322509633	6.81110916462199
+"API5"	6.52685616081814	6.04150327463393	6.42279637181383	6.1814240152414	6.33971567818737	5.83353144870467	6.20192321073463	6.35094485766535	6.02299441121919	6.46840138715168	6.19144944856564	6.66737415010582	6.26534954602994	5.80046519065693	6.44067483123101	6.58302973433061	6.00567142872688	6.43229334421895	6.38340007371235	6.58218932333131	6.57666717077908
+"APLF"	4.22661567495817	4.34609945159319	4.26944704941542	4.55018986392397	4.40422664719564	5.03816354032508	4.64823707525991	4.25759432932586	4.43376040936076	4.21631954420687	4.22127721442398	4.35475288249806	4.3642820799121	4.67218087645565	4.44013704748155	4.00794993794845	4.26783512057052	4.0746202181596	4.3320429970063	4.28811078375945	4.27919716874545
+"APLN"	7.11042615760887	7.98894690142178	7.51346868910716	7.77334009873937	7.67681544684405	8.22397113908357	7.67447429230723	7.60736273324154	7.82463137358659	8.27900141586379	8.57293134643903	7.57416777760825	8.39992985309196	8.0486341684312	8.12510995343633	8.37244916160676	7.72238679774907	7.56917873683245	7.17827237711779	7.60933042360596	8.13069166014943
+"APLNR"	10.0635681105793	9.50976722351447	8.92413230948095	8.92413230948095	8.49600920978691	9.39222095137721	7.98536626312103	9.50961931579059	7.71673506223638	8.49615390428136	11.4181540699035	10.0864603127505	8.06013937434063	8.40765225377258	7.66475070320638	9.35082427475669	8.43378171422197	9.17952937517821	8.83182590732661	9.43979133300901	8.68247003984669
+"APLP1"	11.2492275097079	12.0538967296041	11.9229647323734	11.8437150568945	11.808214234264	12.1538216705259	11.2867537941073	11.512363626413	11.4744872626401	11.7032264757001	12.2713776346341	11.9666401325785	11.4471272857256	11.6876274655699	11.3659322556777	12.7567151517159	11.8509528039794	12.4383382520044	11.6816934678232	11.6992579555491	11.765013092185
+"APLP2"	10.4394030026064	10.1403317965027	9.63455730217026	9.94163508901239	10.5051491236226	9.70038211152552	10.4953910483514	10.324723207219	10.1115824953344	10.7483759274166	10.2737135800891	10.4577952598749	9.85167548012763	9.67357729243834	9.58979405452966	10.0453326308514	10.3818585258809	10.0001371094179	10.0957511589911	10.7087148422867	10.757172478761
+"APMAP"	10.6193063024503	10.7428079125626	11.0488795079469	10.5546749420885	11.0984659237566	10.3494196457241	10.147164007645	10.6126643356305	10.7888004776417	11.1592141825656	10.5145939008795	11.0140705655856	10.4521425584838	10.3630365506036	10.4309815645386	10.5833367835687	10.9116175437819	10.9736520271823	10.6801764986018	11.3061737005471	10.8535299064209
+"APOA1"	5.59408281944466	5.45271231275069	5.96496830019421	5.91536334384264	5.57719862247566	5.92014541220696	6.2743878466264	5.76293558784354	5.77163383612848	5.76293558784354	5.52410747474452	5.76293558784354	6.06683733933011	6.05859448774826	5.74729841650899	5.487539501487	5.72176678392856	5.76293558784354	5.92171484545461	5.34702693411849	5.98143942124539
+"APOA2"	4.59492488151857	4.66949240803765	4.75451942219224	4.74024878295319	4.56032097711696	5.56598851820345	4.51542125191768	4.64671896347038	4.52909977942112	4.84620216933659	4.56860194006897	4.58623053896737	5.05024831133737	4.66784483447504	4.69049957834188	4.71134194143873	4.53680300292907	4.57512919121534	4.70474091051119	4.20609816774263	4.76624064459642
+"APOA4"	6.31575414767256	6.38717612721751	6.66178765801051	6.45484107198593	6.21916697999217	6.54367896325785	6.94370282585637	6.43234059137454	6.62510528130131	6.81330529224591	6.56415207020101	6.72748271592246	6.61401244228052	6.82390002428263	6.4971856142015	6.21090102735359	6.59757570644047	6.35886107571846	6.65330329116821	6.71467238470909	6.49616527691789
+"APOA5"	5.5996233188065	5.48107109102346	5.44873060083533	5.93449664123714	5.53418800491127	5.57621256937331	5.81891176058769	5.77583225556414	5.73011825477513	5.95560770425736	5.47831590142259	5.53600626550646	5.80628657823214	5.8079530207814	5.5822513919136	5.63119533203505	5.76847426813745	5.15611177650488	5.3819290683969	5.52845072449512	5.5996233188065
+"APOBEC1"	5.29680526437578	5.46875987308096	5.2646825456078	5.10622821734868	5.17759939725588	5.39256889886875	5.28669678900044	5.19828924246614	5.4431557031989	5.32631851749278	5.08338065801991	5.29680526437578	5.31359948380715	5.42752491004198	5.50572075972489	5.0380982780132	5.38214948050167	5.10935878734387	5.18179225302834	5.26715016929975	5.09924963314706
+"APOBEC2"	5.55728392660334	5.70651146623329	5.93166896280544	6.32900624728379	5.65189152841875	5.893937129665	5.84324430367431	5.84502811811933	5.99731796546139	5.83990503265229	5.71381093700913	5.6979072812086	6.08086158402872	6.14405844864018	5.81716122929297	5.80175904102103	5.78080214236742	5.5941733389914	5.9995998264817	5.6903400793016	5.94124552753488
+"APOBEC3C"	7.18393776529404	7.23608766789815	7.12199255180365	7.21285111536607	6.98924523285282	7.60307749473259	7.66917958218138	7.21285111536607	7.44301168371658	7.03923690944535	7.24184003795046	7.04260886345727	7.34371594189027	7.72701024676729	7.11013697778666	6.85171059178675	7.17313611226132	6.67434881617998	7.36474259432472	7.31077654589697	7.21285111536607
+"APOBEC3F"	6.62492839953599	6.28576780688091	6.36332834628245	6.24693467569832	5.97364700220941	6.33516556776051	6.79611495614362	6.32990863239495	6.30312281141399	6.51101795935456	6.40181395847863	6.3638013902438	6.63340165628916	6.65633098799751	6.40181395847863	6.255578425579	6.40181395847863	6.36936703190066	6.55340321928335	5.93364593489917	6.5136349652431
+"APOBEC3G"	7.53068629078535	7.44663316672153	7.70133895602585	7.7067872208931	7.57174152673631	8.01925021920626	8.47014000473011	7.58401611010948	7.81699123927241	7.77417174348749	7.34655068505153	7.76026069155971	7.91393776324886	8.02844703668014	7.66873641600298	7.37475114686753	7.6587826020873	7.05124687838445	7.91519665324958	7.58643027812614	7.61194815146463
+"APOBEC4"	4.76433842704719	4.84918371640232	4.6110777364074	4.95809529736254	4.62052089552	4.86335055709643	4.48561183694066	4.81569790945033	4.78574244438908	4.68923470997888	4.55515120843071	4.8312250814247	4.75799280259008	4.65282505996693	4.84207088964188	4.99203588139139	4.82159013034364	4.58985820993753	4.68456074271235	4.71340731510171	4.7835564780975
+"APOBR"	5.94382744855169	6.05398167081917	5.79280541174708	5.993319317415	5.68148387640221	6.09812249633321	6.31601944212345	5.86171851268094	5.97869432322653	6.14958488326023	5.96662432555305	5.88156869069097	6.07865982915146	6.16474383742253	6.0947083471563	5.97354577213779	6.10603294026842	5.83834155789365	6.04792596373228	6.30703013896956	6.26811482905983
+"APOC1"	10.6789317492131	8.59052083367534	8.22115375988356	8.28680021620155	7.93887274382561	8.70869445224265	8.21212032020425	8.7582436809837	8.09150890379968	8.00137560540562	8.53148202563332	8.53377646899451	8.30612085908303	8.74283709050137	8.69340776655429	8.29170225578619	8.60636361105719	8.24852138302892	8.66530537012902	8.64440449468827	8.98764220357471
+"APOC3"	4.54475770951035	4.38911059166815	4.7347259836243	4.61552486600255	4.45228320632661	5.24763652824513	4.61552486600255	4.51015904184771	4.67878108353507	4.537699768961	4.43913382550584	4.62607674089452	4.61552486600255	4.76375324004013	4.54241307883016	4.48992097863027	4.48148610319772	4.75301310179348	4.73276463165535	4.71801764652896	4.6537975726781
+"APOD"	11.9076798624126	12.4066874993651	11.5382399642653	11.9275720369998	11.6207933474019	12.7698052933663	12.58198812283	12.7160539929622	11.8176982775995	11.8666126719499	12.0314888997648	11.8215296870278	12.0893357959587	12.6290872429393	11.3323920514475	13.0041571497983	11.7684502242793	13.0732910415198	12.176219588161	12.8075527059908	11.6724226710347
+"APOE"	11.516937090392	11.3066281622052	10.9464582450058	10.5613165180051	10.6344357468752	9.54772614241405	11.1824342217806	11.379614660927	10.4156476397287	10.6103736617203	11.3676708453138	10.7925015679441	10.4678533413613	10.2668546190636	10.2027196171732	10.5656908764392	10.6048908008547	11.0565556379514	10.61628381748	10.8866490748418	10.3951581824299
+"APOF"	3.50705667412565	3.34741825632592	3.47049015119707	3.30836677292992	3.53701174150765	3.79214201609507	3.89007653489008	3.58413710603207	3.47049015119707	3.41861451529245	3.22048918496473	3.3734184827623	3.7155490029934	3.605185653841	3.24562630728769	3.40703440089812	3.47049015119707	3.39266443590551	3.46576233491324	3.33034422608475	3.76025694049783
+"APOH"	4.99410667933994	4.89736457902692	4.61738986277418	5.07132118929217	4.75799280259008	5.43026413804217	5.12016505807901	5.18941754488964	5.32269316951883	5.29960318257125	4.91419361060167	4.98200908134609	5.10734571885786	5.13829300330157	5.63349325867851	5.13007512544233	5.02511529910656	4.70883966752319	5.21556469242733	4.87535944512239	4.81931065618669
+"APOL1"	7.65759062103923	7.09566199488131	7.22501882899744	7.12527501464213	7.03425222665251	7.6025669355256	7.55644286239166	7.48866514994818	7.43904067255672	7.49159181068591	7.05225991260169	7.29791603256151	7.30065947018245	7.39645328495126	7.30016114097644	6.92616679686195	7.27359364184118	6.90401847823929	7.24688497943748	7.61343518811644	7.20677262128849
+"APOL2"	8.50818395485121	8.54306146937895	8.8033821138348	8.81883057685221	8.28659320898439	9.13258636073253	9.48483269460037	8.4390999260748	8.95629019451641	8.61078632681793	8.3167957298297	8.87978820561554	8.88628752201293	9.02447230490024	8.81941423792813	8.37800029330361	8.63193353023505	8.22034800652919	8.99002334739295	8.71274814138957	8.7699464473936
+"APOL3"	7.87358502767901	7.10260236896477	6.83095586236684	7.17714534154206	6.67424694676824	7.69354735441302	7.67752445826559	7.51407146624494	6.94888654442936	7.05646691541158	7.38366665167804	6.95776820489707	7.47005481906036	7.45892450848984	6.99517259979961	6.77580831999993	6.88494290928458	6.70382347147711	7.09458216397847	7.07557897037183	7.07637796100729
+"APOL4"	6.04329726773908	5.05781902108558	4.74543148984599	4.91100454531016	4.61406475563496	5.27162203955022	5.324329399508	6.82108972521332	5.0873316412381	4.8605364478341	4.82761182155056	5.41041495614271	4.80209414416449	5.14935422204308	4.62800596313827	4.72780597101381	5.04157839196126	4.74002160293938	5.07192034889598	5.56218274567079	5.50076182085259
+"APOL6"	5.7508538067655	5.57480924476025	5.29661251069952	5.72239998769815	4.9159059768807	5.5941733389914	6.5779135387556	6.12887164106087	5.4498778294781	5.43703567783777	5.82287033003888	5.70477790530069	5.85149342934914	6.0002525792651	5.53860769118911	5.2303273933593	5.26907238160798	5.14992716124433	5.65062772775783	6.14505941677971	5.90972334957308
+"APOLD1"	10.4955280686221	9.81635140549834	8.16198202323903	8.9002246203408	8.95276209252776	10.9007859780599	10.2178038065392	9.41041384069363	9.14749602005073	9.31639532060456	9.27512579860299	9.23160568562565	9.15066814588761	10.2076276614682	9.17642589038175	7.88471665358379	10.6574089876908	9.6871780649278	9.37531164531169	9.26335129175792	9.31761656077954
+"APOO"	8.66937981232128	9.3087649977519	9.00577536596262	9.15222388268462	9.84588273610446	8.27961407444668	8.72741725990553	9.17083819974156	9.28433757787227	9.8849106915363	8.80789783082001	9.5440757050695	8.92134708636673	8.58273959096668	9.02509383134041	9.18458829984902	9.25874092418514	9.40068612455293	9.05249054660807	9.85265051433821	9.67105448699307
+"APOOL"	7.45819111639702	7.6063871642073	7.22630155659129	7.4106169987801	7.92128229878367	6.68951892741502	6.61810156252914	7.56103529626171	7.71883202740804	7.83680924679991	7.56208360694679	7.67596992380235	6.95315903904111	6.60330823047661	7.30024910523822	8.09019480989792	7.75577598741733	7.72797643849379	7.43467923313574	7.56296743179665	7.81382040893872
+"APP"	10.464693897452	11.7199792084185	11.6762741914619	11.1562506032414	11.9193090859588	11.5939550837246	10.4574181789031	11.0563830405698	11.1776314913764	12.0222519371971	11.4740313676379	11.2888015944212	11.5087376644254	10.9834728089888	11.4081257741215	11.8012304074127	11.8049321036911	11.6648520705226	11.0136260387132	11.3133294389438	11.298631506372
+"APP-DT"	5.71763759174505	6.08512889888505	6.34476697392473	6.20503625464974	6.19836169668813	6.14214476769302	6.26012792579876	5.94102698941855	6.37164639678487	6.07469265870435	6.11190858410002	6.23417473563923	5.93470255760651	5.83278129835673	6.19934398970307	5.96768842584855	6.5906317374281	5.98430405262388	6.64675796398291	6.59361593165903	6.1200642599322
+"APPBP2"	4.90391539756364	4.6927747180874	4.74662023835366	4.96696264821726	4.75441478093368	5.38825143235212	5.61306376059154	5.07196007913601	5.33841752568178	4.85095730635873	5.26620855786732	5.13919727684108	5.17850414910575	5.17531102246592	5.23807365150386	5.09076206600459	5.20819162499473	4.65882365064775	5.30004115557859	4.48681909418225	4.78817796804865
+"APPL1"	7.89271332006663	8.209251068823	7.91694637186538	8.04832886255615	7.95958923970699	7.09177122685353	7.62592742898158	8.23306826072716	8.27920811907912	8.67464199244563	8.45138588861785	8.56520869256543	7.88903728519352	7.7236218709741	8.28168245359379	8.44356095966845	8.44503437777001	8.02019280889014	8.19357190731493	8.56207691705674	8.38913523153634
+"APPL2"	8.98816101901104	8.20622580235072	7.79486863083202	7.93639352786569	8.02595536555643	6.98450430054596	8.58906531910315	8.11069717935495	8.02337491534072	7.94171235073384	8.37795595649446	7.64909914558694	7.45560171431222	7.52343221515836	7.54283492525344	8.17005451707304	7.92798404177877	8.52513791095165	8.19361416749723	7.94305129722404	7.48182745607637
+"APRT"	7.72384467775299	7.06569575764963	7.23207981828464	7.04167432859154	6.96360996212271	7.13833941776	7.06281624891314	7.19364430745277	6.87330224940856	7.37649031995861	7.39569228642401	7.40477854189634	7.14447783738587	6.90007809423247	6.98830243261381	7.59900783094205	7.13480363841383	7.55646188462485	7.15704777499168	7.81295579663908	7.38558000125744
+"APTR"	6.49404933252372	6.49804472660575	6.77174368195647	6.56164539494172	6.83958386348583	6.24624496249475	5.90769198182439	6.19846727591708	6.41234920224758	6.27335853971368	6.76624495872151	7.01231091299197	6.71221537214309	5.77328326915621	6.66846527075555	6.82308407765901	6.22436321691284	6.50348116748999	6.54514581390169	6.58218932333131	6.49804472660575
+"APTX"	7.30557471563855	7.06910553310467	6.83258009773193	6.71039873609301	7.16956356941925	7.09139698469315	7.06005270727959	7.49854523538737	6.89997550094783	7.17650961703695	7.11106537334179	7.28731391829732	6.70100060290247	6.71581528062795	6.86725408019444	7.59924993000889	7.08048093812915	7.40208526038972	7.02429976276435	7.28458662814864	7.17906524970439
+"AQP1"	9.76362383376147	9.63077074031168	8.47826469512684	9.65384128352869	8.23924397741115	9.41529929482832	8.67244696952339	10.0334774170674	7.0484779972039	8.04785248226306	10.4748544212812	8.8287437874593	7.98223755105117	8.42227494094971	8.31386675648449	10.9160375580856	8.39206403633781	10.0113117111696	8.78722674666744	7.86967538318643	8.79461411784094
+"AQP10"	4.48441533953398	4.55667716459676	4.54025383766094	4.93127027910352	4.55984234958902	4.7562656058726	4.74108801074377	4.58439557936169	4.65493598819544	4.52770359578479	4.37990721416638	4.66399177915214	4.74764074109322	4.40848477396687	4.51025576770567	4.56410611764708	4.74620563225262	4.08673996701854	4.75049750769993	4.79489349980456	4.72674095725217
+"AQP11"	6.35718280889484	6.83183767356189	6.62033890928203	6.31098213274991	7.19887722841468	5.84451571296102	6.52023258118892	6.56777760043105	6.84222026072887	7.27627396422312	6.69682172036054	6.71302047392217	6.3643480768716	6.03460317694043	6.69489002150936	7.07228199658482	7.02349373542382	6.70789339280233	6.58628645002189	7.54583912648351	6.99122839169848
+"AQP2"	3.37970407141251	3.40495247830136	3.30864145816563	3.27420848537286	3.31948066825168	3.38511953200018	3.80713820726848	3.31854368273846	3.08670667555733	3.69609033767661	3.27054653645967	3.24287476301902	3.4008191692058	3.79340624972589	3.58100674599791	3.416070224664	3.49810256363987	3.42090356432274	3.65395801806149	3.3047694793243	3.37970407141251
+"AQP3"	3.73453177525489	3.46820957616339	3.78427981015569	3.65934086069221	3.62487664610617	4.42915645026167	3.62197617282092	3.64435126703292	4.08214244291307	3.83439214017298	3.75007048759302	4.10174683782029	4.02662654652577	3.8014362316567	3.89127356290896	3.58145432748848	3.84013073626729	3.32560529284224	3.95394381698436	3.71213363197294	3.85764289480887
+"AQP4"	9.80050322043459	10.4071735918049	6.92761627819933	9.5870767856676	9.09173992218511	5.38761153395942	8.6432535522157	10.2128267336075	9.76335852771036	10.0598037239873	10.7985718060478	9.78953973665871	8.61371539671156	8.11784956731366	8.39776746296624	9.26378908717972	9.7652853773043	9.07846261226336	10.156900302239	9.10455238447296	8.34726161223495
+"AQP4-AS1"	6.69788000210891	5.60666629498134	4.52857258448975	4.89452208632702	4.61600719664379	4.06515439011777	4.56994503041938	5.0979677365831	4.7096388695463	4.56985362546191	7.28956031405323	5.44831582548494	4.80759280449992	4.21852285742444	4.32647709485276	4.24440663700957	4.61807070561199	4.79372178105564	4.7096388695463	5.83911126027476	4.17415327719588
+"AQP5"	6.66536729190319	6.65623706463377	6.51174769347453	6.96292140034819	6.54588646081211	6.96292140034819	7.2568938702206	6.67082296726922	6.87688433805547	6.94434146342726	6.52302283272092	6.99044528381255	7.18231660036571	7.06755689869142	6.89909722179052	6.78166358025601	6.85215698278794	6.55320888584906	7.12906886359746	6.79618832397751	7.01450951219499
+"AQP6"	5.16676826545838	5.48976224969918	5.34838085468225	5.50258006146022	5.23408003208467	5.69050004291591	6.22851572511045	5.17492769564492	5.51553506582404	5.63806196415062	5.30563707207318	5.33729129422814	5.6306957600243	5.86793760929454	5.44923981811516	5.35725864675086	5.36253754610807	5.44886511160843	5.39780260507268	5.25737137546537	5.64273735990751
+"AQP8"	4.89390688792652	4.93949888142849	4.92366316705179	4.99169548668545	4.72161094968693	4.93377659142117	4.84659435203416	4.97933123512663	4.91434298854757	4.86484809800545	4.98816820713263	5.09846451510683	5.1318795609689	5.15423133880217	4.93377659142117	4.86986392122983	4.99850372342079	4.59178491283448	5.11776176055799	4.84976848731246	5.03319039774542
+"AQP9"	7.24167720117819	6.04247687427063	6.07980221493584	6.30615436653068	6.2810983417086	6.24091705582539	6.45288842191988	6.34097422326929	6.61761580805493	6.49577447034493	5.19859203764703	5.97585796026763	6.43610710255024	6.37845096175708	6.40219837715545	5.8012954208077	6.91552570639217	6.30615436653068	6.25918480665266	6.98165283594224	6.11142724382315
+"AQR"	8.48071737477911	7.98319732839147	7.77107198116719	7.45091874919712	7.98180105357678	7.6236279285851	7.85903037642804	8.04887960338669	7.59250275730691	7.86030096001872	8.02191358881666	7.88695146442769	7.48207308456286	7.78711616317672	7.37424302406719	7.98143329749493	7.66368633056943	7.95031954556427	7.64444529116068	8.00965394888884	7.81999455741501
+"AR"	7.76136770575715	6.86223030011182	6.76249022266644	6.87757491461655	6.78253773854806	6.93500310921553	7.81687704070465	6.35130025479338	6.64767183842518	7.03420259694407	7.43481139669814	6.53365087833075	7.20677602697629	6.77916952037738	7.03598378433867	6.96131153657391	6.93154062665679	7.027183781052	6.77459214546839	6.7932635046844	6.70229546757005
+"ARAF"	8.39887653812281	7.85297972553724	7.78355403171629	7.81158452162168	7.44507921420064	7.97420690551017	8.12464531570571	8.0293801395297	7.67952314328925	7.62146307139403	7.93230048963588	7.72263816894885	7.57999054424517	8.08288841862752	7.77351977689765	8.1904044441521	7.36769011183785	8.12926778335233	7.73880540921273	7.98214191623293	7.54715377390007
+"ARAP1"	9.00054827988056	8.66990381442739	8.7614863697967	8.62642079556035	8.31646034064225	9.18065799214016	9.14908714794928	8.73167754652047	8.47484263995704	8.33894360563514	8.77579810717735	8.29650166500701	8.77210993664028	9.1612689623652	8.59289723005175	8.71049596351694	8.49524582049531	8.8697468492051	8.61446126058096	8.45585383541578	8.55761210687198
+"ARAP2"	9.9645559902904	9.88106564321903	9.67789170224536	9.71808870165553	9.47144563657404	9.44355772030958	9.57345460079145	9.62018577942533	9.18202914849345	8.92698802023155	10.2271221619115	9.27146553206377	9.15657970064383	9.44519320752316	9.53187388087591	10.3225890258856	9.52383737507778	10.5484344861137	9.61169844686751	8.84968728266037	9.15669256127986
+"ARAP3"	7.50972918283852	6.38589301926806	6.50530211713574	6.24624101031763	6.49768910891575	7.07187780434706	6.848831678388	6.52089695331718	6.06102263219521	5.85563461126168	6.07042868912617	6.17177986796865	6.52133155988149	7.24420746461863	6.36114541734965	6.11890489169433	6.18619783200992	6.22243109586278	5.87384476976047	6.44117857778865	6.32363039323483
+"ARC"	6.68571232174993	7.06186261361094	7.27702849570858	7.34878228884311	7.1871664715564	8.13065889811204	7.29328300210585	7.89353813704461	7.2210707769658	7.02771038350416	6.24124922202008	6.88212311032223	7.88033442778924	7.16712106679049	7.20170838962407	6.24054774010785	7.23127729083348	6.60430816727979	6.40382767411492	7.12833103736489	7.48366247519031
+"ARCN1"	9.63021896446665	9.58118472875944	9.22570294464693	9.48985974301599	9.6463229436706	9.19484652281501	8.9151863040786	9.45703879342208	9.3675066112703	9.64238799210929	9.46273823974832	9.49265567240591	9.38624439646902	9.18974988486817	9.35247437661271	9.94558739944467	9.5228739601477	9.84624232868246	9.40539660015228	9.85709627944188	9.64186451521783
+"AREG"	3.30750293396355	3.20209711499786	3.3849528916392	3.14089557825327	3.15683683963994	3.15661021599238	3.15355926580908	3.36723651917908	2.99310561143612	3.2178689053147	3.16109714139296	3.13323108298007	3.08833950133884	3.26824784952143	3.37529893542131	3.1509828037103	3.31050165396335	3.13312991729403	3.27043630818241	3.2906916947102	3.19349120350024
+"AREL1"	8.24152131719871	8.28757561351276	8.7378123619775	7.95407117945206	8.56254507476696	7.88505519132181	7.48155066732562	7.7702472817457	8.0217466546827	8.20960722818761	8.09490853015653	7.99524689438069	7.82349988950643	7.80156567136891	8.1049320995441	8.49403420756264	8.1934532300991	8.56822964975524	7.79507438106111	8.47019320286364	8.31869195991858
+"ARF1"	7.04654118122876	6.89135630763781	6.93795320206888	7.00955429391835	6.7351109643113	7.11140111521084	7.68326735257948	7.02509553459969	7.10659792095172	7.04654118122876	7.00973108768731	7.17914016018112	7.13218943399158	7.26800404569432	6.88844783499539	6.88829672367528	7.14926398279156	6.85523215830044	7.2868499167742	7.09044919272067	7.07458298888035
+"ARF1P1"	5.01004407980332	5.6428552819069	5.53710719421171	5.62124767966492	5.66462751894241	5.64848710107461	5.59122946503028	5.23080091410312	5.80591402379403	5.57706554161177	5.56458709019212	5.56458709019212	5.79976601284619	5.4817085056688	5.60244300386434	5.75068121279427	5.54126269558202	5.41609717308611	5.53823395693449	5.30918070843266	5.40909244566974
+"ARF3"	6.31736618270385	6.43488375952069	5.96951218560035	6.99715537121856	5.83073761929669	6.34036842748917	6.83291130779698	6.45331931436639	6.19516796312165	7.02505405535874	5.89749321391604	6.59716826366417	6.5258963533309	6.40311102649566	7.28210997430533	5.77823731945049	6.2311599654375	6.46710175621083	6.53406086701128	6.59507051938565	6.43647057704421
+"ARF4"	9.15326591852391	8.84439941595291	7.94574368392788	8.51689978113269	9.16589998047001	7.98812004021785	8.05905876249542	8.91036436170534	8.43139974951802	9.30671337673969	9.14436125361297	9.1378674165476	8.46879438975616	8.03088354532084	8.14588495581838	9.21710702877944	8.64275603904634	9.19882925936645	8.8311501559581	9.19089754880714	9.17806227543781
+"ARF6"	7.78902157136741	7.46345493221252	7.03685186958993	7.44394681187965	7.31665993295056	7.22456330159427	7.9992291879311	7.47521104303452	7.41955639112191	7.54061854957798	7.39058336341674	7.59112151341243	7.52570222394548	7.47230535142241	7.18166327402657	7.42060984606095	7.40296268250291	7.33693301742795	7.47230535142241	7.79759191780238	7.38161765342856
+"ARFGAP1"	7.92476728589158	7.91719818260328	8.17986969305555	7.8791830856771	7.8912381133793	8.35867010201826	8.04407956262855	7.67267906672699	7.83036956835129	8.02649141595662	8.0718408711828	8.00948431552273	7.72185760343573	7.70086523438914	7.61019117900755	8.43601940068905	7.98515706561003	8.33517227167631	7.58411169266815	8.0886912309847	8.01331476704391
+"ARFGAP2"	9.83988426926523	9.78027154875203	10.1563617286444	9.28727300110883	9.73826664508421	9.79257901679353	9.45142601273599	9.35257625730086	9.32795499635532	9.72024350145969	9.62469404565493	9.62523522957968	9.07940207520847	9.55928045797788	9.04579252031863	9.88648179774923	9.33572806206714	9.75860646273978	9.27793724581213	9.91862898162652	9.50653103550971
+"ARFGAP3"	7.91572196639187	7.54510364453713	7.36616147449233	7.51637826671181	7.58822506920986	7.42631605673944	7.56822774887676	7.86154308909841	7.45831280604415	7.56781261030195	8.05615667846078	7.49596506935223	7.60835274026915	7.49002824504696	7.67057850056799	7.9060683814224	7.49358459622406	8.15388456164272	7.49786113432427	7.42301318365235	7.74192387248561
+"ARFGEF1"	8.69174538164281	8.42828607566475	7.64287874454477	7.90978608387853	8.54727837899472	7.67656942953466	8.08183909823143	8.31401825912994	8.02864992546495	8.52191797487941	8.17991640387756	8.51477194023623	7.67002855530101	7.58933869606723	7.66307311568578	8.76122690580745	8.42609436945414	8.58278245876518	8.2491382356284	8.64989430559577	8.75121590067138
+"ARFGEF2"	6.51523204559664	6.28459026543057	4.92701451892532	5.80302100266429	6.89843269507054	5.8164457918406	5.58443094895751	5.91650110363158	5.99837204397173	7.012507033627	6.17108257129449	6.60496280602859	5.80407008100531	5.79402430076965	5.69211873812694	6.39077418283171	6.51914260762646	6.73066819974775	5.87844467020228	6.41866248552251	7.02707390463283
+"ARFGEF3"	5.80984445732353	5.98646773671551	5.71945794914836	5.98737603366594	6.46225648664787	5.56561001806883	5.49840168543732	5.56561322791292	5.47456485684957	6.08361367529484	6.80005412336841	5.94024363984024	5.76186876749514	5.69552821497035	5.28470778146815	7.31157411428334	5.97131772078357	7.32864409368844	5.71075455400917	6.03012970205199	6.478884656253
+"ARFIP1"	6.94799621546998	6.47330787429364	5.73161706043154	6.40053533803772	6.64806030103261	6.42572870362086	6.46399783265611	6.77335390958702	6.28730617552464	6.62523323118696	6.97683889130849	6.39855109771732	6.10445478973675	5.9841263243859	5.77060565538265	6.92635919084368	6.27923225554758	7.16284907767098	6.49630050377671	6.56830605688316	6.41453848111636
+"ARFIP2"	9.10366297603898	9.00124291244326	9.30824035931776	8.96016837293582	9.34997465920659	9.12475257679526	9.14375248070911	8.89165764369731	9.19019402842581	9.34185958489712	8.86543681218926	9.06639196805195	9.00354611242921	9.2005587371559	9.12475257679526	9.10024342260582	8.9713024559197	9.20276493032148	8.75100097172724	9.44424272224424	9.2111363851595
+"ARFRP1"	7.62731130100855	7.25274791373165	7.09811422233727	6.99834476714117	7.25060534451005	7.0447361395725	7.214917137325	7.1336134692542	6.96553860479281	7.35287616001729	7.20904874364672	7.44698679182066	6.54598242629089	7.20197501600311	6.86514611500985	7.47357750172692	6.96713452048407	7.3066020602566	7.15341295023846	7.57676073454452	7.48054373241606
+"ARG1"	6.20499669708807	4.62627030387385	4.58275353160537	4.64839365410982	4.81247740630398	5.14321553466413	4.86485561675165	5.18300075680774	4.9014560956432	4.72908459548512	4.41830238173586	5.1125947404042	4.72813907586625	4.72980551841551	4.81815544684258	4.57018250120868	4.8726960388258	4.4597636036353	4.62421224906247	5.19556653551378	4.3912872710589
+"ARG2"	5.87371776633049	5.34174865786296	6.17172679690181	6.38902675247167	6.96416940460314	7.24200789503855	4.80801960237522	6.18147351023272	6.81705408056978	7.45709871502273	5.00311179557955	6.30472430677496	7.38148888295853	6.18289489041786	7.34123848349744	5.85297470080729	6.81577653537744	6.41674989312567	6.19721687593281	7.33914247740518	7.23949345459467
+"ARGLU1"	7.73883945958343	8.17428161424314	8.79860733416288	8.0142585690521	8.3475980840005	7.70474677897173	6.59219254372012	7.72264297770887	8.01346390352679	7.94999816682428	8.03188258221261	8.08172428243348	7.47501091625324	7.31991540471968	7.58786802201582	8.07372694777259	8.23991967949419	8.38666363518432	7.89287079780179	8.43523633262553	8.03738312683958
+"ARHGAP1"	7.97208806304643	7.94024280593813	6.98893639280253	7.83046927002275	7.04440797320722	6.28707385184432	7.7342671789695	7.56754568794155	7.4436541503553	7.93859677119164	8.11413191622135	8.13915546900466	7.390512544481	7.68070405142451	7.20022495379329	8.5228901423125	7.75206310145446	8.00393382160744	7.48179400635226	7.87621591961042	7.9190303196187
+"ARHGAP10"	6.67346290927403	6.10351017661235	6.42716678958973	6.41919417954797	6.28287738921389	6.51236134791535	6.29430090802031	6.20175651563227	6.69788000210891	6.21497138179103	6.3660296197469	6.32979260484865	6.5025985448736	6.55409373107372	6.3435021650013	5.94135131485272	6.19342823055239	6.21601090658276	6.64886975189681	6.3643480768716	6.03314313003854
+"ARHGAP12"	8.4713820524398	8.16526828549291	8.02937469448742	8.13610925623391	8.13714086923252	7.54445724082209	8.22018038026903	8.44279038909507	8.25713378708284	8.23790829867562	8.68252921581526	7.96554476215375	7.97058300017019	7.8158795807092	8.38105433681043	8.01012136574911	8.02085807423705	8.12514555205653	8.17305327765031	7.89962364894389	8.28370480749025
+"ARHGAP15"	6.53032956115757	6.41824887626549	5.77247569634133	5.53228084908355	6.09048688544779	6.14903784133488	5.83370688205521	6.4029158726153	5.87236092218023	5.99334370022167	5.77247569634133	6.0642111155575	5.70162962383443	6.34242639401177	5.61635801937463	6.04413986293701	6.03315491902224	6.2640694780934	6.40043747503724	6.68429232909274	5.92947875293658
+"ARHGAP18"	6.24024678006074	6.47247581912334	6.36040444003957	5.91536334384264	6.46031146729426	6.76848592900956	5.97314017598362	6.83897211427081	6.00990179220662	6.71357697799274	6.42637370686704	6.96537642552691	6.24624496249475	6.65971363655437	6.34430270089533	5.76555400345674	6.47755184373222	6.0804167941281	6.4124502499919	6.82329350035695	6.69851824703316
+"ARHGAP19"	5.50764831056903	4.90628160088036	5.2513623757275	4.8230549079144	4.83209988363416	5.13787626307033	4.88897121599722	5.30621558394873	4.7944474589257	4.57892485252342	5.49377620795373	4.74616280123953	4.28855268694854	4.95049817766342	4.13547127879756	5.33608602487791	4.80975635760138	5.36385622112726	4.82712071701273	4.62260595587302	4.5529966393937
+"ARHGAP19-SLIT1"	6.42511334478388	6.526960459709	6.37066435202927	6.60677653872992	6.36192973716755	6.45161093538229	6.41074419672282	6.50562538675028	6.56876948514813	6.60832349184076	6.25370634930813	6.43591680242489	6.73967259535126	6.68993244421285	6.62666752626276	6.5988704502369	6.60677653872992	6.41521446427937	6.49173538166066	6.31881253158312	6.40027039109185
+"ARHGAP20"	6.6278721340182	7.36333554315322	7.87914653249207	7.31640404340806	8.06355647035179	6.92497829433851	6.72616083716755	6.80212335624313	7.50179111060163	7.67639727398238	6.69778645811378	7.29060443171802	7.34075564045953	6.53032530454932	7.4005739272854	7.34075564045953	7.65085086549567	7.47722416005555	7.2948507858674	8.43914503817396	7.92015311620836
+"ARHGAP21"	7.62374455030555	7.67177115367909	7.16160881728522	7.57243465627978	7.54495221272827	7.39129377294425	7.10582543724657	7.51710223872978	6.96800448073112	7.05034234873438	8.43791050737752	7.74503510079938	7.27054552237698	7.20697440222074	7.17677173678788	8.32002223105342	7.34126495055225	8.88193381846785	7.39076811137483	6.99599588238313	7.19460549452455
+"ARHGAP22"	8.00953407314329	8.06928086814467	7.99418703024369	7.69326988263209	7.61881770951652	8.5735366792349	8.0774078456096	7.56396213535533	7.55901408593781	7.32489205271316	7.75758142717497	7.01565732099957	7.55427032898324	8.25380818874194	7.71738372496567	8.86453867928902	7.54868195595321	8.6714363401259	7.80247895888647	7.79423149627726	7.74130650186328
+"ARHGAP22-IT1"	5.33543869851158	5.41651533132698	5.01824973265393	5.64890844112789	5.40991202877622	5.31902214855901	5.0817899092433	5.26821241966941	5.45908986376153	5.40991202877622	5.45124121372987	5.49501725306988	5.45038638749684	5.24940593264131	6.0771676672671	5.41692159294044	5.52520737998186	5.29022241645837	5.52007731740032	5.40991202877622	5.60320695548484
+"ARHGAP24"	8.29147297830557	7.90188453302945	7.5362182255031	7.61459696554944	7.63745741625941	6.90156216916638	8.30380867229709	8.22686877632056	7.86639620682412	7.76831890168697	7.38211074835513	7.38058842734756	7.20251901214332	7.76044319827228	7.59729755377619	7.39653399462057	7.77232304529323	7.64091021644031	7.86829245296752	7.64987947894751	7.35759125039991
+"ARHGAP25"	7.28155923124741	6.60664044404365	6.66767593691348	6.72084468896098	7.005719969711	6.383840134418	6.86691294853639	6.72084468896098	6.93847646758888	6.66548813946793	6.73317899584138	6.36900011796845	6.57519176018212	7.00805850880595	6.65944635276828	6.72084468896098	6.51467415510937	6.72084468896098	6.67917382579916	6.72084468896098	6.7955832556086
+"ARHGAP26"	7.06674139003287	7.22937774319921	5.85376731145662	7.75333011551609	6.29143820502632	6.10683994086574	7.60965154398965	7.38683087385799	8.14575674366555	7.94385564597273	6.94537607955347	7.76362276056703	8.08474975890782	7.39305913305815	7.95696068772242	6.61690619548222	8.04595129884875	5.73669721864425	7.82414882331092	7.97619753536484	7.14047326424417
+"ARHGAP26-AS1"	5.34522701265884	5.08463812123092	5.48086027370579	5.29954621972516	5.26637558573893	5.41908261192273	5.70491146600837	5.33371839572543	5.34401261972342	5.41375443991733	5.1318999126969	5.40346396769647	5.36058882383764	5.42508435001028	5.02542861307406	5.25183503362717	5.6036114768004	5.19556452311335	5.35290343264938	5.30370666960584	5.4434514567809
+"ARHGAP28"	4.40167008625129	4.74187985634203	4.74698364078631	4.67914120127729	4.58208604597308	4.15520563288402	4.06777384064203	4.48300044497865	4.47282318627613	4.89495742181072	4.20616649067748	4.60705407900751	4.46188758408884	4.36186280279378	4.30947254566621	4.27200325265303	4.51918947622553	4.57284877840353	4.47915925901208	4.94215742371482	4.51918947622553
+"ARHGAP30"	7.28837979308305	6.08566894507651	5.56219696604087	5.55824455981604	5.81122138978851	6.14893618509495	6.07094544334532	6.11181227533356	5.95951248213045	5.88368514671744	5.78619298744562	5.43065330831176	5.78662979269256	6.2817755614189	5.7662511083396	6.03663402231539	5.7705366672776	5.78005416511801	5.8630206920637	6.55046548389215	6.50017552999199
+"ARHGAP31"	7.86254538099804	6.41051676287499	6.53952671182286	6.9154543147951	6.27794834410173	6.74313119291575	7.70910131778526	7.31304274483166	6.97427092233958	6.55468281999552	6.4671500858726	6.01839984652521	7.02713213950355	7.47117298734386	6.96434185241725	6.02720750951286	6.77261454190778	6.54367896325785	6.73460539151941	6.53869884650353	6.41149413749498
+"ARHGAP32"	7.67696603059617	8.57837903538877	8.8342012473644	8.50053432302378	9.12230577662876	8.67644291003743	7.63201064402618	8.52377260337139	8.6913597487561	8.29991485626824	7.92518135312414	8.72849401794865	8.38926634216295	7.51443249762173	8.81412433094025	7.56250244259981	8.60024682534502	8.85429380892804	8.45494912818657	8.39590198730886	8.62863015509348
+"ARHGAP33"	7.44682549468583	7.52067842533046	7.63995701111161	7.77982188251205	7.21993120820793	7.77621960930284	8.2138403526642	7.33698346257729	7.66909712586355	7.64578925719923	7.50364842256814	7.77972500290975	7.81918494209395	7.89167622226901	7.44391767232718	7.34537373713967	7.55335845639818	7.07685320531348	7.95217290573697	7.70708909302118	7.52641114846762
+"ARHGAP35"	8.54759417360551	7.86204051083983	7.68782789180125	8.07319545721789	8.26526411313334	7.89285566072549	8.51199429010083	8.40760270651718	8.30978932022551	8.95779267514959	7.88034897811322	8.66704311569666	8.07506611361455	8.17210086668461	7.61019117900755	7.71918619359065	8.0649455638103	7.90749013185106	8.38988807777649	8.48891799882723	8.19455248617123
+"ARHGAP36"	4.74906386618254	4.80804413405506	4.91348810812948	4.33917042970763	4.99473102036679	4.36967467218404	4.18232274258568	4.91072008715522	4.62079397885602	4.58282305697475	5.51631594575282	4.2096245280663	4.34373039500659	4.44937800068207	4.34484228840858	4.7939943459758	4.16473546304516	4.60920000945211	4.06837455963072	4.95150163947667	4.39578244344245
+"ARHGAP39"	7.34429296339184	7.28260415212692	7.6210667534601	7.55895546405008	7.54299359881251	7.7289413856036	7.67166098252455	7.59797912585325	7.67314638108139	7.54299359881251	7.30770565478174	7.91588776000837	7.78481513975394	7.53716226473062	7.3651261113759	7.00999254718629	7.55134332205244	7.49396639185891	7.40484320894783	7.87475762823276	7.84960259192474
+"ARHGAP4"	7.20741681409939	6.59015655159561	6.82643746030939	6.81110916462199	6.57882575129949	6.88874203982914	6.835660586108	6.68740463183422	6.76077521098566	6.73091243919748	6.60542948466493	6.69694364652037	6.67251186063467	7.0276568283651	6.57832329507483	6.61797916894082	6.84700411226606	6.75065277937897	6.64819255052125	6.76790066768343	6.91067349059943
+"ARHGAP42"	6.37621763399622	5.61234992444508	4.27844988633693	5.25933259883504	4.99993848549712	5.43025614339082	5.80704814905133	5.96551237169159	5.04989001325182	4.95771342590708	5.52470597171567	4.6687487105266	5.22065071826419	5.40187836707446	5.0827019826378	4.79935824376806	5.06582253906291	4.76202435510637	5.4283734355655	4.60079550056624	4.16910210131818
+"ARHGAP44"	8.12242829646909	8.3511965066623	8.67510323016	8.4594800727023	8.77030771711473	8.57294892156323	7.98372031462943	8.42781533090994	9.06287434110072	8.76204636267565	8.13854164273909	8.57655245009648	8.92364242381956	8.34643531083573	9.03550323076435	7.95699931849038	8.96928780421485	8.2429494123459	8.57267829373056	8.75627833049764	8.94529887140672
+"ARHGAP45"	8.15349130239759	7.27314624078419	7.18711056548316	7.1130419858048	6.8666125259848	7.63275098066013	7.82809973638331	7.27944493553669	7.24885874717449	7.24289249463225	6.99997363020194	6.9941384734285	7.40934311995455	7.8317801048442	7.24885874717449	7.09188222975339	7.01079167471566	6.85776003786301	7.28062917061179	7.51602869798655	7.56376783713768
+"ARHGAP5"	8.29617953213251	7.88778645904612	6.27560185142213	7.71373138819785	7.29011368899466	6.22689517514677	8.29245670818356	8.22288727097556	8.27743854651013	7.58004041336767	7.98336992563945	7.43008837061995	7.48430290729839	7.42890836780218	7.87620524489159	7.14507044314649	7.52389268996526	7.66707045497755	8.29648620069467	7.07242828944629	7.28009944221117
+"ARHGAP5-AS1"	8.03157696034236	7.43472091901849	7.6340431217569	7.28352444138965	7.35806176494844	6.4063776206366	7.76321193729771	7.40984688685213	7.24537311089152	7.17182852947018	7.7327165435821	7.16939712821719	7.14197297729973	7.00381451803907	7.01039141975922	7.23360137675102	6.96180885764563	7.21553459191859	7.63236005212704	7.32796541789594	6.93570516350513
+"ARHGAP6"	5.74374787116615	4.77366734867537	5.12906069912838	4.59484172933991	4.85202424708918	5.20094279172345	4.7763080063018	5.10769348237355	4.42035552973425	4.64339565487204	5.49711624837495	4.64293437096205	4.44111259195782	4.88171439134242	4.46978401392588	4.62670542573774	4.69681706535474	5.39498772025405	4.85709595490024	5.13127338297672	4.35601274283148
+"ARHGAP8"	4.79710239263693	4.7941574562282	4.4660742280816	4.76133112629403	4.52318401145541	4.63171329230952	5.2305159994473	4.94142085245314	4.9985179295147	5.01927914005943	4.65584051824609	4.95805767857415	5.09122390903668	4.77907791289937	4.97042188732177	4.84414537338371	4.95771342590708	4.53550158966033	4.94702217304245	5.07529026570546	4.96754325870935
+"ARHGAP9"	8.43612642532241	7.18624177616239	7.02084951295858	7.48316734963706	7.67347850354898	7.7628576599335	7.51499706921893	7.62943988921492	7.67806899469065	7.78836534967663	6.7428413439531	7.07058285473611	7.79792229956612	8.26883532315571	8.01365591540623	7.33113501856142	7.25381676140583	7.60154220563263	7.62519062844532	7.92131304147838	7.96537412173029
+"ARHGDIA"	7.4136507961857	6.80773164946543	6.79299105642695	7.01298787176428	7.15019466266908	6.62874236032951	6.42955973830883	6.83599495491674	5.98164170639409	7.84337567626612	7.5329137446867	7.95659878314166	6.88325391105273	6.52535796281806	5.90433662698647	7.70304037847157	7.21158805607202	7.34812558287618	6.91836831227235	8.05375580940615	7.69805496892912
+"ARHGDIB"	8.57734699159569	7.67885276595946	6.39269739576364	7.59430892528758	7.57861041841106	6.75003328623703	7.50633975201015	7.75813548900291	7.47616889260623	7.57473143564089	7.57512404432309	7.40794588948841	7.63174465797566	7.47511066326474	7.4154114261901	7.33758894236626	7.07235520871278	7.6014864026174	7.54914416314706	8.56151424609489	8.19226384006859
+"ARHGDIG"	6.83546573822738	6.93833576186258	7.13420937941223	7.11989425398945	6.83991908894348	7.53340359435992	8.00881845626492	7.01838826000738	7.02801912976177	7.09801254563344	6.67452591292519	7.11902712598672	7.20249513722645	7.4646470235772	7.15319175363745	6.61543829795358	7.09458216397847	6.71616610591531	7.40296268250291	6.99800337776435	7.0418253017918
+"ARHGEF1"	7.52686561027717	7.6888943253548	7.42357998370074	7.96127603650304	7.09675083655218	7.6350783757534	7.81986609614307	7.82966403320142	7.90556450643589	7.35004355067585	7.81427918396489	7.52392816148055	8.25717415786601	8.07169317172259	8.10426931595555	7.57337937479116	7.86569384147343	7.29052939867292	7.87671295839744	7.26544551610781	7.58626021523185
+"ARHGEF10L"	8.01770627358084	7.89116987298144	8.13541427752009	7.76853989504387	7.90322229179853	8.17981897852232	8.2231134359128	7.98519421458281	7.89257412637706	7.51484045574032	7.80321875778418	7.65869911231646	8.14037350783151	7.79024854539565	8.09122261327003	7.46379071571606	7.70880604419491	7.89499311459446	7.90083248725181	7.79663064862887	7.79024854539565
+"ARHGEF12"	6.98259322266703	7.22936255703388	7.63848144099144	7.10913567074264	7.66284467580234	7.18611586451469	7.37270285392068	7.63369479481388	7.6481589965655	7.34286981828776	6.53481506144973	7.09388610481766	7.5683252135031	7.04029151883567	7.94031725884859	6.7888684261448	7.3891391096388	7.37721278399217	7.51430501725036	7.53891148770122	7.3189803272852
+"ARHGEF15"	6.80714591056728	6.8392536691842	6.76388465492033	6.85331160211737	6.69392072140508	7.22887751667864	7.69123099733332	6.81110916462199	6.89032415487733	7.00649489947399	6.8803496651886	6.94525618712188	7.21463454757287	7.47288405438877	6.845964534914	6.44267776037417	6.85057394274554	6.6999814901846	7.04622417578879	6.79703013388984	6.98269054290111
+"ARHGEF16"	7.0266569863129	6.7239785242042	6.82689383843971	7.13631541295886	6.83242398994542	7.04671922452303	7.09543293399926	6.74539642359874	7.1879151381869	7.05965601504389	6.74630562142077	6.92682683710037	7.06775573284438	7.09257012678747	7.03014276192689	7.05614837151328	6.92576194081733	6.82937778491104	7.0778910087483	6.99394660730391	7.02764186543709
+"ARHGEF17"	9.75219173528386	9.60269508898375	9.66423948396918	9.66428857942551	9.72517377570878	9.80816121376969	9.69572096851099	9.61381730143481	9.85450691820644	9.83939915505856	9.38749650008827	9.77386789778221	9.78796028626203	9.72931271087314	9.69025223810472	9.2582600541448	9.86347318957621	9.35370365648142	9.42963695144083	9.69025223810472	9.85935336655569
+"ARHGEF18"	9.27682072676586	9.09817354294323	9.28305936346688	8.79007849605738	9.13522509868462	9.30098500962673	8.99854052511952	8.89476789779252	8.99020530193249	8.79431294352464	9.0819468242647	8.74473625607665	8.95256645191661	9.02008775105426	8.88746614900175	9.53743365614129	8.87390229859613	9.67419845684272	8.48088762349898	8.97161064318226	8.8469379124441
+"ARHGEF2"	8.81599562494871	8.54746900696131	8.68433174299248	8.68657917599866	8.33897786940211	9.92882450301909	8.64317031818527	8.61168931448296	8.39117022415393	8.22747348195005	8.87060186654037	8.59450721068794	8.56335662621068	8.73205202259335	8.87172990245563	8.89185858537107	8.74116654525917	8.95656678141869	8.74117620861148	7.85803472811735	8.5754046169513
+"ARHGEF26-AS1"	9.07550717548121	8.9287268000686	8.63935960867308	8.57603593378514	8.29106196715134	7.31692441840325	9.35761115234823	8.94165231587234	8.72988426189495	8.04215875546931	8.89637900388866	8.17510382285204	8.54438664344992	8.55878712313823	8.67634140831266	8.27605230292295	8.24743966678984	8.34569222066047	8.80121744225518	7.9949035503786	7.63530466045771
+"ARHGEF28"	5.2459226201195	5.65727623065351	6.09008944134789	5.95563879035539	5.9743436879444	5.87912498057024	5.58090125670614	6.00274451272512	6.0762638776029	5.98362702231784	5.54032771024621	5.87858978253122	5.68936687270721	5.59140381272771	5.81766747890097	5.34415524315468	6.0099495237521	5.6983132773936	6.08647197046832	6.52436236643957	6.02903578373021
+"ARHGEF3"	8.58005433781617	9.30054678547512	9.76394533509057	9.70547839660397	9.97227040540264	9.41786119845006	7.74223537408789	9.42004241009738	10.110294303183	9.65200227534279	8.97763388792849	9.65200227534279	10.3321957590394	9.26062431252668	9.94958528958995	8.82461712888754	10.0617944476315	9.40814749152041	9.72657936623187	10.0500939462978	9.84258587186123
+"ARHGEF35-AS1"	5.33776913605838	5.13855897604248	4.77153550754779	5.22209266910451	4.8255291774046	4.90499113004887	5.3767895375027	5.10215503975607	4.95429665155286	5.10215503975607	5.25973672397347	4.95119620026361	5.35385145110064	5.63381967453876	5.24180096121359	5.10215503975607	5.02217725194386	4.54681296348229	5.2878958539056	5.26469198044303	5.1328730629051
+"ARHGEF37"	9.39125209221638	8.57511211859977	8.47086366703489	8.35534684264979	8.15281754277643	9.10172434142864	8.25285106599855	7.89159460637544	7.87975474078689	8.2142331728716	9.41435560660645	7.68317282944431	8.37207860466394	8.69465351306424	8.15548672127035	10.0285744375665	8.04830438381283	9.65816408881723	8.35979877786778	8.21689416667914	8.17622603142721
+"ARHGEF38"	5.28227427582369	5.0790847149104	5.08159521009014	5.29550321088532	5.21567014259497	5.18035804304378	5.42879578249155	5.07499221888894	5.2512145847374	5.14321249146811	5.12637689067391	5.20444537987825	5.17531102246592	5.17531102246592	4.99423590821343	5.17531102246592	5.1605047460973	4.86787663311833	5.01321849411936	5.18698525965538	5.17531102246592
+"ARHGEF39"	4.29162061044179	4.4152420098398	4.32650727040023	4.4800040792205	4.55974308300449	4.4152420098398	4.64684844911681	4.48320956020932	4.37071496273185	4.56298867286679	4.55974308300449	4.57505524048818	4.6643039631246	5.22725998261272	4.39271523160183	4.5284757344376	4.6011012066865	4.59107431329342	4.56021050213744	4.5362701579989	4.55974308300449
+"ARHGEF40"	7.30816766873236	6.8236195962384	7.02353119537007	6.88263305880538	6.65928098145844	7.88238931664158	6.99427209341938	7.20812869395995	6.79238279268327	6.43228231780414	7.4001184343043	6.36901909761581	7.23737512381948	7.14929854590906	7.18375514659856	7.1227811742104	6.83301703612821	7.09978278128855	6.78911809914899	6.49675353318309	6.79943794651241
+"ARHGEF6"	9.62379753758971	8.70742275733673	8.57449314405785	8.87848366540761	8.44114264130346	8.5508538117855	9.15052430246453	8.98896805388764	8.86264255227529	8.53388723935946	9.34038118664643	8.48155141213043	8.90185280589994	8.90291004889113	8.9899973712058	8.86264770803606	8.78714517801619	8.7574500867946	8.95803342511445	8.66890315957053	8.57079698839575
+"ARHGEF7"	7.41903029920901	8.58936130589208	9.00827764279694	8.6188588735902	8.7104627092754	7.8682558711422	7.37951799020319	8.09637536146548	9.11102739192823	9.00865301839087	8.15121179932053	8.9305816175187	8.38242012454979	7.79052698834383	8.88854818892704	8.38678046091318	9.03775982836679	8.84235250574864	8.78552196827967	8.96631168773483	8.99089498421612
+"ARHGEF7-AS2"	3.48766696517592	3.44620988326194	3.26122799560376	3.48452010008196	3.56436083625783	3.3338104942785	3.27702193536718	3.45426650802959	3.18505552278582	3.26385300314386	3.36873436903075	3.59946325129773	3.14158284375201	3.22438100536427	3.36477216679498	3.3283562311882	3.04543060447808	3.29408869147078	3.23512348647754	3.45543993057874	3.3404377108901
+"ARHGEF7-IT1"	3.76126071296187	3.82841639571228	3.73320641008579	3.92334026845221	3.86864648206988	3.89670681098372	3.77264073166954	3.79529360278735	3.93755621184736	3.85450846888743	3.66076069256676	3.67512489825553	3.97723544643213	3.87484997989834	3.87129667974378	3.93668319481726	3.86851219806214	3.68379406091572	3.93320009795131	3.82841639571228	4.07467961264
+"ARHGEF9"	7.12169679220113	7.40356226319828	6.9476643357238	6.96969675435399	7.54361714547948	6.37193724450633	6.57770775742748	7.20922523442662	7.56565101298951	8.23876677829295	6.90614638940345	8.27788050426402	7.05021795041827	6.76436352203395	7.31215373888268	7.49848154137918	7.81119848321139	6.85438468368232	7.37260741589811	8.18742193559609	8.4023444444042
+"ARID1A"	8.91449805917398	8.56719508246844	8.46636893002941	8.58106969309445	8.63246965233206	8.95262674459237	8.57746716615913	8.58922560851098	8.05169537612504	8.40674325874851	8.84486766774055	8.57746716615913	8.52115703743644	8.58150387308948	7.66911974755792	8.84268836060541	8.59931619287314	8.90780210576809	8.22040931457329	8.52962978297471	8.43394083593658
+"ARID1B"	7.66324003762126	8.04640566911943	8.29225575015721	8.27671919119114	7.68294150001829	7.85908549185463	7.28589908118514	7.84036289593153	8.27567303282886	7.57874124871822	7.97552878335351	7.94328052985487	8.48132376786617	7.64225793078708	8.56261511601807	7.79305865090375	8.24269229214545	7.91553339372487	7.96416988382443	7.23818507947102	7.48949792938702
+"ARID2"	7.09523108983471	6.4693836078741	6.48758763306195	6.53841636434716	5.91671830552979	7.2475489134228	6.1537480379426	6.7442072905321	6.11948058783988	5.9122761627582	7.04854324045652	6.77114593685866	6.3850449786764	6.52813120898041	6.69559460688687	6.99882375850132	6.602108564838	6.64365422925353	6.7135362072491	5.88442245048023	5.87102360406588
+"ARID3A"	6.74865850779758	6.7630519948618	7.0038208925016	6.84513359705067	6.57603228499551	7.63161761079147	7.32992263237584	7.04726851588864	6.8383806229948	6.67164784645554	6.6336678670481	6.64699830684264	6.9873810216901	7.22717346884517	7.05535121885707	6.25351719400573	6.60402560169696	6.46508989264634	7.00078199652256	6.70798054592877	6.53036259315506
+"ARID3B"	6.9518778304199	7.54398168152967	7.30650309287809	7.46981537460333	7.27730677227628	7.59569631866104	7.62533530573926	6.96161836762221	7.36095300623976	7.02669621126729	7.09399174437116	7.13142471712044	7.35192252880037	7.69241252883305	7.46711969521418	6.88376785220106	7.27730677227628	7.10747565843011	7.25312802181399	7.12090624690841	7.29246072853997
+"ARID4A"	7.06769220551436	7.54180685453614	7.66790341681693	7.40721204871789	7.93124144072825	7.39318753911416	6.93723744647631	7.17742626808637	7.77154038042839	7.29186898165739	7.45420692237095	7.39563754127559	7.23686393492181	7.08625909340702	7.683063192328	7.03683050035263	7.31486391508402	7.99478029287489	7.29196650593657	7.26181164273357	7.38650080918629
+"ARID4B"	9.35214314691165	9.40200994220911	9.5323193092664	9.27541574169623	9.4445940598531	9.26429185096157	8.82112981462411	9.22593650367689	9.06362029430271	9.05039658260229	9.70782408729792	9.31796877933305	8.93666712310205	8.98021592588266	9.41521750117352	9.69486913900729	9.14632165901164	9.95127004674917	9.31784670422619	9.028767428141	9.17677415564803
+"ARID5A"	7.80288906901406	7.11157212449927	7.28781207500222	7.57000885909201	7.31982572042726	8.18981967939632	8.11844057784804	8.47293348601985	7.64388718092218	7.50649795315057	7.32581317028607	7.73408319929697	7.77677653910217	7.90207282889975	7.57000885909201	6.96496939888729	7.57422872497467	7.027183781052	7.74712058795207	7.66033444580805	7.48259650216202
+"ARID5B"	10.1152374364238	10.0753661257513	9.86377398387425	10.0627355312839	10.0644221021049	10.0596635838012	9.61767771049729	10.1667415618586	10.3069578562063	10.0731934033086	10.1540072064222	10.3033540909357	9.93573045074585	9.74595341433109	10.2069805449866	10.2920798905689	10.2534608039827	10.5809683008276	10.1493655237713	10.0747667626978	10.0961995371114
+"ARIH1"	7.97147269822626	7.93974781967063	7.57366917870679	7.51996972610279	8.29144549773656	7.46017300241383	7.39016161275137	8.13818294717639	7.62197514808055	8.11841638671938	7.79218791530877	8.25040094940416	7.58321387397804	7.36757628984725	7.83528273652756	8.36863708793647	8.08544999871958	8.19572452696398	7.82365921854147	8.36966016934238	8.32797788367975
+"ARIH2"	7.29380156464076	7.33000036642975	7.13892722649921	6.97963122600495	7.16409376555055	8.13091933615712	7.07546086861656	6.66424967397876	6.90589441554083	6.84887940451898	7.44440838358597	6.95011183969653	6.86317782620088	7.56921693445186	6.88512200343428	7.7473444879395	7.06653891654098	7.90378232289847	7.14234587891894	6.83153391429677	7.08928528112936
+"ARIH2OS"	4.98805610308567	5.6320599802897	5.3653011155895	4.72094396079176	4.91708165502444	4.23892015234173	4.48038647914979	4.99515202689305	4.72326779002457	5.06906964875127	5.71805911675542	4.98200908134609	4.61818674686056	4.81025477520236	4.89736306629113	5.63231534947775	4.10674560480781	5.63768222102988	4.87714279200416	4.98171047862857	4.52263994033223
+"ARL1"	5.91019044830018	6.33391251934166	5.62055735648573	6.29079601809376	6.73422850308999	5.62970748613433	5.83781325142382	6.26039765914278	6.20326326587196	6.78026507913248	6.8020331480282	6.66080412784494	6.20690850615078	5.72275640796114	6.50372761657271	6.73042009111101	6.20457342153595	6.69980728801989	6.36939003276804	6.59677990898808	7.08929778497534
+"ARL10"	8.3978841144378	8.65305559820776	8.98151505631684	8.74048183834124	8.65043469228046	9.03121451889278	7.96678930020967	8.63664368083164	8.93726457281566	8.38906861241681	8.53542926585222	8.38906861241681	8.77948916683706	8.75649869369838	9.01362388176502	8.47336257700873	8.530892038268	8.69123307084995	8.73215709539635	8.58379404458436	8.37048640771509
+"ARL11"	3.50227423304337	3.39289856257913	3.61848636574134	3.17719749545389	3.55839264060838	3.43518416617351	3.76055153285452	3.45638438227545	3.43785237716273	3.59261368272325	3.29427575986811	3.41502651666942	3.36736409936487	3.53741376891322	3.27343339677126	3.64760837069852	3.31086951014293	3.33108560123155	3.41502651666942	3.35542005713643	3.41502651666942
+"ARL13B"	6.62031241049731	6.5241427419009	6.443834933189	6.3365102748342	6.16409576550354	6.26974197234228	6.20014462730781	6.67224648449646	6.25622054017516	5.98507683377775	7.03339069017213	5.97361419494344	5.92980149788573	6.34368315072683	6.46654086522946	6.87494766531841	6.03812881880674	7.17576512820373	6.30979711839039	6.20579803706735	6.18359133655692
+"ARL14"	2.75952861356373	3.07117950175144	3.28347474085617	3.00602501452942	2.96960744238276	2.99454011158414	2.88345996132337	2.9265485117497	2.89823623128049	3.08595463194935	2.93746018052317	3.01097351399706	3.01097351399706	3.01925167197942	3.12862516691024	2.99454011158414	2.97342501379085	3.12453053269928	2.76252510939685	3.11768809262357	3.02197769376077
+"ARL14EP"	7.63536535024871	7.68379780910659	7.60637939550776	7.62731793548938	7.79516424493379	7.17560605385869	7.38061469884887	7.68808748122255	7.70616139184359	7.53430179729361	7.48291078812175	7.52568211530246	7.49304662138133	7.23664223966811	7.8854291683544	7.58495321078195	7.56106067693713	7.75932098701864	7.62349081305279	7.78894502778726	7.56604670267847
+"ARL15"	4.52205163871261	4.64071216101352	5.01721217862091	4.47044541934806	5.00441207904632	5.73288968605086	3.98323917425708	4.83755228369454	4.71592713566616	4.81718827110894	4.30211964167161	4.62445671310673	4.85445580213125	4.66012477748751	4.83428650254084	4.46941820527076	5.04506090436894	4.40178564264818	4.40187645130486	4.93173945474375	4.68426845982622
+"ARL2"	9.61813449418449	9.61202467015314	9.76996042138315	9.55407361151165	9.81881847092608	9.84577677050819	9.92249009673454	9.56824212082092	9.66685712972574	9.83389724409003	9.70031123196332	9.82755381111518	9.58988993232341	9.58668865479103	9.74854334797651	10.1606890058009	9.69718793714655	9.72410410975862	9.61931166538006	9.88565788084277	9.8611580495327
+"ARL2BP"	9.37279209515988	9.1891336837651	9.20879819720989	9.24601988458073	9.50879237360807	8.78917098232668	9.07798767021078	9.05684779137256	9.24601988458073	9.51016263734286	9.13503522823457	9.3235511199801	9.22222016092021	9.05491696379604	9.24267047598569	9.24178399574356	9.1940790646627	9.23609758693908	9.34157343581353	9.62075469799687	9.43274872959854
+"ARL3"	9.461922202731	9.10496118046723	9.17225369948954	9.22868355169351	9.30953579284573	8.16570169434769	9.26930016070241	9.43541640798822	9.42868870404025	9.49353415817452	9.27073136192665	9.24279835255487	8.99182265268294	8.82642837419195	9.19247102571406	9.0964012143363	9.02456422876056	9.19304912899657	9.37534714656292	9.39864078709643	9.32616321899551
+"ARL4C"	7.3829341742671	8.64250215095447	9.32852959396636	9.07931322818802	9.42489624772806	7.42521550080411	8.34656486570866	8.622074215494	9.04908462910003	9.0296534535425	8.20333947824221	9.351482793057	8.89576353448613	8.20670200206522	8.62769044636356	8.72368506462801	9.12750537146444	8.42828108103025	8.93656318410564	9.69693338687586	9.36467511124965
+"ARL4D"	7.12337363782144	7.44443955189124	7.73218429775639	7.29242946416741	7.48298007037808	7.8481078938322	7.46476787672501	7.28092727416282	7.55088304748394	7.69120460121473	7.22227509861689	7.51086754354127	7.69625750463807	7.67611908874896	7.5155712591414	7.23918762467758	7.40829804766263	7.2781070024935	7.42036706489373	7.73316960424101	7.68173626002183
+"ARL5A"	6.29964007583347	6.07447242365776	6.19155723601721	5.96541774174116	6.04052007064196	6.43589306511699	6.35058939337441	6.39435715145975	6.60879525990022	5.96499447965803	6.24171315803831	5.67788987868816	6.34277130236685	6.4133558698076	6.83141449680457	5.92774717096746	6.10964410460297	6.5877765907447	6.55088246599905	6.23591592201597	5.58532568314311
+"ARL5B"	8.04982040870181	8.42642465166754	8.41737373061382	8.28018464456695	8.3803194631047	7.97227504197226	7.56917873683245	8.66247823196381	8.49421758607739	7.95999800016523	8.05974880232548	8.31716279963161	8.2524344640138	7.84087982596718	8.75984788412945	8.2412269670498	8.30943609865505	8.49975194590462	8.43635108607401	8.2849169227384	8.17781713118519
+"ARL5C"	5.75149948237669	6.3097280404443	6.1389271509529	6.30221899920982	6.38598558772312	6.52440452384347	6.31953621219258	5.9241244827107	6.15609184696688	6.3134304061746	6.04052494997428	6.32766785203658	5.99790484213675	6.14906145970044	6.3299050221428	6.22619955772884	6.17831146022572	6.12211428346908	6.22619955772884	6.27351213188799	6.22619955772884
+"ARL6"	5.10273191502426	5.48443078817688	5.24161368255846	5.26714825345695	6.41933576162435	4.43028705895887	4.99608020891571	5.24026921956408	5.40608965964955	6.38865611930172	5.09965928268311	6.0226380286665	5.13254939416289	4.77164001773709	5.01295525566007	5.67961998139837	5.9234326484563	6.13491705212521	5.68475084850554	6.1586466708164	6.41602442967929
+"ARL6IP1"	10.9795853934747	11.2769817062358	11.5140257200494	11.4561127294304	11.3726304322167	10.9339389011993	11.0021863344391	11.2416803443911	11.5183940904807	11.3792522072239	11.2938499781748	11.4544488792648	11.5064079200325	10.9285947993751	11.4162375503313	11.0531230127051	11.569609618003	11.305285207978	11.5040889789609	11.2749600261641	11.5072314873559
+"ARL6IP5"	10.0851320402878	10.4571672023341	10.0565455387562	10.17499518019	10.7047409794798	9.3917724226063	9.39543715754519	10.2952917340175	10.2099249289392	10.7937572856149	10.5686421897088	10.6295356639961	10.0012306824343	9.514021578855	10.0254476245642	11.0565034212767	10.378316351564	10.9055629344192	10.5396530723781	10.7965179747691	10.6371272429403
+"ARL6IP6"	5.58509927308244	5.06195877682009	5.09122390903668	4.90590916401536	5.00626783372333	4.98957279282822	5.34657091631181	5.16302701086611	4.86653232059245	4.96736612829237	5.74025921513512	4.52845797641185	5.0287051918376	5.26060465814037	6.04694867190533	5.43300576023898	4.87225791821466	5.73455826842327	4.94022058504529	4.66773482095421	4.6654788875981
+"ARL8A"	9.1517904189474	9.42375894775749	9.62547777113157	9.51720406628266	9.3385230363274	9.50993437179234	9.01773571055787	9.2074941442053	9.19493113727519	9.40482186771506	9.81610100105366	9.36752034838724	9.54841053509067	9.48317248654185	9.44167318975812	9.89540422205362	9.42375894775749	9.80400757275815	9.26994954805777	9.35211393700688	9.42375894775749
+"ARL8B"	8.80497268710026	8.93216175057655	8.24753378351826	8.58079044518038	9.34683268902845	7.61242496421286	8.08509555508711	8.8934113503145	8.52470558605513	9.51940586598357	8.94021362785	9.24811150459399	8.37610025487018	7.93230679802252	8.29166739833206	9.47760456628591	8.99437713463268	9.24445925671906	9.0650957712722	9.32239741829017	9.57611482663265
+"ARL9"	5.37563925741965	5.54839301792468	5.83489135196075	5.51636774985209	5.67189166162869	5.35542111489402	5.12328074766314	5.49455938230173	5.66381190228779	5.72260313566317	5.17529492223814	5.80145580565902	5.69669404216442	5.27337894855624	6.03943724017426	5.73124899934678	5.57890272367528	5.68131203094561	5.43691260253204	5.91263947336268	5.87159150853914
+"ARMC1"	9.18512656439312	9.47643749962946	9.50513301333462	9.48995577820618	9.83775742137675	8.64887388300328	8.63056471656478	9.01491242904419	9.40463368054663	9.66745612726478	9.66454804197381	9.7727790087012	9.17423810484279	8.62729562070683	9.23749492511439	9.97751976681083	9.35461586280981	10.0055514635054	9.61084994767279	9.31481398022584	9.56334414798631
+"ARMC12"	6.83074525785555	5.71082732119197	6.18078713262501	5.75344366894116	5.72431138520103	5.63130326992903	6.25702200257765	5.7856557025071	5.89478727681077	5.57152749696463	6.00399379739853	5.7881384178222	5.79484862190047	5.9983059085025	5.9622050327034	5.91298477380162	5.87177605983302	5.58200855397257	5.89145376643625	5.15631448999526	5.5941733389914
+"ARMC2"	4.23636170125157	4.85708377979789	4.8207800434969	4.61552486600255	4.66590638809884	4.05064466191101	4.20285995091645	4.46112140361782	4.5492876404652	4.34057268666813	4.62365296120403	4.02646758632422	4.12540346246115	4.13054653766052	4.30457125996965	4.21183532261088	4.35581546344527	4.4453861966897	4.34377853314483	4.23636170125157	4.31113445819728
+"ARMC3"	5.50174077158255	4.29558678892697	4.45961340979231	4.37861465438916	4.21745890445571	3.99321485246642	4.3542283574299	4.36478319225659	4.51406733975341	4.50472199239096	5.2272095405193	4.40473913557904	4.35601274283148	4.49657951411271	4.80993129098795	4.52912644755857	4.41155107004893	4.1680669128486	4.67868816725827	4.55787161397949	4.44513905779915
+"ARMC5"	7.72016585859236	7.50141201551386	7.80919065104355	7.80919065104355	7.59138127015027	7.98730349834859	8.3880001649548	7.75673571017481	7.81565119071814	7.86443285905578	7.76796923356713	7.83122207555584	8.04527123489004	7.90572264582007	7.70009494501853	7.63282411695185	7.85764975648319	7.65985707761917	8.04633025183135	7.62272929284325	7.89388453761402
+"ARMC6"	7.73129123873044	7.74953290674762	8.05505732148588	7.86193980605479	7.61822909023556	8.44144232197972	8.6184961308386	7.72081459314236	8.02874803781717	8.02449585163698	7.537346551571	7.91406571608329	7.94279034146507	8.17446398502592	7.7648242594127	7.56358107708267	7.88064134677342	7.56579195844196	7.96693621853757	8.00415349239903	7.86289298337766
+"ARMC7"	5.44931360360037	5.23389961059546	5.53339025279126	5.17500477940841	5.36724102242157	5.61250319928735	5.47073410068411	5.04749584271725	5.0966443821727	5.55605393823226	5.28859863258545	5.14079915860737	5.40684180881207	5.58383668719116	5.20857221460662	5.41271535520329	5.39602557700236	5.51076514007396	5.5079979927067	5.32430982114282	5.36724102242157
+"ARMC8"	6.17117319865876	6.67345258194772	7.35174073519583	6.44006840239997	7.73417699470372	6.41276551496984	5.62807909063224	6.68606825066674	6.83707776732787	7.20346614286036	6.42716678958973	7.0038208925016	6.51082105447024	5.98783759898502	6.92688367934133	6.90108417748705	7.00029456080268	7.33693301742795	6.81055633873936	6.95853875002863	7.25104004542166
+"ARMC9"	6.5938539834292	6.93111626578989	7.34637572328935	6.87316214337962	7.36470934363955	6.30981686360574	6.40110466013077	7.06613151800533	7.13094067020515	7.55755612904339	6.5168149276821	7.54165337347852	7.05431537897466	6.5710558508795	7.05253379414564	6.65825147137686	7.19239909001921	7.11769225618792	7.20346614286036	7.6876582584746	7.31836069395371
+"ARMCX1"	8.9197328567216	8.94104196333831	9.10042518595375	9.14972659539313	9.16036514694577	8.58445230006566	8.25134228661924	9.03140699051505	9.13549448545164	9.28823605891513	8.92872151374772	8.93874774530627	8.91297951028731	8.32835986859999	9.09354747938994	8.44692912175989	9.08460342498795	8.91693402367011	8.83036806435993	8.8472909234376	9.00278229271823
+"ARMCX2"	9.62163620587694	9.77916740146961	9.84467305182917	9.71959222504589	9.9064059878201	9.18347280839416	9.18604559221776	9.62997898224734	9.70236158609541	9.93350686516326	9.44608853149784	9.64837107605744	9.64826596832893	9.50155004887202	9.70893018977129	9.61086036924139	9.80417892896282	9.67703864409755	9.83863898210642	10.00361108534	10.0809488314767
+"ARMCX3"	7.84496219222284	8.09537438247468	8.32175078244068	8.08529526452985	8.33769587178254	7.30528573700104	7.18252269337609	7.94553120387496	8.02146595457675	8.13355715712014	8.17161078424779	7.98584171689265	8.17988222944586	7.5442127696479	8.09856564718358	7.95674455415297	8.27626733542233	8.32929486682126	8.05336043185425	8.11034343545337	8.36759747678359
+"ARMCX4"	6.00072269500862	7.04152799790328	7.26692326661618	5.92998838179108	6.96789879167617	6.41007201584956	5.09968504896777	6.44318824906899	5.5416937103325	6.52840177181571	7.15270902549605	6.93503541132401	5.67073173164403	6.10103885937554	5.36713959978496	6.35906635018297	6.69245476036679	6.91782994403086	5.85228610485741	6.3549318906918	6.70014042790734
+"ARMCX5"	6.05907124980907	6.67048889741101	7.37308995364602	5.88137967607625	7.68386042619833	6.90237709266814	5.26822284471788	6.6014751490746	6.09153906721672	7.12745797762284	6.55267459844409	7.21941797814586	5.82648687307589	5.89161940822438	5.44199890885811	6.88090057057744	6.61717009592706	7.21064114035893	6.3529480854789	6.9027883027115	6.80216727796997
+"ARMCX5-GPRASP2"	6.84278708768708	7.20338348002251	7.59232644085332	7.14254242915121	7.43964517176661	6.97048177751911	7.1100810326869	7.19364430745277	7.45056729180988	7.31291558336356	6.51228537080255	7.09499433748723	7.22042604149625	7.04803229916953	7.70195582051674	7.05431537897466	6.97847583204394	7.3504363517608	7.39074356684088	7.80586006433634	7.29577942610024
+"ARMH1"	4.81524384778559	3.46658009146719	4.1063441127913	3.62838111384719	3.27480223568095	3.13505345725992	3.32193949936772	3.73827990898662	3.35940265239082	3.51076707907876	3.75845024794459	3.54656857811002	3.49907232928224	2.97774827645486	3.06817911561067	3.93668319481726	3.37006775605406	3.57360955926029	3.40232039811388	3.45661367165513	3.84847634263104
+"ARMH3"	5.77136542759382	5.74394304334101	5.11058540901873	5.28511959879731	5.55640029730953	5.66707961824788	5.7912976990734	5.95384353162103	5.59012233332702	5.71903761460249	5.64644444909643	5.64644444909643	5.25275192921058	5.17564315714274	5.23424214277033	5.9625932978782	5.72168146324746	5.59027599178477	5.60410685997801	5.95125846945539	5.62735506388359
+"ARMH4"	6.19043302235998	6.22146854650811	6.6589492760908	5.99644823632037	6.52813120898041	5.90128774070951	6.37609629607745	6.29392038508267	6.77969628744514	6.09074454410307	6.08184609924628	6.17098897193117	6.6045872038719	6.13902911073606	6.49153960546966	5.77303076291563	6.43385941483037	6.22190769525937	6.1571532506784	6.45503460161264	6.41808331564451
+"ARMT1"	7.21593645395553	7.53574211518965	7.65007547044171	7.61415304766483	7.6993182520835	6.66564236087126	6.21080811941854	7.05063092344796	8.10029513012696	7.36754836065324	7.19270539772748	7.2492482299726	7.73482533809523	6.82356259937673	8.22515871057806	7.38524943965407	7.5510836959813	7.53525220030055	7.74165884182859	7.38166759451448	7.78537230194691
+"ARNILA"	6.24969306788037	6.11768383085943	6.10544964578714	6.44881278468013	6.33467281548338	6.24309747981118	6.4340742245457	6.05489754793461	6.7821942806881	6.36820938422663	6.06450758968808	6.2577011206115	6.21247307760161	6.59199730727181	6.53144270485175	6.14069418080225	6.39693672262384	6.00678133444628	6.22528175453793	6.12158752074905	6.32457201696125
+"ARNT"	8.21137250821233	7.69544839141492	6.84345483960313	7.10432210512067	6.86848324194602	8.02979865821171	7.5714363974429	7.31034377569606	7.01628374380571	7.19729126607422	7.47535650846403	7.08061435334777	7.11498688866361	7.16682047765634	7.05380273675	6.93074046680477	7.26461730206056	7.82732715716519	7.00820099511298	7.15762045208741	6.47605282601707
+"ARNT2"	10.3135829359509	10.4768729166322	10.7120449703136	10.557704066995	10.549271360253	10.4521244428721	10.5369944413965	10.5946832959192	10.8852289229758	10.5227406026833	10.2896194937102	10.3590459228676	10.4645026201755	10.3976975868698	10.5542437736695	9.87515108923883	10.5044388984708	10.2877743973134	10.3652102906211	10.7405573757566	10.5823871498685
+"ARNT2-DT"	4.42764879401721	4.53296401287528	4.40827564418163	4.49488379668388	4.35201788586978	4.83664959636558	4.74396609795108	4.42506020952689	4.43208147288914	4.63253313673621	4.59453940211186	4.63974432873293	4.78009379404254	4.56342041473688	4.25050916516959	4.60465654018261	4.49168354140502	4.62503776596183	4.64185724771056	4.41651358168743	4.49008176145483
+"ARPC2"	9.65913678700587	9.65610667914718	9.6829845651155	9.6098693251929	9.89629084914005	9.39387396880944	9.03655028423542	9.63458737723655	9.84291320801219	9.65259988984528	9.52578051251456	9.48088747872846	9.9196027371844	9.56855620562713	10.0943772957367	9.32689896631092	9.73750869985727	9.482553077535	9.4950879043632	9.71686588850368	9.81634587268666
+"ARPC3"	4.99169548668545	4.94321205468316	5.09122390903668	5.12199577793477	4.42750200777649	5.39256889886875	5.41342050401678	5.12333297474493	5.20784489782227	4.8550926904715	5.32029798829614	5.03591568462392	5.32973438543338	4.9757057643836	5.61092752218928	5.14530741346651	5.18962829959974	4.74801091336244	5.37063674679908	4.7792758166317	5.08641595358268
+"ARPC4"	8.06087792262233	7.75000972872294	8.19727377448697	7.82313207408259	8.02060192440143	7.66042350291519	7.80080667507714	7.67476917215921	7.914725104489	8.19378808059428	7.9222654051288	8.08650683809384	7.77294399024135	7.6546929133255	7.72489717056608	8.20869935782236	7.82470277575227	7.92128411973059	7.87304224188598	8.60383597262668	8.13881884570189
+"ARPC5"	8.46142779270392	8.14486761765166	7.54558728254455	7.54490312249393	8.03109488832686	7.67294575404865	7.57628901082039	8.14466411641667	7.66909712586355	7.86831863774171	8.26104105392261	7.93358444762214	7.53247621091232	7.46978709505108	7.70786055957114	8.71028145438011	7.67818207698051	8.94985596236996	7.99846711185349	7.97267168332152	7.99835627277461
+"ARPC5L"	7.89544679822352	8.64129974523578	9.16696310786506	8.42246184310639	9.0717029807512	8.31710859042989	7.47390644241588	8.27177891655283	9.01892842105904	8.97911314850766	8.18050729164035	8.74243547335482	8.71301335574831	7.98547019073604	9.07586105308439	7.96009834692136	8.69704877699073	8.6629285644799	8.60464780934489	8.74209715402642	8.80227061207799
+"ARPIN"	6.78789204348661	7.04945422494004	6.92782515766526	6.76648215844116	6.41715984688249	6.93938387572772	7.83279178917101	6.88794787751089	7.15487574627197	7.30312760372692	7.03331725814575	7.08291145088163	7.23330193031609	7.3249667006831	7.04486194694976	6.88575105841658	7.05993103478989	6.55148654849785	7.0839875246391	7.22834604028377	6.82037537957465
+"ARPP19"	9.05288437801412	9.80751810884925	9.80295951647194	9.23367769649711	10.1206410256971	8.63074311347859	9.00291349095421	9.99694164229508	9.67271149906327	10.0872271728577	9.55517954704221	10.2569707090521	8.87018373244495	8.7461414612445	9.4463096299181	9.7697553710839	9.83714713725317	9.93551307278361	9.76005685678925	9.85795103670498	10.0898036837763
+"ARPP21"	3.67110376636835	4.35312935329268	4.73702800609335	3.77660647986961	5.4831810137014	3.33917866615507	3.28893225648007	4.61416218527299	4.99860751708029	5.07031816322058	3.64492944478318	5.69531212510315	3.82118492002595	3.86603031119012	4.08760134636187	4.37565793557514	5.31550362588598	4.94910238471019	4.4700005389361	5.33258462780037	5.54398256888754
+"ARR3"	6.68311749990322	6.69788000210891	6.58574203955142	6.78331224141729	6.68764110355981	6.85388579505802	6.7270288487989	6.47660419994811	6.78753198898427	6.85117090922359	6.47428842775992	6.7123877921266	6.85451018024561	6.78856895542638	6.97743929250071	6.66799157812764	6.90088753695352	6.49060085042859	6.86097537135554	6.4972540487943	6.86764250248335
+"ARRB1"	8.12031811208951	7.26621984091849	7.25222013052136	7.54613993852378	7.15367432031124	7.8784420177777	7.65825516579003	7.12305091036587	7.11516856506284	7.51009055087066	7.63962812685145	6.80312210189881	7.15608473544169	7.57315248043515	6.95842140633631	7.1093433758961	6.85052086422712	7.75152499657107	7.28575755752964	7.02771038350416	6.8418195694563
+"ARRB2"	9.19425799220914	8.83367661096608	8.75394177807316	8.90840415361417	8.92629199440359	8.46715245020598	9.12247117965483	8.99848739944998	9.01942744290416	9.26061123863953	8.89705851709663	9.13849183744668	9.07751939793552	9.16112031020948	8.95979332418397	8.98712883564169	9.20357223768551	8.95349864128538	9.46106342194356	9.55733483003401	9.4276858749812
+"ARRDC1"	7.51837322967844	7.45315819235739	7.70213258476671	7.04595771581697	7.32069459781919	7.56181107530698	7.1454631158198	7.17189326348289	6.92001746794673	7.21529212118744	7.22647704765919	7.15292992977709	7.33065000968807	7.58053145175499	7.14808687329021	6.85842731288527	7.13635936990663	7.05900319648142	7.46386277676828	7.43312262663662	7.37628332680593
+"ARRDC1-AS1"	7.34059975230069	7.31112212511218	7.71600523601459	7.69175200308427	7.30473823056652	8.02559274349261	8.04118290361992	7.54851217015125	7.61286468280945	7.61265034176549	7.74127747269695	7.64444774267022	7.69551945116139	7.94828658348855	7.53258768876061	7.56327510614898	7.65653891675568	7.53798274114319	7.63161488568906	7.69845882998868	7.48135187037411
+"ARRDC2"	9.0367425139032	8.59546803420415	8.20343620740219	8.81846118407948	8.29432915790452	10.4994302144186	9.09153914438144	8.41667257496592	8.47826578179398	8.43137844744631	8.92236094059149	8.35262338034003	8.93631787799811	9.33734901729357	8.72216669464177	9.17279994479539	8.493974352326	9.67542435772246	8.69235652776849	8.08738515665774	8.47126949788546
+"ARRDC3"	5.49698165570831	5.59146772411423	5.52812852987463	5.53738181675111	5.64133257612773	5.64890387957777	5.35591065209648	6.22398759312019	5.31376139577149	4.67942879089662	6.30997109772858	5.79367470319426	5.1575960881706	5.05777192464208	5.88768994549123	6.59307173521642	5.82199635602155	6.23243279479937	6.06756283303742	5.32173157596409	5.50044541885373
+"ARRDC3-AS1"	5.6166423935945	5.74532041328099	5.66527197731348	5.70531315420691	5.68379445071635	5.74629269731548	5.66364258846794	5.68392947071264	5.6897811234891	5.71677429512087	5.52253844799177	5.69188266495783	5.7363944217475	5.78972395718874	5.67993994677221	5.87725672712588	5.67993994677221	5.37522421249729	5.60989277792092	5.78866394107385	5.67993994677221
+"ARRDC4"	9.35181388760548	8.11178859124344	7.84684267568628	7.14787283952984	7.44826228389678	7.30507418034551	7.51487876625731	7.80741841375911	7.01402065696344	6.73825039436429	9.75797254488439	7.48508552624918	7.19239890358766	7.77848158198644	7.28237256169955	9.23188322849841	7.26462232149215	7.95846301655663	7.8819397660129	7.2477849265298	7.49400236929056
+"ARSA"	7.64424375706763	7.15600789466185	7.18223790261739	7.16784734939127	6.80489964560689	7.62118743874218	7.4818549201305	6.99504323848822	6.94530171977908	7.09369224688792	6.71788374741835	6.88529468214266	7.13198609518998	7.20821398432658	6.63808427267982	7.55424530100734	7.12944468479235	7.53048371673671	7.05158807081304	7.13198609518998	7.06812029850377
+"ARSB"	4.79031494558662	5.04212962391868	4.3832891168993	4.75719257903617	4.56207306015012	4.82255418563632	5.16901715487308	4.78837781227319	4.47850514327176	4.64319779366325	4.91019417166297	4.69116959701282	4.99144244422384	4.47454579952752	4.61525103601083	4.91849785623153	4.80196904324748	4.65971619145799	4.56623126514795	4.65304482550985	4.72833860520308
+"ARSD"	6.9853723385266	7.16505959979026	6.68826202596649	6.48223994099943	6.63074750319	5.9769304207939	6.25034112318562	6.63013949616293	6.19038022975706	6.82075606994744	7.051249604305	6.69051357099973	6.05059539046596	6.13667939873703	5.37281245078424	6.84035630078398	6.31259171968184	6.60656108641884	6.27225131441596	6.67952895456118	6.37846377409019
+"ARSF"	6.34367350742238	7.0140584015415	6.48051204760527	6.6478724318653	6.52390070170171	6.50533389897823	7.38479894373795	6.68568658832211	6.41835831675987	6.38573795579578	6.36369624214651	6.7661601137513	6.48369813632887	6.77402789488273	6.59654276531583	6.52496995532406	6.58733463232868	6.41708444830338	6.70389866319484	6.83236469371306	6.43386099774061
+"ARSI"	5.63282737911643	5.60723511232054	5.64288925287252	5.67855961462717	5.26632599881775	5.62026245843484	5.74500751579352	5.61318578959784	5.47021160254986	5.60450796798113	5.45316596876618	5.76023780811394	5.68914598722181	5.74340023184733	5.20103833693895	5.45495853530562	5.50503937532515	5.59846071157176	5.44156031039824	5.83127893085894	5.53264785421497
+"ARSJ"	3.79873665547331	3.92400899458774	3.6761058764544	3.82325691228331	3.76223301890008	3.88217333657518	3.73229185905954	3.99038124591684	3.85107546743509	3.67856421149338	3.74065317864654	3.53542626916043	3.74880235113019	4.05071062889205	3.82103162756531	3.85917551796198	3.81304310971496	3.8359036535491	3.75989700257553	3.71783143796995	3.81658266283419
+"ARSK"	6.93456534876867	6.64037765540587	7.06839454264401	7.48551901593439	7.9415583562858	8.3734800892663	6.671203382867	7.30497045751977	7.73846980075724	7.46825096151531	6.79882855444861	7.26753727294413	7.32155382349049	7.18782623243186	7.49991415355676	6.23230725993744	7.26160449129031	7.25159667403806	7.44190156010465	7.16908045464702	6.97083143968876
+"ARSL"	5.48266086605237	5.54188552568129	5.63702450455015	5.36245217135415	5.68519644295041	5.3110372201818	5.70797084477352	5.33853103959405	5.55781044360634	5.44393881180527	5.67162563329951	5.0878646357794	5.47280691040231	5.82399112175793	5.42390187097963	5.08383697139816	5.40900925687927	5.34636362885637	5.37800687735141	5.14354523190308	5.14440518419373
+"ART1"	4.82999831823327	4.77436689093686	4.82260700473822	4.56352494392349	4.62043055985811	4.45170920874808	4.68486407266425	4.66972577189394	4.67539474450294	4.94750883337176	4.86011694420181	4.55351067743488	4.93779438031075	4.66778781487641	4.72274107406023	4.73780036800828	4.90459840666365	4.78081823065734	4.93726047749789	4.42653821583409	4.84922691449158
+"ART3"	8.22667101388207	7.16281255123941	7.14544865350116	6.9566557178561	7.58485041873476	6.69843787212502	6.73307805335817	7.47036969392557	8.46468327730619	7.49812395141217	7.66951241714095	7.58568634702512	7.0713067750144	7.07425851334954	7.4868818036353	8.15962231748117	7.87974870813544	7.6065843156428	7.15835106112871	7.15631159415833	7.57495340184433
+"ART4"	3.15504785224346	3.45169589010832	3.56799231599889	3.22114055623851	3.47690490573325	3.71643082261267	3.62417910452499	3.2051084658382	3.38596276931719	3.38596276931719	3.17904753494648	3.38596276931719	3.35325042925953	3.40649270814079	3.1398708992889	3.32882532478963	3.29925105299005	3.51029147455187	3.38870379308552	3.59217842720463	3.52346501313476
+"ART5"	6.65330437242338	6.79439331259848	6.82530570067242	7.00707388019123	6.80266382406229	6.86794787925862	7.08479926626259	6.79978390631474	7.00611440883761	6.75084188420133	6.60847731322271	6.97495658706471	6.89840892450652	7.03246400784316	6.92063837119347	6.73986165003684	6.76111045989144	6.68117355862527	6.82319376288588	6.81945103642011	7.04665775293221
+"ARTN"	6.00015377065357	6.03313694842669	6.15655158427192	6.12355292427533	6.03105185904622	6.46083637008841	6.84072685669453	6.32685776373198	6.04416911352328	6.24736583885678	5.7683566616744	6.04287316647548	6.22190595050423	6.39001294590683	6.13840898034473	6.13263467330742	6.05381738720458	5.83454820501899	5.99024229292352	6.0827933886725	6.19347809120023
+"ARV1"	8.4240919760611	8.75739906054141	8.62889508928631	8.69574992550655	9.06715444953727	8.11753605715695	8.25331294862905	8.59650964406582	8.71362894478854	8.74329884923825	8.73503994910436	8.28285625284187	8.80860436812525	8.28849489357148	8.68746421848049	8.77050837743948	8.55022062228886	8.79745690899598	8.73244392533422	8.79736407507676	8.75073947845279
+"ARVCF"	8.34997738666371	8.37605640820627	8.42925025957622	8.32410090081778	8.12945190699218	8.61077710153115	8.71316219663947	8.3417640358251	8.30439599501021	8.35561564069508	8.21103589674863	8.282140688596	8.42732962866472	8.71728325781966	8.29049926246929	8.2070318879079	8.28977136891249	7.92846244526655	8.33792544573302	8.37984031381333	8.31594025683926
+"ARX"	8.32708292156067	8.34156654839722	9.10750275969008	8.45325750829164	8.61280329588255	7.4280823096609	7.93819913991589	8.38892945824964	8.25852501611048	8.541766815743	8.60268156489769	8.65579137341011	8.67793958021935	8.49237484564507	8.20939369702638	8.02425086751933	8.4134523299024	8.1325728227135	8.04782417064833	8.79638163142774	8.72177112500813
+"ASAH1"	9.99750736328642	10.0002098708659	9.06783765650193	9.36407019962896	9.71976596386605	8.9886191365751	9.58519415395491	9.96313418923892	9.43289395221142	10.001036194774	10.4378764930625	9.72696846651019	9.25313248734174	9.32842304226262	9.42150610517422	10.1407715213655	9.96022167256911	10.1588178122092	9.89405695035452	9.76621026239319	9.8875269469244
+"ASAP1"	6.74018029542136	6.74492543894951	6.84414274945841	6.96916617372194	7.33553053505824	8.14155116127388	7.24734582829853	6.90364619278114	6.94882993818222	6.8618063393183	6.43646045905709	6.89617176753849	7.1339491560883	6.94506080804017	7.13258962742904	6.1219052678922	6.69543251542985	6.47205958931347	6.6055115040698	6.9687878682111	6.68525168888194
+"ASAP1-IT2"	6.09270520826841	6.18105279264137	5.91905047095782	6.01174581841832	5.60402897583098	6.60475894887113	6.03771702047181	6.5445361736851	5.94347749257532	5.29550320823929	5.89592973161603	5.82909208021101	6.38795581236027	6.59050120799982	6.65787777607351	5.27346057450021	6.06833975794897	5.69121232139446	5.98545814665014	5.73935718690661	5.61734303236592
+"ASAP2"	8.51703725767207	8.96490260786992	8.78848921127374	8.36574882724973	8.80768127718453	8.41806292825509	8.4044152198247	8.34766150027906	8.54116140575057	8.43594577409819	8.66697398139467	8.09533329839989	8.4988408289251	8.51102377118637	8.81522962199617	8.5617566818553	8.64185907388291	8.37153675660187	8.23598670465402	8.54389993530167	8.38638701274115
+"ASB1"	5.76551521623318	6.22454755801005	6.43879495608686	6.24842923259024	6.45267279063951	6.27579559538007	6.22480512442398	6.01350874964656	6.22894975166585	6.28184393977494	6.66485975826106	6.24841515421274	6.26025281128502	6.20138050711518	6.22089065066301	6.29480943589674	6.22154051437646	6.88646286884496	5.97039906464901	6.32870155545736	6.43540059795405
+"ASB10"	4.07135883401859	4.26497966711581	4.20952853517856	4.29114408988511	4.05723004878998	4.16196162841012	4.81057676065111	4.0439222418988	3.91090365020388	4.1830177390727	4.09717889759019	4.16196162841012	4.06742772549564	4.25314500891525	4.09821610692073	3.71553886372575	4.16196162841012	3.91336393021173	4.34634699370544	4.02337951891026	4.06374879553798
+"ASB11"	3.71253523576077	3.7770780719185	3.73243687369099	3.87836021078154	3.80709826130188	3.73802469335802	4.01941931876788	3.69208576780988	3.71031846596918	4.02022697923331	3.62589837570552	3.79130273758362	3.92147249048741	3.82279514423814	4.10341289105559	3.72045428580675	3.84054160309622	3.85480789388388	3.82671954275858	3.91563630459352	3.8248072885688
+"ASB12"	6.66169562882496	7.07173462885747	6.84475667435491	6.9719340632432	7.10323974979566	6.93546769900657	6.91614111123954	6.8378401779501	7.02290829477137	6.81237685194496	6.56877225451115	6.9914161972261	6.97551822287914	7.39570208120588	6.91441395432767	6.69857816127711	7.04674322284398	6.68215780083677	6.76826527863109	6.91237168792912	6.81096761934394
+"ASB13"	8.35473518983563	8.28162517315244	8.41098183052099	7.93964476963103	8.55994997115154	8.10577144348264	8.27332858843045	7.87618244722526	8.47718301415449	8.53852082139327	8.2418044053387	8.27985137721393	8.25561952411123	8.6154011206073	8.24870962705506	8.32287122958076	8.28302889255618	8.52928954122077	7.9138134373959	8.82818894754637	8.45174508532724
+"ASB14"	4.51147624205038	5.01484178299458	4.60373281596479	4.78211473892604	4.82273089888578	4.96315176709173	4.79965119820235	4.79814767992321	4.80039763865991	4.78964053798203	4.64647484864023	4.74857330974879	4.93702615098736	4.80520626873126	5.04664722993532	4.92935103990879	4.93101083458754	4.33980037036933	4.63803735808375	4.69159486221408	4.9034525925291
+"ASB15"	4.37028322189479	4.45603936485963	4.43909394829247	4.61439396138264	4.36654246514881	4.4913966433077	4.36654246514881	4.48320956020932	4.58965409634049	4.4639965426867	4.2723720177498	4.67298014722052	4.4639965426867	4.38081760031486	4.49625729701974	4.4947045065771	4.45152334985559	4.3608675691356	4.45960252200166	4.4722899832545	4.48823752089343
+"ASB16"	7.11848751362834	7.2707832698528	6.95269671188767	7.45243872309539	7.42983529731631	7.11308719622922	7.15881084948925	7.09494481723372	7.39162537459813	7.15945256512089	7.17881409605652	7.18787688036441	7.28592465363058	7.41331773878956	7.26907253982794	7.39233584367227	7.44719030509528	6.84290414013324	7.05619569641144	7.16119950607686	7.28193154751261
+"ASB16-AS1"	5.07698514461186	4.66154360712296	4.52605450250393	4.42508438900311	4.49273865462349	4.17455416052321	4.46854288499174	4.5963511277615	4.30872908545074	4.537699768961	5.19454425569363	4.25640009222771	4.29980480672133	4.57512919121534	4.18479598305631	5.20700034761011	4.38130696253557	4.82507265209232	4.54699817571997	4.5323602245504	4.88789770424971
+"ASB17"	3.21512448515171	3.22395789270902	3.26267207146602	3.47903214806554	3.50683984187771	3.28023201892959	3.20370341539584	3.26267207146602	3.30042176578684	3.18195704418498	3.08132093351448	3.33736542609256	3.2556255290097	3.25660180573825	3.27779177569477	3.26267207146602	3.29850949478892	3.06484499891819	3.03336471088322	3.42023076735074	3.30233086188762
+"ASB4"	5.60465081107986	5.31560787295187	5.40889045034831	5.50265786167448	5.29152293574713	5.05690905020677	5.24739995206842	5.54561418415641	5.4984050986585	5.09553694413873	5.20079333250772	5.16907274694011	5.80391540807804	5.82835419056944	5.6717982213138	5.31348901755493	5.2823818053869	5.11437995757441	5.67461059957541	5.16987290642215	5.16911040848074
+"ASB5"	3.09293605454185	3.26703225033437	3.3024339101175	3.27825317066933	3.29434312081753	3.42472625979938	2.89944075775786	3.24484785259179	3.19252788411931	3.22551540911454	3.24340431549932	3.19252788411931	3.20657309946844	3.58226483021072	3.22825666094955	2.97427250281873	3.16645615123003	3.2653586429045	3.02269780203343	3.14769391663653	2.99245884840149
+"ASB6"	7.98901317593942	7.50419530704306	7.55418555071828	7.61099004316217	7.07622076377251	7.76404641641753	7.7804195461696	7.52061413291271	7.79117823682227	7.56049035560333	7.57259732387369	7.35592929390203	7.76601721979927	7.6476327888134	7.85831511105248	7.34594376245177	7.45322298224708	7.75528217439868	7.43749273297538	7.58106728190472	7.47296553773144
+"ASB7"	7.2596887710881	7.04273815140612	7.50055538433767	6.97908817199878	7.29870881621626	6.97041262352001	7.02589299556855	6.67171940692625	7.35987759733418	6.95188581996302	6.85761113644847	6.46590749646852	6.98876521079264	6.99142250786935	7.22704443361305	7.23814331739436	6.81226142224969	7.52600145962413	6.92214436766811	7.03581235542635	6.53026860475708
+"ASB8"	8.10176426666133	8.09468648577985	7.94523733604655	7.84400326926953	8.00163195139104	7.62046652709166	7.69557878501328	8.00208841567859	8.24667035859384	8.132175883892	7.98390095307687	8.18030660100336	7.81017235268934	7.75684180208253	8.05810208085254	8.15059798643111	7.98547019073603	7.64756451427889	8.06647881995345	8.30863109690192	8.10535578233971
+"ASB9"	3.63437891293369	3.69834232215837	3.78720755278428	3.69215004232924	3.8561115931027	3.67025018605237	3.63489290760429	3.72421426249425	3.73585992579264	3.86679375870796	3.85020891489784	3.73909916163477	3.76448050657743	3.93660977306891	3.80683569802711	3.64526727806371	3.64726677660797	3.52935011181499	3.66096683792301	3.63437891293369	3.72439035060971
+"ASCC1"	8.85254981411335	8.56226576823146	8.07786567096515	8.49492061516583	8.29617953213251	7.77387947645774	8.04750394135145	8.4332682809362	7.88786328027671	8.27318347151299	9.0193509897163	8.3565317383669	7.79843715163444	7.86215865095267	7.71634699152112	9.12335536187987	8.1796280874645	9.01554281566624	8.25151085120094	8.28245150804797	7.86034657738565
+"ASCC2"	7.65212056576441	7.01458975723403	7.34360607902577	6.76211650260801	6.80389944575215	7.56665480188354	7.69388933291109	7.0464202055242	6.62079198384228	6.69186138210774	7.08363971458252	6.58970694339944	7.01987811021538	7.3306713535414	6.68210172662254	7.0266569863129	6.39179165419303	7.14811459631983	6.74827363124815	7.05928361364588	6.71646552913267
+"ASCC3"	7.68506038501062	7.41307518069449	7.04643292651608	7.28397298292548	7.30006416722137	6.88519852359702	7.25797453390811	7.71494685391501	7.35244105427433	6.99302959391479	7.45204643358829	7.30006416722137	7.01157878516376	6.93365359938148	7.30006416722137	7.59802804187065	7.1325275182803	7.76400133943003	7.10711517688235	7.3380623938843	7.17023060059741
+"ASCL1"	8.90428715626546	9.14098118343391	8.78613647885548	9.15531058164826	8.91702460725242	8.78901010351032	9.72085978821149	9.32539242923284	9.22534625355019	8.48299416476176	9.59782847847096	8.78982966519707	8.91702460725242	9.4366624862274	9.25335546853484	8.08088700625765	8.68967322315528	8.87552290451679	8.90318298189631	8.59920519867552	7.66261040776073
+"ASCL2"	5.44216632379867	5.15771137379289	5.29383277262914	5.35412348430084	4.88249319106427	5.56369197919879	6.18764758842353	5.03410887787385	5.55705438174084	5.39645526831915	5.23260785417073	5.34115092470163	5.43420347175382	5.63637039225889	5.53838667458512	5.34704499598471	5.14876522799563	5.10450395523384	5.44479075326271	5.24428209136019	5.40384404413432
+"ASCL3"	5.20980304002968	5.38469737834468	5.52030032042286	5.55144907159537	5.22247192757496	5.58740375047675	5.66924473452819	5.43877926989148	5.2826325681287	5.34608111783505	5.09092866457668	5.46113446495934	5.53147984400162	5.7662511083396	5.46808092326951	5.4205152597258	5.7267831311043	4.85973544700943	5.39325148893663	5.37111570241997	5.60860774219303
+"ASCL5"	4.35256138879843	4.4752576076541	4.49920001152824	4.52577697602477	4.28053883833211	4.8675967167291	4.70726600338523	4.11448240640827	4.77121505639931	4.58873442680122	4.01130189931381	4.5488082454187	4.52116975248424	4.79338010087434	4.49497619638741	4.43408994149559	4.34634699370544	4.56746636460178	4.49497619638741	4.6746623366484	4.49497619638741
+"ASF1A"	7.97571798702707	7.75518577901309	6.70366299681452	7.62324788385792	7.79793407052507	6.71262837292895	7.71930991206613	8.1527511220089	7.69802548731518	7.65681512880292	7.82325453906769	7.15850292503521	7.48348123760534	7.15463896968782	7.54035019087201	7.65839233802085	7.35608301227713	7.80093946936561	7.76408404948394	7.56337913713066	7.35501567428356
+"ASGR1"	6.21702644266925	6.11675104139077	6.74486601004791	6.43950898486466	6.7583401773034	6.46315361314424	6.33960168273	6.19878831172273	6.82671981965746	6.52341664898516	5.99615646032345	6.25461785680847	6.83726799764772	6.06240716717172	6.67204991238566	5.95910915075545	6.50840462997964	6.18147351023272	6.24186473416165	6.70185457618087	6.51962291302388
+"ASGR2"	6.36109753028838	6.17319992150158	6.2442061070524	6.59277145064594	6.45966591191857	6.33063613192606	6.57211625616677	6.37801667574737	6.73476477670752	6.4747584063105	6.02012954545097	6.35952085112788	6.50475218536817	6.3814224151692	6.55518217275827	6.00197265904685	6.46605739787999	6.10782966494781	6.36351397131103	6.22097028595886	6.42955973830883
+"ASH1L"	6.68552153186903	6.62875171226049	7.33363492108074	7.0077050895054	8.13811287758838	7.43075121695123	6.84894777595309	6.90652109273023	6.80808432020896	7.52991728795533	6.61224040328872	7.24763500047521	6.98644759740201	6.70808271721001	6.48395909178189	6.78176108243939	6.86495250188366	8.06381994140286	6.72629189138158	7.28579682962735	6.90956611738201
+"ASH1L-AS1"	6.60495275352204	6.90299518279533	7.13199894823032	6.75590635578423	6.95492778728414	6.4404083368784	6.62631376775327	6.87436452806188	6.93707490389487	7.08013415351413	7.40148692503567	7.07995369260697	6.76626419290589	6.55411703628513	6.99113413595297	7.23074173199982	6.89671397529145	6.95973751965882	6.72334886083523	6.95492778728414	6.69226395010683
+"ASH2L"	8.86598592972722	8.9229918638865	9.13015008774941	8.65573442313861	9.29318226665133	9.01786511108102	8.48809656958446	8.8487158222906	8.97090509204699	9.22984195828714	9.08257591002321	9.14618534752529	8.54581381023957	8.71389378448218	8.81018842040418	9.14968277326924	9.0803281431883	9.19157189839235	8.68598537420858	9.37297544172866	9.20718139272814
+"ASIC1"	7.21992953008403	7.48372860812283	8.02408410729774	7.32371232732776	7.36769053384122	7.79367769658202	7.57590058159566	7.23320619156973	7.32469416240778	7.50848361701715	7.4912664954177	7.46467121199867	7.50581938315354	7.43428725220007	7.3677049542681	7.36902198596627	7.51119178798357	7.754821812906	7.17544675965936	7.39951997045414	7.38054291190939
+"ASIC2"	7.67927397577166	8.18384952572144	8.98436806152482	8.0160464063007	8.50219261546333	8.66719565265183	8.12482611778073	8.1818153337186	8.12759696004958	8.46312990857108	7.74343304190543	8.41566626513314	8.40424658574939	8.4039510769611	8.19361416749723	7.9154201715316	8.48117790690976	8.12242829646909	7.99791093401172	8.53125780389606	8.4186771845843
+"ASIC3"	6.84174371610569	6.94915077137678	7.64170039388093	6.79696877046717	6.90237709266814	7.94810022461549	6.74430023130684	6.75897283656083	6.17236444018955	6.97410079899813	7.51795771368532	7.07086267038656	6.70639802510952	6.87673936716377	6.07741427973362	7.06502600297901	6.82053288325051	7.17462036597081	6.61944259973862	6.32949763904425	6.77592494488363
+"ASIC4"	6.09854308742969	5.93761484023227	6.29153820066363	6.42028031788856	5.83905589539441	6.56377270222657	6.88388170087791	6.46715695668264	6.43359171278265	6.14912347475183	6.02951125393528	6.18877401133116	6.48754580859113	6.72384446927894	6.42423714119486	5.73539219940475	6.31612122912014	5.79739898125377	6.10020273918169	6.24517689166073	6.20233353381894
+"ASIC5"	3.85152921287852	4.07378767496875	4.17841924281601	4.07024050639781	4.02626146688224	4.43866616211549	4.03457726321925	3.78601097738308	3.89242389821071	3.94072075935272	3.78600748706871	3.97219002509684	3.98008207975582	4.17650745544257	4.00469379059507	4.00469379059507	4.09254329527232	3.79789751493351	4.09852326052217	4.10393178835499	4.17543065209099
+"ASIP"	4.53372669499599	4.90903501382187	5.10183494347759	4.66027831022071	4.98151806766848	4.93779438031075	5.16737400760995	4.66616002902873	5.175897224079	4.73150203762978	4.66206496764999	4.90764980879615	4.84766943758875	4.99773608550182	5.01728460890796	5.06401388528848	4.88494775453598	4.68303805452752	4.93779438031075	5.00470855930049	4.92564012737742
+"ASLP1"	5.11698034798056	5.52848362336965	5.19417435825495	5.26662013008489	5.21514056813248	5.44061319479109	5.31937442696374	5.13920338770163	5.45045258884313	5.17859720530187	5.41104836735136	5.3252603479945	5.43141547223631	5.30414423973762	5.18112861800287	5.73698049280375	5.44435253807453	5.12655430118613	5.20603794264532	5.32071829790352	5.3252603479945
+"ASNSD1"	8.81416131220846	8.61976875807014	8.36489097654592	8.66552870922903	8.68286599184268	7.93727240211691	8.24660256710675	8.75049354816308	8.86680503581396	8.97479206053944	8.39167672628193	8.67671176284841	8.65396346550611	8.33778389737541	8.81014988453696	9.01228335495686	8.60035271131799	8.79106850496852	8.79180297941013	8.81464481113553	8.78877711961771
+"ASPA"	9.8304401072289	10.1338820609546	8.86081037321407	9.56049797557822	8.63835333863732	8.29002139828583	8.71982713749991	8.86722808675169	8.22632696230927	8.38385564296079	10.8194711599314	9.00973022336546	8.3107078546826	9.0314561260152	7.85831511105248	11.2428800082211	9.08023482898853	10.9117583607046	9.49780144755376	8.18699113405402	9.31764393275756
+"ASPDH"	6.85373957782937	7.36059609873702	7.52460548496296	7.35535256694383	7.36508448339228	7.72331188124364	7.3077444247307	7.31771292915922	7.40080086625642	7.7297017312889	6.9782908573611	7.48862409607639	7.71026479184559	7.57315248043515	7.29407376874638	7.07574042073991	7.36258486041146	7.29423932486654	7.59800546053787	7.71496057874406	7.57393311679836
+"ASPG"	6.02209310564417	6.3098424401849	6.25419385215954	6.40382767411492	6.30098170628342	6.4444946415877	6.62020560229683	6.10397959677382	6.4734738432151	6.14180120780465	6.14180120780465	6.303897164781	6.46770392497779	6.88446328538064	6.303897164781	6.20845544249572	6.37252330182872	6.03173012098639	6.11373271751392	6.24082288713894	6.46070030756282
+"ASPH"	9.80413669313989	9.70470900153271	8.86436665579024	9.53249905478569	9.44741107012636	7.46986059852643	9.96647523036185	10.4086652337447	9.47386686411113	9.57780001478706	9.69043331865472	9.61846717884398	8.7359169459	8.59427676687895	8.84412966925307	8.88979528269829	9.36174835712656	9.41258010741342	9.56870215558154	9.16916216700001	8.93427054486125
+"ASPHD1"	10.0662896647736	10.4636559763208	10.6587279921449	10.4542810997955	10.6395781043652	11.1190897576511	10.5754620028163	10.0852276386417	10.5603657944019	10.4542810997955	10.0762386480099	10.3412120943101	10.3966626237016	10.4479345220854	10.1610916160982	10.4981616874404	10.4235419044804	10.4026092716129	10.3045821536881	10.7200267755468	10.7309027630762
+"ASPHD2"	7.89369978844994	8.42043060717921	8.73464565487439	8.63318391921089	8.47634032629476	8.8814766503662	7.40681396454242	8.13925062973205	8.76281475940898	8.317507993639	7.5087807943088	8.25093292850848	8.46407597444402	8.27115401240658	8.75132696027576	7.40458545312609	8.35410758470553	8.01710757660637	8.07070268148054	8.15590283265343	8.27690863848978
+"ASPM"	3.17060261855207	2.98586326033229	3.41630459864801	3.27420848537286	3.2588562825902	3.30522534100079	3.1674647635438	3.32301396448989	3.27094328691682	3.09694988263227	2.95129729918989	3.07499867126584	3.20562905966124	3.41525216610918	2.97114281113807	2.91419174836181	3.03238302803395	3.19792878786543	3.08188719006535	3.2825956593185	3.05381665250352
+"ASPSCR1"	7.31768327169291	7.09519633618701	7.67776615601936	7.05887662521892	7.4669812363481	7.48173946504311	7.2162683847229	6.98779523603836	6.96586820169598	7.42590831804391	7.46149642160799	7.30727185700481	7.0841975260916	7.18771333760833	6.86514611500985	7.54469608558806	7.38375713047241	7.56249985241772	7.3959894111834	7.63084101440394	7.31768327169291
+"ASRGL1"	9.90055614805356	9.64867315646512	9.28259744989875	9.57702806361613	9.21721719231616	9.27550054353601	10.1640981201482	10.1327399247044	9.49154471890228	9.24467431505426	9.07836877855234	9.2457935817556	9.31946408183254	9.75617154292459	9.86577018671914	8.91961718469059	9.24673423750039	9.05103131350817	9.43522415012401	9.25431633866155	9.37183457567297
+"ASS1"	8.82169154079801	8.51331455350689	9.21396569149124	8.44221722154352	9.09835578723316	8.31166015008841	8.32614087343118	8.37195881828525	8.68224455867184	9.43158354914949	8.86173455398621	8.7110928505784	8.38910498474021	8.40941688916107	7.94958552524642	8.34623458734294	8.59851842109126	8.63114168839283	8.93498848574288	10.3858689956244	8.71153975242586
+"ASTE1"	6.26438082275647	6.20633554814586	6.79057644801859	6.02270007057492	6.16985913536693	6.31124296972563	5.9721574541798	6.00988468964154	5.82157613032635	6.01358705537185	6.62357028246259	5.91851601266901	6.04141067042926	6.36592036150412	5.97649372947534	6.76328303765224	5.71450491515588	6.88365492346553	6.11605169494131	6.33409178680801	5.95786291074683
+"ASTN1"	9.81324663491413	10.2425590349394	10.1393764524498	9.9530208679315	10.4503234815201	9.25448071669086	9.79202025566673	9.91986559642248	10.1849316441511	10.1436432184589	9.94874701410431	10.2894550745244	9.76455624194358	9.51094564565808	9.41017405727669	9.50518560832946	10.345003280165	9.87063734855858	9.73151576258138	10.4572191283338	10.2280790382583
+"ASTN2"	7.29906123768747	7.2835195044466	7.42913358730774	7.10836965085043	7.43786873882266	6.99447494976159	7.15626591903653	7.47269369861166	7.04336900232024	7.31571531771924	7.51432812313597	7.368822662794	7.08265437299645	6.65141099399052	7.14520194168478	7.19374096767801	7.43107326189339	7.3768048464213	6.73616652315424	7.29888569966019	7.35892197537741
+"ASXL1"	7.59130004162326	7.42988650586575	8.00992948308849	7.48622120963561	7.48622120963561	8.04794744245142	7.29677306560249	7.60753004161441	7.28330511267827	6.92585791167694	7.66879183659271	7.05003722720938	7.71259717657416	7.56459725994559	7.86070332733189	7.59275496659464	7.50743702761553	7.92232161720096	7.27754649055631	6.86228933394743	7.23617605038579
+"ASXL2"	7.18318616802837	6.48569308641619	5.36810417418645	6.46398528697007	6.54353795112967	5.5792109432027	6.61805722879135	6.4016778062654	6.4370660657472	6.61956019976762	6.67561626697295	6.27047256506841	6.23104267591393	6.22401547123835	5.93443342243436	6.57579467412394	6.63600788065871	6.88344950821914	6.55926144382765	6.54943427127155	6.52229573687702
+"ASXL3"	7.1574362585749	8.27844114517838	8.45639651262205	7.74279989066453	8.02886408949075	7.49000404162754	6.79449350745074	7.682870365319	7.79398710509429	7.49238273790525	7.51623866736366	7.63574584293335	7.4087887526889	7.40086362092453	7.75895878938048	7.31353471197135	7.71304845803568	7.98958312376583	7.56623645892854	7.82086097045661	7.55433466061758
+"ASZ1"	2.97043354475344	3.01281455107283	2.91556185058079	2.77649640071239	2.91902083377584	3.16235628403335	2.87210211504855	2.82550066031469	2.97026706599283	2.91419174836181	2.83598335846908	2.93522625287514	2.90714520590548	3.19613740539147	2.89936696603108	2.8771764688527	2.98117639828979	2.96322052353651	2.93856011135122	2.80877023580399	2.82602603067863
+"ATAD1"	7.25264245919033	7.95808505356621	7.96230969501846	7.52584066270417	8.59266457913491	7.43217630150759	7.41520249190208	7.58798706507076	7.88522484846039	8.28748360042717	7.8558837357683	8.22824278838667	7.47501091625324	7.02821668443166	7.68882787230972	8.02443600540096	7.81382040893872	8.19572452696398	7.49541565284001	8.476017272895	7.86973976927004
+"ATAD2"	6.39112784119928	6.28262816835655	6.19859469848605	6.3843444806776	6.68424492286344	6.50726558008146	5.98954032850633	7.08129277105189	6.61485569292379	6.45354509144689	6.1461253271945	6.79939911649176	6.19679008456777	6.18272429545404	6.13744473391907	5.90784809461628	7.16859486189977	6.65820206766762	6.44131079422786	6.46454971391242	6.06657616169187
+"ATAD2B"	6.65414223183455	6.35873067226865	6.26065213410191	6.02851623297299	6.13922436859426	6.20783257308311	5.97410222677007	6.620029295736	6.20110692186293	5.4269424420047	6.62256646174742	6.10175554097609	5.86701806794066	6.12874048537129	5.89641244620449	6.8118786904598	6.16625421708886	6.85768998120036	6.25672051387963	6.26392126229081	5.77704965215434
+"ATAD3A"	7.51784773566635	7.48160878013042	7.83845285064547	7.58470798410987	7.51468030876884	8.08787655574238	7.88456994179849	7.37473380031082	7.49983120806004	7.58470798410987	7.59864102001664	7.5225360068402	7.54583912648351	7.81966471004045	7.50505517933802	7.47497783926412	7.5273386483443	7.58832845719931	7.80835347276152	7.71428753661285	7.57701929146105
+"ATAD3B"	8.20739129234815	8.3072828874635	8.34953614812101	8.34045758483853	8.17066410878439	8.74232197381401	8.62680905593225	8.3733813861345	8.29805891468268	8.37765852189549	8.36710607817112	8.22926973546372	8.42917353375369	8.69044007674968	8.21126578333558	8.11019803426403	8.31674347102576	8.21575574545927	8.38086397434646	8.34411166336217	8.2429380961191
+"ATAD5"	5.23992394155337	5.44061319479109	5.17292835584559	5.39576317200021	5.32844711406721	5.38791150370027	5.27036637715647	5.44327881172181	5.42296803009771	5.32703456915341	5.40217468436373	5.58947388059253	5.47660597826595	5.32252893926107	5.4268654289356	5.3800168698404	5.3489623443944	5.19164074334958	5.39029085386567	5.35546239344798	5.3516225865112
+"ATCAY"	10.0737070196555	10.6240493162203	11.18765574585	10.7494031712706	10.9638596439133	10.9639712865358	10.5962713660571	10.4481771492043	11.0131273830006	10.8659977790774	10.1338127700892	10.7395988117633	10.7679605068943	10.6686571558884	10.476704185323	10.0369579752364	10.8489533135443	10.213436305313	10.4925475584744	11.1120936695999	10.808648818085
+"ATE1"	7.40622668440264	8.09266133379458	7.8617174074621	7.81827281328063	8.17993951765032	7.80796761537023	7.18467284295878	7.82182510445464	7.99350231553782	7.81820974501908	7.93040092197736	7.85320279256514	7.81137574698461	7.59365595341281	8.08829879321499	8.12385546086882	8.04363734750035	8.2917669021319	7.84748421347279	7.58622685221076	7.97463316115334
+"ATF1"	5.09652615939135	4.62878376586319	4.24608413468159	5.11763652650376	4.4800396407027	4.01173076339999	4.23194656616929	4.66064231428954	4.59529115793507	4.42356229343923	4.76121658615754	4.10120132418457	4.97411449465531	4.43751745890659	5.15575536551386	4.61284354163675	4.05862617832578	5.21311327611518	4.45006976967862	4.27813103120029	4.7648220427781
+"ATF2"	6.89734568928673	7.00537898847188	6.41519840170536	6.84570520000093	7.4051115785773	6.73373599007806	6.86476641066852	7.32339309659328	6.98713050202263	7.37231257905901	6.77267021094113	7.38507904381255	6.47041984704298	6.31074709526342	6.46654086522946	7.14976438270849	7.0177286789369	7.50560218013173	7.02568735872703	7.0839875246391	7.49050950100555
+"ATF3"	7.40541097757755	7.59221277410919	6.63741451389172	6.78157684711959	6.67742410014465	8.74196711213775	6.44109730585764	9.0194702963188	6.08187882796529	6.51407117461461	7.96949214431753	7.36162908342018	6.815385397274	6.37943940527876	6.75949410332754	8.46865460732615	7.3622160947739	8.29234712272534	7.18049172842258	6.36021440169577	6.54902256490172
+"ATF5"	7.73406932501192	7.83281386523088	7.72557993780698	7.80525472077375	7.64529855162129	7.90735532585302	8.04298921425968	7.65861232696504	7.81565119071814	7.89269008665131	7.62785106221317	7.81792926901303	7.9931400362506	7.97804025238702	7.82559757126825	7.75921786143479	7.84285507517632	7.52193736015284	7.88604459658596	7.72370436428134	7.81959856506742
+"ATF6"	9.22997792754466	8.99126921998935	8.77580166385088	8.63701884563089	9.03605955917572	8.54175764373511	8.6598003949782	9.17198397819591	8.77706633259374	8.81391145048077	8.90889564852904	9.02396927245475	8.1192606577094	8.58153887766377	8.47656057199705	9.43126242915298	8.95081338711034	9.1987523678941	8.80331756406497	9.14875877262144	8.71326699663644
+"ATF7"	7.15461861458533	6.98713050202263	6.26571182900333	6.23207661183319	6.12453777839576	6.30997109772858	6.2195087376057	6.44067483123101	6.17102607354078	6.60777308838608	7.21561914483944	6.52137605192044	5.45996634713541	6.06184922665971	5.92617405934303	7.28026766298019	6.13033717751525	6.81477528236767	6.28693970426502	6.14615893848105	6.42606874268096
+"ATF7IP"	9.72558988702731	9.79923638334975	9.36659192246034	9.90529933161699	8.93363845405977	9.71460538059643	9.72322442113917	9.84033992704784	9.84318141607288	9.49585742459614	9.83161324533645	9.83364592040643	9.88555758666706	9.74925662330817	10.0441855677948	9.40615076247055	9.80591456202715	9.05260456814459	9.75453557909829	9.34963614381413	9.41484404694293
+"ATF7IP2"	5.85276006959188	6.20366144701491	6.84496929924392	5.77003141367336	6.61985547408514	5.66153174083063	5.17980290789844	5.91650110363158	5.98528752957942	6.67821111572499	5.70740233523798	6.393863694814	5.76378976502691	5.30786197322313	5.40761806684253	6.01576916876403	6.16922066830812	6.32690612099919	5.83386501228829	6.4040592994363	6.081020618929
+"ATG10"	6.16972730090742	5.58669554772698	5.27257926532122	4.53102514752011	5.8046063198732	5.09329812659505	5.37746597340059	5.52390654453619	5.26610280975498	5.60525575485078	5.41074542372736	6.00601840777042	4.71814254304429	4.13674101787127	4.83448884574446	6.32995944772914	5.66128153398499	5.45643258908485	5.46264105841321	6.09771761296288	4.86563290538396
+"ATG101"	8.01789669060388	7.58718806224193	8.06909532771712	7.83740703320715	8.02903694885925	8.19939968071153	8.12155805133146	7.86822934177755	8.01851486486844	8.08888960490088	7.75683021743125	8.04051894851274	7.96514379316689	7.73380712419846	8.17948314206264	8.11348958569716	7.79476503072079	8.37247805757981	7.99606403045849	8.23886658613054	8.01578085094881
+"ATG12"	9.06458606157979	9.05261204230198	8.7488457582826	9.49168196958387	8.86092921950853	8.65908974015117	8.79738879377988	9.18718629954049	9.37929738352518	9.24277174461854	9.42513374549715	9.32743419197797	9.36245923780912	8.95476774530345	9.64030090442538	9.39223485802155	9.35263499968488	8.6613697822387	9.55595411907346	9.01295091628459	9.1669917711386
+"ATG13"	8.03991005516917	7.93557615885734	7.64477769511273	7.84178206602085	8.03949526123146	7.76736427423278	7.54740583879914	7.97353081503073	7.81228053929447	8.2441480923083	8.10252359646708	8.31673957862429	7.62387313332983	7.65870700826577	7.69399268419294	8.44076757448572	8.21181506906654	8.5146562528934	7.79475831342213	8.2713449133628	8.19455248617123
+"ATG14"	7.88458179901724	8.30244508966372	8.03318497026543	7.37728779483434	7.99954930880956	7.62945786430787	7.48537237426909	7.45182877782116	7.44287064586203	7.74212896466014	8.43942815391155	7.75143228888835	7.30551320097966	7.82386107936988	7.60877807162865	8.88143883161938	7.69691819376462	8.49603718985522	7.61808548700264	7.81956635380566	7.60336657808404
+"ATG16L1"	5.39355297048882	5.89776628070869	6.37589777547252	5.64778786003062	5.63979576403558	5.85497327654938	6.04840122620434	5.32614307974268	5.72591200886081	5.58544776238154	5.86977046156689	5.67439830356072	5.8845379096209	5.59094166872081	5.76960558762677	5.36899107804428	5.6382316821058	6.25771728225726	5.73843186413752	5.55890411844152	5.86739112174165
+"ATG16L2"	7.55268829738458	7.52024579028993	7.56475336059143	7.10153247316105	7.18971805785543	7.6201656303995	6.9698477227623	6.95976992894136	7.15348100857573	7.20857478226522	7.61719141213755	7.03176854234661	7.35879286329758	7.67371257081383	7.36957013575404	7.344680969551	7.07644849111803	7.63636203500979	7.53843983447644	7.28413707979232	7.31490976755998
+"ATG2A"	8.74683325904245	8.41102736883363	9.00076232289983	7.89098122955025	8.4373213602307	8.78398416167241	8.35252174973283	8.1524365882423	8.09818464200039	8.3144221416445	8.46282998327656	8.13430611064829	8.11329466194641	8.52193248195143	7.69684262197315	8.31235466914867	8.14539570340965	8.53513125955064	7.97107409328659	8.40941688916107	8.14896773214294
+"ATG2B"	7.13367687747351	6.92943224272227	6.86037819219703	6.4355440128533	7.3344470937957	6.7078313059369	6.14117216891384	6.75510490274361	6.71926996379441	7.14156146319423	6.95730114632246	7.15355672751614	6.42545767794789	6.40220405043551	6.40943484562756	7.4666950359025	7.11166799371131	7.48372775445262	6.83724004131309	7.3482285562597	7.33099116312251
+"ATG3"	9.11716342367013	9.23199308112009	8.72506906508739	9.07305295325768	9.1352301055523	8.99836092908543	8.83922004219273	9.3303491812193	8.83683963488127	9.03969103833535	9.62802859272956	8.90042687493497	8.97599452007824	8.84953593280435	8.971987768665	9.72500979043538	8.74334068281173	9.83706621971891	9.1355226076745	8.98626578676511	9.04662710359578
+"ATG4A"	7.83296242638135	7.52782788938041	7.3895329608497	7.16549036850808	7.24436539579128	7.48820561486877	7.42597047547479	7.44236715946596	7.32069459781919	7.27469492796874	7.40948481876431	7.23982421963116	7.30250261396288	7.35851889730122	7.58471048219204	7.73801339620623	7.40471074692606	7.60737091823704	7.42153271829973	7.41937874123029	7.49354540812302
+"ATG4B"	8.78445198497859	8.42527137193433	8.63683593917013	8.54370391304473	8.29324021215915	9.21883708828167	8.26842880289134	8.67345689145547	8.63851383794586	8.76559310669115	8.60513569198963	8.67705172811046	8.72839745261359	8.76159778969226	8.82478120424116	8.53705939966843	8.73920327677967	8.90791635604689	8.79044917470659	8.57024035606234	8.69120148397877
+"ATG4C"	8.48763971645404	8.28565735136671	8.06625672491892	8.33631506019832	8.05311559268014	8.12504226835498	7.96954135821332	7.76354213965086	7.83160021289236	7.50719436485336	8.75588118523917	7.84271730451264	8.0662156526559	8.15942170231153	8.24579423508747	9.45512356157396	7.86466465370438	9.13139434865484	8.28158082983591	7.79631111952332	7.76683665536737
+"ATG5"	6.95258591243735	6.87305644999268	5.89701947615552	6.80923625407871	7.35449038134481	6.07849426775191	6.38586673202084	6.94831451286402	6.95214801934067	7.46373297958403	6.79273900463933	7.09045168470629	6.73894507296137	6.33571552327933	6.82064880964144	7.36763306249143	6.96459656500584	7.20904874364672	7.22907211854033	7.58604683743424	7.50649463174798
+"ATG7"	5.28609087205588	4.97007728487428	5.16285770064309	4.43773440996023	4.54751080496412	4.84982304801974	4.82491506246826	4.6749166827925	4.28089924821859	4.18961302360471	4.63777032845883	4.74324411394248	4.16665771189139	4.39800199564262	4.23582984546232	5.18355104254727	4.44248341081878	4.87110793017884	4.43549619795269	4.72765485288295	4.56692449444841
+"ATG9B"	5.76837047654147	5.89708195618327	6.34858770263994	5.91985778475612	5.92852305503723	5.98431823377213	5.89708195618327	5.76785750054374	6.03826962138129	5.92319983294476	5.55016202030872	5.92545741663483	5.89708195618327	6.09909758299189	5.91423351962887	5.62841029667115	5.88630972215457	5.62021366391492	5.89708195618327	6.22619955772884	5.89475456773707
+"ATIC"	9.09585088851601	8.87201673612481	8.65755665788678	8.54228251022937	8.86555344739961	8.46665983139009	8.51369413691395	8.91408517011286	8.7799154525333	9.06269318963215	9.01230320641737	8.77872305134797	8.43483484716626	8.45575942912473	8.54829500893063	8.97961279841242	8.77911405196075	9.37784051522619	8.72044853610828	8.91117855771709	8.70244126481314
+"ATL1"	9.23430229920795	10.2152422723012	10.3654670675269	10.0392967753975	10.5122174784698	9.5864938753018	8.88224454997406	10.0479946875532	10.2644150490844	10.5298294939119	9.93952612587328	10.3989837388734	9.76106044037663	9.35794093963207	10.1411274517284	10.1786355747366	10.3187811998905	10.2800364720458	10.1126870075211	10.438723811654	10.378721591567
+"ATL2"	5.452113832622	6.07447242365776	5.75662984078946	5.83712853486768	6.36308467560523	4.84953636689528	5.85651687680951	6.18787719784464	6.11899628294076	6.53685909156068	5.71913209043245	6.48296206467388	5.81516916223752	5.01963265271822	5.22695869127669	5.92625571206076	6.35331305656877	6.15508091779491	6.11452766143934	6.51735712048382	6.49804472660575
+"ATL3"	9.72955021690985	9.13423089087578	9.05796831321258	9.0362972401063	8.94069243268687	9.21146890187549	9.70221491476114	9.41927771698352	9.15435657047332	8.63930682613316	9.45729488311316	8.82883592527602	8.96063140771596	9.26918700903879	9.18804371043721	9.6009458096988	8.72850599350594	9.5824120954969	9.32516716588941	8.97779599392751	8.95435260004836
+"ATM"	7.29380156464076	7.39680826470739	5.82454273228639	7.13433985012003	6.17631424474668	6.70579919937004	6.96950926500998	7.33910975262828	7.25287140607181	7.76449087926103	7.69971400665109	6.69439311279293	7.2325367102459	7.15536316849395	7.28631757684676	7.6873473128463	7.28770301046739	7.3405471319586	7.2271044502552	6.88587188457928	6.90106476613398
+"ATN1"	9.54899138285691	9.41881437042818	9.25873963116605	9.96781048932378	9.22784504521011	9.26230015394214	9.86330345344561	9.56629870860331	9.05135081351761	9.53037923037497	9.56664936100518	9.87677114060804	9.88048133825601	9.581626405673	8.86694000223699	9.09830451263405	9.56893600823971	8.99329099811692	9.66277933086021	9.24340399791519	9.45644468697619
+"ATOH1"	4.754247770867	4.73929058938409	4.77716707679332	5.02911786542874	4.782400391756	5.39632088477833	5.49582560092608	4.80300899254687	5.01753576551116	4.86261425008223	4.79424045630651	4.81521397313154	4.87761944577768	5.12875771481544	4.94901116184228	4.55592163084107	4.67770472921828	4.7361413982437	4.86261425008223	4.86261425008223	4.80163319210549
+"ATOH7"	5.18170989604961	5.60734987343101	6.89571802903552	5.51927468805391	6.14731392965648	5.3007702002497	5.13670551202078	5.47424567851514	5.66844412359043	5.62491615671774	5.24765431631223	5.55051943414047	5.43141547223631	5.47238404453623	5.27354211374827	5.19798191722044	5.58149924278408	5.28475232824578	5.59755032404104	6.00969193971295	5.60147798410686
+"ATOH8"	8.54328917587119	6.91074404402546	6.87459344740424	7.37640703112722	6.76524846165126	8.07562884186439	7.99576548147216	7.23019587874814	7.410859496982	7.33710307521721	7.05552025995978	7.11204645104017	7.57101165770732	7.75018397522657	7.50444199067423	6.87235968181216	7.11874157301133	6.92243510351139	7.50217010610125	7.1719557724356	7.03494374637809
+"ATOSA"	6.78206430457926	6.89731353284482	7.0343711249282	6.42132498139177	6.66450535411368	5.75757703573011	6.88166947179069	5.00774054133083	6.41769219802037	6.76717883056655	6.71955404869417	6.7069030349904	6.75524953808979	6.47269282950567	6.64831175185461	6.73349214962653	6.83518083555336	7.38250235989784	6.98461363929026	6.79637287616027	6.11428985703948
+"ATOSB"	8.67661066696166	8.76037999724103	8.93527062253545	8.72520953907612	8.89686431916491	9.01696860732312	9.42118947774188	8.66189958194306	8.72957260258001	8.72396550135741	8.60632502226213	8.84631007136227	8.75107922006821	9.03794160278532	8.69863325356402	8.68338305790556	8.6726216131903	8.54124171277591	8.69095014308814	8.74885228760654	8.7291821134707
+"ATOX1"	9.66206561274607	9.13716745382239	9.4463462619138	8.98754119349578	9.26456864979498	9.30755380582497	9.03407772326546	9.13507522535331	8.96809213780543	9.30281606849839	9.45949464700438	9.40161206579894	8.8338100491578	8.86332919216702	8.97650403746768	9.79574039338467	8.89383387996819	9.7043259611582	9.24401938793305	9.573027534439	9.21065174821524
+"ATP10A"	8.62885836439242	7.73965641724372	7.75078782703737	7.60781430392875	7.57469008437019	7.86058230009582	8.42636281309337	7.28701357557597	7.75078782703737	7.65792987596555	7.75808504420575	6.75412049419295	7.87329555734171	8.6714363401259	7.72796207711049	7.55412124597268	7.91316963940212	7.67099174927873	7.64438371543693	7.79720693145513	7.33355814089838
+"ATP10B"	8.18345323939494	7.97157870932847	7.70953021367831	7.54326329760508	7.79671323829579	7.8503134985791	7.28335590071228	8.08767931719975	6.7132019077491	6.76222421397424	8.4809591175334	7.20772210870747	6.82999843520547	8.10057922692959	7.01335778042829	9.04630208330434	7.25502137889326	8.91752210135998	7.43778257759975	6.80190290366883	7.44811766052312
+"ATP10D"	8.39846447814031	7.31845205946524	7.16893888085936	7.41388112668261	7.22457089716403	7.05587928323335	7.41388112668261	7.90773081180386	7.41388112668261	7.47065123500549	7.60886470354951	6.963235500072	7.35331328399645	7.44041413551635	7.41388112668261	7.19266828464967	7.50037520319263	7.69293420256879	7.50075104968087	7.6091948158243	7.20046006702698
+"ATP11A"	8.49381080668347	8.04292654868315	7.94504249364287	8.19746085323021	7.72828608686449	7.97959230958673	7.9096713766572	7.93695432827121	7.59138439577838	7.2210707769658	8.74887921202235	7.56234205606634	8.05010904745335	7.935551918309	7.9140380194774	8.99420159923123	7.59337714520137	9.34041153341534	7.67152740880538	7.08728376117226	7.90138895933929
+"ATP11A-AS1"	3.3767933714173	3.33647544858716	3.27799043347117	3.1651048009367	3.06384421218889	3.48215919557214	3.42222757703484	3.30826908130354	3.34524723019015	3.54544694451228	3.53267569479347	3.41470740660462	3.3767933714173	3.3404377108901	3.49295525015105	3.31045027998218	3.36833822286072	3.22686799561459	3.39466415280945	3.54205766005817	3.18304793403755
+"ATP11B"	5.28252318147334	5.01528832354518	4.50317127724626	5.18770888663514	4.85867835110306	5.37158077613811	5.12746650795198	5.41592631555415	5.28252318147334	5.4145793980353	5.53846794237186	5.60863323282284	5.32860399381457	5.27054901321791	5.20224737680438	5.51213299601388	5.45259419653466	5.25873903561018	5.39698782817235	5.23332641842981	5.26744986977686
+"ATP11C"	7.7242480432244	6.93572905058988	6.69739941447314	6.95886848869636	6.70287168057161	7.63314957101135	7.18295954017114	7.51949714109775	6.49123682424411	6.43388731333381	7.46246948600856	6.55490384599866	7.06323741025157	7.17936106086608	6.94909444555246	7.478758633503	6.58402958827998	7.71618519254011	6.83481061412328	6.74343497453386	6.49804472660575
+"ATP12A"	5.75313862188651	5.91679840697725	5.87224960637229	6.10486746836392	5.9462926632874	6.08753553789983	5.97410059793786	5.79484862190047	5.94243561969289	6.14579771446534	5.77123082771509	5.98191475063031	5.9462926632874	6.33705005047826	6.04455873488164	5.9462926632874	6.09495065126455	5.686002624103	5.9061168872568	5.89477565612256	6.32728090466331
+"ATP13A1"	8.25015007321578	7.95010950247551	8.30054397960401	7.95010950247551	8.0320805895126	8.3189469776543	7.82595627321832	7.95541636042167	7.86859987961598	7.91367136627765	7.97178354906077	7.67042305877075	7.79249053361333	8.19475856759309	7.77871473309063	7.85383500645998	7.8918893336908	8.27685376143284	7.87769937133348	8.01744274851543	7.84071934052139
+"ATP13A2"	8.7899079640508	9.02044262150499	9.53482660960245	8.76267918414441	9.56864892737075	9.52200621637519	8.84132817621233	8.82650741783899	8.99336329072974	9.40450007752058	8.78871930870018	9.23906609725783	9.24400298066866	8.71426652729246	8.88940261597869	8.49483715662937	9.23313431630741	9.13817594007644	8.61598114066998	9.78969885995628	9.53805151933894
+"ATP13A3"	7.32065901423329	7.38318881419684	6.40703715761693	6.49371034349052	7.11679251084433	6.21034452206767	7.06973921445535	7.38377749591801	6.81982354153524	7.36320991977251	7.41229541765457	7.4287652344884	6.75494514205104	6.72302204723009	6.42192268620924	7.34371594189027	7.10803097024761	7.23157496783327	6.92161648017518	7.38739080518278	7.43193548112204
+"ATP13A3-DT"	6.22903444274973	6.52066819169955	6.32933997036462	6.78492959976749	6.56597696385262	6.48447969732491	6.21942381016633	6.38059202077602	6.72528498375466	6.60045871792859	6.46740023069993	6.59403847576137	6.48818072428364	6.77246358530426	6.56081621727658	6.2576885098583	6.56784407593916	6.0580826474935	6.56960771404511	6.88636577592369	6.55723168098714
+"ATP13A4"	9.29893610874716	8.75350156105385	8.65976293038722	8.35913467552985	8.15757284745255	7.20587276330071	8.82102953600657	8.56946306760563	8.34617771351853	7.91103797260165	8.83660087634103	8.16134269353849	7.8879683017382	8.40168095009097	8.06872554291986	8.13702225116277	8.11411780795142	8.45363433249832	8.22260749951077	8.21361466201149	7.55626496442881
+"ATP13A4-AS1"	3.63455854172108	3.33670144983492	3.26238269653291	3.30990457198828	3.28703769404833	3.33670144983492	3.46545838785644	3.55116287454113	3.76781215281439	3.49907232928224	3.23260288489295	3.17519156307487	3.20901276928803	3.41466151996431	3.21624578239833	3.40940520623983	3.39284627697415	3.3024339101175	3.30954111890002	3.24103317725717	3.22257304235619
+"ATP13A5"	5.52599590648746	5.46138732103086	5.72536313308772	5.23626260948321	5.31905778819148	5.28032039670066	6.12154531801562	5.43759020318563	5.19500633901019	4.8996459080858	5.19509417125804	5.31147617059846	5.17531102246591	5.71412167754092	5.25954920214895	5.34065085752698	5.25973329033121	5.32770055646612	5.24165512214182	5.02061593858141	4.97823930021819
+"ATP1A1"	10.3557126040823	10.8265159501754	10.9646466277501	10.8280446591364	11.5140213574587	10.8086057268944	9.73217330161134	10.7398661181368	11.1861166055492	11.7526345048366	10.3643377156323	11.6063529586077	10.9017698732227	10.2570727831098	10.8199616975411	10.8233030468907	11.7025869065331	10.9623830513266	10.6785463658869	11.6292018065116	11.7903113685002
+"ATP1A1-AS1"	6.83031592044706	6.71731697215794	6.71731697215794	6.71912744946325	6.38384297747888	6.93811125598975	6.72286408640109	6.50961812653909	6.55430097247171	6.72794027442956	7.17985060995849	6.6715733524379	6.75986651789639	6.93213075551562	6.59258447493501	7.16430349119656	6.67269734697644	6.68406137514256	6.92437187131041	6.38600966233077	6.53036259315506
+"ATP1A2"	11.4239711097487	11.7802992557261	11.0801756419232	11.5458664713116	10.9761727598745	10.0350330949199	12.0735461590593	11.7604896710824	11.4661638363132	11.6641217846529	11.8661676588525	11.5047574654572	11.5178395756707	11.8012689200481	11.3879832019083	10.8122778890062	11.5913916295422	10.9538717170045	11.4796606688241	11.5476776441042	10.7824334131969
+"ATP1A4"	4.07492963538247	4.45351168912953	4.18239039165517	4.25138083428152	4.27207778930665	4.22873773243565	3.94639792403818	4.34227119376949	4.35794210178353	4.74296676405512	4.38119444832239	4.31026266277202	4.42817769734107	4.2586368458954	4.09572577880752	4.2777261584445	4.61457223346035	4.04836813346194	4.40842827475975	4.30989950395447	4.53862748366979
+"ATP1B1"	11.4808918275188	12.5624142663658	12.466346103746	12.5845145750411	12.5819204707184	12.3044387750516	11.0893284131028	12.0576598477062	12.6249853762353	12.8041799029145	12.3995011797422	12.6987494664649	12.7311466550729	12.1221258850138	12.637576717258	12.5675048905029	12.7735097413059	12.9383630265006	12.6153072570011	12.4624891646434	12.9777014474581
+"ATP1B2"	11.0550862386058	11.6018017223626	11.2471370178017	11.4654119968398	10.7907413409159	10.7737477151629	11.8611164634272	11.7156873603219	11.1281805435906	11.2821696023645	11.7534481533867	11.5741126135787	11.6300643618084	11.6520163374107	10.9679779752108	10.82316035321	11.4128528480256	10.6246005483551	11.0020791099105	11.2745668405537	11.0297085989089
+"ATP1B3"	10.2143142148923	10.1262341709279	10.5130286083524	10.4277919229095	10.5123232404213	11.1868549584567	10.0469513657671	10.9618012655747	10.7261828131752	11.1252176624254	9.96822565566786	10.8236374809894	10.8745451276109	10.2395326569149	11.0273467646355	9.84366993694043	11.0658338572601	10.4571468233221	10.7669282917433	10.9311143531556	10.6295186372425
+"ATP1B4"	3.79597798395603	3.62228051603658	3.81002273145042	3.68666126928655	3.82839600111204	3.88749422977497	3.89580639115202	3.57777339569479	3.63894613190332	3.72504129061985	3.50117372901666	3.71968279512175	3.64374320190222	3.44447234927062	3.70782170204269	3.68666126928655	3.5669716569687	3.46037012364547	3.80097379970929	3.73302293352207	3.48784768226794
+"ATP2A1"	5.29607809205183	5.31514886401455	5.47547161189537	5.27402093284165	4.99533826539401	5.7672178386356	5.72808479189815	5.08124421827513	5.30097962000209	5.29274730601974	5.10953132409399	5.32929505499321	5.55424790733577	5.80170906090702	5.39906123186344	5.38006375804957	5.34401387918383	5.04745394227572	5.5164215096548	5.32736503440213	5.27161394428423
+"ATP2A1-AS1"	5.69567724199794	5.34219855945295	5.6935653510432	5.67580019671902	5.35462738009279	5.92204506238693	5.96967980751134	5.54314368992834	5.42900622299514	5.18972619312629	5.08921639519158	5.26578921047264	5.90214597514579	6.11792114332053	5.72819661853945	5.10287886895142	5.32698510174253	5.29109204760985	5.81599138880874	5.54314368992834	5.82482184364973
+"ATP2A2"	10.7167837652024	11.9031601555443	11.9179958628669	11.6475827269696	12.1518074706624	11.1922083027186	11.1577825367626	11.4400318858958	11.8996230387126	12.0183971755266	11.3007911535909	12.0060512193036	11.684033505294	11.0335753354407	11.7020370517964	11.5128610337153	12.0716535609383	11.6985237027771	11.7020370517964	12.1715800161332	12.0984681975799
+"ATP2A3"	4.36339652129772	3.8855982874494	4.20207193680926	3.98690012587075	3.94847753638272	4.38195702000894	5.32296953781289	4.16555667808276	4.50610501375123	4.40271264886573	4.2493817728559	4.18136471809908	4.41340839372124	4.46166034850697	4.2493817728559	3.83427160792729	4.15000249098488	4.0732709202789	4.44997510727786	4.47321990613458	4.26343953892387
+"ATP2B1"	8.84627919965934	9.92685392147301	9.93189676300559	9.7266750168748	10.4476239804697	9.18075864652458	8.46904649883465	9.85070206363853	10.4115030823885	10.5070417909233	9.34145300175828	10.4167210714875	9.50775367109859	9.10741991491811	10.207256848698	9.42512079019253	10.1936376573921	9.62307352319786	9.97785236067633	10.4519109937031	10.2825234139614
+"ATP2B1-AS1"	7.9245660806828	9.23114640198949	9.92803330547248	8.87505127137827	9.36714433836846	8.74994168268919	8.32024168254936	9.02910087460302	8.74069583435496	8.77472268097246	8.91146249663444	9.12818392261312	8.84164001972543	8.49444367808292	8.74330498058246	8.20929310745146	8.56242669035365	8.41263379753553	8.61770856242855	8.98626578676511	8.56215379663342
+"ATP2B2"	7.1640789624607	7.64893223580378	7.09813546266039	7.22281459203172	8.39215178173449	6.30997109772858	6.77462042219946	7.3676349163749	7.33687926276491	8.69371604356589	6.72274138101178	8.85153690454696	6.90654209306578	6.1073283910997	6.60203553695896	7.63873876265416	8.17134992422855	7.20426882883054	7.30243900098011	8.8218693909466	9.18745150930481
+"ATP2B3"	6.78206430457926	7.73119890473174	8.17417710748214	7.67325699728803	8.62839506708754	7.6965365928065	6.93006256552564	7.27531629564358	7.97157572411215	8.02924474489478	7.1021014946154	8.14200304386493	7.89604287577968	7.40228416096529	7.35959763167066	7.01507302014152	8.36480681416225	7.56974161381345	7.56789328731233	8.0815422327932	8.51150778587137
+"ATP2B4"	7.77589013775588	7.41193087758578	6.22528175453793	6.66417127268813	7.32621881271273	6.08421722582982	6.99968970659161	7.77732714398091	6.98442032760267	7.50897505495459	7.06769220551436	7.60302613740812	6.07383814045898	6.13761738088788	6.07854110773496	7.04950474291264	7.15728843446644	6.89200262600433	6.77277473995033	7.33332793037943	7.41226878422168
+"ATP2C1"	7.05448003263167	7.78752303567101	8.04292367079604	7.24812658661146	8.20062082363219	7.29996002968512	6.72309449571205	7.28485983617367	7.13664530990697	7.45816668970186	7.55441793963057	7.25474899631235	7.20874581167499	7.09826208280674	7.51442361658959	7.76853989504387	7.39502846572934	7.98712907229918	7.0939013831203	7.53816308913324	7.37383868819589
+"ATP2C2"	5.3043140754367	5.62943451301054	5.89937959054926	5.41730834648299	5.7091891505595	5.8565777619702	5.44643128172923	5.4269403347199	5.08524344917928	5.52724021966507	4.90593278591756	5.57636362566877	5.62884867755387	5.68185041976532	5.63944904843621	5.62832363922607	5.26613694984802	5.24116374547409	5.31751515221317	5.70953524373681	5.57956121206502
+"ATP2C2-AS1"	5.93354618727945	6.14893618509495	6.02175972903613	6.28184363939601	5.94814016937054	6.60379166730179	6.9378404121178	5.99092174869951	6.14893618509495	6.14893618509495	5.96418394458653	6.18686374544838	6.41176437953327	6.78593113565573	6.22785234709016	6.0268456023735	6.15327971856536	6.04838960416907	6.25902603815358	6.08057171030456	6.18115901924304
+"ATP4A"	5.18783384531182	5.73971809950586	5.80335555663178	5.5537454864177	5.93138028329238	5.99781446365119	5.93343210350885	5.91832253441275	5.81821619778976	5.75363843732224	5.19901932704409	5.92107420991059	5.93018160305506	5.96977136847959	5.94681918439467	5.4534987023414	5.75783164356882	5.34810385551279	5.89090536067027	5.76420595790148	5.61969337949952
+"ATP4B"	3.94147969098237	3.96414387232023	4.10635036804252	4.10480000300492	4.13191715981448	4.32403227175752	4.47904855072763	4.03228000210428	4.04107152055983	3.97557187548942	4.10480000300492	3.91660469063478	4.2841113965104	4.15500710883335	4.26073563930572	4.05839929960506	3.99286012107646	4.10480000300492	4.1406501684265	4.18280033903819	4.17357079804709
+"ATP5F1A"	11.6054754598707	12.0133450821441	11.9536559998635	11.8484027749781	12.5568275391617	11.2406315221189	11.5484017804178	11.8885209551256	12.1121439371848	12.4988732192504	11.7914107394199	12.2710663160714	11.5731849471594	11.3487345816167	11.6572737260713	11.9663800040397	12.1653576004021	12.178929561152	11.8714584448675	12.516837716579	12.3870794288727
+"ATP5F1B"	11.1476027369572	11.5442693404662	11.3801059575523	11.3766757757828	12.1675710958355	10.8671262408393	11.053634094665	11.4135682044367	11.5848814738829	12.2299713839231	11.2772853737459	12.0703521406266	11.4321052399286	10.8594899019662	11.2511900713641	11.8759682691931	11.8488140557698	11.6923813818092	11.4747471858586	12.4009700595326	12.0956865009756
+"ATP5F1C"	10.1900450415279	10.4345780623447	10.1880219509201	10.1502244830767	10.7532146780125	10.0044297241685	9.74482002029015	10.2806663512436	10.5683265047226	10.975826428489	10.2787803782283	10.5910422772837	10.1157947812585	9.74886639600622	10.2493956753644	10.4940994546088	10.3238770496414	10.5489725695239	10.422066346299	10.8436641871617	10.7450457516435
+"ATP5F1D"	8.98510729022235	9.3185028314282	9.70778905624051	9.29152467875036	9.77640351538284	9.13009595317125	9.05745638457764	9.15053603717298	9.2796800467803	9.52550394844338	9.2881718334572	9.5602230193821	9.26714523203852	8.9369458288408	8.94844282456676	9.04991084672958	9.37854438281139	9.61072150012153	9.10322229148835	9.70675905808913	9.41766452687789
+"ATP5F1E"	5.47660723808161	4.88652605488941	4.82369584221677	5.11237642560428	4.60805724735043	5.03067236871882	5.16459664644114	5.11909226828609	5.2391946449705	4.77148505229191	4.74704490633353	4.78479556407822	5.1655846272257	5.26882783301669	6.04997920526772	4.79969933132496	4.23377978527166	4.92640055441958	5.37368009484793	4.87598852855677	4.98381501838152
+"ATP5MC1"	8.63665936803297	9.06137786261413	9.4540709070759	9.02799528935435	9.51823259455909	9.15006499560389	8.87709700885843	8.95981894252002	9.18800573319735	9.69450208919019	9.075587019799	9.4387093346642	9.22099756046186	8.84562704307256	9.14162681512146	9.26834433258395	9.18675463521827	9.33754345750561	9.22738551737295	9.791623603203	9.61310708786166
+"ATP5MC2"	4.59528050777717	4.80207911624352	4.79841689487826	5.01376714105844	5.15017844655864	4.891431597517	5.21545286543417	4.68557458525983	5.00297381126752	4.81746475144983	4.76859209499329	4.98357973852418	4.80514339023213	4.81088137850664	4.85743625833748	4.92524294130155	5.16514269788294	4.9619768991046	5.09091927599181	4.90964240409279	4.68547460848534
+"ATP5MC2P1"	5.0516886194942	5.25657611664352	5.56693925120376	5.61448856417566	5.42896909478518	5.50816853495466	5.93231359811213	5.46778171642488	5.65600510093309	5.54332421264198	5.50816853495466	5.77541865449765	5.75043347109695	5.57483950584677	5.45335529422806	5.54815725376145	5.47705803909584	5.46087739573012	5.69893133254719	5.4635078108731	5.74458289103612
+"ATP5MC3"	9.99418445042544	10.2665706357836	10.361558901642	10.234208950782	10.8914735471565	9.64240662193417	9.70456097109741	10.3098835073656	10.6418637427445	11.2884755132461	10.2912117081177	10.95618125585	10.2423008330687	9.52584695575987	10.2185505556999	10.5018554834964	10.7108915768372	10.7294317072846	10.5518377757147	11.1187193735618	11.0976226728984
+"ATP5ME"	9.50367025457646	9.83309578066388	10.2478793446606	9.93912845312049	9.94250891352906	10.2005550074587	10.1685759610902	9.74761012268175	9.97035354097389	9.94221861866193	10.1211990097261	9.79519007796873	10.0419356705954	9.6739212654235	10.1698005980026	10.0829089916634	9.69697815764971	10.2340834080512	9.97116155050137	9.425378619582	9.94612706241488
+"ATP5MF"	10.6272894931439	10.8213942088578	10.911224871386	10.7491209817691	10.8643162670203	10.167463075242	10.6032126050502	10.6559185025443	10.9126478417216	11.2172406225086	10.7366388443534	10.9599969993961	10.8154522560354	10.3589680850863	10.9329574057975	10.6959527381608	10.8067535513149	10.8154522560354	10.9686196118826	11.0544391956923	11.0083766159971
+"ATP5MG"	8.91367067937399	9.70676301109608	9.7791821968627	9.39360787397517	9.72387449870048	8.84936535086566	8.88765629513105	9.30937841769559	9.61853942278934	9.8407633315052	9.4771696654235	9.81354994733334	9.47222043830204	8.92985854155465	9.62198301022101	9.57846218894639	9.64472570487515	9.70337593208761	9.67973839282387	9.59211246898878	9.76555689320516
+"ATP5MJ"	9.8799961534296	10.2290503254734	10.9873753223346	10.489417887502	10.893256057765	10.0486110017781	10.3753092428765	10.5724127885591	10.955952205315	10.9323101102179	9.91960866649316	10.7245596702832	10.8292880249843	10.1671436052721	10.9852571023353	10.2388963523377	10.744039898687	10.4544886994344	10.8630800767901	10.9406514950089	10.8793966234627
+"ATP5PB"	5.79977406963911	5.89708195618327	6.31878926410991	5.64778786003062	6.33857226123336	5.07408910288391	5.53649915925567	5.89135905192792	5.53881155004697	6.05167037697467	5.84799685597757	5.84896523300819	5.67190898961927	5.56026279158361	5.5555430765996	6.3119441049925	5.48828540109653	6.12354850208646	5.76631150724917	5.9735958417403	5.89734192035182
+"ATP5PD"	10.5991215352384	10.6998307790236	10.8400745351858	10.6447901580299	11.2911310306495	10.2707438893493	10.367715487502	10.5170883092137	10.8845587051748	11.2728846940268	10.5160685246906	10.9743506841057	10.5614141340628	10.2418980142005	10.6764565740017	10.7842192154912	10.7973452526489	10.9187020239111	10.8035917933008	11.2443135392072	11.154392563284
+"ATP5PF"	10.5379730221964	10.6382866884127	10.820371357268	10.5447863930569	10.9476761900108	10.1406631581516	10.6644320547851	10.6641113422488	10.8707641317941	11.0230788514025	10.630748798345	10.7116437751157	10.7936970866582	10.3026225863737	10.7462595114677	10.7720435542241	10.7132690145095	10.8086329229304	10.8470588297994	10.779977047872	10.9226816282467
+"ATP6AP1"	10.0133777505478	10.4160395144596	10.7938191208737	10.2274514009336	10.9436340055657	10.4127179400075	9.43872244463585	10.2992968043481	10.0440747060061	10.8944305747191	10.4031607701899	10.9288821212623	9.98862100383332	9.51552539046703	9.80400312648325	10.8629571453507	10.7817887825557	10.9830460655032	10.1519038076998	11.0500438227923	10.8896172554306
+"ATP6AP1-DT"	8.81321314261467	8.97009056672321	8.71573789309275	8.87249295715656	8.9063436772857	8.32056321804223	8.68584147885507	8.71923506948177	8.75092681581864	8.8222158505817	9.12610910903864	8.77150966182454	8.77229547526202	8.73478124380894	8.71972947142246	9.5327972538474	8.80451502514415	9.0189457388984	8.70178103481816	8.9106928108478	8.94141495227888
+"ATP6AP1L"	6.68491770965107	7.11911249225946	7.8025482981386	6.7429326319935	7.56823839686746	6.95482136747765	7.30799742155053	7.75260306136449	6.49198010687101	6.73357358013252	7.20551064192715	7.27902808149626	6.91789175920476	7.38663378597492	6.99138617950515	7.86526927839263	6.9755285166001	7.24198742152971	7.01066202578768	7.2756041542597	6.83875143198962
+"ATP6AP2"	9.88060326376342	10.2484996218227	9.68288111377126	10.0643374089642	10.7453603877137	9.21310420874894	9.41102913804705	9.90354477089111	10.0084846720295	10.8598085134224	10.3105648475395	10.8194184967973	9.8444645306191	9.02925718645345	9.61883368063548	10.3385047685221	10.4370478841163	10.4545462662099	10.1086505934662	10.6650851415334	10.729454867452
+"ATP6V0A1"	8.95867801033958	9.07797584918656	8.7393687591296	8.9461810646131	9.63887790766592	8.83938429554729	8.85150458885132	9.12696602987437	9.05425848607106	10.1355315330319	9.12696602987437	9.97161422787885	8.59588068706427	8.34922425743021	8.3768308377864	9.77720143534498	9.62538518685311	9.27681800102478	9.2048113261326	10.2733963489787	10.2448734373936
+"ATP6V0A2"	5.96323522939145	5.7637414832805	5.44536080522666	5.67718564305572	5.60239918694751	5.1557712186179	5.55890411844152	5.68252365059641	5.67641973044113	5.7382774622087	6.08226607132605	5.60722774320949	5.6801012342294	5.03434187192431	5.39158241841446	6.5935146059537	5.70640368562209	5.90296782981986	5.61302801962604	5.65748015200883	5.83149101709796
+"ATP6V0A4"	4.95995145899387	5.24547636799466	5.17732645032076	4.97231373879657	4.88983521170985	4.91718293157279	5.08052538773411	4.99640099808245	5.2193006239767	5.08776173548149	4.87073505610377	4.98671808464441	4.95164684422013	4.97231373879657	5.04661807794223	5.00549030580239	5.02911786542874	4.93278654939748	4.95299947311885	4.59130802988368	4.77732353796496
+"ATP6V0B"	9.31664173097305	9.67984821750758	9.97068322490881	9.5828395485537	9.98026385839166	9.56894449957779	9.21778454852084	9.41502760256814	9.7023672876435	10.0218322130551	9.63913088316322	9.8845846618845	9.5365495668257	9.02932525000674	9.7209887144851	10.3632673316206	9.78030389721636	10.0498711028845	9.66710632430018	10.234311555077	9.86353205459032
+"ATP6V0D1"	10.161682339216	10.196617808344	10.5140093078282	10.1118737802201	10.8252665479425	10.1621748431853	9.66583304000169	10.1665993197233	10.2371025428524	10.9701883538872	10.2426143258162	10.7984249837422	10.006822925157	9.78878098937393	10.061811002638	10.632005392652	10.6186553230336	10.6239644449115	9.99083243626078	11.2426509276386	10.8616081583571
+"ATP6V0D1-DT"	5.80317811862966	5.81752229359168	5.62396729277202	5.94097351631181	5.64762236777951	5.57995373956821	5.88851326377817	5.90549009965925	5.90120024534985	5.89820498889073	5.53753719735443	5.94896285630755	5.94097351631181	5.90224039037922	5.92908135712218	5.69003410649246	5.97830551939216	5.32044454212814	5.97248643432456	5.85037860556996	5.51228740498471
+"ATP6V0D2"	6.71603956363315	7.01005922143263	6.55468281999552	6.99469201665118	6.79962723957842	6.46704933950759	6.59384724746859	6.80403270600958	6.78502062176928	6.93201943218519	6.75130400074845	6.9640947251666	6.91789425688948	6.70516256782807	6.91852880903893	7.17569968766103	7.0682395347266	6.70005959382274	6.87240123473738	6.81642717988076	6.98107046906189
+"ATP6V0E1"	11.1306282903598	10.0678792716354	9.76682083292937	10.1858859167988	9.57526859565825	10.2312407109696	10.6391739435608	10.5228795139063	10.0997772395107	10.0715510284945	10.3160942927479	9.74455806934712	10.1061831265672	10.281280763433	10.2073759572763	10.313383162482	9.88023812931702	10.2209115937852	10.4716904854893	10.1968675849561	9.6645287777793
+"ATP6V0E1P2"	5.17294364793541	5.3220173546698	5.2769309418449	5.43162493212008	5.12815404566084	5.44353481648652	5.28708428903928	5.01989692946552	5.29533868546258	5.27253547751286	5.26265897708434	5.69378539519209	5.27179978997575	5.61360378063944	5.23045797676844	5.19583695045047	5.26977471270906	5.20976308615147	5.51096306397841	5.24637331493786	5.26427929001776
+"ATP6V0E2"	10.5792722357993	11.3113518538869	11.6082732666478	11.1006682168693	11.3512870112313	11.1122316360761	10.7573752111044	10.7579370344926	10.9439146461565	11.3631191955343	11.4371951712155	11.3872084300854	11.2529621169157	10.5900267981501	11.0434703876707	11.3379579221182	11.213604713385	11.0564805822784	10.9981467777882	11.6827069469252	11.5730188939788
+"ATP6V0E2-AS1"	5.61753092373857	5.64496252259089	6.50263568961264	5.28827638637705	5.5821235747919	5.65393100786928	5.42235763012927	5.16575502737772	5.46083512838966	5.24505504532522	5.61694289097688	5.52535307626767	5.42913029385449	5.56284247991146	5.47555673346528	5.84680436663177	5.02911786542874	5.6825236505964	5.30964957691275	6.3043533731982	5.64668437040241
+"ATP6V1A"	7.37722213440594	8.83519545181844	8.72784078937771	8.63967282578924	9.41369288860443	5.28182433337239	7.97634706346856	8.49455380425368	9.16421409490339	10.7049360483045	8.77020847556086	10.1796411808271	8.73869473787958	7.36726336808862	8.37191330069329	9.47877414308522	9.77843881123425	9.55945832906818	8.80491900041929	10.4715284529695	10.5759459329697
+"ATP6V1B1"	5.27936128608071	5.4205152597258	5.70157069911692	5.30991855788285	5.17377993785507	5.83357542107298	5.9519017578822	5.45887882717081	5.42263283343681	5.46455536543604	5.36096609443261	5.64846216012273	5.40728666029598	5.80834254009716	5.61204094403835	5.43300576023898	5.50043667711513	5.3973348872181	5.72551273127338	5.14642791786998	5.47773694973692
+"ATP6V1B2"	10.5844711588594	11.25466521705	11.795033954605	11.1002573334788	12.0699092944822	10.5123958317478	9.82599315327122	11.0928125809316	11.3993829274121	12.309882913513	10.8917763792479	12.1576555644965	10.8104844076537	10.1503465135991	11.1269662860824	11.7519114478939	11.8339268035987	11.4829287038666	11.393266037688	12.1531310847309	12.3583088445874
+"ATP6V1C1"	6.90473637784773	7.35938035861078	6.94327552833507	6.95492446168896	7.41646932589292	6.53893573153012	6.93629020707073	7.34399692750368	7.52260024078142	8.41853517177143	7.14954718728981	8.39197683275427	6.89003716940541	6.89873126159716	6.73784252928989	7.73306358910377	7.77357785833402	7.52260024078142	7.35130880604695	8.72257440738525	8.40530009510383
+"ATP6V1C2"	5.63059275089646	5.3924810738396	5.53147984400162	5.73559300255832	5.36987192032025	5.06965736310091	5.5941733389914	5.49059132163578	6.02331777905854	5.5317101601916	5.52911434562326	5.66487752156476	5.73606257777012	5.25535189940047	5.36455590621962	5.5410037116031	5.68247037481847	5.42565796557726	5.50749484007249	5.35422383214489	5.51483915074308
+"ATP6V1D"	9.94730888296461	10.5094317029187	10.6233076085863	10.3592033089651	11.0616233516666	9.94599378375804	9.47105136577932	10.278836273758	10.4914661751204	11.1288407509884	10.1301493824739	10.866952432057	10.0892400593732	9.82345280469553	10.3574370994405	10.7746205153529	10.600103736647	10.5054914021599	10.7498184168186	11.12070470233	10.8886383116212
+"ATP6V1E1"	10.3636078103997	11.0458635761853	11.2496053803892	10.692504276185	11.4452687150553	10.6786316481088	10.0935323381961	10.7431299872341	11.0378704976551	11.5830539345826	10.7828022200387	11.6382984695516	10.449860020678	10.2693899601771	10.8339867009879	11.5547042966248	11.2663338992198	11.3750317845768	11.1056465346521	11.6175187434646	11.421957525669
+"ATP6V1E2"	6.15843286642727	6.14067322990235	6.25379277053368	5.77983009935495	6.25575486813055	6.19503544174662	5.88542196228274	6.10756646108147	6.58884294130191	6.26946381665895	5.91536334384264	5.90577004599293	6.01717976076953	6.18605129343409	6.58438587995349	6.46800977848936	6.46688755186323	6.60637770077083	6.3183948518623	6.24533970727445	6.40066811839178
+"ATP6V1F"	10.3881153934313	10.6982140990874	10.9113838794951	10.7183307145101	11.0601361102384	10.8219027558305	10.7085686908102	10.6285269944656	10.9422827602047	11.3321199142225	10.6332063909172	11.0643619614356	10.8666892544294	10.7026176187831	10.8585408652312	10.7092772849438	10.9154927466526	10.656251006478	10.8830284779388	11.1682609899784	11.0248654603636
+"ATP6V1FNB"	6.3224584056988	6.35354296848535	6.7510868105327	6.44533222168972	6.53069578694006	5.89351282795112	6.61769885187392	6.94871677620149	7.29132913969397	6.65611255222809	5.38379583118064	6.16756582085057	7.01194564986269	6.51955007705789	7.16564258243037	5.36787583979336	6.51955007705789	6.33390131626393	6.56240673776187	6.62687943860007	6.70278515298687
+"ATP6V1G1"	6.2471406245417	6.40035470870412	6.40220405043551	6.05911335515184	6.67343904154632	6.35273034044174	6.40220405043551	6.36240049208915	6.69738951746888	6.59849551770576	5.95666778651695	6.50769132012779	6.15307918924034	6.03627891466612	6.60424680594401	6.69039270900657	6.40220405043551	6.35430717119677	6.64235667891043	7.27533168869052	6.30830175868026
+"ATP6V1H"	9.96377893296746	10.3511950979512	10.5676762641577	10.4557431491374	10.8401645314943	9.6910630921629	9.20420998378298	10.3886277991328	10.9942929043051	11.1124683219275	9.93542866741709	10.8475469052763	10.1016490431469	9.61145045998038	10.4441601719855	10.1903694729808	10.8251908181623	10.4536798857373	10.5301312005967	11.2138071352002	10.8943642222304
+"ATP7A"	6.15455648198859	6.14692501400696	6.47254509197422	5.63524609479095	5.9679102189407	6.11365880828251	5.61110822625478	5.73971809950586	5.36488408678492	5.63282737911643	6.41066909769129	5.73711648766049	5.51983596165923	5.7171839952612	5.41806889617644	6.75663582789717	5.68722377421681	6.9207315895118	5.69195778148291	6.04002879749886	5.55304525140871
+"ATP7B"	7.2571416221948	7.30821532254737	7.16896717520112	7.23447758862581	6.98550500839079	6.73686023300807	7.01608049380812	6.86130829753282	7.32971505815886	6.56599826914909	6.89950277173478	6.69250802668001	7.28450307053425	7.13025201484061	6.7026115916208	6.49283021330605	7.6539632256028	6.98550500839079	6.76916936755306	7.05224635229932	6.67374054871809
+"ATP8A1"	7.68808741008757	8.11047776998194	6.44833725452137	6.98538526508502	7.60476501171712	6.64653550917514	6.4630895195957	7.40260177524984	6.556518279725	7.6151939940286	8.22866708465837	8.02610581426997	6.10913820967821	6.41324119463865	6.33264151134308	8.87518960647583	7.50776126191431	8.67719173764814	7.59622475311627	7.42031253732692	8.16182254194602
+"ATP8A1-DT"	6.00864914376847	6.17007248696622	6.19201428544831	6.29430090802031	6.13850368500529	6.32564040849102	6.3084530189576	6.46964488619953	6.25947856848593	6.41694060518079	6.29430090802031	6.44799701572148	6.39920564573774	6.20798747913599	6.11406350177977	6.13850368500529	6.47867968071689	6.0580826474935	6.28850598393713	6.14726415556897	6.40146105084736
+"ATP8A2"	5.62231435041032	6.51474277804566	7.20544305303605	5.8668976310647	7.49161123825038	6.83652876512457	5.8832777492361	6.41986021691957	6.40806531699887	7.44929741623546	6.1742343181955	7.54785913670188	6.18525411831997	5.9972591789198	6.20103333103777	6.69027335729959	6.79515648171516	6.47111870215094	6.20656063299336	7.70378114247239	7.471478266228
+"ATP8B1"	7.80509090902089	8.07033407516251	7.77135890272561	8.36725624303101	6.99650660115674	7.12941871323804	8.30917385825792	8.26668020985252	8.29751914651573	7.69566398798211	8.42529233012755	7.98380101452603	8.629951824775	8.05738777867016	8.91473757557275	7.46876287026573	8.10750475467905	7.32373782355367	8.34833369718037	7.4145441749351	7.82978566370327
+"ATP8B1-AS1"	5.80767247849831	5.22617066571974	5.55890411844152	5.42674155310257	5.0961448242218	5.97652212446285	5.3709191719235	4.89199300149595	5.61083894678588	5.23904910650785	5.19536453960972	4.89692757082312	5.23904910650785	5.36103349056153	5.48903645426737	5.23719435915013	4.84551920180213	5.21972887162397	4.98219207942494	5.25552612869441	5.23904910650785
+"ATP8B2"	8.09253726883459	8.10749471632697	8.52494587203325	7.95670829098565	8.29306102859104	8.65495220655043	7.86333922150254	7.89243306805421	8.01445834649603	8.06856616666221	7.7464496007374	7.85431743807742	8.30676974159189	8.25840548201911	8.03541009156355	7.5351371433231	7.89033347546503	7.98973712362051	7.79970112616092	8.12245797204836	8.01445834649603
+"ATP8B3"	4.54751080496412	4.24754766512489	4.28350475744708	4.50962981881946	4.32224766097159	4.50296633541067	4.77884502374575	4.1488365778715	4.33029039196924	4.47898529604744	4.08431669547802	4.41592289510102	4.58609377957979	4.62142070330257	4.56783021436171	4.39853062886915	4.46917439304036	4.33553280450673	4.37921636319143	4.11614665930822	4.39853062886915
+"ATP8B4"	4.83851391392687	4.48231524735188	3.65313543695513	3.62506216248399	4.2922054942245	3.76785051557979	4.03802303794755	4.33414807925826	3.87390069292618	4.10861640827694	4.07317585236766	4.00106464085831	3.91843012101966	4.1366903182769	3.71455464616475	4.15255425050641	4.22817199728659	4.75724303832566	3.79422746805715	4.75242433372844	4.57188379852064
+"ATP9A"	11.0662987725033	10.9857017800445	11.5651348168733	11.1992153126297	11.5271613404754	10.8448018223099	10.0211536758677	11.1657017668475	11.4452155259063	11.299715774159	11.0925767824889	11.4987379617314	10.5148987938018	10.4364593511625	11.1538192454362	11.2052955736884	11.3357624745799	11.2738310792731	11.0888267272812	11.3844003615524	11.4801913001153
+"ATP9B"	7.25325057693074	7.41307518069449	7.49609419813719	7.10239412950035	7.57485403704888	7.07809371894607	7.00948567071737	7.46500325928612	7.40400829444117	7.19536055605781	7.53577607153217	7.27582398871756	7.22146555815774	6.53771572660784	6.92063837119347	7.31002939189452	7.34671077522692	7.50502950734596	6.91076888370983	7.2212970657423	7.27540314569068
+"ATPAF1"	9.30495639624947	8.82302645617852	9.06594917908577	8.82112717958611	9.16662095748807	7.8742139434052	9.64481426344571	9.20082408390001	9.12738825161124	8.88200494588523	8.94164674620802	8.6146948291086	8.65855416836552	8.72944305149254	8.99925150594844	8.81822279704501	8.69946974195688	9.03746246196383	8.93119416786108	8.93097784867807	8.65158058586959
+"ATPAF2"	7.36486339667668	6.76048643491921	6.98733556940294	6.71523983072941	6.42206440465335	6.59175973140154	7.02524663811733	6.92896510247174	6.64152302013824	6.73690814416653	6.94024105239906	6.7100917278736	6.70682617809568	6.92911942099716	7.03663915144396	6.87037501873411	6.56460596312176	6.96613241473902	7.13723921605972	7.12339431919555	6.69047063598248
+"ATPSCKMT"	8.11148596068215	7.88610146391403	8.24540414385366	8.18230648231339	7.94424795246499	7.61523539728913	7.89521310517725	8.17257715076052	7.948467398744	7.78440991749245	7.88515546551953	7.73003904977586	8.18400551612152	7.57120741034696	8.19109920077047	8.11378820937091	7.799752142739	8.18411929413327	8.22065223997141	8.11255722197839	7.93888756352316
+"ATR"	7.52509565241993	7.86285315952428	8.42805677761246	7.63371789087795	8.16182254194602	7.51159477942186	6.52734595588509	7.67171951683202	7.41602388150542	7.79707874139532	7.91183229563171	7.72235882762065	7.65396968090715	7.48667117421746	7.6937297176039	7.89684230364545	7.81758810372549	8.39210073570903	7.60192062284796	7.87508183912839	7.9747502281997
+"ATRAID"	9.42077516252733	8.96605951211187	8.57981834949039	8.62821883185712	8.79629127136249	8.77119153498039	8.75553523120814	8.72412925165679	8.64554102707072	9.01722313807166	9.23151352733344	8.72428346000559	8.38640213081082	8.77272987689133	8.59387721912534	9.46168684178983	8.622074215494	9.42515995163286	8.93174051831962	8.87170410189201	8.58062497035181
+"ATRIP"	5.95478167472425	5.93565744903606	6.15382346811738	5.88925639542741	5.97253996842095	5.91774824537558	5.9433406800955	5.91075924067529	5.72223287824833	5.82030409869812	5.92915201816146	5.89139215452555	5.6713192153247	5.70035410462155	6.0010745225068	6.15243757507913	5.8184940144995	5.9721574541798	5.80193868956012	6.02627575398618	6.02356492876752
+"ATRN"	7.85068703340818	8.58843737222923	8.90535937381758	8.69687981930353	8.97907136589887	8.26191502889485	7.9962734155232	8.40606580238001	8.74450531055109	8.71639485491863	8.50967631659528	8.57282099135582	8.57354183673081	8.10045026242737	8.31791333498279	8.40643313471985	8.70340642671678	8.77188813721974	8.35607827061154	8.66349515395461	8.77219766775551
+"ATRNL1"	6.1828331245527	7.98405511399451	8.03178758595402	8.36493866217694	9.06290808458511	7.15137524287991	5.6869514242089	7.55937834506203	8.75141859003883	9.14047509472323	6.92250907038882	8.49829721853594	8.18719190152574	6.82908175947033	8.21332435322998	7.7857648939336	8.66097748929931	8.32720367668892	8.08969687907533	8.74376891669377	8.85414608656232
+"ATRX"	5.86781952094142	5.8208483236395	5.33538642505818	5.73586417311183	6.45461774914727	5.95164898301653	5.19710631165851	5.88371274044647	5.98756175699648	6.35641135061711	5.97464554666434	6.62129115823237	5.4374277439479	5.81855951038319	5.09269903019829	5.32381578892034	5.7095142409338	5.34367930097653	5.8653211995687	6.20690026848484	5.68252365059641
+"ATXN1"	8.29226220097077	9.12118287049115	8.61795866780055	8.51035287371494	9.4081910651719	9.82015085135217	8.13028878010875	8.52013344955069	8.83742019661326	8.96525223667162	8.97880473343763	8.76039429221393	9.34738303155596	9.196317550867	8.62104639042619	8.15904339065478	9.9883364948067	9.22757336434618	8.70749125039274	8.60098923058507	8.61682197608586
+"ATXN1-AS1"	4.79980760322345	5.29377728459093	5.43689194083688	5.10974797954426	4.91115433557081	5.41548321336603	5.03977341876915	5.12489823709505	4.97839779460614	5.30883694184522	4.95311187424028	5.39517159111459	5.20981235130957	5.15318854237334	4.83851391392687	4.9690912026929	5.23751585774338	5.28313140871513	5.21127466058548	5.6150448822682	5.15359609709722
+"ATXN10"	8.42632989046063	8.37771027119116	8.48029640104926	8.27105117592251	8.52181642061836	7.06777746831427	7.56917873683245	8.39748450757652	8.24231801451806	8.60886139710157	8.43183865536492	8.5585596549933	7.88275521562335	7.59873811026588	8.01139520651522	8.51601472658661	8.28406470489237	8.2706020106731	8.18059236252132	8.95253764172921	8.50991786551256
+"ATXN1L"	8.90023536145072	8.66424712648167	8.9215692217251	8.5015292551641	8.63142213150007	8.40577038813506	8.58946484027712	8.61064548473266	8.67226341911461	8.1378763582999	8.87008995961692	7.93912823565705	8.35331830135786	8.74497807969222	8.64599164599184	8.58358446268918	8.38711955092914	8.91104845807831	8.368103862184	8.27395396927669	8.28271845945602
+"ATXN2"	8.09256282580669	7.9832723286239	7.88623070737551	7.86796095899069	7.51870528937497	8.31953519470456	7.72276462860322	7.84342098927393	7.79541289708193	7.18346719511547	7.74790930561436	7.78949590059573	7.86622861991224	8.10126243613337	8.18608556686651	7.80605731215014	7.7932605348814	7.822891130415	7.97424358616925	7.51378439279058	7.66666629415246
+"ATXN2L"	7.49304187499902	7.45361495200754	7.80239296686871	7.90447901780212	7.50292779854522	8.39396866807704	8.55949433032958	7.67391746766544	7.7106260458715	7.77162039281731	7.71400591215997	7.84223911570746	8.05166383094858	8.15698322869513	7.82542542753784	7.39355701926847	7.82682207971832	7.48720149844526	7.79490591967608	7.90880810503704	7.83563793051857
+"ATXN3"	6.12059484398192	5.89879843321634	5.83926137141871	6.61685216973726	5.6816401430372	5.74599112261481	6.31384465798046	6.28310531090048	6.84998045220275	5.5611817695304	6.30421763662463	6.09263199016234	6.45203519744317	6.01101830824999	6.78899817397111	6.05336886599937	6.10535938400402	5.2638826041438	6.27455679559045	6.07459952318071	6.30019274830838
+"ATXN3L"	3.46474915984874	3.56988147725281	3.85701166572876	3.76145915426798	3.51231395735284	3.7597990381933	3.5827595131078	3.59035006425724	3.83586897020827	3.66857761146531	3.47877052317399	3.56235654780965	3.59035006425724	3.76596617335177	3.54239899581978	3.59035006425724	3.39977999864607	3.37529893542131	3.70591629807384	3.60874287793554	3.73743354189784
+"ATXN7"	7.13283639681245	6.85626579794533	6.87975933561422	6.84815342449593	6.66188766360768	7.23257737940686	6.95758766550207	6.79974629653748	6.85375631704311	6.43889861568336	6.55052450543808	6.37096440981684	6.83236469371306	6.69176251617861	6.90495631004688	6.69019310483871	6.64355173430936	7.06487370409358	6.52440452384347	6.24926395567176	6.7723707245448
+"ATXN7L1"	7.50137285259201	7.76631098662969	8.0138885223618	7.53195155863516	7.49430175102067	7.84043300634031	7.19400014584631	7.5074549051106	7.29354978779084	7.17807361292493	7.41910882970235	7.35452436991848	7.41910882970235	7.27327769184013	7.40084481953667	7.12639662654835	7.28673854257938	7.52283339407063	7.43038502338003	7.20666091655975	7.16472903574631
+"ATXN7L2"	4.85805033128024	4.82209258836901	5.39270073436536	4.91708165502444	4.91708165502444	5.30072983167784	5.11897926996919	5.03476526930235	4.77545726386147	5.04352994259119	4.75361548870091	4.91708165502444	4.73440249200092	5.13866438513829	4.94365641067992	4.64926770294238	4.91708165502444	4.91708165502444	4.97023832724747	4.98562281697558	4.84796452870489
+"ATXN7L3"	9.01645707128929	9.52740224462707	9.73873511783627	9.5682606255916	9.64824016223024	9.5962523127402	9.514818510814	9.33526052637658	9.81180539477831	9.70335123807235	8.99647781507254	9.47593827392012	9.69661021920704	9.67488025402354	9.49025877840816	8.99994734706291	9.66809490883591	9.04728823837761	9.55366667156507	9.7438696644804	9.62349901215805
+"ATXN7L3B"	7.55061064149506	7.5256556690132	7.48699037988772	7.42434709203949	8.00463785689821	7.17728199646895	7.29975724622553	7.63313018879184	7.63313018879184	8.34491059213212	7.62697043448654	8.28164975909577	7.30814443914436	7.14632692928908	7.05853314202428	7.8213536601426	7.71086228484565	7.75919139545929	7.56427481020369	8.30764603593527	8.03463111946003
+"ATXN8OS"	5.25156287852699	5.33775908198932	5.34533842391366	5.41340696746079	5.38630060270381	5.36491727410802	5.63368830752665	5.48969458943985	5.46925980471667	5.38630060270381	5.33622405796398	5.28410271135698	5.55858535306271	5.4737594366489	5.44845616721776	5.57489519372531	5.29199236313219	5.1506492063741	5.32693964228927	5.38539710116908	5.50095638054764
+"AUH"	8.70211139769016	9.02309133463346	9.11341105807954	8.87437506216606	9.54097631706743	8.70926256290303	7.96303771923063	9.40255949154085	9.28655065970067	9.45876090275243	8.95414139050495	9.37558852168337	8.78405673771057	8.20356208051272	9.05665900191076	9.10991152138527	9.39143667650643	9.41300412129036	8.99745695661844	9.18476049546943	9.42317620893344
+"AUNIP"	5.07795810705362	5.33349699615504	5.38222364352853	5.4139267226342	5.53763532279116	5.48846231234112	4.99144487897167	4.94491360373455	5.39046308998	5.42709399256671	5.25945124557106	5.19267835157821	5.01927668871185	4.96039469482672	5.26511869895807	5.23115728085367	5.58775356333652	5.23941564191816	5.03267850302049	5.24151458382141	5.43983382081398
+"AUP1"	8.7361120777443	8.17137220281868	8.42751591399206	8.54530760832491	8.17634090827235	8.78647703364987	8.79251815275268	8.4055141992116	8.51599187639707	8.19561424516192	8.44257397893184	8.00828583086811	8.59321561510095	8.69417490925601	8.7300198528895	8.46088692104492	8.32041341044172	8.51929933976091	8.6528958505178	8.25829136238239	8.23322434470196
+"AURKA"	4.4752576076541	4.4752576076541	4.67899265726954	4.43329670736749	4.6981671054059	4.82255418563632	4.43997767611285	4.60632360449852	4.4137262310605	4.26344684918682	4.63195023413445	4.40225112488454	4.19167761227923	4.77981499335767	4.10463890918884	4.24442202826223	4.38826310904281	4.57314060009898	4.72069608597489	4.63652005241036	4.14944906303907
+"AURKAIP1"	6.38130694950507	6.31271500092456	6.6000484837081	6.66576122473134	6.7144623571984	7.16520670679254	6.8866784319875	6.35355742429711	6.83585599746577	6.79056701856947	6.57474843384988	6.569847710313	6.67003745738335	6.77514970964908	6.5434484167967	6.41362365809024	6.60424680594401	6.25885901300784	6.55222762774731	6.68950511568707	6.53155853019983
+"AURKB"	5.10243758165559	5.03577529917218	5.35411312159338	5.20278102810577	5.04567258466027	5.73662626544316	5.3682779913254	5.03812131054447	4.90988499694368	5.16285152558802	5.07246498450287	5.19807660400904	5.29638348966356	5.29472593254757	5.14510208336765	5.08061470591675	4.96821703995166	5.10131593475635	5.25985748638629	5.2175767659202	5.03707304449235
+"AURKC"	6.11118716507073	6.47825826878941	6.5985738074875	6.42571579462099	6.37183337383374	6.65931407480135	6.21916408142129	6.58264783640291	6.30215998899747	6.2751567357573	6.42368442880417	6.97802581760117	6.5585048299162	6.78731021554731	6.29702471050995	6.75687616389373	6.52278292192259	6.9292998457591	6.4248235445215	6.16706239618379	6.67560616301661
+"AUTS2"	6.04046004681891	5.4878566319201	5.93587149404806	5.58078120901123	5.25371193471146	6.21192830455228	5.91140905139513	6.11074718926493	5.38714308600151	5.15599862359384	5.64203343702545	5.72057607872101	5.64566905919491	5.85894299472624	5.8919117648077	5.03119277641081	5.81808986503788	5.3809507389809	5.87214725085345	5.02947917369969	5.34713899565693
+"AVEN"	7.37550181552215	6.72134674618129	6.80622294828001	6.85048262011304	6.93923130504113	7.22731687168709	7.19072270001589	6.71014992348057	6.81904067814388	6.92628941970309	6.80067095148751	6.58003557303153	6.93923130504113	6.89335429623403	7.7677901526107	7.01661116399222	6.94460092997204	7.4155719081567	6.62322699013306	6.99891004801099	6.87860488335909
+"AVIL"	6.33717938997586	4.96685216661416	5.08699750490084	5.08194490804755	4.42978494162864	4.15654804190355	5.15469987976699	4.517854911312	5.02977131064787	4.4097418144755	4.95304862186249	4.24906716246388	4.96858229650476	4.90084481924268	5.23045797676844	5.48737761385762	3.99522282705641	4.80986348126307	4.71741511057247	4.6149552624759	5.21404063570079
+"AVL9"	8.23781445786607	8.74860019355402	9.07443628522363	8.53733461117227	8.98615162664379	8.12848432016629	7.62811286322096	8.83725949702482	8.84369602554671	8.87664793495968	8.42511752058692	8.87265123874466	8.46989581558542	8.13675572305673	8.67463424087228	8.4327719438532	8.86042246356831	8.82804840289826	8.64258959692997	8.85331320880952	8.67463424087228
+"AVP"	5.65916889037234	5.82287033003888	5.83087842395632	5.77127227875306	5.50655775835631	6.3643480768716	6.01027209698276	5.82579123470935	5.89886959383768	5.7642549809391	5.70646115999627	5.96834901534773	5.85686834231346	5.79976601284619	5.80612245182697	5.59810793699412	5.79434249030797	5.52131485612266	6.00825439595849	5.94574658366067	5.66274601410557
+"AVPI1"	7.56047057093938	7.85518714941976	8.11480418122033	7.78502184832024	8.36310969290869	7.94450925718257	7.85968929356847	7.98874594617216	8.10268742775867	8.27383090753639	7.51535360808011	8.45074158042203	7.79463632891514	7.80842889244175	8.22132429289594	7.98251530684986	8.3128495347191	7.9973484494739	7.95510941484177	8.35084224917241	8.1394305783786
+"AVPR1A"	3.94671183985521	3.98958193365399	4.11736196214032	4.11736196214032	4.24639441083682	4.32869922327266	4.54435463136975	4.2071471500885	4.12465824374881	3.84255799698808	3.78587132572795	4.39673191647901	3.974636810233	4.51273578088674	3.91330817802867	4.26063890723169	4.16449731551065	3.91879123945329	3.9778397895057	4.15956096780614	3.89750769692117
+"AVPR1B"	6.87563083834723	7.08695512181608	7.04422389690232	7.17952959103867	7.09508473513436	7.25403867640924	7.03705174757889	7.10854141586651	7.04280001054482	7.16712106679049	6.91831004416104	7.18130947686746	7.28991163961144	7.36242533746046	7.23127639535329	7.15860058032805	7.31124009552992	7.0839875246391	7.23982737143772	7.16703342777494	7.18539625979036
+"AVPR2"	5.21241263488839	5.29539179519665	5.63706006521761	5.55522748239019	5.50185450515226	6.24624496249475	6.31601944212345	5.47709509446111	5.98158370455145	5.8046063198732	5.6337585673136	5.71224168512265	5.86103503493631	5.98731539471977	5.59629460644132	5.59864922299314	6.01012648116428	5.46829861237513	6.08684558674332	5.72819661853945	5.72819661853945
+"AWAT1"	3.97327145792271	4.3298515060762	4.03729819452789	4.32227013341743	4.22418977974962	4.22418977974962	4.22418977974962	4.19406768797341	4.3614991977363	4.3297735504915	4.12590318330011	4.22471067816089	4.45970150013742	4.03567783109497	4.22418977974962	4.33753442388499	4.30653501309147	3.95180995855015	4.04112353841403	4.17964134060651	4.39075459436445
+"AXDND1"	3.15294473049139	3.27605695764013	3.31589909319951	3.26072757272415	3.28268809290255	3.26876577707118	3.34442967959365	3.022841034464	3.28268809290255	3.2382595145813	3.38613004288932	3.33282164130774	3.50606188084127	3.2897466817106	3.27104242960416	3.13321619059163	3.26072757272415	3.35297892307901	3.28268809290255	3.13122670416069	3.28268809290255
+"AXIN1"	8.1412446712721	8.05398501017385	7.85138155474727	8.06144673379562	7.71984725093478	8.42188170731115	8.31489396208074	7.83743271698471	8.02371085467088	7.83930627605007	7.97713098168063	7.66632520348928	8.09257800430921	8.32569978348062	8.06615686055272	7.98854669523663	7.76822306533922	7.89497455077007	7.83318448263906	7.88981589101561	7.73758423645812
+"AXIN2"	8.0867016235792	8.07239483346721	7.94982703753599	7.87668464872758	7.86045834751765	7.51106322158749	7.59682993916023	7.74296029220169	7.93153011956042	7.89157159024931	7.88153534895678	7.75301786076099	7.66468926237926	7.64565174278029	7.48040687164655	7.13611066792919	7.80124749872009	7.78372935607218	7.65421945904146	7.66939306427174	7.72928226681711
+"AXL"	9.36119705793703	8.85344856317986	8.69417187499497	8.52144928694216	8.80787777693406	8.34103809084275	9.43046534017018	9.02752802525301	8.68650672217668	8.65308231778223	8.73772142449884	8.44612395403288	8.45862589284476	8.78353421912803	8.5358648113476	8.07186592603319	8.79117882568862	8.84368340700169	8.63785455454754	8.79255968009785	8.34223953335213
+"AZGP1"	7.1100810326869	5.15051602661586	5.3416144497652	6.72864852359137	5.69161535805173	7.58005255851178	6.88694521232038	6.34645037006465	5.60161436041247	5.93800673538346	5.82459594441195	6.41319282104967	6.0932901632239	6.25601795218582	7.18375514659856	5.45548748958355	6.61760108656451	6.82037362115039	7.24817061376227	5.05767361950547	4.77092679834771
+"AZI2"	5.05988948491496	5.52155192226275	5.97534320495208	5.90848050803444	5.87439636202668	5.82108693024732	5.29147947672577	5.56093179953862	5.58364609061408	5.8046063198732	5.40570012087186	5.64126788034884	5.90253227821339	5.49731386122441	6.08855441015679	5.41040948371601	5.78531854824394	6.06137139889151	5.77116690549559	5.71526505182296	5.81993228050988
+"AZIN1"	9.80263782795906	9.76415963108369	9.83148898359873	9.21822635159613	10.1041854928885	8.90418708199303	8.59552175664593	9.48001578598949	9.47245362964051	10.0230117986696	9.95724444205484	10.0280864325145	8.71961566681462	8.91978421370557	9.05658977858984	9.98649727293723	9.61273070783163	9.85431811369713	9.7043259611582	10.1019652569459	9.941157821641
+"AZIN2"	7.87040242895089	8.27932575283635	8.1420974755721	7.70766513180388	8.21440174207942	7.60863227577069	7.48893739456747	7.6695612180683	7.77216577758052	8.28720831969556	8.50992009958942	8.18893587119279	7.37432117261029	7.45890897963987	7.56519401775571	9.03258738931782	8.0124027157438	8.55523908463117	7.75041423356686	8.99435786291505	8.42947959046744
+"B2M"	4.77346743400851	4.6375896945158	4.61583799046047	4.804635763098	4.37767481199848	5.15967498376954	5.08052538773411	4.89706204359511	4.9887893566428	4.75343055857215	4.60716601734541	4.67249153150431	4.84381064755602	5.11434780738494	4.89982740014602	4.49406949714302	4.59065456962423	4.31759774554355	4.98052134489567	4.94557564392652	4.77581904772158
+"B3GALNT1"	6.53686929040104	6.67344288910545	5.86060045788811	6.29079601809376	6.92345340553966	5.48913430796918	6.12473452326266	6.98230501434906	6.34189557957672	7.35364007775565	6.77483577073183	7.25159336677292	6.23253410267736	5.6049012044635	5.88710133340418	6.89043683253471	6.8263085638686	6.77483577073183	6.65180622433949	7.4102252323666	7.46858324373288
+"B3GALT1"	3.98586173181385	4.09787082571334	4.52265102515223	4.34967795101097	4.30512159780507	4.95917239627384	4.794756335741	4.13649544475161	3.95053641762645	4.74756415928271	3.81501142369862	4.4639965426867	3.84232318792524	4.59204160834389	3.94713636758171	4.08950244132383	4.00029410900675	4.14971132120188	4.08699638101384	4.19543751542835	4.24228481902645
+"B3GALT2"	6.66111318682913	7.29484752621807	7.5463954267401	7.29163523964196	7.61296936223576	7.86256713591663	6.98021874424394	6.72123571076759	7.1385595423234	7.22754119194819	6.71955404869417	7.2358534566439	7.13030058217933	7.46651013813782	7.64424375706763	7.03091765626187	7.26959697044217	7.25536818108581	7.2358534566439	7.18930619944117	7.26005721866947
+"B3GALT4"	3.83616805458994	3.75027139593841	4.05401862040748	3.63201840943415	4.17868431662755	3.86677590988273	3.92445264909255	3.43352471635434	3.99065050415256	3.9886413657051	3.61902000587878	3.71210729736411	3.79058931876855	4.40879020381422	3.75177916651814	4.01706482667286	4.14747565213803	3.6515960591921	3.82451412525695	3.96711102302332	3.88166130972907
+"B3GALT5"	6.34777522188326	6.20799215692481	6.34686516408863	6.27954569812138	6.55383643420421	6.08539093816367	6.32468538746468	5.9423607371163	6.56822515189547	6.3572442880514	6.24156239237234	6.02292348858252	6.58912528002265	6.38738147488055	6.55181714633464	6.04712540563937	6.15930998412158	5.87561275053449	6.12266417722574	6.14057960455883	6.66588683181481
+"B3GALT5-AS1"	5.51763958731313	5.40819768480013	5.22894128583107	5.57036381590721	5.05407578668615	5.35757339520445	5.84324430367431	5.25465228735388	5.28994436412207	5.50076182085259	5.35300566812164	5.26802846340148	5.46253638227087	5.59140381272771	5.31680785186784	5.09805998901996	5.28127295609121	4.749142704939	5.28424268757838	5.39215556584323	5.64171598458811
+"B3GALT6"	8.32465942715953	8.72851551143642	9.02752802525301	8.36308048189531	8.94494784186267	8.49626002165714	7.58121198008403	8.05966305903264	8.36194361307305	8.9800487403548	8.57599630695203	8.39492937693492	8.49699630161326	8.29377344615273	8.24637380131947	8.62172544898866	8.12286365462201	8.77857554373015	7.9850899941178	8.96860802387227	8.82834450983136
+"B3GAT1"	10.5655824038705	10.4567729631568	10.5742365145659	10.3315173256264	10.34174616129	10.548561101135	10.7366791360288	10.551120749632	10.6919247526619	10.1724946854794	10.5016844892181	10.3675774395746	10.4049550845955	10.4853563068119	10.6433602216112	10.8226009726843	10.3927251193094	10.7818547941629	10.505205945297	10.2617607596761	10.3595489252625
+"B3GAT1-DT"	6.37099664607176	6.81056413320343	6.48640045044399	6.9211716718537	6.46763571037834	6.68519032329867	6.76873713976337	6.67453090427133	6.78840714288484	6.73253309867692	6.73253309867692	6.9145556927704	6.73253309867692	6.78111986469205	6.77205676256413	6.68896628811097	6.84771238664996	6.06855183866191	6.84306346434672	6.58220337402935	6.94711154693615
+"B3GAT2"	9.30009413067693	9.487083210071	9.29549569004605	9.05540438878115	8.77495328716189	8.51640673100156	9.46678886725676	8.94440764472154	8.70877976433512	9.14396164761984	10.6163971126047	8.93813491379476	9.06608465624619	9.06278247160155	9.22395975443534	10.0997518757878	8.93724789249302	9.64104327776982	9.68073920154099	8.80178907066787	8.75253749989462
+"B3GAT3"	7.75282745016979	7.67906555853705	8.28168245359379	7.63857258237987	7.98547019073604	8.04283914439308	8.10326868656575	7.72504412971865	7.80619943696394	8.07041767927017	7.94320240952757	8.00385898418387	7.84882267035267	7.69609597647621	7.76817089473235	8.11141209150761	7.92693682643334	8.21576583358155	7.89851554370878	8.32565574709163	8.14537740609774
+"B3GLCT"	4.45953204222677	6.18473593058713	5.23138598296016	4.32631839787662	5.80998930542363	4.67415293136702	3.89484935198184	4.47810720339168	4.24922030286349	5.58386251459165	5.82001434184455	5.08771697782503	4.12137268350564	4.30380315728546	4.69808925743656	5.2797946944166	5.42494977737905	4.89200753121238	4.99337561356144	4.51397840635198	4.64679591065048
+"B3GNT2"	7.06133022640666	6.59373708256081	5.92195118371378	6.5728380978364	6.97540738242512	6.5181914147404	6.20619279126493	6.58433870852555	6.31768837244801	6.74347554366505	6.47767272277702	6.5937626301813	6.38867322287559	6.36942630816622	6.19336519540502	6.90293918377944	6.60424680594401	6.91644318613259	6.36902367361645	6.77585536607499	6.8039993357886
+"B3GNT3"	7.27079733244525	7.18611586451469	7.32174572170486	7.373436282229	7.34189641669093	7.82227126677367	7.91002787632678	7.47724225022079	7.48468953838173	7.44803991392075	7.08041582929108	7.34185388418491	7.46674782655931	7.68166565407467	7.35626412623981	7.1824591053976	7.373436282229	7.18564402986247	7.59534751911926	7.21821118243882	7.373436282229
+"B3GNT4"	6.71704261189117	7.0551514450121	7.39152121852611	7.13766377095846	7.34920368242437	7.45452723701402	7.51499706921893	6.87039513077901	7.31243476744047	7.31314081563428	6.663530073241	7.30443980720377	7.22303094819136	7.28531798167203	7.16679256414877	6.98840572988183	7.22719063421416	6.89805517412893	7.21553459191859	7.38520119022991	7.42865092032844
+"B3GNT5"	6.86398411494183	6.1363764931848	5.73310811954315	5.58611756674011	5.41213681405393	5.1781183249476	5.80704814905133	7.30175247783502	6.01903204695648	4.99121673917603	6.49828853165233	5.46785778888318	5.85987752900165	6.09470636228604	5.70935134642319	6.38311947995513	5.13111216285414	6.10471632697935	6.20100914294053	5.88084153724992	5.98544211438653
+"B3GNT6"	5.65808581145799	5.80168605831057	5.89863363611521	6.14811360105565	5.61834544970022	6.25355893360828	5.93900793816728	5.75155582618835	6.10452322003225	5.70112538187	6.00093245793231	6.01017746798497	5.95678306536732	6.25877016316927	6.0041216049459	5.69050004291591	6.13489186147579	5.65808581145799	6.03448088591616	5.72455027142043	5.8139824714365
+"B3GNT7"	4.49497619638741	4.5063965779008	4.23321493179026	4.43544099940521	4.28615868265435	4.83247101640773	4.66780986710655	4.80774794901434	4.08950244132383	4.12590318330011	4.62622683478018	4.19818030628423	4.55569371435527	4.7687337102679	4.22256378210271	4.40888943084595	3.92216177577978	4.51875241520874	4.10169686768443	3.96613663045051	4.0540562359944
+"B3GNT8"	5.96888863028171	6.09245862094576	6.02146849321291	6.48959017223175	6.29180484519758	6.86787943743101	7.16807571712532	6.14311711861758	6.56773886292386	6.58154841594467	6.23131339221715	6.26156296911351	6.55307873096138	6.7174658023547	6.52868130185281	6.02922605656715	6.44506963078614	6.00572120967127	6.46478475459515	6.59617279925513	6.44506963078614
+"B3GNT9"	7.13419360053832	6.70520515572196	6.0713617322737	6.41216883552172	6.24624496249475	6.78038820846013	7.05222208369076	6.23629817747581	6.07721956985687	6.5123461843134	6.9464995161793	6.4995401209161	6.61205466718442	7.02055678367383	6.46701945306847	6.60020133689536	6.52674450670626	7.24950302730335	6.52794436987839	6.51388372997239	6.25400787990852
+"B4GALNT1"	7.44957723058911	8.5065891335688	8.43224772560061	8.5065891335688	8.97860597720305	8.07258094385954	7.48568395619084	8.25404517473531	8.90364856470024	9.07485857797505	7.82684452148232	8.72599564975737	8.65717065148737	8.14055675788306	8.5832087711579	8.05790767919943	9.14467383304325	8.44484871206234	8.7058526662161	8.8778044457041	8.94402420278166
+"B4GALNT2"	4.31233429064194	4.35611666980881	4.58328874211696	4.92319516234227	4.59412790383832	4.54974172009819	4.79328353222445	4.57457130430125	4.70824050926225	4.91912212229306	4.46596892309338	4.66784483447504	4.68091793739668	4.97770069123714	4.79630004644991	4.78818786951568	4.66784483447504	4.66784483447504	4.85576270427696	4.56325261246885	4.75341002123123
+"B4GALNT3"	5.77906340228556	6.24680616351023	6.39895132503548	6.36722205356157	6.16110949661727	7.17598613208302	6.75992867295921	6.35038113459584	6.47836068856149	6.34627203404163	6.00333731901886	6.17436659258002	6.56288995789081	6.55677848897274	6.57779995578847	5.49513066158942	6.23405565094911	5.89376591453883	6.29167323049457	5.89252437373762	6.24996116728635
+"B4GALNT4"	6.98442032760267	6.97581777719768	7.36890141102626	7.31676052149787	7.22153116819554	7.1120339375552	7.61523894485488	7.54399971811434	7.18886909725302	7.5886488504896	7.11524671777901	7.4890191667123	7.37134342028285	7.22612701792402	7.05559672027864	6.93696117241764	7.31873867491994	7.20167866018475	7.46908833722164	7.21758393458063	7.57907641941554
+"B4GALT1"	8.63497290072648	7.59631288980254	7.1994411635732	7.4943025643045	7.41425047887303	7.65981381139423	7.53377563727166	7.77357205063675	7.48738152223415	7.70801384330763	7.5568265977061	7.6972865497081	7.63023421477597	7.67346547986744	7.41790411692979	7.37595391420724	7.74471918493012	7.8591401050743	7.65927506782894	8.01372074401365	7.84650428058574
+"B4GALT2"	8.09892028484308	8.19148372441607	8.38552196210554	8.30867812419626	7.95755216752404	8.71578291896983	8.67913874357423	8.167568308414	8.44585636461457	8.2508913125367	8.14934754190525	7.93082130410475	8.5381332199469	8.44784013822604	8.45383491214519	8.03398099909111	8.05123913814374	7.87820595109595	8.36138018184062	8.22126926975374	8.14575827249942
+"B4GALT3"	8.01365591540623	7.75497783095704	8.07786567096515	8.01365591540623	8.03147667839188	8.29616963665065	8.0382898305267	8.29173484125164	8.0907808413389	7.81565119071814	7.82341069964443	8.01365591540623	7.94361292270804	7.90791008501973	8.02635563411089	7.81845580331262	7.95356384877087	8.2061297882023	8.03396639257735	8.24315078109109	8.01365591540623
+"B4GALT4"	6.37018137851085	6.04991773730988	5.80639455197927	6.0040178474794	5.92676147206894	5.67550915352818	5.72320851537807	6.16842257642983	6.00990179220662	6.01226342940151	6.27146368672068	6.08796107762292	5.6141063850085	5.70232791340904	5.57963044993323	5.94052267608693	5.991153794623	6.18001204399035	5.94069956389338	6.19840989508872	5.92206989202088
+"B4GALT5"	9.17355815088329	9.32772675614734	9.58903158534067	8.50124929683169	9.82485747321066	8.95693427511769	8.41321137760813	9.63902696559586	9.49520309032495	9.69112448576623	8.99356228962857	9.75266369333454	9.03059636595662	8.97031533283502	8.84637518586665	9.11305770529087	9.6422441933578	9.59504698314063	8.86090826075863	9.86792131248598	9.62884721895117
+"B4GALT6"	6.16675310992496	7.08863403012622	6.66703849576494	6.59963992501641	8.10617003196253	6.10538551550514	5.7839010736743	6.7004945178237	7.12310767378277	8.17143582110492	6.17918834495845	7.52884629435804	6.76248019774959	5.88681076802918	6.71039873609301	7.12436164000829	7.55139154506065	7.13930791680484	6.95089127869612	7.86047284698092	8.45137931555794
+"B4GALT7"	7.40709387921205	7.14456402660305	7.64661098844512	6.9053152882527	7.18527358374374	7.5385487797431	7.39100052784933	6.8383806229948	7.18854909464342	7.3862463295822	7.25024116196186	7.14752783824598	7.26237644418887	7.43978443894514	7.07966322641367	7.11511535237797	6.98135278350238	7.26595139368947	7.22796126628441	7.28726951909408	7.16455288261993
+"B4GAT1"	10.4736908946518	10.9717581841476	11.525928509262	10.8379453317225	11.5913468825478	10.8292638624175	10.4732739892953	10.9584535787665	11.1537541607363	11.3867027127	10.7340012322146	11.4581557055853	10.6834637854548	10.2821026458641	10.7924817809646	10.758191811025	11.313396178469	11.295772855011	10.8364309513205	11.3809121688704	11.2410646398629
+"B9D1"	6.95524533058115	7.63321268195457	7.54247940249647	6.67787363981707	7.99460791800412	6.86169646217426	6.33996187742872	6.86703875046188	7.04934971317355	7.88471432492135	7.31602388277676	7.73580251702696	6.77258921746221	6.82885723241752	6.35389132474041	7.3114492226578	7.03948252516982	7.72533828163829	6.96712302043539	8.14946308560086	7.53276236357985
+"BAALC"	10.4440537625653	10.5655740926741	9.97964085004427	10.1678282374665	10.5342257211019	9.06342451321811	10.7184763688494	10.9153444360762	10.5191911472752	10.5380700816539	10.1135514627185	10.4882319089633	10.1500713544612	9.94022444866616	10.2670110567234	9.82508876526339	10.2438381084706	10.2040427835871	10.536289025363	10.437034189118	10.2622139150778
+"BAALC-AS1"	4.2097869837654	4.35614456359787	4.50191076957944	4.29938893389525	4.29938893389525	4.36227110128846	4.07171979894133	4.29938893389525	4.42403713262794	4.18538231032859	4.21863198040132	4.21283089724704	4.08031207771272	4.11410656561692	4.5178144272017	4.26676434081136	4.40230651597221	3.89659251200742	4.34456760022635	4.19065421191998	4.42666269419436
+"BAALC-AS2"	5.45952557110215	5.62870167427638	5.39266005838329	5.58615095599584	5.5206230096825	5.58615095599584	5.57836085149434	5.53838194550708	5.77129393413201	5.56543791076771	5.40084375089595	5.5627236984852	5.50920424672393	5.32748559445527	5.91423351962887	5.44217009022897	5.62757569043771	5.11284783978042	5.39020969345208	5.53147984400162	5.43135198048739
+"BABAM1"	9.0951640013838	9.1798690291916	9.67355765761942	8.99783514555285	9.37001798952928	9.08191192187014	8.63173231455938	9.03474330190605	9.37646632261398	9.66401855872812	9.03893576506419	9.40789638711714	9.00947565816096	8.87008995961692	9.05851019498818	9.31540482003882	9.28279266824919	9.33526941270018	9.2554836139029	9.6102049921411	9.47421148698236
+"BABAM2"	8.41841754805424	8.57981373507685	8.79158804146371	8.20323051237987	8.94305622645656	8.26550632107096	7.68354692375132	8.4936325553975	8.30830179254599	8.78449906670452	8.37903768172654	8.73897179668196	8.19854795012965	7.9991593205823	8.06746051491348	8.44921335950238	8.49902521446301	8.3816336825902	8.07686469085774	9.0809789948598	8.57124887488792
+"BACE1"	7.69650488209183	8.33530047207245	7.65089075110844	7.57431197675187	8.45677695970917	7.78118569739712	7.47393188599976	7.6743367434465	7.5247295454083	8.24002260068825	8.76899289795579	8.43375615121236	7.31634956676239	7.39717670158704	7.00937054073577	9.47845042479168	7.9054954432713	8.77807678939988	7.91936314377762	8.35674087740858	8.44464466151986
+"BACE1-AS"	7.85536664949472	7.67347850354898	7.90707650785978	7.75167882406408	7.76291377716858	7.83257917593572	7.697143576644	7.53624849049879	7.73582705288751	7.50897505495459	7.70674668619906	7.46299789954328	7.67465840443304	7.9489102182491	7.27771628024393	7.69494315306789	7.57269497562401	8.03223184655244	7.42772926760281	7.63870043568276	7.56505423585972
+"BACE2"	4.06401875684718	3.48709152621555	3.32179603857466	3.61717472648701	3.73425107147365	4.67228562500084	3.68378803783387	3.74186267320393	3.85969269496464	3.66729158598889	3.3895316624186	3.50310234788329	4.48446358636203	3.71274599544452	4.96599355215937	3.88441890990933	3.35586105076896	4.22194208222878	3.066101678461	3.55393581766644	3.93273538803126
+"BACH1-IT1"	4.07792606942969	4.13382690211516	4.10662853810469	4.31034102733134	3.91747881625649	3.91481990232457	4.08760134636187	4.08034459583488	3.88271630628157	4.02666353824268	4.09327827221235	4.10181916657392	4.13919508488624	4.16326289096042	4.21060384803241	4.22320066080687	3.97774660004332	3.88509171534632	3.89689861597192	3.91723879114501	4.12761737160828
+"BACH2"	6.64878062679079	6.66290235927841	6.76408512055236	6.09343343503603	6.44039526757789	6.65351262859385	6.41058030591909	6.6028310387961	5.98186014421922	5.41594943639911	6.59123148408071	6.09184407651876	6.00670622707959	6.3703230502255	6.54186901503495	6.98442287357184	6.42775651982571	7.06492564196993	6.27225131441596	6.40846740160108	5.7864355460777
+"BAD"	8.17844722573484	7.20557467297507	7.84179652241881	7.28720395866233	7.59780220511842	7.35674598261565	7.77247644518987	7.4786689778914	7.49813409211749	7.65118145876224	7.41839699036754	7.51322953011299	7.29728138345816	7.30361774109732	7.75063763074765	7.27141822050322	7.16201413266579	7.59646490857359	7.3139004927674	7.93994644079818	7.41725237636906
+"BAG1"	5.62196882226413	5.78462181170276	5.34795166795079	5.43963713357122	5.69111321990599	5.60084537704389	5.62167571269785	5.22403814110355	5.34964157364052	5.5634866417564	5.28224402016859	5.43963713357122	5.21681274073143	5.65222767252254	5.13633281049298	5.29274730601974	5.3541595125336	5.15581950661644	5.06500909586602	5.43963713357122	5.58389565871735
+"BAG2"	6.31515691350251	6.04758034334315	5.38664478758558	6.24546557240329	6.32437264912561	4.61046419147135	6.21514920267418	6.18081946961778	6.14117216891384	6.14884898212272	5.83641392203567	5.87781842981257	6.53160113500195	5.31179842639779	6.46291722071029	6.26241923986355	5.77063802950836	6.68538586513477	6.51029225602629	6.57195776762918	6.17321701152872
+"BAG3"	11.0632933970574	8.63681091198133	8.91701424182174	10.0678539166942	8.72459647393989	8.71885203698445	10.0660182452966	10.9912545826098	9.48476953964694	9.11113720206541	9.77267493930175	9.74352878214853	9.91627981984226	8.98626606146651	9.74818018757993	8.65560138023246	9.66669636982815	8.77799365136983	9.70843714046787	9.10220388663278	9.38430542161059
+"BAG4"	8.68418048030726	9.39798722401833	9.68024467977348	9.53139887652683	9.74161791891136	8.59250702752842	8.13053204509056	9.28532508047205	9.84112756656681	9.45932123871447	9.14347971487287	9.54501110688831	9.52776630406432	8.54493809968343	9.69361900149923	9.07694136367045	9.67890380971933	9.37541408272398	9.50322608166763	9.41736340800969	9.67916728954109
+"BAG5"	6.60863000695649	7.26770685910998	7.39206934927134	6.85029485909432	7.14194125237715	6.97218088108111	6.15870306714966	6.73500440976725	7.11968481039515	7.12872752416953	6.80011815826848	7.41146878260981	6.75779090527266	6.55600577878951	6.91955589010204	7.47269217146923	7.39153641263891	7.43138266441998	6.86425936436282	7.31007512620784	6.97950624058881
+"BAHD1"	7.3196529992494	7.01711682112006	7.22369901768349	7.30986576674798	7.14348877858024	7.49826379309538	7.34819266773189	7.04430370009728	7.29756277860315	7.09849973361411	7.09536715302235	7.32112427462095	7.42324863656596	7.11600801172076	7.12701915692542	7.36731468142791	7.04945109924359	7.18200158307435	7.06320192529481	7.33459872125736	7.16972471073366
+"BAIAP2"	8.61420650329929	9.34990642196625	9.83637406006736	9.77612064943738	9.51706093547073	9.66139255138603	8.95295588887562	9.05713524713687	9.51674568393444	9.6127207284784	8.94004843476231	9.8508494469834	9.74046289939198	9.19254070802106	9.09726721734973	8.85854444129908	9.83163286979961	9.07124255208301	9.43019738897292	9.72066785977709	9.54865984574781
+"BAIAP2-DT"	6.63795986574156	6.963865657506	7.47022086831186	6.64942964815253	6.71629096052144	6.25479561417692	6.30375807243325	6.33394522092905	6.58061349930643	6.733087625401	6.69396958063624	6.55592329237324	6.75223251901928	6.69939611332955	6.68171081712914	6.42150620541043	6.26371284297675	6.54367896325785	6.15663803882005	6.90604463538133	6.73261232117376
+"BAIAP2L1"	4.37605864888935	4.17405423167544	4.18253493762282	3.77146397973183	4.05959702649139	4.02383566415948	3.98306138200993	4.06352481466968	3.85998948713878	3.72092612209529	3.9526432462815	4.02251731180784	4.02714387774633	4.54938533403595	4.03979539245002	4.53511929427088	4.17405423167544	3.83705211665882	3.90670699728405	4.314662701603	4.08382427088534
+"BAIAP2L2"	7.37597957665444	7.47389099255889	7.78816474761498	7.64595104104462	7.57981100981392	7.96600259060926	8.39096573343455	7.54574599384869	7.79172344122999	7.5789130023755	7.51230392257859	7.70994530934667	7.90492227749861	7.95345416897849	7.65825516579003	7.4643761543377	7.56405624370534	7.28104838965062	7.76537467847471	7.8144996434094	7.48834418096037
+"BAIAP3"	8.95127281381645	9.11525307202022	9.90111854750787	9.42133570845793	9.30704170117902	9.06858518235933	8.65212553781823	9.0767047119442	9.3641693303499	9.39473852425365	9.45051933900244	9.16064673237818	8.78105194991177	9.0103663303214	8.60189155948092	8.46517149547423	9.0942009351439	8.79629127136249	8.89952634830499	9.59249467631605	8.99765992290834
+"BAK1"	6.75745942072271	6.78982795945851	6.75686535344758	6.59727932347496	6.68573350608539	6.93628997724317	6.92128888726434	6.6504741375942	6.65236174062575	6.62039683385155	6.42398269580347	6.51282806190095	6.67251186063467	6.90336618671122	6.69762441912924	6.47779648490434	6.64297673654524	6.48867654916981	6.4283141149626	6.52998835407707	6.59727932347496
+"BAMBI"	8.48403230814029	7.60041954181384	7.46514944159971	7.5808736394377	7.28589908118514	8.57731225401417	7.7342671789695	8.00779576366413	7.34507314832264	7.33527252673554	8.33548312018921	7.30557471563855	7.858791273798	7.76687271634455	7.83507892651202	8.71179889367095	7.08543283254596	8.47173039342201	7.5767555011942	7.80689243737761	6.88733377021978
+"BANCR"	5.3448211593835	5.24792105509383	5.23157239484261	5.46930596126625	5.13521763999183	5.13693564202695	5.545997067171	5.34796676284119	5.31863334699763	5.36573852814546	5.2959536581184	5.31863334699763	5.40517529729945	5.32966612622474	5.42683236134584	5.19913694444307	5.35766098201233	4.96635156164305	5.59770138278524	5.1609550079853	5.30889005648291
+"BANF1"	10.4576358310425	10.4018997098522	10.6268444832997	10.6120108479695	10.4350692377841	10.2751335710004	10.8551803050369	10.7301922562514	10.5049725135557	10.564062606989	10.7312563992285	10.6298263982101	10.6108866407847	10.42433478983	10.6735829340748	10.7656243764325	10.4140735190409	10.6628452768185	10.8409462823589	10.7658416750035	10.3253039479901
+"BANF2"	4.26036005616554	4.4010568617194	4.36858442401504	4.59497851606973	4.32476171269853	4.65810308223269	4.63597633417127	4.37516175139169	4.29927627676382	4.47173949763987	4.28665805180847	4.33958136052188	4.36406919403598	4.50822593922756	4.72673717151029	4.35910199826132	4.80075141081958	4.14536872409978	4.61284354163675	4.42725552861517	4.49937456878351
+"BANK1"	4.76616628873011	4.60739320400956	4.15399081530016	4.67796307019411	4.73623843293781	4.23242979374271	4.61552486600255	4.70622299772429	4.61552486600255	4.61552486600255	4.89791517271777	4.76764009535909	4.41771422301941	4.33223728894356	4.47020935564531	4.24467472291425	4.73365677457487	4.45375561575977	4.56387539489431	4.75239371687434	4.90958940990723
+"BANP"	7.92203147569627	7.76674596546871	8.01425439006798	8.18074463508776	7.63830692767854	8.51234136486508	8.24029240788294	8.33325416740919	8.21864603313419	7.47097175263268	8.2424279332719	7.6464083876725	8.55120073043314	8.00609027902576	8.51102377118637	7.98557993984586	7.90200815237958	8.25919472189338	8.17248407132321	7.90385041557284	8.07921267492537
+"BAP1"	8.59327062470602	8.40370782582267	8.43049255095587	8.53511030006935	8.42932533999187	8.22252912947183	8.52733000197037	8.41159359499943	8.87232036975289	8.784740933125	8.01187680270226	8.72972244547882	8.50127321144458	8.30423114540813	8.40495808196902	8.07277477985129	8.79139421612567	8.03638071227171	8.75058793023396	8.86866420402496	9.00902594438439
+"BARD1"	5.80337704455406	5.71656556366923	5.37712205965327	5.46975340255295	5.63300432760959	5.62064506709413	5.07855323109797	7.05229759924266	5.03965431490073	5.22690501249021	6.36351397131103	6.04020029170096	5.01959874902394	4.96989726274305	5.53270229982477	5.8692499132607	5.56111789670535	6.34477771860149	5.41059165118868	5.25209549534438	5.32228857708503
+"BARHL1"	6.06218337330729	6.21928985249945	6.08361367529484	6.25741601982715	6.19769372550738	6.3251961342596	6.67472755024079	6.15655653499251	6.28816126081896	6.10835376133048	6.04680088381869	6.23159495322549	6.57921047993759	6.53137029781063	6.05501988475033	6.18366007886102	6.32307142663115	5.7990701572904	6.28530868572522	6.17609363156803	6.21465473750063
+"BARX1"	5.74134021890077	5.71051055742014	5.79114734971711	5.80501182287378	5.62679903350304	5.88445568982341	6.13019523533234	5.74161792787585	6.05965659711035	5.92320065492131	5.68030289893833	5.78994757680846	6.08884733515968	6.22077350182301	5.87652228566667	5.63234133182266	5.82629557314558	5.70723766869718	6.18613837187531	5.70878228818976	5.87312322356092
+"BARX1-DT"	6.07918653252714	6.23271650066674	6.01285597601856	6.48306605909279	6.32128362061807	6.21165829673154	6.29590741419361	6.0088375330385	6.36138075808349	6.17934195920148	6.05197442142885	6.2139481395198	6.18389337333222	6.35025358912083	6.36062370296794	6.37711587713095	6.33922156144875	5.87806259227856	6.19740102199659	6.09771761296288	6.23831882191189
+"BARX2"	5.16516735983866	5.43745009028046	5.21700245352261	5.65707108347935	5.50013051849089	5.67043214365431	5.78711077837905	5.1897965323886	5.31971681227496	5.43782276382834	5.27715679512106	5.46049976254501	5.7720481888862	5.7885447651913	5.66471823339501	5.46049976254501	5.41443289582075	5.17491546458478	5.49533305693903	5.41294603744153	5.60388530712238
+"BASP1"	11.610201482812	12.7526095307196	13.0718666332111	12.7308973823155	13.2134297180866	12.8423955067954	11.9101454366452	12.4094304435745	12.7531736965667	13.0783400438302	12.0564112179052	12.882208421961	12.7544696150124	12.4869083435067	12.7308973823155	12.199540125189	12.9995192739656	12.4412147498593	12.6754647506423	12.9508853326657	13.0214850850226
+"BASP1-AS1"	5.21873979763374	5.53540405899701	5.20208069000664	5.94083376558678	4.97078882060694	5.37457766083886	5.45539922325448	5.64999296128251	5.88390239965079	5.23419633756257	5.17450267488678	5.48657040122967	5.89470286572958	5.5553316062593	5.78863109555819	4.55115645916694	5.45568199922268	4.82552230222242	5.31264960715072	5.28007943996497	4.6920015037914
+"BATF"	6.81852422014406	6.88055889007854	7.05431537897466	7.16446164764356	6.88056191449533	7.25385706319027	6.9333541895579	7.05431537897466	7.14381476627586	7.1593557556474	6.94125650987803	7.08049034634079	7.37257815820269	7.34625133931714	7.08954679982854	6.66343700183459	6.994568294165	6.98787044744687	6.82787289803433	6.90463398237386	7.19739384780881
+"BATF2"	5.88704887723554	5.44783661271787	5.17546190917039	5.59339221570801	5.33977873284159	5.63536930669399	5.94395239241303	5.85869438803318	5.65356222053195	5.42721268415146	5.3598243697144	5.18572128860119	5.76853106304084	6.12311682579006	5.59339221570801	5.60838570134197	5.39161983491497	5.13876598827008	5.7511412396034	5.4387028018532	5.46794911116028
+"BATF3"	7.14989505740443	7.29228244107479	7.44365223919286	7.3306944519909	7.3413603096452	7.24989642119835	7.28948576381586	7.40133808450103	7.520263491332	7.27827188164991	6.72254016697933	7.07548012096653	7.37617495079158	7.22660181966556	7.27393770822973	7.31871433562953	7.16846081314501	7.08118241054708	7.1909831194598	7.47181339371305	7.70871554286297
+"BAX"	6.14957869964483	6.02452746129233	6.03382799319511	6.13719891623266	6.0981226751308	6.6150170234557	7.14303157797596	6.00151632712154	6.27746816501402	6.48205558728171	6.20016321276788	6.20240805219524	6.2309481664561	6.1467204571279	6.38413117924625	6.04852046080217	6.12835508204961	5.61346491616331	6.29974531484972	6.37332457568302	6.18241970740759
+"BAZ1A"	6.50631782677653	5.68058151480022	5.03256500015373	6.06770467117401	5.33730942053541	6.61106298467474	5.89180237185039	6.42996021322046	5.6279998803693	5.33330244023088	6.36157377559664	5.71037322242627	6.5574421706391	6.26601642296342	6.48736446627437	5.90570588316167	5.06421292936215	6.12939842371274	5.97325139048016	5.2794306602905	5.50898877644345
+"BAZ1B"	7.43906149177431	7.60954526684095	7.52325335113139	7.91457905308063	7.52782489957405	7.87803832121107	8.21779551118477	7.57162772713273	7.83993340203329	7.85493050874517	7.74142913339834	8.00366225487949	7.9612617519814	8.18345466168144	7.90520888884896	7.63124346821982	7.78908787793664	7.55903932536876	8.04502494416893	7.83027179811925	7.68363611011918
+"BAZ2A"	8.27016573631389	8.23406992503662	8.48838002488015	8.30316293708241	8.19508491997691	8.94298213561513	9.26091187632811	8.32624294653793	8.18247270316589	8.33979344052827	8.23283496234215	8.3047982304523	8.46910995725917	8.75785521172875	8.24202513693908	7.97697880679233	8.28580048690601	8.179194554538	8.32302956540944	8.41968504055255	8.12129287780448
+"BAZ2B"	9.87591925862253	9.39865498453471	9.18459434989879	9.4692913518898	9.00777862185553	9.07322777739235	9.28567325774577	9.35261436039082	9.23886613251593	8.39295693399085	9.74793304465866	8.72517507524289	9.11400608348749	9.16142399291094	9.17410360790512	9.94875854774901	9.29507727836866	9.97271726972344	9.30387862703465	8.45496086205296	8.84442726418764
+"BAZ2B-AS1"	6.26283557816674	5.8574750608798	5.83489135196075	5.69267369029394	6.01839984652521	5.45943247455805	6.78487743746049	5.87392215693814	6.11080176793425	5.84668492629761	5.70120013474502	5.7637414832805	5.94744661673234	6.19567291942651	6.10667875531256	5.73398097696228	5.66459612323283	5.8411812524845	6.03972062337331	5.99475883255289	5.69414831304891
+"BBC3"	7.94502257000719	8.09017651912636	8.35896741098226	8.46111989663166	8.07065494140992	9.00519929243278	9.17403368481755	8.13772868189298	8.44671724612273	8.37317585204616	8.19911980220869	8.4296013758806	8.45186808546663	8.77072342013349	8.33323023927372	7.84773860254354	8.28747061706287	7.85846533944955	8.55045999014511	8.33323023927372	8.24639352166512
+"BBIP1"	8.21508610961247	8.22877293996524	7.49315072129501	7.69444756697261	8.02507566010093	7.7637264784879	7.52126560645775	7.98219407988101	7.64801550941144	7.77345861395917	8.54129003833479	7.67851746044424	7.55427032898324	7.67054453615285	7.62261563526894	8.45973170687416	7.52212890586574	8.67475354273542	7.79899964784082	7.44650882707009	7.3698636211987
+"BBLN"	9.44965259586881	9.34926842564274	9.8262322433771	9.51558986653252	9.88926408857749	9.84286769420209	9.91039800529699	9.72718885345188	9.97912471677541	10.0565447271807	9.04809138614493	9.80762427950266	9.96464538791077	10.021923994938	10.045215120778	8.90229728683099	9.67500086124371	9.60777807854012	9.50094513096865	9.95889905145459	9.80052592355523
+"BBOF1"	6.66169562882496	7.17995102777883	7.22345950104907	6.59105605135863	7.35399977408677	6.44131880049753	6.44429757198434	6.48131244422544	6.77143817963948	7.11529339861258	6.79390990894674	6.54108447222883	6.60437956326251	6.39538084871761	6.59985946618854	7.04368011286608	6.49809966985061	6.95471927729547	6.44405691387952	6.93834876428274	7.04148222723766
+"BBOX1"	9.24902249978401	8.18108377050189	7.97418639058599	8.03686134771735	7.74503510079938	5.77402074146149	8.34246967523685	9.01402978798941	7.83682136255944	7.57641691354472	8.92400702021762	8.03740221742294	7.16807676981549	7.16809357185991	7.39928082263516	7.76190844108125	7.39318753911416	7.85557525715551	8.18468127994554	8.05424283292427	7.43921701756617
+"BBOX1-AS1"	4.7908088477816	4.82330068203871	4.91912212229306	5.0707547015348	4.78757678097164	4.70324469075896	4.87598852855677	4.88799275962155	4.91912212229306	4.99126441652392	4.95373830305865	4.86507641368435	5.00429720730568	5.07511673393947	5.17955394285212	4.91912212229306	4.91912212229306	4.86507641368435	5.09191284883875	4.83752208592171	4.79456770232394
+"BBS10"	6.18215850496942	6.19611098997846	6.47902344065895	6.51707639067593	6.22655556325004	6.00097755495537	5.83792269624054	6.44158410013742	6.40617468877594	5.71816432974296	6.41946313527468	5.80102820894804	6.5155173057423	6.12510901803094	6.64737513990755	6.64774100530136	6.14551401523886	6.61965607538977	6.63773920210016	6.09771761296288	6.04531217232684
+"BBS12"	6.39005699125897	5.89246681967869	5.65467444765732	6.03119595532168	6.34802951707804	5.02911786542874	4.91431344609382	5.62613298109287	5.83762765444233	6.17453392459907	5.64821146907887	5.89885815851095	5.5182826451885	5.27385572304131	5.48603086711378	5.55859897043886	5.75251568016458	6.09351974815077	5.85743629961459	6.43035653009328	5.93517369192404
+"BBS2"	7.43705983446531	6.83912340342101	6.91318814766817	8.74710841753004	6.8022997346831	7.20398986044895	6.7699970635625	6.46578388049104	6.57189931093966	7.59250275730691	7.33932170080552	6.22279871851184	6.58079806593889	7.07891498113306	6.82170667431211	6.73016973153144	6.41069142514637	7.58662050888906	6.54256195113175	6.13810251629663	6.29229293291901
+"BBS4"	7.0727997923624	6.7498716276438	7.00558032400591	6.28947758750481	6.76422413630389	6.07626837517228	6.2767123013232	6.62946293691376	6.31131669537731	6.91417069680659	7.19134621340301	6.78455909971804	6.09725398431076	6.07507147789978	6.25903846182219	7.05692942797009	6.31474899994085	7.19532550933748	6.32955822859514	6.94073970956746	6.5856019347176
+"BBS7"	5.06345208536403	5.89156860470627	6.3548747078274	5.79236123374674	7.02637371851825	5.55921003030683	4.19418607163495	6.13484979632795	6.23846878452272	7.06202421301576	5.71899900063579	6.68858566078218	5.80226804178922	5.39071251586169	5.75857083214554	6.04444663194805	6.45608738268728	6.54806693856508	5.35166951537809	6.3410437410693	6.86514611500985
+"BBS9"	6.42076464279863	5.97710396765448	6.54693788866772	6.51658026530775	6.44930453137177	6.85789347005001	6.12076090356084	6.65066159646303	6.67035670854128	6.20054040366105	6.01591588187256	6.01318511942029	6.68979953974478	6.39889728493093	6.89468796027016	6.07771831324955	6.59036328076443	6.62942134924948	6.27368775212015	6.25312959143799	5.95054239805586
+"BBX"	9.61133341372679	9.27924918059727	8.66586518806596	9.34509282159682	9.23029738242686	9.39777001394626	9.14442038956078	9.66008889716062	9.32429025727433	8.83813225029284	9.62998898663345	9.28599924277246	8.93437117810661	9.22841345376301	9.34568281189368	10.0853939876596	9.23029738242686	10.3159643317357	9.53111484779576	8.86306434302609	8.8717040208908
+"BCAM"	8.40906563952345	7.31545880550429	7.40708047955513	7.65338126135836	7.24235613765387	8.01154937580605	8.26334109858395	7.5446007735998	7.56011956765966	7.54277362246936	7.41184495879887	7.15099660365113	7.77933322841324	7.88092887639064	7.30683568800738	7.24803707610805	7.30893733968551	7.09453484147389	7.14345490693504	7.25459032284956	7.46718509631593
+"BCAN"	9.22148682354643	9.64210538549804	9.35399672939596	9.26772293472768	8.86577723878667	9.45019125355	10.0949948030978	9.16048220993464	9.18556686330854	8.86213102747924	9.65808306601675	8.89855394479353	9.51152945115654	9.33642485180773	8.77523510114349	9.1452950131152	8.87390229859613	8.97712714513558	8.79709437517267	8.97712714513558	8.40090132799604
+"BCAN-AS2"	6.36078480967254	6.05151707126804	5.81558043534166	6.04548771530907	6.03212209435832	6.14893618509495	6.20650613530286	6.08754875339726	6.04548771530907	5.85510540215692	5.99059666731115	6.02264796590462	6.21270015745405	5.92617726767784	6.2147035925933	5.96117630537693	6.09838992307829	5.719169241661	6.30482913041327	6.04548771530907	6.04548771530907
+"BCAP31"	10.4366196388685	9.90482300114445	10.5237822492886	10.1045536959876	10.4610200229331	10.6767991383693	10.2867698932576	10.2822917830427	10.3496092483592	10.5793173766971	10.005465414702	10.3577484559769	10.339162864464	10.0631735777531	10.339162864464	10.2118939570903	10.3517345231118	10.2492878136063	10.1184815164198	10.5857947289428	10.5654531829175
+"BCAR1"	7.64176769638328	7.5775130308368	7.72420994289237	7.64176769638328	7.43174855823281	7.97405237951749	7.70778564520849	7.61634510561479	7.67187128318708	7.64176769638328	7.86897801258435	7.64176769638328	7.7537682161683	7.62598480373734	7.78325889276797	7.62523167282733	7.63482794634298	7.92029168247493	7.61743022256146	7.50006281200723	7.44207998943399
+"BCAR3"	8.42979484951373	7.43819095255407	7.33508564877277	7.57127994185758	7.26664003311358	6.89788087996178	8.31651063605965	7.29182999818188	7.42229053045092	7.11355785265438	7.75954389328201	7.11623824739878	7.23614819704557	7.38506270747605	7.53556091525941	6.99184465883545	7.38375713047241	6.89655565601969	7.42065299480481	7.39064589903349	6.59044104049711
+"BCAR3-AS1"	4.06485432781013	4.01475575697956	3.83287027767907	4.28233978586516	4.38497430563209	4.29602467688844	4.34860208001847	4.1630180970495	4.18422234240226	4.17052863664766	4.35304810601269	4.11362222122275	4.39796916333308	4.66539481875339	4.18648724652657	3.9694721345275	4.30084024056664	3.96779852709763	4.14063124449441	4.2289629583732	4.09957646801129
+"BCAR4"	4.39981828479827	4.11053233250626	4.34227119376949	4.40289025399383	4.29858568227335	4.43428035324062	4.55667019470092	4.11974548788622	4.89248492978332	4.45503733336714	4.14703513211432	4.0340202013362	4.10688522664001	4.49866110649058	4.20522605957876	4.49008176145483	4.45702726941587	4.26348408041841	4.09232126698707	4.3073473315053	4.25766904886007
+"BCAS1"	9.14004968318493	9.23323211182459	9.05518047393983	9.18528111033181	8.56259966001067	9.98572138612549	9.3757350201058	9.03522727329123	8.48537477322273	8.13722961715474	10.1435987296344	8.53379377972536	9.28285820900567	9.1579370688677	9.58912472425669	9.93444669944147	8.50556725940541	10.3553578323689	9.11586464748318	7.36472561935554	9.04045560041429
+"BCAS2"	8.93603074035288	9.387365497134	9.51420473083582	9.09773939878803	9.65927280199007	8.47087836336111	8.44168799560756	9.1840211201357	8.98490524503164	9.60359619761699	9.28583524640078	9.39472031048645	9.05186383076392	8.67111152453881	9.12994374422293	9.34768763564058	9.17194695454167	9.54120890690021	9.2257993718999	9.40642083820707	9.56672837158542
+"BCAS3"	8.01885631539234	7.92018370483436	8.10074927935189	7.70657018359299	8.1466053522953	7.97606747841036	7.89528765121689	7.88968267860979	7.83616734312182	7.94962411295079	7.83887317028146	7.85137837263854	7.65258992763914	7.90692736225383	7.64790790309136	8.1074941527179	7.9807071795	8.10162462178987	7.56910366117696	8.17353278566713	8.05119791441216
+"BCAS4"	5.59952969095495	5.62299708822121	6.01365341108266	5.96218626297238	5.80122221981169	5.55486891049538	5.8674749336727	5.8798406190921	5.8674749336727	6.2548831006034	5.60937227052649	6.34356119916619	5.84552202509337	5.7662511083396	5.48074495650893	5.8046063198732	5.82819911679202	5.72436475969275	5.86778621969352	6.56441046507287	6.24998093851628
+"BCAT1"	4.6718411212718	5.30957191595521	4.5498917364882	4.96949287053263	5.92513178699343	4.78607576566999	4.7260698485577	5.13078031620167	5.06624390732419	5.97190389642471	4.97246452913405	5.81551037172944	5.11489511517778	4.36001762404786	5.00425434059387	5.84680436663177	5.37335863056755	5.50341850725246	4.48589963884958	5.96711807947463	6.35614743492685
+"BCAT2"	7.00109733292108	7.12139752387331	6.89546907740355	7.27713249352227	6.6594136624583	7.08915520987457	7.87200792776549	7.33778262904079	7.23355313119283	7.03744154909865	7.13372517259916	7.1871322935485	7.41657454224115	7.52442792995438	7.3267254596896	6.95796565167337	7.22551243803994	6.71728471495562	7.36500144686235	6.50089506523879	7.00534506296244
+"BCCIP"	7.65587852994953	7.06343175391161	7.08222794481992	7.44378361690692	6.643449495487	6.89356111044288	7.68803124216264	7.69871226449111	7.08891733042982	5.76013603917033	6.71854358411846	6.77039038847016	7.18577866546986	7.48146618319356	8.14584239884108	6.89542455334572	6.67139638380713	7.4690654556457	7.69855538206191	6.92856138881142	6.66024432940342
+"BCDIN3D"	5.92721230710574	5.6957520216842	5.75894103286125	5.9904333402093	5.62470329853346	5.33533505461032	5.83448617788767	5.33338349517085	5.66310471660208	5.86958746880992	5.74988123258855	5.66579198741216	5.71050676292106	5.50179428160333	5.76555960937162	6.38294024873922	5.74988123258855	6.25165990292617	5.68424992768856	5.85029751881293	5.74988123258855
+"BCDIN3D-AS1"	4.37583293917389	4.3703964778965	4.43306587032274	4.56730169903022	4.32292598942543	4.7149316651479	5.32117619620696	4.61011063721439	4.45766041574088	4.35863497443315	4.20954984641821	4.61654656932518	4.45192242746637	4.78167261236985	4.5026922906602	4.45766041574088	4.45766041574088	4.21224787720082	4.7096388695463	4.75567177833764	4.29085362246387
+"BCHE"	6.70324778600473	6.73650857872882	6.20866008511568	6.37859008082216	6.40271864959456	6.80940124707444	6.12780897200808	6.43634728366876	6.43634728366876	6.12051654737321	7.11912921398382	5.62725486480161	6.64943213478992	6.43634728366876	6.76373468827764	7.37488565342499	6.14524026176908	6.88234859114352	6.49881336292981	6.0771248637227	5.26011577048451
+"BCKDHB"	6.62933985134378	6.20673488327702	5.4414680188614	5.50076182085259	5.66286062616962	4.31250349852691	5.91639050669802	6.45517007563664	5.74817424988295	5.96321730348266	7.25048636056652	5.91861450941087	4.3663734917421	5.08434163260989	4.47482555352115	6.21072258716403	5.4693178073486	6.10471632697935	5.43264399789179	6.05838745474549	5.42346301805324
+"BCKDK"	7.64388545777546	7.44079446543372	7.65265316471986	6.82041250878505	7.44572818294114	7.22554420251881	6.83717437532956	7.17173580374412	6.67501220916622	7.43795565374474	7.32104494035958	7.32864445682096	6.9664043423685	6.94015515642948	6.83543411187049	7.64675479576635	7.10627569143263	7.56917873683245	6.9915521460073	7.77261975825984	7.46894251611125
+"BCL10"	7.52024579028993	7.15653135591625	7.30132236914342	7.33972082945177	7.26951786714774	7.05287112415165	7.31854429215667	7.15153500710001	7.33373075088278	6.91438709392853	7.25275285401684	6.70484999661832	7.59085172777553	7.32584229263485	7.16349458076944	7.18417662636646	6.86339186792685	7.31223386984018	7.07954542995288	6.96417190813716	7.06449177146889
+"BCL11A"	6.60448937898268	7.84388307093503	8.51775510140411	7.22021292966637	7.99787538866016	7.48663954061564	6.83417210797332	6.77633989380838	7.25112360989932	6.94370576253123	7.10541762911073	7.40296268250291	6.89257592414079	6.77206036956384	7.50056798172988	6.82587300569829	7.17259042327628	7.04359573887169	7.1786442031583	7.46067682893891	7.20904874364672
+"BCL11B"	7.54497502591449	7.57698680507244	8.24721941465332	7.93670201874755	8.27318815370162	8.27007605871115	7.26539316525454	7.2363170140573	8.14858250222216	7.98366286289465	7.74562226467677	7.87793225860817	8.04338628655228	7.77508587710557	8.62085189649303	7.18469989736373	8.35546288269845	7.74622433452955	7.40467572183464	8.19455248617123	8.32773873915654
+"BCL2"	9.02580984802574	8.01935874723768	8.44422589533792	8.28930517597949	7.66704452616551	8.18897352691341	8.98959950893438	8.643767345117	8.46435227568933	7.29945239729883	8.12480947450381	7.59952423407893	8.16799499515015	8.65814090481199	8.44489134735345	7.71992865794693	7.94176974181056	8.01852814428072	8.28894920222098	7.91097797996964	7.43840829674885
+"BCL2A1"	5.74381128629617	3.72807156850973	3.4122701773041	3.81311147762268	4.02902971281151	3.85569628807025	3.94689815559064	5.31278935542695	3.64244440333094	4.10047151595484	3.94369176568878	3.8957854622735	4.11585992133511	4.070507938459	4.00562013812846	3.96779852709763	3.85168393963132	3.75519603736325	4.06585094212713	4.60790057427801	5.53147984400162
+"BCL2L1"	7.77108748913876	7.04595155192055	6.51090820999459	7.47631096043554	7.34596554510926	7.83227931043424	7.54117403449985	7.27000068031621	7.27103143705409	7.85624126350121	7.44785046162013	7.84251978209189	7.48617157880869	7.3079937862553	7.05497913941586	7.51825722362936	7.37509258764062	7.98257312822583	7.71419811344925	7.6417645523204	7.72988712216173
+"BCL2L11"	7.6831508527849	7.32889538442258	7.41899744465245	7.19885548519591	7.2549504849113	7.96196734953714	7.7185339995671	7.62165324443182	7.05816766064461	6.9642200247953	7.41240368192814	6.76569031809055	7.19101133479031	7.48233402684157	7.19739384780881	7.8419397161869	7.41532207050372	7.96063628531673	7.99026875946281	7.42500842605879	7.16735490825095
+"BCL2L12"	5.6931082589306	5.63282737911643	5.6931082589306	5.62052383583875	5.60549376829579	5.64372325546358	5.69450718684154	5.73378415264889	5.45421750344162	5.4878692326834	5.64550205987438	5.65882104252454	5.73473166674166	5.82530060932523	5.54380669170378	5.65551457741667	5.48459982148063	5.48865906800015	5.63282737911643	5.6545712205523	5.64623175688944
+"BCL2L13"	9.6471267487451	9.37640586565374	9.69424415245664	9.72328627725669	9.89424961153026	10.1272986444004	9.73155787265918	9.53763476304446	10.4970421707658	9.79085181727771	9.06839312573993	9.78590995260012	9.92059823385988	9.92214628995766	10.19167773349	8.74245034906242	10.2954305669224	9.63249924282409	9.79350513866122	9.79358218149926	9.85168423946663
+"BCL2L15"	4.88587808418228	4.95864119460855	5.16612447768853	4.87030530078633	5.16365016432804	4.964332733582	4.95943014296011	4.75760932659016	4.91110150821196	5.06939813051766	4.58991090260346	4.86263590281497	4.92078522243104	5.12750511908374	5.03275843292035	5.06472695228804	4.94349977231512	4.85400405192278	4.66124087142173	4.98888192512409	4.9492405634014
+"BCL2L2"	7.5915822333539	7.46196188650903	6.83267743266123	7.47703072363261	7.86713945889393	7.51175733382326	7.68223941866686	7.39894214629294	7.33820909377012	7.9584899376643	7.65109559154241	7.88418995768018	7.32155382349049	7.47050902602031	7.05197821210651	7.89022907813588	7.45542913982137	7.60834810884052	7.5915822333539	7.78097025580481	8.30114288695301
+"BCL3"	5.32824395146002	4.70240502930541	4.8504905373461	5.25296038348742	5.16864037181539	5.34951187462719	5.72235678145695	5.59557551935096	4.86550557711314	5.15239917715336	4.824717327616	5.2469556275352	5.32692006831047	5.1043397043216	5.05675213789632	4.71812328357581	4.89388007173025	4.73091207598711	5.04003097162902	5.15239917715336	5.28127422153393
+"BCL6"	9.14002855675301	7.25013983219461	7.5276363835611	8.14638767387592	7.70591426354018	9.75293199583807	8.53969793701305	10.0455499224137	8.11161893961526	7.78705219960748	7.72612897361504	8.66315625959639	8.4108378085704	8.34022925384653	8.44305834190633	7.58680324317758	8.3832514505738	7.76246612537354	8.10342640250749	8.06469298241395	8.14638767387592
+"BCL6B"	7.05923219339985	6.79737869494638	6.69986388061975	7.05182633111231	6.76680290216237	7.49363792276839	7.3675282755344	6.79974629653748	6.75472625447947	6.76330617533559	6.75841499170606	6.8408288493202	6.86409249541833	7.21750100345647	6.89758849805132	6.5504815626861	6.81631996523918	6.6503817834563	6.88856249271984	6.84455829565303	6.8408288493202
+"BCL7A"	6.36750609963804	7.13887934929307	7.47769616913696	7.21176094950013	7.46894280193694	7.08528867233246	6.96856684702516	7.16818139310759	7.47134015495979	7.32343409641702	6.9061562765543	7.64475522718784	7.36308520675472	7.09338730783734	7.2608264400509	6.92123909312897	7.35197904599681	7.06769220551436	7.0839875246391	7.42938260156009	7.33363696080002
+"BCL7B"	8.17715467127642	8.36216261625564	8.4809591175334	8.49837633826679	8.63576625582345	8.58418019274295	8.49837633826679	8.2331924526441	8.71902728338952	8.88382602469892	8.1928186947389	8.44612395403288	8.84736350903282	8.18756057488055	8.62055573822365	8.30501792518909	8.47437471039014	8.49704156841373	8.40359278626867	8.63244802658517	8.78532415400725
+"BCL7C"	8.30228606835386	8.0781199070017	7.88852579393646	8.04396419047588	7.8322886336266	8.49393075868318	8.50491212248596	8.04101141746447	8.0897828743475	8.12647568694198	8.29389209390056	7.82690944251561	8.19462290918073	8.42758814985182	8.08715278110654	7.79907935181631	7.7996643492055	7.89492954743232	8.09304108320019	8.24147283253173	7.99913838417736
+"BCL9"	7.30332468080165	7.2610168065469	7.37601952552872	7.27141720163489	7.35164784648437	7.0983655045376	7.12283945855122	7.23910498211919	7.24708137443869	7.23539304214575	7.37358729849997	7.41683399398609	7.34025585294422	7.02896537605902	7.07987567624074	7.12633535787725	7.3015630118431	7.35039049065891	7.11326315490252	7.26416484525954	7.33417707863877
+"BCL9L"	7.79777961475789	7.4059605440826	7.44660983294546	7.23852693740439	7.20156930588886	7.47615704166947	8.06792143327301	7.25787871153882	7.31169942694771	7.02162470465976	7.44835584099472	7.16722744516291	7.53611529203356	7.86980031946369	7.2143441585866	6.72330473046409	6.94318624582908	7.20139535983317	7.11733395707795	7.33200801089769	7.04029151883567
+"BCLAF1"	6.29079601809376	6.85155522199458	7.16568807347582	6.15084470996502	7.02290695370246	6.82632357330451	6.17597165649467	6.80404444289639	6.68042396558175	6.93546719431396	6.68042396558175	7.2902430106765	6.16023075629847	6.27090142949039	6.31616928331044	6.66562414879545	6.96469808334246	6.90464160030623	6.3860448256951	6.71314527702942	6.36851549861376
+"BCLAF3"	6.38087061766359	6.45249037665654	6.36922142864731	5.73586417311183	6.26796804264263	5.98395089812944	5.8506689836768	5.98009912886249	5.82486382472852	5.45666576086442	6.56316890892613	5.59964994638467	5.88903457399934	5.82223440825174	5.46789067260942	6.29370149926486	5.66461522734658	6.25705300008214	5.42565779546846	5.99198527462749	5.75961146473859
+"BCO1"	3.87023741338738	4.04256818391049	4.00979258612455	4.05915605394673	3.87149450136461	4.22584111125688	3.81304310971496	4.46598133573028	3.79795169152243	3.70542786173575	3.65770332963441	4.06645317559736	3.89949769598195	3.86006789297017	4.11118986376461	3.86276952297591	3.91804175856734	3.73708209092878	3.6915690079754	4.06796334768067	4.08461639646005
+"BCO2"	7.07646334490317	6.89233188905957	7.06783648158994	7.20888015804579	7.1285026947744	7.12606610806732	6.71151790799523	7.14001726428857	7.26026409072809	6.89947889411849	7.03070174425806	6.89947889411849	7.28346479901724	7.027183781052	7.37952061989841	6.79015666489124	7.10460047299542	6.90870455440475	7.34611708152696	6.86750141252808	7.11370327418446
+"BCOR"	6.72800415238048	6.70237970974342	6.02682460423579	6.0898439478229	6.09124484616367	6.32801601360572	5.9740502198227	6.14311711861758	6.02467204392584	5.81176001475368	6.99380416614658	5.93565744903606	5.74865738668193	5.71200543472915	5.97315600469348	7.47009462802846	6.26254489974481	7.11330732875582	5.87449480759735	6.3891490449573	6.2046113657559
+"BCORL1"	5.69356807526288	5.3392408365281	5.49728800370718	5.33841645431762	5.3441196264155	5.4990060057423	6.11481531426708	5.56458709019212	5.3973348872181	5.55890411844152	5.4736700061824	5.84362927765702	5.77001484075164	5.71286667472507	5.43105877818994	5.35493120017253	5.47513029927605	5.55164005273765	5.40817244326031	5.37342903650725	5.5205559294534
+"BCR"	9.4995194422279	8.51106707674141	8.95363607657679	9.03022052950908	9.04725255022391	8.46215238177656	8.63068268141426	9.26568518935969	8.88491864293952	9.056267197709	8.39613056910132	8.89231957855046	8.74063291633816	8.30117790065695	8.28048849781917	8.26247618483421	9.09590865925661	8.63905692531222	8.56878467799521	9.31976964814754	8.79682589725806
+"BCS1L"	8.10333886623096	8.14751204637308	8.01409405101302	7.9935394202133	8.12861930627623	8.0848128448738	7.98665064642064	7.63690631985152	7.90199874548476	8.05410147443461	8.03065540068886	7.78569984584192	7.72546958861554	8.00647214591652	7.65808809703561	8.4570170580465	7.80093084997511	8.32945006363145	7.77011111749429	8.26986009053332	8.06366828539627
+"BDH2"	6.60816786813089	6.24157049565242	5.72309298171346	6.13475691541961	5.9959901276461	5.60055378869766	6.99244136180379	6.88794787751089	6.57579406841725	6.4781405187722	6.84832768552856	5.65987620556359	6.88572846089498	6.67074398019485	7.00959941274785	5.78473828879296	5.98573628231164	7.03166272734663	6.82874305789312	5.76115518920847	5.34855611786115
+"BDKRB2"	5.98353596601361	6.15359968735503	6.30997109772858	6.15004638720048	6.12910642293072	6.49893573319423	5.88591821882595	6.13580559081046	5.9550927679726	6.15004638720048	5.99871597990374	6.18619783200992	6.22265213725734	6.42711594811996	6.15004638720048	5.8719491124324	6.04681942581802	6.22166183704974	6.11365423658671	6.443834933189	6.00808649180884
+"BDNF"	4.69222514905227	5.52123654940237	6.20677487874144	5.19823620665791	6.25372630548531	5.82788893410577	5.01641244861761	5.50966835974472	5.2856005537798	5.33298913997669	4.84810747242844	5.58417293898059	5.46651582407048	5.33929898006887	5.2880786262763	4.81170673045216	5.49772812757636	5.12514842160116	5.31475123726204	6.8355980277767	5.45226813313757
+"BDNF-AS"	3.36842208626328	3.54539166032009	3.47298025610708	3.33519841995004	3.73494157162492	3.27677441337339	3.39334079119056	3.26499456959597	3.31636044434588	3.60070750046417	3.65676961384002	3.53932555628666	3.26934288230426	3.53713239896548	3.41147741788524	3.97453080460573	3.49320053039405	4.20291384464216	3.34808187999417	3.47298025610708	3.54615169343799
+"BEAN1"	4.76261750373339	5.51278585742217	5.82236820501186	5.76140237924	5.72430476945318	5.69050004291591	5.55310378025231	5.16591602480263	6.28345213338536	5.4512527676709	4.60904877026642	5.05035701922439	5.87781461966378	5.55310378025231	6.16001452281277	4.93779438031075	5.91211059941855	5.40420377322686	5.26265897708434	6.10927292765667	5.51620277513599
+"BECN1"	8.88293115047824	8.68916605484387	8.99846691532434	8.36863515699395	9.39567571820095	8.45618295046374	8.6610316976263	8.50100873635515	8.96362545409495	9.25138705332237	8.83049686345847	8.81359883696044	8.35781532291598	8.40817703501369	8.6695816788258	9.11150596247568	8.71579587150323	9.09440776696954	8.59296364614165	9.20140133882753	9.19778667035377
+"BEGAIN"	7.8791830856771	8.31556601588934	9.01430097173953	8.47730118057205	8.42441981589804	8.5423955215978	8.71328082730894	8.20559324230871	8.84715522665086	8.23989653445125	7.58265081094977	7.7913437656373	8.70903139339831	8.54482924826696	8.35840563472046	7.38387236158915	8.21955978641976	7.84528702696498	8.26002799186212	8.6080587534975	8.29385223073836
+"BEND2"	3.81474210124194	3.81474210124194	3.80375593568634	3.91964943613433	3.9151530418121	3.73012356627811	4.04021626995265	3.97444031781744	3.81474210124194	3.8574004751727	3.60337791924506	3.90952565324005	3.84232318792524	3.7513763450689	3.70994704661943	3.75779028984347	3.90148965443687	3.75563045772759	3.7779930424013	3.7161575500712	3.94980726080533
+"BEND3"	6.33566665818855	6.38058355928517	6.56632847837282	5.95555715155009	6.60207019953978	6.63765218348314	6.33566665818855	6.10172455145438	6.31574767603923	6.28810459138435	6.15457365815124	6.27034554741108	6.42488376767718	6.51523860777591	6.47383087662186	6.40039622366233	6.23050634543032	6.50650224879326	6.22528175453793	6.56305775519245	6.12291165082753
+"BEND4"	4.50292062259238	4.90891536730434	5.83489135196075	6.19330476440768	5.52902625036299	5.66211729012983	5.13772839375829	5.47316959859478	6.25261215930559	5.39528471196476	4.3414712122664	4.98012689081294	6.39934726403841	5.50488256802429	6.48336069749972	4.84477597462775	5.41642638521565	5.18905916636681	5.62575595838535	6.10097476718951	5.56655184178962
+"BEND5"	6.921725608899	7.55157254868069	8.13119237532141	7.37386845931112	8.19595556548196	7.44851101963014	7.11855962185189	7.32307227696767	7.39864436669308	7.96206423388699	6.98138964685667	7.56021509570297	7.45295328246976	7.02886294229787	7.72402600013823	6.81731754038853	7.46221145272148	7.43106517590626	7.46205282168795	7.96769036372664	7.706833268918
+"BEND6"	7.51336536691037	8.1061338669458	8.23045948193435	8.2801909621347	8.72726127000884	7.38485823737608	7.52720446435201	8.1943008852126	8.64199031189042	8.76730949520881	7.76356188070469	8.35835648534137	9.09397577063548	7.66808414629917	9.30671487984886	7.8686398663505	8.82286250435677	8.56743440196109	8.22506247049382	8.65267257812822	9.07291043739425
+"BEND7"	7.45724023059396	6.11127093348782	6.61476213142617	6.62628312410251	6.50338883660827	6.49541436403467	7.15605151407858	6.80147358138661	6.69385972516325	6.50940082941766	6.21342573155505	6.303897164781	7.1231106994858	6.93048404554132	7.42666472715863	5.85763201741435	6.69570170056455	6.46964488619953	6.6310405732456	6.44004744455983	6.29847543018326
+"BEST1"	7.17811511010333	7.49054934279005	5.95716954496299	7.34069137444512	6.81445006784976	7.48261404385602	6.57165802648809	7.22206985271503	5.97932633785536	6.99933289356072	8.46873748673283	7.53821662523392	6.40620605372542	7.2725998421339	6.39486233945305	8.96879688351192	7.27351963928135	8.2888390926392	7.22711827134013	7.04570444974765	6.80671897381954
+"BEST2"	5.553390310692	5.85575212504739	5.63529378286458	6.14466234912629	5.7899061833471	6.19850572016609	6.1314318694229	5.70276938143741	6.0209365213157	5.90373910289929	5.67427238592528	5.79255438943822	5.93606551547854	6.10636231665089	5.8184912918146	5.54289352310188	5.70385570488236	5.29673946117178	5.86219836836549	5.92012848666196	5.70832932008619
+"BEST3"	4.60173439883807	4.32296806073807	4.18098975716329	4.25964472169835	4.07224084037525	4.45503733336714	3.85911691887113	4.88175692707423	3.97464124926741	3.9394078511058	4.68585851082209	4.13162709699285	4.33476895663581	4.5954155771935	4.25964472169835	4.24671315498185	4.21632568025133	4.46516734167592	4.00067968575444	3.7875931839164	4.1694840344945
+"BEST4"	3.83471889776811	4.17881643342542	4.40827564418163	3.92578992211036	3.93772900634461	3.60721447147097	3.58757257804038	3.77623057086196	4.07129648552587	4.44164292213174	4.22311496842752	4.28882794096854	3.81605638349687	4.11410673848851	3.87625744150147	4.01427305640163	4.05823305065849	3.938586160725	4.01427305640163	4.0873914958901	4.02802976382696
+"BET1"	7.97334469395104	8.15163147487464	8.15262143553236	7.93018103871556	8.15095311838099	7.37538332165775	7.65254651700706	7.71778838806853	7.96381774495203	8.03679538276003	8.1560538005012	7.5312569804906	7.49796087803317	7.57092848743675	7.85136690156309	8.25851745573415	7.66368633056943	8.17383546742166	7.93635762254719	8.02567071037618	7.83489289717614
+"BET1L"	5.73971809950586	5.88658053292991	5.61204456523313	5.93300701192806	5.57708042666295	5.58900680727782	6.23501786576731	5.97702523478762	5.80648615229688	6.06115273201797	5.91909953685308	5.99322049593869	5.44666887068045	5.50329224322143	5.72819661853945	6.13922436859426	5.9403277842609	5.89329777704442	5.98709033334927	6.1031137025575	6.03386944407858
+"BEX1"	10.9362074834678	12.2494646930685	12.9379400148641	12.274919887354	12.7659698130456	11.8661234779467	10.6666944008822	11.817427468396	12.4170158810765	12.6336237457192	11.7606630947073	12.551786367452	11.9951539987103	11.3598851441426	11.9942439543493	12.0605390035877	12.4781337860209	12.3992909906928	12.1669940613945	12.5603970175353	12.4354362218449
+"BEX2"	9.73922837047918	11.0867978268673	11.4599881523245	10.8757754639101	11.4673207770535	10.3546939951033	9.43481652007377	10.6875581877046	10.957273762651	11.3199941785616	10.8122204215949	11.2865025878113	10.5981870144109	10.1602870283332	10.7272205054559	10.9209949222954	11.1573282320654	11.0658689897734	11.0375671414305	11.2538969049561	11.3659002546684
+"BEX3"	12.1613887858939	12.6002627335741	12.7768093696325	12.5020620573324	12.7422694834307	12.0209602072667	12.1518339795289	12.4001257301788	12.5123136280859	12.8815385221545	12.3625053244477	12.8286313452272	12.3304559423544	12.0871754837939	12.4277991633289	12.6785453061449	12.6895538669886	12.5247352855436	12.5608770983085	12.803281792611	12.7650357150511
+"BEX4"	9.29738233931362	10.229923895068	10.3193467104515	10.0501362932652	10.4843183277981	9.81372835620889	9.00708367518407	9.90130699918086	9.94651713093891	10.4693585708263	10.0501362932652	10.6227386935766	9.96570875984455	9.39484668124177	9.66375386351809	10.2465741950941	10.3350248622323	10.2783459316233	10.0464354045484	10.3126513925997	10.3718869975777
+"BFSP1"	4.49502298407522	5.1641586344589	5.49956215440775	4.87637694915212	5.22033490159253	4.82226401521394	4.74088061881608	4.99883937433675	5.28850541395685	5.15108323975904	4.97394690850231	4.88670978880869	5.04223114134428	4.93671552262886	4.48364582509621	4.9754990318934	4.92203068725934	4.75799280259008	5.10943140289087	5.2483467633404	4.83478589761882
+"BFSP2"	4.42339970016552	4.66066933562221	4.68917529622247	4.88193558809219	4.66808513670551	4.86553634658778	4.75610771304834	4.69125605367349	4.57408830078241	4.71976647303334	4.40668839299999	4.72139367767745	4.68565836288821	4.87307342255009	4.54822769203152	4.80733306526005	4.63002640938179	4.68116709768059	4.50627830253563	4.65596429592551	4.63492373915676
+"BFSP2-AS1"	4.76593108999212	5.08799346146087	4.96647980849629	5.29274730601974	5.20165855068771	5.04173969758243	5.39931741124264	5.33626939385319	5.20548164158515	5.29274730601974	4.90891536730434	5.13592812712494	5.30655052961655	5.45637016853518	4.99450834569956	4.96944714599141	5.05693419895487	4.91964921690741	5.16036113258936	4.96958409515922	5.37995997158484
+"BGLT3"	6.14290242600359	6.40925097939648	6.31639392432082	6.36518168044999	6.29522344530512	6.06556136134546	6.51096011976924	6.31575940124582	6.48489898776968	6.27127515246801	6.10578071648031	6.42716678958973	6.57926548613565	6.48442983832999	6.38439139487459	6.32639315683983	6.51828828297174	5.80719378719933	6.60327530669167	6.32723699140239	6.48526617724279
+"BGN"	7.90781509615778	7.37527455647076	6.47276984255099	7.20761720069621	6.79482318446939	7.67464147089853	7.39844178885311	7.20709307920029	6.47473194014786	7.76868290365531	8.12921491403379	7.5256159272449	7.41544496323477	7.90692736225383	6.76664904967633	7.12808306470423	7.30032144904774	7.07168534300547	7.64957742568713	7.85628704695796	7.52740308224373
+"BHLHA15"	3.96176222943338	4.2948624965223	4.08683042896342	4.13767024708553	4.23663967113454	4.17073778100423	3.93915491214922	3.93362461462866	4.08193599403084	4.0388694654895	3.81957036852867	3.87792597446739	4.45648900038286	4.2500346165516	4.02186577961989	3.89635284469887	4.06711184023012	4.08193599403084	4.39109587000749	4.1965759000728	3.99575249414915
+"BHLHE22"	6.22753496470091	7.5033862125853	8.14293875918086	7.4022785034111	7.99403481798771	6.51780842438862	6.06889880554927	7.53060538129242	7.43910881497583	7.49639145037838	6.62160623544349	7.78422648930723	6.97900480204243	6.50975686538811	7.28176590667506	7.0266569863129	7.67272289209781	7.5168738053098	7.36125694253975	7.72102353013285	7.38428141929767
+"BHLHE22-AS1"	3.09325059959872	3.03141799197769	2.94522660680663	3.04302498453474	3.18682064945429	3.23624768927606	3.03554412450919	3.17997003092337	3.041633660481	3.3029590649622	3.01421413330682	3.11740693785506	3.0057064957228	3.05957023985846	3.31387203078813	2.94810482160693	2.98400369984491	3.00612890849859	3.1424541747774	3.27420848537286	2.892081631674
+"BHLHE23"	5.18764923873229	5.33052184646581	5.09691823607876	5.29655556929572	5.28649316018466	5.43316978408022	5.27039721260625	5.11759399774316	5.40013243366907	5.35028307276051	5.03930076572307	5.13551019644041	5.44647481507779	5.5456454460438	5.21186622610507	5.36305058746161	5.39804332436525	5.08846120199637	5.50076182085259	5.21133753185342	5.45459872289927
+"BHLHE40"	7.66219477893662	7.79691538239564	6.99415322081466	7.20977039601331	7.9757680908011	7.12339885565043	7.66935901731463	8.69009624219141	7.34751736909214	8.23937853406899	7.45204643358829	8.41365090934286	7.33267743799909	7.16593610174071	7.22704443361305	7.63985712055166	8.60988383046473	7.29246312306962	7.68815709088642	8.65800623555423	8.29566671601868
+"BHLHE41"	8.44235399039717	8.44114732352969	6.834862121369	7.96610224002723	7.87546165984253	6.48298094931314	7.90169145519719	8.07393738185874	7.78214787205691	8.307933372418	8.73779111479585	8.00852907338379	7.56301588687483	7.73825473224377	7.37173661381961	8.99896739861594	7.91333787435524	8.2080119310487	8.20185804580689	8.1797026074583	8.20707932275752
+"BHMT"	4.90724353804459	5.09441820495051	4.49497619638741	5.04699283064005	4.84580348925876	4.8827346670021	5.16399940316686	4.72229259470644	4.86662326599294	4.80595772108486	4.4726072899273	4.86922432361185	5.28014870214317	4.84884941896679	5.08653632389174	4.69900539919333	5.11270630987787	4.9439044930399	5.11450023951892	4.74434776398721	4.83851391392687
+"BHMT2"	7.25478297487409	6.71438940541665	6.36200693373708	6.46994129986225	6.65166721275824	6.20930053723895	6.75636827290031	6.31375522134771	6.68722321543431	7.01717399012946	6.99055232167598	6.31774265897743	6.73793110415944	6.96008799034081	7.22700759379812	6.25575898477635	6.97516746539439	6.29475576631876	7.28392054782069	6.93085164275899	6.44959842846656
+"BICC1"	5.97886348289219	5.17369221457897	5.78709706163611	5.34113799340402	6.10930282095322	5.00528647723381	5.55172551653233	5.48999966365053	5.44969832233166	6.10848034132608	4.72398595638872	5.27554700585951	5.21681274073143	4.99109445363683	5.0395499397109	5.17895795723912	5.54670469614307	5.45596188203937	5.51888545194099	6.51878937951762	5.10386260060574
+"BICD1"	7.3529869739908	7.08047056042887	7.69574262031029	7.06711627980837	7.33110838030347	6.41664431745329	6.90534255785963	7.84223911570746	7.37153118252021	7.15945256512089	7.4801876793658	8.11165589924932	7.03637939015536	7.12972541884048	7.17706130740465	7.79768768270976	7.71834333403406	7.34330513836166	7.00062517604542	7.15080748109868	7.15645476930755
+"BICD2"	7.56155739350577	7.31634103842497	7.26892701441088	7.18221854928436	7.82761970768625	7.03433731152191	7.08065708576143	7.19489198644081	7.7120810381868	7.63323328172692	7.58176569624063	7.53402618330654	7.0688834166236	6.98204319571916	7.00575257941544	7.8791830856771	7.5365473721848	7.95558904336574	7.13277680059956	7.71086642708437	7.5250948812474
+"BICDL1"	7.34432589624168	7.93789311572626	8.23096370630915	7.78544148935337	7.69420762846226	7.95590224202608	7.80063137422984	7.64108225573857	8.18053162298176	7.77989167211972	7.63506592995653	7.76343809833084	8.06284932665716	7.80063137422984	8.10672775372475	6.84569483232593	7.89290297941954	7.4351638073962	7.66473993803998	7.80063137422984	7.79607836435274
+"BICDL2"	5.69657367516229	5.67277138226038	5.66486932501196	5.5410123250295	5.81565214188997	6.18884190970089	6.22520917022982	5.54324783247751	5.83782848638934	5.65631904140126	5.26265897708434	5.63805264213788	5.93752794568719	6.04301572852664	5.84062796653987	5.25761371262083	5.68084244964757	5.60582547766208	5.87578649061572	5.78290880809703	5.8668976310647
+"BICRA"	7.74150821995822	7.83993901747099	7.92888145162211	8.00000111510687	7.75301881803266	7.82809973638331	7.91111998367697	7.68625196633742	7.81552978928327	7.78654549631494	7.98458628969739	7.82809973638331	8.06082293351962	7.98768306793647	7.75873986009699	7.71056376670712	7.82809973638331	8.14089245331328	7.84223911570746	7.70544009029099	7.94260003627421
+"BICRAL"	7.45433507198028	7.74685973411199	8.04600412695524	7.84132162932665	7.90097997265391	7.3907333692508	7.15089268980788	7.19481352091655	7.62843979677555	7.66909712586355	7.81717506948465	7.64244584318553	7.59030187373921	7.38592123432023	7.6292067252331	7.8791830856771	7.66909712586355	8.42510538771983	7.64796664362248	7.9306849995883	7.67379128354178
+"BID"	7.19989213579848	7.40377429597986	6.60701696288569	6.92417789812959	7.11962597635916	6.32668510981467	7.55824253898774	6.66587791436581	7.09842368744854	7.14975216525778	6.95959676534943	6.67453090427133	7.2329494905844	7.1056678791296	7.4254368471798	6.74361357874035	6.86610829958282	7.00765283760067	7.08244124885009	7.3271293432173	7.18972061940004
+"BIK"	4.94515530692427	4.89124985456738	4.8960471169598	4.87178155670733	4.83953677566875	5.09122390903668	5.15421508116985	4.98939559147575	5.12419896566611	4.82603816733546	4.85140725217988	4.8654184142644	5.08260411635079	4.99162043655795	4.8889351226914	5.19316637700199	4.7208277765676	4.66498563520591	4.67169240616533	4.85264820641304	4.86584869389491
+"BIN1"	9.773950969814	9.74029506475092	9.77255568513853	9.73351980176764	9.44067178550619	9.92693939597251	9.25065128673372	9.42499425908513	9.15614332699175	9.37316292574772	10.3754327206353	9.76787822605576	9.55469193824878	9.1960650151753	9.27050148629186	10.6134126663824	9.53289364019226	10.6720805717773	9.87723899318252	9.42794654409165	9.77824750487771
+"BIN2"	7.42788221535192	7.09458216397847	6.52122343656744	6.88912570596398	6.57728592601334	6.892564649537	7.27323577600115	6.53118303862643	6.87719150847441	6.78130159887717	6.87361838009645	6.55820280478245	7.20676779915363	7.43547320346416	7.01905616062128	6.97251078109448	6.58762215587163	7.03327025958861	6.90601905008131	6.9261206207472	7.62675616985986
+"BIN3"	6.75487006177104	7.28334791189685	6.75856602575418	7.61589370325579	7.26036110079818	7.23467094490351	7.47771141668658	7.42751376852352	7.32600176365207	6.86985287112989	6.70579919937004	7.53636374537945	7.16321733973439	8.23040723135669	7.39155188982518	7.28392280911259	7.02928903854145	6.80778762190623	7.00285984624387	6.7907772780761	6.86514923717954
+"BIRC2"	9.52486681902489	9.21119209225634	9.14557073398224	9.14806837453663	9.05408567930375	9.01889419360037	9.01669205815204	9.41493627539516	9.26803130941889	9.12480721189266	9.31845229530368	9.09172712059526	9.06710768766542	9.07391368558785	9.37619035995653	9.71615597525883	9.17090856950781	9.52040039488144	9.36621262705729	9.1407614653807	9.1263207964493
+"BIRC3"	4.25668154876096	4.21512754122374	4.18621240019576	4.31198059178102	3.89980730930393	5.59269359863629	3.91319642285399	4.75052970497354	4.2194326379273	4.1321165844429	4.25248366534305	4.2194326379273	3.84290400956024	4.27114600628132	4.08760134636187	3.99456933700057	4.22014054583364	4.38113926947026	4.33773060598844	4.09273323515851	4.14473928330076
+"BIRC5"	4.75636925678598	4.91685276457178	4.861989391885	5.18562400056438	5.25240747018264	5.06483594456867	5.05233994202793	4.70392172367611	4.8774488503768	5.00660925081492	4.6263802749336	4.84702966111661	4.71080400010289	5.22209266910451	4.8723738368019	5.01048189232019	4.76551458257467	4.88548364385296	4.88548364385296	4.80681155175072	5.01505074112754
+"BIRC6"	8.47441412478781	8.52994945023411	8.53339765513079	8.3011965218144	8.41211921306581	8.20980801472994	8.01951034597994	8.15069217464498	8.30866942885755	8.19198864778098	8.60894857824427	8.19478697051513	8.38485103944693	7.81875897138117	8.00308085680768	8.96891832185288	8.45729234145448	9.27845945857391	7.89737027235013	8.25356897430372	8.30749974837128
+"BISPR"	6.20217142209767	5.37219156193519	5.52597382231941	5.55693173211187	5.6584263504526	5.41276544612996	5.61672288363457	5.6131283651316	5.58998915888436	5.69963914518055	5.45759249222817	5.33763059347294	5.41917581322729	6.15219270513643	5.80259707072767	5.48089915143286	5.45296733954985	5.60227409690574	5.60215781130582	5.7100325370602	5.56457829313512
+"BIVM"	6.34996738697966	6.92958896786867	6.51090820999459	6.45278743753441	6.26329664042115	5.60703375248697	6.05620130341418	6.12994259442897	6.80005458067239	6.64033332087603	6.57812915291953	6.45012459434505	6.30997109772858	5.97920810807948	6.26156645797688	6.53328106740086	6.66228556855066	6.29265935961261	6.29157768439854	6.71694416838411	6.6136683154503
+"BLACAT1"	5.10441700321055	5.13203538946177	5.50263251591535	5.08268317427121	5.76247594498914	5.05548211476626	5.59353013278447	4.97523716173377	4.97926732320626	5.22679021418579	4.59759560306931	5.09460596720743	4.93779438031075	5.2179406929925	5.13987251543836	4.86986392122983	5.12259810008828	4.93597865940304	5.08360416343264	5.30575430769071	5.17410878760125
+"BLCAP"	10.7024548752325	11.0575363148783	11.5090591843394	11.0083413678711	11.25824256557	11.0963390154448	10.6766325398692	10.8560678399849	11.1481768959365	11.3008655265231	10.8330488916985	11.1383825771089	10.9086676147071	10.8865359380284	10.9202475256586	10.7434768728338	11.0418008035454	10.7297245921812	10.9322895830036	11.4281927904047	11.0978303546137
+"BLID"	4.25293728067871	4.17863196778099	4.22661195014595	3.99008028664154	4.10605332375826	3.96700784494314	3.97521665806832	4.2493817728559	4.42105438895217	4.02956251468854	4.13021834415885	4.37744984726002	4.21971147402758	4.16782152535439	4.28345129505612	5.17859435118756	4.42240099209936	4.27818716055613	4.38267801884897	4.26779254310611	3.97803630159445
+"BLM"	6.96993475444318	6.8416797932837	7.04100075105872	6.70116278117508	6.71727620290492	7.36065068964442	6.73634903731991	6.98798295765125	6.65195121822986	6.51411042893356	6.4119182616782	6.38960039645863	6.8127928574001	7.1835175079218	6.90001103947905	6.55951480992183	6.11944100570382	6.33477976977294	6.43654419385775	6.4079024329753	6.17271985248214
+"BLMH"	7.66128837940399	7.48079152586404	7.49901805329718	7.30377579862067	7.66632686685171	7.51303186037596	7.40647933240884	7.43248603352504	7.15072792988087	7.5710527824386	7.46270477067661	7.66374151260853	7.07206539184695	7.3651261113759	7.19310099900505	7.88528791940698	7.54216024406974	7.76519926418701	7.24833699997294	7.84522385456639	7.62060033165774
+"BLNK"	6.98081922785676	6.37514771516368	5.39256889886875	5.5628164760116	5.85632526706985	5.098964268107	5.662358559123	5.18386886307172	5.79878790264699	5.41421452851319	5.96118582928058	4.39315473776924	5.92200537342955	6.20205389731231	5.9877436992298	6.50507634583104	4.87802961685015	6.83881917261845	6.25913808418659	6.4461435254899	6.40027594382357
+"BLOC1S2"	9.8674716908943	10.1344710050443	10.2537265107343	9.91657252968951	10.5072938578145	9.63800452978186	9.36698419694477	9.88566939023863	10.3241274283064	10.6750630168136	10.1084805601918	10.1527984525295	9.9684698983386	9.62784892159874	10.1564549332606	10.3900238732635	10.1527984525295	10.3594163982968	10.2161040144762	10.3207647057888	10.58564455354
+"BLOC1S3"	7.1889874415666	7.13586149829972	7.34962495295766	7.0450262983598	7.21912710898823	7.48432258336911	7.19289068016816	6.8222565268781	6.73882698812977	7.06800168872126	7.03040110842393	6.800265828907	7.04029151883567	7.27825314970755	6.98949010902177	7.45229924325306	6.81666770209285	7.49806704336696	6.88844764957595	7.21336006029877	6.90171967094373
+"BLOC1S4"	7.18017463880664	7.35651202732476	6.97493331813024	7.20346614286036	7.36596694711826	6.56813280652834	6.99974780355813	7.210847809933	7.10939925996449	7.44636148261778	7.43409875270783	7.01916741486136	7.25204742771898	7.23918320312767	7.32482720577044	7.33240557161791	7.15230194156245	7.71631721009229	7.07837981825579	7.50673009163776	7.32779314129501
+"BLOC1S5"	4.96270993249611	4.71227569192263	4.54552211134535	4.41198729927917	4.45618306950722	4.61993433570359	4.72083029964895	4.56629787459463	4.48238716842235	4.30082369996913	4.64586590905638	4.30927204367648	4.50093302461764	5.00690996790024	4.78447994247241	4.69969784331071	4.65323688233241	4.97983644611423	4.74369507223646	4.61124062612391	4.32339792352312
+"BLOC1S6"	8.08439291358021	8.11535584813074	8.00756877905976	7.89702824698149	8.55077031614418	6.59361593165903	7.58759791207831	8.0270040243776	8.55061280112137	8.73989235447123	8.36620980420897	8.58510862669152	7.79585247593057	7.60377782685193	8.61550328755236	8.55670362899367	8.31758816009881	8.37131625397968	8.28119191721022	8.52345333594903	8.46066808769283
+"BLTP1"	8.40342896375436	8.18880648882127	6.82110088982185	7.44289541370269	7.48557585166322	6.79718473499816	7.65264725415578	8.04191994290551	7.50450232177578	7.84376929902233	8.05995688405642	7.69653721587941	7.13635337666635	7.42176128006914	7.03533501734575	8.37152145654555	7.88995538602261	8.06640552077738	7.51957367662105	7.78490143376788	8.01351937479814
+"BLTP2"	9.44095108572126	8.96676339724872	9.13624390232717	8.93007775899069	9.07861192419415	8.77934860147323	8.72048680543744	8.98114538941364	9.17024489752474	9.45001801488485	8.95015955791257	9.22770556698871	8.86947761860147	8.99408632392252	9.00369317728815	9.12883858276074	9.07094448013304	9.32184681153612	8.95667392039807	9.55897551407733	9.28693110852026
+"BLTP3A"	8.31117553220506	8.15267801808648	8.08564708450012	7.64209790389694	8.00855987124109	7.78025808649308	7.56501418153084	7.94171831697262	7.69727591395527	8.01274986965942	7.77206612278749	7.91889970006717	7.63113493234679	7.87493015579265	8.13933901174988	7.76942101538646	7.96626279480197	7.81596273536502	7.74407407896198	8.06072898040008	7.91889970006717
+"BLTP3B"	7.78473795324159	8.40249188690129	8.45447344096656	8.30463759353189	8.57907205487508	7.7214981858136	7.40133808450103	8.19896435662043	8.71486564919459	8.58016656235971	8.32450037001987	8.3897242651604	8.48360244629162	7.68189539963056	8.62616952116943	8.3319858857274	8.61321632800051	8.40249188690129	8.33009063240467	8.21654905632925	8.50314786173795
+"BLVRA"	6.56777760043105	5.85002799809562	6.11682600596914	5.89203432885602	6.49889362519127	5.54450087133998	5.87874638746721	6.38586673202084	6.18995552366738	6.70050978859017	6.18241970740759	6.49684657596471	5.592365972978	5.87281550250552	5.80699241629119	6.18241970740759	6.19398292560128	6.33691724400592	6.08250301110982	6.87690289572095	6.37082100721493
+"BLVRB"	8.50187466223373	8.21388614196152	8.3538260586846	7.95402042517842	8.51703725767207	8.01743894855796	8.21733447180762	8.41075358044753	8.1033525865972	8.58292208369292	8.46998463801157	8.46558394357376	7.99689172384644	8.10597283080869	8.11865482423388	8.28168245359379	8.03352604675501	8.21200622277347	8.33190309344131	8.70580503421166	8.15255405391824
+"BLZF1"	4.45012086643209	4.90891536730434	4.89066088626294	4.92214520841734	4.99913575119288	4.42650779999862	3.97817677263298	4.60955819860347	4.75630113067931	4.51560114208038	4.80069416685798	4.61902133122789	5.0366849001105	4.46069436556073	4.90122496205643	4.83851391392687	4.73190766632419	4.86899505494937	4.78649533609898	4.44094432765279	4.87598852855677
+"BMAL1"	9.17097162936642	8.76883067263739	9.20451317257054	9.33235134550317	9.3144047784297	8.90364391259907	9.09616036309429	9.62853676617894	9.68599095554632	8.97666157999776	8.62120214109263	9.39933660380307	9.55183215555461	9.01759633048809	9.90770574636476	8.33943782278372	9.41634323698861	8.91151404142428	9.1219659638526	9.13639654071137	9.1704749468778
+"BMAL2"	5.3983371804502	6.22424762364907	5.6016257670312	5.86310298286665	5.99398254095908	5.16884605701862	5.17017747365544	6.37283601495035	6.45255103330657	7.13570653786454	5.75491006088281	6.45094170619758	5.9117644509061	5.79534692225304	6.36521928736662	5.71144805787383	6.74255757813473	5.49774134353164	6.10343657973933	7.17134540111645	6.54588646081211
+"BMAL2-AS1"	2.84475813171362	2.81641428639624	2.94254010643973	2.87069464139811	2.8047933662525	2.90838130735075	2.93720041880464	2.77758780196377	3.05583511576324	2.97614898048618	2.66770106516973	2.90580510287584	2.95279334411054	2.88906486166545	2.87069464139811	2.88345996132337	2.85663901577978	2.83013962247383	2.83885963661242	2.90399337806297	2.91724273325683
+"BMF"	6.92933471618854	6.56846777138554	6.39895132503548	6.62230730554997	6.3221669226747	6.96181248700238	6.94806038456837	6.69064642850146	6.58362259943909	6.49977028202354	6.48304800836103	6.58362259943909	6.81549097467842	6.86044760451307	6.51090820999459	6.44801515093081	6.60544023303886	6.40140372015139	6.7289506935434	6.41755486876755	6.55063334906895
+"BMI1"	9.55949989769984	9.61505478253327	9.59366292020052	9.87723007149891	9.5641469078977	9.81814352151734	9.6420086501508	9.56143982811053	9.89501801056869	9.52585270994978	9.89662998409116	9.41926447920889	10.0199105350543	9.60323105875671	10.1721970093421	10.0950122854534	9.72166286062311	10.2219396934983	9.94735896212155	9.26846080741139	9.54180653555751
+"BMP1"	6.59136405307149	6.46144314805859	6.40135695647291	6.85191560923326	6.33145645928902	7.31626885631542	7.7537927902724	6.69376520712179	6.83723433024348	6.50262690083148	6.1788273306191	6.35363442058854	7.00226018189651	7.32584229263485	6.88329611048383	6.29527450876689	6.57211362354451	6.30627486136183	6.82874305789312	6.52476139050856	6.54588646081211
+"BMP10"	4.49497619638741	4.4888373740598	4.70545819401338	4.77999542399143	4.55485579511452	4.90690278904151	5.16007204853499	4.8013201708362	4.55340606374574	4.54892948765034	4.44337688770008	4.75166071135143	4.77755540481597	4.46802316786512	4.90340221688688	4.83388180352164	4.67741581378734	4.66803278191788	4.75125438956962	4.78615506727676	4.75478429849961
+"BMP15"	3.80758102071239	4.06584347022256	3.77126080525882	4.19029427405356	3.86921615040883	3.70275993424345	4.17073961156113	3.86557008971419	4.02985863960038	3.99484280118105	3.74072444230171	3.96511277398571	3.8051697629842	3.95958312662866	3.94596707740957	3.83368316453806	3.84054160309622	3.92229520567373	3.72800890306423	3.87389576117085	4.0484743422579
+"BMP2"	6.19998504616585	6.48952327402124	6.4858528567844	6.47652885742868	6.35247112104358	6.93072614067522	6.5654379378787	7.10944665041754	6.11591005199887	6.37774588603237	6.50815434157698	6.75569390315699	6.44811637660257	6.47575592368406	6.57014578095806	6.53067152679841	6.35400439380084	6.60040859921555	6.32136389612776	6.70061752785571	5.93575188629538
+"BMP2K"	8.98146407846946	8.38808740732924	7.9807413189023	7.95863043890609	8.05946513945275	7.23610622301844	8.14029032573409	7.76122574185963	7.69339491635152	7.65668125831418	9.04454701459604	7.26459088218341	8.14208699500167	8.11394235464911	8.04746377631131	8.25539472221498	7.83418880581251	8.00858381556431	8.14386511346412	7.78646302653195	8.13263437775983
+"BMP2K-DT"	4.40328963826902	4.38277307900857	4.38277307900857	4.38428022726564	4.21368069738532	4.75391176901744	4.66803311099489	4.40685395998319	4.55556380555426	4.14842509513936	4.42026487931174	4.1922030133974	4.64931499046276	4.3405613966912	4.45970817787728	4.28868979489889	4.40731784185727	4.04029731670158	4.4389905349606	4.25655366890497	4.34163119489821
+"BMP3"	5.01930675905172	5.01590258251946	5.05857717412055	5.13254939416289	5.03125769960312	5.39256889886875	5.15535891498513	5.13425530119487	5.18185340524073	5.26265897708434	4.92291576418777	5.19532259915578	5.13254939416289	5.46302735402342	5.13254939416289	4.89239429596979	5.02589202403131	4.83253003256814	5.13254939416289	5.28555541462413	5.1329131023016
+"BMP4"	6.20060483232386	6.35547573730449	6.62955058258935	6.37385403429126	6.95371336136924	6.73747684424477	6.6058255029948	6.16338232955149	6.68516300833211	6.81762824192429	6.04319055050702	6.54235638217653	6.58934218243951	6.83701267723491	6.41830878402999	6.35109074779299	6.38462143531074	6.44195783240235	6.49789500239539	7.48975862092244	6.38586119585113
+"BMP5"	4.44753076403701	4.97078882060694	4.61819984348884	4.39614754648139	4.65591419391025	4.64654118460187	4.71644627579742	4.56996780952903	4.80880379499071	4.95771342590708	4.39234035812464	4.37276906366109	4.50051622921092	4.70988535971239	4.13727933662463	4.60436485770772	4.56832275597059	4.35659154131787	5.45043114913818	6.98496276993549	4.57512919121534
+"BMP6"	7.43183151762956	6.43102274192301	5.86246808103331	6.28259180365633	5.93586943531218	7.2154599815097	6.76247349710297	6.34891183244673	6.25975585486541	7.21992821915248	5.67593138489352	5.7950491030672	6.3850449786764	7.4854175066395	6.02786303860413	5.90292857811678	6.443834933189	6.38579163049203	6.73398808550789	7.44646816376339	6.78155689684903
+"BMP7"	8.24788224158801	7.98139832753716	7.17971875897329	7.76853989504387	7.41860042106555	6.58023974320155	8.23935859543781	8.04910175789427	7.4970274831652	7.35195724978238	8.22649411604376	7.17245046045813	7.18142142669862	7.41351706217819	7.18375514659856	7.68754620663827	7.43382514551137	7.09471948600208	7.58223739904446	7.49493402067295	6.79642059037161
+"BMP8A"	5.42411706728702	5.36618024801049	5.66527197731348	5.52296720371439	5.47355820422152	5.40243657412952	5.50290238189617	5.24760474409707	5.82826076533354	5.48747450792551	5.19428440752415	5.46049976254501	5.70359670769409	5.76823184469406	5.48221961444116	5.73231698754802	5.33902938824424	5.37522421249729	5.48823413328911	5.53147984400162	5.19702174252451
+"BMP8B"	7.00875411317086	6.72649539530129	6.68820518897817	6.6818059961014	6.37665252060551	6.95482136747765	6.98216075172818	6.6818059961014	6.364592331161	6.5873086165369	7.09025804649162	6.6818059961014	6.47048184759707	6.5793184786918	6.73344450135051	6.81545320521256	6.54093065486566	7.59302600963384	6.94754293981782	6.32206038185461	6.32859388741032
+"BMPER"	4.09370976606578	4.90303783672842	5.48585301726628	4.48101624424806	4.72601954699605	4.53552366041602	4.29526381876907	4.36090326646406	4.58463362953204	4.57056121902625	4.17897197712706	4.71749951110145	4.60403622141447	4.20982540991159	4.54829433496754	4.37253480609131	4.63493655162978	4.90470384286066	4.58463362953204	5.37357819651609	4.69933441708862
+"BMPR1A"	7.40458545312609	7.08810257728996	7.08598081140092	6.85397603550228	6.96130250604088	6.5728380978364	7.41206973666925	7.27148533344061	6.94167465211563	6.80654310118223	7.3907333692508	6.577830808322	6.6376309062096	6.84325853434133	7.03055344664321	6.88899540490612	6.60046078887951	7.36440105648916	7.10694880461781	6.94118233987951	6.52000433357114
+"BMPR1B"	9.74655477815748	9.08904609821598	9.25762675041841	8.83643592950816	8.64600082314074	7.51275183353292	9.74096117478401	9.86290421537038	8.94405217715293	8.43703437398877	9.55271492215804	8.52356837733508	8.00028131375874	8.58439226186799	8.59170783129143	8.67255152067916	8.96346009472325	8.62308668768915	9.1980520943948	8.36585183648721	8.28631098118317
+"BMPR2"	5.86887932628463	5.9060391732997	4.87693145965513	5.85788337246263	6.57500146089467	4.81798516080349	5.63965320081616	5.95384184864743	5.8179274056061	6.42728848378136	5.66080953725471	6.13556576136371	5.6293223612173	5.39467667080138	5.71091746614589	5.59025519973931	5.93042702155739	5.68951314128382	5.75406922268586	5.94226587018003	6.51152749403169
+"BMS1"	8.37796002974495	8.19689561636743	8.7423255614058	8.17720512368845	8.70425418703604	8.72613588761939	7.89668063398185	8.54410541939136	8.29536927828227	8.45842441731859	8.3524105177035	8.6091299822187	8.50102992082111	8.17743167604472	8.41743637756929	8.24053189479774	8.34780280897383	8.5596614828896	8.3018302286596	8.61314392581969	8.55159371513379
+"BMT2"	7.91312643435261	8.15267801808648	8.17210086668461	8.3405300977992	8.3514576458503	7.85005227140208	7.73488406954106	8.21956837156832	8.53754342402533	8.24166961429593	7.7869440465795	8.03682231429206	8.31222970996239	7.51316979788127	8.97788760378785	7.70844033886379	8.27917298495817	8.20700151851649	8.3805155917814	8.22367182582887	8.14309400533246
+"BMX"	4.45098570805465	4.42759622471714	4.42432341958738	4.70409308288066	4.34264946102146	4.30291884282523	4.62556495900412	4.63734691566639	4.47909985678733	4.46702116905443	4.25440781475656	4.34915312807143	4.45098570805465	4.68847277212459	4.40477151537722	4.45098570805465	4.41349140202039	4.34022868408521	4.60973593181795	4.49852897839739	4.50636257663343
+"BNC1"	3.41603442714824	3.57065159798244	3.66213955019275	3.59514401897197	3.53595207466619	3.78411661033773	3.83240733121819	3.80262650847505	3.68478936555737	3.59324744446236	3.57243680871783	3.53420005940138	3.80184355395354	3.88877450995918	3.49287288063536	3.66732654962859	3.60296375355757	3.57879977916824	3.61649493042185	3.83952200619672	3.60816446228969
+"BNC2"	4.48304791081124	4.39219850354476	3.93549920076316	4.32233793377072	4.28869883633201	4.59294437109578	4.34057268666813	4.09702004231232	4.34057268666813	4.46630059370821	4.49712320337563	4.07400562369049	4.3267650878496	4.29938893389525	4.24662409269218	4.88559821367249	4.14537943740095	4.76334053129388	4.36089322791958	5.57743833451079	4.19699736222404
+"BNIP1"	6.72671286218045	6.85449943154279	6.85449745089947	6.47716622397919	6.74528642892688	6.33044306997404	6.66811067416362	6.63901197680447	6.4273512233855	6.46886950588064	6.77777442292175	6.86901338797335	6.30997109772858	6.1397425260375	6.47196480137447	6.94522006691085	6.54230287235959	6.89094593341345	6.77688400154533	6.94726201818861	6.70404378786717
+"BNIP2"	8.71767868941559	7.76853989504387	7.75325456145881	7.75273722852201	7.72312188345031	7.69218300766058	8.48422416536484	8.19747514394643	7.80069562344268	7.08113729342092	8.17926354597883	7.30695953910799	7.15724601047568	7.76853989504387	7.95118157683752	7.82632704584215	7.6562317920253	8.23224876232607	7.84864977235345	7.52657419580697	7.07120224001175
+"BNIP3"	10.860687101951	11.1186872615268	11.2193702591527	11.1356368730416	11.4166833832947	10.6306298763189	10.8059214997887	11.2518303965883	11.1691022733007	11.1207668824097	10.8989638845055	11.2206013794189	11.1375022992204	10.8721393232341	11.3259542476496	11.2893265171498	11.1194590835954	11.1312435107741	11.0875311113283	11.1177696057959	10.9568041529368
+"BNIP3L"	9.63499496754881	10.0915652489016	10.0215173000464	9.98973314171176	10.3332322423052	9.46752097746782	9.19169003068264	9.94176987598869	9.79908685241636	10.1604134463322	10.2427492109957	10.1018935127666	9.83986165121888	9.47578559211546	9.87864258560136	10.5686466767156	9.9998073355888	10.4338401713193	9.86749795535568	10.0029764220416	10.1383405863506
+"BNIPL"	3.76516846086516	3.51259314282467	3.81612240404322	4.07339760298911	3.72269781014335	3.85830768374391	4.0598368892755	3.87526704150681	3.81459983526551	3.80124657932243	3.6886614836234	3.71148098822123	4.06724516590651	4.25409225305852	4.35228168598121	3.71818007324736	3.92216177577978	3.62415210694893	3.95056283730849	3.78594856825786	3.64847201148117
+"BOC"	8.61835540833506	7.54108985023289	7.57982391154102	7.87638325420298	7.35127152474851	8.13706830075031	8.58107187381827	7.84223911570746	8.0079144951253	7.34914419906096	7.90225948654864	7.23708174170264	7.98158168265289	8.48561409887558	7.86834589644993	7.15495428752547	7.55632378036285	7.57172391071465	7.70991258689505	7.67638616624223	7.66063381660838
+"BOD1"	8.54585066440949	8.51027031988489	8.67732172278368	8.39727275471971	8.83459267802907	8.58910413769092	8.43649981133458	8.71150136523239	8.67823015762724	8.8189285871124	8.74833892327315	8.6410314841532	8.41331053026902	8.20654959467536	8.85001996314842	8.76082370792532	8.49071040096904	8.9901595625513	8.76552345071799	8.53752460210435	8.56208401431681
+"BOD1L1"	7.86030303420741	8.38682321197864	8.48667544597579	8.40738303449828	8.7801647943162	9.57018001767107	7.90921548058258	8.35862576020049	8.29448304579469	8.45041924636335	8.83537999161715	8.75570283405972	8.46776406076929	8.79303141066663	8.32786740180974	7.50983077597277	8.14045301867916	8.05987992060052	8.10681302815782	8.2022704173646	7.43530800405744
+"BOD1L2"	3.82193778411412	4.03349896825332	4.0311771519252	4.01643109099468	3.8330619218866	4.09279481040755	4.29652107067587	4.09435517988038	3.94847753638272	3.86980001998051	3.70034397628044	4.27555842801986	3.93668319481726	3.94847753638272	3.97487525667162	3.71173053202831	4.11195479026674	3.88509171534632	3.89827231132969	3.98030750021292	3.94847753638272
+"BOK"	9.79287249702108	9.67630371886613	9.35174484516102	9.78820597495362	8.91375725328688	10.1100063940682	9.6612034473315	9.26829381142363	8.35663344667386	8.5578973419968	10.5099145056603	9.01177009221955	9.10679702339275	9.56182864244771	9.433681415309	11.1578122791331	9.33239638045993	11.0573562569922	10.0360711202908	8.7965097735595	8.93675038331785
+"BOLA1"	7.25778318301027	6.87179069203839	6.9309332358175	6.63757907994071	6.92870370971076	6.75534243438819	6.72662831757862	6.74996602529173	6.70863274311617	7.14898182620971	7.12004930683398	6.71759802269748	6.33570316940645	6.59163582689585	6.34604087522212	7.28677927554608	6.44259841383098	7.38361715167907	7.12048645623999	6.91984813801525	6.61777269818339
+"BOLA3"	9.25150248190889	9.3864262742714	9.39992588810224	9.24946701716218	9.52874690376033	8.3562937587091	9.23093263544946	9.26221580976382	9.38874698710844	9.80871265426899	9.20085523008801	9.60452044029974	9.42135212151668	8.88127573293113	9.51913382800278	9.39992588810224	9.35891737470287	9.58829307260811	9.42077860885568	9.52338725061466	9.7368135180848
+"BOLA3-DT"	5.98449389747699	5.97667666951224	6.71236548598638	6.43880525545251	5.88514173991821	6.49435760482978	6.18499578479998	6.0054020580375	6.55828964952234	6.44079937546515	6.15937831592561	6.14893618509495	6.56318408445492	6.55906097447666	6.74992849925281	6.17205007820301	6.28894913883562	6.25885901300784	6.31507660262791	6.35589013838653	6.12465423640636
+"BOLL"	4.27412811978579	4.94182361172563	4.58404152411755	4.70330590175963	4.66701179395506	4.60432838805109	4.54871968948432	4.69400918722873	4.95621198916627	4.65727471741489	4.47803591498404	4.57834324943782	4.6713158027711	4.65802233393978	4.60432838805109	4.47687185184105	4.68028488688393	4.36344196537496	4.25094234942367	4.5596648109965	4.61854608117712
+"BOP1"	6.96948301542623	7.1287176246747	7.20011191381963	7.35205704400317	6.88439135384675	7.18611586451469	7.42871048680333	7.25307500850844	7.33894014938441	7.48795836360185	7.26843263111953	7.27433053759951	7.3939106908894	7.33075100046267	7.31821548578125	6.98353272961799	7.22365523928949	6.96505303756739	7.29983119921395	7.16977179795387	7.54352576835294
+"BORA"	5.47685112232409	5.22501762655705	4.88860304656559	5.09809065780141	5.01979263091349	4.91884354512823	5.18527341436015	5.03662770358251	5.17562009362389	5.02750296166755	5.15078532086826	4.70608918843092	5.15195898434101	5.08434163260989	5.24986298012689	5.43319692078653	4.97521056363762	5.05186637978945	5.07253647321072	5.02400576299474	5.24884733623695
+"BORCS6"	7.34392559089139	7.16998627866397	7.30600891858235	7.20346614286036	7.24649741920866	7.769705555484	7.59321447381511	6.97615541632748	7.2642161761246	7.31015763632331	6.96263601068494	7.23327861290009	7.35385830783584	7.58682945470759	7.32109662713976	7.25954982543283	7.16804132386735	7.3547632526573	7.36122022737981	7.53981860599157	7.30064594721235
+"BORCS7"	9.45695016338514	9.45367231494632	9.38352773946889	9.1753878127452	9.69657445310766	8.22873272909933	8.73744780530851	9.16633116647746	9.40127473579665	9.62571665941186	9.84837286648564	9.45367517523698	8.8849326426019	8.61559337257616	8.92710694200963	9.34674759192062	9.38466486299833	9.37054692432228	9.53827189180632	9.4063731540243	9.49215157017312
+"BORCS8"	6.84395493143097	6.90533551780638	6.52315471047592	6.13119925539318	6.14895386383852	6.63766799226667	5.05581732573766	6.22167165780517	5.78063729571607	6.3297449995424	7.38638569311775	6.37480100249899	5.69437784042315	6.2422015914103	5.91423351962887	7.43138197117701	5.6049032274462	6.75833570946898	6.13370888045229	6.46755264026552	6.34681522725246
+"BPESC1"	2.85124053788357	2.90884591958478	2.8859304082414	2.91862827866203	2.88373576929659	3.37839687634	3.11212255105429	2.95894620149217	3.21918791922758	2.96791063982853	2.84358745289624	2.89360942846517	2.96121710671738	3.08787402184623	2.94412141916144	2.85606706814521	2.90436489157279	2.81900709367405	2.98819263135171	3.06456960848446	2.99497858960675
+"BPGM"	6.65665403956825	6.69961605387283	6.55468281999552	6.19422678689365	7.0428988357604	5.91083668299631	6.04872132924993	6.44478373028628	6.83747273715448	6.9477259896805	6.66948716483134	6.41167114691875	6.218623174138	6.17623063221425	6.53126431330685	7.08564966308606	6.51006408033042	6.7644259267121	6.5900548257363	6.98554085489883	6.56352033971907
+"BPHL"	6.96644326501574	6.50427697334738	6.74731606813165	5.97815724299659	6.63774856055973	6.27845956459268	6.69918833230088	6.65859281217749	6.75843279928857	6.99532090677329	6.88850933314417	6.70540224312316	6.09795736658701	6.67397482339629	6.56011222791624	6.43523791658062	6.75681002043372	6.30329222113578	6.43721290118208	6.54354993943095	6.84077998819356
+"BPI"	4.84074474724854	5.00085833622707	4.8074662019996	5.05568125508406	4.87202084671812	5.13734123023851	4.9433974152186	5.01439074245556	5.1351323210695	5.12002137254412	4.89699716810346	5.12702158417125	5.00085833622707	5.25296883831582	5.26530834591922	5.16384329590016	4.98320230985328	4.54963370077334	5.00085833622707	4.85242937810425	5.11936214065846
+"BPIFA1"	5.19700722663517	5.3723518483953	5.20529100103569	5.69193839660237	5.32692006831047	5.14091024778573	5.27276939861273	5.074220417665	5.61582634033349	5.47168840132293	5.15066474918075	5.31818278195359	5.32692006831047	5.39058611469987	5.20701598248596	5.54616317894432	5.53104006256161	5.14649603751441	5.44658387048965	5.19778260695406	5.63376243937993
+"BPIFA2"	5.38131651446544	5.40905485023405	5.40243721119771	5.41883331871034	5.32631522162715	5.77344352607312	5.53485421735724	5.38737437335249	5.71049013956588	5.72921491493386	5.14161466594436	5.64310488373237	5.67316251759699	5.63006588910225	5.77891040090118	5.41657207294077	5.62939900189215	5.34810385551279	5.77804010942034	5.32899654599295	5.87636342320625
+"BPIFA3"	6.38257691374792	6.53008159981913	6.443834933189	6.61969840473883	6.40688784583098	6.51770759484786	6.64525626811315	6.42693441284168	6.46964488619953	6.46964488619953	6.17031346225353	6.40234781609802	6.46556643790019	7.10319492035241	6.46740189735664	6.13595103902645	6.54236518794607	6.14914395053405	6.42357493891968	6.61121072179684	6.52855555993658
+"BPIFA4P"	5.85223917402932	6.20938414217921	5.86919049469722	6.14602550478821	6.01882547206714	6.00990179220662	5.75256788328718	5.98121091785683	6.33263822094502	6.0488016142574	5.95025283819661	6.18841789261692	6.02163113409548	6.07039354339939	6.23946813894818	6.08814645151813	6.20970475987746	5.50860437852769	5.84377630504519	6.18171595209938	6.46977578022566
+"BPIFB1"	4.72397221321912	4.8251393111453	4.70551687367856	4.55121980332186	4.61120309989328	4.6790804948777	5.08052538773411	4.88381915397366	4.66547480836443	4.72083029964895	4.47419867685776	4.76118166049268	4.8633197741583	4.92481544405076	4.78447994247241	4.72083029964895	4.67742558515534	4.55121980332186	4.65834597731182	4.73957995609358	5.00930101157043
+"BPIFB2"	6.58249601194341	6.76870950837134	6.59011802265496	6.67983547276005	6.62614972341602	6.7237776872279	6.5913438721697	6.58226418746038	6.7608148389172	6.49576276296102	6.54095464325393	6.66124281050194	6.81318857787782	6.91495651248815	6.64530061884239	6.7012046260438	6.66169562882496	6.23957561327239	6.57342583649258	6.68069325679496	6.72020091375541
+"BPIFB4"	5.63282737911643	5.61942553459565	5.67983434828801	5.77171334785301	5.7139227056315	5.96937803684563	5.87067067022195	5.68495265066298	5.77001484075164	5.6730496199021	5.43788185860936	5.54624797420238	5.88666039252381	6.05086285738608	5.84324430367431	5.79184609768561	5.66183268819952	5.46346323949622	5.9498999777665	5.87402572194275	5.99879703826154
+"BPIFB6"	4.42058941229731	4.50643129871752	4.40238094272989	4.56037841942075	4.50643129871752	4.61046419147135	4.77956560423421	4.37453075888965	4.38402758261561	4.62098162763627	4.22596531250452	4.35445702061164	4.6721784960695	4.6718964295943	4.44721099546286	4.53552366041602	4.55987846807238	4.30692160198797	4.5941431199947	4.50935572686063	4.51024708759334
+"BPIFB9P"	3.84026483899954	4.17550651433366	4.10246670667321	4.03979539245002	3.90790243400971	4.23459553632119	4.12537296592847	4.17110920102145	4.26974808733894	3.92399709751208	3.84635141778969	3.96338204162675	4.35916163042523	4.12981651342373	4.03979539245002	3.98608764106982	4.1512604886731	3.93134796355706	4.06183870649352	3.88216607025755	4.06794546184736
+"BPIFC"	4.83400340104708	4.95943014296011	5.01629633893206	4.81898643665982	5.01483130522365	5.16418541801821	4.97258064620969	5.11064993352115	4.84958330151144	4.73403325372435	4.73718077687322	4.93721033056324	5.02617440652632	5.23077405031212	4.90862701853182	4.98189084582748	4.97460635926933	4.86787663311833	4.95867386984885	5.17393794215269	4.8723247768478
+"BPNT1"	5.66631766767109	6.01467235313908	5.56900311554001	5.76256531494971	5.90476011065013	5.44672792258545	5.79729934271942	5.82708031709164	6.17124758563601	6.47930890397341	6.24450265560223	5.9545848804726	5.85202994469596	5.89211932409901	5.92604570777667	6.33590421495585	5.81787046919866	5.86959965248119	5.90739189760262	6.2284942192823	5.77322834659595
+"BPNT2"	6.79031426303069	7.31217795248738	6.45679442497151	6.74026484809245	7.56911820932473	6.32222726461071	6.19090719485407	6.84956465118687	6.46905667199778	7.60223986345818	7.28104838965062	7.23518024466024	6.41446158631191	5.89069478194078	6.30578427135899	7.90779909665861	7.03341863076954	8.14760828724627	6.39099414657793	7.22977265182645	7.55239815419196
+"BPTF"	5.27078475882974	5.32708024302257	5.02945082209079	4.68041817203373	4.72545645894551	4.67415967098785	4.08964553932366	4.71351202193211	4.51862056834265	4.57603711353014	5.9817670756318	4.84952902547611	4.64236867518881	4.49755798728897	4.64063574791378	6.28433479543956	4.93570854241049	6.11357113781874	4.96976334276999	4.39517890557742	4.55045034363144
+"BRAF"	8.83737154191991	9.54743963717224	9.71655235478898	9.2778347651802	9.72144167965406	9.24404332073381	8.69097895063999	9.28224161236275	9.5983690170497	9.58024081308216	8.88843431535121	9.67408027198416	9.23237929731315	9.02984739747458	9.39018210682179	9.1326014398761	9.76143044511788	9.28702833919633	9.50071181774073	9.76858715782493	9.57153212884312
+"BRAP"	7.38745164383116	6.88469352074174	7.39870241884448	7.06353075929071	7.25311831127918	7.07294780200083	7.40498750748229	7.19121892992624	7.45210244477999	7.01557155177371	7.14500530309661	6.74539290562686	6.91568914207315	7.1804651466954	7.73294629918929	7.00708694866933	7.01419976856138	7.56375124745305	6.93373599462443	7.2452894836148	6.89138696755061
+"BRAT1"	8.59141164701447	8.33751388204479	8.36763360481923	8.20514310105125	8.10925455999988	8.43153495526884	8.28825344577746	7.9460534935911	7.99583715854034	8.28795275202351	8.36934359893315	8.03886734051902	8.17993951765032	8.42894136641613	7.92063650695921	8.28305823890592	8.24840843207759	8.21436714655364	8.00939634900932	8.20514310105125	8.02782471865866
+"BRCA1"	6.35804931511009	5.1420620640007	5.46693575719138	5.1434059899037	5.13206287785989	5.21767075867564	5.15988662094609	5.11718518931928	5.33806942284789	4.74156527670389	5.47831590142259	5.02137038904013	5.15795799802115	5.34574052443006	5.32147665428284	5.55789895216254	5.10881727366626	5.55506064872946	5.23910094021583	4.89572187348493	4.94446071051096
+"BRCA2"	3.12429616420889	2.96919692311233	2.98761527559711	2.80550102191252	2.92692110214653	3.31697673019466	3.08144303873661	3.11915142271571	2.89154069279917	3.13645256648828	2.91713797833719	3.0504368122015	3.00525644762243	3.09811581439193	2.80700879249224	3.00279417941314	2.99573300022307	2.98761527559711	2.91249497100165	3.17054129061603	2.97187078716275
+"BRCC3"	6.20993017594397	6.04940987262392	6.04940987262392	5.86705619178649	6.62875171226049	5.34948643194349	5.7233591282256	6.01982362382464	6.18345130058911	6.61927132875639	6.04940987262392	6.44752494723399	5.64596661139176	5.60504443362434	5.91960142759331	5.98144128818026	5.97482808657605	6.04940987262392	5.91536334384264	6.80067751487198	6.34290034203475
+"BRD1"	8.07659381831432	7.90832255320757	8.54861117704822	7.77187921501349	7.88644358417236	8.20226269995251	8.10056934593675	7.75005084219254	7.94138713096013	7.57170874883501	8.169064699102	7.48552428005303	7.88355345441636	7.87743122445629	7.8216782879243	7.84917113725032	7.67090277260301	8.37785146560131	7.85820277428506	7.905567062547	7.75397390191338
+"BRD3"	4.51039331962791	4.34057268666813	4.33809382054953	4.74618691255746	4.31995121662234	4.5406223873181	4.84728136745491	4.44606402736253	4.3547008969615	4.31478688216221	4.1703510048643	4.4779990395738	4.78078510666972	4.90580518523397	4.53950263451484	4.46368598437173	4.66565441199234	4.58168120893041	4.47685252527862	4.34173708869323	4.57871626120369
+"BRD3OS"	8.34218327446862	8.13877048015116	8.1716379924824	7.557604855983	8.16993243402568	7.47138072403894	8.04913112625054	7.97684076909713	7.76734381250456	7.94949561291455	8.12322461012096	8.04821837258124	7.43239507748523	7.66881289287985	7.40358761964905	7.61284252737292	7.75863073067275	7.75416729134677	7.63480138737436	8.21388614196152	7.83405412262802
+"BRD4"	8.05738024121159	8.10356968585932	8.54740920744906	8.17393348956617	8.30566757891002	7.46921152607127	8.16250030380059	8.10356968585932	8.1659632069032	7.74796368489641	7.81013814755347	8.07529455289008	8.3446886480434	7.78669855057273	8.209251068823	7.78683423848745	8.31760554851807	7.95128403749916	7.80262184197005	8.43120309651887	8.10356968585932
+"BRD7"	4.33609041024472	4.30362332151312	4.04423893994528	4.11956241497434	4.27426702288803	3.91747881625649	4.28374080305494	4.40047652942665	4.35401986348186	3.68161917715133	4.67573522529213	3.85453448186733	3.82282170321703	4.39319405475755	4.15303477319144	4.30897965707356	3.40575246448194	4.75301048424227	4.05197795891148	3.95841066659049	4.00762170201719
+"BRD7P3"	4.72833271062852	5.04968624470371	4.79226878751973	4.87178155670733	4.83851391392687	4.83851391392687	5.15247777378599	4.80535251637813	5.05489218336839	4.94260700620298	4.58179579023714	4.68339354788928	5.08692321505545	4.93338555208914	4.83939707178886	4.53552366041602	4.86030777941396	4.45541539395194	4.96042820677916	4.83851391392687	4.84615796451912
+"BRD8"	6.96960462202633	6.79408854762795	6.71928636221606	7.17673922527978	6.07629650135294	6.8178067696223	7.09608935253017	7.11999265797565	6.94129460261988	6.61357175430784	7.11385746276826	6.6120476262876	7.26178283514621	7.05069631378599	7.12796825862682	6.81145437301271	7.01609451855881	6.32750076738724	7.10706650801284	6.33528578912916	6.64912948436637
+"BRD9"	8.84274369613986	8.98426924388403	9.32337396347735	8.4501248914192	8.97139405973257	8.54029014882972	8.2686093431379	8.84274369613986	8.32325446763874	8.92574364893078	8.84274369613986	9.11495708151163	8.14088945294537	8.18910086727232	8.21044378015784	8.99356228962857	8.73634310267655	8.90760133231473	8.6330174239423	9.20396801884314	8.85125911141071
+"BRDT"	3.24209605855879	3.33381020704531	3.66838617116164	3.46877596210387	3.18587860260677	3.41222410027302	3.4728685924678	3.11015423792867	3.18002572459295	3.1228130415871	3.19974090533624	3.33381020704531	3.38926526089334	3.68225051193291	3.33086748099095	3.35652130002098	3.33381020704531	3.20914769085647	3.34517991192091	3.36402595494304	3.42393236164018
+"BRF1"	6.19190367726598	6.39899885752314	6.45506640924443	6.72805577641402	6.26008240772401	6.92994283313048	7.24255189862293	6.42161726414639	6.89116865707383	6.63880328195054	6.5665870777497	6.61615431810171	6.74926991334974	6.79869746333691	6.81540198325415	6.3950342297548	6.63405365119257	6.21666589015708	6.87317476020914	6.23314542286372	6.61760108656451
+"BRF2"	6.55458492934087	6.49148561518777	6.37882644252315	6.7632781605236	6.95068271765594	6.3024681229493	6.67106009345498	6.46348075325564	6.47590526997982	7.26375192488962	6.75696261290008	6.9538652073425	6.40809799635034	6.27625122806918	6.46654086522946	7.14010106234666	6.56567309946174	6.90768210083561	6.69960440904022	7.41552108987472	7.15386437516401
+"BRI3"	9.72010068458391	9.31868247858554	8.91525045236772	9.28644621580821	9.2028399998077	9.10827333331786	9.22929898428309	9.35928799410511	9.10955243008359	9.4469974419164	9.77557206658175	9.3688188216642	9.47211605790029	9.20326814231928	9.45736839121434	9.47323829925956	9.27724358700048	9.37178285566045	9.72648249411085	9.59466691050684	9.40180397592174
+"BRI3BP"	8.24966048502331	8.73584354069442	9.11522645133707	8.76824152011776	8.88979867176863	7.98441711571013	8.15405340010436	8.6962017089301	9.0368030947054	8.83554991596267	8.46567234260557	8.76536558293169	8.60752907921349	7.95446876457853	8.85189695516963	8.83354873376772	8.76982893700688	9.03605748720404	8.76487007818321	9.04376012645353	8.94043991012721
+"BRICD5"	7.97020957202418	7.8337243152318	8.2377487730696	8.0841649374253	7.88297150294955	8.52317462407427	7.98631540188477	7.70444003845329	8.0172566517431	7.69891715869377	7.61098934879937	7.80155546232136	7.97020957202418	8.3082805655518	7.95963366436694	7.84794673783274	8.08364763731887	8.32000547361087	8.06215856383207	8.02818485887177	7.83368280228351
+"BRINP1"	9.15768925777469	9.65954682742061	9.74585317076812	9.65359632333149	10.0467541335243	9.43318412370978	9.49324934733327	9.68849813818815	9.98710932318132	9.83563327541707	9.52078051289639	10.1760627931471	9.77487555445681	9.50601448588457	9.60685879180435	8.73948082884896	9.75145205045145	9.35252539174091	9.61539049635036	10.1048640867121	9.66098630706078
+"BRINP2"	8.02266595095597	8.89701958723621	8.90123567511109	8.47783875060221	8.81239846153977	8.34378804151375	8.37820894939349	8.42478762999452	8.74396598242	8.62337155606396	8.39560673232781	8.59430457891947	8.43677783814843	8.38690993813429	8.4665926931211	7.79970358375116	8.70816189575741	8.264830751494	8.37672000949624	8.73944029683613	8.38642897592012
+"BRINP3"	6.92169565600157	7.32797193544915	7.55615342208614	7.06006029213144	7.32974435281633	6.77271850762123	6.95653638617695	7.61735527676776	7.31958443153862	6.59350835355168	6.7766416440879	7.17580142587897	7.49147902091645	6.61620117866378	7.30029154601228	6.432793804515	7.34026611703185	6.49134770182171	7.15792706630084	6.87967046213185	6.15459009795991
+"BRINP3-DT"	6.29713458754496	6.68066822073002	7.13916055902475	6.40206729018378	6.90603677353861	5.67193904054752	6.56885564670666	7.07018047480198	7.25431744920662	6.40695051648331	6.21218786457381	6.3252275456565	6.45658295683977	6.45658295683977	7.33637031331715	5.81427346639337	6.51117351848972	6.58852988270133	6.71259366561421	6.13043238146735	5.68109079752758
+"BRIP1"	3.69553743237675	4.15351655901287	3.97703552761454	3.85589986608399	4.40098341174296	3.97744289383903	3.65525776895453	4.18434122192224	4.35723248284087	3.96089851493637	3.71242283158046	4.16895161568528	3.97316137394076	3.80961874761256	3.85348770213227	3.689038758317	3.97875852609883	3.87575921306795	3.99668445610529	4.06655989709705	3.96089851493637
+"BRIX1"	5.8901265353828	6.21976314139905	6.16362843272885	6.08340715721947	6.18981566941514	5.93634145790443	6.0610795953487	6.10131812906026	5.8704121990033	5.911802391615	6.04583686422223	5.79182079440282	6.04380732192825	5.80574053825678	6.32543748809644	6.5386331589002	5.82704790630341	6.44153335825418	6.18561031773432	5.94232561943126	5.9090847541673
+"BRK1"	9.59914711490923	9.43753546681378	9.63206902216174	9.36045822121822	9.68657382562249	9.3355592139818	9.43815078601146	9.5985956089378	9.62721076624743	9.61026359404091	9.44515096775874	9.56144254904197	9.41803033766872	9.36717596187704	9.53446757469254	9.62683807623135	9.42093237428256	9.52262029906555	9.45866326917879	9.75910780964509	9.62112762358674
+"BRMS1"	7.71493785225456	7.36786991310048	7.60442772182497	7.18772019685206	7.27127821524545	7.59946361558726	7.83323878016794	7.3071459472543	7.26689278402793	7.43507627291899	7.47694476149655	7.19650362216628	7.48618155608339	7.6637686157351	7.56301575873368	7.58798074307077	7.29568252173415	7.43507627291899	7.30908277258665	7.4360111717216	7.38842207739477
+"BRMS1L"	4.19808325478727	4.19512458493257	4.30288288258476	4.42624642832717	5.3997259867238	3.8888641692097	4.15353320347196	4.59942992285594	4.43348389998432	5.01990703491107	4.66741482383364	4.45935030353362	4.72083029964895	4.12981651342373	4.53278061135863	4.4883794421427	4.57798420623905	5.326442911201	4.49727219898429	4.71369196373889	4.99935202466486
+"BROX"	5.11090527587528	4.96428210551213	4.64511850042802	5.14222685140726	4.83629066819182	5.19316212132417	6.34444496229616	4.92496912362231	5.2124413710183	5.15283491148531	6.99323034349343	4.83851391392687	4.88326217473921	4.84886972286055	5.0399347396389	6.97033696363381	4.88673563957526	6.96420738258811	4.84368491648442	4.88475904033401	4.74032354671889
+"BRPF1"	7.9153675843142	7.77854778521691	7.86239424543498	7.86527546491541	7.71134033848957	7.92577852504863	7.91861358524262	7.45900919748913	7.84415732637011	7.56483122423134	7.80981621436443	7.38608101536452	8.12497145475811	8.0189884410325	7.91900545533798	7.80221601079601	7.67217994612795	7.84097727462732	7.74327230861969	7.72471797101642	7.72994050212061
+"BRPF3"	7.6883552280889	7.82577738366449	7.73966314446932	7.91382012381381	8.18049081895342	7.91928499612343	7.42676485722388	7.54410505882921	8.0340213644082	7.99088152599298	7.76784656658743	7.66409088739877	7.87268017827856	7.54572035517932	7.78273061581222	7.84005810773284	7.81030077842392	8.3672253633833	7.44133363679953	8.02529578820722	7.73616512034396
+"BRPF3-AS1"	5.32665433823601	6.10721331605719	5.59160201548583	5.79889352452768	5.8046063198732	5.84711514199686	5.7662511083396	5.87918981912612	5.9711637168618	5.8046063198732	5.88107837922989	5.59505011913873	6.08777704067724	5.96790443842411	5.71605987050775	5.93426880853992	5.71145598028352	5.7662511083396	5.7662511083396	5.73459957520753	5.88308772191042
+"BRS3"	3.50460694242736	3.71523350307108	3.79340624972589	3.61190418813958	3.86927060636047	3.95906521292012	4.08784372280296	3.63849447799504	3.71523350307108	3.5774775841865	3.42502871754312	3.74896731268052	3.86823952353232	4.14257842500168	3.7831173647443	3.72132298665749	3.84841617193687	3.363377568197	3.66750133934718	3.86350058508662	3.64601156633752
+"BRSK1"	8.82400081324379	9.52760175739853	9.67583839000359	9.89971284791778	9.36138505133657	9.55264945561376	9.72066128245241	9.29762391444361	9.49040065540472	9.57950706692553	9.33301970124277	9.56834553798475	10.0766826911031	9.68626264548222	9.39213376441199	9.27729653930048	9.57917163009652	8.96533046556375	9.77661396181218	9.36293141862105	9.65274348656685
+"BRWD1"	7.42611241568933	8.92976964785064	8.94020226217764	8.23496806151353	9.30759168052749	7.00439719332178	6.96581671008295	8.4936296895488	8.28528036123701	9.01370301331474	8.46200728630669	9.25256727229695	7.65922212241078	6.89441362394141	7.93451742384861	8.7806743841696	8.62860721368927	8.76876705322575	8.59443891893553	9.29894444892963	8.97660120212573
+"BRWD1-AS2"	5.27078475882974	4.93956363198741	5.12362577501497	4.93207476353438	5.29296150417039	5.13873319514477	5.20091758329144	5.26590355278674	5.1772729889668	5.07530448975585	5.08477997516304	5.08964153734224	5.03753517232668	5.22885674057878	5.23782403557875	5.60249354830352	5.1772729889668	5.2082406715724	5.1772729889668	5.12114236637171	5.29696558827415
+"BRWD3"	6.32741281717957	6.02466119740729	6.33078174901708	6.30556541585274	6.02429373085942	6.33826500249025	6.22828321598327	6.88536184611905	6.62373088292086	6.40625965332654	6.41274924133376	6.82371590083828	6.40800415708217	6.45771226296518	6.58147214565638	6.23296179739677	6.26065213410191	6.51481330324348	6.35325114840755	6.33911921355767	5.79710380044823
+"BSDC1"	8.62681858899916	8.70169802143405	8.94532237962951	8.92819201064213	8.56011106223626	8.90087881084319	9.06408183823075	8.75021363780781	8.74741570711016	8.56677302993866	8.88022631217834	8.59745463419192	9.06119870854534	8.91657709917218	8.79788064261686	8.48311253085167	8.75472798005416	8.63312287762783	8.65961677410358	8.54005934930262	8.50426833192269
+"BSG"	10.4854641032088	10.3890627057101	10.2067990671842	9.96258927950613	10.1225111725829	10.0540231259572	10.5700897682842	9.9595250516016	9.81006748807235	10.5056286159473	10.1373061245676	10.7306940266469	10.0543758322609	10.1964872961107	9.3639956500309	9.67757401538782	10.4793551276632	9.71816664343517	9.79307874389466	10.6103409778318	10.0734510828826
+"BSN"	8.78749870217704	9.55514861366945	10.0461949505132	9.82506245576674	9.97021144872715	9.65348289661881	8.8050895553601	9.1566108389328	10.0956146897287	10.0574993578535	8.87744941209397	9.92866193050863	9.73491447945659	9.60980564730959	9.34852580173672	8.82507239467851	10.0384594439207	9.23104664988927	9.41088764186741	10.0064939589039	9.86724652753786
+"BSN-DT"	5.64917790914268	5.60666629498134	5.35888067038423	5.51605958635621	5.42963338021763	5.32112060806635	5.62247897604725	5.1541877709874	5.61890193047704	5.58782372485465	5.36084936006714	5.48105185819155	5.43141547223631	5.78887675152335	5.87392215693814	5.54446852664331	5.53184339952969	5.13560995474592	5.57985268754533	5.48068181203096	5.29757767564047
+"BSND"	5.60194945621522	5.4450233888258	5.46900323941951	5.64644444909643	5.53087748262996	5.62299999446427	6.02587975586904	5.63075134192921	5.89336049413732	5.61671160494456	5.6765229423428	5.58411493133644	6.00261478204357	6.11002026897271	5.57326525066616	5.77556619754066	5.7662511083396	5.35510781052785	5.68166867653592	5.58062723701183	5.8668976310647
+"BSPRY"	5.7359964222845	5.16973346857336	5.55899321396531	5.34852693571469	5.93489430430868	5.67719108512334	5.14805593514756	6.00736189825243	5.56375920231466	5.92035826975235	5.48898949600344	6.25798123599754	4.86412915686677	5.2218653232714	5.28437882898049	5.71381272085396	5.79981149062487	5.56375920231466	5.28855180215056	5.86258506751695	5.72677520200088
+"BST1"	4.54751080496412	4.19818030628423	4.36505958795605	4.23698591782315	3.99092927651768	4.65096965599057	4.58648207694269	4.41031466144451	4.02682517133274	4.38529641984258	4.83945341724895	4.30291884282523	4.43556392539808	4.86090620963028	4.34634699370544	4.74147935125987	4.07432599023536	4.29347804787369	4.22005452063839	4.37253480609131	4.12273627849139
+"BST2"	8.89708172707778	7.68282589412215	7.41149317172399	7.7230931782985	6.96729163306231	8.05545266457229	8.43632258793716	8.28696112651073	7.62069744179243	7.22547309659667	7.95807021109418	7.78897412810494	8.13686290358079	8.18418497671804	7.75301881803266	7.42791278492474	7.43549083480505	7.68831973183959	7.85221593097093	7.7988913967307	7.69732414539702
+"BTAF1"	7.77141458494797	7.81935592898746	7.89852172082869	7.45585241898053	7.85728050530279	7.71859715962706	7.78841347281769	7.77141458494797	7.67713076199099	7.47214604344288	8.21339660703594	7.51048291672943	7.59480268110515	7.73882382815259	7.75709993552409	8.27124218350516	7.81613339716162	8.44703520495941	7.58687305295662	7.63590185421103	7.41026341819118
+"BTBD1"	9.57498297445746	9.76482069244803	9.76882457514026	9.82284586606649	9.86984964318173	9.19642348306324	9.58740793435461	9.71504297041505	9.91240928036978	10.0816738179598	9.95226578264773	10.0007268968831	9.81949360328564	9.73236889274676	10.0562627512566	10.2162227918091	9.82650142301956	10.0467160558045	9.97682692069065	9.9261596396335	9.96354303129761
+"BTBD10"	8.94126717296511	9.38397191279047	9.62234419172177	9.4908028641676	9.99267650915566	9.27992863608455	8.62812315683405	9.1294345811446	9.92845705769718	10.0475062001607	8.99646324817975	9.82751930793248	9.40249346199536	9.25397916205347	9.70918027210048	9.46975346951812	9.86633127139179	9.50166863502526	9.77347330400161	9.94166508905198	9.95462066600529
+"BTBD16"	4.40080477927134	4.54137198263651	4.42507033952382	4.52577697602477	4.59161386900441	4.29307975282358	4.58380920366061	4.52577697602477	4.22593169775944	4.40315264018442	4.7275107124078	4.43752811059595	4.36452474625246	4.75071310903032	4.53499089180166	5.58987792978125	4.30864325030698	5.26069480689105	4.53705316970245	4.18598748476671	4.53041463890565
+"BTBD17"	6.13922436859426	6.17065293064047	6.15418350181693	6.00469423974149	6.05336471122381	6.48752054603082	6.56525701074031	6.10233922035999	6.13922436859426	6.07208037381922	6.07360127694947	6.31774265897743	6.29377109158747	6.30608705959833	5.90424702513381	6.09253834761238	6.01648225147531	6.33394935138746	6.15280353122745	6.10116483282856	5.93997610698383
+"BTBD19"	6.61308576247299	5.70310902842628	5.43866268275243	5.50076182085259	5.3588982905764	5.56170263977565	4.88837358366257	5.48909640976681	5.21719961781457	5.49268385285789	5.44502863804736	5.44849685418247	5.35208986333357	5.81121094896283	5.07419593646537	5.1448340364253	5.24332038129953	5.29727937491151	5.3172674972984	5.64257587704296	5.80236902130246
+"BTBD2"	9.5406934983158	9.48350840852191	9.90275454768258	9.69699413064805	9.67074753068006	9.87148185982429	10.0019430367643	9.69643688497811	9.85968708100143	9.76955644578123	9.24203270495272	9.61255388446662	9.90335525426024	9.70865362606401	9.36170232228183	9.09300627921039	9.6891248727628	9.14459027584169	9.75610745500489	9.96465055126976	9.75362364081071
+"BTBD3"	9.38145317979113	9.91414525981904	10.1435639134952	9.85153704075005	10.4012349735962	9.3851563076992	8.98756598668396	9.5767435683403	10.6264230614465	10.2020773711957	10.0715653753264	10.012452484045	10.2549536996399	9.07562271215208	10.03889290833	10.6107533783721	10.4781485732903	10.7730144755159	10.2486690342258	10.2988878443893	10.3289755746996
+"BTBD3-AS1"	3.24888704633143	3.72311954406123	3.28244027771214	3.24558045484104	3.43064913559443	3.36542729246455	3.65404527285986	3.49337323459124	3.76951125413195	3.23905703290424	3.81197821423278	3.47115147475991	3.49337323459124	3.40689408523693	3.47401604275739	3.5502054814456	3.66630594650891	3.83752115723811	3.45536943381864	3.49337323459124	3.47963541576134
+"BTBD6"	9.99741346880384	9.66800150456514	9.7322147387965	9.961896596618	9.90505800329992	10.198378927554	10.0073682810169	9.80715481932877	10.4377003498202	10.1159732253677	9.45680697478758	10.0003002464914	10.1250584805124	9.96926529540211	10.355715675346	9.42742543795641	9.98364080706081	9.49978570485201	10.0295417420479	9.97008913796396	10.0327313578215
+"BTBD8"	7.7699473609959	8.66076414057564	8.8068795844467	8.80937092447001	9.40588998482812	7.22887751667864	7.48654906605576	8.34741630517001	8.92636575190431	9.12949569341835	8.30973687103668	9.41871909405838	8.82505523690267	7.77045167940062	8.86628028469024	9.17363571024018	9.20972041913993	8.83383126584494	9.09607203013345	9.34509171413413	9.48046630637432
+"BTBD9"	4.70388243038156	4.96974423130763	4.66291374440096	4.59196354516287	5.14510208336765	4.05592219648241	4.5144936506347	4.69357372107032	4.73338885301159	5.08877709886236	4.75728193141384	4.82597982391165	4.44996750381805	4.09831689582093	4.4095635726444	4.8967960953965	4.88764685234429	4.9970980577487	4.68090971344661	4.99593923574363	5.43283403867699
+"BTC"	3.14703730308139	3.23698621850155	3.62492252853248	3.30154317752238	3.59083684119926	3.13345894375486	3.13645256648828	3.3454943077779	3.36517134644416	3.34552751896739	3.3415184989546	3.27420848537286	3.12102697804342	3.16909439242177	3.23539833312245	3.05761774196663	3.27999448859225	3.18123152732374	3.27038246554774	3.48731209856999	3.31986303317448
+"BTD"	4.9022322866446	5.22018293114512	6.55312870104725	5.17705717575569	5.52553265146637	6.132995288429	5.60355415032487	5.24245040065937	5.13658501138391	4.98341633432904	5.97105508330456	5.58998915888436	4.79189047691502	5.25606839928333	5.5401633023741	5.21625644339107	5.01326174598455	5.22608293885502	4.71733487708827	6.05572416683983	4.8582341609131
+"BTF3"	9.74607031106427	9.70330057610972	9.52298786426633	9.77823135460718	9.79028247842527	9.28922649571953	9.32344389330732	9.86563103328592	9.94874185452995	9.77349564549458	9.96996847149349	9.80998234555016	10.1038538000566	9.48649588096775	10.2958115575877	9.69954990673543	9.73968195582398	10.0267816218592	9.92911899991157	9.291899175102	9.82786278285328
+"BTF3-DT"	4.69336278037544	4.76694945052037	5.2186271632433	4.40469431290136	5.18436956644232	5.329373663872	4.72083029964895	4.85827000957487	4.49514250347413	4.94096872870341	4.92010580702	5.02949897714635	4.49497619638741	4.92203005412205	4.37169210589592	5.46049976254501	4.43866041988109	5.70873440360361	4.54015820829832	4.9061617247637	4.18811580437282
+"BTF3L4"	8.49721096138723	8.83870065779829	8.49984983222769	8.61013994262146	9.06741897448052	8.22719601163421	8.4289302563361	8.50418855169488	8.83513341341077	9.01198018010791	8.53782919513823	8.81062811159551	8.472540527543	8.24807595268112	8.69862975200624	8.99198104675139	8.85072687367863	8.87634474996701	8.79346784675596	8.8817467101138	8.88495965318208
+"BTF3P11"	3.64412061090917	3.63414775275363	3.34314157209106	3.8565358612088	3.59934539892515	3.60427247807891	3.84786608235327	3.69481367875989	3.72215393779156	3.66696942879563	3.56591222101644	3.73997315024777	3.67305287782811	3.60932439538302	3.71877170683094	3.53149374695388	3.68332646412967	3.5642437970702	3.80893177933102	3.52244901127759	3.64570101190796
+"BTF3P12"	5.43260616279228	5.38553708850916	5.14913683069295	5.34228321202241	5.48221040853517	5.21474594948236	5.632531411708	5.59617585835322	5.42946830778401	5.46494284374001	5.63035089122958	5.45038365376066	5.42579031551358	5.57687994910109	5.36746413042304	5.42946830778401	5.41106112083174	5.51705787052312	5.61647929813772	5.3957631720002	5.60154410436514
+"BTF3P13"	3.88509171534632	3.84870944891874	3.81329996626404	3.96679086293861	4.10116473403773	3.84232318792524	3.87649129800309	4.06870502570792	4.03483633556683	3.99828488755151	3.93634887391427	3.87753581377594	4.12111016678412	3.82347605211627	4.11149104299647	3.9087306063887	4.02406295571777	4.03324659822201	4.10705976697629	3.81616902513206	3.98762508073682
+"BTG1"	9.75448645713084	9.12427539421582	8.95455028358036	9.21648637464184	8.88851930189263	9.27413691555412	9.05049152653641	9.98046481702229	9.45607397738418	8.94239280171712	9.29762701668566	9.5492512125728	9.9034944122803	9.64920282150268	9.21333005825714	8.61308623531436	9.83848465895425	9.04163785958229	9.65979627681643	8.9380626257515	9.20088524213507
+"BTG1-DT"	7.37022988331057	7.49607527812478	7.55028919480986	7.45850338218245	7.32069459781919	7.82663608846827	7.7857648939336	7.50593790191404	7.71710281408962	7.67383609239071	7.4681751251389	7.62489283773757	7.73085930097003	7.77912077250635	7.74295900856146	7.38211074835512	7.60962914935952	7.35868121676698	7.875615520568	7.42415644960884	7.42868099274247
+"BTG2"	9.69283370092351	9.59015072268081	8.40568192668359	8.55423625972496	8.61302860803581	9.60660804987528	9.26077606460169	10.3047926865187	8.21061052963681	8.53640976257174	9.1162336210329	9.92057463754043	8.08825278450003	9.00329048265023	8.29128341829175	9.12909604396946	9.60055869124027	8.90088526833819	8.89212358329869	9.01327671886302	8.76063398974699
+"BTG2-DT"	5.38591794670828	5.46248346319184	5.50182811884132	5.66373755294574	5.5941733389914	5.56709023946608	6.09892250101798	5.29584104784307	5.67208888831846	5.5628291754168	5.34965072429133	5.48902395273929	5.63266042111627	5.87510507296975	5.56709023946608	5.76084492871714	5.56709023946608	5.35305947588247	5.57731985924525	5.57774964704611	5.61111306186914
+"BTG3"	8.53891237147151	8.31753646473832	8.02802073252054	8.17804314591019	8.17262262467892	8.37738996203331	7.63344425024614	8.68920094192932	7.61333205081362	7.7717030156443	8.84475704352566	8.59119811883083	7.74020442735863	7.93288224448585	7.86029659066708	9.14779168691453	7.99902435959487	8.68814198834728	8.33400165328466	7.95539218631616	7.39277880061003
+"BTG4"	4.24560981738157	4.07423145192844	4.19818030628423	4.19949922780962	4.51924885154611	3.92520037217599	4.10147860672311	4.04378900101162	4.35803857725405	4.03979539245002	3.97207783541106	4.36265085296857	4.32612391871793	4.02952680959668	4.53026292149357	4.35566745918376	4.22815689791071	4.23892971830512	4.09402516092617	4.04002506296341	4.24504867226275
+"BTK"	6.75911090263917	6.88658664807735	6.56263540032819	6.76826527863109	6.57891818880407	7.09074431550572	6.85474259326791	6.8046024279456	6.39487517988831	6.72318319212652	6.42776870728478	6.47960538076321	6.76826527863109	7.36906622137746	6.63776684511547	6.97516746539439	6.78313779763745	6.26265196273859	6.4863408389468	6.87499869746032	6.93933968318938
+"BTLA"	3.70632310137397	3.57127231444104	3.71492022958137	3.62598352648747	3.94847753638272	3.96036178565819	3.95541313861078	3.83353097716374	3.92611823508684	3.75984772472448	3.73597743851067	3.83353097716374	3.63840094383385	4.05179117442097	4.17466761987901	3.83192239635234	4.17575570945284	3.60864763126356	3.82425991267158	3.68714201136617	4.14452310294617
+"BTN2A2"	7.12673545395411	6.26156922788423	6.30198130245036	6.32600811942475	6.3376085014879	6.48710228557473	6.42386128595201	6.61948030992292	6.40051555493479	6.57356674877429	6.57816805846476	6.52287518755408	6.53651534758057	5.98377298462306	6.58403621210586	6.33826500249025	6.40310117677976	6.27103280755485	6.61180580335795	6.6177026443666	6.37486320792239
+"BTN3A1"	7.61780370853744	7.47498397656239	7.30813042952867	6.9507152152928	6.99401872359873	7.20769966376014	7.15854444946323	7.50254900206502	7.06720434023894	7.14725487919	7.62069675243726	7.06468086653899	7.31969781985693	7.59403327229612	7.10248809627115	7.26556632342698	7.12787321988581	7.56593962536673	7.2990774151096	7.33772609701336	7.67937682635459
+"BTN3A2"	7.072652476613	6.40334679533397	6.17388351644803	6.61759502693923	5.85316636635666	6.81976698357666	6.21481625351284	6.99294422611679	6.18551439110213	6.42620294359454	7.29474325852918	6.31774265897743	5.11637209376537	6.40334679533397	6.37571636996501	5.94759949917558	6.22877606012491	6.10471632697935	6.35661258436729	6.78630967957179	7.34053993204637
+"BTN3A3"	6.10081217947174	5.40485576010667	5.35636453744483	5.02075063181647	5.39586481215563	5.78459119884569	5.01918986455677	5.60450200006452	5.04924035957201	5.34414555526004	5.63018296517734	5.37692795203619	5.47322093052742	4.96418298160121	5.08941033342787	5.11120369918061	4.85622802513007	5.71289143237587	5.21931726365147	5.71833598645376	6.03121247832911
+"BTNL3"	7.53703834968018	7.58357654902623	7.64078236861454	7.64020791042429	7.65667899640263	8.29515157726428	8.33839877646838	7.46984674655299	7.88890894839563	7.68024741690183	7.51605772192568	7.64096241168508	7.84177510694555	7.90108722128266	7.40051305031556	7.63489272996252	7.72020061718863	7.31226418488674	7.58948010519922	7.76219495532106	7.65294467730635
+"BTNL8"	5.24772974281962	5.55883002579696	5.25133689931855	5.62719018873039	5.5077985568484	5.49355329652916	5.76875939294046	5.45247445696146	5.79608450905793	5.3959700410186	5.18669313672557	5.73586417311183	5.52229653944755	5.54392047569825	5.60244300386434	5.50543323479383	5.69774377761522	4.9171264032844	5.44004903984216	5.47575126301389	5.529017307394
+"BTNL9"	7.90735169903392	7.53142987807214	7.99573443421439	8.14393392707682	7.28744558873953	8.35753906117647	8.62100777483494	6.87185843060372	8.21036268595497	8.01072881498684	7.65535459786945	6.28728200923485	7.8963537915318	8.46295112776126	7.91997897145153	7.37007919539019	8.68034619887027	8.19806152866559	7.00293478749485	8.0087019281451	7.40296268250291
+"BTRC"	7.71252508275227	7.56280442393565	7.38283465950502	7.32338766897988	7.60842777529588	6.94236660593286	7.05638144262496	7.53064379845467	7.206725284691	7.80987095700527	7.3957421268055	7.72747239486605	7.19268393547745	7.06113305571766	6.98929498185345	7.96312789139213	7.65923002424965	7.14157185075671	7.4601968534707	7.93153461533267	8.13940151685781
+"BUB1"	3.85751759992149	3.72153196843887	3.55949578494765	3.69891747894134	3.98922138078394	3.70675569848176	3.91100526616618	3.82651275330562	3.96779852709763	3.54943018169526	3.51660586695132	3.69731498106609	3.79789751493351	3.71236059882383	3.72153196843887	3.53251658089297	3.8773342181302	3.56687053103852	3.73748748552019	3.82111426440393	3.94847753638272
+"BUB1B"	4.58571508987128	4.4547824228731	4.53269748845061	4.57018250120868	4.70079424013674	4.59090100851885	4.49430369463412	4.34593878590678	4.44910654317452	4.69706964413987	4.26343021076277	4.6110905819672	4.61360003972392	4.43750655577627	4.5344204869349	4.47150463668608	4.35001458584273	4.16529665400697	4.35001458584273	4.54016912010353	4.55514895521473
+"BUB3"	8.13538457924175	8.29508635411677	8.04561633520404	8.30531017957783	8.54440729154205	7.87897823478272	7.46441049992012	8.13936376168743	8.41264614426904	8.33031681228911	8.65067068353729	8.42083576592219	7.47096451133159	7.52818660744127	8.00587469439767	9.0391099603327	8.18123176833257	9.00047416376134	8.37837298767529	8.3006171860038	8.29988805242096
+"BUD13"	7.21153367319435	7.00051583189515	7.52630742658158	6.74904076343005	6.93788389442933	7.13081736787554	6.97383918833626	7.08750702626708	6.82860097972942	6.91290822054303	7.20941293261006	7.12147354601354	6.71792524936504	7.01298878706655	7.01298878706655	7.1835495212667	6.78561214113555	7.73886051676002	7.0111378857173	7.03979018866794	6.7847784852316
+"BUD13-DT"	6.30134034194369	6.40220405043551	6.79613917826834	6.7328945849274	6.75886174840072	6.95639235956727	6.68458396877338	6.31601944212345	6.8420104531613	6.7891323773286	6.34270885589836	6.68458396877338	6.74188706503726	6.65798266279127	6.93811125598975	6.34919794951254	6.61944143557745	6.33904395911635	6.80168315664799	6.72026472910012	6.75751125677883
+"BUD23"	8.56863934613532	8.53569643426176	8.7886994499583	8.44549146365349	8.76146059394495	8.61287648433037	8.20964201499755	8.27475546177701	8.49911673194721	9.085288371011	8.75490792819321	8.61136056015807	8.50848974447247	8.17796605802744	8.55543501114257	8.74406836071131	8.44452936672892	8.71639135208142	8.57222713449953	8.93866191356598	8.73577696700611
+"BUD31"	8.72148656534167	8.08389957205135	8.4553981415877	8.24522121589551	8.38999141979269	8.04291746233104	8.24123089964903	8.43947630103281	8.51177704248249	8.47222770067462	8.41111001198189	8.35086099941393	8.08448623347843	8.10209840462572	8.58794966371753	8.53464335738948	7.95703534441708	8.53446716069983	8.35012959940318	8.660655885222	8.36259688848943
+"BVES"	7.18730934745543	6.8943913657511	6.24974508249963	6.94283241478384	6.7770531394271	7.58668158186016	6.94958988332575	7.07028081080654	5.99962639657131	6.47695298850734	7.12376154501072	6.56779660031451	6.90470084507753	7.2264924429167	6.99744499770685	8.18719940288123	6.78522660752832	8.04832557804285	6.93989380339227	6.38538401625406	6.44698808816002
+"BVES-AS1"	4.1372185295181	4.04669991655075	3.96597748891338	4.1090322173427	4.1160757927687	3.94514969490111	4.07620721152819	4.04499163904366	4.27866726672306	3.95785510751507	3.9705334116353	3.92142407918787	4.30942413609632	4.41469469471446	4.17172818983568	4.61952325832417	4.04669991655075	4.62959114503078	4.17669152975512	3.80005852962073	3.76716268031669
+"BYSL"	6.45593676714518	6.59361593165903	6.97516746539439	6.63636807590223	6.99006928342091	6.48622040907146	6.55762675061922	6.28169997281173	6.30589437446562	6.70385760675377	6.2030763496523	6.48878720196321	6.53499532365606	6.67318191073649	6.48736446627437	6.72215824228565	6.30810059524003	6.93792988146726	6.27882495377838	7.04515459547269	6.67498106043138
+"BZW1"	6.69151433117122	7.79440237515381	8.40429621581785	7.1022936848317	8.14468942308616	7.72634093591782	6.65871121329641	6.89124334888879	7.43945590311786	7.58942132773119	7.37188739741911	7.4075886004784	7.68977959678165	7.44812967273135	7.35744925324017	7.10587866907845	7.19525111985875	7.53251868882634	6.78412646384616	7.67347850354898	7.41892339494614
+"BZW2"	8.19666147452375	8.4330629020813	8.96153629960057	8.18303844793266	8.88147532642471	8.69196285824937	7.6550611987063	8.55645076672607	8.40707548164776	8.46663708575306	8.20939045764794	8.80045802028453	8.3233700313554	8.29908037113127	8.48229040310105	8.32031511914884	8.47906177924834	8.59056431723441	8.25335925607877	8.68867704803647	8.4569172902232
+"C10orf143"	6.0589218681454	6.05759215012364	6.09960204380725	5.68215291217392	6.04220599268893	6.24196139903082	5.76668788668621	5.38643209706934	5.50944015853245	5.96228722742972	5.93900793816728	5.33454481606549	5.69370664581328	6.21750447736884	5.47739087511536	6.01327326420354	5.12009387346196	5.82648687307589	5.41095568631502	5.76067136082949	5.77830483830303
+"C10orf53"	5.28627583322923	5.2272095405193	5.22731065148616	5.32692006831047	5.24107172338967	5.38249276958815	5.62502590556356	5.12679260589031	5.26627934289821	5.06613013453606	4.96824927130241	4.97782071190795	5.18048101454272	5.1671553681975	5.41034007120725	5.45500370508007	5.2272095405193	4.88188181901374	5.37162703622852	5.29284127630483	5.2272095405193
+"C10orf55"	3.31584665874344	3.13001665679862	3.372845640335	3.20931485854181	3.23133600545421	3.54127067137852	3.48722240731232	3.30413981714948	3.35586891391844	3.26267207146602	3.03247961857259	3.19008499752196	3.22779411876418	3.27938425794818	2.96538310087194	3.34627540304049	3.26267207146602	3.19667935838788	3.35172966613079	3.26267207146602	3.05804329408001
+"C10orf62"	5.91606838829758	6.19038766178699	6.47950340209232	6.1948648956666	6.25975585486541	6.72670697142586	6.59219254372013	6.05651205837428	6.32189552951302	6.22436321691284	5.96054528292806	6.21329227292055	6.42038374738584	6.81603163479224	6.0419070725194	6.22436321691284	6.35425599507729	5.90987720492816	6.22436321691284	6.19941075173899	6.10167112094689
+"C10orf67"	4.4066282850818	4.64490331344651	4.61738986277418	4.51354274850797	4.54086832632531	4.09060492090643	4.76471526165059	4.52931578589396	4.48382103576345	4.48940185955019	4.84076414055617	4.65468702942283	4.60460894888926	4.55753291885166	4.37632005373589	4.87368443978897	4.53683984966456	4.3548281236613	4.4666617149891	4.38369839458616	4.66784483447504
+"C10orf71"	5.08850033703372	4.70111405596516	4.996572967002	5.2268190244611	4.84513552635282	4.88044916893753	5.36082764927331	5.00527354440312	5.14785645014479	4.93142308780679	4.73474500637914	5.12365329568046	5.09124966863345	5.3724138481519	5.09882463162136	4.92625816954863	5.0034976270304	4.6857367359724	4.89956992067404	4.87233258815921	5.18953191157364
+"C10orf71-AS1"	4.59164536890293	4.8360016057774	4.80214550212127	4.93207422796671	4.78700737367672	4.91923653561195	4.98335422567994	4.71621442465052	4.8340912739849	4.97566571206437	4.89824718165329	5.1057447308624	5.17531102246592	5.05697319671927	5.14957287581121	4.81048460055486	4.86366461336209	4.83253003256814	4.89824718165329	4.69079010827684	5.01337172748321
+"C10orf88"	6.19405833636075	6.65324572552505	7.05939632427778	6.55462430633132	7.1076753699161	6.69994117474339	6.07689628625011	6.58580922554403	6.40590057478209	6.70427199312364	6.40758744832481	6.66452270743229	6.2041017281575	6.29993976939029	6.91698127110139	7.07650351932251	6.72289292286066	7.32926391322446	6.55303494944464	6.99579525705171	6.72151078021571
+"C10orf90"	6.62723438586735	6.99057236637929	6.48781014752801	6.57516458371685	6.3112826240124	7.20144258028002	6.51784254243349	6.07854110773496	5.32191344494452	5.58612744218254	7.36283868475597	5.30915162953036	5.901990733395	6.36100880584957	6.11684103543789	8.51201605280687	6.07140399772656	8.16910821144675	6.36100880584957	5.49541434356896	6.29203371736229
+"C10orf95"	6.08159412465747	5.87113418312714	5.86644395928486	6.05911335515184	6.04783781684174	6.26237021704498	6.37256796289335	5.76662961881322	6.25975585486541	6.31491450939326	5.81093950241101	6.25092478943075	6.1930238684287	6.27749724896627	5.90948950597192	6.10971225170518	6.01093805594044	5.82287033003888	5.99127579787002	6.00910619411249	6.28750454246974
+"C10orf95-AS1"	6.33044043959732	6.43233305565494	6.89673051658545	6.44892840794738	6.52285166862229	6.22750894788696	6.66129621823473	6.36933546753542	6.40658766205913	6.5577018416962	6.4581071536119	6.78479994562842	6.33935974778559	6.69441596133751	6.59549040662479	6.36525597950949	6.25834307884077	6.59226332710488	6.58767126746066	6.67332275315646	6.39342771318381
+"C11orf16"	6.52813120898041	6.42816592285478	6.54991554139668	6.89821779355567	6.49361855437737	6.74592547602992	6.98713050202263	6.59219254372013	6.65751577438346	6.78177415706968	6.43955421998917	6.41335836192124	6.79796350082333	6.7836719520398	6.59219254372013	6.33826500249025	6.6949426723392	6.06624745761609	6.59219254372013	6.51214678454529	6.67251186063467
+"C11orf21"	5.41146593564728	5.23523994091058	5.39576317200021	5.33171132858822	5.39576317200021	5.64372325546358	5.70643909023257	5.44571698270002	5.50563197376072	5.39576317200021	4.92713808199559	5.35036862635528	5.47035714960753	5.6786901816463	5.53720272086095	5.29900854526708	5.12028129165701	5.08961511921079	5.30097962000209	5.18834687863715	5.4026080659964
+"C11orf24"	6.73859505951507	6.74721887187111	6.86701335345611	6.44743653132673	6.77167493960224	6.58987062333671	6.13871866544331	6.34598756433207	6.49461036560333	6.41859100809341	7.11352719167099	6.19404734406848	6.39625109126829	6.30897750653056	6.34037284165779	7.37104132359968	6.43917088076541	7.4478529904126	6.2726361031508	6.52815433246097	6.79952658921953
+"C11orf40"	3.44223405850043	3.39810421114475	3.41968830827479	3.30836677292992	3.51898203045909	3.2009343677833	3.34279169019228	3.34215571292522	3.16335133137766	3.46039354039605	3.39810421114475	3.39810421114475	3.62125372010048	3.57044917919766	3.39810421114475	3.329930129618	3.56356934202153	3.19132916591266	3.40144596375438	3.3277970809888	3.47488214469641
+"C11orf42"	5.85005941043641	6.00261717565234	5.82863259499741	6.27956512688742	6.18682645520596	6.31858160677212	6.59391422845698	6.116647962608	6.06129582336825	6.15549116024394	6.02887206127039	6.22410812292556	6.26690882677525	5.96612017701595	6.06874750432383	6.17406731590286	6.02263260843666	5.83503755217926	6.14502263392812	5.94030851202175	6.24961056053002
+"C11orf54"	8.10689047946176	8.01328433015272	8.00605631939251	8.27171389240665	7.94685165655477	7.52263591616995	7.60611520676389	7.9033071921021	7.66510944367121	7.86579793393492	8.94243259633301	7.69916042539788	7.55994900737953	7.49014288400265	7.76853989504387	8.61121634107234	7.86805186663654	8.58553055427023	7.94838593616512	7.51673911566305	7.68977167959554
+"C11orf58"	8.8098803009048	9.38270544688251	9.48387556001018	8.67970655226784	9.60144689621739	9.05658977858984	8.73779700998827	9.0463136008935	9.36896844319761	9.61003488951125	9.05320241011832	9.48204314120806	8.65241893881694	8.68276539629413	9.21132380855846	9.08995470307684	9.18400904870829	9.60840405635276	9.10888499960885	9.32430585461351	9.22051452250443
+"C11orf65"	2.92356197087284	3.13171123505711	3.12080813213998	2.96237740036876	3.04423497339416	2.97238884899195	3.13645256648828	3.1041786036373	3.09120875812061	2.94114116944594	3.09277765197846	3.02639303629243	2.9155735592485	2.97764726086413	2.79476856757378	3.43760385148895	2.99536971703553	3.01942236873769	2.98141856796509	3.01706011489566	2.92507888685906
+"C11orf68"	9.2788998515558	9.35406272056275	9.76601016098188	9.30055259740003	9.58513268752504	9.79086930379895	9.26479105552295	9.38618362556336	9.51190813512923	9.4708328161665	9.07286105745699	9.37736543795143	9.39926555743094	9.48127740606062	9.39963244015172	9.27120479833046	9.48717994924368	9.49923490321595	9.13334143952213	9.61405042840627	9.37216479527404
+"C11orf71"	7.34020506247735	7.26416484525954	7.16697848442736	7.17255295494062	7.45357236518823	7.11862008474508	7.03050172591351	7.26416484525954	6.90563138941961	7.30162490951569	7.53594806844986	7.65212056576441	6.97811447119701	7.01289236700537	6.86465709579195	8.16412319536152	7.12787321988581	8.17710707186231	7.11378087085475	7.38601243105679	7.09696518762493
+"C11orf80"	5.92077926998965	6.34961784250881	7.17373051570004	6.08155848685638	6.44262889606704	6.37631284386462	6.01008157686212	6.12444074673062	6.28523287113892	6.74165116581696	6.19072000129711	6.27225131441596	6.16338232955149	6.50440892980518	6.09397976155198	6.04278167404733	5.81647582016381	6.27225131441596	6.23997901414229	6.12061392229987	6.56184524940847
+"C11orf86"	6.66124527574545	6.76799857958574	6.82282231522678	6.98322804947598	6.83630059274389	7.31286685907505	7.63810165688118	6.92952841813741	7.16064767444994	6.94381410525616	6.70086852033042	6.90578893098981	7.05391697752518	7.28701205662795	6.92063837119347	6.57368961044151	6.93358412840855	6.42510258037755	7.04182554474861	6.94612796006171	6.88791362837966
+"C11orf87"	4.97227459311693	6.47083760328163	7.89215881971448	6.58141589264943	7.66122027142932	5.96803764725729	5.40545449487802	6.47533000990978	7.49951996513314	6.66460913490758	5.81503271870362	7.14369932263449	6.33588530086525	5.48756235904624	6.90961325740364	6.58794083148436	7.08724161777918	6.73511495515572	7.00985665260291	7.74219354433206	7.49883970938595
+"C11orf96"	9.51693144499724	7.80322047250221	7.73451242359568	7.91485448951004	7.69642147375396	9.57572632507033	7.02417550957367	10.3828003286574	7.15962552912589	7.64217507103698	7.90179401147824	8.92820611481694	7.95213569926931	8.10437603451327	7.73107387498173	7.83056788647874	9.51276784164946	8.29015120047751	8.71251950742212	7.86557327504197	8.89072899247319
+"C11orf97"	4.59885290318347	4.40948186388138	4.85795678127846	4.66029535263252	4.86787663311833	4.91817955510715	4.7688248039636	4.54612831335392	4.62599424800303	4.7363771420293	4.75835105860476	4.95591736121265	4.71621346024732	4.78585436619005	4.63477669960004	4.84064799966264	4.64331133803533	4.72083029964895	4.72394972527978	4.67883686454884	4.79590911760371
+"C12orf29"	7.43705983446531	7.19635968235175	6.53548827135148	6.97284823380669	7.64245891570817	5.80786154570069	6.91561112937428	7.2774373205078	7.3070034844881	7.60540404326782	7.04394709043195	7.20929746979682	6.73105325939291	6.42915962057229	6.82871146196615	7.26427101316006	7.24054204343586	7.48012630255115	7.51565429927768	7.37535400488829	7.509793087966
+"C12orf4"	7.62161228684095	7.82779738781134	8.33745177772677	7.90151592665672	8.11320034349257	7.08419374745916	6.87834613696933	7.19006063729923	7.8173338511777	7.90059872197501	7.5577003153546	7.81786483312398	7.38169885909152	7.30399683621392	7.98975891299	8.06693496263793	7.63722526122927	7.91727438612821	7.85564812717241	8.26042124776756	7.87069598014447
+"C12orf40"	4.45505544688852	4.75039982464084	4.6289194408178	4.75493481875641	4.5761510955048	4.81554457022492	4.87963418454108	4.45619865421797	4.67822345189565	4.53371045403472	4.283971478735	4.52322952841526	4.74908106033501	4.91498013692537	4.57792601220721	4.49606887510215	4.63028287601585	4.30185052612081	4.55974308300449	4.62387979028409	4.60845311522392
+"C12orf42"	3.69546415720834	3.7264565117556	3.68415752689229	4.30934552397674	3.84766968697951	3.78226720824287	4.10681684707875	3.8415945102498	3.57881860543617	3.84232318792524	3.79193924646143	3.92454130817494	4.04480656765757	3.70645878432353	3.61296865749995	3.84746626312461	3.88232673764917	3.94565569604731	4.0476985690582	3.86568849832826	3.90041063852942
+"C12orf43"	7.25464938676054	7.5040017441146	7.40114711336659	7.24424886775415	7.76933359819613	6.46646375335654	7.04862291561996	7.206059043965	7.61047897433768	7.9428455811747	7.2352854068276	7.45752880348457	7.22738869951463	7.09801549355017	7.43575758035143	7.30022237707962	7.7269916947472	7.40114711336659	7.22796126628441	7.96604130544414	7.70564629161726
+"C12orf50"	3.41492589459385	3.2371083959586	3.1849350589402	3.2371083959586	3.20827188051659	3.3165920374178	3.30675844374969	3.40041713219093	3.3866604247656	3.16297149051947	3.01966888078386	3.1064780075632	3.2371083959586	3.19004277143879	3.2371083959586	3.13326860454434	3.28119374493102	3.20355407253208	3.43725700137603	3.49949973606281	3.13353532538162
+"C12orf54"	5.86605452516317	6.13944522936532	6.05204969216654	6.05414311364006	6.01505003215559	5.65812837868331	5.94965094871084	5.66839460997458	5.90589691175128	6.06249283687999	5.93845513499428	5.86248000392522	6.10493910706013	6.08500458848865	5.96776182487039	5.81615737094896	5.96776182487039	5.68018190511599	5.83127893085894	5.86866498200086	5.96776182487039
+"C12orf56"	3.88509171534632	4.15856220448672	3.84532987669484	3.92380520760398	3.90547988355957	4.09989916243883	3.91972741968736	3.83090983867142	4.09331695445396	3.87318016248463	3.8100784507662	3.98984009870455	3.72215540645853	3.87353396326852	3.87884761587165	3.91935925506374	3.83575592348927	3.95008280119283	3.88509171534632	3.74326577357095	3.94847753638272
+"C12orf60"	5.04003097162902	4.40951856549708	4.41812797763554	4.7794746447613	4.60401068152316	5.06864988162655	4.93501534025997	4.43609687805629	4.48399496545369	4.48399496545369	4.71721641242413	4.37344915919436	4.39893437511516	4.5269702897109	4.32978294363887	5.20028752995831	4.2685604407295	4.61038814215757	4.48399496545369	4.42461337349413	4.1078281579952
+"C12orf75"	6.45054127090367	6.59607448129714	5.78589919182149	6.25862664537559	6.11419053037593	5.04613268890423	6.54924935221577	5.91650110363158	6.32432680671517	6.45248966054565	6.46366385537228	5.15875510645856	6.54057284131053	6.41702428402802	6.04303656918546	6.57042628966742	5.55363920581777	6.62825160710387	6.06419270335629	6.40732885048287	6.8171857473449
+"C12orf76"	8.52226091080682	9.363614527241	9.25934053697773	9.19042772545802	9.38957648955732	8.90199120597084	8.58571048636685	9.21900144242028	9.0791968943728	9.13590815906879	9.35384735022975	9.19125060261149	8.68968661719403	8.68858200347174	9.26098915247727	10.2381845445849	9.13045565472255	10.0885268185677	9.13061118129792	9.41994380696987	9.21987476148134
+"C14orf119"	8.55282707188689	8.11598307208224	7.84598849235562	7.98033620695752	8.10383250309748	7.85025788462753	7.88355345441636	8.21211129273015	8.00137560540562	8.22171314634896	8.24096503107649	7.92235248187422	8.11469233929098	7.94316174900732	8.08790990894063	8.63738987269276	7.78448942487906	8.63576204121423	8.06477687840855	8.46979086590899	8.24365648903178
+"C14orf132"	9.15168663431282	9.72494028385034	9.6416023050813	9.8280330217414	9.61015472865366	8.81767049678339	9.07443724493031	9.47764153202007	9.70621095200526	9.52797080777029	9.34325946976905	9.75259095034153	9.34979497096576	8.9930005023719	9.30934498313253	9.12978939799899	9.61139091852905	9.50393753422254	9.7209919502113	10.0161330458742	9.26323550684029
+"C14orf28"	5.44616913949676	5.60783828332387	5.47689524176883	4.93493469527939	5.85275515370317	5.12665523149289	4.49817589167939	5.37339397718956	4.52997162160839	4.93322030173511	5.96118582928058	5.25095095052824	4.35795399532709	4.98869817946859	4.6321631152803	5.96722860207517	4.82668019314249	6.183566934923	5.04003097162902	5.54988319660969	4.77698490673826
+"C14orf39"	3.01125646607915	2.78630371559912	2.7985814394013	2.81486392135864	2.92658778512438	2.89736533770613	2.84244451913928	2.93119886633283	2.77002445937554	2.83999677250117	2.80353619181817	2.83542699403046	2.8569535546719	2.77244404174405	2.70791226631404	2.75544349334672	2.8007667661458	3.01042083936041	2.68709818280144	2.97840927333007	2.79446095606049
+"C14orf93"	5.08961543800521	4.50364971806639	4.43772550888008	4.3393283051462	4.36802650504324	5.18960988551533	4.81715363434016	4.32133962283412	4.4275697763355	4.22857128117676	4.42329278235471	4.21472102712665	4.20058886603282	4.89759029781084	4.4752576076541	4.40871421051408	4.23874003568688	4.97937839711589	4.45503733336714	4.35811656270388	3.91796760636254
+"C15orf32"	3.07811303631282	3.09921471338998	3.06573985509684	3.21685738980081	3.2187919799048	3.3167369745813	3.33182141857475	3.04604062566633	3.30660335815651	3.11162226002623	3.11162226002623	3.22625876350214	3.32900137686401	3.27778841289976	3.17060261855207	3.33670144983492	3.18732221820056	3.01888379049074	3.11036353050456	3.32905117947584	3.08241724219126
+"C15orf39"	5.21390968349903	5.17535248787393	5.33830259167148	5.39982858212343	4.98780882173335	5.67706229066096	5.13196437155829	4.80904230574874	5.09075596460854	4.95514460950115	5.16680027476753	4.94065466120982	5.13357284258976	5.43981594024706	5.14437435779378	5.03828058662455	5.07146679898182	4.90130695699219	5.04003097162902	5.17462274548906	5.26955847407238
+"C15orf40"	7.59747741534073	8.012489610338	8.17774514744669	7.26663944404417	8.00532605537338	6.99351901536577	6.79129767987458	7.59825279565962	7.17664972656744	7.86401075700799	8.10622921560574	7.59747741534073	6.83441972672484	6.90087705401776	6.86805139510285	8.22377024634966	7.59747741534073	8.03957376432188	7.49194050038185	7.64636056174032	7.57098765955124
+"C15orf61"	8.35715292522178	8.87030929877401	9.27540365225971	9.01377530378926	9.44439959991407	8.57656333401362	8.70588778803029	9.1108371418361	9.46837419230908	9.23243559727159	8.75626012405971	9.09120359180636	9.20901482554107	8.61837865388599	9.33182620171917	8.69798168220259	9.13692598908131	9.11455809321548	8.99803877478839	9.10280413652947	9.14658031575043
+"C15orf62"	5.72451526948985	5.77113637634433	5.87002530280078	6.21084220761263	5.76245119704002	6.31597852788086	6.10544397332797	5.78788381318033	6.39045924524408	5.9747758247179	5.6457832887963	5.95650290515566	6.54839733588474	6.22252446899197	6.55889863786607	5.80675139567113	5.94735334050774	5.5941733389914	6.09327983018484	5.66909673633875	5.91174953240967
+"C16orf54"	3.35982733247846	3.18081184832722	2.8481026828753	2.98559741696646	3.06493258739693	2.85073739163366	2.69215422668096	2.92733317607149	2.91974559842364	2.81165675078801	2.90989745879213	2.9372896115827	3.09567037319188	3.12215389035727	3.08200806441227	2.9805017542577	2.85396009400654	3.21383935597771	2.88390376567431	3.05031370574079	2.93533108719613
+"C16orf74"	6.4785084584763	6.07128250739545	6.40011072216604	6.01096729112887	5.90652573248286	6.21097315417891	6.60994113927603	6.15975111726688	6.25242316904869	6.16625421708886	6.18607995858243	6.18127263268085	6.24795932545708	6.49980710465167	5.88202955966097	5.86790204320191	6.0643730759499	5.9721574541798	6.07920109011511	6.22184559811027	6.26617086003652
+"C16orf78"	4.38848698146535	4.68019688807553	4.54709368780974	4.84993228254572	4.69439369629525	5.00134175387679	5.33193426205599	4.4990982350606	4.73780036800828	4.67437695584459	4.43162207596928	4.59123086906605	4.78920799113344	4.94206892952328	4.61295597982829	4.49349552927188	4.73763162727119	4.30083388006346	4.70770197053757	4.86086803255804	4.74760794969474
+"C16orf82"	5.49567428362775	6.11380079733698	5.9567401959946	6.1637646639256	5.97860949549118	6.15107575486464	6.27568391504237	5.84035430994864	6.35346103499859	6.00749131107161	5.69353402732816	5.93565744903606	6.18071074020684	6.23900733283701	5.77394405846213	5.82648687307589	6.11553241244347	5.5496226291643	6.04414220624289	5.9913879761365	6.02206168606773
+"C16orf86"	6.98932372363412	6.93505486443513	6.9622670714003	6.90398355537907	6.92754370734076	7.21187306122476	7.28992204196961	6.79717022735296	7.10777534696951	7.06296300989387	7.0320583644731	7.05258770619769	7.05830555006524	7.28753743643732	6.98851133867107	6.94270316724072	7.01714163905033	7.13743273867488	7.0428988357604	6.90322594633687	7.04236836070229
+"C16orf87"	5.22513383121494	5.31212175553293	5.78476279831183	5.52525810596355	5.87439311389992	4.7358144542251	4.38146667801448	5.47238404453623	5.42094265131646	5.60951434355469	5.13940401088611	5.47238404453623	5.48837376683808	4.95851604762618	5.47238404453623	5.29687502532477	5.65742144873081	5.32154678599709	5.53767118171966	5.70599081883368	5.4803267762133
+"C16orf89"	7.75318959147231	7.82450225539857	7.73575435676084	7.26023818645907	7.43861830806696	7.09222412754503	8.1202576748649	8.0365997353423	7.32272982811579	7.54217711134649	8.05202780432984	7.30425176419854	7.26685442969951	7.65615204872411	7.29322588741008	7.12048645623999	6.85849781567629	7.23258303823234	7.6507399047822	8.23502639751967	7.0260802259187
+"C16orf92"	4.96932755880711	5.3807645000696	5.5653825718848	5.47926396520224	5.19905549212953	5.14868279424465	5.30356860539092	5.26188129397103	5.35470013827549	5.30462864743226	5.35937988821561	5.50816853495466	5.72549897823411	5.62886836140731	5.66193115321095	5.24293175410212	5.52663117969463	5.21358613477447	5.31963234185807	4.97732133864658	5.35937988821561
+"C16orf95"	5.28013547651965	5.53468834770141	5.07625784654545	5.38096666743515	5.28013029626894	5.5941733389914	5.83796607582541	5.33486674313349	5.48085305636875	5.46537860767573	5.38109601303331	5.26860548799133	5.63172644013331	5.72515103403319	5.72790971211514	5.37342044157684	5.37764996598056	5.45563554716878	5.69690419046639	5.26840984148182	5.36724102242157
+"C17orf100"	5.15704797119798	5.6545712205523	5.55502932481128	5.59508901246801	6.10526805324278	5.92263692827179	5.77234399920115	5.46062529166846	5.83119941709555	6.04910946454061	5.50511147382892	5.41140668658956	5.2391624272029	5.55668324960603	5.68525246193832	6.26689337159747	5.68525246193832	5.88036165542209	5.9746519888774	5.97061404214221	5.5941733389914
+"C17orf113"	6.49256392013828	6.83333300209695	6.90374339264717	6.73320324262125	6.67569040208126	7.3044254549484	7.06893213546238	6.65000247278274	6.89109550334433	6.8447827837045	6.69999088055674	6.75086275230478	6.77408906916102	7.35606529059756	6.96579253507352	6.92986581312871	6.71174332641906	6.71129028567037	6.86722813392068	6.72871631722066	6.89866322858662
+"C17orf50"	5.77001484075164	5.71052127492091	5.88739354226233	5.80190403551226	5.85095192258861	5.76434738736462	5.77001484075164	5.65279180000922	5.74768021175263	5.77510000930261	5.62728212928328	5.87797969040296	5.72973323318636	5.71902545098895	5.77001484075164	5.84800674978191	5.91374441492594	5.7957490497859	5.63757729127571	5.59870597469529	5.38398157774171
+"C17orf58"	7.23887079327142	7.25107887871385	7.71926288724232	7.09763024434806	7.72448866507282	6.83001011624551	7.00750327314536	7.6902968096875	7.23842456242228	7.19898503262998	7.3357871681692	7.34442562858481	6.79451232546668	7.08722922820485	6.43821979713834	6.98805750760058	7.23365270597036	7.44688682183212	7.20934772115929	7.4583103012563	6.94202762924746
+"C17orf67"	7.37062732041086	7.42019708560227	7.55656234776258	7.6332477407392	7.53686457591342	8.1075670371537	7.44636655800257	7.51949714109775	7.63811399880876	7.53319616397833	7.54326329760508	7.67406816713103	7.75414014584579	7.81944537164469	7.74929862322002	7.56619593663837	7.44500876693232	7.24436539579128	7.6989776847046	7.3697980942962	7.5949922305062
+"C17orf75"	4.6627452481582	5.02335338978078	5.30903091877529	4.95309735810961	5.73721853534516	4.91527186762437	4.10793533480085	4.95789929990261	5.21385766632041	5.59558564572965	5.2272095405193	5.60075717609894	4.67596301662247	4.69515303093621	5.30879321612615	5.19731163869499	5.29083801316509	5.94795423973627	5.20947297800775	5.21385766632041	5.47158780726436
+"C17orf80"	6.76274535401537	6.68941613891286	6.07751689157931	6.50734353365479	6.48605213668781	6.15752368805666	6.42440692140646	6.34730177757545	6.54321817541503	6.53951820567336	6.62423952147776	6.45974267118358	6.39026388800329	6.32334309553355	6.06389602803204	6.65122626758549	6.27479824445782	6.55987140689694	6.61550071492461	6.7180960978641	6.46980618252984
+"C17orf99"	4.0288173811677	4.02567952615943	3.94300828350317	4.03872188311419	3.91992076374213	3.95757215731046	3.92066061687983	4.19702949966639	3.83600871594395	3.96824458585426	4.00601585112929	4.19207592609971	3.93323963494678	4.15528317754232	4.21749257809528	4.08501992223575	4.29528567582572	3.85811540000932	4.28792494701234	4.06587014426624	3.98488994885986
+"C18orf15"	5.11123704368171	5.30918070843266	5.09113047211484	5.45679164980197	5.01566511202751	5.39835433805751	5.12746650795198	5.06212119778826	5.38671014425514	5.37230076406003	5.0966926389546	5.56594973262894	5.25728219037928	5.42418821486687	5.32055485814472	5.43627057503268	5.47635391663763	5.10957437149202	5.03623239276483	5.30918070843266	5.41381003192399
+"C18orf21"	7.2962349080927	7.26363091608262	7.653500939363	7.18186378702618	7.55886295955898	7.09102280959081	7.3077444247307	7.40868397753711	7.30388429115305	7.37603274733203	7.28920440846384	7.32271013121818	7.18782389595987	7.16304140960253	7.49773853434279	7.41454933869685	7.17807361292493	7.6130013087934	7.44413506520066	7.69916042539788	7.52812309243659
+"C18orf25"	5.84273810256149	5.89059194116763	5.39714526834489	5.8445485798668	5.96572492974678	5.05261193571531	5.94821356541978	6.0088375330385	5.70922578346101	6.01495970731994	5.51417420119697	5.98211679061748	5.73018041962257	5.83880667772123	5.43855862747418	5.9775880378443	5.8987517703383	5.38496490841763	5.56216080403086	5.95125846945539	5.95713106309466
+"C18orf54"	5.92312049765482	5.68906851775289	6.2545439903926	6.04787752687705	6.14768053308928	7.00287944474052	5.7672967819683	6.22436321691284	5.38168142503363	5.65920073160257	6.46870616790168	5.54810197622221	5.38934973255512	5.97809737346632	6.36656578305199	6.86570214393132	5.62584724549819	7.31027107820484	5.9841263243859	5.1560696957593	5.34898955224712
+"C19orf12"	8.25804724960118	8.4033865409926	7.95919449837446	8.48614133563487	8.98578917185907	8.56188997344175	8.13299742060828	8.65136968709141	9.03943112907794	8.98138714696776	8.09232222711705	9.09492215000417	8.91137321763162	7.95468193860538	8.97667253086016	8.15909035243465	8.57372322602107	8.51092783599558	8.3125363905258	9.12281596133712	9.07939118762373
+"C19orf18"	6.09269925612562	5.67668163618504	5.81633887151087	5.6005270062035	5.59722809378438	5.78569973338572	5.71682125757914	5.68252365059641	5.70249472201542	5.82984807251546	6.34446920370594	6.00313559629946	6.03142988869975	6.31180406248868	6.00200338522163	5.59005976272194	5.62844938470291	6.06884453219535	6.08464538654125	5.27495907142773	5.66686722300131
+"C19orf25"	7.14746059601322	6.94996421937761	7.25079694117275	7.46573586636251	6.99665666248235	7.79468496340738	7.96292743200411	7.07314229604386	7.2703190611075	7.15945256512089	6.94537607955347	7.20346614286036	7.5290572712591	7.70865470896592	7.51907750089691	7.11961320361799	6.93575444210832	7.09107645405538	7.3119229434307	6.98924100497731	6.91043154909911
+"C19orf44"	6.20084519492625	5.36625152685451	5.72648013636187	5.59774205145614	5.74099801698082	5.5941733389914	5.76554260134462	5.46283005193496	5.78605406276916	5.39729754510413	5.50466991134942	5.49199523059147	5.52379143013025	5.15414641606439	5.34966752829753	5.5927933481302	5.20318351078908	5.49460511368765	5.50076182085259	5.545049834011	5.54248360821393
+"C19orf47"	6.54987114197402	7.05224635229932	6.85469791328702	7.16455947915346	6.51103435923223	6.90525534709981	7.64289501114125	6.94597620334699	7.0115640038456	7.09611466897995	6.92101799040864	6.97618334453261	7.05224635229932	7.10760531364357	6.93740705804398	6.64615411178369	7.01450996172127	6.35516767084542	7.09457998248694	6.8774687496268	6.99483274767074
+"C19orf53"	9.46382684372571	9.36189301274962	9.46382684372571	9.38442856867942	9.52869953733709	9.34598535063279	9.46382684372571	9.33921936066464	9.48916742545864	9.73543151353345	9.35337258718542	9.42576919346014	9.29573881897318	9.32171888145389	9.48281148303283	9.43840140991252	9.09686063899579	9.67796250512803	9.53726933849597	9.73944903105314	9.5074995188687
+"C19orf73"	5.31084124971507	5.65130746975812	5.67852565124523	5.67271883252618	5.62329000276723	6.00952284501077	5.70491146600838	5.57172926458465	5.63496606567428	5.68252365059641	5.55153919088931	5.73586417311183	5.53609580235442	5.62329000276723	5.61735814588088	5.58098259623841	5.52895811433919	5.62329000276723	5.76569838092456	5.59621531507452	5.63865906756522
+"C19orf81"	4.74758682850208	4.87598852855677	5.09077262144421	4.87598852855677	4.82411467822064	5.09512502265488	5.32973513180814	4.78884580766176	4.87598852855677	4.88988432508184	4.87598852855677	4.90186046889265	5.18146715759442	4.98818326188575	4.86362843856889	4.68090610038749	4.65062646250548	4.77963070130753	5.17529856139187	4.78598715642139	4.64689373579566
+"C19orf84"	6.88334737438948	7.19548116854859	6.85223353535545	7.30605627611782	7.06209861376724	6.86192525096308	7.13497773932029	6.95820036046771	7.14641881677567	6.96695359974875	6.70713513298145	7.11899679705191	7.25424493304643	7.1742143848238	7.25519876631456	7.06209861376724	7.08207005082647	6.68579690714492	6.97462132687096	6.8613414324454	7.17489833658468
+"C1GALT1"	7.38967547293275	7.38353665060514	7.23588453385638	7.26738348011234	7.5163860037932	7.66131271141655	6.68748745686712	7.18734250826261	7.01992360569812	6.65438383235006	7.87025249171664	6.90321640849753	6.72820590498774	6.80816170269586	6.98026013964681	7.69852853689641	7.01290648089125	7.92936688752469	7.18851166167407	6.87281147210486	6.96863819509528
+"C1GALT1C1L"	5.02576408502967	4.61552486600255	4.53552366041602	4.51720380476391	4.56216787675443	4.74583184505708	4.5535010874614	4.53552366041602	4.16089863856463	4.66124560297681	4.45371199532037	4.81398483348169	4.26918543680863	4.54606259880161	4.23093187486775	5.02485788333902	4.38868458282386	4.83253003256814	4.51342409962969	4.49193016914121	4.35283454820502
+"C1QA"	10.5871666201725	8.5505182407149	7.68608768567026	8.92648601468034	7.93558125608511	8.47053235878176	8.35506335616452	9.88788268315223	8.20366925240836	8.92326647098339	8.3882810431292	8.59321135263579	9.18459329631632	8.98477492713156	8.70597143325464	7.92455234192015	8.57403092552243	8.53154473670914	9.08080560878113	10.1550788729951	9.86409784821969
+"C1QB"	10.5260402093255	8.1442477267579	6.82508676515542	8.41725747265466	7.85091764347251	7.22785731433719	8.13065698612298	9.68119806383191	7.64803142416016	8.60168821523142	7.91772126632956	8.37279356652427	8.42298936709896	8.15639187752042	8.629110303647	7.78891475296984	7.96746739324932	8.580093466828	8.55655310568949	9.85410581534554	9.46215641416049
+"C1QBP"	8.6941763561724	8.50868756531125	8.06515636536065	8.32141944155648	8.89283264295761	7.36836517646198	7.61265454199527	8.53505042824437	8.67946970925293	9.16317657912086	8.63923361824366	8.92594766351829	8.3157915310077	7.73534113531348	8.10937725643523	8.55770242058554	8.48163374694036	8.93140117955975	8.5358091452238	9.02216149311344	8.76465580452253
+"C1QC"	10.7870226930671	8.669342373084	7.43587002483136	8.98255208102057	8.22386829232793	7.98098870937042	8.5246234768879	9.65037892985944	8.174262139778	8.99585172036623	8.58640386491208	8.85308524651415	9.22896190787828	8.94341567165318	8.74605574348892	8.51138867708913	8.50593032204103	9.02095241483546	8.93289168172156	10.1778556030372	9.90391667069581
+"C1QL1"	8.4689882840023	8.12464531570571	8.12882262527339	8.16274421155237	7.9577035149771	8.13123267841647	8.82851781819074	8.16693618927749	7.89202318507195	8.20481784140926	8.20278152204244	8.19946906451047	8.32319296086677	8.43012729894587	7.83894229865173	7.92213915347995	7.92248017819855	7.81370198024876	8.25044019743945	8.36866435906168	7.89775936502769
+"C1QTNF1"	5.95483994546988	5.7233970339537	5.80855653637242	5.93826374313072	5.32662197922442	6.49382008919925	6.47962471232051	5.87433171626389	6.03049267972323	5.87433171626389	5.75441778628577	6.0944471844821	6.32804008770739	6.32009961623833	5.87433171626389	5.37271799103327	5.87875300886419	5.15699244156761	5.8411861092174	5.60049226805161	5.76983763591331
+"C1QTNF1-AS1"	4.37253480609131	4.59942477492351	4.709408009165	4.70994004926074	4.34915503093897	4.99392664728996	4.6656478005912	4.56347686753361	4.61552486600255	4.80776480574223	4.61158705328385	4.69439369629525	4.98298847125945	4.70994004926074	4.67041868724538	4.31576325055636	4.67741581378734	4.40087115373248	4.9291322410121	4.62128795046224	4.6656478005912
+"C1QTNF12"	6.09269925612562	6.20932337701577	6.52718303851934	6.54630773068645	6.13956950803988	6.75916689497302	6.92241534004135	6.07270127534198	6.0385381895653	6.44286448867137	6.23327182602839	6.4623434735314	6.43612349230641	6.53646232379329	6.52214767436941	6.12981897711244	6.29930142729153	6.41192578787673	6.67128009092634	6.14798237317918	6.27338086273443
+"C1QTNF2"	5.47588984799812	5.32647083021919	5.62557573493396	5.18572128860119	5.38505932028223	5.57822439553943	5.60936424698917	5.13467199998318	5.18683725543019	5.39615855268782	5.32647083021919	5.58729704499225	5.32647083021919	5.35752375604257	5.18525278216335	5.32647083021919	5.26766210204047	5.04233438121367	5.14851661251243	5.48254582409697	5.36669457918324
+"C1QTNF3"	7.06297187638171	7.34878228884311	7.02981487324759	7.10160227823993	7.16156444734771	7.41801449493932	7.05824397430027	7.12841949827629	7.01060260095276	7.06846118875991	7.73604057025109	6.97289796010723	7.17807361292493	6.96627355855517	7.09251158700395	7.45444713605963	6.982214764623	7.29790271952188	7.0038208925016	6.776645384253	6.75428824051114
+"C1QTNF6"	6.52560107775683	6.6028926282008	6.62875171226049	6.70857254503927	6.21635195086602	6.77936976296057	7.28073985529707	6.50310064839182	6.48574080534458	6.40625965332654	6.56713285215223	6.61257703397844	6.37614589848466	7.07256266654479	6.60424680594401	6.84137595845112	6.37838267455003	6.88544569540798	6.62875171226049	6.62875171226049	6.66533142965035
+"C1QTNF7"	3.41293878798616	3.53789016165074	3.49907232928224	3.20469408559823	3.50117372901666	3.65929885170314	3.49856503666383	3.25243164320105	3.34965044913821	3.38815919666752	3.38613004288932	3.3309334047874	3.56712035746401	3.44880116461929	3.2570566500744	3.4692672915615	3.4635888194548	3.71526402658251	3.48890533334267	3.60707287345462	3.46181878147798
+"C1QTNF9"	3.08388786966108	3.3282718775284	2.96568021389341	3.2371083959586	3.21316839624666	2.97432913811713	3.25942636765616	3.24077417845928	3.32885017341067	3.13848018487114	3.21316839624666	3.10415978359365	3.16408915141584	3.43359552805148	3.34506135468697	3.27482992188035	3.06651919206565	3.22931397239729	3.21316839624666	3.13608950261195	3.33000500981747
+"C1S"	7.50065352636441	5.71915657655359	4.23071544380826	4.99576511866799	5.20779707793768	3.98616917347916	5.44287120918323	6.99559878445963	4.93781964587585	6.73382460431576	6.73414883103127	6.52353978072141	4.53087412971576	5.10917861918075	4.07362017298577	4.89588421015529	5.21433759918764	4.75182010408861	5.20816448152865	7.25661933367065	5.109282524541
+"C1orf100"	3.72536111582871	4.02760313519798	4.03359367744598	4.19149124922366	4.17858609894223	4.33140692277033	4.38412909736769	3.91977967638055	4.40078004046637	4.00967676648148	3.78230517083438	3.93051117432382	4.27016051250177	4.00967676648148	4.09053869498198	4.05049959983287	3.94524325367535	3.73371015112646	3.96183106821698	4.27232152718899	3.82607546778229
+"C1orf105"	5.26401933567205	5.41174642465047	5.19620469390342	5.30951621031735	5.27687631029632	5.27373603498805	5.46327223761263	5.32091314403523	5.23755648630774	5.14445463513258	4.98200908134609	5.04864445091054	5.41253207629782	5.60645565814774	5.08146903410129	5.13273376017089	5.26766210204047	4.84355409457149	5.11151806911103	5.26766210204047	5.26766210204047
+"C1orf109"	5.44507388555093	5.60348973511612	5.74020574481196	5.86168463739945	5.94843265570042	5.60287190593305	5.44795115234413	5.0461572848832	5.73493947109047	5.67033465213816	5.49677813275857	5.12416577962652	6.02680184129554	5.59140381272771	5.81296113003705	5.54145653509462	5.39578426737076	5.58446471898078	5.25024320805128	5.57095022987592	5.80184865853413
+"C1orf112"	4.87759964425273	4.5890619991566	4.45587492260162	4.53007808942166	4.45565767892755	4.46566481803503	4.31884489686178	4.32614136718936	4.57741865500739	4.52547824870377	4.82000719134281	4.43996050785818	4.25964472169835	4.53948224442259	4.21992048786763	5.45917095673211	4.74881347954952	5.01287903927253	4.7096388695463	4.5734171953794	4.7686400331887
+"C1orf115"	9.89989081956502	10.7817940353634	11.4512885527182	10.7111485483032	10.9424451918394	10.5462540671286	9.87605889174376	10.5225178034733	11.0945206006617	10.9126566868084	10.1681593899443	10.9820837188023	10.5486893042966	10.2909884939807	10.6762848273275	9.9560892623915	10.8257524569282	10.3021646685679	10.813986879927	11.1223416974179	10.6913312259754
+"C1orf116"	4.77203186293712	5.16243587758878	5.25577607744512	5.11096450461532	5.05379268032977	5.15249564064949	5.01142363132108	4.90307482927486	5.06094184601126	5.02911786542874	5.06764699669236	5.26994008046822	5.38971598518816	5.03573415174096	5.33358936572871	5.03828058662455	5.25239473575824	5.06764699669236	4.9798138543509	4.64151150578478	4.89713503371688
+"C1orf122"	9.8612490788004	9.95884583518444	9.96494155233983	9.82383187017581	9.88284422479539	9.69965238687242	10.115585255681	10.0128118854228	9.99421510336948	9.86835951382736	10.1739710259419	9.79059518445104	9.77104725958072	9.93591794766732	10.115802471853	10.5865170796448	9.57356254585752	10.5204089072854	9.86704988324628	9.90811582528583	9.80603862350378
+"C1orf127"	6.50864653153082	6.7703058877679	6.56992424669557	6.89080014495654	6.76116245308324	6.76928936974892	6.87873590792246	6.66833791653597	6.99819896285388	6.81481659794415	6.59432401429685	6.74655696605782	6.86641876293528	7.17854792958793	6.76745756558737	6.72347786148187	6.88434359219017	6.58486780801739	6.75342200703153	6.48058074186515	6.85309183404505
+"C1orf131"	7.96350277474397	7.79024073467967	7.70213258476671	7.49028734357052	7.66301311458634	7.08097384565193	7.38027172692908	7.64122950934681	7.16661260531093	7.25757797673744	7.80714412610672	7.23236407625108	6.96119239325664	7.08590101746352	7.3418122304397	8.10894427442077	7.1729384388595	8.04220544071848	7.48251121930818	7.35995261778901	7.36429245547196
+"C1orf159"	5.90931029105658	6.02663739458079	6.59495308226206	5.94079102660072	6.19782681593792	6.49804472660575	6.07583712399548	5.82816238380082	5.85572196173622	5.78632500616387	5.92749998796251	6.05168576501444	6.09732454068366	6.13148605568548	5.88125053988439	6.05248658064743	5.98613587683552	6.14564034247999	6.07583712399548	6.07177236000242	6.02663739458079
+"C1orf162"	9.27025292430061	7.11860684015605	6.59241059016871	7.43417219818914	6.73453857866805	7.43760330866021	7.14289433158143	7.99729965473322	7.0394012533189	7.26461168981822	6.88801820193336	7.37767913395409	7.41491478830517	7.32088306284926	6.38844880423591	7.34465591027852	7.3116416970347	7.26062873947635	7.52118575867818	7.69513314737827	8.38180881788798
+"C1orf167"	4.78555417794396	4.87598852855677	4.74467031108921	4.94936370266715	4.61866655305753	4.55676152147931	4.83697115630174	4.85637037681482	4.81553675609743	4.90023338122586	4.90034470677892	5.02001588892878	5.08268968121911	5.04838129886503	4.89616534432269	4.90387195038243	5.0930671379348	4.51797335780411	4.98241611712109	4.68165727275218	5.05872961281701
+"C1orf174"	5.38701497511466	5.49073003691478	5.25262597750645	5.32436171754643	4.66784483447504	4.52473762039182	5.55890411844152	5.40696965323883	5.57484851238543	6.26568644456322	6.5037273675003	5.51303622948938	5.48842509762941	5.2279710222611	5.33358936572871	6.1823309688739	5.74069799213164	6.39958988377909	5.2900257019262	6.04007055106586	5.64814705538941
+"C1orf198"	10.8116080613233	10.5864204206288	10.1563674217466	10.4909705527027	9.97139721423459	10.486865107653	10.7626364693464	10.8955975488223	9.78627177291101	10.0328768879097	11.0280747237367	10.4097874368339	9.80508524015675	10.3280019534705	10.0245216235913	11.2405383094114	10.2100764218815	11.224207474452	10.3062381001954	9.90811582528583	9.91724466543031
+"C1orf21"	6.52584153021322	6.77580943597085	6.93706672156448	6.72126351819862	7.50972918283852	6.09580497401478	6.9780587583848	6.98713050202263	7.17273888284809	7.53890808363282	6.52450228765107	7.49661806918982	6.72870821936809	6.91495651248815	6.62171117957048	6.23201067046536	7.28597773669763	6.77567853617472	6.9489573665339	7.53439680564294	7.4202566036853
+"C1orf210"	3.63096608190262	3.79679941732942	3.62854253946678	3.873524250209	3.84179138868601	3.91723450575917	4.20333959307051	3.66452451064936	4.01789463433719	3.53856575453469	3.59537057373469	3.63203473929604	3.97434668545216	4.244133908639	3.80344146783518	3.7413213635236	3.92168563534228	3.76954296530774	3.72772299343351	3.7628209400578	3.83287522299058
+"C1orf216"	9.07449291240914	9.54954821094606	10.1629077409917	9.85464162759204	10.0115686132202	9.92165779853607	8.89097096312079	9.65338428399368	10.214761442397	10.5458422883644	9.25703333276742	10.3310510452152	9.77027634731853	9.45925661840475	10.1768415269754	9.59895475569135	10.1571066177777	9.12241511268674	9.79488991311082	10.7204199969396	10.3850243438232
+"C1orf226"	5.55142200282935	5.43405890899373	5.98629303404377	5.3887058605972	5.40441041850904	5.83467977190559	5.75072751053182	5.91650110363158	5.35692988738284	5.26962429834294	5.50816853495466	5.21704850198535	5.42634740268494	5.37584848251226	5.79309825023128	5.56929806779805	5.50816853495466	5.76120775397337	5.72845686892124	5.00814652827329	4.99806285798091
+"C1orf35"	7.71153308509808	7.44672255580826	7.73541948150615	7.48658996812056	7.43999917428377	7.92389225321565	7.80032321328468	7.51799867622817	7.46493599564205	7.47344427490771	7.52453621528182	7.41665792335424	7.52285563533498	7.64486542932155	7.72705737933642	7.44417815933084	7.41587033635258	7.8314741062625	7.4756195423729	7.41347734654636	7.37932499568955
+"C1orf43"	5.48232339585585	5.27218761649543	5.07306683291766	5.72591764214504	4.93585540643552	4.62704887738533	5.76238532032994	5.69678482056207	5.82596277612315	5.24201466031041	5.50274337106149	5.02137038904013	5.92726267563516	5.20606363548864	5.91309643488024	5.64630512009726	5.25082384233886	5.67959980113132	5.49183038463846	5.37136426404148	5.36724102242157
+"C1orf52"	6.60670882529633	6.75034304687212	7.07535438049949	6.92974149880924	7.16175092187681	6.82715310872816	6.6491416368839	6.78336147963481	7.35627975191521	7.23219195466134	6.66717473967795	7.13259584396109	6.68412242241138	6.70071671731433	7.54131240563627	6.83350385718034	7.10460047299542	7.40154125932673	7.14769663407609	7.58499214765642	7.27864764440944
+"C1orf53"	4.9210678984258	5.02454906262885	5.25734216864232	5.00382756995867	5.17341093258423	4.67183422741146	4.81420833466329	4.98161210234822	5.26975113208856	5.37879289160516	5.20705914130036	5.15058164026976	5.45256263287297	4.792041545333	4.99272614142257	5.13479305495868	4.72826478150474	5.43167590044613	4.90406639049231	5.26248986345798	5.07335647437791
+"C1orf54"	9.08269297940336	8.26138520750808	8.23397310352449	7.82143338664233	7.52489006507186	7.74461759627383	8.34468229745366	8.65964335947791	7.81582980533479	7.97843311023317	8.10110905254516	7.80316845713554	7.92920931888019	7.97813254213608	8.30623413903212	7.8407022514603	7.70871554286297	7.95756697695244	7.74736590539993	8.35617514392685	7.9245660806828
+"C1orf56"	5.55104668533666	5.47099865333773	5.81680206676661	5.5766967765856	5.3899638959998	5.97987444879374	5.34810385551279	5.59557551935096	5.4775761097367	5.07559220129802	5.64091716209734	5.36561860048561	5.43080390576704	5.90793843166952	5.52031669447051	5.68784265301304	5.53023669278374	5.55540242799453	5.46982116927531	5.50259711439567	4.79571068715709
+"C1orf68"	4.83461141569429	4.9873380680374	4.87227715083539	4.91100454531016	5.06539036696999	5.07419611748603	5.54019018892247	4.84431503287142	5.3435334533517	5.02450433572102	4.79386670199922	5.05751737332328	5.29115639572597	4.93660187789479	5.24341771679752	5.07031014495882	5.15352307571688	4.78126969939392	4.939801955631	4.87598852855677	4.97907869020594
+"C1orf87"	5.63966176539892	4.4653306719947	4.24918831384001	4.52577697602477	4.5479158572859	4.64959093861407	4.89878613464616	4.72764577984408	4.46262821317499	4.3946455361436	5.02137038904013	4.83545581025373	4.19345096498058	4.62544725627536	4.50776364199745	4.50175359225014	4.30009612821508	4.287207699214	4.50046735688179	4.42178927312263	4.40432320512267
+"C1orf94"	6.91035377639277	6.88664849425905	7.17900815756072	7.05243390674364	6.96485465463985	6.98961122021578	7.18091092145554	6.71245322357267	6.73207826892766	6.63791225308965	6.55624532915557	6.73675090181561	6.91898148154054	7.16644494518299	6.73675090181561	6.82463851575394	6.85398518323474	6.76700425227989	6.66030006850162	6.53831481229494	6.89013654416266
+"C20orf144"	4.1810372640486	4.32195808233011	4.52868770174397	4.46489619358473	4.68569240244528	4.891431597517	5.26265897708434	4.57319132281773	4.40784509473301	4.64776575678251	4.3282082711731	4.48951457401662	4.62397134459605	5.05468495939526	4.47432875275331	4.48951457401662	4.37003944664258	4.30510867292445	4.39868556843302	4.48951457401662	4.49105246353066
+"C20orf181"	5.95057080592301	6.03693889664564	6.12825354440198	6.21939990057135	5.80501918856191	6.03693889664564	6.317132788437	6.0051215842951	6.06145918981163	6.05332388632196	6.10491513377463	5.91095331602321	6.22307834029015	6.05804061517201	6.11605070477071	5.90675951029645	6.03693889664564	5.82599963503352	6.04615854287004	6.01822228446701	5.92796712492088
+"C20orf204"	5.02710961717522	5.07487179371504	5.21457245205336	5.19992339492559	5.04567258466027	5.47956215224641	5.69433041430099	5.04384294345482	5.24026008649235	5.0913281316731	5.14315122613605	5.30257250081842	5.14878390172468	5.35964805076813	5.40189510197829	4.75756262489235	4.96326652368221	5.04145967971447	5.12906069912838	4.89189238470093	5.2785964049263
+"C20orf85"	3.76187920415177	3.57775959316963	3.82363990700533	3.50310234788329	3.82673667962452	3.86221798951624	3.85756601951553	3.71031846596918	3.71031846596918	3.56169021831669	3.67018315409089	3.66823803899903	3.62125276775434	3.71194736108623	3.67101470012305	3.84746626312461	3.71031846596918	3.7408984707421	3.85793109282029	3.83357242671642	3.86983219358435
+"C20orf96"	5.43306380695927	5.44757190465916	5.50528692233858	5.50974571093065	5.44757190465916	5.94996599174479	6.15445833189774	5.58038368978237	5.64872740952824	5.40437298664109	5.3998771102599	5.37615247661708	5.5122761290563	5.69979434346515	5.46272718547529	5.3620849200467	5.33691139859507	5.17377140948798	5.37189376608082	5.39833126911678	5.34239492150227
+"C21orf58"	6.13181013265118	5.93988282837979	6.28552169706969	6.28552169706969	6.04082453668557	7.02084951295858	6.88391295031781	6.24595730031737	6.33940497267766	6.34923168394112	6.18293199486574	6.37511146569686	6.32075874739828	6.59067081500036	6.15875184802198	6.0449147700318	6.28552169706969	5.92448560520974	6.50125721576215	6.21275715227817	6.20118690405181
+"C21orf91"	9.38392317352646	9.62694866885883	8.97367920368934	9.10118787531459	8.6874069362426	9.09386865034431	8.48843858206268	8.36496539147558	7.72835328700129	7.8528306670047	10.3393982368079	8.02978456059786	7.5998353901239	8.67901859809429	8.7389171359998	10.9384365580794	8.48836211410722	10.5706822816825	9.31952264603015	7.62938276823978	8.44958769709842
+"C21orf91-OT1"	4.00967676648148	3.92489027235276	3.93979426314043	4.1182636333348	4.16012207210125	4.07447570707638	3.90296992448553	4.0603698343322	4.00947090260356	4.00967676648148	3.9404440440396	3.83562786551493	4.28871864757065	4.26230951823677	4.00861435572095	4.02631684813907	4.1589624052982	3.85600224023908	4.02631684813907	3.91097146248543	4.25964472169835
+"C22orf23"	5.43873075406572	5.57861784491825	5.64409255360519	5.38948352425896	5.46324813012022	5.16623815149816	5.42700728682623	5.61523362056735	5.21221124885585	5.62672856693513	5.81102818183535	5.32373093529655	5.32858485442025	5.73458833531939	5.26841841434408	5.61826600606835	5.46900110136891	5.28459520027674	5.17209558432545	5.68990593825092	5.57937858863693
+"C22orf31"	6.03533060053245	5.4253143067927	5.55663101838454	5.7735988812346	5.53003272768461	5.52858203683901	6.03670275142162	5.44335498564264	5.50076182085259	5.5455204250951	5.57407465100869	5.56429201456719	5.46724951036471	5.94928309811246	5.53676751101745	5.55663101838454	5.48551942479832	5.71800947476536	5.56243129480109	5.36654980011219	5.59891260840252
+"C22orf39"	7.48079417142632	7.85505975115732	8.19012147304844	7.58529229188318	7.71769438552768	7.0159029598642	7.48518928432399	7.82143201160531	7.41942507920453	7.68520880856018	8.02714889822423	7.86152543142746	7.50393557904815	7.64068749646961	7.72928196130852	7.66117427749088	7.59889178408555	7.70473068819043	7.81414936696127	7.76495650786326	7.63705992756726
+"C22orf42"	4.80512532627352	4.72101187636421	4.56704612816375	4.91686798569348	4.93779455780943	5.02382444970717	5.07945112510484	4.68873944022755	4.82105597234418	4.77504716281894	4.91110649816213	4.76545046499528	5.06983136221268	5.0086165230747	4.68379776636221	5.19680048362152	4.60664468008455	4.78650164478537	4.71999338265137	4.78650164478537	4.83851391392687
+"C22orf46P"	6.59651995270838	6.18942580091322	6.19090719485407	6.08995613792402	5.932104848798	6.88710984473308	6.58982664849815	6.12059484398192	6.09459363048691	6.03980868865898	5.91477867646261	5.62523659436824	6.34006914145677	6.881281432204	6.16858405520044	6.08058290354133	5.81488211379776	6.10919431819145	5.98109931265027	6.0531725273671	6.12059484398192
+"C2CD2"	10.3262257904936	8.93230504660758	9.1622263496283	9.28622215046116	9.19232477651601	8.77700163899015	9.23352021210757	9.19840422770812	9.38868030536586	9.30498992723845	9.02449568239467	9.05443180910589	9.38932335720593	9.30571762606008	9.33561849680023	8.72174693277495	9.44618552093323	9.0229769382775	9.25934698951641	9.57062270324888	9.33667040566809
+"C2CD2L"	7.5977132259543	8.09315457870335	8.43444847108369	7.90106416288033	8.41788877931289	7.88038485080989	7.49721548724289	7.76765127027278	8.03003491960641	8.15269411343177	7.77040244821133	8.27308747381309	7.97103121031649	7.80057772692262	7.6504060301617	7.7080585971092	8.22403118596085	7.97939987522992	7.84051361767206	8.45387162258949	8.19490486202114
+"C2CD3"	7.75668506159265	7.65526732818958	7.98768468022432	7.53513063369701	7.54778418446317	7.9257523695458	7.56734458976238	7.38374303181435	7.57645460724777	7.21589915685272	7.57367589231425	7.05769562944639	7.53940229845401	7.71585982992716	7.56860897381455	7.53669598266822	7.45828821497058	7.52850809898653	7.51663956458757	7.53745567951325	7.35951848797624
+"C2CD4A"	3.65370062615177	3.84618494845901	3.51483497984644	3.88509171534632	3.77564852343575	3.63664045531213	3.69021419940791	3.87014053691421	3.99014205667843	3.77340561419668	3.49425720826759	3.7283939807783	4.34178564455485	3.78010734913233	3.73988412603345	3.55198782829424	4.09270451147663	3.44927333376118	3.97309021508649	3.96096165261132	3.78010734913233
+"C2CD4B"	6.85403656203196	6.80242908315113	6.9814175040828	6.98740521530807	6.56322293972022	7.10059396907736	7.42114462893527	7.00067017704844	6.92860484524269	7.05697864720304	6.94080740785274	7.01977068628555	7.19773807936094	7.10460047299542	6.98929498185345	6.5399707297328	7.09761149236474	6.83274425807973	7.02902923510068	6.443834933189	7.11376497928313
+"C2CD4C"	7.09609075411173	7.5767555011942	8.10075218143609	7.7281679914575	7.36209630201747	7.55855869749353	7.60969503955794	7.39799051304356	7.7161701525462	7.61116125888192	7.44251038203725	7.61135211249004	7.61877776744165	7.60629431229577	7.6200027788609	6.95201175230769	7.54289494633838	7.04733003715756	7.5660167799776	7.58454882459837	7.41226878422168
+"C2CD4D-AS1"	6.49167278680167	6.86104049214399	6.97360716764117	7.1087505653285	6.99312677233269	6.72350246452147	6.62441473805651	6.56247645991254	6.93070038403925	7.09295100672418	6.67545589466469	6.96799963364818	7.25608375030449	6.64168826002522	7.15319175363745	6.84332908344865	6.93462525861128	6.75628441709902	7.09537183224632	7.04651984941616	7.0819289267598
+"C2CD5"	9.13707286754424	9.5280894867306	10.1338429683704	9.41541451764955	9.83369805010312	9.16511585102538	8.55106651404635	9.36674464434297	9.71073498126584	9.58991281146193	9.12913560066257	9.65555895858233	9.36193628771061	9.22442547460107	9.61544851118354	9.16889308782721	9.52832651468447	9.5765972722463	9.50232024681651	9.65754967769294	9.58658323045117
+"C2CD6"	3.78928358050697	3.54947491937319	3.64123327547082	3.69998165582602	3.70372775371168	3.82412905251028	3.41340934784367	3.48828328942683	3.44323183918669	3.55969993101081	3.54127067137852	3.28967512983776	3.66115528361897	3.79340624972589	3.34135317473485	3.55969993101081	3.5352223103244	3.50695934676427	3.62095389302718	3.59438789204504	3.39882247815874
+"C2orf15"	3.14397163783504	3.19750317675891	3.35383558639232	3.34640801741616	3.18017625384602	3.47298025610708	3.36528607720339	3.21184104105845	3.61978263829307	3.23905703290424	3.30627270553787	3.30627270553787	3.40567193490195	3.47278012989555	3.60553101052939	3.26961518234817	3.32828270232682	3.29714812153287	3.39466415280945	3.19749875340432	3.27818071109107
+"C2orf16"	6.5250542379989	6.65923904953897	6.31967013149281	6.76160922185981	6.59059030062256	6.4847744315913	7.03532212601052	6.44531452444606	6.70237264327526	6.47180229246191	6.37316142358566	6.57341521275385	6.54124332357228	7.13359421863413	6.58052063278497	6.59684200720749	6.78052261665882	6.26425089808492	6.71660034630042	6.443834933189	6.57744687067481
+"C2orf42"	7.87618258316071	7.6755405623083	7.9234367233477	7.68507057018643	7.6739361433185	7.24336261311895	7.37040411140242	7.26289759051298	7.64424375706763	7.56483122423134	7.60491433246326	7.44499818218702	7.57269220356832	7.33153196057585	7.64424375706763	8.11203691952437	7.51299413666074	8.06427228289608	7.79000805612991	7.56884070702662	7.33080764460817
+"C2orf49"	5.35811648293144	5.93054804104764	4.59551100154663	5.20919097533397	5.25654708327373	4.22418977974962	5.55890411844152	5.71011156651643	5.24172975418004	5.22881527915291	5.73600627318301	5.28887580306045	5.17812775597607	4.94309247553223	4.95396564545357	6.01411065959332	5.48688681424287	5.94426166546613	5.72629670452444	5.17698747475455	5.21396831827353
+"C2orf49-DT"	6.85870507249752	6.74923686144254	6.68356804281503	6.57827810930154	6.7486601462036	6.97298166974515	6.83931578544455	6.73415554554753	6.58709696817978	6.59159224815132	6.6241774050407	6.45209081997721	6.82432782322937	6.95948696465868	6.68356804281503	7.01922225574558	6.3010448028271	6.84735774073151	6.49586158149565	6.66237402427022	6.47871462242605
+"C2orf50"	5.21749377571238	5.42680600470045	6.00527844177045	5.57954786668121	5.63530849348454	5.70001099116284	5.22453229032841	5.2429446680985	5.72622201761576	5.52048838142436	5.16093609559369	5.3008275470912	5.66018071666103	5.7034854578923	5.50496860386948	5.11617258755115	5.58232244050931	5.09222612020317	5.73942446101506	5.36724102242157	5.43604477956549
+"C2orf68"	7.53355502159919	7.08550581634435	6.98062932410222	6.79886216769677	6.85627934396362	6.63941450614602	6.52246628200517	6.16238653663543	6.44647140655601	6.58194512015786	7.80542282132165	6.39501123962107	5.90106211818164	7.08265003901965	6.85766392233872	7.81255656692777	6.43951637689007	7.73850976772511	6.95537385901373	6.76594304964466	6.24003275754265
+"C2orf69"	7.03941489258068	7.57667989838505	7.60460221964057	7.6788368898926	7.64254592840094	7.22508747065505	6.82086485154473	7.75904935512021	7.79631111952332	7.72538100439421	7.80501462091241	7.56088538456129	7.60287874592771	7.1146441867365	8.12242829646909	7.37190617550046	7.54344009436195	7.76846735053907	7.77111780417844	6.9647189258183	7.72031224800616
+"C2orf72"	8.31170658391776	8.51027031988489	8.58412852238278	8.56871844257419	8.09433647900875	8.58522684787125	8.72324657223771	8.28349866387846	8.51102377118637	8.47075476237987	8.71473596491171	8.44184234153826	8.51102377118637	8.54373844448636	8.43822322415137	8.41830417855504	8.40049496160522	8.42550575023585	8.40462350530568	8.60044978767213	8.22724425090206
+"C2orf73"	4.83851391392687	4.95627318123564	4.81552575555686	4.86804595397877	4.891431597517	4.75067614582861	4.97803986600197	4.78393127870971	4.87870941519219	4.82255418563632	5.11872124641065	4.91512066266508	4.891431597517	4.93894007168228	4.68096106573816	4.76539003366626	4.79372675558808	4.78214746426468	4.83295506175759	4.62647131708563	4.74655788196538
+"C2orf74-DT"	4.12537513179938	4.24017908998714	4.34388806729051	3.7376753292085	4.05872562803271	3.81941458325882	3.94101507749213	3.69631228120189	3.94101507749213	3.94101507749213	4.47255052002263	3.87205137131574	3.58657035912302	3.62856632443997	3.78783350473355	4.50329938927192	3.75394632871957	4.55307110261703	4.05566491360514	3.89867926581298	3.62097679740009
+"C2orf76"	6.88604655107656	6.82015384764351	6.51728227080723	6.33024619020241	6.13774623676438	5.65495321922124	6.37528463308362	6.52652433086436	6.14122518861898	6.28667831211221	6.96093889735196	6.33908923384695	6.07915743892895	6.12415709752868	6.51499177793643	7.26896397552523	5.91176951567496	7.10107805071282	6.54367896325785	6.42288527091232	6.17350475761392
+"C2orf80"	6.43753304448982	8.4923172795107	8.9978687935877	8.47217919594786	9.38537048581809	7.20868732222829	7.00582192707682	8.20455572102172	9.13115218831282	8.8607892453717	7.21335761320047	8.75919522598537	8.33499668145785	7.17021156771537	8.34309280659127	8.23757098759445	8.81764641448191	8.49700875812198	8.43107538357703	8.91756810595144	9.05627853804559
+"C2orf88"	7.3611981304486	7.42031437937867	6.85542358821453	7.26818147258865	6.99084963754686	6.93965043068419	7.54773080634578	7.27469481818516	6.8520839458958	6.81096586012989	8.2501137827765	6.93843360129349	6.43592202047191	7.2874296998493	6.87145634489581	8.24030944636308	7.04056033070427	8.57976531996501	7.31647682888135	6.92221153672764	6.63545257392239
+"C3"	11.3078956015211	9.94268581176981	8.9568661578353	9.47414467036791	9.81470892673452	9.73237972458305	9.76914797736278	10.3103538725844	9.06181877778342	9.67861085686494	10.7914248359408	9.41403063850648	9.83488230168438	9.94740236185329	9.67851623201427	10.3163659137964	9.18932871312299	10.1328176189938	9.71767813916828	10.4220807752847	10.8031781730615
+"C3AR1"	8.71340696094409	8.08648917810219	6.97651101129983	8.00298332543503	7.59253426280761	7.54181197727614	8.38530233020885	8.07405837395013	8.25053845306369	8.01073270543196	7.85555086901028	7.10308073486948	8.11912492145152	8.46945315542366	8.18195445892495	7.71040160805695	7.74936396785846	8.01073270543196	8.22386339522785	8.42184206606348	8.19078604302079
+"C3orf14"	9.57833930212602	9.98704940784306	10.1823213267702	10.1388363808217	10.4642116180561	9.26216501311105	9.44863960971997	10.0317835265416	10.3043846234967	10.466427254642	9.71776858209833	10.1843439957536	9.82747037556952	9.363835268583	10.263310467416	9.97241821100945	10.0120128746792	9.82842887445574	10.2243885797718	10.3597628370442	10.4408398107262
+"C3orf18"	8.46294857990023	8.37623106404964	8.3938586620716	8.22501585053772	8.54155206343852	8.48403230814029	8.741487603327	8.17251780834724	8.35271818418595	8.45238568182401	8.36439660944262	8.43883840344383	8.29565812128207	8.6063662941562	8.38099128225395	8.26539986135749	8.27060202699345	8.27147064089011	8.3211505116759	8.57655245009648	8.36959591296105
+"C3orf20"	6.03298793618485	6.32679431064255	6.41912424161722	6.46067764317175	6.45387463421128	6.4542302731533	6.53259054546832	5.98201204925584	6.16253380501915	6.3664602272609	6.07731382520726	6.41247065360041	6.32804008770739	6.3220541357169	6.40094536071692	6.19090719485407	6.2798146109414	6.24707871270986	6.55969639959071	6.14901445993932	6.34795989554301
+"C3orf22"	5.08961543800521	5.28340378270113	5.14873702581648	5.39940823008908	5.1716869876303	5.24015154618169	5.34554278030948	5.17959471546583	5.30411921392076	5.37608032894306	5.36016354749226	5.3511228715326	5.4077054390681	5.40212444777888	5.5080383559983	5.30411921392076	5.30411921392076	4.97861895397979	5.29432021318906	5.30411921392076	5.48524193428683
+"C3orf36"	5.08961543800521	5.38495327116191	5.41399166594022	5.49889635547896	5.54042617127571	5.72438222312257	6.20188610580798	5.48912703095881	5.6276473805543	5.60030750030271	5.47831590142259	5.6063795171933	5.53294215327753	5.87685690726268	5.42443364461102	5.43867334573918	5.58844331240682	5.05036317763563	5.52910335785716	5.52961858516002	5.53147984400162
+"C3orf38"	6.44796237400573	6.56676752497328	6.38916458996811	6.90212071160189	6.27903959156324	5.59287987113025	6.20780488832847	6.59051434375448	6.48404141620055	6.11293551581248	6.68318832238131	5.59362560151352	6.80313380468457	6.21182195081787	6.93514732524285	6.22300732272913	5.91536334384264	6.71445711077409	6.40632009559112	6.19685085119816	6.17478496684524
+"C3orf49"	4.51630380409827	4.48621980927019	4.29330227024464	4.60813262680962	4.58333812363638	4.62912364012162	4.80147388249542	4.51621385050909	4.68481498463101	4.51630380409827	4.54751080496412	4.54137198263651	4.45075965070038	4.54137198263651	4.78447994247241	4.49751492817647	4.25688999251513	3.92185600982625	4.55974308300449	4.45973869490427	4.65919850231827
+"C3orf52"	3.92313338109428	3.79847127829151	3.84054160309622	4.32498627879731	3.8702537418326	3.99326858562721	4.07072507408252	4.2133442951573	4.17996642770898	3.95028824349014	3.93235342540623	4.01848832510765	3.88897698133578	3.74904415648929	4.48210782370797	4.21145523463627	4.06113241327036	3.8676371366319	4.18307644931866	4.1529291343358	4.13490661720974
+"C3orf62"	5.85210747279865	5.63797583591103	5.79114734971711	5.94347749257532	5.43700139594954	5.4019899563973	5.94257296473136	5.24803990988149	6.04925239395674	5.41421137303495	5.67440955507426	5.34373835199929	5.89802190913235	5.79475200749539	5.85210747279865	5.32102168116579	5.45758766555479	5.75379399275855	5.55270787708343	5.6786225490111	5.67440955507426
+"C3orf70"	7.25222212478707	6.75619837261657	6.88659558413082	6.88061552848575	6.81180818916157	6.22779738292176	7.19055344092297	7.92405576558842	6.75619837261657	6.59041547197981	7.17949633289193	7.12135129543685	6.17390773361113	6.72401139155444	6.53054882852813	6.99469201665118	6.4906839925424	6.76831279460712	6.43868114672175	6.76493189745756	6.2371519546582
+"C3orf80"	4.76778630627644	6.54397209964838	7.15975398970612	6.44255418090868	7.44798440668715	5.97748939921437	5.05645081174618	6.01438580796731	6.94871677620149	7.21556031463315	5.45386782576457	6.61686774499681	6.8771199071284	5.86681527806288	6.73719076395448	5.89668566357291	7.08612065017728	6.35430717119677	6.75886416575927	6.75175245470425	6.838322691496
+"C3orf85"	3.19974090533624	3.06414486784382	3.06515849067803	3.21637157206181	3.02755080015541	3.18139735539287	3.2394604499176	3.0886757109756	2.93687256024542	3.02028679343314	3.0006010426905	2.97656961751351	2.85752154952081	3.11785832384075	3.15620460211667	3.01866476581578	2.89859910801233	3.01978501771485	3.07414236947438	3.08760384089421	3.0257884364306
+"C4BPA"	5.40113781910747	5.33816895365461	5.23932891201475	5.67855961462717	5.43850749839151	5.30671435496432	5.02911786542874	5.51700610337865	5.4109784254142	5.38544881134537	5.40301551890611	5.61137082615804	5.3270809536178	5.27581603057801	5.40301551890611	5.70356437511395	5.63889119255316	5.20208108233432	5.4122873828579	5.37547244757552	5.59231898861442
+"C4BPB"	5.71040956690098	5.71040956690098	5.41294990361741	5.71040956690098	5.62062869448911	6.02863930888082	6.35413564987962	5.71011156651643	5.78747470242146	5.76475530430507	5.77962688109354	5.59314560713649	6.03723081762451	6.02183978381844	5.5441580325944	5.69334331628624	5.71040956690098	5.20933994731608	5.83849781320393	5.59763433492666	5.70070329599925
+"C4orf17"	5.45107214613956	5.70337049210505	5.67835239195679	5.74541381367923	5.83933789793998	6.1026826652969	6.09965257366577	5.60229862363709	5.75999274188423	5.6599761519986	5.37233815515126	5.74541381367923	6.06686372633476	6.51946858726751	5.68336826234931	5.53917470275551	5.69649687547988	5.4627905567648	5.78565221646196	5.74541381367923	5.83252609992872
+"C4orf19"	6.21809136445684	5.38023658310133	5.39256889886875	5.24953446678608	5.28743429363157	5.67541116318051	5.66053577225475	6.2006296392626	5.93184326536266	5.02714054031669	6.10934430416289	5.22025635773318	6.09972095494465	5.83558185794011	6.38563967509075	4.9673482423373	5.20891818393407	5.1613047616464	5.44329944582627	5.3259766885614	5.17241292660114
+"C4orf3"	9.59270781592124	9.44403418911994	8.73669159578334	9.12033034538837	9.15700805133351	8.3337222704489	9.0028928036354	9.39191251923914	9.20210478446753	9.50610715416899	9.47274659958656	9.56086393499718	8.8525875294208	8.7030594882894	8.69271206909854	9.55186960449469	9.1298392165089	9.47344158999881	9.26738153582019	9.50156505553621	9.64641939081704
+"C4orf33"	6.08201206151869	6.47076817318363	5.95758068528712	5.64778786003062	6.54665143605097	5.76027893670228	5.46387413487212	5.75477268534785	6.22135411696635	6.45239449662109	6.58568360303643	6.24840846145898	5.91310738955107	5.55858520107563	5.72781825863179	6.30997109772858	6.00237259660217	6.69953081833264	5.98704518123004	6.43061084890915	6.31646752481577
+"C4orf45"	3.9291981449297	4.29342207969533	4.49464708081483	4.1129157976824	4.51328097192318	4.15208892540975	4.2074454749028	4.07550290986343	4.16089863856463	4.15370603486899	4.18833152432505	4.16794587159619	4.25751043796756	4.14520664898296	4.19319964599415	4.09229902287717	4.22203413009198	3.85332225623717	4.15208892540975	4.16504901925377	3.99816668276881
+"C4orf46"	4.72083029964895	4.76934248945715	4.70260806444531	4.50269049643813	4.63640961975059	4.4421515514549	4.614123457653	4.68295771160931	4.54595721813705	4.25102897316181	5.32609146159568	4.56655609975404	4.63640961975059	4.76732143852535	4.31908365605216	5.7360083790025	4.46402300246092	5.79337171468001	4.58521668234293	4.57008292333102	4.29267211196604
+"C4orf47"	6.09989121588499	6.19373899367826	6.2607425953646	6.47951850334146	6.02666749110353	6.43922097142266	6.70702605059441	6.21713179202232	6.72856761900608	6.30151905057613	6.35321616738592	5.95808696182264	6.64418020531479	6.42316959745497	6.62761482141722	5.78482021451226	6.11270973447173	5.90273430300241	6.4738278248506	6.14975750921163	6.06757328940204
+"C4orf48"	9.37283667712009	9.31756921673021	9.51727091626158	9.1462005883142	9.14139294346823	9.78549536794848	9.18741159246194	9.11750520895442	9.22733058402857	9.12003792150888	9.47318032065315	8.84590597587812	9.35408894255648	9.39775813792537	9.53560683762954	9.64946611327343	8.95754833421714	9.67665609997286	9.21549006256406	9.15266251413179	9.10146288840086
+"C4orf54"	3.47386256191801	3.66978340064763	3.86484642448161	3.77903537571257	3.87109846067838	3.90926357357216	3.48401303533419	3.60117922430116	3.64795214371366	3.54602543151732	3.38981705913014	3.71124048256162	3.62636718707492	3.78741066076907	3.82944503650739	3.41747965645583	3.69104846049734	3.61032193747022	3.89370716549509	3.94116001806085	3.57733263652323
+"C5"	7.00672365545721	6.67827174927486	6.77379139784107	6.21043710970662	6.58290614466791	6.45900322577477	6.16585162221826	6.2775742785139	5.8704121990033	6.30404854550103	7.37281765365007	5.97769442122214	5.97066108596012	6.85730180653728	5.84780856942051	6.85396153117772	6.02451174056644	6.88329988183019	6.26456190144773	6.35658140026559	6.04907098494066
+"C5AR1"	6.88118012235802	5.60794401831697	5.12585354093131	5.6984249620343	5.2009505634801	6.50509558121217	5.86612076618414	7.46746872861098	5.57194830793085	5.89708195618327	4.9137947433922	6.82433513534918	5.83309935617405	5.97201855291513	6.0538768909792	4.92718536075917	7.33987963793159	5.43363019783029	7.15656518260107	6.25546612494105	6.54057413374133
+"C5AR2"	4.15736527633333	4.12283165830108	4.12260241504503	4.2508729087007	4.15886214192813	4.39057612755299	4.48654447261242	4.17050077709193	4.24760598769647	4.3760532298543	4.24582644458857	4.40490038897165	4.46568602689953	4.45281066300298	4.11855512408291	4.17305587800965	4.34634699370544	3.93960735737481	4.37627063626003	4.29222813508117	4.30881033921932
+"C5orf15"	8.84934635431486	8.59226469135332	8.91106067850632	8.43532592812878	8.63144009969078	8.51937247043985	8.39441495071296	8.78771013367279	8.53969184738326	8.63693160091462	8.82637762054966	8.38105433681043	8.4123609608143	8.25809003582668	8.53066243015485	9.13779334544838	8.40433668668436	9.10329589122804	8.56253609843328	8.72633206109612	8.5322732927325
+"C5orf22"	6.23580991974343	6.91279799092925	5.55834879927977	6.29198597070919	7.09862892446017	5.4927943543562	5.7823018078868	6.38157370138687	5.97244175487253	7.08810578026404	6.35987435134136	7.09239288778888	5.52673101547816	5.26590355278674	5.97240383539823	7.1980397782162	6.78351014829913	6.94819050212499	6.33313022424228	6.9602473183927	7.23480460353151
+"C5orf24"	4.5835469088587	4.37999296019968	4.46073518707488	4.8508177743299	4.74297220095942	3.62652938295717	3.95541055648702	4.67537841446558	4.5259591307944	5.29497677936208	5.06463564410842	5.35906015859621	4.90426019058736	3.98848642130471	4.30694480373761	4.7192212674211	4.6207671992335	5.4283211458124	4.71909111918315	4.85683397606404	4.81498603024443
+"C5orf34"	4.44116493092996	4.60457371404321	5.41864908295659	4.54639492307119	5.04423992559883	5.37236187262334	4.59252969247884	4.66784483447504	4.49326572339877	4.57512919121534	4.52209636354515	4.98716058082005	4.62403072783591	4.63654115766081	4.53452680239508	4.49008176145483	5.0427898241481	4.97149408680674	4.52225968305302	4.91512066266508	4.66784483447504
+"C5orf46"	5.11717992446817	5.09294274244049	5.16304009926144	5.38501434823116	5.23511247688735	5.36423738316108	5.15704718358843	5.14939827223791	5.33650434077007	5.0390021558619	4.89954922000968	5.37335404160382	5.32050910699371	5.02275853393769	5.55224381435134	5.51230424839049	5.20830946803946	5.0754433045409	5.25949884662007	5.09492940997913	5.34502584544185
+"C5orf47"	4.65837215101902	4.84504657002461	5.16053753515084	4.83253003256814	4.92719598040873	4.9959347855951	5.26234020786469	4.85878094946408	4.90130215041041	4.95327570282085	4.46847484194064	4.7583771492021	4.90130215041041	4.88777994906477	4.88435781795955	4.78867152861031	4.87298259408931	4.53414888524364	4.52569110041237	4.78508015631653	4.74147952224468
+"C5orf58"	5.02603822887231	5.30110878360179	5.15609585029237	5.43727203400929	5.12675511901359	5.03724002244087	5.37563671456396	5.24330207868861	5.7834618348425	5.2893801776144	5.18755357030225	5.25919709787991	5.25709715408677	5.22209266910451	5.46167584776359	5.3011842384525	5.2585309202763	5.03752195380828	5.3539164445727	5.06362314284165	5.5547886133111
+"C5orf63"	5.40994115943497	4.70846881603925	5.25104275128291	5.08613107033404	4.98423804094025	5.6671101870126	5.2531315976346	5.0935710334601	5.02066097209631	4.74996363886711	4.9120914905265	4.78487676146912	5.27432563560587	5.47238404453623	5.16635340809226	4.84953675203686	4.95740523217963	4.89550325299867	5.38510196778148	5.14576099873657	4.70262409074847
+"C5orf64"	5.06549218891651	4.98857367749486	5.20684858663208	4.92216286956899	5.29370462647374	4.90428433731269	4.68865681995919	4.70638504568273	4.97996265113183	4.98428554289923	4.98238885385943	4.76764009535909	4.75799280259008	4.5103413379563	4.68258204014161	6.81129398798748	4.86904024182914	4.86904024182914	4.90333351276525	4.75032853659419	4.21622694002129
+"C5orf64-AS1"	4.88548364385296	5.00085833622707	4.87235912589732	5.4489405488485	5.00085833622707	5.20143431247459	5.14672311904623	5.02355094436962	5.14688699360305	5.00085833622707	4.8912002917146	5.1151017121839	5.08489143036701	4.95025122559447	5.12175008116091	5.00767542307121	4.91416823460801	4.42466835756211	5.17346178589155	4.8868677761666	4.88473264900849
+"C6"	4.34205913795556	4.19218822662989	4.14298372757141	4.49901723213013	4.22179178188081	4.69486912536944	4.97917273751252	4.39775809221729	4.52031285959364	4.43848805853825	4.55587570207812	4.62194879502235	4.44513905779915	4.599374949044	4.56881326495226	4.64529479281057	4.54511532342421	4.13635672817267	4.38998626174692	4.4259180403399	4.2485548886775
+"C6orf118"	3.95818761334064	3.54030862949994	4.12165789345382	3.96572568937027	3.67884275111033	4.33521634681743	4.19111483082684	4.06239889745532	3.93210389180697	4.02481138513079	4.1547416918103	3.99550469525468	3.85348449099408	4.13379619945791	4.08885248615002	3.67324992028871	3.97196475935602	3.96779852709763	4.03562942269253	4.02993941793265	3.99550469525468
+"C6orf120"	7.42039525336397	8.06499835919368	7.66287905439775	7.3038481214053	8.32216442489787	7.24083661145505	6.82820227737292	7.43864030520861	7.609941154059	8.29945410492559	7.62304569784405	7.80321001407361	7.163867457529	7.43506256659376	7.41222403628047	7.59690712322087	7.56579217007634	8.34352733904093	7.29297674728635	7.72136221600888	7.86938113815476
+"C6orf132"	4.76915142327097	4.66515462072358	4.76416702064785	4.82962418256207	4.69503877443165	5.31375669101843	5.65076124613482	4.60042476204417	4.83143821010814	4.82759502878386	4.77111450719991	4.7729740676873	4.94921930302366	5.03471096804529	4.95771342590708	4.50753685372917	5.00009197737704	4.54387563767452	5.00261465262165	4.80919879003224	4.7096388695463
+"C6orf141"	4.33043911904524	4.26870251343034	4.26121989001319	4.57018250120868	4.31947956637609	4.33153245905045	4.78441282217219	4.28816410806883	4.64203863658805	4.43303476513204	4.16803928020267	4.39848599223224	4.39339032952348	4.19986245112149	4.68939459255288	4.39339032952348	4.49463862615557	4.12790748686013	4.42826828222531	4.79773182019411	4.41370457171838
+"C6orf163"	4.71698682295641	4.3703964778965	4.6772320855433	4.5175387732782	4.30901706588319	4.81699182113948	4.76305555105519	4.39068398771319	4.51888738187964	4.46816407572473	4.21441695459469	4.4338526546948	4.49714025944563	4.47957642867037	4.3917433020087	4.26745175664643	4.42629027350252	4.42196691386508	4.40187645130486	4.1128010175314	4.42196691386508
+"C6orf226"	7.84511573625713	8.0278187988968	8.25313241854559	7.7290749007929	8.0545812149719	8.03339546054193	7.86952141681939	8.00828116577362	7.69284814420911	8.04895719556169	8.14000438746064	7.95058098509737	7.79954965270782	7.95699931849038	7.55966960540188	8.13396868387171	7.71677228183695	8.29185087240194	7.7119257246645	7.96934924170371	7.72353902966346
+"C6orf58"	4.49497619638741	4.63274626138126	4.45839487395845	4.57199613762092	4.61284354163675	4.57728040103959	4.61284354163675	4.65884702537906	4.63549335700137	4.70507684463095	4.45387321012539	4.39727702179357	4.79407709991622	4.95435367591495	4.5448963140844	4.61284354163675	4.68079529478334	4.5515524415635	4.45567597513562	4.57588689746838	4.71756697241299
+"C6orf62"	8.28617533914144	8.35569205168595	7.32922290795121	7.84877508858287	7.89086213240105	6.5533441845633	7.76231890142047	8.13663776606428	7.91673200345334	7.85948292803675	8.19998664237632	7.55936106094345	7.51010609900737	7.53054934205083	7.3651261113759	7.95457979056043	7.61265034176549	8.00251108028989	7.83428705228466	8.09270142452498	7.80817298734557
+"C6orf89"	7.59141489287672	7.36387544680352	6.81154738424449	6.96823980808623	7.15784916478329	6.81988485575895	6.93563871932719	6.82390002428263	6.95915690735604	7.48147009819389	7.3941904207997	7.45915751439868	6.50583054903936	6.66375997568579	6.41533755392503	7.7976216191312	7.18816529523672	7.30795857046429	7.01133814648667	7.53439680564294	7.42791278492474
+"C7"	6.06425536978966	5.33803321023009	4.90718520917642	5.2586987902394	5.09479091041949	5.33516030991524	5.29168699926678	5.83661917205525	5.45268281445293	6.17302192199243	5.52476671823071	5.66275564281968	5.18889659959531	5.87945314281506	5.22518122186025	5.1664054828458	5.37061525186396	4.89550325299867	5.77221140158735	6.63748528026288	6.03314313003854
+"C7orf31"	5.37840306584889	4.46469672508332	4.25058056915956	4.29107459953354	4.5097350119951	4.30291884282523	4.49852897839739	4.29107459953354	4.37216293226329	4.29219031759917	4.56367609543278	4.16553271258831	4.35835533344476	4.38030887576726	4.22665843782441	4.41346542206068	4.31780308078056	4.86787663311833	4.46494290230381	4.45560319461689	4.37216293226329
+"C7orf33"	4.46451118950281	4.29823835054367	4.34896651703258	4.34270212049789	4.2702114891146	4.15208892540975	4.86774235475322	4.44674474371995	4.45306796422786	4.56025405790176	4.41789394802866	4.51221002590728	4.51964381348958	4.65379024429224	4.21655539371531	4.65029288499483	4.23204064474691	4.24163740494671	4.6861224179666	4.39813385442745	4.71793846953688
+"C7orf50"	6.99508273191563	6.99382112136409	7.33044281654036	7.44472431524482	7.07779393515854	7.88654186728439	7.95614422385406	7.1892698935817	7.31554846250128	7.29345342113673	7.0262070211021	7.32074258959774	7.31337044443014	7.57626370232608	7.21451786459852	6.90027251371654	7.24688554818105	6.8767519573418	7.35656730518466	7.29161076883364	7.36898137921787
+"C7orf57"	2.79253678220399	2.81641428639624	2.87048538465503	2.67669683604206	2.76846321795878	2.89757342719829	2.8481026828753	2.66369123006078	2.90074890809225	2.71034141547844	2.84145585222238	2.76317728305951	2.72729888095904	2.82165673583792	2.59833833712871	2.77840639365704	2.71034141547844	2.76846321795878	2.73929845206935	2.77900879850162	2.74231550335779
+"C8A"	4.49865679722406	4.369547481657	4.49497619638741	4.69338655142026	4.47557367318764	4.69942861358632	4.99494951233635	4.284727423864	4.57995943391583	4.65283859681212	4.5747581208188	4.55468518027566	4.69028412307214	4.74872229516339	4.4752576076541	4.52338053426241	4.60050215109851	4.57836969657101	4.68739983559259	4.61320523616721	4.68527464377585
+"C8B"	4.80867193080972	5.08684394772411	5.00201445325211	5.16263561676568	5.31085921744476	5.55147483414412	5.30414423973762	4.96530284883724	5.29978794293159	5.11808456116667	4.8374906326823	5.02137038904013	5.1966690958873	5.34764801662869	4.87278301926725	4.66642204801158	5.13249173277383	4.63546001345872	5.21041723795349	5.20360392812652	5.28411967156274
+"C8G"	4.17074792131116	4.35506077692264	4.39773031224486	4.05774249078042	3.833253461783	3.99568828528901	4.32309110463082	4.35208365499342	4.03455613636841	4.07062314788308	3.99630157300284	3.98230205947113	4.29451799987537	4.01615771219074	4.15871293994809	4.16325092076062	4.02607947924097	4.34247776378131	4.29091702559873	4.16089863856463	4.1144493673569
+"C8orf17"	4.40782948338711	4.2075067601351	4.34057268666813	4.57381991730039	4.37515693235641	4.49924400375232	4.62847326018348	4.3361334129162	4.3612308805199	4.18876681107982	4.08193599403084	4.30291884282523	4.16506743576829	4.60987794998626	4.40664442222985	4.30694173625415	4.50512962146941	4.09396477809178	4.33278828219766	4.34705308330558	4.29179185063962
+"C8orf34"	4.62254639694968	4.7978346018662	5.35660634454533	4.8390070763202	5.12746650795198	4.88284472334969	4.03370460317926	4.35670172732658	4.59988397215201	4.89948965199985	5.90542277653356	4.63623757895333	4.4913277042382	4.16397983221781	4.8337679084674	4.95432233659746	4.92772583359961	4.67803178260196	4.94434686838976	5.74633230899111	4.81996255595648
+"C8orf34-AS1"	3.43561657898329	3.62447511787579	3.54251301245929	3.33976274031662	3.44761510179555	3.83073845280649	3.43402798952802	3.54431682467351	3.42675163018498	3.2734863114064	3.41139959161051	3.35929319851872	3.25297136812691	3.47242830021544	3.43813017366948	3.41021451029104	3.62221972907979	3.29929921032734	3.41993083431518	3.9781545387865	3.35656992280461
+"C8orf44"	6.29079601809376	7.23288179668671	6.70579919937004	6.91872823677136	6.31942876777122	6.3643480768716	6.6311263053006	6.63859053059305	6.95630280566102	6.78055548668774	6.91444503806962	6.86839939094108	6.84289789423911	6.70579919937004	6.92742408805237	6.57511942839469	6.73328346053709	6.1003097933804	6.96892065249692	6.82411579612043	6.53625440801226
+"C8orf48"	4.45315089456367	4.43332781386905	4.52773600879895	4.2978242396795	4.44544450457998	4.32157901972816	4.47481307652233	4.10963570882816	3.95780797065298	4.54594611074837	4.54594611074837	4.22408284157785	4.32352881086896	4.60023320177745	4.3608472996809	4.55487124329005	4.25745404878206	4.47293470917252	4.43000143561975	4.2947976575029	4.44357436358341
+"C8orf58"	7.63653527252418	6.70405530579419	6.83715071633914	6.90506417336587	6.75814606993319	6.82045567399941	7.08768302692292	6.9132475821373	6.91272725577606	6.97011623400701	6.82045567399941	6.38805530800304	6.54367896325785	7.14590405206842	6.81941729275077	6.67250451216728	6.38555986618653	6.70080876281584	6.47865977251192	7.05152509301943	6.68911165034618
+"C8orf82"	8.26212358810443	7.90704158283155	8.13747291754096	7.93008845848352	8.02085478657025	8.62346843899545	8.37260214042215	7.85889194129659	8.2882039298419	8.19707426214212	8.02846001406047	7.64201209597436	8.09292167965911	8.26714290319597	7.93635472179153	7.85542185112619	7.89946581535078	8.30343662304747	7.98562321354133	8.16879058644757	7.92146883655514
+"C8orf88"	5.33090616595214	5.95768249566002	5.61486926688557	5.76397107501407	6.72373104731898	5.44770575772599	4.68472682458585	5.6926076305161	6.42846666852438	6.52032339480472	6.02622319697376	6.42710649316808	5.93531827294673	5.53232804396163	6.00227728568941	6.42823234604319	6.49007903318225	6.49832173669447	6.21026832560533	6.42178480167474	6.69286350053971
+"C9"	2.93447411914876	2.95230893690578	2.87502127298499	3.04635920210918	2.95741683692828	3.39546736218985	3.11500998709794	2.78768585137312	2.90460130618973	2.96014771098496	2.91280813036027	2.98652466346233	2.98652466346233	3.2494490546561	3.28309878214021	3.08825415442774	2.89765114769544	2.98652466346233	3.12134775472086	3.02624646627005	2.98652466346233
+"C9orf131"	6.0763425673287	6.30742207647241	6.2051983439602	6.40675977368451	6.07784206370691	6.21540814792039	6.43912644046488	6.0405967352306	6.44462388154056	6.42271278272743	6.08167350911587	6.24572486105088	6.45866947282754	6.29079601809376	6.33642290667671	6.23622768299813	6.33892295191097	5.78617945977011	6.49801703947115	6.15673454640678	6.35659726479945
+"C9orf152"	3.16781410565141	3.24263727349325	3.22569488504146	3.16619947615899	3.1921594011656	3.30364164998038	3.42236533819756	3.27947990912023	3.24764937931582	3.06862290951034	3.00805385078221	3.19974090533624	3.35096277741938	3.24419472750273	3.34877707880284	3.06579193895515	3.3210787589393	3.08635501162698	3.1807919799176	3.18621048604906	3.17786911656776
+"C9orf163"	6.7648522191093	7.07940636025067	6.80190290366883	7.0781035093602	6.67054307069635	6.86391027749665	7.06304329293403	6.80200293358203	6.97223645077544	6.8485504803115	6.87337288836361	6.82736893280694	7.04537202759159	7.0446022849019	6.75799033165141	6.87337288836361	6.99108907224582	6.60253840019633	6.92333271317394	6.69035110370383	7.01898538258438
+"C9orf24"	8.61379493638498	8.3506128935551	8.7470064832441	8.09514877394596	8.70136663274459	7.43666334027197	7.71351261994475	8.5758482877153	8.27903089825817	8.57016985112044	8.35730239142776	8.36515952031384	8.07696515528989	7.91214152482257	8.20182346572069	8.29891584055149	8.13703528634036	8.00143717375117	8.00434539587463	8.93665594727245	8.5911025529435
+"C9orf40"	6.58484023238491	6.3400792619382	6.19643879518631	6.49973470609094	6.79293722546905	6.56291769426736	6.24487305846511	6.56291769426736	5.9935698897237	6.43595426023376	6.49216473412164	6.63565258771157	6.59161607558896	6.5799596631376	6.51090820999459	6.51169311976264	6.66053880034509	7.20048180844961	6.77025918273968	6.70021402774487	6.65643907823339
+"C9orf43"	4.34594277837909	4.3850520548548	4.37799417968071	4.07217938713124	4.28302418881094	4.60589481016369	4.64402855640724	4.11297751697891	4.09220523435314	4.30049652413432	4.34057268666813	4.20499906171719	4.53717492972733	4.68868018524888	4.16918558119783	4.50015965021822	4.24634282658626	4.52215789187463	4.29904973188542	4.22075493254733	4.42837616669423
+"C9orf50"	5.79976601284619	5.87451377747099	6.31330184597202	5.79976601284619	5.93117398469806	6.18525411831997	6.42299557962219	5.79418227738282	5.94347749257532	5.9825113661661	5.69881345860451	5.78244636949068	5.75888435245276	5.75888435245276	5.47235454242879	5.71299739519231	5.69463071263644	5.75937033805898	5.74010883141037	5.91423351962887	5.7185481801621
+"C9orf57"	3.2652789739968	3.02928779610578	3.18911246908135	3.36906835670274	3.28906430400298	3.51148316429172	3.18911246908135	3.01898758825128	3.08856557291839	3.24057021591395	3.08951941520503	3.14455905935583	3.02485450824879	3.05957023985846	3.37826966326553	3.18911246908135	3.21418488391359	3.24257965498721	3.18911246908135	3.0230136377985	3.25862185308616
+"C9orf64"	9.20591254281159	9.24819413282957	8.87793570054256	9.53770320995767	8.29970833447552	9.05226349221833	9.53331003835524	9.36176851658536	9.35603847572715	8.84207019547389	9.4902115227237	9.02123385302524	9.64342235276575	9.15030399074394	9.81015685280247	8.83177850341042	9.20591254281159	8.77008100660508	9.46290903715052	8.44767952851917	8.96770231065426
+"C9orf72"	7.06769220551436	7.41582561183536	7.38005012508558	6.26639546085578	7.6169039367785	6.89872875501494	5.52480472563767	6.946898839577	6.81996594209229	7.81989171697693	7.55539913603118	7.20641615786595	6.44067483123101	5.86852108962879	6.70968473918389	7.34326598131732	7.31230250423927	8.08673665162824	6.43779588422347	7.03134368810318	6.93080966451022
+"C9orf78"	8.21571283985761	8.1956094580359	8.34638069197694	8.28033745965286	8.15517386599736	8.30988030933217	8.14311276285903	8.1524365882423	8.46777582863511	8.19177996978351	8.31678248437931	8.07693952662851	8.31367802573461	8.16044875564426	8.37011064219271	8.21978508597934	8.00714422558077	8.38144355255586	8.40588777752325	8.05758278065331	8.08711499247007
+"C9orf85"	6.37023714995057	6.48728715422924	6.22146778784841	6.4095084185715	6.57913064605353	6.27202396143409	6.18345586451268	6.55468281999552	6.4380765286782	5.95453959520912	7.07891498113306	6.31774265897743	5.89974747892461	6.22252446899197	5.87392215693814	7.50134039488161	6.33905002702406	7.40721188672185	6.39846899401405	6.10371873091399	6.29450635380648
+"CA1"	7.77401110039703	6.62909158330628	6.57233324245187	6.71039873609301	6.7148685778436	7.14496332710353	6.66576122473134	6.56175228949102	6.70579919937004	7.25159626038132	6.26401949825238	6.69308384554369	6.70579919937004	6.87844892225575	6.74153401360245	6.73253309867692	6.63188463818922	6.29712290907264	6.55221730935719	6.58724751511697	6.88975685517405
+"CA10"	6.88742946064996	7.99503465815241	8.36639034258141	7.82976452836624	8.67635558376051	6.97800955535289	6.70817340924041	7.6514253200125	8.29621278820027	8.44734754805365	7.13267944238417	8.01457804275533	8.03707898714097	7.43547320346416	8.17460783127073	7.62907696303214	8.2933254246652	8.0777768666004	7.81760233679919	8.72862890404467	8.32818787738878
+"CA11"	9.55073838925389	10.5272270832994	10.5618673568704	10.5226192811109	10.4559640875749	10.5911736348175	10.5807525613985	10.5686858084996	10.9882880333787	10.7073725760696	9.82716335868719	10.6315587123419	10.5366694582569	10.5392927462885	10.6565275948835	9.71271058273955	10.6000274680805	9.99051715715082	10.5000069912289	10.6804913364488	10.7348720897443
+"CA12"	6.35167380560502	6.74258483604441	6.74258483604441	6.60072462967488	7.31813558307271	6.74795538253272	7.66573768197811	7.44908464256803	7.26416484525954	6.69717810888353	6.25509692233607	6.56074631012721	6.87759292194323	7.33018283569415	6.77882743495972	6.37138527205613	6.68047879243647	6.47295940615962	6.5589675670279	6.81172083157	6.52976273701396
+"CA13"	6.28328480330126	7.06886891807676	7.12756032551279	6.78834813397302	7.37094825325025	7.3426389750641	5.9721574541798	7.26018321412253	6.51467930213237	6.76373720351497	6.56596421337776	7.06841097697693	7.04525473410973	6.74853813895022	7.029837038085	6.44873792335739	6.51640024509321	6.55387221977315	6.78834813397302	6.9569251332905	6.86339808367579
+"CA14"	6.2695824894001	7.31946837477327	6.98138858595189	6.59678204282131	7.03371376778399	6.92389798796417	6.5215244562839	6.31992108197614	6.37327011811219	6.32974927073708	7.27531902155977	6.48997281743929	6.60316469595461	6.59645849546553	6.33130201293871	8.36634957886526	6.60285915253559	8.24523597615087	6.54379549165988	6.30381553046968	6.72002623893868
+"CA2"	10.5133681150135	10.7606062397085	9.45138861567383	10.482431900685	9.86625806548089	10.1705376415524	10.1857530848814	10.102586623311	9.84725117990128	9.58101537774426	11.2667859413375	9.18056438670679	10.846707779505	10.2629822339315	10.3636910856967	11.5749119850303	9.57199817501492	11.3674086665663	10.5660299620756	9.4842547385637	9.73827085920022
+"CA3"	3.39900221693648	3.01919861707634	3.17799794750984	2.9705479212407	3.19930292143631	3.22650423630972	3.33670144983492	3.32235411303603	3.09991972401008	3.17244348900236	3.0941806946737	3.1050565429952	3.21161837346039	3.0972217244576	3.42598080769835	3.17244348900236	3.02317858430293	3.19252788411931	2.98294024984981	2.99419890511104	3.23907139607039
+"CA4"	6.76234194440597	7.11550068806998	7.4030766632588	5.96238649532191	6.90503367131745	6.29535049736673	5.79380914908463	5.78974892131436	6.51842173865867	6.78412309036424	7.3469522338395	6.15892350652012	5.75052489143746	5.91239221875965	5.66766398300827	5.77845423348826	6.34881522402393	7.01711309139434	5.82892904504799	6.68458396877338	5.93588659376315
+"CA5B"	5.57243806123948	5.7637414832805	4.9052187245325	5.60672304735301	5.85275515370317	5.54775569475702	6.02135462906003	5.60038864110907	5.48931652735624	5.53294215327753	5.3705363312897	5.68917154451384	5.67843370471679	5.19725754000293	5.32451161469616	5.58650916716405	5.52832538233077	5.61035815300507	5.47055626144018	5.36294013261395	5.36490159185711
+"CA6"	5.10439584674383	5.12964080407898	5.17781384498418	5.36784507057379	5.07508829750431	5.33084992539249	5.48541711445612	5.23513752509279	5.14785645014479	5.06293565156177	5.13395315685988	4.99667335740846	5.38054010190363	5.85248942224215	5.09913593976763	5.01568657539006	5.31992368472624	5.14336386517758	5.40487862064376	5.21230086748849	5.17531102246592
+"CA7"	6.44375665841247	6.78066267068111	6.9664043423685	7.03191629759844	6.94009253571869	7.11768224179541	6.97287045288812	6.39286914796421	7.13081736787554	6.93541905023983	6.58915957682154	6.8394489955486	7.28115383489125	6.95078571366983	6.94871158127969	6.43812184161378	6.81944222266254	6.42606883646577	6.8394489955486	6.89546907740355	7.01912517249979
+"CA8"	6.84730122555874	6.59489691393679	5.76937539678552	6.64040443066739	6.17673493343869	6.14457228261472	6.94253573263472	7.01516110977938	6.40786812435801	6.40625965332654	6.40625965332654	6.52648165803827	6.20807581283833	6.29001495921007	6.22989426068639	6.02126828628791	6.2410340010824	5.9714080873366	6.5471287508098	6.84529391587159	6.35853030837593
+"CA9"	5.82990281019782	6.05346448557723	6.35026540108519	6.38830354708305	6.21039886022192	6.29883615087395	6.29883615087395	6.10423512777934	6.57295831652808	6.49615554185587	6.20616392474969	6.31774265897743	6.43428351318233	6.54146808189856	6.45585879093718	6.3025240030143	6.23553387530356	5.94915039373008	6.54183736520014	6.13749750581831	6.31913625788774
+"CAAP1"	4.24508537112451	4.35323175793542	4.40827564418163	4.39021585751689	4.9034157247948	4.14040721429592	4.25744572676614	4.42675072931182	4.64293590136138	4.57089637850096	4.24095095281746	4.4639965426867	4.37515285125669	4.20508019300344	4.43149849720117	4.22849473365217	4.22628139440135	4.81986393082629	4.2060169540362	4.5272058145963	4.40827564418163
+"CAB39"	8.45320037370283	8.20455803326786	7.26125842790361	8.20971524682904	8.86276125872676	7.14844512143096	8.10415715978942	8.37660463934869	8.2791588420544	9.12193538750611	8.26341260000525	8.92071149525522	7.92742839031503	7.5936379449735	7.71922130380521	8.65660301799435	8.62430842211134	8.70738024223102	8.40988608790757	9.02389884602863	9.33050224327786
+"CAB39L"	8.00191171117581	6.94017821849161	6.51752355370706	7.69132735164102	7.69053963123982	6.86691294853639	7.46941886776651	8.04903025302803	8.1520766218817	8.0056417407478	7.80685844659871	7.31014067737549	7.50411216732962	7.47441459963085	7.67738252338597	7.04242318348835	7.41197956838445	7.13074052891382	7.60853020767157	7.51914929359182	7.19414641144008
+"CABCOCO1"	3.15940142055233	3.93546512028022	3.73817491485712	3.39915107821003	3.57145283720644	3.23803018571965	3.13645256648828	3.15769864928986	3.34772979823278	3.61782034180112	3.5113379810769	4.00951087086421	3.04756167157172	3.36510667315947	3.06643183698578	3.56607432789754	3.32016055368212	3.63734615191803	3.41030087033046	3.60683511117734	3.20391177293111
+"CABIN1"	4.89579121561945	4.87498650865318	5.2902784341032	4.97311031230251	4.54208811181415	4.5580917133263	5.2864055867197	5.07723339679962	5.21369773474385	4.88548364385296	5.135270577512	4.71455011273547	5.02388732984486	5.0016243693548	5.64663398027097	4.76602283054434	4.97311031230251	5.0413901095733	5.14123872829912	4.68111259066309	5.26071920366318
+"CABLES1"	11.0041308980187	10.1265250509696	10.3809314474992	10.4225740673808	9.88377996403347	9.31870788417481	11.4881588002085	10.8482249310251	10.2496286622544	10.0243556791009	9.27697565499802	9.56514188984928	10.1257288549217	10.7992088613084	9.95932905671894	8.8554808302704	10.2750383769642	9.32841867775133	10.4238726821783	10.1463036978749	9.40350313310903
+"CABLES2"	7.64515918371444	8.09179943424014	8.29691929131302	7.94310878794281	8.34009295545754	8.25857956448549	8.09987814517731	7.63666896211003	8.02257162318168	7.71856656700222	7.76695111814105	7.77236291480008	8.01132999118698	7.91406571608329	7.86403572790759	7.96349260453274	7.97235944070955	7.97897196600686	7.81166942559835	8.12566502523699	7.9737496345786
+"CABP1"	7.85732423888067	9.32806397234744	9.70753403013333	9.2898008107458	10.2764632554824	9.02264224255029	8.64377823466432	8.77757614238416	9.6164573109644	10.2690822867933	8.45040316651612	10.3591537125625	9.57821064863248	8.4917445842844	9.46789024938006	9.01333201313703	10.0162392371948	9.47161364086061	9.53412425947739	10.4132498599185	10.4020647426048
+"CABP2"	5.74139257416698	5.64001457997974	5.87684553930112	5.79285782197195	5.61365293098007	6.18525411831997	6.23842692623135	5.75524504506781	5.76944446561338	5.77354304106469	5.47197679217684	5.8842408069025	5.93693745317071	5.93052776084882	5.83949964622486	5.41814391208438	5.87415573612832	5.68974983503614	5.89663645654833	5.71470678058886	5.84909823777559
+"CABP4"	4.78057709465034	4.78996271943041	4.85981291121191	4.99169548668545	4.77043158877163	5.29195329863724	5.5780348306582	4.77805411877555	5.02637988910737	5.01883667563334	4.8795991869493	4.7768192910646	5.16032885548846	5.29622658985175	4.91523487442719	4.38121963734578	4.81404203691592	4.70826408547252	5.21195643509637	4.8186915046092	4.91912212229306
+"CABP5"	5.55262143489488	5.67461059957541	5.54327217234212	5.79195884795253	5.61885532531572	5.62816559465243	5.87275755679131	5.6072469811719	5.61676501069647	5.71401856889625	5.45124121372987	5.77241967531701	5.85935450739042	5.92208048078222	5.6490379785988	5.49434885314537	5.68236736385421	5.22746768904459	5.67461059957541	5.75521778977816	5.69306080100187
+"CABP7"	5.80109031026758	5.71060191393826	6.32494026953606	5.89623331055922	6.47033782550806	6.89524877434929	6.34651226639715	6.04654702923198	5.71526505182296	5.88753998564446	5.38357142101104	6.02435431910805	6.54206750814237	6.01382762227204	6.26523574866091	5.97257839987948	6.20170055171199	5.78287175444967	5.5159126963987	6.25177833088567	6.67057161574863
+"CABS1"	3.15259847021794	3.10044034860856	2.92554142024016	3.02561613806073	3.19070644800691	3.20631250796816	3.10044034860856	3.12020030508617	3.09867941729385	3.05974534134171	2.98127100886725	3.00251023572266	3.06651449936396	3.10044034860856	3.1253461333255	3.13326860454434	2.92421914674345	3.20186324467963	3.06195059543443	3.10044034860856	3.29237398472816
+"CABYR"	6.2459880723511	6.62875171226049	7.05800366510584	6.56146328836259	6.92520714622558	6.88992934264293	6.11357337646025	6.07854110773496	6.89719524237252	7.31757662675975	6.35380283100188	7.05284990699306	6.51320829373467	6.8205064046646	6.58403234740787	6.78441697302511	6.55177039272474	7.66669559416605	6.55699000973988	6.98279841721497	6.88298808212228
+"CACHD1"	9.42559045438419	8.82959113423447	9.19679987485435	8.53444976160577	8.5570309633617	7.91960759653066	8.82392693024726	9.45966056987992	8.71070542336107	8.22237331578586	8.75824359358352	8.28914284806099	8.49244998227919	8.70420216581225	8.74453409675933	7.90817719181624	8.25286286023749	8.11591313175469	8.53005374089008	8.49208480490131	8.32040598203616
+"CACNA1A"	9.50739489377247	10.1461824534632	10.4542429443291	10.3164038856027	9.90665667001916	10.1540581998831	9.84710405549856	10.1035489974947	10.0682563102413	9.63865240063432	9.58658323045117	9.88200476372409	10.7075284015811	10.3175978528513	10.2120561386194	8.52331261816877	9.96779016702316	9.37361462918889	9.86271854161605	9.89061968614247	9.55422485300871
+"CACNA1B"	8.41780419644792	9.14951746542205	9.83502114158003	9.0851049926681	9.66837998028126	8.80582851782769	8.41866817599038	8.95789731455617	9.42383699741643	9.30491460931821	8.55358499991671	9.19559488690098	9.0851049926681	9.03830241110426	9.23729080214391	8.11849032272112	9.26229423279662	9.05084704419527	8.98694294126969	9.26009383022807	9.08654422894283
+"CACNA1D"	5.58366247091345	6.32001835062307	6.61237577287077	6.39065296786122	6.17806142888291	6.91796182038868	5.72300717412994	6.24624496249475	6.73978827001089	6.13243427131724	6.03224894781612	6.37247521653045	6.60416116167952	6.60874913822308	6.68991709560082	5.23601977562548	6.2030763496523	5.2345883955329	6.26979595669778	6.14505941677971	6.21679726687507
+"CACNA1E"	5.45456184101362	7.17722075877556	7.70939558894185	7.54326329760508	7.97570709677942	6.70579919937004	5.7327999288918	6.84841763010435	8.20987929821631	7.28362009749118	6.54264747924928	7.79854988332198	7.33053612310638	6.27604740969764	8.00380470036492	5.78333465730077	7.96603405148256	7.54876406694672	7.2446696004206	7.1718342088716	7.59306824833989
+"CACNA1F"	6.70810011042689	6.70645717451396	6.79807859140042	6.80785809874294	6.93425956903021	7.00070363829177	7.12217142801878	6.87403829220976	6.87403829220976	6.98772255190769	6.40379027061182	7.01349479624066	6.95036504656917	6.87403829220976	6.67945592871519	6.73304488380429	6.94516998753423	6.87403829220976	6.87403829220976	6.89989737626945	7.0001655817627
+"CACNA1G"	6.93648504792807	8.16156822168336	8.09590765593283	7.53209563660568	7.94067457525266	7.41464903416697	6.9992312201006	7.51256268316106	7.29393525695919	7.16320313623068	7.64859705017489	7.78327218485723	7.95096947551709	7.35893669748855	7.41464903416697	7.08576919126521	7.41464903416697	7.26604881302534	7.18446290012602	7.33139831250492	7.27714114099337
+"CACNA1G-AS1"	5.72577127663832	6.01644740420094	6.08782259604436	6.0735368817655	5.87972629352083	6.12245982896581	5.94362179007538	5.67370405488259	6.02673316873008	5.94362179007538	5.55903074178295	6.00727959524503	5.94362179007538	5.955354625629	5.92233972481893	5.94429435458289	5.82770259442528	5.74229616939387	5.91499203736376	5.88499242899731	6.01621919532739
+"CACNA1H"	6.73689370196914	6.39727577531728	6.516580961271	6.26088530471822	6.46324239661795	6.46654086522946	6.63489537950617	6.42897471350813	6.58092219169815	6.5081566386873	6.18317837920469	6.25956815314022	6.63095925470768	6.87611569597036	6.4825960774194	6.34704447388198	6.57428070025303	6.14740997955809	6.36351397131103	6.55949919184316	6.6495383262055
+"CACNA1I"	8.11453494969401	8.55494727254079	8.92525466505716	8.32840702972297	8.41073290689944	8.63635622191967	8.83414097464021	8.67713421321405	8.35684070808642	8.13037137433921	7.88828398850146	8.25240835151591	8.47688690148016	8.64955620196519	8.47039139865077	7.07699897667523	8.4260906870604	8.12999257366267	8.42569116632044	8.19498237850438	8.07012766514816
+"CACNA1S"	5.49407331210415	5.50538100417907	5.32457409100058	5.68025407719016	5.62810186535339	5.63790148726467	5.92398301928563	5.40673789049228	5.63201633042014	5.58120833959208	5.31657251553266	5.54279116787784	5.71369482761623	6.09591141163288	5.38572702208516	5.63127899321088	5.63348987457017	5.52709528988894	5.4749104774171	5.58120833959208	5.71210329071268
+"CACNA2D1"	8.97838747884814	10.245206186113	10.7944981971287	10.3059124888019	10.2123827523934	9.86701900828995	8.68974468811579	10.0814118945619	10.6073878649358	10.0983882339539	9.63693651398663	10.1289898154197	10.1144063373563	9.54251757605799	10.2335002226072	9.66447527919816	10.4814212184556	10.1453334571577	10.3679994349085	10.1885886920879	10.0235362667201
+"CACNA2D2"	7.30485608906996	7.79331109339521	7.90855985101186	7.67261651574928	7.75539541668687	8.13683217306198	7.8090904638065	7.45920220141967	7.64420395779259	7.67657440252673	7.47449153363197	7.63225987579151	7.90845286382478	8.34777566438535	7.88743325839463	7.0277780817981	7.70871554286297	7.53999605884805	7.24055940013889	7.81943866523292	7.55423555310416
+"CACNA2D3"	7.44851101963014	8.08477290873823	8.98454480671796	7.79564181772736	8.85070703604936	7.9859721741451	7.40418302166525	8.27913371440841	8.64358582893775	8.72592212170004	7.02118643116376	8.70210219072251	8.00539970341968	7.42404277974672	8.54512460248147	7.80531414020834	9.09964645415838	8.36170217945822	8.28057493428877	9.04533041051151	8.83386577304215
+"CACNB1"	6.31493555774647	6.88350245259018	6.95592852327784	6.61969840473883	7.36209612266857	6.87432918905247	6.81183372713064	6.67937388936328	6.72787148024654	7.39844233053351	6.72538715302149	7.31750278760936	7.07338882896032	6.95430616260268	6.7705389634323	6.88694370057368	7.27943876049185	6.7769855543315	6.90022244873723	7.65977826953759	7.59314553363321
+"CACNB2"	7.67044665983084	8.31155476486577	9.014460733876	8.20129528072346	9.06983126768061	7.8788372986081	7.05066425372287	8.73902950087262	8.95593530252557	8.7432352672166	7.58786802201582	9.10852725795113	8.17205087968654	7.38426674833035	8.57038667357794	7.60266062747443	8.91661381779989	8.35323837426446	8.51579594197953	9.16020994639027	8.78129148834919
+"CACNB3"	8.38418466754596	9.12512157753603	9.53637608139071	8.89591545982898	9.27924127562027	8.93770440532727	8.612203465051	8.81477226611332	9.27666084812282	9.07518741892014	8.36276364522682	8.97136284717416	8.949981927486	8.76160074122784	9.03867060021133	7.9788982747863	9.04285275806372	8.68873024407827	8.89403663943257	9.17549844463694	8.91050304348969
+"CACNB4"	6.54802116186414	7.68328184825636	8.24694814009226	7.91749809703223	8.67002078305885	7.34120296131788	6.71589341318885	8.06098777062626	8.45454249321225	8.6333433971129	7.21441532370328	8.55826188315585	7.84110452798219	7.65988022241053	8.21689097354966	7.24436539579128	8.13897284982999	7.76224585727707	7.96614023909682	8.51153411180818	8.61499989665056
+"CACNG1"	6.14390627406601	6.20786247942583	6.49804472660575	6.16793910578608	6.169765245438	6.45112601948396	6.60501522572113	5.99144073650123	6.22855606699428	6.09299624214242	6.1247135510887	6.22897372591342	6.06606636220269	6.47145216140748	6.15296569169145	6.26922916042208	6.25398995009947	5.91577691309161	6.1526615584603	6.27298524156797	6.33255116582432
+"CACNG2"	7.86954225804514	8.22441096354883	8.58382272441324	8.18820695976354	8.50650261147594	8.53887110191321	8.2756847076777	7.92802076620287	8.54476761015502	8.70077312116062	7.8035578782675	8.59999144258877	8.41484111641564	8.19368523198498	8.31281921483897	7.927152814647	8.6920637357214	7.94459693139892	8.16754941319958	8.77025127832387	8.76616406773821
+"CACNG3"	7.8224145220606	9.30554679616279	9.7468963199447	9.0038767033416	9.70638419546959	8.74344025032714	8.19081641915641	8.64782302784844	9.46053009147438	9.53120769948458	8.35519041718617	9.18655229489768	9.18309739328939	8.58873755515946	8.85017604465935	8.39746565163203	9.29197795973293	9.04037172057424	8.89581982969263	9.62331757974444	9.40268908166935
+"CACNG4"	6.04175349801429	6.4665555843392	6.38020244598626	6.54322740248545	6.04462879909585	7.05097800542095	6.88468187703679	6.32069275224533	6.35109603423221	6.22506940541332	6.27251213589801	6.30345626774859	6.62651572557391	6.78333489575276	5.91423351962887	6.24111791533118	6.19684503642926	6.30663174507134	5.85810703200665	6.36664310597903	6.30663174507134
+"CACNG5"	5.53281229223606	5.78655737134788	5.57765824777258	5.82477255623517	5.68296716919724	5.66128153398499	6.00906935918039	5.74797183710439	5.70161231138956	5.69012387774399	5.50808602058765	5.55890411844152	5.75564154087701	5.80075784854017	5.63569616804538	5.6420283807451	5.66128153398499	5.468643278564	5.77969450961383	5.6279915286802	5.62990728603367
+"CACNG6"	7.68369138240197	7.90332975903681	7.20281997158568	7.81014328842511	7.71027132136232	7.70519493986151	7.72092257397199	7.73025478381846	7.73995154035078	7.77626061380598	7.55779394303757	7.7641223143484	7.93151357430316	7.98546349122875	7.6485828060992	7.76615362111903	7.92582498702366	7.32112427462095	7.70367163712575	7.72990504500951	7.83729154957716
+"CACNG7"	5.42141083782289	5.65523641869638	5.77123461572977	5.92834350032522	6.17616669375441	5.86454874366612	5.5715732291921	5.2618439141943	6.45977685523032	5.87275755679131	5.70001138634784	6.3011626460962	5.87696975992316	5.55859608939878	5.84324430367431	5.78686323882527	6.05332268946445	5.87956498963577	5.84324430367431	5.80704814905133	5.76966438655033
+"CACNG8"	8.49773451749766	9.23394278514819	9.31215516157743	9.01749886641178	9.03788501618581	9.52583059698821	9.02850470279798	8.98654031978202	9.10811117245936	9.29521384135653	8.78497063848989	9.11337181409303	9.28863040939299	9.18889827870254	8.79825017360578	8.19361416749723	9.13707804249469	8.40941317230255	8.76704786623672	9.23682972668863	9.22838685004629
+"CACTIN"	6.07962140644777	5.90419064565639	6.01307735594277	6.2203265777637	5.81437563444272	6.11979916459391	6.29444930733436	5.98761562914389	5.85384909218223	6.33777976385299	6.13357791545209	6.2972995202349	6.20102140657082	6.37201857146748	5.91612550895326	5.78493440248871	6.36279451435123	5.84385276696947	6.5298620919013	5.65081008560657	6.42086982528084
+"CACUL1"	7.96650683089013	7.70246244704594	7.57470037121538	7.98268876353709	8.23425217424676	7.36933415836485	7.70591508978129	7.85004891090189	8.10047921662886	8.23729611907134	7.97808171718497	8.09792638035745	7.45296288871105	7.3676489212914	7.59750776215562	7.85238190533623	7.90302195991859	7.66075898373399	8.1485306184519	8.34759873565712	8.06494553428068
+"CACYBP"	10.4280030039332	10.8543012368586	11.0783172431724	11.2566093641807	11.1588539467215	10.6282435316412	10.6349971926094	10.92693584252	11.222309854025	11.1239983480713	10.5793982402993	11.1725881628872	11.26660202225	10.502790538379	11.5111791424922	11.0050725366361	11.018324507309	11.0885759878554	11.4620283693974	10.9645683843232	11.0556249314724
+"CAD"	8.17445592466246	7.90203997316265	8.01380147658487	7.50324580203815	7.8007476743325	8.11784114614883	8.05607481113059	7.56759116155757	7.58242751309311	7.80391202477015	7.97513239735554	7.58385370898536	7.53900681350679	7.79325567672901	7.12087356768455	7.71245162973896	7.5273386483443	8.14109614079093	7.44890310333997	7.79325567672901	7.76373987929218
+"CADM1"	8.9197328567216	8.91382647436033	8.9261992816996	9.40558255266676	8.92327490820036	9.00236343408888	9.4596309572786	9.78584723189628	9.49783787787361	8.65250970039395	8.84444694422936	9.06383369462711	9.04115899639435	9.14043967473419	9.42799873738384	8.74366459140246	9.02060609633497	8.69602027317952	9.00236343408888	8.93000105832665	8.44101263971782
+"CADM1-AS1"	5.13184585825525	5.14139778552068	5.12264137531055	5.31044886120694	5.43979225951762	5.41262806282191	5.37464863269992	5.00387802388307	5.34144361699438	5.11821664155312	4.91299816805445	5.03416674939567	5.24426564955034	5.22351121023977	5.41304674132392	5.27352155570903	5.11266882112482	5.01807887859544	4.90333351276525	5.13757096108993	5.02196462111194
+"CADM2"	7.43925568635287	7.81079486309301	6.33084105457355	7.48339033697178	7.63839400204593	6.08827796394887	7.03988601444791	8.07388465861898	7.2946833383028	8.4326668558718	7.76380625465938	8.58063798767807	7.2374330783821	6.55911185080061	6.99393617803739	7.98444025018626	7.79736473946642	7.61634585876302	7.14804361536834	8.26172941172782	7.92813394396257
+"CADM2-AS1"	2.91293200437577	2.97560611820885	3.17431928442203	3.0258711430969	3.17431928442203	3.21298117002204	3.20743431281688	3.1214016008319	3.18376428440723	2.94231390523062	3.15167609815073	3.25881772581247	3.17431928442203	3.22429634312531	3.65678196023094	3.3593968049479	3.14162898438108	3.11474614929732	3.2094243775053	3.0768461069553	3.24231782986514
+"CADM3"	8.6984429501477	8.19368793786684	8.9567172448924	8.59365121263076	9.8043215553096	9.11908427066932	8.06137186980616	8.79577214924678	8.56860428017435	9.77065971995989	8.20304841143572	9.5244416989372	8.76641027454797	7.84731942404538	8.10423205887443	7.78698803940556	9.0157649282071	8.62469214665855	8.37282940539812	9.47347964070428	9.2431054304435
+"CADM3-AS1"	5.3024431369589	5.3455360001971	5.15675697253106	5.26645355136886	5.54864023953162	5.09122390903668	5.60235373369475	5.29816227086496	5.29674240431567	5.4694754022048	4.94353236858526	5.45830613574499	5.53475960129128	5.49853549283302	5.083739226485	5.14294748644045	5.4466065895194	5.10037392343171	5.31964171117514	5.67177507595887	5.48988071064629
+"CADM4"	6.31515691350251	5.97402182406507	5.78388336561255	5.18572128860119	6.66103534703951	6.74032445761474	6.31601944212345	6.40459197489896	5.3940661210772	5.97402182406507	6.18483329648929	6.27655667026076	5.2921707020594	5.32067429489409	5.09422447678976	6.71890202098195	5.6664452452748	6.44692079263617	5.82352285430744	6.06724882115137	5.73120364413586
+"CADPS"	4.52503868210012	6.49634918611677	7.08499989662734	6.37034137212545	7.94636330973253	5.3610006260618	3.77369189217132	6.16338232955149	6.4927106615205	7.98031055360345	5.76741347470578	7.65549659510821	6.5281889878768	4.9248471530691	6.65070898794831	6.60434781065229	7.35891357415182	7.36535604184001	6.64507285287653	7.57400144225529	8.15939464115281
+"CADPS2"	8.39013593839594	8.72987804653417	9.12845103778365	8.92320724712995	9.5370379969417	9.05750324993328	8.34687706973387	9.06516928001477	9.48881733350879	9.69731024312464	7.96856489029656	9.32140507085476	9.1892334390224	8.79725994543593	9.74418917662283	8.5440088631348	9.91304750030463	9.08990938694923	9.2297931178945	9.54336703573813	9.4641498334431
+"CAGE1"	2.95954221930406	2.95920798637239	2.93148791642797	3.15992407788342	2.93509923717956	2.93685032413876	3.24771717545602	2.98761527559711	3.04385858196007	2.87859240380372	2.93933184207105	3.14353083885903	3.05173965815848	3.31340178925929	3.04009399486009	2.91455502524452	2.9569092149782	2.80479145886023	2.95872895970275	3.00203316753018	2.82541597944451
+"CAHM"	6.65611640647249	6.55231364183112	6.59452294301965	6.45924996621382	6.15432190494824	6.46159103029042	6.43866209018103	6.45562402650744	5.7020163029974	5.90981251137755	7.78167852704788	6.20401300410982	5.79976601284619	6.35546553508693	6.45102777560043	7.73914662460894	6.14723369503922	7.69561409243726	6.37119999670945	5.56732778445548	5.64381786698414
+"CALB1"	4.50114371565601	6.75400732638558	7.79747840980892	7.33971122083349	8.25716836698823	5.60194689592569	4.89881938161497	7.19364430745277	8.03502906407461	7.95181842648051	5.96277191318689	7.49695147921712	7.33971122083349	4.26256064090114	6.72404604640756	6.83686809436618	8.21458012032573	7.24436539579128	7.67252664829944	8.89312389570174	7.97741429127178
+"CALCA"	3.84054160309622	3.76363415488097	3.65259612202651	3.98364864508675	3.93625023939087	3.66274027521291	3.84054160309622	4.82383087788367	4.04508918862034	3.64646847182225	3.63872393890388	3.93049440944855	3.9408269486147	3.64435677785051	3.91515640100122	3.8544768890571	3.83551316946684	3.51752705271337	3.98220968233931	3.87202030176287	3.9061660699769
+"CALCB"	3.67588158078954	3.67619818593997	3.68432585712047	3.76145915426798	3.92294965254786	3.7883762131081	3.8071450208566	3.70625097263147	3.90700832394038	3.82179225011225	3.68110535657953	3.90548232179231	3.49344471473391	3.74235217017352	3.57097617073458	3.964022189852	3.69880055816425	3.48849237352319	3.77273534794566	3.90696484194373	3.84423038618739
+"CALCOCO1"	10.2629611307654	9.77851356231214	9.809197498631	9.90747216818289	9.76007812973809	10.0536459426452	10.1515075918279	9.70244847725716	9.69424415245664	9.97954127871915	9.85487547043678	9.81653635384649	9.70868928554061	9.99666393020274	9.71495102620516	9.98321044335528	9.99364554802456	9.90779312186723	10.1025919948725	9.97476476890036	9.83898840609874
+"CALCOCO2"	10.4371283243861	9.60518161335111	9.19603650657569	9.66573560946683	9.18489050452503	9.58571267328289	9.79726507838365	10.0774635803792	9.37023367257872	9.5290003041328	9.75003999770575	9.58241338227422	9.48630815111568	9.74341224257269	9.3013503891264	9.89797274309665	9.57128627191595	9.8145784738521	9.77187987875057	9.42848151380473	8.90901701370626
+"CALCR"	4.65323921642396	4.4752576076541	4.60146787146127	4.82970298737065	4.47011800888769	4.674942324347	4.93461133309096	4.65323921642396	4.91836214665514	4.60564398474323	4.54965918640762	4.55737812402481	4.94611622195395	4.99934597137898	4.6657896576031	4.40832821237312	4.70150492193443	3.89702318202376	4.84459099471535	4.50575319719479	4.6634655193738
+"CALCRL"	7.5829332147498	6.64796134166041	5.41013368368579	6.68030869914499	6.50610661515172	6.49804472660575	6.83027435368673	6.81342247818493	6.59148032307955	6.48239406509183	7.00920716006089	6.11649798596274	6.71916177030188	6.66976825755182	6.63375118017765	6.82275064284056	6.37197879241524	6.78305116393059	6.78346853451991	6.66237402427022	6.11587507724332
+"CALD1"	8.2921571727764	7.22136580584623	5.7628417726179	7.45398776671369	6.81720320071839	6.80213766724497	7.26878794835617	7.75937413326897	6.71157488068548	7.31509712278742	7.63387672259462	6.85012645482689	7.64771018696377	7.84731942404538	7.0245478816755	6.58300117314685	7.33845234360859	7.27109311505318	7.55393060041332	6.46964488619953	7.41798629147675
+"CALHM1"	4.66695906274774	5.03972094709932	5.17584968410114	5.10450786585156	5.08545788955615	4.9932907049519	5.03086102747538	5.05207624838796	5.05370577898161	5.03870072138362	4.83851391392687	5.2244603320959	5.06790952139794	5.20208571060095	5.19678711422924	5.12736181599623	4.87157670163927	4.7760521166268	5.10130595811071	5.13257442835418	5.11117204785335
+"CALHM2"	8.34348207393965	7.45737314615809	7.45478819287442	7.57026511453602	7.22170460688189	7.52908205447714	7.78969509111915	7.20803076372599	7.66875170353528	7.49938234006965	7.38080267517056	7.22598628533864	7.67495852242362	7.79158896682874	7.65221608675603	7.01335987672756	7.31535325111426	7.11112253069347	7.52944331012641	7.8316133716835	7.63062174275145
+"CALHM3"	4.28597156829249	3.92144583779614	3.9109118274236	4.12761737160828	3.89611690536947	4.00802873102803	4.16973168741699	4.05694689684347	4.16120659128313	3.89337615210012	4.02725781339707	4.10010538334692	4.12111016678412	4.32696599322472	4.12761737160828	4.15825710749834	4.21841828724974	4.14431375406201	4.15704393091396	4.02658712441812	4.12761737160828
+"CALHM4"	3.97319953539562	3.91288486794715	3.70784526688042	3.93785353684035	3.95207471433898	3.99830434701876	3.81605024416358	3.67933219410165	3.80417962957495	3.72664843384064	3.66416339650605	3.78225436400771	3.77118643732902	3.79340624972589	3.81003606238066	3.93719099033255	3.73439287806037	3.53241152387527	3.76811217985223	3.72797686797395	3.73436443864504
+"CALHM5"	5.68193103108763	5.56035088690433	5.25671467882904	5.60388041998969	5.14756781276155	5.49087264739421	5.45338458132852	5.42130866236744	5.13020687983569	5.35345642248118	5.35034078080178	5.40836143690568	5.30177007203529	5.76101431368635	5.3878770744707	5.73197475522951	5.40836143690568	5.08961543800521	5.42342109415997	5.72168172543928	5.50233818411183
+"CALHM6-AS1"	3.64553365918697	3.29265164248371	3.64636987314246	3.38273407663455	3.45330069393985	3.25377091699224	3.38238731642354	3.75861096699726	3.19252788411931	3.49266594981663	3.24058423297659	3.40528762004628	3.36244955042776	3.31727927679985	3.58640874611862	3.44994123602541	3.48481918872725	3.35519381306331	3.64670146604378	3.57065159798244	4.00069219905271
+"CALM1"	8.64991539530116	8.98812684074971	8.6586708117117	9.03516952381131	9.42145845217006	7.66143158003383	8.68876998902785	9.12690808344271	9.26201521612785	9.55661861378892	9.06705122973591	9.69747469333224	9.40239223673767	8.66759072584807	9.17511581320814	9.10053419151315	9.43424381956684	8.72058583561967	9.36489297155885	9.43403496274236	10.0035111384408
+"CALM2"	10.3367843958369	10.5565508862942	10.351533210994	10.1488423886349	9.77288042125074	10.2974135018681	9.97805154210152	9.70681282571647	9.67184670359391	9.59336069987456	10.6953854267845	9.90947816748855	9.94804358865083	9.9191024553774	9.95986668139552	10.6880728049691	9.61314295828185	10.4838874253009	10.2510410975044	9.71997814711693	9.76467957808489
+"CALM3"	9.30270212736624	10.1328481833141	10.1005641661181	10.1183735770767	10.5581283869196	9.22939770582143	9.20970542036023	9.91150265485551	9.8792497298725	11.1454812049423	9.77216486191577	11.1008282009207	9.72805237512721	9.27323563786979	9.52988289481988	10.3414711518988	10.2903163598356	9.90243404070427	10.148274686748	11.2482874620526	10.9966079662405
+"CALML3"	4.86609958151893	4.53231494837343	5.01223330862759	5.20293988084435	5.02229027077385	5.0747506427747	5.40808765218388	4.70718631806114	5.0550882912855	4.92592145433509	4.90627846034005	5.1303612480016	5.01927668871185	4.90208547425558	5.01408134195185	5.03828058662455	4.65307146349555	4.78952131205849	5.11908626960428	4.68966246362145	5.00628879772787
+"CALML3-AS1"	3.0959515226303	2.93624781332703	3.15132839120907	3.12687407728597	3.29188693225153	3.21298117002204	3.42580014565524	3.22953336109121	3.32894292527007	3.35173792119535	3.28050691354386	3.10625220274949	3.29562684145697	3.31231372140225	3.45094544651764	3.14314867788475	3.20135464441316	3.11533766337913	3.36637971764333	3.53767173007944	3.06117247378143
+"CALML5"	4.32719625263353	4.07269639369799	4.41219505334284	4.13601216062	3.98544626070749	4.75391176901744	4.75868210371971	4.23142008781637	4.33095743870247	4.51806300693137	4.09188187175949	4.50674710582651	4.45952580995729	4.3058722543263	4.21749257809528	3.9175565549091	4.38502354964593	3.78787820947701	4.45503733336714	4.15252698574896	4.5021703779603
+"CALML6"	4.19583901513301	4.37253480609131	4.43814454583158	4.34879385521556	4.27763161702468	4.58689951732426	4.6656478005912	4.37253480609131	4.42236112495982	4.38312944543068	4.37253480609131	4.39169115149578	4.49672111366428	4.73669714240682	4.11614355343932	4.22357293833004	4.46273992953931	4.14423356523669	4.38622592776868	4.55247999319086	4.49008176145483
+"CALN1"	7.16923819959426	7.63762424821013	8.15525319555986	7.98300185712533	8.04038356542953	7.17885585991543	6.6717033637594	7.88825641713111	8.11950356396939	7.73131743957738	7.21279932315274	8.16925312597488	7.54583912648351	7.2299296820094	8.06695107584956	7.15828650315552	7.97294654853457	7.75900824484641	7.51088305513427	7.99923814600781	8.15923292082255
+"CALR"	7.09573802162278	6.5677905886434	6.45640655648192	7.19897726644489	6.71629096052144	6.39405854366102	7.12208021890583	6.4564625588344	6.49787050044059	6.85639240895312	7.3256095288788	7.58404501788925	6.70644308342453	5.8043670260211	6.10157450073289	7.42791278492474	6.52055018931983	6.17228004440065	7.14837348911943	7.31926999333827	6.94444962214407
+"CALU"	6.27546437380935	6.32393892946314	5.28270664943281	5.8668976310647	6.24362895536052	5.47351422097757	5.86796342692148	5.94931029252843	5.26629312310604	6.37597512361054	6.46939730633763	6.22413676001901	5.75047142686433	5.73084122062296	5.21337699881412	6.56136263352134	5.95822522202752	6.98311794124194	5.64248466885213	6.22818588640029	6.43653899045341
+"CALY"	7.3981912524192	9.27753665396996	10.0920985124935	9.04193556148872	10.287929077095	9.34738089917012	7.94742185817018	8.91936839453171	8.99830666367007	9.99936534615406	8.92800766402734	10.3808582239605	8.94389172284759	8.23247923154798	8.40692976275849	8.86812189805774	9.60058549561536	9.44929729842667	8.84774378678483	10.5699768355479	9.90397868224184
+"CAMK1"	7.56978269860978	8.05791711828337	8.41146172331734	7.85907153735052	8.25497732732126	8.00849017048131	7.50441254386141	7.81207811304662	7.98468508266369	8.31787092226153	7.65103635047468	8.28771721857603	8.20169719873419	7.86454966648842	8.17146157903025	7.40204711011488	7.90556741931858	7.89571740741362	7.74774705409741	8.4575021265557	8.29793870625117
+"CAMK1D"	9.2468078662005	10.4306454670781	10.5826765251296	10.2279952783261	10.7906413760579	9.94092134551247	9.375776776707	10.0911915756699	10.729150403837	10.6018760821522	9.56186810294045	10.6094042793631	10.3872140763196	9.91260270372927	10.3221701440224	9.43927287650886	10.6732809162057	10.1597150823768	10.3288840392625	10.5841072109106	10.6050669033296
+"CAMK1G"	6.27721926289471	7.36663373157231	7.50310331853052	7.18004067421236	8.36489097654591	6.64654964528515	6.27911365827989	7.22582440778667	7.56692174069276	8.44557167992259	6.39108401509138	8.46506122536089	7.11818951104646	6.49292923310594	6.96638056020891	7.30746055325625	8.39219169344275	7.28112774992323	7.20094022352538	8.93019220395302	8.61429802580891
+"CAMK2A"	6.48362537254316	7.34670476009308	7.23180701130927	7.80601201625913	7.90991516265701	6.90151943215526	7.32019807579829	7.56518828789234	8.8535257288355	9.10735064632888	6.98048347847762	9.29825841909153	7.92195328083027	6.91495651248815	7.43898888080639	7.13327384944147	8.33632423468777	6.5793184786918	7.89626726265747	8.96941866743986	8.48299419432823
+"CAMK2B"	10.1171284820256	10.7774682065527	10.8642766935134	10.8653505246329	10.9603605805938	11.0926982681892	9.8518074958093	10.6480628844984	11.0610516738958	11.2801888209876	10.2909165618981	11.2750485407815	11.0232182061129	10.6160500916964	10.5354936309446	9.72598179599661	11.1508183929435	10.4729251609133	10.5122493230828	11.2786172993276	11.176011861114
+"CAMK2D"	7.8171151834063	8.72431565003234	8.96759143056727	8.69001947990041	9.130775469076	8.21944545372376	7.45909137592536	8.95224018204247	8.64583509651416	9.06038978387338	8.57921277032182	9.19125060261149	8.26212774159349	7.91564151047448	8.38742828398029	8.68956496294131	9.12407804762005	8.657749419752	9.03047089452869	9.41601762608594	8.66233810606413
+"CAMK2G"	7.38167121980375	6.7658642267317	7.30500586626105	7.22230688479956	6.53851495905203	7.27509376891193	7.70261755046705	6.55960656930798	7.30154727445054	6.48919941676723	7.46330292849837	6.55494186125719	7.03964737060743	7.27560128221458	7.34229422130794	6.45964692764448	6.92094140316723	6.55581714036404	7.33992726202429	6.3643480768716	6.43120181563246
+"CAMK2N1"	11.9089429849065	12.8984806966444	13.0361741855741	13.027405790605	12.9119884045116	12.6435246084412	12.5163151049836	12.7745922446261	13.2970788232123	12.8774131310522	12.5234528740435	13.0745413703702	12.8774131310522	12.4977841202978	12.9792069251796	12.7786695752754	13.0215679750538	12.8136994757451	12.8613315597024	12.9811875634973	13.0336780501732
+"CAMK2N2"	7.63885288093203	8.37962556746913	8.78796787941471	8.55122823441943	8.72907499825574	8.52414122471829	8.03658269666175	7.92001522935918	8.25357612762495	8.58068674433816	8.24736535309362	8.73102325786967	8.61077632467783	8.32540174792935	8.22698865588947	7.78464944678508	8.43762903278182	8.1281602426175	8.22868506892292	9.05997227410175	8.47328100898538
+"CAMK4"	3.83551291178094	5.39576317200021	6.08361367529484	5.72211174953999	6.17799053421239	4.77878351834113	4.03055465566209	5.4707075813696	5.74784281555467	5.41484113078973	5.20778629280934	6.1799347675104	5.17531102246592	4.24472036505256	5.39386420111699	4.45098570805465	5.29044330080623	5.42180280117922	5.21815586316107	6.04462879909585	5.39386420111699
+"CAMKK1"	8.0022839896982	8.5967450069007	9.106115482245	8.58360915857356	8.95672454658822	8.45661252120428	8.14543248245291	8.5089357425523	9.2888572439565	9.18056383421311	8.18605279388432	9.06080768212395	8.71496599953006	8.25800307734868	8.67979623789363	8.24507382833537	8.98701320907873	8.69982844796765	8.54489507890155	9.05791291602196	9.00001723448166
+"CAMKK2"	6.68119936602471	7.21053844039994	6.82390002428263	6.73609027657835	7.82053925434433	5.55426340164564	5.81895296555912	7.1269969673915	7.50517670021918	7.91264816383609	6.86337711503178	8.33207422765625	6.71694416838411	6.37680497041327	6.1504873271935	7.78767558828357	7.30253163046062	7.12642278975577	7.4252416817514	8.30543639184542	8.19539588421235
+"CAMKMT"	8.14111307139727	7.93084129037593	7.92233763944591	7.79952238492664	7.59444588034674	7.01568667448033	8.24637380131947	7.99613472576443	7.66909712586355	7.41038953920877	7.78514212032369	7.29545720161822	7.59444588034674	7.54770609106737	7.26752721758309	7.42007402893597	7.41653349091419	7.60596222656752	7.83856391084478	7.50338020974783	7.15776150427637
+"CAMKV"	8.26374663129737	9.40786621700285	9.86884117081743	9.14457215362206	9.60848089480741	9.06137637220191	8.63342452579438	9.09651847168963	9.44033058134417	9.61834441953208	8.67109930627416	9.85378410378228	9.05292746324501	8.90139006317783	9.10535760488504	8.77894159673325	9.41176041769621	8.98786058274563	9.28720378018462	9.82623320522944	9.45420775137791
+"CAMLG"	3.98224395482229	4.61055170342496	4.10608846032627	4.18831601109257	4.11325152940555	4.27659924652501	3.98021609807502	4.64716850329663	4.28902316329039	4.46863011178242	4.37043026477716	4.82771923229676	4.55171943418483	4.43225243048763	4.6635196275453	4.39525824093636	4.94643349106533	4.1898237816723	4.33555231207533	4.41140803564642	3.96967685637145
+"CAMP"	6.03801847322992	6.06491218891188	6.02545468704277	6.25674778181033	6.10064011204279	6.27906850356058	6.4049487598883	6.1063967384646	6.36211553776645	6.40236235623429	6.00288728608618	6.22619955772884	6.36834149437367	6.410585849945	6.20984269288582	5.92568246493317	6.22619955772884	6.22619955772884	6.44483908404741	6.28679074149807	6.32816153112996
+"CAMSAP1"	7.07551993580841	7.31511845025746	7.27811727819733	7.04868122922871	7.51466108985418	6.65318000041839	7.02462267937459	6.85875198214232	7.04040727466781	7.40772809579598	7.09676849708032	7.28426562459169	6.75940329830122	6.76783138857891	6.88991403500108	7.76280738664842	7.25564839614161	7.66400728477875	6.9523297171882	7.71601356932582	7.57154162294677
+"CAMSAP2"	7.39415908947725	7.3907333692508	8.02744568730475	7.62560207522231	8.86862098874083	7.7487840515798	7.62592742898158	7.80965028130591	7.86627081652056	8.50092908478388	7.42448437038597	8.43486131268325	7.75621577503666	7.46493599564205	7.4104945329545	7.59054947831908	7.83509511065643	8.14917714411433	7.44146868315256	8.12960981719054	8.07934494439476
+"CAMTA1"	8.84640502745617	9.95929509499756	10.5311031609869	9.82876573861457	10.5792944581951	9.64452240122824	8.91910503271912	9.97521528716954	10.3060511865654	10.3584311380617	9.27565790627331	10.2884346317544	9.89396081445848	9.16838563078999	10.3315418421743	9.38573734004821	10.410840606146	10.1684818181076	10.0607634932173	10.2891708181956	10.3169411166316
+"CAMTA2"	8.87176035435516	9.20514687075029	9.47926783451608	9.06751483193111	9.3165933781111	9.13187936149957	8.85203983013888	8.91017568456988	9.20631534767938	9.25140379715676	8.8208138763642	9.25823655978397	9.26675043664531	8.73709414836179	9.02857064136724	8.50964620173804	9.4035461651637	8.93363378589861	9.13187936149957	9.27783414625924	9.37086799989173
+"CAND1"	6.19228487367068	6.67759888124525	6.364888920263	5.75524329247386	5.98855958833037	5.72676593966488	5.34810385551279	6.19840989508872	5.89743672653127	6.04485500088819	6.55242656495168	7.03506270600902	5.9193308575405	6.19595110768689	6.0798616520921	6.59872305657183	6.25225847648319	5.85093332936534	6.16030867028073	6.26221478253155	6.22665410214982
+"CAND2"	7.9832509363461	8.40026558655056	8.84287277867114	8.09215984007949	8.58852640153437	8.19800884762384	7.93817122281485	8.13993511155815	8.16502320755589	8.14668869570731	8.21882355937874	8.10255462066989	8.25670492766478	8.28070822266928	8.13310200981013	7.94756832546813	8.16502320755589	8.41027529829709	7.80271151699891	8.16819739127641	8.02820299232406
+"CANT1"	6.709182210053	6.22044320597778	5.57717967938683	6.1117821599905	6.08540567699709	5.57060995998265	6.17957099417221	6.06016385009225	6.06459369778076	6.28022849751453	6.13234798002708	6.11513329257868	5.97085889769354	5.54848048720273	5.54955621530375	6.76148476707188	6.06630590866418	6.36914242088031	6.1640556300718	6.47783601991333	6.17654185648912
+"CAP1"	11.1444760695933	10.7445407573755	10.585693367479	10.6986111038834	10.6559140964193	10.7729086886038	10.3953817864565	10.8194393195205	10.8121098479368	10.7568393713191	10.7309417328608	10.6191849919529	10.5407336341176	10.612467180411	10.5959072462361	10.867391422422	10.504892233552	10.830819875422	10.6089708936444	11.0251108308712	10.8563717922307
+"CAP2"	8.76473188253803	10.5398784159113	10.6144652844064	10.4923148391264	10.9759205697723	9.86657162699006	8.25455968953513	10.0279144487552	10.5113825851937	10.3948905284036	9.67203429912949	10.5085903176071	10.4669268385295	9.71803392727354	10.5309398191569	9.59836552237767	10.5985774877354	9.92526212810899	10.4035727138599	10.3884779726046	10.6980230105021
+"CAPG"	7.91409930255094	7.16281255123941	6.49258060096313	6.96193878338054	6.62875171226049	6.27888339424763	7.10810875940615	7.51213587499214	6.62180958527088	6.74442181761516	7.70025780726627	6.79730949627825	6.39780747404154	6.82724794495459	6.78350223261121	7.27456270101223	6.70829298649874	6.82197194218992	7.13891188558467	7.17000128140734	7.14209396250903
+"CAPN1"	8.60804936596122	8.05169537612504	8.18814167774725	7.84167256833998	8.26756366092546	8.38229020374852	8.41193585495774	8.10253970822941	8.10376070783492	8.46772720070055	7.98601223854604	8.22067890148055	8.22262698833197	8.21504258718022	8.14822539364378	7.37634513044497	8.19923494717588	7.7186143889039	7.78331937441	8.54231857440957	8.52874123918887
+"CAPN10"	8.25831441816171	8.30270515116134	8.35948663574151	8.43822322415137	8.06355647035179	8.50517973189112	8.51144796491732	8.29589146371856	8.18844247764667	8.09619728930993	8.25831441816171	8.20797003246946	8.27634952078352	8.32324319122125	8.12761068465928	8.12446244195334	8.14153021526283	8.25075191376624	8.37238230838979	8.22620082774563	8.29993398050289
+"CAPN10-DT"	5.66177282197286	5.77007575497188	6.17843231410354	5.87225696113276	5.79976601284619	6.1228305559526	6.29079601809376	6.06787910339646	5.88818279815556	5.59747631601996	5.65126573673896	5.8046063198732	5.79976601284619	6.13928971874455	5.91369603995347	5.6138655000994	5.48119059655076	5.73691530079131	5.90190280522892	5.68112545946202	5.53738635326513
+"CAPN11"	4.64765699591688	4.62296050737498	4.90718520917642	4.746412416587	4.48246381038608	4.64633264770618	4.71088493636488	4.83603935305331	4.49444542395565	4.74109348716802	4.60230479546728	4.64498952051593	5.05943006398697	5.41011616832843	4.84346544865066	4.40182043132104	4.63392302509939	4.43201474787656	4.75001764267529	4.96257100477281	4.55062549216092
+"CAPN13"	7.31058774899458	7.61368126485536	7.461115282764	7.48999259323526	7.66170442487827	7.47440056899176	7.31854429215667	7.2237770729019	7.45242317922064	7.4784104935929	7.64297960930924	7.51729266930705	7.52064392194276	7.34221201723062	7.48040687164655	7.94756832546813	7.461115282764	7.49112980431991	7.4513984506041	7.461115282764	7.4784104935929
+"CAPN14"	3.19830505141039	3.12157756530747	3.3404377108901	3.33696443135118	3.29528525570569	3.46871046857877	3.21585405578579	3.32787769862992	2.97129837916033	3.12301823350105	3.15802036818955	3.0440403909383	3.13645256648828	2.94696872250353	3.1214011240418	3.15675376959755	2.90403210956808	3.17734020761017	3.25705580676564	3.20092418921992	3.28417785550986
+"CAPN15"	6.34132692933475	6.42955973830883	6.37365934204343	6.54073036784031	6.31956481652852	6.52440452384347	7.28589908118514	6.35346723828212	6.77363202478985	6.66101691426689	6.39827098434042	6.73575969806026	6.84554187897668	6.99833837481292	6.55966947889176	6.41649993880302	6.54073036784031	6.17979172180573	6.73716196472116	6.69089019694692	6.48276293672999
+"CAPN2"	11.3157446904986	10.6605352968121	10.4508800535362	10.8737584421861	10.5692285164135	10.9325421928786	11.2915240124482	10.8235356544958	11.2627416542137	10.9491196490722	11.0686985744885	10.4653245203293	11.3211772409891	11.1789988125257	11.271418625783	10.7475330528362	10.8395534736696	10.9776794056076	10.9934023564908	10.5466272925272	10.3637242977125
+"CAPN5"	6.26901585140543	5.96263374878469	6.15102843620778	6.00919461048287	6.14344405517716	6.05396279358885	6.26530154772613	6.12331474297182	5.85776895291365	6.27569284682714	6.28479919750514	6.3368556358969	6.07650775961619	5.87213636767555	5.8046063198732	5.81136937173019	6.03984290446058	5.8046063198732	5.82831608437521	6.35584778011751	6.14010287336052
+"CAPN6"	3.67481816016174	3.59171103075172	3.5720149578101	3.74303651981906	3.76183275608383	3.56367189143709	3.86834686509364	3.71854129224286	3.9905114356797	3.71478292562286	3.6081596405757	3.76610017969913	3.84862159240716	3.64294260599466	3.86926136078664	3.57973709763611	3.84084564352679	3.45408365944036	3.80312857025506	3.74235217017352	3.61771125718809
+"CAPN7"	7.85590523802916	7.80124749872009	7.1891302352179	7.76240294421111	7.69961766585731	7.08449379943379	7.53752789419537	8.13336376395784	7.65691523557942	7.98593735267746	8.03318442732093	7.90065490763943	7.36016955031688	7.43547320346416	7.52333419100431	8.05454598027931	7.82942727149843	8.13323481512146	7.99449331136778	7.73375266995871	7.80124749872009
+"CAPN8"	4.11911184607775	4.38868458282386	4.473047748519	4.39104284650916	4.22324605082912	4.90400123577479	4.48290939775196	4.5141078586684	4.21007470714905	4.27704417728399	4.48888729696849	4.44227542052238	4.38544534698172	4.38868458282386	4.59489451675224	4.45098570805465	4.67361234053572	4.24622218641127	4.34634699370544	4.0650037449958	4.57748745490064
+"CAPN9"	5.30588696695348	5.60800594260824	4.99895924045108	5.32692006831047	5.3929701153054	5.17593865001241	5.03133309097214	5.1611850128625	5.50720910660014	5.37595858490053	5.35937988821561	5.30588696695348	4.95885659876004	5.11550449619876	4.92679009706115	5.40604691383593	5.43381682365486	5.67075702627167	5.05419942722681	5.32377812807376	5.30308060645888
+"CAPNS1"	11.1874463646237	11.3948522823252	11.2569097547019	11.3020050150022	11.6377812740541	11.4625211992548	11.0314626058095	11.1935104377658	11.1663761750256	11.7680983528767	11.3945147820191	11.739098617734	11.3429001629921	10.9936565449403	10.9552013585848	11.4133451108091	11.5326661677484	11.2941544007142	11.040296567733	11.8803501539189	11.4483705246501
+"CAPNS2"	5.16603656558124	5.58800911840951	5.34837404475613	5.60545239328667	5.66015583123064	5.50076182085259	5.55890411844152	5.52753556194183	5.604707531331	5.39264463559751	5.49972756933263	5.43424650015323	5.75135766417981	5.59493377843791	5.5416937103325	5.70875030907228	5.19115517473774	5.3175347515196	5.5416937103325	5.62952141347719	5.65662051269742
+"CAPRIN1"	6.6181824233018	7.12448088961965	6.91841933857851	6.88858180460252	7.59042366577072	6.11370027381398	6.04016043631056	7.08601155870924	6.61724719500726	7.44180928469449	6.86707285986585	7.5309521125155	6.49563186900291	6.05121304954816	6.47763881554184	7.14009202888816	7.38623604382292	7.24063519886594	7.14544865350116	7.54434008762249	7.48130796730012
+"CAPRIN2"	9.42547164864935	9.96356901878749	10.2678883118041	9.54920052788126	9.87548534800948	9.20590731311868	9.14321486353838	9.79899273266114	9.69697815764971	9.78624847359453	9.46428963243865	9.86468075994196	9.59372819928377	9.34842555319748	9.67134126709891	9.46533933119294	10.0942862111532	9.82210027193513	9.71018987575386	9.79114002162862	9.75446291762026
+"CAPS"	9.15879134925358	6.57926351276096	6.76193136161448	6.74917826657234	6.28287738921389	7.28753433696198	7.37326429611016	6.76816385083039	6.64479109428182	6.78206430457926	8.59116436295743	6.54057368891848	6.49702721588794	7.00861031784828	6.74879361235484	7.05431537897466	6.83400939020532	6.8628743865996	7.52452001041475	6.52318588226926	6.51758122676986
+"CAPS2"	6.29079601809376	6.87610138168094	7.08933777369309	7.21282127449318	7.51939181200911	6.64740464772289	6.05207086101482	6.78168349374692	7.23319221579678	7.04000164403965	6.70579919937004	7.04823161582092	7.39923717994829	6.71944366879201	7.18992549409786	6.15975438858168	7.42373221010652	7.26983894063691	7.16903184016095	6.95004756225929	6.82511230770062
+"CAPS2-AS1"	3.42875441144277	3.66226141953982	3.32117280466634	3.73553852411826	3.51484377261558	3.48927056038703	3.88714583469364	3.66910686413076	3.67969326018241	3.56608481202293	3.32498816055398	3.5674311540253	3.60258319082642	3.72474874345098	3.65776799461517	3.61488853634106	3.5674311540253	3.40899193191209	3.39466415280945	3.59723196407729	3.60921040743802
+"CAPSL"	4.25158511096093	3.9956144040887	4.22237464078695	4.15629214000548	4.39753276923454	4.58339683507892	4.27547892831597	3.95377451370996	4.43695054961364	4.2338270594773	4.30762716641007	4.22754807514065	4.11440908210334	4.04311863562136	4.35255234807637	4.1448065984349	3.97192340793956	3.79761504658754	4.08583791360896	4.22237464078695	4.13651650294388
+"CAPSL-DT"	5.56628291392485	5.70432220966806	5.89275666736984	6.26052951292621	6.01113366356731	5.98428373416432	5.95392590784271	5.91911856044811	5.9394801573114	5.96228722742972	5.89026408544847	6.04923157695644	5.96228722742972	6.02636403003681	6.13825970184567	6.10655896744114	6.00321415025148	5.63828899016293	6.05178769529696	5.95304418116684	5.85544450550098
+"CAPZA1"	9.95376284042015	9.70488960758386	9.58262560574233	9.82042718883231	9.53320847085156	9.33297216095201	9.42797097328907	9.80475859957381	9.48973234432397	9.62115550951769	9.95604401876139	9.57522941305699	9.71245746027938	9.48935032396539	9.76804006487552	9.89665702017842	9.63728285269294	9.81302778267214	9.8350868431563	9.63355992707496	9.83275077536553
+"CAPZA1P1"	2.97334706654682	3.1748871963973	3.00142012283988	3.12011308102663	3.12397897485169	3.08794270783852	3.08794270783852	3.07301075855297	3.15709665758422	3.06727084823683	3.051685071054	3.07838238089263	3.05682474217868	3.16230788714522	3.17060261855207	3.21526405128928	3.09983046415501	3.01477127050761	3.1074819854139	3.10445188916792	3.06577132223295
+"CAPZA2"	8.17953768946206	8.08370553042533	8.30530620048765	7.88177808887388	8.49592686981298	7.16818429154479	7.82088937871145	8.09504476977966	8.46567543936909	8.69863181297448	8.27902247549402	8.55937036127951	8.09277492597566	7.56384898374937	8.54418641416883	8.54818748172162	8.39199566962846	8.54637211278538	8.23521575854398	8.65991603879598	9.01337298517183
+"CAPZB"	10.4016479597783	9.95640370282325	9.34279515794491	9.71083747817063	9.92899320761702	9.21704137223031	9.39198326747361	9.84889905762316	9.65703157887477	10.4523412192183	10.0865047559677	10.1582356591667	9.62750867663418	9.3752156310094	9.36528911601242	10.0638277769526	9.80543211215412	9.5594951033641	9.84093781798536	10.5196581319559	10.2490642524857
+"CARD10"	5.7449081657942	4.80793477563014	4.57512919121534	4.65860936885575	4.41434416723984	5.41666991576618	5.12308460163909	4.61905532829176	4.56350851351274	4.88781885684244	4.82085952799244	4.3858499817178	4.86526849574538	5.13816506179751	4.5397318806393	4.81209339509932	4.7697618844276	4.72083029964895	4.74755553713949	4.82293063647511	4.57743346211423
+"CARD11"	6.42905367009053	6.47374099180078	6.39053833263545	6.5532386994609	6.22440963659829	6.7090549001004	7.0039203158213	6.30351344778373	6.54421919970475	6.6321000174924	6.4119182616782	6.46502158029929	6.69822458789915	6.91790909156619	6.59038983414987	6.39334358578142	6.39976519623215	6.4531812142767	6.51166132831683	6.40382767411492	6.5793184786918
+"CARD11-AS1"	3.656572165424	3.53108074647181	3.66838617116164	3.91822093874472	3.73455774661221	3.45038078877654	3.70105678069406	3.71548174206131	3.73071144907481	3.60969566338285	3.74235217017352	3.86627563810762	3.78205427337895	3.91501303523654	4.06049759194099	3.6046810611941	3.84245861929595	3.40608667277247	4.04116104847014	3.74249398034182	3.77992925799613
+"CARD14"	5.14606092030697	5.18594945785393	5.31239624564445	5.56032854375607	5.23561088451594	5.89823397989782	5.98380948043074	5.37208415959106	5.67593138489352	5.47470347188127	5.19745664437329	5.39068217117277	5.82541497511089	5.85048027897168	5.38882261068538	5.2471636932471	5.37515383001855	5.15473325583595	5.46251002541705	5.44867749280055	5.39068217117277
+"CARD16"	6.03624669473955	5.13466932947982	4.83884985063471	4.82028182962169	4.98202567694246	5.49981179798697	4.72490947807509	6.27462287251767	4.5650490942154	4.45644633307386	4.23767117818279	4.79663641330224	5.50187673410355	5.88460512967298	5.30946020629472	4.61608568303103	4.54578152392074	4.62724956156899	5.39917615443794	5.78866394107385	5.49607907127715
+"CARD18"	3.93167549051546	3.74167696417702	3.81000229944672	3.97521665806832	3.9927447920815	3.79976998840573	3.9927447920815	4.14273628256805	4.55722593285675	4.15938663736901	3.94930492050162	3.90333476949723	3.95783985010105	3.9927447920815	4.12075116216022	3.96368650035655	4.0724573575592	3.79789751493351	4.15149501584481	3.90333476949723	4.3693388275449
+"CARD19"	7.98353396711682	7.69446694377717	7.93789241438898	7.62683367183865	7.73734231732036	8.20040319165624	8.29579968939351	8.06272162284005	7.89687395469602	7.80075827550251	8.16256838153543	7.74136815163262	7.96359669173592	8.10869946136659	7.785443399785	7.64361291461905	7.75094953273976	8.24852138302892	7.86255536069729	7.80433162869099	7.98858059908177
+"CARD6"	7.13666737809809	5.64455111704211	5.58073569212628	5.96232161553225	5.85465867184784	6.48780119767249	6.08573010178305	6.01464390692335	5.93259296967408	6.16915016046764	5.56231283819445	5.4990327433831	6.27985321830785	6.40032169321505	6.22528175453793	5.73971809950586	5.43544246909641	5.63323795452425	5.70496183926262	6.03217189005518	5.87964972764379
+"CARD8"	8.60732515968768	7.78514212032369	6.9442984436598	7.59427753078734	6.98402234300116	7.0867436113351	7.97525408449079	8.13574869445419	7.55901408593781	7.04638001354853	7.92790056402086	6.93216205558723	7.54942750799646	8.08492767698305	7.73854799789497	7.66244114623938	7.48756782345244	8.00351262833329	7.70455715555492	7.44506808772276	7.20098007445699
+"CARD8-AS1"	6.01715426076206	4.4752576076541	4.2571318561499	4.26032567508467	4.57315911740911	4.49866633201731	4.85167041081166	5.03155941340033	4.43938901871734	4.49002356374266	4.46377502578845	4.23718856194766	4.48882515530041	5.0499376764555	4.63744256470214	4.46561695766842	4.25163576419466	4.52761376074641	4.49866633201731	4.82472539176106	4.33395252450956
+"CARF"	5.36329433985525	5.88313414323344	5.3101491796937	5.22399779991837	5.81708428068229	4.95943014296011	4.8115222330056	5.24042479523688	5.12728914143881	5.54330735746619	6.35449562792497	5.53324961234139	4.81336164872625	4.9938993549957	4.65664495984564	6.18423038203635	5.43003786141819	6.65086057424622	5.09611758756426	5.6025327639468	5.3973348872181
+"CARHSP1"	8.81061081845982	8.3897640932721	8.49535435583414	8.38043600610571	8.15267801808648	9.2644518032712	8.67945355884118	8.57727207696405	8.68080406056191	8.27458360988545	8.82148010577425	8.09868000133816	8.97176830164524	8.93244374864097	8.92164664453132	8.97791988509837	8.18527466409641	8.6844951804425	8.0597812769744	8.14283518052806	7.77993100064068
+"CARM1"	8.6582204932485	8.65497899796407	8.96208330326797	8.84060379985525	8.62937119722248	9.1065134270006	8.98787740019409	8.80128368345487	8.78750510460786	8.55850250750037	8.37377622319267	8.67345689145547	9.15248133123968	8.95032916095312	8.40027683862047	7.92067852975188	8.77695257102067	8.46471657937095	8.52967601233255	8.80684311771793	8.65787795145305
+"CARMIL1"	8.08425176889274	7.55715561398124	7.65427072759458	7.68233998704545	7.61170716383049	7.00686680069917	7.69551945116139	8.03425890235984	7.73781719013814	7.56150450217547	7.662246585911	7.28616036900005	7.7608695018124	7.34351736544938	7.74779565730982	7.02317106805366	7.56520351671838	7.29288535675134	7.61811874507799	7.22659254585847	7.22785839528096
+"CARMIL2"	6.65688988456222	7.14433842704203	7.61860520048755	7.42631605673944	7.37094825325025	7.84885412032815	7.35557490932947	7.08601155870924	7.54875535692753	7.39645328495126	6.78842613247491	7.56654950744723	7.67213180399088	7.49304662138133	7.31442288071962	6.56422425735614	7.37094825325025	7.11350240288659	7.31687380446455	7.60538294515839	7.41740572691196
+"CARMN"	6.73210119563256	6.78572435480612	6.6261665891664	5.97461628784044	5.96295388613203	6.63765361697674	6.5949046928147	6.44226622126079	6.17463226445372	6.15810219815416	6.28925950521949	5.75889065950188	6.08057924607344	6.81173677410683	6.01173569861178	6.15810219815416	6.00670622707959	5.8137684932365	5.86755786887229	5.95618420932139	6.07961592511139
+"CARNMT1"	5.04657346553212	5.45745270388465	5.84055165158849	5.55431046450309	5.34076888090666	5.19993812582847	4.95635930116392	5.27966047478929	5.21773865267882	5.23759196967136	5.47720673138626	4.96110403336384	5.74092335349259	4.91317699519398	5.64366026900048	5.13449612325385	5.2284678892184	5.29334141570125	5.63020473641259	5.3148988305409	5.2959536581184
+"CARNMT1-AS1"	4.64857113305817	4.76375298044683	4.54363721049383	4.80825462821239	5.05250697755726	4.80825462821239	5.18143339911184	4.8009204373354	4.77439980972637	4.65689020152445	4.48969667996638	4.95009173623943	4.89172263945213	4.92333117686642	4.80825462821239	5.07468852258595	4.91581042450099	4.61552486600255	4.80825462821239	4.7343545307481	4.99695643229299
+"CARNS1"	10.1259440551779	11.1184644274372	10.4551928005479	9.21967857961367	10.3036240382556	10.4385465414438	8.61042458045706	8.91392460488858	8.03840785418473	9.36192204306229	11.5629114584617	9.7700343535032	7.75206586165309	9.54601394129293	8.11314621661989	12.4463926156701	9.55583335586942	11.7940822036414	9.16777418941296	8.87927174047965	10.3362272575012
+"CARS2"	6.02451369988472	6.08866833249608	6.37678526438225	6.12978989754536	6.42547986960748	6.49652106934548	6.47092145710715	6.39384491601498	6.14094555001508	5.70455667167215	6.05589271715385	5.99869821251884	6.33460504397454	6.5981048270866	6.58401594165644	5.80086547691839	6.21860073633632	6.49439967934064	6.32167564609799	5.68721441107889	5.7156652780394
+"CARTPT"	7.32965009981621	8.13066307400257	9.34768763564058	7.88478536966441	8.73101646889969	7.27803097738258	7.20904874364672	7.64418405289405	8.13323481512146	8.29631226713838	7.50976142969487	9.36999024763184	7.99900417949073	7.44614925460347	7.54088954049693	7.43275059682992	7.93989841779224	8.13846068352163	8.26926662046331	8.37594643841648	7.80775393597997
+"CASC11"	4.77073664297715	4.84601758196057	4.64954484895337	5.00309831915892	4.74655280158577	4.75391176901744	4.9414245812188	4.88167071756154	4.79613134910742	4.91912212229306	4.7256540518475	4.79465790282249	5.13169755808259	4.97655354460533	4.87178155670733	4.95233265552173	4.92783667974457	4.61552486600255	4.78803548089851	4.73535494902589	4.85567400806463
+"CASC15"	6.5698769970694	6.89742217361953	7.05741336596542	7.08155645477521	6.73317899584138	7.40228690994167	7.78935657670619	6.82560269065855	7.01714163905033	7.19073819215845	6.84349149846346	7.1938180250703	7.20993534929496	7.40620640047689	7.07213667240303	6.73932265880388	7.06645513872941	6.76292584728816	7.22769455407219	6.89396673214103	6.95426747079359
+"CASC16"	4.73159376447312	4.65238838590816	4.57109226081891	4.65238838590816	4.83455058666055	4.47220886198248	5.12746650795198	4.4970700588793	4.83061117002937	4.87423679595065	4.52149128880747	4.4440218150435	4.72083029964895	4.41381614548043	4.59220158570605	5.09971978028645	4.65754945846736	4.39894416286215	4.49363718455321	4.79123011442907	4.82768688055357
+"CASC17"	4.13529877313928	4.26475627704066	4.01615771219074	4.37564846328787	4.15650829308871	3.95520753929674	3.89296025647939	4.13195079065945	4.18367146585353	4.18609478859574	3.97291639111942	4.17293936466728	4.17389625872567	4.2246527330213	4.27786769056393	4.13529877313928	4.26231442656752	3.98338786291756	4.16990878490852	3.73580816599303	4.07364032976848
+"CASC18"	3.44701556841252	3.57617326204927	3.68586746783004	3.8624432875782	3.56685200279448	3.75921247511402	3.8634539042648	3.59491810304024	3.85314664967995	3.75805326285004	3.52578104068782	3.68586746783004	3.79629562655675	3.83125215649209	3.7591199182252	3.29876296176528	3.61255418406398	3.48401303533419	3.68586746783004	3.91977967638055	3.69299600365429
+"CASC19"	3.90440071703958	3.93267810830481	4.02697705571766	4.08539730151112	4.20740523510731	4.02952345223124	4.01056793254688	4.17136228461073	4.07075265971337	4.00137600080262	3.97432789265032	4.04306874709636	4.07792606942969	4.10715290997477	3.93863417451832	3.79205035485368	4.05470893787694	3.88509171534632	3.93572993773258	4.03904564176288	4.02032202406761
+"CASC2"	3.88209920233657	3.59538573043538	3.39769799506228	3.49343776713031	3.30670299178152	4.07792606942969	3.60164570807091	3.49729089802595	3.28010380859414	3.27268741563429	3.28532640287018	3.2887798706607	3.26244654034156	3.7078763158966	3.39924519077761	3.32779854713401	3.28372489709899	3.44927333376118	3.39314253545362	3.57065159798244	3.3489917676423
+"CASC23"	5.88164073423473	6.05962834716509	5.96784043384945	6.25528751060141	6.14444905819682	6.14774625169775	6.2369021113951	5.95211978447067	6.296039363886	6.05962834716509	5.93319281336334	6.05962834716509	5.99624472099266	6.55605442244513	6.24338212256679	6.08700436905291	6.02718651563368	5.90680565571731	6.12157322570537	6.05495697939809	6.11775764126222
+"CASC3"	10.2765192886902	9.62554992854337	9.75659460978511	9.51990368902496	9.47622818169404	10.6871972003618	10.636253918396	9.9446448193283	9.84225909254266	9.59976516489039	10.1003437861653	9.58099922512609	9.99530471218772	10.3337617834522	9.91597787669252	10.0135788840199	9.59164075547693	10.1094655633129	9.98131110527849	9.40802532926122	9.60278564210212
+"CASC6"	3.44909555853552	3.33967184431247	3.33709692500772	3.43359552805148	3.5281910975499	3.21298117002204	3.42458474433576	3.43359552805148	3.89750769692117	3.64322249025775	3.27420848537286	3.4256659121423	3.47339340470736	3.45563576246558	3.4251403794949	3.63921758700544	3.51860606914767	3.28275826951234	3.47607918481311	3.45896464880715	3.5141582795177
+"CASD1"	8.56702358148294	9.37364026114119	9.41982604634968	9.01722313807166	9.54174902457392	8.90271538541935	8.0574386420169	9.16941678873466	9.15647327471013	9.47844495075822	8.94884081795342	9.30739060719102	8.92503911001391	8.48092939379903	8.91326203228145	9.38166010573856	9.28003224503485	9.4728966284144	9.05671197319982	9.16941678873466	9.36021899107708
+"CASK"	7.03740060682031	7.06916159895058	6.12476759546289	6.526944703887	6.75351921389404	6.26174296666285	6.70839842084282	6.80729791084071	6.39487517988831	6.58003672720706	7.38024196754065	6.52681225545626	6.01161649893824	6.24238568491736	6.23676571842416	7.03663334067087	6.66525947363138	7.06945289747264	6.57633286257898	6.39538014174606	6.33153037895603
+"CASKIN1"	10.2582705246735	10.5448946912562	10.9052552386923	10.4417368836035	10.4162471349616	10.7581024710023	10.8253742319634	10.4904579156586	10.6717869342859	10.5114609372485	10.0135306152835	10.2238417418303	10.9535181246623	11.0063630729739	10.5985023120004	9.41354365996376	10.4051232650347	9.77920300117132	10.1945621637617	10.5886153250239	10.3602296863455
+"CASKIN2"	8.58022924826795	8.0373844301913	7.8527226582397	7.79944856406199	7.8527226582397	8.35526281894905	8.05344103066711	7.95677785395403	7.35036917174116	7.66325238445941	8.07516503273775	7.73829446553951	7.84446587023285	8.32726526204142	7.18101064597759	8.04159113605622	7.71771508792128	8.16134269353849	7.1928843873583	7.8527226582397	7.50518743960322
+"CASP1"	6.88374115393533	5.56436471857629	4.66664413700632	5.58878543156128	5.57479351960249	4.94041080946201	5.63042227624326	7.02595333082314	5.09122390903668	5.46955183605075	5.47464019316915	5.07219473959106	6.16204478972286	5.67728676845146	6.10082397250699	5.6349597205373	5.33900789653973	5.47060447904502	5.84324372846256	6.29585782370279	6.37845446668022
+"CASP10"	5.90147598327041	6.00188637177506	5.73198357579684	6.11937582774393	5.98894760586642	6.02499284775343	6.20569537272029	5.78318922937944	5.95198717912348	5.7781156172216	5.61008702773137	5.99124011222541	6.07352168482983	6.4397769020219	6.05752021607013	5.95198717912348	6.08462548424215	5.64284030256436	5.92970487802633	5.7662511083396	6.07517989397092
+"CASP14"	3.77469548704669	4.04133697179538	4.11230750218476	4.32309620382896	4.32521243623864	4.21186635735083	4.49993925095603	4.19818030628423	4.36614173631799	4.17781629369863	4.12805919171143	4.30291884282523	4.26784435623281	4.28138075546119	4.1668111855654	4.43722842340212	4.31456619233019	3.84054160309622	4.19818030628423	4.01309458661661	4.33304621631536
+"CASP16P"	4.10385926832492	4.26484499897195	4.32738745046268	4.5570171005811	4.14227845164454	4.53552366041602	5.00415433071589	4.2950572840823	4.43611257553068	4.537699768961	4.34259577549594	4.47578307397831	4.53846302544399	4.80572176516976	4.42653036726055	4.31590426033415	4.17371298329604	4.39303323892214	4.43377458248615	4.41806546055845	4.41328671503737
+"CASP2"	5.19544127579006	5.26902517162131	4.88288803109864	5.38436899615261	5.15633552199946	4.36376333690495	5.19018361370205	5.15633552199946	5.12803403233336	5.11479568065196	5.24984438710256	5.34739792575563	5.02114739605508	4.79900549975654	4.93784535392421	5.64410298686496	5.3223857100706	5.12489344162968	5.13188552307206	5.15633552199946	5.31465549260014
+"CASP3"	6.78793847767978	6.75249277275377	6.52438302013644	6.24920565494716	6.292793312375	6.44620043156737	6.66576122473134	6.44694481393302	6.35353055917285	6.29687665105531	6.8407937523046	6.14893618509495	6.36971946110492	6.34919033342119	6.62036642613006	6.57383352754342	6.25375620139275	6.77696221701246	6.39687488385421	6.31188507993433	6.14714974725054
+"CASP4"	5.5828842458856	4.35730807973487	4.10246670667321	4.47975262405947	4.1604510648709	5.66107116988213	4.42031943508224	5.49978870684523	4.17088855631928	4.51365792140746	4.23109737613271	4.81248310705873	4.78118392744103	5.04762018077141	4.68166064583432	4.62142070330257	4.58233678077455	4.38988452754654	4.62142070330257	4.69389650667565	4.63885371769151
+"CASP5"	3.88547139029634	3.66460139364954	3.58387896601217	3.69468528676166	3.60106350806329	3.59543530792133	3.8775472045692	3.66229204656363	3.58657035912302	3.61035957979011	3.59992223332191	3.70022956777569	3.84415718907257	3.82936953423706	3.77216330589925	3.75908476184148	3.66808011191282	3.25918999611982	3.80927923637074	3.6254898786378	3.88230250893898
+"CASP6"	6.82660757836189	5.76756836280845	5.94283376913469	5.90636036716489	5.91240772944875	5.69050004291591	6.41982846499402	6.09502701656942	6.2895675895798	6.24271693297231	6.01709308469784	5.82164106843374	6.13008488849614	6.16670104722358	6.34793048854864	5.87816789014903	5.84076261449633	6.11353251584043	6.12368811395431	5.92537416606019	5.7317079204
+"CASP7"	7.08664957494075	6.61369426664057	6.98905430021645	7.42366832838735	6.94186276637654	6.6130156911524	7.17685082819681	7.48655574596205	6.67356805313186	6.53742686094525	7.1150461589876	6.7284112376034	7.42583097809933	7.11851024828355	7.4688881588096	6.90237709266814	6.5598819321169	7.00753502344814	6.86348826313368	6.32800741989449	7.29292564549583
+"CASP8"	5.49661481584568	4.80793477563014	4.78760017863145	4.80351612908202	4.50032888639188	5.60689954019619	4.99985702330165	4.80146711216102	4.65559545667539	4.76717929068731	4.88496373583182	4.09548847027689	5.84274333591335	5.17829022857485	4.49532741052489	4.96937532781151	3.93935518557766	4.44550671072526	4.65071247286052	4.80279661279584	4.78760017863145
+"CASP9"	7.84158531315975	7.85843507314712	7.47105110024546	7.57656976401452	7.5329137446867	6.97457563059532	7.23938685087841	7.62098358361293	7.38380547353273	7.44124256308707	7.85160234241551	7.41526650962061	7.15973393039345	7.25185833192596	7.44667953750672	8.16054033482826	7.62697043448654	7.82765762850392	7.53299597878573	7.56063651410466	7.55037332189493
+"CASQ1"	5.98654527624916	6.45093080202878	6.95463239569051	6.6845195335516	7.31034377569606	6.78725076873689	6.52578356363509	6.45823435910609	7.4071596286301	7.01169427564981	6.1455618111494	6.86913736426237	6.34309529310335	6.4100681710027	6.57689196946046	6.6845195335516	6.73661589482094	6.6409391890975	6.27465684599815	7.32482833175205	7.47703868644016
+"CASQ2"	6.24370258337425	6.23618218812682	5.83797455424519	6.02644806768372	5.82510048921687	6.27049203228726	5.74781630181686	5.82510048921687	5.73794112671083	5.64703442909586	5.92296183279951	5.49247690687898	5.84207784432308	6.20376235228711	5.43026264519463	5.89315715043262	5.77627045668543	5.65784935480949	5.77125029022804	5.72801927896561	5.55103370226593
+"CASR"	6.37545432950294	6.51595308092433	6.95592852327784	6.94796158326425	6.56923980129545	6.90111008179808	7.13547985036102	6.66505878122503	6.83003268416026	6.86985287112989	6.90159704944252	7.08325421036909	7.10920831693556	6.91816341379666	6.81882836315931	6.61829070819984	6.99259876802116	6.55541343581233	6.94986059999645	6.51458971979937	7.06410293610853
+"CASS4"	3.76649585251223	3.85211938610541	3.8949198556596	3.89358571911225	3.50621854952478	4.09040698761612	4.39000324177971	3.6797939909141	4.07737092693359	3.90033975199389	3.61289061231654	4.09797004822246	4.2006082753763	4.06969599764735	3.62706402782237	3.79455132363398	3.95010250515665	3.71723333143563	4.22430424347613	3.65809764236435	4.08726352678799
+"CAST"	8.4907888570093	8.05225624772678	7.58507390407792	7.83649870625922	8.15768449864211	7.78538733375814	7.23351704239123	8.22860452677068	8.04321929533093	8.22234886531269	8.43446426817597	7.91916363493347	8.15768449864211	8.12197391416269	8.16932497020051	8.33725323674074	8.15768449864211	8.51797460483094	8.02148931418503	8.33909619696169	8.3220902598769
+"CASTOR2"	9.99938642872546	9.33120156192529	9.69188042053745	9.68294292278375	9.37350194899808	10.0783354246378	9.98874496550999	9.50922157243402	9.72443460479223	9.412350319844	9.14630386159642	9.31693883150567	9.72124214348581	9.95876815524709	9.6428198365978	8.86878408005893	9.61883852030541	9.20827104104162	9.5799559556654	9.40839870968893	9.52693808933358
+"CASTOR3P"	9.01392761685744	8.43616244195073	8.29792129469761	7.62842726232557	8.45835565316663	7.97875949477543	7.82177840262578	8.29547367139055	7.71233299948442	8.32217033664631	8.39521262419393	8.19032523786444	7.97646838646654	8.1372711179387	7.67375786105313	8.6061881516878	7.83251477539772	8.24852138302892	7.67487015228132	8.15090315693063	8.41714728252574
+"CASZ1"	7.11760234445215	7.20020438491166	7.45667183249093	7.45243872309539	6.95246601963124	7.51349392058272	8.14798482000299	7.15424767922418	7.47308200189562	7.32357539411326	7.18985547144917	7.43445533013071	7.43321039094885	7.72641340526862	7.39454733439606	6.78249923506798	7.17890352916883	6.94438260081238	7.54914416314706	7.15357654488006	7.15874684930508
+"CAT"	9.29113351232931	8.39245083322651	7.55381731981119	8.18820087212888	7.84808335130633	7.61265034176549	8.55922797681736	8.74647017934231	8.20801160554014	8.5008888572053	8.91747687793663	8.06317307145376	7.88417392444997	7.999963707346	7.76777480134573	8.88615068530644	8.14626184723689	8.76756329494579	8.70002835251128	8.18898518457911	7.409437295281
+"CATIP-AS1"	4.60897154991348	4.83851391392687	4.59506646903935	4.83851391392687	5.0472145863126	4.78454896299833	4.906952104822	4.59224523704448	4.61566252311744	4.83851391392687	4.57250675507328	4.85158940497986	4.85875720671621	5.06466303763755	4.8426214868671	4.78965837083377	4.85770976963753	4.49873034760648	4.87230285392216	5.09552216892673	4.99887287667226
+"CATSPER1"	5.0204398862164	5.07182579917195	4.68005047352837	5.4012527350045	4.97775769996187	5.00090737783239	5.23551748698565	5.09278422703181	5.17293100289974	5.20697160532797	5.04895203679589	5.15568010291225	5.15243731372023	4.70975225048323	5.23312429205589	5.14683933652881	5.30955576204305	5.0204398862164	5.16013397349684	5.04943577058441	5.09770161797754
+"CATSPER2"	8.70970518467264	9.07050058553293	8.90105976431023	8.86077445917197	8.28265685387444	8.70626207648783	8.62175922743389	8.61155600041071	8.96994977213702	8.61022771101699	8.86339841211626	8.59311188257535	9.00381253498059	8.81005710378703	8.99679337216303	8.68487259695016	9.10941136246612	8.5190951079528	8.74168351505269	8.1050609844174	8.49422849751999
+"CATSPER3"	4.4914394539734	4.22721700712976	4.12942988010856	4.33081062136728	4.45551595167788	4.33900243300746	4.41536373638942	4.57512919121534	4.52458119415805	4.28667637830705	4.28829406038766	4.49829487528199	4.41536373638942	4.46166034850697	4.52288939947387	4.30731361060046	4.37208961526254	4.2058695172499	4.50702124669448	4.48930489167317	4.48059816775558
+"CATSPERD"	2.94073055945111	3.07484643378913	3.08641300379287	2.88144494782162	2.98977888660267	3.21298117002204	3.27379586921751	2.87968722318722	3.16581521545057	3.04986155577754	2.91454647562767	2.83174001431787	3.11349740276949	3.2191178113986	3.05021842065116	2.99957417439415	2.88598626986815	3.17005117095046	3.11896104386141	3.02471288538393	3.05791127460514
+"CATSPERE"	3.81645966186081	3.84874955664987	4.24641850166034	3.57198673574828	4.02500068677185	3.7918121218316	3.7943654561224	3.83353097716374	4.3252308047693	3.44883939977612	3.83353097716374	3.68677898483993	4.05467031458473	3.75730325459997	3.91534264225938	4.10255197835264	3.60043125835162	3.96655943133332	3.68004227687953	3.74985422836263	3.75203390602705
+"CATSPERG"	4.90891536730434	4.90001112898386	4.64093847601788	5.06139471879923	4.7242829089493	4.88426520127533	4.96266644615532	4.92477213047311	5.19973652481879	4.91172152843565	4.87120398223744	4.90891536730434	4.90891536730434	5.23430595945169	4.9047500036447	5.32869888614014	4.89680145505042	4.83214557350294	4.90361713250318	4.74781176378158	5.1529881318216
+"CAV1"	8.49996353803015	8.09442566063517	6.72219842124392	7.51788269620161	6.67867402018839	7.6766981366899	7.34265231950749	7.01159542240742	6.44477713758812	7.19687621576109	7.76381398150716	6.01620729038502	6.97638392078075	7.81958845146328	7.04600051231661	7.80770096926312	5.60525575485078	8.94357929997692	7.40577203537078	7.36358228468282	7.94570108278036
+"CAV2"	7.13780811822601	6.99169378263579	5.64474484711487	6.13423805067674	5.6331459582561	6.21425839774361	5.68222119961968	6.37503081087709	5.45124121372987	6.07073810164173	6.6501165004043	5.67883342256541	6.04150327463393	6.25882665287768	5.42628315745383	6.47994203256348	5.11237838504548	7.65092808391086	6.04150327463393	5.81509493271608	6.04150327463393
+"CAV3"	6.31208026560841	6.32134024636999	6.34975963246122	6.50562538675028	6.3484177062266	6.56910587447353	6.57211625616677	6.25059549097664	6.28606014513141	6.39105181469526	6.33376003396617	6.3484177062266	6.41242741039399	6.71373398488155	6.34594860297941	6.22528175453793	6.3333163901808	6.01092906104035	6.202143603654	6.36602778674451	6.25815160682825
+"CAVIN1"	10.3957796196118	8.87967701805262	8.50915972058908	8.5469735181028	8.43857757951635	9.40286621707043	8.72404740612914	8.67733460422359	8.16868928990634	8.78283600049208	9.59362289978521	8.47415322524825	8.90131636847091	9.2277452518329	8.45619384337919	9.59735205023186	8.5799400886659	9.65524349671538	8.54827142515326	9.29189736795563	8.8033821138348
+"CAVIN2"	7.72569325130335	7.59487489223194	6.18974953384598	6.22711676241055	6.1261240293416	7.41996965067145	7.67956713131038	6.52448892881413	6.10153389586793	6.68525168888194	6.56049047219985	6.22711676241055	7.109007370248	7.31959990647636	6.22528175453793	5.70431022910654	7.07592671506858	6.68561824851711	6.76621407544441	6.907025481428	6.58931331540941
+"CAVIN3"	6.03167101128853	5.21267380960805	5.42946397680915	4.97681562388778	5.23897278654052	5.54739660674587	5.77487678731474	5.0911619735798	5.10828334336603	5.26640404410014	5.54854110928859	4.85439851358545	5.32913872443279	5.51618404385828	5.20644582998093	5.02340702506683	5.01149221075305	4.99428465577609	5.30097962000209	5.4407416569091	5.02486670476425
+"CAVIN4"	3.75544192383166	3.65723412897092	3.92510255885662	3.57559696188545	3.53563885221081	4.39141461557263	3.72867776314204	3.38860149231636	3.56520758781866	3.43619959636222	3.6710320342899	3.59018845404378	3.74690094334427	3.75142142851167	3.80802969967706	3.68876927867613	3.71031846596918	4.36316468149724	3.5740297458156	3.46923630164718	3.56064457255859
+"CBARP"	5.8947114210004	5.9721574541798	6.06455065519311	6.29027325921285	5.87398067512946	6.09693775610327	6.68262495277853	5.88794921749882	6.13056483637068	6.0740267815861	5.87716760896756	6.02463757747735	6.37689438070394	6.30704625562807	6.06455065519311	5.67254341352918	6.07862276252211	5.36963612724753	6.0889948801605	5.84012535603565	6.13371004683633
+"CBFA2T2"	6.77551231682414	7.01893870929453	6.76476130008956	6.8658997941993	6.73281311814795	6.10643230530018	6.88140141353643	7.45204643358829	7.02230933693802	6.93869524716118	7.17716050134757	7.52535641328581	6.60777308838608	6.58467964738245	6.76885125316996	7.73767416851551	7.51499281188556	7.61630869873822	7.24356904686108	7.05103322998572	7.01893870929453
+"CBFA2T3"	6.62492839953599	6.47371620731695	7.10770325006957	6.73923247833317	6.89546907740355	6.83530379203766	6.58755903298833	6.37017332102002	6.98227140845615	6.63165249400753	6.29450755492065	6.57870208985435	6.62492839953599	6.50883684441295	6.68369737622726	6.03446967022595	6.55983505521583	6.72822633953625	6.31705428093526	7.10300669134874	6.78455909971804
+"CBFB"	10.0952794901986	9.34028390126856	8.96335695179152	9.65667822678898	8.99335465204605	9.74553519022369	9.92778702171233	9.98139544179037	8.99119078017234	8.82702180919527	9.79351357164549	9.30865171455382	9.13867598237858	9.54227712761881	9.45591788317224	10.1634132985695	9.17302878050036	10.1780734825053	9.64315856950889	8.95088826283428	8.71057249709346
+"CBL"	6.50864653153082	6.71824969846691	7.48092055913842	7.39254448018588	8.36292774664853	8.15024556126638	6.77180495208078	6.99363850702128	7.12765896397486	8.0097105579418	7.07061515336677	7.83282084366399	7.40034302086589	6.83106789429144	7.023487415167	6.30491294023265	7.18097963579189	7.62623670512117	7.1051759521982	7.89794787335847	6.78313082437938
+"CBLB"	7.28735932863599	7.08893617650922	7.64386363198934	6.73237385409242	7.33128260751709	7.58739828368322	6.19934086357387	7.17056939405816	6.63247736319826	6.61263549150086	7.1869588144605	6.74752016323298	6.6084456275807	6.8138697439283	6.61612846470461	7.25582035242193	6.97763321936941	7.31773926081787	6.89956625650078	6.864116398725	6.51617177992197
+"CBLC"	4.86935638422471	4.767962325528	5.18608346572752	5.13277016560217	4.66028969702345	5.45650750428861	5.37218017950304	5.22620819316537	4.89357119865884	5.32085929325758	5.0507709440905	5.0920968499341	5.26272290162172	5.26590355278674	5.32434423768323	5.14734644433745	5.2022586863099	4.92275813607831	5.26265897708434	5.02263303481958	5.0910250229881
+"CBLIF"	4.13557720799785	4.04950191720481	4.0984735449717	3.94936011666846	4.07528393486683	4.18865738395325	4.07684216127038	3.93284844318358	3.81946404266212	4.12702371526103	3.8825961134376	3.85481566457286	4.26373952706106	4.37078999443445	4.02497124619374	3.86958447513678	3.97740784862122	3.92907685064524	4.06862759462507	3.93320486427702	3.90443095505157
+"CBLL1"	6.71010442280541	6.86140519186863	7.02084951295858	6.87224690964196	7.43303654279226	6.69475685525133	6.41999516736716	6.62506614521253	6.5828584860646	6.70436264567489	7.05582765961261	6.70589844308782	6.41480192481282	6.42496182095439	6.85198796141931	7.03265149668997	6.97812778436121	7.45424875943807	6.71791027887853	6.79758873405561	6.82165753900691
+"CBLL1-AS1"	6.39130571625482	6.45421798051655	6.14019872511372	6.3336738020419	6.20220845621129	6.57017665110527	6.81476861324415	6.44585418270372	6.5104742780417	6.1548752901784	6.51663958113593	6.35975409552053	6.69186007568957	6.18926741187237	6.48475038637531	6.6939689724669	6.68822908432937	6.6662654641732	6.66595724520446	6.23209655977396	6.39487517988831
+"CBLL2"	4.28878494724978	4.26633479177451	4.26363516502684	4.32518248719879	4.26790508336232	4.30672161030429	4.25964472169835	4.29063883178681	4.2984653609105	4.18272191768113	4.01345776091748	3.96162072149943	4.78519198186689	4.14423233904677	4.30472009901361	4.38329759020206	4.25964472169835	4.25313751687419	4.2089815960087	4.16191850929496	4.25964472169835
+"CBLN1"	5.26410143733806	5.66041074383225	5.85355158799335	5.69184022341368	5.79246333313448	5.59798364702734	5.37793357599437	5.53939614521342	5.51637380097912	5.64140334570722	5.43557536256117	6.2030763496523	5.45474715498421	5.39645946301988	5.4344455383474	5.60392523728304	5.62202594505786	5.46038940743609	5.41648344098349	5.97922663472402	5.70059063459616
+"CBLN2"	8.2267613855413	9.29025241210658	9.7483427976793	9.4981494159647	10.0672336720333	9.37089191444376	7.84368123440156	9.0085745767778	10.4047982506072	10.1162469401516	8.45448844953252	9.94833879675614	9.69341464108969	9.01139481469578	9.7520830678977	8.77851817889619	10.0957818185378	9.51082334969131	9.4993640186323	10.1557020588131	10.2506180447636
+"CBLN3"	5.36117545590216	5.6473005058783	5.48552556118237	5.47542763050103	5.47542763050103	5.43106369070475	5.58725033830461	5.49081373871188	5.40334372672325	5.39348743054002	5.25586236007358	5.26189498951828	5.80458101767101	5.85638683583039	5.33179332393974	5.8158511111762	5.47542763050103	4.94596937640126	5.20627789369739	5.39547924289169	5.68252365059641
+"CBLN4"	5.13841940694892	6.06226902901436	6.78456171050015	6.3391224451471	8.12120990979801	5.72896131236231	5.28625192820288	5.73489304451052	7.42825599508143	7.67567252311038	5.81122655380776	7.26696915866754	6.00670622707959	5.59405870680498	6.22175768357229	6.62575022276463	7.15581639421024	6.50962866425096	6.17957947574882	8.23365059728954	8.14197556295696
+"CBR1"	9.39473548848917	9.45842458583694	9.00926822498523	8.94757265820738	9.04183967958328	8.9713669046198	8.88265715629377	9.50438280219262	8.59030674179372	9.02304043661615	10.0067687646806	9.06875588814311	8.38378723062599	8.68287350198051	8.68056860436954	10.4537781208698	8.83884753650431	10.5864239842245	9.40178849527008	8.91154839861955	8.70179722602409
+"CBR3"	8.19381217715926	7.13054843087852	7.49471230572822	7.23977165529535	7.24490832989921	6.84795423378298	7.51540246087102	7.74506119655968	7.55806230863113	7.36911222283409	8.05677336681882	7.05778219671048	6.36219239451437	7.0532812365462	7.19674594049898	6.71962544601793	7.22375706213968	7.14276818949195	7.565269393498	7.23434335402986	7.2614808675852
+"CBR3-AS1"	4.99169548668545	5.01819551668354	4.88992575963408	4.88203744217299	4.96191319669238	4.82949619053285	5.2567764663425	4.85748970698044	4.97234370925278	4.96131002813881	4.92598288890352	4.83757826567683	5.20712858357808	5.12472741131432	5.07136151206689	5.27882151451221	5.10481539445084	4.54137198263651	5.24848670726009	5.08648436758188	4.84304925759293
+"CBR4"	7.41521657519088	7.64424375706763	8.03303373681455	7.8960906111481	7.80018723805543	7.1480656398831	7.04528965845856	7.64424375706763	7.92906960657279	7.69962978000977	7.93192350116563	7.535410746368	7.66023347936948	7.42163444392462	7.86442693729608	7.82869025866524	7.5744417778306	8.01178717170748	7.63851948842145	7.40944284171757	7.5045609287994
+"CBX1"	9.75657724079386	9.71466488876303	9.82636371300255	9.64589331645108	9.76526378631996	9.04763348105261	9.32503173174508	9.89727849555578	9.52924289668625	9.59296714022032	10.0268977423148	9.60566758908707	9.53324739825306	9.45595969083815	9.66020402008762	9.71079064837153	9.49537800756068	10.0113314342637	9.74960791660126	9.4540390514215	9.45067610240723
+"CBX2"	5.60549313060024	5.41439325963011	5.30952479586121	5.63341176124305	5.33133446967835	5.29594346815582	5.28775367538644	5.37232687088904	5.59097266148693	5.49461514940907	5.48195114178536	5.53952168214207	5.63058034446733	5.4536516711433	5.94178577993523	5.53549123449094	5.59849130068274	5.21582589675613	5.43499308197517	5.26610668430633	5.56801034305329
+"CBX3"	5.65434423733824	5.88799823905349	6.96780416837081	6.03419139609067	6.66348669349795	5.75047701150237	4.5687948593679	6.03419139609067	6.15985999362684	6.09130303715924	6.15816529149169	6.46399040030288	6.03419139609067	5.53174684165366	5.97274185069056	6.21893385591146	5.81958034048871	6.83798473018521	5.45083972344505	6.07871193753627	5.82044835985698
+"CBX3P2"	2.8271706101797	2.917832519029	2.81290067092741	2.86730592205798	2.83925881433223	3.04520600212609	2.75357698657415	2.87077542245862	2.71988188931481	2.91251825304832	2.80873186949249	2.92195949107612	3.07746145695853	2.73715954114455	2.67289601604341	2.94417277695067	2.88902166780108	3.05251165105041	2.81920971631798	2.94040269664442	2.86396416944834
+"CBX4"	6.36017278949439	6.34313663323674	6.4616619773123	6.2995073811091	6.88553262361384	6.9942784337753	6.30256913748578	6.48431579712288	5.98062129969391	6.63831426747833	6.45619611988714	6.72270547029033	6.33888322017283	5.96382610027223	5.67536329079497	6.90281482558633	6.66816194071114	6.86835722971743	6.42564224897321	6.76851319964858	6.4452731104415
+"CBX5"	5.89708195618327	5.99780211852376	4.52472775536013	5.75208909829829	5.4897376366587	4.77201312642575	5.73659724800908	5.20511837565019	5.99285122532522	6.47585388773492	5.88238494928225	5.76803517936711	5.72772881998068	5.3611129872966	5.5044377731848	5.83854817432485	5.9174037453071	5.28392404928776	5.85877595332316	5.76625001135947	5.89362698153177
+"CBX6"	10.6186866923016	10.960260698066	11.104107089102	11.0510488167173	11.0273705243025	10.7845694964355	10.7232395207049	10.7796501600192	11.2732352071091	11.1279675666369	10.5446857267555	11.0626927745342	11.1202727034585	10.7066657406704	10.8104208893962	10.3775014947359	11.1463604232872	10.6046398969737	10.9265829252483	11.2640256474503	11.0922256406232
+"CBX7"	10.2772338459775	10.5299136855457	10.8144104502053	10.4022107518113	10.8179676309814	10.3932434461229	9.9385296317102	10.3011283256073	10.6880058190385	10.7383117807997	10.309646274855	10.5763036120637	10.1591291493927	10.3834037143491	10.2101319461408	10.3808065499431	10.7624308830723	10.506810078225	10.4372430062996	10.8885319120413	10.7178378704645
+"CBX8"	6.06437139491266	5.96697292538924	5.83256594480079	6.09249458418177	5.93303389468362	6.10081896604745	6.26778728743829	5.93239935792286	5.99667741440421	6.13896510993307	5.74721387973057	6.10895098916908	6.19984509751136	6.17219199480537	5.93663598696012	6.18563700779703	5.87898175139292	6.05732940592322	5.89725558737735	6.01112826642031	5.97488301468448
+"CBY1"	8.81048294529521	8.42966143295422	8.55862633222565	8.33945311057889	8.22270884068919	8.21530448749822	8.33832326449146	8.27768831467036	8.27228400235376	8.26815285029346	8.65170386533146	7.99637895302798	8.00659686009395	8.41454443763732	8.15177689505284	8.40869896495964	8.03112173499191	8.40082658104016	8.44886768237856	8.29312968287252	8.10799789416711
+"CBY2"	5.26023679000954	5.27878586280575	5.36187617735401	5.25933259883504	5.12326791810005	5.26053575473574	5.52362306783987	5.10317544215796	5.4771872200384	5.25933259883504	5.00383368347133	5.38365506723659	5.25933259883504	5.46559621163113	5.16024713300132	5.15334275825802	5.21873794946542	4.77917159058031	5.30209422713807	5.31025932823496	5.25490362167174
+"CC2D1B"	8.0873539592105	7.52024579028993	7.54480946302721	7.29829835310891	7.33416760302576	7.82283920721813	7.01581376470819	7.20722632487633	7.16891735221143	7.45239564490394	7.93553776834373	6.88776301381111	7.40148261773037	7.8068681553904	7.13132555264674	8.36078135496368	7.02391074261389	8.26921422183414	7.18714576608841	7.4177447454912	7.33395543039673
+"CC2D2A"	7.65761177331923	6.9878350019988	7.19849993111451	6.70985340352606	7.07557843260375	6.73825324393229	6.75201346392423	6.6633781147815	7.11756281315698	7.1461220803973	7.27090001735745	6.51848599883953	6.67169115727053	6.8539056390786	6.73680160858617	7.0661550405022	6.5256515336485	6.86956674384383	6.81301776671628	7.08233102808919	6.65303159600339
+"CC2D2B"	5.93206177687534	6.10720940664587	6.09341728278285	6.27749337113218	6.31688145576524	6.49573260780481	6.24624110360949	5.94278989511505	6.16610865595718	6.03689705577372	5.60883851807524	6.10720940664587	6.02863334070079	6.18231863475522	6.15826623429313	5.84221146291781	6.06468060509187	5.77963112982636	5.99484331952675	5.87754176617188	6.10720940664587
+"CCAR1"	9.35317755378583	9.0717947327674	9.15581065675989	9.3680008359514	9.00404596788509	9.47253756316515	9.16840447279411	9.67111665074864	9.13971510151453	8.80891361797783	9.26847276359122	9.13494920505983	9.17052412513526	9.53046607488256	9.45885306123468	8.89697611926139	9.10520726317884	9.07623279640123	9.27234894582127	8.63714171784772	8.86576281356253
+"CCAR2"	8.82460168527083	8.56241910638241	9.19271894268164	8.51719007923972	8.91518689228139	8.45641280188827	8.54544949202087	8.45432225442057	8.61050020611588	8.87848634372025	8.87931023987538	8.49062283003394	8.6924909925988	8.23731992654923	8.4701811612654	8.45199803353121	8.79056316306434	9.074285284658	8.42607742118359	9.03328396570738	8.86484023984387
+"CCBE1"	4.76200298368492	5.22910489246634	5.58962315222783	5.54932388183021	5.51698186140246	5.65546573240706	5.73509239549678	5.35030731961805	6.3082592945858	5.97636214101676	5.1458737416092	5.19451459399754	5.00728654783872	5.39457002334312	5.21761962124354	5.48737761385762	5.62266987958057	5.45832812480841	4.79798782531151	5.93525875953741	5.45449998508696
+"CCDC102A"	5.45052640513844	5.36017558622025	5.31542732540791	5.38369941382527	5.13980350161492	5.90263014676207	5.98247415600056	5.20176100744011	5.08633322812105	5.4561877216528	5.19642227513579	5.13407407498908	5.8832864726821	5.53054947687518	5.58985025112231	4.92398889143486	5.27243673107556	5.23723153847947	5.23941849797186	5.44348050271546	5.36017558622025
+"CCDC102B"	3.6905708240403	3.76618234373998	3.77283015148883	3.50366196953235	3.77155839437003	4.15208892540975	3.61264489605032	4.00396633192681	3.7686236235222	3.42598080769835	3.50979495651967	3.82001929102489	3.57344711056835	3.71087645531467	3.81526233551215	3.64178998801179	3.54339273155811	3.91519509290911	3.66783811633876	3.2930811112739	3.67884275111033
+"CCDC105"	5.56063777411721	5.50854483344699	5.70135842287484	5.70277307671819	5.57473782342704	6.08629352641235	6.36236913330557	5.5935987533471	5.57630684003302	5.44061319479109	5.3447731632892	5.53492856319755	5.85752197487077	5.84696963793425	5.57973603827963	5.09445200691576	5.52935040154285	5.2723205874662	5.68013008412079	5.47861028641205	5.69038113652838
+"CCDC106"	6.95385653649073	7.30154568352457	8.08192808105176	7.42098320120572	7.52745481500657	7.62914713144932	7.76933908551992	7.31568742456092	7.41347820996767	7.38993872883843	7.35592929390203	7.43507627291899	7.59256339257723	7.61747576163432	7.41347820996767	6.77583635425949	7.14059964716206	7.23552871137377	7.31983486011401	7.64514955960277	7.45752880348457
+"CCDC107"	7.70684884570283	7.6001873789424	7.59500921105378	7.64433554719045	7.32069459781919	8.07012495153658	7.8082498885442	7.55436600809887	7.5878985689136	7.64403547364977	7.42035168881619	7.43013576049366	7.85164983738169	8.00258820645501	7.72916537041345	7.23040148209482	7.47036969392557	7.33256057754476	7.71002853761039	7.57272240654617	7.58390481631992
+"CCDC110"	4.02911312762909	3.9609452552383	4.39041322104904	4.06119367773165	4.56390023737509	3.75298917754425	3.87137452199387	3.51187472506723	3.692344881318	4.26577120526687	3.71707299248136	4.04305045786665	4.00439383498495	3.86306226279343	3.48932520554762	3.71883780348842	4.08698740794963	3.98793341025498	4.25292869370946	4.04652928046092	4.16910210131818
+"CCDC112"	4.39669310188047	5.19816229777	5.20565573448234	4.90116894660428	5.06448955577007	4.72837590170565	4.60299612080377	4.56993607660801	4.87598852855677	4.74514792099409	4.86167810802904	4.34512801473762	4.81854319521996	4.81040728298117	5.28437882898049	5.08017605359004	4.70786750879205	5.13616046148467	5.01605674421695	4.86578599820175	4.87598852855677
+"CCDC113"	6.49780927982822	6.90269960352921	7.32439884629285	6.55583200887397	7.39335080124055	5.92732037599594	5.25762627284351	6.43979432222521	6.20083804357194	6.97625912260208	7.00549830785113	7.15385562375856	6.24510542151479	6.20754487297885	6.01624311125485	6.51428448225378	6.5758562692554	6.97723287329641	6.64578139322346	7.10167236012384	6.67649240289644
+"CCDC115"	8.61576563179663	9.00727394688258	9.07351950166748	8.59950878423761	9.23910232443977	8.43067724104069	8.37066182788078	8.37195881828525	8.51429379844335	9.11512872845048	9.27136613847534	9.09670826513408	8.64316458298431	8.3696064892134	8.52717324537558	9.38362003068248	8.90647359706729	9.20591854369956	8.60257820367843	8.97824485332976	9.18193649255102
+"CCDC116"	6.16223912026323	6.26173374129907	6.32687417404601	6.38586673202084	6.24536707173481	6.38586673202084	6.5104998052875	6.22812610478319	6.44330582626985	6.46987428966864	6.42186399448472	6.23888648683328	6.58125563666024	6.75698243455862	6.4159466304982	6.08110426116863	6.28533927576735	6.08194576895821	6.44755817110996	6.38586673202084	6.47746014162498
+"CCDC117"	7.75581595891347	7.83368110374711	8.13763243849025	8.48982593173392	8.03453524009595	8.0042318311084	8.26370411929886	8.3871535667712	8.11627055874344	7.49309667294829	8.23205047070794	7.81776147276066	8.71883919059661	8.25696060333103	8.55803720659117	7.99059778140488	8.11627055874344	8.24438812747974	8.46043218899307	7.61688540504974	7.89028877592805
+"CCDC12"	8.54029014882972	8.4834159912549	8.98912317968263	8.56915550441301	8.79149738667389	8.80371671984666	8.6220989152931	8.74040243301241	8.69910681993113	8.70232797893105	8.58373261663865	8.71597552188726	8.36297214037131	8.61280329588255	8.57172867418304	8.51249658149996	8.49451469694358	8.87561954872447	8.630775113274	8.82130234791675	8.53774962671224
+"CCDC120"	4.61284354163675	4.65626452956398	4.62646730805907	4.69708362839608	4.64463078571133	4.79453337230199	4.88380886344053	4.68715524276066	4.99881022233127	4.50508373962242	4.39630181863535	4.62646730805907	5.06037626034221	4.91177972235434	4.84930235284099	4.3007661552064	4.50407479082766	4.22455731376352	4.82583208343012	4.56059020387668	4.41097499257859
+"CCDC121"	4.20014021787308	3.63380446419854	3.66838617116164	3.91151302500101	3.76001776770325	3.5868340101625	3.77745688315948	3.64509055439059	3.67047720666205	3.5445129665075	4.05668217046129	3.45486805439661	3.71017425440107	3.5943447417485	3.83142095960136	3.93177591765735	3.40523319144767	4.09915649423618	4.13474559955477	3.69849390710607	3.45171543685971
+"CCDC122"	4.4338526546948	4.3650311822914	4.15915821977865	4.4592207747424	4.09048692452909	4.29938893389525	4.31331124972662	4.24030416626212	4.28617655186043	4.2096864365093	4.44006492784241	4.23398209194831	4.25964472169835	4.24403293087103	4.29938893389525	4.15230674965276	4.39181732815437	4.1084745210448	4.29938893389525	4.21350993473303	4.18771663266538
+"CCDC124"	8.39026571613544	7.92623793968594	8.43021694312279	8.31201320556954	8.17937533558882	8.42053540634803	8.82240172477563	8.16166536774441	8.33176348375133	8.30198235295694	8.15828329011823	8.16509780212509	8.31201320556954	8.31201320556954	8.45426976675154	7.97896109307178	8.15193154741962	8.55256739213321	8.31830144073444	8.79885012047361	8.20016961842823
+"CCDC125"	4.8648673301365	4.71202659293099	4.83750687055114	4.715358520815	4.28811339558514	4.29803698704189	4.8956914752295	4.58515369571917	4.35322149603782	4.56161883718955	5.04271407252764	4.72897996853786	4.715358520815	4.715358520815	4.65799262147652	4.72167014802311	4.96998713219968	4.86009944718888	5.26265897708434	4.7941581684554	4.91912212229306
+"CCDC126"	7.18716120853485	7.15854635048754	7.67371987945148	7.29601263536895	7.90434888392339	7.05614622297667	7.06349737986259	7.82119072419023	7.97067696895655	7.67551747685409	7.16605425718486	7.41685819982719	7.49117344011832	6.975855474521	7.90520888884896	7.52593793739826	7.53083640704578	7.88268043916256	7.33962657477639	7.70749401539647	7.46362454155408
+"CCDC127"	6.50490709755416	5.87715755492279	6.63584614400387	6.18241970740759	6.67293316733783	6.18135331629076	6.24443397539332	5.2499133651056	6.48948690770976	6.14835669940819	5.53820665833021	5.0850282552559	5.86935902441399	6.19467480292487	6.62666752626276	5.76894421480757	6.16383963426503	6.61394786797337	6.00090568686906	6.90572891763583	6.18241970740759
+"CCDC13"	7.19973237152849	7.24473979310405	7.00194987206188	7.15270902549605	7.12952389519175	6.91924126125146	7.0839875246391	7.18705687998459	7.09814764408532	7.2198202057321	7.08906759381333	7.25537041696309	7.23412787894489	7.20196071784403	7.07444584939909	7.26282348057845	7.34263153508869	6.80418815670694	7.15270902549605	7.00209976801285	7.41948958127059
+"CCDC13-AS1"	5.16153860117155	4.83143094806012	4.71545593922718	5.18108684141149	4.81593012822649	4.65943655301179	4.91953845287071	4.81718904430701	4.63766346618176	4.86435487983639	5.39128773018734	4.97358781591498	4.90815843416304	4.62103784204836	4.90122496205643	6.4159466304982	4.93842908732846	4.83803651982562	5.01887084080079	4.537699768961	4.54150331441009
+"CCDC13-AS2"	3.08168378512581	3.06379249073642	3.08219967768869	3.18362257375976	3.0691288101027	3.20162076815786	3.23280720547047	3.17650896214406	3.36971479957746	3.12818559207199	2.98400369984491	2.84507790078077	2.95662682429743	3.21492107928284	2.98101517081163	3.00917934565383	3.00843444884255	3.00843444884255	3.0517031486376	3.04336844762381	2.9501772659407
+"CCDC134"	6.79353688148587	6.56741141136569	6.80370303506821	6.51771126596086	6.68681590005764	7.1429157923936	6.77079184571138	6.45974036276716	6.20209604783135	6.37601290502396	6.7382006469102	6.45878056279537	6.27346658036316	6.36455372645149	6.28552169706969	6.75902310207499	6.53202177109219	7.41488666653183	6.48002999973457	6.57726684940319	6.2646614672479
+"CCDC136"	7.6326949961484	8.18490566598244	8.7623628081075	7.98264234565233	8.75142193597137	8.14491662919909	7.78911676264497	7.63094162250475	8.52389756192636	8.77276479907724	7.98606908524766	8.55101498097813	8.28278732714118	8.11024953787719	8.36813565371701	8.15655862803706	8.46330198683687	8.37711435970313	8.12895445234668	9.09207623588899	8.81940247432843
+"CCDC137"	7.48894236636229	6.7135883501642	7.31142810457428	6.95697835249988	6.88094704608113	7.50228689330314	7.41991141303164	7.2372004290387	7.23958345027775	7.07505331200358	7.01785463948956	6.99477472877537	7.39622608137879	7.32658658572863	7.06150746089024	6.89367257717718	6.85378116200609	6.83617609258645	6.95855287133937	7.50934084808665	7.04491108818439
+"CCDC138"	5.24101108837579	5.50970462028779	5.63675814513946	5.28228497739277	5.61328107358326	5.43480736423614	5.26523377550348	5.05868609065904	5.34598264541714	5.19146449797886	5.26999750352708	5.22025635773318	5.42847814512552	5.21800783990413	5.43214205717191	5.66484528012466	5.34598264541714	5.76940206694367	5.13660006036611	5.33049997823703	5.34598264541714
+"CCDC14"	8.79666275404145	8.97821515305183	9.07512770629006	8.67127159358651	8.56894624319026	8.33881668627956	7.87231581835581	8.37554503614588	8.34364237840244	8.3002212045504	8.97760038245237	8.42931133581452	8.4145658238849	8.43786646895282	8.55990117943846	9.07945492770397	8.52908200309586	8.66045612700128	8.44857654098723	8.50260214149095	8.25567250225408
+"CCDC140"	3.87611068632861	4.02974477870581	4.00819696651732	4.20928872500681	4.02462404641901	4.13465665920207	4.33061966793345	4.06239889745532	4.20949587144758	3.84947856675439	3.865467681039	3.89505691256127	3.97568718112818	4.29582697461689	4.131211213981	4.06239889745532	3.91688402532281	3.84054160309622	4.09164532731486	4.31173424105853	4.06842148200727
+"CCDC141"	3.19936846779739	3.1241326539415	3.24662148541307	3.10330973747088	3.12762163663058	3.28926741337506	3.08523486995499	3.14684364906738	3.13750984135195	3.20858458481562	4.01930163129295	3.22352682238597	3.22352682238597	3.24671526179529	3.25639053872747	3.44969909174509	3.24282488407093	3.21435438533471	3.22352682238597	3.13645256648828	3.33551986315241
+"CCDC142"	6.22436321691284	6.02923613283479	5.92602166978037	5.87354814107887	5.55890411844152	5.45113462896815	6.59219254372013	5.83641912538866	5.76919193756168	5.71676143553654	6.36695335926106	5.70884798514495	6.38744911779267	6.1675520960359	6.10542329037732	5.71911967419346	5.71490668025663	5.80079966302196	6.19714318545898	5.89937959054926	5.80993347388663
+"CCDC144A"	3.36491703152822	3.61630412171928	3.5597804013273	3.77400911188996	3.30836677292992	3.54127067137852	3.70915963296165	3.6866726071744	3.60206204726602	3.64261615735033	3.63934558496975	3.80314178053444	4.04881083550818	3.55575407571161	3.82521202621118	3.48627288402854	3.71211981852424	3.40307160480655	3.81662291887792	3.60231774615743	3.63934558496975
+"CCDC146"	6.666844106408	6.31421987563526	5.93230144738718	6.03837270463874	6.23797248664535	6.27589885467423	6.03995388763339	6.20693371834753	6.21042940927042	6.03807801606098	6.62249009445852	6.03155103798606	6.11711296842845	6.21557568922385	5.98195862516118	6.05902932678944	6.09237018467119	6.26850751537587	6.19079935840763	6.0970292377494	6.16338232955149
+"CCDC148"	4.75202572224904	4.39571260875347	4.68864888097979	4.77276940070313	4.66033657594134	4.22418977974962	3.95739350214207	4.19764606992881	4.02567314938383	4.38295270916174	4.50643129871752	4.4566692422638	4.05376556950107	4.64813371436524	4.38295270916174	4.6216676014432	3.96779852709763	4.33050246805492	4.08583791360896	4.33773466349981	4.35560084324159
+"CCDC148-AS1"	3.64134241688732	3.70836695454754	3.63549392818458	3.70367471767928	3.83169977091827	3.76440129873028	3.9163230322416	3.61033579605717	3.75915275940894	3.77993931008999	3.74235217017352	3.70349380529215	3.91420222403735	3.78480624515696	3.77216330589925	3.5422011045817	3.73474390702491	3.73474390702491	3.72812792794161	3.38166967488004	3.67884275111033
+"CCDC149"	7.36112320243609	7.65560725803466	7.70169281258375	7.68374208378436	8.22077639784374	7.34173025363485	6.92346971653912	7.24000043415657	7.77283454405724	7.93907205065467	7.16281255123941	7.65881358396281	7.87626213403568	7.3229492764514	7.6964536219678	7.28195830154154	7.98546734919439	7.64376580091146	7.6286235969954	7.74855338068211	7.76247456871082
+"CCDC15"	3.9526432462815	3.63380446419854	3.62402100628031	3.47517222819414	3.54327417988615	3.76202417289235	3.37827814997758	3.22562449831168	3.3419984659295	3.12509647954755	4.46721430472052	3.53605283732856	3.25741896224426	3.24798625812363	3.29892021688899	4.05803040197194	3.63380446419854	3.57360773930528	3.49328159830331	3.31761353230942	3.23540389537794
+"CCDC150"	3.38761551940315	3.83505657818814	3.68577227997442	3.6793756970575	3.73876807282063	3.74324637854266	3.82501572475503	3.83353097716374	3.81331273675227	3.73938947607736	4.20954984641821	3.69228069199471	3.58847132453275	3.63734615191803	3.52365227058603	3.89358571911225	3.44814745967631	4.09584870147848	3.57145106808419	3.48871827180477	3.89915719960464
+"CCDC152"	9.69637120285366	9.93398153024387	9.30892283926904	10.076974570186	8.91504194134978	9.47182236630142	10.0486217189903	9.86981611224143	9.85887858359908	9.24801569695047	10.0649769308772	9.6128270732734	10.3072324412146	10.0953686273988	10.2119235715322	9.50227668866212	9.66375258721772	8.87866338994752	9.88439433631698	9.12293227835802	9.46619395598974
+"CCDC153"	4.81559224031385	5.00796124803122	5.0071791422754	4.91512066266508	4.77513580270632	4.97388980435134	4.8938553026938	4.89058957716535	5.11364348095532	4.92674770940402	5.11985041174679	4.92779182167755	4.91512066266508	5.21690540132224	4.83851391392687	4.87875209190659	4.91980362218837	4.84463792362293	4.86392772525742	4.88247528398613	4.92520961865797
+"CCDC157"	6.09858269660999	6.26299351437755	6.20088887475256	6.23304176485184	6.13713086403197	6.21349197280806	6.09059904797178	5.79803683850558	6.14378047725673	6.20085658726434	6.10673532640799	6.06717467604204	6.28816126081896	6.32960169250173	6.20432639987463	5.73781639002402	5.95876606593989	5.7409966801492	6.27004032890446	6.25102084843995	5.84324430367431
+"CCDC158"	4.19194918770471	4.23572022998788	4.23572022998788	3.84019105574909	4.35137532408041	4.1560352615445	4.03370460317926	4.29708790125237	4.26550251998095	4.34918907269625	3.55633457606709	4.55330171424475	4.36304157343864	4.18234803252526	4.4574704669875	4.3191298178567	4.1425749816142	4.05276288781127	4.21239743031632	4.46372234510236	4.21919893928006
+"CCDC159"	7.63554767736613	7.35913047646894	7.63408172775708	7.34878228884311	7.0869514633261	7.36480423563494	7.29308466416248	7.29308466416248	7.07492038249473	7.16712981259535	7.68394654338065	7.22887751667864	7.28730405455168	7.5277844266656	7.21004780628206	7.798576324397	7.17636893246324	7.96975619448482	7.25656962446307	7.25609788588084	7.25600590762354
+"CCDC160"	5.16656071019315	4.05105250163919	3.77168778331023	4.25405453294096	3.94021048046853	3.93475250260019	4.20291384464216	4.14615394608294	4.62688427963459	4.34057268666813	4.39168339608495	4.16019881329979	4.62359220243195	4.32062439518274	4.32062439518274	4.1325331459885	3.85433060600692	4.20291384464216	4.2710027840469	4.18005460887457	3.75042730141928
+"CCDC162P"	3.8346637853439	4.2826489544858	4.06090947686516	4.03678985079203	3.90139196383722	4.15208892540975	4.08022174867621	4.08022174867621	4.11791784745174	4.08022174867621	3.87941204615624	4.1008936082779	4.1317824868588	4.21269798052098	4.06421959175041	4.1349935601633	4.16304917279185	3.89417909819417	4.08022174867621	3.88636098656968	4.14775122396032
+"CCDC163"	7.47717206428622	7.05350283194087	6.63713428556361	6.7244143982246	6.55329091930149	6.32514497613293	6.48210559210802	7.02981487324759	6.91872975959932	6.50033575354449	8.49683066070831	7.11120772206932	6.61282522176269	6.92911942099716	6.69016983985007	7.53809780178152	6.55802179223105	7.26595139368947	6.6142875310386	6.92497338185015	6.75975240070722
+"CCDC167"	7.73583113151458	7.18301526322253	7.54891953275965	7.36167566067163	7.45936312196644	7.29919706964192	7.72752936041046	7.40984688685213	7.24912168921811	7.33845254101323	7.54105177796205	7.35770127444223	7.19305371014114	7.0734055714476	7.38360638082226	7.65839711339225	7.18733813328568	7.51453907779326	7.52247381364647	7.56299101351624	7.22106676316316
+"CCDC168"	3.83353097716374	3.65405941815302	3.62432425044823	3.67849117445367	3.88650915684446	3.70411724429948	3.84289075815109	3.75823017823766	4.16089863856463	3.59591451802678	3.50500542385854	3.6568072821666	3.74644147352485	3.88443596007114	3.90122543722971	3.75823017823766	4.0128352804378	3.54207159005185	3.77840740537392	3.75823017823766	3.6442653796914
+"CCDC169"	3.92932805984434	4.13352524633165	4.0517033014474	4.2493817728559	3.78638117795183	4.17708308234928	4.0372105797465	3.88379298437527	4.52921786598966	3.98494919626702	4.20072494837811	4.0517033014474	3.94831691681937	4.27959071195416	4.12120415203421	4.0517033014474	4.07040120090752	3.55715967616788	4.0517033014474	3.94279360341511	4.38661740626023
+"CCDC17"	5.37665004373597	5.25461491599147	5.17125215829078	5.34026431930624	5.4205152597258	5.97652212446285	5.872503871428	5.76701436049113	5.48798793093695	5.45247737914898	5.19311654700319	5.40467541711098	5.45247737914898	5.74869110827459	5.41669431022761	5.22773084497022	5.47792177275603	5.69930223858469	5.37067174642363	5.12809718090655	5.45801712459495
+"CCDC170"	5.80282911480355	5.25184576520114	5.05056381601364	5.10987774282196	5.07826138008738	4.77147132865906	5.05815948348482	5.31620786796344	5.25065168276732	5.12623541595353	6.05772480159184	5.40003997407541	5.01978874587624	5.19904150419641	5.25394936356308	5.73814843426282	5.34043726974377	4.92974682603052	5.18480157684903	5.18877855535396	5.3973348872181
+"CCDC171"	3.66323103968245	3.65433968364058	3.51233832171128	3.45789876488795	3.55292078057295	4.24552225422149	3.61926387200807	3.55292078057295	3.38100657413131	3.73734174191905	3.31885626596117	3.61015411170875	3.55292078057295	3.5075428907243	3.4151566261951	3.85501369339344	3.62997502305908	3.5940220400786	3.53642379113516	3.59492744382663	3.49454288338036
+"CCDC172"	4.96564886980043	5.09502193243598	4.9622343687712	5.11571070133823	5.11571070133823	5.27280813868295	4.97407868394963	5.1513912985369	5.23314267246357	5.09122390903668	4.96638680912334	5.00478752730997	5.24636297514828	5.16199235042196	5.23045797676844	4.90913524340698	5.14114205369475	4.99606381140474	5.0124894386423	5.24286023766634	5.45953490060714
+"CCDC174"	6.82301808699782	6.62677453831624	6.58171828530838	6.3881088391466	6.42909851262201	6.34693735917261	6.40630347131255	6.43432279866151	6.36489060509659	6.69361067041818	6.84914648052151	6.61344306019476	6.32831925511327	6.54833288143824	5.98195862516118	7.14644255081699	6.31044416098551	6.9392513030488	6.64706965773768	6.70535306704755	6.70471927678543
+"CCDC177"	6.38534720995372	6.95460982032252	7.27502514069586	6.7553589048523	7.53735836170773	6.68458396877338	6.24450828617168	6.63181373304718	7.25499914363258	6.68525168888194	6.61189717060163	7.31742126085444	7.17807361292493	7.00435814846684	7.30506117086656	6.59350589888413	6.99868619165314	6.87243657711558	6.86543849472862	6.89674447382144	6.83848675483467
+"CCDC178"	4.57843718903181	5.06306325547356	5.18764297396448	5.26010377677782	5.30633930150216	5.072344951594	4.85938994233329	4.8812659248345	5.10258736882472	4.81483888673427	4.89748883817994	5.12057429431316	5.03901377128251	4.83041116245054	5.45247562511743	5.25152865861824	5.06919787389925	4.53626675658937	5.03901377128251	4.73479761463513	5.18761314539453
+"CCDC18"	4.44854941841525	4.12797165181328	3.91474725487801	4.03824633826432	4.21941956992505	4.04549192161874	3.85166838490732	4.03665854739166	4.04129360594082	4.12590318330011	4.12581641372412	3.86368242560191	4.07045837183025	4.12922496625806	4.2165747159888	4.1181207891348	4.14366931708058	4.01326392292079	3.97375959592904	3.9660072090085	4.30291884282523
+"CCDC18-AS1"	9.39618630191192	9.92162187809108	10.1134110684693	9.37588018363525	9.43943750099879	9.46499574814992	8.94914675589868	9.31166944977977	8.64472446700772	8.63785455454754	9.9809261055815	9.57435246640867	8.81917701106601	9.52909651881409	8.53521269148107	10.2085390472739	9.50572919165594	9.48598165655244	9.62295225071216	9.24771884478947	9.01214017069203
+"CCDC181"	7.444703648654	7.48453340491535	8.47931365066341	7.79135779181902	8.32047404297215	8.37651374541058	7.46731707533511	7.91923225629183	8.31872519431377	7.70545782891099	7.33892168467876	7.88988796408543	8.18707047783422	8.09989978477933	8.31588198290078	6.94625850627794	7.53777492032909	7.49113861154599	7.96019956599679	7.98583986205285	7.43193797297785
+"CCDC182"	6.60900823998973	6.61601886592221	6.75717239509064	6.5900548257363	6.57386795916103	6.81522971660705	6.64382412791964	6.42194573464825	6.68593646779357	6.67265839815581	6.50400482506083	6.64668409332254	6.76647986860697	6.74872212046734	6.72144434023557	6.61100426373347	6.5900548257363	6.53693641709398	6.62334369013625	6.71102982121166	6.59183699548023
+"CCDC184"	7.69559528245134	8.26443461708752	9.28751259623161	8.12878082090833	8.95331855732877	7.74680209218361	7.30190804816582	7.85091135958818	8.11646507012075	8.2508913125367	7.57379337268052	8.51544081321843	8.46369484946547	7.94777189851358	7.94935464897155	8.17629027100181	8.59269917060442	8.06118245182671	7.93219798309788	9.51535205593956	8.61950604261832
+"CCDC185"	4.36906891065252	4.19591053252852	4.65005085859997	4.25941086614005	4.24215935291978	4.45503733336714	5.12746650795198	4.20707450654385	4.43526676571253	4.45503733336714	4.15076773422692	4.49106565136764	4.46312960797708	4.62254580103232	4.83851391392687	4.5002080004287	4.57866382244213	4.42383535462234	4.60098916651245	4.21581737486524	4.70789927677912
+"CCDC186"	6.88686085642491	6.97150384901566	7.68420708268809	7.34348734939107	8.12380105170226	7.42631605673944	6.02558629857154	7.65616469862257	7.40650283894406	8.03389290867776	7.38235915660536	8.38887408054304	7.49859197572118	7.57095692324561	7.24073611898215	6.78441000535423	7.34898947727244	7.43285509630101	7.44545189612596	7.48233017435707	7.18333006374656
+"CCDC187"	5.13449612325385	5.55237838092353	5.74908519494476	5.84961909573392	5.37374158101716	6.08188079267178	6.43084737069994	5.46918277854961	5.61912350724073	5.52769133128997	5.6364911817863	5.92296800626134	6.1330868678089	6.06685255199073	5.90568623374258	5.5572626104048	5.67235230226189	5.25535085793648	5.85679355052567	5.44567793623436	5.91963449880096
+"CCDC190"	3.42530282605043	3.62539630987413	3.47386250511951	3.10413553274025	3.31880040475474	3.23132007527665	3.46935806691929	3.34272262972859	3.2274757535026	3.275076717397	3.62726866114993	3.34252550612564	3.37298909986908	3.52475419379803	3.45373699606242	3.39810421114475	3.23093173774325	2.96473047507282	3.10930923590629	3.36859789186484	3.34252550612564
+"CCDC191"	7.1841157493919	7.18937293096299	6.9842993814977	6.14705590795518	6.84314864522358	6.21377591364228	6.12830272370123	6.4107750912058	6.41505267942556	6.29769561212744	7.04627557116209	6.44296055935983	5.99379377245929	6.54146808189856	6.17228382320945	6.74772352665368	6.17594817081612	6.83366336194013	6.04822715600507	6.24227635958617	6.21224132452466
+"CCDC196"	2.85124053788357	2.88747689964312	3.11380275112367	2.81727434326024	3.08387096078253	3.41616604422901	2.98586326033229	2.89525988555606	2.95368376259001	2.98586326033229	2.94906970106365	2.98586326033229	3.03659220619807	2.96287236711934	2.93742403776526	2.93418890718915	3.15132839120907	3.20733916185816	2.98920501294193	2.91021639557583	2.96287236711934
+"CCDC198"	3.67471078298867	3.4194961329192	3.372036840146	3.53836422430233	3.54486918044426	3.66276535474223	3.93231743951808	3.52119016803511	3.50200944109343	3.80842278648393	3.54872608290956	3.68987527332856	3.5768866107279	3.34634243302628	3.69186575702376	3.28808419673255	3.8737554437858	3.26267207146602	3.54486918044426	3.50786038084446	3.49064273852491
+"CCDC22"	6.75569979916443	6.20639978030924	6.27918494416956	6.02722579277658	6.4369168837464	6.01127309323909	6.07594708324896	6.19763010076925	5.62385751679541	6.38807397010709	6.47451517959271	6.26762857409816	5.7744690682821	5.97122509589126	5.44810228111389	6.63360313764443	5.97665225517048	6.95731765289436	6.02333100848434	6.74140205786216	6.14885542138481
+"CCDC24"	7.44492289631579	7.27028871824289	7.53100288398473	7.06886103103393	7.30036786508265	7.06370680497552	6.99804688589892	7.06610929386964	6.98498381887985	7.13451873700389	7.03610998575172	7.1666108516514	7.07371799014075	7.14522099215324	6.90390430501976	6.98276634268481	7.03297553847853	6.87775719104851	7.09881614929599	7.37639825357099	7.22506873796383
+"CCDC25"	7.75904525255636	7.91406571608329	8.36200935600342	7.8930706463131	8.38551546712461	8.32526453824999	7.76170940475996	7.68082714468266	8.46227008388574	8.73724326957795	7.6788058870816	8.45240306649992	8.28341083968364	8.03559895349116	8.54098645424852	7.86596550142934	8.15799358450125	8.24702252572252	8.08248818188576	8.67616713508743	8.44377787971028
+"CCDC27"	4.98780336127539	5.20023477909915	5.32215397472311	5.20023477909915	5.23897278654052	5.33358936572871	5.43604477956549	5.08340932533166	5.3463591964876	5.26895790743732	5.08961543800521	5.2759681039302	5.30300175386772	5.43300576023898	5.42455314643527	5.25255474757163	5.27133802002703	5.20023477909915	5.46088977981938	4.88726656874205	5.28660753806238
+"CCDC28A"	8.89771992505895	9.32957175083615	9.57872462844188	9.30951486466861	9.55268562747264	8.71919760925906	8.86002241943182	9.61954482332898	9.63050647768807	9.58465626548245	9.37926198127041	9.6513130632063	9.05954820848234	8.84129360356062	9.49565347003718	9.231514367508	9.62765678254407	9.28249830555536	9.59212768825889	9.39608754482428	9.47281442654345
+"CCDC28A-AS1"	3.63258731086887	3.47050221007582	3.87906345691391	3.45325580898042	3.6355661624404	3.74080850475103	3.6930156567281	3.43013493220373	3.42404880807088	3.37726980015922	3.38352966285597	3.4852840354242	3.42831539034866	3.3664237997158	3.51943634186783	3.62589837570552	3.47199638332655	3.55239207116396	3.49505014242495	3.8276001256309	3.4952016621249
+"CCDC28B"	6.80000723826694	6.84699006282785	7.23995282272783	7.05379840042126	6.80619982644793	7.10201429329241	7.48706144110472	6.83333994822258	7.22982380271714	7.11192047065082	6.97212460300072	7.06564228798902	7.1903848200366	7.14122476117004	7.08654037744906	6.66186429991235	6.93137159207821	7.0428988357604	7.19361998683487	7.13258580638486	6.91565470580506
+"CCDC3"	9.36294948077382	9.77395513528092	10.0160153362764	9.86542082576815	10.0049911785052	9.91241664232578	9.13319227422606	9.46803895904769	10.0676346482499	10.2115673256683	9.25262041733444	10.2440909028519	9.40899856386147	9.58900200496669	9.81687310591654	9.31296563014382	10.1436478073954	9.5213826840065	9.74808595511128	10.340227825671	10.1817804206126
+"CCDC30"	4.63290199592868	4.43997767611285	5.03477065391803	4.28101538068825	4.70288175027745	4.9411470939764	4.37684172551228	4.66784483447504	4.67805158946376	4.33740680784018	4.58991090260346	5.13856735399201	4.25786310529498	4.27811894339623	4.92181607844823	4.44217446218492	5.00183889737413	4.39391187714861	4.97072356509375	4.95345974126636	4.70812644204032
+"CCDC32"	5.90696717898019	6.44560522794821	6.65331380209156	6.4015365181624	6.35851860441165	5.61150232092122	6.08435672579659	6.03419139609067	6.61199328951794	5.86870155408762	5.94945360038865	5.37467566711594	5.73678916151767	5.73312265944239	6.55760306617614	6.39314346492123	6.14408141067518	6.38233616947497	5.41172012007073	6.45390590947573	5.92795237521854
+"CCDC34"	6.66169562882496	6.99620633690612	7.8103604211893	7.34502009929941	8.22050988825796	7.28886386930776	6.49590700805371	7.16036447953484	8.40985577707762	8.25539472221498	6.70023999677085	7.87240603592066	7.5027223889111	7.20654681914628	7.85851231041238	6.90779748336237	7.7329561438396	7.34510942413269	7.58574259259932	7.92422605021634	8.0596883917077
+"CCDC38"	3.93246878269685	3.90672963536748	4.19818030628423	3.77036795013319	4.13886897312587	4.34033215955474	4.338152128459	3.90229440861077	4.06743388071905	4.03871067430742	4.14156038882052	3.75009156102166	4.00975112883381	4.2124666584938	4.03979539245002	4.0654328108031	4.09512177213548	3.58954019800618	3.85655691638959	4.04607371637783	4.30820678891964
+"CCDC42"	4.41594003970087	4.51913405755383	4.55974308300449	4.7210932176676	4.56856163924116	4.61012381775678	4.63990020955293	4.47805334171704	4.56730953029749	4.65289234517786	4.46257059744693	4.59276798005317	4.58421630274532	4.59636679779703	4.42353995955698	4.48615339224392	4.55974308300449	4.29274587294107	4.55974308300449	4.55974308300449	4.69024199413576
+"CCDC43"	7.5443537571974	7.85593343243397	7.98425178935524	7.49649402940896	8.09096495852796	7.46728539645894	7.36216052383056	7.78794248692631	7.81929439723833	7.7651732099303	7.83038465496565	7.6340496866951	7.64630272644234	7.68536555530658	7.82823824115223	7.91478428694117	7.59255709909946	8.12491082471602	7.8022098383736	7.88501710698986	7.62267032872204
+"CCDC47"	9.28099123401785	9.29936896375578	8.67923835603912	9.02894931403154	9.14194345343895	8.90174835162455	8.84266899716025	9.21959409323142	9.02459702338158	9.36693606855058	9.53662305417983	9.2056336714975	9.05625394509481	8.87497259705059	8.73252107562731	9.75831885804832	9.10687464056959	9.35936163773264	9.0225227559414	9.12397352342294	9.23028744274618
+"CCDC50"	9.08219613364285	8.13616805295544	7.31852003650504	8.37547979676754	7.83140852495985	8.12534187248573	8.39695700114855	8.8401792880424	8.22632696230927	7.9003389675812	8.30357286107077	7.65553169504232	8.69814709799066	8.17993951765032	8.64678947266353	7.66645819718378	7.89775173474565	8.18866271963685	8.43230433074783	8.1554055786372	8.17993951765032
+"CCDC51"	7.7932113097726	7.67578454383467	7.7932113097726	7.83037321963267	8.13471703090562	7.88910908452139	7.62982960217617	7.57046256720426	7.93779512035476	7.96568441706441	7.60006342574194	7.77417022926448	7.8697312326444	7.7932113097726	7.96662387349933	7.69318775399278	7.64033185684535	7.67622115605267	7.51767757239191	7.94264773963192	7.84253845310715
+"CCDC54"	3.80973255431846	3.68145133445141	3.63063381804961	3.88100305169434	3.69193539250063	3.80005852962073	3.59450684589262	3.70079982696069	4.04622895386344	3.63505386125698	3.65176448193695	3.83264303686588	3.67314907686268	3.84746626312461	4.06336302108784	4.00784798513431	4.00967676648148	3.73285130705267	3.78073764422997	3.8276097118595	3.88798000469917
+"CCDC57"	6.02887345429062	6.6755328590184	6.69271658328689	6.69094056087932	6.38455763810451	6.3317494865463	6.33648702061052	6.2775742785139	6.8383806229948	6.36794530473124	6.29673864078072	6.32191151925973	6.68211223629836	6.78278868551871	6.55760306617614	6.11830033017899	6.43282517556661	6.11150172781057	6.59904553706794	6.04703250279145	6.21390441772696
+"CCDC59"	6.85898944284134	6.77154964794934	7.12078662570703	6.8453630187764	6.90256952175017	6.70575549729685	6.72612947093228	6.94312110924162	6.89234911756681	6.64064559132163	7.06011086484485	6.30854409635465	6.8562560614818	7.12503842217388	6.87096487861173	7.06185360826064	6.43397700062596	7.4376477395872	6.82404986772118	6.62299329320322	6.44052140366617
+"CCDC6"	7.43855795771289	7.05213369184687	6.6586572144399	7.32883665417741	7.52641858861869	6.45738174240442	6.69625851968302	7.6991232423871	7.66752642744261	7.87145871635446	7.09185030623695	7.40296268250291	7.13336014338747	6.79315259789958	7.72526684692266	7.20702333297271	7.64600394489617	7.16329191109421	7.26195741411252	7.58914347045605	8.09464356884511
+"CCDC60"	7.04554249628098	7.51719928936281	7.21367117863761	7.63706784745639	7.38756010069304	7.28643560114797	7.5659699727123	7.23046069749053	7.4293286820198	7.40745220839951	7.33693301742795	7.45118785902424	7.60838190495838	7.55069752687943	7.62439710349327	7.43431164083347	7.46095118723147	7.06527280174676	7.45643360265419	7.28076879408104	7.72500036399359
+"CCDC61"	5.13310744978443	5.15508407292631	5.49783107678661	5.15563742702486	5.09479003173988	5.50708288849983	5.43762071835217	5.15141047124441	5.14785645014479	4.98559181600181	5.14904580833861	5.3088189343543	5.13760030313896	5.30423475020817	4.79030298292236	5.41449772799128	4.83127435393984	5.93123808547193	5.37522940475035	5.15563742702486	4.73556395507704
+"CCDC62"	5.33913102220613	5.64271978988231	5.45417043908361	5.97389402097902	5.84669565153372	5.53860862849695	5.55385540986886	5.92198634308036	5.79824994018945	5.60168441611505	5.60090262246444	5.38995987125519	5.89089982779124	5.83248475931933	6.10686438632103	5.52370836583036	5.69050004291591	5.91536334384264	5.61825397380042	5.32753703599813	5.53147984400162
+"CCDC63"	5.36911591982899	5.46024175409173	5.70205432493791	5.8668976310647	5.5188519032113	5.87164747197668	6.24443397539332	5.79484862190047	5.92767789503477	5.91658586139444	5.77705854358766	5.93557091980357	6.00711003994081	6.01594545885936	5.89599703234858	5.51477601884433	5.84622846145686	5.18096295688588	5.98521560891974	5.55890411844152	5.8278196878059
+"CCDC65"	4.28309648973076	4.13795334554578	4.15208892540975	4.13069888658062	4.12415279437719	4.27321445573354	4.08162222126834	3.88994197047945	4.20392557820694	4.26636996033422	3.92254891636642	4.02614509392696	4.04077170941843	4.29262320615554	4.08760134636187	3.88077352201422	3.97468089206627	3.6431461718596	3.96624696507789	4.16715505972227	4.08760134636187
+"CCDC66"	3.83353097716374	4.26205607163521	4.00583462428132	3.81701822147908	4.00008284321664	3.74884700268527	3.62312778202269	3.81501853861387	4.28775993547802	3.73764107685626	3.87341747815686	4.89752990547	3.66283089721985	3.90882538535162	3.93802064011818	3.74647470567623	4.01628779224487	3.67772375610613	3.932473122765	3.82431531526479	3.65127704333509
+"CCDC68"	5.65524305785668	6.00671344798711	6.35139536098286	6.22903734222119	6.30759253200885	5.41261568808781	6.05705369344318	6.39453445514407	6.00827153053021	6.15674854730801	5.31675820400151	5.84139801058134	6.1506576404463	6.20370885689076	6.22749222641696	5.66660182112891	6.18824977034173	5.81376297395787	6.10885431005294	6.68458396877338	5.39036964112869
+"CCDC69"	6.73915306997188	5.67593138489352	5.37574520385298	6.31756456462557	6.14808362658196	6.36559293852152	6.51790348687259	6.09901853780443	6.36996465377099	6.45760574778435	5.91897719316457	5.9762510415686	7.17728614762346	6.83823225467229	6.79693306498896	5.20381707470848	6.26532317604595	5.90362857146736	6.27584391804054	6.30118657882764	6.55991555400781
+"CCDC7"	3.15166657759183	3.0434013775298	3.36585445062665	3.23948670818584	3.18214233531054	3.32117565255596	3.13369135553975	3.31497592523078	3.01091238461012	3.09597601792769	3.24901445069798	3.15628331406257	3.80831519611588	3.44182494029763	3.44182494029763	3.26267207146602	3.22822231700766	3.26811733248572	3.27525412242307	3.07870598469508	3.08824705572221
+"CCDC70"	4.41952204741671	4.25657030651925	4.41175672151263	4.58751125548348	4.37249689909142	4.44101265240958	4.58945807403548	4.37310923227253	4.49289881483255	4.46498726307419	4.26702929474138	4.5723366521587	4.891431597517	4.59697824142938	4.61729139971869	4.45368705276894	4.44926004418522	4.22106493380275	4.32226211116687	4.37608107770644	4.45557864554008
+"CCDC71L"	6.8010065326985	6.83417210797332	7.18053710390613	6.61141229349363	7.10463333785924	6.82508390376825	6.53373689605516	6.92041306968692	7.10788465948046	6.94413735895547	6.72387720459905	6.81705053973055	6.67319123207049	6.65277859363949	6.76966952159062	6.44254591624368	6.62595725327929	7.22337126532421	6.90051427148894	7.32624957569518	6.42535458186187
+"CCDC77"	5.02404997584172	5.27449256076815	5.24899519573083	4.89128910430296	5.11394728753719	5.73715070605808	4.62522191516216	5.43627657763535	5.08803884324328	5.35998217150387	5.35880697366861	5.18572128860119	4.95400715191953	5.44363579064593	5.15462179915673	5.45102273277271	5.18069784854212	5.38163911753504	5.49463789259219	5.21730321094464	5.47603620436773
+"CCDC78"	4.17321830143408	4.65665892712768	4.93959706286185	4.59258243298944	4.49081573287915	4.95943014296011	4.61057830378471	4.64032976682962	4.44851217526925	4.38771556666531	4.7939943459758	4.61043409737347	4.85912784836935	4.98198992022311	4.39469689188213	4.74739464187215	4.47126874601624	4.60322107615654	4.66414097053037	4.3013435506551	4.59852532678718
+"CCDC8"	5.98544668948464	5.46001768718015	5.40473746561429	5.64971688234982	5.03539453379613	4.95652675590381	5.84034091661801	5.58661970180258	5.40473746561429	5.40473746561429	5.8320069712277	5.63991211330805	5.27273274365823	5.15202747050448	4.98722667902407	5.56443252187638	5.36593257140417	5.11477727862638	5.56140544000769	5.52842148669755	5.29574457048292
+"CCDC80"	6.46227347584402	6.15519936204011	4.84788458296211	5.58002645706393	5.55997054407041	5.07858505162354	6.25634488660892	5.82247612122861	5.14499310634053	5.73586417311183	7.57243079523119	5.62786313420135	4.91275878496129	5.44228066402221	5.04346251846372	6.04568419061751	4.91708165502444	5.86247645832081	5.65916912985767	6.69772941325768	5.65740881769252
+"CCDC81"	5.82284174585456	4.93956363198741	4.92552944741018	5.25933259883504	4.90449688514935	5.39876551369047	5.41985686748961	5.33422036932074	5.10863171339967	4.9690705713112	5.46055360455085	5.22025635773318	5.29568590072497	5.14829678851468	5.23713471427573	5.35119507903405	5.12866893005678	4.7920447628547	5.03181822860012	5.14665437273651	5.07657268173048
+"CCDC82"	8.12503107146229	8.06904348054506	8.22300033288688	7.67616813724772	8.31443937334695	7.72149419181445	7.70490709285895	8.06619874234612	7.71945474372427	7.9093194280619	8.56135676959404	7.61519679796191	7.89357652576656	7.53957199305344	7.75886065314532	8.5281065554769	7.50460563607556	8.36988868799354	8.13712026558718	7.714103536022	8.1095042295873
+"CCDC83"	2.97592694330417	3.0573069189765	3.02387801174163	2.97592694330417	2.8914297486108	2.97429804818712	3.19563924515934	2.85488515933265	2.97592694330417	2.95416315012436	3.05251165105041	2.95212445370645	3.07301622326124	2.97592694330417	3.02471288538393	2.97592694330417	3.03931865411926	3.12518989499921	2.96842759332549	2.93815572379305	2.87809778012409
+"CCDC85A"	6.15109513077076	6.11759971090125	5.95605723963256	6.52141623116222	6.55261488601042	6.29556794746041	6.54901387097847	6.24138920825343	6.34693377833525	6.742119226686	6.31998589774536	6.68858566078218	6.62130676555675	6.56899232171272	6.22384098676586	6.04542186527299	6.6454162149526	5.88090888010447	6.22283822778957	6.39131652346042	6.61072431452676
+"CCDC85B"	9.35774353989981	9.52472738175729	10.3358315874055	9.67691143506602	10.1338268849983	10.1484730175174	9.8510268711843	9.54054597939927	9.96649219445651	10.0137257965676	9.14769447730098	9.69839114885338	9.88798103502772	9.7810110522917	9.96283902019041	9.38455049348084	9.38176216036956	9.65599377511695	9.62216513948701	10.1154598736891	10.0943411703796
+"CCDC85C"	7.77951651911547	7.80431126879828	8.36469865867383	8.08530534057812	7.99442269060542	7.5040146371431	8.24985453537973	7.92232910354016	8.32069771665015	8.0080216246718	8.10817997497826	7.63635320272185	8.07544864783673	8.20637708666236	8.06804286271405	7.75072700398414	7.9357268705024	8.01650952214262	7.88878048093814	8.21297851366393	7.71071736313002
+"CCDC86"	7.95700577803109	7.59387666419607	7.67859501099633	7.8791830856771	7.57864423617598	8.20678573800208	7.76064184366098	7.57288999501003	7.80311547502857	7.78279474080883	7.54542338767795	7.35559624240763	7.87896720162097	7.83529818123871	7.83627478989115	7.88657972824055	7.57749017089505	8.11577755671062	7.59729292039701	7.79542866281838	7.8652126915687
+"CCDC87"	5.78122446567918	6.04025359286355	5.87974272841236	6.1286969430694	6.01839984652521	6.220431188724	6.19033573675058	6.01317007972476	5.91354805529201	6.01301966363701	6.03941758520597	6.07770676531914	6.05081401133673	6.19840989508872	6.08302567942675	6.03941758520597	5.94023131963602	5.74008054230674	5.99418281130145	6.05911335515184	6.04315384626115
+"CCDC88A"	8.20496491061866	8.53426516083674	7.47695399948271	7.84613192006061	8.01667107811459	7.37667097724075	7.72807405276896	8.24581488524406	7.29603746580621	7.8733067504649	8.86068878814991	8.23383179346175	7.59424377435962	7.21268574145394	7.18048496168249	8.8554808302704	7.76371613025288	8.81120317391551	7.80247895888647	7.55134332205244	7.97331861644687
+"CCDC88B"	7.27092467355787	7.20462103602212	7.16689812557429	7.13766377095846	7.00541316115051	7.28999894589281	7.55134332205244	7.2210707769658	7.2210707769658	7.19432297579445	7.0301744802033	7.10441353279948	7.41956843259307	7.56419789405966	7.29071750525898	7.08434228017899	7.2875080290406	7.20608620511335	7.37480494893467	7.13792117795872	7.36058480679722
+"CCDC88C"	4.57742842370268	3.71663612124099	3.84054160309622	4.06139440942126	3.84746626312461	3.91664343486522	5.52837041057794	4.06239889745532	3.89750769692117	4.1219795906151	3.6675836208198	3.79150656386814	4.39893437511516	4.01615771219074	4.17420276172499	4.00988557091582	3.6807727184593	4.08022174867621	4.03771313355036	4.22913293014503	3.78088788558433
+"CCDC89"	2.89823623128049	2.92727060070918	2.87892395946944	2.74348933033488	2.89655366264609	2.74531811168205	2.85088232219166	2.79174597958972	2.86355228975967	2.89373831925387	3.04500665878908	2.97832988286557	2.98366249601045	3.10271875687885	2.84280590065714	2.89823623128049	2.88792008456986	2.96745485235593	2.95290448888791	2.99914961529505	2.736197907952
+"CCDC9"	7.48174478043482	7.62090742986063	7.66661382197021	7.82520042924868	7.5587270719557	7.8413889057317	8.04421517165066	7.69260884817591	7.81716877744452	7.72870004059155	7.53212214729346	7.74519368337983	7.77552837017098	7.90179493900969	7.83003614874998	7.61265034176549	7.72179202532697	7.27068768124528	7.7577881986126	7.72179202532697	7.75397390191338
+"CCDC90B"	8.84927929747512	8.78665677833362	8.61930214737061	8.64314385216628	8.431155593352	8.35155419147681	8.1608356505722	8.54680229330121	8.29535827769054	8.52998215469774	9.12946726976825	8.46529982986166	8.51610782743484	8.36197038075518	8.70543430323769	9.59904068149676	8.30566321139869	9.11515034787061	8.79131538572913	8.59009360451015	8.55126103772752
+"CCDC91"	8.03785804785593	7.70748764779299	7.77257688696993	7.4493535604496	8.26880903003386	6.93811125598975	7.32514438903615	7.69900336501994	7.82852542454414	7.80832175068018	7.74580214513276	7.57968562726177	7.68618391906572	7.10543179419009	7.96642142583209	7.81844003953848	7.76024204993139	8.07275806348478	7.69868259716973	7.84097402225316	7.93253170480128
+"CCDC92B"	7.6910137356441	7.98623483739554	8.04956077682913	7.98384688481045	7.97018671024074	8.39553547609635	8.72896691280234	7.97131626145845	8.23406254808604	7.85678945643329	7.64063700864633	8.02412658826312	8.18352160551504	8.28719092435466	7.92345607279305	7.63302941698411	7.99088152599298	7.58138401988499	7.98276888010221	7.99088152599298	8.07015384011752
+"CCDC93"	6.7311159242573	6.13801590091795	6.02331062152604	5.65446314467195	5.93826773593562	5.73715070605808	6.15416528599076	6.17782234981889	5.51511271392043	5.85889897972165	6.11401653665701	6.03941758520597	5.63542682007071	5.96738822042823	5.53701725438539	6.17725549750609	5.86539162053722	5.93677191233105	5.93677191233105	6.00501367264993	5.90353357447471
+"CCDC96"	6.12852687335728	6.20908768793979	6.17388351644803	5.83429564770183	6.56552026425229	5.82145580308766	5.80704814905133	5.65859722592425	6.08476127947344	6.00284180922236	5.87481292307544	6.05339190729382	5.72804428494885	5.69966650863249	6.02482814999731	5.57321386757678	5.76798852547338	5.78151152339925	5.83113301850606	6.21150055472965	6.02715931847578
+"CCDC97"	7.73778041932145	7.50114385916051	7.34982113149738	7.27811712578091	7.48075246651976	7.35631070374772	7.35232165571562	7.30971045870576	7.13081736787554	7.35276986971797	7.55088239597692	7.16958931298811	7.22025116644861	7.57174937156047	7.19664326066799	7.93886731930373	6.81882337009209	7.65312080208288	7.02949927806165	7.51161277972883	7.06317230265673
+"CCER1"	4.97516996945621	4.87582069339765	5.13507801872771	5.1108530666615	4.71864201798874	5.13336160296414	5.26265897708434	4.90525327620116	5.15122361938676	5.00723851787483	4.84553580650735	5.02367192028774	5.39576317200021	5.36371450500647	5.1110691228741	5.41320104110045	5.18640257417452	4.86787663311833	5.15751107465032	5.08203635128508	5.1108530666615
+"CCIN"	5.81422591069176	5.73308715115973	5.80326602731592	5.74956226691615	5.75568938167385	6.00290874486638	6.44372915223499	5.88206280832851	5.83690470971166	5.8483348327383	5.6626271082284	5.8046063198732	5.92533955988392	6.2561555248643	5.7344464378472	5.56458709019212	5.8180149433337	5.5941733389914	5.77577931643983	5.90034850481594	5.77532624166292
+"CCK"	8.12906915946471	10.1704692754829	10.8701911451661	10.272747988408	11.2352930782688	9.47391139408323	8.60742622888632	9.69483812193358	10.8389400641886	11.3145539324446	8.9988459784921	10.8201151608931	10.336018376369	9.49615267401855	10.6256649701635	10.1077037074448	10.6181459194138	10.3687027673449	10.3906361845446	11.0655886489799	11.2901701353907
+"CCKAR"	5.39892754370658	5.26794275745621	5.37928804397152	5.90674614488368	5.2127801499373	5.64372325546358	5.75424478319902	5.30414423973762	5.28215326763334	5.46803817974491	5.10832873164611	5.53309508982298	5.74047118844858	5.79549975236785	5.359389523454	5.18497408027562	5.3755562817773	5.06268890952225	5.32707446695389	5.34344950197691	5.39476183380779
+"CCKBR"	6.5277547604936	7.60815731855483	8.50392691988919	7.37437317302382	8.32172660638183	7.23344735994967	6.99781840582652	6.96818344623349	7.44462638756502	7.64647175326243	6.84843299635004	7.59632587203266	7.43366862395689	6.83898083849867	7.11497493965923	7.35269890933775	7.10460047299542	7.40365338847462	7.06294601068567	8.55619803727361	7.75511657656241
+"CCL1"	4.90759209538121	5.21413221016721	5.22416547734488	5.33543779187708	4.91367035079143	5.42608444399552	5.67282403416373	5.33610978267998	5.37730997405953	5.52709528988894	4.945213315421	5.20258138021483	5.34380272535675	5.36738488733499	5.5128953120891	5.09373920599277	5.19552964195949	4.99169548668545	5.12666911651386	5.08743280739842	4.95943014296011
+"CCL11"	4.73447052100919	4.90483254763129	4.87732171588259	4.9271870861316	5.23378094128371	4.85135975071859	4.97996265113183	4.79141634996803	4.85135975071859	5.08220730433611	4.74083861369647	4.68403619792667	4.85135975071859	5.00072887072989	4.74139449535103	4.74083861369647	5.09184959357913	4.4757952075837	4.48855896300427	4.9271870861316	4.77255764095122
+"CCL13"	5.00085833622707	5.00085833622707	5.09253637675932	5.01896917237071	5.06364806820081	5.0699627717009	5.37212364443086	4.88917761910101	4.67569487082649	5.00085833622707	4.88555596598131	4.89338852697806	5.2087161914268	5.50921099266096	4.95771342590708	4.99174192450328	4.99169548668545	4.89267771290887	4.97651304071288	5.03708428929715	5.00085833622707
+"CCL17"	6.57778035233234	6.2070894648141	6.44726699225117	6.43464383322176	6.25289552501699	6.60988287259735	6.60128545292571	6.44487345300094	6.44726699225117	6.29250836551242	6.34962297809838	6.73575969806026	6.60777308838608	6.61911145129008	6.51527446718212	6.27284723377897	6.39091630517879	5.87136648518962	6.51353875517221	6.29479912680918	6.48379761017687
+"CCL19"	4.59542268268431	4.55994995125067	4.41470335440161	4.54801627547326	4.45077308135401	4.08414881877228	4.33985942939338	4.54200861942539	4.1846650512695	4.4123049539143	4.5447670347795	4.34240690722525	4.56979302612152	4.85062424268307	4.31244145716115	4.61284354163675	4.45930440232304	4.4023585733642	4.76547706454726	4.35620054792676	4.64311441675707
+"CCL2"	5.72703646275403	6.22943807950642	5.52380319914737	6.28397433566724	6.19136888006031	7.9822580449311	5.97909820417571	9.09516194802875	6.1560069384625	6.61102353223618	8.17865077187212	7.84881023408154	8.51102377118637	6.54852429598609	7.59452878350597	6.07695120736952	6.8631860822838	6.17408807796153	6.00739749249068	6.80190290366883	8.06641482237649
+"CCL20"	4.55769411656203	4.65876251558424	4.75031216063853	4.80751771243396	4.62296923916443	4.5749889428323	4.87598852855677	4.77790859262134	4.7347720138958	4.59911654679744	4.48303430677269	4.57512919121534	4.65552327974211	4.63867951511155	4.43840316502267	4.56448356476382	4.65552327974211	4.48234004575107	4.85124010571992	4.96005813356581	4.51725308951726
+"CCL21"	5.79628879366096	5.88223370962459	6.04566898624723	6.20712124295405	5.92089005308978	6.27598625548815	6.35246595228468	6.02717610776587	6.09909877101585	6.09694449148664	5.76337351329858	6.17925798131301	6.03838615556031	6.16912695767052	6.18851722738261	5.63308668072151	6.02062142142383	5.74828229122798	6.24624496249475	5.80081985670892	6.04566898624723
+"CCL22"	6.65385205217373	6.84666381956556	6.75441497708122	6.95539047691319	6.63983060006199	7.13055569944979	7.20414301724427	6.88227317418486	7.0348637433368	6.91727169731884	6.67798113693064	7.08975796574247	6.97576480771766	7.00975514867465	6.91727169731884	6.81313068948577	7.04387468415976	6.61409876635346	7.01945052476858	6.83637384302823	7.02119629411029
+"CCL24"	6.14785211527451	5.9325662785676	6.14785211527451	6.3517888375068	5.99815720626417	6.06341076280817	6.55242360220205	6.04283366061612	6.14785211527451	6.15261437655014	5.98454064978481	6.1522772718206	6.4184544595393	6.28866137929915	6.07879631400246	6.07670224659426	6.14594874339524	6.25885901300784	6.14423969417271	5.91423351962887	6.14785211527451
+"CCL26"	4.57183341338951	4.77916290463294	4.70581789734897	4.83253003256814	4.74236934536429	4.7774062611667	4.95158774520534	4.60557217165806	4.74236934536429	4.66192404280922	4.51412586960815	4.76713232308707	4.81141966545573	4.69321275515448	4.63516765415057	4.89536124827599	4.68159294528276	4.68540325153934	4.66732814417484	4.83253003256814	4.68096169584146
+"CCL28"	3.89313449918039	4.346421244453	4.87283100638405	4.16870646498264	4.40309428109842	4.10635014462906	3.60831298234327	3.9489227766467	4.15261721614946	4.54114033661086	4.13952903425713	4.76764009535909	3.78337558181713	3.81317551605307	3.95274202471866	4.13991031911606	4.34682260941026	4.08473497481104	4.16910210131818	4.41080003799381	4.04424001808881
+"CCL7"	4.05084399533646	4.01274348436549	4.05894620496788	4.38868458282386	4.00609700292596	4.24713217276017	4.37809175390868	3.97309043801736	4.38723135764223	4.15721910056103	4.20775286890597	4.28158518979114	4.23094534419586	4.44917418864752	4.52115913552145	4.03215610083949	4.33990771011584	3.91706086459654	4.27565174915256	4.38294496313029	4.18344745755461
+"CCL8"	3.25309811826045	3.58686582477597	3.45937259870093	3.50310234788329	3.48436027481475	3.37977603920866	3.40737051636681	3.39735394598	3.5641475247996	3.60075666199873	3.46924752939726	3.47298025610708	3.46159470456477	3.48401303533419	3.51518364454585	3.3564446659926	3.47298025610708	3.55389782330285	3.50785820880892	3.71755350958223	3.55893214308991
+"CCM2"	8.69251229385661	8.77342802050483	9.27451746270109	9.03330873049195	9.16012201539288	9.49917611685733	9.01824983887505	8.79733993581181	9.43951653817597	9.24204725930533	8.5080544387584	9.11673115864121	9.2485068755946	9.09558856754222	9.32262973559536	8.58748794736235	9.11673115864121	8.96123945027106	9.19085360810629	9.19976579496845	9.21476752812647
+"CCM2L"	8.14982684536298	6.8663525918595	6.89881539360491	6.61383780593687	6.93060373885796	7.60533238700748	7.14028971992954	6.63966925540726	6.53393099767259	6.58534159095915	6.47549629324608	6.20447335049094	6.80405717718352	7.49304662138133	6.17684034845801	6.50784963267923	6.55705293955393	6.78849812506836	6.02021467948524	6.86603324468592	6.20258716898631
+"CCN1"	7.06443173648588	8.30189197910966	6.19542676877146	7.0428988357604	6.69092235811051	7.08185205956333	6.36229661341218	9.55142927577171	6.50715750186364	7.50193409308164	7.13725786327651	8.18344262005624	6.67259777137045	6.38175328692918	6.2744890981168	7.08185205956333	7.26650078141495	7.15561803892206	6.82045170206567	7.33849260556094	8.90773608469588
+"CCN2"	8.77458303491625	7.33464250003804	6.38589961777211	6.13459299692994	6.67862781097305	9.43158552197323	6.42073963315987	7.68193844662797	5.81171219634151	8.94174403630587	7.20299994955822	7.39806829082561	8.14820494571151	8.23294940763971	6.51825683913092	6.44167359905374	6.82716301579239	7.84656755821809	6.6398192824381	8.39856958523965	9.35378524337968
+"CCN3"	7.37219280408716	7.04996159332971	7.74707169013142	7.41141230784754	7.52636501933478	7.04224132709829	6.34939468257732	6.88363426848986	7.31669532971461	7.95071940704447	6.63456377263557	6.86754833059888	7.59147527396264	6.77040285654205	7.61766333764213	6.56667530873973	7.23618664625759	7.23618664625759	7.23982737143772	9.22839718868034	7.30974801302447
+"CCN4"	4.12101030836624	3.66460139364954	3.63368596124449	3.52497609119476	3.63472739209048	4.87921429328727	3.70777006063115	3.56956157868313	3.63598112556998	4.34057268666813	3.16046292550611	3.6414020459854	3.58657035912302	4.39566330981089	3.47754975757322	3.53980722916266	3.83594465138992	3.70777006063115	3.53095049115225	5.22231602914185	3.81598478935284
+"CCN5"	5.56741479978353	6.07447664570792	5.56223665879547	5.71656556366923	5.65668957837595	5.80138662310879	5.95649574134411	5.92491866772236	5.68014428819706	5.71656556366923	5.9346143283006	5.8474796678333	5.68252365059641	5.52718930992258	5.55236425971073	6.10056967290096	5.71656556366923	5.72406826390389	5.95727758013971	5.71656556366923	5.68904069836665
+"CCN6"	3.72776923439102	3.57065159798244	3.4229228661884	3.8008211603701	4.05074325601043	3.47298025610708	3.91977967638055	3.64323968436645	3.65653059714466	3.53083576306766	3.62242271202253	3.57114627608535	3.85712146704934	3.76042548558289	3.65653059714466	3.52646505958781	3.64214769602344	3.5940220400786	3.60976268847621	3.76947683196093	3.67927207248102
+"CCNA1"	5.28267007034256	6.80877026763033	7.08394493327759	6.55678457419811	7.20447663834794	6.4191613175982	5.49139087589865	6.46964488619953	6.64491577533828	6.80596879330586	5.6410536811409	6.98981771575185	6.31383152180222	5.76215031768314	6.68148443354812	5.85674690449846	6.66455443430676	6.50786970451578	6.30711048154351	7.3170108274153	7.04845041321032
+"CCNA2"	5.38047885452665	4.59251330232953	4.29590621213161	5.32692006831047	4.77430053759243	5.03246787192972	5.49509963542491	5.19403947379355	5.29447936029829	4.35141962399073	4.83321267995912	4.50622820436329	5.33950188525885	4.59742017798346	5.7235673727585	5.19179316497153	5.17886269112775	5.1805457763234	5.74623279120256	4.6898063009885	4.82857002120356
+"CCNB1"	4.79861085981883	5.13418626866028	5.15850758317841	5.21681274073143	5.65227595455278	4.82049260540075	4.6656478005912	5.19044882156977	5.52187438820216	5.56117603607357	4.74708959915701	5.5328680902708	5.22800417083408	4.6443265226007	5.39827189228312	5.11936761765401	5.30751694074431	5.52709528988894	5.16467747562749	5.71305546088881	5.64369245660149
+"CCNB2"	4.77191283380089	4.69658354128519	4.90718520917642	5.03103491619169	4.44644028814327	4.91156892472273	4.75799280259008	4.71039731802094	4.71310667783384	4.70355440988988	4.75799280259008	4.79930002714773	4.88361979152344	4.94353236858526	4.78364542440707	5.05315565338768	4.77964306233061	4.59486673975606	4.68187441028019	4.73735840456296	4.87598852855677
+"CCNB3"	5.63772482257787	5.79321378145448	5.83489135196075	5.70120771005584	5.66188271920573	5.69366863489516	5.63849322505278	5.48568294838405	5.63287103466655	5.44061319479109	5.77888169590617	5.72157796643135	5.53199233582191	5.64059918697421	5.44949683611352	6.44799631887964	5.66752164844749	5.6637035041669	5.39096571044835	5.67211210498696	5.79422696232285
+"CCNC"	8.71893804637138	8.82575451105225	8.74142823044007	8.60406332957393	9.17654968617323	8.00802681543147	8.21363273853456	8.8543642841709	8.82269636301865	9.0121384292112	8.6617034619481	8.92477907287337	8.51047074816256	7.88310583693408	8.89043988428867	8.89325274611042	8.70260617009534	8.9329948062271	8.87341444944679	9.00577536596262	8.99905106254503
+"CCND1"	6.1843544883048	6.95869270123052	6.49274608964835	6.11804135268836	6.3075115331001	6.51509000529275	6.51166132831683	5.76979797270629	5.46180090724948	6.98408395367495	6.81464765949397	5.41828262452919	6.6513800742298	6.78137441702615	6.39376272838191	6.58691320099178	5.62928694692667	6.54367896325785	6.59917668914951	7.8002174431278	6.69600329898914
+"CCND2"	7.34058298999214	7.42189644432835	6.77705744178586	7.4257310513274	7.37746529782473	6.00442188283743	6.79944969352336	7.44310943451673	7.69104559731761	7.77889955346652	7.26339611463398	8.16590960159481	7.44595110084032	6.81327385677501	7.29426879168357	6.91258644494837	7.59000898091751	6.51559424831617	7.26772694504495	7.39159621977322	8.09579493321061
+"CCND3"	10.5859965822959	9.56698384505363	9.75215857837166	9.74158389186972	9.56852061313236	9.91295535177803	10.373499370353	9.81526267468578	9.82912379730509	9.60525522950425	9.43845638741896	9.74158389186972	9.5961696500986	9.93369967752864	9.58466622607173	9.39154721739465	9.83960474746367	9.74158389186972	9.78233828071992	9.94730676594335	9.50534705994646
+"CCNDBP1"	8.63638406643181	8.76188539930452	8.47326721258753	8.58794373341393	9.11457964828411	8.14529002811343	7.88448778351671	8.49293607132025	8.68666850223068	9.49797811469021	8.77848623233868	8.92423678277024	8.57169526511273	8.16890732004525	8.53886939366906	9.25678963067227	9.00234926066921	9.14536669895351	8.88714396454143	9.23001828300169	9.3437035737912
+"CCNE1"	7.1409302643956	7.16409339072459	7.51724885974248	6.92135910863721	7.44738291326104	7.48079152586404	7.15463098019269	7.00874452983614	7.23846273507784	7.20346614286036	6.81586099754892	7.08291886123785	7.28345046982922	7.33422230422325	7.52201650845314	6.96431053505772	7.11554085140586	7.18611586451469	7.10826648068925	7.36607170957921	7.29119764809963
+"CCNE2"	6.30875908335253	6.74193103218679	5.81604712627306	5.68252365059641	5.68445481711841	6.22137306851752	5.18585023586324	5.6169826617136	5.24572752755675	5.05253695579962	7.35062171332216	5.23008654355283	5.10555307268782	5.39842410285411	5.36164350752158	8.25569638134213	5.78750346570505	8.02075127898624	5.46049976254501	4.71074912728226	5.7641050788963
+"CCNF"	6.79192914334658	7.15171850673163	7.23656634344557	7.31854720869786	7.00874481827739	7.43449931079266	7.57350981266079	7.28552117853662	7.45763043213733	7.22212153817472	7.01193098079788	7.33215516922434	7.31480565045277	7.18988499670526	7.34854210182043	6.87524841272681	7.14766991986104	6.82333810524212	7.27535670547736	7.18988499670526	7.1784886864557
+"CCNG1"	10.1508005011839	9.48850789956298	8.96153629960057	9.72658903121014	9.45397334042538	9.16084182563598	10.207880779062	9.89051723393632	9.64594108786831	9.5881354303752	9.94337573076598	9.34405165005184	9.73011656257185	9.92988139041435	10.0855894288705	9.81256915766274	9.64515525286839	9.911174172093	10.241560893434	9.51074199238103	9.46328120006544
+"CCNG2"	8.78761874444044	8.31843822611339	7.94377784086045	8.19361416749723	8.53427523467935	7.55804628062173	8.2193886279361	8.88074624398192	8.63630153054845	8.49325617489352	7.99259345277071	8.55330841004502	7.54534327690189	7.808233141231	7.73511327731551	8.11234408132612	8.51439017054974	8.31787092226153	8.29995228998714	8.42081458060349	8.4376181723926
+"CCNH"	8.65916827632162	9.04670670474395	8.99733753341895	8.73286907226874	9.39688382960259	8.70306551855337	7.17652791466387	8.94476889331008	8.67975390901563	9.2990252503453	9.03670395893276	9.15976404381816	8.31491087222239	8.00267117393495	8.25837437806412	9.03860602136144	8.95458868778742	9.31964873973983	8.62174819787071	9.20516722833156	9.09547929051592
+"CCNI"	11.7605657139133	11.6031655159531	11.6154858746313	11.8427142789881	12.0164086427532	11.4729966180091	11.9035974089841	11.6731806842067	12.1225229619945	12.0241586460885	11.8314664088344	11.9561001110806	11.9881434889691	11.7559452310321	12.0568228499007	11.9382691343867	12.126608329937	11.9072410133514	12.1093025112675	11.7289643582869	12.126499056859
+"CCNJ"	4.95987137882619	4.99734599345608	5.34835732187732	4.63154226871819	4.52346340262301	4.43092681528493	5.093261604953	4.53321616933696	4.885418173443	4.81130311989774	5.03954433555236	4.39170805673596	4.99646677362511	4.99150966088355	5.21551680996832	4.59771095115302	4.36509099850826	5.093261604953	4.71877829900949	4.69050474556584	4.78345744920358
+"CCNJL"	5.17732494304984	5.31560787295187	5.39256889886875	5.31209928071436	5.39436885457647	5.97071675434825	6.24620902365805	5.35170870877037	5.40752224157853	5.4414398482531	5.17732494304984	5.38754686875567	5.65605544512191	5.73458833531939	5.47575891493632	5.08008112023178	5.39568215931581	5.0886150619742	5.53948394146862	5.54764604885353	5.14594172434183
+"CCNK"	8.9644272996162	8.48384042539815	8.6282405471784	8.49943127476465	8.45166111928896	8.39371952088955	8.33069486740176	8.9115233629095	8.27549975975058	8.23388641512528	8.90211812158738	8.27306166075149	8.48246062969118	8.41165856126399	8.49304368747148	8.78489258474603	8.31873183077351	8.8582180145884	8.48594328806819	8.39408865681409	8.22219193087749
+"CCNL1"	8.76420442405239	8.61227674103887	8.02337204606068	7.81846748058626	8.02451399364903	8.49680419065102	7.89723613605273	9.38969434693096	8.03615270761031	7.97241795401252	8.58114321209696	8.62609964486433	7.75598046802847	8.24365648903178	7.99053962771595	8.50379429143889	8.81321637596006	8.90237039342301	8.24365648903178	8.00882606180362	8.14820480891232
+"CCNL2"	10.2260659566031	9.88166337467211	10.2121373901623	9.43003357167884	9.51029066576327	9.89308602181428	10.170486503703	9.68415388685379	9.59015290585461	9.43223918854886	10.0678512552264	9.37440369340331	9.49312496534193	9.93701730512717	9.45077474318653	9.88542073969656	9.5884720568999	10.1430858717494	9.66813111252019	9.22431545958103	9.39866688961015
+"CCNO"	5.82914889256087	6.26244235959397	5.9210757270472	6.27778540986967	6.46964488619953	5.7463255109158	5.5941733389914	6.30933736175893	6.73627939073557	6.32990026532205	5.59160968687542	6.1203579030791	6.33839183097329	5.82228896368683	6.12041145977147	5.91783220064467	6.60265670980906	6.0275469410549	6.2030763496523	6.71440901025058	6.59361593165903
+"CCNP"	7.2529485128021	7.22192322797105	6.77797341293637	7.30956285842329	7.15367432031124	6.94623643506756	7.59754547312406	7.34008576781156	7.43440766435379	7.33824162103459	7.00267791444145	7.26692680487464	7.51834464491269	7.45057291890487	7.39417808633806	7.2529485128021	7.28510971470757	7.00916395939473	7.09060956286889	7.0428988357604	7.2529485128021
+"CCNQ"	8.17899164336945	7.76203642903035	8.40967722499975	8.09084566691212	8.56710358015449	8.52917552338292	7.61299064290588	7.87123401583663	8.11239634049383	8.38034154176231	7.77684633964641	8.40516749271661	7.93173763750936	7.86893128242329	8.10583031078566	8.03970592442079	8.06011120740525	8.71834995504306	8.22095700704574	8.27009444037156	8.29122608603196
+"CCNT1"	7.33948035271429	7.76520745423273	7.67024770813329	8.10506751915823	7.52849406987151	7.66193286479842	8.06599537819608	8.12628194190018	7.97185385816078	7.7547046863732	8.09671263855237	8.16256715672165	8.16626443928163	8.10333556531055	8.10573529287295	7.45356446765628	7.85484289989131	7.05362597784421	7.49653925606744	8.00123082237615	7.26849327083163
+"CCNT2"	7.27758365772916	7.75091575096437	7.79786954191901	7.72473092112164	7.65774093184276	7.00435609054062	6.70382231096133	7.7393224623285	7.44454182444457	7.75534209844504	8.05187971324345	7.85851367464287	7.5744632470197	6.90172470503153	7.61686922679816	7.91508325034666	7.82809973638331	8.22325161526474	7.94512035092632	7.53403865201637	7.68366715431063
+"CCNT2-AS1"	4.94178696700306	4.75799280259008	4.51983758434427	4.73649000376298	4.75799280259008	5.3484249473648	5.10442214415036	4.59716859449862	4.75799280259008	4.8469176521259	4.94353236858526	4.69054480571146	4.75799280259008	4.71311115328062	4.52604072625561	4.86879339533884	4.55980491737483	5.02883984884347	4.61375640904026	4.61552486600255	4.7803602282794
+"CCNY"	6.39186342240572	6.9292518326208	7.18929929212165	6.96770542745872	7.4065204090477	6.27074155529403	6.77063477174537	6.81386357681924	7.12611236443177	7.26889445600313	6.94537607955347	6.97085861624768	6.95701391220956	6.58928540203695	7.29881803908924	6.86632498282657	7.25418837290878	6.95885269259765	7.08983270450842	7.36372707630064	7.30453635923078
+"CCNYL1"	5.91432471565553	5.70887681222053	5.38461317878894	5.36325916872432	5.64482115366625	5.09359846437673	4.93551274729523	5.56039032052701	5.53627595759374	5.55890411844152	5.59918630374893	5.64392047862184	5.30814212111265	5.22209266910451	5.38458401312412	5.82414621611277	5.66128153398499	5.84886921868791	5.42524687603376	5.73443088188965	5.97232944264062
+"CCP110"	8.30849557344134	7.95936679272483	7.94338791325833	8.36955649332029	8.13520614799467	7.62417785729673	7.70261426712649	7.30289190226705	7.82385825763487	7.25609788588084	8.78922017435414	7.36603625465726	7.94473555375036	8.38196116588825	8.36752839791889	8.9910512268189	7.4143096348338	9.27941332427385	8.05780646213024	7.28592045758732	7.94473555375036
+"CCPG1"	5.58919556326702	5.63282737911643	5.82878288926258	5.62514162832498	5.54602695042457	5.35088017784313	5.58348762665851	5.66060090233019	5.55300566826037	5.37948613786108	5.6294712266954	5.37314240805356	5.49812635816262	5.27470083003594	5.8076286278714	5.66590315808737	5.46172434762335	5.68915958687662	5.49135556040871	5.50307368269232	5.41438877132769
+"CCR1"	8.75400400594157	7.30470591751249	6.07561115115562	6.52010522319851	6.78580488134113	5.52950954295447	6.81059251701652	7.04539147568424	6.54220541910782	6.607599026972	6.75169902216745	6.03311771899694	6.71293957728188	7.04328915203382	6.81604065821305	6.98177789959363	5.97401008167865	6.73966490623771	6.48832492841415	7.30409939358681	8.40278830372178
+"CCR10"	5.38633648490235	5.47772408966684	6.19483933679869	5.32028369667827	5.91536334384264	6.14893618509495	5.25741660318762	5.80248585125696	5.80805515461236	6.00670622707959	5.53050147285521	6.17848511762438	5.86006805399444	5.82044835985698	5.48673880004648	5.4793630759614	5.82044835985698	5.50329758204806	5.8525489646137	5.97838818684116	5.93016765134698
+"CCR2"	4.53381287869599	4.24490123562486	4.02534911411965	4.10698346448968	4.07822817131906	3.62160727492543	4.12310973717205	3.97466541851761	4.26081999676544	4.17499535045198	4.1582626729766	4.2493149971915	4.1582626729766	4.09170718365212	4.1582626729766	4.48899173888435	4.13227753436334	4.33009271323631	4.00791219863481	4.1582626729766	4.3031512505634
+"CCR3"	4.54044895900607	4.62012334869761	4.91746415850463	4.87003570206476	4.59224934153554	5.06435580151572	5.06652787887447	4.83938556881833	4.78409871478028	4.66784483447504	4.42563110393906	4.52282832739044	4.77553832250025	4.90640708256809	4.65237679143999	4.4786091128984	4.67719260781162	4.16234805567924	4.66784483447504	4.27171068532325	4.66784483447504
+"CCR4"	4.49073717684081	4.97078882060694	4.68133616525646	5.14510208336765	4.87204273747322	5.14546888611755	4.88805794727497	4.97078882060694	5.09122390903668	4.84221627965717	5.01053303280384	4.69402822770199	4.97323303228759	5.17426817942103	5.20068391615492	4.83923001696665	4.97078882060694	4.97078882060694	5.16618143227573	4.83196211056071	5.21113159303856
+"CCR5"	7.46856564018646	7.08520980992497	6.9651247353724	7.4472775702571	7.15742893432697	7.07232189030032	7.1666084387388	7.07245695616264	7.12954085275468	7.00437886402795	6.82279919841794	7.15450214303399	7.26091228911881	7.15742893432697	7.16098592885832	7.24352561861792	7.14549199442286	7.06428368595329	6.99840047618054	7.48922807496522	7.68902068239483
+"CCR7"	3.90214557124801	3.70284561279419	3.90614093584322	3.8036819839604	3.94734042875345	4.22779280074122	4.34047249636262	3.83048988975498	3.86844975832802	3.94734042875345	3.68960375651592	3.8036819839604	4.02773869444039	4.12721003865698	4.02902103000701	3.79643690356185	4.06423179422112	3.87466522098437	4.02153502817884	3.79867112659421	4.06471958007036
+"CCR8"	5.02307449698908	5.40322204882637	5.15955685976197	5.36816865794692	5.36104248997377	5.38270247604942	5.44939784771601	5.15204337385542	5.61167268975646	5.35613241605432	5.39056677799303	5.40256993226353	5.5378166765209	5.38404696919155	5.40438603753052	5.68722579614701	5.64665166816026	5.06162007152255	5.51335203815187	5.32873638545316	5.35356774132162
+"CCR9"	3.82088694381399	3.93487387657907	3.86375290852555	3.82898641790245	3.8318069882345	3.81539043828193	3.70034397628044	3.63400018430786	3.8318069882345	3.99965555778635	3.58657035912302	3.90726219279916	3.8318069882345	3.69068742859288	3.69936593988119	3.84459345451701	3.75714810291262	3.79895661812591	3.96300306513304	4.05581854754528	3.87519613557234
+"CCRL2"	5.67714180694115	5.21403425752501	4.87019328822808	5.43465836477156	5.20222141967957	5.90385485820757	5.46349935188661	4.99275742115836	5.05147639451324	5.1823854648043	5.03471354565921	4.98902238663378	5.17531102246592	5.74149414363917	5.21878931329403	4.77441527401941	5.09065772203071	5.08961543800521	4.89984501868308	5.20887369957441	5.35729270633641
+"CCS"	7.85341619886157	7.27212749924375	7.71886013343325	7.23618664625759	7.34702882159266	6.92215191051443	7.30837635413579	7.30518978668708	6.99397673549158	7.38791096380962	7.66926735053667	7.35020926417972	7.01610546900819	7.13032709359118	7.06906271134046	7.54654057237721	7.06765873104913	7.59813066951982	7.24631074969975	7.4265995667299	7.09819219693159
+"CCSAP"	5.52560477454462	5.96203918906153	5.03133386351452	5.47739343670807	6.29328963336851	5.35932146650924	5.53642005624671	5.81926291323632	5.81081711376507	6.34335017104122	5.85611509908607	6.07786008632309	5.27474807784096	4.74458972832442	5.47394725518153	6.4981986128577	6.07511825773521	6.65715075352217	5.84722430976719	5.81081711376507	6.80183655832953
+"CCSER1"	4.42614572005095	4.98687029515656	5.2734016285143	5.02693962877049	5.43604477956549	5.15529573747239	5.0583805231994	4.85038839533011	5.05220547497857	4.69878582226716	4.50295801347761	5.2434377364993	5.27981800248468	4.76023715589866	4.95805944392864	4.64648501806308	5.06799800353986	4.77991364579	4.64363142681514	5.57990004995152	5.05891877722428
+"CCSER2"	7.48067755529452	7.83386885023384	7.51591351227878	7.76658463334555	8.16351031032124	7.36761078458056	6.96308880474524	7.90139221994176	8.19642729467391	8.83630447531114	7.96382626174271	8.67575878588043	7.91861579598774	7.50355877861036	7.74420489478472	7.75919846410611	7.86804381982196	7.6705432942331	7.76774835458811	8.58725962630246	8.38514329360218
+"CCT2"	9.07855700548494	8.94076675096433	8.13344688767502	8.79478386942887	9.21387128202642	8.17555786057153	8.44092912540669	8.95625692243105	8.9801726859353	9.62494224597453	8.94084561545454	9.37602390955089	8.76817602319571	8.20343620740219	8.97614654709516	9.07752998800146	8.88314745180371	9.29128394570669	9.12302865126206	9.5804047047788	9.50393173522654
+"CCT3"	9.47833552960995	9.39219297687872	9.58031496612207	9.59237099678272	9.52189282288145	9.3302984923954	9.37754005813786	9.62209740064305	9.55568078242993	9.57796452370686	9.49591420601475	9.56098132745362	9.59427344802491	9.17462219480337	9.85810082915488	9.56173784495696	9.45072169943991	9.73887057290393	9.79055240500291	9.65948206557438	9.46301200858875
+"CCT4"	11.0372196886347	10.7820788955627	10.7876355083473	10.8884384969581	11.1136144216027	10.4898063216906	10.8279447633323	11.0039385748287	10.9893923259057	11.1187562200172	10.8026545368467	11.0445306952626	10.7319302665621	10.3611154525334	11.110590596183	11.3082834237284	10.8081646942807	11.135858100458	11.1238172022773	11.4637260947879	11.1452141621995
+"CCT5"	6.12968056977805	6.23122429079474	6.46485696115538	6.18055486065056	6.71629096052144	6.99843774668336	6.73640415250671	6.33193413699333	6.56981116261643	6.60362552119278	6.23764109457876	6.25615681535767	6.68048527858268	6.64312128167685	6.60598643118888	6.21290794946703	5.99574560777282	6.81689919090081	6.09634848682396	6.73280464957604	6.33996187742872
+"CCT6A"	8.22045658325872	8.4058774450089	8.09931736036937	8.52739768380687	8.6367607975123	7.7628576599335	7.68713944464359	8.3204671993415	8.39227995321054	8.67887074236143	8.43139344370481	8.46070682115378	8.48748184055719	7.41717123690753	8.4058774450089	8.4058774450089	8.34654476586061	8.57515362049186	8.50664062152997	8.5678888122543	8.82448513190628
+"CCT6B"	5.28875313621925	5.4915771042623	5.84411075956241	4.92535704998397	5.49861482773572	4.86412973463314	4.42539932255302	5.12279083211131	4.89345052606453	5.49347175253635	5.94245863058263	5.24921636777845	4.91199661723642	4.54199136066079	4.31502031137684	6.64737513990755	5.02911786542874	5.24338041085575	4.93932888877877	5.11429103872541	4.9013806842554
+"CCT7"	9.48478433043779	9.32798545068878	9.64441505936486	9.32690156661815	9.90897837846595	9.61112021967568	9.21037723993019	9.5725239086421	9.54263130725566	9.91831605489259	9.37536307485989	9.66506725097445	9.15217960884384	9.18838381698976	9.47130055314441	9.77027293745483	9.60839738951029	9.87242776801941	9.58960268970597	10.1852370009162	9.82558805764584
+"CCT8L2"	4.94574563403001	4.99821740839772	5.15954824693267	5.30381395824772	5.15954824693267	5.33467489301564	5.22025635773318	4.99269426782167	5.35823471309091	5.23686001078069	5.15954824693267	5.15620986713948	5.13251143455652	5.52708414469546	5.19770007420267	4.99873109920393	5.20250586299229	5.07189514553077	4.99532194402693	4.7352206248713	5.15954824693267
+"CD101"	5.07286124344217	5.1142238808829	5.24188258450257	5.31002125058275	5.07543249778765	5.19618917666495	5.07132118929217	4.91773995273101	5.03069480736208	5.16351976941303	4.78954468332155	4.89841384423629	5.07632036620308	4.88508284923753	5.10824640939559	5.03624783059822	5.07132118929217	4.85795194095762	5.04003097162902	5.07132118929217	5.20158200928841
+"CD109"	9.17809494027973	7.44211431605043	7.50559677479564	6.48093838082928	6.84527486798395	6.69427015119606	6.62015204354339	6.82318934749751	6.66671944740677	6.92526322185438	8.45116675709129	7.0839875246391	5.93686903071956	6.64196310458481	6.63186291852977	7.80339764606947	6.94388920689429	7.04768827565652	6.69664566530198	6.74395492715881	6.43052042027275
+"CD14"	10.542277788122	8.05144968951834	7.03307125778724	8.30250514363527	8.21200208546948	7.75286086143993	7.7385192880753	8.71879478129339	7.76215409929064	8.31327778183358	7.82322421764159	7.24748164313314	8.09404712420036	7.81629234910299	8.34938334689681	7.96610949815557	7.49096630749828	7.81599098001665	7.78946822982201	9.53852416314965	10.2241891002941
+"CD151"	8.65245222834902	8.25110914513098	8.00329768036726	8.36455571782267	7.86834589644993	8.58132280519346	8.69235716410982	8.35223431427833	8.18038689239408	8.2153452819753	8.52171372846849	8.10193637904593	8.49235753956571	8.61689911679268	8.335205684845	7.71068991578986	8.08825278450003	7.58250856581818	8.40376286480006	8.71666618584857	8.11296945679742
+"CD160"	3.80691817589036	4.14641158273363	4.14476933466642	3.8811282593876	4.10267357934907	4.01562075600492	3.96388604524206	3.95608552677242	4.17528369420331	4.03275011994974	3.87546090663688	3.97962065723226	3.88509171534632	4.01615771219074	4.28681387165213	3.89632819847463	4.08966111975762	3.76638608376984	4.01615771219074	4.04890606291975	4.26794776535652
+"CD163"	10.8247021500067	5.87456202818065	4.94182463837514	7.63968981622554	6.00978136047947	7.06896165558275	7.77663695002392	9.06215265894459	6.6858862093799	8.72755321736994	5.34684882186315	8.34777586465322	7.20005192779782	7.74470637982993	7.26907253982794	5.27737438736204	8.39545932616685	5.76674892434251	7.69072997160027	9.59468697384727	9.00455000170735
+"CD163L1"	5.20285465060711	5.53603602376532	5.55890411844152	5.40787838040188	5.81004738918229	5.43739339083122	5.408699420097	5.31311487050349	5.4673064451787	5.82455570889914	5.3151139720008	5.70325171283711	5.6682299729667	5.61584930193122	5.42102639600841	5.32603945895902	5.55813444225234	5.38671589043007	5.19012463479585	5.53147984400162	5.85945839391799
+"CD164"	7.32053233989473	6.89700863639928	5.12906069912838	6.55855164582369	6.62589702453457	5.83541124652931	6.19090719485407	6.89003708752047	6.58010284680928	7.01242819386961	7.32840926855866	6.6835607083464	6.50285266817019	5.86347044604048	5.97178206246985	7.15496347644566	6.78232780290379	7.53158366105676	6.83042785172566	6.70579919937004	6.67736645729636
+"CD177"	6.84890505070891	5.98785032640141	5.73271683385458	6.45382004130727	5.89033583160338	6.25973905936847	6.34550484651596	6.67453090427133	6.12266948572507	6.56705322083808	5.95273025093184	7.01554962835442	6.49140269290987	6.38508032583793	6.41327642222884	6.0669924110066	6.30997109772858	5.72621719888653	6.68368418519617	7.81960993242177	6.05653377737414
+"CD180"	6.74795538253272	6.7051866749544	6.4484323392411	6.75316235641572	6.60402646988087	6.65968150469685	7.18243195270922	6.54254411841532	6.72274562876745	6.63717813847681	6.55159264163332	6.41249360397951	7.14432746279047	6.92113732798717	7.06752574541704	6.57334657585655	6.44698808816002	6.45188538303757	6.71137385553255	6.66234134582683	6.72807079400215
+"CD19"	5.42420990907208	5.32268228394081	5.20646949329811	5.60718515763794	5.22435229611355	5.77511528289454	5.66924473452819	5.44161595376738	5.50109100793982	5.37075981163568	5.14642878885612	5.18161388835139	5.64192094820373	5.60181330598269	5.71760134916728	5.16990898494895	5.38175201212383	4.93494143005054	5.37075981163568	5.29777319135539	5.25030186964609
+"CD1A"	6.17879839032425	6.17007248696622	6.2895569534414	6.35535333536345	6.14074451171357	6.40551739027844	6.22534564752698	6.34333890497435	6.24781936120419	6.14395286750148	5.96724740258489	5.9743436879444	6.04535634873047	6.50507869766857	6.36047520209855	6.23999918003897	6.30709378438975	5.76850357988808	6.17957947574882	6.18457078082864	6.26424152057627
+"CD1B"	4.13557720799785	4.43712901920102	4.16570472191783	4.45051061791529	4.66082923890335	4.79204038395757	4.81339269931571	4.16651149543588	4.61635288365148	4.33003257582481	4.20659385309026	4.38872850505219	4.44692007238176	4.79399067143147	4.48850202470093	4.62769601457104	4.57978799469684	3.84301044676374	4.22829991802368	4.30455377204797	4.63809219370115
+"CD1C"	5.73135507366203	5.90134230293477	5.88107646770422	6.07390067857428	6.06696647871313	5.71082167076278	5.83476645367305	5.57200813095782	5.86454874366612	5.95854142522624	5.64719321927326	5.78244636949068	5.86454874366612	5.86454874366612	5.60696191371657	5.99936589764734	6.09504435688599	5.77061619082822	6.00560999712201	5.72428457800006	5.98460267187267
+"CD1D"	4.65990745752724	3.65582507637017	3.56151520390654	3.48192708934248	3.63942235354238	3.66126627094128	3.90714762727493	4.15177442710878	3.31880355942536	3.66126627094128	3.83612006284848	3.70528391538736	3.65855364442872	3.5059727696289	3.74029028354985	3.66076069256676	3.67216776847921	3.64984119501144	3.79053132552121	3.75212117478525	3.57283565225652
+"CD1E"	5.79732475111342	5.5937708024544	5.87974272841236	5.98411505326317	5.81960102389217	6.40853086183204	6.41433375623748	5.62814581178744	5.96029957497282	5.76359706371592	5.63775353080077	5.73586417311183	5.95855628121964	6.06552154530931	5.91151731566052	5.73466628590164	5.78292729984436	5.70913474386776	6.19063632259399	5.87723854421202	5.84123345149388
+"CD2"	5.17889813547059	5.49477410962731	5.48869343401295	5.7899061833471	5.49734003074672	5.54976225604898	5.69723892854317	5.75388071511764	5.31703856827379	5.64592096148341	5.63825476639523	5.33779159040712	5.48869343401295	5.48501051138629	5.56079503527608	5.57988434782518	5.27503163508688	5.13412844039807	5.46773882755752	5.48869343401295	5.82176306925985
+"CD200"	6.90266918702412	7.89065481708372	8.54027914088175	7.83064883515651	8.97394437463364	8.01417780723262	5.96586738637816	7.76664830227274	7.96375902659339	8.37695020571042	7.81953601700982	8.56053531637807	7.54423140936735	6.68794086688553	7.48560297399243	8.25966557156084	8.15601830178109	8.30636275216247	7.86094279165529	8.74583440647224	8.26590172251777
+"CD200R1"	3.08332161193451	3.22511239136446	3.32146603520934	3.27420848537286	2.98580210351366	3.28504175918665	3.61767244431721	3.19252788411931	3.15648206917167	3.12192358865374	3.03600993477031	3.22425190610213	3.41378284529005	3.19252788411931	3.02756318655938	3.12294180497797	3.28766065951203	3.06764171681313	3.27840068821878	3.17060261855207	3.16443588967251
+"CD207"	5.02182151823252	5.23756305440236	5.01801944816954	5.09552809620792	5.26427929001776	4.75501375602085	5.26298910190214	4.96032431809107	5.14785645014479	5.26182323383519	5.13381455899895	5.12057429431316	5.16581523631932	5.13381455899895	5.16234466890591	5.43586152809031	5.13381455899895	4.8731423258827	5.13772121207973	5.26298910190214	5.13381455899895
+"CD209"	6.19840989508872	6.00878122605819	5.79238987161507	6.11251384206715	6.18377653778167	6.37112064203017	6.26780063978684	6.16338232955149	6.05160636470095	6.09864759697103	5.72682631438073	6.11187159768612	6.10780034266847	6.01254820146476	6.44278066059962	6.09240366608731	5.99147046782126	5.75675450437688	6.05747231642128	6.90324116345014	6.44897316597911
+"CD22"	4.67544185188676	5.08073004488658	4.98541691360278	5.31678746768382	4.58228466662914	5.33423799729459	5.45745952440716	4.94845076045975	4.97585246394253	5.00911042170234	5.26293070006655	5.08771697782503	5.18317013649324	5.0974339723376	5.30663777189103	5.83209935687674	5.26314725835291	5.08332526006811	5.37981505464974	4.65129453276477	5.12386023653009
+"CD226"	3.82053269881625	3.62479974489934	3.38891391702224	3.63770455645345	3.65710956018913	3.56507998890496	3.66917578994355	3.53279058542822	3.53228997894864	3.36586913822012	3.54848369259545	3.68719222591347	3.80920541125361	3.69068742859288	3.38042863594567	3.54127067137852	3.47077753553507	3.37529893542131	3.72321675547917	3.52375384515879	3.55001371885803
+"CD24"	7.98079449571732	6.84015342988628	9.24718268150646	7.22118840891043	8.01375132178488	7.08038468376712	6.6615000039328	7.33070044836109	7.17906079706742	7.45086895655514	9.15495410943316	8.10945299119138	7.0061536377961	7.41240528926684	7.79784097161392	7.2986542215825	7.88050501121805	7.37263245975274	7.84790778452684	8.17386697072396	7.57461519510424
+"CD244"	4.31171519521628	4.12191576037721	4.20106925115945	4.34396923219872	4.253592738339	4.30291884282523	4.82229209255504	4.01615771219074	4.21749257809528	4.19784875061851	3.93119257095749	4.19070174167827	4.31690909651504	4.68782520904287	4.37711550249873	4.17462529862679	4.21749257809528	4.12097079150393	4.16728735304225	4.14025259604391	4.11529812134087
+"CD247"	5.08382085806354	5.34563632500108	5.15307964089042	4.89438576442188	5.07618069868601	5.33364509528155	4.83916540124171	5.58865350065867	5.14612138021178	5.20242910740887	5.19602769588279	5.2608572018131	5.10149014872444	4.95026299155578	5.1505236130702	5.03828058662455	5.28526952552266	4.7939943459758	5.40638113223838	4.92710074042124	5.32594575422609
+"CD248"	7.39744214241559	6.59080390305804	6.52218571771154	6.67890494473086	6.61898364212804	7.27097203868114	7.24608532085856	6.58559144692704	6.66987725816296	6.85253699455192	6.48756871643062	6.42990311021211	6.75515097850721	7.1987094758377	6.50863981878914	6.14226009820104	6.768580363068	6.43035653009328	6.75633296468299	6.66489444980469	6.89574311229362
+"CD27"	5.35796742251934	5.31169504930792	5.32692006831047	5.18572128860119	5.41052869061885	5.16409740503071	5.32324809248911	5.19620433098394	5.44321649420105	5.32692006831047	5.08961543800521	5.23461481932836	5.61868623043353	5.54193018250026	5.42919034208107	5.31390242100059	5.30178367294245	5.29941179277939	5.41392773883459	5.32692006831047	5.62415222432999
+"CD274"	5.776201989809	5.82287033003888	5.95523376904967	6.32510352781045	5.63729999169652	6.25883941769951	6.31601944212345	6.02254362781858	5.82541514509513	6.03563596182905	5.45264232562831	5.98468447011363	6.02789736666907	6.49916057101961	5.97279863004638	5.49631511355376	5.76271961051815	5.57678936782839	6.06641795532197	5.96081347030088	6.28171708231122
+"CD276"	5.18476749174746	5.58076401555816	5.31832115840747	5.37985456624488	5.3554365711993	5.07111878791569	5.39291118582919	5.73835100929324	5.77406469297648	5.04757664772184	5.33170650729706	5.49381784554663	5.81591970378183	5.43300576023898	5.86484832480366	4.97178977682227	5.70832469918244	4.91276452058267	5.28412398309237	5.4320433199375	5.43604477956549
+"CD28"	3.52221006011418	3.80178679885111	3.54591390858698	3.28610881738716	3.3328323275583	3.53311566872593	3.54629663981664	3.52877957583328	3.34196297418407	3.34670807269503	3.2322371477663	3.18748946678268	3.73253929686181	3.58692417829101	3.52044547099121	3.44478657849147	3.43455695871229	3.39745934892546	3.2989922774313	3.32913148439893	3.56077646369002
+"CD2AP"	5.71471226016187	5.8734040998114	5.97513262621712	5.99506935636809	5.69694555790881	6.36108377493695	6.64994370562216	5.6550759518016	6.01806084076259	6.13127982583299	5.72234508530173	6.07324345768155	6.26690882677525	6.05255595602803	5.97869432322653	5.56132278825747	5.97869432322653	5.70537426933217	6.00817802726009	5.62879276169365	6.0077724735066
+"CD2BP2"	8.64465524038262	8.56915550441301	8.41356681568548	8.03220958835239	8.47043107125441	8.16051846085156	8.3968086917804	8.3237901459746	8.0732730078255	8.67501975693667	8.5275589396408	8.52467744382697	7.8315904064245	8.35414516446697	7.87705883370754	8.5300774271998	8.09651122751858	8.49130500560807	8.20909284430745	8.83643210725687	8.48626303475758
+"CD2BP2-DT"	3.96578241961898	4.13166679235949	4.01427305640163	4.20277974793944	3.76899138711493	3.85459926793068	4.12289711281951	3.86704352572458	4.01427305640163	4.01349767608274	4.12048609672268	3.94050512815086	4.05748888670735	4.35721398232063	4.05936603896802	4.01427305640163	3.88632944396792	4.01427305640163	4.01427305640163	4.00047038065321	4.01427305640163
+"CD300LF"	6.0586464797515	6.16077713700163	5.84730203564122	5.39629011049418	5.85202151639761	5.73442457854043	5.80829782903987	6.46964488619953	5.76846706784159	5.85557415679415	5.68615004258842	5.84244788110366	5.70142266758713	5.96259643920411	5.71574354195245	6.02346109667052	5.87424411321473	5.63138551877923	5.87158616788783	6.11535145428627	5.97427917266909
+"CD300LG"	7.49527749916777	7.72441058193326	7.52662750647074	7.8413460163032	7.52310551560567	7.56888283468398	7.603131329366	7.6819131459383	7.74899315534494	7.85714449753656	7.65561632295113	7.76512657417728	7.87093719380362	7.73489868163201	7.56519401775571	7.71067251242718	7.86751077364919	7.31861431454149	7.70886123115075	7.60171704250338	7.95727576948908
+"CD302"	9.14462643163069	8.16724820078729	7.20787795990596	7.84657016577637	7.38763068457908	7.04326417694886	8.48659866124615	8.48472848189638	7.88344620808472	8.22699431617071	7.71387605567947	7.40296268250291	8.16724820078729	8.47179027593429	7.72736062977961	7.49943358180013	8.20547668968037	7.82349821477527	8.31309056940834	8.27302651943975	7.38808902295962
+"CD320"	8.28570579451931	7.68554256267897	7.79063151974061	7.54576481270677	7.65823811917719	8.19011015180751	7.786696869269	7.68533761922515	7.79033862411072	7.76085324145599	7.60940720769151	7.63424638588381	7.84123725051978	7.88471665358379	7.70153801690971	7.3987725078563	7.67818207698051	7.86553124257934	7.68520880856018	8.01316146415661	7.53254443928812
+"CD33"	6.46067739611969	6.31256073939685	6.05057773549609	6.31664375423548	6.142862329842	6.22619955772884	6.39920898724529	6.13449102084854	6.18333981837801	6.16483454299942	6.10900386586769	6.22619955772884	6.34143975240326	6.58047236039289	6.37633530964174	5.90601712933696	5.90942436823873	6.01900822144133	6.45911169082301	6.42219526355775	6.48712683826089
+"CD34"	8.77076939242736	7.26896149408695	6.90850681221142	7.26474257524887	7.26896149408695	8.67538779474777	7.03979876657962	7.34694442155229	7.31056375087445	7.73193545915187	7.37543560954942	6.74649558627525	8.07930160760709	8.54945451696931	6.95482136747765	6.59407786314346	7.35847928168575	7.16329191109421	7.03421192453329	7.32934318764758	7.21282566450636
+"CD36"	3.89085347328575	3.87644220752619	3.79207876049392	4.0234104027737	4.08877808366021	3.93881660172801	4.31744083297024	3.7375401215961	3.89191773245387	4.09342546775215	3.83316310920188	3.95773516008571	4.01269531595103	4.18234803252526	3.86397456540843	3.70601630582558	4.23837993582901	4.08063730079467	3.90886154262075	3.93709859969289	3.85979352028526
+"CD37"	7.09474178388073	6.23215096981965	5.31048656452928	5.49771353166216	5.50362354795846	5.90902268133024	6.42438991943508	6.33882168554245	5.96631010483327	6.08081099435146	5.89441691595612	5.31709715046993	5.99988933054077	5.7175454782726	6.07296084993956	5.9079025220219	6.24851483399877	6.36369544422746	6.4621389137484	6.30978862426295	6.60647751801759
+"CD38"	5.90735421421202	6.13479965141234	5.85298890297673	5.94277564244123	5.91644865268111	5.3269283578974	5.5638279703276	5.8158468525134	5.84079345192826	5.80572978527249	6.52540439060487	5.9026558036468	5.54007431192373	5.67732610788345	5.30877764432721	6.9856992819419	5.70688487930155	6.07696309661742	5.60032690192849	5.68057679253263	5.84324430367431
+"CD3D"	6.12154422884013	6.32116757568004	6.31549396310866	6.48253436172204	6.6926593992977	6.79294397475556	6.75241487785766	6.41272476421522	6.30830659073235	6.4698235763286	6.404610471036	6.28568400334432	6.63885528196221	6.69264916593096	6.30997109772858	6.45249417525099	6.41272476421522	5.98654776762988	6.16889938741863	6.29439628010796	6.42863772239863
+"CD3E"	5.48756336699038	5.59557551935096	5.25211928265764	5.59557551935096	5.68627974948492	5.34000616215942	5.63280130791587	5.52558210347929	5.71526505182296	5.5971337457545	5.39134833854713	5.63548263228167	5.66969394855425	5.76718368356929	5.60409125110413	5.56192313467412	5.70492628463808	5.40724611292199	5.57970084928361	5.65681859900646	5.97791692844432
+"CD3G"	4.45219246303972	4.33675642451761	4.29672425171378	4.29938893389525	4.49281652232547	4.7770547335153	4.41461288898584	4.42409155409035	4.51187212883203	4.37570498619915	4.17240660173804	4.22219504015804	4.34830396768281	4.33675642451761	4.26542799153927	4.37727566748027	4.28091601407734	4.2114570722989	4.19818030628423	4.45623502145309	4.51830860658118
+"CD4"	8.29564862673682	7.53818386435077	7.09454453375791	7.46224699813289	7.33781504051414	7.15193891332093	7.86236820751696	8.11561297490848	7.32931377064851	7.39515399169583	7.22170038910257	7.42751376852352	7.52808635352072	7.67712051840048	7.13318289851374	7.32026479300897	7.54693662835214	7.38609348289074	7.45501425892915	7.74242880695763	7.56954043887327
+"CD40"	4.9317851550339	4.91032664291292	5.17303298255795	5.13888974894163	4.70213334615055	5.48353960633561	5.66924473452819	5.62873473867109	5.44502887930385	4.94718885597032	5.12454143310027	5.07562236308188	5.44194686590544	5.34189152108677	5.40706271654313	4.77056018192794	4.87354327033098	4.74625273213895	5.37391949404703	4.89611708239199	5.12454143310027
+"CD40LG"	5.63785181379203	6.03449865541692	5.87926443347249	6.12355292427533	5.97637978551739	6.05737945203801	5.76703017011087	5.72160588781923	5.85242772261872	5.92007341395474	5.89592973161603	5.78854151476535	6.0852276012827	6.11494332822873	5.9957230660321	5.82156134097877	5.93133923109111	5.6502613497201	5.92007341395474	6.01266739848296	5.88585986989753
+"CD44"	9.43295229521365	8.64850897891807	7.00537013439783	8.22312414707762	7.2024360267674	7.45598946295669	7.63642134512434	9.12594891355771	6.40780812462691	7.72362229671024	10.7788265617079	9.45367517523698	7.50609154655513	7.60838075425543	7.41626251910717	9.90693171437587	7.40532408083069	8.98270854749288	8.701943755413	8.53523443831622	8.53771751982736
+"CD44-AS1"	4.43829433492274	4.67710680337533	4.66309177277099	4.99169548668545	4.61831483384958	4.94567176195179	4.72083029964895	4.72083029964895	4.82185061042639	4.7961317092014	4.62324733426421	4.80735288464759	4.97436418083844	5.03256595106673	4.89666360411592	4.2734074491133	4.67741581378734	4.61520370865631	4.70325329432122	4.70024261192887	4.66784483447504
+"CD46"	9.61058181099608	9.12570123834209	7.80067467297649	8.58663349655738	8.76209171934393	8.73310292177812	8.72337334593842	9.1377517316574	8.37737544631485	9.01332794371506	9.27218941192175	8.90135592251592	8.89469196862941	8.9560768296539	7.98069545836688	9.17175018812368	8.89469196862941	9.26865014679188	8.68078748067878	8.61860859206745	8.98176800263671
+"CD47"	8.47061310920592	8.70154976568348	8.17495621542088	9.67944840296098	9.55006695319331	9.02867070689305	8.05889394310362	9.3895312983472	10.17875496969	9.3020581583956	9.28021548161563	9.53743366329214	8.5128834810394	8.68933045308654	9.06271763881088	8.21810488321788	9.56994702366765	8.85947070881236	8.88724592443001	9.42714558473418	7.44463991933412
+"CD48"	5.7911068779514	5.62520992206689	4.94843391569061	5.43657908059016	5.29408932843368	5.29640337932286	5.41222632406077	5.47712123525553	5.39864175764359	5.54763738571003	5.08447019313872	5.39576317200021	5.376583179988	5.59140381272771	5.41744516329438	5.44363571779264	5.50563873108967	5.19716020696586	5.77529481077162	5.70431209004449	5.93728097582795
+"CD5"	5.70795342374243	6.00457456699752	6.11130960273022	6.14922215193287	5.82311541544584	5.86700084095505	6.1938340990494	5.9525928069268	5.97869432322653	6.11635065721794	5.98622668156987	6.07729129324225	6.15907187111678	6.30101925626371	6.00457456699752	6.04887381120577	6.11519040394935	5.68252365059641	6.00457456699752	5.97291277506513	5.92788049217999
+"CD52"	6.45364596919212	6.11772173514428	6.443834933189	6.45498053460968	6.54254614108824	6.57835901727384	6.62579770287832	6.40951857831624	6.36684748168555	6.58258666567869	5.8923786534962	6.09671510224502	6.56470624375154	6.95262588617023	6.55760306617614	6.15937787551483	6.27441354906817	6.41621704123634	6.52370329168288	6.55645292663362	6.60848110905004
+"CD53"	9.84442944966822	9.08634072263038	8.11571611329792	9.04683104642771	8.72745510786066	7.72047660164573	8.6920174559155	8.81081239283524	9.29657514077134	9.14552321749838	8.60942657414484	8.14500126774723	9.15649879128208	9.0756356542468	9.02275653220917	8.70625123656831	8.51729587127262	8.8413127743332	9.15927169107483	9.3307172130248	9.60664016130757
+"CD55"	8.53295759497605	7.84195502560797	6.94646632241777	7.88919868117318	7.6373357200016	8.22770267658109	7.14070431694682	8.16550686873572	6.85245947888884	7.80742833313816	8.69373947181849	7.97020842116054	7.44105566471195	7.52656508288248	7.02324163551402	8.72098502184672	7.73250264105351	9.56004800207043	7.82705420873049	8.19196137982772	7.49071927542803
+"CD58"	7.81550853412155	6.49880749256111	5.50528692233858	6.42685955921104	6.16524011168115	6.27874663686702	6.76088358131193	7.23139341686105	6.50617492019454	6.39767917932232	7.05909560928461	5.85958431245622	6.20080762907048	6.67902211467833	6.5005429133396	6.00811451941865	6.03673835967032	6.50970596213043	6.23450824230956	6.46869341659467	5.87126770784023
+"CD59"	10.527956231978	8.79113198393352	8.68918272272581	9.32312216546369	8.85176000042945	10.3194102233803	9.92844981217548	10.3749426092574	9.73095157401221	9.4000981946462	8.8038401497825	9.47292849506928	9.58524232175837	9.84975431022733	10.0184736564234	8.35495091888655	9.66024025909108	9.01687127061355	9.62633472335903	9.29130344858891	9.32311069454329
+"CD5L"	6.6322991844848	6.43772043041403	6.46964488619953	6.44724619471506	6.32083906823241	6.5493116234516	6.43718981991821	6.2125983971745	6.51898334455621	6.52431996300411	6.21382285799921	6.64460096105097	6.43927151638385	6.5221638843384	6.62666752626276	6.39416659263735	6.28835007531273	6.36724564184899	6.43967910753347	6.39052901255532	6.55674585621545
+"CD6"	5.27491916287457	5.59699745762571	5.46048970767092	5.93130367273064	5.52709528988894	6.04981717946903	5.65131538200133	5.23733513275649	5.41623605872508	5.55648582119055	5.27335933450989	5.64838274188478	5.86017905766466	5.6757778659762	5.50893813381792	5.32160749932685	5.54869538382829	5.17899538883872	5.50076182085259	5.42496901611999	5.75914181501597
+"CD63"	11.3073522959687	10.9309881981562	10.592207737695	10.8468518945634	10.7027812871849	11.2055570448847	11.0216566967435	11.1153035420799	10.7142869262482	11.0020578815637	11.3360488050673	10.9012805791195	11.0111379100151	10.77334052006	10.9881384534216	11.0659113548886	10.6814111827851	10.9250030045876	11.0157910843307	11.0219656001781	10.8901307007554
+"CD63-AS1"	7.13503468226738	6.55187350458799	6.57530409779365	6.9890521070392	6.53313520479054	6.68254662803998	7.27909187402031	6.90580251568647	6.98442032760267	6.81489587027037	6.82331645837354	6.65011880822612	6.89319742045332	7.00570670134907	7.0245478816755	6.95528488562821	6.62640468115196	6.66374168877823	7.02823679380972	6.65216499774194	6.65151040228655
+"CD69"	3.70632310137397	3.64180803795359	3.1248905682902	3.02471288538393	3.06014240326133	3.54127067137852	3.36177386466716	3.26499456959597	3.27660665541327	3.34863553481111	3.71626185169605	3.42834971392888	3.21103304884411	3.28881978606701	3.17443603994079	3.79619698890886	3.23751760654133	3.52970537206662	3.77388532390641	3.99115427631038	3.69360565236869
+"CD7"	4.44561866709686	4.31255830104406	4.50564362955915	4.34675677703391	4.15742637381229	4.74647935986475	4.98899417485141	4.4639965426867	4.39220760762554	4.29393263288092	4.60588188305804	4.4639965426867	4.34229071419785	4.60973314400076	4.45699818459051	4.35322561266107	4.42510923323497	4.42764418536644	4.68001586131012	4.44924955756032	4.54083895235548
+"CD70"	6.07770124467257	6.18714095004152	6.38297494326119	6.32974927073708	6.14893618509495	6.56050411958974	6.1490087902274	6.18041533133222	6.38322648047117	6.20823560255514	6.10536863253122	6.27047256506841	6.53015126459604	6.46799478031145	6.33518885384274	6.24443397539332	6.28678430611066	6.10283377468526	6.23597892692481	6.27047256506841	6.46779623927957
+"CD72"	4.76455822651726	4.4354179701617	4.86986392122983	4.56486308806028	4.68078730368303	4.83092802523812	4.83136033915316	4.96269229101959	4.39041087131387	4.68345947949533	4.71942496885246	4.84302596159909	4.56852601043287	5.05963924873173	4.42848027709223	4.86243642728986	4.94997857600017	4.72033214795444	4.62516022594289	4.32861718139829	4.75429234031029
+"CD74"	9.12155400661785	8.63955063744377	6.71215165406711	7.66463615526002	7.96203561545337	6.61660484753879	8.00680683887633	8.61305395032422	7.55102416997055	8.24021176497106	8.6752118792518	8.3788718979245	7.66989191729377	7.71657564661805	7.26377235851799	8.37607672556063	8.36868091363973	8.26901659226322	8.35659528566629	8.67942648625553	9.50733484892713
+"CD79A"	6.58289388543432	6.51964009895291	6.67568382562606	6.73229431563585	6.51410370675278	7.32489904698595	7.4962915859343	6.54101564605048	6.81976138272793	6.72948925303261	6.55646001810004	6.73647356297288	6.76711226903078	7.28193154751261	6.79735402461921	6.33714220604284	6.72784851116201	6.25549506260658	6.94344865384493	6.75673900876282	6.61877306935525
+"CD79B"	5.73971809950586	5.79259006306495	5.92215013472151	5.98044083836574	5.4913491912772	6.14791492761963	6.16445715016115	5.59557551935096	5.75999274188423	5.87238058929399	5.45642759675729	5.77378608634179	6.19269012869207	6.29786703189707	5.94681918439467	5.63481998802276	5.65210257551497	5.47902025635342	5.93764391149638	5.5189683513332	5.80874432938931
+"CD80"	4.28575838938083	4.20147329887631	4.06450186178282	4.17598926582327	4.16767879314653	4.66846677411986	4.49758390990159	4.20942582953345	4.24667768929892	4.32266523178398	4.03108214789532	4.14872594338558	4.462542005067	4.58996510478562	4.05145612153075	4.3217348822482	4.45400122135924	4.2308444262931	4.28540377573508	4.0558986335703	4.61856564966627
+"CD81"	12.4837167478652	12.210303608067	11.8279805665079	11.9983384200008	11.8320767454278	11.7056281557554	12.199462493491	12.5239587538558	11.7811130692901	11.8861105823835	12.6664488219381	12.0866309640582	11.9263174976003	11.8216203115664	11.721305282323	12.2721733125876	11.9888120892036	12.0928629638087	11.8229446277918	12.1135956048748	11.8889756928077
+"CD81-AS1"	5.26205786290702	5.45419931054087	5.10419644870709	5.29274730601974	5.63190866930057	5.35860326602483	5.2500354951157	5.37208415959106	5.17681694183075	5.40408587575677	5.52729043495665	5.71696314078729	5.19121923450914	5.28356577522654	5.14857055712146	5.5064775344957	5.14979951298446	5.28921250005744	5.40082720867999	5.30623456015227	5.37874385661881
+"CD82"	8.01978641025261	8.18521439794053	7.57256121784476	7.59926800111404	7.23952388884827	8.12175021295252	8.31965401992467	7.62543269790616	7.62921828643655	7.63411817418795	8.44505371231222	7.6626887001373	7.65385877710237	7.76888502400449	7.4916534666948	8.37329508742928	7.43861560299087	7.56215221928579	7.5767555011942	7.63632370646767	7.51667149597765
+"CD83"	7.87684903886484	8.45830939646165	8.80051234588104	8.49312532346982	8.90866266216763	8.30728288746349	8.27215840527206	8.54667386980696	8.85654992727269	8.9226812807701	8.11404848140202	8.64019798514342	8.81256456056963	8.16670146034313	8.66029967226643	8.36114608910163	8.79247533162411	8.29464059406006	8.68748499597565	9.08090743984343	8.88153537292962
+"CD84"	7.302104296598	7.53945875133804	5.72142678465415	5.87451395026492	6.37303249427335	6.06987288993905	6.77306463095914	6.74371790201719	6.65975529414966	6.35947672731035	6.88700425691488	5.91536334384264	6.36920929785652	7.34062123138439	6.62666752626276	6.88244886331885	6.41755486876755	6.43035653009328	6.73517570142249	6.69837776964199	6.87939149324
+"CD86"	7.08406950802262	6.31121838957572	4.36987876543635	5.68258886906022	5.96577188429246	5.45540436329215	5.96899769447621	6.52780389683182	5.88213473227108	6.06241986668696	5.92013112101654	5.37455127090179	5.39576317200021	6.04150327463393	5.61308753479232	5.76938669171435	6.79697615773741	6.01180515934492	6.32735986187305	6.78206430457926	6.32241425484092
+"CD8A"	6.37482303067613	6.66114847812404	7.07173738816473	6.67768269721233	6.72900165659985	6.64600958982044	6.83417210797332	6.41023765449871	6.87879569587466	6.67464213314594	6.28504363018119	6.61252127951985	6.84878438715818	6.89616973694584	6.7829506990838	6.39959928646212	6.56956974975652	6.10677593306428	7.01915850579774	6.87508668654822	6.85152802223599
+"CD8B"	3.24919416724273	3.29715386021014	3.44090251388255	3.51548042934273	3.29522274928821	3.49749507896271	3.51548042934273	3.35498100843253	3.44090251388255	3.55074935533123	3.33406901563831	3.59401268688612	3.64383567977429	3.43561657898329	3.64507538887672	3.4862786838043	3.43561657898329	3.32124061571165	3.72396568204209	3.48209382646493	3.42293508859909
+"CD9"	10.6813032918351	11.1821320775143	9.96295564217562	10.3367628491412	10.3654120756756	10.6622800892762	10.0603719829621	10.0857722047468	8.82084298249348	9.65818001153018	11.9861674853334	10.5373996133534	9.79413481872727	9.8378542597137	9.44655441155871	12.1320959051437	9.69836093970605	12.0225020428939	10.2999006593548	9.90406579157846	9.66764656775949
+"CD93"	9.36534332624321	5.83962884415737	5.55383036861112	6.5521612526209	6.7030979156194	7.63289078560318	6.21721118377049	8.83889142125085	5.7912650151997	6.27591015341424	6.25906576980672	7.31827916891957	6.88678728171805	6.4491990514248	6.45120567600113	6.30805664502596	6.8389393518206	6.09695665999792	6.3273551810378	8.09304108320019	8.69130411038994
+"CD96"	3.91369311936035	3.83231764660842	3.76697260019311	3.64997238833055	4.07792606942969	4.02918111444429	3.85869459908579	3.90711779466558	3.87833842656255	3.84937922687906	3.76390571818936	3.73405461749201	3.91266068968204	3.90711779466558	4.17125203921397	3.88090788496034	3.73440326692991	3.66116821065449	3.98674443932199	3.86839549626418	3.9238244051387
+"CD99L2"	9.20731144735651	9.08221507383845	9.44428701313476	9.10102937743865	9.89723559273875	8.99083736121065	8.43813342858222	9.12284411369476	9.31688794986034	9.95326998210893	9.50690960553375	10.0156939183773	8.98859986784025	8.55013234654582	8.77425085626481	9.42776461546975	9.63205424388849	9.29928262321665	9.20005496421602	10.1661089287365	10.0744609583311
+"CDA"	7.27596490925645	5.10883605443953	5.28043638309113	5.98192666838856	5.30401367161215	6.91690992297252	6.19090719485407	5.7824027462828	5.38077162683861	6.11493890891007	4.96326461451688	5.62267286012591	6.1923334461651	6.40011373092445	5.5793059376759	4.98106810073346	5.80658065606002	5.58298842792446	5.54866120019307	5.62397824374978	5.75979200238801
+"CDADC1"	5.63282737911643	6.04348859193892	6.00445778696153	5.42121713771003	6.30430178002796	5.58463008023103	5.64499406550181	6.34156190890843	5.99532939486252	6.46386734302109	5.78120670191213	6.09005004835432	5.76373977399218	5.5436504338005	5.47473412825121	6.13953684974652	6.09390397474836	6.11714875872578	6.0268456023735	6.2492527459663	6.26814122829331
+"CDAN1"	6.62537284963221	6.52598607144492	6.5464888413133	6.0491343973559	6.15599249360243	6.44987393323855	6.45840023076847	6.2775742785139	6.44351574123126	6.25337271699355	6.09142126174791	6.21756714705144	6.40348168927296	6.67369398074957	6.2601949537553	6.34927504545738	6.15762779916864	6.60984576259742	6.2767458039355	6.06329938644556	6.16664891370833
+"CDC123"	8.91876055715345	8.89139467019824	8.99274175084351	8.58784672433922	9.1060423355433	8.50988466596225	8.52084195399275	8.78624912345649	8.73168374300035	9.2301979303737	8.89556767780614	8.95814312208781	8.58386977490814	8.57088808539863	8.85055003670381	9.00804029617613	8.76480863844663	9.10391578247291	8.75979126453143	9.28455661200099	9.23054985236831
+"CDC14A"	6.62221131979162	5.29115639572597	5.24368040973125	5.24264169686438	4.96017045869	5.62733341253091	5.50793586629803	5.91786541192224	5.42097861277574	5.17641958083274	5.46555912461503	5.09337284073017	5.10704313246016	5.43992322693993	5.25178810540357	4.96142716161453	5.21245442850134	4.75956764552189	5.21223780500496	5.21878618483782	4.81620172870255
+"CDC14B"	7.67236858342136	7.67872932051521	6.62197717551703	7.25868906685706	7.10454940057025	7.08449379943379	7.19160095870415	7.35592929390203	6.5989632598188	6.67088547571261	7.99303012287553	7.23135717628459	6.85341572841974	6.81023818258796	6.69068672767514	8.18583986872805	7.14101702965446	8.24918171239253	7.16366547734537	6.64360276077665	6.84486069787704
+"CDC14C"	2.88711711866865	2.76695544737905	2.99699779995728	2.82634882430391	2.75480748458166	2.93265315111108	2.99693358317421	2.70310834450341	3.10165635096214	2.81486392135864	2.73793627311904	2.91919447253495	2.85577320134603	2.81486392135864	2.7319495863442	2.81486392135864	2.81486392135864	2.78431048965403	2.99699779995728	2.62584422078507	2.78161807087009
+"CDC16"	8.19079554425386	8.25933556796971	8.18477825073369	7.94895910867927	8.05163364613302	7.55536642738593	7.44741407015946	8.45015949623339	7.68461784180736	7.85353882884105	8.49589236864815	8.12580934866721	7.49552318779688	8.01627276639598	7.95909084418295	8.34671708873069	7.90111310052767	8.55332258658982	8.04728713157353	8.27490191745781	7.91777164778058
+"CDC20"	4.70469661132433	5.10109199760062	4.82134691897943	4.83253003256814	5.13323580742127	5.03417112147171	5.09841067323483	4.57386576348067	5.03307793656219	4.89750172283585	4.85991104350558	4.71786871517006	4.98133784652227	5.08434163260989	4.63571294297669	5.48221038526629	4.90870172836384	5.88373620410391	4.75799280259008	4.76764009535909	4.6298907728146
+"CDC20B"	4.02647867087761	3.97912125144578	3.92523207444639	4.278486627382	4.11901575248718	3.99321485246642	4.25614365345637	4.06239889745532	4.08301570953323	4.01609021129873	3.63449819354834	4.0223507650592	3.87083741208515	4.36786054364144	4.06607137708237	4.07689871341135	4.03335515451184	3.98376252463525	4.19818030628423	4.20499717614651	4.36018768329104
+"CDC23"	5.31567737249135	6.15270588099181	6.10531954504497	5.87112885019804	6.11083239276531	4.97019718784385	4.80223909471499	5.70085583834396	5.65616939671006	5.77042730815758	5.86739878753109	5.99371804851581	5.76339134254358	4.73232192869975	5.78394535976431	5.9309194984026	5.87968741356221	5.78932174603426	5.70491146600838	5.67814595011061	5.87829167582127
+"CDC25A"	5.25929684572085	5.6265490974141	5.71870640178041	5.71870640178041	5.56362986235437	5.90443531749881	6.27113159730132	5.71870640178041	5.81928067364841	5.8638385463426	5.6990573002642	5.6205737259432	5.87974272841236	6.06325324211963	5.98936572448502	5.61499742447704	5.73671135674731	5.43622630796812	5.77977002753509	5.66760875821557	5.51931868488293
+"CDC25B"	9.42004378271755	8.90506474855944	9.05057313072233	8.99490945354876	8.79169662584939	9.28462208085217	8.88249142379384	9.15430013409084	8.5705045049738	8.85671379111448	9.25128683338939	8.93065506253743	9.02856470436905	8.95602716196901	9.04018882162936	9.19009522048522	8.97472857708504	9.3750009884031	9.09590279090211	9.35287216521312	8.92693368756394
+"CDC25C"	3.78991039316096	3.64491976744263	3.76080798194733	3.64516872911838	3.47457133016377	4.17904515377796	4.05711914382798	3.71563205934643	3.39999368305323	3.56436999728143	3.48158476105034	3.90845292934456	4.16089863856463	3.72415240338185	3.51686028861222	3.66076069256676	4.14823873175124	3.64750329188249	3.52999221605064	3.73280982313175	3.70579897947854
+"CDC27"	8.65073845876088	8.89110395541219	9.1893304750579	9.1848053735719	9.20011694647462	8.63350777799789	8.23145760488753	9.07783863794108	9.32106639102432	9.80444350401289	8.88773384605213	9.79696174484191	9.11020007321856	9.02633337732326	9.12598269218419	8.61467369430677	8.90520818812134	8.83141822881205	8.98671052611489	9.33100084350779	8.9081412855358
+"CDC34"	8.95449108598589	8.94893789308018	9.2847930349735	8.84321951225651	8.91796757101501	9.07719037280759	9.13865077758635	8.87112765734645	8.88280728550294	9.03964075481765	9.11536922431235	9.01519787912454	9.06657424416058	8.90819650850972	8.75655919448105	8.98303046955871	8.98595320816228	8.98585980341371	8.98585980341371	9.03829893577214	9.04386329514075
+"CDC37"	8.86701868420938	8.86096831229882	8.86258733041108	8.70965321448951	8.93600087910663	8.90809367993348	8.64435344457867	8.82805370887839	8.76965685959132	9.30469989244481	8.883707977337	9.13442806303807	8.75231759463852	8.79814570855419	8.55987415292661	8.73376895915251	9.04670548630496	8.99773069295522	8.65369871487594	9.47429602345488	9.27265671727868
+"CDC37L1"	7.48002211484443	7.76332952958436	7.84986603943838	7.59427419430411	8.32821091849662	7.28599236195993	7.40984688685213	7.80025998397768	7.97743435469225	8.16115974638205	7.5329137446867	8.11074908328886	7.5384551882212	7.18246563225409	7.35147763060244	7.88423012677562	7.90181668297466	8.22234368221072	7.77017186823223	8.26347790394163	8.09506649861159
+"CDC40"	5.39664240868982	5.49719403833842	5.63282737911643	5.34133502800237	6.10949663819462	4.50357347108192	5.03642560899034	5.52304318066758	5.63282737911643	6.1681672941051	5.66647661561453	6.11868595787383	5.63282737911643	5.11025852985413	5.37891370512834	5.69518494021162	5.85494673368489	6.21984213972608	5.59409575638718	5.8804853132765	6.35602728486599
+"CDC42-IT1"	4.62374930219914	4.66518620560486	5.0350148042682	4.94508387093036	5.00635794791122	4.88404137171768	4.66904620522562	4.6556320174051	4.2947976575029	4.22389794356153	4.61793662987541	4.39119259949758	4.38501799271155	4.71399186719866	4.62309315260586	4.65053635469634	4.59629564692997	4.85380356437746	4.65053635469634	4.68966246362145	4.52825058108194
+"CDC42BPA"	7.17849102778823	7.3651261113759	7.5872765529887	7.49367451217346	7.10480217441127	8.24025005129087	7.73377763175495	7.3857453589108	7.14056364351917	6.54921047264435	7.37780814450381	7.45625143402098	7.29708699031822	7.3651261113759	7.68564977299784	7.0901591450905	7.27438204071981	7.78628760330984	7.37089987041959	6.60300114038521	6.96175456981793
+"CDC42BPB"	9.78081183622208	9.6966050999927	9.84186458435842	9.78573934260051	9.63886739656691	9.68444602168809	9.7992234932108	9.41255957999989	9.10170717094365	9.48641638963931	9.79628134717967	9.65264694597768	9.61759268537101	9.58327339849977	8.89483238303598	9.65724224754435	9.76476245537559	9.81172854331697	9.5799559556654	9.78606727464002	9.48009237643575
+"CDC42BPG"	5.17998106202321	5.40849942705485	5.53294215327753	5.783377876678	5.1716869876303	5.51318385298785	5.71504906718951	5.51789294534837	5.45124121372987	5.62534162890887	5.54967519258263	5.71992964397231	5.77495753531868	5.76651041583081	5.56828134214039	5.54108291518953	5.5483519103528	5.25215436115587	5.7662511083396	5.35808813133191	5.47446886453846
+"CDC42EP1"	8.26212358810443	8.29090176457645	7.790972059106	7.88706838210012	7.73645070460085	8.6789262514894	7.81481424646219	8.00290913229352	7.21351760081154	7.58362506920792	9.21954749667466	7.98808626019164	7.45848224275285	8.06611176718553	7.18900632446597	9.56017363329225	7.58310278993384	9.27319387372141	7.82247126444846	7.57535344379281	7.56349759229146
+"CDC42EP3"	6.34687596056084	6.82766172511703	7.83353120339158	6.79783474021821	7.44800419891969	6.84921971507387	5.4706165991608	6.48974549478149	7.12365466375338	7.36784257977315	6.07098384353626	6.98999810486942	6.67343016130843	6.53799049826266	6.81104829838943	5.78385634066862	6.64607013618114	6.9465153338309	6.88910754040668	7.5785350468057	6.93250408479113
+"CDC42EP4"	10.9708836114026	10.0384171662406	9.5941623458005	9.8547536855673	9.22928944534747	9.50032111403612	10.8456585556945	10.1312524012193	9.89078022527216	9.75417745780995	10.1356348714572	9.447320803513	9.30020310684826	9.95574048086722	9.69424415245664	9.24799146848374	9.60569514631162	9.20038095657015	9.95248219300492	9.50898577649568	9.05774535636227
+"CDC42SE1"	5.37762077691893	5.26621918091551	5.0365639109404	5.45378624646014	5.23689744913594	5.81062290272336	6.11367082491704	6.23294780636052	5.38523121243663	5.25389088352488	5.56997219813958	5.42163840843875	5.59640973483775	5.66128153398499	5.43051388004196	5.59536986174416	5.42163840843875	4.88939113597008	5.25556437883837	5.39625626299888	5.35306969089832
+"CDC42SE2"	8.65991961934742	8.79363953175103	7.79873279377562	8.51499643657636	8.62191357737949	7.69791584204236	8.3670372306339	8.55335843933691	8.16211307726888	9.00321442944898	8.67622472736803	9.06800417857012	7.88589172090077	7.51010609900737	8.14430925093185	9.30601178858579	8.80706789480093	9.0249190647038	8.09248843375567	8.75644343308773	9.15251146799207
+"CDC45"	5.11182198287353	4.57539135416617	5.10849536035503	5.0393033456981	5.2774096662604	4.95825439671131	5.25810203773968	4.97440307299867	5.1114774672557	5.0915002441417	4.83851391392687	5.14231624062466	5.10959447554912	5.27339663880939	5.2910902355464	4.74266246054952	5.39509270059476	4.89602481623174	5.04003097162902	4.78004674735877	4.81539451211614
+"CDC5L"	8.05431096977434	8.04509401976007	7.15319175363745	7.71591370262102	8.17889981765765	6.98746501097793	7.45656761042141	7.81039440086906	7.81274948286317	8.23329894542507	7.89716216926521	8.02452509698395	7.44189168584145	7.78432213265699	7.26907253982794	8.45769197062156	7.87587464564962	8.16308486388001	7.85751726051365	8.38414202137598	8.15124114353369
+"CDC6"	3.61803346766979	3.70700274871399	4.24042743450653	4.0338543999803	3.92286704342121	4.07792606942969	3.96700484883562	3.91477199424418	4.80934921873607	4.09514946159252	3.80224231833669	4.22644346857337	4.09113953699138	4.03925292946717	4.01615771219074	3.60170807378676	3.87192823810301	4.00469379059507	4.21139377384591	4.23642353909373	3.97160665659173
+"CDC7"	6.54809057595236	7.29089489149732	7.5442097780607	6.57567331422391	7.44370998665092	6.57887476059699	5.63575848756459	7.24952719918611	6.85508989269955	7.29047759337594	5.96089023851869	7.0056809752497	6.84357505972641	6.71954107016126	7.08732493346523	6.60275939273307	6.80620647061034	6.49090315192398	6.5621406958841	6.82713157197742	7.08732493346523
+"CDC73"	7.58822506920986	7.1971309498656	7.21824643243498	7.0428988357604	7.32069459781919	7.16890036182812	7.45032178114566	7.3537584893618	7.17709416998702	7.33981286493353	7.46994926703818	7.05831680567978	6.82548012353098	7.0147992611727	7.25493729131031	7.565848035493	7.22410212265046	7.84400451020228	7.35210107214404	6.81407889575768	6.95133479169007
+"CDCA2"	4.26193979485168	3.96778661641724	4.03476949862611	4.06162664938399	3.9263321921091	4.26099138093149	4.36379080743309	4.00779471512966	3.90846353184179	4.03979539245002	4.03476949862611	3.98448643340737	4.1533193345373	4.4922334649977	4.00714117727421	4.03476949862611	4.12924840653799	3.92497930847059	4.03285771125267	3.91568865579331	4.03476949862611
+"CDCA3"	5.55564179253366	5.50076182085259	5.50076182085259	5.63752171200974	5.35814302379941	5.92888124990113	5.60976579410756	5.51488646403836	5.50076182085259	5.4583433736286	5.1246113983788	5.28297544679651	5.807607867407	5.65569596376045	5.50448766792459	5.63305540643778	5.64137749940576	5.47154331192167	5.41071150858003	5.30671131642377	5.26867542756182
+"CDCA4"	6.79881000033035	6.62875171226049	6.6549016506469	6.56459614296297	6.62650181024067	6.52296462691691	6.37333157415609	6.53851495905203	6.54214711931377	6.54682538711563	6.5433018226543	6.55580824907662	6.61352332460759	6.55906097447666	6.45203565931143	6.82614374647166	6.52120500091274	6.43561677626003	6.52181696743686	6.55906097447666	6.55906097447666
+"CDCA5"	5.93823984797619	5.88628691005839	6.17846498515209	5.93823984797619	5.96763951744212	5.64372325546358	5.75958698744197	5.9423607371163	5.94347749257532	6.27643044696216	5.56458709019212	5.85388118319566	5.63955881011262	5.83163391517761	6.12256313147947	6.10467594284262	5.98911807986124	5.82751757736139	5.5576675691611	6.35772373926861	6.0086192360048
+"CDCA7"	4.30923821664179	4.3370980132943	4.45736741872128	4.15169929615811	4.19706914708147	4.14818129827374	3.59927064209611	4.59895038405555	4.02902103000701	4.4546878117658	4.88126709956252	4.0721462206273	3.96792160950404	3.84481658886295	3.95097727705318	4.4069031106609	4.31128766255426	4.21420214565405	4.33727458371067	4.18465316550663	4.14702771328492
+"CDCA7L"	6.87571707320408	6.48490672443337	6.56932446136299	5.57301168890544	6.16625421708886	6.82433420177639	6.51166132831683	6.50562538675028	5.43996302883252	6.00508510601828	6.77462090629079	5.76811334057324	5.80728627184308	6.56568740142853	5.88074778531044	7.2547855769254	6.16625421708886	7.00228561690616	5.87967077110831	5.86322489964875	5.24743227517089
+"CDCA8"	5.69272201184508	5.73971809950586	5.44807318637274	6.01449884054671	5.69272201184508	6.18499854154296	5.5494285364617	5.56197980648376	5.73971809950586	5.70758098599806	5.64644444909643	5.86907348063397	5.91592870807142	5.88969768056236	5.7662511083396	6.09658324819631	5.81635789221626	5.79754874099587	5.68863996231876	5.55781187816657	5.82658621008208
+"CDCP1"	4.15924021026093	4.33523277084006	4.05321480218393	4.25408553534381	4.04272152825911	4.60236923978117	4.90376185452031	4.16214943296172	4.4350854062471	4.33019754479114	4.08989494249242	4.23378847986107	4.50742806334295	4.62142070330257	4.40118214471393	4.27579411953742	4.26772524071264	4.1020803834345	4.31931672018357	4.35004089429002	4.240295357092
+"CDH1"	5.16018723825534	5.81646750554552	5.539555732014	4.61926466551171	5.26427929001776	5.5941733389914	4.5230901068054	5.01157594020772	4.26338679236605	4.680174644688	6.8313185847744	4.80706251475589	4.8660609021848	5.15197123878717	4.82311286976504	6.02179024104766	5.04597074233082	6.64128800698041	5.08851572628485	6.69757725505746	5.0026962845415
+"CDH10"	8.09553934848725	8.97987151878531	9.46384150640091	9.05992565630406	9.2814345696292	8.97962170495257	8.78328469114593	9.2391281527817	9.36388237616145	9.09993453909082	8.42692915674836	9.11150256444498	9.00364660519353	8.84379246246952	9.18489050452503	8.11479378689785	9.5686630255224	8.6712280146872	9.00799807194877	9.21210904039099	8.98600519821201
+"CDH11"	9.05463883810881	8.47039714775785	8.46521510318674	7.9984726038741	8.18964243231459	7.91406571608329	8.16610383812738	8.33137091732818	7.91035818032352	8.05019458974605	8.580301682173	7.77397337541794	8.02764027152522	7.9148652958585	7.95118157683752	8.49716687399613	7.97959215969233	8.52472216589003	7.73093130920497	8.6552639394976	8.15623584022508
+"CDH12"	5.6481168963453	6.9392332129122	7.19821013899923	6.52764423324376	7.78545354073302	6.61899963734308	5.08073971406068	6.45889859285898	7.03688334441696	6.96826171103592	6.23656964183288	7.30557471563855	6.25944705414308	5.71884688554487	7.07382453951793	6.54975513663223	7.28767585087418	6.80857858735326	6.53507532019626	7.02096541162306	7.22887751667864
+"CDH15"	6.50487675672998	6.50979814059491	6.83648207648932	6.66193525874713	6.51842173865867	7.15816342783829	7.61625844091993	6.60745692537963	6.92173753617018	6.81239335782539	6.57705191545803	6.76713541945268	7.05886376335372	6.84596139802317	6.89044621510322	6.45797034348466	6.81704661625207	6.52362485868496	7.21236394632651	6.62884440012652	6.93690913241846
+"CDH16"	4.77919115558491	5.12593684319866	4.95769421209795	5.30908807187063	5.21391294751135	5.36503082268566	5.19077883166541	5.1144732099844	5.09288263401321	5.25335445214603	5.11973154783792	5.13572494834785	5.13724903855725	5.39311359928189	5.12593684319866	5.12575826151828	5.15201991758	5.06386908864952	5.23655809873929	5.1238427758066	4.95683066604873
+"CDH17"	4.24046276685749	4.4625619681731	4.45361938027558	4.47403171921159	4.57335369382659	4.29989880935565	4.43997767611285	4.58698672149609	4.50120148394105	4.39276873571136	4.38195702000894	4.28726187073625	4.47349314998586	4.67968866385794	4.37842619047973	4.43997767611285	4.4315661298355	4.21008311301067	4.49649710233376	4.33935085455048	4.76834512102449
+"CDH18"	7.88276626389793	8.80955225268708	9.52426729164191	9.04964787190042	9.69912857912527	9.14704675843567	7.97094092198329	8.89683568924205	9.45048746734466	9.43561594668707	8.02852708193484	9.52391274967893	9.02638086110352	8.43410512427924	9.07185187426359	8.42766838536291	9.4051815783946	8.77965933853456	9.23012732307334	9.47662677874851	9.24745310094936
+"CDH19"	7.33948035271429	7.34751026214201	7.04746146638357	7.42631605673944	7.21130600299313	8.86943441888412	6.32311973085484	7.48965351804766	5.88063878089817	6.39312357826245	8.47762452442561	7.14991074998831	6.61117173985054	7.08500073260235	6.87566098274636	8.79778482074064	6.64668965309118	9.34781562541694	6.8416435176701	5.92528825328802	5.91641484966955
+"CDH2"	10.2349159891298	10.001550844545	10.4160006068339	10.1179601888866	9.93562437339051	10.2272059805267	10.200597860519	10.1055582372472	10.2415434503788	9.70677930522572	9.990236332424	9.74447259988312	10.3193295729614	10.2602826994222	10.4053255567317	9.58250100501927	10.0471971842336	9.78467696153112	10.0533399166833	9.72512032543805	9.65972485767816
+"CDH20"	5.01530838855801	5.06787368459337	5.79044740561121	4.70045154884046	6.07128043558461	5.01207673638469	5.15221355803518	5.13044827317012	4.87246662698845	5.10839822769583	5.05204655490962	4.29363779427801	4.69006019195225	4.72407194646958	4.70563290742522	5.29188732783783	4.97078882060694	7.14010106234666	4.77704309915659	4.3538130087329	4.23946647701669
+"CDH22"	7.33575173648757	7.49816154365618	8.15842861926107	7.67760033148008	7.99762482784024	7.47871279276037	7.7342671789695	7.70259973347404	7.94281503111839	8.0771026939315	7.38908304104313	8.1364122204569	7.78794248692631	7.61790590327054	7.7342671789695	7.32760591484622	7.7852078507617	7.65798130120534	7.72137836037855	8.3508617672874	8.00555478363361
+"CDH23"	5.35220600396274	4.75527994182356	5.03939415354581	5.05225525858255	4.73495585792858	4.60704530685295	5.76438403566662	4.99882422699334	5.32482218241479	5.15128557102643	4.99051192184575	5.26248436223865	5.39420512188913	5.40703579565302	5.38727038489589	5.14117214253995	5.36883595846047	5.14117214253995	4.75325098026587	4.97888008447217	5.14117214253995
+"CDH24"	6.92347093105779	7.23356162130845	7.00114192010537	7.13008850416525	6.86947185469356	7.44232329732386	7.69404463857339	6.82031994819549	7.00114192010537	6.83888057171678	6.86057437517048	6.89786898015496	7.15379947460203	7.44560908085665	6.89979272537213	6.93157289162881	7.12508872826573	6.765355936636	6.92413774252889	6.93107782818805	6.98246990711943
+"CDH26"	4.80505993928175	4.57512919121534	4.68395543472089	4.80505993928175	4.72106136051719	4.92836393560855	5.21109590658462	5.08434163260989	5.18884173470284	4.29714413006545	4.71081720168649	4.71361240819559	5.17592756959619	5.32478077672028	4.90122496205643	4.65029288499483	4.78729035059451	4.87317533732812	4.94357175598176	4.61187956153566	4.54714633005973
+"CDH3"	6.45783936345323	6.74026484809245	7.06707966559297	6.64668965309118	6.78730823471249	6.51704401341485	6.16625421708886	6.63152371745931	6.59259230992476	6.59624234477861	6.50046735626238	6.96883434033398	6.3643480768716	6.63760398442765	6.51090820999459	6.59481557744371	6.9060249087034	6.63989966367417	7.01471524836509	6.76746269979913	6.59361593165903
+"CDH5"	8.37992838748771	6.43283266690957	5.95832310449793	5.77654975083217	6.48659855365978	8.00027248363069	6.71955404869417	6.82691293870625	5.70140533757045	6.10053967691606	6.56314618334871	6.41066940762706	6.45931568659436	7.46511953920862	5.42683236134584	5.85742753018923	6.57736589260091	6.31964669685772	5.64403721255566	6.93851373461651	7.37900329667054
+"CDH6"	7.66660614696494	7.26618389777966	7.53850989257244	7.03191629759844	7.50833875334276	8.02156361153524	7.12879835083362	7.0679696417676	7.33942721357773	7.3305449316845	6.9899549692615	7.04897499739994	7.28555594462081	7.58790219679425	7.7955272600769	6.92862081147049	7.42285388524652	7.05210051100209	7.12721056863652	7.2210707769658	7.61357010643123
+"CDH7"	5.59805628512409	6.23325918658951	6.62144749780823	6.75726614654149	6.99568462969547	6.46796722447891	5.80796727439807	6.71179047554354	6.67453090427133	6.8742283179955	5.89966039498373	6.94033251472032	6.92435754071723	6.57893284762264	6.75521163829652	6.27071636103556	6.83179739386361	5.88574837649732	6.46202937878792	7.29003926131206	6.92200576568539
+"CDH8"	6.1440864840776	7.35869311262717	7.83680363766074	7.16910708941773	7.8153341570231	6.83953315206505	6.00051757019774	7.28919176618796	7.56271271880913	7.87429643945547	6.70579919937004	8.23205601019119	6.78800560080266	6.43541580180959	7.21638716504734	6.89539225951907	7.69789630247072	7.23230897461677	7.32783994154618	8.34503116440412	7.5449476632693
+"CDH9"	6.15491329985921	7.16899454199732	7.56283233833345	6.94816053035147	7.54103713127177	6.60545226349503	6.04330128011501	6.94816053035147	7.19223571362352	6.92069015338476	6.69637232625638	7.00800620686916	6.88339364373439	6.31429396779173	6.88388170087791	6.47791988867081	7.43025648409286	6.76736806984011	6.94816053035147	6.99525712686044	7.09215197681655
+"CDHR1"	6.52927463642599	6.88430325739106	7.55016048325558	6.79711804440429	6.81110916462199	7.41347820996767	6.38586673202084	6.60289875599576	6.76784602449142	6.62286348101493	6.75292117945517	6.81168957923041	6.81110916462199	6.76330272140262	6.79971107791878	6.81110916462199	6.55760306617614	7.22368697787108	6.49321459295897	7.17103920518401	7.21924740133543
+"CDHR2"	6.29847693031149	6.38750883584766	6.44958244921992	6.50562538675028	6.5438175421223	6.600705209969	6.90429664201503	6.55719109289092	6.32527258451215	6.6624506151866	6.55914978371709	6.54795717076859	6.820816400855	6.59659581767159	6.54795717076859	6.56258220507945	6.58053383247617	6.44942971748237	6.69673596894808	6.46881126950057	6.56342586747504
+"CDHR3"	6.16655283834802	6.23215096981965	6.11833526734235	6.03837270463874	5.63247365315003	5.55277032465201	6.00677085868762	5.99591149657582	6.08993542693613	5.84820134851224	6.2379289878671	6.2030763496523	5.8647681247336	5.63552386672923	6.2894329325118	5.80622258938402	6.13306377355623	6.09168497290215	6.16613524867	5.84114071662765	6.08993542693613
+"CDIN1"	4.4338526546948	4.59148941380856	4.3736110097978	4.67806116827465	4.6022512197054	4.94163011909645	4.59551580913734	4.42339905383521	4.45546999791552	4.26654170452776	4.42954535109306	4.51202467801024	4.51513078293122	4.50005050975481	4.15871293994809	4.61702281474878	4.51604023205666	4.68786081113621	4.38061479468548	4.56921481933408	4.48198744785256
+"CDIPT"	10.8810822128939	10.8810822128939	11.1267084864448	10.8853870524248	10.8988327217338	10.7674802980796	10.8837154744116	10.7397588824836	10.9374379559825	10.952480201411	10.7619939253909	10.8810822128939	10.8810822128939	10.7404203040241	10.8131371186483	10.7933941792529	11.0010161133009	10.880608584477	10.8300259091386	11.006329666947	10.9975870658592
+"CDIPTOSP"	5.53717210459911	5.4998973937745	5.72581806322345	5.48371078121319	5.51540915808667	5.82416115798827	5.44546889564962	5.47310806811364	5.68109173289717	5.35613241605432	5.46651582407048	5.37348342461878	5.47748622259478	5.75119953434977	5.45544550147764	5.35689238543937	5.45011630278879	5.14350318026461	5.26690141042234	5.36226018130712	5.37410186847919
+"CDK1"	3.66236974299369	3.6517417240549	3.69148083418874	3.69317052263105	3.8207223862653	4.22527920693167	3.68723992643213	3.76831319935298	3.49222746261918	3.61605595049262	3.61227486771356	3.55693767920206	3.66838617116164	3.53254153471907	3.5795924230689	3.48667423981549	3.43697342589519	4.1235553209443	3.47967964098149	3.97790939034367	3.36246014846847
+"CDK10"	7.47251241081674	7.06990580984524	7.89111085023785	7.48999259323526	7.30680963034404	7.89383419044647	7.58197337268436	7.6427949340876	7.7857648939336	7.13766291390872	7.44261054928839	7.21929438984106	7.95935790739023	7.58831453500158	7.8810281599247	6.69278850017827	7.48999259323526	7.31090420994869	7.49925964363624	6.90783036771399	7.44863649947869
+"CDK12"	6.72960070749209	6.44473936329693	6.22531546023933	5.88658084463562	6.63774856055973	6.40417413943938	5.93393045425665	6.39839535389415	6.44168121086589	6.43909217491704	6.42716678958973	6.52822135366404	5.97552727712254	5.97957764931021	6.07356076135391	6.73233776398254	6.56060789086254	6.93614457000902	6.08579035952264	6.71508084225471	6.43984165660087
+"CDK13"	10.329918545909	10.4064646157561	10.0954943973042	10.7385277344761	9.56176317129442	10.0938061190716	10.7457753692127	10.6610148473524	10.693031442813	9.90647035266251	10.7959292552832	10.1139167497876	10.98553606197	10.7857790186804	11.1625626629377	9.9205329954407	10.3665891008664	9.4916296181304	10.5662698440459	9.64515475588769	10.1835113281603
+"CDK13-DT"	3.57389920828042	3.90712376435011	3.80682746632561	3.92174089804363	3.88558076465794	4.18984740409631	3.79254544455777	3.57863068555034	3.71817556160749	3.76796824924071	3.59292206467501	3.77282913062563	3.93918826201729	3.9660072090085	3.82450403202823	3.76391305382867	3.82690650566678	3.6336994947521	3.84400642511771	3.78482041710908	3.84746626312461
+"CDK14"	6.75155484878334	7.11401553203198	6.50459351208603	7.21314785587453	8.0373844301913	6.19421538586713	6.0084586155056	7.26077745485965	7.66909712586355	8.79844803573744	6.77394089304925	8.65312289344365	7.29336367154408	6.68045470284776	7.47655396187006	7.61493495168436	7.75546936851725	6.87720136665594	7.21814713219277	8.42549136445357	8.65403149619326
+"CDK15"	4.4338526546948	4.9324260009556	4.78132631146701	5.13772312547975	5.09480407914544	4.62962854156298	4.84548151239681	4.84894029150286	4.9567908091023	4.9324260009556	4.74914669529392	5.02137038904013	5.05145666780714	4.792041545333	5.00228107649103	4.9837344170074	5.01018805057835	4.47913451410546	5.13836369425297	4.94936370266715	5.11309872350768
+"CDK16"	8.52520316047332	8.72453471374293	9.15272780096142	8.63825799884878	8.98838655586409	8.99598627968708	8.741487603327	8.4548967687201	8.85089811874226	8.75871948824907	8.61394480634364	8.83058348787218	8.75292543414467	8.80568683018684	8.75489685502809	8.32831919939496	8.76819484156749	8.61994923544646	8.54102808815262	8.77545890727137	8.93937881350587
+"CDK17"	7.22431268017211	7.04350528621155	5.79007659364638	6.66511818960931	7.24906535164074	6.59361593165903	6.26780063978684	6.99762459111081	6.65489407316474	7.05362957891513	7.34579711267132	7.12675247052257	6.16674910992255	5.97750819508714	6.13959821173203	7.49010364915905	6.79387634570757	7.55594882121319	6.71634046564564	6.84146792638897	7.3046762396744
+"CDK18"	8.54130554457786	8.66406038393468	8.67732172278368	8.80639079896562	8.30617903874179	10.0452870775277	8.43194522503887	8.2149794517845	7.65070528768608	8.19069108712256	9.49027886421908	8.01162423612523	8.46609766413167	8.60900685773457	8.6957677687779	10.2585258325503	8.47659997730462	10.2444381907421	8.89134264568382	7.96791960723634	8.86961921488631
+"CDK19"	6.39515453753997	6.72215921664424	6.64735136077455	6.94141221140498	6.68778135016328	7.55097190065993	6.63222743523683	6.7276257951246	5.9213781800224	6.05713431062497	7.5568265977061	6.50326429794027	6.8184460952364	6.95492980761133	6.84735774073151	7.24017270962028	6.72215921664424	7.4486930308488	6.7086276771071	5.33691139859507	6.08064552766537
+"CDK2"	6.49011813639974	5.54065589651943	5.07280164396866	5.80628691585991	5.46087057897356	6.46200264656766	6.25648013653409	7.18094630031069	5.76084103921442	5.87089997766938	5.54990828585464	6.03688301717586	5.89375402722957	5.92181603201899	5.68177762473625	5.34306276004736	6.13993203039866	5.1805457763234	6.00406754373707	6.01209444544569	5.68808427635194
+"CDK20"	7.57505632352894	7.86935379681758	8.1967601461716	7.82143338664233	8.35149213381072	7.67146316815586	7.4573037572065	7.83573109486537	8.10349599315878	8.18751270078484	7.77898561970696	8.3538631211831	7.65464374211522	7.51738732032612	7.71261152726175	7.9060683814224	7.855452281152	7.86837247370583	7.85731695891249	8.27075972423796	8.02361533678592
+"CDK2AP1"	12.1297055877865	11.8223615072866	11.4601372654371	12.0833398747428	11.4513113813186	11.571460022043	12.1092392349371	11.8299506699419	12.1526127185561	11.7125760211371	12.1717371973078	11.5498796252277	12.2309060045107	12.0624640029564	12.2852043816786	11.7589909200701	11.6838281337088	11.9846459320065	12.0598658723817	11.2648583014457	11.7721177619363
+"CDK2AP2"	8.5771058220225	7.79745283918749	7.7923125148443	8.43853149915759	7.59449462734449	8.56951642242955	8.89107895277159	8.27082994157086	7.98631228623471	7.57530797667489	8.05750658701634	7.84659295051005	8.30554682568067	8.2078395315054	8.33902885890858	8.0136805476153	7.7519644338432	8.1256295650603	8.47414973516461	8.20002180277538	7.81971556581178
+"CDK5"	8.35999393594308	9.26900903404674	9.53207525003293	9.14667571313969	9.86782793125564	9.33267594295264	8.63927794240018	9.01465082385146	9.60341357576539	10.0531584403269	8.69535962094828	9.67844229103781	9.34893788996256	9.02256758292382	9.35122411423404	9.03834774173543	9.46021551792003	9.40401942044005	9.25603816448751	9.93712445900066	9.73014585001861
+"CDK5R1"	6.09269925612562	6.4382790353052	6.09149565733145	6.74616541231751	6.91739848964501	6.21825076369429	6.39779831780258	6.32354757302222	7.00114192010537	7.51143597522003	6.05408170071199	7.85903520599946	6.40927047642139	6.17418741607321	6.3385554005971	6.86379759587198	6.86623285136468	6.35009412431617	6.71805126358483	7.7021952679651	7.88259159565749
+"CDK5R2"	6.77938287467454	7.6778958288801	8.71420865417629	7.56870645748419	8.07252910913443	7.61798857420576	7.22478009489727	7.32479653562528	7.36484183094712	7.86245388417171	7.42768605924201	7.99920402233254	7.85279207651243	7.29535367659481	7.38012935566095	7.00028031384192	7.68722648812464	7.70021192384175	7.21678762591054	8.24594536139378	7.84603579568885
+"CDK5RAP1"	8.34709676133518	8.30143379614677	8.53731760177504	8.09812444460333	8.32908799078774	8.20581272377841	8.00983815988424	8.06886940537184	8.39921924435449	8.38906861241681	8.21498915231157	8.32766285805897	7.9173914255178	8.38265572274429	8.19674586379706	8.42569116632044	8.27632407589957	8.50758616081015	8.40195684181743	8.32880921031395	8.28729350993505
+"CDK5RAP2"	8.38362342561948	7.7834756942191	7.56129544538472	7.65945818437033	7.22178638714773	7.9543592914595	7.63425043570484	7.5002513050001	7.60446453093646	7.14806435060663	8.29488109306429	7.36205329602535	7.47847546483896	7.79072481728866	7.23259001305975	8.06252893323889	7.57152818075731	8.01019905094262	7.72104289072996	7.03374870065572	7.17828478678844
+"CDK6"	7.09046470362789	7.15380049361175	7.33973105639574	6.81149954627696	7.2035109597751	8.21122799550925	7.16340215071273	7.21275851227008	7.04070058249175	6.27860551310649	7.05280551006781	6.58165485150229	7.72056840959464	6.92457666061465	7.65897495350672	7.27561926008343	6.96585487579743	8.16059005322132	6.98033590937714	6.54327913342848	6.46731749775333
+"CDK8"	7.08227567878989	7.076608418668	7.55027510229198	7.19827048245639	7.55525112533219	6.87044667918451	6.51212389322402	7.0898550910153	7.13864776932257	6.96645680901561	7.20299994955822	7.01377578133149	7.13322731951594	6.6851137824424	7.67616813724772	6.82076376560254	7.13717581818329	7.72404737973989	7.27191218060819	7.22814825992853	7.13515667846799
+"CDK9"	8.47178355634031	8.37837298767529	8.69682324032896	8.29913725093893	8.61093139383538	7.71755515538265	7.84223911570746	8.31711720565934	8.41023176692773	8.57580249779148	8.61770856242855	8.34929550728147	8.23843395792759	7.84713600193001	7.80032321328468	8.24607623761657	8.36617112671102	8.4698980657343	8.20109762695894	8.84743076840809	8.30540047847011
+"CDKAL1"	6.32277056303437	6.39333449869616	6.06644078495889	6.17704403348977	6.24703452682443	6.28567610105079	5.76133096974867	6.57000842297297	6.48895726360183	6.08565986469112	6.62249009445852	6.10381520449471	5.91806849759028	6.65021665874161	6.25145810483635	6.34382876696957	6.38340007371235	6.60424680594401	5.40982148853014	6.53366844097707	6.46739475331944
+"CDKL1"	5.54220713235552	6.53259054546832	6.53396168015816	6.4434739976108	7.13327806934401	6.34175133278165	5.72071887056668	6.37326265259781	6.50745882752229	6.81441198560994	6.04900198838007	6.71553378824847	6.74315204628169	6.03782907383596	6.54273435508417	5.89798455226751	6.48312234721925	6.74568355427667	6.50745882752229	6.89269076859777	6.6992576577583
+"CDKL2"	7.93485439156703	8.43013655326487	9.06229681989904	8.35983393290526	8.86847223197508	8.55780873405427	7.46065738725172	8.2663768957061	8.55462148166344	8.40880110220885	7.97132335738635	8.17449483096491	8.07509074785359	7.83585139990594	8.67272004020096	8.14756359902328	8.42590394867486	8.39212631959143	8.45278522888682	8.34770117924854	8.24637211183006
+"CDKL3"	4.6840004339526	5.02261399893943	4.6170836184393	4.59816678232039	5.02784532830082	4.76021242990336	4.82762889787384	5.05921993669438	4.2947976575029	4.75718596752359	4.7939943459758	4.8178646321896	5.01633175936175	4.46633577290988	5.02067083454994	4.97399921828424	4.78621878182456	4.9288283931948	4.81425514889345	4.74254922435158	4.76345665993479
+"CDKL5"	6.93811125598975	8.16082026720336	8.32844092085437	8.1762354675122	8.43499178719444	7.08449379943379	6.24308552576924	7.57495511559805	8.3920583799551	8.12548033369951	7.47124370573678	8.19261708613675	8.09870692009104	6.92765954754175	8.2085242339611	7.96206564266888	8.15267801808648	7.93244669867675	7.83443446317354	7.99444582680021	8.23149722252692
+"CDKN1A"	9.17113251982641	7.8167984928489	7.78118704155196	8.52769842802842	8.19857914713277	9.27889798083357	9.14134689836967	10.1847157047418	8.3684065982625	8.16009263566393	8.42549136445357	9.34675579550348	8.63085331576624	9.0085791460065	8.41260546447604	8.63655893738672	8.80573237257487	7.90147812219707	8.65641794659785	8.51984747408646	8.93990209191837
+"CDKN1B"	9.60834345767229	9.7347656925812	9.47820236164348	10.1012728030271	9.7226829352779	9.23077855882929	9.30752535169506	9.81145304312135	9.70269621982636	9.77568875624241	10.1178791896811	9.7442034270539	9.76638128288264	9.34603069976915	10.1057380865324	10.2765147546328	10.03155342074	10.3540588612964	9.96290484710106	9.37600702458673	9.53899661215862
+"CDKN2A"	6.88814819035171	6.96785645034111	7.1803355260751	7.07575150114008	7.00823577890729	7.77556397596407	7.32177002340957	7.14274392603524	7.13417406638994	7.07891498113306	6.82450629332652	7.41885032186157	7.22824510825969	7.42732362872912	7.16280060684098	6.97245174104677	7.10370146825387	6.63450590026127	7.13472130606009	7.07575150114008	6.94609631485691
+"CDKN2A-DT"	5.1445802238891	4.97078882060694	5.1284474129752	5.4899366037031	4.97078882060694	5.4259493127427	5.85234701612222	4.96530284883724	5.76358971521141	5.38550593340108	5.37292020522695	5.3746228844205	5.37529286268061	5.32270548127089	5.2644718831506	5.38040834844834	5.5081672986057	5.19251325885524	5.42801596276611	5.39854974839737	5.54947621264838
+"CDKN2AIP"	7.80825227160296	7.47227219203878	7.44230038447241	7.72558853468488	7.60384830214911	7.22626928857659	7.63274231492897	7.87157113659917	7.72099725829253	7.37118427631475	7.76545714165431	7.01694661304004	7.56333884909108	7.36826949560901	7.8304390144332	7.53625574956575	7.31818289431789	7.81319156309353	7.58417178424129	7.13468440210046	7.35648922359235
+"CDKN2AIPNL"	6.12059484398192	6.27922347210426	6.52842541229666	6.4598915380714	6.74265030805336	6.16445308318852	6.37527409448783	6.16542462820295	6.59906777896604	6.95203643008621	6.35341808114525	6.96696775545993	6.61327935532953	6.23669712286046	6.43566633909205	6.6594198272939	6.67954592436288	6.56607967333295	6.40382767411492	6.98989575336508	7.09955818580833
+"CDKN2B"	6.44691280025801	6.36787897562659	6.43197244081036	6.41835831675987	5.90664062841403	6.76597670751726	7.17367239744792	6.258452497631	6.41835831675987	6.39048099662621	6.15840852337376	6.53109269984917	6.6005319473517	6.55906097447666	6.24904676473029	6.12783088815322	6.32986010555793	6.11453271166276	6.56708372689246	6.54103016703492	6.23399041986079
+"CDKN2B-AS1"	5.43688173176093	5.59829963091465	5.31602223729497	5.40833497300699	5.73956728808337	5.57715781084357	5.41097393911752	5.25528262771225	5.67593138489352	5.33173152421091	5.2272095405193	5.37847424483133	5.53224395216068	5.34216995189596	5.42864910125026	5.59841909702929	5.69936081295393	5.49084138443653	5.24692226929823	5.03905226390127	5.19141683102604
+"CDKN2C"	7.49173930983301	7.23124092540993	6.61715697584803	7.07540549561806	6.95008835130189	7.26067476103407	7.68601489973839	7.40314832701428	7.21736195249309	6.81983328267635	7.62455160405319	6.76960975722318	7.5534270664443	6.91824970238002	7.63969249508143	7.19716351833085	7.0839875246391	7.70216402709319	7.59263336116668	6.20687152757111	6.24656554767192
+"CDKN2D"	7.472462885106	8.02069144709972	8.42337031631871	8.25622225044287	8.7699704450988	8.08976659642705	8.28818394285802	8.27171389240665	8.36313388196573	8.86845981853815	7.73024940948347	8.68431023940914	8.08990231887838	7.85241480863549	8.21937034031653	7.9430440282336	8.36498995293829	8.15598359121704	8.27171389240665	8.75458425101046	8.70912110478882
+"CDKN3"	5.77001484075164	5.81670578975294	5.49761922534707	5.52355815527228	6.21606397778379	4.62348709037366	5.03105437866112	5.56542597920447	5.40106110136331	6.5166522710264	5.18794874470776	6.04556522304074	5.27564607618636	5.41940850109184	5.42856341270059	5.92316971554713	5.43300576023898	5.50986060436158	5.31653306995043	6.10398645881546	5.92073033292202
+"CDNF"	3.43819753419747	3.49804802374771	3.48667864823013	3.21812016471968	3.34215571292522	3.33079415640074	3.06377834159774	3.28777397204045	3.1617373404167	3.37739959443099	4.24236401118387	3.2442486179767	3.42321805642461	3.34215571292522	3.26314202176356	3.49447149038078	3.17432969126669	3.52473947556004	3.18718090836566	3.27420848537286	3.34854465945986
+"CDO1"	9.06552206022335	9.26804898226903	9.15748259303011	9.33385186389608	9.57326485774767	7.98880095871663	8.47579272902107	9.28383758002911	9.84803629839222	9.68241853843899	9.19134341864173	9.44461497168797	9.40802020656605	8.4641942644708	9.42693224752386	8.90875622649091	9.36952917414063	9.13746344520209	9.42875209223405	9.45901235132985	9.61911910354072
+"CDON"	6.5970934233413	7.18793209890898	6.81788071923197	6.74026484809245	6.85453853748402	6.31487810148141	6.25614185807946	6.30622002146395	6.72451870972604	7.0425846248199	6.25330602505741	6.63113629720189	6.47118899843417	6.27707943486637	6.60727452463815	6.3434056830024	6.87851763369808	6.5133767518481	6.55903863781564	7.20532941106803	6.84879588980514
+"CDPF1"	6.55278546985806	6.62878971300503	6.81833989483244	6.42752605598529	6.67098338519396	6.82145769949996	6.72160184609887	6.50992765351899	6.5793184786918	6.44168585215469	6.97681309899379	6.58362259943909	6.2444828425885	6.54754051248217	5.99823795464544	6.98227422056426	6.24262071888236	6.6563116740265	6.55862489112335	6.71720205673661	6.47203128191346
+"CDR1"	4.93948932288375	5.19767666217803	5.3443388486846	5.60038169405972	7.62931109039295	5.25972848831531	4.9066257529828	5.53584279132252	4.8850042167289	6.6323663384169	5.48231096205479	7.12147354601354	6.3078402943502	5.65644870987224	5.52128244110953	5.37488339613248	6.67258917377912	7.26481489328176	6.46133942056394	4.57512919121534	5.17972674814118
+"CDR2"	6.78465929689199	7.40317830505647	7.72247965739496	7.33890971705349	7.92663316685394	7.6083000625517	7.18564402986247	7.2921672986382	7.84544375281345	7.65930685307476	6.79408770624317	7.4250710175082	7.88837298178756	7.2824341537391	7.92180766383385	6.75736239461615	7.8773165573295	7.16522752708564	7.42605735692926	7.54629984900764	7.75292779139701
+"CDR2-DT"	2.98540257861767	3.00170210473653	2.94906970106365	3.08295278983417	2.96044971977131	2.98952502160111	2.96044971977131	2.8790936820152	3.26219751606196	2.85134536733383	2.87549758423032	2.96797580816137	2.91419174836181	3.16716723561331	3.17506144424864	2.96490854546788	2.89872866945999	2.812579231049	3.32034000720251	2.96490854546788	2.94126195571374
+"CDR2L"	8.46062721028319	8.27193616595937	8.40334248425683	8.5364264679563	8.0665117765404	9.09351388837291	8.55804081719277	8.1164544516139	8.16040213253072	8.19472022772436	9.0535208273001	8.34765950056059	8.62143683418169	8.64953062153339	8.43548820211923	9.32091521021506	8.38673698965613	9.42682205149888	8.28444265041134	8.29915167746006	8.55476991326991
+"CDRT15L2"	4.44113146331006	4.39276054566433	4.56387244691598	4.16942464100362	4.30741813777294	5.18705726926548	5.38541019653554	4.4069475811496	4.65145942528096	4.52732099890066	4.28040652987569	4.51135640849843	4.59224927130308	4.75608120657583	4.83851391392687	4.30190092865378	4.32826589685585	4.42764418536644	4.7766969632639	4.60763598739939	4.31071763648373
+"CDS1"	8.81554609717097	8.54638230641234	9.20056334912222	8.57350573477144	9.18901598603521	7.51460042279975	8.12945633138391	8.71673130497292	9.10579732179514	9.25448071669086	8.0757806404951	8.84958313344306	8.84789678219576	7.82773671610854	9.06122696346184	8.55298009736019	9.1944412787009	8.62046069735331	8.72051312859486	9.61681856489579	9.23853308439607
+"CDS2"	8.03771718123265	7.98683160046739	7.86974012364128	7.7063948081823	7.94721739851863	7.9996104736941	7.08129659169587	7.91401453290117	7.29156390075225	8.21038517768852	8.02108002801461	8.10649560359799	7.72616200881463	7.1236105467691	7.47728044635679	8.38117188644119	7.77273979238533	8.37394790376777	7.6857427538433	8.16062262154394	7.93047035753757
+"CDT1"	6.00025976608255	6.24908443680458	6.28659383559825	6.44017628203158	6.27225131441596	6.74059409732269	6.32588893668124	6.06563133410516	6.22894975166585	6.0936531471507	5.78273886002568	6.2030763496523	6.50070714586771	6.82539866740211	6.19950512424678	6.24693126341998	6.19983711381017	5.98252049862206	5.97661434376673	6.2815357361548	6.13591381870954
+"CDV3"	7.24084827778488	6.48578893697711	4.93479448819335	6.33543995433461	6.22586587658811	5.76748574542168	6.53118220124775	6.54999176060591	6.25155158011896	6.80313380468457	6.80333309204545	6.55965061774787	6.21476293932617	6.33991549738274	6.08877813781325	6.86049861822343	6.39289764566168	6.45718866223774	6.55861712923821	6.7805871047657	7.06108698344566
+"CDX1"	7.43667842284748	7.41651638970501	7.24067394545855	7.43877660212891	7.4386447224559	7.47391046629883	7.61646089857534	7.5174564458856	7.53764641911044	7.33620237356031	7.3370917080034	7.25819524312401	7.47959436195541	7.81435365602717	7.28837390887778	7.44948075376018	7.43887625497278	7.27832926766583	7.17624475827319	7.30872995450235	7.4386447224559
+"CDX2"	6.25277479595666	6.30181884181404	6.35430717119677	6.35430717119677	6.37576404569434	6.67668185872803	6.76903463650498	6.34156305401094	6.60362356452	6.37462070741124	5.99494623875788	6.30046763703235	6.54550312908418	6.83898083849867	6.33826500249025	6.24854129318315	6.29970828684466	5.9721574541798	6.54638255415239	6.40881987666906	6.29114450707997
+"CDX4"	4.93848868575092	5.10756617369702	5.15726562461778	5.26432637126188	4.99896223058535	5.09122390903668	5.36788898712269	5.08434163260989	5.25255474757163	5.15726562461778	4.98953695470965	5.27857432417283	5.43317235613222	5.51641844267288	5.4585839040623	4.92632321431643	5.11398731704479	4.80845052964129	5.3360073161089	5.08232680449084	5.31558559521846
+"CDYL"	7.0932496609156	6.71862931711027	6.12850112730477	6.4011070398246	6.89084259732531	6.18229206826706	6.71230389767873	6.87486394110678	6.61199328951794	6.63251683742617	6.79349143837621	6.90832121629888	6.59719121774356	6.68215832631356	6.27871092845717	6.83394110133115	6.7126270907317	7.06827903728423	6.60865977914342	6.56460992320272	6.67539110563298
+"CDYL2"	8.41944938211878	8.18808689695086	8.85674908078282	8.8819485864518	9.01048371343636	8.96381886407867	8.09437225875136	8.59432861161746	9.47788724363071	8.88874946683517	7.48161741086864	8.81619888261223	8.89328389462034	8.66942212990268	9.0037741238859	7.55901408593781	9.12080914435826	8.47389029871175	8.7648016766658	9.20969719685771	8.81315237200116
+"CEACAM1"	5.07527160609147	4.06609648308313	3.96933399762724	4.10971937405069	4.2572884918141	4.73639832645146	4.4629553871	4.65848528111801	4.08591247364433	4.16000673474	4.106141889582	4.08502436499349	3.98144776797892	4.26326669179413	4.15871293994809	4.06916743642039	4.30291884282523	3.96549784431237	4.06489062093911	4.2328724072861	4.30291884282523
+"CEACAM19"	6.80520525648381	6.8854456951822	7.10220693747871	6.98104727286423	6.87980403148404	7.20486432691036	7.08329782352203	6.99610062992067	7.10398532631583	6.94481854392199	6.66718956168942	7.0038208925016	7.27890883516689	7.24413896177799	7.06669660621516	6.63360313764443	7.10906945772706	6.7206243119727	6.73682267661865	6.98387768123895	6.92766184495218
+"CEACAM3"	6.63785144420098	6.79602362030004	6.79583562656029	7.09156305493893	6.86251071682795	6.5437923863321	7.0839875246391	6.7924353519496	6.84029666635598	6.84496929924392	6.68879339091391	6.75644856586178	6.94111089096497	6.87972665251544	6.81578760457018	6.56777760043105	6.90630432636021	6.52752584486902	6.85315221310482	6.78206430457926	7.03959644617245
+"CEACAM5"	4.49314401043496	4.4315661298355	4.4315661298355	4.35926960481735	4.20809047564801	4.46928551818291	4.58630530638686	4.24911104538444	4.74118403922857	4.26297127430353	4.39730733360759	4.42111766735267	4.78348310439056	4.51916017447639	5.15391935487691	4.12452284429682	4.4315661298355	4.29621785881168	4.39835512953854	4.25728600625815	4.26574115481473
+"CEACAM6"	5.15807523794578	4.99797669619878	5.15807523794578	5.3587279742058	5.1212597567757	5.61655892752934	5.31271966148924	5.19620469390342	5.15807523794578	5.20847473111429	5.03560305334128	5.19635211661206	5.35079754149328	5.58341167913195	5.11934987371363	4.86770723772343	5.1262100808138	4.74844660797363	5.19291205827677	5.12390238676297	5.10450603413001
+"CEACAM7"	5.23307267986235	5.12072230375559	5.28370067920978	5.09091911274439	5.20329038986928	5.44061319479109	5.890668704224	5.20329038986928	4.88209490132586	5.1935618761223	4.99075916586194	5.23238985054819	5.20329038986928	5.68103777137192	4.9564735496566	5.34599912196244	5.25289949969584	4.93853000277085	4.91825982526387	5.20329038986928	5.20329038986928
+"CEACAM8"	4.18618580280816	3.42100185217091	3.3727134682672	3.38017253950481	3.2700563960421	3.45635913061899	3.53145626552871	3.78376030759064	3.12337349209608	3.61338339072447	3.38017253950481	3.29264078420421	3.35052748197681	3.38017253950481	3.45545820010969	3.06607186783462	3.43659821708578	3.39904133199251	3.17690756861877	3.24959600533768	3.35976957420666
+"CEBPA"	8.19617104994783	8.10731135736383	7.47281508690968	7.48943931931456	7.7370069565763	7.56483122423134	7.84747266882371	7.22007105508796	7.65186756457472	7.81737071762434	8.22437409536786	7.32345306761725	7.66266954337312	8.0420883751866	7.83344994575504	7.84312088060688	7.6484477526831	7.84140942769894	8.18713877452435	7.96252024693699	8.02775846910036
+"CEBPA-DT"	7.44456154529895	7.69763438615436	7.89946581535078	8.0540467455377	7.75995533144878	7.67562332608957	8.10487498241045	7.72803657392316	8.17257715076052	7.98737311112421	7.89144646250547	8.02809911834214	7.97840497345567	8.26468650560266	7.94255037524826	7.90855470556081	7.96730971736419	7.66362205558855	8.08036678388337	7.7822405519416	7.75679516356958
+"CEBPB"	11.2570355079443	9.70868390681687	9.76282718914988	10.6335418649857	10.1090403093262	10.4200940971039	10.5849645366626	11.4217471894913	10.6487423206308	10.2406219099772	9.8239470685094	10.4728940958729	10.7282099424507	10.6611801910719	10.7535692275029	9.51880434185164	10.6118325989415	9.84814810702841	10.5992068524122	10.3521494611306	10.7931192601294
+"CEBPD"	11.8278649178036	9.69515289157539	9.29746097639842	10.5807118372077	9.97460998401142	11.2599291436418	10.9249806183945	12.0619506310174	10.5356623551615	10.7167798615798	9.36523895037247	10.832166540011	10.6284982151186	10.7282221972431	10.5986512497069	9.32932153246397	11.3136246173488	9.61191432065296	11.3111554710656	11.0583943427413	10.4419577437375
+"CEBPE"	6.20613917267265	6.39035553618011	6.4372751368853	6.46804122362246	6.19865189336122	6.84795423378298	6.93631251890666	6.42879443093792	6.4943621101034	6.52372247771142	6.26142371778993	6.74299748546661	6.57932729928531	6.73906031201337	6.39272502463519	6.17388351644803	6.45168230849246	6.26774691958184	6.2695712821255	6.12283501952142	6.61566375566365
+"CEBPG"	8.16320551389628	7.86020583798785	7.8686398663505	8.12383219809761	8.19829735101764	8.19829735101764	8.49265179898397	8.54068056330541	8.6161515508651	8.21070447363306	7.84375757275892	8.00818777434004	8.59597975453621	8.20895224621936	9.24556724342678	7.33630981945391	8.25264317298918	8.17618667629684	8.42190404124431	8.19829735101764	8.09978372795853
+"CEBPZ"	7.9600067086162	7.6156870057137	7.74356411210387	7.62971609835305	7.6494216603797	7.69590995552471	7.66605605089778	7.92263549626391	7.84393712658716	7.58082389753571	7.79216921519341	7.60479133646663	7.69346072707376	7.74992261736346	7.97016257128696	7.56347520931658	7.25321541547476	7.78376188145566	7.71750478614749	7.69130234536572	7.3806576004415
+"CEBPZOS"	7.04029151883567	7.23431776786613	5.64404621316075	6.87993937502085	5.1939162369982	4.30150015687378	6.08569300244344	6.86344013078557	6.67453090427133	7.72605845304432	7.10206603951978	7.46001244989829	6.32804008770738	5.81100902281121	6.41804288553388	7.55039433938733	7.26271806503813	5.46915594614176	7.00616427793523	7.40085979686523	7.4386447224559
+"CECR2"	7.64024676531259	6.93346680525581	7.42316566751747	6.78953578471793	6.78611513479946	7.43011466584838	6.77015475387019	6.86273186932464	6.14117216891384	6.05375480333245	7.79233271334299	6.31906800469874	6.13890269141401	7.00060552815114	6.39266991599346	8.17378682038912	6.56221573154462	8.14810816272694	6.50486911363902	6.05354951798494	6.63289135116054
+"CECR3"	4.11582280062362	4.41754048685756	4.22134675470253	4.55518589378199	4.26242893480838	4.34460340481978	4.15892614287164	4.44170900677948	4.28615080017187	4.31639681742297	4.24448471295438	4.31639681742297	4.24966558444902	4.29938893389525	4.21033709205067	4.26511976336058	4.38990546847278	4.24652278561524	4.38810274196483	4.35508339900954	4.47800698002274
+"CECR9"	3.84864256174179	3.96394423015936	4.38353485400157	4.27848982068533	3.88575133880545	3.84232318792524	4.08760134636187	3.8816755388695	3.95915134821107	4.18634972654011	4.25228945519992	4.05691023851431	4.25964472169835	4.35051935803752	4.13342896198527	3.94382675442107	4.18363613484708	4.03979539245002	4.39031975116685	4.00893244425424	4.36421101271638
+"CEL"	6.5031843459351	6.24443397539332	6.39302100545728	6.84254865770342	5.97159928479041	6.34714188526856	7.0428988357604	5.79484862190047	6.86699326243085	5.46007963524087	6.2298705141594	5.65693129152899	7.17644535264035	6.52464550786287	6.99240662604835	6.07888654413568	5.92885126199413	5.98409474434096	6.46776254346853	5.94603007090639	6.21913481836384
+"CELA1"	5.77001484075164	5.83095552867225	5.64094477012233	6.0589274918503	5.71995703038407	5.99630448118136	6.38586673202084	6.08269393209196	5.95610731863351	5.94012709463831	5.59380386963549	6.06498089536692	6.15156335893447	6.10913903780317	6.25882965867614	5.69499461373009	5.95429916738632	5.32428769882073	5.96592807927678	5.91073806897853	5.98300972745356
+"CELA2B"	5.0617477925606	5.17038549518208	5.3060759235269	5.25693246214303	4.92082743715291	5.61370200871259	5.84555986653515	5.31690211053071	5.33028663461103	5.39890493383813	5.13590903481712	5.30723285127683	5.5497122233182	5.74842643806231	5.20345200396349	5.02474323387389	5.25693246214303	5.06494596033049	5.46015907845258	5.18477604335383	5.18888558895602
+"CELF1"	8.00762909950432	7.89768902191194	7.41075183793824	7.61468050215657	7.7996649890153	7.06518661054288	7.39189325318648	7.95892655889014	7.82234829853948	8.21873699478935	7.8334346741539	8.44355921860917	7.29337850158763	7.22881424063549	7.37695673254632	7.6057877377528	8.14064145384833	7.58615234731714	7.67908200671861	8.11178859124344	8.42173034558048
+"CELF2"	9.25969749955268	9.9333949085695	10.4712364152427	10.2238503393819	10.0567702546347	9.50397284316514	9.15278585797688	9.83235252585402	10.1580331867822	9.80482039389112	9.80626396631782	10.0713664446272	10.2149712489596	9.73166054075563	10.232464073232	8.6891781258994	9.94031164560173	9.35906910482663	10.0552950294295	9.70539611030868	9.57072937498624
+"CELF2-AS1"	5.31360934368482	5.31360934368482	5.16400529330496	5.54358098656059	5.29426508015929	5.10168564144652	5.1376145645309	5.39558907304943	5.37409075500165	5.37175164127375	5.19435482813955	5.22025635773318	5.37319840973656	5.52634063022512	5.37238898183201	5.82065105318921	5.45781524656197	4.83373915484706	5.24074431838101	5.07476297475179	5.31360934368482
+"CELF3"	7.76059081353896	8.4526205908799	8.31759759353346	8.49892793791004	8.03623690651595	8.58418019274295	8.56843181651097	8.36238815402765	8.21498365853964	8.20483391310134	7.9919613616468	8.20483391310134	8.63501803348771	8.56774207420195	8.36019461688834	7.33870939829101	8.18474649840707	7.57971413578552	8.16062262154394	8.32400386793127	7.99151626071024
+"CELF4"	6.30211164464045	7.6847518509401	7.77231565630813	7.62731793548938	8.54382454443383	7.271897575194	7.01910152388539	7.59179939005199	8.18195244522137	8.71484834594468	7.23299345755831	8.72155964073681	7.24174405899156	6.83958714807013	7.41790411692979	7.70626419148636	8.3107258294661	7.83012200932207	7.97840189050777	8.97837587544511	8.55450055124439
+"CELF5"	5.41355861276045	6.38750883584766	7.07135815612316	6.62756372526795	6.95031025359426	6.48877182023788	6.14375416775009	6.18358555839061	6.88916241969494	7.19846129176491	5.89850231485806	7.17608510962976	5.95678306536732	6.0351093323686	5.95157175462186	6.48659855365978	7.05369858372587	6.00540547068941	6.57655706131889	7.38127776867144	6.96429190845319
+"CELSR1"	4.55303168828946	4.55198354228982	4.3176134752677	4.52888800595076	4.29761750692003	4.44625854925941	4.54511048325883	4.57512919121534	4.49685430174641	4.25501038074665	4.4614065134103	4.65226970266897	5.11385143446051	4.52888800595076	4.87425349485605	4.47325957403255	4.5045348600304	4.34623576678804	4.6988854028247	4.537699768961	4.57395473928517
+"CELSR2"	9.85460293180088	10.272747988408	10.3049903452482	10.0546549427978	10.3954896836591	10.468849051407	9.83123327584509	9.66775144570726	10.2067083596659	10.2901272922824	10.1918903181341	10.1130059014406	10.2889508199085	10.153775262539	9.81906901980886	10.3769847045723	10.4282540060714	10.5931322903927	9.65972283441058	10.2785395308942	10.3554150109434
+"CELSR3"	7.73249160511467	8.1927113788449	8.64421578134246	8.59440538386416	8.19590577029716	8.86722251767212	8.51995075305771	8.06996204934344	8.57332016957108	8.18468365475522	7.91257873111929	7.94055350909631	8.68397446710775	8.69983392004501	8.5121207627631	7.28995451429877	8.35674087740858	7.94759491406636	8.30785125895082	8.24818250364214	8.02831887866946
+"CEMIP"	7.12196683775377	7.64364421749704	7.23326797485974	6.56955513248201	7.37882190891814	6.43923700254858	6.41958488356578	7.05431537897466	6.96240917733725	9.1627317814788	6.95153080369182	7.25474899631235	7.08601155870924	6.69549208014473	7.0916392599616	6.66361346294453	7.26352938549215	6.82758708980638	8.30408207281061	9.93706857870996	6.88796595294079
+"CEMIP2"	7.50407075823034	7.02507544696864	6.97118411148573	7.51409800331626	7.10156620874067	7.90664109213263	6.97352842920314	7.53624849049879	7.9346494285035	7.31906589687254	6.96834409920144	7.29739528764	7.68417000179718	7.54686008332152	7.76752790356997	6.62819185007427	7.69050205229861	7.01133472132355	7.30653801157624	7.16162337226947	7.68892339726131
+"CEMP1"	5.95568285574055	5.95070511535684	6.20176577588461	6.36102495020303	6.01727640804396	6.74791722489928	6.96448035081356	6.12317609181344	6.42506219156565	6.49871609625964	6.21028854954362	6.27500930406032	6.47041984704298	6.63955110680959	6.25751180664559	5.91390763365484	6.41755486876755	5.85449012640677	6.50486911363902	6.30997109772858	6.34015157481723
+"CEND1"	9.24806411137643	9.48880881954167	10.0478125790887	9.73405988483011	10.0579104358808	9.86374192288722	9.70266884433961	9.5713880753904	9.89296662965632	10.1493495658305	9.31137014131431	10.112399233562	10.0749743937622	9.74264666447696	9.85504105770906	9.34269071491841	10.0481963879748	9.71205705308492	9.81724931751986	10.2257219781341	10.2409074187633
+"CENPA"	5.36082033345385	5.27016562038163	5.12020833374618	5.57236728513918	5.38153027792265	5.78986407767237	5.71895584167292	5.76708295613619	5.42399299840503	5.42399299840503	5.32233203125237	5.18102825460594	5.68252365059641	5.69441480731557	5.47341387146505	5.37310598306732	5.3973348872181	5.42399299840503	5.42524687603376	5.28238179076921	5.35853229886033
+"CENPB"	8.45752012011903	8.14902394508279	8.06972070556863	8.17093749083519	7.9303184867554	9.27686056678327	8.85727690777264	7.86121127729238	7.71232340697802	7.90721357558249	8.73117033042077	7.88523583697458	8.38363516751545	8.63371347184608	8.24704520189841	8.34880711698643	7.67606916218947	8.62625292209046	8.11278164800454	7.68510598450208	8.07659591757842
+"CENPBD1P"	5.55890411844152	5.57940657416067	5.54910493398249	5.84074344169447	5.80013575197996	5.1128286804182	5.52751035604257	5.01759215935017	6.02982133211066	6.12919209140591	5.80967342831065	5.18047672669901	5.41987105647889	5.89276121434065	5.7662511083396	5.39116599041135	5.09858603158931	5.81235704337606	5.67461059957541	5.91705017891384	5.98583408584385
+"CENPBD2P"	8.53202515856842	8.9420389303971	8.25704497671076	8.89826393242865	7.86966236028895	8.74236512134162	8.88346808539207	8.92575480588692	9.1922407509544	8.71972965185204	8.71344285248782	8.53250602334241	9.30366563259897	8.85244235303203	9.21132380855846	8.03364720778949	8.90318298189631	7.62974810166255	8.52801666614987	9.02679566696581	8.7756343667217
+"CENPE"	3.99462636955708	4.19818030628423	3.92452936772681	4.05303004506265	4.54751080496412	4.17966255446298	3.94299651480525	4.31314395569532	3.97867801143387	4.00934873563369	3.97468135930501	4.12884487127932	3.92240057407112	3.85672452776117	3.88573601478755	4.49434031861617	4.01904798428427	4.07153941734288	4.12313089681381	4.39939265491213	3.96714601929344
+"CENPF"	5.82193928621508	5.89240474035611	5.96481542061263	5.8704121990033	6.28410638404352	5.79653348478028	5.93839080718925	5.8704121990033	6.08187205090449	6.36251091810487	5.32455363998291	5.89191127747714	5.77593329109142	5.70775421663578	6.18570906035171	5.66924473452819	5.95889382060497	5.48634465268428	5.65245402465796	6.10050753698444	6.10769449676968
+"CENPH"	3.98630048732397	4.07795917277368	4.0220244629186	3.97544810306913	4.14961427799913	3.6863037145277	4.06778017497698	3.87661100939894	3.96304844709082	4.32327852143334	4.07825296707038	4.12110616635721	4.3176675408692	4.10332633555873	3.48555257401776	4.08377215234948	3.96333190432569	4.21317561927116	3.98544605296826	4.03154795917815	4.01818399645116
+"CENPI"	3.82738696460419	3.98689035532691	3.88200441951434	4.1653551096494	3.94847753638272	3.93205026886095	3.94941080689915	3.97729698053652	3.89135750569871	4.05647155354326	4.43286674986809	4.28205935670546	4.12111016678412	3.97359739060758	4.08760134636187	4.196903080926	4.05647155354326	3.7637109810728	3.87361700707099	3.96606048330709	3.9082713608616
+"CENPJ"	6.78779616401902	6.5069832056242	7.31472428248331	7.37830031683861	6.96093634079562	7.1461815282102	6.65595863652486	7.11698967709983	7.06643904555226	6.67251186063467	6.74240566195381	6.95587266774022	6.92629794042088	6.93472603069857	7.24437672166547	6.68641452765161	6.81867970763771	7.41757151971784	6.98699012279035	6.65087838752108	6.66132567384156
+"CENPK"	3.29623748418382	3.21871246493887	3.45131332587516	3.0145244825242	3.57783470539799	3.32886926138282	3.28989719313415	3.28989719313415	3.24230196145342	3.38659147975186	3.50117372901666	3.43502085057358	3.15340857651599	3.3482570429277	3.45370778355585	3.19581390902447	3.25014896948536	3.37507626434096	3.11108634669333	3.30975075018205	3.18702406845981
+"CENPL"	4.18446173326585	4.23885526441363	4.26953958992509	4.56951970244402	4.21324374783043	4.02940158894978	4.25676530912314	4.11612126385351	4.45392902976386	4.16325644402003	4.38995231000643	4.18933217590459	4.8084759810973	4.53064911556029	4.87765081220766	4.17006364422673	4.26673979881187	4.405834654864	4.40938713467325	4.08991070323547	3.98176644628585
+"CENPM"	5.17829743832841	5.31026989345146	5.27398455276002	5.1877890785198	4.87318475438139	5.25174025628403	5.74877570424016	4.77923548961813	5.2269586746559	5.19795281154509	5.11790256356789	5.13773414294355	5.48865078823482	5.07988764400238	5.20044519107311	4.98184875148081	5.18598645970616	4.99169548668545	5.26283563735747	5.12412882071819	5.2992386944742
+"CENPO"	6.7579821835884	6.791696548148	6.79879678547765	6.94281933401923	6.46700521023497	7.0648041058726	7.40981678739136	6.72668453750029	6.81312184193276	7.01344658419965	6.70385648033415	6.81397511843541	6.89199404717497	6.94919089389541	6.79769306520316	6.56515516487877	6.80299773685823	6.36518168044999	6.87733475376485	6.72244094818121	6.85822150403938
+"CENPQ"	3.86671641352149	3.80641989531736	3.56065432494343	3.70301990420991	3.9312188970851	3.84800253670753	3.54711036099641	3.85953672333276	3.56396748316513	3.67375569522885	4.20451843702289	3.59495191572079	3.33716653357524	3.55141854765508	3.59269482201184	4.3352576366336	3.92216177577978	4.28548222381314	3.85011607650132	3.69401691748882	3.50403639110449
+"CENPS"	6.41793365044457	6.28931135726076	6.91760601774613	6.53834358998134	7.04774264928659	6.60866156440245	6.02765007509794	5.94310351818348	7.00652830259667	6.85197207026665	6.33177383087069	6.33571552327933	6.31010160026735	6.21371603827763	6.93811125598975	6.1268006466138	6.07305026487316	6.41793365044457	6.24624496249475	6.8383661080877	6.49842401475597
+"CENPT"	7.67508465410158	7.61372380109575	8.11792381044399	7.52559019850847	7.66504093305682	8.10834996565026	7.59429770433005	7.37924726620644	7.24518098037366	7.69221674026155	7.56621213143784	7.85524449024941	7.53241332822691	7.67751107606251	7.19719903379735	7.65209127280956	7.58662415092434	7.8363715671411	7.56892980547839	7.79026608941276	7.49751008696669
+"CENPU"	6.13758047301405	6.05214296115774	5.57694269698419	5.70375042911413	5.44754833931149	4.70081712139099	5.43263315065143	5.6607631018608	5.650368767747	5.59938308262344	6.30571275298563	5.7249225816053	5.79523779872644	5.41525512251652	5.80360155347344	6.13922436859426	5.69860065853504	5.81312003908949	5.74401248742171	5.6095739051271	5.49164538854594
+"CENPV"	8.20570452640994	8.38069761192269	8.60564821835125	8.15615728736762	8.10764564202229	8.08915081553006	8.53208860627009	8.35380393392835	8.51102377118637	7.82662864145158	8.35154383782093	8.36447414086814	8.29798739974046	8.22762814615927	8.86652547487022	8.31580270814623	8.08825278450003	8.48437685424329	8.23944654967655	8.18656070626622	7.98852677934468
+"CENPW"	4.35271889335208	4.60649587388742	4.39670546189567	4.13581454976238	4.83532863965432	4.39349812801418	4.4028117598258	4.34227119376949	4.22460367515205	4.45643883992312	4.32170109765277	4.57591018888484	4.55364167724129	4.4058350970198	4.39080862617443	4.43997767611285	4.43997767611285	4.75166235684561	4.19818030628423	4.87910187457303	4.59551626236332
+"CENPX"	8.85671927459948	8.46905457760826	8.77026852602222	8.72408355379249	8.70981627114461	8.83817268993946	9.19406241135085	8.66252891209885	8.93177277385768	8.6468053544611	8.55351564814808	8.51400354339258	8.57616675390065	8.82102892766754	8.77669501213353	8.70283897480851	8.63987178361618	8.54263785338181	8.51730245248076	8.85543009566742	8.3125147584533
+"CEP104"	5.65486274555287	5.40140965727359	5.2959536581184	5.47914963520706	5.40014042780379	5.07007928731772	5.55890411844152	5.25268673150736	5.4521406459556	5.10850843195197	6.23227488941423	4.88688454177154	5.50878396002478	5.32333082744844	5.67944529554426	5.80499579256462	5.33787589224278	6.21329659479243	5.30022995191996	4.97312944308501	5.40267353544845
+"CEP112"	3.5815047136083	3.30251853735996	3.66499949557315	3.27420848537286	3.37581866128031	3.53048042529815	3.12321571457383	3.11872247512402	3.31592054858109	3.12916858118217	3.19314810379911	3.72557494241792	3.22067740302741	3.59486117854811	3.28462534111453	2.98793563392557	3.45803187015462	2.96749783918317	3.20605789673589	3.20918512090085	2.86114062535416
+"CEP120"	4.4338526546948	4.47049954373902	3.95272456453209	4.38868458282386	4.82429038708531	4.07792606942969	4.4354487103288	4.20479628536753	4.4846806942569	4.82535837783201	4.73585283400626	4.34634699370544	3.97723544643213	3.99362500764525	4.01819792829192	4.80833596063831	4.2024586968135	5.65185939587789	4.34634699370544	4.58743233223335	4.7860541345888
+"CEP126"	7.24798556561319	7.48180905380494	7.84078791260447	7.77778973137511	7.78227075215615	7.26862707500322	6.31781278336437	7.60631829126407	8.36948456144291	8.03712291266128	7.69831440772105	7.89360083316084	7.94670340041134	6.79402913781226	8.15148728126092	7.03959295001968	8.23916034148348	7.46516500605559	7.95071654754257	8.07328174443331	7.70866025545411
+"CEP128"	4.68945997716078	3.82038853932866	3.97492874307653	4.42143515106554	4.15746661357604	4.4303241995405	3.81106736216892	4.26449044263842	3.88480506495068	4.00469379059507	4.2348842870881	3.90302899243287	3.90641364449707	4.19997228659998	3.84646629704877	4.39871862747254	4.09223828351816	4.56003625753293	3.98544605296826	4.60795994561607	3.87328808306214
+"CEP131"	6.68783044621888	6.16393555280431	6.71455533599159	6.18509131106337	5.857210229726	6.55547359700932	6.38717797204677	6.24533970727445	6.24533970727445	6.25275719280506	6.44506622023964	6.0945472585307	6.21741198800125	6.40170838368003	5.94681918439467	6.24343928447773	6.16114253984924	6.38175328692918	5.91699893351674	6.24533970727445	6.24533970727445
+"CEP135"	3.31102936051787	3.21254438179188	3.29636748184847	3.22569488504146	3.22569488504146	3.22428124335753	3.40263837565403	3.22569488504146	3.22569488504146	3.03137854751021	3.64934718164962	3.25594235210667	3.04649028639206	3.29821488594209	3.16342847703933	3.39690216461734	3.57787556855344	3.2812470705248	3.25291865463404	3.21375335521233	2.93539098319886
+"CEP152"	6.59618694300563	5.55460738537665	5.62890226377958	6.14505941677971	5.62965989889936	6.08920469652546	6.16986583283359	6.90891240518412	5.95188341898556	5.16320999107959	5.79692761963893	5.50473154652571	6.05236525566131	5.92254511761608	5.96901748620995	5.85969714224886	5.97390655803812	6.03117408183412	6.08752903165698	5.5469463898663	5.29960567360126
+"CEP162"	5.94694026061769	5.96010355639544	6.16293513647809	5.70366699260726	5.77055301488612	5.38223133664643	5.684413417675	6.03419139609067	5.53966302419116	5.55486891714387	6.20739455501711	5.79142681444615	5.89937959054926	5.97601975343846	5.92722167188438	5.89937959054926	5.89937959054926	5.91224291547109	6.07716663210593	5.66468277785415	5.9420458256851
+"CEP164"	8.13862138759792	8.19910541897856	8.69061342898035	7.87305229284237	8.14138591922082	8.71321189549479	7.82809973638331	7.91838998102254	7.49032311883627	7.28936887914518	8.151675735138	7.38827501748196	7.80391789619958	8.09429852487188	7.79447615658057	7.39464655593067	7.61371487960969	8.23229209559046	7.86458010469265	7.42386094011225	7.21205349700244
+"CEP170B"	9.03691179493063	9.50488093516182	10.1743162230226	9.64317523260284	9.81945334356042	9.70181776085497	9.30241919736272	9.26996969290321	9.74816563722795	9.86249909424823	9.22203649502168	9.74758447650116	9.66602346541728	9.19698763525112	9.22438161547825	9.1174174769492	9.79914924373183	9.25607238406945	9.4299414886475	9.8240252170616	9.90720968956804
+"CEP19"	7.35004610051482	6.89399226439845	7.21136846668994	7.30429883272397	7.47548261404081	6.51001301135737	7.16257919072947	6.99202711259677	7.64657800876475	7.41828816513136	6.76198748231286	6.99368251385089	7.59840902343826	7.28106568612132	7.74464771698815	6.79218255413643	7.10460047299542	7.11520461729968	7.21136846668994	7.44266337432912	7.46558878131676
+"CEP192"	6.90163409253851	6.56802940812751	6.69443596620188	5.97673418469044	6.87980403148404	6.16830731399397	5.95705008295882	6.37685765988798	6.60917771052526	6.15551110617624	7.18566643703838	6.19431165314172	5.99586238477464	6.17965327220732	6.3538642282239	7.8709261792878	6.32389812253292	7.73281459930701	6.46809371241148	6.72382136400464	6.66773986545282
+"CEP250"	6.54286447917343	6.79929588063092	6.42606561664432	6.83454232665822	6.56567170014739	6.86864606580134	6.79042341905457	6.5504845788816	6.48878710764393	6.46800307321123	6.43030197821708	6.50057432413384	6.795943895308	6.90790040308903	6.67938904951929	6.59742452508364	6.48529645104201	6.31634243946408	6.6159273359131	6.54638920037409	7.10491948600813
+"CEP290"	5.57498491894799	5.43770696201439	6.03745602197053	5.56580597948293	5.93295033311674	5.87250301651367	5.23114118805756	5.82401940412532	5.499661135083	5.45334734258193	6.15185913572519	5.6734779603414	5.25534487895101	5.66084478010062	5.57648178454279	5.33222100133545	5.23897278654052	5.70016805073843	5.57369946084659	5.64249936781113	5.31509166232278
+"CEP295"	7.50996568480448	7.53122043900165	8.02722171227281	7.5087114209401	7.72080909421915	7.97174795150285	7.47229995143436	7.73281459930701	7.44003396973694	7.34251836609935	7.59523537845607	7.58465061463356	7.64424783299634	7.87107902514485	7.72796207711049	7.30783827228251	7.56013121073945	7.68648347651159	7.45429157633548	7.36035271123391	7.56510552167775
+"CEP350"	8.8418578979812	8.19051425038916	8.56667202720832	8.71934318396715	8.77902608579323	9.4627935903579	8.88542652035699	8.72372442159572	8.57466870342591	8.05802483347608	8.57721669178088	8.14625740163133	8.78449906670452	9.36039024405408	9.0299396533857	8.08547333037047	8.36376587967777	8.3131387788292	8.47460281484024	8.10803396752143	7.95112529287128
+"CEP41"	6.81811835936188	8.08709216827169	8.13588113384698	7.7909256564994	8.15652190395813	6.999789005008	6.34512596464865	7.40669961101901	8.09390705475705	8.11056020984764	7.31420877285021	7.42085181226264	7.66729498196601	6.95703483007389	7.62195918639791	8.10639295699391	7.79992911794072	7.76707252830118	7.75340883492766	8.2239274358336	7.96243985670901
+"CEP43"	6.23342227693832	6.443834933189	6.35899513032958	6.21590410902691	6.56384292709276	5.73112526671992	5.91581785191487	6.03854717070923	6.4684284303616	6.98501794927294	6.50332423086185	6.47820304400618	6.49332711084657	6.02771030027081	6.10904868092022	6.15569693836323	6.4802119591126	6.21083798487806	6.40026879424713	6.65233896511488	6.55605081814144
+"CEP44"	6.70486837134754	6.7575916496889	6.87889237663975	6.53706890834272	6.6287937777612	6.46217258772679	6.15398279336752	6.79215506274925	6.37019294852435	6.08361367529484	7.29176934645896	6.42026776228568	5.68081469330809	6.17418039620451	6.18483849908828	7.91366434445362	6.48932207055459	7.51927780856075	6.7443279665473	5.95930816788303	6.0669606957209
+"CEP55"	3.46548081900656	3.18434073194306	3.00693550362543	3.07051354930088	3.00989611162963	3.08410942392958	2.95068346627755	2.99245884840149	3.12273731786154	3.13645256648828	2.98949361852797	3.19671933113436	3.15872824037562	3.21804742922087	3.06568020964214	2.90350014597259	2.9818180470715	3.03879640242367	3.106322686483	3.03723937461756	3.12493532679924
+"CEP57"	6.25720784446508	6.24134467482484	6.40564734016514	6.15493526187145	7.12327723676927	6.43178186349523	6.29983261993577	6.53851495905203	6.39426546991586	7.19745454459483	7.19745454459483	6.43622311196802	6.17438671277236	6.59222911666843	6.3854804921659	5.89024105306108	6.11420235420243	6.72109471843014	7.02073434595626	6.51445927437161	6.19531930743278
+"CEP57L1"	4.83851391392687	5.34234276386183	4.84340536433202	5.28948197829506	5.14750999315558	5.1573391501258	5.52673003160235	5.11429833921859	5.3728889843024	5.31621295947272	5.26427272135521	5.39362856834475	5.17531102246592	5.1914400868482	5.20819964996157	5.15358650487898	5.3655701043143	5.08322185900661	5.09997873768808	5.61012850859291	5.20819964996157
+"CEP63"	5.47883097762873	5.06829273232656	5.65050430471387	5.27242104783098	5.85361728806922	5.1504677673451	4.93627636866228	5.14940350817697	5.77039735878153	5.36676553286731	5.36676553286731	5.61226127972902	4.93377259474303	4.94188126900436	5.47879721503726	5.36676553286731	5.18519477423433	6.00507130174045	5.63728805237773	5.18486848290308	5.35696938682009
+"CEP68"	8.03769869385863	7.55628865922918	7.30601642910054	7.43100498114516	7.91386022875829	7.15945256512089	7.00748859051456	7.57806857372251	7.20699443408532	7.91661896228908	7.93161790237891	7.88026119833987	6.90787714974593	6.98604704312176	6.99499914624499	7.7833680635938	7.52128893262929	7.59633808994742	7.70327846190622	8.12316768149471	7.85275401500398
+"CEP70"	6.36017278949439	6.24106808908707	6.00181514517156	6.34148353262083	6.44437734416914	5.77872950452485	6.01086834687073	6.35346723828212	6.3671152382963	6.82808271102552	6.32753024819734	6.07431037845991	5.82951644172344	5.60251880731883	6.18544302698855	6.12152048616596	5.98195862516118	6.3495952144874	6.31489327190597	6.18544302698855	6.00924821088837
+"CEP72"	5.70461264217176	6.25729763631304	6.36486959114329	5.73169577894023	6.30698653378351	6.05218905682394	5.13818334828065	5.98280395730033	5.5709012226492	5.90274898176353	6.02701865833567	6.11184314503655	5.75533784258059	5.47238404453623	5.48326762642323	6.74411523989293	6.03889999307631	6.44413405451894	5.80229292288971	6.05543606587764	5.98280395730033
+"CEP76"	5.65884472288226	5.74280624615354	5.75049682197843	6.00964464300795	5.87436630634534	5.4840127703208	5.45116886686102	5.8830127128458	6.52295595321596	5.85542981096245	6.07323841141969	5.40365682798207	6.14149869453723	5.40744592298552	6.29768875179388	5.68981279872008	6.00320415345987	6.4517342361419	5.72684455807345	6.04005227607778	6.05856156578485
+"CEP78"	8.84221988946246	7.73154228572349	8.18254296533432	7.85565971058193	7.84450266663425	7.55101203239866	7.89383530581458	7.78668192285848	7.91106448342957	7.22649049415986	8.14256352933512	7.35687435698437	7.23548499287307	7.74499821771587	7.80849926015147	8.05519259208643	7.36993855644805	8.24180517173185	7.93553237125275	7.56641594451586	7.43911970744033
+"CEP83"	5.09331020839767	5.39576317200021	5.88482793588155	5.03356163147609	5.75283353477966	5.10468966676151	4.92467758921921	5.31042197992167	5.3973348872181	5.27175568106059	5.75345939960383	4.91273133555188	5.65541269852651	4.84390715969909	5.61058372835986	5.6918941577774	5.08368241903118	5.80157129575956	5.04669117713425	5.70222249423665	5.47228216783856
+"CEP83-DT"	5.803242390751	5.94610033055296	6.06664628294237	5.96157336177905	5.96157336177905	6.14612992440157	6.50431641222612	5.76915413924906	6.04627617292977	5.98288072982568	5.76088420846695	5.87744766203564	6.00756214972535	6.28798724681054	5.89448366640491	5.91531539036954	5.88977586520221	5.79744018789612	6.04730636192225	5.91117387204704	5.90842610064427
+"CEP85"	6.75810652402405	7.61831847594813	7.06204790862196	7.09358462997541	7.39177820507361	7.13153995519733	6.96380394575892	6.93924224438342	7.01624825727926	6.84402162005849	7.42445157357589	6.82806347970346	6.68658620267005	6.99229802987625	6.95764634608308	8.163244287504	7.06204790862196	8.36670730649226	7.09555279928406	7.07637200547968	7.32773518389366
+"CEP85L"	8.10187229639893	8.11778491672053	8.47517918073898	7.89726642102917	8.04181077123315	8.27179292091676	8.09480119482759	8.16698084282414	8.10823429562479	7.41001384653196	8.24682618952873	8.06855337850835	8.16045855793364	7.90692736225383	8.4738129818177	7.88571564886711	7.84952022997548	8.28253365065925	8.05020574227699	7.75619794670569	7.59724574502414
+"CEP89"	4.59382466774957	4.57973067507447	3.88830111076062	4.07839105687639	3.69761765655141	4.18343837384301	3.95673292309359	4.33594929321553	4.21971147402758	4.08033969382203	4.54162663719824	4.50027435686551	4.32374928598613	4.18006446457415	4.39985282585924	4.03928901394435	4.20845431951751	4.3433312871769	4.29328487575893	4.19891211760165	3.99425066838706
+"CEP95"	4.51848071528213	4.60221817805741	4.55581466169876	4.99741717485195	4.21529347259198	4.77913530770127	4.49701438354924	4.81573891804093	4.82403426448688	4.64875796472794	5.12744534135625	5.17360407288167	4.87822341305159	4.79918145153602	4.78447994247241	4.58265841493176	4.85395321899473	4.33244018801479	4.90798792481306	4.69835071651201	4.65917752083599
+"CEP97"	6.96115224465494	7.67379349365589	7.39693934994152	7.89091672606847	7.2495924807404	7.03109079954069	6.41787769655111	7.18328253911291	7.40294547570942	7.21523007196719	7.96786270772039	7.10590354689552	7.91523177480382	7.45108149971768	7.72272689189594	8.08798561695149	7.58931741512086	8.27816993661952	7.39693934994152	6.57525923068691	7.29915779794472
+"CEPT1"	8.40497619235657	8.15058639476979	8.30054397960401	8.48614133563487	7.82080571870764	7.15251624991838	8.21078105268886	8.36056224305699	8.26886608426932	7.89961380248881	8.3170911916391	7.99132804323213	8.1158006047275	7.88471665358379	8.55388129801901	8.40574417151411	7.95151552440739	8.49542501542432	8.36273096601243	8.11247465170621	7.70523509169084
+"CER1"	4.84706712934558	5.03779799161224	4.98200908134609	5.16543861346453	5.25444086060315	5.05685943439717	5.10669786300691	4.90970770436995	4.95648756124822	4.99169548668545	4.8400384407039	4.99799283463947	5.06015177745508	5.24983423807294	4.88042843497562	4.89254519239867	5.02840583321513	4.70822266460181	4.97774436450135	4.85398747644692	4.99799283463947
+"CERCAM"	10.1834657453747	10.2657602252849	10.0160871873343	9.85589487765412	9.4731810264486	9.65200227534279	8.40688775210089	9.37559233511656	8.5052424059258	8.69998622516358	11.1743648159642	9.65200227534279	8.95936455028448	9.86936064929535	8.34328305426699	11.6629465476608	9.43056490072733	10.7409322288846	9.54704401597658	8.99019567679962	10.3187486981828
+"CERK"	9.33832472655967	8.75458977463901	9.20579593667498	8.62294017457086	9.23203579669571	8.59239712589637	8.74543687500556	8.52185858031966	8.94808438911435	9.19339577346514	8.49024171949069	8.86567855218362	8.91003238789583	8.63224701081877	9.06393471503954	8.69377679090773	9.08060954640308	9.00810265440444	8.81815772595463	9.4040488051828	9.22915354809943
+"CERNA1"	3.58299235081582	4.20568541811654	4.41609379831438	3.80178679885111	4.86833710457384	3.74892457271344	3.32215024975604	3.66003815606062	3.46924752939726	4.31651503772798	3.66076069256676	3.99550469525468	4.23558707275819	3.73645053945307	3.65113054853012	3.40076475614583	3.94584787118038	4.14428505498712	3.68716952163064	4.17522218894123	3.74475754570292
+"CEROX1"	10.1644417217043	10.4354367749601	10.4957816288855	10.174979072692	9.86625806548089	10.8362953708262	9.94279621852498	10.233452521816	10.0360958144339	9.4865830399733	10.5384635088961	9.68467586566305	10.1097668130016	10.457739942193	10.1975782171669	10.7157532440842	10.0844369086051	10.8023273703464	10.1747672873952	9.7808674944495	9.50036303231185
+"CERS1"	9.20656207804224	8.5297813737968	8.65934488024125	8.87652739318215	8.23911623073742	8.90420848483157	9.22643185126493	8.96037928953579	8.77415279736773	8.55116843691441	8.96008657634093	8.60436326161114	8.70153166633519	8.97018315462717	9.07301027028953	8.1745622737043	8.53195500699241	8.61703454955111	8.91736684796212	8.47353555554375	8.47383977173907
+"CERS2"	10.5338413195888	10.1466258093704	9.34229662843579	9.93150235994734	9.50307598500893	10.1406071092865	10.0998889606791	9.86056248774167	9.28040296144152	9.70404322412378	10.6882818814211	9.68129692517449	9.56484766014316	10.0340132917586	9.51894928173554	11.2023507831553	9.57638335302718	11.0424116609142	10.0557545504231	9.66735062614782	9.53246684453732
+"CERS3"	5.59062495347552	5.47099865333773	5.33648897500677	5.54527328825675	5.47099865333773	5.54827577906566	5.59897790518908	5.38883401741738	5.45124121372987	5.44198784075355	5.18130496341125	5.46927700921456	5.71364627180899	5.84217539426533	5.42445155656241	5.61422826083359	5.52714164735196	5.41701513549977	5.56126894741741	5.36082508446875	5.61135270717122
+"CERS4"	7.14682516136809	6.55379199834713	6.74901252271489	6.70390579367241	6.30158736102348	7.47527589346772	6.78704958814415	6.66691085177717	6.36592227485074	6.80513623353624	7.23379171537659	6.38791421527255	6.79015666489124	6.6999591281904	6.7597834803713	7.15397436670307	6.29879160735454	7.48502822624363	6.76900513316155	6.3891490449573	6.42515415767605
+"CERS5"	5.90128126021503	6.80682541233038	7.08489743528147	6.18454268929983	5.94125317532222	6.03509168042267	5.76254736772091	5.98480831270255	5.43042522758644	6.54165026078654	7.05034247878443	6.50254165606946	5.3864147933572	5.59511467732499	5.46176102932682	6.50820303886802	6.86700085759526	7.25901770046301	6.15280353122745	6.33104855556774	6.20310197990203
+"CERS6"	4.47370261903041	4.76858859572363	4.46686313498454	4.94563567097634	5.5502475833866	4.16807094612159	4.59178380551789	4.7471899943355	4.2947976575029	5.6453754647806	4.74908902467559	5.22025635773318	4.34068170635287	4.12981651342373	4.46081817739939	4.71053247114581	4.83851391392687	4.80615518774958	4.74908902467559	5.3510509931647	6.11027724519428
+"CERT1"	6.53727161730607	6.44338475792103	6.97625912260208	6.80406366603395	7.77108302229205	6.50577211344299	6.5660913216455	6.70278243019134	7.28032721546671	7.33191396974613	6.73746028852367	6.87144740300353	6.89552193814738	6.09549969589072	7.62968563196359	6.98683884544587	7.16807676981549	7.09621898772502	7.29372116294754	7.26349175401666	7.16469847645653
+"CES1P1"	6.09942720599993	6.39430965171624	6.67277682582806	6.77489933822794	6.27073187959653	6.89035762885757	7.38959407365929	6.40382767411492	6.94381264913391	6.93021548748536	6.49118793684738	6.73096169813156	6.9292803618568	6.89630319962859	6.69198057048225	6.34724443803442	6.53502234860137	6.36623269241285	7.01775441788416	6.19106742109571	6.63933482807407
+"CES2"	8.02990325026308	8.66375582065419	9.04763026937831	8.26498934923025	8.72035427972711	8.36484127134666	8.23967866356575	8.15601002906672	7.93063676275011	8.47842166123792	8.6733872147042	8.37914006041884	8.48133371551544	8.30852645359399	8.03947486559095	8.46082220521419	8.21458012032573	8.48811414258756	8.09566080031153	8.69406191739475	8.45525766613005
+"CES3"	5.61027860431915	5.76739908422068	5.74431205395681	5.84040789867327	5.81870374172606	5.44061319479109	5.98682365787261	5.47389764126414	5.70505185502239	5.70881492160149	5.4206893507528	5.70269494424223	5.78901987464756	5.87230406022998	5.79829183096951	5.68992048372482	5.83215789940581	5.36747624850377	5.8499736471787	5.80617307260187	5.83764781897831
+"CES4A"	8.27991529162963	8.2951172814814	9.0257113136697	8.43706137664974	8.19666147452375	8.78441287866733	8.4218751541933	8.29770859108207	8.34663628134719	8.22753328439224	8.30811664930949	8.38441724478428	7.97027316254258	8.41540846128866	8.03728370367234	8.81551399511184	8.4493499518186	8.88152609599445	8.27784471570743	8.35352304040332	8.44732700855327
+"CETN1"	6.14895753878151	6.18714095004152	6.02024129879226	6.40064259729632	6.19558688713468	6.07167033814251	6.51067630563563	6.18034864950419	6.1865784143408	6.30940465863742	6.10555290680785	6.19651576787915	6.24768797206013	6.03856760137591	6.29434536468938	6.46601148665928	6.44960792780773	5.93677191233105	6.24055211092015	6.01259724820001	6.42952189743747
+"CETN3"	8.4098347988751	7.97676961333491	7.92984094471995	8.24939829406387	7.85811517638569	6.94298438268618	7.70865977666743	8.77426679385407	7.85172947004365	7.52026242736905	8.81746009312261	7.85523593591545	7.48586491144824	7.35550787287514	8.08936977390271	8.44807475662926	7.49575881715902	8.54581551515521	8.30437383743984	7.63425043570484	7.46304933432236
+"CETP"	4.52416227409165	4.74513324198429	4.672682475329	4.71390248086679	4.58699208405049	4.8567720898655	4.86799353332098	4.4375106126219	4.67247343200956	4.41644281758322	4.64292803122573	4.862620412086	4.72578676285801	4.96929603229043	4.81377454444836	4.86986392122983	5.15552774095935	4.77802453901147	4.64132484280533	4.72671622067971	5.07295678748821
+"CFAP100"	5.52594683586464	5.49124441503852	5.62056994360358	5.63155530242035	5.13271419816533	5.63126880968021	5.74948765978682	5.49459586056729	5.41653517015447	5.76864041744922	5.65027980479647	5.56422313475308	5.87974272841236	5.83315906478363	5.45666086720392	5.59382966774252	5.68838323461301	5.50978908061977	5.47714887885539	5.05887206603602	5.79214715175201
+"CFAP100-DT"	6.34612168624925	6.45718866223775	6.32944118000311	6.60044111569364	6.34398702727525	6.52134542705039	6.93748715455487	6.34257250933876	6.56632847837282	6.42398319725292	6.38711341063718	6.45718866223775	6.78419274899354	7.09791189020203	6.59444798230509	6.39038572937725	6.46489927433157	6.20862098067525	6.35999592957971	6.45718866223775	6.21671949774389
+"CFAP107"	5.66134567954344	5.52040803559215	5.6431234443398	5.84568849273972	5.49776807777048	5.78733790039878	6.10482641499614	5.67119869755432	5.70087823487771	5.58902520073573	5.77127192872887	5.60633243093218	5.75768198162857	5.89592973161603	5.45565920758269	5.45893599935392	5.61927591229898	5.26599433441189	5.98904468470391	5.54035668088459	5.6545712205523
+"CFAP119"	6.44418954415733	6.54907430355237	6.88504463552737	6.65244209575988	6.66466657425956	6.61550071492461	6.34515995950295	6.3199575105964	6.61550071492461	6.81477528236767	6.31364000520165	6.73361555563256	6.83076291293353	6.60987908126815	6.4032458045658	6.39177095178991	6.56386551913507	6.42327695657725	6.61550071492461	6.7848141339155	6.70052456767945
+"CFAP126"	6.65902349666733	5.75546530086474	5.81927990697709	5.02911786542874	5.8046063198732	4.95767692909163	5.45431744899096	5.69878999817925	5.10805602958767	5.29938399985836	7.32327713379325	5.80218486074688	5.05497694948843	5.68440611730292	5.29517721585364	5.34220644225749	5.33965562351847	4.93594539353459	5.49147995193209	5.19922439391117	5.1959587394796
+"CFAP157"	5.13743600267055	5.1204823352103	5.06103292382503	5.26029629400724	5.19577476263463	5.40856106550921	5.56060407588662	5.01808723416208	5.19973652481879	5.13743600267055	4.94840584665443	5.03646788453306	5.13743600267055	5.25561550310442	5.14974838181489	5.37297416674898	5.18758810613624	4.99081283230739	5.11214261189931	5.09851285559041	4.90036043069385
+"CFAP161"	3.33510667155027	3.53563885221081	3.38613004288932	3.5448582959148	3.4668068179051	3.73256215067776	3.32916458485527	3.1919856459231	3.12775605817742	3.3640337837386	3.38613004288932	3.3024339101175	3.70084701498972	3.76481199479322	3.54928457045597	3.38613004288932	3.48873352384403	3.2048241146008	3.53195373701444	3.35009356067931	3.38613004288932
+"CFAP20"	9.54838375280556	9.69404451127108	9.96076373314948	9.40970594355538	9.9419616549103	9.19336952290917	8.56843181651097	9.52362210992595	9.28697989771935	9.77201247845709	9.89217369620782	9.6352541556102	8.88479943555151	8.78323271280463	9.31821401766767	10.1998596241626	9.51900359906452	9.97660697537369	9.42392797421802	9.82869959617606	9.51952790257201
+"CFAP20DC"	3.51741621596907	3.76989778416887	3.56409253479969	3.65638404023195	3.62244396420217	3.89053961702693	3.81032452158149	3.6496601162347	3.70170029645322	3.57847808451308	3.64866685436184	3.597569210797	3.76695762510512	3.69068742859288	3.68745879087459	3.66485478254895	3.66355751727129	3.62946288652153	3.61624872835367	3.72421426249425	3.65638404023195
+"CFAP210"	6.07190177739869	5.87430136973881	5.92214859643918	6.10045864141217	5.81713453827289	5.5088802559097	6.08905386767349	5.64629465015445	6.02675907700913	5.73586417311183	6.2968508500287	5.81020361356852	5.88403382919245	5.85259915177051	5.85466068023734	5.61781992874554	5.78607666250078	5.90831583316781	6.03461329490491	5.53655133618666	5.48564959451099
+"CFAP221"	6.13861653876191	6.55729760328651	6.89058693858209	6.20986538801389	6.68967738531241	5.5941733389914	5.8387170656503	6.10985370059275	6.46997559211303	6.71977946172603	6.09092774167244	6.51692215593317	6.35561342579167	5.93934430051885	6.14336693032159	6.02805090527171	6.24601187865301	6.0058528192351	6.2682136262037	6.94871442402253	6.61414796707067
+"CFAP251"	4.99169548668545	4.63085346972764	4.67527192619834	4.55163936512	4.51631491962934	4.63250339877726	4.08876526800034	4.52607283899261	4.93110753191135	4.20479628536753	4.62622683478018	4.10669541972456	4.498774594101	4.67462593517171	4.56560095260159	4.47895124250554	4.2275144921923	4.5429618704573	4.33622473155962	4.88921228471214	4.27187633242963
+"CFAP276"	5.69704359016497	6.24624496249475	6.29013444402461	6.38651363598188	6.26999511064807	5.54725416400842	6.24624496249475	6.3490819935783	6.32705099057011	6.29871610245723	6.69206864933206	6.25665217925067	6.24624496249475	6.57768404640728	6.27455414513448	6.15646837438818	6.17326033981769	5.71186171042147	6.11985990815571	6.00587125277781	6.18048022467734
+"CFAP298"	3.9526432462815	3.4964971881177	3.68677898483993	3.50310234788329	3.57626138490146	3.93504910261737	3.51577827513657	3.65946614457451	3.54013616738041	3.66363368035798	3.61545995124541	3.43177525918073	3.77605614139556	3.38613004288932	4.02902103000701	3.81474210124194	4.58529952208267	3.64199778011431	4.02089244504272	3.95211693827751	3.50606761007251
+"CFAP299"	3.43863575796724	3.68703042383165	3.72757296573671	3.43654216879898	3.82267293591304	3.44836608595573	3.72521885837515	3.52510512503797	3.52820573913646	3.42306260448894	3.6640982345376	3.45437765117404	3.57204250881303	3.73917711022686	3.84161524555913	3.62589837570552	3.7150498842903	3.56856689958497	3.64460271161277	3.50198516257451	3.51793440773108
+"CFAP300"	5.9273687878722	4.57929891293247	4.65316707751824	4.59450272300743	4.46218736793982	4.61046419147135	4.72455280005375	4.66030509490934	4.68432954735019	4.60660316854418	5.05204655490962	4.43913631393463	4.30890675488391	4.56293052766671	4.41016449365541	4.32610431774254	4.38522998742286	4.0449810607762	5.10793454359138	4.81402581499615	4.36811838394499
+"CFAP36"	8.37258079217339	8.63176314086525	8.99393232735838	8.7172332069551	9.15284356195004	8.27987568280297	7.7340469781801	8.65356190143402	9.13116890239712	9.49186535198222	8.42219103067699	9.14536074236569	8.72504144241752	8.22859697066221	8.81120317391551	8.37706873565973	8.84982888528121	8.80476538541517	8.85081535012171	9.14661803791554	9.12803480474632
+"CFAP410"	7.8336487699306	7.67682955151285	7.91315438302409	7.8517032363409	7.71559547237025	8.41626292863585	8.05796822965536	7.75667035872892	7.75912067640161	7.80309429501122	7.6992056853409	7.83931093211345	7.81137574698461	8.14276539680406	7.80440974429609	7.7513801424019	7.75206310145446	7.73488654168273	7.83775438272398	7.94316313737642	7.83775438272398
+"CFAP418"	7.14048089853783	7.01940312080827	7.03305608290482	6.98387768123895	6.87920371613127	6.3445344888799	6.70085849093919	6.9833412469675	6.46964488619953	7.02199087452162	7.35383561235833	6.85545970967048	6.85983259442481	6.69928123140933	6.72035401508617	6.90716058966135	6.86514611500985	7.20160046509388	6.90007816534344	6.71581527024763	6.86514611500985
+"CFAP43"	5.68411264958804	4.79185250320508	4.82424377349452	4.46659088481418	4.61740788289166	4.51048233259487	4.18641806173559	4.59325832967423	4.61740788289166	4.56825129268185	5.24038737018685	4.43318866139159	4.44687195091688	4.61740788289166	4.54208409902667	4.57114991148215	4.60602786418399	5.02270538271448	4.61740788289166	4.76948134285897	4.42186480537193
+"CFAP44"	5.41525436505895	5.68950165225543	5.70569717398145	5.86884243970001	5.62275556835789	5.30206119896548	4.87183923078615	5.43423261201602	5.89125343036507	5.70881492160149	5.66032371597332	5.59830897527745	5.85050178911443	5.32008653849171	5.53002585594671	5.76014470354957	5.66032371597332	5.30326452558623	5.48140911691646	5.94173777846258	5.84682618942266
+"CFAP45"	5.69095713752453	5.48313193694068	5.7029685183332	5.68649888227162	5.50170808424273	6.30436480610927	6.0879248978427	5.70643437365225	5.71162661703058	5.71986124457367	5.51261242615186	5.71884006150811	5.82338698241312	5.8668976310647	5.56331252097096	5.76891376586833	5.48313193694068	5.40902740375295	5.55210003320447	5.72519338039936	5.55253993615973
+"CFAP46"	5.45013182243686	5.46993285624367	6.08361367529484	5.66159595226362	5.7625860098546	5.91465697185707	5.25506335236576	5.41622132100306	5.80556516856012	5.1242122115402	5.5278746176773	5.222056299524	5.84240993332796	5.95727151750866	5.87496828354891	4.96137592147687	5.29329676167236	5.54100928807731	5.72390386003394	5.59772489726267	5.62857729509979
+"CFAP47"	5.09512674327465	4.16550865224065	4.35768173113039	4.21081926689736	4.02034297762229	4.01838171831778	4.57452980474705	4.28092303689992	4.44899863171526	4.03487950832636	4.32245622332203	4.2330209192495	4.23073422442935	4.42151108038244	4.16714696147898	4.12997096743948	4.02998593984764	3.79367780483105	4.23073422442935	4.42794513862057	4.16089716386033
+"CFAP52"	6.08564248152334	6.11360592220829	6.53610596084474	6.05034641668384	6.70981898517905	5.86328161743923	5.2888314707262	6.13452248422772	6.58686572648818	6.50001700556517	5.90601567270369	6.47501624420448	6.17149343019913	5.79753239686075	6.3163894520016	5.84680436663177	6.20167094654068	6.01022521834235	6.19769303563752	6.49576276296102	6.47059091581333
+"CFAP53"	7.14641835943183	5.67435549364813	6.00289741054838	6.28169893064705	5.73829055201012	5.97479113426842	5.66749675084	6.32717662454766	5.72524052447817	5.50377565939011	6.17360998414058	5.77022243665457	5.83885787722302	6.24739310045384	5.95465492284993	6.01929258958275	5.53484372205897	5.93677191233105	6.07762773975557	5.79095867754994	5.63238691106299
+"CFAP54"	3.33295545396606	3.2506406411372	2.96236339325235	3.17019718369678	3.22153551523393	2.94165017629294	3.06791952902032	3.25096891819362	3.05570454161021	3.12567020421618	3.3445782052076	3.13645256648828	3.15132839120907	3.1107459323474	3.15132839120907	3.00201607423669	3.21752138118912	3.15661021599238	3.32458986079681	3.07054133038826	3.15132839120907
+"CFAP57"	4.53199510188728	4.7675590265845	4.78384564414261	4.82079482916084	4.83044869530187	4.95891459635977	4.96697470092738	4.59230388253102	4.75144238220495	4.58244404599667	4.39856629813692	4.85483605649209	4.82657530294687	4.99542885579595	4.75970374567494	4.56509535777754	4.54025396625654	4.43727564132928	4.72671622067971	4.72671622067971	4.60571562977573
+"CFAP58"	4.27255614566277	3.82419135105414	3.83695064817063	3.75600154134125	4.2578585992251	3.87352234407652	4.02400546537526	3.83353097716374	3.61523772852782	3.80005852962073	3.86185734559702	3.71869088536325	3.52813661720049	3.92384902410255	3.70738758248987	3.81746206593562	3.83353097716374	3.68278138017037	3.94390908978402	3.83353097716374	3.94375812951795
+"CFAP61"	5.66746707518903	5.37248541939557	5.47689524176883	5.42449225385137	5.53877039107304	6.02994274215366	5.9427277109263	5.53172520040795	5.67911220111233	5.39959680975368	5.42784346128944	5.66347413059694	5.82635975465869	5.91641996074559	5.62733122593566	5.39101473890989	5.77017296613259	5.23792569366392	5.79976601284619	5.42368688596723	5.70149158956068
+"CFAP65"	6.2260859300818	6.18714095004152	6.35071738536506	6.3714344331728	6.1284936153921	6.72670697142586	7.01327288306257	6.3785584567635	6.603796660278	6.41835831675987	6.31825756545992	6.41835831675987	6.57666593331208	6.59645849546553	6.48529047925126	6.18931941436989	6.50032193292929	6.3714344331728	6.71949255219999	6.21144385249889	6.5992636467672
+"CFAP68"	7.52775247918136	7.78220569828091	7.53747493068102	7.56917873683245	7.69055599640219	6.72670697142586	7.22164923169539	7.65896917186613	7.54522048033757	8.03816491362435	7.74428819181693	7.62263978360868	7.39175992050561	7.42631908931329	7.52462479270077	7.55409620608054	7.26102064279653	7.6756921783947	7.53355008505637	7.84013219438685	7.45592464218274
+"CFAP69"	6.13393158251903	6.4487522741342	6.4726653193553	6.32057673566647	7.22770508186776	5.89254913573562	5.32297214903654	6.130138630289	6.22638415931377	6.35034612289353	6.08765862935209	6.67408157545063	5.43141547223631	5.95399487722049	5.93181797001057	6.19315418246022	6.50893365578516	6.32057673566647	6.17956501598901	6.24759984209682	6.29836700192349
+"CFAP70"	7.03944953222748	5.71656556366923	6.69133024456167	5.33640891553602	5.63954055654175	4.7549498360678	5.03743833094542	5.83419745607672	5.2845094269926	5.15057605936613	7.07343164174	5.55890411844152	4.88885737418187	5.30570328732831	5.13415114869932	6.05231570203726	5.21577132138288	5.2991172972239	5.12906069912838	5.39576317200021	4.83851391392687
+"CFAP73"	5.89684240221079	5.86788815984472	5.88704737052684	5.65203600531297	5.76175824671585	5.54369700503883	5.07161722090319	5.89668597045014	6.05942703094398	6.07367523765217	6.30997109772858	5.92036498285929	5.47553562418793	5.13206828095269	5.31971094834403	6.22528175453793	5.93395117927444	5.92835072341895	5.5032670825496	6.3415805057986	5.92042249081431
+"CFAP74"	6.75542047950694	7.56374229594821	7.23980800967404	7.43419696271687	7.4235175230006	6.16044005487799	6.81328916164763	7.28730838491667	7.61285985855766	7.31359965592176	7.0137201525213	7.09275554034629	7.72962584635547	7.02333568576353	7.4617842084976	7.29645175418193	7.486583971128	6.75678682834551	7.14946825936479	7.8866940006461	7.44379991393215
+"CFAP90"	5.10489698663367	4.61270502918789	4.90263829648824	4.77841139056799	4.89363193280376	4.89363193280376	4.88510294727748	5.0843960936733	4.93476826486739	5.12906069912838	5.23514072221002	4.80553508924192	4.73162974392939	4.82077254061087	4.78447994247241	4.74503456016123	4.66152779181866	4.72985565634519	4.68537942059186	4.94845576773644	4.75391176901744
+"CFAP91"	6.08307013643495	5.54024560745816	5.46933567301875	5.15977701525507	5.26022362253018	4.90134550350858	4.90835986748007	5.46702998043649	5.24230405665241	5.09122390903668	5.52891679568558	5.37684957907304	4.83173571710237	5.25018681355078	4.99573968386564	5.18673324362328	5.19064216407802	5.30353729185979	5.23018190601752	5.39105301479308	5.06655753184535
+"CFAP92"	3.64546724292337	4.18309606956061	3.63497866535181	3.93528922599445	3.82841516955576	3.57698334372404	3.98127555203318	3.87479582284703	3.94732440083778	4.06345158945323	3.93528922599445	3.95672018745746	4.01063061931991	4.13388539668947	4.12377845298656	3.87451385075969	4.31023740760279	3.52121098479754	4.18660122305577	4.05882025982778	3.82140076538289
+"CFAP95"	4.36852139276221	4.04931855298215	3.92510255885662	3.7738675287781	4.16500706818573	3.84537564005912	3.87317220871935	3.96523413999845	4.07743270171483	3.53968036954459	3.96998770104914	3.69959289385908	3.96523413999845	3.9722927288065	4.11591383430069	4.3306203558396	3.86179219001168	3.66702269896691	3.74588390759918	3.96523413999845	3.83370019556489
+"CFAP95-DT"	4.4268230964873	4.45456002090475	4.51192344748885	4.91100454531016	4.59706913327193	4.57141907576449	4.99984391180278	4.64529032708473	4.75203216966704	4.50262989607735	4.32996503844944	4.59791494865842	4.68247114229197	4.74417541592794	4.61108774748054	4.47398182422329	4.55974308300449	4.12346749804337	4.53477359260077	4.40260577950852	4.67694391054049
+"CFAP97"	9.02494018343339	9.05620267287659	9.04503387764291	9.00118691673911	8.83787614695655	8.83547282916081	8.78385109259251	8.99301430140556	8.76803868718071	8.66743558212631	9.32246138255306	8.75182475339206	8.91143361927315	8.55049347297043	8.9289027422943	9.12371785509247	8.57939954162601	9.22688965158411	8.90748135622749	8.6452586259709	8.65439908092905
+"CFAP97D1"	3.5345339534864	3.42454449089098	3.42434076636174	3.70111245089689	3.5564605157061	3.64861442592359	3.48401303533419	3.38571800645851	3.52968016557508	3.47352493601922	3.20053252826622	3.56386177660909	3.64900085108827	3.56701340403989	3.34007979083894	3.32902423637334	3.59222776405588	3.18626738954215	3.3664007601403	3.48491876721531	3.53908359221038
+"CFAP99"	4.96521838776372	5.03118847412552	5.02603333578969	5.30457177609364	5.18330184880596	5.18053585658185	5.11580720263477	5.09016161587153	5.48485037843548	5.06205139182681	5.07346898406911	5.20682916464497	4.99604718320481	5.10104429272185	5.05057238569165	5.33381832341017	5.09016161587153	4.89651876085358	5.01165998405766	4.85367155372589	5.19938738530732
+"CFDP1"	7.3309002403969	7.21739065228025	6.24443397539332	7.03267936269878	5.68398811003727	6.09566002333801	6.74254892604663	6.80354496088807	6.87484831330464	6.49485066585181	7.36067481004873	6.53737826757886	6.71033040699841	6.8910900745143	7.00281325069934	7.47408100050086	6.2720982163418	5.78688741295315	6.82874305789312	6.5411094370536	6.9195372948933
+"CFH"	7.87040242895089	6.22546971560166	5.9606741548007	6.01624234011193	5.9743436879444	6.29984352772394	7.06973921445535	7.65100040366174	6.29984352772394	8.62208870881734	5.32692006831047	6.78015128356331	6.2990217743795	6.90765536725305	6.00501062185377	5.57189862000145	5.64091777348382	5.20997734987194	7.39733428653436	9.91975305629461	5.36914417574392
+"CFI"	9.13826451626671	6.39842583689022	6.06860098631499	6.56101865748554	6.45797034348466	7.25503684714359	6.27018858323596	7.63851342770333	6.32794395452837	7.10856951571124	7.79662013855612	7.40927357143392	6.83303897794367	6.73833579171416	6.89265247532157	6.49095081115443	6.53495972720933	6.21329659479243	6.75371121164144	7.0786083102052	6.58537155458999
+"CFL1"	11.2988993735738	11.1546713144298	11.1125841796507	11.1618407595837	11.7045249731515	10.9488799687245	10.9081965181586	11.2767532967263	11.1199347474138	11.8043639801087	11.5011039197058	11.7586275554317	11.008134591607	10.7174115050631	10.7438224421021	11.513378144485	11.4323279545393	11.7030090649064	11.1534616621528	11.8729147136899	11.7241125113133
+"CFL2"	8.20690957827945	8.70024044203761	7.78519310359831	8.24167061582804	8.65532200282975	7.77998174203124	7.84940612701496	8.19210921502763	7.46225603481831	8.23990413684762	9.4106996535311	8.35965146711516	8.03386100361287	7.69684197629254	7.66111353336226	9.66451169655471	7.98704215739233	9.6435904955982	8.13324268195694	7.88584584347536	8.22157928795372
+"CFLAR"	8.59394221295554	7.64482607798918	5.9732096421663	7.31042224658713	6.3690892730162	6.33377567622066	7.56271661984351	8.15982025029628	7.43904067255672	7.3829341742671	7.94653042329647	7.23817236739934	7.41379289812212	7.88737076668749	7.21677545619732	7.74375359603795	7.54815299303006	6.94034191999336	7.62815485833893	7.16934965629417	7.13811331366488
+"CFLAR-AS1"	4.07847809263606	4.1757019938648	4.0590884710477	4.13734556245159	4.00700560583775	4.03817088437664	3.98211950821506	4.63053875963609	4.3100506577607	4.33007627855198	4.09144698956919	4.00631210449872	4.13468518730584	3.90287583154537	4.03503762533559	4.18308305467277	4.31507673048274	3.88826786013243	4.34932460655553	4.13734556245159	4.04526724511477
+"CFTR"	4.91525287367727	4.82644851053574	4.94527512793402	5.01922977336642	4.8965970710919	5.53433832874146	5.14523582186601	5.01684470279131	5.05539621474759	4.90182993134461	4.94527512793402	4.92058670911437	4.68518463718283	5.23750764864324	4.92698087922098	5.47643206738857	4.91708165502444	4.9524153766184	4.98472038905719	5.15429208164328	4.86911672082826
+"CFTR-AS1"	2.79823703045896	2.78331275859019	2.75362977890845	2.81637895687959	2.89655366264609	2.75577981940549	2.91658645290952	2.67518968778499	2.60764439038562	2.89335228394102	2.70483474531298	2.81637895687959	2.75427998700117	2.81655860907873	2.77444780979188	2.78331275859019	2.99885324047632	2.70730963345898	2.75897342260636	2.73347431149855	2.83613020780503
+"CGA"	4.37253480609131	4.45180179772813	4.42690816757714	4.5685311466327	4.7907952724856	4.64349218441714	4.52164035334268	4.49665310682498	4.49575682758848	4.48050333009243	4.18733061324795	4.60152064740365	4.61158724510466	4.61063154207965	4.6211642444025	4.47991132034194	4.57328014749124	4.19274575813351	4.40353209718432	4.40522159482256	4.389671926088
+"CGAS"	4.51234987273447	4.58441269434567	4.27033118124007	4.69402927418443	4.21971147402759	4.58771605365044	4.71413107852692	4.50031593151179	4.59281499617848	4.14737587685362	4.54873604207305	4.28844165192584	4.82380637426049	4.76464883538322	4.75386179880232	4.38561358966045	4.37314748742119	4.09572169397284	4.5264995048304	4.09212003988279	4.35283161013665
+"CGGBP1"	8.7344077684145	8.21031119676115	7.66971058177043	8.24929788966046	8.37525010795337	8.15012146939218	8.31556570963012	8.70171511992027	8.40729187847178	8.47427960724487	7.97620714409148	8.12470407302721	8.11567818715421	7.98140907718091	8.01905335790192	8.41145030209714	8.2077402413699	8.47234248516546	8.40369497709578	8.12945920412224	8.21081901651166
+"CGN"	5.86429013806239	6.24971527626281	5.97694779975857	6.38361842495569	5.72966804107094	6.51482772840805	6.21884127629051	5.99387721768461	5.97869432322653	5.82518438427179	6.29388322243932	6.02651373615434	6.24624496249475	6.13988920449455	6.15289037308251	6.88445848601987	6.01280536501234	6.64942964815253	6.19345245739257	5.8513323351487	5.91861591751253
+"CGNL1"	10.1587014877837	8.94720134051947	8.72453471374293	8.44626247849811	8.32701566244727	8.66586518806596	9.78540253236939	9.29474418926528	8.49275940012007	8.33803085614481	9.28456608536646	7.96316131683627	8.57098008973072	9.42226433983145	8.66468194674836	8.2525096018311	8.65158622746113	8.14950281364461	8.60563708958581	8.71034034514745	8.4806585690792
+"CGREF1"	6.26301229731271	6.84443528090206	7.25820298466604	6.87958842161245	7.43206337347315	6.90311949736609	6.51166132831683	6.62476663656766	6.87688433805547	7.44909907802281	6.48498066772651	7.17494795154334	7.01805398795628	6.41936798140496	6.87958842161245	6.7253142622471	6.851501293423	6.88600396538717	6.79003687800888	7.27090256131254	7.41940752267751
+"CGRRF1"	7.83399526181949	7.48420591024862	7.39843527350488	7.50897505495459	7.61063602210726	6.97786338083747	7.51456662482121	7.81148086740471	7.58106728190472	7.62554981871055	7.45349196969934	7.33948035271429	7.0601741802438	7.00031665883091	7.50897505495459	7.69728892913076	7.35805855737498	7.87548896542325	7.66742336398527	7.61063602210726	7.02771038350416
+"CH25H"	6.36489730695075	6.50131326253513	6.2965140778887	6.02868741106431	6.48107405974297	6.59743776520529	5.38112927710099	7.22904296481012	5.76121071796665	6.13991707791981	6.89519399200037	6.39743426553318	6.22528175453793	5.98502933895428	6.06144559432403	7.60981502664798	6.9995016421246	6.31947755164841	5.93081114867722	6.46783068418682	7.04770126270734
+"CHAC1"	6.67100145662905	6.98346664572147	7.50127444692667	7.00713646852221	7.21261450276362	7.66711664622468	6.71767289327363	7.20195743284865	7.12829864959646	7.27307554569634	6.6343269372964	7.01745929169114	7.74935479572029	7.16104829083328	7.32937053810289	6.61661780275477	6.82025704998871	6.73630586944157	6.8726505898615	7.29715273570457	7.33557350717431
+"CHAC2"	4.70840004807141	4.39673245959319	4.28156929468486	4.6530737080458	4.37756093957942	4.48490774411626	4.63353599176876	4.43142635105186	4.65069380572489	4.65059159447879	4.25925942402104	4.05344803489861	4.98374907897407	4.4691390388425	5.12746650795198	4.48490774411626	4.21749257809528	4.53592623563778	4.55177075129435	4.45722539808024	4.41863327537101
+"CHAD"	5.96751260333205	6.32302314716515	5.92117781297282	6.12778515473295	6.23649314616676	6.34191129443956	6.03623579887182	6.03419139609067	6.41804791304915	5.99065038099973	5.66358456695434	6.14163709738657	6.32302314716515	6.01521295039898	6.03314749395131	5.68778984480742	5.957756987046	5.85419015713795	5.86838216605	6.03939960659192	5.6525631397149
+"CHADL"	7.18611586451469	7.28193154751261	7.00544705001514	7.07044763952811	6.71875542644716	7.4606149671407	6.94263046460895	6.62743338407736	6.46964488619953	6.86322521298883	8.28663581170084	7.01910866639336	6.34588612006718	6.87353218336917	6.57794673019136	9.0719420425294	6.71664774271661	8.23884504525939	6.97822100333664	6.7878725304343	6.97117471545486
+"CHAF1A"	6.23160476386646	6.77580643029249	7.03498007834152	7.03385188454404	7.04842444724613	7.36679197939933	6.71955404869417	6.7225033055588	7.03572931373085	6.94633525372158	7.01091673340179	6.87795505691264	7.07502042877607	7.32151108466687	6.70977159857872	6.774245494583	6.6726505649119	6.68256926297064	6.97807666881045	6.49157693226549	6.74661494467819
+"CHAF1B"	6.04871321849254	6.13050085062335	6.49406032377975	6.08112306557414	6.33121943255356	6.24505346733049	5.82134097436728	6.03651964713794	6.05533381338614	6.37597512361054	6.09648214001766	6.58162557458879	6.16114941905955	5.92296909576636	5.99124197211362	6.14201225215078	6.19505573974823	6.13095540218329	6.16277304273896	6.18052695927032	6.46303786246544
+"CHAMP1"	8.16667160539884	8.00115318909221	8.45678579546017	7.74566147698233	8.40171831412871	7.9240584238741	7.77646700220014	7.93995989520902	7.99068219478328	7.98098112042961	8.13541034138244	7.54105177796205	7.66583004296256	8.00619340059111	7.98565938147224	8.56171104143507	7.63427218830551	8.47787936652032	7.62983360931821	8.34846814158631	7.95931288429294
+"CHASERR"	9.98753635266944	9.91362230019316	9.74091539236978	9.60500418697973	9.81371466117578	9.8615395475508	9.49071638738236	9.72068442442108	9.58835670067608	9.88075711475514	10.3822188955368	9.79797487783552	9.62363256564819	9.81153387594678	9.9044606412643	10.5235623543022	9.70704043707951	10.2785048449345	9.94976616787449	9.29852441671391	9.59412790628349
+"CHAT"	4.62017062076745	4.69901042136093	4.39194621457027	4.94382946786613	4.50588918071617	4.80484161188748	4.41828227810957	4.66226360023522	4.7032189466257	4.71188321919998	4.65802169071423	4.67565726612989	4.74619987282999	4.63631788953804	4.80238724702189	4.99105494530725	4.86153474379956	4.45342049924326	4.58035750189107	4.802516651463	4.6511294770754
+"CHCHD1"	8.13468354017734	7.68707139218052	8.01780503696746	7.71396933816057	8.10310034637198	7.40276778003744	7.60515453747057	7.81675096202511	8.00818317102488	8.16772881762996	7.72929728592457	7.78311229935767	7.51912267076672	7.53591829570159	7.92070126653279	7.82832794738428	7.65094165411419	8.20043465976087	7.89468673779336	8.23819490157122	7.91518508238976
+"CHCHD2"	6.58455027530331	6.80653258807837	7.09899714228952	6.57358221202295	6.69206505292385	6.69302641357935	6.35182488694245	7.07149214963094	6.71741830175309	6.30534959819788	7.44592229669113	7.1859141607365	6.50864653153082	6.39874998621723	6.8145333340617	6.91980456370304	7.09072765701595	7.32989510982553	6.91836831227235	6.56194263913454	6.68412350700498
+"CHCHD4"	8.02422801191281	8.23473850391688	8.09558854955319	8.2826907244979	8.61899323444308	8.49015911951889	8.70919324496181	8.05676544303205	8.77062543267954	8.68275731589397	8.11311005626706	8.16602436434733	8.54179391008297	8.37995400567554	8.61767454263439	8.45924633763516	8.35091721817132	8.55653457926272	8.46043218899307	8.76878377044233	8.63570083491679
+"CHCHD5"	7.30616526113715	6.85449943154279	6.9753754230288	6.37610483165053	6.93361912316017	6.7593067791295	6.85747412756493	6.98264209090713	6.43017743297559	6.96523486893506	7.42965495858658	6.70960521692089	6.12456306828226	6.54879567236456	6.58147214565638	7.25485065290048	6.36858754194587	7.22337126532421	6.7477625019529	7.21065045124936	6.42731404950607
+"CHCHD6"	7.33295656297956	7.47957118556523	8.35059446558932	7.4195836199965	8.10431835239674	7.52371823387192	7.42936370471873	7.64864590214675	7.80164255837848	8.1037435086349	7.51280629278146	8.06600219593942	7.41288354008445	6.98570511547431	7.63651124491491	7.72542282956845	7.70877792123246	7.74343304190543	7.68483467798647	8.22637337521939	8.07696753767065
+"CHCHD7"	7.43705983446531	7.18769773266703	6.93994350623483	6.471252633421	7.38544614255105	6.8384526919115	6.87159789063689	7.36038664468399	6.54315787760213	6.99576900503585	7.13833215074147	7.12809500184767	6.32361588950249	6.64332054722706	6.71212957636687	7.3305294742208	6.76930733593706	7.42540680692368	6.76646511470149	7.47909134252508	7.54311981278431
+"CHCT1"	4.49309504417341	3.99634982820965	4.18804712249649	4.20479628536753	4.01905712990274	4.53552366041602	4.43997767611285	4.38892921864741	4.23904034606459	4.11068149064831	4.06629747966013	4.24991413020416	3.99558216300892	4.55203382666035	4.01123744239317	4.19318929219331	4.30291884282523	3.96992106812778	4.10406551156501	4.01121802692008	4.35601274283148
+"CHD1"	8.22945285249569	8.00432172488057	7.73551860519683	7.97894016786236	7.81811042410221	7.89136254857923	7.56796878397229	8.72221791686781	7.89352274920322	7.58957047807128	8.27615286985574	7.96969811658815	8.18117158354723	8.07988964687219	8.2275108040741	7.97506519871196	8.05944014367783	8.20138575767418	7.83846844998071	7.70611162435819	7.63549393562651
+"CHD1-DT"	6.5284228329444	6.40973450129585	6.704842582759	6.53240266964599	6.31231449256434	7.14617664284732	6.33996187742872	7.07637200547968	6.29933905455524	5.93546509304765	6.79863357492273	6.43057286362857	6.47307152025006	6.49820303094848	6.83868931039072	6.850274875854	6.88266846212908	7.03185266443971	6.64484338309213	5.93849046041873	5.89894339297021
+"CHD1L"	7.68540734670828	7.26876875517512	7.68569956489164	7.3356765179725	7.63687731696936	8.05298935934919	7.15270178511576	7.44681508981643	7.27424927961633	7.46944947789727	7.54962368642486	7.41146193676031	7.02754551946962	7.55647643079257	7.33264056415967	7.8622882606458	7.39025969128242	7.95818655180347	7.20063494230301	7.07425863964071	7.49875532793394
+"CHD2"	9.06968462401684	8.11632392987208	8.59149282499752	8.30049777833435	7.97833331699395	8.36344420932549	8.01054949310623	8.34778805896376	8.13528192758117	7.54417274344501	8.21666005472074	8.13087942796082	7.84386953904707	8.13819425385681	8.44114487227859	8.33416904444513	8.15455166250283	8.28184202055175	8.21037303928202	7.50799334883637	7.93839307431702
+"CHD3"	8.4240919760611	8.90342977837609	9.46355570027192	9.00792742086603	8.94486419064926	9.32324025866533	8.63918642495877	8.66474071196768	8.90699066316325	8.9189646086562	8.73734306960989	9.20091807046583	8.88628377220065	8.88483009606555	8.85571791887379	8.23029790961028	8.91269643500472	8.65115448376052	8.90156015483094	9.01641940070101	9.04436652931066
+"CHD4"	9.54367896764903	9.35470259658914	9.47895641063461	9.15442969856247	9.2844673523266	9.8903440939598	9.72892386605104	9.12652266383536	9.28967717031263	9.00448292142831	9.42352275654819	9.02844815186599	9.36113667878882	9.69348932711406	9.24320531271926	9.35532305469178	9.07160645177573	9.29254613248943	9.11586464748318	9.10818137196055	9.00907867928822
+"CHD5"	8.79452857349225	9.26601998279536	9.90797788364285	9.413943031559	9.22857664915063	9.84476504719418	9.30054386214298	9.26553630876937	9.53837676176606	9.24165935175786	8.91262315758606	9.07224472044273	9.79747845210106	9.46790908227301	9.30054386214298	8.12017919534874	9.39593618183393	8.86140349259879	9.21213485633403	9.33184667792353	9.26998194768277
+"CHD6"	6.87992620347281	6.94583315158377	7.13668770031538	7.05252887292448	7.1124492954435	6.32895285541386	6.31674265186897	6.94612358425704	6.86927922922707	6.8809702564005	7.17882293075277	6.99846046285713	7.12520305168258	6.48470595297406	6.95661380805273	7.00824031457085	7.14592966302965	7.53368741669226	6.80005458067239	6.92256624004799	7.14555528797231
+"CHD7"	8.43081329014468	7.54907700124945	7.47628655340772	7.47838797775858	7.3605350310509	8.39801855577705	7.69313889820011	7.41523511503824	7.00462781515133	6.55468281999552	7.95195890997822	6.66570221992358	7.28544510031094	7.83083084522693	7.48364442826219	8.58479692139657	7.11554085140586	8.54573296088964	7.09504192966812	6.7973548714633	7.06715033710596
+"CHD8"	8.97398197833989	8.87590371284717	9.07030711487817	8.77887946430964	8.8281442473532	9.13407525405057	8.57294892156323	8.76836212086474	8.62114927724079	8.69632648034511	8.88041770336661	8.66212833137025	8.73839608455554	8.79667754012574	8.41571411037686	8.76836212086474	8.6423054239574	8.6685210982483	8.51214518930583	8.85191683224527	8.73149642804594
+"CHD9"	7.20659664789009	7.34251177540817	6.41347469428117	7.5345053038672	6.85282910277087	7.13546528491198	6.90649472388684	7.67418941361723	7.66139605480947	7.37280629255085	7.42084712343264	7.48760218962491	7.14447783738587	7.29193786965366	7.4767059963397	6.89508847783736	7.16531982862113	6.40677402019322	7.25500916201725	7.32947674205388	7.13264153594961
+"CHD9NB"	6.04001618156215	6.38340007371235	6.11045175804453	6.54867218566171	6.35010296551006	7.09324937231481	6.65285626336394	6.40500301793212	6.40367471609072	6.46119794634088	6.23309678277694	6.07754436417116	6.68820892315622	6.51974584378076	6.58087459913423	6.29713133018889	6.56988965521947	5.96957318879821	6.39417563709914	6.33486472787957	6.12857953828196
+"CHDH"	6.69425973069883	5.14527163838802	4.82797497554128	5.1573311069531	4.55380018608354	5.00294210554863	5.51270216842079	5.26590355278674	5.39509241783188	5.22827813549056	5.57701893970454	4.69384889002446	4.81193669221999	5.09092750730323	4.77373699310724	4.27547974468941	4.96739097021016	5.68960111165599	5.36396758965915	4.72655583790866	4.39818208119175
+"CHEK1"	3.93105318462741	3.61754926469152	3.66838617116164	3.5556593120691	3.41752644353814	3.66838617116164	4.00730749421819	3.68393088739648	3.73322611207958	3.91977967638055	3.4440786141003	3.79789751493351	3.66838617116164	3.56505685623014	3.49591235872801	3.5647387458301	3.66669587561537	3.60294244553001	3.89506607470672	3.57065159798244	4.01218175147934
+"CHEK2"	5.9918526482587	5.67906069536822	5.66527197731348	5.70750606593993	5.71333214141526	6.09164234635591	5.84680436663177	6.06357577263084	5.84680436663177	5.96402244658084	5.50976155761887	5.76209786626898	6.01611820851118	6.02242047572629	5.81461727943266	5.63724301769766	5.64424203366309	5.75064151048448	5.88448718287108	6.04634650282602	6.04226375913653
+"CHERP"	9.33614989036045	9.36613470749237	9.61529843171926	9.49805106504377	9.38140079852485	9.170558314489	8.87452527175507	9.45904109265603	9.2521971684179	9.06783497670105	9.50154906526491	9.10748482183457	9.47963414859857	9.47615054931859	9.17950655116096	8.96608494719768	9.47310668211197	9.35492202534088	9.09900183644059	9.10749666366159	9.17286543397979
+"CHFR"	8.18272516659103	8.05257272993834	8.59450837188944	7.44946659605602	7.7588305073616	7.92222788637976	7.42975987311215	7.72059476816979	7.41388112668261	7.59725848305911	7.97778254095717	7.55096839063929	7.09924511442597	7.77858671494019	7.23169073173671	8.6017676135713	7.7205015644593	8.24782148802387	7.52146542268677	7.40818597228794	7.52995260441228
+"CHGB"	6.32139872659001	8.43796206071697	8.94031686745496	8.0160464063007	9.52039770131223	8.08413439155848	6.63896746176352	7.99472267217831	8.63038543418038	9.21012224211943	7.65412313855761	9.20162986289013	8.25668617982028	7.42055441361485	8.18610861779986	8.37224950313639	8.87774344822907	8.71410294953502	7.9521148983993	9.49706531344284	9.29893416153916
+"CHI3L1"	7.11915279857813	8.75049127958111	7.97979737433627	8.67395720180886	9.25275215280459	10.35250431114	9.0226670144545	11.0719025894864	7.94328325324892	10.0758005727562	9.51645784790414	10.472278292512	10.0870284448079	8.81185084491338	10.8045060196261	7.79737897985133	8.99802420827969	8.57258807317056	8.43260837330105	9.12855361596381	10.7452831500724
+"CHI3L2"	5.79067864021233	6.41386321776921	5.54726926828101	5.43573202501713	5.72233070470049	5.9919170402698	5.55890411844152	5.92463981232624	5.38891889730692	5.6802345004112	8.35826548215714	6.29367117494105	5.21681274073143	5.45430013169186	5.34615107253158	6.02486416608811	5.75718329185393	6.0392975840911	5.69278155087876	5.96062549198887	5.96227962026039
+"CHIA"	5.40443912791863	5.36033776907787	5.47262007748883	5.73586417311183	5.57428184399263	5.59514623602504	5.85973059652955	5.59886899665489	5.63282737911643	5.63401452770593	5.4418191140154	5.61694576009836	5.92101444978899	5.60139534128911	5.61694576009836	5.61718942679459	5.61110596431558	5.23400573339278	5.77753531152303	5.64879638291971	5.68252365059641
+"CHIC1"	7.43476136255383	8.38612834946663	8.82410345468735	8.43067135872887	8.71728288789672	8.01450763311489	7.17189326348289	8.38329706470583	8.73459046905321	8.78510803253087	8.06920401151096	8.55605905975021	8.50668604273607	7.85560307671885	8.71915311252948	8.30617733376375	8.83158678713815	8.6674383913925	8.54102808815262	8.72597033506796	8.70315121122972
+"CHIC2"	7.6450617211209	7.03349035956331	6.76003476288844	7.48225271948425	7.41288305698605	7.02321263397848	7.09074428754918	7.95831291081428	7.48477879333077	7.01493868806131	7.26415449983374	7.18806069001039	7.6273898202374	7.06945219090869	7.60524353316891	6.94709433934403	7.16807676981549	7.40154125932673	7.340752335675	7.54420359899431	7.19367871449457
+"CHID1"	8.11352238553283	7.88311840764837	8.42154328277731	7.56119826240848	8.11879140247199	8.08429132942967	7.96746739324932	7.99404507096271	7.64227053297226	8.16951073684192	8.10834322380962	8.1844170854307	7.78143817335375	7.83546448854153	7.7270876263423	8.12673932529459	7.82809973638331	8.22379495478384	7.97035201225538	8.26904393520576	8.09526490927599
+"CHIT1"	4.59564427393933	4.57512919121534	4.33299388831528	4.75041198286208	4.56975491471024	4.71814130730115	4.6395171488422	4.7559878453267	4.58698189420882	4.65776570714489	4.43059184394388	4.78599346012268	4.58766349472373	4.62142070330257	4.62311478223405	4.41936797521878	4.65242916027252	4.20426937750486	4.57463493954642	4.53758519445019	4.67383212135146
+"CHKA"	9.38268888987893	9.56679055491112	9.61790870716551	9.22044368970191	9.00029267983621	9.09012861059603	9.19206156878488	8.72997803053372	8.97389986365664	8.78744440190452	9.60623587542815	8.97661662673353	8.78052026548757	9.08605462242741	8.97637753308504	9.7549772260761	8.93665594727245	10.1461273689599	9.31631864093	9.17202460799944	8.8554808302704
+"CHKB-DT"	6.95823695489542	6.98730976461985	7.38745463511463	7.01536328808367	7.13217232995035	7.15774588531238	7.04556789072747	6.45454978060709	7.26592427883379	7.32729006777966	7.26659406676507	7.0769080373168	7.13012100574961	7.54815032347298	7.12934604490615	6.91089043919525	7.06242823360487	7.21731873305221	7.16903184016095	7.11305072578141	7.07670030249798
+"CHL1"	8.94603128401946	10.1020462095989	10.3043323889849	10.0088704955898	10.175411219839	8.39097654442955	8.47986249176813	9.80240059452809	10.2991705891874	10.2359235586056	9.57706043023365	10.4071694644157	9.85951575437263	9.06771329747285	10.1349374814607	9.93796022217627	10.4775005307679	9.93268193379519	10.2743946434481	10.3350075776545	10.3697851779048
+"CHL1-AS1"	3.91386589644672	3.9727260713655	3.96783198704298	3.94977220037824	4.02220053284464	3.76649585251223	4.17242508648848	3.89048171782057	3.95295616232219	3.96089851493637	3.84706954345398	3.84551541084944	4.17344246901825	3.75922204017567	4.24083743078566	3.9601506054516	3.96783198704298	4.1189375059514	4.09902806394152	3.82768606193066	3.96783198704298
+"CHL1-AS2"	7.61872971466044	7.5329137446867	7.68655540109515	7.60719106970228	7.65071920014057	6.91184234990095	7.65109559154241	7.69112681074362	7.54427552053953	8.13900296569872	7.63818911116779	7.65212056576441	7.33654647398079	7.55440353487852	7.56705616666111	7.48717376563057	7.60490738676515	7.66555484813136	7.57011526162508	8.0429165130152	7.71992299031575
+"CHM"	5.52434334763668	5.71302414811572	5.02505625459161	5.22892720147409	6.44017924644173	4.91752604468544	4.86253636846193	5.6659817178788	5.5338420582075	6.67243854940585	5.79196227572875	6.49283089527139	5.0609916717703	4.95592210781794	4.95771342590708	5.94035984786841	6.13361338233105	5.23398185867533	5.64084581724676	6.48508066485663	6.73442181841038
+"CHMP1A"	9.34602373586497	9.08051661847828	9.1344080611328	9.10294224334318	8.71975333117238	9.29345987188998	9.22880407184735	8.92161549971614	9.0699483975003	9.28990356658303	9.0616510779407	8.94814423657144	9.04048872441461	8.99779627145693	8.94206873976471	8.85584458958584	9.09471158306698	9.11496013871853	9.08051661847828	9.22042899061775	9.0755591731986
+"CHMP1B"	7.63270166038159	7.87540735822964	7.70752505566281	7.46500439683268	7.71559547237025	6.66737521935421	7.25312458194345	7.77357205063675	7.9182455784617	8.48180041234789	7.94961610375108	8.08021035943641	7.47656146408634	7.47097041564202	7.36857502157712	7.99616033064345	8.17817974276772	8.04524677725395	7.85683409563114	8.36100636281477	8.01253399592622
+"CHMP2A"	9.37459176851385	9.21473837137265	9.37505144390793	9.02379478337782	9.48941879602909	9.1370846333307	9.06813669394855	9.1441336260452	9.0846217966293	9.33583876159973	9.46080968299221	9.24811150459399	8.92611049431411	8.74545581888278	8.96263831615173	9.45177587128761	8.90999491352725	9.65790230901948	8.9831047722198	9.45873687776159	8.91258213441398
+"CHMP2B"	7.80739431485602	8.21437305339164	7.79542364089172	7.79431395805888	8.13355426402835	7.49790207507648	7.49495211114579	7.88049818097165	7.33310356126543	7.93927281063189	8.41382255332055	7.9610062588293	7.05789316127787	6.90412439326831	7.82150643328022	9.06853494436408	7.72613379229995	8.83927650248155	7.57800775713078	8.06072898040008	7.54910164294173
+"CHMP3"	9.07722954743205	9.27774449395599	9.34441517048027	9.17279994479539	9.85202312241321	8.74973033670486	8.56392303690839	9.07405182490617	9.44803550398201	9.78673021778592	8.98789042393144	9.46590009514451	9.10584815601406	8.84097484595525	9.11360564325964	8.97390862205703	9.53857790872914	9.43170172209613	9.3071676563401	9.60391268676645	9.57279337938625
+"CHMP4B"	7.96971135201997	8.05566533545949	7.67659541700107	7.45205009868196	8.45303807806936	8.30799995647754	7.97330701132087	7.89148365793852	7.93074094601602	8.77714843973113	8.03120361921275	7.98940875372006	7.7577556667739	7.82537075909137	7.96911332589302	8.22031910734122	7.85011023989538	7.96911332589302	7.65123211510701	7.98325693469386	8.174465498784
+"CHMP4C"	4.37372307456969	3.97521665806832	3.88230807270707	4.0234104027737	3.94000154058495	4.35536872508453	3.92651302906166	4.0234104027737	3.9237176463182	4.05088835908475	3.82173702861523	3.87928329061254	4.07959719129979	4.35736588056088	3.92714832465641	4.04258191179068	4.03600099560098	3.86243203588209	3.99627505330912	4.63425385792161	4.03600099560098
+"CHMP5"	7.65427431307382	7.99739530734628	8.3303674303375	8.00915803180676	8.33210508466885	7.1504087613669	6.99105810421254	8.01258515507858	7.97840497345567	8.05329759704011	8.18099903741441	7.78233636434645	7.56673240890228	6.87760277977749	8.14548668637233	8.13074939800951	7.89946581535078	8.5379251978249	7.96416988382443	7.85805130408535	7.74953702065703
+"CHMP6"	7.73847610467996	7.53329341999873	7.71220782225823	7.28014803333355	7.40990003974564	7.50939134655224	7.03088462857148	7.03792128316312	7.37867450974085	7.61647561059825	7.81341532793766	7.44998705648712	7.38985624591684	7.5202504377647	6.93814883133592	7.77712620683646	7.3398022883828	7.6924673865876	7.33512399387737	7.65030837750451	7.56243861101336
+"CHMP7"	8.13358757309327	7.94817946187704	8.64326938299999	8.07919505919699	8.20519708262443	8.40658534936571	8.28727601601631	8.02011551994093	8.25533094428558	8.14757050141554	7.91243146534823	7.98085454309129	8.09218096216221	8.19770378675292	8.02208995998006	7.85238190533623	8.1527445414273	8.16696651320455	8.06660749618816	8.24590256135842	8.09503994628275
+"CHN1"	12.0267852472518	13.0412824987529	13.185700483841	13.0400859143629	13.230845716089	12.4869111207963	12.0851773867707	12.8579467387405	13.2974382988175	13.2448754122032	12.2687669751772	13.2155123688246	12.9299229149485	12.4899889805072	13.1426721244091	12.7486620607622	13.2823791848164	12.9381027928112	13.1467928263062	13.149170560927	13.2609614234303
+"CHN2"	6.94034220097217	7.31648418863055	6.73511495515572	7.23600064553566	7.66320297766125	7.72958544079541	6.82037012645945	6.97298166974515	6.67127865095514	7.54557933412994	8.03188258221261	7.28853805487333	7.69610490250857	7.11693351141772	7.59901740489543	8.69536224973206	7.4326770020049	9.03676078942899	7.42677744768628	7.21304824997053	7.69319767411889
+"CHODL"	6.60854935129576	5.64644444909643	5.48831632431522	5.67418886025675	5.83848924790529	5.75513478875813	5.55480749181794	5.70230327937173	5.58525333177404	5.37964509872883	5.41076104857506	5.56095017503433	5.37802352482068	5.60601570344589	5.42626834377453	6.27491531476537	5.64644444909643	5.64874012834295	5.60967717677043	5.85919916023434	5.28772253612781
+"CHP1"	9.44279398537193	9.58451242698574	9.66353903830788	9.39598070179833	9.82430389430069	8.83897249526309	9.1402525999703	9.47899947295879	9.39691415115415	9.70710883662995	9.3657975372272	9.57785133049071	9.38040305950319	8.95169336089762	9.38649159479395	9.51514867498794	9.59541938923307	9.65129369827758	9.45623259514964	9.78737854207268	9.63059918744641
+"CHP2"	5.43103800540511	5.63052545186019	5.48422275655115	5.60778240907322	5.33358936572871	5.52774318088224	5.57829767944062	5.57233559179534	5.73640182737955	5.68679715443057	5.40447753554189	5.60433626911571	5.47600847174032	5.75670348869443	5.58970157709881	6.03335558329364	5.82965756729458	5.65521450100076	5.61126339150927	5.7230127490046	5.97098605051071
+"CHPF"	8.39680490294443	8.56625857214453	8.65687994251173	8.7312563736501	8.85057291843676	8.80793037183804	9.2387388104251	8.51749714587433	8.39161806004848	8.8393601788603	8.99145123776204	8.688622772177	8.7938941838415	8.68233562464746	8.18016732525834	8.64618562829359	8.65864890319573	8.54133023936335	8.67901896495385	8.98821986288603	8.59808147615588
+"CHPT1"	7.20450089644965	6.67453090427133	6.71041712884225	7.56506649192976	6.4184989427569	5.71399334493048	7.38965164007612	7.49573350630837	7.23609015060383	6.34649973610502	6.86978107138217	7.13031858335788	7.3326774379991	6.81380065863446	7.67616813724772	6.69847190969874	6.76280479771965	6.47250257007933	7.33604796372914	6.81247154678567	6.9037534649868
+"CHRAC1"	7.0839875246391	6.50210195697181	6.49353061939381	6.28615149086846	6.33023059252476	6.49589611777217	6.45429220213444	6.42009868076834	5.97477860784117	6.20670132790021	6.94067634816625	5.76439613136912	5.87626777989497	6.54383694766323	6.07742692885135	7.19708401429161	5.99768073804921	7.027183781052	6.18686914946913	6.29035480493369	5.95951347339664
+"CHRD"	5.98554411989126	5.75277134287547	5.9612722202918	5.98542520094253	6.02697290813471	5.79700521671249	5.32122835994984	5.76475111477169	6.17102607354078	6.16691369112267	5.59222250626799	6.58362259943909	5.9921369918034	5.94502952615531	5.60049217114093	5.98554411989126	6.12830277212219	5.74486539789766	6.24429412977134	6.36239724414819	6.66983475916982
+"CHRDL1"	8.43395863566589	8.74354158551727	8.27881402835947	8.20568894098349	9.01116840175733	6.0037545535606	8.29014855320646	8.47459710942166	8.61834392185133	8.35278718916458	8.12172128817549	7.95202774471127	8.15026177974478	7.89718962703637	8.15275405745186	7.92597920523429	8.52945508095537	8.23431530133395	8.15662540027026	8.43398534207	7.78319390744499
+"CHRDL2"	5.45978645648882	5.8067543035207	5.58563772627786	5.63455466447721	5.78185007461448	5.78979283575338	6.3042753971605	5.43869994837422	5.77979830005877	5.63735168501064	5.44842932938787	5.73164364589251	5.92250634491026	5.76271545024008	5.81800030939985	5.53247429035072	5.6773231918983	5.36609288837945	5.75418280944988	5.56473535745387	5.56035088690433
+"CHRM1"	7.28604344119441	8.74430066025404	9.15486886909379	8.33613002018138	9.21509089085127	8.2565816912263	7.40834025396448	7.52256235351511	8.33613002018138	8.89476521562597	8.14620415163846	8.82999892170643	8.15150244532298	7.62164059319583	7.42314405451677	7.94000956603135	8.61014980299177	8.38744318213124	7.77071504912549	9.55541679212889	8.94476482324108
+"CHRM2"	4.54661022699607	5.02787760641853	4.63079452946642	5.07742534536094	5.02354717102996	4.77804672714815	5.22484614742162	4.80932208472308	5.10247271315701	4.80589088998748	4.80333083830255	4.93271774952625	4.76095646477514	4.94426128769869	5.01728460890796	4.87272842781049	4.81207886675029	4.58173333652621	4.83729178960638	4.98251284803407	5.10247271315701
+"CHRM3"	4.99813082143266	6.4583286531964	6.55786966309665	6.28685373045975	8.01966328174475	6.13060091307686	4.91593627303657	6.31261439022878	6.55785937917978	7.69380479880641	5.3450202347343	8.07497680855441	5.78846605455677	5.34416156787878	5.68520702881094	6.64140147487265	7.0839875246391	6.91994342828626	6.47928898514284	8.1532593860137	8.01471884484022
+"CHRM3-AS2"	4.63609863858566	4.53072038076054	4.81475895919101	4.79764907733417	5.00236433618439	5.04610338667178	5.01993779709358	4.77973524559134	4.60506099034783	4.85004093472194	4.50647476780554	4.95103967749179	5.17177784095259	5.13853984424911	4.83851391392687	4.75664771156871	4.75599601675688	4.87351243706085	5.01063048614661	4.76621583994881	4.79423258894778
+"CHRM4"	6.08634959141252	6.54573542272328	7.04162990898238	6.45833958187858	6.70426738104941	6.77673124077825	6.91452829669891	5.95073347792191	6.5010817744764	6.3757499272925	6.30224686061744	6.5010817744764	6.92722992476674	6.5010817744764	6.63787458028814	6.25889271537937	6.34369602106459	6.17182427181493	6.64942964815253	6.73737726728271	6.35356260389532
+"CHRM5"	5.00444490736551	5.0687652958698	4.77998701661382	4.83118848318549	5.39574516837696	4.891431597517	5.15806206142571	4.91138516977745	4.75721363920867	4.73384107919243	4.88246107537365	4.59832030442732	5.09122390903668	4.65973277975928	5.22484379974606	5.52695469094447	4.78303173004363	6.79910553572588	4.74634939157608	4.891431597517	4.67666402752894
+"CHRNA1"	4.42364619206949	4.80377666570618	4.62728890428455	4.73285903830529	5.43764004165273	4.87410225269468	4.76968755238661	4.49408614153703	4.75221881739162	5.07001291530819	4.36432554842386	4.67562016548823	4.77149155908489	4.8222673518799	4.85804243164423	4.50851758739286	4.67741581378734	4.33362708378781	4.80419531992814	5.02724438788711	4.74935704582955
+"CHRNA10"	5.01257966638269	5.0266876688202	5.20900065856973	5.06948023893776	4.86787663311833	5.23929866633688	5.58573901707472	4.9539642570073	5.08615335484127	4.91912212229306	4.93060355843455	5.01257966638269	5.40698245243508	5.69863478769026	5.34735859786819	4.92248323910091	4.95982946670515	5.34954429648473	5.38708757589852	4.93911065345596	4.96032609421566
+"CHRNA2"	6.31253928994662	6.51598291702608	6.60017104590758	6.76969807294893	6.38036553684912	6.78076210376448	6.69701110550986	6.56028955078731	6.65105304398746	6.72594203531274	6.48391047223806	6.79892240603199	6.81685694958432	6.88166393305663	6.61651528571131	6.71131714990199	6.72946595580067	6.36381792320905	6.63291107424417	6.47805638071062	6.74645887011774
+"CHRNA3"	5.91060981576084	6.03680175218329	5.9479596552545	6.24435106845311	5.80237201605044	6.33673455614757	6.43521047909792	6.02365378735667	6.49423943161767	6.01313960240842	6.0494682547559	5.87971165855096	6.26744357498499	6.44212575341903	6.0962112771506	5.93117398469806	6.02116211983247	5.82777142043345	6.12458905346695	5.79753279972601	6.07769367950054
+"CHRNA4"	6.09269925612562	6.29558277189125	6.51002953534742	6.65697567942661	6.25383165367919	6.64892960715976	7.01360100355526	6.301271221712	6.6671924462043	6.89479264779011	6.53532464449654	6.7845277083947	6.78803463960635	6.53532464449654	6.44337985094726	6.49381660117366	6.67667322696744	6.22619955772884	6.751060163189	6.67251186063467	6.53532464449654
+"CHRNA5"	3.78002414444707	3.94110095977872	3.90215718881946	4.08154916714583	4.21971147402758	3.84068283780915	4.04796370751071	3.98283558358205	3.77603116448357	4.05740148020115	4.22534329319529	3.64923189274774	3.36189662978092	3.80134256953327	4.29616397028413	3.72223449559877	4.11255640863309	3.98283558358205	3.93779729667026	4.15532143152091	3.88221154521576
+"CHRNA6"	4.96718053222334	5.24983050069845	5.21144446680178	5.29364445096337	5.26427929001776	5.26427929001776	5.95333566650979	5.16903922465344	5.39162992306683	5.37446238081751	5.15845117750933	5.07118799484026	5.4940250767655	5.46898269103168	5.16660174728746	5.08587664820284	5.29131915120106	5.03338900345984	5.15197064100331	5.29205968824519	5.37474517190299
+"CHRNA7"	5.30822748049705	5.83409955844565	6.48750931191809	5.75323901152989	6.39016280546663	5.76819284182009	5.1120677748298	5.39597541120216	6.0681549507082	5.76125936971348	5.61062606801223	5.73693915148461	5.78476558953571	5.75980996548159	5.92069054714258	5.62779695185966	5.93009590204431	5.67518300145882	5.78013198508261	5.60375931715519	6.22778929701286
+"CHRNA9"	3.63611917853674	3.7503224518598	3.67884275111033	3.73903013407733	3.64121729888862	3.93973846017428	3.81288151391516	3.66262252556798	3.8076525696175	3.43534521290348	3.62927770133837	3.60456811619132	3.62722482628724	4.04259442122906	3.76438584791858	3.53154778415646	3.78707552484903	3.67884275111033	3.67884275111033	3.67615106501548	3.72421426249425
+"CHRNB2"	6.66649678556318	7.19201622619122	7.38085471055384	7.24221813742682	7.24106009163156	7.3987323498702	6.76608705786568	6.73253309867692	7.34848745286811	7.42016919460668	6.96006592039178	7.44846804397544	7.45397429686684	7.1660352524208	7.1753679741344	6.77974953162552	7.30936540292551	7.19364430745277	7.10013556390116	7.57768608313795	7.58919728409474
+"CHRNB3"	4.24599412792869	4.41350939274291	4.19856364674019	4.35774880135916	4.34606215457119	4.7829407296841	4.69187589243235	4.43997767611285	4.4235626928766	4.3879978270865	4.01156750554046	4.45007852260373	4.36051832762285	4.51910514462606	4.35413931526817	4.41744173922917	4.26775776430111	3.85571572198906	4.40187645130486	4.84691669893601	4.27592837512297
+"CHRNB4"	3.68418419642181	3.47115147475991	3.59964899963445	3.41622078858678	3.53741376891322	3.41113073098595	3.626745208778	3.53913177094834	3.48708022651512	3.80005852962073	3.32455210544115	3.58477317491367	3.48540635877856	3.59183156635309	3.4938490962461	3.59124570316754	3.60250688291191	3.53741376891322	3.43725700137603	3.4449410614625	3.50310234788329
+"CHRND"	5.31425921586976	5.4263722805479	5.42698670712203	5.6545107224675	5.73971809950586	5.88223084463622	5.84741247326335	5.34357235794426	5.5189347496707	5.59712361528518	5.38437841248837	5.42289415882148	5.60235247583392	6.00899083555106	5.54817369354445	5.49856043334305	5.65144548607393	5.48508203024732	5.51229792278505	5.56035088690433	5.65638842226614
+"CHRNE"	6.15219238157686	6.23451341240587	6.2572880726935	6.28192415506136	5.94875026082204	6.75960993708974	6.55208005390913	6.28325837842127	6.45930968063565	6.33394025069831	5.86991929607196	6.07071859204034	6.49086235030147	6.28325837842127	6.3429583623503	6.13727341539725	6.28325837842127	6.17221221271553	6.63950475068559	6.31477129643403	6.28325837842127
+"CHRNG"	5.58070207410887	5.92338704365674	6.04515602068157	6.01096729112887	5.69689068537952	5.75545055029869	6.16037034218758	5.98737603366594	6.10870339474443	6.12962169238356	6.05546928647207	6.24738532526024	6.46481405675805	6.02833880231197	6.1962169737021	6.08976963617992	6.15444500990614	5.72254288803303	6.06156155767693	5.62706620457668	6.04515602068157
+"CHROMR"	5.38821368897121	5.31560787295187	5.44745784007192	5.44277879302193	5.54237893034076	5.31560787295187	5.17231971279679	5.46429074772972	5.10290980214329	4.84221627965717	5.46365910006055	5.14969594202391	5.31560787295187	5.18158738166497	5.77743251629604	5.03828058662455	5.29682153897806	4.92069787268198	5.63642938465753	5.37355000547623	4.78678520215846
+"CHST1"	9.33421475369378	10.0604971197308	10.1675406528222	10.1840685027091	10.1921376341876	10.2168390602662	9.62671198196968	10.0288246022309	10.4312799538112	10.3266998854936	9.57342898726754	10.2591324475845	10.2462135178207	9.57368242949234	9.79311001440995	9.37867926733217	10.2631478081836	9.93531029572755	9.96668592389263	10.3876557926232	10.1453968061219
+"CHST10"	5.90285161187075	5.95571753348665	6.52157583035637	6.12427939812305	6.16069377612142	6.26026200142517	6.69152814306514	6.12208529186645	6.09523095824956	6.12059484398192	5.78079942796805	6.12208529186645	6.09898097467377	6.44411706127377	5.98195862516118	5.93195754763595	6.14245926550188	5.86940484402998	6.21457830567021	6.11805159753522	6.12208529186645
+"CHST11"	8.78898785470799	8.06145912847051	7.82101688492172	8.48163331735456	8.31794570463383	8.55860480668322	9.37882183643315	9.11254516821755	8.68187808185721	7.89572052029293	7.84343609283865	8.08839358968543	9.18570968726935	9.18604232473074	8.80993405190328	7.60658133861609	8.30828855604813	8.2246146634631	8.04156898285348	8.32054391529395	8.05318453023244
+"CHST12"	6.96318873953171	6.95062126610741	6.48599936359597	6.98039064312977	6.49896424834085	6.91791887138873	7.64246250894545	7.07335471654373	7.42287007593321	6.99556540276015	7.21088221675932	6.86726336873562	7.3932275480624	7.6202688124825	7.25314946376278	6.85020252621918	7.18760830198143	6.13824998540264	7.06834587419721	6.99926922617573	6.91630478889379
+"CHST13"	4.90599745912684	5.35420596937394	5.29310171783617	4.83253003256814	5.08586305573356	5.20123958075737	5.64338486182321	5.11509060779448	5.00369829251925	5.31441528551648	5.12186923082852	5.05674502563121	5.22913019909302	5.32935986464944	5.13384661881236	5.14282731124223	5.1056876045203	5.22410836035923	5.16885247984721	5.1872314606845	4.87598852855677
+"CHST14"	7.87204221797401	7.13970193863172	6.75880884029218	7.02326592101387	6.75487790730568	6.95406635779481	7.49495211114579	7.06198911732383	7.14732533367697	6.99299241863484	7.27317855904338	6.99078557534119	6.95315903904111	7.37701052889026	6.90237709266814	7.13137340844915	6.82769889049238	7.35908285032614	6.99272229988711	7.07993157160773	6.82064453053891
+"CHST15"	8.8321182723832	8.6988085715466	9.23714767405065	9.09984804435064	9.17570308801222	9.15888971759513	8.63433486969704	8.62144021225489	9.30801055566513	9.35620279646207	8.52274930468981	9.04778977530317	9.28576139740411	8.91194795118883	9.356864217671	8.60049110691363	9.21710928388497	8.92187446410818	8.787922523297	9.5381650693133	9.34842873864198
+"CHST2"	8.61636978966822	7.86787152208504	8.15406121887833	8.2243615253591	8.17520096345059	8.1904465794561	8.20954348711652	8.13481836067234	8.36319628261222	8.24850991373552	8.06668106761835	8.24326590469529	8.36962802024335	8.33088816782945	8.23911476636336	8.1312973413025	8.35280846905176	7.6312875973698	8.22262991436962	8.54081426609492	8.69338532816168
+"CHST3"	9.13851867100033	7.7716969946143	7.35474773859232	8.4732393013449	7.77620953004254	8.80125333119575	8.54190640449892	8.90426859350625	7.55976275308443	7.46033048405858	8.22186192505474	8.09530368970189	7.71205577627503	8.47147270668728	7.79246328003232	8.48849070327891	8.1881356526851	9.28896124177028	7.8262019502574	7.66348624976003	7.61661489427563
+"CHST4"	5.43228094189498	5.241722067726	5.04143109143515	5.3252603479945	5.31085921744476	5.3252603479945	5.23649618965813	5.2202273754909	5.3252603479945	5.4316046238108	5.2959536581184	5.1715274156847	5.38306737151728	5.60612869942918	5.59176605654868	5.3252603479945	5.36919729807748	5.08961543800521	5.33441335463878	5.1887219879429	5.49145502515262
+"CHST6"	7.37279811115343	6.87429537786778	6.6528473374998	6.98770450389794	6.57378885277458	7.75581976965032	7.11306167679056	7.4618058621335	6.27230644468416	6.49907982204527	8.13628495688578	6.96266221926018	7.45186170012168	7.11306167679056	7.48397823256006	8.00324870948046	6.55760306617614	7.53814432367206	7.00389730709332	6.61226278645942	7.1150689728924
+"CHST7"	7.95252430636344	7.94013405350273	7.61426875987038	7.54179958271899	7.65321395112964	6.5211546653041	8.25024047881161	7.80794704592611	7.73086077212315	7.27241854432457	7.84921781516507	7.26005690466326	7.49754061843045	7.52771099244633	7.02309576958401	7.28881182007982	7.14155325410663	7.53402618330654	7.65109559154241	7.87514922343627	6.28992431837938
+"CHST8"	7.06500867123824	7.28935738529102	7.4643280779236	7.55064405478946	7.25743321838499	7.68678784803095	7.67965272596966	7.45019223994978	7.61550486455718	7.59393580617439	7.26888171692569	7.44892647903617	7.8487655954415	7.72228471365347	7.7866519338977	7.04071696715408	7.67873895537442	7.027183781052	7.43854075882204	7.43873285743057	7.72196372681234
+"CHST9"	4.33401906537096	4.38547628398327	4.26776329710881	4.28182412267831	4.36092522049487	4.44365610305946	4.220970432972	4.21601470213306	4.12837644844378	4.00150812733288	3.85596961347577	4.06899822614987	4.30291884282523	4.50101974100537	4.08844637337611	4.22671450478225	4.0990169492993	4.48897855054147	4.04299430613496	3.90798642322491	3.64183760285162
+"CHSY1"	8.44887782101164	7.53735869478896	7.75890112313849	7.87029798617576	7.96204507166457	8.07923795893236	7.941245087211	8.58515862608727	7.8262846937633	7.9709101974316	7.77301314790431	7.78210942238214	7.92174164102548	7.96279369399568	8.09659221811458	7.48808053739238	8.26799725045121	8.33136134143218	7.68520880856018	8.09477733748952	8.06613826637632
+"CHSY3"	6.04046004681891	6.45842836446654	7.11808292015913	6.76008605479086	7.27440741655603	6.73921898023776	7.13231894605536	6.4442506032843	6.87167145661176	6.672376767213	6.29090758869826	6.81026174066215	6.84381622066816	6.74817622429642	6.94816725321695	5.94045283871017	6.83122907936831	6.40734290620031	6.80005458067239	7.07814405713885	6.52061442069289
+"CHTF18"	7.09201782066651	7.18412554409182	7.61749815373605	6.64485232907178	6.91941118585089	7.12632906274257	6.69486995450951	6.96695359974875	6.71224823682597	6.89406514118629	7.14495099306735	6.96695359974875	6.94516926543855	7.00060552815114	6.58389686288741	7.04368011286608	7.09025899578089	7.31848445100653	6.72880131275945	6.90661170381123	6.78813053472012
+"CHTOP"	9.4430828785222	9.7165964344052	9.79348476596304	9.47802480774437	9.71985787711359	9.46937480321076	8.97546951405584	9.40814704511591	9.31253639784101	9.54257660994792	10.1003943453721	9.57769763585182	9.17622545708276	9.34075684112872	9.26106603227843	10.3808284020062	9.37505272060396	10.2113736473839	9.48352246119261	9.53378383646946	9.40168233899512
+"CHUK"	6.78607765189034	6.83036749666595	6.77634361719088	6.89431451881217	6.76021011609694	6.66520347025153	6.73206235372576	6.48230965982277	6.99628223462409	6.94996816775206	7.03661624266898	6.32633934006162	7.03611904081052	6.80686600453466	7.20114511253011	7.05319301235039	6.80162540616779	7.33431844838961	6.99857770431416	6.56358165397605	6.73250297047044
+"CHURC1"	9.12061962771664	9.68754860963631	9.56855840488108	8.506469988376	9.5953451922893	7.69243813575139	8.22456633551232	9.47576248945441	9.37867397501692	8.86326994112186	9.11735838276434	8.48471607575986	7.84731942404538	8.37332235524227	8.14942095254651	10.0815252494567	8.2430955994535	9.66728367952075	8.84307228099949	9.73237972458305	8.58795112355566
+"CIAO1"	8.227955751129	8.51290567970891	8.00546865154529	8.10449078733801	8.37717146322345	7.82777904018081	8.04097378623621	8.05212517146867	8.20605574674989	8.61989760516495	8.32845592816192	8.45108436950276	8.14450775109567	8.01780329431901	8.09553108232186	8.54707041604964	8.17923930882478	8.42783364456555	8.25561952411124	8.51422437513536	8.65465792440974
+"CIAO2A"	8.8260404476477	8.71174479757313	8.38049748291227	8.44296885225611	8.51368323069755	8.31639409908606	8.33902885890858	8.49218644792687	8.60185567060335	8.44616760706867	9.01316699779707	8.19901352198853	8.58511110475249	8.50872131504723	8.73962636765033	9.02997565195055	8.29462301292581	9.07610015492762	8.85646289689376	8.33902885890858	8.45986510998957
+"CIAO2B"	9.92266428084354	9.70995425929745	9.61846771592846	9.4972507229415	9.7272015564134	9.7272015564134	9.78752244291032	9.83773843699354	9.72221623830246	9.69917104059727	9.92074508677866	9.6305968675834	9.58394768467102	9.68547522580038	9.73686815961574	10.1398293983947	9.51837398476877	10.0403951443012	9.79693794707112	9.82174160389598	9.55353181110326
+"CIAO3"	8.21013327738942	8.13274536181495	8.10305335114825	8.02293010203464	7.70911430083231	8.29498512000713	8.15892853773097	8.04760231537793	8.07799675355505	8.02951820916637	8.03710047997686	7.96681622475779	8.1323037868958	8.19489230978548	8.09023888084037	7.93400276026875	8.00624829702716	8.02951820916637	7.9094868936638	7.95349580284208	7.95811361665045
+"CIAPIN1"	8.56473495906086	8.64164381224054	9.0105256650014	8.47132109252756	9.10847528984173	8.51234136486508	8.09583551656839	8.29180126639964	8.46244351765483	9.25414549927247	8.50168446704613	8.88140730162274	8.33386951850166	8.21293016828723	8.42194127735261	8.93569816857856	8.70774279645654	8.96210793753266	8.31707889533129	9.27149894165556	9.10166147800782
+"CIART"	6.70394860645511	7.31339403715453	6.98932701479462	6.86610355427639	6.98932701479462	7.02988806447968	6.98932701479462	6.79128276062064	6.99691184228885	7.47332125198049	6.54809057595236	6.92263450021074	7.10734481694423	7.0614897681096	6.86024684306313	6.70648919837716	7.05259729063906	7.16329191109421	7.1993267697307	7.28747728572963	6.7204824796472
+"CIB1"	9.01284112232261	8.30689530930254	8.5767172683182	8.1816587734154	8.13902465172073	8.00867623482397	8.63888318448281	9.0765545814465	8.24045172502088	8.12273946737173	8.56403159253682	8.28117047545325	7.65245023942392	8.35157402445106	8.02570189250505	8.51666214821845	7.98965893269829	8.47334940063055	8.37217929647981	8.37859263308232	7.93188598193368
+"CIB2"	6.35686934152314	6.16231521877288	6.16354967594678	6.03837270463874	6.4972844645876	6.2220599507654	6.93441389766019	6.3112480146997	6.32843351766882	6.40795790082682	5.9464224336478	6.36821009034091	6.08830712258321	6.52223586595631	6.00902241381799	5.96316831780429	6.01074435841965	5.57256876546063	6.26953114137169	6.33888518859146	6.2054156129324
+"CIB3"	6.29036021942848	6.27137385293173	6.32855748882089	6.33486472787957	6.23645028189452	6.42989522102275	6.33959978522473	6.32872064980659	6.24120189370605	6.57700429281573	6.08176003176588	6.39895132503548	6.42989522102275	6.59645849546553	6.35205925744435	6.10055051133412	6.4243578577483	6.251357959537	6.19247756243887	6.33486472787957	6.62666752626276
+"CIB4"	3.9526432462815	4.22491415153558	3.94572444502756	4.22491415153558	4.3717849822206	4.19972215842931	3.96286626604599	4.06239889745532	4.30937935871526	4.20820196505343	3.83353097716373	4.28841995389549	4.58327717153349	4.57484116768924	4.06313372504156	4.09510042995019	4.25598954104429	3.85679830580284	3.995602862595	4.38502172711057	4.40797570031653
+"CIBAR1"	4.59578092361827	4.82665017056275	4.7515739406283	4.77107754273968	4.62306339416866	5.32128574997877	5.30490947729762	4.77871657554349	4.91297920773594	4.59887120363136	4.54821130047374	4.8606892508247	5.00981258405856	5.17607300217917	4.8559412934956	4.97370786940079	4.8942612315922	4.3074054889798	4.92727356726309	4.69046037579357	4.91642727141554
+"CIBAR1-DT"	4.10786034616863	4.35081642307762	4.33534775975375	4.18594715268577	4.38092506888617	4.18082763180351	4.46673005979245	4.28312410172045	4.29155728630076	4.31706417775023	4.09005717935317	4.3996769283169	4.24025730920051	4.46301065699515	4.41157205251555	4.15678929796078	4.20892290641428	4.16089863856463	4.2285519297536	4.30291884282523	4.60216448646021
+"CIC"	8.85406522309098	8.79179182183764	8.81568370305759	8.81288452490197	8.64934009572419	9.19563157881028	9.20283845612794	8.87697415793621	8.94494901808721	8.98244124080125	9.02555202423124	8.9487185054046	9.04748646237904	9.25064790868814	8.84267288902232	8.8221097971403	8.87697415793621	8.78193373879523	8.93444733617978	8.72718480025847	8.98319154706453
+"CIDEA"	5.95568285574055	6.04662085054828	6.37280054330695	6.12641398132349	6.70645717451396	6.53035671228684	6.0373480765698	6.11833178807277	6.30594498577342	6.53646859124263	5.93843133538301	6.7731776945499	6.29175686897569	5.85110973651516	6.29175686897569	6.61538890889154	6.61065086416693	5.98022009715834	6.17645558943406	6.85033774279691	7.14302038721268
+"CIDEC"	6.13600210631906	6.45331397317193	6.48500236965099	6.49804472660575	6.68548948706385	6.56955283788677	6.6561631586425	6.36874582088776	6.53673345633857	6.37597512361054	6.42378707137307	6.52694997793356	6.46300665369167	6.66498336033552	6.74804618547672	6.49804472660575	6.40704852890421	6.28158507769397	6.46960921218534	6.64603545679635	6.51354627556914
+"CIITA"	5.20422348863849	5.51698186140246	5.77915040417769	5.7051815104645	5.76778281568428	5.76742879328185	6.35604544127312	5.61808783004926	5.50905480856996	5.74703886829724	5.54515080721014	5.71707100436995	5.8831984301804	5.91724717292331	5.60567755804647	5.492912642018	5.71656556366923	5.3454142692371	5.80698716609961	5.2985688538703	5.5935599488192
+"CILK1"	4.52184830764375	4.50667597961372	4.28153753263455	4.52240079815425	4.35783935626208	4.22501454890942	4.24706387171124	4.22983107127717	4.04254565894564	4.23866029933749	4.86353121890441	3.88919003834997	4.39755191770654	4.29926618084026	4.50807305472867	4.61662877388907	3.90590494731689	5.27830253290304	4.39755191770654	3.99324195570791	4.25964472169835
+"CILP"	6.15060267279923	6.60380093593887	6.354572524534	6.50562538675028	6.48207716403873	6.41031630164901	6.46766547067451	6.42276680074588	6.443834933189	6.28166266026971	6.24411336024827	6.00841426705997	6.36920555195804	6.5876630146249	6.48318251256319	6.57366079877084	6.59842503771453	6.0898262727177	6.46708905082715	6.39803373447844	6.61107734890394
+"CILP2"	4.37723246511919	4.66454020602381	4.56225358345181	5.24645699107151	4.68935983583398	4.90101032132964	4.99071984820167	4.63570053404744	4.68935983583398	4.77325720868904	4.29938893389525	4.79846924104125	4.82013736180836	4.40295125860468	4.61606254363123	4.58764362837163	4.88454934685606	4.21754906975643	4.59996793387322	4.68935983583398	5.18128182446228
+"CINP"	5.32035940935634	5.17799473370439	5.45399050679892	5.29274730601974	5.25692888444407	5.25891724193986	5.33549520593109	5.47540568514846	4.91281930590086	4.82383281026987	5.49872400487695	4.85091372251519	4.60383399260315	5.03478105294696	4.74883588683656	5.89127204575242	4.90178049006447	5.55296298924581	5.30841963938547	5.11666345622108	4.23987203336076
+"CIP2A"	4.36406090228813	4.37919103705834	5.41755148730969	3.67452603216452	5.07508829750431	3.88320112984833	3.80869290611033	4.22237923614629	4.21577689012548	4.43935023485289	4.41994517961982	4.63733225580247	3.79789751493351	3.63683553764114	3.7793995983683	4.52897384022172	4.3241033586269	4.62375348572017	3.65162319247665	4.51769751470564	4.44513905779915
+"CIPC"	9.20714548827742	9.23729157522809	9.21163334227474	9.22772214994551	9.20714548827742	8.63051758589526	8.79954105772541	9.0371818414602	9.20714548827742	9.28248038698629	9.64175440818336	9.02663483848868	9.20714548827742	8.38233828387781	9.42517877442218	9.52190013616853	9.15922318550721	9.8616357733194	9.3050085009548	8.94229486575729	9.10511159448254
+"CIR1"	6.93377237244267	7.22417907383138	7.14447209979177	7.13717581818329	7.072283125541	7.25153284142793	7.14974734044439	7.2556115717522	7.05606989541041	7.36124547313851	7.15776144183199	7.19810283632922	6.81409442786002	6.76008464752954	7.00645932388581	7.12313476984149	7.19853783199794	7.19681819740411	7.26475223406847	6.95375726492084	7.41991141303164
+"CIRBP"	9.1065349601367	9.71760531008274	9.53540834329755	7.7952772404888	8.71750908154046	7.73050754041419	7.18564402986247	7.48236211774132	7.0839875246391	8.68483112701926	10.3268852829571	8.74144331335054	6.91699386345014	7.69247850686453	6.38826975944799	10.3552949974996	8.08060244690635	9.61289590621609	8.467773684699	8.98626578676511	8.6231621004499
+"CIRBP-AS1"	4.54471375759719	4.69844703397205	4.79876539529149	4.91100454531016	4.66705015590513	5.38550935805814	5.35146363009956	4.6087418541275	4.73780036800828	4.77183234483512	4.69430290901264	4.90030428245773	4.99581117944303	4.85368995169126	4.92775606705552	4.97667798446477	4.79182987109215	4.5180013161075	5.1011241342425	4.67690331315619	4.86936725593486
+"CISD1"	9.13260725155523	9.83873266360744	10.3981922991862	9.83769216280401	10.3576367526156	9.383271332145	9.13566390623583	10.0511985576923	10.0872851478259	10.5508374657225	9.6148643498101	10.3486348122511	9.84101662784965	9.31254095945372	10.1217693322827	9.94455467288956	10.1928874113653	9.95609413735727	10.143591979498	10.4430978865808	10.4361114428865
+"CISD2"	5.01425074887695	5.29654706353205	5.49739136852309	5.31059858923322	5.77127192872887	5.1509359688985	4.63634589594091	5.15864516210269	5.50739897636367	5.56656553442925	4.95586167225568	4.86726479141341	5.06639249219663	5.36867078989084	5.56441420699549	5.14955597803731	5.10840268264475	5.52955298246427	5.15002073025142	5.26596137852947	5.33047617767894
+"CISH"	6.78146425995454	6.39554068267244	6.23452505170577	6.29430090802031	6.36510176715396	6.11740092582046	5.78061846512088	6.77570893178934	6.14924584264363	6.30359327743002	6.16921266840066	6.48634732302282	6.26890837808488	6.31920405159534	6.22182880838408	6.38985001596147	6.29430090802031	5.96885935629715	6.15588327999185	5.9721574541798	6.74077985766887
+"CIT"	6.65238845078143	6.60437121615023	7.51391568368642	7.63038890357055	7.0288217964018	7.99069940058748	7.20523721567229	7.47352485518789	7.77051738404953	7.18371078281918	6.59300809051721	7.04326955223933	7.62312997526791	7.41582271634053	7.91414530948303	5.9609186170997	7.0886982487935	6.41835831675987	7.36634493650181	6.85033774279691	6.51904385819976
+"CITED2"	5.9075471582353	5.88792165305892	5.84876621809455	6.19194170073686	7.04243174537754	5.22018577842239	5.68199306382382	6.04699143945641	6.08204427695434	7.4978849908817	5.86615374841807	6.70052456767945	5.76956000729044	4.93365983488633	5.38800137966733	6.1537693854791	6.948781511047	6.19959217723738	6.31186788406637	8.1220635025336	7.04793926106128
+"CITED4"	6.98442032760267	7.02799696750108	7.33328966639171	7.13766377095846	7.23921827778073	7.13081736787554	7.15697865762852	7.05413789950717	7.20613646806486	7.43796107013263	7.07479178653211	7.25740704842843	7.27944957769565	7.28467251444563	7.05231084894623	6.98910842719433	7.23777450491006	7.13485848075638	7.13442741803993	7.31310557049294	7.09458476525944
+"CIZ1"	5.21221600035215	5.62664153045554	5.75624908196573	5.69275263008821	5.7749103285199	6.03197347013016	5.67366331753911	5.14377682113698	5.8999687481741	5.88814752236589	5.26265897708434	5.61580350245894	5.63368920093154	5.65102772989842	5.87134659156736	5.41099690808569	5.82001681889644	5.5941733389914	5.29125422002435	5.74894768121818	5.62664153045554
+"CKAP2"	7.44851101963014	7.23220190323967	7.4691972006123	7.0457105493604	7.68256740852145	6.77467715696224	6.66658053093652	7.05548720069721	7.54816238438196	7.78878871063741	7.09324374030012	7.15840937060326	7.34475104045355	7.13883101110774	7.60265106983177	6.94370282585637	7.32598774772613	7.45322298224708	7.36584851084581	7.06352331241997	7.53716186261535
+"CKAP2-DT"	6.04040294503315	6.18648912474455	6.20467785506717	6.1803066223175	6.48598172348183	6.54611076950205	6.24600886813624	6.73667776487207	6.39487517988831	6.29768956513175	5.70508629539262	6.51543631045307	6.34521830326637	6.05137334355745	6.31283623528626	5.8899378667598	6.50334091794927	5.69834672157616	6.32118944390532	6.46731696137054	6.26727093454017
+"CKAP2L"	4.93492546391645	4.98192115731337	5.06596562739349	5.04998994200846	4.91038619634107	4.87055533094393	4.93085399347313	4.95771342590708	4.87610367423624	4.95771342590708	4.80136332454768	5.10927404173763	5.11167685343279	5.02548967762281	4.80919464669678	5.0055337059313	4.81106422172608	4.91647217129004	4.83696266910577	5.0722278583652	4.96027421523205
+"CKAP4"	8.81758383067096	8.43194324089235	8.98466575720788	8.1188847313976	8.45569633159101	8.33997823316693	8.16764787172572	8.38919836765263	8.36183826345273	8.46736943931518	8.47801211023237	8.74128930376002	8.27935574967894	8.00159289586511	8.52838940005321	8.1768566464922	8.4402688887251	8.4750993044787	8.3898296787154	8.94518301073217	8.5075770392098
+"CKAP5"	9.8693521054027	9.67272798553964	9.60266603406613	9.36693647302587	9.97096568194839	9.06101167136228	9.33134457982559	9.82634074277399	9.49951594691382	9.92040631110278	9.6439008244124	9.92794405828349	9.01581292506661	9.17555403058672	9.20469563065961	9.75071719633138	9.70713021058046	9.76551903963984	9.49043650254908	9.97924117966716	9.86284005963605
+"CKB"	11.4938253613458	11.9985865857717	11.9963946416113	12.0248404428616	11.7911847630707	11.2591326331374	11.8609591374927	11.8214727353166	11.9739752953865	12.1546303062262	11.9466724589038	12.0917221470232	11.9899041995026	11.5383444063049	11.528491982222	11.7653558590936	12.026825090862	11.8759619146295	11.8759619146295	12.0648134491553	11.9932438533373
+"CKM"	4.53842606060137	4.55392369234232	4.85512089312942	4.91859512919071	4.83851391392687	4.96387014243427	5.23817916073658	4.89399552703231	4.86683524266545	5.0053170871748	4.50643129871752	4.76088586940152	5.01927668871185	4.9441544756109	4.76511586001474	4.57018250120868	4.83071012145389	4.39509358386998	4.65279488485817	4.92429391867639	4.79163741188572
+"CKMT2"	7.21988399872712	7.07284108839569	7.12816697020051	6.83480373180495	6.80988505218093	6.3309744239962	7.17705673120514	6.69147142025997	6.44573897037839	6.83156001383097	6.89290597360766	6.55360201766304	6.45630771483223	6.7748486706452	6.67781329508525	6.79797717845499	6.51119829099486	7.24851133288045	6.86054009494583	7.03103231016308	6.31791625617535
+"CKMT2-AS1"	5.48246385143527	5.27078475882974	5.30790279684399	4.97772948563276	5.23255149806813	5.72464717077284	5.0938991513565	5.83369378055243	4.71661627096381	5.12783820273974	4.81344321121627	5.73265539027424	4.80419531992814	5.52690718268132	5.38079629604091	5.15766366964006	4.546251462073	5.40227647556248	4.94742361195915	5.22135109446004	5.56945999357043
+"CKS2"	5.96872779250893	6.03579207941616	5.02964755508235	6.78402186087986	6.21102275250074	6.3643480768716	6.29079601809376	6.89521161667097	6.22756927441511	5.73586417311183	5.40698459545515	6.76634387045434	7.01732101522663	6.15704406679574	7.37922505096943	5.92508015642213	5.93677191233105	5.54333337620704	7.20735558793768	6.83595008072206	6.47182420657754
+"CLASP1"	9.84230323774805	10.1185153639321	10.174764636403	10.218562684924	10.0272332820776	10.240367548217	10.0274707303487	10.0369577072822	10.2764247815831	9.80457799160583	9.7331335398847	9.863787543679	10.3904635262544	10.2347401186432	10.0657090505705	9.43414451257761	10.293173656772	9.8328374191709	9.80747138695484	9.93359026682656	10.0232677927575
+"CLASP2"	8.13779611643289	8.56017485319126	8.57776701671331	7.90040666461496	8.12893332098386	7.87567688003155	7.43937322309033	8.18763683739061	7.67952314328924	7.61092638882622	9.10070206700363	8.76282352803136	7.232297811136	7.34002747111093	7.65342482346325	9.38052731743667	8.52462570874266	8.86536738538245	8.17669629538382	7.70191801742159	7.97100288757316
+"CLASRP"	8.78750370965384	8.6576078364043	8.8219780337648	8.98625623529564	8.6311126765258	9.38960972230036	8.99366817262212	8.72176347490515	8.48251096828356	8.57659073061858	8.94574040555889	8.51997044870897	9.12864311250862	9.24523885834817	8.75497065729409	8.91597357381819	8.48751581406675	8.90088526833819	8.69847807501175	8.40693163330411	8.66515278721705
+"CLBA1"	7.56794932741895	7.77652560173734	7.96578010656738	7.56119826240848	7.43835283017259	8.11464191147109	7.95789486032345	7.55576439039497	7.72043929348211	7.78822835927671	7.76825399266458	7.89105828262004	7.93942679819318	7.83842000670974	7.47123673072957	7.3993009486132	7.68620983937304	7.50438778966031	7.8806928198211	7.81746288384235	7.5859136415077
+"CLC"	4.35764758339331	4.3703964778965	4.4542137745783	4.32781775408196	4.51832934515688	4.3858499817178	4.42408038457424	4.46777860564642	4.35879765962638	4.43028680534325	4.04580766695419	4.3858499817178	4.2827703687523	4.3858499817178	4.39606378428615	4.25237392160116	4.29547574100748	4.12329288505775	4.4542137745783	4.3002311346122	4.70486540034967
+"CLCA1"	4.70107829916582	4.95276260889591	4.97137442753647	5.16850302568636	5.11897541924303	5.19133884886263	5.1716869876303	5.07473500579515	5.21865459060112	4.84221627965717	4.78579917322488	4.91793886030598	5.02911786542874	5.10694938174782	5.0422894529539	4.91489413455438	4.84514129145658	4.7921460364748	5.24467232677865	5.02069729198404	4.97769602308809
+"CLCA2"	3.76565472559419	3.90241113057649	3.53629819191277	3.4167522847285	3.57371329428219	3.68733517663755	3.15843336119052	3.46699995178076	3.45041515166989	3.28987062280114	3.88272156060135	3.19974090533624	3.38055667921883	3.35020135312687	3.27420848537286	5.001442172575	3.39699748987096	4.12780109626908	3.55026890314168	3.30627270553787	3.46924752939726
+"CLCA4"	8.28631098118317	7.35383183124307	7.04877679719247	7.38487258459478	6.70645717451396	7.75458200645441	6.24872808040878	6.67769581712197	6.42652352536194	6.14019872511372	8.74292820086786	6.63920462238837	5.65137218060956	7.44726073963511	6.92848738405704	9.32258579290218	7.08499989662734	8.7553849242691	7.51079571981419	6.36033757251123	7.40117193333441
+"CLCA4-AS1"	5.35991868674661	5.46791107454538	5.52003444091372	5.43976754968249	5.87446745645177	4.94653407799705	5.41062292214462	5.6417070025605	5.25551939129475	5.44203842462183	5.58472387214647	5.46114384029683	4.96397438041929	5.14911842381788	5.32422198959502	6.06425536978966	5.40593083305909	5.62735506388359	5.65280215731989	5.44785886386712	5.62735506388359
+"CLCC1"	6.05572573774698	5.98737603366594	6.26050690420153	5.54861661364743	5.95158538616081	5.20588029485581	4.96545250664411	5.83877969834498	5.41436203369554	5.83198808840546	6.46100047607255	6.08343023401826	5.03682755431089	4.93065981332755	5.44272843593509	6.09902304169472	5.70736689199143	6.47502157242537	5.56876082013031	6.0157868747267	5.6694073428554
+"CLCF1"	7.08487626084944	7.01913748008824	6.94400451270838	7.13990145002628	7.03947981958491	7.35954306965979	7.64314147474662	7.13081736787554	7.13081736787554	7.27802225097593	7.03610998575172	7.16856430917288	7.29905034219209	7.33638826061284	7.15754903856224	7.00955119803041	7.13081736787554	6.75155375974523	7.30373031580662	7.05078190865068	7.03648445568345
+"CLCN1"	6.19160323350515	6.41114755109867	6.48519330168266	6.57917224369172	6.25435880879492	6.88250752951744	7.17884777397521	6.66756401253989	6.48519330168266	6.48519330168266	6.21177173411988	6.62828489607274	6.76576186537057	7.03991559486195	6.48519330168266	6.32032406766099	6.44754239945107	6.07447242365776	6.62379674537495	6.42986215342567	6.34567371727516
+"CLCN2"	6.96793239822727	6.63728589340584	6.77282459115849	6.5106958250807	6.56284279741677	7.1190037198087	6.68458396877338	6.46799510003961	6.48175439764074	6.69150798783827	7.0741841685557	6.42242756340477	6.68458396877338	6.92158037108319	6.54351089877989	7.11410517452829	6.5332085369876	7.16869379189605	6.65608655013175	6.70580930418486	6.59944458768746
+"CLCN3"	10.1665153026491	10.1584690312043	9.40854980970302	9.93762889728673	10.0374246125044	9.27813128935516	9.50925064713359	10.1059114590251	10.2432042291798	10.4047214912178	10.1652813168133	10.2346055853016	9.72869840288505	9.54074833186233	9.98824154338863	10.5292699533924	10.0787971667392	10.1736792902437	10.1070371157884	9.98822771418244	10.242694636378
+"CLCN4"	5.9943800442977	6.31693215885456	5.49321080773268	6.35970099519042	6.92028604477741	5.97003892430122	5.60937631029587	5.56649119282532	5.9917812777524	6.79278098344957	6.69546281992689	6.92143794298713	6.26690882677525	5.65229694737281	5.63947145450896	7.47845517466934	6.46320626142717	7.63677529831923	6.16139357260409	6.86402171723007	7.07200193140523
+"CLCN5"	5.72674167093524	5.7811148307153	5.74464476143787	5.58915657091813	6.64422481232322	5.75679080642006	5.54096282621275	5.57692110156962	5.92368826992796	5.89148026174246	5.64768216217527	5.87954357424493	5.89594672892375	5.85607061110269	5.85431965668643	5.66925025325277	6.25255051917942	5.47498524545486	5.46031683300744	5.91492338992175	5.68252365059641
+"CLCN6"	8.67080016015188	8.69928587648603	9.15567698967313	8.97842140888926	9.2080169701612	9.27531071834093	8.62287088933163	8.62368279988797	9.04109430513498	8.75651275364101	8.82674499440593	8.63407434049394	8.90170731512051	8.71000746617602	8.86021917310056	8.85865625625465	8.92228538235173	9.1428596461103	8.48535863604209	9.10036381623655	8.83765234037154
+"CLCN7"	8.73302384588632	8.86564540692173	8.56576373240914	8.94889302045041	8.52708649630322	9.22986461022905	9.39489086509219	8.80408804557999	8.74384918458787	8.802375806304	8.79891586180019	8.7483038813247	9.00246975694879	9.16792370461595	8.86601903703309	8.73231799644251	8.76249901314027	8.74997313786322	8.74019404414532	8.8478553504803	8.73231799644251
+"CLCNKB"	6.28798816503377	6.53323567224471	6.53997361765621	6.56152469895167	6.47447041697101	6.86011459173523	7.23777084517259	6.50562538675028	6.71650659517023	6.54966972336904	6.49345910924742	6.5174598065964	6.66913239772651	6.8147464974412	6.8249746992092	6.25099045056292	6.66492573896804	6.26918418939024	6.62986179676096	6.5569526929462	6.73365947221615
+"CLDN1"	5.08631690118672	4.87984150716195	4.58513874307947	4.942074321183	5.02878614312129	5.095185795894	5.14751411690598	4.7379629226845	4.99694706688246	4.76968755238661	4.86851269538938	4.63206430327255	5.34985243759026	5.26842136448168	4.94449095941134	4.73925620392115	4.87820848216641	5.01072018492858	4.8444125607646	5.05497694948843	4.76821273903073
+"CLDN10"	10.0265157795098	9.93905514310437	8.85797665796941	9.43174964310686	9.39493508835355	6.53767838362623	9.90639093907502	10.1008716243838	9.68547907553496	9.19434615283964	10.1570630999977	9.16564946597639	9.13504583089422	8.54705957415543	9.0605271543851	8.50907973178547	9.12677906225139	9.26821993411885	9.43663312380139	8.78416796976447	8.34084654315319
+"CLDN10-AS1"	3.06234763035109	3.29571308392441	3.24557953551922	3.23394947648949	3.20624708844792	3.09782467255632	3.23545724706921	3.21234077400256	3.21824683896019	3.24106430554016	3.10231159795691	3.3497857895497	3.17841492475796	3.2192017493964	3.34264641640715	3.1234643032358	3.21298117002204	3.08315688993003	3.13868215756665	3.28577015362603	3.48485228101514
+"CLDN11"	10.5328564166053	11.0196376788076	10.2441219703487	11.0355573502035	10.4814314916998	11.0016000230899	9.35304586471941	9.97541838815099	8.73680298021622	10.1411418033921	11.8768773948366	10.3993582135732	9.71645233715529	10.3469750745283	9.72865979572405	11.6617808212593	10.240005481433	11.8155940246814	10.5149060110333	9.72534077867908	10.246105279632
+"CLDN12"	7.84033396994761	7.56374229594821	8.24365648903178	8.17300304251963	7.76746967223035	7.72427240599856	7.94132546490953	7.91591298672645	8.19028514152912	7.40774323265751	7.27034179571877	7.21097439603489	8.08192808105176	7.64191601644025	8.38106818696985	6.77783975912387	7.55877522492314	7.43102882684337	7.94095103529384	8.05812134259623	7.47539701165205
+"CLDN14"	4.9302721015999	5.03089179565469	5.02197571885774	5.14845237296118	4.76859603750671	5.39034123717069	5.36942053011816	4.75944354489667	4.96550373762012	5.17922851572448	4.88887944833568	5.21255447608222	5.01927668871185	5.08975197057347	5.03340534569375	4.90122496205643	5.01520607692714	4.94988165027414	4.8862645969741	5.08587031456051	4.97949206209611
+"CLDN15"	7.20095937036178	6.86180157288786	6.31327529183479	7.69376356765454	6.39119018242363	7.04343188989071	7.72982443031458	6.91782520210017	6.98442032760267	6.70026080687142	7.19761849477328	6.68822986896298	7.23824580357985	7.03639000306177	7.27470338967036	7.32160883655887	6.85434663316251	6.91096585486178	7.08294410984892	6.53822592158486	6.77061917541931
+"CLDN16"	5.39892754370658	5.62823287482038	5.15886166946048	5.63276654280865	5.4318671996421	5.50076182085259	5.4158442649847	5.4095743031539	5.50076182085259	5.56564833018317	5.16542402986816	5.53189112160434	5.46562510203757	5.2744563902176	5.38446539496201	5.803120768796	5.69050004291591	5.36043663754902	5.74851194155791	5.51892964574879	5.63732157879735
+"CLDN17"	5.86118560965341	6.07447242365776	5.74343965964141	5.98532400107248	5.91536334384264	5.91536334384264	5.667582256966	5.82999438659075	5.81692657132137	5.95471400619296	5.80318437873912	6.01541270859214	5.91536334384264	5.8668976310647	6.07688817093412	5.87173431957258	6.07299535223127	5.82287033003888	5.88935711019047	5.88432629138233	6.22510122057288
+"CLDN18"	3.95182641565927	4.21882362572269	3.99183725916956	4.48101624424806	4.16089863856463	4.3769521851486	4.32351478355936	4.24644173537288	4.36597711584476	4.17053973927035	4.0787325042756	4.16616047577818	4.18531475419208	4.68815540361551	4.53674495495996	4.21578460639618	4.11969024475227	4.07142849090802	4.35359326754351	4.04869008899555	4.21882362572269
+"CLDN19"	7.20655769918352	7.3268801609118	7.08230623084486	7.59917076152072	7.16697099267007	7.31171853679334	7.62416380634376	7.3673020854389	7.52171819521172	7.42671272481695	7.233034535505	7.50272634919701	7.44495920769436	7.49022619722203	7.44417815933084	7.27051537170853	7.42255084196338	6.94871677620149	7.34217646377365	7.29729993282395	7.54550015856796
+"CLDN2"	4.66247528027897	4.85225910778789	4.85225910778789	5.09670891221781	4.66841338884089	4.891431597517	4.83569769519918	4.85225910778789	4.8504739651563	4.74671721617897	5.02556958624012	4.99440222174112	4.69166818024557	4.73563657601757	5.03187187607859	5.06634597640607	4.9802159488443	4.56935853651511	4.85225910778789	4.79682212610012	4.93489267604523
+"CLDN20"	4.2205377902322	4.45295290139076	4.22420947731076	4.51467175172906	4.51468425073055	4.19802408744204	4.09371668981241	3.97554272193874	4.42236112495982	4.37253480609131	4.29029854279727	4.30204068694556	4.50543578432635	4.21711489916276	4.6006036209288	4.4814041089486	4.33059981607054	4.65238838590816	4.3682083341904	4.07378177819428	4.41104929959857
+"CLDN3"	5.9284420279762	5.9828751933059	5.96668269176176	6.22159849417387	5.68215064223069	5.86419479421509	6.39738964083581	6.06532514131988	6.18931384231926	6.02181031643405	5.99862101475969	5.95607486679989	6.21941787177367	6.1596107346599	6.07854110773496	5.71595046666928	6.04307529715195	5.78479944225168	6.21431594696785	5.91049143022499	6.0430531618605
+"CLDN4"	5.41018166803094	5.75410967512751	5.64508586291976	5.69459807168274	5.4142276460622	5.89823397989782	6.11803788080613	5.44627018276184	5.94709255536061	5.74622908181167	5.45124121372987	5.64508586291976	5.89427719632521	5.64508586291976	5.64153256276521	5.48737761385762	5.75110814429238	5.2366266326937	5.64508586291976	5.95125846945539	5.81786786818394
+"CLDN5"	10.9683789981699	9.31634925406139	8.88028516792773	9.45283148180564	9.08796483972582	10.6688931984816	9.85821027000741	9.30661817439025	9.24223824565109	9.55526126447506	9.45538027609275	9.4109908210786	9.78939943816136	10.1661707624406	9.42086905882548	8.58683562402001	10.0061503538961	8.83250964648466	9.26092171160378	9.38948737044102	9.33625452650176
+"CLDN6"	4.66469581861983	5.07278652757843	4.98200908134609	5.23736736234986	5.10509634286822	5.12886768950713	5.29185659415311	4.98077736810731	4.99134194587508	5.12271225052216	4.56818131693035	4.90118145910622	5.25216950051703	4.97648509580427	5.06481465472892	5.06613246239706	4.93646728697667	4.81861041985369	5.03129773015695	4.92172945401038	5.0991634800558
+"CLDN8"	3.42321503081489	3.34410968671145	3.47416571609668	3.3322641446657	3.3404377108901	3.64246571485993	3.62861266704206	3.36578703489803	3.38465876498807	3.3404377108901	3.30189213635663	3.26688740184302	3.17244348900236	3.51782308415553	3.29024647305824	3.3404377108901	3.3404377108901	3.21618145276427	3.17729930869776	3.30687410328118	3.36578703489803
+"CLDN9"	6.41858910506135	6.39156396542078	6.52813120898041	6.87980403148404	6.32214413798217	6.81271225789816	6.76192675749736	6.4611391468707	6.63963590480082	6.36363889690864	6.28834321669943	6.52813120898041	6.93024041367558	6.75493308305775	6.70292929029414	6.34256261357756	6.52813120898041	6.36571949173022	6.71424429084654	6.25835742336982	6.46299543001315
+"CLDND1"	11.3149341975249	11.3573606668705	10.5169453923099	11.5163946395987	10.9625036972051	11.3694763196147	10.9959507106099	11.157422267173	10.5790616667854	10.6885059790301	11.8939462589985	11.066767495093	10.8695299109947	11.3262467215226	11.1953281767734	12.3653186444609	11.1689605327448	12.0871445188881	11.342967416568	10.1687394700537	10.9310440827959
+"CLDND2"	6.04993577398178	6.09157645314226	6.24531498568931	6.18709191270289	5.85275515370317	6.33905568131117	6.36595278956921	6.07854110773496	6.16680583806447	6.44479914595304	6.32668516959653	6.35088491638806	6.13079236330299	6.28422177843948	5.85341812432512	6.11724814044624	6.25106488195329	6.56367090513061	6.16314131034959	6.11140248314809	6.12011435036093
+"CLEC10A"	4.88978112093108	5.14820707078672	5.34039808963193	5.17412837832247	5.22881527915291	5.72338703855342	5.73971809950586	5.19620469390342	5.19654231125058	5.46604137327082	4.90891536730434	5.22881527915291	5.38215431317492	5.36954662520917	4.93540250718666	5.02863674026841	5.08756329270662	4.85918736926625	5.58609819055339	5.22757303687967	5.2561027964355
+"CLEC11A"	6.58791393499304	6.67165673383114	7.09900329397945	6.85920026189002	6.5237681101268	7.10449953673776	7.31804243081417	6.70372840522924	6.86448257703705	6.96026347524879	6.71298036934272	6.89841007897721	6.98078119680615	6.86928113993391	6.50277139618732	6.62872391573575	6.74377201855689	6.84296430877034	6.95847375698758	6.85920026189002	6.83257130362875
+"CLEC12A"	3.25403003438339	3.28283336836313	3.22820480624058	3.1764748417398	3.24651292693652	3.14500911400727	3.35038548201436	3.24230196145342	3.24230196145342	3.0768461069553	3.19759611336755	3.34767993361463	3.12383782018939	3.17526822112279	3.19830637649742	3.24917692728594	3.25799060021851	3.61668073193733	3.29114306828581	3.15860423585289	3.48300195005235
+"CLEC12B"	3.93807260656582	3.95867738615896	4.05967365372876	4.03771313355036	4.29102922775259	4.58727251320221	4.12329070702881	4.00240775840271	4.02575453164879	4.12408922390179	4.05515842374971	3.99375385432842	4.11877547704975	3.984451889184	3.87821772445066	4.02748262915009	3.93142701207449	3.8661843723552	4.03771313355036	4.19557467069837	4.02051460021878
+"CLEC14A"	7.70544858769284	7.32381498925868	7.31460399173757	7.30581897640478	7.06389479176947	8.06092209629204	7.94868105927551	7.33617274289666	7.2945529128695	7.36429245547196	7.36429245547196	7.07657865000361	7.55783665469298	7.95783689888499	7.09847235910625	7.2110602257751	7.53533169802268	7.04183230467659	7.51256792651547	7.4940065323384	7.2306121876621
+"CLEC16A"	5.63282737911643	5.65742795606143	5.71656556366923	5.64756812656233	5.40723868797338	6.21340833213624	6.43547251005408	5.78004347622622	5.95347901700284	5.92776011577785	5.54873112377514	5.79966674403096	5.95665821125239	5.95236830550127	5.75686003250679	5.50097065565233	5.8166408278434	5.79225067761904	5.848038551638	5.60909667841979	5.86073863217943
+"CLEC1A"	5.96523404309444	5.7046564708437	5.18369636216203	5.73586417311183	5.5225544288906	6.31480564701969	5.71435087229921	6.22688711490455	5.70499766271799	5.50559433308183	5.17063776822665	6.29057412696261	5.91683130389346	6.16126406790764	5.62820440871065	4.90344387543774	5.88281957876979	5.07424968146536	5.49057822550066	6.06855276144267	5.70609163696998
+"CLEC1B"	4.57219855990516	4.62675422497434	4.46527300960837	4.68421260076655	4.59248882416945	4.8589526006544	5.09808415593018	4.61738986277418	4.76079853488694	4.7079342942257	4.7826365483505	4.52745029909282	4.973937958984	4.84260465612825	4.6116655661249	4.43413618089784	4.57155375055475	4.86293154329087	4.68510678864974	4.49708864339662	4.87116769713477
+"CLEC2B"	8.28302031529542	6.5152814478106	5.61721759033884	6.98209356421979	6.67175179614472	7.52588706053114	7.47311989755458	8.26759994052421	6.61199328951794	6.96748885255146	6.38866534067906	6.45516678052613	7.33891621203188	6.89629865933235	7.94627710000227	5.81814821942802	6.89222340180409	6.53576149299022	7.06653414011073	7.61154510620197	7.08618746436627
+"CLEC2D"	4.78057709465034	4.67653806519654	4.33980060582244	4.6898297507388	4.69825394110418	4.18338919601042	4.63600665828682	4.39457455281665	4.85004854209074	4.57512919121534	4.94663556831947	4.67653806519654	4.70394679882334	4.89061152217879	4.70063132407213	4.71169100100109	4.75364055500035	4.53800351028231	4.81477076041749	4.57609493426941	4.67653806519654
+"CLEC2L"	7.08092879107431	7.75305907219847	8.45460660803898	7.77229282184948	8.78350081564567	7.93835537630742	7.44969045385057	7.56700661816651	7.98947536517399	8.63093939290496	7.69035786380666	8.50685744940282	8.55369848466775	7.61875385670605	8.00484347836576	7.59162635060565	8.5426870728471	8.12973081876255	7.78746393338926	8.77339489549614	8.86243492544438
+"CLEC3A"	4.40810127086645	4.53901038508953	4.46316351708063	4.57510634317149	4.71248281793472	4.51948397969449	4.50010254929447	4.57512919121534	4.39332105794673	4.4893071392175	4.36247862995926	4.29410868827333	4.54655793040382	4.5764205339622	4.57471866355686	4.60702092744709	4.44502091315344	4.42390106271964	4.38577934935607	4.40033454363149	4.48735850227186
+"CLEC4C"	3.43561657898329	3.43212629238314	3.29607963401167	3.32342532110838	3.43561657898329	3.68470922407813	3.68701008420219	3.36569897711193	3.62977672386527	3.56855972158033	3.13084035467913	3.45400939266158	3.57837016467597	3.68692359628028	3.63755263893343	3.43561657898329	3.43561657898329	3.4310929753267	3.41595135001752	3.41135101873081	3.31749245829596
+"CLEC4D"	4.20291384464216	3.66985871309435	3.84288183911948	3.90180225409449	3.60474877965384	3.80489515468044	3.67313235652704	3.91977967638055	4.06133385580157	3.79768297352322	3.66826479900739	3.83353097716374	3.94354381914006	3.83353097716374	3.86772432073275	3.90974803371921	3.71004933120116	3.81671961204888	3.82461490036678	3.71377487210265	3.83353097716374
+"CLEC4E"	7.5338831951945	6.12562619022864	6.17663962660088	6.82135616943114	6.18901790104374	7.99614067842386	7.3360085030096	7.20463605825178	6.48511409264168	7.20458441298738	6.07386597341214	6.65865117316235	7.31337044443014	7.80093972963232	6.30088373651491	6.12059484398192	7.18753044329375	6.40030544191292	6.75155328981465	6.959994945335	6.59531622781322
+"CLEC4F"	4.79012993747922	4.99014563053658	4.63639099875811	4.89062033213504	4.89225280187521	4.88548364385296	4.65812286488026	4.78379711936134	4.92203509186828	4.88548364385296	4.6951940808088	4.94742361195915	4.84556276860584	4.7673921454537	4.90716720533406	5.12725332766808	4.96250582286937	4.6053509795145	5.07041105888862	4.79580580329834	4.99315369752554
+"CLEC4GP1"	6.81271614755749	6.79107162018037	7.60467332509892	6.87206407783806	7.39068770723666	7.39024781046828	6.61599038542203	6.34152804306844	6.61461540389257	7.100629238192	6.6906197263151	7.19868468103652	6.82556958975808	6.35508143078801	6.28363181713857	6.66365626005577	7.02895543156997	6.94871677620149	7.19287299857415	6.84256439183328	8.16075608932871
+"CLEC4M"	5.13449612325385	4.94120765815941	5.04263423394572	5.09730844221698	5.26056285140038	5.52879165008503	5.10241645835124	4.77419415579516	5.19372694858893	5.2089694535185	4.94353236858526	5.17960705946066	5.35396676494342	5.24146914780468	5.27868907909807	5.00085833622707	5.30156088209041	5.13449612325385	5.04103104552532	5.0585479649023	5.61183173929373
+"CLEC5A"	5.36103631672807	3.88308711517605	3.38137321511625	4.2493817728559	3.91747881625649	4.25253158247121	4.69981915183954	3.81365196129482	3.56718460874639	4.43850976601725	4.49553152215833	3.51875086938351	5.18662493569587	5.83252541466851	5.31933306489964	4.77884317973661	3.59087072291289	3.64487762525701	4.17281352381174	4.13584656961252	5.37944966621695
+"CLEC7A"	5.18391081129588	5.49435657530396	3.53185149424745	3.72980906350418	3.86450600453057	3.62160727492543	4.13880197376716	4.73712491194823	3.88599904699497	4.49665310682498	5.06147219635162	3.85723717949194	3.93394662225063	4.29723493275972	4.04417631276566	5.80760697147514	3.95156733446219	4.17921252213806	5.02172266622466	5.38524690212951	4.73902345944324
+"CLECL1P"	3.74673156410104	3.66460139364954	4.04959608366744	4.335675740723	3.82420317917688	3.7811623564736	3.90019381838925	3.72968047380934	3.96192027333154	3.88720923829502	4.25692919875897	3.9943120539832	4.47576930452687	4.16103640933817	3.92301967888257	3.81756903395299	3.97873999468126	3.95057660583154	3.97873999468126	3.68145102408718	4.35915156126066
+"CLGN"	3.80202546170751	4.09278201549636	5.14705401347635	4.4338526546948	5.54029469366613	4.16483652136039	3.53741376891322	4.13076955835563	4.51695005521947	5.3586745349785	3.85503017056517	4.06013845735181	4.42485595280017	3.79270561473251	4.51171481888036	4.22470875222266	4.46951149501694	5.3235893591193	4.22279144679044	5.15239917715336	4.88733718702821
+"CLHC1"	6.14640361088025	5.85845196971859	5.71116702981902	5.32702896914308	5.66964374260705	5.02911786542874	5.55890411844152	5.40452081237588	5.84765306350676	5.66964374260705	6.33780404130902	5.4583246319402	5.14579090788055	5.1202059608816	5.76933712615095	5.78325150599214	5.34026923382888	6.46376308183397	5.44846211099235	5.61565147502128	5.76463421572488
+"CLIC1P1"	4.00312477807542	4.04879945111907	3.77336207131691	4.20924176187396	3.77191516410969	4.0970358366678	4.16114648801509	3.98608062420422	4.14976646930742	4.01108411350701	4.00294424462905	4.1636286521778	4.04610081543264	4.23583051547532	3.94839275882411	3.81474210124194	4.00797013845297	3.72705179495594	4.26420829179168	3.5399122757313	3.90248043728
+"CLIC2"	6.71537360963609	5.45131200903281	5.32076479260072	6.08335992384354	5.83243971140567	6.3643480768716	5.81239128154308	6.37967661466266	5.69885098535771	5.79022184286907	5.61406662003601	5.70881492160149	6.85983259442481	6.14697126396526	6.72103879052712	5.01801543159109	5.3369829513093	5.58395177071738	5.64849214715129	6.18052695927032	5.91521703133046
+"CLIC3"	3.81707702735777	3.73228067706962	3.64609174768871	3.64609174768871	3.61028937801593	3.46888496756332	3.438128999855	3.42962871212714	3.87379303547131	3.82475344734831	3.49480802166481	3.73127606546467	3.60378741925946	4.00959283047782	3.53932555628666	3.31040212057263	3.38234320925879	3.58658245567002	3.83353097716374	4.73366448185719	3.6229146225233
+"CLIC4"	9.41055596514791	9.31634925406139	6.60844983469305	8.47730118057205	8.28097282963434	8.07051586571841	8.44896117405282	9.45065783865879	7.75968220776597	8.35732734212067	9.51308332404941	8.77362499032578	8.0715034423299	8.35202363398276	8.01365591540623	9.59868426175702	8.35630506973792	9.51514027643185	8.60543388087433	7.89365231393501	8.35689688375007
+"CLIC5"	7.38173542223607	5.83271039173191	5.67091133961439	5.32174847308265	6.0340843801825	5.91807630578804	5.59602538938693	6.23318608546254	5.66363158125159	4.90414232639317	5.50382181785142	4.83851391392687	5.57917094516239	6.07039354339939	5.21736833812397	5.25731244501323	5.66578660000695	5.84803662660865	5.41355760381981	6.66867060739352	5.14947106442029
+"CLIC6"	4.58807106556237	4.91102082685283	4.22942431230022	4.49161861765596	4.49199992044058	4.94480976684812	4.51063713164727	4.55249392621548	4.66203877204207	5.98261018330212	4.4639965426867	4.73993377671244	4.44910761200645	4.49171891558835	4.76371995505382	4.85896497860056	4.73993377671244	4.28372006929532	5.00726855000843	6.64112134673776	4.55430311898891
+"CLINT1"	8.80616310539146	8.55228487360719	8.6133650924256	8.91215192446677	8.88854813004652	8.4730064813775	8.46877761853044	8.81320071617319	8.93431310458983	8.78115130171915	8.56852229735376	8.66089036826465	9.15760299606153	8.55638836967145	9.27514104801124	8.48628711545132	8.72788608049093	8.79633943739487	8.98274173530646	8.69787479222024	8.84457595967243
+"CLIP1"	6.62547793501307	7.19458260653053	5.39300627839989	7.00302850153686	5.50833301181175	5.35999946064222	6.75369649905545	8.31449959848764	7.3737595162106	7.04563582418614	7.0710180699261	7.19920992991858	7.48976171522184	6.81334424930238	7.66605605089778	6.72970514043196	7.44774999012097	5.5074083042358	7.04026280328383	6.95263232734143	6.58325884408611
+"CLIP1-AS1"	4.9895137274649	5.1342942579986	5.32336724833075	5.15179927695171	5.0645021227554	5.69870526079846	5.5828280946622	5.10025315167261	5.35512214812909	5.12499292658467	5.21292785447723	5.18892286128618	5.41033463616902	5.59140381272771	5.23045797676844	5.17074263952245	5.17777254882671	5.18237928172463	5.42265020650291	5.19459452020038	5.18910109704379
+"CLIP2"	10.1432009839955	9.62084632357764	9.80465749913267	9.7770671621922	9.61042257643643	10.7285128863766	9.82378782839942	9.65122682138008	9.73347214057727	9.82378782839942	10.1527989984447	9.67260710103892	10.1407116147223	10.0062473671779	9.71393414365918	9.94197747648124	9.65161749994014	10.0785192345298	9.53362444418201	9.82378782839942	9.81042515635855
+"CLIP3"	7.7826866080402	7.55134332205244	6.63085820117322	7.45707814135551	8.0076585347195	6.66177022628315	7.35668253743533	7.79654669398906	7.14641881677567	8.34685861452974	7.6009148566683	8.43565567437618	6.85918812423531	6.84175929644206	6.17667433737914	8.06297584881328	7.84608573880188	7.49837566334742	7.65927506782894	8.51033913174665	8.35504348298162
+"CLIP4"	7.24615183750453	6.92233857439194	6.05019008969812	6.35682983963014	5.58007968083383	7.45699736213223	6.45256450704409	6.89102371443813	6.81982052544304	6.88973816367642	7.22649206437293	7.10877588678046	6.79350535712024	6.83204381433562	7.15580680228627	7.32712119853975	7.46143863832864	6.92080219282935	7.23344650344298	6.92233857439194	6.82511230770062
+"CLK1"	9.34653504772691	9.49072560148582	8.93647456505599	9.72086524350654	9.18113932124275	9.65672992156975	8.85782411998505	9.68232373577563	8.96525223667162	8.43031119014438	10.2124748715278	9.11156201495286	9.73371634806345	9.27222558194572	9.56016252559041	9.70315802412296	9.46785662910029	10.272393768523	9.52972254475955	8.52677917567556	9.21241315819067
+"CLK3"	7.76156246335816	7.43574666713105	7.80598178296974	7.6833285718612	7.64953076870154	8.23433353134618	7.94868105927551	8.12429495855045	7.67754026143145	7.50632771476849	7.63845675261264	7.69849911318372	7.61387854120184	7.81920847184105	7.75409589866136	7.57710272404452	7.6142864274942	7.84298467738609	7.76109396322098	7.66898575928212	7.48801589085626
+"CLK4"	5.45807032435541	5.38448677340816	6.06630590866418	5.37208898603872	5.30007470200591	4.75229690705368	4.9014314740103	5.15109802804199	5.35112145222577	6.10271985819724	6.69811965715385	5.74955486358096	5.25843040246489	5.45639373983249	5.53053652165344	5.08218272498763	5.09008881348065	5.17337382314109	5.02277666203722	5.8277216396993	5.49134938264187
+"CLMAT3"	4.88953332630068	5.01754355642277	5.01927668871185	5.01927668871185	4.86829372496759	5.01927668871185	5.15193319550252	5.05857637326636	5.19298387071667	4.96790108809241	4.97434592465044	5.15329129828279	5.23269309021325	4.89630056054924	5.28042476670724	4.98297917823745	5.04723314070216	4.80089492132866	4.99509057750611	5.11872615476084	4.95393851073398
+"CLMN"	6.97651001011678	6.98713050202263	6.65978868454553	6.86514611500985	6.74385912853809	7.66722038677825	6.40787855118129	6.39310376060908	5.40561246680768	5.91346266619272	7.63378401938396	5.8838424240376	6.55765282473095	6.80620647061034	6.63173463172037	8.42989022555594	6.80867583091578	8.58998608153026	6.73934997027369	5.80283906052496	6.29224651356812
+"CLMP"	3.86238075871672	4.52170820149313	4.42990751957917	4.31159326974428	4.64145850731854	4.67569487082649	4.13331513246653	4.26256487660707	4.0090369352829	4.86903171803935	4.19271578152783	4.85155024677425	4.28113352465743	4.18875208942714	4.49940837016599	4.56552045921561	4.54230342661139	4.36075701390808	4.39932751480625	5.63930499817698	4.5561716444542
+"CLN5"	8.02464824946683	7.46051835789221	7.05013176881182	6.94620460488925	6.98239370370134	6.57079470282533	7.02186182316509	7.14152796805336	7.04801220748826	7.12323109644223	7.68973681981356	6.85417397381459	6.10155939552674	6.67777592103386	6.71233625457049	8.07659381831432	6.87395302973135	7.87859936826948	7.0573164006829	7.46054793056249	6.58406056662212
+"CLNK"	6.1773284451003	6.48964230483786	6.29466600323036	6.4411579251482	6.40216604317491	6.51655229887916	6.68916099726525	6.27459461854028	6.44462388154056	6.24453375061846	6.00951133632796	6.09169288958123	6.49474213601438	6.95601073309328	6.4665415495255	6.15308146894287	6.3484177062266	6.11589695237068	6.33996187742872	6.29604467038311	6.2821160085027
+"CLNS1A"	6.79013614581573	6.66309220911737	7.84852858683332	7.07251953955389	7.42808915597006	7.53476733279246	7.11212922112688	7.06507505301822	6.60574464653928	6.43909217491704	7.2308208009902	6.85878006318108	6.88381365137678	7.07372626766693	7.22677771177318	6.95480504220072	6.57428070025303	7.63808400563308	6.91506063209792	6.48032137069473	6.5133693124535
+"CLOCK"	8.33263796779598	8.66660189022315	9.23838224888895	8.67972326190389	8.99779188275657	7.85653771001699	7.55336255145367	8.64725035465019	8.89114188152566	8.78449906670452	8.6496520649209	8.83359152302818	8.67093840005701	8.03303680297565	8.82327763813957	8.77134106127108	8.70672387792917	8.89785664954833	8.72559489166187	9.02258176577283	8.91648612543157
+"CLP1"	7.036996920392	6.85449943154279	6.78490295520737	7.03517773631157	7.01026136591906	6.61268261735291	6.71955404869417	6.76464636915517	7.05063682700441	6.86455668932961	6.71201563954555	6.43510476865494	6.73878240821767	6.80759686852026	6.88388170087791	7.05972066413367	6.56703102468947	7.32112427462095	6.61928055839297	7.09383739857795	7.02235470971173
+"CLPB"	6.24702284558875	6.11056489538901	6.28816126081896	6.02333622300922	6.4182480261393	6.72670697142586	6.08628188227801	6.52667300655484	6.2416469031832	6.50961986008753	6.05502372370344	6.28816126081896	6.49675737031014	6.12059484398192	6.58072070870435	6.04989193694113	6.10381772407452	6.48450100131991	6.28816126081896	6.59359407854943	6.31238764705479
+"CLPP"	8.56772419485087	8.21388614196152	8.39200069520469	8.29823468564066	8.39636668394791	8.52703329354828	8.55976899282844	8.46073789763902	8.22489125500342	8.42226905159508	8.44120319909735	8.40089607710771	8.20116443308562	8.37132818813238	8.24091142678027	8.45984112542513	8.20007580391785	8.57981522314901	8.28787258865989	8.60045808541532	8.35442964995961
+"CLPS"	5.43320178458781	5.61311900654537	5.52537035932839	5.46030898746893	5.49894686482027	5.88828360118069	6.19090719485407	5.62727677170121	5.76891879264522	5.61616789263866	5.2959536581184	5.52895291830007	5.85082553257676	5.89592973161603	5.56780254335171	5.34993754142309	5.66047927460853	5.54236488891106	5.67566857274479	5.71040947776247	5.58362337934654
+"CLPTM1"	10.0017367564558	9.92756364822291	9.71522664294722	9.65232631912197	10.1389473124904	9.57667508731793	9.8149087562266	9.88842663240556	9.66195636998603	10.2206160475581	9.9768745667529	10.1399297051498	9.65117315296228	9.4029862914881	9.28198985895659	10.0092557372872	10.030113314518	10.0004727314506	9.58556926432531	10.5535894559368	10.149799081336
+"CLPTM1L"	9.17737335318326	9.02587897090695	9.27668810355439	9.02752802525301	9.30603094457482	9.16120802680027	8.8733407906096	8.88782961349678	9.07154018351773	9.30927197705153	8.94677498029141	8.96602252303854	9.00389311864221	8.7229166421112	9.09553068366232	9.1004623551021	9.03197721001869	9.27967321906765	9.05966394761536	9.46567031762523	9.31968912319835
+"CLPX"	6.72581573506178	6.36054095922321	6.04977335342692	6.06069047828401	6.48234389208793	5.89214151580108	5.80704814905133	6.57684761995958	6.19099021876921	6.65578142078481	6.67025972726134	6.25059384128861	5.90739189760262	5.84188765872655	5.95090489453152	6.32899129204187	6.23853602449147	6.97512884178383	6.1417591870639	6.07755685332991	6.25408763399575
+"CLRN1"	3.04665131094595	2.95657477145575	3.31992618351667	3.13326860454434	2.90258790764579	2.99817141660257	3.52632077391162	2.91928741107058	3.04385858196007	3.04385858196007	3.1019904696195	3.04385858196007	3.2475231213859	2.94746788667474	3.33704469624258	2.95626193921647	3.04385858196007	2.94132808848626	3.05349319077559	3.10708613232827	2.97648972898775
+"CLRN3"	4.30954745701394	4.11909058304529	4.21939967291378	4.22624254051872	4.576699159433	4.44254735922318	3.9506235398194	4.16089863856463	4.16089863856463	4.45503733336714	3.91119858585601	4.11841352922915	3.98294097689786	4.27192200479223	4.08570795943132	4.37253480609131	3.9096436846951	4.0667153057542	4.13751924508744	4.2575159897833	4.26527762004268
+"CLSPN"	4.52021820907656	4.53117644906633	4.32508184295875	4.68063112110228	4.57548686374603	4.44969252096153	4.72083029964895	4.57548686374603	4.63215468964474	4.47273867176002	4.49040425442275	4.50027435686551	4.84716937360546	4.71427448799774	4.85613546117104	4.60848251494988	4.80034306955918	4.41765145867437	4.57548686374603	4.65836034735143	4.79261329766859
+"CLSTN1"	11.3574506386531	11.7183143333202	11.9089040589942	11.6358765355281	11.9474182092876	12.0109630907082	11.6052806933265	11.5797292319476	11.7708623188977	11.8986319051197	11.402062175362	11.8572427506919	11.8010730194715	11.4594064247546	11.6036758891431	11.166482271058	12.2103028717323	11.5180681624225	11.3886248647323	11.9884264546684	12.05033627492
+"CLSTN2"	8.00055982700067	9.21951214771235	9.15000927100509	8.8651846395644	9.44728415977447	9.28772649805207	7.98458846655154	9.06525130810119	9.02572401238847	9.7262900375965	8.341014639605	9.53738069702434	8.94525966295487	8.5968891851198	9.10231470025008	8.49735708772274	9.62548558072627	9.16073850909392	8.90277961366004	9.27383767794254	9.56585156928144
+"CLSTN2-AS1"	5.0313027557762	5.11221824943838	4.74687803156437	5.32302315798557	5.11221824943838	5.13737219246208	5.34676065033348	5.14551328343425	5.44831028142654	5.25066564565837	4.89662912848692	5.05624804615823	5.2198859036567	4.86474579139626	5.17897583377368	5.1639629696845	5.11221824943838	4.95271016192128	5.11221824943838	5.11221824943838	4.85144145178498
+"CLTA"	5.59045327253044	5.66794984539402	5.96009355358487	5.36291579780594	5.93841617662455	5.23521821171751	4.37277798157286	5.03419995299966	5.05293588219607	5.38138910424866	6.16610648214869	5.12245595676412	5.1157637927927	4.90532705212855	4.76347338900404	6.59886680955676	5.00616964494944	6.61866433978398	4.93456392697206	5.0257753201625	5.25129959052039
+"CLTB"	9.03737551139502	8.93665594727245	9.83504865845163	9.12910719126109	9.67107747312713	9.53136388323914	8.91033191700974	9.01809491918374	9.58325519823612	9.95786645741608	8.78543856179162	9.64383511177888	9.27267918512927	8.80203161956681	9.55290845310818	9.01744207900079	9.27586498786565	9.33587500103722	9.27498751958691	9.99156307509928	9.60358004295577
+"CLTC"	11.5127649227562	11.7116077414449	11.9718113315639	11.5859852448321	12.1619085737481	11.3621148916512	11.1835293657407	11.6852077154196	11.744524147515	12.1453060973014	11.5815815862359	12.0069960286014	11.5400387225373	11.1692841792134	11.8248721080186	11.9359798235889	11.8790268701017	11.8427566167123	11.6608793870894	12.3170686522112	12.1716707525326
+"CLTCL1"	6.69998007327311	6.55996848047444	6.25915433550857	6.59443425592799	6.50772411301624	7.01028137625596	6.53158598028081	6.76529751000239	6.41835831675987	6.51140979393982	6.62249009445852	6.4647364763502	6.55569042798	6.79015666489124	6.17726199396554	6.64772233458879	6.627514401488	6.70836314338527	6.57302854772316	6.60031141478859	6.44433833525882
+"CLTRN"	3.41404410718539	3.63433928560499	3.52275062915886	3.23698073725614	3.77001220489679	3.75857191477673	3.37529893542131	3.45143340301373	3.2422864585817	3.32079050465954	3.43626460541813	3.36936082685939	3.46358879414875	3.63486474882201	3.37529893542131	3.43650569462343	3.54405890150859	3.30509789973432	3.36995875821297	3.40225714805143	3.15340483732643
+"CLU"	8.44286975016924	6.29079601809376	6.48213700445007	6.49646456345004	5.61480937009482	6.06681563047001	5.87096477576494	7.27263131536736	5.99854556212912	6.18047838564026	7.62802283474408	6.38097458213132	5.85967012729693	6.02302949661765	5.45666946847649	8.09884531130691	6.62245455705737	6.95025178083021	6.60626288601955	6.12872311777588	6.37198346745049
+"CLUAP1"	6.74510634134137	7.03473140326335	6.69167827432214	6.51309645259276	6.91263531831881	6.36384731583286	6.49256114312041	6.63850812372789	6.72141990441396	6.80494031028101	7.40990827703734	6.86266762524514	6.49609029131926	6.3138421715767	6.81272290215752	6.48064896485371	6.65405995936852	6.7019891851707	6.76493805465012	6.77338319236123	6.49609029131926
+"CLUH"	8.77803902690863	8.92734713918953	9.27480005880122	8.78982285026335	8.70027622031792	9.27639962732314	9.41025104203792	8.85266005824091	8.88913150047136	8.85266005824091	8.71651479252376	8.72290971450752	9.16514068100097	9.21495702100002	8.85266005824091	8.6090219988499	8.83514740876723	8.77287313023538	8.40753173989362	8.98019217926665	8.85266005824091
+"CLUL1"	5.27078475882974	5.12593684319866	4.79646068343	4.86163842458217	5.44492108789977	5.12637070975	4.84262864943389	4.99824944062611	5.26697443195452	4.96107713535966	4.69194154276784	4.98215338726414	5.01847015119413	5.2307929374347	5.26134565874208	4.99783669536632	5.14623317613458	5.34810385551279	5.02445401257292	5.12895881705436	5.09639287944995
+"CLVS1"	5.62721274839149	5.76717273109522	6.01571000589501	5.75401956116839	6.08413690326172	5.86031771674654	5.57240674062363	5.81538659103939	6.14749600989565	6.24934785092106	5.2904977788597	6.41190609933104	5.54023126358074	5.45485644944699	6.00173534645509	6.10271985819724	6.24077257860448	5.61340026291593	6.00173534645509	6.3643480768716	6.51595939674083
+"CLVS2"	4.13557720799785	4.52587160411447	4.15418066322238	4.1954838837961	4.62613436223418	4.06224243811597	4.43997767611285	4.33671989133709	4.33782954865583	4.62404766139394	4.00793242345465	4.6569953167278	4.53494915187408	4.21644852537837	4.17220054495077	4.36487831956938	4.51413421594919	4.19904075084263	4.33327083411689	4.78394846523046	5.05977492365181
+"CLXN"	6.0855709897329	5.53294215327753	5.74080266056768	5.80953245515562	5.53294215327753	4.99530536340331	4.91010093531378	5.1611850128625	5.49783744002853	6.2102771996666	6.59525070362336	5.27338952820883	5.61702926670676	5.65737731810566	5.48207141263919	5.66460840493186	5.69050004291591	5.08311282217451	5.23828869416112	6.02373859273123	5.47099865333773
+"CLYBL"	6.08984449580997	6.57913569658921	6.14896499763565	5.77116885303251	6.42477761542492	5.20748721543792	5.8631263150175	5.99114848991796	5.83617424353147	6.49178204661507	5.96760917667142	6.10641406112404	5.55196184857578	5.66288971899389	5.20115675410431	6.09463702031041	5.82044835985698	6.56562543212554	5.88901021058502	6.64245225034591	5.94124552753488
+"CLYBL-AS2"	3.41603442714824	3.57065159798244	3.42782348782207	3.54127067137852	3.52643906544656	3.54127067137852	3.78917405439518	3.40502218803279	3.49235160136013	3.54127067137852	3.54127067137852	3.62826320448987	3.62589837570552	3.66240827355079	3.60010230534005	3.29592556837989	3.55450222782715	3.63970618248965	3.388525198595	3.55969168801863	3.58365597419164
+"CMA1"	4.20807600531564	4.31570317705667	4.30835918654556	4.38118494984918	4.12930812175753	4.61046419147135	4.82614822850747	4.2171013006444	4.4830623104362	4.47908348624106	4.16373200998477	4.51714090195205	4.50042172786642	4.39848329643778	4.63081130055949	4.33538875429293	4.25032164740789	4.15848785570016	4.26818028041747	4.45433082204524	4.38118494984918
+"CMAHP"	6.56206045578364	4.99542706365604	4.65133902037766	5.02397054748117	4.96976052771065	5.25125986142905	4.8255947091694	7.20224742750627	5.02911786542874	4.73324798459904	4.41093794284414	5.59873767778482	4.85812495574622	5.3689202066045	4.57334376483197	4.48427439052077	5.38764051396994	4.86272421594501	5.00120869480621	5.52090679733035	4.65519640453126
+"CMAS"	6.66483081453074	7.30212383599601	7.86958134324075	7.2914264341026	8.20643087271767	7.02886662529583	6.27125845469875	7.21071057260133	7.44844254416693	8.14426199715157	7.39750848464559	7.86746362717362	7.26172055149808	6.79116839075855	7.37244653656686	7.55356663623146	7.70484698738752	7.94189786899508	7.62091922685531	8.03221771026767	8.02181039267218
+"CMBL"	8.65232683617129	8.31334784878226	8.41572420327237	8.59441288170054	8.47826469512684	7.92293761037768	8.9151863040786	8.88108395707215	8.80043511300453	8.34230960462935	8.50034821897916	8.21140156217934	8.68515324067208	8.43589151195381	9.03125500146686	7.68161365766204	8.23911623073742	8.29491819932986	8.63811806699298	8.37237349733648	8.18821506915565
+"CMC1"	6.79297818501621	6.70228111962454	6.62457971399883	6.82874305789312	7.2315076012347	6.2974235873344	6.11942905918434	6.91037121645824	6.62256836592367	7.22801288965135	6.80105724223839	6.57211625616677	7.10139110302399	6.48341296296473	7.11831614501827	6.9664043423685	6.7626816360921	7.2997545588399	6.97932140434061	6.82874305789312	6.93984714750736
+"CMIP"	9.67573662715367	10.2292863273485	10.4270403483049	10.6404656730482	10.2658766842162	10.3853301911246	9.99602250677634	10.1890826188059	9.98673383705236	10.3367790189431	9.99044567929011	10.1925236056019	10.924335002498	10.4172562125328	9.72034897177732	9.32142727471877	10.3404479967272	9.89179111259979	9.91895745469103	10.0687864940768	10.3581038728906
+"CMKLR1"	6.83286903192802	6.35866188290483	6.13704037015146	6.5421000810084	6.32505124410355	6.93811125598975	6.8897430122784	6.61046341102455	6.4378560732702	6.34287369065305	6.30408320851497	6.58787515076432	6.24624496249475	6.89217563805771	6.40919180497004	6.57598931069708	6.69152729072016	6.2091840537128	6.62894432334648	6.8144412768749	6.75839094960253
+"CMKLR2-AS"	3.43561657898329	3.42934354032742	3.40079032749596	3.42567156450606	3.50534309318114	4.11924401426945	3.5371766541306	3.22181785025043	3.57358105404165	3.43561657898329	3.25874607933529	3.39810421114475	3.43561657898329	3.59630385726797	3.39698341488596	3.6748093008901	3.43561657898329	3.29073051482402	3.51633160626433	3.43062383642147	3.39962555194
+"CMPK1"	9.10194194364524	9.25393507240327	9.45399676586787	9.28600838532308	9.3914271636367	9.03135596610564	8.94666719111489	9.07476457506733	9.23208218317398	9.65194037562303	9.40041062978766	9.36623416714589	9.35004092692153	9.29330116895146	9.717674429641	9.53111484779576	9.53838917682014	9.74256337745755	9.44731613258969	9.36623416714589	9.60270538909074
+"CMPK2"	7.10213922670999	7.39767603627943	7.72587377637171	7.17068322312868	8.25746511601304	7.12535095699917	6.46390640480453	7.13082949269045	7.41034868064287	7.65633841675956	7.45987202794964	7.49111531798156	7.28558523948811	7.1852744700015	7.02841082394373	6.95490653163947	7.20526674690289	7.66550717225854	7.02730103279945	7.51347429631043	7.45316165890554
+"CMSS1"	7.3731122616402	7.93579610532048	8.30689747921135	7.62861055296879	8.45105027750141	7.50011300574738	6.83458090355213	7.99829488392579	7.90303512976283	8.14134845939192	7.88891658491467	8.17154245820629	7.28193154751261	7.20334969078946	7.67490789440836	8.00806027966529	7.83609048846813	8.12863472728075	7.76217284611634	8.27877878926754	7.89574720094551
+"CMTM2"	5.21719198977035	4.99698296821119	4.74666135979678	4.95008671680523	4.891431597517	4.86043287739076	4.89462587064845	5.03793065976897	4.95010391237812	4.8096431592253	4.88901565217699	4.5608604870524	4.69827498245364	4.792041545333	5.1075010142948	4.93186845888722	4.95771342590708	4.74085157606778	4.64495961489393	4.96271869704936	4.891431597517
+"CMTM3"	8.78538602401515	7.35358475205532	6.93738286516255	6.89331216964326	7.06538584337665	7.71348163309182	7.61799580338915	7.30122548359148	7.15079913393879	7.15125987118476	7.93522349410638	6.77617499792882	7.26282348057845	7.80862054158973	7.17372252888159	7.54584236488454	6.80536488787331	7.22010335890723	7.2410027009082	7.60314677659603	7.63792821089429
+"CMTM4"	6.61783794880378	6.5145063261101	5.8641023441671	6.22056156956822	6.40045706364097	5.74169318201767	6.54180311697599	6.61001746935314	6.33491651820083	6.43260662553396	6.51063706542215	6.43813454345498	6.0518882389905	6.07054441913942	6.1421208203821	6.36478233080355	6.45025764250529	6.14954825148277	6.46809371241148	6.22240282418763	6.64050557309748
+"CMTM5"	9.20842384569996	9.99643997477194	9.54160259977809	8.6808414624055	9.08352538405708	8.51657297315625	8.47441960838774	8.91516475309362	7.48426546766272	8.2018269887508	10.6059277915661	8.93005082224263	7.37177807308791	8.55388630384225	7.38400548940578	11.5525078963613	8.29180184124088	10.5629977723266	8.77377685925869	8.43669046935547	8.70992524556073
+"CMTM6"	8.64012483699597	7.74593622497231	6.9457246587988	7.82388074958161	7.43372578215299	7.30805574638367	7.19456089045295	8.0365997353423	7.62315627442581	7.54808798792475	7.71528043926584	7.17702637592081	7.63600457404965	7.51912267076672	7.82910854745462	7.47086368204182	7.33156218332545	7.4844483797845	7.66885290838709	7.67223432293119	7.7215453923253
+"CMTM7"	7.47329033289718	6.86455668932961	6.42616617678147	6.78688533958291	6.6651490082842	6.98767192649807	6.92459556719575	7.20346614286036	7.09579300488273	6.8809702564005	6.84724268041096	6.77895273474294	6.92573298154689	7.45215448653741	6.93469840301255	6.92459556719575	6.92573298154689	6.69541729261238	7.16283857341443	7.18422759931506	7.3344189958937
+"CMTM8"	7.5695389655744	6.24210614871001	6.56934422419339	6.69117578964901	6.72672469085066	7.64968190998659	6.93347284086877	6.95326037654052	6.46964488619953	6.7282314533483	6.21091047406875	6.64690391492271	7.0038208925016	7.40946469518799	6.38929643396726	5.71106857732298	6.87315237916007	6.41793531660028	6.51124685340797	6.66916964061758	6.45759410702187
+"CMTR1"	8.67912472642457	8.50734670239131	8.95246625632438	8.14185856631637	8.71013851782817	8.78434326185221	8.17025899032031	8.28709873702546	8.51426334696698	8.66021600302562	8.43272832351858	8.60517933827066	8.10504732888308	8.2933529341733	8.36255180089504	8.43902521077598	8.48537477322273	8.57942880633926	8.09282998078086	8.57739928082212	8.56499230914119
+"CMTR2"	6.28906605502746	5.40763479057802	5.76267097167711	5.39537650671319	5.51698186140246	4.83220756641302	5.26265897708434	5.05602073937427	5.52545629027031	4.95771342590708	5.98775236046839	4.68122460266877	5.42498732411595	5.20972207456263	5.91848810076846	5.76634896394753	5.00233009651841	6.54323811648291	5.38702175147131	5.29504391414772	5.60697297165324
+"CMYA5"	8.18188468336659	7.3867971423507	7.84750087895083	7.17831810712909	7.50292779854522	7.15438111708449	8.31554140691033	7.47626933182142	7.20446851809089	7.07359709179201	7.18568367990257	7.05242938645335	7.33200428900063	7.54383428023878	7.23123401010594	7.04877848695757	7.23626164195119	7.11171088292516	7.08575943486452	7.37781175145241	7.05849939210942
+"CNBD1"	3.44213748752433	3.32657847689039	3.73689015753618	3.54960729677334	3.54993732660802	3.64864374529119	3.81304310971496	3.58135147508597	3.2131428269229	3.31560301391901	3.38523804021444	3.54960729677334	3.65801883035164	3.78085331536582	3.70042534846432	3.41879133764012	3.60932142075765	3.44046509714838	3.68927177142689	3.40946137166102	3.38717178409825
+"CNBD2"	5.50083463230742	5.50083463230742	5.45551365589724	5.3898869845679	5.34689025298855	5.50382863796246	5.76397961922744	5.41606232422297	5.51258953917044	5.45783717157608	5.48050135291394	5.39576317200021	5.67709010755019	5.7008074893726	5.52940227053061	5.35015667067658	5.63085838077701	5.19997688617273	5.79132460343591	5.3880125843488	5.64190285968811
+"CNBP"	11.2307103699743	10.9935289572583	10.6813527988499	10.7673307737919	11.0340767841941	10.3773825392895	10.9156353773633	11.221711607111	10.9901319860362	11.2037160994049	11.1619175717217	10.9750644978046	10.6351152130311	10.6461144049224	10.7200097426386	11.103742475926	10.9768845926537	11.3169852886842	11.1946624431314	10.978028619356	10.7415608049274
+"CNDP1"	10.1775568193033	11.4022777970772	10.3008586823039	10.230983356377	10.4251054313119	12.3182619999936	10.168151782832	9.97468243017194	8.45319780542603	10.5775588897992	11.6845808998602	10.2728965482028	10.2058851972218	10.4007551698851	10.3133450881516	12.5360497562531	9.86640863719479	12.1106872576427	10.1036705055498	9.31635261374764	9.75161503829304
+"CNDP2"	9.91617342092051	9.72517436965828	9.72646874351056	9.66377625744545	9.53948963844275	9.4659812781496	9.39203374170926	9.62290158116438	9.31202132735858	9.47232888737641	10.1925213422096	9.52105312622857	9.18598114441803	9.47238844786772	9.30852930862238	10.0904858359156	9.28636387277	10.2001155001073	9.35129345313262	9.67890428431745	9.5383393932756
+"CNEP1R1"	8.16257257610687	8.33013924803803	8.26815159087949	8.27868968796709	8.44700971596904	8.09161966519253	8.1001322571385	8.29354289213441	8.56292741366355	8.24648233076554	8.21666005472074	8.01128965948871	8.30924849260005	8.05254231979196	8.57645395083029	8.31609280984426	8.26979485189424	8.35006023015207	8.30587544993524	8.1756106220886	8.21841376439939
+"CNFN"	5.4203590907988	5.56982510510058	5.6860291359034	5.51594545761398	5.55890411844152	5.98132043446293	6.38518113713201	5.50528692233858	5.3808941282791	5.55890411844152	5.76122669625957	5.62210840625765	6.02789736666907	5.91802479693405	6.01380392797553	5.368349223143	5.63540813197145	5.47304342233592	5.76096359740501	5.55090853037626	5.66669894248975
+"CNGA1"	4.21574329441579	4.31496019947653	4.2493817728559	4.21670859080818	4.36513416915815	4.21780013680315	4.34041998933627	4.30529027215419	4.26848567017253	4.2493817728559	4.29938893389525	4.16720955878369	4.02714387774633	4.34921545494278	4.1333797509921	4.0185116713224	4.14211250826188	4.03979539245002	4.13703938018062	4.4485430313469	4.33817772113199
+"CNGA3"	3.71647074293488	3.85949578104882	3.94975530454353	3.79500840359792	3.91931529230845	3.82584412435597	3.60922408285191	3.66100601715373	4.50215655083388	4.09769371913167	4.36286569356915	3.82327257264545	3.81480979260889	3.91235153506308	3.7255359865128	3.93668319481726	3.56155083849672	3.79585561465628	3.75491373571159	4.07290535010693	4.01255178214299
+"CNGA4"	4.44541759953701	4.7934560559361	4.98200908134609	5.017403876286	4.58814024896897	4.60471218840382	4.82507084148297	4.83851391392687	4.68959515986201	4.72930286652436	4.60419852975565	4.79170208090648	4.90868583946297	5.1476168475723	4.76378549330575	4.76378549330575	5.03147700486405	4.69704684081759	4.85299671646063	4.31194516830011	4.66784483447504
+"CNGB1"	4.88548364385296	5.43300576023898	6.29079601809376	5.86872931708207	5.41510110672955	5.39593609271056	5.65611865884165	5.62857466288898	5.86932557518581	5.88070470895894	5.09530582963852	5.61226127972902	5.22078811321582	5.03527096129879	5.36914111870843	4.78042423978081	5.28211511999914	5.24688023222027	5.86735828329614	6.03465043631041	5.36724102242157
+"CNGB3"	3.59424803912717	3.28241687622661	3.4209562159779	3.42598080769835	3.79340624972589	3.5891188777963	3.55473774571987	3.49506547674743	3.55564764129661	3.20263596556341	3.05423653508028	3.26688740184302	3.52246870996642	3.47919934178397	3.36144919622132	3.44504407222653	3.62808677545529	3.2922483285746	3.32160793691097	3.54727830920108	3.19034829832282
+"CNIH1"	8.7983224296324	9.01149018024378	8.57610682217283	8.97625458634437	8.9266671156289	8.03630503140995	8.38895553672478	9.00228056863652	9.09795399605011	8.88536883002236	8.99159791901236	8.85052101094817	8.79996254361969	8.38013011168193	9.33085467635098	9.03894532312624	9.06058997428934	9.08398787055773	9.12361060068045	8.90527012394741	9.04261182186858
+"CNIH2"	7.98824892012655	8.27758621606044	8.56892876805389	8.6292495599843	8.32076316930221	8.73105862560988	8.40170817028014	8.34258273984652	8.60700059550994	8.71505901910388	8.11741605069234	8.50320376537324	8.71421977062666	8.60625920142584	8.51802391750128	7.59242040050934	8.45112308684189	8.06975997743182	8.50967452318427	8.6476969438281	8.46069057148618
+"CNIH3"	5.68259056257504	6.85612004520647	7.52286300731435	6.72461941448573	7.50255506034587	6.89278784843147	5.88509574717352	6.14935032424037	6.71433649434799	7.00761150717949	6.35805246919265	7.22477663964923	7.14571202045538	6.51706978221501	7.28324353484488	6.40044782975612	6.83531594360848	6.86351083426265	6.73792618973383	7.0428988357604	7.01673846368388
+"CNIH4"	7.45042140337092	6.5067538867129	6.22528175453793	6.46700923252367	6.25435249530973	5.88088816304977	6.46863831347739	7.25975747017441	6.3416570284169	6.80307828013196	6.61972504326027	6.59809067801959	6.56849696714248	5.96559938001304	6.90612730035028	6.70479176526483	6.00815836511352	6.85951611809132	6.78385501171274	6.63386075418821	6.54126599941734
+"CNKSR1"	6.20164573151344	6.49524385259184	6.58812245260754	6.61564901198181	6.02584001411486	7.01158226660792	6.75906367035684	6.18160030926741	6.25975585486541	6.25106955605897	6.05540332621252	6.31930102773788	6.26146434191875	6.52251246442738	6.22584825121045	6.6821677403803	5.98195862516118	6.67600023337208	6.210103420355	6.47207897819424	6.32784907867534
+"CNKSR2"	6.47459155934971	7.16186555649625	6.62021093124703	6.96692051631029	8.09503596806906	5.90040593566259	5.91883215553518	6.97651570216521	7.58104377469579	8.20276227461047	6.59286699888562	8.28629377107404	6.5764419027422	6.10990941570611	7.12947105398446	7.18202826754834	7.93193533705669	7.43618471692393	7.11093985047243	8.05769596785475	8.48632287520849
+"CNKSR3"	8.13077607459972	7.3183961423436	6.85622838507684	7.45919325253259	7.03550133108638	7.51719828922824	6.5713106314247	7.35982783487551	7.09949868253493	6.72150836554369	8.0203579527425	6.50108575963221	7.29710960148878	7.57715812085495	7.62045695194033	8.79211842655206	7.15721656473128	8.67320651630486	7.24415895358933	6.91338225755212	7.03329031177567
+"CNMD"	5.82207679779581	5.43433865706249	5.66527197731348	5.78906242763844	5.77182264292683	5.98824015058168	5.76569630696596	5.36087961203089	5.6127060146596	5.72227934471352	5.71457319580888	5.62368484176132	5.42504123316012	5.54829183736106	5.73854006497991	5.71520991573855	5.65405246990289	5.15297204826202	5.62510579959978	5.63515994793728	5.58978843655336
+"CNN1"	6.12394957956433	5.98884880292326	6.17511281202121	6.07730719436742	6.39921129656119	6.14844583161072	6.00670622707959	6.00294112181686	5.77969071204472	6.00670622707959	5.65309618841556	6.04623193777804	6.27284221325115	6.32212830024386	5.56035088690433	5.61468436254458	5.69648594997106	5.84630591098642	6.16491119298595	6.09317650218581	6.00737394718815
+"CNN2"	7.24400337926825	7.17269683523718	6.84391353059477	7.47081802997225	7.26096926877768	7.3305449316845	7.35959072147769	7.18373556901452	7.40989894033766	7.55355738725081	7.22901127121336	7.4318495723817	7.60543480140238	7.51098072706345	7.13781315218038	7.46595284545418	7.53464164858585	7.36014515897161	7.59600603404819	7.56230777160701	7.49109413742621
+"CNN2P10"	6.70777969920209	6.83336794336655	6.94178966653597	7.0764732816084	6.83792898542427	7.25753410526376	7.41382492553675	6.80719018876597	6.97298704672419	7.00186187331592	6.70579919937004	6.77218698903116	7.04332916691915	7.02387045836125	6.86435660144623	6.86027893205236	6.82025704998871	6.7197530559562	6.9432683774923	6.80376840092527	6.92403677627436
+"CNN3"	10.4091327314299	9.81757566676438	8.09799051916868	10.1721757314515	9.20644792354089	8.39106117484347	10.2263189700203	10.6474426432396	9.54006180012717	9.86479828511665	10.2789083744236	10.1829096883737	9.23692640595115	8.51847195848309	9.29102634364234	9.60025607413878	9.36422928345689	9.50905592987128	9.64323158867009	9.78326560042758	9.2212147127743
+"CNN3-DT"	5.21495386800767	5.37420322797216	5.25486497064952	5.74192123269797	5.64638000413608	6.16673051170192	5.57809267691771	6.36773360246347	5.30943287528655	6.0907295938682	5.90004589679228	6.00526016169991	5.91002134880652	6.04582456933025	5.8046063198732	5.24855310945933	5.57066239609587	5.92271480419156	5.63282737911643	5.08728269723339	5.28368232398759
+"CNN3P1"	4.20291384464216	4.34232438837993	4.38709243230674	4.48350004600443	4.2949269497806	4.84036939461005	4.64513678890683	4.39948066648639	4.3999579324145	4.29667806300595	4.37432685176377	4.41644281758322	4.53151174201138	4.41411207390738	4.43138794100421	4.39900980319428	4.42041121831723	4.14785250038732	4.77637055993963	4.41644281758322	4.47010211976122
+"CNNM1"	7.83924232080207	8.6767417985383	8.93694972380914	8.77259197997402	8.9117954104534	9.05459182470852	8.28951780688636	8.26164840934648	8.78292625044713	8.43183756485528	8.16618344996944	8.53687003309173	9.12004275722936	8.77752919510116	8.76782947946288	7.61779160921723	8.77231561444914	8.28300640599489	8.24497181537127	8.62538329894432	8.65125931402112
+"CNNM2"	7.11864041194966	6.8181265254405	7.31503717626191	6.7740477192226	7.39434691958872	7.05765280829047	6.75929650816837	7.30288084823023	6.9006395923195	7.23111174519119	7.05064053558706	7.22026914143918	7.0286633116932	6.88686980147933	6.75862201893303	7.35794857583274	7.4273850807006	7.37011795583607	6.77069543231349	7.55755612904339	7.05192301450986
+"CNNM3"	5.31073088649203	5.31927990258807	5.64669578214426	5.29274730601974	5.3211747496623	5.07205266841139	4.9477250405068	5.03037425478415	5.09559149387179	4.81845475564096	6.16721046927294	4.75152576369886	5.4791879081239	5.2478223997	5.37757641171148	5.69410247840505	5.18946254990645	5.70271734564912	4.83410962290191	4.82591033356639	4.95929628231727
+"CNNM4"	6.98207751918055	7.25789444570371	7.31124115375454	6.83331037235582	7.27302198049678	7.06650756976743	6.77486020080062	6.93765045633584	7.01811924697742	7.02911431758847	7.35043278101681	6.80180362417263	6.79792099931095	7.21904488252196	6.87192349885548	7.28490251550385	6.85688866310851	7.29247026833358	6.52673832973175	7.13974374568598	6.83889297314218
+"CNOT1"	6.14326942533437	5.5725177264776	4.63733358546379	5.18105357485277	5.50076182085259	5.26514102078521	5.57292751192689	5.77217395089572	5.23339373207407	5.52412639022877	5.53209939139107	5.52380969021821	5.21681274073143	5.81527658751332	5.34331325110996	5.8822550149435	5.6913395271129	5.92360299400698	5.34810385551279	5.70230056550291	5.67056377498827
+"CNOT11"	8.62186961126756	8.26401194678711	8.48617688581801	8.30220845916146	8.31319684975203	8.33201964822908	8.31319684975203	8.22774501218109	8.293926677046	8.31319684975203	8.31319684975203	8.2867510198569	8.29777337942381	8.22437889860098	8.2815634293131	8.37601322819435	8.33801009783824	8.45674059922365	8.2759312450647	8.3983979486303	8.22672593512227
+"CNOT2"	8.90642508269028	8.83200514970958	8.87864634058323	8.90449280297199	8.69652155196412	9.34970138721623	8.69345326262389	8.88333842998141	8.69477911340872	8.59559583636896	9.01960773039125	8.77565565271922	9.04032844489873	8.93127416924028	8.92678838734634	8.55420116954572	8.67698606119911	9.06349221037735	8.89651289759675	8.56550078811799	8.71575161352436
+"CNOT4"	6.56777760043105	6.49576276296102	5.80835676570795	6.22674468879096	6.67812777891367	5.86971302398524	6.44425343713933	6.58398855635541	6.17339815795442	6.42750104074516	6.45545549366011	6.58450936035997	5.71464182581419	5.39415588805401	5.5644331730251	6.31825675900321	6.1515992704709	6.88871743392005	6.1283371751295	6.68053612321819	6.41906705164072
+"CNOT6"	8.21484556285701	7.90463560919763	7.59002420430626	7.77696036299134	7.57679717203743	7.46528322181855	7.83858365212439	7.83310706268892	7.65293919645014	7.60523925821649	7.92152551007353	7.35048421610196	7.65332233979631	7.59889424923964	7.64915953323184	7.86757197095475	7.63564918984159	7.97048350345117	7.74601342625352	7.55450629340502	7.63012426752403
+"CNOT6L"	6.97714063054271	6.76092865057115	6.30988310432996	6.16715431870316	6.37652346515049	6.6115577187415	6.17997318254554	6.85967494257751	6.40840208235069	6.70775046928885	6.6932323096181	6.41072577784934	6.35001802386332	6.35821878811898	6.31744143054408	7.184378110412	6.99887170130958	7.24472568445573	5.6323998152735	7.02725315358371	6.5793184786918
+"CNOT7"	5.92186562167602	6.29613592373666	6.27335892385445	6.21304164154204	7.09657423636318	5.34713038944448	5.82039500729868	6.18811968248087	6.09740577896552	6.88184248148806	6.27962470205898	6.73725335244743	6.06014055401577	5.19094440992118	6.36586620662906	6.7645559817273	6.37829150330304	6.73511495515572	6.27131941701006	6.99387011797857	6.96503745101219
+"CNOT8"	8.92572694860433	8.14293559361034	7.89305485087302	8.20963700314738	8.49749041333028	8.26668084470534	8.19851874523633	8.22836608900134	8.18389063671241	8.58181007401185	8.35995801336421	8.62441399132615	8.41939821351603	8.07096039979064	8.03947486559095	8.91660940932665	8.58755889881484	8.78500662750687	8.41924366049328	8.55784706121138	8.40159773841954
+"CNOT9"	6.47345978219097	6.51978509672608	6.69885327280888	5.83530724837361	6.67823460727818	5.57222384870963	5.52167486943877	6.28804211257654	6.22894975166585	6.43421346044513	6.42777220994813	6.27957946821551	5.60938843317057	5.73739021031454	5.84488814311219	7.16149248174449	6.17189461821646	7.07889061638815	6.0268456023735	6.59345816275833	6.33394270272765
+"CNP"	10.286014686202	10.5644830036753	10.0314298480041	9.85984204562446	9.7928445746565	10.2007601741812	9.83902591108116	9.65897721551342	8.54769056124389	9.17198898009066	11.0667881218077	9.52734932352905	9.41948565896962	10.1462012159633	9.2133675039939	11.900240189798	9.52144160752688	11.663645531643	9.5721810997488	9.00173186336813	9.43988153838651
+"CNPPD1"	7.6457323243971	7.4295944690487	7.33943944835469	7.36845592607708	7.28291433801866	7.16107082913302	7.4295944690487	7.38586881382264	7.29211499198678	7.61943561805421	7.88698884170206	7.46699341634226	7.33501704509298	7.29876362120503	7.10282912846271	8.33209628745648	7.35717187891236	7.65310735684735	7.4295944690487	7.48377098232081	7.53401183886941
+"CNPY2"	7.62547434602379	8.36091667264887	8.6086785084619	7.92060312367075	8.13225574239861	7.53809881320246	7.69285134122248	8.02589662642823	7.84806725333458	8.27946350983107	8.2926047669396	8.19451919818632	7.93489348567128	7.53127680979158	7.69545069218784	7.8351168205264	7.88064134677342	8.17197095866279	7.78185787786113	8.10466490300247	8.14638767387592
+"CNPY3"	7.31768327169291	6.83949172126012	6.72765833764878	7.10251670314634	6.93716547370216	7.10339648415232	6.89459912063759	7.08250626955891	6.9655708796557	7.12873243037342	7.32136591410749	6.90925218805527	6.86684809659343	6.92346832285886	6.5735647076779	7.09458216397847	6.61412790134644	7.55310544502311	7.16354511021382	7.44387128477399	7.27812317283375
+"CNPY4"	6.97164562824259	6.93387595574584	7.08362843395837	7.2465292516913	6.72181969483799	7.63281662864316	8.14878748338877	7.27141148240782	7.43676425841225	7.35000206474576	7.19932921659924	7.33572306975231	7.51675572200894	7.63425043570484	7.36473811500845	6.82390002428263	7.37619918854835	6.67059307147146	7.48690569500595	7.30797499317617	7.27322828648911
+"CNR1"	5.77177106199876	8.29375391620149	8.94532237962951	8.77803186717234	8.5947917301469	6.98767192649807	6.15458030952759	8.15249633137167	8.91692262981675	8.30389251303305	7.76513605286682	8.2882619686323	8.81447212704789	7.51135716655279	8.32333087883349	7.15439150921859	8.61150793491842	8.05876365362277	8.29838302372156	8.7873396530549	8.57608750798212
+"CNR2"	6.12590074972247	6.3608161075679	6.11379931339252	6.35838614986059	6.58948066218328	6.19446931416926	6.29079601809376	6.29079601809376	6.22894975166585	6.33793119826029	6.08876217200838	6.36403745845835	6.40220405043551	6.28976808016009	6.28556202658625	6.58844294560085	6.40129660754011	5.9826309286335	6.26323377597873	6.23854417668505	6.6105879267926
+"CNRIP1"	9.95354714858336	10.3742710380008	10.602527809895	10.4126015221649	10.6379754588945	9.64053934891606	9.99478303044123	10.4919998675013	10.6523079293613	10.7619877256859	10.1565281374404	10.7809239952723	10.0608221166976	9.83404607665935	10.4002428661579	10.1958720689699	10.5246998932043	10.2292919042294	10.4855507162146	10.8103430171669	10.719305347087
+"CNST"	7.64842717327762	8.26698197489083	8.31183013502396	8.51928586855318	8.79025141117128	8.38795403596458	7.17840875960148	8.32727754683749	9.18912131444602	9.35888530019936	7.93790976939846	9.24084920541143	8.36761110590975	7.8073483401904	9.25721631150971	8.09970137984861	8.94634078699377	8.46748078173827	8.79534189437632	8.76065982727477	9.06120463609975
+"CNTD1"	5.29676624742135	5.86076136765207	5.76864136345405	6.20258501133429	5.77630267593911	6.08989950801873	6.14330736918189	5.50471230874063	6.19277729246959	6.01979794036566	5.62034608280514	5.92790053777247	5.9066533624761	6.28735490284096	5.90746811930692	5.89631935080988	5.93677191233105	5.54173605335316	6.04666495712435	5.7723817406833	5.83717728913046
+"CNTFR"	8.4689882840023	7.77406369270765	7.80124107051086	7.99058893159085	7.70740135207226	7.33737508742987	8.79344509644995	7.84644445260552	7.61141692310064	7.5635235952438	7.73732894155335	7.79105365322845	7.91861579598775	7.60365563425678	7.33912480123514	7.37026993866757	7.83790079328412	7.456262716846	7.91936480377837	7.63384567792834	7.54462764373902
+"CNTFR-AS1"	5.03645701849732	4.98898803410083	5.35799434763393	5.47935287207754	5.29282263771943	5.5312297208416	5.92799778378656	5.35799434763393	5.41606453322959	5.54655859792882	5.33197605536076	5.35799434763393	5.58491863051097	5.81684391840925	5.24992128480832	5.29078114977337	5.54094755441894	5.0159943575017	5.30097962000209	4.85797722196675	5.55483928031886
+"CNTLN"	6.04170149078796	5.52190324296138	5.10879226014429	5.50471083590435	5.74646268933226	5.48429990683753	5.93106273048395	5.12412882071819	5.36784493160968	5.19798191722044	5.54339093011673	5.25758090688334	5.37617676971743	5.66128153398499	5.18797551341848	5.56586932078305	5.40765046406126	5.6874823452305	5.70123839916202	5.65743015213613	5.26427929001776
+"CNTN1"	9.12445498549541	8.96718032885552	7.6369796799449	8.69267833790507	9.17921344909515	7.08968358440582	8.89713911997515	9.31875476370259	8.89924901300359	9.26015397978965	8.93800737142568	9.15892367525817	8.01737274726811	7.63527948776717	8.17938211757688	8.86826784121222	9.07646212986601	9.01962951996313	8.9408344620792	9.05339820571264	9.32907847908389
+"CNTN2"	9.77205353806473	9.53425851295526	9.52682422435828	9.16707718757276	8.93532061990184	9.79379629432726	9.16286505779639	8.59879225878413	8.29437178214567	8.38185467025537	10.4451670523227	8.94943793953723	8.76152193074766	8.90703492911621	8.95475685364484	11.0775750986041	8.83426462658969	11.1184995031699	8.82702180919527	8.51447638693528	8.98163074560241
+"CNTN3"	8.32534300203	9.02691378831998	10.0119761477563	9.48682965873166	9.43218196696462	8.44081828376027	8.02398622296589	9.22845219532761	9.515706133458	9.00432946652033	8.2867921991548	9.25820854926358	9.46399368343379	8.36884492029957	9.61333334240016	8.14132322201135	9.58774434405001	8.96607670229528	9.60748950829232	9.14248740255817	8.90672432932421
+"CNTN4"	5.42905306967029	5.68656663577424	5.66282124035997	5.93008412070891	7.11554085140586	5.16477868565617	5.22366759831068	5.79390723009952	6.46964488619953	6.91899634412179	5.11318425595258	6.71173546597354	5.93453513626568	5.50619770506608	5.96856525329477	6.03094703967496	6.6690915157506	6.02803590958822	5.98611067218241	7.17111904354632	7.60767236192587
+"CNTN5"	3.40330560677253	3.6184206478347	4.10408887788189	3.62474490204339	3.98722210138909	3.38355159599771	3.21725105374865	3.57532593575223	4.21971147402758	3.72368799751417	3.74475388306481	3.74010977628069	3.76649585251223	3.3404377108901	3.80271201012274	3.13251600290801	3.84908551915262	3.77498098596489	3.51771496507158	4.18808909036787	4.08032258843447
+"CNTN6"	5.08572736646788	5.54343364367112	6.07279049478056	5.77605605681304	6.21594389478887	5.86454874366612	5.94666942269359	5.70926246298739	5.88765605102807	6.22550138500581	5.8345948327779	5.61965236533685	6.1639427870446	5.92215013472151	6.27330733891766	5.79209181967533	5.857873761035	5.86454874366612	5.74438180198224	6.16034412266621	6.4515135350032
+"CNTNAP1"	9.5273841917375	10.2976798456398	10.4975253309616	10.3409524438232	10.8476129966345	10.5366694582569	9.78775710475107	10.0919751299436	10.3736122839202	10.539380608084	9.83754878800411	10.5635141576175	10.6081338734812	10.1926489196454	10.1215682812273	9.42377908264297	10.6311064341407	10.019427202313	9.94529636088927	10.6931315735781	10.854211815852
+"CNTNAP2-AS1"	3.36025317925437	3.37837592550455	3.39516460014587	3.48110275435844	3.25965025544377	2.93897363003585	3.41218391806305	3.47340610288299	3.37245958374118	3.42598080769835	3.26785390791268	3.58470838673104	3.60664077095503	3.29586093183779	3.52388005206232	3.45108958943236	3.4360424257592	3.10711788978611	3.27206831425039	3.2371083959586	3.2767671863802
+"CNTNAP3"	7.0880244137875	5.12492923339059	6.88504463552737	7.49745574834671	5.95407498255618	6.01844858879064	6.3357510519053	4.95517525592873	7.1657557268687	5.91950776031246	5.39256889886875	5.81975281590326	7.5645809586972	6.48203699427844	7.93026977031715	6.08855875985986	6.17112247625555	6.98442032760267	6.94402547804433	6.76806071040726	6.81286817762143
+"CNTNAP4"	8.85932822715194	9.32015648481333	8.76515414421488	8.52827826796535	8.84936412509527	8.89303014022394	7.21448260634336	8.14832914287781	7.89256891996123	8.5761242380168	10.1510428682182	8.82698281159663	7.9027928335949	8.53210439272344	8.31074875631996	10.6737864290606	8.66513094719095	9.93833303734883	8.63785455454754	8.50800760214788	8.48029566227525
+"CNTNAP5"	6.50084318638891	7.69571996524105	7.71173199414187	7.29075142373152	8.17915157789059	7.04328664076553	6.77144225848617	7.54583912648351	7.70858552824177	7.94706829169824	6.86066012816594	8.38882876575824	7.42791278492474	6.89842732420162	7.46220480416537	7.23618664625759	8.0603853880898	7.53402618330654	7.3810505759292	8.5137038373161	7.71328123015421
+"CNTRL"	6.29340173302287	6.19212903570224	6.10548466545109	6.01096729112887	5.73070487155256	6.42545195784534	5.61890350000173	6.09903587856233	5.69736372291784	5.54310701285551	5.87362858709902	5.64282505999191	5.68316459122786	6.2783946576389	5.89456682386528	6.17388351644803	6.0233423192009	6.46924691645387	5.92084930360061	5.95696096215479	5.66715484132273
+"CNTROB"	7.51647757628322	7.55001630038434	7.76732270712848	7.7119356669742	7.54709173900201	8.43399127036094	8.6559100498627	7.47848206069443	7.8262846937633	7.75397390191338	7.46389627322517	7.8735627023835	7.98874629960465	8.3306942124145	7.84786913772565	7.34371594189027	7.72214559421616	7.42233551193196	8.06537549364844	7.58759296854835	7.59408718214345
+"COA1"	8.18398773792647	8.54593988617191	8.40685085070176	8.31312672044767	8.73387070978492	7.82435446699281	8.09886019409332	8.30107340420999	8.35538772447322	8.92737248450794	8.29756476167913	8.75310849107738	8.07449672427509	7.9544632309668	8.22517953079675	8.67429795335473	8.34203804802851	8.78062564234989	8.5207080182849	8.84843566502152	8.66341202584851
+"COA3"	10.3503314438123	10.1048045352558	10.6359281494821	9.99996523687486	10.4074814172074	9.72455266272756	9.89175834748663	10.0926439133928	9.976427463516	10.3672654057546	9.94332995372419	10.1023196581794	9.6489067994943	9.77549810484722	10.0206247223249	10.3930649751121	9.78589192464996	10.305671118677	10.0725140921418	10.5301335767146	10.105299020528
+"COA4"	8.19506294388817	7.8796754299726	7.81259859577478	7.70297939799697	7.77914705234958	7.52061959534682	8.08076565045416	7.90377197756257	7.59466877200424	7.61227858993717	8.01300463189239	7.59203081865495	7.48835913606159	7.8153959722462	7.72181921538877	7.93662595751795	7.32702547497386	8.1034203071681	7.73150025274399	7.61771213098038	7.60320224230305
+"COA5"	8.87402880590055	8.87433543925985	8.86700082366305	8.75554388792117	8.67013635057709	8.31588828189978	8.77417995153407	8.89897236435597	8.73695612572033	8.5029001408006	8.95048628466006	8.47230896682348	8.54780101987754	8.7571437288811	9.10357544765645	9.17808718759836	8.51614919565423	9.11044836933168	8.99794374769721	8.69734087213266	8.43830561214632
+"COA6"	8.20595940405049	8.41574889934814	8.52375721403619	8.45258220910276	8.77809257118924	8.48403230814029	8.07881798706747	8.41667257496592	8.55136602546843	8.67360025418761	8.20513821721343	8.63567011465919	8.56083601052686	8.23162682953554	9.14359327505928	8.01860486452757	8.59350875085182	8.40638288370889	8.88708769196445	8.56559280579663	8.61415440542958
+"COA7"	6.97453885051621	7.4044320078348	7.94241485035896	7.39566366929149	7.84970398120889	8.01781790039997	7.65109559154241	6.973043614567	7.64338321423146	7.53772812911877	7.28989289049114	7.53772812911877	7.54026255760997	7.41669839732914	7.78440285944517	7.25060903670833	7.3305449316845	7.91874964956015	7.51823801955918	7.97840497345567	7.42160935179372
+"COA8"	7.68861550983374	7.23965223026097	7.42791278492474	7.41349342329346	7.22071956163301	7.11757547072165	7.66047804208762	7.6501514557152	7.69053963123982	7.48462573970071	7.31671803876862	7.34751736909214	7.45837457496898	7.18764778532067	7.6361476492114	7.29055176006773	7.37999231611939	7.38660214315876	7.6105715563571	7.59916188167174	7.4313319614805
+"COASY"	9.10197538418652	8.63626431604309	8.83764836829947	8.82542897360997	8.68318319390978	9.22218656725681	9.23465885755355	8.88958794092091	9.10130395027644	8.84109130110712	8.53306234153067	8.7905407048401	8.88324443568879	9.05986031503139	9.04433582171541	8.58748794736235	8.76225863708767	8.73442587029576	8.87356463536048	9.00618440981923	8.72518420128799
+"COBL"	9.38979043881498	8.77051079728707	8.22639535361336	8.65976293038722	8.73608427109209	8.88029412940142	8.83803352180612	8.7337605272826	8.30369099553732	8.65113756701904	9.58623732200575	8.94102787375306	8.66255869726035	8.6695421319726	8.54983691319305	9.56685485439493	8.73761395837895	9.61159932741016	9.05162120111811	8.83705157109688	9.10763453407736
+"COBLL1"	7.4162707039042	6.7832366280273	6.70853398722384	5.97406675637241	6.42387541139561	6.69197342438354	6.09163907184736	6.33665098945883	5.98811994872902	6.01968181460944	6.91070914653413	6.09082327077581	6.5764419027422	7.10460047299542	6.16489113792306	6.22227120671826	6.23887219025973	6.41098516026197	6.2352875565767	6.58223362447941	5.86427332468635
+"COCH"	5.44673366903291	5.78196085219454	6.26668984748482	5.71853342083353	5.83958536044349	5.89514495761008	5.24278749697276	5.52016608754737	5.80633067150325	6.94982158534279	5.47486876769209	5.9545848804726	5.60269275697367	5.95127527736896	5.68965521908287	5.69582861797601	5.80387024236426	5.28039086111464	5.88901021058502	6.85192603707219	5.76358467858962
+"COG1"	9.02134693676248	9.08503237784169	9.16339535038684	8.59383658862018	9.35538347697571	8.46030086644346	8.0368050966319	8.85416376808649	8.70480679200504	9.30322767095046	8.91888146878608	9.20467784408245	8.34305870119442	8.37030996383299	8.24393559486387	8.86670916481621	9.03743696519972	9.08115095817341	8.4384364920628	9.1866343252704	9.2777705793119
+"COG2"	5.38398187681083	5.04901336837807	5.53792204828558	5.10062959079065	5.0956952597246	6.40923452827523	5.43604477956549	5.6795482311082	5.09122390903668	4.93564279139669	5.11265169009806	4.98200908134609	5.1716869876303	5.23723790464411	5.67169200434946	4.72896370314217	5.13351216697468	5.98448326744015	5.67308754963666	4.92273043996995	4.96016199037163
+"COG3"	4.47751715560478	4.48754908859047	3.66283257154419	3.90713238851344	3.85923247435312	3.90276075094032	4.15919945206144	4.44454481761978	3.64244440333094	4.22891360899565	4.73765139730902	3.99527987150065	3.27483899391525	4.1372524257232	3.54658877565396	4.77880835565362	3.99306425771318	4.77434955717313	4.21933140072552	4.39537052019021	4.33208214149934
+"COG4"	8.61740252300014	8.00939634900932	8.5276406684735	8.07061987859954	8.09543445897803	8.37315387410453	8.2883648835851	8.24840843207759	8.07819343147625	8.04464034229897	8.20046009805272	7.98356410052239	8.05232384204582	8.35682194491435	8.12023462582838	8.33917558389496	8.00419871204049	8.44250355148188	8.0096078979742	8.23741943406539	7.86410514465221
+"COG6"	7.33124384695002	7.98834164764698	7.66063381660838	7.48498172147908	7.95931042768044	6.99843802909273	6.8804325428724	7.64099236817811	7.73224908902876	7.42777552961662	7.77349541589449	7.37477584283662	7.4463701516004	7.32023275263744	7.46247489078674	7.72335194062279	7.51965273327084	8.1256295650603	7.45193771691775	7.64124795941657	7.62013483925477
+"COG7"	7.91913790891767	8.03493019381744	7.61381876033816	7.85774268744581	7.21553459191859	7.28507103382159	7.90921548058258	8.28516444188648	7.99223119431987	7.94899285308528	8.14157959196812	7.90807187503841	7.780775161387	7.89320604384574	7.71755515538265	8.04638027172289	7.92374364970727	7.05668528840743	7.91791459073304	7.98655408277492	7.69402830019915
+"COG8"	8.61994943187519	8.49015911951889	8.41429981231539	8.50629896732413	8.14901252496142	8.77687628949351	8.92990213959543	8.33828154341765	8.39724239515385	8.23280963260386	8.47223421469132	8.28919875893307	8.39749896694469	8.7020554298828	8.43831761542081	8.46082220521419	8.29129711614101	8.54111232467336	8.4123868735206	8.24671380592457	8.14201612603842
+"COIL"	7.83924232080207	7.67347850354898	7.67818207698051	7.54078711523529	7.71769336547653	7.08804663704088	7.23919551858008	7.84597815215901	7.55478093061785	7.75403957334147	7.83429932574411	7.91413389505844	7.4792110358469	7.28513575011504	7.58794958172256	8.11286676714167	7.65693194932499	8.34741593696892	7.72600443385064	7.95429833452946	7.74599548289784
+"COL10A1"	5.77154480176432	6.29996205658346	6.22528175453793	6.26775002301753	6.16178926333	6.3643480768716	6.40464645683784	6.01268598066974	6.11734100852237	6.12059484398192	5.95052472781284	6.13434898784708	6.10938196213619	6.36524439153904	6.03460040618031	5.9479285081321	6.17356660005852	5.89708195618327	6.19152533880443	6.06180118717505	6.02085912089718
+"COL11A1"	7.05324874404386	7.2681782797769	7.91848896202544	7.59240100669031	7.37665787613612	8.42786461332369	7.30290710852447	7.54386808446285	7.50093272413143	7.57857488439603	6.75816720061375	6.85919951908958	8.27037219377573	8.51764356430845	7.82970233018301	6.75380774212679	7.09242200711229	7.29780395668118	7.08445577542067	7.92414236671092	6.70500147164294
+"COL12A1"	5.94662956878011	6.70504088047402	7.14839724891871	6.49902901629342	7.15279967416577	6.2560476257841	6.46919044039852	6.45857262192498	6.5342128253106	6.74539642359874	6.20844709514257	6.48229186734871	6.8410443363485	6.60810123409566	6.67141386617309	5.89916986435866	6.54629277987218	5.93955271110828	6.55711315035983	7.32760439435115	6.69151852913989
+"COL13A1"	3.62968884454165	3.65788802083745	3.69714007143102	3.56072030670255	3.70377887611189	3.65803018565468	3.2427185142539	3.82563358978347	3.46964011422882	3.72018759627072	3.55256730435671	3.59058286323286	3.45109895441855	3.60068507216367	3.45787891201117	3.39810421114475	3.56575583578141	3.71122324213899	3.56072030670255	4.61818011517617	3.74827747337728
+"COL14A1"	5.11712427813919	5.27075136064949	5.35093063786346	5.24646815158461	5.31202530161799	5.24646815158461	5.64636829056533	5.11085562741095	5.67593138489352	5.37226549855973	5.24646815158461	5.21101321916736	5.42255035138746	5.57347688669172	5.43801747355042	5.06842948672569	5.17881754926718	4.95987494180886	5.22025635773318	5.21949879856341	5.33377540451604
+"COL15A1"	4.36097673397622	4.70367428225943	4.08389417166112	3.80178679885111	4.31162145523614	4.22418977974962	4.10339975435626	3.93900552510526	3.79399688130241	4.36895569225514	4.15871804383079	3.98090428241284	3.8930371634232	4.26921858262561	4.14409184834577	4.00315196751725	3.89753926213365	3.92530358282365	3.98510443169328	5.1488664166645	4.16910210131818
+"COL16A1"	8.96136269892268	8.37164929855401	9.53594806229168	8.79312841190875	8.40671930275958	9.29138004807965	9.04329188033827	8.7417752548132	8.58152307426016	8.61418350101324	9.364334574347	8.54675331500185	8.73128157059118	9.06415057939871	8.7904367302292	9.22820063747246	8.65516923866249	9.0634940489969	8.71104262203464	8.42142669109291	8.76483796801538
+"COL17A1"	5.40972044774644	5.53446687352483	5.62359887490091	5.55890411844152	5.43813540645341	5.59632649718481	6.05077903438194	5.33709269499469	5.95333798264668	5.48745471162389	5.42822863640759	5.53019172715847	5.44840986931472	5.6436513474675	5.09987764633472	5.46181500166026	5.37231162375313	5.22252019488878	5.63391623252086	5.34448493427325	5.5201694205576
+"COL19A1"	4.83851391392687	5.23088057562966	5.56970093764381	5.15058164026976	5.22909242125261	5.69279854744362	4.48981510289875	4.92923807078329	5.14403554806632	5.24719899148843	4.98166202184612	5.15058164026976	5.17531102246592	5.15768275605567	5.21985656559756	5.03828058662455	5.04785277189274	5.24513295660112	4.88279307902778	5.11425325807325	5.06784302490898
+"COL1A1"	5.91442860743295	5.62096173864299	3.4370433229471	3.74042789022081	3.62981576839791	3.91649687493874	3.53741376891322	3.82187779337764	3.66672832581777	7.11904242391669	4.5879318292095	4.28627763394516	3.69276975034761	4.28751906995408	3.67532659494176	3.78344152258039	3.53811639686441	3.16077677376159	5.15288170903658	8.06000849564511	4.66784483447504
+"COL1A2"	8.7939349163792	7.92369086628576	6.45678430644196	6.79064349915629	6.64268515839723	7.87656928677945	7.01144471642924	6.69944764628443	6.82403838432215	9.33121139656047	6.95376567613391	7.09458216397847	7.47042042131355	8.26954655036891	6.65464353017749	6.24571820477831	6.6256348642098	6.69934318585125	7.66581303298234	10.0514111006541	7.84107008685743
+"COL20A1"	7.41837458339213	7.72684060061923	7.86363421325305	7.27891823893113	7.16580019950799	8.01481469847368	7.28767928702807	7.46892682410912	7.43904067255672	7.32335889539271	7.59518955379355	7.29037137039748	7.70073771295772	7.7902696228394	7.24115282963969	7.43904067255672	7.23051648828232	7.65307183134871	7.37260741589811	7.08076725379589	7.11544285297341
+"COL21A1"	7.72241510361174	5.98501689748824	6.67587536726571	6.31922586259218	6.16816014485218	5.71474137327977	5.80704814905133	6.29430090802031	6.05252428227566	6.31608455573225	7.85058133436072	6.2380023241575	6.09510068163558	6.29430090802031	6.27830244525241	6.72659991407298	6.52389176669999	6.7231455560538	6.46495401569632	6.20400720762836	5.42346711552829
+"COL22A1"	5.29370240381529	5.68687026771146	5.87974272841236	6.12261137615814	5.81845992954258	6.15806485108645	5.66924473452819	5.71869374282779	5.63282737911643	5.90251618604444	5.60929761096873	5.86426539141605	6.15925538060127	5.83226187207453	5.47238404453623	5.74691818105179	5.60604283981604	5.50076182085259	5.52044543045985	6.47162269274119	5.88003294045756
+"COL23A1"	6.23421573757144	6.46964488619953	6.80411241966363	6.46600700516849	6.76922829812066	6.11861947196445	6.69932781168304	6.56789122521946	6.61211400751241	6.4683843258307	6.07039354339939	6.36192173090873	6.48881667862257	6.89823803888226	6.33826500249025	5.83744539261891	6.52191911912293	6.09059177549126	6.09743345485234	6.62050777879227	6.46983109429351
+"COL24A1"	4.39662035002872	5.1319155205696	5.34838433935244	5.02908596696137	5.07508829750431	5.65397889827612	5.05886825695444	5.05886825695444	5.65593892344633	4.83508333023172	4.67653457213968	4.89666896080184	5.52583298303904	4.99111219634083	5.45247927811525	4.58060945430372	5.05886825695444	4.37190945565714	5.14877333659058	5.03187615482932	5.19352778972094
+"COL25A1"	3.37214221126238	3.32875306392454	3.48762260673213	3.40954445468647	3.3180926507548	3.32288035804741	3.3088724161448	3.32875306392454	3.27436896339706	3.22327081575714	3.14862687126866	3.19974090533624	3.22327081575714	3.43359552805148	3.5940220400786	3.47115147475991	3.49268189226854	3.24316752837065	3.09016143580213	3.68595606839876	3.35246590741961
+"COL26A1"	6.33832409178322	7.29078697159252	7.63009493433453	6.96927484583696	7.26516642601266	6.81045853139329	7.16350008552724	7.14989873910822	7.40697255512789	7.19743212672472	6.67669199885717	7.42740450486639	7.18440297612253	6.73895625448664	7.14771457679525	6.5242373987581	7.24714818968443	7.05947500095645	6.85554643062504	7.64088571838033	7.17580770229997
+"COL27A1"	8.83735958890405	8.02623892554742	8.0285879237748	8.25516988528445	7.36277852303239	9.47271663359606	8.21322430921721	7.85535155829367	8.34385081533152	8.22224286660287	8.32228819093852	7.72148746944255	8.78745568275095	9.06324917232455	8.97503016816917	7.54273897398104	7.95200591538694	7.64067063691709	8.00643004355723	7.63558674273438	7.96844345985323
+"COL28A1"	4.16016343038736	4.23566926985866	4.36448959763263	3.85806629577573	4.17537521615808	4.15678906985615	3.90327530915615	4.22691133235352	4.13987030401492	4.40889704724647	3.9995790275514	4.26731843460554	4.52808224057801	4.05058689465542	4.00099411387249	4.14517396158873	4.37983664053222	4.3536621473881	4.15181252329393	4.33306971183346	3.97874076692235
+"COL2A1"	3.73496035553365	3.81376983895312	3.8956125157882	4.01195772416837	3.88497470917746	3.98299129752989	4.34401493383949	3.91747881625649	3.93159870538476	3.96283364802579	3.6121522570902	3.72465227460754	3.85357228102741	3.93118316773381	4.09657812530463	3.95964968608185	3.89432628041985	3.71117620967049	3.91747881625649	4.13030542157435	4.25964472169835
+"COL4A1"	7.85901739358694	5.80275533462117	5.53805058511874	5.93569217036212	5.90210472515288	6.85372714689467	6.31601944212345	7.45406714577151	5.41783825264219	6.09112963732288	6.09766850259125	6.85300076927743	6.17463786604952	6.48583228849031	5.46165957326776	5.71665882966247	6.55360009216797	5.70117665192837	5.85937705206646	6.81730327087728	7.78854170903395
+"COL4A2"	7.62466376171631	5.87435369258035	6.05848507956296	6.24901779681699	6.1094001127474	6.93459116060815	6.67117396875198	6.86251233348375	5.86156299044271	6.36130079132761	6.59175415647225	6.88205763668	6.62453945586144	6.42481493196638	5.58605190735067	5.88901021058502	6.4615464237353	5.97218592569819	6.27632405052939	6.90625846957834	7.7366500610049
+"COL4A3"	5.77279488314568	5.02167080030519	5.44329464072038	4.61824606760831	5.15232357530992	5.9452239160324	4.998041111032	5.87393681650004	4.57746398617888	4.55427538684277	4.75799280259008	4.90220459074595	4.62636902560156	5.78726658634103	4.55210122320838	5.10310851677214	4.9288283931948	5.15214644602327	4.6754008741114	4.94538120843894	4.63546163988635
+"COL4A4"	4.76033979543086	3.76649585251223	3.95080198498825	3.80178679885111	4.02385416702021	4.61840137877606	4.06147527592266	4.27616848856418	3.87124403984533	3.70503641461432	3.85667847600959	3.88079420350214	3.83871278602996	4.17236987240734	3.95837500044807	3.68685159326159	4.08363524364868	3.93213392685944	3.83860974769463	3.83841250193974	3.86722914136319
+"COL4A5"	9.2548407800013	9.72212640184322	8.6359130723548	8.96461870602623	8.75603707635404	8.96483178015239	7.81397306285409	8.54679284990917	7.64865349375006	8.02649141595662	10.4324985743712	8.1757065843133	7.41408944370514	8.76412917340408	7.97180919967978	10.5264775078606	8.38237333837835	10.2462957989859	8.48686543669137	7.40810821616563	8.5612415151296
+"COL4A6"	4.60023248895667	4.06875223890479	4.05802336429583	4.26853002093156	3.87368853100868	3.84987634697417	4.07792606942969	4.06239889745532	3.66976210876693	4.21540428187327	4.36999709959142	3.71603826517149	4.22390001568289	4.07792606942969	3.68861317366784	4.55846318084287	3.8836439452499	3.90728746521587	3.84147696377593	4.16514104376828	3.86315999449675
+"COL5A1"	5.82403634078315	6.11332846608648	6.17696006695466	5.94449172350116	5.76744655358215	5.67342615931137	5.57369531272568	6.03217633285266	6.0913937563797	5.91536334384264	5.4294829754154	5.94991432402355	5.95081420640184	5.9841263243859	6.00608614744397	5.86310538921872	5.80790696698964	5.36456241103158	6.07854110773496	5.87200109211787	5.66401392895001
+"COL5A2"	6.96132616063427	7.78581428232745	8.58521720688532	8.70969495888176	8.50608533635917	7.8742139434052	6.0341809496837	7.92901519748371	8.90552191980348	8.66660368535478	7.06679075010139	7.61265034176549	9.43714066856427	8.26525565977582	8.54527301665349	7.35757642821544	8.74591848577108	7.79775066874433	8.10681302815782	8.65261085328992	8.54231485926897
+"COL5A3"	8.56564122984167	8.65782070339369	8.68602505822823	9.11957157414229	8.38959400729401	8.94510274343905	9.431491200482	8.11971397140437	8.55552712369032	8.83447038979677	8.65782070339369	8.54063580125899	9.25181318751141	9.4399360550038	8.79046042867229	7.89859966212277	8.59000729747637	7.97455754299028	8.89755081656858	8.15199056882637	8.60876145551569
+"COL6A1"	6.73836907303818	6.19485571594876	6.05603652283916	6.53882419338764	6.24131309750481	6.03263055604344	6.51713285157872	6.54215674592542	6.3895818568313	6.94544455602579	6.51636194028189	7.09458216397847	6.27127660098162	6.19840989508872	6.01259500992179	6.06425536978966	6.76211289569596	6.10623545073132	6.52440452384347	6.47462928659181	7.09987435203124
+"COL6A2"	7.73249160511467	7.05998994970315	6.63981681369342	6.27484088735909	6.49298433602705	8.00739756365743	7.75683536573383	7.77228376064305	6.23878500466143	7.61629276519954	7.20102507597267	6.62923213170816	6.65557567367966	8.01172776439298	6.01096729112887	6.53409018349908	6.73861162369241	6.17780996841707	7.20820626785906	8.93847742098338	7.41912982195544
+"COL6A3"	5.83969293375379	5.03391889058685	4.43224025216292	4.6351692110949	5.05413758384303	4.59240068367382	4.60366611031253	5.10235877765584	4.24264641352209	6.59361593165903	4.06733603259962	4.57512919121534	4.3423180056001	5.12906069912838	4.0063412028547	4.65029288499483	4.12069292984939	4.47036250599182	5.50807029833866	7.32128352813365	5.36583856873215
+"COL6A5"	3.97056114751461	3.92408055223486	3.92408055223486	4.12119486599087	4.09843505204194	4.40078440263415	4.14880233063148	3.93069653131816	3.74350730036618	3.85997539219029	3.65626136753086	3.94086923926691	3.86854535872675	4.16300534782073	4.10970996304559	3.94714800896225	3.98795040961289	3.83450429763138	3.88509171534632	3.93825358282774	3.93069653131816
+"COL6A6"	3.82281095124376	3.5723726172651	3.52200845272731	3.69619544541862	3.75538193552179	3.99103842889612	3.8505310012242	3.99717820819117	3.94953437473398	3.61179756160239	3.74235217017352	3.77593444920261	3.54147287598939	3.70918806483293	3.81197587505244	3.88928095446007	3.57098232559484	3.65927724375512	3.68861692951849	3.7577397409772	3.67512394541684
+"COL7A1"	7.49526360194363	7.22997418052453	7.71284878603609	7.19981990398318	7.33798029300627	7.89192928401098	7.74487978655698	7.46045952659486	7.39734880756767	7.43507516437733	7.41750232234912	7.32579225560748	7.8201833724336	7.85723572433097	7.71470540498238	7.32486547313947	7.37666866045057	7.49526360194363	7.51283916277588	7.53809002475989	7.50607618707664
+"COL8A1"	4.23420950682771	3.62292803442832	3.48863720673857	3.61275932227279	3.35603738381477	4.11306016065629	3.44401930046454	4.31461335745634	3.45738872031438	4.00469379059507	3.6921274125225	3.63010607543825	3.56854393390084	3.96950513632577	3.30012977684325	3.45531294832248	3.36619358517299	3.58002576933722	4.29938893389525	4.40483657613605	3.60782743698055
+"COL8A2"	6.2302156511762	6.09513689043453	5.3323252289593	6.05549428600838	5.79240450295714	6.11790148955099	6.34052592241231	5.85813302172918	5.83874563778254	6.58998497455137	6.74135907024885	5.81113831716612	6.08049695710312	6.68573578773901	5.84478271340481	6.3234672951329	5.69716384230498	6.14965011701527	6.10271985819724	7.7011872662749	6.24879604945445
+"COL9A1"	7.58862888684056	7.43250458751605	7.74624388181125	7.68562755917085	7.20346614286036	7.96911332589302	7.4722102998221	7.38548995041698	7.59345390078667	7.39380453770852	7.29113817881216	7.20631401890057	7.98944418069588	7.8943956103723	7.83064489826349	7.43022189312028	7.27109904881715	7.60058519068606	7.2489198063052	7.27928188704291	7.02202808413424
+"COL9A2"	7.87040242895089	8.49395560231484	8.21305330627909	7.89450209112549	8.18508616351146	8.81593228051171	7.30334533257578	7.6870320420295	7.1039063587303	7.1763568883369	9.31354810350657	7.76739338618329	7.6232466055176	8.10243251126639	7.11590425292773	9.58377259147966	7.57495511559805	9.2784412911778	7.63060533195194	7.36209344653345	7.89109753879693
+"COL9A3"	7.83353120339158	8.68508276711963	8.49042808116767	7.66189985552291	8.22546611610664	7.80878084082049	7.52927802579428	7.49380911932273	7.11506897627726	7.56065944190293	9.35027108579742	7.91076323527949	7.53744294569041	7.72352681892893	7.35028898152927	9.84496896336303	7.76201935309154	9.17665311867687	7.72280953327073	8.85689244670254	8.07683554126334
+"COLCA1"	6.06920611138711	5.77781556477067	5.84319918381144	5.84680436663177	5.6959637227591	5.84971464941132	6.0545685301676	6.03419139609067	5.77185695351662	5.85368664305856	5.92496292611859	5.81337976691918	5.93537689485161	6.10337111673934	5.81449199041889	5.67602446949457	5.84680436663177	5.58399604266968	5.80176607971998	5.77479672669878	5.84680436663177
+"COLEC10"	4.35957541520329	4.62034944165821	4.55256410923793	4.64313336090799	4.59722285687198	4.82198545169288	4.53950263451484	4.40176352688136	4.67297461447203	4.60795704886701	4.44161964206997	4.49986486707206	4.54134350496513	4.56974648944736	4.53950263451484	4.37169419537592	4.56481283183717	4.38868458282386	4.32374283422949	4.58897896957342	4.55256410923793
+"COLEC11"	5.183218129916	5.14743960667817	5.19421796593721	5.93455159192354	5.65470206376518	5.63422241827001	5.97491604263532	5.69561815767457	5.47019358176772	5.48355826091725	5.10153977756962	5.67893097266628	5.85510388989634	6.05978049399008	6.11141697505336	5.88787315439345	5.69050004291591	5.21162510184184	5.09200862323823	5.1872314606845	5.25766980582511
+"COLEC12"	9.10105376750054	8.5139216156866	7.31213420981232	7.35173002462355	7.54774300454622	7.34743091639746	7.68950631116713	9.21975954523387	6.80005458067239	7.9012152514046	9.57698946515174	8.40090554287235	7.27021348767699	8.11942356139561	7.46633372247422	7.52219257747083	7.2786339828717	7.0434320638266	7.74356943490857	8.28168714784456	7.67523334118316
+"COLGALT1"	6.78068947271415	5.98525174935161	5.3330707045369	6.23600795543901	5.83848924790529	5.94778714911789	6.48565926432671	6.15189632956819	6.27922616673732	6.46126887149626	6.3187503086792	6.50181861227418	6.30997109772858	6.4470418168618	5.81285923242353	6.25975585486541	6.21185556060292	6.40827782966525	6.61550071492461	6.61230168054922	6.85136141987512
+"COLGALT2"	9.03265299747042	9.19173413848848	9.14855233803674	8.62955485504689	9.11166727021934	8.86050233501083	8.51978188096433	8.74002118433782	8.16888408820576	8.67626501145595	9.63944634103264	8.82550519236139	8.75623282696607	8.5513471763032	9.08870143527724	9.79128359235199	8.68344812222858	9.77178731944753	8.56113430286668	9.02613518259942	8.99772939418426
+"COLQ"	6.35868523001762	7.00337942971714	7.18257702198341	6.76478635680779	6.95147399775718	7.11563188807483	6.83439092398336	7.27545575027569	6.6806458300766	6.78206430457926	6.62059969452963	7.05388216286172	6.89546907740355	6.75788143980625	7.0572753084525	6.59799516332394	7.02605854885461	6.99091621329748	6.93572625078906	6.91154008911963	6.79384287558492
+"COMMD1"	6.79493764111073	6.55427417386491	6.75814606993319	6.93968229339635	7.05938168282371	6.5440428686895	7.08366392667029	6.39056030806594	6.96405784839939	6.13206591356948	6.43358821446435	6.63453814284337	6.59479393064646	6.68892003047363	7.56662298424813	6.30534127529599	6.56348487456658	6.83542356581362	6.64367981197091	6.34634948427231	6.61422712584634
+"COMMD10"	8.29838517521367	8.30384755528745	7.6504505146876	8.14687252143649	8.39095326099118	7.51349392058272	7.60504067886063	8.23081565708366	8.27959942031856	8.50633290678663	7.98346993244333	8.365193672384	7.39773729070888	7.67286637345802	8.02127980728983	8.49845821294833	8.11307455906714	7.96703445317248	8.26409122140414	8.53950286238166	8.43445366844516
+"COMMD2"	7.19973237152849	7.3227758406385	7.95894496663704	7.08367994708066	7.42957285754881	6.91448971091111	7.01659255577878	6.9150141433386	7.22704443361305	7.3546049605963	7.73157203747543	7.17401387744764	6.78639919432819	6.81521354896739	7.22704443361305	7.92175612028027	7.11455269279376	7.91859345892226	7.21082516074804	7.30598419659264	7.06606137231185
+"COMMD3"	8.91968566069302	8.94244361988059	8.83947020451273	8.64748043154225	8.8497785109032	8.86645657387535	8.37683180020117	8.51554843998415	8.77565397133789	8.83704030120465	9.01391202919858	8.67431478948512	8.41963028047666	8.56972751291352	8.32974049267781	9.61815628838253	8.50496048539426	9.38756001679868	8.84699241917478	8.93202185158359	8.70064884288998
+"COMMD4"	7.84640858072496	7.81073290667622	7.76853989504387	7.38069833230528	7.74453453011198	7.55191660350014	6.83050465557553	7.28920387561621	7.40220207158557	7.83504920673261	8.04338628655228	7.67818207698051	7.2210707769658	7.38310197596856	7.15319175363745	8.2510275763274	7.3116416970347	7.84839606280337	7.26397977924458	7.92429668643376	7.76051079145925
+"COMMD5"	6.44428408734983	6.13142120514011	6.32505926192375	6.17994544425002	6.30997109772858	6.07020485594786	6.27178538532851	5.78718409188566	6.36684748168555	6.01003485112392	6.30767668038288	5.8989628101317	6.19157936276521	6.05241835188172	6.23188638061043	6.66748187520025	6.06630590866418	6.6244072904853	6.26751343189526	6.31946411537033	6.13997354225613
+"COMMD6"	10.0593925211365	9.37642306322091	9.35283465491135	9.2623329749591	9.13502993423973	8.67989116132386	9.56298088891949	9.59289979173675	9.26819610504257	9.35792559171973	9.73835566261663	9.21372552530089	9.22757336434618	9.2773785083553	9.3407345686256	9.80707035783173	8.90318298189631	9.60933259671298	9.84019322639667	9.47902267859343	9.37660382467644
+"COMMD7"	10.1409918996169	9.84488980079952	10.0924425843844	9.82943997800377	9.78285225894975	9.93104952061608	9.95479550996958	9.96951634914446	10.0475163041341	9.81338861134089	9.54780060123642	9.73560206274095	9.86219771452493	9.90908562295053	10.1564108489768	9.47095279156214	9.72730642870703	9.6823365577221	9.90094789761725	10.1208443381798	9.74995946392659
+"COMMD8"	8.3163996528409	8.00041595111814	8.06848622443211	8.22165896968647	8.23295607778353	7.42583187128203	7.81951971124067	8.06848622443211	8.06848622443211	8.01072881498684	8.14352240199378	7.66030999774495	8.11207646156758	7.95493733680304	8.42546934907268	8.37203298286988	7.87779153453269	8.06501425453194	8.14169289834395	8.08489918255429	8.07557552828267
+"COMMD9"	8.67645284128541	8.57580607594127	8.74581490871937	8.57580607594127	8.78060367503693	8.3063031048596	8.21191939005646	8.25167489089898	8.60700059550994	8.80460636385188	8.57699973030439	8.57186479008138	8.51846993744827	8.41572915260461	8.65136272794279	8.91873127596182	8.40256367716516	8.77492143992656	8.51075243511024	8.89617767006197	8.64062679327075
+"COMP"	4.90082049143495	5.09144663547207	5.26590355278674	5.15538870778499	4.93936606596842	5.37506307305564	5.72126306855114	5.10809946831677	5.20617183762547	5.24057057643832	4.9364083010184	5.34628491843054	5.39217990858225	5.64690158012404	5.2933219451384	5.02792037044291	5.45644800797242	5.22827852745963	5.69401199798029	5.13140031371012	5.51006669105054
+"COMT"	10.572718846207	9.7690966510347	9.5277679139642	9.56479138345622	9.49990427046681	9.94711127572046	10.4250640529136	9.97933185349227	9.57208383371056	9.65526121589171	10.221175523115	9.4552612639633	9.66766919478792	9.8265250547844	9.16222003539681	10.2437900146408	9.38740055499225	9.99908292260219	9.80719993320985	9.60941994754913	9.38915791120469
+"COMTD1"	7.4578373708435	7.28193154751261	7.5496943864046	7.42630893193971	7.34920368242437	7.42791278492474	7.77166561836232	7.29392640491018	7.33273185788549	7.47679788701725	7.17419707839319	7.50478688086209	7.50728698009545	7.58358766773198	7.49304662138133	7.13661239241522	7.35579374475641	7.25659454818271	7.40155965166711	7.66824683323074	7.44811766052312
+"COP1"	7.80108990243774	7.64083875517636	7.30684508819056	7.28652919664431	8.09554036653216	6.76503043755169	6.71264771260612	7.41165213619612	7.52670885857891	8.25827599765184	7.61329026308948	7.80425206343773	7.15859273665455	6.95357613688077	7.42034997952861	7.91497236893781	7.69269948728888	8.12281523694105	7.64033445995339	8.2511168171993	7.87859936826948
+"COPA"	8.05973705282338	7.61965351117263	5.64395168795492	6.85127438276984	7.27813060146788	6.77385115770883	7.11765662077037	7.36115132895015	6.77079270460282	7.9944531010851	7.53528804603176	7.69712400553435	6.95588140690912	6.98304322120882	6.75838467458494	7.81049490504365	7.34768339628264	7.44281334688143	7.28944494816348	7.59527645686147	7.98483900022284
+"COPB1"	9.43295229521365	9.17542636851392	9.02671899980794	9.04746656402981	9.11170490497568	9.05245528621549	8.87428515609621	9.40828165000991	9.16214331701847	9.1317502264351	9.23557187807404	8.94586342957657	8.84979913871298	8.78505876320207	9.17854886886942	9.53493574378091	9.04236511554145	9.41636396849402	9.06355308059628	9.24294976047001	9.16812385227969
+"COPB2"	9.14330261871401	8.84561124422591	9.03338920212827	8.61237155902931	8.93760898346611	8.93246438528464	9.17538702619947	9.01858250479818	9.11574081767875	9.01970256722974	8.68898332966219	9.02271469060128	8.86812897754071	9.09197520597795	9.09336324482859	8.66216848270224	9.12799282065962	8.94507428126171	9.11363375660007	9.32328691460504	8.9963117453677
+"COPB2-DT"	6.19186822460948	6.00010937220455	6.14943801895765	6.11367082491704	6.07794984980175	6.1593622353886	6.11367082491704	6.09185952576884	6.17727094282725	6.08361367529484	6.09524838440771	6.2302641742124	6.20155140265617	6.25176716728781	6.21147656358441	6.21880122445625	6.07822392224854	5.84991185897454	6.19235258313103	6.09114506637635	6.0077724735066
+"COPE"	9.55852384838769	9.38501821538572	9.4492890678376	9.24187452658176	9.53963228572595	9.41419763684907	9.31991838580989	9.47584230869941	9.13316766446491	9.68630225453273	9.71605416789437	9.48052119004649	9.08382312359684	9.07523480191723	8.7520297343246	9.6936680086789	9.10745545320296	9.55682159134196	9.08659405125677	9.7274154159879	9.35464804013898
+"COPG1"	7.92503254382751	8.18748138092343	8.64629000022992	8.12549185489819	8.57298329528821	8.15460091334996	7.85298691914585	7.9751213742607	8.2867510198569	8.38112347487754	8.08017793514086	8.50794974401454	8.28946362143915	7.62239185135064	7.85887535528389	7.83700414382368	8.33890294960437	8.24810589386253	7.76913316047884	8.66919494581454	8.27151532720414
+"COPG2"	5.7851649236608	5.79098188582652	6.443834933189	5.31370714793122	6.88733800277025	6.36694218221906	5.37534953262832	5.68167326426244	5.67850864452691	6.61101001100808	5.82341278037795	6.31848761482977	5.31558018812637	5.36747063212041	6.02368978433381	6.15058190683532	6.09325940523934	6.07447242365776	5.58400111240212	6.21144385249889	6.19113635604208
+"COPG2IT1"	8.99508222227526	10.3224826705452	11.0999335660808	10.1287465959747	10.8196152465657	9.88028497168916	9.07747750030658	10.1289004044647	10.4398619664322	10.7247855389636	9.58840068110213	10.6623393041307	10.0076008683855	9.56448481694358	10.6250213821499	9.3408628976233	10.6789408079766	10.2526879520527	10.1441607356092	10.4900693181415	10.562916865002
+"COPRS"	9.69172399396529	9.85657825324901	10.4177528483558	10.0156274594065	10.3631686801748	9.98495765091968	9.71417592395515	10.0830321277963	10.3866372705548	10.4827647375975	10.0150252659423	10.1546929722338	9.98424167749813	9.67003769615117	10.3679476320714	9.80656818946903	10.0496731494169	9.98774216043624	10.1861126076637	10.4315351118523	10.3513826890717
+"COPS2"	9.79080176202194	9.69937608170659	9.52724174996652	9.69978605558294	9.87447467815669	9.21488973057096	9.40900846930624	9.94805465879622	9.75268493781794	9.79965829728809	9.87110792741898	9.90220925252453	9.41696203036151	9.33319463873029	9.94253388458312	10.4660687151224	9.82905282818378	10.3809254314347	10.2266670761622	9.96824121403413	9.89099730651344
+"COPS3"	8.34994372016799	8.79226793353156	8.73799430174843	8.40243541323434	9.03775982836679	8.37346045852338	7.96226358298125	8.52561703199349	8.8182081116285	9.19274457170373	8.73623173914804	8.73799430174843	8.58741408124019	8.03000459995741	8.70706904173035	9.02667702336088	8.77308731606884	9.17443615390747	8.70204458937677	9.01246487696913	9.10520933454483
+"COPS4"	9.16007622866877	9.15497301425742	9.44434980762093	8.99699702720434	9.66610802824836	8.45867881561967	8.64104031419373	9.29249073533778	9.20371988551753	9.71122691809427	9.15284185990562	9.59505307045135	8.63215152965111	8.15668755689188	9.18063480864566	9.49035374556888	9.25923203288826	9.38531642245575	9.31894157972367	9.84034663577032	9.58064182583156
+"COPS5"	8.97827239250811	9.02624774343198	8.68299904723241	8.98655281474967	9.12880798348241	8.22046807077089	8.45634535312469	8.63331928562179	9.07702756097099	9.25130121194398	9.08387783159547	8.97530177673105	8.68424837760653	8.43420288210802	9.14650962289647	9.41527797888041	8.95771548370756	9.46147847642931	9.05297460803655	9.21886881714862	9.22713930128177
+"COPS6"	8.38733233593569	8.08192808105176	8.25699805875844	7.93911509029426	8.47177462252328	8.23721511976951	7.98058257398728	8.081674515277	8.17415597256983	8.38363809734102	8.01749427261605	8.07155406496191	8.07573194581672	8.15129644281336	7.99848890508534	8.29670673545197	8.01257288369406	8.17917027170017	7.82658735948667	8.5118345370168	8.25319725885747
+"COPS7A"	8.80821777292564	9.27610136335281	9.72961830412648	8.86772570793194	9.58575165733783	8.75522428272268	8.58944130654531	8.80619830163512	8.90964094436474	9.60336326900582	9.13006645488743	9.51937432554974	8.78991714982624	8.53338420519434	8.850455349022	9.46710810649689	9.08203856543305	9.3089278261685	8.99878574824008	9.93204839423404	9.63793780202483
+"COPS7B"	7.9155948521344	7.90677322472217	8.30941477792776	7.87802015055799	8.01345276693396	8.03996367059593	7.6130303335368	7.69103050514669	7.7576731628175	7.89495077244608	7.96417490344258	7.85287769430646	7.77476240971512	7.80155546232136	7.74378212585373	8.23383668216215	7.89099288566863	8.4348997692948	7.68257247611428	7.93534192897887	7.90677322472217
+"COPS8"	8.54470256078756	8.7508777322691	8.29857444002281	8.50252941877016	9.20157003305375	7.4403751405657	8.03701068497128	8.98878834873133	8.42405977729217	9.26348794272585	8.83588950250515	9.02699563337907	8.01295597609446	7.9152026912129	8.04806603649241	8.98980521766851	8.60323817955774	9.02398060705431	8.76889397820409	9.3748662284485	9.21186916903347
+"COPS9"	11.2052151610397	10.8912288133279	11.1474258157061	11.1587085621564	11.1453262483668	10.7335653172584	11.3764213979464	11.3986300689974	11.5537032065913	11.2141493404088	11.0748256329296	10.9516195594869	11.3069205157502	11.3291830742166	11.6262474122919	10.8382518428614	11.0956161656182	11.1860861247813	11.3733299388057	11.1490636191945	11.1256707625583
+"COPZ1"	8.93629654836431	8.70820847744315	8.40538767215052	8.34592071792054	8.644485459155	7.97693802432708	8.0631584650007	8.55397454927122	8.42174810024972	8.84819494813502	8.69971201606825	8.66932108328368	7.97730549546448	8.01044390247993	8.1548299213438	8.9906781245788	8.3926252291216	8.622074215494	8.61770856242855	9.0713498838083	8.56647866682183
+"COPZ2"	5.62265868442129	5.53749176458731	5.42619120210066	5.7520948928751	5.32734865603756	5.8171921898589	6.07790685654421	5.29708504371575	5.5416937103325	5.42961659859459	5.43559939896361	5.16617129129323	5.56662999193529	5.94650933663171	5.76048025628593	5.18654214233085	5.39893454147668	5.11478401905707	5.44519101470917	5.7493807746536	5.44300405521678
+"COQ10A"	7.87804579633079	7.97656024670822	7.91253986618227	7.81152650331829	7.97339554442892	7.71221252701891	8.23779761381532	7.7450109123017	8.10633955230473	7.93257576683344	7.76238364221011	7.83081621752726	7.76830593427905	7.91819819046682	8.04806603649241	7.63534069173466	7.85761973227218	7.9737751946045	7.72453491680914	7.86960782741852	7.72358160667441
+"COQ10B"	8.36759747678359	8.87626802231304	8.83409240350267	8.75204263510694	8.84288056385528	8.34944214231873	7.97789396084262	8.88363937598694	8.83034120942584	8.85322415395656	8.55210284997907	8.7390331321206	8.7004801473488	8.24539148111661	8.74450736790696	8.74922826235089	8.79470302231018	8.85938163433857	8.66695171261788	8.86744878448089	8.75204263510694
+"COQ2"	6.02736459464165	6.14512155601559	5.84471237686852	5.80955989586441	6.19392070963992	5.66294152110445	6.07565416332507	5.9468975034307	5.58998915888436	5.88568438765821	6.05773202723754	5.85681275369582	5.82648687307589	5.84471237686852	5.5331861207613	6.24461515148808	5.66128153398499	6.18588667367732	5.62457771293014	6.38227706410812	6.05285821950774
+"COQ3"	7.09558713127764	7.36484092124299	7.89434458848033	7.31899888589709	8.00986361729781	6.90042713771585	6.86811820680303	7.31006863734343	7.6243342021621	7.81665011099289	7.13955857850695	7.59478060030959	7.17214336784157	6.86393994564587	7.36484092124299	7.31579136218005	7.35556308750461	7.44871991819212	7.2964261357508	7.89322412723951	7.59047632223955
+"COQ4"	7.63147508302769	7.98512540886792	8.13763243849025	7.24708137443869	7.76888038349447	7.49340809527934	7.03671163462208	7.25503580823458	7.39495972553625	7.49134492653755	8.12515095586092	7.78959268672264	7.13013858693848	7.23907768719713	6.73253309867692	8.03014343981815	7.31040118857776	8.07881671836804	7.40297650512674	7.74407407896198	7.40338739513784
+"COQ6"	6.92347093105779	7.09622749704334	7.34520702123297	6.73948303582013	6.98849533793421	6.68492167881054	6.56399102628271	6.88794787751089	6.73078236712078	7.13047826491502	6.9054432919908	6.89742901638443	6.44693278753413	6.64202948942353	6.44065796917132	7.25310618317056	6.77121121746107	7.22089709817062	6.79785363894435	7.28804034391679	6.94800120861605
+"COQ7"	6.6701127085252	6.7740200247117	6.74043798900028	6.22553912224333	6.99979567826679	6.08198736308105	6.70714601682489	6.81472723547075	6.61199328951794	6.84412536219071	6.91463513188106	6.80251076564745	6.60777308838608	6.31749797315242	6.05429268961207	6.91389974327851	6.39860316427388	7.16329191109421	6.69986388061975	6.90787034128016	6.53154593627683
+"COQ8B"	8.37316511322393	8.33333506330728	8.3385189381673	8.33575676383189	8.21457557842234	8.75970482594536	8.78075722173847	8.3058757076073	8.33978391976361	8.29070533980254	8.3121417368834	8.38063122842038	8.22865257562204	8.73431470913481	8.12877617449715	8.31894291000763	8.22806243905785	8.0165903913385	8.34483895623059	8.4509993025655	8.31762622498649
+"COQ9"	7.27218694821019	7.40246644514163	7.52478250488123	7.68913012839972	7.37017611383699	7.94417422180365	7.87188420339867	7.65658252816089	7.41388112668261	7.03270379927049	7.08542831516665	7.4119949173075	7.72470457094008	7.70358521733028	7.97052254889929	7.11057823454536	7.41571987652344	7.29697738127788	7.34187166138444	7.05285761614459	7.27216040284008
+"CORIN"	3.6633436348587	3.49907232928224	3.61262188251136	3.83521157208833	3.78945714465832	3.82937801990544	3.70035100811229	3.96779852709763	3.82146003715706	3.83450644829004	3.60355776967126	3.8680059138374	3.75470714779941	4.13470387391892	3.66015882358917	3.76649585251223	3.80995025245353	3.57566206899039	3.85290110206997	3.61949222879235	3.96086027016958
+"CORO1A"	9.04664830720842	8.51928586855318	8.80634537196929	8.22479751977987	8.66738672801301	8.08192808105176	7.90423859407227	8.05360509386607	8.38254281354405	8.61715713891379	8.10331989571815	8.41705319600013	8.35456122747944	8.07656256341656	8.28039141064655	8.12040791795136	7.9814874136021	8.26934029795613	8.13547095463421	9.44163432554301	9.10879105125515
+"CORO1B"	9.27465086265307	8.65758582287503	8.3379350531942	8.48657004409439	8.45164870756261	9.00557469992784	8.47305983248471	8.41862673277996	8.22628857837834	8.5411335985109	8.74147431986415	8.26093640342596	8.3709742174667	8.85401834009603	8.26601321816563	8.96862158313488	8.35213149996997	8.75932751765813	8.26264129396466	8.72218870130811	8.57995240984378
+"CORO1C"	9.80904689047093	9.28804554640286	8.95034344542718	9.21900002394004	9.37428754571094	9.72365191966376	9.03887207395863	9.15975540283137	8.94020134001431	9.46068816726767	9.46227678065362	9.44501709137322	9.16680508254879	9.0345217107151	9.02743387192032	9.56159100336754	9.15564474118316	9.60986346459543	9.35290621744366	9.45749115063506	9.62503766369033
+"CORO2A"	5.45306642260338	5.92059190831796	6.12613527912332	5.75557859484126	6.62875171226049	6.20793867973161	5.83401490290381	5.85337801687924	5.97869432322653	5.99292249156765	5.45339863340296	6.05895043823612	5.92215013472151	6.02388915095371	5.87615625460345	5.56199466051574	5.89550867774843	5.75624257987067	5.69711693539108	6.51606215348695	6.3601727894944
+"CORO2B"	10.0017834640425	10.5687801985305	10.5121709876997	10.4203857024007	10.5510113620347	10.8203688721449	9.98181221973729	10.2270468360812	10.3423379680971	10.3583997941783	10.561563253731	10.4030626193117	10.5743289952339	10.3201135808399	10.1597772251544	10.7783633616338	10.6253947976202	10.6674486198679	10.3414171581807	10.5280922730122	10.5584265647868
+"CORO6"	8.19390990132006	9.23507063899017	9.62849497459932	8.58168490258218	8.90448445623919	9.16625171086117	8.1164585867245	8.76710117919526	8.88793988000329	8.99917516950406	8.65096064869201	8.97487405512903	8.95257069032006	8.95803904741198	8.52904640661728	8.08951440472145	9.05278635476578	8.64510395453037	8.52526508619244	8.8076605695074	9.14436786697048
+"COSMOC"	3.6072048963835	3.72255662574071	3.8228931584285	3.85435232676998	3.70245214968801	3.40376929534488	3.99585817708533	3.82359125667415	3.73064119322411	3.76649585251223	3.66076069256676	3.68010549265667	3.71031846596918	3.63734615191803	3.9259557840005	3.79782728192739	3.81251223828182	3.58781527479514	3.98035701849312	3.67549752468826	3.72421426249425
+"COTL1"	9.43518490659063	7.9169286516968	7.90255606382145	7.83348450439617	8.04588029952664	7.72019544500084	8.08484460321504	8.40898252282612	7.95167896443185	8.08506958264508	8.49281782361424	7.86357860871959	8.11278164800454	8.04850360886326	7.97362534525455	7.74041341013764	7.78143259015039	7.99418012310141	8.01167594502446	8.20398523534977	7.97319540687395
+"COX10"	5.4823971733537	5.61763164962371	5.66949889704937	5.96294659055184	5.7899061833471	5.86216616062029	5.62042998759278	5.24431666603008	6.10207768111296	5.41404242538662	5.07158902766839	5.21196228207716	6.41573226242356	6.24598887723421	6.78953578471793	5.0040275932155	5.49946848865662	5.39844557890683	5.24287961195528	5.30744757764333	5.52226443247395
+"COX10-DT"	3.77386896107127	4.22780953007781	4.49105733613896	4.16429309197411	4.24155762902506	4.09320761033333	4.11749221189747	4.06989600100977	4.47602280645779	3.95331199487089	4.01541090452194	4.03455484036557	4.15333610062451	4.23191398733587	4.14817006516129	4.40954656181222	4.14817006516129	4.45572141845587	4.06080980242883	4.03821197680961	4.03600099560098
+"COX11"	3.11617062493982	3.85647699175277	3.96779852709763	3.86925909014376	4.4241881269364	3.48076336993392	3.2853671540139	3.96094669262285	4.33487090250008	4.17278611004458	3.43723418600181	3.82138139166295	3.96779852709763	3.84746626312461	4.4533823040199	3.90110437187859	4.28371434235095	3.96779852709763	4.09497674411749	4.05114094996426	4.537699768961
+"COX14"	8.77794073207065	8.90862542977843	9.26532952903874	8.89967115764867	9.33783321351966	8.91447184866691	8.77336919494006	9.14135336389876	9.23314382173032	9.43229043242533	8.8770452320355	9.26522862612914	9.17335912104754	8.8082244089544	9.20660290984486	9.17123604555493	9.01518299374133	9.26785496895466	9.36336347723866	9.41966706371804	9.34813384258382
+"COX15"	6.40432655693517	6.48281774820704	6.37300100449303	5.64682968357579	6.47891707348748	5.44061319479109	5.73107003707613	6.21065023217654	5.58998915888436	6.24624496249475	6.73001205320524	6.19431623819199	5.4609357276649	5.41765090923711	5.57273266350505	6.58978944923893	5.92623308975747	6.7159216320143	6.12847089168474	6.28904592801286	6.12847089168474
+"COX18"	7.49419297805558	7.81313683246606	7.82809973638331	7.16970489610129	7.75352223580941	7.43568207143045	7.48654906605576	7.63425043570484	7.46493599564205	7.73539595288464	7.67213180399088	7.79631111952332	6.69073559347993	7.07891498113306	7.00657761500509	8.00619340059111	7.67145798250897	8.37981117806739	7.56125867587728	7.74872246708338	7.72016781524325
+"COX19"	7.10740180615243	6.72367721240826	7.13668770031538	7.22543857310561	6.78651839179412	7.25251194869213	7.50482029051915	6.66101691426689	7.39423859193366	6.36277248897499	6.79168712321827	6.63705848334814	7.43246654092103	7.34736261473571	7.62977986342233	6.96018616409927	6.91050298607194	7.24436539579128	7.16022303096245	6.73445249060399	6.99670726705686
+"COX20"	9.60434393284186	9.66017662725824	9.6168641893831	9.76835200268716	9.41384231725098	9.22859393255353	9.67968057852748	10.0232875023338	9.90039970707083	9.44043305759715	9.8638273042145	9.32524915927275	9.92192085637752	9.87238455263395	9.65794345464932	9.64987617740889	9.33625452650176	9.41698022351624	9.6077905381173	9.38825850679453	9.26271161098015
+"COX4I1"	7.9250314570392	7.76894793864955	8.22770267658109	7.77337311283323	7.95946991794247	8.13933901174988	7.27757018468611	7.97952719599053	7.96777742504485	7.96197031659235	7.78301652722246	7.90515473251601	7.48286657040422	7.71189506333862	7.9215100689646	7.89969777513445	7.89716216926521	7.89716216926521	7.73364619005802	7.89120533080577	7.98604905475226
+"COX4I2"	6.17382524888075	6.1001018556161	5.94929812849391	6.12993528715712	6.11907170553115	6.32825739951106	6.3140191886413	5.61283365864348	5.93442230377313	6.23160043834295	5.84075056372834	5.79316706263068	6.3153719783427	6.54335985489216	6.16219658087325	6.16922619617512	6.1091737881154	6.13109410013099	6.0518882389905	5.76538783305897	6.11907170553115
+"COX5A"	10.3652652335625	10.5484877920124	10.9991790983877	10.5738332799283	11.2096399693634	10.2536291745008	10.2604916956144	10.6551787187364	10.8309249978047	11.34890403808	10.6554007707821	11.1073160178951	10.9476979690706	10.1541103519717	10.9069811931587	10.7106346746042	10.8456135378044	11.0444020692006	10.7902990317685	11.0997794033496	11.3109137429858
+"COX5AP1"	3.47115147475991	3.41490203099402	3.22024082022788	3.15828382342225	2.99266633866164	3.05859667568193	3.31842368551545	3.24380733929453	3.06522871375621	3.20722492333442	3.45060721170691	3.33845617202225	3.13778278187323	3.04072011533234	3.13115095448815	3.20722492333442	3.22528470999916	3.28873525678514	3.40430508927175	3.27395274792459	3.40887197922171
+"COX6A1P1"	5.04003097162902	5.28415474008945	5.62922667899694	5.53134928631513	5.58858261745093	5.55252985400195	5.53163388875315	5.30596376427479	5.1212187446657	5.47885369744983	5.11536786101784	5.39358513193728	5.49291295894045	5.66964972430407	5.23742510816676	5.16832902236931	5.40429952308701	5.55365956136224	5.37433739431046	5.39358513193728	5.51650871295048
+"COX6A2"	5.00673067625331	4.77492519755549	5.04116296689828	4.85225725695024	4.81318669911126	5.08342317432284	5.26803518101573	4.76466224871304	4.81819931868238	4.77572319442088	4.76616523734728	4.75731554847077	4.97268773009286	5.19618657624464	4.81819931868238	4.70588712881599	4.83047629240618	4.88277805306408	4.98363282904056	4.67488122330729	4.81819931868238
+"COX6B1"	9.92964845766755	10.12756238183	10.3678684643894	10.0465299049755	10.3984884493994	10.0469003367265	9.99991306495357	10.1427485991798	10.3359335756009	10.4691693896733	9.98191572936179	10.2765242605656	10.2488392405573	9.82872092589486	10.2724291621703	10.0758692938485	10.0975385916303	10.3663606969879	10.2842437324942	10.365849631866	10.2201849592846
+"COX6B1P3"	6.1609755148325	6.55687355857933	6.4403136589498	6.86514611500985	6.58003672720706	6.55224015854683	6.8086994765171	6.57677100167861	6.56987697880687	6.6712276410193	6.27793132212332	6.58003672720706	6.93109799308596	6.63857569498611	6.60359070728066	6.58786640698005	6.68244853023348	6.28956723723468	6.73425595569923	6.50788030841786	6.8609158041242
+"COX6B2"	6.49230642745639	6.70100218878492	6.66977989238952	6.87078090108611	6.80819746676922	6.92007119124133	7.24207292603708	6.71304494966015	6.85266246583419	6.64074412034965	6.50198239868056	6.76889537870552	7.05177447174155	7.35619145770376	6.93114199052376	6.66266351885394	6.62825343576954	6.63692460745012	6.82874305789312	6.8148523544767	6.70573050337861
+"COX6C"	11.1945994738406	11.7421809069752	11.8165597142776	11.7037002696928	12.0472447302007	11.1171677192128	11.1690893248339	11.5719690373717	11.8549977911818	12.0766188422132	11.7303618867009	12.0443565674313	11.6445642842848	11.2346403250039	11.7155356874039	11.7309493139105	11.8860530246697	11.803835682725	11.8608539576546	11.9051564670941	12.0300935498932
+"COX6CP1"	5.52560477454462	5.82030809152053	5.80714925899062	6.10263881475382	6.10172455145438	5.54303189371085	5.95118469236569	5.73279782291106	6.10870339474443	6.10846285049305	5.78882072343273	6.19610394856192	6.0555851700521	5.52129164993457	6.15206122290678	5.99409550060328	5.93980467365802	5.84679483329676	5.93980467365802	6.02394537980233	6.29905781349179
+"COX6CP2"	4.30923821664179	4.34634699370544	4.14707758135961	4.44995286052623	4.64872463126045	4.28677964955965	4.45963223682694	4.24342482379939	4.35794210178353	4.23188577555666	4.39369404120581	4.76094851669549	4.35460034917389	4.41285277111197	4.62201835747367	4.29537688999037	4.34634699370544	4.17919511334239	4.33585889439047	4.32745896662535	4.25964472169835
+"COX7A1"	8.95932428038321	8.9596968517672	9.43424576433459	9.11666290223139	9.67735746110784	9.92518738250028	9.02654010004073	8.62477648061554	8.91933893589381	9.60856497497548	8.39538333668471	9.24867213925233	9.25099577471545	9.3704211314593	9.84682566653256	8.4704086209758	9.20911555093591	9.10068146934696	9.32735526836745	8.89107895277159	8.95756222985901
+"COX7A2"	10.5257268562519	11.000946383224	11.1861648766246	11.0544597333445	11.0664731823281	10.5765763322092	10.6360822687525	10.8110471733444	11.152922451453	11.2585508942205	10.9771650255387	11.1850501775156	11.307996293264	10.7585692539901	11.3013126771705	11.0319393136635	11.0721669490555	11.0729652610261	11.0643619614356	11.0731242305442	11.3324468216693
+"COX7A2L"	9.57879868711217	9.97326197056971	10.2183688252185	9.82163526608766	10.1047098485379	9.53998758935929	9.70129963808812	9.82009751247682	10.0982969392271	10.2328584250082	9.74417440109024	10.1222661420642	9.7891554318827	9.69998764144605	9.94688686831993	10.221360766118	10.0598310364213	9.84833145167466	10.1229036017441	10.0665451563845	10.202057544291
+"COX7A2P2"	9.13847032023638	9.65779420364545	9.56017150603961	9.79982713518222	9.96510595168502	9.24269474895256	9.40473461373901	9.51244816429807	9.80341655432503	9.9904723879827	9.62769378978329	9.81911641035318	9.8036728842132	9.34319887173702	9.98334517649138	9.71850417385714	9.68817455003063	9.7212573541297	9.74880683992929	9.9537061552999	9.95272281567029
+"COX7B"	6.3864044136474	7.67356923588022	8.13985628368071	7.57052578647916	8.47998434407761	6.8153318079333	6.18827409377009	7.21746125024069	7.65936507335598	8.17977207096486	7.48020520931677	7.70035143059023	8.08925050421711	6.83367289001316	7.49960841874589	7.4787546438548	7.82173906118143	7.89701280304776	7.18652436259269	7.70228962070744	8.04546804970861
+"COX7B2"	3.94138657751889	4.10184180627094	4.0920021811633	4.19220501036193	4.43365116628109	4.21265923843654	4.16172090003097	4.08381191784867	4.38724405438633	4.07993160516161	4.06504824700229	4.22043043510657	3.93684472369043	4.15510492094766	4.15510492094766	4.04304934998935	4.21749257809528	4.02753180466792	4.15510492094766	4.22426923052693	4.21916895743314
+"COX7C"	11.7213317591276	11.7584339879055	11.9653189572689	11.9255138433106	11.9997122450667	11.5317573729034	11.929505114585	11.9106849285086	12.080232675201	12.1031637164801	11.6151366983536	11.9894604306159	11.929172592056	11.629252561402	12.1531208352974	11.7312503412481	11.8904565823989	11.8910582473437	12.1196764568676	11.929505114585	12.025871897629
+"COX8A"	10.5186591707306	10.6154432561107	10.9006598700312	10.4919346192892	10.8573798995247	10.4825350607615	10.7689457922276	10.6139171747371	10.624351175407	10.9396011968301	10.6075526680802	10.9247932893169	10.5991981423452	10.3525753386533	10.5507263052911	10.6531677855333	10.5527208679018	10.6332039662959	10.6300273430747	11.0088401008689	10.9048586022402
+"CP"	9.80353040151925	5.74788393305118	5.7899271674956	6.96969675435399	7.09307056514512	6.26788059415139	7.15311633474924	8.30634169129886	6.30492324645121	6.79079936247713	9.60706680960809	7.47716927861043	6.1682839953576	7.14706092722211	6.89452201640395	7.60076133441554	6.61466410358745	5.12722109487371	7.57027701900281	8.54876076271156	7.28579025230607
+"CPA1"	3.19159696814177	3.32591069385711	3.37867097165171	3.32696841160705	3.28408277524304	3.19918865688622	3.58292631558348	3.51818504870404	3.52794444075191	3.27357658241828	3.2898347314638	3.42722053480663	3.24585819486822	3.37529893542131	3.38994224973958	3.33598373917025	3.36258146150579	3.45267966618631	3.48550899987254	3.37529893542131	3.43589224262917
+"CPA2"	5.51908601405017	5.66190255056758	5.71280909003311	5.55260083688999	5.47438037984378	5.42906642725281	5.49399986821965	5.50757659143609	5.43864863552293	5.51026127830753	5.55615824372485	5.57570746026648	5.73971809950586	5.63006588910225	5.78559804479713	5.87718630630981	5.69050004291591	5.70421987094575	5.68040613845691	5.68950743561334	5.74397913064286
+"CPA3"	4.56481926149211	4.71793013046232	4.53284359712518	4.8682979404687	4.76369155342376	4.37746526232157	4.65621987326941	4.37263651951825	4.43275381470055	4.61552486600255	4.42808496038298	4.61552486600255	4.61552486600255	4.75143154501441	4.56132789882755	5.00085833622707	4.64987585456384	4.57512919121534	4.50318247332728	4.77221729738463	4.76728351227498
+"CPA5"	5.42115212979047	5.43737685371061	5.71176689709109	5.71873168545569	5.40508011631965	5.99703812720058	5.81284747189743	5.58331005477081	5.69508505095122	5.64516200056413	5.5941733389914	5.5765746794074	5.65835970250501	5.86991359631149	5.53966624998241	5.41191554761123	5.59770324792139	5.38181409207325	5.50397446875342	5.5829262098017	5.50076182085259
+"CPA6"	2.89448139733937	3.01281455107283	2.87023879873599	3.01281455107283	2.97330345021349	3.05335094014696	3.2644447195405	3.04455872938546	3.2053770625078	3.14476546051217	3.12548664605115	2.98820684659974	3.05335094014696	3.1908423350049	3.07262516748996	3.00279417941314	3.05335094014696	3.11595196361895	3.08537195884603	3.38238731642354	3.1789922188805
+"CPAMD8"	6.52813120898041	6.28000255149277	6.57218195882118	6.8515577274835	6.03207102194694	6.59361593165903	7.26212964877517	6.51288372264728	6.44540975091685	6.64753242983982	6.51288372264728	6.55497918020284	6.42973149211427	6.55691102367311	6.19934398970307	6.99827169350704	6.47403952231699	6.43253511014539	6.75757170490811	6.93931055729307	6.29524253389986
+"CPB1"	4.55553142015821	5.09122390903668	5.03422181993124	4.63701914429628	4.96806156392016	4.71968278774911	4.87410528826554	4.95672371431748	4.90371684288481	4.75662121954503	5.64311774153596	4.79622683780613	4.94545988818027	4.73563657601757	4.86685989074715	6.7326014198537	5.03605282786381	5.57984536637996	4.90861305580707	4.56983228797451	4.99161955277674
+"CPB2"	3.80941181027761	3.77360944060483	3.61041895485636	3.80941181027761	3.83115969690921	4.35974220581419	3.85392233804911	3.75801207671903	3.87272518010585	3.60169523416319	3.87160217973497	3.80545768036841	3.80941181027761	3.87056454370511	3.84054160309622	4.0079199933023	3.93822292378198	3.62161308901992	3.73597975039987	3.92800043911324	3.73192646019321
+"CPB2-AS1"	7.14490631812515	7.04651029276678	6.80010827255345	6.72756685499466	7.04903599907537	7.9419387551681	6.82712846495584	7.07745160279941	6.63723156906253	5.89334880135971	6.50486911363902	6.46593761759399	6.36132982322053	7.58293081815562	6.95035753813767	7.48079152586404	7.03095673942639	8.21363624680634	7.05410317367756	5.93565744903606	6.86639741323859
+"CPD"	7.60443980472363	6.71824969846691	5.61514143893584	6.18603050087411	7.11662165347219	6.71555454224968	6.80195975238755	7.10979602213118	5.98319056061571	7.06517132696704	6.99406110114559	6.86650266890822	6.42394557258972	6.20687348419283	5.92904534263851	7.85711522783745	6.73707493455194	7.86995782617725	6.59787768265175	7.07507322917849	6.97776088892991
+"CPE"	12.5685721891881	12.4957124134574	11.71970394329	12.4661740196724	12.3582673234654	10.4621775659393	12.3175513843235	12.543258776221	12.4910672294982	12.4673013627485	12.5286823373804	12.3398004246958	11.8661948805099	11.6547955903363	11.6708514131026	11.7002818399474	12.3861030153628	11.9841708619677	12.2473592012062	12.2328348517075	11.8566496791325
+"CPEB1-AS1"	3.53426549795902	3.8397448585624	3.59194254181698	3.69105874523266	3.57164511093485	3.84232318792524	3.6117568105044	3.80891791444829	3.3165578932586	3.65269838210507	3.62004550270854	3.69975117853851	3.75924473472407	3.4516759235575	3.83746704663863	4.53749543119997	3.71713478266561	3.86246892032075	3.73482583072276	3.58222464898711	3.97149627226391
+"CPEB2"	7.71241619859507	7.92717789887581	6.69860214221307	7.48578272031427	7.49417659981862	6.79415261371909	6.88291872556384	7.46558462374755	7.17405465203102	7.9209357059744	8.04093273013532	7.46992327948327	7.01840186729843	6.83898083849867	6.92368414753516	8.4566099454029	7.56996704791479	8.12271520779422	7.60768219567237	7.48578272031427	7.68923452789562
+"CPEB2-DT"	4.66122694437122	4.55460338934353	4.37970165141268	4.5458800347551	4.6244804471089	4.43526742561689	4.42591967601728	4.20518881229143	4.44689624590518	4.27957898201761	4.32812676880522	4.50804537161264	4.39318414501785	4.52842524277828	4.50931317620088	4.53552366041602	4.46217782283055	4.2873575988461	4.46398762056317	4.33844436933875	4.22775860726016
+"CPEB3"	7.3262819533068	9.01352999204373	9.45856043269742	9.05679690029643	9.44032677454841	8.58645942417411	7.73219884469372	8.31024541096017	9.37121592585973	9.09155359729187	8.2658084328693	8.85438647923399	9.21406932087789	8.61256055042207	9.44928445044015	8.13897177955238	9.10467615627565	8.7891654052052	8.96990486359467	8.94518301073217	9.2883012719832
+"CPEB4"	8.78689481451318	8.58574447577901	8.46140703192376	8.48614133563487	8.92222505287433	8.14711790694897	8.12980514971768	9.53604314346585	8.912235174969	8.50725257358371	8.42787986988696	9.06930425268937	8.47491327308686	8.71873864988345	9.8186952828075	8.66799054853167	8.77267440800353	8.74763739413156	8.85202913158679	8.69744503650027	8.94771568647151
+"CPED1"	6.40220405043551	6.55463995856388	6.03843594966891	6.25847257875266	6.03290868703134	6.10995979786674	6.38586673202084	6.06527204335743	6.30184372701808	6.41701980281836	6.49919778210261	5.76652009221897	6.39092490988854	6.66710028024238	6.33826500249025	6.236242835794	6.02401009735922	6.40787855118129	6.48751957473595	6.71660165833496	6.4112984066441
+"CPLANE1"	5.35984654666976	5.78813248844634	6.04476622380474	5.71988509975338	6.10172455145438	4.97023162876361	4.99435885470017	5.69794029270055	5.78816075857744	5.6423421740879	5.56688695332577	5.73017518709015	5.13254939416289	5.30629487887024	5.33251532738895	5.55152332495339	5.75789104879544	5.89642606112991	5.59078143590531	5.71725687001973	5.36006793877924
+"CPLX1"	9.94381894062209	11.0109222012916	11.209057216355	11.116038445318	11.5848123705159	11.2682556599025	10.9358690287053	10.3753082168165	11.1682418778793	11.6006765488141	10.6441673498906	11.3492475745534	11.844851262337	11.2860895466936	11.1053688333823	10.4043752198904	11.5880281741412	10.4590309368052	10.9765994842709	11.3857101990456	11.7805622857113
+"CPLX2"	6.44054742715251	6.72800370118402	6.90543587956484	6.74965606937376	7.56497453810504	6.57286929479623	6.89029620064538	6.68390230158336	6.86810169835878	7.64798505665972	6.56529712960357	7.72051388237375	7.1334795245006	6.97436670410227	6.72541522701683	6.60763431377179	7.12081703578269	6.69591775288909	7.27851965536664	7.50940983194645	8.20155986231003
+"CPM"	5.38603800510586	4.7490413007748	3.94779417039333	4.94936370266715	4.34920599387032	4.45600964243153	4.62239578639765	4.12151744113027	4.47763216784147	4.7415179315063	5.37138560195397	4.06166442727052	5.25854935890064	5.1904507426137	3.97923073266942	6.10271985819724	4.53309099044406	5.71859487772525	4.67656090679148	3.8692647237224	4.74257688509093
+"CPN1"	5.19644738507876	5.50735034062903	5.28451262621252	5.53001382519579	5.59232256157402	5.61708316625152	5.70215124089117	5.31526363971381	5.64101206016646	5.42846679883833	5.48569192355417	5.24921636777845	5.80145791163029	5.884545695387	5.58834215176344	5.45607339585666	5.49340740986439	5.42054779147143	5.33427871149129	5.36534793103397	5.5941733389914
+"CPN2"	4.08863899613315	4.34634699370544	4.45000509677033	4.58877137950274	4.42657994375726	4.3802815464202	4.34634699370544	4.27251844765094	4.39981790465642	4.26001585404532	4.13705151026031	4.34634699370544	4.44513905779915	4.58341288043495	4.4867632406541	4.19183611790096	4.32213205422583	4.18161248879008	4.32259238308179	4.40313555261675	4.20856277016088
+"CPNE1"	8.45053517410265	8.38988807777649	8.74719734944584	8.28831381523633	8.44211706358066	8.80436180322959	8.3103425242679	8.48158472703944	8.29417415391284	8.52328114974568	8.36956935111523	8.43787198762532	8.62503365617924	8.52456892246072	8.41949395128774	8.29065400533376	8.348818321245	8.77565840821689	8.42569116632044	8.30502508081331	7.97870942851874
+"CPNE2"	9.46698306439618	9.35896625948921	9.2254517331091	8.94267519401548	8.92223614437089	10.2364723546943	9.00597292884295	9.00597292884295	8.53640976257175	8.36777942826478	9.99038539508209	8.83332410803309	8.92440751715536	9.1161206508391	8.87979523220279	10.2271053601481	8.74946269107743	10.3278413765915	9.0219922198522	8.54843710961143	8.54775270647409
+"CPNE3"	8.94826088483044	7.80032623977652	7.46717067050456	8.46763047672448	7.94810017581809	7.17729931428775	8.40263974369788	9.01836881038388	8.39258150459215	8.24360948800447	8.54395953588353	8.00075046842954	8.15783006272279	8.21458012032573	8.12466463701008	8.21458012032573	8.31773840728108	8.26268820594186	8.58547814706169	8.0527224331841	7.65061904725076
+"CPNE4"	7.63558043588859	8.7650961016092	9.25042046085647	8.73232292421992	9.41546668852838	8.35278671050493	7.5767555011942	8.6574367605648	8.95098333062514	8.89559514907188	7.72968817567533	8.92285032090277	8.98420861049329	8.27491254758911	9.03096432461352	8.05119522138273	9.09043727324472	8.27132163282705	8.72635881241748	9.28662168944232	9.03831114779629
+"CPNE5"	7.337144128738	7.68309217658826	8.29669514929336	7.93531690720287	7.91313170845315	8.44080875259358	8.26726121465973	7.64095379739951	7.92803896074532	7.08550581634435	7.13895896752918	7.78526107092678	8.16570138242578	8.02884618696768	8.22069654871836	7.07484406575444	7.90258778138351	7.42751376852352	8.13782250327318	7.41953057844779	7.62972266551524
+"CPNE7"	7.34960245144999	7.48079152586404	7.92618160554387	7.71359428221356	7.54943263464969	8.08272670048418	8.01405930588571	7.55770680195059	7.51437855345907	7.63892520345945	7.35748252201527	7.62768146696444	7.88122004162279	7.85447059624689	7.68506066330614	7.35308781741978	7.67759835192827	7.45547353406127	7.72643341081799	7.82213072364327	7.73829446553951
+"CPNE8"	6.54627086763264	6.54576706308018	6.81243677816507	6.98515974477097	7.56810145102687	7.03699132942091	6.41369641338836	7.62144353091852	7.29878525204261	6.81080630646211	6.53216215536314	7.25538212076148	6.56451751318441	6.6337764904814	6.77220165659776	5.84483335475132	6.89790376454341	6.31256632744119	6.75083060328498	6.79392880179271	6.70052456767945
+"CPNE8-AS1"	4.72593783385327	5.03497335184204	4.8274886196492	4.79068666818234	5.1083624285437	5.06945479363092	5.15541025845565	5.44061319479109	5.20197947158308	4.93955364485306	4.50643129871753	5.17060669262004	4.84378678210004	5.27246925914248	4.71352191270091	4.66338398797898	4.97559824280341	4.77798744445061	4.95268086049783	4.74141713642238	4.75900064350061
+"CPNE9"	6.64188210616937	7.4201999912947	7.51001381490943	7.37146896497742	7.79160265548545	7.99708886965462	7.54344069286739	7.31102808430122	7.44814674827189	7.51672745092311	6.6229055152439	7.38495065221058	7.78407910237196	7.63609257060516	7.40517515013629	6.79479785593518	7.37531486614719	7.09514463581757	7.4404137039867	7.6729367970333	7.65588462668718
+"CPO"	4.93779438031075	5.09122390903668	4.98200908134609	5.40279088345977	4.91708791848247	5.21130000582661	5.10613385321549	5.02436268631051	5.41624029554907	5.04948688645752	4.88969772566313	5.15552179597267	5.22187854795136	5.34289556641597	5.43554893863482	5.13978096394019	5.13978096394019	4.97235714734681	5.35443243763478	5.23084718457171	5.04859746092557
+"CPOX"	8.23842167680081	8.35585902412053	7.99898740575504	8.32672353504327	8.15596400152257	8.3865902385314	7.54292760425351	7.35098117880721	7.82238691656656	7.77573834710004	8.69731760885533	7.54119408667334	7.56112826684958	8.15371783956344	7.89363919285817	9.52948651711275	7.69480448857693	9.45455668123157	8.04161128761778	7.48989925242813	8.35753168930086
+"CPPED1"	5.98375468388458	6.08192757808089	5.62115745572838	5.29768279831483	5.60123205010407	6.02371840146516	5.27363516602847	5.1611850128625	4.86258415368219	5.48336023348037	6.27491531476537	5.23138490238769	5.15467726078288	5.56407996919645	5.10599657262263	6.84514829691745	5.09057249775697	6.71506926675619	5.5206795082518	5.14342926675209	5.24794122350202
+"CPQ"	8.77749993993672	7.99353651588853	7.3245037516143	7.88253423849366	7.76519704703931	8.51261001399448	8.13400509680118	8.21921465505201	7.71750222734012	7.97159050097474	8.6491376823757	7.55181798828782	7.75319548062665	7.96973147757467	7.74659713698392	8.7037254008972	7.68305658251152	8.99868781242715	7.99900505297759	7.94069872558523	7.41954606473735
+"CPS1"	4.48367321012532	4.10159587862244	4.1352832541853	3.88509171534632	3.75665734587028	3.72303573886348	3.82113507530641	3.87661100939894	3.5908000625075	3.75815687187416	4.29938893389525	3.83790339227835	3.62893932700474	3.7070629140426	3.61584361933539	4.98002363928975	3.91548648248223	4.09263916602259	3.9892078785516	3.73642241318708	3.89750769692117
+"CPS1-IT1"	4.3447244583395	4.48993586574692	4.25628033616689	4.37628452733537	4.41379370248038	4.71193400345124	4.77425667824026	4.37775743546721	4.54179668069449	4.52174956439349	4.32667063865244	4.42469123621722	4.39351906010201	4.51389538166458	4.17463501206529	4.47104758077511	4.55974308300449	4.31599572619684	4.48897121102033	4.5340152200951	4.35601274283148
+"CPSF2"	6.91870718105043	6.48347268525791	5.54825346851166	6.36789647604443	6.27000580439099	5.33906589909993	6.2699360363762	6.65337077138247	6.54769993173827	6.73471670830579	6.86447695479182	6.21725871716585	6.34443919943227	6.04721131110587	6.22528175453793	7.10057757880066	6.42076595379169	6.96643810423883	6.42076595379169	6.42076595379169	6.36017278949439
+"CPSF3"	7.43908633879884	7.40746883695752	7.64252570171878	7.22381783570255	7.76437124438834	7.36338568671378	7.13145056597646	6.8383806229948	7.20137519030385	7.39581652309769	7.42334511786799	7.11131118677206	6.50555784138912	6.98286247438587	7.23656746832662	7.65633461398583	7.04051949835913	8.01193490478915	7.28104838965062	7.40367250960528	7.27969802626535
+"CPSF4"	8.47903504372564	8.51805552684629	8.81879797520372	8.51805552684629	8.66293527589433	8.64842585974267	8.49906475783672	8.37801824691941	8.56181366486872	8.52822591229685	8.51805552684629	8.42473907004456	8.43145114501076	8.49688287383458	8.47664148461721	8.49664574530568	8.39140509835184	8.4336521489652	8.57062441504138	8.5048303223722	8.61717180367071
+"CPSF6"	8.21974619206738	8.42101921794136	8.46945964813898	8.57450117576282	8.70873738317006	7.91988954046867	8.41681502426055	8.59655901759911	8.61989991487737	8.13613555794053	8.42101921794136	8.72215313251097	8.21244630912716	8.01001093456934	8.21689097354966	8.37459979572651	8.84102775878354	9.11472243751358	8.06063587599123	8.69500095021051	8.41579929383447
+"CPSF7"	9.55827521991313	9.57253370557283	9.55659815965094	9.37788545899605	9.42657710954716	9.6178410421396	9.44365919062733	9.20004260641698	9.16073866255313	9.27837408283715	9.63461827913739	9.3986049765095	9.46235502302434	9.6513432037287	9.11400608348749	9.52131664520435	9.38282492024906	9.6382088986593	9.24802810325713	9.32551942860374	9.22864186513554
+"CPT1A"	9.90135361892791	8.67610526836984	8.80007602745463	8.87205678487966	8.53449317265797	8.96628802214411	9.67846497643431	9.0544058205417	8.70787321128912	8.92994363969403	8.77640265664761	8.47869972200417	8.96827519648498	9.29995555720264	8.66516562138652	8.27858849818449	8.85038489925665	8.41287633487056	8.71484676383532	8.97056669036656	8.42938357075734
+"CPT1C"	8.32889491858951	8.54699229156681	8.84407500721573	8.58991482161932	8.41321468320462	8.61298896868488	8.24690717586215	8.23452956331558	8.61601653615244	8.62310757530869	8.04338628655228	8.40477919810823	8.62116464086299	8.57034220711736	8.63928162611187	8.32059254764326	8.42623472759231	8.57363744148863	8.51826791581937	8.66668305041966	8.59134371472127
+"CPT2"	6.30866282048908	5.65697055374199	5.44203018418699	4.96433082749945	4.95522382248541	4.66112482138446	5.47542763050103	5.20751174040594	4.82401531362926	4.93960647618686	5.9811987376885	5.20917104222585	4.59841431088137	5.11633293341573	4.49509424185273	5.71774084450735	4.76899205467096	5.61118142512433	5.0820259903191	5.19905396028302	4.90935164867951
+"CPTP"	8.22470768278933	7.92950638564655	8.23642138419538	8.11178859124344	7.88632381504903	8.5282198717752	8.00975724666329	7.98401231184325	8.08787733464824	7.94975808572258	7.77577472805438	7.83308056651764	8.25912530555441	8.24555940711407	8.11125854091432	7.62283518231871	7.91132632732424	7.91399197576806	7.78177634877446	8.02547952161394	8.0043967790558
+"CPVL"	7.55416200067492	5.69897228490375	4.93045994796409	5.87483575645358	5.43048251767273	5.80322792766711	6.24254064073133	6.15598403748179	6.16586759299795	6.55257443125155	6.09714749685822	5.62260729348567	6.57204803478187	6.29079601809376	5.90444555813558	6.08361367529484	6.06630590866418	5.91057531172417	6.37275809589477	6.40133818335923	6.57840809288331
+"CPVL-AS1"	5.93941985661292	5.9721574541798	5.9721574541798	6.18995367662008	5.95627368136776	5.8053733183117	5.98357096509694	5.9721574541798	6.09820049033369	5.9721574541798	5.67593138489352	5.92454403189213	6.28716379468608	6.13259261202766	5.85676428015606	5.9721574541798	6.14641198429386	5.60910255796101	6.03639650328149	6.0206710545112	5.91536334384264
+"CPVL-AS2"	4.20573023034764	3.59355680887174	3.73911961454101	4.04970147425368	3.72190385332279	3.53038075802087	3.96469712528864	3.7730132138966	4.13108785681159	3.66463733028723	4.03979539245002	3.80682910328485	3.9618775664722	4.24112471353857	4.06538124718599	3.90296701617373	3.87661100939894	3.78031910745124	3.88332669295859	3.74239209532265	3.83819670015262
+"CPXCR1"	2.84450628084304	2.8889332505596	2.99322542424548	2.75765246665817	2.91266267277927	2.8830518553765	2.7679657973875	3.061408987673	2.83360444771652	2.91251825304832	2.69894630499311	2.72377863908728	2.75361827393613	3.18257363103246	2.83286061754465	2.95193411825716	2.68703768279794	2.88742103470686	2.89011797546499	3.00756012294125	2.80711130567535
+"CPXM1"	4.57688657689423	4.70436631343855	4.96244208706893	4.57667980987604	4.49511987031583	5.09453472443794	5.11380302308713	4.52598052498875	4.51920691016654	4.79496223206165	4.45850779584272	4.68117614174543	4.63887753581957	5.02328441371127	4.66309177277099	4.27521310656548	4.4938012168493	4.50027435686551	4.89315051001682	5.15889648582073	4.61686482017809
+"CPXM2"	5.36954734808424	5.31560787295187	5.35276373579824	5.3000159095035	5.28422067396461	5.71953497725027	5.26201614324793	5.11770722210628	5.11068991861992	5.39189649092029	5.49831811986487	5.08869568192436	5.26159237620967	5.77486096341862	5.16710690639928	6.8802051150026	5.455976746467	4.95936511426378	5.65019811293891	6.25527840393978	5.53857525744749
+"CR1"	5.1458208574967	4.24304035707407	3.89322504257433	4.4834017678789	4.21971147402758	4.19164639172368	3.95447396647088	4.3383019409812	3.89750769692117	4.19931332569881	5.1047413512501	4.27167617955736	4.02714387774633	4.62438900742131	4.00673123607406	5.20939899558618	3.9387273860882	4.80122389717474	4.60984789407215	4.32252431502683	4.07175931071706
+"CR1L"	3.84256079589044	3.75907255019145	3.82416798221214	3.84256079589044	3.66242603777047	4.06525789003946	3.91442797262397	3.7127073847838	3.84256079589044	3.95112874031862	3.74235217017352	3.92472555987481	3.93276399325092	3.84646923964339	3.92794511694975	3.81474210124194	3.81196678288466	3.72146605086241	3.79312713152074	3.91139597312732	4.01957645541556
+"CR2"	3.88683002025496	3.91869934636067	3.86837345112902	4.04941311023048	3.978452299621	3.88453434100844	4.08672520859816	3.88453434100844	3.77440679867638	3.93255639589427	3.65840466461026	3.62407067845422	3.88790614204013	3.77261548058725	3.88959042529128	3.9234123799153	3.81016422550395	3.87459141071006	3.98544605296826	3.81106246391467	4.02776538267735
+"CRABP1"	5.9531716377591	6.8950064775236	6.58300599637476	5.78160632193198	6.35045961350834	6.04735059214959	5.7182757589273	5.9423607371163	6.30805595322721	10.0281422182107	6.29550320669116	6.66237402427022	6.23794897474378	6.87698353694008	6.15542633325319	5.8657880967911	6.10415836457059	6.45718866223775	8.20082482582282	10.2077119387773	6.4134864023617
+"CRABP2"	7.28984468543203	7.65612676363587	7.85330292219547	7.64065938775049	7.4257347619855	8.01525001602733	7.68709921980958	7.26777545899498	7.68528119724529	7.92213236855186	7.40944284171757	7.67784661553202	7.75614919031063	7.86850272203165	7.75807772275089	7.20197692039907	7.60328013786111	7.21977803774307	7.99821024280771	8.29679342961942	7.55642057718876
+"CRACD"	6.10358093492833	5.6471595843548	6.57636851116329	6.32872103822797	6.49027407560522	5.44057353149566	5.65645096302976	6.07801093887184	6.21129886588674	6.17622182776774	5.91821814057594	6.05878648987946	6.16955338517719	5.94291248218479	6.16265117117487	5.64029348333841	6.14505941677971	5.73925476909088	5.84990494242037	6.19410051762005	6.03590713458287
+"CRACDL"	8.68048350746473	9.46319576171816	9.87860107794486	9.77539050475644	9.91033315607986	9.31625728493802	8.52648566108035	9.47310721618662	10.3159249494829	9.94453836792638	8.51158778049895	9.91660289544642	9.79433793101321	9.18301034913814	9.65777305481551	8.46647708121719	10.1410268433127	9.34919637264554	9.77456184204084	10.2736731637181	9.97183715553316
+"CRACR2A"	6.03133452528216	5.7054647206506	5.55553147200852	5.85159234319767	5.59662686049153	5.6643670948796	5.81063793244587	5.56073921958622	5.49287286372748	5.66088001242723	5.43815769399342	5.50816853495466	5.6643670948796	5.73922192922943	5.93189530972081	5.40352891961032	5.64677328540635	5.4283211458124	5.53294215327752	6.23458193499871	5.82703173187278
+"CRACR2B"	6.12059484398192	6.13339047471237	6.1320195890372	6.07905747233698	5.7596358854556	6.1281011315442	6.0756737948069	5.99351197629196	6.10495387301719	6.23182741833192	6.06720820092181	6.15227170776487	6.18078505002	6.25013682362279	6.11768995139871	5.99859499396688	5.9960541566418	6.07263729644442	6.01950899458873	5.9655502110831	6.24693511865342
+"CRADD"	7.45996890317782	7.4177494739755	7.40825922545784	7.09014239664167	7.615094839097	7.3593935427887	7.53526113796869	7.58329306247244	7.51344577257505	7.55134332205244	7.45972703531881	7.49245151468569	7.03341230197494	7.2748070497341	7.26907253982794	7.72374550212635	7.42699843945567	7.67541714724809	7.2326667533486	7.59381053686697	7.34502269731534
+"CRADD-AS1"	4.48352320838842	4.60583984978592	4.48005549712243	4.40964399717323	4.54751080496412	5.13111463666363	4.62102720991935	4.48005549712243	4.52547012635276	4.44513163485823	3.90777356654372	4.5938177552512	4.51231311000648	4.82770160317805	4.74085008868407	4.54751080496412	4.35088095421925	4.45145798356156	4.34602694387319	4.44417248973508	4.40949256244648
+"CRAMP1"	7.60999251432308	7.63986549758339	7.9428730993019	7.5029724127852	7.48384052325832	7.63612152654801	7.27485110041379	7.61265034176549	7.66147838661821	7.56366941932497	7.70306469493956	7.43189293004036	7.63115083381019	7.69362075237788	7.58026948756286	7.56209563508434	7.72076625384021	7.81856718180534	7.36304106768531	7.42908876320515	7.70278195927475
+"CRAT"	8.46122303563214	8.22941628131425	8.33613712558632	8.19150375582274	8.24360593117242	8.54987020323539	8.8648414145804	8.48742905743229	8.41264614426904	8.42908357122536	8.29758633868983	8.34685739039812	8.36813687998513	8.46857874043332	8.27209996210823	8.13884807289179	8.38251579088455	8.07024290596877	8.0469301468725	8.41203366461226	8.40147710654943
+"CRB1"	7.86080948100514	7.75852277431492	7.70824291938802	7.52228845539027	7.36101441104266	6.27561509784812	7.99137650563064	7.94514098977694	7.35143701358235	6.93660834964283	8.46756683068419	6.96467693413619	6.49118793684738	7.30470591751249	7.23755421153506	7.51201917110729	7.1046341232164	7.78343815341353	7.41091320033038	7.07637200547968	6.48977081327346
+"CRB2"	7.98736646773797	7.51305941004077	6.33723777575642	6.79699915008068	6.22135435738114	6.86678491818127	7.93088427016526	6.44696376091581	6.76794244072405	6.91438709392853	7.20416743899078	6.41893201888796	6.56040615264689	7.00263267757199	6.7376574086365	7.00782245545104	6.69611725758343	7.40823002692195	6.70184503480271	6.35701005213278	6.61430894206174
+"CRB3"	6.86278696602064	6.98508957112923	7.03668056545795	7.16329191109421	7.16329191109421	7.35390112177495	7.56429292260118	7.04522355978315	7.20310776353639	7.32546826908044	7.02647213675754	7.2264218469006	7.34897389159052	7.34892173113094	7.06526566780586	6.80973893181709	7.37150924515169	7.0068613443749	7.53623620421766	6.9250329586253	7.2782968073995
+"CRBN"	9.58212569265668	9.86045516081826	9.80441454315607	9.90223491581877	10.1711388680635	9.44414048853797	9.32871895404648	9.851912539628	9.94333121774103	10.0395428741364	9.88411479763582	9.9845967039761	9.7952801581332	9.23058797935987	9.87936543022065	10.119834429433	10.05162090562	10.1275414588593	10.0982730703852	9.73989640892002	10.0265478127733
+"CRCP"	6.81611852212657	7.04956774847936	7.08499989662734	7.41314485207786	7.04278446646482	6.7600491498622	7.29687423294687	7.02981487324759	7.27700148417536	6.97825082734779	7.17128749144028	6.99713694568787	7.57118285083572	7.25804813629911	7.6982857096326	6.84921650096219	7.12787321988581	6.93811125598975	7.06633809185226	6.84407715444902	7.03816754762761
+"CRCT1"	4.49676393441241	4.20716516489493	4.34613011616071	4.34613011616071	4.31165465722134	4.80928451537008	4.61284354163675	4.31233029172212	4.24982623585706	4.31552620031928	4.24111166150232	4.32299430760717	4.75148994090434	4.45663065495553	4.40009419260259	4.39549467895618	4.38195756590791	4.2258987473759	4.19398122511127	4.20583065090106	4.34613011616071
+"CREB1"	7.78264833404717	7.88716343589217	8.0571042850157	7.96242445471884	7.76026301305185	7.35592929390202	7.560012389642	7.10892937632295	7.86663464652473	7.39614919180001	8.22092755939188	7.47480273064461	7.72632343726398	7.71727621144754	7.92524116248937	8.22455538641073	7.42413349140611	7.95149482795074	7.68280351366739	7.54864793693986	7.54793629880071
+"CREB3"	9.21714110344009	8.69987257033897	8.79229886307866	8.73554451343828	8.94350953296679	9.17721859370595	9.00807274049335	8.83153158029443	8.83153158029443	8.88127026591025	8.62317546767858	8.66118854977639	8.77394948607628	8.92225900543196	8.85587448858393	8.75552394197899	8.46030903250153	8.85868598976862	8.65743941933236	9.08169736095452	8.83153158029443
+"CREB3L1"	6.46519955297398	6.87007267672548	7.11037486984885	6.7334823208799	7.00004489624703	7.39844368433959	6.97332897152964	6.77363741047475	6.63875373700988	6.39011131451675	6.15755454248188	6.46964488619953	7.01741092093576	7.08081898587662	6.4159466304982	6.62144865239206	6.5984079109554	6.46700785181376	6.52440452384347	6.72769401268854	6.66704815457654
+"CREB3L2"	8.54434600301173	7.84962763263474	7.61275596933423	7.59709092341472	7.58116649627954	8.5657990872219	7.70480104998182	7.65650301670836	7.07025097567065	7.30600891858235	8.33429326780534	7.38987219307813	7.52709155147662	8.04036626226477	7.62914127535772	8.75232690146166	7.37317710400732	8.42552602689967	7.71398738185626	8.17963788451803	7.6068092845267
+"CREB3L3"	3.87248600271423	3.8577086088919	3.89780029894155	4.20479628536753	3.84792670290249	4.21283750533099	4.05932768547164	3.94028809439767	3.88289050828371	3.9732756193929	3.77224686201742	3.88699803796008	3.97373393673135	4.09256691782908	3.88559161060573	3.72965791933464	4.01917541410611	3.9836122062371	3.99279653428191	3.94028809439767	4.14909118301218
+"CREB3L4"	6.0088375330385	5.87392215693814	5.78703892864691	5.66317563437335	5.84342815735038	5.83737605865885	5.73971809950586	5.79791501572979	5.35290343264938	5.58157992164779	6.27491531476537	5.92793239025083	5.91282385265355	5.97926077689677	5.32111096954347	6.10242067755939	5.67802164673067	5.87602053687979	5.69774248386985	5.68126882358065	5.63843565018654
+"CREB5"	8.0843376070404	7.90061842785585	7.85801902957153	7.5191685680849	7.67442649776041	8.08821437535564	7.34967412859928	7.68084973202214	6.87734490247424	6.51901494120608	8.83396356738447	7.37450405705657	7.1185812660857	7.27654531138952	7.16176940408844	9.36686403738311	7.46263179288477	9.37077742733993	7.1856626905987	6.46403997199446	7.15090311187918
+"CREBBP"	5.55690570711149	5.60798705173579	6.04566898624723	5.59804320602313	6.04462879909585	6.3783669561692	6.31854593222472	5.54381918364202	5.51562212046683	5.50225154358001	5.44567315723638	5.78580647284032	5.69050004291591	5.88242508268455	5.26863099396216	5.58918559909412	5.83251650454543	6.19840989508872	5.69050004291591	5.71902543149278	5.67242953892582
+"CREBL2"	9.07835777485519	8.8687659345369	8.37020465375349	8.60191793332824	8.96621406743674	8.00364115439026	9.17302597143314	9.1501888033947	9.23081359596668	9.2702009110636	8.56799481603591	8.82897953699811	8.64692739721533	8.77281105558476	8.86086631872313	8.53260824430976	8.99030299470667	8.7548953034712	9.26394830446733	8.99208959523504	8.9476922616349
+"CREBRF"	8.57907013863009	8.57657792491518	8.8416658608731	9.0808794672712	8.69014126097396	9.0565649403898	8.63738346073367	8.67271817125291	9.25796341891821	8.84605356942502	8.82492971570641	8.95048753115996	8.4949615611207	8.99693380330143	9.56016252559041	8.57246876368403	8.78265398124569	8.86753913410114	9.30991678402263	8.65056087340894	8.34671241939926
+"CREBZF"	6.50801883897672	6.6344640062302	5.92936024200274	6.08033060251334	6.69410718678891	5.46770200381046	5.64509136169787	7.03976547936258	5.85103434435649	6.66426610078913	7.13080225079436	6.87160551940889	5.89568309854517	5.40458759770296	5.87392215693814	7.0839875246391	6.68801033992157	7.26612233411227	6.13365924431209	5.77370011489442	6.57368137063043
+"CREG1"	9.77380906517618	9.72640372032125	9.36622218601452	9.55783648536243	9.52794727948113	8.91953554243193	9.09059339677903	9.7550012965773	9.36008107251614	9.44548317736775	9.83688207649929	9.36349623446147	9.34798591709484	9.27219694918555	9.52125528871174	10.0435285363425	9.55588867416152	9.95325415101071	9.72878305960206	9.50298599810494	9.68400902477049
+"CREG2"	6.55899548315262	8.35016570532487	9.01798122401577	7.93379190677532	9.2385982700325	7.03608406576103	6.24851700979796	8.00737274417234	9.49096713935626	8.75255571644428	8.00939634900932	9.31639526816109	7.67952314328925	7.04734728391835	8.68634748423343	8.02138100073879	8.82189483736914	8.13727589504188	8.34705546230483	9.0927496481576	9.54787418010519
+"CRELD2"	9.081860149961	9.17958878164564	9.25399418933454	8.83946030794669	8.84491172863711	8.980728476581	8.71590852500665	9.06217694325544	8.90120456895122	8.66920892190825	9.27384678734249	8.97344633000545	8.8016177892295	8.65013418913592	8.81067671338067	9.31474932065771	8.6023370848433	9.04524851450188	8.980728476581	9.19823228592885	9.13736993699866
+"CREM"	5.06890135586731	5.22351852670151	4.36094138765779	4.66013196932496	4.86787663311833	5.21852300896543	4.09875482922354	5.00228756844749	4.69672551067913	4.76968755238661	4.73683926284743	5.14273165618311	4.62247666765948	4.4984011148049	4.93986463915552	4.46799936951618	5.84165596291835	4.77121161447396	5.21758566388908	4.61549957368399	4.39951006544809
+"CRH"	4.85631815517241	6.12618203053683	8.30347887692732	6.08361367529484	6.91095013867083	5.40975902714679	5.13774813693807	5.26629014004575	5.22859337418631	5.43412283635811	5.08403205555499	5.86309025451945	6.05270372278029	5.69198299904267	5.5123578055505	6.33058771571287	5.60884534913164	5.23772176628532	5.40336662356345	8.77437279409797	6.27328376716649
+"CRHBP"	5.28645857963689	5.9827957464328	6.35430717119677	5.96768259032825	6.5202575946778	5.45261156766052	4.83493489193071	5.30369655116216	4.98774679154646	6.6528312071096	6.05893235241356	5.9827957464328	5.43160784059022	5.43300576023898	4.94108735851829	7.55504128905169	5.8698190556186	6.91138588779312	5.97459465800223	7.25222137548643	6.68525168888194
+"CRHR2"	4.9914901857848	4.95363473791197	4.96024396246838	5.23616377502907	5.34621655219105	5.19798191722044	5.41783124646877	5.08893393799863	5.00687460036292	5.37020352197889	4.89392127631402	5.17969918027356	5.55910860238725	5.43300576023898	5.20281927294422	5.09625803123307	5.33691139859507	4.8819477390429	4.88247190786299	5.06509019520556	5.53147984400162
+"CRIM1"	8.35899475069317	8.09745790707265	8.46884389473776	8.32065281068436	8.45574926862965	8.50463307052093	7.81476828627292	8.46144185223391	8.2270239778852	8.34838247320704	7.99145798589929	8.19467825430526	8.43212604658001	8.06520664717548	8.25017662927459	7.4583103012563	8.37460676312914	8.31231389332635	8.32345117061002	8.38163279200156	8.82096258049348
+"CRIM1-DT"	6.48770077392598	6.83519172213326	7.37321412761446	6.74487850421982	7.41073216633314	6.268358786226	6.33558452334962	6.86337711503178	7.30398430935818	7.55886223973514	6.29980830302715	7.2539454493845	6.84964367288427	6.3157521632215	6.81397659517154	6.42951368904658	6.89991983588895	6.868498251727	6.72172461452789	7.48488177890608	6.99451924163089
+"CRIP2"	9.82642397421873	8.76204383360842	9.09902681868284	8.91813780206311	9.01084304450424	9.42855982439673	8.8501315261313	8.9412899227444	9.06548946761883	9.08301097132591	8.91095807077062	9.13729335642729	8.70672268801449	8.7136850237036	8.67821227525202	8.45200477520541	8.85040233822004	8.79146172234392	8.78843520611951	9.57663996042981	8.96512827348717
+"CRIP3"	5.61176476249035	5.87392215693814	6.30439360767441	5.96150383949936	5.99282234584234	6.17682272829174	5.73971809950586	5.73971809950586	5.81527029556033	5.81625679468682	6.06658939089698	5.96485637933573	5.8692703373999	6.0931012714146	5.79159336640335	5.81487506912782	5.8636768167228	5.80973411051313	5.87392215693814	5.68759609200282	5.77592357080517
+"CRIPT"	7.69910577197987	7.53484062084087	7.18927185071942	7.20383567183933	7.40313698203737	6.92002182554	7.5794285635502	7.37990656473544	7.27629733666831	6.54789495472411	7.47061854360229	6.63119266480511	7.2521711567829	7.2521711567829	7.04461766916407	7.63268050175578	7.05330123282237	7.64046133096628	7.8270572685271	6.79286275219498	6.38171223367454
+"CRISP1"	4.18833810645099	4.33755897943847	4.08994024093275	4.59620835329724	4.253592738339	4.34733015878243	4.37417172408254	4.30717579798228	4.5317963245321	4.12475198012921	4.18338807846364	4.19880673638264	4.34291854608792	4.71419609531822	4.50963831892308	4.4251932304468	4.29417321832406	3.90116968896743	4.27713575349255	4.32623338758374	4.35601274283148
+"CRISP2"	3.20901345192794	3.14923964278192	3.12357972375686	3.54550598762479	3.29057180133182	3.32314971594304	3.22394337624644	3.19467100225924	3.36182714137986	3.19876364270458	2.93866058305414	3.22117570328396	3.28881978606701	3.28060378659884	3.28696022557962	2.97427250281873	3.25202622679836	3.03720363340543	3.12525321907034	3.19637128688174	3.15419706361828
+"CRISP3"	3.08247293744749	3.00414209044498	2.92926017025266	3.05042196182825	3.05192973240798	3.3607365625876	3.05108728655482	2.83516210086788	3.22289761020323	3.12159112108235	2.88647306788887	3.04385858196007	3.0907398846584	3.19613740539147	3.07498770784084	3.04599162384606	3.17175981543131	3.03604869354768	3.04599162384606	3.04599162384606	2.99245884840149
+"CRISPLD1"	5.78937031782566	5.87392215693814	5.58282680714687	5.22209266910451	5.7632692330285	5.16395862277162	4.4819189320919	6.66814620099778	4.59098716924732	5.24662906387179	7.62769623338543	6.20524857884668	4.5944382752	4.69113864000384	4.28811339558514	7.18469989736373	5.54368684415495	6.53036259315506	5.52779740081445	5.79321616849251	5.96586730883204
+"CRISPLD2"	7.76601721979927	7.20946123800902	7.2044612931563	7.32883665417741	7.18993010735025	9.07623032057527	7.52795673246711	8.51620794897184	7.07110222153818	7.13878466312268	5.97131030258956	7.67206909467396	7.47449180920544	7.69329811547561	6.94548312926258	6.74411523989293	8.74641736582269	7.28326693383375	7.4235175230006	7.40672955249418	7.22780732555539
+"CRK"	9.26054166697083	8.8225507943249	8.12070158967149	8.77009763530239	8.71766674119615	7.89553670515773	9.09765420204535	9.07502629008298	8.72611450700033	9.13246289834495	8.83235086675006	8.91309443313437	8.65878968116377	8.52013616300738	8.74738433345509	9.12412881624591	8.61552519395999	8.8882091350348	8.83235086675006	9.06570303644781	8.85464784158075
+"CRKL"	6.98827606205462	7.03349035956331	5.93101636908108	6.76302665717132	6.22726783393583	5.34925899516779	7.14993650692498	7.02684459115609	6.96750264809739	7.42869413180621	7.16013819024755	6.96519816950732	6.95108955535971	6.22254593531611	6.48073620847972	7.15727712188487	7.32032229370978	6.63427154165079	6.73129678463625	7.32873758819028	7.53084995961301
+"CRLF1"	10.2920124348724	8.75312884885095	9.45105274045264	8.21982805068095	8.94862995106645	6.9897702452494	8.70656135602458	10.1740094845423	8.77150966182454	8.09001992198277	8.94680982958995	8.40516749271661	8.00458925583692	8.40317398861123	7.99294705047658	8.05559641657768	8.28493120783518	7.49391439307647	7.67713239825875	8.71374178314447	8.45206315758489
+"CRLF3"	8.87750557336539	8.82545953800647	8.33213412776792	8.74512495589258	8.51281703128544	8.11910347358191	8.12171788548942	8.91916532059443	8.86669763714662	8.62161560475429	8.70438162504336	8.61568716508319	8.77811486852108	8.59548321687667	8.80939743011395	8.32347404684089	8.55263048864875	8.37855034122908	8.72640618258594	8.56444715646268	8.58985204097506
+"CRMA"	6.07044292133389	6.39511892724351	6.03430981277209	6.37531366690875	6.25690980832639	6.09647375362771	5.97748025607277	6.03437703363158	6.42644764384729	6.32974927073708	6.10770753087399	6.34472874705197	6.50111238551372	6.36184786960832	6.28552169706969	6.08361367529484	6.37380173559492	5.97290388121107	6.18675139798829	6.46542454310884	6.5804470127664
+"CRMP1"	9.61530604557862	9.87096805659467	10.4311192147872	9.84725149634007	10.4114381758006	9.83132863836146	9.82611192816166	9.89250671580938	9.92327440985999	10.016800725286	9.57176710163727	10.1597157331493	9.68764532001208	9.68236569565461	9.65280938626936	9.3572663804834	9.90281498753666	9.33014148120831	9.673102966443	10.5155024898605	10.0838950770694
+"CRNDE"	3.85592414524831	3.3404377108901	3.53134151694016	3.34489690854867	3.15328608520244	3.86621277448642	3.2371083959586	3.35006853575907	3.18197843464976	3.45037546302849	4.42683583199772	3.16233786025681	3.40561711958643	3.2395315599045	3.5940220400786	4.7228796214744	3.26287448879285	4.03979539245002	3.48262051892666	3.42276968081587	3.25008141311199
+"CRNKL1"	8.43750488022707	7.99997587324653	8.17495621542088	7.9652303065803	8.1077552963146	7.31983486011401	7.96134439488255	7.94884383436203	7.98688562744729	7.69875694712651	8.04294913514855	7.70683474885079	7.2974244192267	7.53612094239393	7.8760839466795	8.51114425101337	7.62697043448654	8.2210791829624	8.06824613385836	8.33171838457368	7.81394314339619
+"CRNN"	5.01077148583705	5.11475101863975	5.11130938925742	5.11195304972629	5.20185765725508	5.53157840038323	5.45238426831078	5.02392994004159	5.42549702079284	5.27781238882328	4.82079196489626	5.35933678439614	5.36809543656707	5.4608551591875	5.23071495040564	5.33572232451105	5.20588012706915	5.23045797676844	5.21725387332425	5.12496499529633	5.25203644230725
+"CROCC"	7.869281871701	7.25543909197218	7.61041496830611	7.41565163722208	7.0780182646417	8.05599842584111	7.55655430764017	7.06480371518905	7.34973521367472	7.14228894701693	7.34973521367472	7.11787692118806	7.65984120545506	7.59218749350514	7.32164679923489	7.10341012229567	7.37210217010574	7.20038980316846	7.34973521367472	7.15709808982709	7.26758287797483
+"CROT"	3.56128834303199	3.94314397935035	3.99911175979213	3.52945658975996	4.53374179420603	3.48256297352139	3.9361505158025	3.88227652353141	3.95223205706465	4.2493817728559	3.82712648654568	3.84054160309622	3.74198718467726	3.51042852919196	3.64413269993832	4.06147568822898	3.87618422142538	4.19424550342869	3.92407055860268	3.99984734736182	4.02375218771654
+"CRP"	5.02272262252587	4.85878109677099	4.71554671465763	4.87183460024773	4.782400391756	4.84576271665835	4.98428094625999	4.96530284883724	5.11003115364863	4.73582033275795	4.51938979109407	5.17023317195052	5.16867325228425	4.72736563221529	4.65701817104746	4.86792967665873	4.95554250013435	4.74042857394512	5.04434926675718	4.61035683017808	4.94528913528729
+"CRPPA-AS1"	3.54090603679105	3.59340747449883	3.63956125104533	3.68677898483993	3.5319415984547	3.6560471978015	3.98018875106795	3.74492135608045	4.17890066564416	3.68510548952645	3.5293858714373	3.69852112898823	3.79789751493351	3.759915991238	3.588170982319	3.56295768950982	3.75973306344009	4.03525930794415	3.89393499119898	3.68677898483993	3.62828701860642
+"CRTAC1"	7.80690866186858	8.64242824368098	8.71646253920425	8.28771419887818	9.03968484842478	8.63413043863251	7.74953357748178	8.15781746870023	8.40574639443137	9.27200528715325	8.50613458292127	9.07492236953251	8.82273452610719	8.34137495249873	8.79087262138713	8.34494649573179	9.06531385367748	8.51596385998814	8.14021372488454	9.15513144633804	9.23584637431834
+"CRTAM"	3.10348318246892	3.33157613153765	3.3404377108901	3.18553452421057	3.32393208094541	3.21344756167581	2.96044971977131	3.1903515329264	3.32833689569552	3.29274964710519	3.16062885041748	3.33845617202225	3.19036949820857	3.01333729099131	3.23475404951605	3.36640238302498	3.20985664860727	3.41603442714824	3.39466415280945	3.29436050904904	3.38613004288932
+"CRTAP"	7.31661445724841	7.05861664341603	5.24724580561724	6.5900548257363	5.62992089862198	4.30877421361758	7.61860520048755	7.10426784888603	6.76281468145712	7.06180445025937	7.86786056983219	6.85318084618852	7.23283264008387	7.08948050344889	6.9086757111529	6.85683405788746	7.15068611249346	7.04424933785703	7.28545878254387	7.13294447818757	6.87048585692816
+"CRTC1"	8.59440590149472	9.02833117055607	9.03109468506261	8.85562065738794	8.94564839868776	9.19393878144294	9.5755402786077	8.79551842343739	9.06841086587105	8.84081664160066	8.54002220678343	8.90307884544426	8.94431084024321	8.98420275979359	8.45548504151814	8.26945516360103	8.98432164963472	8.380229836965	8.83396824451089	8.95888000173535	8.72216567203506
+"CRTC2"	8.27894752668834	8.16469828560872	7.99332836626856	8.06916648131741	7.86215865095267	8.28659978005602	8.25134228661924	8.14426137980335	7.99240363019184	7.95637756499078	8.36921096131607	8.17440524433329	8.01508744901524	8.14512833915255	7.97964847894827	8.37195881828525	7.97294654853457	8.28938843706445	8.08395562895176	7.99577095754605	7.95832100014953
+"CRTC3"	10.0381690332299	9.73028775711977	9.71278715321892	9.56037703573597	9.55623938106794	10.0271533729765	9.68750291988429	9.69747469333224	9.22488585258291	9.23099984213163	10.174517255974	9.20176521690036	9.19352937696635	9.83424773139029	9.30419120909735	10.6114821164353	9.40586358688582	10.5388183481403	9.41688624579007	9.33235045008029	9.30301425373218
+"CRX"	5.53382097900917	5.69695640335144	5.50261742430251	5.70372775418692	5.32069898832023	5.60984795116478	6.22394998834373	5.40673789049228	5.83047141228342	5.6241020515802	5.61256914479763	5.75656286288442	5.78818462210814	5.79860945502053	5.52024953731425	5.24787348051561	5.62740622968619	5.39517498165151	5.79209504218023	5.48446359766631	5.60496088164901
+"CRY1"	7.72421479859712	7.3711204589888	7.15526689963521	7.5857238812094	7.33657863265103	7.60348963052061	7.36107377480686	7.81107430656325	7.62207508423667	7.18739058773705	7.75840310993042	7.15097064214729	7.63482014264585	7.60888533915609	7.68238857090231	7.53777248143546	7.31282630506161	8.05733693558013	7.33505596859599	7.00244731426654	7.13622842181891
+"CRY2"	8.20501934050347	8.59674500690071	8.99193460387293	8.31779085191161	8.80857139168761	8.48403230814029	8.55713589893324	9.12413712555491	8.46106770398577	8.33049927378531	8.45800871769232	8.84025665645428	8.27921370873415	8.31688408085164	8.11451785422803	8.16775511460585	8.56208401431681	8.35936889962421	8.24045329226402	8.72502185681152	8.30749974837128
+"CRYAB"	12.7381042689842	12.3154655428397	11.5720922391204	12.7386386845226	11.6522012949265	12.757964757657	12.8503645620524	12.5623647888611	11.9597454654104	11.7315302008682	13.0557973670812	11.8742643682536	12.5651828883832	12.2890149664973	12.4590641777304	13.4348891642388	12.0953519409218	13.1329865736896	12.7416217159919	11.5055417498178	11.6616581312635
+"CRYBA1"	3.19974090533624	3.23487177562111	3.10716274635938	3.52693979903217	3.3331162550625	3.32632434559891	3.31295860555841	3.23700210672556	3.31295860555841	3.27436730194439	3.30793271173449	3.30217913519363	3.39849792645068	3.32795324071596	3.45071452444298	3.29906809521069	3.31295860555841	3.15248908658678	3.16751239642805	3.22036462103019	3.38613004288932
+"CRYBA2"	4.69731262023706	4.59379618198412	4.81642488935483	4.74036557423555	4.71952751564279	4.60987667750952	4.95138298943519	4.58462506287812	4.69877756431742	5.23633437112075	4.44757665648445	4.9442283018168	4.98705820624066	4.7485063744745	4.66309177277099	4.5794454967882	4.65323702238082	4.47068771337193	4.74293761986129	5.12412882071819	4.8776560750687
+"CRYBA4"	4.28987237049744	4.44645465328721	4.29536606453342	4.32456260512193	4.3484198050889	4.68451195135741	4.70505808827761	4.43721448214625	4.59452705871851	4.69926363679523	4.67420451858617	4.25914608942918	4.41231376079355	4.469126902076	4.35012893605218	4.45503733336714	4.45503733336714	4.38868458282386	4.6154385420221	4.62419735754682	4.5024329562992
+"CRYBB1"	6.24067393937897	6.28404679840467	6.2238830820933	6.39427110563337	6.38615641395206	6.37860028980018	6.55575009478847	5.9315774347379	6.25256561523732	6.55854586845752	6.01932578068607	6.16848589339127	6.4142127336772	6.26601642296342	6.2296996542515	6.187548898898	6.35450734564331	6.20433499133929	6.07711302964095	6.51892231228117	6.41635336125897
+"CRYBB2"	5.84086361641008	6.14996629466962	6.16908180255345	6.1751133418807	5.9812909896689	6.27020498298411	6.54540542083087	6.13736507655579	6.36719505987793	6.24868560280239	6.14492814100782	6.41833064803739	6.22480193219426	6.22408327246879	6.42494850030416	6.13922436859426	6.39976519623215	6.10246316634741	6.26265337832784	5.95125846945539	6.18241970740759
+"CRYBB3"	6.58791393499304	6.34623709239738	6.58981439668981	6.62218946127552	6.44479609272973	7.13987012841309	6.90497974887134	6.53865266911607	6.66917647163667	6.67251186063467	6.32157639144108	6.65243624679183	6.71295259064668	7.10020080330724	6.5219539190898	6.45056754487256	6.55332303980863	6.17627212614464	6.73329306245772	6.6945747047099	6.52273914310093
+"CRYBG1"	6.11286209949681	5.32817302177271	5.2456860696478	4.83502088177512	5.35542514956933	5.69990102968231	4.92135569682972	5.59557551935096	5.27692533189607	5.3264479875749	4.9774356893641	5.10050496474672	4.88954348370324	5.62340439421306	4.94081435962339	4.8979520479049	5.31839338013299	4.85709078883604	5.23543981029982	5.98484680697049	5.68880482978822
+"CRYBG2"	4.4752576076541	4.30326969908406	4.51964698050758	4.36883781161319	4.25656888822517	4.56781179157916	4.94030494767683	4.4752576076541	4.23696020305557	4.52593947993114	4.33706706819139	4.4752576076541	4.69517678609152	4.45489283328221	4.37416715760565	4.52599918591499	4.51252158028226	4.54137198263651	4.69771064843354	4.15216426419313	4.25128706344187
+"CRYBG3"	8.83832278885875	8.4301513634708	8.15314545352377	8.3950602455593	7.93098667687384	8.74958949549917	8.29305408873854	8.00622665306776	8.42980162178174	7.92428328959733	8.72863671930072	7.70528729120932	8.38802771728118	8.49034356137554	8.41123982905049	9.07166290878309	8.22202460590523	9.07356243359241	8.14483441252014	7.9403145605526	8.23138443667192
+"CRYGA"	4.33375511590194	4.24583572196823	4.74437213501314	4.59065339835834	4.80218414859157	4.60711332124926	4.50267761470773	4.61817643744596	4.69833148590928	4.60941418137332	4.31068228721973	4.83515564437774	4.44513905779915	4.58787733001879	4.7797108574313	4.33217913575037	4.25665267919924	4.26695206808347	4.52316548215651	4.78195334039872	4.41337529200099
+"CRYGB"	4.255727397313	4.2310784974832	4.34763105065266	4.40050055324771	4.33828018869692	4.82870189804345	4.87478223450485	4.30141010647687	4.5963399800349	4.11239040590331	4.1301724728902	4.33828018869692	4.50969998556853	4.33654705640784	4.3865516731811	4.23662247894214	4.225976631488	4.07961447500542	4.55770340466844	4.44227198897979	4.12074112325356
+"CRYGN"	5.36245217135415	5.30441169799891	5.34854495157746	5.28249582010715	5.3194916660679	5.27428642912524	5.57052020335566	5.3267876704611	5.53574560578107	5.27113456727035	5.21651301369624	5.47411789863034	5.52564554821884	5.38668550579886	5.55791916976389	5.25420475476675	5.31919870347947	5.38066077105143	5.52661353030667	5.53147984400162	5.36245217135415
+"CRYGS"	6.36514120748699	6.39377606674699	6.82390002428263	6.25937550204016	6.1849329548619	6.0487541274445	6.59561347859567	6.12601588808834	6.43921795670251	5.98913105356492	6.25906535365585	5.81859947773098	6.20325597381825	6.66491332658857	6.54833612755358	6.31503878730654	5.74983150408639	6.84608641245367	6.27687243669197	6.18720390381179	6.07906707414097
+"CRYL1"	9.73495752290552	9.27473282183385	9.47584310968023	8.72910870332471	9.18806783411253	9.01005529556853	8.9219153612692	9.27918662607779	8.8616688679219	9.09487723915455	9.68365450810667	8.94397311355776	8.4248355612497	8.90003460683635	8.3744805250879	9.69548752441496	8.7797205633597	9.76273204835876	8.88280728550294	8.89384841772313	8.70249756734843
+"CRYM"	8.05176660528691	10.0266636309481	10.7969909083511	9.65963061240667	10.6142301757681	9.06554354834395	8.58996461699346	9.33814523367408	9.81462959252683	10.4262604143794	9.02554288872426	10.2695199222587	9.64652669272477	8.59835870480576	9.46017631915317	9.34444947465903	9.98140341829641	9.83578102632469	9.76777041453643	10.644771328106	10.1849498062046
+"CRYZ"	7.88831924104633	7.47719882776974	7.62637132173672	7.9965416675541	7.79065695337653	6.8399907421601	6.77015475387019	7.43079292356428	7.13478792861238	6.65266358901233	7.43154061842095	8.10308833062663	7.74038927921253	6.79148999071988	8.18608556686651	7.85213502659966	7.02401870543472	7.67706124792213	8.07242836601367	6.68600621695699	7.61081164371441
+"CRYZL1"	8.26122261516984	7.87019308436536	7.71306932093936	8.19741581556283	7.61240758897769	7.96911332589302	8.59141164701447	8.10730034604838	8.03676949010637	7.71945199443	8.30815013557652	7.8710650793522	7.95892189679303	8.42082066743338	8.09198526357946	8.47807204368823	8.29596096278631	8.25407277666676	8.12988089379331	7.56917873683245	7.61390163023111
+"CRYZL2P"	5.82638135189183	5.55638747490504	5.93804596622817	5.30573552682008	5.61365293098007	5.98690369731751	5.94616419759119	5.53590602355241	5.26961909797588	5.54430538545525	5.90736987989126	5.06777346194786	5.38339245314035	5.61490777348544	5.21154295046739	5.81666231821086	5.19838425810166	5.6028381860438	5.02563368136662	5.39814186917455	5.3678866651053
+"CSAD"	7.65374827647517	8.27529060630179	7.93309952463188	7.99248071004617	7.63553793824528	7.38493175001291	7.41743400310187	7.8311336497406	7.82054929807641	7.4726165337102	8.29710857825479	7.78642125466546	7.88355345441636	7.71233456935471	7.77921232417066	8.62527450782798	7.99346762069433	8.02872922295006	7.74399862225267	7.50008042457436	7.75080803536762
+"CSAG3"	5.3027836104798	5.01043398283024	5.3703550561334	5.22209266910451	5.40919290639399	5.22385950263105	5.80038486888194	5.22209266910451	5.05329374028978	5.16527488052197	5.06008937944026	5.33245851283448	5.53147984400162	5.66899773526967	5.22209266910451	4.91266073531319	5.26766210204047	5.17237374893213	5.38290137699384	5.08636258759254	5.22209266910451
+"CSDC2"	7.4852248358288	7.86366863246494	7.69495078516339	8.02978110871569	8.01678162976027	8.13713626485941	8.56843181651097	7.949427532959	7.82221252068963	7.82311265285562	7.83410608291544	7.87743122445629	8.18545375668299	7.72350811729472	7.68929180319079	7.36043126546035	7.9054954432713	7.38896778755437	7.22421017453468	8.13265949906397	8.08514552880594
+"CSDE1"	10.2231717340097	10.0423998668538	9.70660291420292	9.97510609576985	9.99884260435515	9.79654247961417	9.78902713938593	10.2431186952669	10.1724469579681	10.3706437582931	10.3930649751121	10.3965212278982	9.85456254028986	9.78721307932915	10.1057294818701	10.2240686716469	10.0014168032523	10.1271319650804	10.187919261747	10.3645662521167	10.2982591936628
+"CSE1L"	8.35042984249934	8.57772684222225	8.80374477036703	8.09109148028233	8.75490792819321	8.58691448204185	7.56495894113945	8.36714033944179	8.12088593843763	8.66038588971269	8.54846427504039	8.52022175635698	8.17267597729895	7.94113315031301	8.43184852783185	9.1312786238468	8.41306068150582	9.25145850235121	8.61153714847213	8.84277020746834	8.45179020356312
+"CSF1"	7.9245660806828	7.13021671532047	6.98233574172414	7.38486023402131	6.93469611465121	7.65933335467273	7.80739431485602	7.49068009591528	7.43104719585271	7.18275710163484	7.51724885974248	7.05072789304907	7.99974419559479	7.42711464173296	7.43336971697191	7.53979742477177	7.10460047299542	7.20922631832004	7.12048645623999	7.31491299208278	7.19499548231045
+"CSF1R"	10.07870971794	9.14738958277674	8.33860250777898	8.74774994121454	8.76081475502763	8.50419846748921	9.46331488087424	9.21469427072602	8.97661229939271	8.93092993386496	8.89800797069073	8.10943682881445	8.82207773634203	9.38650342262539	8.33670707160143	8.96363510535017	8.89368753269309	9.03063583079759	9.2278598321144	9.73383274194535	9.37488115408606
+"CSF2"	4.94996790412619	4.63083906682956	4.46569680710212	4.98327937984599	4.8806644855188	4.75832711391151	5.12746650795198	4.83732999932188	4.71882108871003	4.72083029964895	4.67359619457343	4.79748230559305	4.90595350340278	4.99169548668545	4.64023413695248	4.70348161142983	4.72083029964895	4.63619514651784	4.6660836281345	4.61789469071186	4.72083029964895
+"CSF2RB"	6.4977078980949	5.26522519509441	4.7363468024236	4.65688170705215	4.97686171002965	5.11788297576539	5.4681751234332	5.80183274204386	4.76932032837107	4.83612724246326	5.16413474504597	4.93162640348863	5.27403559849133	5.25376156188016	5.31590706737145	5.37048140980155	5.55751377505578	5.04653647566548	5.21302713195617	5.40085853587242	5.84324430367431
+"CSF3"	7.30557471563855	6.70483955234334	6.65472545313163	6.8145343223156	6.76082093871764	7.31760617457556	6.69168018294914	7.40504814542404	6.7715156525216	6.84176118277183	6.47322625777692	6.99415322081466	6.85300315436824	7.06494549461315	6.64498476781545	6.47125931559451	6.76137712607271	6.33497318392608	6.5757805388171	6.57493235746417	6.85667112132011
+"CSF3R"	7.59066938772251	5.89708195618327	5.48554261705441	5.42294926657255	5.72679376559316	5.65933815177804	6.11367082491704	6.50275437503121	5.54402449459977	5.72206845829678	5.73247673734375	5.53444872544898	5.74855922325708	6.10076112123687	5.29029490358471	6.10870414951554	6.00379262613372	6.18800644850836	5.88901021058502	6.59361593165903	5.82240583950325
+"CSGALNACT1"	9.90557647951232	10.0145692148212	9.92631383036474	9.49243718377767	9.54047824987854	9.01370387693497	9.31924791018023	9.87228120032871	9.72272275430867	9.37439163057729	10.1644770036832	9.72277425051844	9.26833029404793	9.7636657808259	9.50446417421306	9.17304255881076	9.48568967111481	9.33099643612118	9.84393520071819	9.23305827387978	9.34938352010062
+"CSGALNACT2"	7.10596320620484	6.66580214069421	6.92499082620125	6.75175175719087	6.31422210751783	6.58893271409049	6.35321551937685	6.98561842792983	6.70367899611	6.50940082941766	7.71211189940889	6.54022657612782	6.61377176294125	6.84600991794217	7.15319175363745	7.53105777200954	6.74803384221536	7.69538546250145	6.73462621422275	6.30274905242455	6.75175175719087
+"CSH2"	5.7559791512397	5.87793723597444	5.58939660281045	5.71529340910002	5.92178706881649	5.9299037682705	6.18065515334715	5.70305100039587	5.91744848824699	5.96626565379694	5.83658530254265	5.83848924790529	5.82881397097311	6.16195568040167	5.91413243222558	5.98885683382082	5.95684354795411	5.66531442635752	5.7662511083396	5.49166202963125	5.91219606906018
+"CSK"	8.73031052822335	8.1145193461586	8.14663011802409	8.21230247126224	7.72351741020052	8.45302926246425	8.5342581641559	8.17899164336945	8.05356401916525	7.96776212927538	8.41448050964701	7.88406763698773	8.18632143129038	8.58829354351504	8.19419929708421	8.3813759630268	7.8949319759414	8.21564357847699	8.00881195874949	8.26569952507774	8.22173625590137
+"CSKMT"	6.14801717805252	6.19810546110513	6.11941242028992	6.10271985819724	5.85600637300189	6.29650286744603	6.21351982230527	6.17240603091506	6.1622586346719	6.02263260843666	6.07215588899495	6.16061693759663	6.2489465694086	6.34044760651097	6.03172934668326	6.03435219264709	6.10271985819724	6.04634890416759	6.09496097399203	5.94639223668761	6.07378648634422
+"CSMD1"	8.28855665209293	9.11975864410001	9.44912078549762	8.90056749565186	8.94576908125462	8.92563972146367	8.34254881317599	8.81269568380904	9.12323553132194	8.50487240783471	8.29352675312391	8.54467565890616	9.25967284926139	8.8048005384972	9.25335546853484	7.6180307583159	9.02291313911031	8.43184665581251	8.60808492487176	8.62558218844497	8.45888513500024
+"CSMD2"	6.03673227004668	5.97159770244712	5.84879670280633	6.19371660203507	5.84640568747837	6.78971021203511	6.55791592219766	6.24262071888236	6.43597095121905	6.10476915018123	5.80101897155933	6.30696240191205	6.38966959055487	6.79480662605024	6.23191016506098	5.80817204105997	6.20289647702149	5.66052557411868	6.37313347917738	5.76209076014442	5.98965718435657
+"CSMD2-AS1"	5.89407433702076	6.1681660401562	5.9609084041515	6.33440728039695	6.16719168363674	6.40023444085973	6.28979145814921	6.05903066404427	6.34102237535034	6.15754682331624	6.02926898632967	6.25256561523732	6.1681660401562	6.23831499113431	6.33164629120594	6.02407459809972	6.18258371926335	5.77973657511877	6.1681660401562	6.13043238146735	6.32679010113561
+"CSMD3"	7.6055273346011	7.98601223854604	8.66048186455905	8.00420471247444	8.19876407901542	8.02463961950005	7.7731064360215	8.39064569725032	8.37349906331365	7.83082517183014	7.50002904631611	8.00271549648416	8.29421121490936	7.9656690258821	8.44386979260563	6.83243537247306	8.18697381038104	7.73788529583662	7.98031055360345	7.96064605551813	7.85645984399435
+"CSN1S1"	4.09857894628593	3.98506671176393	3.98506671176393	4.08890650317819	4.22743216845597	3.94757516742804	3.87716342271306	3.98048923449214	3.98506671176393	4.04305656078949	3.78519639810493	3.89408386514093	3.97723544643213	4.32129046743201	3.93131687968514	4.04035955054353	3.81465526589553	3.95911564535162	3.89580900724314	4.14341920865048	3.90067945321012
+"CSN2"	3.9480448008576	4.08621031024965	4.1338155390393	4.12813256728871	4.17019882282389	4.26330336380261	4.1338155390393	4.1338155390393	4.16089863856463	4.00011157791494	4.27954406944233	4.0224309297686	4.27954406944233	4.36655165951801	4.17412255688452	4.1338155390393	4.07688220549401	4.04641833645295	4.12787743047738	4.20016828958258	4.21659285896409
+"CSN3"	4.02098016794251	4.29271228659336	4.20036287717833	4.35099721901481	4.19836554120794	4.45342187463537	4.33713226129532	4.2229559686152	4.27463929683327	4.1878090677077	4.22659831408355	4.07881319235303	4.44653007687948	4.40827564418163	4.16880912829227	4.44766441058732	4.37446789986281	4.29793182289609	4.26353056012558	4.27463929683327	4.23699870530527
+"CSNK1A1"	9.4582760713931	9.29113356934279	9.16504701068224	9.25291552540215	9.38015286206519	9.31610419698644	9.16471799796441	9.50627486447764	9.2131912019071	9.39934487584645	9.52529596483534	9.49437050252451	9.33906206748227	9.09697300477952	9.29995507801136	9.42458454619945	9.29436176335036	9.65524349671538	9.48609591998641	9.31136193593925	9.13933849990043
+"CSNK1A1P1"	3.41603442714824	3.27744844822946	3.49199596370751	3.41583730694518	3.32054829077686	3.66111855176947	3.4875713216458	3.12332706953243	3.19669508384494	3.37294028904531	2.96905399015313	3.25076778947023	3.44139123448737	3.45320479756754	3.43530865449124	3.37114173473195	3.36742479281802	3.33643068272955	3.29055793792533	3.46860739115609	3.25426807572176
+"CSNK1D"	8.85610995602966	8.21427584022115	7.79617884759655	7.99062567255274	8.24312812463881	8.3189469776543	8.57855770037955	8.33987723752668	8.05260168690574	8.66586518806596	8.29820877536007	8.48410301426752	7.63476723113666	7.98623018184891	7.40820586720422	8.25673359129549	8.29596096278631	8.08329432617092	8.34380255875744	8.46685401270802	8.56208401431681
+"CSNK1E"	7.9307838482333	6.93249793007217	7.11196185531865	7.07222459308614	6.88116294451724	7.86646050677626	7.7219703450255	7.15566167307799	7.26221921336692	6.99999070387832	6.68173146614036	6.79583950174487	6.93923130504113	7.51597422127362	7.29530144768232	7.25520104753348	7.2825629632779	7.14156795759076	6.99937919485425	7.08208649536537	6.97222083338586
+"CSNK1G1"	5.74862808675308	5.79976601284619	5.9568242335559	6.13688182330624	5.86791204993611	6.10457200801645	6.75164813324587	5.8338374330964	6.18800255114604	5.99188001651911	5.8123541191365	6.25069328929035	6.11733483644333	6.22426846332284	5.80861136036663	5.71757077174588	5.97984344158539	5.56257190957621	6.17799017108754	6.03241640559324	5.92484462655244
+"CSNK1G2"	8.82038604922135	8.57258807317056	8.93184116659809	8.92270876403089	8.53473020518192	8.97058499911541	9.11102739192823	8.76378595422748	8.87640088629156	8.6851093758661	8.4795457795657	8.3647871278096	9.02138892474313	9.24421059926132	9.03047758321593	8.23040209008929	8.77205636432036	8.3963166771539	8.94825454638719	8.51548846201555	8.80326731781088
+"CSNK1G2-AS1"	6.2695824894001	6.4064654621295	6.18800490312968	6.71541003121345	6.50940082941766	6.59361593165903	6.89604772039691	6.46786714402379	6.65489407316474	6.40630214939668	6.33015063199449	6.53185256562088	6.65557567367966	6.78804121871514	6.50940082941766	6.50940082941766	6.44642630089092	6.11138064298637	6.50940082941766	6.34108418748362	6.76826975824648
+"CSNK1G3"	7.61730551484056	7.95778972745938	7.56224844233837	7.56490469363439	8.41359459926409	7.30655689009698	7.29184960057642	7.850152225835	7.70864340143851	8.01224905458215	7.555180421604	8.04797640977977	7.19767561373723	6.88397263981907	7.42946869751986	7.96038356738171	7.8482140949179	8.17106260620104	7.71886013343325	8.17532573891738	7.94058597360833
+"CSNK2A1"	6.97400722020063	6.82977522968824	7.05741336596542	6.88913256346631	6.66300213481749	7.76155366699485	7.238877584425	7.70583044100235	6.84511943347238	6.30267795417092	6.99122032096085	7.51611822341103	6.78341887960873	6.69472827671287	7.11713818778252	6.99122032096085	7.4234073551226	7.08479514049603	7.17996994464397	6.58218932333131	6.7602717735366
+"CSNK2A2"	8.08620398650892	7.67885276595945	8.28626638330834	7.74632915008292	8.06718725349699	8.19473363618625	8.0156703531352	8.26132940552264	8.08897390671704	7.88598779899389	7.63665801279393	7.94348782263231	7.75420925307266	8.03914596610078	8.03048533389219	7.79696303706593	8.10647149541228	8.00456924728528	8.06740394401777	8.03280101517991	8.05778963777133
+"CSPG4"	5.96133925352685	4.54137198263651	4.83035892937518	5.16291318961159	4.44737453413327	6.0934334939705	5.81488824323034	5.14775019017151	4.36650012929977	4.4986536478686	4.68245491410384	4.71698027828938	5.13484022353815	5.75392583996444	4.8022572884854	4.93779438031075	4.95480139589976	4.88486197769413	4.74016976280992	5.07086070238858	4.83632527247345
+"CSPG4BP"	4.88857841182365	4.86337914187904	4.79430811926962	5.04855498655859	4.63221353729574	5.25517103677838	5.20225130655715	4.74273071256232	5.11687343203952	4.82607114374221	4.7365946575906	5.17780358626742	5.0624258316478	4.94742361195915	4.86647534442789	4.90294448792686	5.07519448253867	4.79128507329545	4.94742361195915	4.92388349259938	5.08611537295777
+"CSPG5"	8.16757433665219	9.50407311890333	8.6781587875037	8.62408383823266	9.16901726704572	8.67558441757046	8.52645743672302	8.82678158063229	8.72043759626034	9.19215652921441	8.66481235807976	8.74509848704673	8.88088188957471	8.6781587875037	8.10530676385972	8.45010529590945	8.6781587875037	8.37132987996405	8.42113657981582	8.73433058663437	8.67051460890859
+"CSPP1"	6.7969286769829	6.90638290664575	7.34642120682573	7.28297416210326	7.07221795072038	6.31220073844398	5.89455124002661	6.60657213660752	7.06722187707223	6.75751125677883	7.12373937090207	6.39757345136	7.06517448388092	6.36456958867392	7.15144138596199	6.94629489519791	6.71147163610513	7.34395849442204	6.81145741600157	6.63300111377313	6.74849481548018
+"CSRNP1"	8.07659381831432	7.96452302156434	7.77002783840043	7.86104514322836	7.65487086965404	8.82612423113546	8.40073946555698	9.0780632135755	8.16490704091164	8.09449070302757	7.82482515648465	8.45827030422117	8.43486683547201	8.54538122456442	8.33062287680228	7.52705459609528	8.62453211023273	7.97185615667612	7.6266589415434	7.82617195979274	7.94381936047498
+"CSRNP2"	7.97755571996165	8.40925692956173	8.47006829888305	8.1236829659216	8.53491777141039	7.69368509599086	7.56525164852575	7.86717601794537	8.60557490770655	8.51713682038811	8.26681519010951	8.307933372418	8.33999803375519	7.83145749922705	8.56989089355318	8.41143123372194	8.35032225530616	8.81309281109949	8.06495223735106	8.69234623069545	8.69035198036751
+"CSRNP3"	8.46471657937095	10.15466785829	10.3694030718585	10.6810885678225	10.4785595371993	9.55205513445648	8.33725431064304	9.94794588940493	10.3113255535302	10.0178105566598	9.77946967735301	10.2574185955548	10.5668214758259	9.80175740450996	10.635614378143	9.37513103451196	10.4144787861208	9.75790806459984	10.2381606123999	9.50616999373494	10.152983051297
+"CSRP1"	12.2158959310056	11.8392016781087	11.6891598041137	11.9287110954207	11.519559546479	12.2209943143978	12.0697645327327	11.8888321653346	11.9313022038535	11.7215485644877	12.2774068093908	11.5305876970392	11.7753972378497	12.1756271987712	12.1244541378375	12.1351653539564	11.4129589831001	12.3427547388534	11.9001590587036	11.167719280898	10.9989545136462
+"CSRP2"	9.50196570831647	8.41351157655223	7.90439153191222	8.74169101832097	8.37206656040191	8.02978110871569	8.71030430386203	8.6258823522779	7.8262846937633	7.4788672283828	9.62056860654337	8.23107425555823	7.99772617031266	8.55658492585548	8.46244951657382	9.02575127206345	7.57447347779778	9.26178040832858	8.54855306888023	7.83413096111973	7.54805666688729
+"CSRP3"	3.58724474185603	3.77725307761025	3.69103412456197	3.56213811556335	3.66847503196017	3.84481680349266	3.51455596699129	3.77553404134732	3.83586897020827	3.73035025212997	3.49226235382775	3.72705638646672	4.0159513833884	3.91051478165658	3.6618958377778	3.69834232215837	3.71080979433056	3.60719525311294	3.84028869680767	3.52059975742661	3.85506798921548
+"CST1"	3.75638044542813	3.84916595380536	3.93785994961173	3.97587234636401	3.62467014165796	4.01625217957038	4.57450378405469	3.76411500914282	4.02436212906461	3.99791111668686	3.85084135414155	4.0608911035394	3.79389729913588	3.94754635495109	3.96925273116165	3.61972259834393	3.94754635495109	3.94754635495109	4.00850393415311	4.08193599403084	3.94754635495109
+"CST11"	5.02716966783891	5.17138310771475	5.46009549730789	4.99362732321267	5.26265897708434	5.52195196589968	5.4023316719448	5.33992687282996	5.67593138489352	5.26265897708434	5.20361141421333	5.04120877268049	5.27859323901397	5.69890649686748	5.15837083630446	5.40331524738012	5.34428770993105	5.21162510184184	5.25955097264913	4.76708561636007	5.1065744652768
+"CST2"	5.01240962555234	5.29115639572597	5.16662087639384	5.29274730601974	4.98770638715429	5.16746044900246	5.77150189109185	5.08434163260989	5.21587907745707	5.35112664262682	5.26265897708434	5.2972248116265	5.55547840651469	5.32911868652307	5.19798191722044	5.0765541517128	5.28076942811176	4.76769440523561	5.4614726753915	5.19313455757001	4.95162600210337
+"CST3"	7.09558713127764	6.00553815651356	6.26065213410191	5.43869519232104	5.88533044873228	5.73072388580222	6.45097430648525	5.47419083026803	5.40953837666362	5.18596271783208	5.3698373297091	5.12057429431316	5.37444239819254	5.95757047999448	5.09312031072169	5.60646926480101	5.57092046508451	5.27590413028021	5.23046436559764	5.86792194891009	5.48828287605113
+"CST4"	6.36017278949439	6.64088265266914	6.34247903894058	6.45149469065969	6.21848679949747	6.04225732908422	6.55650645346047	6.67453090427133	6.65048650995067	6.2394847589938	6.48237487645028	6.38650633587446	6.6351782008437	6.34501798227258	6.55755075688209	6.17235884899188	6.50824793007231	6.25885901300784	6.59754263709839	5.92848039031381	6.37845446668022
+"CST5"	5.23252823837447	5.65488960995436	5.37094083637987	5.23252823837447	5.24413888261906	5.39256889886875	5.69192771690787	5.10778213465876	5.59220447533644	5.45869034753196	5.24956165951258	5.26491533928464	5.60806885744245	5.69168601261405	5.22989264627285	5.28999888192227	5.37562493717307	4.98032543537292	5.3282257882661	5.36374296284131	4.94941186115686
+"CST6"	4.63947601261661	4.62577392547099	4.61667759643449	4.55740525441062	4.30115558698546	5.09122390903668	4.91258368222781	4.48987636326954	4.83808604486161	4.74761491601985	4.34141912603636	4.52131667581217	4.82070643760374	4.80782893245353	4.34634699370544	4.63968261367387	4.62577392547099	4.52570026378707	4.80419531992814	4.68906842457752	4.91695790313842
+"CST7"	6.65905863624086	5.74535229547529	5.53123613955153	5.65309234856903	5.81816054576282	6.15488527842532	6.26422799335015	6.61620117866378	5.7915693474554	5.8046063198732	5.42068833354354	5.65775863785511	5.88538415703284	5.95425289368835	5.73467282551687	5.47312319111072	5.87619290599323	5.42077014269598	5.5811177453025	6.26089030611635	5.8046063198732
+"CST8"	5.33730498252687	5.59454488247238	5.51267041465467	5.81538488422355	5.42722011581852	5.72362344748448	5.51670043325573	5.50528692233859	6.01848177226831	5.62163678949611	5.26682887968735	5.44537334455317	5.60016844449546	5.65094423729047	5.78612859442399	5.34263016913081	5.68576585385165	5.29530293956481	5.68430086334852	5.32744498266245	5.37893554272915
+"CST9"	5.73831640709387	5.66778523849799	5.76730377445087	5.81986040599338	5.78703367813391	5.85224750690354	5.94145873005842	5.76829966781079	5.96944315024472	5.76215623806438	5.98359153055677	5.87581154718705	6.01269476007674	5.98472373874831	5.85224750690354	5.60396303965014	5.6355314626734	5.81661404467331	6.177578018423	5.70429128064476	5.8774634352711
+"CST9L"	3.83291061948255	3.6464814206386	3.74958129720856	4.1501810658903	3.62939989815871	4.48435307400694	4.10352656110561	3.65260675882801	3.91071408328183	3.82986599768573	3.39541132677598	3.81620909199457	3.95096924380033	3.8517004089013	4.01763085680494	3.74347445694835	3.80701717979927	3.43250352074595	3.89442823708808	3.43221964613085	3.67072886961648
+"CSTA"	6.36953942365556	4.54303945615909	4.5961759254378	4.57069622197411	4.50852241570262	4.9597248106527	4.81658290535652	4.93115540546244	4.54148909112148	4.60959611554141	4.4639965426867	4.89315334831651	4.51520174301682	4.67300758091243	4.45324410261283	4.53884833277096	4.99538140983088	4.38605080895169	4.54158263931036	4.78679305411726	4.93602835528887
+"CSTB"	11.6448402739319	11.0168264398415	10.8355260819782	11.0278739670391	10.9580251668822	10.9204414907489	11.1839344999663	11.2004353309551	10.8822925246341	10.911064198866	11.2972626128721	10.9497452344217	10.9902531266955	11.1039663469884	10.8302891499584	10.9238637002144	10.5160007111795	10.9266922552398	11.1969079750317	11.0601744167747	10.8920400301363
+"CSTF1"	6.02229055701668	6.0915823134816	6.30355549375837	5.95576420828805	6.4628839137922	5.73661041535378	5.65102851168349	5.73079716594015	5.89447413520572	6.31224635688853	6.04170326414857	6.04645320066019	5.64921746412768	5.1624971098536	5.3389636577256	6.68790129262864	5.80543214089258	6.74548844931359	5.6038505544098	6.42373130510292	5.91592185052578
+"CSTF2"	4.6125672185769	4.67865513357063	4.18406452901353	4.38688784023898	4.64945534305843	3.98991496186411	3.94479886215938	4.39267410676429	4.18927019493227	4.54850837584706	4.697851546214	4.54630835626738	4.56975445726971	4.16273147364266	4.30973311024832	4.22605628321025	4.1338155390393	4.83253003256814	4.35462008746064	4.4395317224467	4.58435659482449
+"CSTF2T"	7.65212056576441	7.78286329901855	8.09628874179412	7.64424375706763	8.46568926113116	7.64424375706763	7.61669221990799	7.47330853011123	7.53624849049879	7.96566761325315	7.96074832573535	7.04699949852155	7.71902317272346	7.03476849728139	7.53168466698584	8.14725102170483	7.66089352375127	8.76847730533251	7.44140683682473	7.64424375706763	7.59084829020882
+"CSTF3"	6.28281968452713	6.84726727765041	7.46337974406946	6.9754396152075	6.96895363317564	6.84726727765041	6.3502580271494	7.56531338217963	6.56632847837282	6.48329113138464	6.84064405228988	7.2141941879946	7.05126672672224	6.50708490459887	7.29150847994526	6.63940424910476	7.10742498767023	6.85636837303153	6.93798250906872	6.62736259047128	6.71765379304677
+"CSTF3-DT"	2.9182575978345	2.88157941945786	2.73040239062887	2.8069559320812	2.92738413020208	3.10453643808063	2.81359305295229	2.97229465087617	2.78543247802666	2.98629511368	2.89366876155668	2.85775755277191	2.83522695886075	3.10271875687885	2.89334938526495	2.86101183409239	2.76658267609326	2.86358934022708	2.89416474877403	2.88157941945786	2.88157941945786
+"CSTL1"	4.0575627767207	3.98822567963054	4.08351713241728	4.20479628536753	4.06696768310499	4.53552366041602	4.26628052003016	3.93338713508598	4.24729556185994	4.17071570034932	4.13678985110472	4.18756748840491	4.5361410167411	4.17678838433786	4.28291033268493	3.92704941663953	4.17071570034932	4.08999752905473	4.18730351489096	4.30205602926106	4.18157762665983
+"CSTPP1"	6.69431896936186	6.40039906403968	6.39895132503548	6.99177903888394	6.53549774666271	6.85826286735931	7.03452123148175	6.54501929799525	6.76916679276292	6.7620564344657	6.49427115402081	6.73694887806765	6.99748792318206	7.10146592896139	6.77098065506018	6.30405605374665	6.95205441725213	6.14985010145238	6.8926045559235	6.47202329266351	6.56022532395529
+"CT62"	3.69225158769464	3.33097123695974	3.55586529106956	3.35245793234318	3.19779826987762	3.77688358336959	3.62123886368635	3.28313095076077	3.30180647107031	3.49843593098106	3.2403093347144	3.50025680345334	3.54098656187136	3.6610589954131	3.46306233820436	3.1832623817523	3.40321756068018	3.31313906717042	3.51328091414379	3.42598080769835	3.3404377108901
+"CT66"	3.94764665685127	3.95389406563548	4.22849295594666	4.07931554265706	4.24424376597253	3.96415837426317	3.79092730980693	3.97716471639879	3.81979444051187	3.6754934357318	4.36209629525526	3.94764665685127	3.75924473472407	3.76964541056412	4.0295620269487	4.7939943459758	3.89525258877303	4.56206589526836	3.95937696186248	3.85415869754747	3.904010346541
+"CT69"	4.4032589110948	4.87454079983232	4.86657047339382	4.87178155670733	4.57976207226826	4.71069316740469	4.97892213760707	4.62516274459477	4.65116897809928	4.5155184091939	4.6387437033133	4.78481898729995	4.72083029964895	5.1370683071848	4.65577234883784	4.68516900777124	4.60843611508837	4.81439272437695	4.80492942749049	4.47589458958422	4.77506330037721
+"CT75"	4.0208346228884	4.37928216245125	4.55242409481083	4.31567855102074	4.34634699370544	4.59155748973841	4.7117215253307	4.39136544669737	4.38583972234429	4.31567855102074	4.03134089274991	4.47242093737016	4.31567855102074	4.19385469127664	4.31567855102074	4.26612077761832	4.34634699370544	4.2476999428348	4.81711156865481	3.94619311080532	4.0258832046185
+"CT83"	3.63653263555392	3.70160148030546	3.55462339524976	3.93674562098804	3.64591773012556	3.92882814113549	3.60512774646472	3.67891940222951	3.75306677474311	3.61478478954826	3.31803818349889	3.63668941073272	3.71031846596918	3.93630020674044	3.78856938405768	3.84746626312461	3.54960729677334	3.44299722987143	3.59103059125189	3.71466616850662	3.7173489160623
+"CTAG2"	4.00284443010425	4.00118679335071	4.32392712229009	4.22089778660371	3.8379959179364	4.68520653723064	4.70046575855842	4.11066452231926	4.47410424105064	4.59699123153811	4.08358843672291	4.10850468656085	4.31428536745371	4.560259016499	4.21749257809528	4.20766614479711	4.3356329736406	4.12111016678412	4.38473938397918	4.1925871438536	4.18928320920638
+"CTAGE11P"	3.76649585251223	3.76393032178776	3.73090769300257	3.66874078101732	3.84757878214977	3.7456425492105	4.13753819049963	3.78530619919901	3.78234271027046	3.79340624972589	3.74189402483242	4.048824658733	3.93316875571916	4.12698747979199	3.80590372449643	3.81474210124194	3.79340624972589	3.67884275111033	3.53836944645916	4.01384309181303	3.68401534352776
+"CTBP1"	10.0154396679794	10.3264321762394	10.2489158507674	10.1279298015188	10.4036196845863	9.34227824176416	10.0719476790942	10.2949115859058	9.95614725968567	10.1660810737544	10.4589074107965	10.7226985865917	10.1868875029186	9.62302960821759	10.031825722311	9.78902376014349	10.5467409210767	10.4420066321538	10.5944385307544	10.4694818017834	10.5676350405037
+"CTBP1-AS"	4.44908584722938	4.63331509523805	4.68403030220218	4.82765553601537	4.79820265137054	5.03917133977568	4.93750682099046	4.70789688128593	4.51479676981894	4.77216459376784	4.68545096185593	4.42491806652349	4.70789688128593	4.98397535223513	4.76844792789788	4.63985000809892	4.71905378310525	4.68721182971508	4.74517854900553	4.67175496584549	4.70789688128593
+"CTBP1-DT"	6.16302115655871	6.30798844715301	5.86428671067879	6.27035516121198	6.01301685909037	5.8027653932346	6.16625421708886	5.90119520222131	6.14720044876473	6.53204960642568	6.40656321630854	6.37293147314403	6.1583411203506	6.17697085799132	5.96800602017489	6.98749830088924	6.17697085799132	6.1681660401562	6.17697085799132	6.37762847937247	6.38256320014679
+"CTBP2"	10.9217710084008	9.89665637159158	10.320860292047	10.341118317011	9.81586472258499	11.0176683161717	10.5753376896371	10.3179627733138	10.1528384820804	9.57856709511272	10.0183315439671	9.50818417986097	10.2169812725259	10.5709708217203	10.426529453065	9.77285378610377	9.75243884405638	9.94315168369832	10.2505945434631	10.0175822283274	9.74695378612437
+"CTBS"	6.67923105339378	5.31953595837156	4.95059910842456	4.97238645912899	5.31889406567261	5.12331327230313	5.13326333738665	6.09866059488044	4.83117556176005	4.84584467912725	5.74988123258855	5.40583472649452	4.64097529931639	5.21163628141923	4.69885939172792	5.35665549634779	5.08057158119094	5.22442836733839	5.20604650177537	4.84851732581668	4.98518682860423
+"CTC1"	5.92404824700142	6.12167145313114	6.07579182818012	6.06574620332124	5.95016747400517	6.33826500249025	6.37355233107116	6.05112976986452	6.11306794757498	6.08420373641138	5.86445178085446	5.99638572217171	6.07579182818012	6.22789773409516	5.79930458141243	5.81584466032558	6.09780182496907	5.68216117517118	6.34760934186003	5.73084618943839	6.129786816009
+"CTCF"	8.82340754567719	8.71404684646474	8.85814806276233	8.80077391337248	8.91938265269476	9.00508469237624	8.74169655454045	8.80643246769189	8.87877564464504	8.70123363631248	8.85501827712621	8.51701249711579	8.84863318295541	8.81993635847962	8.81120317391551	8.87082388453846	8.53178641737232	9.24057078831012	8.5419849465077	8.70803715178415	8.54102808815262
+"CTCF-DT"	4.03930955182528	3.67344607450572	3.87153087092507	3.92758422261663	3.73425107147365	4.07001295813152	3.9913336901893	3.83353097716374	3.9303598345842	3.66741913337272	3.98586120074582	3.79691916055815	4.06604455739751	3.8673460135857	3.99778854482256	3.93222470219572	3.82221540522355	3.798900699426	3.97954791755169	3.87153087092507	3.98741688940342
+"CTCFL"	3.49848223214926	3.74688724901636	3.41320608609408	3.69327134298919	3.61228963316329	3.81075987687633	3.86834686509364	3.65257633572234	3.61615506025016	3.65257633572234	3.39929969427522	3.57667652988626	3.73559698010708	4.0582069901639	3.748430174389	3.6515758961482	3.72792140865062	3.66964504558059	3.53741376891322	3.9809396434211	3.65257633572234
+"CTDNEP1"	10.418816733661	10.053287759683	10.1279715095587	10.1863921615921	10.0182979170664	10.1422817691021	10.2959397926109	10.1279715095587	10.084522374562	10.1908748408201	10.2356565740367	10.0923319941247	10.0766503434872	10.4610349465621	10.0995245970835	10.0277818814367	10.0459374954545	10.0985054673799	10.1651382628148	10.2500288447897	9.90563891015193
+"CTDP1"	7.44197717829553	7.34207646193976	7.39247576996322	7.12532275606009	7.17174113963787	7.69975632126493	7.29490385631411	7.33778262904079	7.47172709806783	7.4199608256723	7.30581334683375	7.35847771090945	7.52771099244633	7.53401418717115	7.39247576996322	7.45514163842696	7.3800915153355	7.40836546181573	7.31552481546301	7.40600319633469	7.35615621202681
+"CTDSP1"	9.08476021636373	8.51058425587565	8.11203955427363	8.3162467939347	7.89357081405444	8.49063335550265	8.45031029093941	8.17405981675798	8.06472876030664	8.27024937971555	8.67712414140457	8.01353194371637	8.16541904121694	8.68072081948206	8.11451785422802	8.83476302016547	8.03088532526066	8.49443964405333	8.14388601490351	8.57619837326492	8.08501973117381
+"CTDSP2"	7.59547461468324	6.30997109772858	6.47553339971794	7.05648483227472	5.48360278808982	6.07901026473461	7.49128229176883	5.18699310435965	6.83220612288925	5.52057514451364	6.23290545446369	4.93737686822065	7.2210707769658	6.86669902091983	7.35574354816589	6.15315502723656	5.39962668692634	6.35622918424609	5.89124950502172	6.0257342818392	6.30997109772858
+"CTDSPL"	9.35787959455509	8.70522086533116	8.93387851317828	9.03620246415575	8.56504029850284	9.22253265797701	9.33788369011012	8.77402275966858	9.09414725975661	8.60955135858294	8.45848050479	8.43126913215229	9.06874200300479	9.14358382954081	9.08749424268215	8.07224097047931	8.51032149518097	8.48525639167923	8.63012500998487	8.61567908123614	8.13471717052586
+"CTDSPL2"	7.87027081760613	7.93358625127847	7.29825692345548	7.28358834850976	7.76796126565113	6.44009871773494	7.11130086758559	7.91787254713672	7.72447527618377	8.05350662784549	7.96318481348125	8.32291473192519	6.71535190852296	6.94684392582077	7.26691437822089	8.32879041462824	7.6246735809451	8.05117676108191	7.65564312878456	8.09304108320019	7.92330704918357
+"CTF1"	7.24870784560147	7.02443194493979	7.00332923763999	7.14302038721268	6.93348567757644	7.38798504276197	7.96110540257218	7.14202508046982	7.10010084106319	7.29537239323445	7.13130747560549	7.13445044293164	7.2488199146019	7.67528679822348	7.12402125899716	6.76844874492155	7.07895905247297	6.90237709266814	7.32547551743439	7.08741079444045	6.79422638738366
+"CTH"	5.58812306083684	5.45546764616943	5.78249838146972	5.46572438697599	5.68925965321786	4.96838244841424	5.03339962137865	6.35346723828212	5.35290343264938	5.64100561593801	5.33935636282348	5.69971471125791	4.69774635226693	4.8539579843771	5.17897583377368	5.06966183309976	5.82017037560139	5.23875785308896	5.6355314626734	5.38198158292944	5.15954824693267
+"CTHRC1"	5.36082033345385	5.64405026901012	5.69735231308586	5.09782622125279	6.31156866668262	5.50510650218802	4.78268121803796	6.71383887826872	4.94731076363637	5.4999349938507	5.16304009926144	5.03768494369717	5.01564020962332	5.04159338745012	5.04141280801287	7.01182243955402	4.92569164255739	5.18089870995536	5.38467900210789	5.78866394107385	5.96213429075349
+"CTLA4"	4.38499789336866	4.63356485986996	4.63734963738207	4.81128665414566	4.29813455457866	4.18670497225519	4.52123178277811	4.65085767902335	4.8715968864041	4.6304496252208	4.44195592614155	4.63734963738207	5.09122390903668	4.83766608118629	4.94230370860333	4.47206581410371	4.76236971594631	4.35228489654709	5.08122013035497	4.26606051001025	4.72683790289911
+"CTNNA1"	8.31996338075072	7.51301896803515	5.45207002371137	6.82126633125276	6.68324760077683	6.84153370548934	7.20551267931439	7.73007578009715	6.5610217595846	7.08346557799907	8.14679811714443	7.12470971557399	7.00253761302929	7.02702283385643	6.28271488209756	8.06958909959674	6.94501781507499	7.55324695747222	6.98890997997877	6.93025484705375	6.43117469214295
+"CTNNA1P1"	5.04217558188511	5.18677146826898	5.00460774566949	5.08027294231688	5.09122390903668	4.97633457501697	5.12878378656745	5.28565331691764	5.03308161144774	5.0922780882479	5.09122390903668	5.25042448129704	5.18956295871069	4.83646403033277	5.05107169374823	5.11238165115204	5.04187844203676	5.10038885863299	5.09122390903668	4.95600667656239	5.20763952433231
+"CTNNA2"	10.3778260897134	10.4703502423391	10.1757162793771	10.2612147570137	10.5139773653641	8.65993278653904	10.1145315537387	10.1818198176681	10.6003400269562	10.504405677846	10.1670673427711	10.4560960754906	10.2449664205279	10.0869184412907	10.0395365766505	9.64426534674399	10.3887670685982	9.86984087394874	10.4255290977181	10.266291753125	10.3079090160367
+"CTNNA2-AS1"	3.67890214694569	3.52786249105782	3.42950356061942	3.35230446097274	3.40630223794425	3.76649585251223	3.35753237267772	3.49348447733125	3.27749503469234	3.35173792119535	3.33999577704705	3.26574096354182	3.37899618621312	3.10426546315322	3.42932338359375	3.14099321826017	3.26423226020599	3.34509143975582	3.37899618621312	3.21384199888516	3.27443530609302
+"CTNNA3"	7.8791830856771	7.58755949781933	7.16355560127981	7.08685653074618	7.12229049162308	6.61854360877783	7.00678389030581	6.96988148871556	6.47623249980848	5.55139582202941	8.00744244559397	6.22852206418303	6.60777308838608	7.23664223966811	6.5631603041162	8.78601058579435	6.74796610839933	8.84479349959031	6.75842539833516	5.6194381267713	7.57783856385724
+"CTNNAL1"	8.61981510483498	8.24500744312259	8.18035079320409	7.77328373909097	7.93126019008185	8.23078435331236	8.03450895230079	8.91913781883905	7.99892168331517	7.7874623759483	7.74586548710246	7.85201521877137	8.12002090140924	8.20035958533276	8.46197784113622	7.22689574995814	7.83601819646208	7.75052514454555	8.27065365912824	7.81379293927433	7.75785625210111
+"CTNNB1"	5.16866337252026	6.04150327463393	5.0095475876504	5.52928005200832	5.1280888251196	4.08670633917126	5.52336330565806	5.31744100635573	5.00151613782341	5.63092452127284	6.5558304261643	7.00206177835506	4.59227560649116	4.80802178153419	4.81786234540555	5.08756563311046	5.27345095229091	5.60067007236659	4.93467534824722	5.50226584017121	5.08434163260989
+"CTNNBIP1"	8.67445129762989	8.89505044018405	8.99121623553343	8.46238776326517	8.96247791927636	8.71037868273216	8.58387804989664	8.46149001431784	8.66692163147379	8.88861692341725	8.57946408194462	8.68188734369973	8.34990040768922	8.59685038899401	8.54241225957211	8.71056660414813	8.75156453251068	8.67437230124088	8.38646738019976	8.98416439193445	8.73419665342178
+"CTNNBL1"	8.04193144742197	7.71459254649899	8.1786686073827	7.9020699944937	7.99332790923273	8.38769493153029	7.99304038966425	7.90465490730792	7.96336909404605	7.97484478008558	7.90128209325884	7.96336909404605	7.9271221344978	7.90966859698884	7.87859936826948	7.78126877283674	7.89822248991655	8.0537910300189	7.92550393121074	8.18132589344203	8.03169343194204
+"CTNND2"	10.316914821133	10.0130107591786	10.110549192362	10.1470291854502	10.270504722203	9.22321203633377	10.4616318671768	10.3488819116411	10.0364437045673	9.88911771625505	10.3515467643171	9.84737783198716	9.76152304472799	9.84397243862816	10.0275173246159	9.76718017078599	10.1649318910119	9.94997455316851	10.0985065235201	9.84647448502761	10.0134367795145
+"CTNS"	7.32803796200938	6.57189298281596	6.66278945039525	6.33980107519253	6.51158865838531	7.29050233753363	6.30725979767507	6.19071717126797	6.35202623239726	6.55886199280842	7.10693892467095	6.17923605531684	6.36704458151009	6.99640300135554	6.52913753792565	7.21858353635546	6.16261361770288	7.24304635591825	6.47140144701504	6.69756379145766	6.46390632400071
+"CTPS1"	6.71197818738248	6.57085584930122	7.08499989662734	6.8160443745174	7.48674726067297	7.21414721982182	6.91502084293269	6.58433870852555	7.28634128283778	7.53675272189343	6.73506321733728	6.87855107092722	7.20348156259284	6.97726990235986	7.20348156259284	6.90651765298433	7.02666669710516	7.68682071473023	7.07793036129484	7.65462781023132	7.50779330824497
+"CTPS2"	7.62979623746286	7.46189664465845	7.59002459110921	6.94852371027926	7.26479452492652	7.35018550753958	7.29063145726267	7.11976466333627	6.57495413105862	6.7892942725836	7.57429062751777	6.98188329580625	6.35079548347838	7.21957883110442	6.83639560145444	7.73898470258326	6.95078363779265	7.80343726811339	7.15065010416012	6.99740450825539	6.64050557309748
+"CTR9"	8.42148031677435	7.97537986011035	8.15436689667371	8.17791451556296	8.18339768273801	7.41873131913851	7.72601648896549	8.02813769115238	8.11091588188897	8.07198659411581	8.30745447920722	7.75740378906258	7.93021047595949	7.74932501494346	8.23290400633239	8.12341225778021	7.88125290263943	8.34411166336217	8.03328219209213	8.21050565978646	8.15453984948724
+"CTRC"	6.20790010836131	6.19437376673213	6.30997109772858	6.29079601809376	6.18952396622968	6.38391759683573	6.68714643095996	6.19097308828791	6.36001253152513	6.35702009217262	6.02275898659133	6.14011764379004	6.48755420034331	6.63904172927926	6.38121960304614	6.16762983254765	6.30083485713765	5.94651786993815	6.46809371241148	6.31689146791501	6.36731072774979
+"CTSA"	9.5656357138406	9.3395007922608	9.44117837677303	9.09160370104992	9.43940257510398	9.19418661324701	8.91742507765672	9.21889812072845	9.17076752877174	9.21674476188009	9.12578084778424	9.25416796224851	9.24746028552454	9.1357257858036	9.01271377878652	9.07324086700225	9.17920567410319	9.09634824906298	9.00617623973287	9.63000140636007	9.37219563181716
+"CTSB"	10.7328426553361	9.86834840075922	9.43752385526808	9.90032978637123	9.91502685453041	9.7517270931184	9.86411403481915	10.3909692571344	10.113301945332	10.450540531794	9.79481257185545	10.3605066556085	9.88674537832282	9.84459827483117	9.86839107370612	9.48695975753784	10.2618073469707	9.8916258210467	9.98343681148611	10.3265730390888	10.4300901130337
+"CTSC"	6.69073736374782	4.61197183802329	3.49907232928224	4.52504346537744	4.95238514230011	3.86765371837571	4.53969731352345	5.51855630950244	4.23073507099699	5.12906069912838	4.72770034577101	4.36506344695622	5.04272194112425	3.86928261349276	4.86377661099313	3.90927307008336	4.42141984962758	4.58818342280073	4.57539519057346	5.83180954018367	5.96450014706922
+"CTSD"	8.89771992505895	8.5099429736635	8.6718748057931	8.50477688009962	8.64774731727787	9.27667963785009	8.69879477478567	8.67184451813163	8.21234292507664	8.93162723479763	9.32417853451739	8.85042687966728	8.4952389454214	8.34352471245908	8.45324759368495	8.67715390175339	8.70260617009533	8.86743845091103	8.74181136319731	8.93665594727245	8.70489451317659
+"CTSE"	5.27519892127388	5.35230430333502	5.12906069912838	5.30758538878885	5.38556959663478	5.16040021148675	5.30604285342439	5.2542567878731	5.48897465088646	5.33653257435281	4.98200908134609	5.31062946978392	5.35619026546709	5.24959808035183	5.56082784985119	5.56458709019212	5.24306633345025	5.1405913786118	5.30918070843266	5.10419019013207	5.45871569879127
+"CTSF"	9.31051848620549	9.08877241874537	9.59843224578379	8.89539765886584	9.09356668388784	8.9955014121141	9.30587050910771	9.15118127867003	8.91680403693834	9.1867779028505	9.45017228220557	9.15118127867003	8.7111814713231	8.75562113048291	8.87964822511867	9.3010631093817	9.1332295549167	9.51409339094562	9.2241032557987	9.33638882064986	8.93370893516786
+"CTSG"	6.33826500249025	6.16505405052888	6.19597769422621	6.31112726352047	6.23384303939468	6.45539159605869	6.45148648497113	6.28262568815112	6.38809132135877	6.43850938494505	6.02846502216007	6.40415425937185	6.41221192769198	6.33826500249025	6.45590338045883	6.24715649408693	6.33338719542578	5.96220441091894	6.31365378072431	6.29825137769898	6.41097838787979
+"CTSH"	10.2492990297723	9.94279038534789	9.34161029723648	9.26164983531593	8.88953334360879	8.9957956517468	10.0536052030335	9.76572350435484	9.43184799865212	9.07425703562876	10.0788105028978	8.92712065740853	8.96644462365918	9.33981261746997	9.27531333140056	9.48017744067268	8.68835496955313	9.32760505712003	9.51044453304114	9.66528274904168	8.33881668627956
+"CTSK"	7.16698813014303	7.06834912804484	6.9264653418372	6.97647553950955	7.17369408870518	6.78606480364288	7.14437075162816	7.20906906478284	7.37390285192073	7.58587241371297	6.56615696250606	6.93873830263119	7.05134753800164	7.10460047299542	7.37620401858242	7.22244219504358	7.08089119684563	7.04374704872864	7.0928266945566	7.72990504500951	7.10460047299542
+"CTSL"	9.17129421366093	9.23119962528896	9.130917557793	8.98477492713156	9.18169558004994	9.1687535253255	8.92093739356721	9.14806837453663	9.00564171661569	9.21647993551367	9.41017764923755	9.12603807855378	9.12339823733226	9.021878036062	8.86786408441725	9.54345810888217	9.03706021277918	9.40188749369216	9.37227519849042	9.4431509154434	9.13731181092163
+"CTSLP8"	5.43262924879166	5.61115859939634	5.36503815144961	5.71073164839755	5.4734747950053	6.02475159882253	5.90853447574668	5.57572490378815	5.52910355164607	5.45067106676093	5.62259646278022	5.46128886121016	6.01491042210564	5.96535198016707	5.49871917639398	5.56581623460247	5.66128153398499	6.0031475574405	5.65687460481552	5.80484459536484	5.63582596206348
+"CTSS"	8.64307097609989	7.70832894134967	6.17534005935312	7.01273166846683	7.14738832808681	6.49812462513839	7.00714616937219	8.09253779949759	7.21285988312941	7.75824954068865	7.6548046652625	6.94779276325103	7.24131263308907	7.24934079071722	7.36678797226146	7.1081587615483	7.65863416686217	7.64707185975659	7.68223686612313	7.51606846673704	8.01471884484022
+"CTSV"	5.93426323659192	5.77959192707156	6.04622325594738	5.91283418869094	5.70180355470647	6.03470050467747	5.81236062140301	5.8801779099068	5.59849497509522	6.11199843583885	6.18619783200992	5.93426323659192	5.75343095634596	6.17007248696622	5.67463013331976	6.68458396877338	5.84549301056166	6.55488361527947	5.71187670700512	6.01186256225852	6.25397597926741
+"CTSW"	6.01411570519308	6.13041523196636	5.98629303404377	6.09535864151936	5.75402919719962	6.19862116708662	5.93565960965741	5.87378636142203	6.07600774916599	5.8278885594009	6.02386692076207	5.69329581029747	6.35144907289911	6.3175981711093	5.81552991455446	6.10271985819724	6.00670622707959	5.88494342491267	5.95995019312143	5.82896589728327	6.2030763496523
+"CTSZ"	6.09689480657801	5.37634961597779	7.0905566162735	5.23939148096115	8.40171831412871	7.83939431790827	5.49501464371928	5.72517429101521	5.19060263442297	5.46875596039904	5.47831590142259	5.24401224814521	5.63117615304628	5.70715058197442	5.36990678006791	5.58834197973542	5.36898208553098	6.92447387334183	5.49628202583643	6.29186218237826	5.98737603366594
+"CTTNBP2"	7.62393016506117	8.03127626650404	7.84851219529122	7.84401609486132	7.96618965086735	8.1676355222903	7.58512001281075	7.69191001172022	7.76708803051644	7.51434700000539	8.2776407359715	7.55410982181038	7.91728919420557	7.83927912039517	7.97200322057627	8.42231430360987	7.76742358407797	8.57811594911996	7.63186259548286	7.61545787448408	7.75452479491272
+"CTTNBP2NL"	7.29402747863302	6.66101691426689	6.12917506853175	6.4078351277919	7.16605184280651	6.8805914195898	6.61098411740478	7.32815305311187	6.27373640706281	6.56588390916829	6.63705848334814	6.6470928113486	6.24182136825126	6.59891917977983	5.73938199458282	6.92790984101688	6.58645114666693	6.91818913045841	6.67038698676424	6.66829879034612	6.77704533827141
+"CTU2"	6.64761081157589	6.92023352524687	7.36338274792843	6.78373810789722	6.67955717171374	7.28445847980453	6.65595790391967	6.6621604963348	6.97219628099571	7.12348870933327	6.80288062223594	6.91305715695906	6.97192050685852	6.82702509405087	7.12388431121459	6.96052173828084	7.06204790862196	7.20861417686326	7.17314627357674	7.03075723613889	6.90413821814938
+"CTXN1"	8.30957630410685	8.84325131985452	9.29840987424637	9.19392929363772	8.93851491386988	8.48403230814029	8.6988085715466	8.63609043397559	8.69897154590968	9.05620438772685	8.57182949464544	9.19495248017485	8.64308043773978	8.45867581004488	8.23123126142096	8.24789081440818	8.80967297077431	8.55261437850019	8.80014931297045	9.21096927642591	8.91077738629218
+"CTXN3"	5.49719913635904	6.0386310585206	6.76834913802781	7.00547501705306	8.33115858403413	5.77159750931579	5.51403668859576	6.47478595508797	8.97529539571955	8.52696982612403	5.35986312043006	7.78108246822192	7.74247095194035	5.83735350370266	7.79847492131574	6.23979213836297	8.49264979887162	7.87469060639208	7.37603851062935	8.21654062644653	8.1538740878925
+"CTXND1"	8.1801938536954	7.20012555749781	8.08205473706782	7.4725059743531	7.43464762666216	6.4002989867607	7.67923984066378	7.8832609517045	7.50996279445516	7.25036382100078	7.15794323268742	6.77645382695448	7.11200017828146	7.45494202280468	7.74922157668754	6.5258963533309	7.32069459781919	6.89359182013328	7.13200278437905	7.94515684113864	6.71561252674182
+"CUBN"	5.63593192886041	5.24387979919223	5.69664383538613	5.50610080855722	5.52151412263277	5.53820853855331	5.591398952547	5.6882342323218	5.8598378198897	5.82767518346872	5.26018415204446	5.4664522151933	5.591398952547	5.94811032836569	5.19065219525484	5.40763071475588	5.49350164969732	5.23037819932211	5.4274730471903	5.78866394107385	5.40847027711899
+"CUEDC1"	8.47903504372564	8.26800252958757	8.1412714236933	7.85702368314091	7.57577846576665	8.39790193315656	7.84458299756396	7.91012820642445	7.86216222159092	8.07563115342516	9.06526907365965	8.04510675259223	7.54953959527458	8.10732233326351	7.75285879972035	8.96176257712933	7.75828695519564	8.85437245503964	7.85939996317662	7.87210520912673	7.85583014419965
+"CUEDC2"	9.84492534166549	9.44808231981913	9.86006443546711	9.40586957777154	9.87654288482384	9.43733918197451	9.52774174001191	9.61982027703762	9.66415321864767	9.87311368581435	9.58502433166948	9.71347068719212	9.40580435497565	9.4631175081433	9.52050732256365	9.66985606915451	9.40220241640076	9.76470905405786	9.36300086622077	10.0439351767173	9.75930472995475
+"CUL1"	8.68538281131018	8.70738024223102	8.82226454266034	8.73584820503146	9.05274139134298	8.46062721028319	8.25205037074374	8.90222390043663	8.97253456267489	9.21123708547732	8.57513688495481	9.06530669233588	8.65569996224175	8.31400321537424	8.73492392081307	8.88922997507153	8.91037327236164	9.05658977858984	8.71689951636337	9.22054184632588	9.05358982228289
+"CUL2"	3.94422166212494	4.57994558300507	4.74445993099009	3.93878219981547	5.4243113174945	3.98621114179144	3.09983756653953	3.86465362766319	4.2145446368662	4.02642709614959	4.2493817728559	4.32155770179922	4.08022174867621	4.05803924226523	3.70327077367715	4.53552366041602	4.08022174867621	4.70417699152344	3.77840740537392	4.63036926594003	4.15108907665872
+"CUL3"	5.82130478626108	6.19286437085539	7.48660369771236	6.13247905294809	7.40769868781852	6.46964488619953	5.73714184386349	6.18147351023272	6.93346757215552	6.95518429398102	5.97247357731732	6.87720367475863	6.28366194728	6.01087669320528	6.70472706541903	6.27800339244078	6.88492263635722	6.99710889016109	6.3586439041946	7.04443101354446	6.5457261547214
+"CUL4A"	6.53202479196906	6.39629834187565	6.14360322090008	6.1926133590989	5.92571792387754	6.18525411831997	6.45695679939029	6.78751845268432	6.2207181107193	6.41100915527814	6.95003206844363	6.27167710363357	6.44916939439567	6.33053727855235	6.2919893303793	6.40630236259828	6.755218436513	6.35293790441817	6.38907325731069	5.95425287871586	6.26423005459452
+"CUL4B"	7.08588470660041	7.04071553442325	5.92337668014101	6.36962895129199	7.10886906477711	6.2300169474959	6.45586191154004	6.99847384719869	6.44746224830005	7.17924593261011	7.07373623715502	7.07303944740054	6.35965760732013	6.39958960282975	6.14117216891384	7.1774502102112	7.03315174032704	7.46392891927419	6.84459345652768	6.94505581853616	7.02623691473966
+"CUL5"	8.9941381802353	8.9941381802353	9.23491711078447	8.69922402958467	9.16486307444858	8.52142623581009	8.43639084779948	8.88934148594952	8.95629019451642	9.0056092418504	9.07988942043875	9.09084885453454	8.42055395113468	8.34291236406021	8.94371495679337	9.15179053194699	8.95199630293603	9.3203655589834	9.00782705557604	9.04250926670781	9.12109033503547
+"CUL7"	4.66760266281232	4.75812405730851	4.87338790596229	4.69952609542865	4.31827216413243	4.94264604348453	4.9911952054077	4.36949128920137	4.76057059383705	4.56151604976114	4.9162442662071	4.57512919121534	4.71223227931057	4.8009979582357	4.43778513633939	4.50096805103517	4.3393069640828	4.28099049641283	4.57512919121534	4.37846226980822	4.65421176211513
+"CUL9"	5.82591451536045	5.97769156469202	6.07777145496004	5.72018242613297	5.95307987812826	6.38814891112013	6.46088777603086	6.04074388401697	6.00704267633556	6.1320950744113	6.0268456023735	6.19749252153691	6.16532774606602	6.46089525735676	6.1320950744113	5.96974802172754	6.10939919751972	5.95347681402656	6.36737253008902	6.01166256995758	6.26424390023754
+"CUTALP"	9.12815135439073	7.09832477342602	7.24155684982448	7.46232803417689	8.0103273347536	7.49661756997979	7.44708370775061	5.96747321310172	7.45294137411425	7.06907523585307	7.72606841312716	7.91375783805054	5.19897309480133	7.65995460217954	6.98624935205159	7.39472577170324	8.05013678671654	8.42937796525566	7.86670814111631	8.24596144282055	8.03321503116342
+"CUTC"	7.92043784815741	7.86834876672355	7.88355345441636	7.54200865984121	7.95188008823483	7.76061453425703	7.37118644121314	7.54602073260685	7.37467868952332	7.98146319534067	8.16789385632476	7.66841506989403	7.28108200455721	7.41405993806076	7.71107012292299	8.46471657937095	7.44305522019677	8.56177705039091	7.69861461168357	7.91465778431185	7.77432701768543
+"CUX1"	8.95290500079838	8.6429186164075	8.56945063091178	8.56945063091178	8.51083544524766	8.97591117605996	8.8674770102755	8.8040353832617	8.4649470196155	7.85603358524562	8.57425685071765	8.27968454978875	8.75633844355596	8.96205231827789	8.73908743888254	8.56945063091178	8.52762177506933	8.74821461112601	8.23792690030265	8.19844764351092	8.06198022551702
+"CUX2"	6.81159684694035	7.98537924904981	8.55388849949721	8.53238920613766	8.64762699572636	7.07156075017696	7.24421662388623	7.37596633936849	9.31989250620397	8.39649231465477	6.96447932720826	8.21580621552407	8.7449561256872	7.30662437940457	8.42748813901928	6.43561819317452	8.56764656863894	7.9530694290782	8.23856234725656	8.82364420810776	8.33935384508386
+"CWC15"	10.0851312993856	10.0684848122841	9.66492369732389	10.1606813226364	10.0752542853929	9.62597306519884	10.009037349923	10.2929443691823	10.240775957974	10.3240659531924	10.32027214217	10.0454716164092	9.89667014274122	9.95136052385828	10.10718443645	10.2461483925147	10.077875267223	10.0279199560646	10.3714721786464	10.3121902621891	10.1619193719842
+"CWC22"	6.84616401427156	6.6654596347194	7.14676312115013	6.84980473945169	6.78912372857577	7.17332184971239	7.04810008947303	7.32326741524417	6.79363143170475	6.39298734427513	6.7100234295537	6.7109779878476	6.94800696790712	6.84980473945169	7.08954679982854	6.70768719116454	6.84980473945169	7.24108489083213	6.85059157872649	6.74092250456171	6.47512348302381
+"CWC27"	8.75284551274296	8.59795072339445	8.97569839635347	8.91916114166367	8.82743475705932	8.9673441825734	8.78234835924177	9.1290436266195	8.93149865495213	8.7277792314803	8.79909322613632	8.68019379292338	8.94266158347178	8.85480665927944	9.20101071723161	8.44484969811073	8.57309437095338	8.67890252066124	9.04343072991296	8.5572198969632	8.27817416841253
+"CWF19L1"	7.58042735968237	7.70844054383861	7.71886013343325	7.48183813288708	7.62432945290202	7.28855515886965	7.2337609930263	7.52945580300486	7.67991185082623	7.86685208205142	7.75129263762707	8.04605347225539	7.12841723914354	7.24934079071722	7.28199661034206	7.93188178564456	7.61607790549681	7.66983303136737	7.55459161856239	7.96559276345743	7.83899844905614
+"CWF19L2"	7.05808758929196	6.8215044469023	6.71210546051771	6.61722492207383	6.71850072755394	6.62649760906309	6.86691294853639	7.04147665408296	6.35718774742806	6.47454039235897	7.09232838071366	6.53608979065099	6.28061594049989	6.61269587257316	6.67539448213276	7.16266283831841	6.67216843431674	7.66348377245905	6.55232657460519	6.3484177062266	6.28881396246094
+"CWH43"	4.22736547798356	4.37652139673816	4.39650553078542	4.3082470506446	4.61783936397464	4.47593750973171	4.64972521842951	4.42385772890719	4.40051532174833	4.3931311702542	4.14825006835153	4.2648041998647	4.28381979345279	4.38857254728969	4.29773902947696	4.31860748941313	4.23898178680642	4.12111016678412	4.22601059320635	4.45709883799327	4.35767852599645
+"CX3CL1"	8.37345492420953	8.6685369423808	9.3393095831271	8.51225731140811	8.88116604996733	8.88392302507495	8.04995564419313	8.30576304295843	8.59312302130493	8.6492880610084	8.54350614614898	8.62086736279397	8.73818244950518	8.34237585588991	8.24169497974577	7.9386748402487	8.81155195738818	8.45879504208029	8.05225436575816	9.06604705729396	8.79900637797996
+"CX3CR1"	9.07354905977063	10.1335782306151	8.57352159797569	8.29752832403135	9.31499031801743	5.69050004291591	8.95421187505487	6.87607827252363	8.83880098027677	8.63811553718819	9.54100311512839	4.9734346753698	8.57165158860935	9.07108538507192	8.25452903549762	9.83001639938491	4.73203745341386	9.61770971963363	8.09428383090867	9.77242576573712	9.59019631350455
+"CXADR"	8.97723024837678	9.5131832672029	9.66515704879733	9.02242980800692	9.48996312030858	9.53705155738935	8.29333554452003	9.02550204794725	8.93951362910766	9.10159427938659	9.72289887254128	9.37899249618834	8.84374797483397	8.70279810374902	9.09678019490503	10.2369030147203	9.08722231539779	10.0509630980621	9.09050672063677	9.22631222996588	9.05446223422157
+"CXCL1"	8.47003109910087	5.73734525622187	5.39842302776329	5.62029566623801	5.66608102856098	8.26463427923981	5.77127192872887	7.10739740421548	5.83764269591031	5.75242645709613	5.47195324318013	5.37675488113488	6.05587721426854	6.88795549069414	5.45382094877163	5.12078358634714	6.25839640291292	5.63828899016293	5.67073063542736	5.64904003193233	6.89548256176429
+"CXCL10"	4.88121202975337	5.08728172341995	5.09122390903668	5.24009359309399	5.09663253180819	5.37810920799414	4.59213896196108	9.54946165674735	5.10904851338304	5.07904920025502	5.19919398102772	5.26773914148005	4.92185928243105	4.94353236858525	5.14606136156714	4.9247013737603	4.9609763463783	6.00670622707959	4.84534528066041	6.09801374940973	5.65412170995593
+"CXCL11"	3.6168703612785	3.37783412178763	3.14086991790366	3.22791368014523	3.31289050281188	3.21298117002204	3.18911246908135	7.72938822789807	3.18777836826695	3.06216197466378	3.55613992572535	3.00123377660016	3.09552622677751	2.98265297763361	2.93297652927328	3.57244917331561	3.05188306988251	3.51375128916406	3.13246005868525	2.89455095974944	3.14716275761285
+"CXCL12"	7.42927491062118	8.03845116646369	7.56789359847863	6.70405800277601	6.98576359095897	5.93487245341131	7.2964261357508	7.2184434771557	7.20026234056461	6.69220086479398	7.37904190679808	6.24679129924973	6.71764987239769	7.03981900598441	6.78053867810721	6.97255354459282	7.0703424549637	6.79668368021339	8.79716271108902	7.34572698298232	6.45850307860608
+"CXCL13"	3.3274915975449	3.55148736717537	3.54354434548477	3.78220293498256	3.53639838113023	3.83707846189222	3.8402351626184	3.54119296120959	3.6722286172648	3.46067401645213	3.40264900749068	3.69060188665635	3.41949287597292	3.74235217017352	3.78220293498256	3.49126581034155	3.72429179980134	3.3404377108901	3.64424410780885	3.73860944370775	3.59799055501385
+"CXCL14"	8.06469302774292	9.53307021130774	9.7363473824194	9.15882037214704	9.49890377302886	8.40562934348941	9.49757474442709	9.25739910970464	9.49567693359556	9.13706494044678	9.16024702806519	9.52605645201461	9.8472759258157	9.25759559658681	9.38585228071171	7.65903211719714	8.87718227417716	8.77921592169188	8.41507096155336	9.80321551524976	9.50721878795137
+"CXCL16"	8.39086419620783	7.45187529845963	6.57086349970596	7.28853805487333	6.9746670403168	7.47603589026329	7.41748131178192	7.64992849606004	6.95616250294	6.95423794940625	7.65446067659416	7.2843476795844	7.18762819954323	7.59764337647239	7.12832609353497	7.48906357827542	7.63419814019841	7.26595139368947	7.38129654122435	7.40579637595913	7.69802540460795
+"CXCL17"	5.56305250110054	5.90437242910319	5.8434639655718	6.03153175762371	5.9190368865514	5.69767522354927	6.16244820273357	5.7662511083396	5.70925818586679	6.17045122214829	5.84680436663177	5.82604167343682	5.95678306536732	5.95670507868781	5.9535873578339	5.84680436663177	5.96727846249147	5.63474855957774	5.81384915936112	5.5829262098017	5.94321618394365
+"CXCL2"	8.05506772534345	5.65468454877594	4.79107303643248	5.1410965298214	5.65112755424458	7.8742139434052	5.13693987485071	7.41203073403089	5.29572233891614	5.44061319479109	5.57121399197689	4.94371305222169	5.17531102246592	5.68804565999247	5.03448446101393	5.37682447631082	6.06322923261399	4.67903250098127	5.73442631059127	5.5307979241905	5.2242822226482
+"CXCL3"	4.63989587280848	4.25924501880851	4.64398751491187	4.32173273994589	4.7353893475946	5.43586756035277	4.66362437490094	4.39267410676429	4.33744306974894	4.49665310682498	4.53997844785326	4.61852471235227	4.60981172769158	4.86869203727165	4.21749257809528	4.23132416428618	4.37465595284198	4.2258802006073	4.90333351276525	4.97329415653213	4.2390147418222
+"CXCL5"	4.37258043192862	4.33184494020169	4.21042959865413	4.502222860737	4.26877260689704	3.99703022620923	3.53361232275797	4.34227119376949	4.00040458674044	4.16325644402003	4.94353236858526	4.2192180762464	4.27050103127285	4.15268341017185	4.40299354052788	4.23157997711923	4.407562893588	4.07171518902161	4.1494061247633	4.02979417842556	3.97245943123832
+"CXCL6"	3.11082734735109	3.14790872020218	3.20219804292135	3.08337820420089	3.2512388670929	3.47654052085675	2.97122721078454	3.40756587392548	3.20310936638575	3.17027070085517	3.24332966963709	3.01449908281559	3.11124598721288	3.20919538009521	3.32110196824631	3.0965592421285	3.11649321772497	3.1235742642973	3.29417013140601	3.41780570866074	2.86611636260436
+"CXCL8"	6.50018448162888	5.28487910506454	4.86699869071081	4.85375364508814	5.28487910506454	6.72692874763115	4.82614822850747	6.8849458776323	4.7754814426393	6.55913528910292	4.60658696843651	5.16518057860172	5.12393862859143	5.41158953861742	5.36070174796082	4.73820730445477	5.28639132091728	5.12715307244992	5.55475753776349	6.31357437999977	6.48769841710178
+"CXCL9"	4.83851391392687	5.26656741398571	5.05497694948843	5.25215055127394	4.95629615629977	5.19545870861578	5.7077989542821	5.58025849750426	5.51155358484307	5.06329189977549	4.98887589215741	5.18031243505578	5.25255474757163	4.88545922300394	5.53192845706317	5.17547461685833	5.27713151827599	5.03352007149959	5.43181999569352	5.17981107293827	5.79247669270109
+"CXCR1"	6.84631433404072	6.696804293798	6.59029751961138	6.99182835020796	6.77077101863959	6.41212781986482	6.78653861113395	6.83950536204454	6.9676101859831	6.83657847678666	6.4776288139689	6.95471696588254	6.82466613513725	6.73833579171416	6.6930505443106	6.84721937543116	6.88279266642682	6.82390002428263	6.69620684452512	7.01406799605105	6.87922056530913
+"CXCR2"	4.04856237091077	3.50037154591132	3.65616354261246	3.58374390034409	3.72421426249425	3.76649585251223	4.34510594843623	3.5985855354401	3.48996989094502	3.86308545429296	3.52414093417378	3.49513735848649	4.05540211700787	3.9660072090085	3.80583579698706	3.36560010406572	3.79149862292255	3.88231719682033	3.8077603295828	3.95395210350349	3.52017667354039
+"CXCR3"	5.88662058556464	5.97977472009366	6.26299682345208	6.25075928673827	5.87447223382994	6.79195472819508	7.15993304250292	6.27169550656058	6.63417973521487	6.45578353656453	6.05419796886827	6.28728200923485	6.4570553321842	6.82474224071075	6.42266272269616	6.02201266358291	6.35952192036155	5.95347681402656	6.56981573071233	6.34994940874038	6.41701248499333
+"CXCR4"	5.37099399209654	6.47404725677089	5.97510585026587	6.08685978352101	5.70390678315999	9.12236710405175	6.50523828113721	5.79961083035092	5.97374124723137	6.68012531839205	7.15437347453437	6.08046090992499	8.53018179365369	6.56321932080735	7.72087061618233	6.51698872803721	8.48153583964727	7.02316777019659	8.56851819255741	6.94202762924746	5.02722486246114
+"CXCR5"	4.67077177594912	4.78057709465034	4.84102036273798	5.0044951206104	4.72729799503534	5.27428642912524	5.42426431863198	4.87196542322328	4.9146753939691	4.74970180579307	4.32695073198131	4.98386036688703	5.15500441099464	5.43079767476843	4.94649947537795	4.60655681724319	4.97350084986738	4.43780477141404	4.94411291422362	4.87598852855677	4.87598852855677
+"CXCR6"	4.75308173607731	5.16449473968184	5.26420354612785	5.38775134215292	5.05333564453996	5.35942415939892	5.45341684095904	4.98098450220715	5.26678434747729	5.15383753712349	5.08961543800521	5.14813517784849	5.13161772472663	5.52473509996913	5.17522331882095	4.74919067667491	5.17522331882095	5.04083107061804	5.6355314626734	4.82241454863778	5.24499013804624
+"CXXC1"	8.54550869029845	8.21101944376699	8.67697576842744	8.47297237818744	8.02747277224453	8.48537675121908	8.401482548896	8.22100226270438	8.24291817553221	8.19753167747478	8.38866038322553	8.12339565586219	8.1449321527685	8.52927183304919	8.40131198573691	8.35190480307186	8.02196677564188	8.61464408696088	8.22612454968828	8.24100503567043	8.23096496276745
+"CXXC4"	6.54730989714152	6.70254586065442	6.83826420474745	7.12056425705374	7.15367432031124	6.67077617828471	6.48216451871868	6.68915196924441	6.64889423377496	6.82025446942305	6.60534213153037	7.13231779118507	6.44219428239037	6.2592136114627	7.10344917653644	7.11057823454536	6.86663861137844	7.40651005140253	6.86183679438033	7.12890862623303	6.85567778912912
+"CXXC5"	9.57079683834406	9.90234080496827	10.1290021711707	9.59422736861642	9.91860159445658	10.1052722428625	9.00839613718287	9.50718618252731	9.52081438529382	9.55580724933704	10.1103801538837	9.86856918152229	9.32826568658238	9.07603223418181	9.52128653039057	10.0688915580087	9.60954184630079	10.0111035347036	9.69050759409866	9.67389778557568	9.41186890690134
+"CXorf38"	7.32746133436411	7.31779364047538	6.58832826391495	6.78331224141729	6.74550204501497	5.93214013431125	6.62362263727068	7.03896160938624	6.9248183906219	7.18997238780345	7.47933836166654	6.95987575579823	6.76794285542633	6.83599594090181	6.66350957400727	7.13972061024463	6.65165240415737	6.94871677620149	6.65611950742194	6.94982862491583	6.82174371027959
+"CXorf58"	3.54492796509314	3.54492796509314	3.60287227232529	3.87260303040061	3.54095991523389	3.68130708346884	3.7585548824962	3.48958864368751	3.71397437065691	3.62589837570552	3.58657035912302	3.62589837570552	3.61058829237169	3.74235217017352	3.78855273429901	3.78411855800362	3.67216776847921	3.50874776239314	3.9593706165681	3.41205444725612	3.62589837570552
+"CYB561"	8.08507917204348	8.50181774855582	9.39763350810045	7.872553236687	8.7693676491992	8.34095395960056	7.49523297865172	8.05350662784549	8.48260214306278	8.84713186032563	7.99499766158015	8.76587788274905	7.69745049094862	7.35547356533356	7.77612717147427	7.5790246717517	8.97447285253816	7.81021755854543	8.36724663117613	8.98106858234599	8.7347965468069
+"CYB561A3"	7.90147849266155	7.616840586421	7.55865527257641	7.43966205118433	7.41198776878813	8.18824301886282	7.65043822429144	7.39344410090915	7.56629312485478	7.60990591203948	7.72179202532697	7.49806840603936	7.6309521581188	7.96264326041924	7.52713824990048	7.72127894425826	7.41498659560878	7.75497151568187	7.34492066689342	7.66774632832548	7.49141184869092
+"CYB561D1"	8.10930295466328	8.2025982870307	8.33599233789687	8.16610571321996	8.22572270265146	8.35679626445136	8.11694347489342	7.85099144342264	8.29311686502375	8.27223159810575	7.82135955822377	8.04117519601887	8.39463789764293	8.21955544814697	8.28168245359379	8.32002223105342	8.16197518006585	8.27372599394366	8.16048364887314	8.41545322218557	8.17531057613331
+"CYB561D2"	7.80119332413423	7.89427742927587	7.58106728190472	7.35294939413566	7.73138535997255	7.50011805650422	7.2467451992875	7.26414917955415	7.40359666135639	7.94756832546813	7.96593227090201	7.60145980242882	7.26282348057845	7.42795584557436	7.25519876631456	8.23387720816199	7.34878228884311	8.0247778066068	7.34893259487384	7.66798503527045	7.68310120380346
+"CYB5A"	7.13497798605798	7.07460022642914	6.79132692621705	6.95210381194726	6.98713884241843	6.30997109772858	6.78713063009933	6.99639217752401	6.75822711188838	6.72414954242023	7.24459920151413	6.89210581622215	6.99943388368103	6.50894555305727	7.18383618855374	7.79135779181902	6.71563745604977	7.64020908236543	7.04378698327662	7.03492308146851	6.92001117220873
+"CYB5AP4"	3.47425839627583	3.49717687693181	3.58531745347522	3.42708164445226	3.32937689566235	3.82475421278129	3.61966762684183	3.48109235109433	3.60622119492757	3.27772591712504	3.48320062933858	3.50310234788329	3.45282942616747	3.50310234788329	3.40642030925264	3.68847540650913	3.46965187592251	3.5940220400786	3.56851559140145	3.58165377329355	3.34990683448594
+"CYB5B"	7.2098134700123	7.10203103940755	6.90524569840447	7.04755799796968	6.9884080588321	6.04981717946903	6.49812215503428	7.50115144134144	7.21786790433799	7.10636862316388	7.02216315986215	7.07513210992942	7.05804212257016	6.68658620267005	7.51255316459216	6.54146808189856	6.94782738357088	7.17415619142892	6.93754389187906	7.12961085164591	6.87218257688767
+"CYB5D2"	8.00566259233997	8.14881028388903	7.97204474364504	7.5857238812094	8.03805436425608	7.80584907207054	7.58581174658147	7.75571277671896	7.78868491288528	8.27353777007746	8.19027228356429	7.91413650550669	7.36302805916977	7.87579097079281	7.38120451964037	8.38352501290249	7.50452101616995	8.12213330715205	7.56332077732911	8.08540163843388	7.88676199082165
+"CYB5R1"	8.94773551105075	8.69288721543509	8.85740128796042	8.11910564169815	8.71264897297493	8.43147147381015	8.41179335160717	8.43842127063434	7.8938353400622	8.49244998227919	8.74773399712942	8.48733232496304	8.07506611361455	8.32698427571569	8.01082842817755	8.72848327313531	8.36525504022385	8.91987470587575	8.16203785405134	8.93979776759749	8.48290042562941
+"CYB5R2"	7.5321366532695	7.89292850678717	7.63225098418395	6.94723256132437	7.60794038702841	8.9150186542969	6.19238869872203	6.53851495905203	6.18587111155747	7.26327446903143	9.07713844903571	6.81391502525012	6.94519126261238	7.22626914564044	6.32672737151865	9.47073380314637	6.80678647305894	9.03816612002843	7.08836265566171	6.86757036967478	6.94776889534682
+"CYB5R3"	11.7057849970508	11.0271095147174	11.1761645816297	10.8558187548755	10.9869710142698	11.2390664349974	11.2118340880385	11.3526696513795	10.8348786727845	10.9211179428171	11.4078743742797	11.014221255233	10.9660430687099	11.1867138423086	10.4087576984138	11.012115905059	10.7381910950501	10.9369659473112	10.6092956042661	11.102420529497	10.8631612300162
+"CYB5RL"	4.46826352686757	4.65095411827083	4.40643122479928	4.71721641242413	4.85439413911746	4.67569487082649	4.71721641242413	4.34173552752999	4.60164656505969	4.83532973254272	4.64905017290818	4.88838622031417	4.9012694641472	5.02726890663553	4.66309177277099	4.61541922249421	4.72053844529049	4.71721641242413	4.83698181931578	4.64537507792479	5.03819826724772
+"CYBA"	9.45575306448989	8.04911184352845	7.37767530181644	8.28061274779024	8.00690019976258	8.26128167967846	8.12672228656427	8.41984708188146	7.94960509661172	8.16206240631296	8.04858507291003	8.18089614415992	8.17605895071779	8.27480370480141	8.05682383538718	7.6793773593707	8.03764590032459	8.08520161170353	7.86691753992009	9.12604397797781	8.69426717354317
+"CYBB"	8.47615994946251	7.62428943703687	6.32929158158932	7.15190840639436	6.94154009390827	5.83185553762576	6.8698945893257	7.09967394356701	7.17357068497933	7.20696785503376	7.01275755142469	6.62458032257381	7.67213180399088	7.12975890579251	7.35049430791377	7.45219427561993	6.99630719788409	6.9040022870235	7.06130857882221	7.98079148160951	7.91541324845914
+"CYBC1"	8.2827467680772	7.72678691137633	7.73096290692539	7.32919688015203	7.4973199114145	7.80099823713882	7.33258294606781	8.05747439097299	7.00757552493218	7.4830764483207	8.03940788279484	7.77670825786755	7.10612062483509	7.29292564549583	7.06806548214631	8.19361416749723	7.39775274533231	7.81669056906477	7.47584475843622	7.42557673540629	7.92771023473311
+"CYBRD1"	8.87282152717882	8.43717541991996	6.25895147906408	7.49272755066809	6.93249793007217	5.94591695557357	7.79470153697514	8.74165498745409	7.38479431786751	7.52357811995897	8.62105883442194	7.2208483583498	6.45297582106209	6.8690071166333	6.37293181095972	7.52029388534044	7.25966582366955	7.7449711521014	7.93857012283305	8.04129247311286	6.52032637131433
+"CYC1"	9.52953448652434	9.48374789499828	9.35525270614581	9.34174905717901	9.90511174593099	9.42905380475698	9.4685983533976	9.72718294561544	9.60516047124182	9.91116171410762	9.42833417212613	9.75201419521477	9.35352117312692	9.33401387918487	9.47062695960831	9.64741910074435	9.47071433409389	9.78264893621158	9.28101047104879	10.1224730812895	9.78973139910016
+"CYCS"	5.2726818716692	5.87798717849705	5.46009103223859	6.90806468252417	6.10615942008732	5.4545730793679	6.14785185607603	6.44181442908645	7.47877061756429	6.83529613996395	6.35374288094815	7.04642989266523	6.72658105714359	6.27877261228145	7.45282455641524	6.20725271491823	6.36146658785224	5.00208819659238	6.5723650743837	7.37500400024094	6.95308156586386
+"CYCSP19"	3.0391794928643	3.1145444812983	3.21665681988027	3.20901276928803	3.12675222236712	3.21320911315543	3.06217964999678	3.24990267036881	3.29347430001779	3.44072675491289	3.1775629850733	3.34906687075921	3.35482804848592	3.39298023557913	3.22563443871028	3.23151806623663	3.31952994455461	3.22931397239729	3.20901276928803	3.04525097304704	3.28577772839448
+"CYCSP33"	6.65151878326626	6.53280559091975	6.42841118944258	6.71597315497924	6.60303461486404	6.45814603727725	6.59396688429372	6.40140385532278	6.76337017271309	6.70974255652573	6.57325168322659	6.39247627843409	6.68422907282889	6.62723916299938	6.6253284867312	6.42637503827652	6.6299450120777	6.48520209756168	6.56568459604499	6.5458099198273	6.65261018922795
+"CYCSP44"	4.47832216627115	4.75789890500808	4.87278823902779	4.62305505095612	4.51513685738926	4.75789890500808	5.41858317237475	4.4839363882531	4.67608309296946	4.84780718508514	4.75789890500808	4.77321566219107	5.01927668871185	5.05165934604506	4.80837812339311	4.75789890500808	4.54956275874922	4.57512919121534	4.75789890500808	4.81201183894626	4.89111771532407
+"CYFIP1"	10.7569005884412	10.1431520096864	9.85481808114694	10.0151166616932	9.96008409893368	9.69501922393519	9.94333995136867	10.175396582377	10.1569335011385	10.1184645937845	10.2162913546742	9.65220507297288	10.1171835863716	10.1204926824786	9.77166235879732	9.85082447727152	9.93265575831445	10.1894110315566	9.89146695604977	10.3524655460032	10.2945588127314
+"CYFIP2"	9.25647207513754	9.95759463598232	10.3883258654798	10.1669969927253	10.375711822474	9.38656731634588	9.00178340512691	9.71674530264101	10.3956538545011	10.3436253818699	9.43887861979953	10.2406958541879	9.93191306119161	9.51045462507767	9.96254163075339	9.28871854412365	10.287410127611	9.81317539838627	9.796155209261	10.2563966743213	10.1863860253932
+"CYGB"	7.98129719454038	8.39406917358928	8.87430839446547	8.01749400780122	8.53108273967017	8.59034260498299	7.88355345441636	8.17670372672384	8.12076059387501	8.32067630282537	8.19048916877889	8.60622732722862	8.43072890085305	8.45319780542603	7.82820199068481	7.44026081546958	8.31680475972742	8.08157971797839	7.74083733915868	8.70001811069908	8.56699283550197
+"CYLC1"	3.41603442714824	3.44937206851476	3.22569488504146	3.43477768479669	3.18017625384602	3.39376128922846	3.66578714483813	3.5489398955081	3.67026024617516	3.30702832629613	3.08207607112933	3.35537922868586	3.35075535767138	3.62023280479086	3.37899471523463	3.45564783688919	3.4152690848664	3.30989912665782	3.48956807064872	3.45997678122737	3.46924752939726
+"CYLC2"	3.66544960141201	3.59218851472525	3.63034947448255	3.44657420440737	3.74083707355366	3.44869308700138	3.59035006425724	3.51943634186783	3.64725689630275	3.42551120689738	3.53687997449198	3.7584128919804	3.66838617116164	3.53851958420037	3.48401303533419	3.59060445284148	3.5897821822612	3.41395243612523	3.31615214368954	3.50401211956146	3.37965004139278
+"CYLD"	8.94476482324108	8.47387441432088	8.12698027205916	8.2418109853686	8.71794213197664	8.72418260115015	7.9859118380533	8.53808938962191	8.319048827314	8.7252477558077	8.58658095143322	8.65365187793728	8.07895406562517	8.02688657538485	8.5682922867011	8.65534347130127	8.61246942234862	8.83278307896503	8.62456501108354	8.67395064756428	8.90743931446237
+"CYMP"	5.12206634473875	5.1979533859153	5.30006506778856	5.25487967733832	5.11859863347276	5.63426907109969	6.11950235969942	5.33467210107591	5.4744573451603	5.26252919225553	5.1592112171496	5.26590355278674	5.40195283498713	5.41818237621814	5.06404032993436	5.10050304169266	5.25081797947573	4.9554462460151	5.16532250879592	5.08211872356889	4.90601099409208
+"CYMP-AS1"	5.91037215548377	6.202143603654	5.86745058117988	6.33467204048016	6.19981042212815	6.43007123795473	6.36753254055173	6.13028101226453	6.30312038628357	6.24262519522093	5.90501871644739	6.13028101226453	6.24239185630039	6.36577177664892	6.05148565579671	6.30652683621927	6.20585984939468	5.83461499242502	6.05901465068662	5.91604410544492	6.33183064829365
+"CYP11B1"	5.46377112864124	5.59699545007391	5.59699545007391	5.87289182139006	5.34914938109514	5.46308933056022	5.84009686019572	5.56719873301042	5.66203872768641	5.61013119479803	5.59699545007391	5.59699545007391	5.60243192105888	5.75064450588911	5.89344796821435	5.49334802474237	5.6355314626734	5.55886477309424	5.5956746647558	5.61221402956005	5.77296348371755
+"CYP11B2"	7.62970201086698	7.73102913354437	7.92595309427532	7.8653603368753	7.61265034176549	8.5103745797509	8.80030342024471	7.47990008448262	7.91109844587167	7.86076906048295	7.55296133506843	7.89069554315238	8.19811135888766	8.37465210399513	7.87241466209507	7.57083716800251	7.89649786010854	7.38448340876106	8.21782378808222	7.88280639532903	7.76785057309827
+"CYP17A1"	5.08868817395268	5.22623523524248	5.0533691254983	5.55252444053749	5.34810385551279	5.5941733389914	5.65802855432431	5.39910600767627	5.51021300526178	5.05076261636198	4.99782825896907	5.32634824704914	5.31210231212708	5.70033260338747	5.20670038964014	5.34810385551279	5.38100901734399	4.7939943459758	5.30097962000209	5.42562615134221	5.47323163183006
+"CYP19A1"	4.17460575654504	4.550744410611	4.28370476771521	4.27076190181838	4.09897651918271	4.49974338579193	4.3230848894766	4.24080044344164	4.21172720878458	4.1191384553436	4.05377281484901	4.00198238347286	4.05895368634365	4.20547534244187	4.26441638049796	4.17809152089392	4.10848342298378	3.87161419101927	4.10702890764704	4.17809152089392	3.9996319405316
+"CYP1A1"	5.30731323024075	5.73971809950586	5.79601780183504	5.62571955153847	5.5941733389914	6.13693137822108	6.1617899471229	5.46878244535869	5.47724459897725	5.50539912333502	5.26931565365183	5.44830649796001	5.93212138219529	6.18334923271851	5.7272404140491	5.68253981515632	5.9608703153296	5.4800873588931	5.61646485428894	5.63006588910225	5.60523473574869
+"CYP1A2"	6.44462388154056	6.84377359403695	6.44227744872042	7.11658751369586	6.71857741966359	6.80988505218093	6.86098957859186	6.74539642359874	6.93927755502293	6.73382460431576	6.80685737684795	6.85331320306114	7.03160073138912	6.68931424188096	6.79507960494084	6.72677074682618	7.03215648075058	6.33632309835325	6.91836831227235	6.20387398144954	6.91161047768865
+"CYP1B1"	6.15027823543563	6.24624496249475	5.44046570597934	4.57018250120868	5.59216033089627	4.89492742225847	4.41384329912718	7.11700031898614	5.59407991470561	6.71626989215848	5.03259690293283	6.27047256506841	4.95190833622106	5.26590355278674	5.19087800942308	4.9408333139895	5.37382827010688	4.7939943459758	6.36410919347371	8.05876368372709	7.14302038721268
+"CYP1B1-AS1"	3.84054160309622	3.94455582282733	4.40643559580454	3.75369071533808	3.83273278890333	3.47298025610708	3.65115358064531	3.9066403583813	3.92578941418091	4.08135307105001	3.69591131812045	4.25126363029602	3.6944277017722	3.69089779284221	3.81685344205683	3.57714809846727	3.84054160309622	3.50361479008746	3.97733875038344	3.9667787506907	3.88139766746422
+"CYP20A1"	6.90702692586257	6.7707840294365	5.75717471018901	6.55614368191586	5.83581569050832	6.06228624374722	6.83048678441051	6.35633563055524	6.11973228906706	6.43909217491704	7.01559639398074	6.03941758520597	6.6764996043733	6.46565813841629	6.54823001452035	7.07484406575444	6.11589941851605	6.5291692915193	6.58305817310599	6.36238274199687	6.35012681863336
+"CYP24A1"	3.21288420857005	3.32616789953002	3.22228544481187	3.30362956437376	3.17060261855207	3.11568408330405	3.20159672864053	3.26499456959597	3.11901312638609	3.27472723217882	2.95355381572716	3.42613923469303	3.37726437002498	3.17060261855207	3.14035236414358	2.99947105339683	3.08026577796219	3.23461825447573	3.10717671700544	3.17060261855207	3.10890244166623
+"CYP26B1"	6.86613882405302	7.92615122312747	7.4279027794072	7.26264177524005	7.93091505255987	7.1014138686999	6.01419564522632	6.83288502145451	6.8383806229948	8.70689684066168	6.22763982706296	7.37124478149912	6.98559710660891	6.40181672023981	6.83596893673312	6.54117558672632	7.52462277923034	7.34621729801494	7.05250629666524	8.93927681836442	7.23496972185025
+"CYP27A1"	9.04526306028615	8.57791232207446	8.42186820611813	8.41804055507754	8.15581293496879	9.05635968165198	8.53085320519662	8.42068779952884	8.04695599150854	7.98547019073604	9.20462560953829	8.2639126645281	7.94281616314868	8.42482734595641	8.09856564718358	9.74144600866253	8.24126999350562	9.24540536385685	8.42217949213895	8.05038724308667	8.05820960099684
+"CYP27B1"	4.91277344569431	4.88777994906477	4.78759609674752	4.99661404531033	4.86787663311833	4.71991082220578	4.70075093764706	5.11447581505117	5.13674578800035	4.96772382272737	4.54317740719723	4.88588174604427	4.70919005894167	5.05801466800489	4.99712651184272	4.80373874346144	4.879755604757	4.73830804675385	4.88777994906477	4.88777994906477	4.94097401253366
+"CYP27C1"	3.04234200222324	3.11006990305601	3.04385858196007	3.04796269145331	3.29754732655015	2.92773258739654	2.98549873216651	2.95718399424286	3.3134959034443	3.15797651101245	3.02964882017646	3.04385858196007	3.0231538004503	3.10271875687885	2.92305105068387	3.22394981580261	3.05021502094084	3.0178573774044	2.97963846569539	3.26794757129497	3.02515752258811
+"CYP2A13"	6.82711348507403	6.75803020627355	7.09839896723001	7.02032039977487	6.7574461668763	7.47842322382087	7.81397306285408	6.90710132098211	7.01273561899231	7.13807121852494	6.70399736401102	6.91581827375279	7.04929357282411	7.50588176341619	7.08954679982854	6.85643150730529	7.08332419951169	6.81477528236767	7.08976410347881	6.78668623585514	6.89969292042164
+"CYP2A6"	7.68340739857836	7.75238174399866	7.71245882451332	7.77662639821692	7.57803152829696	8.03764590032459	7.96488103505784	7.59854118544847	7.89313336862279	7.79719457829888	7.69464585928663	7.74738296209185	7.88907307769824	8.14854802250545	7.78733054984818	7.67119235943988	7.89043389308259	7.34009318976719	7.84240475608355	7.4268705360069	7.88572315582477
+"CYP2A7P1"	3.8135125694563	4.17773663515687	3.88881214682034	4.25309037531381	3.83534551427523	3.99321485246642	4.30347538217286	3.80293106941859	4.21971147402758	4.33605179314565	4.32437755595619	4.57005607599998	4.40879764621984	4.14782175609846	4.25738897985855	4.17145943635774	4.20982131676164	3.95671646835582	4.20705878091583	4.16296543259181	4.37127318893579
+"CYP2B6"	3.65728667062449	3.98052506258378	3.62144757088529	3.71442257546242	3.86394993005012	3.84232318792524	3.57434930301427	3.58363393470469	3.764819644934	3.77234401544781	3.91060889891152	4.07293353458393	3.72486496975874	3.76649585251223	3.66293956112024	3.78063126280788	3.96779852709763	3.8604200103992	3.61696182734353	3.88509171534632	3.72702383935777
+"CYP2C18"	3.99411305653316	3.92017150126178	3.78657527023594	4.2082548891226	3.94107890511536	4.06582334423651	4.16453131900903	4.00816130077235	4.01812468804223	4.0311433315773	3.50117372901666	3.63478996128065	4.04642379299095	4.3530414546627	3.92822910464527	3.98354162559774	3.90482075830208	3.516698993779	3.93668319481726	4.12106765755334	4.02331010023181
+"CYP2C8"	4.31100679314618	5.17111250590251	5.87974272841236	4.70093874693008	5.31085921744476	4.81610360075673	4.66564780059121	4.6023330982607	4.23401128356382	4.74970259062702	4.33118716936053	4.63082987669701	4.70910759398848	4.7418798010525	4.25169965143764	4.230643430839	4.4315661298355	4.95385956299146	4.74184762232508	4.73032999991954	4.26413029110502
+"CYP2C9"	5.73015592336619	5.9141559469785	5.50661234066572	6.25675235793292	5.97619153187988	5.67606131460178	5.8157466814883	5.76951484000594	5.9784615206203	6.05888880592569	5.62259646278022	5.91951202666677	6.02789736666907	6.13777222392401	5.83804587709727	5.91951202666677	6.00670622707959	5.47964070094526	6.10270067820112	5.96393769965851	6.19111823984456
+"CYP2E1"	6.8625312678133	7.63321268195457	7.92400044306945	7.06510972349105	8.00056565900461	7.54482101681158	6.66900951264945	6.61620117866378	6.28332977447546	7.2732706053952	7.17296327094142	7.69461046431998	7.13283907801246	6.8816393809898	6.65497468361394	7.19885884258473	7.34524488700387	7.45518683697657	7.0267131983498	7.73223268899093	7.45365639703371
+"CYP2J2"	8.75757024411413	8.25164035688948	7.86679417525634	8.48467859458837	7.85633013886866	8.12522801868978	8.41334644724676	8.79180584344843	7.98827207923446	7.62608604515488	8.80258598811776	7.94161680712477	7.40836248998175	8.19097096703833	8.03376681690797	9.0579493288679	8.09792769436453	8.96181188266584	8.11119364781871	8.1133991717479	7.72130500289456
+"CYP2R1"	6.93015529449738	7.07738973369125	7.3992411655719	6.74745646322963	7.0525209423466	6.52969756923358	6.49727136914984	6.75910204961642	6.40244309804612	6.76312368694111	6.81294338801741	6.56695081816717	6.28256005028761	6.81294338801741	6.77015475387019	7.16520775934502	6.7143929076538	7.38906627346188	6.83981987271698	6.8402674575809	6.64319239277975
+"CYP2S1"	6.11244894893443	5.76273336930107	6.04834681375907	6.20866008511568	5.97653077868152	6.25621546439782	6.36059297954424	5.90848274163037	6.0543066513455	6.09055115968469	5.78075437101221	5.87315412704382	6.15893438411947	6.48095578425272	5.84943810448095	6.19589338001045	5.89159024808402	5.73758113706172	5.73728905247649	5.93366325950691	6.46508304372001
+"CYP2T1P"	5.60586780543337	5.36709374946409	5.46765261945588	5.51671685053609	5.5416714245623	5.75258185493787	5.61179258362992	5.5941733389914	5.64493806562327	5.65355387338474	5.66679788671483	5.3986079251051	5.63400274426756	5.79976601284619	5.41057204029221	5.8046063198732	5.64219218970849	5.61955659981102	5.83957905103386	5.09888114907949	5.5941733389914
+"CYP2U1"	7.8791830856771	7.0690779463786	7.12885527027867	7.24250267686835	6.59536889758872	6.89170008644194	7.2279678321309	6.69039217170638	6.98901256413795	6.79871920233804	7.32239428902469	6.5606018764971	7.08147147634207	6.95703483007389	7.3693185947213	6.98901256413795	6.93465236244587	6.87069977194399	7.34847358890633	6.97846114757409	6.70867355936575
+"CYP2W1"	6.73234695484724	6.66574587065376	6.79362467001199	6.79512326246823	6.34063287879888	6.67377138537954	7.01755898345196	6.6252412338652	6.8383806229948	6.83002321600275	6.7326387020879	6.9691872826754	6.8846938226405	6.83884156171222	6.76841525220006	6.60299856929615	7.0412648613234	6.5345198822994	7.00836930634852	6.22897948628148	6.94040135685726
+"CYP39A1"	5.1706065700803	3.67107507853479	3.67762157928421	3.86153647081556	3.41391744246623	3.87563992560847	3.9385149809489	3.93790281447362	3.66311356133023	3.5623082228039	3.77840740537392	3.33845617202225	3.85096760817366	3.92282657494917	4.54672963565558	3.86307696972143	3.61776669716905	3.8020450856332	3.96783821474299	3.39294940887514	3.42539710984943
+"CYP3A4"	5.071764224409	4.9000007436078	4.95513332244699	5.35017003627726	4.97078882060694	5.4004306138425	5.66150734525551	5.21762657602923	5.08856185379443	5.3666427018036	4.95395596793943	4.81896664261197	5.36221145092205	5.47423119803233	5.16229388291488	5.11825960486019	4.81657885317872	4.6857219660896	5.37373036925363	5.30918070843266	5.23941542309982
+"CYP3A43"	3.99223959420735	4.00546357699803	3.77382932222981	4.2493817728559	3.90339602061949	3.90339602061949	3.87071659193072	3.970431145271	4.03440786502843	3.97664395226194	3.91129312959902	4.15738228875807	4.00357436776709	3.98985178617072	3.71974622719599	3.98436643123188	4.21749257809528	3.48208939926303	3.94761690223049	3.67046770858408	4.25822940459005
+"CYP3A5"	4.19264215011829	4.3703964778965	4.45098570805465	4.13330937022722	4.31213305108108	4.50295713562515	4.15733795113878	3.96858644129374	4.31213305108108	4.53739754630891	4.13017397936603	4.30559947630908	4.07792606942969	4.11474288672531	4.58187398424036	4.64689438136158	4.38176032526688	4.05440130474642	4.31213305108108	5.02724438788711	4.21563818332354
+"CYP3A7"	6.57522759845789	6.83767440109919	6.69988354547283	6.83496770974379	6.72891736690693	6.5291916908479	6.73524082392091	6.74219132852422	6.74219132852422	6.7900535643906	6.47749011124011	6.71638137551369	6.92099585126476	6.95703483007389	6.83992610456705	6.83090675701093	6.66911474008074	6.47574847143672	6.82525869232766	6.47895475289127	6.81643837272117
+"CYP46A1"	9.80559553286843	9.96604189510899	10.747728269414	10.1395591751678	10.2532846443882	10.2831921150813	10.0988443791224	10.1327034158475	10.3241071425736	10.0741073261984	9.64530261062284	10.364669569269	10.0928316285058	10.1418801434584	9.88539356954555	9.26629891798886	10.1123296182224	9.9200951296762	10.0223103265236	10.7927327809909	10.0617317323199
+"CYP4B1"	4.79597935354793	4.35320384457474	4.01615771219074	4.2493817728559	4.2611423811952	4.57379858622735	4.86215947279612	4.27355606156007	4.3944293938787	4.3822799973345	4.04307732915551	4.34565584949899	4.55890670400868	4.78577064501884	4.35357000063586	4.35450422298966	4.38868458282386	4.03185194997456	4.42719206765829	4.42431617447276	4.07874391783834
+"CYP4F11"	5.09246940831059	4.63300170404298	4.29363337882342	4.20297813703917	4.44325564201243	4.15015148805028	4.28348969734981	5.39890778832793	3.92035225945343	4.88377263284244	5.53097188251914	5.15579946840775	4.20954984641821	4.27383550913354	3.53932555628666	4.37361592312733	4.63414558112003	4.29515933088981	4.00690416699615	4.70989664654373	4.12395834168894
+"CYP4F12"	7.40455974082579	7.43631981994198	7.54243933610358	7.65064170609252	7.33696415230383	7.99378481049058	8.23906296892721	7.30877904330115	7.60529784703831	7.46824941170506	7.56942162928486	7.58982905095422	7.72071660637203	7.87052159282283	7.67298970315357	7.68170658199425	7.63327801693545	7.20113668331065	7.70392584276157	7.60121038306806	7.33550942073436
+"CYP4F2"	5.2272095405193	5.52488043500233	5.23062847342222	5.25045528253621	5.19517137930041	5.01806168495941	5.71048718143988	5.10858764310462	5.34324370903863	5.2714203856791	6.0268456023735	5.43242107698933	5.60899361211356	5.5911470920553	5.20059415619393	5.91580651139439	5.28970177333847	4.95456536482498	5.24871683402958	5.12623656516995	5.32776399319897
+"CYP4F22"	4.31686487665716	4.36297097550064	4.40094996103573	4.4890147158877	4.29425032451152	4.60046298589581	4.51351849733703	4.43911264245587	4.56027209973278	4.47292396963812	4.29938893389525	4.57714701873997	4.80419531992814	4.48294049135011	4.53950263451484	4.29884661443167	4.67955304731596	4.17500761814667	4.6864500093349	4.31240589184455	4.35504087751733
+"CYP4F3"	5.16663121261264	4.86447616984284	3.83703136856785	3.82023957592418	3.79340624972589	3.76649585251223	3.71941684664518	3.84505518298762	3.88295708238898	3.97778244781374	6.75922356881469	3.82853615473391	3.56423262494455	3.66587151774072	3.71397540552502	6.688253246619	3.88443051951235	4.8301453768509	4.03649662220941	3.97926096269263	3.62006071627716
+"CYP4F35P"	6.23293086384355	6.24647386482875	6.31601944212345	6.44115992891792	6.20242640158652	6.43343455379312	6.35275733039345	6.31601944212345	6.1773258514165	6.10683196765045	6.15424807389158	6.31601944212345	6.38353145691212	6.35747497796859	6.39283653025031	6.34349212975629	6.44698808816002	6.2491653135028	6.3607865972034	6.17575461969995	6.35907133950099
+"CYP4F8"	4.25624414623099	3.99036722956703	4.19716455860756	3.85552006403504	3.95707321594197	3.93909612206584	4.17705158796436	3.91977967638055	3.73441752917506	4.16400893681084	3.98350815882563	4.1369596853005	4.12111016678412	4.32905369388064	3.6437696360826	4.02231810269041	4.00967676648148	4.15485278853425	4.09870097694153	4.04214145428586	4.00286399917587
+"CYP4V2"	8.50254160639119	8.42156303714474	8.37919854908905	7.88536854440058	7.67974386422138	7.51071212655743	8.50805213629094	8.18154389322941	8.1177328754393	7.74073948783714	8.74770212763471	7.61895472202694	7.75188957840567	7.95401380428393	7.57195441344639	8.66217731902517	7.5045770982873	8.43656061188844	8.0062678215383	7.98902330376674	7.66914708141557
+"CYP4X1"	6.34540923255705	7.98601223854604	8.60322741936217	7.71494165271205	8.06734167955791	7.34371594189027	6.28907867644508	7.55001453748807	7.92993208703153	8.1250521970993	7.12098008554743	8.10490611055852	7.82711243721937	7.27317958645417	7.5455353120156	6.81167911688544	7.82909617572751	7.59873752972714	7.71597505438482	8.07328174443331	7.71494165271205
+"CYP4Z1"	3.41312885685589	4.11104667398549	4.14967607674127	3.96423144020617	4.08470984280741	3.70666830112406	3.72368196924531	3.68835589807204	4.03253684148377	3.87517585692251	3.60691611569394	3.76777285402548	3.94295169666331	3.56919169815979	3.74293185258057	3.77103843409658	3.86358491748107	3.77524939023992	3.73086952542123	4.04213083705807	4.06066213433098
+"CYP51A1-AS1"	3.75440834808797	3.45958494671897	3.78995665953625	3.47572415841391	3.55044259587914	3.6106731680729	3.43521738575146	3.60202766201084	3.41222410027302	3.42598080769835	3.27865794197424	3.65267401931848	3.59426358518754	3.43359552805148	3.52700417460978	3.47699211980458	3.34581278810097	3.3206684998231	3.46907756072181	4.03296268186329	3.59523009911267
+"CYP7A1"	3.04191394097558	3.15828382342225	3.07923102288962	3.12473029239346	3.2824352444869	3.20770945502506	3.0544048264203	3.06988016093387	3.01592438478114	3.02280852530058	2.87030682473545	2.97703313154279	3.05739335545357	3.18778729080343	3.10676843953706	3.09279123967383	3.04430490241271	3.17527639074257	3.03695648805396	3.28820763499128	2.95788712016744
+"CYP7B1"	7.07464694695485	7.54719876713566	7.10165922431934	7.13873535514801	7.15149638156822	6.76473576137049	7.06955876388269	7.36239755914798	6.75499022665444	6.31032277054675	7.79662013855611	6.81539180039143	6.74018829907335	6.77056296397503	6.54439415119253	8.67590020043379	6.66255279441658	8.19351206471179	7.03344250501925	6.69655590036985	6.58856158700495
+"CYP8B1"	3.9526432462815	3.90118268673297	3.89504924795218	3.98649806476753	4.02869210785063	4.2858744023995	3.91724886136879	3.83353097716374	3.9526432462815	3.98097511047057	3.75438954312993	3.7835430724333	3.92701358971871	4.37530626717678	3.9526432462815	3.9526432462815	3.99092012494779	3.83714898578597	3.7262766453374	3.93873168624257	4.25287894782771
+"CYREN"	3.98320139669691	3.82705813341602	3.79677445187759	3.76649585251223	3.88008262823515	3.6705275074528	3.30524785574995	3.81025018979356	3.76649585251223	3.72723998245526	4.26358395564992	3.97250457878689	3.55354961192932	3.68961352588241	3.5674673237892	4.35785636334051	3.7008546504549	5.03014132618562	3.65921426435109	3.45205573514835	3.73932268601223
+"CYRIA"	7.76118703227896	7.82434758154135	7.7004164470705	7.57310505331118	8.45189719353497	6.79587262581775	7.45909137592536	8.11715701793241	7.68595068251194	8.39751481998986	7.41991467282634	8.46656578296219	7.23288636404493	6.92725669361785	7.29627444971373	7.91359135192562	8.17084360560054	7.72358297582583	8.06706020472614	8.74819172364842	8.67162595335407
+"CYRIB"	7.47211919886539	8.0734747655557	8.59606045564175	7.73284399657849	8.73074479017763	7.82536731345485	6.86491123754184	7.65440905871166	8.42957789069333	8.65468981671982	7.64252570171877	8.69364865188563	7.48348123760534	7.534387802846	8.23687177880754	8.02186229331131	8.31485557085381	8.69470884610117	8.11200865997539	8.90361339608461	8.79541476498894
+"CYS1"	8.27423471566536	6.59223615085845	6.77015475387019	6.29886698191168	6.62010079501255	5.2871691756167	6.45279127154289	6.93487006315016	6.30985914628137	6.43898745865592	7.00421489132242	6.10783430032994	5.73507444744902	5.89118388361822	5.91437044896582	6.03967364227088	6.13728223592603	6.07793083364639	6.09480497716808	6.39415540019893	6.26328715755958
+"CYSLTR1"	4.71096453048307	4.49517999568365	4.05473763002037	3.8998205997404	4.63838340580904	3.92027478611393	4.19520303503944	3.92821738927715	4.06857456416645	4.18203351984641	3.97410976274847	3.68839139921947	4.32960644568812	4.24169636304433	4.04737624212757	4.32279278708285	3.94792751621285	4.42764757589763	4.13884896795488	4.87179474627184	4.12598652620923
+"CYSLTR2"	6.11853886327114	5.85309621577228	5.47914187987914	6.01862071724833	5.81417438491733	5.89823397989782	6.25157832055658	5.81182652400425	5.83006197749515	5.80754453582694	5.7089765844736	5.4722540643038	6.07650775961619	6.46654086522946	5.84145368693706	5.80468280006588	5.97615606059175	5.49627658873682	5.57701517460375	5.61585869908514	5.57275342361103
+"CYSRT1"	6.29517390547463	6.28173864443254	6.52691565386907	6.60958377734736	6.22773282336164	6.49975865323001	6.82078014505708	6.33085202005601	6.4166929407669	6.47934874710064	6.38010486186632	6.45556004931055	6.37963135184268	6.73381907224612	6.51852459714565	6.28763639151731	6.25168773940898	6.38996846307449	6.32983615838788	6.36174303832985	6.40152365005909
+"CYSTM1"	9.96083825715763	9.46126540995835	9.3694033771516	9.72424985465457	9.58698877021155	9.89267767413958	10.2795349174956	10.0678024520534	9.86289938834738	9.71748106971498	9.70219918552671	9.57170777416445	10.2351441340827	9.81019620457874	10.1383332829431	9.17469945354371	9.51655523776826	9.4967105791786	9.95934434499611	9.44124010076367	8.87668188154335
+"CYTH1"	8.45564757006393	8.35852524669535	8.43494911596301	8.01963727166511	7.9428619564412	8.48804159652728	7.76557386683504	7.93160590617668	7.93779512035476	7.87494423350702	8.84015709009829	7.92297569390253	7.93833378055307	7.96644952256887	8.09856564718358	8.90471833411222	8.01950705168108	9.12272272464724	7.92694036011263	7.80320565185621	8.10581306791909
+"CYTH2"	7.5171138321492	6.81557818440883	7.32069459781919	7.361867690479	7.08221388691496	7.46413798442833	8.19420304148819	7.31337008690233	7.44789839659164	6.74192028249111	7.4902928238427	6.86533494839476	7.6427842039136	7.4739252215748	7.35299069610454	7.36015928097828	7.2290322606295	7.82895401026159	7.12733302144079	6.74407287861535	6.82511230770062
+"CYTH3"	5.64084606104318	5.59314220883074	4.78962906806268	5.45848818057577	5.50309506723207	5.34438190361848	6.12025544756461	5.26590355278674	5.59735935327789	5.44061319479109	5.63940561580495	5.46574701619052	5.27918156119858	5.53850257086777	5.17897583377368	5.39359996020844	5.3605259450305	5.20244208025997	5.42524687603376	5.60514033015796	5.8285517235861
+"CYTH4"	7.35004610051482	7.16220559840283	6.69968030107516	6.63650612200638	6.7716275214	6.46873328363703	6.70952147779206	7.0135524513707	6.54486545841163	6.82190337594209	6.9127596837346	6.66076118671828	6.77610187776639	6.81822160693213	6.67777842512374	6.91770895784106	6.40123391201227	6.77380047707856	6.57444159121624	7.2210707769658	7.52816039755224
+"CYTIP"	4.40330111312669	4.00899574532208	3.62589837570552	3.95323254009604	3.73425107147365	4.0218107655895	4.13603532229618	4.29200874473795	3.83038586964727	3.74253698363002	3.62050728784356	3.70263740078157	3.78398508141062	4.16511684784591	3.8363502004264	3.69026850867805	3.97433378175957	3.80264830803752	4.21187853703142	4.37253480609131	3.94506178657886
+"CYTL1"	6.73992954253324	6.01729582146568	4.69464741035035	5.73721248213587	5.75999274188423	5.54450087133998	6.0819609035559	6.2890424341946	5.73439660710666	5.9532706231554	5.53874896244469	4.75205236726471	5.88837084373193	6.16886168118783	5.9447781339924	6.0268456023735	5.41142482695308	6.35650125259868	6.06242401273676	6.08499788160883	6.43327026560398
+"CYYR1"	7.39555288326595	5.45862678736945	5.05755125314849	5.45555928921684	5.47906061656431	6.70511172872452	6.44856783388339	5.82772534693426	5.48798463165851	5.58682915027076	5.67593138489352	4.78397647086741	6.19039879798339	6.57061793222932	5.64667880859441	4.71136118948138	5.57367821842092	5.72367200392912	5.67461059957541	5.73717962461255	4.46432568751144
+"CZIB"	9.15473491291817	9.21913537567244	8.93689325556737	8.86051805369317	9.06892482572546	8.19396505517799	8.64146420655403	8.88993384128841	8.6453923429137	9.05025696619652	9.10379593403899	9.01116565760712	8.49834725010935	8.66996767082566	8.56743290245662	9.4038230227332	8.9651313023633	9.08778894797832	9.09828885388886	9.19375692777917	9.02719050570078
+"D2HGDH"	7.72924639990591	7.4763868636324	7.75623620451394	7.48342032382105	7.5520547656717	7.77352135168879	7.29823939677243	7.42025765970425	7.55901408593781	7.63182787515822	7.59752964296989	7.66879126686094	7.36530185089431	7.72293077192265	7.51853791631857	7.81996244320444	7.56836887995961	7.7689934499601	7.10923100678399	7.59179068951837	7.3419990941074
+"DAAM1"	8.17567969527133	8.39006048468022	8.5977388825183	8.44416446418126	8.24509294648505	7.47002859630238	7.75057574396977	8.80863284489283	8.16948534634083	8.12437021903644	9.12339823733225	9.04587308586302	7.99831870310676	7.47587215713424	8.12175844951219	7.74760733267277	8.467866013879	8.23126840550345	8.66503532110757	8.87081245508528	7.98397404423946
+"DAAM2"	10.9623286200769	10.7996594423923	10.3981092289766	10.4700551819002	10.0432635422397	10.4498351076935	10.7755293826292	9.91894263653043	9.00444089511441	9.19637542054664	11.5665843030883	9.82099813997828	9.86037094214475	10.654173159678	9.56775208872123	11.73234801263	9.78072269351607	11.3570733289028	10.3247767740309	9.38848979579932	10.1881086129669
+"DAAM2-AS1"	4.52007899660414	4.49337496919001	3.9842642479345	4.48101624424806	4.35289179261482	4.25443192992888	4.33387593130826	4.39706092669725	4.63039578434174	4.48101624424806	4.46950753710681	4.36933874543285	4.51429674524557	4.48101624424806	4.79796461987225	4.61284354163675	4.51801642606189	4.67836729678908	4.53284233552615	4.4087240491277	4.50869918007236
+"DAB1"	7.14659608475008	7.65473979813274	8.42747109542326	7.9282135924739	7.72617570793264	7.52506889073011	7.57136857875897	7.63966765651344	7.97025668213476	7.47298487599487	7.04654118122876	7.69477506271756	7.90477139308952	7.59050204419214	7.9051045582157	6.732167846107	7.78799013176733	7.66848041349814	7.43998913731626	8.02269990579036	7.55037048888648
+"DAB1-AS1"	3.43359552805148	3.18616355962102	3.65263083224613	3.40648068702026	3.43359552805148	3.55479233840976	3.34427417316152	3.49884919231121	3.43359552805148	3.31394912552841	3.39290052078463	3.48330447607638	3.43359552805148	3.49332885601575	3.43359552805148	3.36214888440788	3.77411862669148	3.44927333376118	3.3883366168551	3.2371083959586	3.51806022810352
+"DAB2"	7.1628642151531	6.70725020721476	5.99424557408566	5.9694652990421	6.42662401668638	6.63202840654745	6.04366403306121	6.29430090802031	5.75055672504032	6.92504660628869	6.67251498685836	5.6377305600494	6.22995039814191	6.59876851770257	6.46676871596562	6.24591845829952	5.86065341987548	5.87514106952417	6.52171943635217	7.37911937438505	6.90409894047966
+"DAB2IP"	8.76493876510364	8.5953369920332	8.94127520538177	8.77944666620955	8.88691029140394	9.48519242713323	9.08810264215966	8.74917489940906	9.00956780949678	9.07093591707623	8.56951913467657	8.74448156280246	9.32506099761537	9.27192189207988	8.9156602449553	8.03341068156249	8.93455927246107	8.46704816789339	8.53278216357431	8.92380606829124	9.0741478106245
+"DACH1"	5.5290921711511	6.14923228632432	5.64428999164852	4.95811164378549	5.80710427011076	5.69050004291591	4.73736566320243	5.97347421365645	4.84519503806314	5.37150043895499	5.56165215284473	5.93558206174166	4.83912395167494	5.47260144653969	5.75566207167979	4.93571184241335	5.61289041338999	5.80382648610904	5.53762628107123	5.05343864273684	5.28283050300245
+"DACH2"	6.73166532983076	7.75077612714158	8.25878448634254	7.78661949102637	8.327269484344	7.03465999730254	6.27386454756455	7.50433421128906	8.22242008256543	8.0771026939315	7.18077342006496	7.92770485078113	7.4929140947363	6.72769821681844	7.6833108959237	7.19317492897073	7.94741779660678	7.87539529981362	7.79704941169411	8.18187367691016	7.9516977300853
+"DACT1"	6.13434898784708	6.11684105342489	6.81892640786465	5.90679252387944	6.56400543419874	5.93861591529928	6.3093052576878	6.6813355163571	6.14117216891384	6.28373220185549	6.22762301235079	6.17598440557396	5.70340192750327	5.89592973161603	5.74054541263155	6.11906323816633	5.74251102609614	6.54970696703608	5.77858250327235	7.03025581460681	6.2480944222397
+"DACT2"	6.59452682802484	6.27429046263449	5.85404749684016	6.15307213765066	5.9146722026921	5.81265465575127	6.25462725428559	6.02958783739825	6.09551778984383	6.06378075186189	6.17904863433691	5.84624689590397	6.25811177650563	6.02625694446749	5.92114288745382	6.73358979268749	6.38421059914576	6.02895913530071	6.04776651093591	6.31887794184389	5.91536334384264
+"DACT3"	9.20413899440153	9.70045032400032	9.90097255999875	9.82866328262136	9.90104616828399	10.0510541304834	9.9046796642506	9.56966728542188	10.1115065742493	9.82987772847614	9.80491668570972	9.77653923598672	9.90073805583991	9.52730277410312	10.0123670377177	9.97233023626559	9.81247969115532	10.1862698060297	9.91860784280248	9.89898205858755	9.86570922631793
+"DACT3-AS1"	4.90874643064595	5.38235407289556	5.1246923925848	5.37884194528046	5.23649844714625	4.93299848615873	4.94280561876403	5.13449612325385	5.35404540250977	5.30123319931395	5.18814722422008	5.09698456030445	5.19477874243203	5.07304170895652	5.38775024298793	5.13449612325385	5.13449612325385	4.93903766234175	5.33767954803298	5.37517071570185	5.01126276461901
+"DAD1"	10.6458884784773	10.1668296329319	9.69990077733888	10.1138290677794	9.86416812387388	9.48036981118919	10.2515299184021	10.2470364351088	10.120481042006	10.1055848952163	10.717265075732	9.98959612258418	9.95178380263952	9.87784652982932	9.97946858802539	10.8098416850109	9.72877057662009	10.578349215512	10.3235084691244	10.2708775474928	9.8965640364787
+"DAG1"	9.95184243867681	9.1439276601924	9.51916483559854	8.95483208281544	9.21133348886843	9.3538353967814	9.74398626199744	9.25144053015243	8.96951696779969	8.99691167399024	9.51885772004289	8.75736062694085	8.90184383399404	9.29710840256277	8.92779995408289	9.10276508819904	8.93844115491607	9.31517566319438	8.75560112585938	9.16880681883097	8.8554808302704
+"DAGLA"	7.07915617875171	7.5304233549252	7.49609419813719	7.37575231871462	7.73019280262355	7.25814310107853	7.65275784636972	7.22135305278123	7.65353954130159	7.67602795893099	7.30154240723696	7.59143452378558	7.46271467274123	7.27374485633124	7.26698296264699	7.05132628805868	7.50961848148883	7.30445114442414	7.22428451228664	7.81600548577899	7.71817526716231
+"DAGLB"	6.68983146828833	6.73681476182255	7.05343953214873	6.5833843382331	7.11554085140586	6.66857951020635	5.98415864710234	6.85762291214703	6.5034654623618	7.21529146090661	7.03219872365044	7.73134670056895	6.31843232116022	5.83850989612353	6.15975016433569	6.59361593165903	7.30131723595513	7.26033524450833	6.63291107424417	7.50881283362535	7.33879576434369
+"DALRD3"	8.32316896574826	8.07351796106567	8.01488887809606	7.57522494195766	8.25608340987944	7.37207531402294	7.54642404570474	7.68987435462424	7.95430925865925	8.40447398697523	8.0198193666938	8.21805154124267	7.4484018286932	7.5375189577946	7.80942593657877	7.97179413546965	7.88434128522926	7.89065243809773	7.75039427722869	8.35485290611942	8.26568550564662
+"DAND5"	4.82637394617288	4.98868780832095	5.06028969768437	5.18387762534761	4.94545988818027	4.98926128335118	5.26649969609572	4.72512403754682	5.09122390903668	5.19770548857222	5.05062226456162	5.08955880986319	5.25166396326474	5.21934873478284	5.07723673422839	4.99156838509528	5.03305035349598	4.9087860926497	5.05870902832305	4.96193863068713	4.99331877009975
+"DANT2"	11.1556295543043	11.1631906143797	11.9670755721518	11.6826838226141	11.2660533446135	11.4101225478698	10.7766751961393	11.0682244062638	11.3975921493429	11.2368350429338	11.5016782421831	11.7325970783909	11.5457798472602	11.3917235055421	11.0361028267769	10.1888298539773	11.400803105512	10.7770472617392	11.1795085432552	11.0117940837615	11.048730835857
+"DAO"	4.26905569189486	4.55399815195909	4.51821429229681	4.72472985112377	4.59047946556052	4.58800893617025	4.54476278852512	4.52077047271059	4.75705673076091	4.74953345484615	4.88026924195547	4.49996121061671	4.90190968247798	4.42605255867771	4.61738986277418	4.95627404881469	4.64828853574283	4.57644363685836	4.75799280259008	4.24705695692637	4.66073879476727
+"DAOA"	4.03399913815434	3.93668319481726	3.97660571579338	3.86592194147329	4.22503378118681	4.15208892540975	4.26452186993312	3.79551440789532	4.14341933507314	3.7796688176357	4.09694548382056	3.82077783159155	3.66993764801545	3.9729605279738	3.78137828841665	3.93668319481726	3.73630291110139	3.93668319481726	3.88305749326926	3.78737087784488	4.08022174867621
+"DAOA-AS1"	2.97042963603081	2.92826888271139	2.87070185588852	3.02471288538393	2.92162240127186	3.23812413781597	2.83979642196452	3.1458340991459	2.9576851846572	3.02224535184688	2.9165267385631	3.2193640854793	3.15157418829242	2.98995960214443	2.99154000314322	3.03691617306496	3.0556969659496	2.99154000314322	2.87225220819541	2.94906970106365	2.81641428639624
+"DAP"	9.1220220827137	8.32599677500169	8.05969942675727	8.05673859111267	8.07939041558484	8.05298935934919	7.75198887016616	8.17693240381239	7.98746887517515	8.19393078690505	8.36693536149403	7.95974065218723	7.9747982144558	8.48666739691818	7.73834256152129	7.71396036731384	7.88426551224953	7.95496694978607	7.70246244704594	8.45249454573537	7.90477895046836
+"DAP3"	7.5249734586008	7.63173167001284	7.64904345590483	7.72573631246189	6.78132798809647	7.51349392058272	7.90812777815511	7.62235488220348	7.8885766192474	7.67102506710918	7.96839253378325	7.75000116830156	7.91240096644088	7.77543441759714	7.99573443421439	7.416134474986	7.73060700277582	7.30249468167128	7.89844932533744	7.21939878143632	7.77878642909188
+"DAPK1"	9.7450715296132	9.22060790158431	10.1134448138728	9.49224696361966	9.82049267074204	8.3657708702108	8.68524707973186	9.25293964200002	9.78893011770028	9.93430423606826	9.03605955917572	9.66591106552142	9.13530879831277	8.64915492876917	9.38533588962589	8.88929629559964	9.86845092625987	9.22648483474068	9.63046897500133	10.1318305195341	9.60656787022734
+"DAPK1-IT1"	7.33164425287311	7.03834093183823	7.56192558701701	7.29425999496507	7.1253975761566	6.60537585926436	7.1403690926715	6.55953895372561	7.04075434339158	6.85905297283397	6.61851537183525	6.53185603217388	7.39108131416536	6.90897334815364	7.54451978610056	6.06882043244234	6.85836189564009	6.57439710063874	6.80238239924408	7.03644272881773	6.84596969974744
+"DAPK2"	7.41016351056409	7.32268226134455	7.24649248727941	7.09144175383188	6.81129188107402	7.69181717241131	7.74527676485158	6.97413097281938	6.91207741083625	7.00138265039196	7.54022104338715	7.01930163988095	7.17404854082656	7.41024237180645	7.1685543840208	7.46336581336578	7.02466170346055	7.53402618330654	7.49269825174158	6.97086687858553	6.8395789555607
+"DAPK3"	6.98480345753445	6.20944538003478	6.09493197465544	6.65758022494112	7.0672958422848	6.42362557094742	6.23835125569243	6.21157668599369	6.60025449848886	6.9516878578899	6.51025564940599	7.04341973417167	6.39914869066021	6.13953744607073	6.2005115534851	6.68933770661497	6.4970400609755	6.55065085986414	6.202143603654	7.49380911932273	7.02643674231806
+"DAPL1"	4.94674134373772	4.91155768691543	4.94200780537979	5.22209266910451	5.07424523312738	5.39054346294595	5.53334812530689	5.05085347380104	5.16523549056829	5.11260057895937	4.71721641242413	4.89999434959699	5.05027625085078	5.11050270534955	5.03587115021156	5.02837854616492	5.0467463419208	4.8644413134532	5.0467463419208	4.98903436326267	4.98742557697607
+"DAPP1"	5.62464159308881	5.80533568234952	5.54821513012974	5.92085287300063	5.08121299336993	5.64430243983378	6.16326477344323	5.84184184999546	5.81569495276754	5.51428020317985	6.0201435334307	5.56529681477197	6.29977356572361	6.11521565279705	6.25247074752396	5.4607703476232	5.71656556366923	5.11326766695	5.94570517050411	5.09587740280227	5.75387595993415
+"DARS1"	8.27814045717221	8.21972386644195	8.00324703697409	8.28432777743612	8.30228606835386	7.498474418006	7.94574197891245	8.35967859087584	7.89718154594248	7.97689979708102	8.8618058710044	7.94960096859784	7.96519017476718	7.97722631429891	7.94223885545873	7.87655956422304	8.05464800897108	8.14298917086509	8.03431050117319	7.74640041714807	7.80411748460741
+"DARS1-AS1"	5.47006587811831	5.61483653500528	5.24505972303505	5.55310378025231	5.36060381224583	5.73135036786886	5.64648179282127	5.59264814948237	5.45124121372987	5.55310378025231	5.58373372787127	5.56499362847004	5.61790868806582	5.55310378025231	5.54627576984461	5.64234854951754	5.78188019888234	5.35646536108757	5.62973112448419	5.44722945742095	5.52327898036734
+"DARS2"	6.72032004756808	6.45201785452449	6.05830680845236	6.1681660401562	6.32471047588195	6.38671093089544	6.81315889298366	6.53212253152595	6.28816126081896	6.45185631470292	6.15655906074609	6.12094903444259	6.25923197514529	6.45546623143301	6.17484026543043	6.45360122556064	6.29206977953338	6.12381749567993	6.19727290677139	6.57364184399075	6.15518030482895
+"DAW1"	4.09146441068911	4.19482320915886	4.59551439534127	4.14228426290706	5.00200694284654	4.13869663837077	4.07037820171576	4.1112004030439	4.80034306955918	4.60211975758733	3.76901474754676	4.47460541135374	4.28811339558514	4.22540234745558	4.21366522784997	4.28811339558514	4.77934963409503	3.99497650842103	4.3029795132294	5.08484039923193	4.14080020254616
+"DAZAP1"	8.10308863305583	8.08228264538371	8.28687626068331	8.16483064088894	7.95306995422133	8.40202471453925	7.93562570783988	8.40470696447548	7.63958129706357	7.83864221409596	8.31681091258755	8.03201954849644	8.21891794214986	7.91406571608329	8.10308863305583	8.28177793880461	8.25336858531982	8.4973209667703	8.25384616618074	7.78316914023365	8.18787105194595
+"DAZAP2"	10.5937057140874	10.4593070244074	9.36545556117157	9.92681790550052	10.0416675236312	9.55192725350511	10.1485085262304	10.3001961084003	9.88016312174406	10.4236805586054	10.7923394976642	10.1876435577614	9.79912527680071	9.69017498675183	9.32192301298744	10.6681216733292	10.0180761856158	10.6075086911481	10.0416675236312	10.1997469212332	9.89451583978558
+"DAZL"	3.26749160087437	3.02790306487875	3.04231138624473	2.98860583165793	3.1660828885034	3.03089707053379	3.04543060447808	2.91666627722037	3.04385858196007	3.00808307272916	2.92567084907914	3.04385858196007	3.04385858196007	3.14454920495763	2.92884726564935	3.13034521615109	3.37495181317675	3.01803050385709	3.01269972481403	3.01297949852192	3.20020229659798
+"DBF4"	4.93792717009728	5.33282819520619	5.34357202360608	5.07460318880676	5.63830286253921	6.24624496249475	5.1141300590076	5.38655196726886	5.32602039932013	5.09185561849486	4.80986378350738	5.17735109716088	5.39582993115869	4.78533654148695	5.45240260538169	5.00085833622707	5.34647368522285	5.52579780268356	4.98314712902684	5.47152988933302	5.17658717304364
+"DBF4B"	5.72235393206841	6.15478459806666	5.97752229246109	6.05369414801821	5.61154780387325	5.12281949617866	5.571859230994	5.62751873152281	5.65158363512831	5.67405455211439	6.07039354339939	5.73843186413752	5.74620023314932	5.34207829173414	5.47096853375944	6.38968859360988	5.79801436886593	5.83338157493389	6.02466863197562	5.72855536370899	5.73843186413752
+"DBH"	5.90664389154586	6.18619783200992	6.05448606979168	6.31772608069597	6.05252509000999	6.0691597376097	6.4501344114403	6.16963663500263	6.6404401354796	6.40967429928395	6.11817338611148	6.18619783200992	6.28816126081896	6.48583228849031	5.7662511083396	6.11912751408244	6.11727618834165	6.04362870980836	6.40382767411492	6.34054903392299	6.19175312307004
+"DBH-AS1"	6.85093757745649	6.63553128899534	6.81349819435673	6.6201275092724	6.29430090802031	6.82872437872173	6.85093300526979	6.58908734604405	6.63085865610739	6.53542044440375	6.47036421267925	6.70617922002497	6.5962403179539	6.69483933626484	6.43703902205264	6.15351742906618	6.51946160524075	6.14893618509495	6.61368121918292	6.59502171363988	6.48526720072844
+"DBI"	10.8440223378569	10.7243566489595	10.2269729378588	10.8815573530942	10.4804036730291	10.4836300286115	10.6494141215944	11.0991509418743	10.6709359965868	11.2940445256937	11.2030166573934	10.7127271280139	11.0207640954381	10.7009721651329	11.1221540388937	10.7578514441685	10.2813852063994	11.1709722458252	10.8920773436302	10.459769346342	10.3522127999424
+"DBIL5P"	5.069629687938	5.51698186140246	5.53294215327753	5.50642652847875	5.55780642239195	5.04379097048901	4.9028664280308	5.28748727819934	5.33651605337404	5.44642207937223	5.23669701192034	5.53052900160499	5.62020279910233	5.92165167886204	5.44642207937223	5.11826067207347	5.44642207937223	5.48248484843363	5.29110394952012	5.74028914317561	5.64054563228337
+"DBN1"	9.77213840436946	9.25543084198732	9.70744363049788	9.63027135136064	9.33428065630651	9.6032137739564	9.33634297210915	9.37112781342259	9.62223737051222	9.75617104981388	8.84738142755948	9.13621719249878	9.50431094967994	9.51115621600078	9.62694153665946	8.68438069456107	9.36269143964372	9.04141044892949	9.25305824994188	9.68373195643727	9.22338886696072
+"DBNDD1"	7.7905901928188	7.6609085807233	8.04287459851956	7.84013381661676	8.30489526354192	7.98971702786967	8.0410922700759	7.51770908996667	7.93873125073214	8.02542791568993	7.32573920472313	8.02129574850285	8.25194057916624	7.84421102898227	8.06510504114548	7.03346108147958	7.9313418274041	7.65672310962153	7.81598967472872	8.49262791183206	8.10481798824176
+"DBNL"	8.51234136486508	8.53967698192648	8.64229831545646	8.30010024058559	8.55020897894225	8.32581479175104	7.83480607318319	8.12012278978602	8.03805694038819	8.64235405300919	8.5864887724075	8.53622472168476	8.36904902460206	8.23098891694012	7.97018795313318	8.73214778806084	8.15687973162395	8.34516736858869	8.41401379448517	8.97380568663626	8.75050497426761
+"DBP"	7.20084460093742	8.17926923216918	7.95529395785628	7.41549166921611	8.07559180507343	7.22454910053422	8.4223727608557	8.04756946507487	7.81414791215246	8.10190946516005	7.57462639022135	8.01211205672863	7.59712265092893	7.40620640047689	7.40809524995067	7.77532250837771	7.97840497345567	8.14055675788306	8.06464440670879	8.43470709668786	7.76255246194639
+"DBR1"	5.87331801045631	6.11156721780318	5.95477742024149	5.91536334384264	6.00915386053629	5.6887494209342	5.80093481760527	5.57961826686988	5.49228609415676	5.6693028184455	5.79791371096939	4.78840597924607	5.1078163729368	5.52102967874034	5.79387885885169	6.33865077173572	5.63000435717342	6.35128749860406	5.45445567554895	5.59670944976167	5.53147984400162
+"DBT"	7.50872815418572	7.593572887072	6.5653701269959	7.02023676267098	7.34026539097937	5.77975828472765	7.64534748564752	7.70163392969196	7.58260570967525	7.60787579731373	7.40379979159146	7.30887753979251	6.74156808130234	7.04411066828826	6.95768457909008	7.44145696472544	7.3305449316845	7.37984041418463	7.62349081305279	7.81823787322004	7.19347623597525
+"DBTP1"	6.5700307428979	6.60009175188257	6.83417210797332	6.67903704666257	6.91552570639217	7.58792278664244	6.61249227462226	6.95719319677398	6.61256470705397	6.04358770183941	6.56415207020101	6.6580842738551	7.0265007883075	6.75687616389373	6.97092687306365	6.21428204610928	6.92067055431241	6.5562251468211	6.5623096562414	6.26074707532312	6.40092123038372
+"DCAF1"	4.20354648353664	4.43997767611285	4.63405456041591	4.22214379481497	4.6508386811066	5.08337149386294	4.71701383622161	4.3529190256869	4.24837888693279	4.51980826816381	4.55937935916303	4.52399897682135	4.39893437511516	4.34213480820204	4.03547469596876	4.49263544576182	4.26841033183886	5.1805457763234	4.4285389191296	4.43997767611285	4.27551383143992
+"DCAF10"	8.28703532250852	8.06040200912177	7.74150821995822	8.02010140108111	8.24163725794077	7.49426282539562	7.73093048525333	8.05580865554701	8.02662314779257	8.28667605245446	8.11229876750225	8.11361170358461	7.84284877002744	7.57045422266844	8.2520644445365	8.43960844978971	8.14147381737884	8.46650615946721	8.21177958740227	8.51523042153997	8.47040938764715
+"DCAF12"	8.50613131947391	7.98857054083484	8.18755349016955	8.09354419139366	7.81930579919061	8.33179742661421	8.41650816031134	8.43315964736268	8.23204568750271	7.82832590575117	8.09354419139366	7.70641492276403	8.3834234315022	8.35143447740522	8.28168245359379	7.94756832546813	7.91649185857375	8.09304108320019	8.28421845146532	8.0019547965985	7.73525553899078
+"DCAF12L1"	4.13895107510047	4.04607259124915	4.2397434171054	4.26167898886375	4.30822708072247	4.32797490850654	3.97223840951332	4.16849778970659	4.18510486611855	3.91578602979335	4.02629786165365	4.00745492577835	4.10874263975394	4.45119593592012	4.47798367692741	4.26509274111333	4.15608412846032	4.16185779592789	4.04516340219123	4.09206849253666	4.14355827225164
+"DCAF12L2"	4.46402901288701	5.0835597568062	5.86733913789949	5.14510208336765	5.85212103456007	5.05185604968251	4.32517735039709	5.23389961059546	5.03117455125663	5.53877350412836	5.22544446203888	5.39112527898639	5.329298937568	4.83851391392687	4.86743624942575	4.79415489018689	5.38663401377877	5.05981885695116	5.17469089014774	5.65940076891349	5.40627087376784
+"DCAF13"	5.89067122151505	5.64354980660851	5.62100426069016	5.41059265346523	5.68509451705853	5.10784237884458	5.2044588973491	5.42061011759093	5.16219485614582	5.22331441933248	5.9841263243859	5.11095116298435	5.63003500579457	4.80358305200707	5.56211582956918	5.99623751538995	5.19996853124294	6.06590638664684	5.32540694136794	5.45124121372987	5.40140587161297
+"DCAF16"	7.02577513567556	7.0428988357604	7.60975007087249	6.05135100710395	7.50306820552985	6.54867019258981	5.38954750084855	6.68826088855463	6.12285230732825	6.54147475799091	7.37451640056964	6.84670530886559	5.48048456277867	5.89555878023185	4.97467892793919	7.50021678853919	6.66596958007596	7.22341522827444	6.13802575650607	6.35761828001326	6.6105879267926
+"DCAF17"	5.30219616955687	5.41434020277608	4.07322373087727	5.08313547898698	5.17940650093602	4.97941181456268	4.91218944357494	4.75351943857655	4.67569487082649	4.79301648253581	5.28977860116868	4.91814764109495	4.65436739040078	4.5218203291437	4.71465524269923	6.09654480124752	4.80099068139392	6.04150327463393	5.32406645951659	4.75375288191536	5.15954824693267
+"DCAF4"	6.73979016525575	7.41000442872036	7.68420708268809	7.42749654781725	7.59626770199346	7.19841104197133	6.99294597671118	7.13487763129421	7.36706261527969	7.58307044180562	7.34417884625722	7.25678081898194	7.23599402058845	7.12263946031373	7.04770943331098	7.59704519870228	7.26505839601901	7.9091046573003	7.2557046533869	7.97513239735554	7.50414616182057
+"DCAF4L1"	3.53544170400911	3.47115147475991	3.44075659101069	3.56639694194767	3.3736603590984	3.81368388518951	3.38447248815497	3.6425236878191	3.40623712384754	3.2038226345422	3.45142362905779	3.60057038898039	3.44433914998238	3.20129175986789	3.69599890572714	3.53644506092839	3.44176460406966	3.44768090259202	3.44768090259202	3.44768090259202	3.3404377108901
+"DCAF4L2"	2.97679316311612	2.95530693007892	3.15008060049852	3.0934312945659	2.91152529121592	3.38341970299582	3.34611475139763	3.08313161751249	3.03646798584097	3.17560770958475	3.07705893352395	3.24514903463326	3.18678896794864	3.26876280628312	3.11950823403743	3.11031876184704	3.08972594404436	2.97229233316191	3.30136649058529	3.05154804559794	3.11950823403743
+"DCAF5"	7.8099677881599	8.17863597042221	8.20239669430822	7.81323909865148	8.1538890275089	7.68828591739485	7.5745231655	7.89144002968732	7.77285634373575	7.82226084661179	7.95057599254194	7.9299239151162	7.67606671292366	7.70015182568492	7.87702051393723	8.07368040329492	7.89948481460874	8.2093150615026	8.00191171117581	7.97996142815317	7.98837806211016
+"DCAF6"	8.00776512194897	8.47079533202266	8.83067217428924	8.50906341927677	9.07556590103357	7.54618538027132	7.45158422019049	8.21764420331859	8.84311772736334	8.98648437290961	8.09108165742497	8.87508719883557	8.27921002719171	7.76098747617812	8.58740994866787	8.19672852152133	8.78046309768673	8.5484617789085	8.68573346667105	9.03529816315198	9.19732341180337
+"DCAF7"	8.43180055652287	8.18844247764667	7.82572428582547	8.1944144293003	8.1672782830707	7.80397077939843	8.18122718464487	8.22790203318046	8.18844247764667	8.18844247764667	8.57895339524154	8.30343420671323	7.93877819083068	8.00400404598945	8.00104429089513	8.38052978465991	8.05005209038668	8.07539388062617	8.24187646200408	8.47515059122462	8.14456301568449
+"DCAF8"	6.79558993182758	6.97815935194194	6.50682455380695	6.81679703532302	6.80470244309674	6.54739558049556	6.63701512675106	6.80934668556352	6.6744873969676	7.04756305549558	6.90312209560965	6.99795577245114	6.66486728031086	6.54146808189856	6.64283369121707	7.01493427286722	6.89619120041951	7.06399720932959	6.98364727294426	6.72847157115227	6.641428282663
+"DCAF8-DT"	3.2456529769511	3.4575765780352	3.53215836408307	3.48408524310227	3.37383839348239	3.60582844440832	3.5120898785837	3.358737210909	3.57590236632671	3.49000916278078	3.32313334564034	3.45252253443791	3.58923186508387	3.48843297948915	3.55534242370813	3.36560010406572	3.59222776405588	3.24912274010465	3.57087269607278	3.31387824262209	3.42618392006198
+"DCAF8L2"	4.4338526546948	4.87815765651111	4.4745622696361	4.61738986277418	4.60018918772424	4.36361454004552	4.56263847005071	4.63565247562534	4.88363413518453	4.67585073254996	4.58806940826083	4.70507711218207	4.59572841252707	4.5031103064288	4.60819348943379	4.65921968231459	4.879755604757	4.26593321935976	4.45837184668273	4.69124777003543	4.81058043453131
+"DCAKD"	8.75881149462332	7.96248103455731	8.0308673008397	7.81998533841433	7.88388882592656	7.24054245766539	7.58536621439201	8.08081929374623	7.94892909020012	7.88778197081295	8.84987545293782	8.10284260563122	7.71309358610438	7.58676461137055	7.32087935474697	7.8309753667689	8.06786166537937	7.54896136043779	7.59308800127515	8.1185505006193	7.58106120510225
+"DCBLD1"	5.99133405539229	7.02507544696864	7.81333846979355	7.14521314749881	7.77421852853633	7.24314871706743	6.00327048984193	6.93978009296081	7.09975954453936	7.55261169156092	6.37084301454822	7.09025621515575	7.10622644826182	6.39607724722972	7.0245478816755	6.57718237768066	7.47831648416606	6.98125287500769	7.13338499829394	7.65143733053403	7.03441012056188
+"DCBLD2"	6.78922444539079	6.74467518433921	7.02741851806583	7.03783289157693	6.40665484623678	7.3283765575671	7.66472664380349	6.80292261662987	7.04428279503112	7.05906763276327	6.94537607955347	7.07820358093477	7.37444241260888	7.52662211253109	7.12807685975116	6.70789611474775	7.05023217807658	6.58574063555199	7.44417815933084	6.96729413895164	7.28350957621607
+"DCC"	4.16883637082124	4.95140029713622	5.61365293098007	4.59180431831054	5.50551065907611	4.82382862730542	4.40204685461222	4.87777953049254	4.89297453718685	4.73609870003715	4.48513091696679	4.79945229480305	4.96077781571332	4.61357371246636	4.91024964767535	4.53552366041602	4.82138879199722	4.79153083127573	4.98062875775391	5.11441645599882	4.63387248659226
+"DCD"	4.59746514126704	4.96381301810375	4.96624470837736	5.37728094285929	4.79624349737937	5.06652242946512	5.20468781672313	5.19339264540296	4.90490042071615	4.96767485639157	4.77683001734389	5.14129213577634	5.53147984400162	5.34810385551279	5.26903206048066	5.1941305379975	5.11863533773682	4.95639488713306	5.06652242946512	4.73076060472865	5.06652242946512
+"DCDC1"	3.09795854936771	2.90731324281515	3.10182858286824	2.93593411336117	2.90711739798476	3.01564667883887	2.7809457806047	2.89803063986788	3.05611365731223	2.86710210563807	2.8868251214231	2.80907154302296	3.06951253896775	2.9223078779727	2.90731324281515	2.71153955636833	2.91928741107058	3.02407933815253	2.90221758010638	3.06951253896775	2.90731324281515
+"DCDC2"	4.46801900992576	4.55515461554143	4.70181661920823	4.25674468875088	4.69299306021176	4.23378204659488	4.2737357602884	4.44651206081364	4.58660065438464	4.69663078877543	4.73675061798949	4.56761083950322	4.10840226569299	4.36961056954083	4.43623095579394	4.7876894233077	4.40898590606556	4.47403405925277	4.33862637346853	5.15239917715337	4.59601067990944
+"DCDC2B"	7.52330382086472	7.46784945030827	7.64997616653276	7.62070106067301	7.47696629292363	7.41777224684818	8.16329958499987	7.62070106067301	7.62070106067301	7.58537569930671	7.59052688183071	7.58461521396144	7.69652839608603	7.68733241385034	7.63027576483511	7.57457843008778	7.71524154889071	7.62070106067301	7.72731383921614	7.62473828066067	7.53873149343317
+"DCHS1"	8.08365003864694	7.40012634084388	7.81205393688542	7.21297082491968	7.38745463511463	7.95119385213352	7.93639352786569	7.56059581759511	7.13245694624531	7.07385802399577	7.28916463586963	6.90925218805527	7.78555254679178	7.79985637579549	7.06695792926373	7.16119159750068	7.17736321581694	7.42751376852352	6.75322059526172	7.57362560845128	6.87963616949544
+"DCK"	6.80673435285232	6.80433490108905	7.06849120253137	7.22060172626834	6.94926511128194	6.36723365192842	6.24133829326281	6.84237616060697	7.14540391935657	6.95592852327784	7.06849120253137	6.81932334347106	6.84344253027902	6.5221638843384	7.05971940874719	6.98748634913306	6.9062261547539	6.97654827953612	7.0123722548663	6.95310546581342	6.91660565930063
+"DCLK1"	6.74193004829227	9.00385176569499	9.84492515146293	8.3329710858539	10.0239980471553	8.39685903597375	6.16269803213981	8.32092558577209	8.91223124115455	9.98787982617289	8.37258079217339	9.96407460203346	8.1661132289554	7.43636502050502	8.60714980963685	8.98257426489531	9.3255863662259	9.16116655161477	8.72912411711772	9.63097319001023	9.93633225688922
+"DCLK2"	9.17079746826892	9.3179917760439	9.53800412716312	9.17862080240545	8.99338554995877	8.97060286040137	9.25431527230298	9.17850224384741	9.10243801527203	9.09108171494551	9.56590937650447	9.17882097845101	9.14615191598213	9.08533061953985	8.7377693236034	8.88919291276306	9.19858405035897	8.79860733416288	9.02156305503893	9.15646003376755	9.1509335069361
+"DCLK3"	3.3127255375156	3.20343533849152	3.5028859069535	3.39656655798372	3.22147439940751	3.51983754480351	3.3632206872012	3.36825481037642	3.48529876382455	3.35817696305566	3.36177386466716	3.57044639980759	3.36177386466716	3.2371083959586	3.42474363780866	3.40164091178787	3.36177386466716	3.1926387012819	3.36177386466716	3.40135221679903	3.18624224570676
+"DCLRE1A"	6.78544511642697	6.97680464159968	7.05741336596542	6.56986982420063	7.02818762231274	6.39018525009905	6.46685683150016	6.50623855820165	7.01885551090161	6.9381830046696	6.72801369147074	6.99366668155477	6.45069391925524	6.81836431015004	6.98803536853695	7.14051347245246	6.80731870628244	7.20517085223832	6.98576419207486	7.19349735895302	6.80649866588587
+"DCLRE1B"	7.09728115446993	6.56904050113552	6.53274729247145	6.42231068978243	6.54588646081211	6.72670697142586	7.00528064662092	6.31111495483815	6.68691915759913	6.40901523388656	6.86050876437696	6.094228381063	6.56078180918748	6.55906097447666	6.61281200572427	6.52141623116222	6.46896543840052	6.80069582506948	6.17334465764761	6.31443552009997	6.23545181649329
+"DCLRE1C"	5.98323305835421	5.95070511535684	5.70142156674379	6.13326089826492	5.69708865727419	5.58457190041022	6.39405498087082	5.65076111646462	5.66015824294873	5.47318171328816	6.03237760670931	5.32778647507438	6.0518882389905	5.83248475931933	6.2249522756923	5.56697622415693	5.19474693549107	6.14699523760517	5.97325139048016	5.71029042182743	5.51591396734309
+"DCN"	9.77797167881779	8.96940813852865	7.52020872183047	8.30429793358708	7.90087387616368	8.2027792025095	8.27146342672224	9.30335984034606	8.36403475283316	9.04842343540322	8.47487308445263	8.75477711141416	8.61233150632471	9.39416953676748	8.16272445365337	7.74756280762808	7.89661990724746	7.69147185423553	8.89454762158839	9.94472778558728	8.232507371962
+"DCP1A"	8.16589482238061	8.07359591863314	8.07786567096515	7.91345881836162	8.17684758792403	8.41745877278895	7.97707926575919	8.20060570403827	7.95656735245463	8.06266974658288	7.91369053508085	8.10259565563671	7.89454137122735	8.31240748025927	7.85726328490436	7.9986104839008	7.90026115816015	8.28494163102076	7.75703612304606	8.10028075444539	8.07359591863314
+"DCP2"	8.76751098041746	8.91957305869425	9.36425183455903	9.04301110422253	9.26837775853626	8.47046531764926	7.86436752604003	9.23490458881698	9.43656569519994	9.14552321749838	8.67463424087228	9.36800879334346	8.83698859303274	8.48782575737774	9.39848567933811	8.68966580438598	9.31008563857498	9.22139281736526	9.33848473854	9.10696226554473	9.08979534717221
+"DCPS"	4.20998430982307	4.95479922731416	5.41637540297078	4.39840260115435	5.04400448222583	4.55783188328323	4.19142099954091	4.19154873895317	4.50027435686551	4.96978358594415	4.38195702000894	4.50027435686551	4.43832892576727	4.70093083307971	4.47512416161879	4.53552366041602	4.39392724269278	4.50027435686551	3.98137249818808	4.69831285456893	4.28617358883413
+"DCST1"	4.54751080496412	4.77793250250334	4.88041604826051	4.87437833805635	4.77011426760647	5.02564177825737	5.22266987546139	4.71870174093882	4.94807688710832	4.5255591413051	4.51984850698866	4.82698517427676	4.74138986264136	4.7051958798216	4.98065840165415	4.6862802447453	4.9365841835926	4.92705474170616	4.85225910778789	4.95906033954873	4.67594491373364
+"DCST1-AS1"	5.70391143264799	5.67796702728642	5.83358764291024	5.77651989140938	5.84787158507926	6.26567615159127	6.6105879267926	5.71858382558447	6.05808135675244	5.87275755679131	5.62908695107449	5.769611535261	5.98098665993499	6.54108661609902	5.68522328997397	5.56993764322605	5.6670455574843	5.60350250222525	5.86521301322845	5.98971894152982	5.81907360654244
+"DCST2"	3.96853603203132	4.07972984993344	4.28673301262873	4.07605302923454	4.10836600896002	4.58582023352173	4.33684711184043	3.93755661377368	4.10952829470263	4.11141411980218	4.12701177522683	4.10027725863901	4.06014769809839	4.81843457439112	3.9249888602375	4.14058278730575	4.17401122363556	4.54084918360333	4.10131446406482	4.38484204431274	4.18897156686495
+"DCSTAMP"	4.76433842704719	4.87900750763068	4.66670706376488	4.99076150787819	4.83975092957315	4.47661474865966	4.76825575143253	4.76340578943564	4.77391156373066	4.71941442372266	4.75799280259008	4.76764009535909	4.77537132441949	4.82468735652567	4.80273153394027	4.71652874983106	4.72610360782946	4.70333464551644	4.56676088083615	4.42168694667308	4.70185523585517
+"DCT"	6.84564676173702	6.71596545227693	6.75044079106667	6.54727802997518	6.99275467384734	6.01385244369293	6.18621703176056	6.62658183010831	6.48583228849031	6.25867811039071	6.64812914719768	6.61914939939999	6.55186185611408	6.19193791803745	6.15588620129731	6.44793577574968	6.53912999396317	6.32107218234755	6.42898076815039	6.67713392796084	6.24624496249475
+"DCTD"	8.05738024121159	7.6572345422292	7.09384989395599	7.32944421156512	7.75309426351126	6.28795879913824	7.62557437602376	7.58795989823478	7.50179111060163	7.95827187444354	7.77016476361697	7.91563917792501	7.17644960983956	6.99657913256	7.29290399460029	7.59146568540944	7.39319508131756	7.56161058170187	7.76127528137043	8.08009506032259	7.9376213724005
+"DCTN1"	9.53299673582477	9.96560883857226	10.3506248607813	9.86757744541825	10.212677514488	10.2290703374166	9.57701347184216	9.64605530403783	9.90532154040221	10.1174346029158	9.78955775199687	10.0281776406905	10.0159250506738	9.98949794685244	9.51702521400034	9.93993123889415	10.1693753259263	10.1394804397658	9.70606523724919	10.348471479013	10.1799056844407
+"DCTN1-AS1"	5.43802847716757	6.23068990503904	7.10332669700985	5.4777372839567	7.36566741134586	6.20332054525452	5.06189882454585	6.23591245479684	6.1173884237265	6.59413777356966	6.03305745322073	6.87688433805547	6.05028704062424	5.407844152049	5.90593125357655	5.85211605444061	6.08462548424215	6.67574106655538	5.88090839841301	6.37243348231025	6.47085019412192
+"DCTN2"	4.37784757119238	4.33799166309293	4.4142547671945	4.46275734909044	4.16089863856463	4.82510865886771	5.37115573250896	4.45349722326974	4.67469416469273	4.45349722326974	4.31331616298143	4.37784757119238	4.57908847415532	4.81754638092895	4.53417135647835	4.33678316864546	4.45349722326974	4.26569673733123	4.52625840539809	4.50677070268823	4.45658029192855
+"DCTN3"	10.0001427894521	9.81166933854658	9.91683765988111	9.82877393235863	10.481083809276	9.51829177073699	9.69756907582647	10.0001427894521	10.083236072375	10.6104796885432	9.70799149682833	10.311853295754	9.73038245444219	9.4999993294037	9.90401391394055	10.1561570810399	10.0674554036243	10.1239269380446	9.978004118321	10.567146735149	10.3786432532979
+"DCTN4"	8.91389346164171	8.95504184746059	8.13323481512146	8.39979176379141	9.01142891370457	7.72228294850275	8.19408912959918	8.82378637507921	8.24351654809429	9.04533047958747	9.07709201548531	8.89006568476851	8.04633204473923	7.9535833698086	8.12358845046114	9.34712226721622	8.78640933636561	9.29792360523947	8.87051140126116	8.86205475733854	8.84000526513226
+"DCTN5"	7.33353239460259	7.0428988357604	6.01239741644592	6.73897198590784	6.83417210797332	6.42002077268958	7.13422131054562	7.07044190709099	6.91196586850368	7.19192791232346	6.85612635250313	7.02272647062949	6.29548207659008	6.70625125531093	6.40495684435158	7.56602268497977	6.70845339395141	6.77831089809856	6.88840584423964	7.39467623401027	7.43930928416155
+"DCTN6"	9.94463376887475	10.1472120491204	9.88454466665595	9.76883568028703	10.258797544426	9.37728175182933	9.53767043001545	10.1922427544611	9.93741785214564	10.1993054958589	10.2179392850068	10.147033834163	9.67953880368118	9.44528037255593	9.54832913459978	10.4628064762524	9.83052760696253	10.2368404805989	10.0461664558293	9.79975627606467	9.91333233426532
+"DCTPP1"	8.38004900880729	8.47928173115025	8.53495631768826	8.495401070684	8.59639006231888	8.2404292005671	8.47928173115025	8.26584637102583	8.47928173115025	8.69920510295347	8.35659306090103	8.47928173115025	8.63249140931697	8.34088438837633	8.44374194729755	8.55656177154429	8.27332863689937	8.53754529574009	8.44442735388141	8.78539775385054	8.80360115314696
+"DCUN1D1"	7.02502705911362	6.92064736240896	7.05667714215072	6.98373417945334	7.9080043546128	6.39225336588862	6.63113680296879	6.71905533508393	7.2363601715932	6.95010302083089	7.08927078799397	6.98541335696581	6.80274696114598	6.26525939593941	7.07550056137006	7.30064473656954	7.08137438248602	7.9200347580273	7.17396184841779	6.94065798855591	6.83649040648037
+"DCUN1D2"	7.1489014831528	7.4228244656789	7.60526024226857	7.35612931729168	7.78425059413106	7.42631605673944	7.1163500077106	7.30792115549188	7.58382554734833	7.83535688373715	7.33630586728698	7.51252188593673	7.54132703082929	7.25070159809504	7.37922505096943	7.50396142188641	7.56872541665293	7.83711746183303	7.36331074765206	7.29115311928193	7.56152499476275
+"DCUN1D3"	6.2410111866003	6.28203572265856	6.27203782803552	6.22528175453793	6.30448044167895	6.48041715279569	5.98868609712382	6.05486358291098	6.49751789651457	6.06290681206199	6.03950367781281	6.11378243562958	6.23702697679373	5.9841263243859	6.41825462560399	6.39976519623215	6.10033936161303	6.22996202997775	6.22528175453793	6.36281757629396	6.3864334203426
+"DCUN1D4"	6.73253309867692	6.77893973162015	6.39941491307216	6.44313307485812	6.95294661172286	5.97652212446285	6.32699341617836	7.0555486227501	6.20076902698424	6.91771459129325	7.08020937959739	6.86816706965193	6.44690724553772	5.78636257397544	6.01034549415377	7.06025824681247	6.91171254458879	7.3012411052555	6.71565928865446	6.83725027587981	7.00935034851616
+"DCUN1D5"	8.29573917998871	8.2939236867368	8.27015701792977	8.04338628655228	8.25395002929186	7.55247403982516	8.16328658405732	8.27015701792977	8.3006358257306	8.25883840918484	8.34537957136666	8.18920907663551	8.28542669605304	7.55536642738593	8.26295009825546	8.31145707549865	8.00315096960788	8.37383600353375	8.2408495507114	8.40185638131198	8.28228715396246
+"DCX"	6.08068011147434	6.78331224141729	7.65240618974253	6.58271346331998	6.90925218805527	7.13193013554772	6.00024259307759	6.697407285646	6.93341274463764	6.74944149543222	6.2030763496523	6.95315903904111	6.63756895366416	6.70781061267873	6.85743676200106	5.90971007160442	6.9792102247327	6.95923931970175	6.55383304573483	6.90807855428608	6.6106468166247
+"DCXR"	9.82045975097368	9.24831637017791	9.61378879114108	9.46848287431906	9.46757767537813	9.49267215682097	10.2289977822119	9.80534286819428	9.67999345046774	9.45594797668003	9.32182732419415	9.29962514304297	9.4131602065089	9.68956629846041	9.55608907180474	9.09520326487374	9.42775012627127	10.1399632494354	9.64318377800406	9.69570110230316	9.21869704562027
+"DDA1"	8.04116506881323	8.5843560491292	8.75206278952195	8.25377839784998	9.02585098326267	8.18543265604394	7.88786039880685	8.40505582761728	8.30265733025782	8.98450369614339	8.35368063575784	8.67043864987973	8.22027876009987	7.935551918309	7.95698866295119	8.44848328447635	8.36570172866539	8.59955079209571	8.09004320595143	9.03156536180444	8.8443109548616
+"DDAH1"	7.0126347833969	7.82493591474283	5.86646593253802	6.65728025260094	6.54221889230576	5.56277297033984	7.05172898900833	7.68949334937581	7.01408272317316	7.53624849049879	7.51210993698913	7.33826106935459	6.40918793888546	6.41314981612381	6.06928572073738	6.6179846388138	6.92799149083855	6.55928744913974	7.25180990288682	7.1684915093801	7.01124056378721
+"DDB1"	9.83011706079369	9.63930129589558	9.66542259336683	9.19086444559662	9.71656737127134	9.17710061102607	9.23352021210757	9.39452442794855	9.26847276359122	9.76251084557165	9.71507022987525	9.67662694208686	9.24222462186314	9.24053998786788	8.9737806273173	9.75856835779933	9.53009308461298	9.35473522956189	9.20901982643443	9.78202774404321	9.7561680729429
+"DDB2"	7.17097589101264	7.03021442592488	6.90217130454672	6.82518012999973	7.07259256553211	7.42708338371816	7.18338623304147	7.21275851227008	7.01010514832246	7.03628273059363	7.16508557933588	7.10205037285506	6.79968631265048	7.14018159024698	6.75508660431132	7.85983844402685	6.93244564178574	7.39039772340313	7.20498555598328	6.95196277836274	7.10010084106319
+"DDC"	5.28880579776243	5.36724102242157	5.42210685631753	5.42775466396409	5.23262643672842	5.39169840686583	5.60198007450224	5.34677662037413	5.33985593809043	5.52108745900687	5.21074469114651	5.57522152942664	5.56035088690433	5.53511903706249	5.49326597458936	5.44793669872836	5.40678682523506	5.20386494025581	5.55522404054408	5.17651903326025	5.62735506388359
+"DDC-AS1"	4.26747107900446	4.02252609590488	4.02928684917316	4.02252609590488	3.71382827292591	4.28664329367079	3.62506820586321	4.06885320896373	4.12834674094407	4.03977549165245	3.90043551318343	4.15451915766316	4.10047353391715	4.07330188869989	3.99098695003341	3.86096594447586	4.23297669186273	4.02997777686046	4.14233350221374	3.91977967638055	3.96234273561733
+"DDHD1"	7.34722180625772	8.28250859758306	8.47049106118051	8.02978110871569	8.45711865908695	7.49188074558755	7.11243756366359	7.5435953652527	8.08181158069587	7.86048471907286	8.3683811967067	7.83744125129893	8.37130059843758	7.24359901447177	8.14132431969064	8.81680422163641	7.9141448007075	8.29369595623485	7.5730387849002	8.13860932020862	8.11103264340358
+"DDHD2"	9.1528155985523	9.8140708568908	10.0948665040447	9.39819431756983	10.0692525181381	9.69385307031231	9.04285745205047	9.29388430797854	9.90713941819923	10.1389964552403	9.80367956929216	9.90114238856023	9.42276679538955	9.27742245482778	9.55012948602329	9.93319167151059	9.97106002487791	9.83931976652507	9.57717059133352	9.71948077989874	9.96588032536034
+"DDI1"	3.96396214770312	4.10283652463334	4.10246670667321	4.06181834627135	4.13464639686627	4.10935300609502	4.0069497070861	4.11704989200996	4.1077993557511	4.16182028555711	3.99732466572419	4.06758853250856	4.21022257422196	4.36059814172133	4.14817554780036	4.03821327660977	4.14731550950648	4.07175470446503	4.10935300609502	4.22015703634968	4.16910210131818
+"DDI2"	5.34815481088009	5.84475908525878	4.93423751253978	5.45097172709285	5.25255474757163	5.15421464215208	5.51804420134259	5.35167424311675	5.25255474757163	5.07664050670843	4.94935425264274	5.36339004453163	5.11859267281746	5.00751837663297	5.00276291052524	5.16417100413566	5.59334792841396	4.83546468192957	4.95643753932112	4.8330063143203	5.49069278487484
+"DDIAS"	4.60558395574832	4.65585811925288	4.51737258302563	4.62767459016233	4.74045326474563	4.88292363454937	4.62459448098486	4.53552366041602	4.86361138153057	4.6817004369326	4.43761658245006	4.65736598102772	4.70734220083672	4.72240580176664	4.65132505497251	4.8580344187935	4.53373144480111	4.49598060732794	4.71658383521452	4.72631665366261	4.68846804954346
+"DDIT4"	10.0943266236993	8.98936215769766	8.56041398187827	9.92974640239696	9.04725694434868	10.4110383641117	10.6929620964115	8.83413611205741	9.84429930744837	9.97595426973423	8.96638607600459	8.69131047812201	10.4801226279463	10.0183220176841	10.3186611772017	9.43321584442296	10.1263117820735	9.91883320653739	10.2744913922721	9.78203094220427	8.78160333834668
+"DDIT4L"	7.85161205990049	6.7610405874535	6.93642955029445	7.20909685416896	6.69627869768313	6.22726341640227	7.37088627779219	7.57285286622453	7.64630272644234	6.40815387805881	7.24392965742866	6.184006327903	7.57307014479969	6.92856974569302	8.45640750811319	6.682912782634	6.22553898322363	6.79696877046717	6.92727260356852	6.38683119547217	6.7154063508014
+"DDN"	9.38874802928443	10.0169954386041	10.7841328398442	10.2277470473507	10.2547546692602	9.7838662910506	10.6577067081572	10.0541926707495	10.5056286159473	9.93907257735843	9.19042772545802	10.1007864230451	10.0913754402152	9.89686980068397	10.1950574399381	8.88915328974741	10.1326047988615	9.65034531641446	10.3236288877269	10.3702745430623	10.0695500966617
+"DDO"	5.64431229634622	5.73962046908381	5.60314279814448	5.46239258353911	5.41759730121164	5.38721754254216	6.25165570804809	5.60314279814448	5.27939004846758	5.48797946313739	5.80325526529853	5.6316162249882	5.12913468380408	5.5821155584526	5.74099448791478	6.63491046160452	5.44969459509901	5.93293272859806	5.95179076629727	5.58068166984921	5.44503488338828
+"DDOST"	9.84899710954539	9.5134139610616	9.0851413175367	9.18253899461167	9.42324663233688	8.19699099427192	9.07746906456672	9.27990855141615	9.11850899568086	9.86883199229206	9.72968995928771	9.70974564300801	8.82605272403001	8.63197722786181	8.78900162644623	9.87380099140401	9.16457450489572	9.51184963301383	9.0715624900687	10.1676317268085	9.65251486404815
+"DDR2"	9.43232159407043	8.4435160972838	7.82679273440429	8.12098243425374	7.79669020733234	8.02222532940649	8.06254056487774	8.54997707765376	7.77576811134443	8.55406408820772	8.44871561652195	7.8503033442493	8.4134218625549	8.44849765407151	8.29524773471758	8.05305733784263	7.84090827531909	8.09092764712589	8.21702432324376	8.62487381846243	7.71624899585601
+"DDRGK1"	8.52536132462989	8.40762361961796	8.67852400533041	8.61827027406216	8.49905579764285	8.57927286478241	8.41381126666896	8.60311912168203	8.65124936780727	8.65226939219685	8.45143259160564	8.49250213327385	8.5362627915344	8.45880679212981	8.57157808792784	8.69146334186161	8.65704852745452	9.14282002628456	8.80936673528733	8.68485353517114	8.60810623086107
+"DDX1"	9.81419955853326	10.100149746897	10.1493315013343	9.92685971329286	10.4303197831275	9.56775167287164	9.5222339979676	9.77775849616643	10.2948310774973	10.7620558312649	9.96173155147468	10.298576844764	9.97326197056971	9.78111883625336	10.1218995211475	10.2730269839505	10.2188008200887	10.523893048218	10.1979863397829	10.6406096924753	10.5542444529498
+"DDX10"	7.52896523519532	7.99071064810075	8.65431694753682	7.75156085338986	8.49161359723139	7.8978627969522	7.34334697917451	7.8302584282871	8.12212648844012	8.20186902823855	7.61988265872302	8.29967214573833	7.68099779452434	7.42711464173296	8.02523789433108	8.02674737937009	8.15821978258452	8.30418588547966	7.88783269185397	8.63076397282442	8.2264448786498
+"DDX11"	7.85974301850077	7.5678683451937	7.71243894199853	8.22747965824392	7.94778546957119	8.53502137707003	8.2411611153563	7.73051411417989	7.72449704843714	7.6464193681579	7.96353320541892	7.45161903399713	8.33023756643692	8.70914341815799	8.05523307134404	7.16943308907549	7.76127224184761	7.33990473175274	7.85046057395199	7.9024650188923	7.80621377514573
+"DDX11-AS1"	3.10711214619885	3.33762407109591	3.09624918123993	3.45121905580711	3.11814901213288	3.38650452865809	3.5658539069374	3.26499456959597	3.29887749960629	3.14761541827906	3.11798552421273	3.32387785914448	3.43795304840289	3.34488202688405	3.27420848537286	3.10897657508162	3.26499456959597	3.20130670243996	3.35043706219858	3.197672077311	3.26499456959597
+"DDX17"	7.52710494995109	8.89695605854172	8.16255675589567	7.61826881719119	8.49053018465827	8.51863581705976	7.74170203439103	7.43747029779042	7.24142765149139	8.43632184705705	7.69579786021785	7.16712106679049	8.30988117781473	7.3888316158214	7.19034932839829	8.2137962316793	7.31338165922847	9.37199734237707	7.88912436140455	7.22222278505603	7.13718715646661
+"DDX18"	7.56728595204213	7.69566023628007	7.09040706912539	7.12055330745829	7.5384199538741	6.74616447928945	6.87030834699855	6.969551811682	6.82478839790406	7.47789829784832	7.61116436116486	7.32894673389342	6.43041936022063	6.59918476230629	6.77936302162212	8.04399630150502	6.93739741149574	8.15709587176252	7.02924387494427	7.54583912648351	7.32880125283547
+"DDX19A-DT"	3.32903010349933	3.22395789270902	3.55222240876157	3.38238731642354	3.4190096212059	3.05988380382591	3.34823726435976	3.35528380681608	3.36080410889084	3.28970053470567	3.59791474076079	3.26688740184302	3.38238731642354	3.51773821042964	3.32110196824631	4.10537041698373	3.45728097094135	3.71475512051735	3.34215571292522	3.38238731642354	3.1642317033262
+"DDX19B"	6.32244684057734	6.58306363792382	6.47190701428236	6.14090351615437	6.40870943992151	6.30158446994808	5.9869117976618	6.08794924552146	6.05472885228442	6.35976027887638	6.34857849585761	6.03941758520597	6.24041561314048	6.17938906064773	6.19934398970307	6.45797034348466	6.01248613946986	6.41835831675987	6.22412961614012	6.29079601809376	6.12059484398192
+"DDX20"	4.44041915355078	4.30716898477036	4.57306617830421	4.55936509635535	4.47987192265778	4.47319459474298	4.32417294781226	4.24941666396243	4.42236112495982	4.75677459011785	4.35567325882204	4.3087272111739	4.69924373531101	4.29732592098412	4.94443795058486	4.64174520004088	4.04400957833803	4.60940312451251	4.39213296141736	4.47319459474298	4.52837910373891
+"DDX21"	9.56121678453921	9.19538771762781	9.06654135038154	9.20107565486454	9.2657000564797	9.23024903456334	8.93005469449845	9.55820461578233	9.04865272253832	9.09892546040862	9.25822795135356	9.14029765346801	9.00856862866577	9.2085859510205	9.2486568680058	9.43194389771365	8.88687648720123	9.57224001637089	9.17027971221462	9.13491978462416	9.61649082335583
+"DDX23"	8.11732671231331	7.51411317350714	7.84172441544657	7.57992068767048	7.74962209608971	7.99772381646494	8.0379468207538	7.9559024519689	7.85463670092638	7.57564513479533	7.56735348995611	7.56102540628575	7.67055690824225	7.99714679337467	7.72905524489081	7.51195362025062	7.51730872864098	7.94901535439639	7.56216176696388	7.80441316440831	7.67999301161844
+"DDX25"	7.62138111196236	8.35539875777225	8.5749692976288	7.9874113675758	8.72674832219482	7.70871554286297	7.39893345527371	8.22540909011863	8.41264614426904	8.51827048656935	8.15282592648631	8.51523721181428	8.21638561780682	7.99771019800829	8.07684660416266	7.73165062502223	8.22354188138342	8.39274982073274	8.05180149307381	8.63854425117545	8.20550145607309
+"DDX27"	8.31830144073444	8.1263628097266	8.37105924328593	8.24027332506387	8.18056828128665	8.68735542657325	8.18538985304887	8.2825320737861	8.14066218343683	8.07862411472724	8.26681519010951	8.1063145267617	8.45969343067287	8.24453915801822	8.30187576209429	7.93974538620996	8.09102973909626	8.2280368949262	8.2184289471533	8.23227554955668	8.01522233860124
+"DDX28"	6.36903030254174	6.48619418429588	6.95074114466079	6.03701575603516	7.01537987536924	6.09715596661828	6.28748059181884	5.91194102676899	6.07854110773496	6.79569404479485	6.31982846674945	6.05513752226917	5.86084715925305	6.28748059181884	6.02028371629246	6.77261396369796	6.12213693362033	6.6919119467478	6.0418907060085	6.99039546517405	6.46144529968686
+"DDX31"	4.69098441361334	4.49710778849379	4.35599819677306	4.39666580900252	4.36683503423771	4.08799871251361	4.4920717090116	4.44476813966304	4.6676188989013	4.32083508286152	4.47275039441461	4.05730077804081	4.16433145245427	4.351482966794	4.29027335322584	4.45233870267081	4.27635873185654	4.79435856355219	4.23088577776629	4.24938177285589	4.3117387545971
+"DDX39A"	8.39779796461388	7.77068430333877	7.90434888392339	8.00298332543503	7.67443416575124	8.64948356228512	7.78937354719451	7.68987435462424	7.78518936708747	7.97513239735554	8.23640606533028	7.42173284349617	7.90634978883038	8.28990657048915	8.15813673798478	8.36668793032436	7.38643929848623	8.56554011819319	7.73010395477108	7.98558623196585	7.90401512980461
+"DDX39B"	6.50991851302955	6.73054117518251	6.23161866764158	6.47760927464275	6.22580403089514	6.66259330672865	6.53259054546832	6.53259054546832	6.4327437609599	6.34550880297559	6.92928905755947	6.95136545614491	6.63191837247149	6.53259054546832	6.61497404002063	6.45884004501431	6.5900548257363	6.32160796868011	6.5565862607221	6.53259054546832	6.43868033651879
+"DDX3X"	8.8687789665266	8.35687885457783	6.72477338237871	8.1331848730377	8.20389630624989	7.5234945801237	8.26873881683175	8.54613396958711	8.3915256134226	8.75494162462416	8.6795882123461	8.2377164903412	8.23324459060064	7.65021328436704	7.30965177788464	8.17904242936542	8.13135132330302	8.42962733242553	7.9492497910647	7.89511111583488	8.21491810142286
+"DDX3Y"	3.26428914175174	3.07795252908809	8.28745596167529	3.31513965720674	7.29768366402759	3.20373005996253	3.08762503019201	2.85953858357817	3.20652426951253	3.10445188916792	3.09172184563121	8.34972378348319	3.34342389908945	3.24132048503868	9.4842584848534	8.0938421492759	8.76909906073197	8.65793232606221	8.99001060879795	7.8546669042821	8.28321177247988
+"DDX4"	3.74025193068455	3.81990809281931	3.91977967638055	4.0234104027737	3.96997698825568	4.22699288414265	3.8929202439466	3.90180224933516	3.89216129012933	4.06130437573355	3.8627185871401	3.87938400159334	4.38225912571191	3.98446364616375	4.24088622506382	4.18297182918844	3.82693726927016	3.63734615191803	4.16077331284125	3.91977967638055	4.04978916032265
+"DDX41"	9.09792281667588	9.11083405090559	9.59259698627474	8.69876109268739	9.33451532656327	9.00282029227293	8.6455756396738	9.03690413869523	8.82792915238053	9.1415995248595	8.98273112130029	9.11147044548947	8.70681321888801	8.84753433616023	8.62781073947334	8.95130831646378	9.16862776336768	9.15248144359049	8.73209289459044	9.51524914333915	9.17859889369784
+"DDX42"	8.74511090895777	8.48772653128579	7.64886204301369	7.82758305377329	8.53643162005276	7.89524127186051	8.00944112971865	8.62346927799943	7.62854712941881	8.88676955974403	8.78711756129642	8.75100769784916	7.73057144217871	7.98483204372954	7.50200079180944	8.27879493782163	8.32859552926568	8.32859552926568	8.03031364583092	8.70690166197135	8.6111478308688
+"DDX43"	3.43308535211666	3.53563885221081	3.80233484144993	3.66838617116164	3.44761510179555	3.85435546373617	3.66948951320878	3.51613595490037	3.67290492824674	3.58482893329536	3.46438074397234	3.76997230231474	3.53347603748314	3.74152317755971	3.76051183931237	3.77914000589271	3.63887291804465	4.45664552863722	3.63380446419854	3.86276436055097	3.59411153624263
+"DDX46"	8.78094522767379	8.53398825007329	8.23506540147066	8.44422015780441	8.50146412600086	7.92181121591195	7.89702441936569	8.57942816997164	8.44107285872721	8.59564579937747	8.65753247506053	8.46763047672448	7.88482354445845	8.06584323065369	8.38749453282967	8.79782623998984	8.47768666361624	8.97985362144507	8.37710954480288	8.58695206965024	8.68752185788343
+"DDX49"	5.56965304675021	5.47887537700521	5.37753790737038	5.83788268375862	5.4482815944855	5.93085736971364	5.98950666802363	5.68252365059641	6.06674924857723	5.60261128708524	5.50913784811525	5.39576317200021	5.98950666802363	6.18949086033005	5.80303485075684	5.51675293772828	5.65270841493246	5.31379002669082	5.7662511083396	5.44291566522414	5.68252365059641
+"DDX5"	9.80317727066109	9.77371621590108	9.8562768014583	9.86634538028186	9.5977979290779	9.53434482649693	9.751901728611	9.84153652645457	9.92240600676854	9.75813628258912	9.88510514630132	9.97837106827368	9.75418943959478	9.59398048145327	9.53584268109172	9.80694300545257	10.0399818303602	9.88221780115687	9.85763568482311	9.75376427103279	9.80694300545257
+"DDX50"	8.86059160819761	8.59072113565694	8.79194471358125	8.39343486521829	8.74587396336507	8.21757001703794	8.1857738804059	8.53546614907527	8.36773608700994	8.69542326710371	8.60941336167377	8.51805658958844	7.96847482300576	8.04136682913882	8.34643531083573	8.67698273119849	8.35335166851407	8.87092590272325	8.73515892864808	8.84519489542943	8.67230357727878
+"DDX53"	3.08038350963507	3.08329184833275	2.94906970106365	2.95877059824203	2.8389405152187	2.89661453914657	3.01501654483577	2.89852783872043	2.95600317317025	2.93663944255677	2.85052092500285	2.98586326033229	2.94906970106365	3.11124185124394	2.94906970106365	2.82885494000766	3.01954699832357	2.85605986070238	3.06726752127985	2.88829330098211	2.6840580098468
+"DDX54"	7.7385414798694	7.76853989504387	7.95105355828893	8.17745314943205	7.73304749067463	8.43684288728319	8.94681345606198	7.83124422328638	8.07983564308356	8.10827304654741	7.839530046748	8.2867510198569	8.26678924396284	8.26232917130135	7.99573443421439	7.6417207523681	7.98319948592639	7.58198591746914	8.28020563500202	8.13174250107792	8.12127866811833
+"DDX55"	6.07306828707671	6.47455650156764	6.23952980217664	5.85749731531505	6.22853518628116	5.93002816775343	5.82138016684235	6.00592380204569	5.73689150127397	6.26244235959397	6.78946968297515	6.24609492555979	5.85510388989634	5.7955093120003	6.00756590587251	6.54346887706396	5.60525575485078	6.59671270294476	6.3209396574262	6.22377213256302	6.3497781821547
+"DDX56"	6.80743679849449	6.45231336629408	6.41996344651629	6.84308374523905	6.02896439281592	6.678703319364	7.40331302385356	6.81788525473674	6.965392217129	6.42717765783645	6.50500273741713	6.53376214444723	7.03367212820509	6.76720250243647	6.96285900751729	6.23637259111652	6.68606498961591	6.22619955772884	6.76807048065893	6.17333629000237	6.59655406208956
+"DDX59"	6.10386198858423	5.84213144629017	5.71325293050479	5.4816593020741	5.90116842218313	5.26052513133877	5.6426227340978	5.96668269176176	5.17023304243872	5.34193393067987	5.99804915158969	5.56237600848674	5.45639467092627	5.25473400346196	5.29372367367144	5.89954810924971	5.3586304863005	6.14519260245951	5.84268846363944	5.50226584017121	5.6545712205523
+"DDX59-AS1"	4.38101435975484	5.37749240308212	4.5106852040047	4.36198969674584	4.83851391392687	4.0369159935643	5.17020775001678	4.87831871577747	4.23248846994397	4.5378583705047	4.90608133869224	4.94480444554944	4.21554922887806	4.5378583705047	4.05628421370323	4.73016121815874	4.46641737223112	4.7443399814645	4.21148819020351	5.17558742530624	4.16910210131818
+"DDX6"	5.28075787088152	4.88280154243747	5.23339295462866	5.55931898294596	5.34931915693275	5.96600149294105	5.08597963787579	5.46138795398479	5.19973652481879	5.32755801260024	5.01749414064881	5.41784973085335	5.45168567769239	5.74706054607048	5.40176762225054	4.90067808153647	5.1737196518448	4.89238454732191	5.32931232759105	5.35902213918243	4.94235283066129
+"DDX60"	5.97457080226457	5.35995282359494	4.99151133551085	4.52962473980624	4.99532194402693	4.79340542136707	4.98336632182452	5.42829908435997	4.67569487082649	4.41712034256907	5.28109949458451	4.59859327764535	4.49315054862534	4.72194051211424	4.02902103000701	4.88894712199079	4.77646364921326	4.79392762889163	4.49666470960977	4.8320385854644	4.73061568939334
+"DDX60L"	4.55967926262463	4.06315456349313	4.07251233664633	4.08950244132383	3.92196287129107	4.33450064752675	4.86497819405592	4.14448086030742	3.92595452165231	3.96138781562836	4.26907287618278	4.05395593304935	4.00189983674292	4.53684317101347	4.09333036752976	4.08950244132383	3.82129335363805	4.3410808564111	3.81535524507613	4.14408704355662	3.99967083431547
+"DECR1"	9.30442301307111	8.70655825262136	8.72134574593688	8.8886165538922	8.62292907301778	7.81800678524677	8.79493101435361	9.22792410644328	9.08361819121257	8.63967249832726	8.8898040019482	8.61462718819189	8.43728147936886	8.56289919649731	8.52777428372845	8.50312316780711	8.42514224203066	8.75462184143703	8.90041937636513	8.70323329344484	8.12316768149471
+"DEDD"	7.79659766858157	7.04387024012554	6.76803522509353	7.20346614286036	7.39705455617785	7.02651996177987	7.16058404748819	7.65995460217954	7.14641881677567	7.67253963014933	7.20346614286036	7.32392005425803	7.02771038350416	7.24934079071722	6.76496513228568	7.43748669997965	7.15572271782567	7.61964699952214	7.02037404190915	7.45307142469715	7.23254429314043
+"DEDD2"	8.41624847355349	8.32105317969241	8.72628472311564	8.93254605185239	8.70895051567125	8.93174051831962	8.73560668234929	9.11258012543127	8.8839909057736	8.6513719037172	8.31385918328364	8.8380149474727	9.2687663936983	8.50713586364766	9.02323565518987	8.32725987993582	8.5846786981833	8.6448387260351	8.44945007613113	8.9563493776409	8.59230191064715
+"DEF6"	6.31158096145271	5.81559383037049	5.64944012402867	5.37186229641957	5.81559383037049	5.97652212446285	6.21884127629051	5.81559383037049	5.82717020226463	5.73186637262729	5.7435811405472	5.30893095872014	5.87327581345898	6.2190027559821	5.81559383037049	5.81559383037049	5.68648980900121	5.63828899016293	5.80149667515766	6.02786989414054	6.01054847223972
+"DEF8"	7.14828313103543	7.37009186762437	7.56103497852667	7.58521652062163	7.97644454276945	7.71090759422478	7.58536621439201	7.42675545176871	8.09304108320019	8.07578263733909	7.31204606930272	7.68458809401263	7.92702404314162	7.53731732307243	8.05897532972574	7.36554275875059	7.71144295301705	7.70312194542835	7.76592409104672	7.95475864648487	7.84906344923535
+"DEFB118"	6.14019872511372	6.07447242365776	5.79579993110011	6.29079601809376	6.28226681461751	6.25216970178364	6.2902759625467	6.0925076862499	6.00562594280168	6.07807152248086	6.06516770834613	5.97643412716135	6.15003702271927	6.67855457312932	6.20632071248057	6.30997109772858	6.17882859132292	5.56274416230722	6.14019872511372	6.2688570437617	6.15065530506241
+"DEFB119"	4.8420920772695	4.7477735843864	4.76166735160106	4.80608310244502	4.73616438050024	4.75038011798637	5.26211791475744	4.74317552256131	4.88805147766727	4.5627077732177	4.44345167227923	4.89558849735372	4.64451866393146	5.29307066304573	4.96259371458697	4.70943491445541	4.75701002206238	4.76764009535909	4.66124087142173	4.76764009535909	4.89117974140588
+"DEFB121"	4.01968941846644	3.99750248018138	3.95028422421447	4.16537973543861	4.05474674434173	4.17516308049976	4.1129157976824	4.1129157976824	4.17400237090384	4.08193599403084	3.91272478582379	4.1129157976824	4.07645666181658	4.27106219073154	3.9652994272011	4.17028878107483	4.21113411431309	3.94591873466715	4.29938893389525	4.03545930922709	4.27889714131162
+"DEFB123"	4.9051010017135	4.80683461831062	5.16197318736833	4.97103786528658	5.00466922701725	5.08632772896675	5.1541147180697	5.01577575583151	5.20524062016914	4.72450100250258	4.89046067678154	5.0739381782587	5.17531102246592	5.46003636710508	5.35854163554893	5.01382211031362	4.94215721111814	4.6303401818407	5.06959211468852	4.8273638531251	5.23457218945625
+"DEFB124"	6.98442032760267	6.91180478665486	6.76339666113479	7.24970736459466	6.87411355176956	6.88347090056321	6.95869270123052	6.84293111792934	7.17676240092894	6.96863363093399	6.9493553218363	7.03579871546125	7.05224635229932	6.8539056390786	6.95869270123052	7.08293807687186	6.96655227283397	6.71722600906658	7.10304779416233	6.92514874314952	7.10958365941667
+"DEFB125"	3.39476665339327	3.61553700172884	3.62589837570552	3.93452054510527	3.75828962918396	3.58673148502854	3.94166358706596	3.69759534500337	4.02902103000701	3.54809484177152	3.41581828094531	3.74829537000791	3.6911275910588	3.61476026975435	3.96813862057938	3.93657290309393	3.65540592325224	3.7776067404131	3.52686696093735	3.63573775783043	3.75488346152085
+"DEFB126"	4.22871187619675	4.66925208059112	4.43519426368395	4.55208451154098	4.58461056824133	3.94006139952196	4.59986920435895	4.26909230289187	4.48449827476179	4.30907564101506	4.37808603184257	4.48449827476179	4.53332879666356	4.47319806445655	4.21980558934849	4.79352104613321	4.41211229076993	4.50156503086539	4.23388465012871	4.70341195154889	4.59942507712671
+"DEFB127"	3.9486029221011	3.98622443293046	3.72472824863282	3.89982208607258	4.02751164111147	3.93204150951239	3.94386262039456	3.52188894022543	3.93481754133709	3.74737806399744	3.74235217017352	4.03207932945138	3.98346874919068	3.92765096093469	3.88073277352348	3.89982208607258	3.95605614825469	3.86641309519355	3.78301606195979	3.89982208607258	3.94914819055882
+"DEFB129"	3.14960327019437	3.67180009414928	3.78672959420237	3.35629725596602	3.71297812023535	3.62160727492543	3.59035006425724	3.54742494723704	3.41794313695282	3.5850562200439	3.18090933118816	3.29504676355475	3.44446509127146	3.64074586246831	3.45713094343759	3.58849460622507	3.59475711722229	3.24257085682185	3.47791556323223	3.29682834838377	3.47791556323223
+"DEFB132"	3.15132839120907	3.16996704262016	3.17199625572368	3.11979642253919	3.17171655942232	3.15132839120907	3.08935319408638	3.09993426572706	3.11764367374337	3.32726207976967	2.94449250060621	3.0708433435571	3.29212297853653	3.44151174258809	3.14612707811205	3.20108935713021	3.17662246108273	3.15581965641669	3.15132839120907	3.20947076244959	3.0515691162141
+"DEGS1"	8.9361810101752	8.81098080484862	7.98249714840978	8.63388238758769	8.64072240823819	8.08884172618443	8.47860063200138	8.57305606018763	8.73994299574071	9.20143158522958	9.12169014327971	8.78512370473847	8.58891874982764	8.23979818104239	8.39832263312536	9.25446984425438	8.59259822303074	9.31736937273776	8.69597877390586	8.9016710025109	8.93784499382903
+"DEGS2"	6.33091819723969	6.28660628598203	6.26610659889787	6.05765761551285	6.10924831012959	6.32668465021152	6.45904946225085	5.91577927036648	6.35839814731135	6.31084732735849	6.38010486186632	6.40252307127867	6.47423763682267	6.5267540138386	6.09115226784121	5.97518688586527	6.23488128247241	6.28253760190483	6.21713666188007	5.92691327640009	6.39768715477936
+"DEK"	9.56521759783823	9.21883748385444	8.6709934028309	9.22823159068218	9.11851325890431	8.87347716563978	9.27645339388294	9.56950559883985	8.87448359014313	9.16826729946578	9.59734768609086	9.00939941464536	9.2277452518329	9.14307696007176	9.53330665720831	9.52292040821722	9.21969511280266	9.8344195043027	9.32308372993162	9.09765332822237	9.05475612317879
+"DELE1"	5.9841263243859	6.60942105822048	6.25170805560181	6.01561620332042	6.12015622488604	5.66394434594667	5.71597806675996	6.01861771466615	5.90215270408773	6.36100880584957	6.17652087759422	6.16054516399313	5.65416583596398	6.00401527061016	5.28942540428472	6.22528175453793	5.75567328751043	5.94129796955908	6.09742110513996	6.24429155629789	6.14734122999397
+"DELEC1"	3.93083505975622	4.02357584316143	4.01615771219074	4.16047276832245	4.03979539245002	3.822479904515	4.01615771219074	4.01615771219074	3.94929064355114	4.01615771219074	3.86327588499998	4.01615771219074	4.20954984641821	4.03681821001888	3.99921337973988	3.85464170437052	4.06775806295163	4.0392741852574	4.36988784158124	3.74665256910199	4.15910426828073
+"DENND10"	3.54295513805665	3.79812701440554	3.58387896601217	3.76145915426798	3.46017781813186	3.80808315047528	3.93677473634177	3.84342211293161	3.98277699883025	3.96535670785627	3.61855610287494	3.71577035720389	4.0513062078486	3.60982588680531	3.6893347283894	3.73820188779484	3.68452139946048	3.76145915426798	3.6878383756764	3.92561606770073	3.84464974844168
+"DENND1A"	8.91386127725491	8.3911766108461	9.21201902027773	8.89689805370066	8.90547078109044	8.38321146872636	8.74775067894531	8.85405369811523	8.93234615135172	8.74956732147648	8.83997284711077	8.76411057273378	8.85638458373259	8.71426652729246	8.66354140698313	8.67493118768007	8.69952153223592	8.65390414333712	8.51381770730668	9.05410036661877	8.81006929906743
+"DENND1B"	4.42633760833415	4.99393843417572	5.4586137818722	4.90630564402077	5.22781468344217	4.76661175662406	4.27797506408156	4.33266333567779	4.29269268474174	4.45238151511703	4.12590318330011	4.7833510188209	4.58499689409791	4.45939392961424	4.97286502071668	4.15096304304181	4.1600891273329	4.38868458282386	4.62310237921459	4.36819880306743	4.39893437511516
+"DENND1C"	6.87461984853252	6.70949696802663	6.52532006346154	6.7018403260185	6.52813120898041	6.8086599002106	6.92608628891911	6.47173211580888	6.73761951590344	6.59361593165903	6.6629304731104	6.25093848724034	7.03949669212527	6.8386753202461	6.79349070713644	6.78573045268068	6.57345623828949	6.36584636697178	6.59787768265175	6.6629304731104	6.81652699241648
+"DENND2A"	8.76400548478683	7.79514430563368	8.02456446895152	7.73139907414185	7.55319307375227	8.39549236290547	8.76974069075824	7.87370201219531	7.7427282716012	7.5723097470343	8.06828968328023	7.45120779341963	7.68326376121009	8.20289414549298	7.87030807886957	7.75192313454572	7.69705260351108	8.04320460445622	7.75990786457032	7.70016524683569	7.76728759231001
+"DENND2B"	8.86154414384172	8.19956969452526	8.56190223750152	8.20483391310134	8.07395507889426	8.42802610782327	8.59249091921598	8.4285278831048	8.16798195108427	8.10883548329019	8.47866968204681	8.02414325585976	8.2258484767698	8.43051361991791	8.0908505083828	8.00316148565435	7.95450887278054	7.90721357558249	8.12717904461522	8.29285502916668	7.89949794190932
+"DENND2C"	5.70459299955454	5.37573802864141	5.34502395569178	4.99271915330969	5.24029784318352	5.40108933227533	5.5516656521074	5.27324972805873	4.7695031760543	5.11952981996113	5.25437367401309	5.00821338453675	4.94795393059045	5.42013318380113	4.80672632174273	5.23450336376439	5.16503620376916	5.4746033276233	4.92036786917731	5.38031631856654	4.91912212229306
+"DENND2D"	5.68636150684966	5.29115639572597	5.06042424296125	5.07412510338306	5.42861792506525	5.0499978774465	5.24293594456895	5.43560224286457	5.07149687364941	5.18875462861981	5.48125409989114	5.21814998079814	5.27437693792198	4.93791629364466	5.35532063286249	5.42551131364954	5.23601207185109	5.06892365900616	5.51804641802719	5.91423351962887	5.84604101002018
+"DENND3"	8.65385519887812	7.37305695523701	6.88081323250646	7.32777056447244	7.36514064434986	7.28189880116281	7.13571096885424	8.00977800253897	7.19200014091534	7.52131596267857	6.79875469499094	7.36474162794864	7.33856594392615	7.53389709801007	6.84735774073151	7.15645560086853	7.56307439410179	7.027183781052	7.62349081305279	7.80457997799681	8.11895448295712
+"DENND4A"	6.32399037575417	6.29485015020274	6.29646865239988	6.24968183334448	6.24495180402994	5.37028485074528	5.5343609249172	6.60764538710412	6.34514217362368	6.04867897296977	6.46538614130153	6.27063316282996	6.21400720196894	5.08434163260989	6.4230765542915	6.54852413648395	6.37541534870435	6.63621155657443	6.10611515970788	6.19648687689613	6.61575055340852
+"DENND4B"	9.7030077638568	9.89826491639804	10.2633881732009	10.0767381707254	10.0301832899961	10.3676621855492	9.84666032473994	9.86977880254263	10.1543866087389	10.0122685321439	9.65633962527974	9.85744315586571	10.2629129933768	10.1341896682963	10.1458270625295	9.77640892560623	10.0507916210378	10.0122685321439	10.1899539223223	10.0122685321439	10.1468367078031
+"DENND4C"	7.0007826974074	6.90043551845045	6.19131535707002	6.63079141123455	6.5642742391142	6.55568305174871	6.97352842920314	6.76514561703273	6.90272222263915	6.76224497898773	7.15103495873466	6.76224497898773	6.85040569419491	6.98537560611836	6.84658092731084	6.59120845086375	6.87434191160315	6.63380183969709	6.61677038027705	6.48583228849031	6.49755478674645
+"DENND5A"	10.9241920991337	10.8986583196523	10.6662605534143	10.5355596199753	10.544338167039	10.7631557064831	10.736837522104	10.7377280144791	10.4283614697653	10.4520109255181	11.1831074380929	10.4085275786149	10.4426195663532	10.691552353342	10.4712656075063	11.5434531805182	10.5436137383034	11.2953629025614	10.5766660228126	10.4268701663733	10.6263197259083
+"DENND5B"	6.3601220785349	6.67100538307928	6.74731606813165	6.84986198070131	7.09201661974279	6.49804472660575	6.60680102597418	6.78455909971804	7.52520653412994	7.18611586451469	6.79706812611199	7.03677662287174	7.25469838030086	6.51863120593649	7.58258508750719	6.57719915621288	7.33654827168838	6.62291256592643	6.93443390812262	7.06922125102595	7.35383090642572
+"DENND6A"	8.38455304695939	8.38664534765788	8.68680466506473	8.06712850933456	8.26647095588511	8.08551019265956	7.67023439790723	8.5982583961322	7.93142806027419	8.00137560540562	8.74664876546123	8.08116724998937	7.71928065803571	8.03897189720574	8.38880833028031	8.4535791400097	8.16051306611069	8.69593123964553	8.26748730438764	7.6819745920981	8.05195426563457
+"DENND6B"	6.66905077470618	6.66905077470618	7.03085002252337	6.60324840280428	7.413431221236	6.66237402427022	6.17841049359984	6.63013949616293	6.10870339474443	7.13883805456117	6.84458428394528	7.14017338829333	6.32551262853329	6.31429396779173	6.0470567775022	6.07400816263834	6.87495099614146	6.71092457543524	6.40245624018668	7.32656174538569	6.73108050872794
+"DENR"	9.61232144552948	9.5925574532956	9.95132847514904	9.43602965778943	9.91183461972919	8.74767194071891	8.98355398591949	9.39563401149604	9.66653844524242	9.9408003306098	9.47325355189328	9.63463859663441	9.12825821383654	9.05347457278529	9.49338437394302	9.63879173354934	9.49319102539266	9.59585314883505	9.65818487334362	10.0109244123294	9.87436706894131
+"DEPDC1"	3.7161970448795	3.90015100929437	4.06946485117378	3.67070527653705	3.99716000663305	4.01688548142289	3.77854277402502	3.95937795778599	4.19852409078633	3.73475031505007	3.62589837570552	3.88912173394737	3.88509171534632	4.12981651342373	3.88509171534632	4.02697705571766	3.80517016201636	4.16253783428012	3.5205111334317	3.70735138555	3.88509171534632
+"DEPDC1-AS1"	3.11536599145538	3.0908704337276	2.97901457659863	2.92336296407986	3.17219347135757	3.12828259046811	3.2844356255246	2.86219115092464	2.93561467815994	3.05541030229517	2.77099121773411	2.97043310701664	3.30042534782645	3.196175479631	3.17060261855207	3.07679203856419	2.96219808895511	3.03494250516311	2.91753891890755	3.01118246609676	3.03494250516311
+"DEPDC1B"	3.00721582986272	2.80824502540862	3.01957022592318	2.84890473103887	2.89334938526495	2.94741013257231	2.71205385119034	2.7249516201537	2.93552575584307	2.90564229978405	2.89334938526495	2.79981463395943	2.71989691259037	2.89942206925349	2.89334938526495	2.97696694183798	2.80575274252135	3.08729470442426	3.00396199440316	2.95657693563315	2.94317618124667
+"DEPDC4"	3.57706636908692	3.31840271339141	3.90308154980659	3.76710609633942	3.63894687360158	3.79701969433295	4.12442251367476	3.66168062202606	3.81967023340043	3.74486136750849	3.68487032848339	3.71725558529587	3.84410334528967	3.72934519251833	4.02902103000701	3.24010865435037	3.63627457109138	3.74849880112918	3.84279023828308	3.7978438023148	3.5882647506343
+"DEPDC5"	6.62738596268763	7.0207329011537	7.25260426856822	6.60833935307526	7.31756538508179	6.92007119124133	6.49252709726285	6.44665655200595	6.65489407316474	7.16778663568956	6.77267021094113	6.89381162030053	6.66687044547345	6.77456559362193	6.37661675046728	7.34862570206305	6.78080934150753	7.20026939264427	6.41342603357341	7.12902036400345	6.93745044199564
+"DEPDC7"	4.74596003699387	4.94101863078548	4.33557442057078	4.50904864503883	4.11742707619968	4.54848762661706	4.14918365564405	3.5985855354401	3.80878123130232	3.56459339224363	6.12764115718218	3.37956096078995	4.51755450687219	4.15903053883446	4.18610887574747	6.64309894955652	3.29883157840818	6.47284225772808	4.0245505823774	3.52000790475526	3.83036948174399
+"DEPP1"	11.0806991166478	7.53809780178152	7.68599610424594	8.6293789030068	8.58021834109829	8.75641749232337	8.55464344520244	11.1766769788982	8.38776863514548	8.51627099719209	7.75076122734209	9.93542107544119	8.71851062895706	8.47551184875794	9.13039155571298	7.7857648939336	9.45799539521063	8.06798786325036	8.88404047217038	8.71346100111634	9.64596218940929
+"DEPTOR"	8.06371749712419	8.1014406215795	7.47873923656611	8.40347512174958	8.36361240280641	8.05298935934919	7.68083422687144	7.67761848944498	7.94139116282517	7.95999586644584	8.71626230366093	8.07975741694835	8.04561384393083	7.98956512729415	8.03146451930155	8.88361242554503	7.94247001152698	8.60739232460138	8.25857476154212	8.0692368817891	7.78996560286775
+"DERA"	8.34865627403096	7.51880630140053	7.16714982831404	7.29416072921733	7.43730480840415	7.30132467953263	7.22885579970291	8.01780541161785	7.08436677613414	7.12435593723149	7.8944199842931	7.28853805487333	6.88123558275754	7.31459050399247	6.80225008065459	8.05595195728644	7.00438139313837	7.91915588935539	7.25159667403806	7.02612003193159	6.7292292574443
+"DERL1"	6.58400552031021	6.31191076748944	6.42429776877763	6.15828842884765	6.54087483096635	6.05127165437752	5.71817544592343	6.16185241693774	6.10870339474443	6.5488165760087	6.77825835348994	6.46825639343263	6.22785206787021	5.46304759860765	6.14524018173114	6.95087562658674	6.2383197039533	7.05590908413703	6.28410783899817	6.55820919978497	6.38078476681953
+"DERL2"	8.2488185641416	7.59057381299151	7.38192363336686	7.50655783940047	7.30110276836933	7.56390568552512	7.78227302334372	7.63129731285831	7.60984214104269	7.48267289034239	7.84343609283865	7.33948035271429	7.63646131706413	7.60775529402833	7.80565003856674	7.93145066989294	7.29186722341708	7.80586006433634	7.76853989504387	7.66104743643877	7.59051193824618
+"DES"	8.10930243522249	8.12618750626616	8.10986125503283	8.36436474657365	7.92541412150206	8.56022793682475	9.18248991603736	8.13187001633601	8.26676266525229	8.303196878676	8.01608592235345	8.24900324079727	8.50766980415986	8.63402376928299	8.30240993210193	7.79662013855611	8.24344094926737	7.79089113222404	8.58270719956855	8.26773816903121	8.21352003660909
+"DESI1"	7.21319440613638	7.16737748277093	6.78206430457926	6.80597789583321	7.0245478816755	7.02788560331972	6.88385920079337	7.18191451252163	6.92476132954816	7.08905949210689	7.15929463956037	6.87688433805547	6.93907414514039	6.90260488207483	6.75904341776019	7.12963008019866	6.90748607505065	7.18056311552913	6.70877566018413	7.27952388675576	7.31988847471952
+"DESI2"	7.30350685858557	7.08718490599538	7.45848874519045	6.93249793007217	7.33416016564623	7.4097223546419	7.42871048680333	7.307824049782	7.44455988328987	7.14460831063529	7.3154198732566	7.17537039188497	7.20189775441125	7.45226751975494	7.43316667834927	6.98265219522059	7.12989704060982	7.14863106385863	7.37770043809917	7.42272539079821	7.23438494772565
+"DET1"	5.38828927335765	5.29727140033987	5.40473670125591	5.47225080605248	5.48256689434707	5.31989873019133	5.30414423973762	5.16029529615893	5.36507123503653	5.19524417393028	5.40537851505708	5.12430042043626	4.93520897857954	5.49514433358527	5.30414423973762	5.5202118948734	5.28171825083878	5.30414423973762	5.21576427994024	5.21956944388275	5.20105339134318
+"DEUP1"	2.88212932148991	2.95230893690578	2.88181290434466	2.67669683604206	2.91791779250856	2.83048658235907	2.81785626430475	2.91083414627757	2.75403649845301	2.85474107566784	2.85747844843978	2.76531320467174	2.77145174699205	2.80141809283563	2.77729694768015	3.23259270483361	2.83048658235907	2.93703469893202	2.71154257115515	3.20374992358861	2.95186649022319
+"DEXI"	5.99200430432144	6.28858343325147	5.59079697576323	6.60900010690469	5.23897278654052	6.10475593835375	6.38302679697015	6.46975210104357	6.50633213340111	5.31799413236516	6.11130607877482	6.01490388913714	6.79528793345498	6.87524835452261	6.95750930019728	5.7637414832805	6.12990022663162	5.6309012901024	6.24624496249475	5.98737603366594	6.00158614337695
+"DFFA"	8.81735348594307	8.55671194667577	7.88933613413558	8.76824846647608	7.86525322127916	7.50975796765038	9.14342035043246	8.4170659294311	8.53754820946885	8.52214594813442	8.90312755915061	8.36926170980207	8.57635096931387	8.87467797530284	8.74321557010183	8.75024920969574	8.32223075964607	8.19886540648182	8.69053632912206	8.49613299364867	8.30163303156509
+"DFFB"	6.94763467123294	6.79821937240672	7.39308083828343	7.33820724729287	6.57006335792577	6.80504900639835	6.55876492982568	7.08074857754134	7.09050128419736	6.71253335423546	7.2021415493369	6.89777542638619	6.84453780648828	6.97439989117054	7.30937216541754	7.11126598047133	7.01714163905033	7.59099660524211	7.0902830508983	6.89116996432338	6.91350112591255
+"DGAT2"	6.30405335365208	6.48346682620757	6.54073036784031	6.3634883097952	6.85733132140901	6.46964488619953	6.14117216891384	6.38764418066467	6.51842173865867	6.75271506472697	6.18519063221208	6.99415322081466	6.44202438917432	6.2012633033799	6.48065256713407	6.29591311654404	6.52813120898041	6.57185068582639	6.45439873668456	6.81454671195808	6.64229804233422
+"DGAT2-DT"	3.98624875320589	4.04607259124915	3.94942427625798	4.19311891447515	3.91891119431149	3.93585245386732	4.07308115822973	3.9714363111606	4.49845147956683	4.23771316604445	3.9553309327642	4.01497895008553	3.97920541008612	4.06387464015794	4.0278942204622	4.18990746967612	4.18210907946459	4.07624716179744	4.03529708035745	4.00551479036438	4.03529708035745
+"DGCR11"	6.76975342653902	6.74059701429339	6.74196792186042	7.05785862676839	6.81433398305468	6.66590456771008	6.91764092851803	6.78327283218155	6.96750264809739	7.01253161149916	6.72066604495824	6.96531664560388	6.87945931671836	6.75687616389373	6.92010703499916	6.80380071146656	6.94559560210104	6.36495532553471	6.89307344076885	6.83151316154163	6.92542151180774
+"DGCR2"	7.88685308677928	7.77680879117458	7.59203185054572	7.83830325301058	7.94146690945826	7.69224179028426	7.8834124679628	7.88685308677928	7.88685308677928	8.31956573588748	7.93648995409021	8.29618516783836	7.75095114257015	7.70386188778359	7.49304662138133	8.14724766321922	7.91957665606399	7.78294914762553	7.67438117908977	8.3211312164865	8.30970187840988
+"DGCR5"	7.03400247500761	7.81544802790838	8.37206249922291	7.61274112817507	8.55091326646639	7.70176955328115	7.17832796927898	7.25430558999427	7.74848027861269	7.92360384036025	7.50344013901046	8.26813967386315	7.95117193251029	7.42082559790491	7.6225896844384	7.42791278492474	7.48790117339438	7.91279639456445	7.32641719735143	8.16445885912276	7.76853989504387
+"DGCR8"	8.13607203064437	7.65630224920306	8.51240197724732	7.38577390731006	7.54215796154071	8.00002355791888	8.04981289993094	7.55937834506203	7.54471573674861	7.48981872941753	7.48355084104729	7.52659367172211	7.64630272644234	7.84524156300324	7.70521115331777	7.8107954077986	7.40296268250291	8.0715714802423	7.46622997282906	7.94554604902802	7.34059688931885
+"DGKA"	5.83713521339708	5.49847239466047	5.8813931521438	5.51229934269628	6.17088219608689	5.87990132265637	5.15317752088832	5.59692943546668	5.7993317320019	6.26749886762465	5.35566553009115	6.3134654831017	5.50076182085259	5.49255410467962	5.35831500956883	5.30775559571673	6.06030507826904	5.86454874366612	5.7993317320019	6.53178283843756	6.46731749775333
+"DGKB"	4.91903776308487	6.07100223446912	6.83613630298457	6.23168719723797	6.98722701620338	5.12496844978488	5.03827677577791	5.86784781252785	7.32356798411342	6.7473394397251	5.0141509261138	6.27168953357635	6.24376581960932	4.64140889733501	6.45779474110176	5.44738299420528	7.03871945717417	6.41835831675987	6.61862354721966	7.00070133375622	6.86741781483679
+"DGKD"	8.45151593968572	8.39812922900798	8.74970959539728	8.53849639502442	8.2881771551965	8.6897607232905	8.53115056937656	8.01305526381048	8.12156244997528	8.35933808900801	8.76520769786872	8.30831152843616	8.36561933891683	8.61496713797941	8.17804314591019	8.86248956430301	8.47744253698871	8.82346040931138	8.46976013922651	8.55917283326478	8.28711354697828
+"DGKE"	5.86065722895618	6.25163023309224	6.36862554345676	6.20866008511568	6.73531880601559	5.85135723933318	5.70375113202297	6.16185919054348	6.24875703344999	6.8809702564005	6.25633201049703	6.95025309336111	6.39820364456486	5.70073662816092	6.3643480768716	6.3643480768716	6.60954476828203	6.55675499876604	6.46591839090291	6.96839642891208	6.67825248922227
+"DGKG"	8.67059863948105	8.2262234422805	8.56025384254193	8.78396061206133	8.59575360766672	9.84316614886179	8.70260617009533	8.48776094346164	8.66062265910027	8.37181062041697	8.1847460330451	8.83397649518059	8.5766219120745	8.78055291919702	8.69498066590211	7.36377439204726	8.88820421092405	8.23848400478656	8.31869248872282	8.60200753956361	8.47487291016268
+"DGKH"	6.86643883564869	6.99440797955322	7.35684345910688	6.66394364841348	7.00086939782439	7.68267225880118	7.06430996848045	6.856065243235	6.56632847837282	6.61342712771677	6.53831825855169	6.68497594531796	6.8355867288167	7.21253722824114	6.87536389464536	6.08074545415635	6.59460786352311	6.02380780672033	6.76624805558009	6.67507699861829	6.02329277492716
+"DGKI"	5.78602801240828	6.55380958995257	7.00044237175471	6.10271985819724	7.78920137398858	6.66237402427022	5.93762738687591	6.41958787510726	6.95266407131266	7.09878250736439	5.79976601284619	7.39962520052012	6.34588612006718	5.80658662218511	6.62442933522262	6.25975585486541	6.8394124830773	6.83923070369379	6.56724772615578	7.31298227903841	6.86300262965439
+"DGKK"	5.95974045347961	6.06696305805142	6.07242466909792	6.21368241052972	6.19340238559397	6.0262921783041	5.77020231740321	5.96997847025752	6.25817069719745	6.04358770183941	6.07242466909792	6.07242466909792	6.09962654103747	6.29427061090975	6.02532280743802	6.1043867885211	6.29873053398303	5.51933535506497	5.93186069337725	5.97035136663395	6.26601251544156
+"DGKQ"	8.43579474166946	8.53272565458554	8.96355867463834	8.1866652442334	8.59852541602541	8.62008288421903	8.25449687392332	8.35332844814288	8.33143595947552	8.27672699583883	8.17421929114991	8.22257539818627	8.55551861989886	8.38819352365747	8.21176110487255	8.09112261242285	8.41828000603213	8.48173771220043	8.13639375954647	8.5678731575392	8.60210820028951
+"DGKZ"	7.13430473873405	7.5175227529971	7.77962972767188	7.54329207811858	7.79317815190619	7.94557066913021	6.89386524808996	7.36811583603392	7.87362821159696	8.14551960601869	7.14107482715145	7.93293244884243	7.68792875192489	7.34625133931714	7.21787538463296	7.25007638494886	7.82832838533698	7.77084967793435	7.35499206017358	7.92623258054591	7.89135324334354
+"DGLUCY"	9.56274496447398	9.27094370243791	9.41625988919547	9.09346382330511	9.1055384528617	9.00627912554315	9.69324868277032	9.44936109717016	9.07803944610565	8.93918735112611	9.48382810138384	9.2804207297916	9.0259474410108	9.16456320074216	9.20177768544352	8.99041468835613	9.1859524698913	9.52245618479269	9.29521420084689	8.93176539183768	8.97879577997753
+"DGUOK"	7.27245000099096	7.3116416970347	7.91777362795287	7.329104481818	7.97108606044978	7.45770911503679	6.75475036972861	6.99629852850091	7.27439387291094	7.68380830558445	7.36240820724318	7.63966500616833	7.24276231356474	6.92958690351167	7.20665076612995	7.72004443020248	7.28534248022871	7.57941441232481	7.33791676143892	8.09061911002408	7.68520880856018
+"DHCR24"	9.46217392188775	10.0328440279801	10.3294423219112	10.0690743118984	10.6202992488764	10.9299717210877	8.96032723489603	9.07339883599614	9.70312217937099	10.5450485998522	10.252204327801	10.2548229940116	9.80998429105646	9.62831297360534	10.4670277972782	10.747604912869	10.2771245491232	10.9926049751797	10.0614237892738	10.5964800457363	10.3767995867398
+"DHCR7"	8.69682324032896	8.73191156962999	8.18817272113503	8.71158151492911	8.76814445927763	9.88669528083273	8.40339494112136	8.52155399771809	8.16484590025175	8.8212266805249	8.82676752849165	8.75963061974345	8.69745834044425	8.92900600804789	8.5503414712222	8.95407558828664	8.73191156962999	9.96339093289362	8.4654366006898	8.55340017867278	8.39933326658622
+"DHDDS"	7.77534395981016	7.87075209048188	8.03017984963643	7.49318911890556	7.86754082828588	7.53720456663221	7.31247351123776	7.37877085564728	7.73041799764843	7.83407607953312	7.7602339430964	7.79030355208318	7.46714919075996	7.43139866534428	7.60113696514362	7.66565982102525	7.45718966608905	7.89971917058605	7.59534751911926	8.06515896053898	7.79867289677727
+"DHDDS-AS1"	5.21729772578399	5.13612435496215	4.92036285514128	5.28066228215072	5.05678199225404	4.45139542817675	5.30414423973762	4.7185562501078	4.73056788157258	5.15813321167259	5.22493950830602	5.1326174237505	5.33694002809104	5.19570849153505	5.3992486982536	5.25146185202196	5.16783246032317	4.95943014296011	5.11357913033356	4.90694327314637	5.11791851015611
+"DHDH"	5.40819355385605	5.61318903252633	5.96668269176175	5.65676956087801	6.03437873911743	5.83725427339503	5.94925098841738	5.47824231486929	5.75999274188423	5.75689730259938	5.35432387206854	5.8071215521968	5.62735506388358	5.9402814838667	5.74510120450743	5.6943165640443	5.46049976254501	5.29102976289338	5.55792823587451	5.5468526031785	5.6545712205523
+"DHFR"	8.24461664551522	8.01471884484022	7.69388216864404	8.11586574599422	7.66576000250779	8.65993278653904	7.01928917315826	7.3498591545274	8.38365343437652	8.15987037771254	7.73783854459085	7.03163501553481	8.60756382150318	7.82134881965344	8.2554308613107	8.34563284655677	7.54584104795004	8.10992763264615	8.25328032825793	6.57173697814486	8.2029574452713
+"DHFR2"	5.15893173748224	5.35079240209428	5.4451495986718	4.81348563876621	5.08380141089056	4.72233895383454	4.61284354163675	4.36155744187166	4.59128633133415	4.66919309171612	5.81540917529772	4.62057341136076	3.63089040965563	4.80358113681972	4.07750887750315	5.92714037897975	4.82391000317028	5.91691808232059	4.90299070099858	4.77128274698126	4.6136425933778
+"DHFRP3"	3.17804220631976	2.93153323718572	2.96969936783548	3.105970383424	3.10445188916792	3.06395808722421	3.06395808722421	3.07900585251003	3.0548296951252	3.0055970534983	3.08649063032555	3.02842082299075	3.17860792333721	3.00294521832402	3.19828089867673	2.92174829939801	2.94796402096407	3.06395808722421	2.87402849987419	3.31261544392411	3.09619152750394
+"DHH"	5.30429589009956	5.09484572990618	5.16943550878873	5.20113974231536	5.19956151822399	5.58633444412981	5.60302043777014	5.23224688093533	5.24497256017488	5.20113974231536	4.95174029978511	5.20113974231536	5.380065773505	5.34855715612591	5.05159606277483	4.9668255257699	5.11252006916169	5.14873718901971	5.20113974231536	5.12886261933125	5.30683371600518
+"DHODH"	4.82211332351332	4.85795954337047	4.80687822733057	5.05505074745183	4.68443683703446	4.76693936431029	5.17566769382773	4.53552366041602	5.04510834855519	4.96377952924032	5.12827792980977	4.81398483348169	5.08437198623601	5.09156239777509	4.83322326293576	5.26679751526581	4.55873223256896	5.19697582230759	5.32376114133752	4.58785384010075	4.88839132448174
+"DHRS12"	6.19230816642568	5.96023010152932	6.21015939491905	6.25314949272547	5.92798572890869	6.31164917052376	6.37449759446672	6.1436758327704	6.14000860629753	6.05634036038493	6.02884913159247	6.08613049391083	6.23325288775466	6.54243545498899	6.17007248696622	6.1312991489585	6.0787245876448	6.01279223491164	6.1812049788523	6.06359518603833	6.17106762359257
+"DHRS13"	6.9657177805802	6.87750979059262	7.15768071878623	6.88719610778978	7.10958365941667	7.2288544173708	7.19008542580894	7.53423952967964	7.22437881168989	7.27909778696859	6.97947300363422	7.07158166905038	7.14423918945603	7.2596887710881	6.99874763801677	6.96419049457459	7.05629142485905	7.16987224778017	6.72825599724385	7.44653046376614	7.03753542566634
+"DHRS2"	6.31115649408858	6.43858709334239	6.35430717119677	6.38750468992218	6.49664856669033	6.72232190555851	7.04457323389394	6.45915930320312	6.63291107424417	6.51300860257853	6.29953388070131	6.48377299024848	6.66112790307731	7.01119245051308	6.42604648442165	6.36749596828084	6.47481144642511	6.2927087822069	6.56496420536726	6.45915930320312	6.51080622970047
+"DHRS3"	9.8182062091735	8.45084370670957	8.52975309390132	8.5463463474408	8.44126457293774	8.48884674680793	9.48378983967308	8.90118401148953	8.65057254399403	8.84754770057405	8.46124105401913	8.27629211531901	8.48332757722886	8.74198805512984	8.83482628629291	8.28950867181831	8.3886177373968	8.33781709173634	8.81875509383052	9.24426320980032	8.32785421741706
+"DHRS7"	10.0468363008373	9.54037503825476	9.0681453600146	9.34486213229859	9.80083277318318	8.96523218967532	9.39702552570278	9.61214830644977	9.40941994723883	9.64947408751255	9.66409718200412	9.55693637640226	9.18567813007032	8.97447293366413	9.25576239368639	9.81855401481809	9.54037503825476	9.75112033110565	9.60266307641393	10.0069674257949	9.44039796694658
+"DHRS7B"	7.54052701724638	7.26505839601901	7.42989175082717	6.98387768123895	7.79932256403984	6.91681409365164	6.85877537059853	7.2614808675852	6.86880403436386	7.69278202826608	7.55756006485529	7.27299927640893	6.75019598542863	6.64429150628188	6.25834551384805	7.67751107606251	7.08766134834484	7.57123398347981	6.9830289507505	7.86510826791694	7.24488185139542
+"DHRS7C"	4.79743722288393	4.88808020212163	4.89467525263473	5.31307999572861	4.93282170570785	5.12470580065379	5.37934189441856	5.2319180422486	5.33530959797931	5.1946616740226	5.12746650795198	5.02104545840072	5.40561580095233	5.3903449066321	4.94954833745866	5.12746650795198	5.21657412509653	5.00100400935109	5.14973870175679	5.1679216309595	5.09861174327008
+"DHRS9"	5.95805506673467	6.33333245574392	5.55890411844152	5.8241381207719	6.02340183469095	5.27428642912524	6.00231675174424	5.50385595955524	6.76221369269115	5.83742081750364	6.09202038659139	5.20995844325198	5.8013165800007	5.88652549034126	5.28114301111948	5.84324430367431	5.21084678035402	6.76770822652906	5.5023375402348	6.22619955772884	5.87319228208222
+"DHTKD1"	8.81251696952341	8.61351733294229	8.5075482139254	8.03268811709772	8.14687252143649	8.05906462751424	8.47948124946298	8.68069433159163	7.87794917586844	7.97380192249211	8.5501924294682	7.8262846937633	7.50123149928451	8.37588856112403	7.42046259633691	8.68535489433952	8.08243507894148	8.62386256913676	8.19680786630125	8.19680786630125	7.67970201894625
+"DHX15"	9.98715761058285	9.36033201912494	8.87258378253463	9.17196332241798	9.58903212980501	9.20994010188078	9.49475542271979	9.71311761254871	9.39688096394485	9.38722886735319	9.50988996273173	9.37306919935035	9.0826989975451	9.11929604584906	9.17583185904037	10.0108517047048	9.33182775689549	10.0440487116911	9.40927107052283	9.47105122581928	9.47582136542758
+"DHX29"	7.73692842965663	7.80809920189732	8.05969942675727	7.330539368863	7.88683778258155	7.67075189332876	7.06013791827356	7.80577378603052	7.64915680906282	7.72439315882985	7.85558705390318	7.90853793252023	7.07531672787894	7.41575567232598	7.6626126041121	8.13173890375968	7.65776260145633	8.34411166336217	7.55306482728375	7.80353542674822	7.84454966655809
+"DHX30"	6.63317950997873	6.98615222764617	7.22206596567598	7.13775970461228	6.58302866824959	7.02084951295858	7.31854429215667	7.01659743547007	7.07729613786925	7.14074256702624	6.97580847559534	7.16712106679049	7.42835740374815	7.03756298248952	7.05642754353905	6.68458396877338	7.10223124940896	6.9770184167815	6.83981566636766	6.63451547740544	7.01659743547007
+"DHX32"	8.43901524701405	8.29945410492559	8.37278940155295	8.28402694696073	8.40247996214681	8.59034260498299	8.37195881828525	8.54866201800605	8.52644167320484	8.28056056371733	8.1240097403297	8.11128252314832	8.46617587405473	8.64439231170747	8.41013718203916	8.15907219842475	8.35086025089547	8.4390710187017	8.2821239060727	8.31190290379109	8.21228193990519
+"DHX33"	8.35224139748146	8.37526527854619	8.63518833989884	8.24486140764649	8.31711935004983	8.08079474509629	8.03611965602159	7.96559911821481	8.32475174492787	8.44454726565051	8.26748049211919	8.40516749271661	8.0960378917581	7.79067426193866	7.93589864735243	8.4482194928239	8.26458387576387	8.42814562794381	8.25852869838725	8.54231857440956	8.35941075446253
+"DHX34"	6.53666354871828	6.52599513134549	6.78315136203284	6.68943939848764	6.36591752285455	7.17470005195325	7.01617815925647	6.56845450273229	6.53836428311827	6.57635050373635	6.53481506144973	6.38469233329612	6.8849162942869	7.12270944027196	6.85528591211499	6.41849030814561	6.52716812507462	6.63577261775682	6.70450124105427	6.41119071611599	6.52993124788578
+"DHX35"	6.46886950588064	6.28408794441772	5.78671084322598	5.84148146121396	6.58389628153121	5.5273111134675	5.74088892882573	6.18275047478289	5.6130059540796	6.70086501639696	6.25763866650689	6.45625411276842	5.68236300131023	5.81234324563984	5.45634955651099	6.58147214565638	6.19635577249949	6.14893618509495	6.14029905592131	6.54515100452522	6.58647242488059
+"DHX36"	9.70850866338495	9.98014819526915	10.0646945480204	9.77915403650099	10.3165859137213	9.67731094552549	9.10055327175592	9.99206612780048	9.26385278294555	10.1294985122037	9.92399531974468	9.9857873957991	9.43783108769667	9.46480229752001	9.74724431238444	9.82398349141025	9.62101094546442	9.87738655062204	9.8322884895193	10.0731097895558	9.92410110340678
+"DHX37"	6.6909007246945	6.35580559089314	6.70315761010319	6.39124159766231	6.66685772695274	7.02084951295858	6.57211625616677	6.25357225661034	6.42091780568472	6.70149124238388	6.56481960221619	6.44567677091498	6.60614244011096	6.61037140451518	6.26125926776772	6.61090464664931	6.41866047884279	6.89987647189194	6.15280353122745	6.80828109850544	6.5793184786918
+"DHX38"	8.24914563108927	7.85502747574756	7.65773718367018	7.80347514282153	7.85370732768163	7.77958759668326	7.81844196750372	7.65446526551553	7.65488052549422	7.83567805927652	7.94394600193035	7.9200347580273	7.77170016380234	7.97464023749928	7.61227825236835	7.94606321370815	7.835213060675	8.03279131387902	7.76232082618911	7.74939994168253	7.93764063190112
+"DHX40"	8.8241273068584	8.3519149132869	8.17008216325183	8.07337224849671	8.3161799973244	8.04402282048511	8.15821978258452	8.42948215375118	8.2528197479019	8.27851971101876	8.60432671015911	8.14526234289965	7.67622648312231	7.82556609126742	8.22594468792637	8.50240711906117	8.07564406427316	8.77070423709187	8.4276233123134	8.2528197479019	8.02820299232406
+"DHX57"	7.58901785444612	7.69269991945675	7.77061057211967	7.27899425899107	7.77999945792474	7.37963764700976	6.94370282585637	7.09276710736969	7.48961038474228	7.61710122600515	7.48961038474228	7.62652492014582	7.32957290660748	6.88446328538064	7.17327631258892	7.52496636644316	7.61553997623106	7.62123457596167	7.39805495814661	7.86392694096352	7.52445618704268
+"DHX58"	7.28217577886157	7.12971113011592	7.23656585801738	7.07560632388355	7.1621164929646	7.51114635071187	7.28599909158607	7.29199731644886	6.85939098297958	7.23281400368931	6.92013650801704	7.13428964483341	6.98274586622512	7.13354758219143	6.7054461416771	6.95808914401409	7.11554085140586	7.12456123717919	7.1621164929646	7.11760029623204	7.20055544664547
+"DHX8"	7.26513537637913	7.08485874806812	7.10607945635252	6.48203591532636	7.33901598877026	7.10487063389769	6.85093300526979	6.92711336637856	6.76538688892016	7.19914031747348	7.03469436011133	7.0965139251525	6.41142448981596	6.70668002447614	6.63608911033094	7.34353175304391	7.02001068738341	7.44305544614408	6.55294831881384	7.54583912648351	7.03469436011133
+"DHX9"	7.79344002952107	7.32842092405105	6.48433540456978	6.86990019280598	7.54893066654879	6.82966190746323	7.1801623558636	7.55460189301397	6.96784053366615	7.66442258649625	7.693005283605	7.66774359921536	6.80228784431421	6.72624113668193	6.62887189957959	7.48430944474181	7.07280429229135	7.75301881803266	7.11123829725356	7.74945091038396	7.41958130138523
+"DHX9-AS1"	7.45870089145003	7.62502868174781	7.54384157162194	7.74472637152112	7.08090808449208	7.49658105111385	7.64180986922038	7.48348123760534	7.58997603574133	7.34844413894265	7.64440147830614	7.51718637338914	7.64603749585127	7.67196928842647	7.69750657613351	7.31946898690036	7.48348123760534	7.19120511050154	7.48232911798089	7.08143188032584	7.4000150484457
+"DIAPH1"	8.24853488811562	8.3228537810904	8.50146521768977	8.39614320777387	8.39601708294616	8.38229020374852	8.11141888944229	8.33541767365296	8.56014430061679	8.33541767365296	8.00508163767475	8.39683480400423	8.17424290786581	8.05865439985994	8.33040706279056	7.71354365639177	8.47701685022741	8.10578696062782	8.36329610968419	8.72162025876397	8.36084049649618
+"DIAPH1-AS1"	3.70776346219359	3.69685391557582	3.77805332895254	3.74562441202403	3.84232318792524	4.12179689960823	4.01154662404198	4.01290743128856	3.83586897020827	3.84232318792524	3.66661072086237	3.57688308312486	3.85648285350535	3.97460887805871	3.98989956899978	3.61954061870877	3.82997524305345	3.98833081736803	3.97059479399701	3.84232318792524	3.95764553201733
+"DIAPH2"	6.68454086149812	6.79689718986018	7.38588777525445	7.06712744134099	7.16321404188397	6.90798396730972	6.48322568399063	7.3651261113759	7.53624849049879	7.01739894063128	6.20548665149055	6.70981592340099	6.791866946946	6.73918371580345	7.02451658783791	6.52529975682262	7.13099339059824	6.896372497514	7.07741292953024	7.86960863955245	6.74754687737338
+"DIAPH2-AS1"	3.70878493808968	3.6574751156756	3.63953863469075	3.86708054080222	3.57770768800312	4.16459551212196	3.80236349951512	3.84122720376622	3.72598032754023	3.62185445804143	3.54127067137852	3.66787531825969	3.72114951329977	3.95874803908479	3.65653059714466	3.8831517526027	3.76520721592555	3.64006305773872	3.58240917635019	3.75977740723173	3.7667168326071
+"DIAPH3"	8.3843548833375	7.12528957298882	7.42256610251177	7.51052353887785	7.21923571821133	6.32161723236321	7.79476861682515	7.48335982829677	7.8574334243213	6.87346364465352	8.02631966769859	6.55682954981783	6.63335147543602	7.10619741997175	7.18035356406369	7.23128000100124	7.206725284691	6.79418262545023	7.55792075641965	7.08353346380437	6.86514611500985
+"DIAPH3-AS1"	5.79610595333557	5.6902320118032	5.85444695875489	5.83650052780174	5.8046063198732	6.18525411831997	5.90727684035964	5.78619132038303	5.41717121673011	5.61832919761435	5.92356160986223	5.71199896020333	6.01692933144222	6.25822893972809	5.87075704925734	5.89732468081306	5.84723907506946	5.57739097791682	5.79610595333557	5.69891340177935	5.55856969421998
+"DICER1"	8.55667578883726	8.79240931993908	8.27978534779966	8.47303962893044	8.98260365009998	7.77245699375904	8.21024756519007	8.43107538357703	8.3634921831228	7.92658991592069	9.23455360710098	8.16959840008888	8.38953859431246	7.95699931849038	8.4284680666523	9.39193327836308	8.46062721028319	9.77349225185089	8.43107538357703	7.9856574531207	8.56822039942539
+"DICER1-AS1"	6.36689164942094	6.66237402427022	7.18188196773059	6.63070201452913	6.61357720319497	6.44062007829693	6.75369649905545	6.64434034255309	6.33870030015664	6.47366726877072	7.09789254378698	6.68095561570918	6.84263491255171	6.70448234812973	6.64434034255309	7.17621892874315	6.5493220181783	7.12097702410531	6.71966644990467	6.3163928963618	6.64434034255309
+"DIDO1"	7.13201621600806	6.62875171226049	6.7082827780681	6.48736446627437	6.953372288281	6.36287880274607	6.64806030103261	5.32637230205067	6.72727993701439	6.58636676793428	6.68458396877338	5.49160207631124	6.71694416838411	6.63335415543188	6.69929931194426	6.95121831574429	5.87920941170841	7.38044382094261	5.83393533497092	7.05061715773796	6.68985895606107
+"DIMT1"	6.71048199129726	6.70133977865272	6.67776148790003	6.36860986385184	6.99604593308943	6.61309595346373	6.17184536854134	6.81651935547761	6.34432886262146	6.87051399541642	6.74594935071143	6.64890482311572	5.79976601284619	6.28325648326832	5.83537123398381	6.62168367312648	6.37020396812387	7.52992306730775	6.4002494584373	6.84077998819356	6.87737808024997
+"DIO1"	3.35266552314135	3.32262812383088	3.44826579755454	3.22988572363137	3.55741108924632	3.3131866303451	3.46956807135246	3.52709135352493	3.31022647274636	3.43177525918073	3.13142667266437	3.25325726252291	3.44626613924634	3.7033157900419	3.64842533825912	3.56249518263305	3.39810421114475	3.43177525918073	3.27639307107645	3.3468817789967	3.40203434980999
+"DIO2"	4.77195514192632	7.02009432557437	6.68629507963676	6.20956328959029	7.41177770100691	5.41063163411251	6.77577841666048	7.65124996386861	6.62817678760382	6.35408494727284	5.35937988821561	6.42381764217971	6.73063692117605	6.56479572370072	6.86514611500985	5.58417654199967	6.2030763496523	6.41479478972957	5.57650234444719	7.20845068004258	6.32032406766099
+"DIO2-AS1"	4.67761980368045	4.8112045168843	4.67604684567009	5.00733121877884	4.67604684567009	4.89883154593611	5.05211536980443	4.6897928620448	4.68167856886558	4.80692770932626	4.22835124775973	4.57512919121534	4.8203424531124	5.33013494731739	4.74716981862717	4.72083029964895	4.84265415939306	4.43609808438999	4.86122870761061	4.74045160910844	4.95943014296011
+"DIO3"	6.93278952563198	6.96751609315941	6.92742557831729	7.02891850263339	6.89453755467583	7.21455097089456	7.95638890991998	6.95255280211117	7.26416484525954	7.0905983103585	6.87454432148369	7.06827819273913	7.26220361203307	7.54635372518549	7.15424795318195	6.81294338801741	7.12776081329963	6.64942964815253	7.2801844169336	7.2944242633188	7.04728894980506
+"DIO3OS"	6.13192709061723	5.83457508118614	6.18897852465534	6.36518168044999	5.86309057164159	6.3643480768716	6.71087460077218	5.99320979221338	6.25251283016428	6.32244721256215	5.92429448915902	6.03955190495317	6.51469947129094	6.48385791838776	6.14586168932451	5.61475921668279	6.15295251032185	6.18897852465534	5.95912760198124	6.28350954753508	6.25731687351962
+"DIP2A"	9.07530448546129	9.10841598230796	8.56366560439172	9.5072625848205	8.33137091732818	8.93148724356323	9.27154204514198	9.29771160901689	9.21338204830204	8.55487816365822	9.59739512223658	8.90773400785176	9.5530087105965	9.29335357643144	9.77126373652796	8.9873364398441	9.27154204514198	8.92391155494489	9.36684050261211	8.43368135329994	9.05382579102163
+"DIP2B"	9.39130788284104	9.90367793565023	9.50791785448111	9.76780205612613	9.62672677542345	10.2133088987328	9.33729506316183	9.57543092541886	8.84366201177852	9.26288098991725	10.3071535505479	9.27088367035568	9.54803208233452	9.61117012227472	9.54218680811863	10.7833426172681	9.76281648686262	10.9419484452169	9.56918910686989	8.97846833535146	9.31107987932495
+"DIP2C"	8.15411112911276	7.96548743297684	7.46023803297423	7.82143338664233	8.23031996128184	7.78887473582906	7.40416021820068	7.95981466232003	7.6680621184441	7.80631944571917	8.19106827769779	7.87362821159696	7.66419593465808	7.61313878617956	7.4707142242169	8.44346495286221	8.01015098051747	8.7663137794037	7.4958932293022	7.87362821159696	8.01166671996644
+"DIP2C-AS1"	5.26009293999255	5.13177162901797	5.20046952151578	5.19552283150912	5.02956697749608	5.73715070605808	5.61202847605646	4.90808659036551	4.94970614072528	5.11662972944171	4.92479282287436	5.09336538179802	5.3461706299494	5.39646817642301	5.33069265864282	5.11604943125213	5.00145130320756	5.0852169947779	5.02399611936599	5.15167117373942	5.16304009926144
+"DIPK1A"	9.00924591031677	9.29892250478256	9.25647247089419	9.03354988049094	9.37270749351652	8.88837802306112	8.485771718679	9.06020703755321	9.31812468340515	9.28447151149614	9.45794584791652	9.16265335493354	9.007718205617	8.82240062199749	9.11184205096758	9.77369523689518	9.19688058039236	9.83143999567167	9.37671231241433	9.20213880525915	9.14843160213857
+"DIPK1B"	6.01424100448837	6.03532725923132	6.40179180124131	6.24805382549595	6.59516721237008	6.61966753251307	6.91448743688068	6.04758787644122	6.50937397287146	6.92908482762096	5.92453216600139	6.41041245593504	6.2518874088501	6.33581987006443	6.12932976509704	5.8375441837688	6.5013260118785	5.96437500303063	6.27418780000902	6.60856578468719	6.63635009397026
+"DIPK1C"	8.36777620920023	9.07031470624415	8.2494167032306	8.38599146509014	7.76853989504387	8.68710908943061	8.12503622940644	7.97059104607357	7.93474115715913	8.15924664522328	9.23722323725472	7.94951258401063	7.64282085949111	8.24637380131947	8.00551566491606	9.63395840761432	7.82298724880062	8.18924932485073	8.0216723102923	8.04734283932642	7.59875416999095
+"DIPK2A"	8.76721830076992	9.04761437750187	9.35500917524327	8.69755588092752	9.00638204380774	8.57460141489632	8.42946826260995	8.74246827361295	8.61187485755175	8.5688269042292	9.5636619246566	8.86971734290851	8.74719940016216	8.43682046424538	8.77042538979142	9.34043716643351	8.76851966111122	9.7390977470042	8.94076987107029	8.65547881454744	8.54374086645104
+"DIPK2B"	6.92324028023902	5.39541811260922	4.95249340681463	5.77461202309129	5.44720055267388	6.39694719313499	5.70791810801484	5.5006478582298	5.56935694187491	6.03491196286292	5.57336059798163	5.61226127972902	6.02147064052912	5.47238404453623	5.62048257169188	5.5416937103325	5.93857595667381	5.40555617918096	5.65881082010144	5.70569085434049	5.65256431067256
+"DIRAS1"	8.41953945934935	9.15415597620313	9.86821271645545	9.02134185457445	9.77171970282728	9.17743477816317	9.09459934536913	8.7008511201913	9.33487218934216	9.59957348802237	8.7094842306467	9.7837833147691	9.58761804296745	8.77341473724118	9.36483424062732	8.67711668703733	9.58229668323387	8.96991799096181	8.92256705005366	10.0576933146969	9.67118799413553
+"DIRAS2"	8.56626118284287	10.2075938044281	10.118591896	10.2334174281329	10.3463371513263	10.118591896	9.15303250805148	9.97176777032126	10.3653207643039	10.2023902176127	9.2699098204947	10.3444502265169	10.1651471661173	9.78440934741798	10.5246176626315	9.67841300176162	10.5872684415179	9.92303059568348	10.1907136828184	9.82664990494085	10.244910941694
+"DIRAS3"	5.82174998574024	5.96880546784822	6.65617155264868	5.83922453125315	5.81570429335122	6.18525411831997	4.39274964592017	6.09268948604218	5.15891528580591	5.61152779193278	5.63699496081209	6.33927162835383	5.39308829048859	5.19270371969205	4.89623534142881	5.49968669169802	5.40984572108701	5.81103539280602	5.73243664126874	5.87158562155245	5.51884136854836
+"DIRC1"	2.84164045276433	2.92941334785572	2.97887218687291	3.09380042835763	2.89655366264609	3.10778459618477	2.95046452764581	2.84966013688478	2.84913980274301	2.9916335964158	2.76522275500433	2.8687655539215	2.88963143585384	3.04752356745681	2.9883190910598	3.06970582959118	3.0450478576573	2.95637328132553	2.90616001136834	3.17212200087144	3.03925789637801
+"DIRC3"	6.62974142442748	6.59248183375844	6.66805990104573	6.81110916462199	6.74859441373745	6.60771089699073	6.85569122298859	6.66101691426689	6.61837127661041	6.82541022364713	6.78060086283631	6.99585512406608	6.87955265976161	6.71773979736108	6.55208385303681	6.95597055759572	6.78203674957229	6.63911255941201	6.7233091785923	6.46964488619953	6.75937126071177
+"DIRC3-AS1"	4.39683360577661	4.43997579654917	4.37565702971449	4.4407657559611	4.4163760899629	4.41809409199802	4.69673148325989	4.29354469972043	4.63650092631909	4.57512919121534	4.20782601547505	4.54487549944565	4.80823560589373	4.66262480008543	4.77806730957895	4.43003943580061	4.73748603053507	4.31060806033512	4.82018055693628	4.35051752053648	4.58295326315768
+"DIS3"	6.2770282948362	6.10594423550194	4.73391733756734	5.52878129599354	5.13587433186604	4.891431597517	5.81320558895981	5.96668269176176	5.71526505182296	5.99228908977956	6.29945696265133	5.96953619511293	5.60934530924386	5.86453751153165	5.9679120724792	5.89769338161721	5.81320558895981	5.82890157061107	6.01319693459244	5.78380262226234	5.43748250114216
+"DIS3L"	8.92411453815584	8.87136881800553	8.42803352044242	8.43822322415137	8.45925175521095	7.77672783768804	8.61371559232953	8.48238337527498	8.59458577449469	8.82796643716239	9.00537438077281	8.48479958400084	8.1109869452613	8.72583661934722	8.41826114740996	9.03231013897158	8.43280905607974	9.28691187595966	8.61371559232953	8.97464234082522	8.76378595422748
+"DIS3L2"	6.22565647209977	6.01970350176424	5.87411970377398	5.8952144284362	5.66737798457297	6.3354849277507	5.88037243383147	6.00974274197418	5.94570517050411	5.58418073117052	6.16118809357817	5.84557756029169	5.90804777792211	5.60093781751672	6.4482740985965	6.10480128298101	5.93677191233105	6.07383074273224	5.94570517050411	5.44056530720171	5.64551565114068
+"DISC1"	7.37219280408716	7.12479026874476	6.61360534902796	6.44794753569929	6.68324760077683	7.36782734716419	6.98589644418187	6.67453090427133	6.46139694778859	6.41168989891478	6.4897166425744	5.84498390422189	6.75177231469512	7.31568921118229	6.68448665774158	7.02027100386573	6.2554890118728	7.16914636944722	6.40352396258404	6.67852540245832	6.34312787439731
+"DISP1"	6.3526670827949	5.39576317200021	5.62537617423405	5.41852856396648	5.43436090977638	5.77340655265044	5.71519912722905	5.37208415959106	5.27154186667601	5.43705774023133	5.30956689896845	5.02137038904013	5.01560741413983	5.71489761036257	5.07132118929217	5.25614407284006	5.03957305143125	5.4896641703811	5.15554890153857	5.92970239545136	5.30548586539582
+"DISP2"	6.43746076935541	6.90237709266814	7.33499378413564	7.20346614286036	7.46878094538155	7.53042446817263	6.85579225621417	6.86816911240542	7.3103968563573	7.24292587448757	6.52017197629322	7.44418660032979	7.22854415128683	7.1878756948842	7.15712623770836	6.43113012731633	7.29040900931548	6.6230657007839	6.81159396760861	7.23517857795753	7.27804208769001
+"DISP3"	6.04719759097652	6.24935062203915	5.86302668974088	6.25480982862318	5.91903918625405	5.98526685970409	6.03537184551945	6.20877325522237	6.0615142064237	6.00008835675682	6.19669111291591	6.27176624826881	6.0570516228728	6.15381615843786	5.84003839142123	6.30841013275247	6.0468018305815	5.75496253144326	6.17957947574882	6.046112035815	6.09585201800563
+"DIXDC1"	9.15664032718958	9.12568167148627	8.56059608256451	8.8128494171892	8.72388493367307	8.63703931654059	8.29372870740514	8.45429713625313	8.33395946374782	8.70353933278083	9.80338623255725	8.60214896426631	8.33446901066548	8.51835734691272	8.88890065724592	10.2660343680862	8.58911197018112	9.9413011682692	8.76606951266189	8.85930370495979	8.79024127207789
+"DKC1"	8.11791267069687	7.95810480478392	8.05635474033948	7.86362360099163	8.2331924526441	7.7462525330943	7.46802374881154	7.94149967794472	7.76709487892573	8.06704418908079	8.17618873367895	7.8811817727933	7.7939571242144	7.73733863368383	7.83330116328627	8.21171390680064	7.74070485163327	8.48906874744821	7.76428275964152	8.10179123853593	8.02049749380894
+"DKK1"	5.31132983111156	5.57263558217473	5.51774254656485	6.06532274494715	6.27846070421126	5.29630797833135	5.77765754898895	5.66480661571955	6.31601944212345	6.00531882795686	5.11399943659901	5.8108157096685	6.23077163103876	5.44698958641913	6.00282263686098	5.37341309166398	6.1411146805394	5.90631349996687	5.44482859913762	6.56308294837463	6.00962353435725
+"DKK2"	3.47115147475991	4.03790178667489	3.89772303524928	3.2723469808315	3.32387359944121	3.42278075736993	3.03223865483248	3.96779852709763	2.94494972844747	3.85854404689355	3.10540897188141	3.54294040982108	3.20824150154945	3.48401303533419	3.40437357041767	3.50107093844296	3.31546093666678	3.71769808756178	3.69366103050568	3.76649585251223	3.37422284517867
+"DKK3"	8.7469326999482	8.20534127786595	8.5884975846398	8.10524130725257	8.64293309885021	8.67396861763242	7.789361171513	9.50798401922741	9.11179140182568	9.19647358219891	7.9864965686813	9.62575984361205	8.53076295443744	7.94255037524826	8.59753967861048	7.86245388417171	9.22298212712602	8.14055675788306	8.74516909789112	8.59753967861048	8.75278698429761
+"DKK4"	4.44014737703492	4.5983556200475	4.49497619638741	4.52577697602477	4.3664073448371	4.58519532848992	4.58856608756134	4.43419551509947	4.72177230602193	4.52577697602477	4.52577697602477	4.61552486600255	4.56612476255355	4.71965790889351	4.71962162521466	4.48366812864339	4.49689025233784	4.41243271133208	4.59281210067628	4.52577697602477	4.57758061093875
+"DKKL1"	7.12130321729089	7.14263806174951	7.26929359487762	7.36626529203074	7.27084984645021	7.64575602879838	7.92620094375667	7.19734738705763	7.59320061173348	7.52845539248031	7.05746854437857	7.34157846505023	7.64630272644234	7.80729793744202	7.43311774489762	7.04967218509266	7.37509258764062	6.83912060767415	7.47209625266847	7.37509258764062	7.35383090642572
+"DKKL1P1"	5.36082010667421	5.55957829832615	5.44097310150213	5.66047458362307	5.55880522923915	5.61913209012527	5.9721574541798	5.60551602745988	5.76786432540625	5.70806018994397	4.96451656970379	5.65501620378234	5.98304351766738	5.94721714069724	5.58063426702695	5.64200536915028	5.6355314626734	5.23723153847947	5.47731284573771	5.61941353629284	5.89133430311018
+"DLAT"	7.73249160511467	8.28300640599489	8.07888092883753	8.02293010203464	8.79802210945537	7.03255335739125	7.73479873697153	7.99654166755411	8.00966294067573	8.68624954173493	7.96856489029656	8.31360308185543	8.08297024470442	7.51939780743449	7.83364975192973	8.36075792335855	8.40812410264924	8.45461674696807	8.05348381074746	8.67412978019607	8.90171362118121
+"DLC1"	5.4769599859912	5.00085833622707	5.42872471829078	5.04034019749048	4.67455775846112	6.30997109772858	4.93720437569956	4.81009633757798	4.41339399137151	4.51641136541198	4.97462621062106	4.59650192091232	4.69724950883366	5.60792423443564	5.48003951587943	5.04739114248986	4.56600014126605	4.86120784215869	4.62948247105466	3.77067974102448	5.0032280464193
+"DLD"	8.82635611987691	9.01676549067524	8.92678609069867	8.57485752530162	9.46965426303536	7.76891480852571	8.56404873025012	8.98384089093855	8.93763702656144	9.50270192153059	8.90386207676186	9.1439912306218	8.63340060913866	8.18966093821127	8.92267049255419	9.08441817608404	8.92678609069867	9.24027030108345	8.80254368497462	9.44520067103219	9.44359157640648
+"DLEC1"	8.55411360655287	6.94833374426946	6.97767930562918	6.98387768123895	7.0245478816755	6.74777430940584	7.06645766488768	6.96034866943324	7.1160583864623	6.85029834854103	7.07649084188383	7.13857141316435	6.85514305587697	7.01661116399222	6.82569675114177	7.03553146846683	7.06188461563109	6.443834933189	6.84334427701239	7.02681065764926	6.89932895645665
+"DLEU2"	5.02638614345447	5.51698186140246	4.87486494950236	5.07279448601884	4.64257718809396	4.8608323584993	5.29859938030207	5.02035865632065	5.055434723536	5.01142166465529	5.70850007533074	5.13449612325386	5.18465667045331	4.9868414397779	5.18308740389588	6.0578229905838	5.32609787368333	4.62020907733003	5.37064798593343	5.10626765573812	5.27005270731829
+"DLG1"	7.87030965510743	8.19072212012271	6.80515725539971	7.51413432322722	7.09095537142313	7.28198272892864	7.11994262922126	7.45204643358829	6.32563599265161	6.74812063581815	8.76685650128752	7.19990368749797	7.35984425968948	7.35723423515614	6.98871346272475	8.90978472236714	7.19645737591708	8.18986855377347	7.33439172610154	6.32641858266407	7.21268754427814
+"DLG1-AS1"	3.77270321505549	3.69064396769765	3.58387896601217	3.80178679885111	3.86602192677811	3.84232318792524	3.85183163428009	3.79639465259232	3.8974717920453	3.81411629666803	3.5764232336904	3.83523460539445	3.88457360707387	3.83813259680743	3.5526532373459	3.74633231446027	3.71715657930799	3.92143837570216	3.58960840672875	3.91874581326984	3.86424005694859
+"DLG2"	7.06275289405987	8.25038150206417	8.31417544841208	8.42154207818187	8.99648608954935	8.17472322839463	7.19160669036192	8.19651143634355	9.14608216016205	8.66682425749763	8.39064702771133	9.05940605117125	8.1798049830854	7.07891498113306	8.50284119295437	8.75514979625843	8.79869254139319	8.76335118660095	8.54102808815262	8.95084182415305	8.61770856242855
+"DLG3"	6.78206430457926	7.30345466562394	7.67334826698418	7.17204908218509	7.80279251180119	6.818100701196	6.66461636917525	7.01818327542591	7.22357506111596	7.86374003594339	6.7314098534604	7.9599275044314	7.00766916283675	6.67289432014597	6.99482269794937	7.42705027117349	7.45335662067839	7.17854239650685	6.98198161811701	8.28548146966233	7.82915446782007
+"DLG3-AS1"	5.60406391155557	5.81561069179976	5.56361326813033	5.81427333363197	5.72697960950468	6.24624496249475	6.39445213042921	5.75686308212886	5.88178426466289	5.817084740989	5.50440340743874	5.67415752961298	6.18274163745642	6.12988701638799	5.60733918931029	5.85578961770521	5.72734198331386	5.53580723243261	5.66449233130585	5.83794660946258	5.71631978086506
+"DLG4"	8.02978110871569	8.7634698208334	10.2319732182087	8.66945158863394	9.73296278959245	9.26725295762056	8.64948161320255	8.35587484535543	8.74004227903134	9.44720552735732	8.42698314996248	8.81928366945194	9.03082477813514	8.56860116146045	8.67698010658381	7.88810251433967	9.12080914435826	9.3367128603531	8.77508907209506	8.25275704874929	8.75219758401487
+"DLGAP1"	5.39565455954334	6.5118777613215	6.75583752701919	6.30997109772858	7.25608358479806	6.0290420795313	5.1301901602399	6.50562538675028	6.62963809008093	7.44126887051845	5.75451864583678	7.20548686706487	6.34608258042295	5.39607757753439	6.22596946455337	6.34412248215958	6.97343157374946	6.35436039152813	6.68131098461014	7.44255331280004	7.30010651708264
+"DLGAP1-AS1"	7.72471797101642	6.59361593165903	6.64112108311351	6.71361874149927	6.20234994986878	6.66237402427022	7.0412271607882	7.19088941689735	6.26713310520521	6.47981707872364	6.74586137073029	6.63589407348396	6.3597171694008	6.8135584256465	6.85298805185386	6.54817787388049	6.5361515087589	6.21204527629649	6.82409266479326	6.80713293493729	6.66469105379799
+"DLGAP1-AS2"	6.67243207433739	5.65205680859773	5.75342404316582	5.85732856318423	5.72577879925988	6.38035728306309	5.58918453809871	6.07305041051739	5.65715355040737	5.49829419034145	6.15049726325127	5.90848460189315	5.52645945090993	5.59053535661441	5.67981877411304	6.48798827067073	5.7662511083396	5.27267216070615	5.75963863358708	5.66422283576089	5.75999274188423
+"DLGAP1-AS3"	4.255727397313	4.66036909240777	4.92137959937828	4.6274969525097	4.87289173127337	4.77625922017091	4.49852897839739	4.32927899083898	4.31131719445067	4.74736404762325	3.98644768329608	4.56125340259028	4.29816102517914	4.7696154147761	4.39831697659704	4.45105011931715	4.34837809084284	4.28316307465199	4.32860018505512	4.95707986015487	4.50643129871752
+"DLGAP3"	7.60684192661777	8.15514721482211	8.59230191064716	8.29795114846277	8.15135294804318	8.15982566492124	8.14538420171077	8.01129827124342	8.20529802680815	8.15888464751275	7.76031268097828	8.21213070664137	8.62102766293675	8.23239793217563	7.96505888220891	7.47807118636003	7.88203235609227	7.73765085468487	8.23430384226043	8.33939512834817	8.05763811267867
+"DLGAP4"	7.36393342557075	7.07949150604313	8.1175617020063	7.67616813724772	8.06201068055357	8.04916049472043	7.34185689249956	7.72559329501185	7.63149840595137	7.53477665386276	7.35723902237679	8.01505120229321	7.86143827932034	7.52238093803786	7.35789946590595	6.69660453271152	7.62879774327938	7.57370353055728	7.63286659808861	8.19148158063784	7.64861239474782
+"DLGAP4-AS1"	5.55202528580713	5.48776020074644	5.31086680262117	5.34714427441127	5.43141547223631	5.30416957028434	5.71339876356363	5.44926721110828	5.62994085755802	5.53415140900566	5.31957273034574	5.45195151916903	5.43141547223631	5.63117805508048	5.61289296575227	5.71273601316733	5.54084205345939	5.04820206588278	5.35714530157472	5.35121654717287	5.32125350050789
+"DLGAP5"	3.41603442714824	3.69834232215837	3.42470257188234	3.536236197785	3.54978786720231	4.10406930899419	3.86187420241473	3.71765320001753	3.91306246343145	3.73151590158276	3.49401960517887	3.64646847182225	3.75924473472407	3.9010845458258	3.63164431802153	3.64646847182225	3.45908560639761	3.42591907744506	3.59456307918633	3.47506262498901	3.65826281338771
+"DLK1"	5.47136737415647	5.6097501000971	5.46070340262396	5.93978478893242	5.84274738314676	6.25228529496267	6.58611411295239	5.80021174297318	5.84587027571498	5.75458470329898	5.46898665765564	5.79145478551903	6.10149495950401	6.0171530594437	5.96667724175328	5.59836543763131	5.7662511083396	5.17916765947651	5.86619081696644	5.73971809950586	5.9913687443794
+"DLK2"	6.27163910245659	6.82390002428263	7.11057823454536	6.8033068946241	6.66930528592191	6.20353675684795	6.40956514646854	6.24010063091531	6.6485847325305	6.91677840430696	6.38608961634928	6.64516372705072	6.61961467756198	6.39311294375326	6.59579601595879	6.65516946376901	6.58218848171844	6.63612850856871	6.56197236447677	6.87309254278619	6.91345912675134
+"DLL3"	6.3434155545934	6.6041496452021	7.0609177135085	6.42846449341559	6.73926100116367	6.7965569693773	6.62875171226049	6.72683474197501	6.82060296968777	6.48199457666455	6.1537174152323	6.48659855365978	6.56872230150803	6.73847136256448	6.38898473401578	6.67035001279572	6.6553804322065	6.59361593165903	6.2629183344724	6.77353582265927	6.08485879377891
+"DLL4"	7.83924232080207	7.79659787464283	7.46486020889302	7.9208292172885	7.55061578921066	8.44315432054251	8.70328299426061	7.63766813679054	7.97808111669452	7.79659787464283	7.52434519147773	7.82757767829439	8.0232054884386	8.23979818104239	7.69092058156976	7.54433034129339	7.93351192969147	7.20160046509388	7.77958954831027	7.76122841040688	7.78323076243781
+"DLST"	8.56630900391469	8.29426920408417	7.80217639082796	8.02026845066384	7.80054177367542	8.44316624839604	8.4594670061898	8.53640976257175	8.22584374361941	8.48736450845165	8.23326472514716	8.21648778383797	8.1233203767146	8.06590673328197	8.25674300846037	8.30001861957377	8.39011347410401	8.16182270488918	8.10436991589798	8.52217469550057	8.21087503887406
+"DLX2"	4.66784483447504	4.74912323747613	6.20414308528669	5.20961226855259	5.53243276269492	5.06876976372362	4.56043259428807	5.02729654172836	5.32438364800426	5.3074143650022	5.05330197403551	5.45987151334235	5.0846030367336	5.34810385551279	5.28437882898049	4.88650404972677	5.38736037711117	5.31354599242205	4.85299517819616	5.87752361028458	5.76788932186577
+"DLX3"	5.68795658911114	5.67947387182452	5.58969326028379	5.69894117034743	5.64697413462302	5.57055486034031	5.80464912341327	5.54899331950289	5.66924202100624	5.60525575485078	5.62809944756663	5.62372866346691	5.76587333283882	5.76654874302853	5.72504720775944	5.73426842475961	5.94752574140148	5.52838037245838	5.7795989605803	5.53199965445318	5.96200525408413
+"DLX4"	5.35984582889835	5.4001815106831	5.35368168736897	5.31195488420592	5.43604477956549	5.64420665636585	5.71658980568277	6.81110916462199	5.42846992967535	5.22069229862136	5.21677160153556	5.36561860048561	5.54738043022942	5.95181765446975	5.41956554686827	5.00636779718786	5.4528337804744	4.92327521787612	5.32940516529386	4.80001324354918	5.4528337804744
+"DLX5"	4.99169548668545	4.97633016110967	6.0939841124839	5.34554904281465	5.5761026491402	5.19187226257646	5.1716869876303	5.24525535808735	5.61933490463481	5.46786561900819	4.89731775595543	5.5835146401807	5.4552141043045	5.52958710887199	5.23715142810596	4.94659446142628	5.37695775092227	5.08865614740826	5.10159888841418	5.6352553847145	5.49989262250022
+"DLX6"	4.20449272400417	4.53455684172676	4.5718037745304	4.44974544459591	4.71929631417352	4.18587091862511	4.6528477653772	4.46793489182215	4.29209773859184	4.53024341765549	3.88793799291147	4.55151674530211	4.44513905779915	4.44513905779915	4.38360060019597	4.4512488126045	4.22763734076088	4.12760391258508	4.31969878727363	4.98871930305823	4.69695065784091
+"DLX6-AS1"	5.48808526376422	6.07004338887146	7.05080830883971	6.40382767411492	6.39989311244662	6.05913831318796	5.78995954674624	5.84773123729776	6.35678019442813	6.47621047625182	6.15529660520988	6.48610896009207	6.67251186063467	6.27558675967682	6.39560226788563	6.42827892940009	6.2872269504574	5.97379672962585	6.03242697119771	7.23857387763522	6.69668633041537
+"DM1-AS"	5.00579292575386	5.00088024446625	5.01536687895943	5.01153091402837	4.8582238642793	4.95943014296011	5.73819354137563	5.0822742412206	4.69553029816941	4.88660174897508	5.01766973635598	5.0579981902132	5.25049571527716	5.30133989757553	5.15951521837296	4.78882884509206	5.398244592781	4.80520645854382	5.03958335656304	4.76387727359017	5.0452881226072
+"DMAC1"	8.72648229985645	9.1033387300634	9.57851901978418	8.78458969096603	9.43057893350359	8.53401306626741	8.78525317204421	9.04288288964164	8.64305196121209	9.29616549611151	9.25891596775318	9.32140507085476	8.47680049850591	8.58393981040615	8.84618151001998	9.80448372055044	8.88312254839196	9.55036256937309	9.21337567863961	9.7375347786962	9.05579885558479
+"DMAC2"	3.74128035023427	3.68887026259237	3.79279033820745	3.85587599152597	3.76649585251223	4.05486884694722	4.43389681701748	3.76869560102341	3.91256598353248	3.85587599152597	4.05300928645983	3.82983073508623	4.05486884694722	4.12195818743705	3.84054160309622	3.69666835537618	3.68823216836366	3.85587599152597	4.25584851596855	4.01720683006093	3.87410607216224
+"DMAC2L"	7.15711593853752	7.51971966217693	6.66879025057979	6.86490406183518	7.06538584337665	5.5620009499806	5.64923368476746	7.0661550405022	6.42064650190039	7.30947567660907	8.26374139474826	7.42402083917153	6.41452405584499	6.4164145979138	6.04121974114314	7.98993210304368	6.94524940208441	7.1633785611389	6.69854573181059	7.23143637619154	6.44017235965658
+"DMAP1"	7.78609029747098	7.51234505102271	8.23397546868951	7.61421998348943	7.89998517143951	7.71805250537252	7.48112505166839	7.41376584558143	7.50178993277833	7.91171766152908	7.72925767974595	7.75785460889304	7.26382599426825	7.51558962672512	7.41205545536352	7.7857648939336	7.48578844703983	8.15602182284242	7.57262696389846	8.04728590126102	7.57783037376016
+"DMBT1"	6.24788466888813	6.66237402427022	6.41514183788059	6.51631442999992	6.40248521537267	6.56568587369922	6.46573000647704	6.32666057134771	6.51190637970335	6.38912766883017	6.70084826619051	6.25901948304532	6.28274658446909	6.46216170269002	6.43624182582498	7.2279295485341	6.431948787424	6.78146574072421	6.48905018298989	6.29892385384815	6.61308952012811
+"DMBX1"	3.09956870893983	3.23474387758499	3.16367633608087	3.10399078136254	3.04267428596994	3.16822422409455	3.33643316590854	3.1433900914089	3.20060150093257	3.279492171358	3.02302020539618	3.15346253351252	3.16367633608087	3.15132839120907	3.1584464362784	3.13632447016071	3.15776003755851	3.12657872629404	3.19927568063895	3.09502642723081	3.2143582083579
+"DMC1"	3.62254977878935	3.67590935294081	3.61292180915423	3.69688307160818	3.59474487885924	3.54657650897465	3.4807534479349	3.75246279126916	3.80474306307502	3.60225788854483	3.38363842613368	3.46035048263675	3.69003791084138	3.62254977878935	3.80474306307502	3.763953244662	3.61905390724967	3.34375628250448	3.70264908491266	3.63734615191803	3.63734615191803
+"DMD"	4.61284354163675	4.37253480609131	4.50052917022029	4.61552486600255	4.34715152977923	4.8331304609913	4.32351478355936	4.37253480609131	4.39036097304599	4.37253480609131	3.8603433985631	3.99208068599741	4.06953717445272	4.65142026129004	4.88747771444165	4.00136309292597	4.00319187427315	4.11801961721915	4.41542759119234	4.86586709332083	4.05288277571713
+"DMGDH"	6.3934280430814	6.47925903802785	6.37723269265569	6.65239694463031	6.73362380936578	6.37597512361054	6.48415395466122	5.97032976086729	6.57905991564633	6.33480257863376	6.39719751080965	6.11626572105327	6.33016179294714	6.37597512361054	6.53555580588306	6.4159466304982	6.37597512361054	6.22619955772884	6.37597512361054	6.16485405925417	6.33996187742872
+"DMKN"	5.39356478940028	5.31459997017729	6.15569693836323	5.4506191253165	5.35301691498068	5.59572253464651	5.22407064131893	5.22851409994302	5.22926420681375	5.74018493629722	5.40511858314464	5.43699211147799	5.39490281669073	5.32739995625043	5.21092013806935	5.24471996250794	5.1716869876303	4.99169548668545	5.7443321726053	5.74364731760811	5.50076182085259
+"DMP1"	3.47115147475991	3.42522090531536	3.53149216498114	3.667241028636	3.39497316779838	3.87099388737699	4.209867167017	3.57504931947142	3.73425579771121	3.58529429194927	3.62098867978088	3.53734154040417	3.8023735079789	4.06416605858339	3.5940220400786	3.49390166467466	3.57262105003796	3.56244547406281	3.73841864022394	3.39632333211948	3.59222776405588
+"DMPK"	8.56760110111072	8.32457030846546	8.42683585107002	8.62373746417489	7.86686906842398	8.51628714793532	8.78991117676039	8.25434831135745	8.12431132716375	8.04803313550195	8.34989584893322	8.12034762063372	8.52720786791471	8.75769158916156	8.22173547536891	8.08080182515645	8.49590788361671	8.10997433928341	8.3584710910306	8.12283223613647	7.9993279052451
+"DMRT1"	3.22073035798854	3.28484843470249	3.4084822382563	3.26862386401465	3.2588562825902	3.77343205778842	3.52090995007733	3.57346306199235	3.61262002491678	3.40262694398982	3.29440459403848	3.48293121027276	3.43500207084519	3.55481575941896	3.43500207084519	3.43500207084519	3.63630474543059	3.24375080893149	3.54767177199412	3.45532542806014	3.60685258567089
+"DMRT2"	4.71972055417993	5.10764999456656	4.45440996678185	4.54726594571826	4.46562179598413	5.08366664014366	4.3756131652782	4.24295665848753	4.07094466489431	4.02653530386636	5.93710961391977	4.06443866182971	3.97056115135181	4.19807500917807	4.22422950134928	6.59356622446061	4.57412134830289	6.42835884188342	4.20687010008168	4.04213083705807	4.32255256748862
+"DMRT3"	3.62380890840645	3.88714182083828	4.04665793516857	3.78474321722305	4.09793043051961	4.00967676648148	3.90870974829313	3.94352603709734	4.1044656473779	4.12430629171823	3.62589837570552	4.03881505326565	4.27194921125382	4.00967676648148	3.88660887107874	3.73820188779484	4.24035705897837	4.29124477163664	4.00967676648148	4.07884107606075	4.43130191198529
+"DMRTA1"	4.38645149396396	4.05019435928879	4.08877989106972	4.4196526641992	4.22957701115763	4.46539461764762	4.71767002488698	4.01614031101102	4.21157841245206	4.69663078877543	4.20954984641821	4.37287810926553	4.60971412160201	4.6122834855498	4.39439662513864	3.90834775590952	4.46281307824429	4.45476690869395	4.85764533366955	3.77965332047422	4.34279627437776
+"DMRTA2"	5.42954581331425	5.56066178323605	5.35937988821561	5.54158692716543	5.34806232431708	5.49878644883512	5.76603370889151	5.2041094553606	5.44929516730803	5.50076182085259	5.42465516530192	5.50711456076844	5.60337740424211	5.45056052027005	5.3076617093856	6.07738507944223	5.56466835608167	5.57368910885804	5.50076182085259	5.43149691560825	5.41295489129188
+"DMRTB1"	4.2473740916205	4.43997767611285	4.71384410884524	4.65915049192384	4.6612170634717	4.63001484968182	4.75260394837285	4.5492461458159	4.46430199991168	4.5441126181949	4.36403568951097	4.50626564752633	4.54031119099303	4.94353236858526	4.58814713892794	4.67317789432519	4.51728984692194	4.26029036982859	4.3656270892637	4.41644281758322	4.62380271200807
+"DMRTC2"	3.36918001949156	3.44337058072724	3.44927333376118	3.5482309295782	3.3404377108901	3.4761903926013	3.33929683328109	3.48278598067049	3.54023619483247	3.54885693906327	3.44927333376118	3.3989962060568	3.48558741644822	3.37061235517195	3.54182322699589	3.34156767015257	3.50388857276483	3.44927333376118	3.43474269111623	3.44927333376118	3.55354263216338
+"DMTF1"	9.2662444857302	9.37989603738029	9.3825023866552	9.18407447587889	9.29287179455651	9.37009828878191	9.10377639923802	9.23466103170496	9.11102739192822	8.76904139569612	9.46544103167913	8.73235765307822	9.25354335529075	9.40879609116977	9.37578052389228	9.47614155190573	9.05775788519451	9.59453304903676	9.0455017134161	8.87505796149747	9.02078678436342
+"DMTF1-AS1"	6.3303138859688	6.23074161134545	6.81553422166461	6.40406774713406	6.61917231440534	6.49804472660575	6.06843203876959	6.19494279137928	6.46782380487353	6.33607532352515	6.34018929165661	6.30257204219064	6.52850563255607	6.50486911363902	6.34536062110037	7.14587775586501	6.3891490449573	7.00080258624446	6.21756542618425	6.3891490449573	6.19005631300938
+"DMTN"	9.29231740839567	10.0051174599124	10.3453328194283	10.0656866741097	10.290179031394	9.52265236523063	9.91702760249381	9.86231945665173	10.3625422191931	10.4421729623567	9.45269509201161	10.3536082263786	9.950252353414	9.37567336236641	9.96336642598986	9.24778520951785	10.320047916208	9.60277774817556	10.0596288276483	10.4567231756635	10.3217555799784
+"DMWD"	9.85842436293243	9.68220516944827	9.67009182272685	9.82965191935002	9.4272245577057	10.1636427944236	9.99755751071476	9.67113319793844	9.75167102434836	9.40663289633255	9.56883418137345	9.47111306651838	9.81457668668912	10.0256229366138	9.5293319366783	9.54546561596264	9.74812195191246	9.25005725138232	9.72546679386129	9.53632015154937	9.46896331208023
+"DMXL1"	8.35411947979766	8.66902255833972	8.85886118814121	8.37115091198592	8.76933695228939	8.13894361155723	7.87743122445629	8.52753206298241	8.81426012342731	8.54780698579833	8.88322021499978	8.48653478242758	8.45633070747001	8.21510256987278	8.72505776013533	8.82986140013587	8.50608221132625	8.87838850252239	8.50441769201542	8.07767517516868	8.62979933600995
+"DMXL2"	7.98282302402785	9.16783997592089	9.25327794019019	8.55145672333194	9.43769531661505	7.704920221669	7.27506887139003	8.62717064031758	8.99234876560753	9.44766981243516	8.56769016641687	9.27769348259739	8.7385518625742	7.70536620871035	8.88932625585173	8.87390229859613	9.28168439331259	8.87390229859613	8.78945360354728	9.28078064437869	9.3895204515213
+"DNA2"	6.75775832901374	6.7622214804393	6.85868301782333	7.0854835312588	6.65602297553579	7.89022907813588	7.45408277302793	6.97232610548928	7.37512324276049	6.96414851739907	6.42716678958973	6.83381366220474	7.45992681739183	7.51300538073778	7.3322932473116	6.79767919813671	7.26691423572593	7.01714163905033	6.751147711837	6.8380143919021	6.83728537943714
+"DNAAF1"	7.50065352636442	7.78220907421627	8.03712291266128	7.73092082148138	7.7891744980533	7.52293407661523	7.44969045385057	7.71826404847996	7.58106728190472	7.59641992574048	7.45391300678502	7.56942037093373	7.75078782703737	7.69385019098308	7.69939475267753	7.15692030625186	7.53646450294349	7.25835465354859	7.41431441700084	7.45204643358829	7.229982396247
+"DNAAF11"	6.77926640176619	6.8451523922008	7.06183895719845	6.58426844789966	6.98529397753426	6.00280889051499	6.08997173807784	7.12610031526643	6.93066606504374	6.82571806762229	6.49979439011862	7.17290326008839	6.83261836765858	6.28216845665122	6.78603604369679	6.26866635725582	6.94738548833934	6.6381518344788	6.99206042574527	7.20057847388075	6.91263582098802
+"DNAAF2"	6.70096066952431	6.49960590612646	6.77377736674132	6.89010649449495	7.23345006031344	6.24233883748388	6.42350741698268	6.50776593906429	7.1319633285546	6.98237409435898	6.77267021094113	6.53585406241468	6.77267021094113	6.46934553065682	7.19566020945666	6.79825785734689	6.74219132852422	7.24287226509706	6.78307155770051	6.7216609519794	6.84571165452003
+"DNAAF3"	5.29484260632914	5.27993388433341	5.19654038414981	5.30297913833906	5.19978341784893	5.423259384104	5.60994508841409	5.12412882071819	5.24913409044392	5.07651300345983	5.24752606915185	5.05389868375078	5.44279985048711	5.39415588805401	5.1228753018343	5.00085833622707	5.11606499035682	4.91191010370705	5.19176772859752	5.1507636045251	5.24056331643439
+"DNAAF3-AS1"	4.99056455959797	5.30208425515398	4.70749378826422	5.31342769098058	5.28389928321622	5.07906888351188	4.99155323785136	5.32747386831096	5.14785645014479	5.10420489176212	5.07722041124461	5.16749323061008	5.30387447018594	5.53489535695521	4.95771342590708	5.34816270109218	5.32425208870516	4.88392539056865	5.3336986354288	4.80301204750407	5.33524275993885
+"DNAAF4"	4.67925964118263	4.20636033545127	4.03182582721948	4.15537848668224	3.97012684239617	3.54576987943918	3.48401303533419	3.78048561368995	3.93959774271112	4.29798900160012	4.19057395723468	3.66087552538852	3.72944391480092	3.55854553949833	3.70302335913367	3.87222122850625	3.85620493189226	3.72458005927861	3.7551631206133	4.02764096988011	3.99283316389823
+"DNAAF5"	6.2583142915626	5.98541688055625	5.44779636732296	6.19260221434942	5.84337276510542	5.63107306579259	5.84814496179783	5.75650295509361	5.81764140074359	6.04358770183941	6.52678729630046	5.9165976700995	5.71746586090719	5.30414423973762	5.35892073041133	5.92532391304361	5.69598643522641	5.66030067922602	6.02756050436188	5.9264952656965	5.90381002737132
+"DNAAF6"	4.91519449604783	4.91639295621356	4.95639957789662	5.1777868905136	5.2503529638607	5.0463474660508	5.18188829403799	4.92357014374526	5.01131055024839	5.04961317989915	4.97208374407666	5.03269006401657	4.98669504477081	5.30414423973762	5.07132118929217	5.11380307986592	5.13349183768709	4.68303805452752	5.04003097162902	4.95822956151814	5.32224788804654
+"DNAAF8"	5.90480909915316	5.75602252166805	5.83489135196075	5.79634305060265	5.68519644295041	6.12122936099449	5.96664588417297	5.70708350309945	5.88613684113547	5.6781974246265	6.00670622707959	5.89541500551503	5.79976601284619	5.87962095846764	5.84384307650386	5.83489135196075	5.95829674063321	5.39973610957327	5.82439246116802	5.83489135196075	5.83489135196075
+"DNAAF9"	9.9247881493997	9.91627911939436	10.0260613253585	9.74967888123907	9.64218015732662	9.09172781744586	9.16810492144861	9.62031832769893	9.50762257637723	9.51845077956934	9.93286528756963	9.54927755378106	9.38736465313792	9.399066586049	9.41220916966259	10.0362346780028	9.56454078539313	10.0244829451342	9.52192305104417	9.59966368189044	9.64434730957742
+"DNAH1"	5.91501808283615	6.4836079522926	6.97700914140141	5.7049552951863	6.26307092583506	5.67014254551843	5.48808637598072	5.96448322236974	6.04218769607697	6.08581332199826	6.28386012252668	6.10839284406043	5.49282506342926	5.95676006624657	5.26114772669575	6.49430253515369	6.2306007433079	6.41835831675987	5.94178263389749	6.20797883169469	6.14641544565245
+"DNAH11"	6.30169728943969	6.07725265555445	6.44211175511741	6.47526405760763	6.39416816895793	6.79561775767129	6.57963718045592	6.29430090802031	6.25668790159734	6.34686145814367	6.07628489685984	6.28463323633336	6.38616198938639	6.83898083849867	6.23488638599864	6.22762193078665	6.40897749184481	6.05737036109442	6.08817804170609	6.07410366519913	6.26924340966758
+"DNAH12"	5.02603155198563	4.18662049938183	4.06565046698929	4.40626751868611	4.2931338246988	4.49688123748475	4.58828770740736	4.23687982570368	4.15456088850688	4.21762137221567	4.50939460533995	3.93844542306618	4.29231680739145	4.5251748048373	4.22403302513605	4.67828907954274	4.39400502155368	4.70578473214699	4.1406501684265	4.23687982570368	4.19453934542589
+"DNAH14"	3.31231370084365	3.43561657898329	3.74752557459915	3.56431233810997	3.77632209766767	3.45277654836043	3.5362724084536	3.51853091399772	3.43237734314116	3.33964823392386	3.24092613112614	3.54874489341986	3.43561657898329	3.28588513463406	3.30684588770295	3.36416993533969	3.5919602936212	3.46975695479082	3.28954644796304	3.57065159798244	3.69612584104057
+"DNAH17"	6.25566466834311	7.07486075007229	6.62584855270519	6.12355292427533	6.16434051166014	7.09434457306763	5.04794528441129	5.92749876169451	5.76017400129132	6.02263260843666	7.18903201443651	6.0701389871794	5.77001484075164	6.41558571294195	5.99690185385105	9.27503252259047	6.00208540087289	8.17915357382289	6.35227560435165	5.7549804357965	6.26423005459452
+"DNAH17-AS1"	4.62097162548198	4.77250716141103	4.78672948028106	4.88426829186587	4.72450127127781	4.92750709725818	5.07101964631622	4.78672948028106	4.96716054665023	4.6152944122334	4.90398967296325	4.77293015972257	4.85495255993803	4.88660106384229	4.99645454773296	5.14189043194227	4.71056785443407	4.51070392538883	4.75473037534548	4.72671622067971	4.82692127577029
+"DNAH2"	5.2005533218859	5.52932705998533	6.14019872511372	5.38737393172205	5.37374158101716	5.64486664385583	5.99481527616181	5.19087796964242	5.37374158101716	5.4933374400344	5.3109450568301	5.18572128860119	5.44278159291176	5.59813339973979	5.1311317030328	5.38254362063354	5.03495167488706	5.37374158101716	5.53075265965396	5.40683795466432	5.32233492454899
+"DNAH3"	6.02344092415658	6.08361367529484	6.15398279336752	6.23915787838014	6.34805570987205	6.18989423932279	6.22973207714192	5.84502811811933	6.19073310466144	6.08361367529484	5.65289738650747	6.07356595382679	6.16933313320086	6.25255133846318	6.3597780647293	6.36319025932866	5.91536334384264	5.65950676192092	6.08361367529484	5.97526442294353	6.07752419170842
+"DNAH5"	6.0314962064965	6.04913864736892	6.37516119906154	5.90801805810592	5.99491693611972	5.82287033003888	5.9542209863371	5.91049625622136	5.81714079586846	5.99210132109908	6.03662899932794	5.92027101078134	5.96097162224042	6.08740479212295	6.17129586132473	5.85917167337953	6.10794442812316	5.69109840795517	5.91452173654413	5.73318364163409	6.13099972286258
+"DNAH6"	6.15282167044666	6.35010296551006	7.01236032690963	6.49536727535891	6.34160477044619	6.61131684260376	6.17959043709041	5.99457790152308	6.53528797660973	6.41151556046075	6.13054408461578	6.39538026055973	6.3763897227962	6.22931123500014	6.48019643026768	6.09319830812318	6.36348466492188	6.2281478314497	6.51195745047496	6.24143430695443	6.05499011353193
+"DNAH7"	7.93980000626287	6.1409599680854	6.63022002268972	6.46143278785379	6.5317866257758	5.79583209853535	6.40421622175449	6.61334990248874	6.29863362251101	5.92932632687078	6.56026990823033	6.40218149780812	5.95678306536732	5.91045280719614	6.04489352602743	5.91184234259863	6.15784958426504	5.94106047337033	6.23441233831107	6.43035653009328	6.05975339152113
+"DNAH8"	3.84551765775991	4.12359052740168	4.05791402011665	4.39161571784564	4.14390384041065	3.84232318792524	4.09958802695804	4.11365950865845	4.23169815462376	4.38452148668748	4.26661060219005	4.2101669868804	4.26508855176971	4.19433471312143	3.90527208519706	3.98002602647518	4.05805927184532	3.84054160309622	4.12213248492819	4.02144481460368	4.25793226080075
+"DNAH9"	4.70970492331464	5.02145849045873	5.49433564641447	4.83159497055727	5.92017200196907	4.75190155007778	4.41985704438515	5.13041055507981	5.41409051198161	5.57526599807975	4.87789390078214	5.37165278530954	4.9565741553311	4.29938893389525	5.28647817853617	4.61788532294505	5.41679459553859	5.33260740057274	4.44993903236867	5.48570018498017	5.47099865333773
+"DNAI1"	6.20620976634743	5.59675914839591	6.13893658082547	6.09052119110873	5.83538061583388	6.06772946556071	6.44193782402662	6.06471830246544	6.1217753660295	5.94581077041648	5.68451569833682	5.71452814880736	6.0077724735066	6.37487302432238	5.81569593906737	5.66924473452819	5.90454929683416	5.57513040616504	6.00881760344475	6.03446486849903	5.99714159922161
+"DNAI2"	4.26001463794192	4.56326368283461	4.30359080843751	4.70330590175963	4.40723188131319	4.49018228479634	4.72222245675427	4.32274293388001	4.23766638843479	4.47551175809761	4.4639965426867	4.18819712305556	4.47860784338085	4.78950890617974	4.71787721478964	4.45098570805465	4.47190889842589	4.1359908743201	4.32353941235485	4.39087132716728	4.54027307571991
+"DNAI3"	3.54830954128708	3.42367322811431	3.26703965697797	3.54867794229042	3.48401303533419	3.5598403707472	3.50068201541317	3.50781331400641	3.48401303533419	3.57359707817253	3.38613004288932	3.44802211282011	3.58771504471758	3.42109490020585	3.40648359951171	3.54300354855708	3.28837581075503	3.48401303533419	3.5226075511181	3.65215665555329	3.44729209481493
+"DNAI4"	5.23891196649663	4.2946014855416	4.82561952102291	4.51184832877598	4.23360876711428	4.30291884282523	3.99027645229905	4.16136813448732	4.26937093476333	3.9904811942403	5.18425761277431	4.25321206406838	4.37592504484842	4.42434208085479	4.1156972378096	4.30291884282523	4.18909787011382	4.53170104033513	4.2996209547652	4.4351680294123	3.88431567954464
+"DNAI7"	4.4338526546948	4.00736483458546	4.4888011817191	3.90811692209256	4.5855991061356	4.06198579568202	3.23466463908194	3.94979021319867	3.99763959550352	4.0361639707467	3.70034397628044	4.38597861816996	3.72183267228522	3.78747832621655	3.90527208519706	3.86611241858333	4.00550527409807	4.03292446126797	3.97739112536539	4.13260432138357	4.31426348143973
+"DNAJA1"	10.7321892001101	10.0063115241021	9.59564815383827	10.8251418440651	10.3390465444016	10.2627011916183	11.0234101758532	11.1711152683611	10.7348760561431	10.6345789405616	10.1614395557872	10.5780271861521	11.0198287035469	10.0441609632896	11.0849762953042	10.7652611838604	10.391233189892	10.6036517355667	11.0043690295141	10.6848697379192	10.8479942395356
+"DNAJA1P4"	3.91446149203491	4.0234290839276	3.79340624972589	3.9998195457967	4.13431577647098	4.0034437894091	4.04375069019799	3.96779852709763	4.27552842619961	4.04970677254913	3.79954567853804	4.15399141092438	4.22761867395733	4.21367624982757	4.0873441814728	3.87779367089627	3.98521219867525	3.6829635122022	3.70463702723754	3.9998195457967	3.9998195457967
+"DNAJA2"	8.3898879734725	8.73690920277842	8.78592361986876	8.64554772818963	9.24578707818444	7.44851101963014	7.82809973638331	8.61364536027086	8.82701949190996	9.13084913772088	8.61016859773739	9.02660622823507	8.56220819170351	7.97911817852894	8.83881209209452	8.91920162340408	9.10941136246612	9.01858965882846	8.85298323584092	9.17419636671123	9.08996560806365
+"DNAJA4"	4.92134422179823	4.83730372411768	4.46216129686768	5.96039646220218	6.31714280716801	4.34773927206294	5.44924209101813	5.3299056481563	5.42955575954381	6.53925380671176	5.30451210133608	6.16747627849556	5.94291166570696	4.89570720363439	6.09447248823223	5.18933398112214	6.05387400047042	5.46312445847229	6.12847089168474	5.92245611150629	7.03917378389828
+"DNAJB1"	9.3168635218095	8.57109520705508	7.94549236824668	9.75111647532949	8.77950432769972	9.89153620092828	10.1888111817174	10.7950752852892	9.44098070843728	8.74260847856609	8.7674529362829	8.97416751222184	10.4574360159074	8.69931658041917	9.87497564886455	9.00533219054758	9.68627839093087	8.87727011560956	9.51834756219521	8.99153547410537	9.01389842998082
+"DNAJB12"	7.63965220110933	7.25319543163701	7.46480373224997	7.34632294329963	7.51349392058272	7.41573066028789	7.04332499450283	7.12864217775709	7.08628558349437	7.62328897962773	7.61965351117263	7.48902582526818	7.03970519428672	6.97427114803524	6.68175539190359	7.72269285954565	7.21184487207727	7.63820710905083	7.12791758156856	7.77172529802395	7.38880294772795
+"DNAJB13"	6.28816126081896	6.42955973830883	6.16049018996754	6.19865586591026	6.40957752902615	6.6574118236902	6.4974586804897	6.25799897380948	6.28816126081896	6.18360524213992	5.88280039376033	6.18218438330775	6.38479530955477	6.7285043915523	6.29908130523946	6.3134138629942	6.13133443484572	5.97628922219306	6.37556503558561	6.30563521106612	6.20729189460298
+"DNAJB14"	8.19330359118959	8.89136832724986	9.09306844297265	9.19909421571506	10.0096206670378	8.57763173182135	7.76412272178962	9.05528343762298	9.56110638581256	9.87718758201498	8.9141172830004	9.53842690977401	9.03462718693259	8.29613098910795	9.35681758689564	8.85311080365299	9.36293030559726	9.29949113106239	9.09817354294323	9.0941804169788	9.34997733875536
+"DNAJB2"	9.73691778720091	9.7272015564134	9.97405014337336	9.86992192778974	9.54483661897271	9.98955653486837	9.644722409144	9.74783889659492	9.42392595206096	9.47301080714618	10.2149319898886	9.76778404270727	9.62965291935015	9.40620154747783	9.75815559723463	10.4972540759601	9.67575786221468	10.2992167479004	9.90498664352689	9.54391360022656	9.57851878801724
+"DNAJB4"	8.38001533129373	8.04296506988118	6.89546907740355	8.63438466844081	8.0483926958786	7.44248881869826	8.43007982114295	8.97482826548374	8.37250302084379	8.33881668627956	8.17429695797586	8.41719231923195	8.56732515393537	7.49304662138133	8.50584670984516	8.28950351868602	8.41683411388284	8.58102786487476	8.92196270062254	8.13543632212069	8.48170852571042
+"DNAJB5"	6.1650063357551	6.4780333141565	5.79596508706943	5.94347749257532	6.02252192163979	6.41065139918824	6.67359686068389	6.85719381909775	5.64289772157128	6.12059484398192	6.55581985660849	6.32955542478032	5.76738100931407	6.17654721401585	5.80491645280562	6.16245241015365	6.12090497691434	5.8555332855914	6.11709300508854	6.56777760043105	5.6944518962337
+"DNAJB6"	8.07857237123295	7.07738973369125	7.01066778832859	8.19777565514311	6.97462132687096	7.71624426887412	8.36156676030485	7.62349081305279	8.08446129066347	7.22626971074325	7.20996482020027	6.69251632074093	8.99012420500983	7.78919171056565	8.97583782389318	7.46045393926011	7.24527129024007	7.90048013475332	8.01744446605911	7.42682017314431	7.55186633804099
+"DNAJB7"	3.2758169114094	3.0768461069553	3.14868151140556	3.09795647406771	2.99786493713019	3.0768461069553	3.12741729081893	3.07005723810855	2.98271959304915	3.21190718536237	3.22036732274093	3.17924940596422	3.0768461069553	3.33581776385484	3.02471288538393	3.00279417941314	2.99273413036743	2.94839363147573	3.08204742005232	3.021840871123	3.05696782068308
+"DNAJB8"	4.39023185000739	4.39654064595812	4.57512919121534	4.47784864231456	4.43546471656179	4.55336923120045	5.28971916400565	4.51604442358221	4.58799381137621	4.65915049192384	4.52480939153993	4.54137198263651	4.70396163662674	4.91523802451832	4.569328959491	4.60947526098787	4.57512919121534	4.26621023583942	4.7995243667571	4.63600980034975	4.59660200406748
+"DNAJB8-AS1"	4.31981119763938	4.42095339225445	4.4984454769523	4.45296029775925	4.35159930560773	4.67841261973239	4.54857464689359	4.34226325021194	4.2960219769723	4.31720718391376	4.12591875769766	4.44961700663898	4.58377437083036	4.35159930560773	4.44948229805261	4.323425396628	4.11679765392749	4.04030423591882	4.45503733336714	4.35159930560773	4.27516250398466
+"DNAJB9"	8.95042295561107	9.51848415988682	9.352498537457	9.42502829638843	9.73293796260752	8.68786510929404	8.66711594984207	9.69509343160129	9.32639066158768	9.7038535565102	9.52851257131253	9.68983858097175	9.32688145051157	8.58299002779869	9.54238457106975	9.78401492375266	9.5951300800621	9.66283341773634	9.69051604552921	9.7273169769109	9.78202182648185
+"DNAJC1"	8.08350216273765	8.02869667461906	8.32680988580143	8.3320074636133	8.18814146575248	8.73615011965618	8.3753103568954	8.17257715076052	7.97794179029128	7.79960911047343	8.49505598979944	7.93103925806831	8.42103479053313	8.19118195323829	8.12720864725098	7.95688815418999	7.75941437477524	8.29003963686483	8.29594020002072	7.71258070773697	7.65177898859526
+"DNAJC10"	6.8393664573422	7.22931932188699	6.66622798791867	6.23804319221488	6.91059111958027	5.92351105737878	5.6605409328379	6.48812997227037	6.06114071742053	6.8809702564005	7.38935202828775	6.80744933306059	6.04325316012138	5.985725600203	5.90082466032197	7.37666490973368	6.332859873282	7.03393435339349	6.41990498825567	7.07506815767835	6.80794339514372
+"DNAJC11"	8.26864228612657	8.18413989697035	7.82325453906769	8.20901892380309	8.35946269607077	8.02334162103695	8.11374381596299	8.13168064227378	8.17257715076052	8.45518578220612	7.98699711809303	8.26933725632355	8.1523759882614	8.20901892380309	8.08572438343167	8.298314431791	8.30378981113155	8.25056039807852	7.91946734067482	8.71855076778033	8.56901523751824
+"DNAJC12"	8.20166802000339	9.0812777926497	9.31403979707331	9.58245479098621	9.50610715416899	8.80325247332602	8.02804644692847	9.09171372907184	9.50888666906688	9.54636150898174	8.85057345685534	9.23293680403809	9.37862210174496	8.82380191876202	9.61418275722989	9.26180048470897	9.30570271291747	9.48712891193947	9.50071181774073	9.34865722413098	9.33157049197383
+"DNAJC13"	5.33551387007151	5.12593684319866	5.04035926972021	4.837082015242	5.17438782296945	4.97601299314044	5.34689388877918	5.18688212634412	5.1564686283834	5.27336234976124	4.66131115323647	5.13003756387303	4.85792240366459	5.12749429720814	4.96606392443155	4.61284354163675	5.21258633170476	5.15115664621993	5.12593684319866	5.52985876229545	5.12593684319866
+"DNAJC14"	8.46633144168733	8.40836840875516	8.49766599877743	8.10801974967531	8.55359680701739	8.1278635782549	7.91938491322781	7.81295180456391	8.0496900920461	8.16129133922775	8.18944938532287	8.04051894851274	7.81869734031854	8.38710763449474	8.10728036464969	8.70686874708069	7.93353312745611	8.65516923866249	7.97950948819286	8.40941688916107	8.29526083329898
+"DNAJC15"	8.53936259079376	8.22994812077897	8.65392448528716	8.56062915809131	8.62908492061148	8.32840771997989	7.89764489497393	8.31404123429678	9.05336862814472	8.74616828055729	7.71032090978142	8.13236079541536	8.64209516611878	7.8581440955802	9.21673684159572	8.15875829075722	8.65124452374189	8.50329571532805	8.53222555174198	8.49626195356795	8.43822919574543
+"DNAJC16"	6.60084435996603	6.77241883207801	7.45313932799291	6.83128378499893	7.10623445466541	6.37073633145238	5.97865766372957	6.3317249264334	6.73833579171416	6.74375960139679	6.66547609536873	6.92852701968585	6.63372665279018	6.26601642296342	6.73839827585433	6.82080275353154	6.71413103870993	7.03525797371657	6.70703327663519	6.69159517737296	6.75511134414568
+"DNAJC17"	6.78529426140328	6.65405597709571	6.84605738063265	6.61395923310111	6.5269456558423	6.49973709994098	6.46473130327137	6.58951484771083	6.58239278301627	6.7689568609013	6.83043623589645	6.64869342821021	6.51570629781447	6.46066526039281	6.37036410577547	6.88700026626836	6.61560750720349	6.9925988760631	6.7530220894672	6.65224795461524	6.32770870765473
+"DNAJC18"	6.67923105339378	6.74261388581315	6.07465134187708	6.36174093473888	6.94372916255897	5.60536318216393	6.05705369344318	6.89428233247935	6.44895784534793	7.23617043765007	6.87380822720294	7.0799390882167	6.32804008770739	6.11707423072379	6.22471017032982	7.46825284373108	6.57359637177893	7.16294078600548	6.61856581044735	7.27631519577155	7.10013283450337
+"DNAJC19"	8.26792999304175	8.38122083890163	8.29528358397803	8.30241161428783	8.58333593338781	7.48403549221397	7.92719807286122	8.11091519271013	8.43315925686217	8.76644854468379	8.32271599677335	8.56990223244763	7.87075796883123	7.75692730145831	8.12173542598959	8.6714363401259	8.12292003992254	8.61785186474381	8.34275945787162	8.652770629215	8.54247628707786
+"DNAJC2"	8.09183446742919	8.23419221599562	8.44110348041736	8.25854697281202	8.22511997377338	8.29443004948434	7.9054672347711	8.4866884913975	8.45217326697464	8.54029014882972	8.09354597083575	8.12149183881239	8.37051782215482	7.97813254213608	8.9311776871537	8.09430253235768	8.10092532335612	8.32066690301144	8.29443004948434	8.26238738488426	8.48415761528765
+"DNAJC21"	6.80773561151887	6.9855937915725	7.00760882864107	7.00098646449325	7.29099760888624	6.76331175686798	6.73640415250671	6.28182781455403	7.37378438146956	7.31528956461364	7.59628579989739	6.912098063019	7.34520715171016	6.31410383922969	7.29746883207118	7.51949016842114	7.25914413070571	7.43507627291899	7.53667670500409	7.15611244283536	7.43793270898546
+"DNAJC22"	7.4111831044809	7.48769782194161	7.498123916325	7.64267099260075	7.37282210518478	8.10449104558522	8.22132094978128	7.44650164680679	7.67939182034761	7.55083820128102	7.43507627291899	7.54743567432385	7.79626548656855	7.96902533761338	7.64427388945493	7.04368011286608	7.58230634480721	7.09912978010425	7.77248654210538	7.4583103012563	7.55536642738593
+"DNAJC24"	3.43639823544938	3.48700059593637	4.01797513182937	3.65444637476143	3.80929124910117	3.27605695764013	3.75156049637986	3.6322280984687	3.60986088727306	3.60986088727306	4.04667966948365	3.51333910068171	3.56331279541434	3.43359552805148	3.84268650490588	3.36560010406572	3.42469640917571	3.97720981215884	3.69376151136449	3.6711327219217	3.61914349022033
+"DNAJC25"	6.50144712980475	6.53832984247818	6.47374956305307	6.61416319256642	7.0920884710744	6.27996836135827	5.7507024069879	6.25011372038357	6.60382909692615	6.56705322083808	6.60606506368683	6.44238533665869	6.50923980112766	6.04236862965764	6.83417900033895	6.47416226332789	6.18581473575115	6.63740866785568	6.47374956305307	6.6968954294011	6.46383404729357
+"DNAJC27"	7.25683541428111	7.61875840618368	7.96008204033722	7.59640388260122	8.11599665266413	7.05215478264559	6.6647284018463	7.59540121352629	7.54547618701067	7.74735059253446	7.6578595266888	7.93371687901516	7.31447247608446	6.7036300063104	7.66490577629995	8.23010065475536	7.86805186663654	7.9735981625767	7.48232911798089	8.14035575038141	7.92788484428499
+"DNAJC27-AS1"	5.08961543800521	4.936048379371	4.70104646898482	4.71113361981696	4.9548266868208	4.45503733336714	4.50979467366118	4.56149976619302	4.76262693825625	4.7696592110741	4.88768115273881	4.8635088307535	4.5157372897244	4.76564928647295	4.31243432000804	5.22324687745927	4.92675224687772	5.20991380828737	5.00086920797973	4.91512066266508	4.99695643229299
+"DNAJC3"	6.15758654625767	6.02941716983901	5.71432502914536	6.59646101027977	6.41755486876755	5.60062456273281	6.28172015346176	6.53826282515391	6.49423943161767	6.00353081353525	6.53826282515391	6.0580826474935	6.34170498749065	5.94184024394877	7.40282283535744	6.14672569351455	5.62122464568083	6.09819309709848	6.26737407449572	6.443834933189	5.67838749911977
+"DNAJC3-DT"	4.69738255640477	4.83225979906146	5.46300463823398	5.37840600966654	5.33208226979403	4.95751445856909	4.60014551630854	5.28579655381595	4.86579591273603	4.32231528156978	5.08691578122329	4.91512066266508	4.71671806762218	4.56757217839965	4.92633404111859	5.02483798951614	4.88922404329765	4.83705979015129	5.19917861114774	4.87652935885886	4.74409771418208
+"DNAJC30"	7.73984877799094	8.19306479419976	8.64732134520288	7.96279369399568	8.38188143473458	7.67079003181418	7.49608453171557	7.83141748606662	7.86103749567715	8.45947716134665	8.01181915917228	8.12451703006719	7.65346875598302	7.58384169692835	7.70958105276492	8.22546798302421	7.92400044306945	7.97372927239715	7.77000539302407	8.36709403607059	8.26480637144406
+"DNAJC4"	7.54089665306917	7.11599808317016	7.3537426322673	7.06717999913554	7.09464346246709	6.98461819946088	7.56047057093938	7.13445164828616	7.22275155654152	7.31529080798339	7.36429245547196	7.3146656468996	7.28892122134885	7.10832528344246	6.92492225525853	6.89204409089721	7.10804273161118	7.42751376852352	7.39205594265362	7.5145703755395	7.40296268250291
+"DNAJC5"	8.86636880345129	9.01721470008326	9.50353819842361	8.96200310312626	9.7661311386753	8.97228056170174	8.42916205192617	8.90498962113168	8.95751465323657	9.5865319600537	8.79891586180019	9.54217529034909	8.84600884946259	8.5798945309033	8.72032826676317	9.02112333812701	9.38855400098338	9.1848105380012	8.97100394569036	9.94942382862156	9.74671036737115
+"DNAJC5B"	5.47748260674007	5.68930253504963	5.63828899016293	5.85104982608341	5.63143723470188	5.74038747971742	5.86027196505485	5.72424366272709	5.77327243790179	5.67214708362287	5.47261577610341	5.68155189298189	5.77250298422659	6.08342482378164	5.76207595995033	5.46420451510586	5.84324430367431	5.38772076207441	5.78555045058218	5.35728541841318	5.60877549722233
+"DNAJC5G"	5.78561594219974	6.21976314139905	6.08785110648286	6.05813686411055	6.22462774443551	6.05975877617083	6.38097294513687	5.9423607371163	6.35960864605307	6.18861665436357	5.84722686870965	6.2007128354701	6.24310138963865	6.35334167947829	6.16207235460156	6.28375577561411	6.22616177728479	5.85987289952699	6.00457456699752	6.37071023234405	6.18241970740759
+"DNAJC6"	10.5158404141991	11.6842194192583	11.7983115419289	11.6709012808829	11.952934100469	11.4387579092616	10.3032226432975	11.1835585980443	11.5844066730874	11.6275953749281	11.480739704328	11.6171508532419	11.6018749728317	10.7943222655385	11.6496010990244	11.8835547877685	11.7435881087414	12.1300192966263	11.480769250749	11.5899450975603	11.6941660265798
+"DNAJC7"	6.74396898460173	6.56028363223541	8.48264533264859	6.57830019070965	8.0524858941201	8.83796211981136	7.02083193745033	7.60382501732973	6.33484550953937	6.22841473942887	6.53949425911546	6.78045862677173	6.79074351079143	6.79126820442844	6.81790603422774	6.64737513990755	6.69781212099381	8.19905653586146	6.63291107424417	6.22754545384372	6.51522770091213
+"DNAJC8"	6.14505941677971	6.40382767411492	6.59644571819142	6.15403611317568	6.81472038054235	6.45450926391267	6.01637538053358	6.26367016436208	6.51908368971392	6.52544417168355	6.22079256710255	6.42692478534392	6.0649746092228	6.25412039254516	6.38820124164929	6.40382767411492	6.23296598817393	6.70919735222373	6.40382767411492	6.72671382074282	6.47790677928116
+"DNAJC9"	7.0744533956861	6.8809702564005	7.30096310787731	6.79269407979933	7.41683425491412	6.55187081588444	6.4501344114403	6.8809702564005	7.04303094021898	6.81861861821793	6.85032199171743	6.81739515296986	6.59303443760207	6.71165581633771	7.11208308325021	7.17581555489758	7.15023268845496	7.2004182953795	6.65104549395939	7.08982667691886	6.78403572440604
+"DNAJC9-AS1"	6.5385864012367	6.6632899760982	6.32032406766099	6.78949400889874	6.64174344942814	6.46767721315255	6.70171509864105	6.62520337051499	6.63879497192724	6.62318432687833	6.55879634184745	6.71678233268486	6.79554731716057	6.90728599137836	6.66846527075555	6.81294338801741	6.94210760793954	6.32121659010116	6.58905436226663	6.66846527075555	6.81479813537513
+"DNAL1"	6.31901607425205	6.59361593165903	5.57904411338205	5.91149017850179	6.00242707421199	5.07805109274948	6.44769339532717	6.64228321536258	6.4520377067338	7.54363155484774	7.07482276777621	6.16087462476844	6.47790262266249	6.31713472569774	6.67028377870873	5.94828253641258	6.31380957192753	5.35923949566237	6.0268340030331	6.6646184263777	5.88511634246436
+"DNAL4"	7.65612183864158	8.04536477566649	8.65035777671473	7.80594171116534	8.16584170739307	7.70198473381857	7.91767156523079	7.71886013343325	8.03825063559965	8.09417967239643	7.7719530793647	8.13509545676916	7.66309003444214	7.62367534786525	7.71358735894817	7.82504789406774	7.91068527509341	7.71357993507666	7.86389673613425	8.55579029997023	8.06465327212252
+"DNALI1"	8.41948440509288	8.02253351828145	7.67315204387263	7.88564646871733	7.63321268195457	6.77896355559875	7.37235151653423	8.14687252143649	8.03013050503209	7.33571838039249	8.68346032916446	7.58912559758884	7.44336090348449	7.44342868091853	7.88013666463237	7.51195106562979	7.39607207149905	7.55873236020879	8.06146588342343	7.61620800810111	6.69754248230592
+"DNASE1"	5.95303742611692	5.79976601284619	5.63878513694336	6.13469471421272	5.23842786822172	5.69006640033306	6.0464498349569	5.75341288244713	5.79976601284619	5.35823753099153	5.94839623023975	5.70132270470722	6.2364498447104	5.86911183330033	6.06362113926761	5.8429231202761	5.61357044510296	5.57676765338331	6.05679249421136	5.76496490285033	5.68252365059641
+"DNASE1L1"	8.17315659123455	7.58382923927838	7.99613605536396	7.62731793548938	8.05179653301071	8.16016538450359	7.61498226960193	7.72325252277505	8.04593506306256	8.05540315125464	7.6255097836221	7.68280868259798	7.83322999108193	7.98351425467319	7.86497108169631	7.46967319321848	7.74708284566692	7.80708161689273	7.63727326890986	8.05686435995817	7.93821726262508
+"DNASE1L2"	7.08232103878685	6.69593809385428	7.08138845649549	7.07994270249403	6.7287130706263	7.2855058377447	7.4541163607491	7.02084951295858	7.19326865398832	6.72150836554369	7.00377637301963	6.78775705439621	7.26282348057845	7.45829358423115	7.31230429666443	6.74163765488321	7.02365303198104	6.9550212411303	7.1016790648049	6.90415072705911	6.95777758014059
+"DNASE1L3"	4.49670233307863	4.40270737143308	4.74822355242602	4.44118598622213	4.44031741294779	4.69900549583606	5.08052538773411	4.43034533412832	4.3668206654833	4.22150256223712	4.23871176505877	4.46708812468304	4.33542552123062	4.73841023639678	4.15136329917688	4.40739249754437	4.49315861500457	4.20998734682621	4.56390741516897	5.20689037871053	4.47950410625788
+"DNASE2"	7.1100810326869	6.88228339736099	6.20000816504023	6.15319708222333	6.49157152904071	5.73999282092688	6.93487204726648	6.43545928053242	6.61620117866378	7.12905742971705	6.96346893784634	6.63193708262582	6.37678704174495	6.20008214699534	5.95892714909767	6.74760915051564	6.67642794382117	6.46754904106313	6.61620117866378	7.09141304850322	6.44440363972337
+"DNASE2B"	3.35982733247846	3.64499346167987	3.15132839120907	4.01225918655588	3.69204518773579	3.47298025610708	3.55283334718678	3.47298025610708	3.89659277325991	3.71195257288126	3.58657035912302	3.47115147475991	3.68228400179787	3.58849460622507	3.69204518773579	3.8830327551355	4.13211045745465	3.83463107016979	3.95552962815669	3.83597331010657	3.73384118114476
+"DNER"	10.1477176775982	10.3602408033206	9.95078837470856	10.3622636643243	10.0749971614946	10.2271755887782	9.7203028634044	10.2971128962617	9.83458035312545	10.0114573814872	11.0563594202758	10.2144194301501	10.0363399766866	9.9089927999031	10.0756146608576	10.8180855777167	10.1614395557872	10.8652168024044	9.91303112033101	10.1134189075466	10.196630747016
+"DNHD1"	6.63702996576702	6.30997109772858	6.48933831033012	6.26776777386515	5.98790395846268	7.26109089671818	6.54279414817403	6.36766313886028	6.12567617931026	6.14481646670161	6.774449677917	6.03941758520597	6.3850449786764	7.00595587576759	6.30997109772858	6.95828029593993	6.05414199801117	7.17997674091753	6.0909090162243	5.89601588946413	6.12411241719346
+"DNM1"	11.4097830834859	12.1550836701301	12.679068533456	12.0681537917206	12.6536751124266	12.6087529955809	11.7334235780993	12.0787778763438	12.1967458700815	12.4323322122347	11.6264209547421	12.4466494559038	12.2656602685643	12.1005107388723	11.7102709683042	11.2805810172023	12.5292399040003	11.9746772424614	11.7982096762152	12.6358814235592	12.5076434456364
+"DNM1L"	8.81664966708684	9.10863148601326	8.76812905130694	8.85684170443089	9.40339117177037	8.33881668627956	8.29004946289654	9.28602065138429	9.11102739192823	9.85859494731943	9.03007439068757	9.53624059435618	8.78882992773474	8.22173175049494	9.00224056617965	9.3446648694088	9.23710672213988	9.27119810702127	9.00265611646317	9.79219181841749	9.51429265671375
+"DNM1P35"	5.9993381714328	5.91731574964901	5.9242842729688	6.07145822756068	6.12341481247181	6.25545253864618	6.19765127105713	6.06042726071386	6.20752885413054	6.37110082236668	5.98067510247034	6.07650775961619	6.14029604118046	6.29830710052745	5.9986227423341	5.95303058633702	6.09909617011073	6.09437184833352	6.19093238724577	5.9721574541798	6.10535207526782
+"DNM1P41"	4.77108682974153	4.78456866405911	4.82797497554128	5.0540762933173	4.93779438031075	5.61690304961341	4.9288283931948	4.72980869379963	5.0879036179624	4.93779438031075	4.91594799883209	4.91912325557236	5.16968527411811	4.99772883258677	5.13895560236295	5.09457321484248	4.79598899314981	4.7410158149556	5.128950426277	4.98340550197523	4.72748619566969
+"DNM2"	8.73566170813381	8.42627106119839	8.18063300679693	7.9638276729551	8.04728713157353	8.79595210609596	8.58954949172885	8.19931488056682	7.75905710363655	8.07722042772923	8.81361287924696	8.07717309196636	8.15696500727538	8.45319780542603	7.91619866443113	9.32985495336348	8.03471728873656	9.12214185393575	7.95264474283641	8.07659381831432	8.06754847113977
+"DNM3"	9.56995050783807	10.4715991081534	10.915460012403	10.2941620913499	10.9106610350445	10.2857945713184	9.01061526578694	10.1942953693551	10.3778368765653	10.7517884009928	10.3556034200773	10.6113400721706	10.0790703350808	9.76917890292234	10.4299051061813	11.1076358635304	10.7135423093197	10.9073754699733	10.5602667913609	10.878481947551	10.8464279624202
+"DNM3OS"	3.19974090533624	3.30841633643582	3.26466394210641	3.15124119643316	3.3404377108901	3.46045512178435	3.2298287686223	3.24451087062242	3.27885340946874	3.10971189916038	3.33277018754709	3.10181413675477	3.35081872462967	3.20876675622079	3.24230196145342	3.07786893066108	2.98817834618812	3.19252788411931	3.3024339101175	3.24230196145342	3.21218341159847
+"DNMBP"	7.26816981607095	6.93422617897174	7.1379451334273	6.94231825120501	6.89666002725041	7.40296268250291	7.30785902330481	7.09797387352402	6.93370633436503	6.94355890068533	6.80500365695518	6.57211625616677	6.93422617897174	7.22544711189428	6.68646847442643	6.39887062141622	7.01181917031057	6.68285095932116	6.59509547648759	7.16390741118796	6.83164482588154
+"DNMT1"	7.90229012275216	7.84102042874982	7.88936009437173	7.70740135207226	7.92673524586265	8.14908480306197	7.20931759605188	7.60760705622926	7.62880268585353	7.59924993000889	7.86395204846554	7.52716614513997	7.94139067867445	7.87944308847642	7.74571017338981	7.91034854530011	7.771621737584	8.37892865002714	7.20998360222414	7.76394056467729	7.82284438309164
+"DNMT3A"	7.17112789413425	6.42463912058258	6.59219254372013	6.43263019273606	6.41101886104605	7.25360286595577	6.99127093447495	6.47753407169069	6.53851495905203	6.49933853087804	6.49741083169395	6.22238375826957	6.30997109772858	7.02870198753892	6.61000435277624	6.53851495905203	6.53851495905203	6.77462704765243	6.67766571345023	6.52603521706087	6.25853637267896
+"DNMT3B"	6.07348634843011	6.49576276296102	6.42965530092925	6.03476657062713	6.28287738921389	6.08060238043892	5.88814297915846	6.01604099739267	6.26822909989219	6.12059484398192	6.33223851743107	6.09368444676826	5.84987322071876	6.12059484398192	6.12372036452524	6.12653295254385	6.01604099739267	6.18421189728197	6.15616416532921	5.82056182884727	6.140231703971
+"DNPEP"	7.50442932164875	7.09766667917977	6.98309858065784	6.77036286073111	7.16453835710543	7.10690446392517	7.45277496905188	7.22095926858953	6.88029529449045	7.21477332485548	7.28850940256492	7.09199210845129	6.67604685682751	6.94400513055104	6.94005382214477	7.08014466200636	7.05481836852696	7.10690446392517	6.93264101377209	7.53060406115104	7.10958365941667
+"DNPH1"	7.52024579028993	7.46093921609993	8.02393205266906	6.93883279242936	7.86946158755498	6.71893355975605	7.24369130322202	7.50437606768941	7.3462588956505	7.44929741623546	7.56550413814296	7.57483342442914	7.14828144404832	6.94154609055858	6.99744836538983	7.28569384943345	7.16224051407174	7.78830196461728	7.36387544680352	8.11311496504735	7.16160815830647
+"DNTT"	4.47493614618321	4.73013365087401	4.58218729727042	5.01852902123095	4.53142825354125	4.63917070007273	4.98775464373788	4.86490116550578	4.7542269097496	4.53032278060939	4.64824773339933	4.69268424788827	4.80891936519784	4.77388116681428	4.94220226687154	4.77652016753306	4.72083029964895	4.55221553281559	5.01486104019195	4.30025441582222	4.69268424788827
+"DNTTIP1"	6.74123703243558	6.20113371788598	6.27678246094979	6.15481699047588	6.87158106365838	5.66046839523366	5.92547895676735	6.606715955532	6.12760033874173	6.75751125677883	6.45844507962715	6.45791498706109	5.54245912594434	6.01742296222863	5.9026596954461	6.2841332807287	6.13396007708152	6.77596099000176	6.15280353122745	6.7683175875608	6.67038034462587
+"DNTTIP2"	9.32927615943157	9.14029765346801	9.38546477492715	9.32927615943157	9.46094936899717	9.3973884663741	9.12130266328668	9.73650367217213	9.34825247103377	9.56906242671207	9.04038990190899	9.30415623989781	9.27743873767628	9.32927615943157	9.6069508468409	9.10167511990075	9.20460327176824	9.36712190834411	9.38154553636901	9.42306303212048	9.18941713821885
+"DOC2A"	6.83384608411412	8.19118978936798	8.609713108472	7.95753025574576	8.57390314212886	7.6766249827173	7.34898953463514	7.6793788703074	8.02942855769733	8.59722486487173	7.48925810507331	8.63950249321916	7.95750766334688	7.18156025989297	7.75642172711218	7.56538180453392	8.18281124723138	7.78037867670117	7.76853989504387	8.50071626028804	8.30172137780618
+"DOCK1"	9.68605087905291	9.28380063903697	8.77149277347267	9.1376909468105	8.71556252184863	9.84542624536147	9.77635300452252	9.32943634759807	8.76570101898674	8.79291541065687	9.59610023208894	8.61033246155319	9.16898428120416	9.60163969541405	8.7640736290924	9.67459331677908	8.83158563768782	9.46333700874318	8.92327490820036	8.37910952769112	8.90095042007391
+"DOCK10"	8.10595925247769	8.34044519201112	7.92983577820438	7.95703961736073	7.72586430565877	7.71755515538265	7.3077444247307	7.05716272616899	7.09143943945053	6.82511264655461	9.23374844820725	6.92508795610364	7.32380037231174	7.72586430565877	7.55235760043092	9.51635818205068	7.46880058563016	9.31750331472521	7.72586430565877	7.06666324928488	7.99833386564195
+"DOCK11"	7.60903863651412	6.36859738399513	6.51119623294437	6.31995564405608	6.49792256136574	6.80767722865489	6.43943623858486	6.69137867528659	6.13973472504201	6.37597512361054	6.60847731322271	6.18821115649955	6.27536218080661	6.502464920212	6.35473308117428	6.84264611639835	6.42027384344422	7.11952607872295	6.7546496017778	7.21744603004271	6.87389029286499
+"DOCK2"	7.39441306027273	6.08866833249608	5.85686462105871	5.68242099729622	5.81755604500062	5.92803187984963	6.19843134400626	6.07380823260047	5.78217601931541	5.94987987407521	6.08373977344678	5.64407310817753	5.96180001826915	6.52753493586308	5.64771782655792	6.07380823260047	5.81619249206217	6.2757258009466	6.10170540009287	6.42447715605592	6.3182619834127
+"DOCK3"	8.68600202524474	9.37281229666913	9.47141569959127	9.21374193275926	9.8814063864426	8.88642562221977	8.29106613221161	9.02654697426854	9.34926842564274	9.8221985471203	8.93858732696543	9.69436168743847	8.89410761841966	8.56504958931391	8.80097141557669	9.27743311207049	9.67512773163809	9.47675858859833	9.28912898770383	9.70146317672871	9.79337634963151
+"DOCK4"	10.2243500880927	10.3262573701349	10.4326791100021	10.141246333149	10.5193113468378	9.59675453371743	9.75963219789208	10.245937599866	10.5137286664749	9.79662185252747	10.2321130839575	10.0190034472156	9.97974591976327	9.95247283175625	10.2003806924035	10.2521336769078	10.4699955084599	10.3812995285601	10.0819473215499	10.2372768525876	10.1714276995489
+"DOCK4-AS1"	3.73130296103193	3.94455582282733	3.73778390674119	4.22662492845086	3.94455582282733	4.30291884282523	3.83737506860215	4.02473774726779	4.35858455504762	3.85705049660659	3.9944059768929	3.87169079752351	4.01701051165302	3.99240152109182	4.11151834932327	3.57943126346958	3.94633791484601	3.72413501449029	3.88509171534632	3.84346537277888	3.84111779506792
+"DOCK5"	9.54120067048439	8.92839224187721	8.39677757383143	9.23430029598435	8.32337410746595	10.0041603372305	8.4485852611691	8.257526985286	7.93946069939297	8.02177297714939	9.88207008178235	8.18862426355695	8.71759246188849	8.86619391198579	8.72245651742748	10.4272500061038	8.77928317817616	10.0669724556439	8.68323789380958	7.64628166575745	8.35570327704604
+"DOCK6"	7.79728579780486	6.62875171226049	6.61888642979704	6.75524485173938	6.4022676913422	7.82813653395574	7.52720816800748	7.29263641045241	6.85279325745591	6.92403677627436	6.70687825593694	6.80886293523294	7.063589453602	7.43411987052262	6.79309976652486	6.54649361988958	6.90160692354172	6.62667554847377	6.73217616152964	6.83341691811839	6.78455909971804
+"DOCK7"	4.40916686545016	5.11652831692295	5.08482628499173	4.86146724666088	5.59247855983831	4.41786776297273	4.87598852855677	5.04670029609831	3.9559837610143	4.38582933854481	5.39567932771299	4.30471003757415	4.04166024125249	4.07792606942969	4.70766319895365	4.40665136781431	4.06430166684886	4.41786776297273	4.75799280259008	4.32676622900473	4.09680610048327
+"DOCK7-DT"	6.36017278949439	6.17318837863919	5.2559785547076	6.17472441419162	5.73971809950586	5.46966053944916	6.11073220387328	6.01997209403094	6.35129746550869	5.92379317369476	6.00670622707959	6.16050551985581	5.86518282716337	5.75963366509801	6.02494559041008	6.17654724427695	6.16647456822837	5.16738687603104	6.03116417079258	5.86824951599821	5.82044835985698
+"DOCK8"	6.40220405043551	5.83655414787235	4.17944869496441	5.62204874132113	5.30869876123611	5.08678797749772	5.56237050413311	4.9356755323638	5.18284893360152	5.06140427181367	6.08765862935209	4.08004961988366	5.74971988766725	6.22252446899197	5.69573468391541	5.86924534726537	4.51918947622553	6.11888393169705	5.66674055838649	5.86924534726537	5.65437588505808
+"DOCK8-AS1"	3.84328402311958	3.82838019168492	3.87427355914132	3.76825300635199	3.80445634395287	4.03114942581708	3.89581863169629	3.76825300635199	3.37884358069307	3.76825300635199	3.5460762589295	3.77595201209861	3.63942913758544	3.69098253675707	3.71939575361434	3.79026300314095	3.64279724371246	3.72704759514861	3.57114572495832	3.87455398252215	3.66641028844042
+"DOCK9"	7.23883458103561	6.85781937608427	5.81564144912913	6.34285374665755	6.32592692695037	6.92007119124133	6.49195141287381	6.67453090427133	6.18087388019227	6.43507614831703	6.80450509921125	6.64185701477312	6.54096590024087	6.27901318686206	5.76289814370856	6.9049438889321	6.78218478668668	6.93774401076389	6.56536969282266	6.23455560133902	6.62039683385155
+"DOCK9-DT"	6.29079601809376	6.35840906352869	6.76821386319653	6.29067014032464	6.62079066879305	6.07186346084491	5.81648067022486	6.11707983667226	6.17772962577729	6.57777281816998	6.07039354339939	6.46853333209722	6.25777127181384	6.62510882563182	6.03086191379723	6.46705503388536	6.28124995215197	6.45499794015293	6.01748555211391	6.07549340587195	6.21802863910042
+"DOHH"	8.00191171117581	7.77797952222242	8.27393508839715	7.98917210853485	7.5855730823949	8.80327557359688	8.46136582953909	7.96169179617032	8.18295303197964	8.19923881884377	8.59398678843593	8.17594490700615	8.16652784800827	8.14996020745983	8.32022868907263	8.40901272356536	8.11470130738559	8.38896614651112	8.33399878778782	8.01513450057109	8.08126905461662
+"DOK1"	7.41563302461914	7.13966197153663	7.25572434631387	7.33031671170085	6.89432372372298	7.56447052028785	7.87090286224847	7.35707274243074	7.51043885576321	7.33944341317051	7.35707274243074	7.278622730664	7.42943418847747	7.6440006833521	7.52142872467513	7.17033481777741	7.30177824692203	7.33048203252448	7.63842951104068	7.10443227821972	7.3544605000136
+"DOK2"	6.17595548140836	6.21235712932446	6.22215816497002	6.40792376501336	6.16632361635475	6.41148816156747	6.86691294853639	6.18126964260418	6.40245814983071	6.43366406858145	6.1010688899205	6.60140464265124	6.51520829735943	6.59446234006877	6.38543781774532	6.20388477859957	6.39736065205459	5.97090824405581	6.5202268373819	6.12943090954197	6.45888785523178
+"DOK3"	7.80359722713761	5.93717330700864	5.59134089055529	6.58681232435417	6.05355566524835	7.13469157962411	6.36591125112246	6.79812412795842	7.22711880263188	6.36034135626212	5.44526848142493	5.90004392873992	7.57773032117415	7.11851024828355	7.23341415394904	5.8692499132607	5.85294060291414	5.69928652099658	5.89463768725701	6.78524746374196	7.17460779774602
+"DOK4"	6.65884406668744	6.75905418193185	7.25009241602872	7.07671611115956	6.68587574177309	6.95683630713349	6.8430107344033	6.59808313517871	6.79074557420813	6.77723468183747	6.58677911075475	6.62458032257381	7.03128044162673	7.16419381800354	6.91849855519038	6.32032406766099	6.58537634982777	6.3524121196482	6.89262018681814	6.88964729538665	6.74491778213737
+"DOK5"	9.01660804995525	9.26446020528092	8.95199630293603	9.01465723438768	9.01557814133395	7.63125942471148	8.90576518378393	9.25256702101176	9.13919094024951	8.77047107155792	9.20307159770376	8.6892198177772	8.87879770639622	8.5544631771668	9.11035410586004	8.45133308169525	8.81535070501684	8.75528866079796	8.961053724197	9.14899764599988	8.70478274374309
+"DOK6"	6.33794259542441	7.33395543039673	7.37177807308791	7.63788687234206	8.04152010823255	7.11837794397713	6.3792171954389	7.25304328032564	7.89003575856124	8.34372086782088	7.09375268661606	8.29661783151063	7.50580447262617	6.72587441116471	7.28357119730844	7.3685455279957	7.8524915140666	7.1128270726952	7.85588105152301	8.57405413212317	8.46418181251706
+"DOK7"	5.7328282757027	5.30386314725515	5.16588438855318	5.28569043100564	5.28536145691894	5.1971077928808	5.32520473849499	4.94438082884939	5.19724393949097	5.1275156143765	5.05084286268708	5.18281900171536	5.40180410975005	5.31858551171707	5.1971077928808	5.24845512684318	5.46212175331202	4.95598883069673	5.17280515770581	5.12178899515914	5.12453419105799
+"DOLK"	7.49474658337393	7.39767603627943	7.32070474325517	7.18257856904862	7.5806824958125	7.20385507692161	7.0041657668984	6.81671946948892	7.29510234393639	7.64011698180338	7.1531467043018	7.23377570771573	6.99235231218216	7.3146656468996	7.07526569342114	7.67906189895415	6.9934311132967	7.48561807918733	6.88910754040668	7.55430577413609	7.35528223110163
+"DOLPP1"	8.0157809917199	8.24287923508887	8.30673107749885	8.15913891092828	8.03074407852524	8.18374870963233	8.33408509499572	8.12857333059452	8.18666377580872	8.15913891092828	8.26399360641648	8.12781386150701	8.15567960248226	8.14026500570659	8.01540864690595	8.52440601988041	8.1444756262863	8.45353170498299	8.12883167004894	8.1444302341231	8.26491904166017
+"DONSON"	7.06830628407931	6.77611728290942	6.75989918284671	6.78640243827617	6.8052757630151	7.09848205942004	7.33794298832468	7.4099974953454	7.00669785554907	6.53925380671176	6.92317372385952	6.84605028863104	6.8588572179746	6.95703483007389	6.97298166974515	7.05922380233008	7.22366689873359	7.41865301824853	7.02513361972042	6.54703578621442	6.37450649956335
+"DOP1A"	7.95543781457803	8.82739163214835	9.15388503637952	8.08777641497136	8.89073841180493	7.86666060237324	7.41503933699684	8.14262590620747	8.20753388983017	8.36039780799116	8.45731944494701	8.45854891783039	7.88280956837677	7.89188104288054	8.01365591540623	8.57591950986158	8.28195135837808	8.79400031087416	8.08898916245534	8.55318256821487	8.34602811369049
+"DOP1B"	5.49531789827616	5.98315325159765	6.08661464578157	5.56053086426066	6.40345574353621	5.24340137356704	5.15856632950787	5.50960363622146	5.92027566344301	6.37314269767191	5.80120014115626	6.109904048992	5.37992709273721	4.9334876926707	5.7211988643402	5.5416937103325	6.00670622707959	5.90127960170797	5.59741186821293	6.40664548403976	6.67645470148075
+"DOT1L"	7.3829341742671	6.96474930407748	7.17380754955219	7.05225540580394	6.52900416171329	8.13847560424709	7.32926391322446	6.85368695698991	6.76947989390472	6.76689085795587	7.25129595358687	6.75833084189448	7.30361448084506	7.48078253539513	6.9004539086478	7.33596045019474	6.84257303089046	7.44620554551306	6.74453156169001	6.67251186063467	6.97712296806671
+"DPAGT1"	7.8439029658249	7.42649589322791	7.63567468637476	7.27233793999131	7.4911548435346	7.92468409806487	7.42559816040614	7.55678346357404	7.68368739214311	7.51850583720264	7.26773840326834	7.22274196833816	7.51956099578527	7.51440079449491	7.55678346357404	7.38508885290412	7.3549131644336	7.68592032734717	7.50217010610125	7.67030190895867	7.56432334300259
+"DPCD"	7.97565925025515	7.65370864813894	8.20231966401055	7.58134868484914	8.27787059360941	7.33011387662656	7.25422523213941	7.83443446317354	7.89652296263627	8.15314693672062	7.43583567931939	7.91443513240317	7.5756705306548	7.41098839829053	7.78322101260306	7.5857238812094	7.6108404917014	7.85585728713764	7.68613816636727	8.41537298676307	8.22481539642147
+"DPEP1"	6.30820124676815	6.34296950127294	6.48583228849031	6.59182874132751	6.17984404048317	6.78965163712133	6.86244173239694	6.44903142725809	6.56455315578596	6.45248966054565	6.31525454470071	6.45289844807194	6.5557444378431	6.74840064463502	6.40659421520598	6.39943994933063	6.56858344310283	6.18649647291668	6.63291107424417	6.51646499949143	6.4717480865552
+"DPEP2"	5.66421799951533	5.5102286980314	5.42310108909389	5.02911786542874	5.27857316403613	5.4724650822423	5.55890411844152	4.97075045943934	5.25255474757164	5.20316956472548	5.42111908057966	5.20093672331886	5.27543645233582	5.98006339470669	5.23392424831408	5.34916108591549	5.57130386032126	5.2335553318933	5.49055220814007	5.17770187915662	4.97888137178587
+"DPEP2NB"	5.82579895353111	6.11509845122871	5.74594365628867	6.02119725995536	6.09771761296288	6.04981717946903	6.42955973830883	6.14311711861758	6.26762528963807	6.06830312280846	6.08703149905958	6.10303113354791	6.425740375532	6.32198150644109	6.15009063482663	6.08634259900565	5.98380385204268	5.74274728877377	6.07433566505403	6.09771761296288	6.26071914624423
+"DPEP3"	5.70491146600838	5.59310697825202	5.63828899016293	5.6439685775277	5.79801328517184	5.9217204370689	6.01957803636684	5.39455133767779	5.45124121372987	5.72375842233121	5.50816853495466	5.71838288473019	6.0082370362365	5.46785778802483	5.85762705384881	5.61070790347963	5.63403738343178	5.47480855334802	5.63828899016293	5.57596774014202	5.73783443138284
+"DPF1"	8.31908176912165	8.63844722617431	9.01784533357585	8.96288704450168	8.88779063824562	9.20867736039169	9.03052827573134	8.54866013874367	9.06738907566457	9.13981734545553	8.32154506827281	8.87750267438402	9.19788042469704	9.10478492784066	9.07965458321256	8.10406913643209	8.90934001530197	8.6041172712909	8.84745971580085	8.90939167919587	8.77875653417127
+"DPF2"	8.97036765011844	8.8404920811726	9.00348936118819	8.86550936743532	8.75252750477232	9.13407525405057	8.8090071968506	8.99006123553571	8.54866716317369	8.37237349733647	9.13952423828005	8.4560793286978	8.59801276846883	8.86048734499512	8.74886038112125	9.23438452101882	8.58959662977979	9.47338494630684	8.68536889571482	8.63495979967607	8.46220274895142
+"DPF3"	7.38460822651507	7.32087584773478	7.29952210165616	7.04657660886731	7.12395068613679	7.10498242757011	7.53934458542241	7.02642894743628	6.7207351541614	6.72416555517718	7.66232697023323	6.86784115595915	6.70713933462646	7.34612446014437	6.78953578471793	8.0060470569633	6.89823285164529	7.90224358851589	7.22877908527914	6.55506318219653	6.41975490455117
+"DPH2"	7.09828145669129	7.28122808987591	6.87788375341209	7.12254210419315	6.94308870471282	7.24934813111789	7.22589032223523	6.97298166974515	7.34751736909214	7.15308288715993	7.06619945968005	7.035990399144	7.29282484466525	7.07843891627585	7.24235111675546	7.09923849717082	7.02003760451112	7.3359073866646	7.08767203276675	7.33294950971433	7.09212448984467
+"DPH3"	5.76604098280772	5.43885519732403	4.74661977185795	5.00213404530779	5.54224749893812	4.93066618790234	5.66267151637486	5.83224732053818	5.25597747950364	5.54533564841685	5.59767875985732	5.41500949452014	5.38910780687469	4.99627860499254	5.20218961067912	5.66081605834269	5.0987859834324	5.71297506126171	5.6195635431229	5.76967384027161	5.72365650724262
+"DPH3P1"	4.61738986277418	4.511095850365	4.42455550869081	4.61588209219445	4.63067707237991	4.73238660613877	4.61738986277418	4.74099675003234	4.50726232044212	4.75543591828662	4.64548548944475	4.70954462268268	4.56689292268309	4.27315932129366	4.88845657948316	4.8064813046309	4.85778237207266	4.37814248771276	4.64802310188196	4.59834353039677	4.61738986277418
+"DPH5"	6.33420412130849	6.24354883390877	6.33583469342109	5.98649930804714	6.14736883357577	5.45673379920415	5.92707040797097	6.12296751690905	6.22894975166585	6.16587858624377	6.2830187880324	6.12296751690905	5.4391934736758	5.84092896287879	5.98771560000247	6.632781882491	5.8172756354884	6.94810631334021	6.31688145576524	6.18824975538851	6.12296751690905
+"DPH5-DT"	6.67861819194546	6.65440415198684	7.15961276371445	6.67557309361751	6.84600292573656	6.74478829456286	6.63469290874207	6.38538272675384	7.12318586593609	6.43797476488484	6.75790265050344	6.59255225636629	6.68868533631088	6.44137510245654	6.83477767508787	6.68868533631088	5.93677191233105	6.93964480932578	6.12328193835946	6.58454861869862	6.19756216848115
+"DPH6"	5.82094915229694	6.24735900668848	5.33545705036356	5.28524464753814	5.90191956290932	5.20006539367116	5.09432708716716	5.52560477454462	5.35487506557155	5.52738635937364	6.31129000622858	5.6346605164648	5.06036210686971	5.04451715870626	5.1838597613773	6.29656692656362	5.17454337456015	5.72560938723637	5.46001455104866	5.8183426198135	5.02833009727666
+"DPH6-DT"	3.99913708980644	4.06854013844228	3.84945087378914	3.87720917303055	3.87705762284659	3.56946687065781	3.67850454122327	3.8407172761976	4.03642266590346	4.05631340787707	3.70034397628044	3.89716201074986	3.8061474564657	4.0328600164942	4.0371445400937	3.84737622546635	3.83478327894899	3.99985501553112	3.96839833790593	4.28790003264672	3.77923039762558
+"DPH7"	7.58357654902623	7.59765016539706	7.65851203010999	7.475464716975	7.70148106691972	7.90664109213263	7.34451488151108	7.80173613497438	7.41737383065443	7.58357654902623	7.70712855746866	7.2934930321312	7.37177807308791	7.56410786697279	7.40377429597986	7.90235097534661	7.6326536231252	8.00939634900932	7.56683938227602	7.48377837910886	7.54436778745283
+"DPM1"	8.19609617747195	8.50682591034172	8.39270405922569	8.47903504372564	8.57514455358259	8.06936295136682	7.48297326197885	8.49454674899982	8.51615569965663	8.59673176751264	8.64871130011417	8.64198578792205	8.40145048665703	7.81969782420447	8.47903504372564	8.47903504372564	8.51486065426336	8.66842230922395	8.48314899528347	8.37735800996042	8.52715936100196
+"DPM2"	8.05226498869943	7.82692466364055	8.08834552672618	7.86931380412222	8.0072759343712	7.99726100138492	7.73264480256055	7.82365283471381	7.91760458639335	7.90232412532593	7.8368993524528	7.91598626156052	7.65918788056885	7.79078045436705	7.60789303442846	7.8941047001239	7.73022861874185	7.9268612007414	7.85610355058843	8.22395058073711	7.69646782507006
+"DPM3"	7.94430124711927	7.96911332589302	8.15436689667371	7.80156500167668	7.8538142489262	7.83807030431928	7.91167464400755	8.08088815831993	7.99539161634264	7.96911332589302	8.21016596241965	7.98715215592543	7.49894014909298	7.80110899022642	8.06915550919546	7.92735602581122	7.7868974079528	8.24013770286884	7.97764583906494	8.15526130160672	7.62196211862273
+"DPP10"	7.74855338068211	8.55351564814808	8.77052816889508	8.40640476953684	8.90633637469313	7.56162367432481	6.68288793176686	8.40868418227583	8.72682082983213	8.6978862135542	8.55726121696724	8.88382566244043	8.34284906030734	7.4179220305378	8.62062730262727	8.29533793013618	8.75612230339872	8.57241649778337	8.4870027180064	8.61184855195219	8.75316387628509
+"DPP10-AS1"	6.60537940310548	7.27724627672603	7.88727538821876	7.09085544526099	8.1013200160956	7.00435609054062	6.92207042213669	7.20442561505733	7.86515743031489	7.70754653005187	6.69226123365369	7.73457584499964	7.16867522890474	6.93225739334632	7.41974776233823	7.16262282639823	7.92708680175148	7.47108619155067	7.4738627122975	8.03915820698809	7.65574260460334
+"DPP10-AS3"	3.94594088132674	3.92985440595943	3.89109334398649	3.96171611754506	3.85126740600458	3.95107238011961	3.77444675654478	3.76190773393444	4.0297497012311	3.93412258304998	3.72230049695152	3.9131918115987	3.91030741909651	3.75988574743447	3.9557622561592	4.25973901212484	3.77797697380379	3.91557498174723	3.74786104913461	4.08384497257467	3.98762508073682
+"DPP3"	8.36268274991415	7.71535451258898	7.74854301344309	7.74817804389475	7.6600321034904	8.073451345854	7.8660637439375	7.57495511559805	7.82640199397259	7.55235187282626	7.74854301344309	7.31135167174299	7.61584196695644	8.04162748102879	7.87213445044252	8.16902255090727	7.53885482562672	8.202074145511	7.54865800972841	7.88820834627929	7.4683113045393
+"DPP3-DT"	6.13134546041106	6.38163316860369	6.29430090802031	6.5521153550193	6.1571231488654	6.52862842033675	6.77194753241181	6.30422192533322	6.3567384841087	6.30807198717177	6.2030763496523	6.28601915786402	6.56513512763074	6.29430090802031	6.37102065073357	6.40218038306989	6.29430090802031	6.00713543062281	6.23947319512347	6.28125706514821	6.303897164781
+"DPP4"	5.67947528336515	5.5352583441162	5.94570517050411	5.78559918845855	5.91488033025058	6.13171345006377	6.23111632523555	5.85261646584563	5.84263563701909	5.8046063198732	5.20392257690632	6.18619783200992	6.12059484398192	5.96298238886498	5.94559865486178	5.43300576023898	5.79671653501318	5.784011162758	5.9101898837628	6.08488959070695	6.00342384121278
+"DPP6"	9.51955467607294	10.347313296803	10.9648662240902	10.3659087958027	10.9831141574456	10.0885977538665	9.42757509120177	10.3180361817466	10.6852547413987	10.792501394621	10.2658575138352	10.6639060743263	10.3865444783034	9.7454935589887	10.1403290606366	10.1095335969701	10.8391645549619	10.1765677511545	10.2825147869371	11.1638547814122	10.770454669089
+"DPP7"	8.84849162517321	8.49348847671756	8.99380398686052	8.65458151234866	8.35315836010239	9.02380525149647	8.69886657072777	8.68373774969626	8.57947378059577	8.6627541518806	8.95363535488564	8.63745507413921	8.70654841858427	8.81863227370524	8.59016435426978	8.41284773291576	8.61420936305396	8.69589910341954	8.75208414730061	8.55180407225633	8.67278368872577
+"DPP8"	6.83342890747058	6.94202762924746	6.26482259616894	6.42842181870077	7.21044102501319	6.004304882872	6.49011124467456	6.73495528564107	6.62807608230972	7.4487078324988	7.00099843066171	7.14931538867522	6.18525411831997	6.46654086522946	6.12625421817025	7.24436539579128	6.77989198141983	7.18465029326623	6.63309653704581	7.06701948428746	7.16263652254913
+"DPP9"	7.86954108753668	7.75193793955722	7.92487099458201	7.99087338838027	7.5982803114589	8.39548787392791	8.56376190287705	7.83806664709899	7.88848590878589	7.81913063200961	7.66261588976668	7.67330799816218	8.40041575476636	8.43484443172234	7.89412401375111	7.55429773264365	7.73732894155335	7.81913063200961	7.9115212010783	7.68643057824408	7.86119358641302
+"DPPA2"	4.14231232646857	4.47913268125422	4.0935975166312	4.41162892551301	4.30060147441988	4.29464164088745	4.46254126933757	4.24379565351694	4.5764511385917	4.39081384257935	4.18212260774412	4.26400456213619	4.46799271599576	4.34016401626018	4.41016449365541	4.32243536805447	4.41764535368097	3.58963490676345	4.18691192853583	4.10493809020135	4.3025596020924
+"DPPA4"	3.34891614466818	3.11186534519321	3.04877969187469	3.15758136188548	3.19621995435075	3.2018372625692	2.83158612755033	3.02757136713178	3.13645256648828	2.88458162566765	3.05306468833473	3.12876464650906	2.9994391716011	3.02434115679712	3.10282662070344	3.19621995435075	3.11821906596621	3.03561939813538	3.12876464650906	3.46234666485512	3.16842343693066
+"DPPA5"	3.86797456789089	3.90882538535162	3.95401256331255	3.7651401515728	3.88509171534632	3.89278524796172	4.23384129027744	4.03024846226991	3.77582841138372	4.17450022743644	3.72777266095044	3.88130039548331	4.03259877921254	4.11339960599116	4.08760134636187	4.08226964077794	4.03446438769648	3.56086520092922	4.07920480416118	4.06328604302059	3.97346183758316
+"DPPA5P4"	4.38174464043431	4.38999938205256	3.83165978647869	4.2328538457098	4.15585949296955	3.95564306254256	4.41290997729947	4.19577743743469	4.22929368229771	4.20479628536753	4.01456210167028	4.21971147402758	4.56031408763314	4.43322415914101	4.25285469652368	4.253592738339	4.21971147402758	4.10530345687137	4.24191687891322	4.27693928843158	4.47463165885019
+"DPY19L1"	7.78264833404717	8.06945064834639	8.20351023287744	7.50803817399133	8.51133034534863	7.97222232044888	7.2601484908478	8.0015235827979	8.05428218301279	8.64045187288291	7.9430860807532	8.55079699023127	7.76150024976044	7.0574342366492	7.89572052029293	8.19775917352238	8.23410346226494	8.37196210600873	8.03686019635814	8.55535523661923	8.84513825694892
+"DPY19L1P1"	5.46792729094525	5.95070511535684	5.69732731840007	5.30650412655914	5.7199619078821	5.09626789072589	5.68026056229647	6.03322649499344	5.70532430707278	5.64082046714355	6.05376746483643	5.89799575616586	5.72909108419824	5.78283689941439	5.64508586291976	5.61620184966713	5.93202108822708	5.43950953589433	5.59142656074177	5.39382278520693	5.50839421553643
+"DPY19L2"	5.51972014226178	6.09755656340328	6.40329198179143	5.82990464380093	6.77595908754904	5.26912571540313	5.38796214606116	6.26155395681879	6.23277593004555	6.19318166673993	5.80152262272272	6.6064172291	6.28806810858794	5.62981691405692	6.1015472962522	5.97060625467561	6.31235891479568	5.97894282845398	5.86189537784172	6.51573779841252	6.49804472660575
+"DPY19L3"	9.01556870340007	8.72503686929145	8.66752923826942	8.22557950400782	8.43777469293538	7.97111566349638	8.63483309057185	9.01163379641842	7.81565119071814	7.95202024285067	8.8923868607082	8.25226806435093	8.03638382192673	7.97068680843445	7.98221704675695	8.70089958363556	8.14659711846504	8.87283302822764	8.18569019762668	8.34698122206977	7.98052847228185
+"DPY19L3-DT"	5.15326828179992	5.18122424753514	5.73247479819288	4.980167769449	4.82454085921276	5.50400460208792	4.87186140342724	5.30414423973762	5.08069070057152	4.77688969553325	5.20123774021919	4.87462439341301	5.21112655280574	5.59174751502512	5.18996170751637	5.44079071865357	4.98424609172078	5.31090383340168	5.33532643044173	5.08961543800521	4.88426982609573
+"DPY19L4"	7.36838280101679	7.25682948704017	6.83344577272219	7.13258828434495	6.99020657359693	6.74692133094131	6.88933817990017	7.1584576134328	6.90912701884506	6.56019668947243	7.80570114299309	6.88696307897069	6.83977855013239	7.04128880800647	7.08954679982854	7.80186336019748	6.77698669242068	7.52778331960953	7.09325666561235	6.51189809942542	6.67577678954524
+"DPY30"	9.74942660652114	9.51518509829786	9.50355398349881	9.67715305720142	9.83954236813154	9.41041392762173	9.59649460195671	9.74540449671353	9.86280396286423	9.8713281260118	9.63656685893931	9.52308976314201	9.48875655420107	9.41847691721614	9.69978917373427	9.94908881255984	9.65731874240383	9.99328404834912	9.69955367786123	9.77750072138702	9.68846455649836
+"DPYD"	7.68553955838806	6.13170102077495	6.04558678157979	6.20034489805121	6.30091735721916	6.97718038822881	5.31361855055418	6.63765639909828	5.81500283160475	5.92065347843268	6.81294338801741	6.16618218410137	6.21238529889608	6.01970833549309	6.30091735721916	7.00139483842408	6.45233984505667	7.09495157861056	6.30491355474104	6.31947368155812	6.28552169706969
+"DPYS"	4.69510553449789	4.54137198263651	5.25308847664533	5.31511401621526	5.1501818176223	5.2172591859518	5.15588412805089	4.74886157841079	5.27530959393957	5.48524817077489	4.51460376485729	5.0677604434473	5.77001484075164	5.23084628821426	5.29804605647019	4.871362206957	5.02911786542874	4.81971495642673	5.08771697782503	5.39607770826133	5.26427929001776
+"DPYSL2"	12.5614144839206	12.5357923705829	12.475456746388	12.6072204863181	12.3928186290668	12.2270331445288	12.2285414094164	12.5335809481679	12.4701977857689	12.4836867471499	12.7702654300686	12.6337316544251	12.3199741593136	12.2731714573676	12.5275541334995	12.7020583226391	12.6229996925691	12.6601213176507	12.4134374849639	12.4046229656978	12.5275541334995
+"DPYSL3"	8.72306067955452	8.06422146875358	6.56497092308717	7.58983146167389	7.33160165725917	6.87260721258857	7.75766607955742	8.22101618826445	7.16185335343875	7.60704531600937	8.65651560980725	7.50198985769662	6.7595218134849	7.59179068951837	6.72650639470139	7.50198985769662	7.35775225755204	6.75227061227528	8.1184489222126	7.70904390359382	7.12570929917912
+"DPYSL4"	8.05833871217729	7.86952141681939	8.5037862535526	7.87111612181218	8.15290409978148	8.7033400580077	7.74606971199133	7.64798255929107	7.88111302137648	7.6085369255282	7.60649598869448	7.59059737011709	8.0816173542947	8.02019778228532	7.95118157683752	7.69004036627719	7.70764983178297	8.34503498899499	7.39451631762871	8.12165436398826	7.77386233739028
+"DPYSL5"	7.62762937110519	8.03011761578017	7.74492381835432	7.17876769378695	6.90032653092524	7.84331310446768	7.21113347887096	7.31034377569606	7.02414298960571	6.88650198994365	8.52828002776919	7.24089882386797	6.75487486745971	7.07291616852638	7.14251092146372	9.17150128526551	7.02152237043834	8.80631383300934	7.33050328898114	7.16614034907002	7.71076023450821
+"DQX1"	5.55740437894314	5.19502487653932	5.43278876378023	5.22209266910451	5.0291613461574	5.67804276174237	5.4519220346002	5.19685365788649	4.93405397420956	5.23675502106958	4.97612265364016	5.11129895708538	5.16815699249929	5.48171102349952	5.12727381746351	5.32493120794056	5.18661894930371	5.28126051460158	5.32713998607113	5.24790647627432	5.21067915818737
+"DR1"	6.73343931006751	6.40022275680384	5.55981252080825	6.16883853146874	6.29079601809376	5.37156375421134	6.29079601809376	6.65971341752245	6.17993883857544	6.52842511970515	6.49623264463009	6.2030763496523	5.94073640321328	5.83798205138284	6.00369280862786	6.65175688635239	5.97746763139168	6.90016853626243	6.42188581271356	6.34257743938437	6.36599366463815
+"DRAIC"	4.15564213860068	4.11138087942965	4.86986392122983	4.65518818594697	4.51883238434038	4.62492589911506	4.11537665971747	4.34735048524051	4.18810424936391	4.29946535089359	4.40394305032066	4.62492589911506	4.54458372863412	4.74509547685982	4.31142917525332	4.36095080443961	4.49406259667377	4.25128508498087	4.48395443163854	4.34877148177836	4.40394305032066
+"DRAM1"	7.64424375706763	6.30956256497457	5.97853004455121	6.41310453941086	6.03884935245539	7.03538842468555	6.4618254381003	6.67340574047764	5.91049933592141	6.19171929007272	6.27491531476537	5.89165110815085	6.29274518303677	6.78154762707437	6.28014783362121	6.32698825321057	6.02029839516112	6.02467444019654	5.85792752536041	6.4625139113274	7.08949408617821
+"DRAM2"	8.31098570120393	7.6853450707689	7.50057408946497	7.07814191717922	7.25161480522613	7.28035788256566	7.42574604261879	7.9502222277014	7.4177261570759	7.49304662138133	7.96548216571268	7.3146656468996	6.84703293431035	7.40827539300314	7.45832950208301	8.44856793414497	7.74300136959702	8.24601851729876	8.23203652205925	7.40296268250291	7.54172821798344
+"DRAP1"	8.3850002786493	8.68314696368677	9.11743960534773	8.80799094384429	9.07650377958043	8.82628363783857	9.05367056141728	8.72539501414185	8.76225870833354	8.93249085545007	8.88192393717908	8.95785246572114	8.67278368872577	8.65653185804433	8.72290971450752	8.66891284045031	8.58606976576669	9.17093460385105	8.89416729305873	9.11004002349859	8.84693838021328
+"DRAXIN"	4.97270031046245	5.26345667644272	5.70370585467612	4.82771845978637	5.37307647731952	5.07242791674186	5.45137751492608	5.27881738199968	5.43805825988633	5.23841069809096	5.29090259199621	5.23841069809096	5.24748806598053	5.66128153398499	5.13783951085224	5.29533301206965	5.08838764503241	4.97186854648162	5.15008091931798	5.08961543800521	5.00927761532547
+"DRC1"	6.18144430287755	6.32276532207151	6.4096617552242	6.01740603060286	5.91899192969973	5.97100673952605	5.83265886364137	6.10172455145438	6.25688152723677	6.13654073240646	6.42776444778508	6.13883854948457	5.93744383541902	5.95961341827759	5.97462178225434	6.10172455145438	6.23393412152901	5.84324430367431	6.16204423698222	5.99113561326108	6.08457560555523
+"DRC3"	6.30191587372513	6.12756137391805	6.07854110773496	5.79465937234017	5.93750407212353	6.14719173138611	6.5132205291927	6.03255858610665	6.07854110773496	6.30191587372513	5.94398423133819	6.28728200923485	5.68252365059641	6.17118725365939	5.81647293713323	5.73642605158455	6.07854110773496	5.67408864865921	6.09403084932383	6.13021400226416	6.0838020533425
+"DRC7"	5.39839351766767	5.46949618309638	5.45632185421788	5.48699074344391	5.12920960374347	5.21852300896543	5.26265897708434	5.35570913567762	5.29342323797451	5.47636889030934	5.43829412732461	5.51041145454636	5.65724316811554	5.27601934441833	5.45020388903439	5.30223861894664	5.04625552033683	5.32044159804188	5.36334968538501	5.28256662164056	5.80546695684733
+"DRD1"	4.9683560608665	5.85558190253224	6.25555276304284	5.90080638045064	6.47815948572198	5.86454874366612	5.06066728289543	5.54297944678084	5.88607991140948	6.47144375601132	5.48617430534098	6.07757851976743	5.55324239562329	5.20378220629511	6.19620351667229	5.84680436663177	5.96593301509551	6.15366832386262	5.31902561764715	6.0857506324367	6.43823925988769
+"DRD2"	6.12712610539789	6.4702812967196	6.40678242033529	6.56651618493787	6.20785470958263	6.7224739162913	6.91647994065282	6.40382767411492	6.3416570284169	6.34803532407268	6.32889491394042	6.44411089702661	6.71343219610065	6.74163195689688	6.46654086522946	6.3191878998616	6.37428372999073	6.04407174667829	6.54553255849098	6.01043939729611	6.34860257032817
+"DRD3"	3.91862029180389	4.01344995675754	3.71856868416891	3.97521665806832	3.72732747941425	3.76649585251223	4.08825258233438	3.67611941270636	3.9407235430232	3.92738164051406	3.84179614367058	3.93850522429782	4.04194332964338	4.2266644446781	3.79948873714175	3.99904147851591	4.00464925075991	3.95709687221526	4.04847786971639	3.88575923258162	3.79927480581823
+"DRD5"	5.05042367466685	5.28685058589134	5.76133124324859	5.43173453695365	5.59331086375919	5.43244458319734	5.87028585515237	5.23863442548665	5.53037133267155	5.8046063198732	5.04074964996912	5.52400819022862	5.48912089485848	5.59140381272771	5.69633775767761	5.67582113756204	5.71656556366923	5.47350634561516	5.03089081740854	6.30563521106612	6.02308756157628
+"DRG1"	9.32372674783481	9.56524975892434	9.50369546196277	9.46594346476846	9.72732200680815	9.7074409343588	9.36940206981188	9.50581212387008	9.6258796995709	9.75035241886455	9.35930898528596	9.75529073932608	9.51690952912031	9.36039639551617	9.61769403590091	9.49759657668991	9.62158747975416	9.57878621308408	9.65834993372344	9.85224200860056	9.70617000968848
+"DRG2"	8.02963106360615	7.79950530075877	7.70109372678019	7.30153365880827	7.79202146915075	7.73604057025109	7.61135006951041	7.61395171928546	7.76268163202086	7.91081661021132	7.88453570393201	7.85520223858437	7.55544996242804	7.85585965333691	7.68304526741893	8.034545695123	7.71805035872251	7.97668712797405	7.69639146114476	8.11178859124344	7.99377053868175
+"DRICH1"	5.15265413202544	5.16214393941118	5.14638234082813	5.22881527915291	5.09122390903668	5.49810602963493	5.22881527915291	5.39593509657733	5.63305912699879	5.29628835360123	5.19258735913729	5.1849886833042	5.24607525652564	5.23770609207886	5.34411097277315	5.09635095669719	5.11077589264159	4.88661631193573	5.31218338895109	4.9911967211352	5.14776020434617
+"DROSHA"	8.51703725767207	8.43133598330845	8.80728807315953	8.29553401878702	8.67284722584685	8.02744494715919	8.01812264548419	8.61139872233637	8.31957098187588	8.3269776730913	8.34941069849184	8.36048703785342	8.05686835020012	8.2097989119387	8.11387103624113	8.38332077121741	8.36462677035887	8.54581551515521	8.19361416749723	8.64436897176919	8.32816807219926
+"DRP2"	6.22273948503141	7.47868596096435	7.50492201037807	6.8559336509495	7.27761000115643	6.74272574186335	6.30023465120671	7.23629896537773	7.81138684589949	7.513212495654	6.44001132663437	7.78692135577875	7.11649430556707	6.80413577455863	7.08431715915917	6.27628605578231	7.77523308868378	6.47506514300795	7.19223571362352	7.91406571608329	7.61194815146463
+"DSC1"	3.31773227834898	3.83273464548404	3.40044294011477	4.62942880760711	3.88207352735056	3.88256105689656	4.1037414296398	3.70816347459455	4.54959953856005	3.85524078264434	3.3672407833877	3.80005852962073	3.52773167578491	3.58849460622507	4.71060284831988	3.82274572792096	3.98406572232834	3.13223385242899	3.55580618027586	3.85353132653342	3.76305454208455
+"DSC2"	6.06471099012029	4.36593292004381	4.26377725812624	4.25999828934273	4.6073970788953	4.45503733336714	4.12899471676815	5.5898937375198	4.35019732326352	4.67049464429454	5.07916909584659	4.43925931569571	4.44122973454861	4.24584354891971	4.35570740492879	4.45499183229581	4.5480471737284	4.40194246252594	4.592170399291	5.0319380081358	4.64903338248497
+"DSC3"	3.59035006425724	3.7300145389108	3.68979547414364	3.76868451681946	3.78431365873841	3.95658667681169	3.87787163404016	3.72017091648805	3.75714810291262	3.77262532644547	3.47135658753478	3.66068438294859	3.99057892150647	3.77366712840736	3.77090481033795	3.68979547414364	3.73213503272611	3.51426104916145	4.02595371324232	3.91127406459169	3.75714810291262
+"DSCAML1"	7.54105177796205	7.75556247978744	7.95128945831594	7.4903962609045	7.62181081984312	8.16859852388488	7.52544847242366	7.58176419997045	6.80764400720877	7.0236997913235	8.09158175122609	7.31644992404222	7.56094982027523	7.87393572673286	7.3014205677581	8.08131498014838	7.61701176672964	8.36274259353285	7.03952214217871	7.33139831250492	7.61822751069879
+"DSCC1"	5.03514354577994	5.31423852486033	5.49630932956214	4.53886464269848	5.33358936572871	5.24894884556789	5.47542763050103	4.93985509068566	4.54791362483061	5.06205139182681	5.36145098754203	5.17847833420974	5.50293646528162	5.51039733269996	5.05065836056088	5.45930140292704	5.05053472177603	5.74210224725013	5.17847833420974	4.76164339987546	5.18888558895602
+"DSCR10"	4.78921904558763	4.64025138810578	4.63642029128859	4.93756146864551	4.87370990918269	4.912105317877	4.53070345516078	4.73627363245245	4.85922457843695	4.76167457306917	4.83265971343104	4.89718327465248	5.02055611246678	4.86305525105502	4.84371950841124	5.03696109870659	4.97977765679243	4.57512919121534	4.78004010612257	4.72713709943143	4.96153188834095
+"DSCR4"	5.05410687661454	4.93199488736504	4.81967119306958	5.00997862277031	4.93869126211842	5.15743788065884	5.41191714675706	5.09443873618329	4.98915722670027	5.11805775063509	4.82832426215992	5.06608104486997	5.2728190995397	5.27750917168136	5.05002109648237	5.19290689279619	5.02911786542874	4.93242282710189	5.05410687661454	5.02455955724428	5.05410687661454
+"DSCR8"	3.71602809584611	4.05770222991733	3.89846663442713	4.04204134178291	4.02626778902781	3.99321485246642	3.71117584678786	3.81594069194577	3.93635848635455	3.99321485246642	3.6585411379085	4.20733754984144	4.17526227685436	3.9763744314578	3.87640964407677	4.16910210131818	4.08896617976379	3.76837947119534	3.76837947119534	4.06561344724253	4.01410255778025
+"DSE"	8.48403230814029	7.07738973369125	6.26573482736555	6.98945723277241	7.02798313980079	7.07531331203397	6.957763570159	7.85724973958557	7.20140433521002	7.20820186104078	7.04912489427048	7.14508728976689	7.06883996506472	7.64105750083908	7.50444199067423	6.89487894488492	7.20820186104078	7.29943090812744	7.24770459660678	7.57495511559805	7.51640260575142
+"DSG1"	3.02132060824823	3.40226796420328	3.30862145253671	3.21426963670579	3.36566196734534	3.66475275035865	3.81002111031345	3.11375808273763	3.3662666525649	3.13699622222523	3.15589130961162	3.28944749976931	3.0179458060475	3.33637905099219	3.31209294452603	3.26267207146602	3.26296220774289	3.16639183609242	3.2547017463936	3.20367474590112	3.40065877425887
+"DSG2"	3.72254637070359	3.73491532139478	3.72722017211322	3.8085642916751	3.74245143563403	3.58880002075546	3.69615302324215	3.62770860978539	3.61508443391488	4.1020090897054	3.56885505274525	3.71456021019442	3.92135795593555	3.65138347482034	3.8745779797494	3.87316519950384	3.69615302324215	3.42536415633534	4.21577337336927	4.98562281697558	3.72126481464706
+"DSG2-AS1"	5.5297349049085	5.83356726700031	5.58998915888436	5.81926095167719	5.86154579754369	5.70287998481729	5.8510877437429	5.64285896398602	5.77202684660167	5.92661350049213	5.84680436663177	5.65006021920689	5.91161197867441	5.73458833531939	5.91423351962887	5.79275151111117	5.77202684660167	5.59090660402056	5.73214701725817	5.57990422879229	6.04522583349053
+"DSG3"	4.84265070950079	4.80780911303345	4.62966098950948	4.69317352634086	4.69317352634086	4.63193505352586	4.67440964782133	4.69317352634086	4.68848995316861	4.76110576242014	4.49750905115146	4.63481554286655	4.61747356816653	4.8210682335847	4.63352984400561	4.95639614309741	4.59376738590967	4.66472497420546	4.66124087142173	4.79618939232133	4.7939943459758
+"DSG4"	3.08413629873955	3.28162281360595	3.12789650731335	3.38815919666752	3.18863964098904	3.11979041091271	3.22420952786255	3.22569488504146	3.5003783333642	3.41151049314093	3.18361568025223	3.36207188780965	3.32385624141097	3.07122970759419	3.25894073553	3.22569488504146	3.10921278449796	3.16756299738203	3.32347234700703	3.21039693620992	3.17334417311138
+"DSN1"	5.24631856887737	5.23593625430942	5.27465043306643	5.27465043306643	5.38209318403573	4.8723544967312	4.93192184087699	5.27820920860585	5.28716705563213	5.57327022123884	5.51315209061707	5.53637450806646	5.17531102246592	5.18412582282642	5.17876777035343	5.38678499513986	5.37375222626757	5.06505289419494	5.31441227171791	5.00302133810956	5.38959358428219
+"DSP"	6.65042360574334	6.02220617848915	5.95488491749492	5.20648907366073	5.37833318647296	6.63188522055179	5.56826836944427	5.92763573783727	5.38789713054362	7.96334432746723	5.39256889886875	5.54610897996389	5.44796864745102	5.85668589095669	5.34484791536144	4.97078882060694	5.51567079403925	5.41676763090067	6.87366422946428	9.70539611030868	5.16491237351807
+"DSP-AS1"	3.7749782345376	3.63426848469172	3.35417897848398	3.70581720094492	3.54527703697929	3.82381422679538	3.61444059642148	3.73177118065014	3.41628895973485	3.85781421680403	3.62400553584927	3.47583280890762	4.04290045441765	3.81100730333715	3.84081843906288	3.27758582868592	3.6064379190739	3.70969848542486	3.98544605296826	4.35120308168721	3.66596643613589
+"DSPP"	5.31498384801428	5.02233641574749	5.2509483898071	5.09474036422565	4.94781725414395	5.00268062995279	5.48240180932215	5.06621429745058	4.93276573240113	5.21326149501125	5.49391417108802	5.36833309572283	5.4061952731154	5.21326149501125	5.25512896589912	4.98459200876162	5.35195079740149	5.2476420541682	5.61517700474253	4.15456769535359	5.47610025897549
+"DST"	8.48021595841371	8.31952489137251	8.8167419143664	7.53256004617586	7.86531971729313	8.48403230814029	7.02852424612567	8.33332765621123	6.77438093367016	7.84990434711545	8.83577854484382	8.48989819556155	7.46542412208552	7.7537353681799	8.13933901174988	8.65202835998714	8.18097395343915	8.98047713211719	8.08990137253826	7.80670677678855	7.91677982917805
+"DSTN"	10.6423985710451	10.7997105821598	10.1882943086707	10.7303030706909	11.1351224486959	9.82119251823555	9.93254359222036	10.7799015629574	10.7374939667567	11.4094669427037	10.7799015629574	11.1618636991402	10.6029438925988	10.3096138695079	10.532709816154	10.82545914915	10.9565316801627	10.8203803064295	11.0624360616504	10.9244479077716	11.4773003832192
+"DSTYK"	6.6691084557371	6.68348481704469	5.94812932739461	6.46964488619953	7.18097208647843	6.4679827010029	6.51408548520733	6.47206904309003	6.37828634803919	7.00649489947399	6.94863747423753	7.15646992408367	6.13068250335571	6.14006839492403	6.18501903543089	6.96291078709948	6.6691084557371	7.22276944214043	6.62580528973641	7.10178403585196	7.13675556104489
+"DTD1"	9.21731656222119	9.39539478000398	9.88918316129102	8.95857603352137	9.66377055461156	8.97709867712229	8.29389492089947	9.24532214468745	8.97838296224447	9.70753403013333	9.47828694888784	9.6268734055366	8.65654254685474	8.65424787580276	8.82611072167114	9.94082592222643	9.25751678151753	9.4914443296636	9.12616470781359	9.71126096172783	9.56919793458279
+"DTD1-AS1"	4.76879648010177	4.81084147248839	5.04123941000538	4.62484324783114	4.80166991606552	4.62606839788304	5.06014157114287	4.70134163235861	4.8946752064264	4.82558944609377	4.7939943459758	4.72444501067996	4.82558944609377	4.75590924467556	4.9572441105801	4.96567051740495	4.88307322670657	4.74444532307989	4.82558944609377	4.8682966033243	4.87679016476298
+"DTD2"	7.68839895919572	7.77035221970677	7.9543879132313	7.27397800927667	7.59357020044735	6.7882932219884	6.38412086562161	6.97298166974515	7.19173812786593	7.22684912245584	7.70331826894666	7.21815115765078	6.79794013480434	6.76714694434484	7.0726528894266	8.15574690024124	7.16807676981549	8.1367140033611	7.13277680059956	7.33889944290957	7.21815115765078
+"DTHD1"	3.42254719180255	3.16776281442295	3.21728435809609	3.37207757035137	3.37011718096676	3.62342164260757	3.36538407472472	3.3232829308225	3.26452916093246	3.49907232928224	3.33136838481234	3.24560091624792	3.37314882054685	3.41687124185402	3.20661243947459	3.3600951814087	3.42763046292962	3.15661021599238	3.34650601493749	3.10572635270705	3.52735149821086
+"DTL"	3.59035006425724	3.52517276943876	3.49525789038035	3.41438956032777	3.58505870021167	3.83084218602546	3.43177525918073	3.39478066362523	3.58361394595438	3.49337323459124	3.47812470667971	3.5644979803713	3.47027857156414	3.44231915503887	3.66827216295964	3.49337323459124	3.49337323459124	3.4119141405668	3.36822809866442	3.32142336611485	3.43579560348982
+"DTNA"	9.56785961219831	7.70017589973818	8.14448464019954	7.58039823824085	8.40866421251097	7.03694769786316	6.66795413677487	9.69552193994033	7.47404004347345	8.30613719603528	8.48222331286271	9.08598257731899	7.70345158160046	7.13764523184351	7.95118157683752	7.83987946955342	7.97294654853457	7.73513828857377	7.56327257043216	8.19455248617123	8.60928058429711
+"DTNB"	7.11367870274704	7.616471205045	8.18619851285186	7.69811822887752	7.8756673702954	7.92025482764229	7.41568057785188	7.58130480873266	7.79181125644669	7.86245388417171	7.40390235206636	7.6098104113426	7.90210658671303	7.69916042539788	7.66049802231777	7.36544502140196	7.69964985188653	7.76755147325158	7.65590361881455	8.05928648348045	7.69916042539788
+"DTNB-AS1"	3.41603442714824	3.47115147475991	3.56812347738955	3.65131999661974	3.69492846322652	3.89720961638204	3.63727839441319	3.48652159644661	3.87013333145618	3.67663395919238	3.43116880427136	3.65131999661974	3.58278321094976	3.6493972294756	3.61425271240714	3.67371731242689	3.50297083733878	3.57622473406438	3.66059186057152	3.4355827911284	3.65429821611175
+"DTNBP1"	8.59798208624812	8.60662336664118	9.19241282153878	8.55556723486347	9.02534192456005	8.67492907614291	8.80342711683522	9.15314525783361	9.05940419379502	8.99355016311393	8.38118460565742	8.71000746617602	8.55502109387347	8.14019369690408	8.80424910596369	8.50448338473722	8.77150966182454	8.83960550207307	8.90162755388729	9.29530370467933	8.78212700018503
+"DTWD1"	4.60247589414217	5.38070063694675	5.74363679385481	4.99169548668545	5.81966659122732	4.9163070017292	4.32351478355936	4.96448785701608	5.80544226592987	5.34064179233105	4.93972847069492	5.23397301843537	5.25229132958976	5.1426495588331	5.17897583377368	5.2272095405193	5.68835276417057	6.16532121558822	5.15613192931396	5.42368688596723	5.2272095405193
+"DTWD2"	6.34145847667526	6.72369659822447	6.44066597775268	6.78331224141729	6.62875171226049	6.19833954841502	6.41545789721033	6.38587850297107	6.81470619407521	6.83145938011957	6.69295865529168	6.85616551448142	6.47772238720268	6.23831594940717	6.64321285380827	6.77714951799517	6.79387634570757	6.3310483941686	6.68190075429783	6.63573107597565	6.67294198592984
+"DTX1"	8.44424991127467	8.26566603582481	8.57966672639532	8.55062189529058	8.32932521287952	8.05433339868042	8.71734914094797	8.47477041831516	8.54290775739194	8.2976627567408	8.35387308025967	8.24805430736969	8.37610025487018	8.62404640703833	8.1283495554035	7.79803111425423	8.26938668769106	7.89217595751201	7.95052751333308	8.52363165394785	8.14699446301323
+"DTX2P1-UPK3BP1-PMS2P11"	6.84665408826504	6.88388170087791	6.45372034430143	6.79696877046717	6.57103753809317	5.0394211126445	5.57432155015486	6.6792071236489	6.85080486533832	7.37155950638753	7.38350336477312	7.39563754127559	6.56459394670798	6.53117041478779	6.28552169706969	6.93585760023737	6.90231050170254	6.64126017120609	6.96802415883306	7.44900770295883	7.04002916303484
+"DTX3"	6.76784330889167	6.57681811167182	6.362692964149	6.76121033580971	6.7204934781962	6.2572521680233	6.26267327697643	6.41932995547476	6.78720502744027	7.52123251574535	6.90315372401298	7.3786473653387	6.53428883123224	6.23128207346538	6.19845878991068	6.93217765349533	6.91942795800416	6.92039691973517	6.86892187521153	7.25716219030338	7.17058300222321
+"DTX3L"	8.47210143547987	7.25502443935298	6.77015475387019	7.42365535568384	6.97779716213709	7.42442870629162	7.26416484525954	8.40103645340611	7.14641881677567	6.72777770395542	7.62426900410388	6.93698616613263	7.26142879893576	7.39778647632788	7.18306989620898	7.21471806229205	6.95089241547176	7.33375274508052	6.85411189920908	7.44910219308133	7.81702583854421
+"DTX4"	9.08066984599158	9.19904461544414	9.70112243606208	9.32183047641784	9.27180401808259	9.05596395003826	8.88438758278132	8.96662608440383	9.17840658935605	8.85204847000688	9.55510930067402	8.94545065060245	9.26997688750382	9.02892719698487	9.16964852432607	10.2893392475743	9.03775982836679	9.65449401528656	8.99288324924113	9.42584139203716	9.33850927450759
+"DTYMK"	6.6729369443179	6.16256482288593	6.28893217483655	6.05181395871946	5.99606027729708	6.43115478212048	6.81661150006524	6.0580826474935	6.33542314732705	6.21504277730544	6.48535571412895	6.05478372025746	5.98750697148654	6.36623710152198	6.20877354886805	6.44010776426186	5.7703936663036	6.34409413314421	6.40371323123103	6.15311404949329	5.71213491106555
+"DUBR"	5.77329511157489	5.71656556366923	6.56028442051571	5.55016445142089	6.15243447552681	6.30988139049829	4.9008765176336	5.2069839695891	4.40420273312128	5.17836799522605	6.60989560119676	5.2069839695891	4.79431576539101	5.5575405686928	4.81286712089091	6.15501752257385	4.72720954044681	6.87144630940446	4.95905896198204	5.1249527020035	5.67581983892143
+"DUOX1"	5.5899473620822	5.49477410962731	5.6357080824857	5.72768168700987	5.38788338923788	6.26008196183779	6.31351630475824	5.58998915888436	5.58998915888436	5.29736784196524	5.67690763990533	5.6514706705049	5.29149962149949	5.70364796011735	5.22880767700697	6.78772460534631	5.1660592107495	6.12056583072899	5.58998915888436	5.00761075769308	5.62195364118615
+"DUOX2"	4.61589150376852	4.79035146458595	4.57512919121534	4.74843256039452	4.794922578963	4.79605527074153	4.51212772715732	4.61731075798322	4.61263766830896	4.81649666989966	4.334538593999	4.6220663848995	4.55877804605154	4.61846288495473	4.82689492242052	4.78974057464506	4.4752576076541	4.73897846881249	4.62414457588052	4.44417540937047	4.92386226222033
+"DUOXA1"	4.64817861469969	4.85130528969052	4.75412668068055	4.7778974536698	4.81602073646124	4.80625606346075	5.27905171110464	4.60073020609144	5.01292068724777	4.89723891008375	4.98200908134609	4.85533530829157	5.04294757573544	4.84329473956235	4.7275318958296	5.13927694888934	4.7734389524916	4.82571956781683	5.01095347126547	4.80855503905716	4.99063359494116
+"DUOXA2"	6.88007920778179	7.20907180819424	7.1688932443248	7.17146792033135	7.01924488475543	7.68025278857609	8.13956110726359	7.21275851227008	7.58752202924179	7.30953591412842	6.99921821512145	7.25474899631235	7.43146093945741	7.42854198551462	7.31240780115988	6.9132475821373	7.17489339829928	6.76107348003649	7.55905069599653	7.12887288656216	7.27863976131819
+"DUS1L"	8.73020784028813	8.68758652149886	9.11607593960117	8.61618546254151	8.75490792819321	9.20293129537649	8.60950880027735	8.69218014841719	8.79595826325677	8.57906957526911	8.55998965050718	8.35086099941393	8.77716053558732	9.18811926788382	8.56571474914738	8.49131006357669	8.62760685075032	8.71115052193294	8.57967801436487	8.70211139769016	8.7024126950879
+"DUS2"	6.90392259496883	6.87897081611921	7.05911191642574	6.89989029049739	6.97676857177001	6.98006522594224	7.24815657876861	7.05431537897466	6.85745744833953	6.99437461446017	6.93396971226911	7.0082723510157	6.97898465718357	7.08142031985171	6.74512858414325	6.86076868965683	6.89118570812046	6.89325207116251	6.94662445757283	7.24209816791887	6.97898465718357
+"DUS3L"	6.35223454877408	6.5684288938796	6.56961778957092	6.01349704889766	6.02264795362496	6.20392175720276	6.68501472354623	6.23089646365297	6.24492292414274	6.33571552327933	6.93604576356839	6.26734935056148	5.94548930413431	6.3905619098644	6.2327461023976	7.04909793411585	5.97610555639999	7.02302929938458	6.0486869341708	6.75878060415813	6.303897164781
+"DUSP1"	11.0918801485576	11.0203642566963	9.51641603587017	10.0695023421374	9.74349149637402	11.6514336377319	10.7000982166433	10.1422001767898	9.92124300429831	11.1454812049423	10.4549210040129	9.79149328727784	10.7970861923458	10.9097791473472	10.3257941657442	9.9291206024453	10.7691367777703	10.2497044006944	11.1551805609651	11.1102113906927	10.0358548395177
+"DUSP10"	7.08135788397752	7.27967574778756	7.13875409553025	6.90065318738582	7.11554085140586	7.02244650808061	6.33996187742872	6.20758932212961	6.65393970219046	6.42572618071187	7.33778189349523	6.5907284885743	6.90065318738582	7.04029151883567	6.86611858122022	7.63806220019916	6.38340007371235	7.81490493563801	6.47421964250317	6.90065318738582	6.81110916462199
+"DUSP12"	7.99936915501054	7.89791391619183	7.99258623054822	7.71105015220351	7.9156191213212	7.62324238237386	7.41045175595413	8.02077932449617	7.72424785257394	8.02307843084094	7.98999684922812	7.9582864663922	7.82842116230165	7.63808104282009	8.08034283850674	8.37786828403769	7.93021029286052	8.34939638633085	7.86510826791694	8.14974123264492	8.10898107822024
+"DUSP13"	6.20787099179942	6.34129102106178	6.27522761169425	6.42531439593815	6.21831487251797	6.59843633547572	6.47013921330137	6.22436321691284	6.35296765632995	6.40625965332654	6.31473928836892	6.38483104646973	6.47320009124545	6.21420844796301	6.58841272989692	6.15800147648577	6.43915985615827	6.28687646671467	6.22084200017807	6.43035653009328	6.37389558049175
+"DUSP15"	6.07201713306417	6.21519634084966	6.54945721577402	6.29865813513317	5.85662522678625	6.87081216815159	6.6105879267926	6.09069082001585	6.38547316007678	6.45468394509796	6.6269792306074	6.33899969598778	6.5051815151211	6.74005754909221	6.54896315463709	6.45468394509796	6.38340007371235	6.4483008661757	6.45468394509796	6.50045623079471	6.70586038863448
+"DUSP18"	8.23651822844698	7.91353392997669	7.83986005392438	8.31707772305382	7.82214204009701	8.42195252975224	8.28007549505838	7.95367776793339	8.09212074694638	7.48326063226844	8.07346130808142	7.29116882152482	7.88076912149834	7.99831512068517	7.95367776793339	7.98606180372814	8.00244761780298	7.84092103308812	8.05316733464051	7.62170096036319	7.86989932801618
+"DUSP19"	3.17935301726846	3.76649585251223	3.54571016182035	3.88509171534632	3.57219760487579	3.44884778677723	2.96044971977131	3.86150542325084	4.61102546032465	3.65426351752466	3.39280437586584	3.92377370514517	4.00277924805148	3.79843987719473	4.39544377255721	3.71585495131488	3.88351542003979	3.39810562370874	3.8642733144778	3.8305274083947	3.76649585251223
+"DUSP2"	6.72647715344932	7.14459013280853	7.28621202824125	6.91419198800475	7.18753313230699	6.74772251168326	6.49553225130744	6.64919110581333	7.03272280724369	7.00320266734846	6.52686395936675	6.68758026763556	6.93844204463108	6.69559617918353	7.01981869186129	6.85362270375316	6.80741148767051	6.51917094596604	6.53797830727561	7.2204422679399	6.94889706716084
+"DUSP21"	4.30923821664179	4.34522751497484	4.34753314773549	4.41946739893782	4.31213305108108	4.25269372215481	4.63120272715684	4.43997767611285	4.60601962719503	4.40842160667904	3.99941163876376	4.21564487739018	4.48769037095526	4.62024843612791	4.40547662343797	4.07026314861484	4.34634699370544	4.29734359225917	4.34634699370544	4.20479628536753	4.33448740748341
+"DUSP23"	8.19450900854718	7.17807941825881	7.31737250307061	7.32155561141602	7.4582421628519	8.07272140346278	7.69335144356046	7.48013756180757	7.19223571362352	7.43211871109048	7.26874665074459	7.21315290154418	7.44902222952719	7.33132276280855	7.48013756180757	7.24064194536845	7.06537020622075	7.16032406403928	7.3465544207762	7.72471797101642	7.2947391951231
+"DUSP26"	8.12744931759004	8.54915157858141	9.10961911003932	8.97523320334888	8.86381102054349	8.70988550909493	8.22586809921009	8.76785887141386	9.05643889302565	9.02838703083185	8.44730769647906	8.97891897269721	8.90540001711673	8.7295899820317	8.9146733548631	8.62060213263687	9.04832198059042	8.63759186066286	8.99129800806193	9.00519466595473	8.77337158455656
+"DUSP28"	7.48733514247997	7.80466970825917	8.31354385733112	7.45270375066542	8.167568308414	6.74178891544673	7.25006676443315	7.61587648270663	7.5247295454083	8.02699946506248	7.95699931849038	7.80774635279294	7.64680825728162	7.44871336574504	7.45766403967429	8.03877506244952	7.74329169988042	8.15393795837806	7.76021705418043	8.03505234210242	7.69628197012202
+"DUSP3"	7.88829834677229	7.74629829153398	7.03281632815196	7.67775266195217	8.23421602870715	7.61574671000041	7.32606505591411	8.16876999737459	7.84075553529281	8.59034260498299	7.65411242502416	8.49149902197216	7.69216460749817	7.17034849063353	7.71511207686799	8.12131713911422	8.21662970273875	7.8667872375239	7.85863146946042	8.62188999632652	8.66676458839876
+"DUSP4"	4.24148861231378	4.78057709465034	5.8253140870423	4.65244934224526	5.24310961311675	6.09368243266365	4.6656478005912	4.36608250674827	4.4149078455674	4.80885026604002	4.38389269913281	4.31933856460927	4.6347156019135	4.68864862774665	4.5452110666629	4.39355697080097	4.51918947622553	4.35459421163333	4.61268966495139	6.1419765484272	4.66784483447504
+"DUSP5"	7.2639955707851	7.89559604433158	6.45640655648192	6.5900548257363	7.34122639195036	7.11405385793062	6.08766856555142	8.02106226545907	6.88517384211858	7.13219946503036	6.27024775920272	7.39005288820895	6.44026465706393	6.47553705320533	6.37069562858737	6.19730376152741	7.45191621743651	6.58107676724735	6.46809371241148	7.55308390184568	8.05840199488675
+"DUSP6"	8.05602046598347	8.34577742007215	8.68935382049868	7.84343609283865	8.5029147562802	8.19326001956431	7.99105698725267	7.56166792990332	7.51953143572962	7.89932885554097	7.5232582864924	6.9948790956999	8.31143022566095	8.10586111078765	8.256996731013	7.58265447122011	8.26407690507544	7.68082352019212	7.83800055559098	9.07550622983371	8.50725257358371
+"DUSP7"	5.44726243197938	5.86264523907101	5.64443073606967	5.80451802074479	5.77527267569545	5.82924718109718	5.78157523951744	5.50528692233858	5.71200524456358	5.75063444709936	6.07414685567468	6.1358351834071	5.72616756813168	5.59317505651295	5.14759614236203	6.6433379879721	5.99099462514166	6.60106352759516	5.92789513908652	5.996756680289	5.84938170367966
+"DUSP9"	6.2934988156851	6.34809380254462	6.53640094728514	6.82061233249993	6.17853752232508	6.76889537870552	7.04223517402804	6.64668965309118	6.52574679342541	6.5527155426597	6.37252844639854	6.82765342478967	6.42939526490182	6.87835137545437	6.66389733223266	6.0505981518713	6.53582188563577	6.36385814256656	6.89390493915485	6.5425937646282	6.397072546415
+"DUT"	6.86278696602064	6.79215611110894	7.08172981607039	6.63457088593715	7.12148538108536	6.6960946867885	6.79247304337447	7.1327930662692	6.91438743670469	7.04959194896966	7.0878296817821	7.00266687915178	6.53247525880048	6.89886112209768	6.83408085647713	7.01151600531338	6.68240985217014	7.41871003302844	6.96481823659269	7.00969331527651	6.74937133069012
+"DUTP1"	5.83489135196075	5.87392215693814	5.98584224088605	6.12979078159887	5.91096100558577	5.95384664194978	5.9463087663659	5.89368373133804	5.95384664194978	5.86947867568868	5.95384664194978	6.0993549554112	6.34588612006718	6.15492814074479	6.01165246402223	6.06622540817055	5.86370883320506	5.95384664194978	5.9315756065738	5.96441538640361	5.96014416961482
+"DVL1"	9.20833056901036	9.04106751271626	9.47533372876857	9.4871775894188	9.14985267727651	9.58827934107788	9.58071189591491	9.32639865373642	9.50450012918341	9.2197764033407	9.37101202798515	9.06149538414253	9.64600708533547	9.65374252921096	9.71477085216216	8.99613539231175	9.29019017893629	9.37101202798515	9.45941165297427	8.99052207979912	9.23853308439607
+"DVL2"	8.17238275769119	7.96902640399452	8.17321483836512	8.04804718371142	7.78488510810996	8.2185106268597	8.16075783870227	8.09479125644333	7.920830329238	7.69266072502964	8.05989993589189	7.70846752703576	8.00985057994246	8.15349371675296	8.04298071708217	8.28202729570445	7.87837447020976	8.28426807198562	7.86835225312438	7.73433261241176	7.7586149398521
+"DVL3"	8.85644892690102	8.50880379808039	8.43643958132937	8.38160436539582	8.63101301403876	8.45389502478244	8.98708585471381	8.53443946862641	8.401040710019	8.29053522852232	8.89909369017284	8.1063145267617	8.28781058255202	8.518347969032	8.0574242154408	8.91253606843547	8.35338772954464	8.78050198698938	8.02874268781924	8.23840194253881	8.21087503887406
+"DYDC1"	3.05638597758256	3.19083666701576	3.29004667542084	3.19974090533624	3.25561823675954	3.36244163175266	3.2853671540139	3.10445188916792	3.16023070296259	3.23905703290424	3.08640823183932	3.19974090533624	3.15230094679495	3.30466816637368	3.08568610188198	3.01396227000559	3.18133371838397	3.15300624990105	3.26626421342538	3.33215791149577	3.19974090533624
+"DYDC2"	4.54182491217092	4.62447380208229	4.90173097056907	4.85700798423063	4.72897996853786	4.72897996853786	4.6374441577431	4.53837601703599	4.77863286423856	4.95193101868919	4.56614966930178	4.64363745677938	4.8110820198957	4.72897996853786	4.78447994247241	4.88735514926916	4.67741581378734	4.72897996853786	4.73989307473814	4.95631557280186	4.75391176901744
+"DYM"	7.49715284039408	7.26222089629526	7.19385494855932	7.20346614286036	7.70886398936071	7.18398463861559	7.07167873646382	7.50943777269889	7.514733956554	7.58208143080373	7.31240938041208	7.70321179730053	7.16185654877118	6.94947707225243	7.35914062220222	7.88959049895388	7.56693139001253	7.69829421635979	7.66769498965478	7.75728944915843	7.55286338858288
+"DYNC1H1"	8.55705789741648	8.44134939773268	8.76505711599282	8.35572599025496	9.1167490455791	8.09503605544322	7.74182920200705	8.53838229825582	8.81760325160207	8.86736868492629	8.92484059897824	9.30335621227741	8.18589497724487	8.13391745318029	8.20345947473634	8.72265499859926	8.73779111479585	8.71851488330707	8.18612154433439	9.54460004894246	9.56926133860527
+"DYNC1I1"	8.81248523573134	10.1524122704709	10.3921312685212	9.93462132701941	10.8925928033278	9.55468820477239	8.35341219632186	9.83018477582952	10.1854170640409	10.9011371830618	9.6249371509322	10.8369490404635	9.77974902417623	8.93670752800946	10.1716843490601	10.5328224480929	10.6965818573135	10.5754621985968	10.1880914763014	10.8544712753269	10.8870323672937
+"DYNC1LI1"	7.44329587220823	7.64424375706763	7.96746739324932	7.44594864099761	8.29884419621141	7.21597873536275	6.82086485154473	7.66331867505802	7.75500895592081	8.16593314276039	7.46092492016368	7.91939428541483	7.57188077925053	6.96150325608431	7.7677138380137	7.82141248787758	7.73741709859327	8.16883413592967	7.70722046349392	8.22787657099411	7.95633709311703
+"DYNC1LI2"	8.92285032090277	8.47761112812491	8.54439126567202	8.6632718517178	8.55713493980481	9.43004804204656	8.85946688213157	8.51757401431768	8.4386780736411	8.37625543956752	9.30559540232685	8.40087626772226	8.87320104601149	8.82321736731939	8.65401028734695	8.7509975914465	8.4649861928511	9.2891214564982	8.76552345071799	8.20553381662582	8.59669243919742
+"DYNC1LI2-DT"	3.2138705342031	3.30604570819587	3.39280060051858	3.35628534179208	3.21299398865173	3.53036923575594	3.60735899420388	3.21299398865173	3.33839214554666	3.39225601932468	3.28833811423973	3.30848753557611	3.45418264464176	3.58849460622507	3.37321456600745	3.11356691584604	3.34741857074586	3.11885890955042	3.63380446419854	3.2371083959586	3.38613004288932
+"DYNC2H1"	4.36780803499443	4.4760751375504	3.24248875845364	3.58095575735235	4.0355360833275	3.31215441907769	3.74641592740673	3.78080272726317	3.70376439981504	3.84232318792524	4.33733359034582	3.4342016725823	3.41139639685886	3.47210963558191	3.36648764273889	3.88123822678166	3.36504435378515	3.87499106115349	3.4379915959085	3.91307582435795	4.03075611263952
+"DYNC2I1"	7.68011149642663	7.85120128845203	8.39611487074736	7.69882195090284	7.9419059726552	7.84211131335885	7.42777986314499	7.83804170932625	7.74439449070916	7.66976864972848	7.6303533780817	7.76411980497585	7.64901604146701	7.56192808430019	7.83894229865174	7.45190941932393	8.00189024181218	8.0012492353049	7.70974240328484	7.61557750335862	7.75642279625264
+"DYNC2I2"	7.69887618549388	7.25200614267476	7.66201040825597	7.2247712812757	7.3721777274275	7.51349392058272	7.26766389387326	7.29609361435573	7.19411779551888	7.35761085642167	7.20299994955822	7.07614563046866	7.22901730790364	7.42430477607307	7.05027422335736	7.14554290258847	6.9707199947716	7.07780576816295	7.10858839816785	7.51978423169358	7.14612280011933
+"DYNC2LI1"	6.91620303246006	7.433777056191	7.60867765261471	6.52141623116222	7.62119088595647	5.5870430259542	6.39192730382734	6.79941227020411	6.53757829059503	7.16903184016095	7.19828518214172	7.0038208925016	5.86559029420572	6.11430024121553	5.68519644295041	6.81542408214677	6.43737049135841	7.24524204607492	6.63063559991011	7.22643476330133	6.86514611500985
+"DYNLL1"	11.7003897439365	11.8176604408262	11.7546751495059	12.1513874680165	12.0663879786799	11.3931392643915	11.5704326101726	11.7875434130673	12.2808626670052	12.1823888616181	11.8998244874188	12.0003630017658	12.1215123714179	11.4009553018707	12.1221108750823	12.0928063441556	12.0060092091411	12.0845428670818	12.2080674141484	12.0830825009202	12.1973648587863
+"DYNLL1P3"	4.06029344355984	4.06029344355984	4.06029344355984	4.06460449491521	3.77074274162507	3.92805353875619	4.02138777219053	4.06029344355984	4.11363187690984	4.15161692867784	4.12590318330012	3.93935859163332	4.05577821358079	3.9434196215885	3.89196951993715	4.06029344355984	3.9516212070543	4.04688132925417	4.41403705333984	3.88888759672661	4.34026366521153
+"DYNLL2"	6.61542879663083	5.99738375293109	5.61638088152843	6.43910004737282	6.09135859247834	6.71769172757768	6.63126560489688	6.11918607647346	6.04784669664239	6.16157629122852	6.36351397131103	5.7818087967984	6.44069677555812	6.5221638843384	6.61667365151044	6.40740868591478	6.09294609642323	6.79696877046717	6.78626497381103	6.29625527802997	6.48276293672999
+"DYNLRB1"	4.27231008994367	4.17502562962532	4.27448619848865	4.19627419376846	4.28880707938146	4.27231008994367	3.95844323496485	4.34227119376949	4.33993263856151	4.26174256936443	4.20215715856476	4.27987717712527	4.2481685931823	4.3645538687521	4.18085806155298	4.28660231068818	4.09816783593143	4.07587365838464	4.25964608231997	4.53252905848551	4.30182789536029
+"DYNLRB2"	7.13883189760405	5.53954534140932	5.95039663379418	5.14257004307453	5.53482543423269	4.80562542051835	4.71543737243467	5.63284840662107	5.29552328772415	5.47238404453623	6.77670099244725	5.63448790247455	4.73573482034991	5.17214217232564	4.87237561229779	5.65129663580287	4.75166239521804	5.2985155989803	4.79621250746815	5.30001794700999	5.09954590852336
+"DYNLT1"	9.89195251200997	9.05963364775219	8.97854947142748	8.91916771070076	8.65828891884636	8.98181689445164	9.11796812961013	9.65443213552093	8.88589050959112	8.84278452441995	9.5781595620775	8.89844735925915	8.74006750454176	9.03642752962836	9.00564171661569	9.42615597730738	8.74191575277334	9.4078094258246	9.11999984975446	8.914642153382	8.66949554349303
+"DYNLT3"	10.0097988387511	10.6276876198315	10.792073087995	10.5547089088609	11.0172238375259	10.2344109961359	10.0096098478075	10.5065958269204	10.7547371479646	10.7931150462216	10.1699290367101	10.6279632184039	10.7595876961875	10.2999236512142	10.7737519732057	10.1743740534541	10.8210954955785	10.4013462707692	10.783846229144	10.8926976051302	10.8788453383865
+"DYNLT5"	4.89572224833935	4.18868456479903	4.98200908134609	4.28207386751863	4.79209632432507	4.13050545675064	3.85390982454981	4.15943119289418	4.0743697406853	4.28837972047497	5.05994003064617	4.47758145906551	4.4298705255253	4.22444010741984	4.29553256319287	4.31332927348752	4.43756259460962	4.03327712099805	4.37253480609131	4.69154624927969	4.57305750862905
+"DYRK1A"	5.9847372514321	6.0311330376812	6.6265186101064	6.03253915010592	7.3266984588653	6.64397569719676	5.88185387770176	6.10172455145438	5.94347749257532	6.21291217103341	5.86546168116618	5.89035256557164	5.79475843481078	6.1469770365093	5.49314178266641	6.05962834716509	6.08653874437875	7.06769220551436	5.57559896865364	6.02688456326576	6.07745280286112
+"DYRK2"	6.54059387017367	6.22367431246058	6.87274733377791	6.22711676241055	6.343097066332	6.22228342275182	6.36900988640104	6.26163519265489	6.61619347766172	6.38996846307449	6.25448905101526	5.93903538087424	6.2030763496523	6.30369678045748	6.65881231279034	6.59390644897894	6.24432591793257	7.1871867707252	6.37346056103016	6.91293007818421	6.52310265661862
+"DYRK3"	6.2695824894001	5.83416546214486	6.0268456023735	6.20866008511568	5.82129824601515	5.82287033003888	5.99258852675971	6.08429069605207	6.21383528157618	5.82780407067148	5.87390967434176	5.81064551646378	6.13766989000932	6.09470636228604	6.03915534682054	6.06622334288254	5.96118582928058	5.64127235155992	5.95351373978486	5.87561966083334	5.91857079296138
+"DYRK3-AS1"	3.63704364948203	4.12359052740168	4.06202306611027	4.33759602335487	4.13912004724136	4.07960479532112	4.39386621148161	4.10397237565973	4.20383708852846	4.12359052740168	4.03792638169388	4.00258077603266	4.33043033155946	4.0071202234313	4.0632728838397	4.1591254231783	4.19493541754003	3.84054160309622	4.06369656142376	4.03839988307542	4.37791676208793
+"DYRK4"	7.98376405998531	8.07005930008415	8.30978917618702	7.98755104123799	8.16269253752517	7.74540985148062	7.82570711093004	7.98196637980696	7.85582562294865	7.91075142645189	8.14468010506059	7.74554047879254	7.67719338405337	7.75572324854913	7.8223609849088	8.34803787755501	7.7593897370711	8.24823012900097	8.09661545746369	7.88653188858669	7.85309690660412
+"DYSF"	9.47409836032678	8.86444700377649	8.64147724956053	8.82762676805306	8.62758562429137	9.13786069445918	8.8356537533445	8.70006112634992	8.01776436104758	8.1263603650164	9.33817006089664	8.70503511179714	8.33010836005108	8.83077938215771	8.13250329707644	9.70958012704079	8.72083540752507	9.95550797056483	9.19604048079431	8.08988955100795	8.33358678590702
+"DZANK1"	6.62224002725244	6.8737583720218	7.57392695270512	6.88230987025878	7.30238036599108	6.78319222985778	6.3808433057831	6.47425936168619	6.90879153928573	6.9288938149537	6.73009536415343	6.82086485154473	6.91550029372714	6.79115812516405	6.84325058394737	6.86122549706685	6.80436757833752	6.75751125677883	6.77268544474081	6.94202762924746	7.05666623686795
+"DZIP1"	7.34178627617444	8.15599353419579	8.77056612036376	8.44704653052731	8.14128691248967	7.24064336923842	7.90310498652351	8.26111811684352	8.43071624408423	7.62612409717195	7.81137574698461	8.10209710765043	8.24091852475036	7.84973493982676	8.41679680890992	7.04756313791156	8.25606030861115	7.70484490113251	8.22721090521535	7.4832317828918	8.02820299232406
+"DZIP1L"	5.50897439395965	5.75842851283064	5.70470254535977	5.66658497771632	5.69539818053161	6.21699543390393	5.63998550407267	5.61067861499947	5.63282737911643	5.92504462839565	5.69038789593589	5.71749308176848	5.83257141977309	5.986599762658	5.70470254535977	5.39370151376512	5.56840915345535	5.57916493700448	5.70475297455341	5.71043013268581	5.52825776872328
+"DZIP3"	6.70530478139115	7.5688217451301	7.89281423358267	7.15341113781815	8.0721133877689	6.90321135513673	5.05334455747495	6.70577114309325	7.11120781395472	7.28496551002466	7.1239995599834	7.55536642738593	7.18979973668631	6.5221638843384	7.0100571396006	6.9162285539038	7.06204790862196	7.17599946067489	6.9813439511216	7.2500137533085	7.36860680630879
+"E2F1"	7.18611586451469	7.20851215060224	7.28406541305062	7.35251314394599	7.15945256512089	7.77740225733799	7.49104722517411	7.21489083361155	7.13329366435809	7.37345641714818	7.11216902646452	7.23744141684332	7.61685592408247	7.48599885718856	7.11561896347019	7.13124272160283	7.26938877787016	7.12765443330461	7.28406541305062	7.16799341871153	7.30738027621274
+"E2F3"	6.69467124832961	6.99684519003578	7.67047590474792	6.85597014911942	7.26952320359937	6.93120811621312	6.3755626781113	6.87193748884965	7.27261846271657	7.00728545553539	6.92022367631505	7.06804175299502	7.04306532439018	6.59563421695696	7.0999116808171	6.48659855365978	7.06487273845285	6.97617509661451	6.80216494448147	7.24131407318544	6.98089941839171
+"E2F4"	7.39552729551442	7.21553082110131	7.32641559169865	7.42969229494985	7.10908594200353	7.74507587274608	7.74111560119808	7.28193154751261	7.41615591906656	7.36828215236025	7.2497619037412	7.20212992072271	7.64628230059639	7.77005358921872	7.47825953200363	7.14855522961896	7.26505839601901	7.21714644433878	7.45648760502027	7.36571795954668	7.41354367664941
+"E2F5"	6.45893938800423	6.21976314139905	5.91606500540412	6.33566298525143	6.11712837737599	5.87772698174158	6.02468300812707	6.36142695999819	6.12644886289282	6.24647271466065	6.42146074202964	6.04662682233606	6.0518882389905	5.96426065042977	6.2968873958666	6.27681644880835	5.88122907568173	6.60537787524361	5.8430525845523	6.23000386585396	5.8967118867303
+"E2F7"	5.34803286641009	5.45288665074549	5.46928154278635	5.5876187856618	5.39576317200021	5.79481985371922	5.65628561173079	5.5086779661591	5.61093077996148	5.45940036562245	5.10653120888481	5.34002841041679	5.73237096404039	5.99493276932077	5.47927853467998	5.13449612325385	5.46890274630615	5.21810971150814	5.24229358114955	5.55890411844152	5.44296201891534
+"E2F8"	3.12290700533341	3.01637367536871	3.01637367536871	2.95629964962313	2.87872498556495	3.37064542760792	3.07096475521339	2.98769440927928	3.01637367536871	2.97369267573324	2.91419174836181	2.81738081994746	3.0966666956455	3.15105792284411	3.05522330042035	2.83346354749298	3.01637367536871	2.97895218235614	3.09371764574441	3.16584557767963	3.07339710449296
+"EAF1"	6.68274866667792	7.13701004177084	7.64252570171878	7.02510029851289	7.46356646989313	6.47971122130492	6.53798615336048	6.91620908703703	7.07829766206299	7.42487717674302	7.05603617700761	7.01870116551228	7.00400716028564	6.50245778980551	6.80927260624733	7.1299543781049	7.1820248500577	7.23857272797093	6.86336894304876	7.49380911932273	7.43462013626802
+"EAF2"	6.55301050550075	6.30703516801004	5.90463340359225	6.28718739995146	6.15632247205664	5.72827481903465	6.23919158145253	6.18034109240118	6.38468576583263	6.25940926467571	6.18619783200992	6.16158329967299	5.92537098938267	6.16113204790724	6.09647969811487	6.22773911364062	5.81719176957249	6.2438831652712	5.84750017634595	6.36206771830247	5.9029846338904
+"EAPP"	8.64091424704602	8.60089502760937	8.64362347489544	8.43778008567472	8.99010138695532	8.28083700252677	8.06126576553651	8.72410847737502	8.59693203144272	9.00844781717086	8.63151575600298	8.85837412099822	8.25236254542352	8.04623657037886	8.44562542234215	8.78190892816913	8.70638295026809	9.11850962638515	8.50381496916024	8.83351186074785	8.55848295207953
+"EARS2"	7.09013389470053	7.39485589693479	7.47732594025715	7.63057540888369	7.54215796154071	6.63509107221787	7.37011795583607	7.32643810785015	7.41850659906448	7.34315124027947	7.40395358063952	7.77452200166801	7.14016152177355	6.74687594446194	7.320494569445	7.62329423615891	7.47243379678625	7.43507627291899	7.70309794670619	7.84152941603603	7.57078738698797
+"EBAG9"	7.50972918283852	7.72718851164777	7.66376265072272	7.63884659966176	8.08918156838713	7.78535119692962	7.36316480339904	7.73982177934485	7.7879418641294	8.16211691740767	8.09129384521903	7.8852979016625	7.98404903852164	7.5493366899384	7.51551782180327	7.71010398350684	7.54290001668518	8.06606859527246	7.80483287360762	8.02604288029412	7.74015202472205
+"EBF1"	7.79104764343471	6.59926892793278	6.60643346123833	6.00097525573387	6.10292228915178	7.36858384788501	6.46564743237365	6.90007809423247	5.90098014451229	5.66689346798754	6.24783832447411	5.56046384013263	6.38000850674802	7.1960212831029	5.46794996506529	5.50806413715644	5.71097028468699	5.7662511083396	6.03252721179178	6.41859391243854	5.17467514719839
+"EBF2"	4.47761537007831	4.5776561580817	4.88533235130057	4.69194608128686	4.72717042183255	4.76920867104908	4.68698294227718	4.71423168144247	4.5359930112445	4.74686102342633	4.5117934379277	4.65866630659959	4.85152881019326	5.12728343642315	4.75958749117632	4.85115958900984	4.7446618870153	4.54137198263651	4.75737936093082	4.78287302558857	4.6331066891412
+"EBF3"	3.59146202198909	3.78176938944667	4.33360091658643	4.2395315783065	3.83408015772616	4.09661865148204	4.0595007543463	3.82387674770581	4.14527164016672	4.05495961602007	3.86588525119388	4.20884588857544	4.0214630231508	4.03180326216439	4.21196947981537	3.66554112715532	4.11060981431851	3.80877571284754	4.18744436678001	4.01261214548805	4.12761737160828
+"EBF4"	7.5671518530279	7.56147872648269	7.53624849049879	7.30457448946424	7.06921653070792	7.91249195882653	7.81397306285408	7.45901822823377	7.11747005524326	7.60409647993567	7.81717506948465	7.38757544859461	7.73442848646704	7.72189725129275	7.49304662138133	7.46777346903187	7.53624849049879	8.15960729427703	7.76309150971463	7.21547785957439	7.45751976336418
+"EBI3"	6.59892294055208	6.07533985639745	5.83885583272868	6.32382326163732	5.95897888462817	6.48409135706416	6.91622733545177	6.42405880382304	6.37791637056835	6.33295320769959	6.06637167056017	6.26325541895116	6.41758159576983	6.62059925991208	6.17007248696622	5.96367423387693	6.11953604824379	5.66096690710898	6.46439662984234	6.73033948406057	6.303897164781
+"EBLN2"	7.26627888905771	7.35592929390203	7.468388448765	7.39656110629671	7.25079048792913	8.1276639260995	7.39656110629671	7.67585484490434	7.23713621984852	6.86540416684216	7.39656110629671	7.30557471563855	7.39656110629671	7.71330812281543	7.52387666321679	7.59250275730691	7.57412194095143	7.70426312889109	7.35706120272549	7.05895986834075	6.89906021969601
+"EBLN3P"	8.22667101388207	8.90878217987896	8.78707051799039	8.68454024294142	8.96728277049626	7.90505508946752	7.85184537872446	8.83423955078489	8.67446276418379	8.67835449830246	8.78739216941386	8.69712459172554	8.53128413788041	8.1125169842472	8.54067432002774	8.68454024294142	8.78798223788034	8.81045650677907	8.80375976440076	8.47864992084364	8.64152098416418
+"EBNA1BP2"	7.37219280408716	7.66086879484568	8.00416778010424	7.25848830009751	8.06196843133656	7.11957407709967	6.89851890095249	7.22654913334017	7.67255685799483	7.86538246796918	7.4636357266457	7.55199365088332	7.46135527453264	7.0806498517639	7.51295342396243	7.67417846505049	7.30944883367248	7.7384478748734	7.12740067707428	7.9994348821854	7.5586286809411
+"EBP"	7.48002211484443	7.38751704631055	7.80420982884768	7.29768125706622	7.51557101604609	8.11081443104344	7.35234633334094	7.44565007431968	7.30607908861638	7.58848427679005	7.48669210619711	7.62523167282733	7.62506802789409	7.56548598803565	7.65001718675065	7.27874256137684	7.40526514958163	7.80446842996529	7.5070994177287	7.3052012836054	7.594192829325
+"ECD"	7.66131271141655	7.52699266064602	7.41454337563377	7.50653797407901	7.74043030116675	7.47402373378606	7.0622316461673	7.6227859974714	7.46483741851854	7.67213180399088	7.53540756821582	7.69319767411889	7.17232420105051	7.52156946323662	7.32455708986376	7.90143140673676	7.51630520038743	7.73291740165206	7.34710315358335	7.6535070229061	7.42458716400186
+"ECE1"	7.88904396102067	7.783606079862	7.86175208916647	7.95081253519203	7.75738427724891	8.54687357397042	8.83193185466715	7.89924018832361	8.0511950770041	8.12818517589929	7.84352023607719	8.00404026334365	8.1868821096789	8.48890695735801	7.80938102247414	7.59848154234858	8.07100459175694	7.58148958052874	7.79143517618588	8.05876127836698	7.84253845310715
+"ECEL1"	6.19745761598635	5.91536334384264	5.98218893247133	6.20985345180678	5.93143642182006	6.02065572975185	6.13707732862882	5.88521843784457	6.30941558824194	6.29920841840081	6.02337943823517	6.27263726290306	6.28868034726002	6.1814702609194	6.15162844497311	6.19090719485407	6.18970352434251	6.03790396045063	6.21573548210694	6.82329843810344	6.24021875144655
+"ECHDC1"	8.3390889770108	8.34529248981768	7.91635654986717	8.06511453868075	8.3817559094616	7.60129233509071	7.83812436112681	8.24840843207759	8.16751556927294	8.38662274894602	8.58133665944126	8.17069121234291	7.92068698272007	7.70386123203755	7.93953579277422	8.66782088413553	8.04448415579782	8.69758160844723	8.24840843207759	8.35627003561049	8.31335792972579
+"ECHDC2"	10.0744620944474	8.95770001865779	9.34396989704713	8.75156453251068	8.46791969818637	8.00129810928162	9.24108017803001	9.30353125533536	8.61837125700697	8.58744677651331	9.02025024584877	8.62536290418649	8.45544887245251	9.17857393306895	8.5801411062522	8.60223551024884	8.7968968196335	8.44310319689042	9.12251702969628	8.92825925923733	8.3230286841227
+"ECHDC3"	6.58071602792494	5.42556354017358	5.75883971199848	6.09130724486129	5.69620066667343	6.014534259617	5.92191985035621	6.25365508243039	5.95165667146236	6.48265053601984	5.72560938723637	6.17341316978743	5.79522299578307	6.41723818440356	5.56848840588895	5.93376335414713	6.03759153566911	5.47542763050103	6.35644562763029	6.18812376485672	6.06020866590866
+"ECHS1"	10.4525726278826	10.1035141358614	10.3504024382335	9.98524075281911	10.2368303017641	9.75978521015909	10.3170082024711	10.2955177465768	10.1212373404245	10.2684095239124	10.1917936756058	10.1294628960517	9.7766295080207	9.89743840593462	10.1591670238333	10.2341358983179	9.93855584099166	10.3851757484226	10.1249420780779	10.4031257956204	10.1821570391407
+"ECI1"	8.03191635097998	7.6716725932716	7.85550849031231	7.62079352561731	7.55146933886493	8.00069956574968	8.01766804079623	7.75903799096288	7.85505486792087	7.69270193091764	8.11302980542606	7.31096024807718	7.72854499164508	7.65393225350834	7.89972428256785	7.6800692889226	7.46319634842839	8.22353438578167	7.69277041527632	7.75826556719562	7.28670294720449
+"ECI2"	9.09247381120723	8.71471058633811	8.39784953779198	8.47437517495962	8.52981667113166	8.2402250481116	9.14262487042383	9.22949023049319	8.42326589841404	8.45584703020466	8.70550711978996	8.51385672751929	8.48130887856904	8.50246326023044	8.21501797654964	8.52656974330741	8.25362373947	8.84686964642314	8.61723083907111	8.43792396444971	8.17442429870042
+"ECI2-DT"	4.34996591641074	4.35581032352359	4.31924380059501	4.38546591173936	3.96670269620232	4.23735092293212	4.49852897839739	4.33699823672353	4.39522763495658	4.07789382060747	4.28941900071004	4.60888635396977	4.61806898624629	4.36942991770855	4.14127343955909	4.29873870378292	4.35062980801282	4.26944480507395	4.59396556961319	4.16232718423799	4.44643202444019
+"ECM1"	7.69580564833907	7.58456526603923	7.67957910814358	7.52426441294409	8.04633176854421	7.54502993367079	7.0575110496811	7.25819651131694	7.42623685623774	7.93839605319235	7.53696126599471	7.88734818359678	7.84850737087201	7.55156116672722	7.59854118544847	7.52125218844163	7.76066995619051	7.74150666245192	7.4640828101306	8.1985236633652	8.2593002164873
+"ECPAS"	9.01446458798617	9.22347684730935	9.31682622031563	8.87132112910754	9.64815196190786	9.12598269218419	8.61511488972843	9.38352260964532	9.12646298014459	9.57446994756823	9.29514699221966	9.50207087200782	9.04002762146875	8.66697101729067	9.12498553431156	9.33698044409266	9.30014206835467	9.59792927835568	9.22493518853002	9.56538163754132	9.4864346276383
+"ECRG4"	7.92158873900786	7.55478025590799	6.85475757895014	6.99191302189881	7.42702423218867	6.57834011923966	6.6172987210862	6.30577537122443	7.08746635924837	7.68269179303046	8.40779954698098	6.94961628696288	6.75907416878951	6.45714532361116	6.57636095101431	7.47098085065293	6.86750141252808	7.2105296077187	6.84922749742996	9.18764470163671	6.66123474050459
+"ECSIT"	7.99468916251971	7.85032487865135	8.50487652426694	8.18203787213969	8.25339814584295	8.43254764554598	8.45995928876762	8.26967928584491	8.29421121490936	8.4259066062475	8.08166783377346	8.39554692921579	8.26461645446133	8.12877908320059	8.41404313089691	8.13214378841667	8.34576070287542	8.53862840398278	8.4298229218429	8.48786461329978	8.47089996838831
+"ECT2"	4.86448618252204	4.92564444377675	5.01840497860036	4.8395561104946	5.47230533202362	5.03231169149178	4.36780493011986	5.26708260477849	5.23006035037754	5.25888794156904	4.82622014030701	5.11077906726866	5.25533827333902	4.82125802014953	5.11048145066231	4.6879844609951	5.09927315305905	5.18834802300718	4.99532194402693	5.09391109692606	4.92550799747743
+"EDA"	5.09016212215986	5.15599557435317	4.55262307291351	5.43822888921159	4.75287565953953	5.12412882071819	5.34253261555414	5.12412882071819	5.20937490804836	5.12412882071819	5.20905580151922	4.98960473663336	5.45356415325464	5.43813523042432	5.12412882071819	4.99637583973594	5.05818337225174	4.60966877334125	5.18856233352433	4.85309078840298	5.22236484552035
+"EDA2R"	5.93922208500829	6.18501882420343	6.04961339122378	6.44485966599485	6.15499128214357	6.27501866283355	6.04935843718453	6.13439637098052	6.16946147549959	6.30719158789551	5.98610998294161	6.33571552327933	6.21884127629051	6.1018774353234	6.46791224097342	6.61204397096504	6.21884127629051	6.21884127629051	6.19342875742941	6.22619955772884	6.50480478248285
+"EDAR"	5.52560477454462	5.75809910885266	5.75278954679426	5.70360305314249	5.71849778718386	5.82788492879838	5.97088156291514	5.7662511083396	5.91082572438299	5.84577286525917	5.56838203411775	5.80642307863837	5.98072777152792	5.96573261050333	5.72819661853945	5.82608857044896	5.75100189426288	5.69897735783816	5.78467294229887	5.78467294229887	5.78467294229887
+"EDARADD"	5.09174484014543	5.00495794299746	4.98200908134609	5.52709528988894	5.2524543474473	4.94910937565548	5.12746650795198	5.10364129148094	5.30097962000209	5.0750605660948	4.96281553834182	5.20067239137675	5.12237084524322	5.17531102246592	5.19218279672631	5.25959307279626	5.12746650795198	4.79475563526194	5.07061722630603	5.12746650795198	5.33358936572871
+"EDC3"	7.17682674071383	6.66169302764736	6.6628438434222	6.64552722447803	7.12672794009367	6.62733464349082	6.94779216243055	6.73511495515572	6.73511495515572	6.8497460856973	6.552079066968	6.7547517862623	6.45484107198593	6.4570235740391	6.549131047287	7.02108373834467	6.49196506565985	6.93590716577546	6.66145547434954	6.95864434814388	6.92100087018453
+"EDDM3A"	4.02951355530253	4.21831869804622	3.7548524236661	3.90369499810909	4.06556797932485	4.15424212173359	4.49623329915087	4.07792606942969	3.77642139537394	3.95860283568985	4.16227335765435	3.91518313700997	4.07792606942969	4.51553131601148	4.17333315263455	4.17694812585873	4.05810271783424	3.91977967638055	4.11205420949967	3.98263705326137	4.07792606942969
+"EDDM3B"	3.18262484854742	3.36486577710219	3.11517836301397	3.4492746573231	3.38597050076287	3.21441235660745	3.12108124047571	3.00771745885107	3.19252788411931	3.1749717635601	3.13222118504486	3.09390942006071	3.32011624340536	3.17546379492592	3.07751656780859	3.17585038955628	3.24389726274329	3.06820960970488	2.95426237720062	3.13727513381717	3.17585038955628
+"EDEM1"	6.8239993015563	6.64102949679484	7.14910000544182	6.67874080910501	7.10275912926509	6.57549990255804	6.43335612916717	6.56968083608067	6.77725523322759	6.70974255652573	6.38053270643625	6.58707280471937	6.5647062642559	6.88553948420694	6.5992917347134	6.65184547200102	6.82100528606457	6.72296827306513	6.4060870721911	6.85922281808349	6.77644279670122
+"EDEM3"	7.1801085355562	7.45802680220056	7.10991897707257	7.50246919997945	7.74431070179375	7.03146934692597	7.13885154348686	7.70233306184581	7.27991437400343	7.49011062222308	7.44811766052312	7.57573833303911	7.13280397863885	6.80620647061034	7.29598903867181	7.77594006364523	7.49594233186226	7.74897229838353	7.4036765812966	7.64546555475031	7.48031582190933
+"EDF1"	9.64556278855862	9.61569121238631	10.1068878369043	9.41833755060621	9.92513629803579	9.42539157072822	9.0216532911863	9.52499605642971	9.55580212548323	9.88739690555949	9.83567809719242	9.94122627495306	9.09705563383165	9.1132945842452	9.3401683042565	9.90539620635199	9.49043379309503	10.2580123165972	9.5477383544541	10.2247688761538	9.70716104915585
+"EDIL3"	8.89440326010346	9.2461262733348	7.21224107525556	8.70017484267913	8.94573304959409	9.14836038530362	8.70249222639297	8.70646903579469	7.80013364942909	8.60063506674608	9.93975861490395	8.86398562086566	8.88543970130903	8.39514589026003	8.08192808105176	10.4106092586584	8.47744760094727	10.5661319737569	8.76053294024472	8.07704255642983	8.54921540864325
+"EDIL3-DT"	5.93867206504773	6.06785340610304	5.9242807013587	5.91529039250766	5.75831495515096	6.10159285488989	6.52215004673604	5.82287033003888	6.01254847284386	6.19393822657718	6.00670622707959	6.01444475949671	5.95630912496579	6.13379942670766	5.91198765856272	5.70084528153354	5.91187853375093	5.42887928512272	6.0927383532091	5.75181439655537	5.87328104790835
+"EDN1"	9.4028460946438	8.28150141763033	7.61233188014398	7.42122494659904	8.54893718820331	8.51234136486508	7.91634254983272	9.09085031815092	7.50422568179773	8.82285021460839	7.27060959164504	8.72599564975737	7.94275108207804	9.48028959978601	7.33820724729287	6.50404240275486	8.10456841415854	8.70487540932424	7.97679648797612	8.16837416513664	10.0130862739588
+"EDN2"	5.17998290494009	5.4205152597258	5.7160681361824	5.82312508026092	5.49774390611937	5.63869417594651	5.80704814905133	5.64596201277565	5.3549589038129	5.61333898883626	5.51009218467396	5.7160681361824	5.80903043510238	5.52812138597808	5.45448358269819	5.62429200803588	5.69802179584991	5.3328564671847	5.62055698379171	5.49513387137941	5.49873282213573
+"EDN3"	5.66280904279701	6.443834933189	5.32692006831047	5.4282068728801	5.27485316400832	5.42762441933647	5.36338444216983	5.17278049066795	5.81599051690845	5.25135275999989	5.7202732404558	5.08771697782503	5.55744502951133	5.84807865912382	5.1613615271805	4.94711011837784	4.98048106984249	5.23983754458898	5.1677289881294	6.03828372202455	5.13824481873955
+"EDNRA"	6.97039582788222	6.07903978962553	6.39215266878907	5.56645638864122	5.90399615146495	6.79922451582778	5.58846380859856	6.31601944212345	5.19005803550448	5.70015886294449	6.14796780806433	5.82573784134686	5.3825804409384	6.53371135083968	5.50797384978852	5.87523576344999	6.36414522428244	5.92363858525122	5.89956279119723	5.63036168241714	6.06671043065373
+"EDNRB"	8.43544250003797	8.9842346548144	6.95831502082088	7.77181314364074	7.81280287601891	5.90684882492011	8.31350870382031	8.87852736805588	8.05079242054546	8.28563932648143	8.18065001489249	7.01554962835442	7.36591644563862	6.9363660140656	7.53934486301135	7.58996996415727	7.75629437661204	8.2450240798796	7.82562043229518	7.8056389023186	6.64307746542061
+"EDRF1"	8.08926216892351	8.32274550000835	8.53057111049668	8.1783011512967	8.38420560126494	7.48147409934862	7.76144094240557	8.1337241024308	8.17576392845692	8.00113673684055	8.36793898954724	7.86354275913412	8.27770329084523	7.70251760198312	8.56404267485433	8.40090251232202	7.9903023969078	8.64904918748653	8.00920215574142	7.97925244032823	8.10439275670248
+"EDRF1-DT"	3.75979079919633	3.63638810944663	3.80345233577858	3.7509850563165	3.78298453864653	4.06670126927398	3.64347194592472	3.56974068672942	3.86362234060252	3.87659820797464	3.78724455687702	3.87749808636257	3.67970422893242	3.65638346062479	3.86228129943772	4.01375794686185	3.89274798470719	3.91977967638055	3.8231484087202	3.68645644817342	3.73048002172743
+"EEA1"	8.08996920861117	8.52953571899217	8.72232559794086	8.36057145952664	8.72467086320538	7.76413350370672	7.46843143587617	8.43019019833681	8.44248581338051	8.39491584489302	8.60548660626622	8.4283554214025	8.09350291631018	7.98156018952552	8.42068779952884	8.68227470438072	8.44712606437149	8.71262991450266	8.23562033547748	8.31648281933868	8.52029599864507
+"EEF1A1"	8.14061898966452	7.70034551408275	7.46963292284221	7.00544076395195	7.62858367918868	7.24170637361151	7.63105881219568	8.33016964083207	7.40181267558042	7.19552029575456	7.40158268206962	7.55901642296638	7.60238914369777	7.5607596943689	7.8418219707501	7.2405403038635	7.5607596943689	7.52771099244633	7.46703281833195	7.62739851852005	6.92229470840241
+"EEF1A1P42"	6.21396816331014	6.31723643102355	5.99017228152546	6.25119575461799	6.02660425529035	6.05677791592758	6.74718288570021	6.38943173804244	6.38246649459775	6.33781768303025	6.39178897100752	6.27285196684936	6.35275856379197	6.4586990432991	6.30759402172234	6.6268161296461	6.51646757079538	6.23232305501818	6.52321270820401	6.28907475306201	6.30555361814248
+"EEF1A2"	10.8282332614993	11.6232842831711	12.2227650597861	11.6838185174381	12.2786724724498	11.413520650858	10.8049641124656	11.6966090871184	11.982934133406	12.6624109298101	11.3302493690772	12.3776011150602	11.8995950061662	10.9326839279187	11.7221853055418	10.9838308935632	12.475106340507	11.9055929044696	11.8177337393608	12.6511348954803	12.5786610610657
+"EEF1AKMT1"	7.61405492802684	7.4223726502402	7.49327818028034	7.48750412583297	7.40371344872696	7.00435609054062	7.6995533221306	7.41146193676031	7.31873147419574	7.44929741623546	7.3466734726984	7.4531527871505	7.2325367102459	7.39558692560434	7.30733254112782	7.40810142682026	7.30678317641511	7.55647220598809	7.4936726204369	7.51917093007151	7.29212577629764
+"EEF1AKMT2"	5.61126535219938	5.88614474841827	6.30011330570187	5.47156183415386	6.05315587140838	5.07533040968143	4.56648037669943	5.62121173274949	5.5816675416672	5.72821386596186	6.29793689753006	5.82058693681592	5.61504122734814	4.33665148305849	5.31473915908856	6.20950398145277	5.40106105856233	6.16230321267017	5.0937789928292	5.68860415964237	5.82265085877548
+"EEF1AKMT3"	6.54632997696143	6.48074992718972	5.97325066231692	6.16341248190416	6.24440675690159	6.24440675690159	6.46964488619953	6.44067483123101	6.2410707713948	6.17262489667527	6.45953243011086	5.98839958604188	6.40214501988604	6.15665509941648	6.16246958620178	6.00516129913828	6.29094793805166	6.25484134399793	6.46809371241148	6.15166882876703	6.10377519119472
+"EEF1AKMT4"	6.01092899643755	6.05966603010383	6.0266785051086	6.17685676258096	5.87843125302977	6.16392167286719	6.1786235961075	5.78135553377065	6.18155991712169	6.09786277729485	5.84680436663177	5.94756938135109	6.3170175990642	6.35201368816706	6.17343416309097	6.11062230061654	6.16431546407	6.0704604472016	5.91844399643974	6.0268456023735	5.90379762976539
+"EEF1DP5"	5.09035034221013	5.36377178274493	5.45595504175266	5.4863641501466	5.10109982182763	5.50048403927488	5.69421870005359	5.40884334965816	5.30097962000209	5.58435872996778	5.54889995854377	5.75913429218261	5.80177983005245	5.52185546705334	5.50067930183914	5.45543795372575	5.53732235133007	5.29319130495366	5.76928964960458	5.19883210090849	5.49727725634688
+"EEF1E1"	8.23846425706813	8.38311081774706	8.34833145565155	8.14886269162856	8.91399515363031	7.88659188838092	7.35963638495055	8.05902381336822	8.35854654757527	8.95995067458201	8.18332310575912	8.52259090175034	7.77251383309253	7.43975221918274	8.38311081774706	8.90780107865686	8.42209049220383	8.86611259858138	8.28658030847859	8.70070245057572	8.77176848846526
+"EEF2"	12.0948368636251	12.1230516118398	12.1263416744104	11.9826600016928	12.109199424091	12.1342788282961	12.1349345205825	12.2456096102162	12.3345843828881	12.1175096612336	12.0996472596385	12.1283252500624	12.0863157288686	11.9923325563898	12.0542672144203	11.825180298955	12.3476691945752	11.9724334886556	12.3044103652725	12.2543837111068	12.2162754419186
+"EEF2KMT"	6.77423308812423	6.67260754539328	6.38255803860104	6.43371804331035	6.68324760077683	6.34720507292511	6.29226805936113	6.31187705276149	6.5934076532326	6.72150836554369	6.80911721612258	6.50255381574376	6.47621200989142	6.29655702167901	6.40103450135147	6.59826699937134	6.38340007371235	6.6017592756906	6.30916579549699	6.82554306909442	6.640818106636
+"EEIG1"	9.56025352652729	9.90747216818289	9.67361815035023	9.72617615643698	9.53998777171646	9.6320029515394	9.48774989027703	9.46965426303536	9.33023661312258	9.56098132745362	10.4696394172099	9.39997756603513	9.41091758362645	9.15285229840828	9.46800240702728	10.9649252069377	9.49237035116787	10.303241605845	9.71981723876967	9.56098132745362	9.4445797625223
+"EEIG2"	7.61472047714616	8.62485922058017	9.3022159156638	8.65402859790971	9.01795283136234	8.14757659713218	7.57658784278599	8.19436800340331	8.81550911466273	8.73799371177582	7.8387454174008	8.66024841820774	8.61753366122499	8.18490566598244	8.78869514122806	8.21213167384776	8.6733016133443	8.62511559423973	8.68587640229008	8.94470145972346	8.6921196851905
+"EEPD1"	5.93263045760267	6.25688818126145	6.36347743715966	6.11663644592339	6.03514937637457	7.04225092725858	6.14117216891384	6.16338232955149	6.04670195118256	6.27252058606342	6.51945706014412	6.25688818126145	6.44178633123474	6.50363637485599	6.20558144719175	6.91770762659594	6.2868616514033	6.82319206996455	6.16259468728317	5.86792484130603	6.19960033284622
+"EFCAB10-AS1"	3.90188048711684	3.95981730639337	4.44873568758739	3.8375252097531	4.11722468639889	3.84232318792524	3.85030611343845	3.72353563741024	4.28409210187118	3.81793418124193	3.79046178089811	3.61615548536888	3.91131607386992	4.08185067337547	3.96779852709763	4.09802164442778	3.8001626780765	4.35853493094597	3.65703240323127	4.10692620944208	3.78914822694154
+"EFCAB11"	6.72895516046271	7.2183473863835	7.12381629140101	6.57784760365046	6.89431451881217	6.89431451881217	6.24443397539332	6.8899652867651	6.81243758047042	6.96966167554792	8.13880410329156	7.22854776876295	6.57563318410655	6.8162935637367	6.60766164159281	7.17099035447161	6.39982396468335	7.0990732402339	6.52799431276078	6.96750264809739	6.89431451881217
+"EFCAB12"	4.42145128000074	4.51596560840898	4.76973031449511	4.64064448411034	4.67271542207051	4.4349228708427	4.53950263451484	4.69899128232773	4.6034047516936	4.53950263451484	4.67764280349182	4.55698232622586	4.71138676275743	4.60567527728424	4.53950263451484	4.44897265055971	4.34454901528696	4.38478936223083	4.3275030058516	4.40072640183001	4.57512919121534
+"EFCAB13"	6.46337967649764	6.17088208176067	6.44868518569973	6.49956404978159	6.45457888116794	6.90278602045263	7.20470052673541	6.37729554178888	6.51842173865867	6.71087080902796	6.38391477033523	6.60933977033468	6.75930610929219	6.61022097336112	6.49420797009332	6.49956404978159	6.64485941727556	6.22619955772884	6.63792408830101	6.5150513033908	6.47909550773735
+"EFCAB13-DT"	3.66353606654686	3.96797866151752	3.82673297488359	3.79135899085656	3.64118490046663	3.91607721135879	3.97728885789129	3.63929489088924	3.64244440333094	3.73175253132357	3.6886659860753	3.80392825820706	3.82312275665472	3.72603347669766	3.76313356611192	3.9175784958343	4.01668028903544	3.78627381172888	3.77218748183958	3.68041328530552	3.82256897587885
+"EFCAB14"	8.56772281796252	7.94593556687516	6.55547212926011	7.48991982264701	7.50768302306509	7.15245641833326	8.0058059366948	8.0097868176169	7.63200003999076	7.66299317495346	8.11302980542606	7.57711530885926	7.427002836224	7.77720028023314	7.29959614423524	7.57711530885926	7.49397005237646	7.83353120339158	7.79141389988748	7.45901157496192	7.29655365972173
+"EFCAB2"	5.63934094034149	6.65052473362381	6.69484650292605	6.48736446627437	6.61636838432443	5.59513373869148	7.17334702737401	6.61329288514737	5.72139931031271	5.94425070112214	6.69242444628976	6.20896251741821	6.34588612006718	6.46654086522946	6.65084485910133	5.97052943809247	6.36811464340431	7.2826899615019	6.52440452384347	6.84876155795419	5.70881492160149
+"EFCAB5"	3.16402343121212	3.27605695764013	3.34328743081785	3.30051890339677	3.3430025601584	3.64204866943905	3.5861116007678	3.16190251715814	3.38998489887326	3.33533612048902	3.1810271828534	3.18605307667731	3.19168480715121	3.36187802562377	3.51646155297671	3.31085423440843	3.29359424336837	3.57930588225565	3.24553770239836	3.25825424509225	3.30051890339677
+"EFCAB6"	5.11451298280076	5.08815636485543	5.67774536129806	4.78835573840182	5.27436705813991	4.95121461128154	4.94372525872894	4.76090538062846	4.5106344044313	5.00917877731295	5.2959536581184	5.07196336040577	4.69375114795545	5.08434163260989	4.5155068814303	4.89032306457861	4.78517947059048	4.68717384659836	4.78108656956732	4.86980199805403	4.79341105183565
+"EFCAB6-DT"	4.16120983623119	4.41637163131483	4.28370476771521	4.25766196618089	4.52759369712707	4.30052606652698	4.30247692575054	4.25795044129749	4.38807732851649	4.30247692575054	4.11919762008886	4.30291884282523	4.31523975417741	4.30247692575054	4.34634699370544	4.43600609095712	4.35108656008076	4.02016741890756	4.29938893389525	4.32309601541987	4.30247692575054
+"EFCAB7"	6.76226547054012	6.71813989931563	7.25879188735328	7.16373123431536	7.44385518529154	6.21011461723088	6.19525045569519	6.94298595093623	7.37197363998159	7.3832304695509	6.87440278130332	7.08899735178215	7.34370229692533	6.42412813300316	7.43201866423263	6.82592352668554	7.1387349911935	7.27780346078511	7.26963526599488	7.33696892195637	7.25314218011868
+"EFCC1"	5.46970466277947	5.77535038224671	5.75988007457257	5.71026326162998	5.62957732588232	5.96839167574721	5.66715615558837	5.53511459737745	5.8704121990033	5.80399568648942	5.57014556181226	5.59518830846763	5.81833857888373	5.86513798886677	5.72819661853945	5.30490908324929	5.56050185811372	5.00752751588865	5.7049511366993	5.53645596510462	5.75356669901514
+"EFEMP1"	8.55275654781681	7.66272338330624	8.80689747558069	7.13919318428971	7.29828902082511	4.81691121326406	7.1433978117401	9.066957381993	6.05947918619915	7.26044120285715	10.0543865064407	6.45875159467448	5.20761755001588	6.41721171692385	6.11210870942249	8.50575068827164	6.98762456397188	7.65684626130631	7.50009266539673	7.14603754600075	7.5416843717747
+"EFEMP2"	9.06020837228447	7.85999502335903	7.96339727740853	7.7898063827149	7.62003865773443	7.71771048297585	8.21676470693418	8.40285382779777	7.50254016341337	7.85166846230903	8.26456578061189	7.56149499213752	7.76687705100654	7.86215865095267	7.6458483856299	7.54510364453713	7.35538194412085	7.68302523407553	7.7898063827149	8.18655725715937	7.36789630802227
+"EFHB"	4.13557720799785	4.04607259124915	3.27342055188427	3.26986295817273	4.6842908266789	3.56905651089148	3.43177525918073	3.59217387981742	4.06988330113857	4.34209798083436	5.25501842324098	3.91747881625649	3.39046662076838	3.9142827853347	3.30666640237281	3.46571278216857	3.18175450427025	3.43925311126157	3.497384998921	3.86356601222715	3.13688882227515
+"EFHC1"	7.6996157806259	7.85212848464685	7.99386535709971	7.51999693194408	7.81971544328029	7.65038214169179	7.08768602297629	7.35792509465539	6.97290297721083	7.22076443316811	7.872372491601	7.42366598660886	6.97670242949387	7.94255037524826	7.24387455767355	7.70180264704951	7.57179935881494	8.23995575611719	7.37159121723575	7.22831665068797	7.08609353112925
+"EFHC2"	7.06182659938063	6.28421712579554	6.53167732495557	6.01096729112887	6.96900424274656	6.04312105911345	6.35741416573056	6.88165143779941	6.83720144483811	6.8431714580086	6.45953243011086	6.00021836752272	6.15356066694059	6.36489462262949	6.25796161345581	5.26704833738919	5.89177773765311	5.78832951357189	6.40086856567186	6.21445740511077	6.13101976103726
+"EFHD1"	11.7258103564558	11.2544417602592	10.5735824310592	11.6164738371031	10.788160100075	12.0112196707235	11.5467965658198	10.9947987926401	10.4343348435339	10.5246214553099	11.7420076018704	10.6362344030433	11.0344644952419	11.6057751983006	11.0178163798343	11.9774091481965	11.1308800663312	12.3939622481787	11.4721859285769	10.1656200454977	10.3391925579722
+"EFHD2"	9.47504316406242	10.0845516886741	10.3637073440058	9.67972975073812	10.2440136871023	10.429444743018	9.6079580264721	9.77260442871885	9.38676130549645	10.0240927602223	9.61425874328965	10.0089179271373	10.0178480490119	9.61988182537264	9.44903681532637	9.31600700371638	9.97249301428736	9.73404080458144	9.49888206060267	9.8039402414771	10.2617550963136
+"EFL1"	7.58624409869371	7.29040133839595	7.33080415528161	7.26818147258865	7.55710832743679	7.10587715510595	6.79637045208466	7.29040133839595	7.24344621734935	7.41255511329727	7.29040133839595	7.06856376167894	6.88678728171805	7.03914772084943	7.1685543840208	7.52716135352335	7.09355705971143	7.68495216870346	7.20097755294164	7.38563866037103	7.32914310279737
+"EFNA1"	8.45908302185427	7.75137573974212	7.76215428242317	7.7230931782985	7.43546381369278	8.88456125125534	7.52843908959067	9.28478506108632	7.206725284691	7.08670250256246	8.65485450173721	8.15195360731286	7.4808691117613	7.51912258560972	7.71078663122727	8.94629758511558	7.93598373711013	8.66924421136977	7.75531994232447	7.06769220551436	7.75953225752469
+"EFNA2"	5.88684899164255	5.4771441248747	6.02639193545695	5.89672372316787	5.897269570895	5.91790840184021	6.59033757642506	6.04522471803633	6.01566252606516	5.67948924296219	5.78588916135179	5.33960948380864	6.10898299420005	6.08601769182576	5.86253141281859	5.71375915172002	5.66745109977618	5.9254232972963	5.72364956390229	5.73799754133712	5.80589351892608
+"EFNA3"	7.85245265863608	8.38372189621566	8.51052645721682	8.42388009329611	8.51841584529622	8.44590458724915	8.26432895850922	8.14128691248968	8.36239012891077	8.32812949023361	7.98168011608769	8.41271288972341	8.63885925261354	8.53451759805269	8.24637380131947	7.87562141699962	8.38200185731997	7.97403988692155	8.14111805935061	8.66611973375278	8.5988146870984
+"EFNA4"	5.50574566125335	5.25831369282289	5.2283253855357	5.07132118929217	5.11039987184533	5.27400591866942	5.6094372538667	5.19687173010645	5.25432918650602	5.08460077513273	5.11327812612631	5.24120419830518	5.25507445698076	5.40872351279596	5.12318546713727	5.26955196667966	5.1603895924093	5.33231963796712	5.20544162018236	5.05917002504435	5.01200734177373
+"EFNA5"	8.01735861323404	8.87478064032059	8.98652327267633	8.76088197106034	8.79842653186402	9.0182463465957	8.2242063511098	8.7084554826129	8.85019767584269	8.63977597844313	8.26331799805077	9.16636029640879	8.89936331241393	8.60011499342725	9.00632678626039	7.87569090743373	9.08692717898087	8.28833972067901	8.83531783933989	8.71274307618914	8.51919020452223
+"EFNB1"	6.52172230649204	6.39920743058497	6.32600895997238	6.49101494896515	6.17673493343869	6.71455666057541	6.90126925789233	6.46644034598285	6.37185787258929	6.39420578735844	6.45953243011086	6.33870339119717	6.63945818733142	6.88659500693133	6.44067483123101	6.30798198930673	6.27043505534426	6.02263260843666	6.47885842354617	6.41942643955949	6.6827410876323
+"EFNB2"	7.88115437098055	7.66817700292906	8.51891134337246	7.8217503952442	8.42424883196711	7.92574783846469	8.02600821129259	8.03188044943405	8.3969991750356	7.8029435141571	7.82359035086683	7.74587179042062	8.13079835177864	7.84417407205762	8.04809888486815	7.18284881966842	7.83930860308584	7.75189825743677	7.66093297230288	8.17776868458379	7.69483618495746
+"EFNB3"	7.60656152572416	8.74158223249862	9.13783067457653	8.63622578543468	9.25088022338571	8.26486962561816	7.99719487044153	8.34731139230797	8.87518640160155	9.00387694194977	8.19471254442882	9.19883133075636	8.24905434046025	8.07571115834063	8.40008939786185	8.78846791189462	8.64541492696387	8.55304546582656	8.46797521343546	9.65444974305584	8.99978956063169
+"EFR3A"	8.69682324032896	8.9956599157646	9.30052671668293	9.30345989265501	9.42215332510338	8.57758012074701	9.02372709490125	9.40901953035921	9.57004052312253	9.36793176766566	9.00328940327959	9.64403895774102	9.01251384795679	8.75894544808768	9.75557911335989	9.05632277075691	9.35965842250226	9.09942104065757	9.33487218934216	9.34442790976753	9.85048591700725
+"EFR3B"	9.33880305900878	9.49640033414633	10.0623203294754	9.48464443961462	9.70031004019656	8.92468362585996	9.42629624925507	9.22455646290681	9.36232835493152	9.38284620817769	9.2972958719835	9.33250008744128	9.38866220510811	9.18426813070464	9.015989481863	9.21691300637493	9.33880305900878	9.28803262810333	9.32656887741391	9.72220377896565	9.39692362339286
+"EFS"	8.2663374843725	8.65585070922694	8.34192340926824	7.76356966246975	7.66403688889027	7.71508652006464	7.61571729168261	7.41845861314087	6.51200179645717	7.2093135987845	9.48831695136636	7.37431582959887	6.93171570161897	7.77573639279063	6.60034626398551	9.73246048617333	7.34958627253175	9.25605459110994	7.37913393162291	7.45348927914031	7.59345505699486
+"EFTUD2"	9.40224717995001	9.14107385267928	9.52418053615885	8.8864155642628	9.48699664005169	9.00972436458669	8.43679009138479	9.05087521564616	9.06395169897295	9.45645150678164	9.05330454736836	9.29277851990462	8.73408424477528	8.72585420417782	8.916757275734	9.17279994479539	9.22847734696714	9.25352857237459	8.86013206886354	9.5421551674127	9.42547556407149
+"EGF"	5.73652270088136	4.54744275225147	4.76787417388997	4.72417541618869	4.79329914128141	4.42399223793677	4.72083029964895	5.34605329583474	4.41429395746775	4.70181314737921	4.89846151766276	4.82842404409923	4.75799280259008	4.70236679790598	4.94239571772041	4.63816614489507	4.81189390896479	4.83253003256814	4.84653586990661	4.72484102773235	4.64138904876109
+"EGFEM1P"	3.66314728653918	3.9880354004827	3.99181591754031	3.34945133889531	3.42676529041819	4.14320380350545	4.02078690082272	3.64646847182225	3.36774315343474	3.31394912552841	3.62589837570552	3.77278126703665	3.62732566332204	3.82287443372864	3.57206632667423	3.65106076888115	3.79340624972589	3.33797231586584	3.62589837570552	3.36774315343474	3.44090776777972
+"EGFL6"	4.38586317875218	4.50749829905491	4.67431923334497	4.50404543488868	4.40735347728611	4.15208892540975	4.33572963034698	4.35947054090396	4.47683196041362	4.73632460411616	4.10505414806656	4.48017167152022	4.22705739384145	4.12115714281301	4.34634699370544	4.53593994575845	4.45512849668933	4.19548379926112	4.30862721039281	4.62936857914431	4.55922994388461
+"EGFL7"	9.0271959255175	8.3022559296001	8.2663690276234	8.47765833419309	8.26620792529446	9.07291845800762	9.19597566689501	8.34595975324479	8.36595011035727	8.50203469196551	8.09978836987145	8.41828000603213	8.85036625170725	9.08099745478678	8.50334415071943	7.73104926808009	8.35998889356118	7.90767328732798	8.54059008352562	8.68207372965253	8.53467657073644
+"EGFLAM"	7.37979582372672	5.77872950452485	5.52942504512799	5.67034722458347	5.50257563804386	5.4201814102426	6.02470987206595	5.7111270292834	5.57949146080195	6.00548762321986	5.36796696878995	5.60397920993773	5.44598285244874	5.83248475931933	5.52526740092455	5.60921428610375	5.49186014986416	5.40022439803041	5.55329162421174	6.00717309610298	5.34806607120595
+"EGFLAM-AS2"	4.20110158995366	4.41541075465144	4.25413034699843	4.54149259782068	4.45594950101243	4.37104948368516	4.92855489983729	4.2493817728559	4.68003241497833	4.50241322277953	4.54751080496412	4.76099572068005	4.58905007410528	4.54910731817382	4.66134925569426	4.65193520833987	4.69254648160447	4.22851617798354	4.47433531885959	4.61592683766649	4.45594950101243
+"EGFLAM-AS4"	4.11210587241974	3.93668319481726	4.09537213531314	4.05224942863385	3.94847753638272	4.32356645216376	4.10954906034117	4.04363475663887	4.053216964909	3.81026274751036	3.75545174961138	3.76094279159022	3.89727769138676	3.75545174961138	3.96525629957271	3.93668319481726	3.93141097261815	3.84054160309622	3.96469594431257	3.93668319481726	3.93668319481726
+"EGFR"	9.29428627504938	9.22381003993959	8.57223408998061	9.01320864722837	8.71147204093828	8.58995522349297	10.134649584356	8.85862407164569	9.48104184448511	8.66077449690849	8.61368046044261	8.21586498333776	8.81185647336119	9.44217320708399	9.18822432984457	7.77248563767279	8.81185647336119	8.52040886108564	8.86606226665472	8.9239728501302	8.26786163355985
+"EGLN1"	6.14125744509833	5.71274220660849	5.12098677201196	5.93058871237019	5.86044939736492	5.91334991416516	6.1238333386807	6.01560146661644	5.92762000742978	6.14744930439438	5.9672976589567	6.00835163979152	5.92645224880672	5.44004137240057	5.53298903613023	5.71526505182296	5.89891623595327	6.25446530797102	5.91536334384264	5.89094658898843	5.78303774470649
+"EGLN3"	7.95849220454551	7.35247427394731	6.9664043423685	6.86514611500985	6.74713836034305	6.59755022114311	6.87749583656205	6.68991709560082	6.77217751472889	6.93980230513938	7.37108669866443	6.29890982207232	6.30557303864146	6.58330583103529	6.48156231890476	7.48424526851699	6.42645112069477	7.55241366183374	6.12702591108251	6.39135568150131	5.94010430881428
+"EGOT"	3.96221871463072	4.12359052740168	4.24777384122572	4.14415035736345	4.17429674665002	4.86401178728524	4.55866969723352	4.27115988562669	4.84284762802938	4.3115555604139	4.20745699547194	4.52554714778831	4.31390429660707	4.41490650374381	4.41553087034162	4.0384053057449	4.33669984869177	4.3115555604139	4.24226398336179	4.26151172098861	4.49782916839475
+"EGR1"	7.07792188911098	8.11971397140437	8.00539155117176	7.29423435484811	7.51070360625876	9.10845503665453	7.46256718551284	7.84698446320431	7.08719299122333	7.02451743941971	7.04883623842168	6.68232887951518	7.456355762506	7.27919251996212	7.51895745040816	7.73106042901612	7.46413890073073	6.5345336706397	6.90167052888097	7.37094825325025	7.11926108276694
+"EGR3"	7.01078158401532	8.48833922628444	8.79620351936569	8.15216584716827	9.00922074561656	7.06922773444854	7.5767555011942	8.44662660397651	9.02497611690181	8.50614601774264	7.37112855999153	8.40021796933441	8.50424762891971	7.6873799336937	8.43339861911428	7.64424375706763	8.53066243015486	8.12688905511755	8.02419716413623	8.45248089063635	8.47192762163993
+"EGR4"	6.05288433086599	6.81449169060131	7.75621754580014	6.61298631100188	7.07279022532445	7.45987202794964	6.44099060500682	7.33427450935547	7.20527983298531	6.36100880584957	5.78122345771429	6.07650775961619	7.27247162178819	6.61129623942313	6.24815857287796	5.0598430004621	6.8356473628951	6.02081367524373	6.56572325597527	6.84657648309426	6.2030763496523
+"EHBP1"	7.58910849714929	7.61190097925539	7.46065732852301	7.69120460121473	7.73620073536055	7.65537312457073	7.45909137592536	7.89242505019171	7.97469899252957	8.10561136129169	7.68109101462857	8.15950183544148	8.05637604070626	7.84731942404538	8.00628259661752	6.97718391836042	7.61703968907533	6.80648965394925	7.58170509571989	7.80335485676839	7.2122301480974
+"EHBP1L1"	7.72947793039052	6.80309739702183	7.11144258903652	6.79412929472483	6.85627934396362	6.76869301011757	6.98713050202263	7.07090226584724	6.95836288815108	6.98658887428142	6.92468802545987	6.8496073364545	6.69648138932518	6.80001300251367	6.30760285873255	6.68480875861368	6.57428070025303	6.84275029405119	6.84620605216482	7.62316270486671	7.04029151883567
+"EHD1"	6.14703562875854	4.98097011997479	4.71695346977773	4.89927245712835	4.83395098572154	4.93001832176117	4.82614822850746	4.69762327636407	4.72843290986821	5.41879022542425	5.39256889886875	4.96005805864794	4.68967955839419	4.95378769381059	4.65706642709281	5.27559744243496	4.8530811086009	5.23723153847947	4.75682933256407	5.43288985297985	5.10536754622223
+"EHD2"	8.97952655527697	8.17749475364079	7.88572712816203	8.16125650090035	7.90883542306992	8.83511413981401	8.4515670089078	8.3059295549114	7.84848789709514	8.10356968585932	8.52917552338292	7.95507205566867	8.42071213013314	8.71935983332311	7.73123724987208	8.0482725494657	8.13215112780355	7.53563174481431	7.82619404778257	8.5696066116495	8.28663371379118
+"EHD3"	9.89818486818782	10.2621281772393	10.6535205169027	10.2215945116205	10.8870255392926	10.5155868629682	10.0182619824677	10.200496939829	10.6955553364266	10.7627750695524	9.62501702739947	10.4991401396625	10.4347942042318	10.1631278927836	10.4323120254651	9.73420415864736	10.7156088380422	10.2496957210352	10.3246378275843	10.8139387510367	10.8245672220265
+"EHD4"	5.87039666112133	5.58998915888436	5.38942143449935	5.53033938598343	5.47816312660491	6.13390687321114	5.76159917931413	5.71011156651643	5.67593138489352	5.18291890204122	5.7618237293816	5.08036415609854	6.18516540265592	5.72211895173403	5.66156474000761	5.5926248441978	5.08814016156159	5.58966808431458	5.41297647028195	5.89669505114635	6.37444956670992
+"EHF"	4.4338526546948	4.37358660193289	4.47345818549412	4.00744350878623	4.33218164897358	5.94814617374781	3.76335657224098	4.21798791693757	4.12531801961014	4.52485960714104	4.52455582905896	4.2330209192495	4.37613430998672	4.16624935159647	4.40766466813538	4.61747090137865	4.51918947622553	4.78405986446021	4.42831093842906	5.35318519004546	4.70314667867307
+"EHHADH"	4.99169548668545	4.37322498230917	4.48206399545841	4.34227119376949	4.41857211990144	3.91747881625649	4.35365121247716	4.64469556892634	4.43608312262627	4.24854834495306	4.70092915021887	4.40808960617868	4.31960029901497	4.20806541406449	4.27175578450104	4.34227119376949	4.28282932233891	4.44736136396454	4.30831738406908	4.30059891102615	4.20961577910209
+"EHMT1"	6.9406625738089	6.98713050202263	6.97808406682148	7.15491274336625	6.54193595384785	7.56916346202754	7.48072470703536	6.92236321129175	7.25400185324567	7.05200090316506	7.12554179560248	6.90361623974522	7.11954809740867	7.25326444480056	7.22125285092824	6.48579586439109	6.62366238199057	6.53251319533415	7.04895622480787	6.70098861446251	6.72537380990356
+"EHMT2-AS1"	5.70963935082433	5.33832589004415	5.60525575485078	5.51541920978552	5.58118676923211	6.11957157009945	6.21353278657724	5.46450245150408	5.46530042856382	5.69026964658553	5.48120102317069	5.74660520446128	5.89293621066521	5.99780460761452	5.43867973693878	5.45244010744569	5.60525575485078	5.64087637028107	5.89026159855339	5.48732244070709	5.47517692899235
+"EI24"	9.7013458857768	9.39358744712337	9.69988978993408	9.69921122366605	9.50426947809201	9.86028096073662	9.466289706296	9.37619182180499	9.73327431562789	9.48219605289388	9.32042689451849	9.35781356772664	9.70188789721041	9.50947526903583	9.72596987120309	9.5145544396356	9.44295617410813	9.33511986875164	9.42625118360372	9.64378484192492	9.49974037696271
+"EID1"	9.15970239840282	9.47735285585133	9.51191827704244	9.37632794806001	9.75614335898133	8.81421918662221	8.78887729566536	9.2162460102089	9.59126239702942	9.97420071971646	9.71517790615246	9.88829761291921	9.05524702462934	8.73318419963793	9.07754794487718	9.71736050374269	9.43064485385752	9.88773498364082	9.52858218707737	9.96728918621056	9.57924339601002
+"EID2"	8.4599879491965	8.85331482160875	8.99126921998935	8.82618023930962	9.3997741708595	8.19464458754918	7.70450004670839	8.59658549905211	9.02962629091053	9.70753403013333	8.65636883923173	9.19371642172297	8.89508504376591	8.08830933491176	8.68552113055725	8.9581473327009	9.03243630243636	8.72901602039906	8.82118654922118	9.47414788360661	9.56216926117578
+"EID2B"	5.51711185281046	6.36777469678977	7.47807597856857	5.82940576858365	7.3039365229842	5.52205820336304	5.31659212335255	6.61154175743325	6.01603785513172	6.84321476487442	6.44759966879847	7.18414074769976	5.70325493302407	5.69238590065789	6.27919482546084	6.22098488659576	6.3122247658107	6.72532160520983	6.10271985819724	6.86702109607887	6.42180914631157
+"EID3"	3.82338622844901	3.74080337768664	4.1236721174476	3.93539648206835	4.26643659275924	4.29404412030705	3.40093833236884	3.61878495128852	3.98209790351984	3.79269740513381	3.91272478582379	3.65629274607858	4.18875759707818	3.80670256605165	3.83400205415957	3.99056687805244	3.91272478582379	4.10829019971009	3.91272478582379	4.15654512419627	3.52894823421964
+"EIF1"	4.92218076913755	5.33374991587533	4.50881997767522	4.65523139403047	4.57468963820409	4.81125105601897	4.89174923598519	4.85952217303381	4.64384585296853	5.06050474172324	5.30890252791078	4.89367624294836	4.65303776786272	5.02388806884476	3.88617421395943	5.31279235361613	4.81831717610746	5.24866288010519	5.05609360396161	4.83851391392687	4.7869464073303
+"EIF1AD"	7.17072780834861	6.91295685230012	7.3894676451302	6.94338561411856	7.14183062388158	7.06545111324379	7.05041859416119	7.13688594908962	6.73297056588654	6.64421179131097	7.08228624491588	6.33471183805022	7.058508960517	6.93196560475969	6.97187435638636	7.39596653589848	6.75268157631089	7.53737728060813	6.98652960989901	6.76612842812603	6.5793184786918
+"EIF1AY"	3.22720447833402	3.19483145336732	6.38112822941393	3.09436293317502	4.81327707603382	3.34215571292522	3.32193046604102	3.46842704412356	3.1644987784963	3.33707944351569	3.03453149520587	6.54456576016942	3.25701580474096	3.10189878170763	5.0155571954374	6.60892375731051	5.93380637830904	6.90539890503386	5.93655432346757	5.67593138489352	5.36724102242157
+"EIF1B-AS1"	6.8207549973045	6.9900039635828	6.93642955029445	7.21303253894736	6.71715455390567	6.70388994112816	7.23613347657195	7.12097923495805	7.26595919001732	6.86279504249139	6.92167751107038	6.982466823527	7.27263131536736	7.00060552815114	7.23616827830331	6.86956159501926	6.84479658611221	6.61761322448058	7.25994291254052	6.7492331620295	6.93402001961093
+"EIF2A"	8.89478025958041	9.00137895109061	9.00158493079005	9.02433083196692	9.44135882694352	8.51234136486508	8.47797083318281	8.88913194299774	9.39257348328545	9.41917051067295	8.97612501209856	9.28288340974891	9.19799107256146	8.86631839872411	9.20604830263912	9.20194156074942	8.6056919641027	9.27572381002135	9.31531656233271	8.88752826557376	8.97429554780384
+"EIF2AK1"	8.37237649104342	8.35539128642612	8.61851532756827	8.01961162650813	8.65777288983282	8.11512183241129	7.76636482825917	7.63407427486007	8.10329842959062	8.64885032889994	8.04462925296792	8.06385721197974	7.68996845558709	7.87719524215663	7.61536685956931	8.23630409543269	7.80362192864796	8.71752777982038	8.10659894520576	7.93475958602346	8.36759747678359
+"EIF2AK2"	5.24144991351191	5.01393712820063	4.64348715048811	4.88174324568372	5.21566026241007	4.5080551950687	4.69423252534098	5.01393712820063	4.90525027558158	5.27861652645275	5.13057586444847	5.41084722351133	4.79695521197157	4.59683423608607	4.32376479675659	5.32538177697305	5.13978096394019	4.9491821996573	4.87094789658464	5.48582412295653	5.70887341855837
+"EIF2AK3"	7.62748605223042	7.43548372893896	7.66333969882856	7.20479807799767	7.61600087350402	7.75157476966583	6.95005339748469	7.40984688685213	7.76541731401103	7.17807361292493	7.76804582533845	7.07660300027284	7.48628056034535	7.35018318381478	8.00432172488057	7.93110091561244	7.59202074532285	7.90562429918331	7.4051503767427	7.54205851353664	7.48486406462718
+"EIF2AK3-DT"	5.2242669111953	5.29522081008749	5.17962094030529	5.21729290729765	5.26427929001776	5.44061319479109	4.99258081598066	5.24409638371412	5.12947803029888	5.07234827771481	5.51381006528869	5.29267247810983	5.17260805170945	5.02527111602161	5.42315575070873	5.62053501706094	5.17907679489646	5.09180578209615	5.16011679921693	5.3373129270475	5.17825522198582
+"EIF2AK4"	7.50338498144771	7.14009089403388	7.48659732311367	7.29001898170583	7.09867046988351	7.21414721982182	6.95758766550207	7.30416136222914	7.43402405223144	7.41166369093342	7.31811384615841	7.28378327737661	7.57259896787477	7.2964261357508	7.89062146953473	6.90831918645332	7.42455797073357	7.1883029986307	7.30190368415053	7.45600049212643	7.17226795475895
+"EIF2B1"	9.02938563134428	9.00405363319037	8.99973622119628	8.8908223394407	8.98611137801224	8.97105183229662	8.58713071767159	8.88221626096451	8.72296754078233	8.8518286762096	9.11769168669267	8.78377643012585	8.78559993741705	8.83971466880696	8.80543595580756	9.30012597665806	8.71745917342349	9.28909823402547	8.77658175499443	8.94163738786856	8.93833738923811
+"EIF2B2"	8.16038251765708	7.89283850907317	7.89225679225814	8.20783350984103	8.17329128218281	8.28200038444295	8.3938731206339	8.36238815402765	8.20228813945588	8.35259745449699	8.09645116517481	8.00053747065586	8.20090888206756	8.17836154291578	8.3162122295938	8.25922093468389	8.09908611438352	8.52401614359441	8.20147396579979	8.40146696631131	8.23015515015199
+"EIF2B3"	7.69997176069919	8.07379178943939	8.00539155117176	7.78430648731086	8.24558496480222	7.85157555359208	7.28932937938961	7.66765271512216	7.83713925153259	8.28833725681815	7.93779512035476	8.07651876318369	7.67730507865355	7.4437282189801	7.69457720378297	8.45889669067588	7.89946581535078	8.14383844213369	7.69684508029593	8.40029566379794	7.92079750335507
+"EIF2B4"	8.65516923866249	8.38359525397513	8.51207708348928	8.29795646813352	8.36766846935338	8.53528011884217	8.39821520933233	8.49111374961157	8.36075596423226	8.2867510198569	8.35022958879456	8.09187406690971	8.20039359525613	8.14253656120497	8.55495198871817	8.46985043014301	8.1797026074583	8.67691104945242	8.22540909011863	8.47866425265354	8.25547621937484
+"EIF2B5"	3.82852040706808	3.94455582282733	4.31621737158773	3.85363613063201	3.83512871572647	3.97898292490109	3.99275046343093	4.16702496500139	3.7686236235222	3.94455582282733	3.97019071413958	4.15771491268918	4.11863632448611	3.9949748122071	3.94455582282733	3.97074784281949	3.80598499983791	4.16783604475777	3.97826305349512	3.58027976362556	3.98221388820629
+"EIF2D"	8.66798651092404	8.54455342698535	8.6374439678631	8.0559889039441	8.31311627695052	8.52261250976522	8.43550619477767	8.47942879524377	7.91348860531146	8.10369337187762	8.71465987265826	8.36533606690055	7.9387061151156	8.32870895993279	8.0698490957281	8.7653921601176	8.16454305450095	8.85829609785831	8.41890755568416	8.30858356421284	8.20220355688345
+"EIF2S1"	7.89138131738016	8.19125179647985	8.64082076690867	7.92120148581785	8.70342254601604	7.72690477779114	7.58536621439201	8.1778802341281	8.1778802341281	8.60195408718706	7.97506807878978	8.34012134760836	7.93072786698538	7.85553818372711	7.94142278677567	8.44997899156031	8.13582615702471	8.46366669832179	8.03621812951215	8.56367055987977	8.31132938097565
+"EIF2S2"	10.1251144542832	9.53090796283015	9.28047936276165	9.486106790832	9.79739605766754	9.76185317227374	9.49381554699013	9.94157085717379	9.56780082989139	9.83063482846389	9.78720642918348	9.73874151871862	9.31443511017275	9.33064133405606	9.97014441438716	10.0631464851536	9.32230317054248	10.1918307295471	9.78443516376223	9.95681692593386	9.80611993392039
+"EIF2S3"	8.204149257044	8.36847047438633	8.52179669494381	7.76761330393322	8.53947665467099	7.3479201933111	6.78908901377961	8.56130137176805	8.1408082002488	8.36568899582612	8.4731537388002	8.31291070378264	7.65615181052405	7.51554080724097	7.60504220309437	8.35535524379485	8.46556513445126	8.13609358246892	7.65622597687847	8.25809697382729	8.32110873316697
+"EIF3A"	9.15494412455505	9.09152461052535	9.15435141085807	9.12599597964904	9.46272152858586	8.4134523299024	8.51969237868932	9.18704283751395	9.23644649441697	8.89733945868423	9.60713153636283	8.92229206827021	8.88123232436036	8.79122330867999	9.03945809608664	9.47819058896596	9.1351063965323	9.34597766780755	8.85083721964603	9.00450519700198	9.35656583840312
+"EIF3B"	6.31740114676094	6.202143603654	6.32435846648355	6.08425317630254	5.76957280004499	6.47682853854778	5.45251812186259	6.32569230136125	6.1081096291549	5.78843445740276	6.59361593165903	5.76446081079061	6.19792577420024	6.28776486167728	5.99851287246902	6.31679025682004	5.69276152667442	6.72470473760431	5.9381330782957	5.64501781360147	5.84892185514082
+"EIF3C"	4.01395284249705	4.35614464234577	5.38409084552992	4.48229923762552	4.27367281407285	4.30358687717246	4.12277037477552	4.62458943201228	4.79796106226635	3.93438467448884	4.07036287763145	4.42995123479613	4.45519287286854	4.63480647218192	4.98033265321673	4.35738075198966	4.55974308300449	4.21808463664931	4.44426852656153	4.2803829338629	4.00324629283012
+"EIF3D"	9.71706858760295	9.53211763816476	9.61028390634874	9.17062358503738	9.45241112511939	9.39334558095505	9.0979520862689	9.3420491358891	9.24997873759961	9.55749814199719	9.57898914314116	9.46801847350497	8.97376924989008	9.17586771523288	9.0640975604347	9.76905673146606	9.28584594580295	9.65620140217031	9.52076036966221	9.81072555147385	9.48995577820618
+"EIF3E"	10.6249716757927	10.4511577029056	10.3895763986547	10.46045388545	10.3197753402929	10.1438766617695	10.1820832011154	10.5247011373436	10.6562352303328	10.5018941994098	10.5784491463995	10.4833120825484	10.2138638520015	10.3832803236713	10.611944079093	10.4924678450394	10.3870214563972	10.354927741915	10.9763726508328	10.5380219354229	10.4994911765885
+"EIF3F"	5.71213638233169	5.72760075666952	6.15860067646121	6.21902889249841	5.89533459880316	5.23576178257158	5.63766897526211	5.51484912401874	5.8704121990033	5.58684360035905	6.51684591522798	4.68299222999808	6.31956111593314	6.1527208541933	6.19699090329431	5.18661329742209	5.22263766123118	5.83586773886685	5.56641133374154	5.34854368491894	5.6315159178785
+"EIF3G"	9.78894098156975	9.0541363530133	9.14799472446488	8.91382082747095	9.0614032080398	9.51767873634103	9.3338326845077	9.10092865984131	8.93083958024486	9.07689384736919	9.18012002399943	8.89980147294477	8.94655085604557	9.26102474198762	9.2000392057767	9.33213092242984	8.90995873759635	9.44126455921617	9.20346552263566	9.26384099001192	9.10953862515919
+"EIF3H"	6.28243083107615	5.10998278684877	6.69571182069384	4.8481180790022	5.09383484165144	4.9317001375414	5.41892217583108	5.13982415322606	4.94974709839558	5.47957543672964	6.10814379881768	4.85567501677193	4.77172196426664	4.64097756261556	4.96175929309393	4.86986392122983	4.67741581378734	5.01668011166077	4.86059013601236	5.90839603067595	4.9964134536685
+"EIF3I"	9.28828050033244	8.98177690498293	8.8201423997212	8.86151843233933	8.92119341607404	8.59096316650736	8.90501075790844	9.17449233668248	8.96124503737633	9.37066464800177	9.07607880285606	9.30959796671328	8.95269018334586	8.87138963388686	9.03794683680172	9.17144783753484	8.99447586947791	9.10564134313426	9.02020353400115	9.50842805349219	9.34720794271156
+"EIF3J"	7.1562525958749	7.52351305887607	7.13909352411579	7.39897233633728	7.79390589094146	6.83434152205371	6.77644972505171	7.55550716447099	7.18674280434193	7.33539865389139	7.69419317899003	7.44263420622156	7.20104552143357	7.02365249229908	7.22704443361305	7.67751107606251	7.32690111943416	7.69660084573379	7.39536828856483	7.33232994677338	7.24028181676197
+"EIF3J-DT"	6.95863497421632	7.40855134371697	7.23474880956608	7.1292690216172	7.57495511559805	7.08837564408687	6.60495954015208	7.38740649402848	7.23685383998074	7.38750137105438	7.413006090115	7.37992771784555	6.97625912260208	7.06130003741982	7.36924341730627	7.36107105018998	7.16770100718231	7.63928698649261	7.19411495732599	7.34140023580729	7.38022718053845
+"EIF3JP1"	4.12773730326951	4.19629594239036	4.12187320831956	4.2854714069172	4.32055389245276	4.28963687058361	3.83301450760118	4.34040785815244	4.0259994381422	4.15073489243487	4.54751080496412	4.35277669297731	4.08109253680489	4.01496076650027	4.34300286314906	4.30440537756266	4.17044492628538	4.55058860755168	4.39661490576675	4.16325644402003	4.20862780877741
+"EIF3K"	7.36347120848414	7.31515980586099	7.54235326043389	7.48999259323526	7.07982956681429	8.04936911237815	7.82221935963308	7.21375845586101	7.45204965160214	6.95445969294577	7.35826570804712	7.10708774013821	7.68207558350553	7.70283900930705	7.77060277070666	7.04094909239641	7.22128116783431	6.88382293430144	7.59224314389306	6.93325625895581	7.14302038721268
+"EIF3LP3"	4.66695531898697	4.90839132343029	4.71261892702183	4.70330590175963	5.03985544285412	4.63201300279726	4.67897429363444	4.74061244346942	5.1092813376445	4.8499706588456	4.79126968670464	4.76213139992047	4.87719985695832	4.828637177327	4.63806522485144	4.62647128653152	4.60602786418399	4.64647204054547	4.85548815151618	4.79613453009096	4.8733562830403
+"EIF3M"	7.71523549956164	7.77460492018795	7.43625155785846	7.60278843948626	7.8338790890374	7.08449379943379	6.96516817865955	7.75111850694899	7.71249029144047	7.8630190200714	7.94853210408432	7.85241994501893	7.23957046441903	7.17154777798241	7.55229150681763	8.05354080067918	7.68484002856398	7.8624792605029	8.08172014216234	7.87747921163501	7.88332877067864
+"EIF4A2"	12.1609508665932	12.6403953722339	12.6741586098952	12.8514515967749	12.9053843747159	12.2544818578105	12.1140958933969	12.6661297522642	13.015299954488	12.9668045181993	12.3381192150649	12.8538395129674	12.791553955596	12.3411148709524	12.8018224057897	12.5403717250433	12.9886799851828	12.6275282129028	12.880117989939	12.7406435693333	12.9579579213565
+"EIF4B"	10.5679833464754	10.3494805360862	10.4096626137082	10.2312994769312	10.7681907619781	10.2906293579217	10.3064261398611	10.32774706617	10.4005588152866	10.5504320348917	10.5974414440125	10.5758211209446	10.1454700109214	10.1270821169906	10.2453357432415	10.6383201846673	10.66627234185	10.6379665885057	10.644252054683	10.435722412897	10.5559321485049
+"EIF4E"	6.93838926478756	7.55688341236393	7.94591677254938	7.4606926254174	8.18230648231339	7.11892187387028	6.84629469931466	7.03750879376874	7.21056604095148	7.70599923346897	7.68687680758034	7.76663417020731	7.08596871134423	6.92192152701312	7.42538422037626	7.64714293585864	7.55163008992867	7.81565119071814	7.47230535142241	7.57211965051488	8.08492310290284
+"EIF4E2"	6.9442847726083	6.43985291750358	6.92573298154689	6.24805382549595	6.13440407338121	6.74174930689399	6.48383769082165	6.91422244900606	5.9902825038685	6.21981527161083	6.75221740265522	6.54503548191037	6.26886550375938	6.18353231786703	6.15404594836694	6.70073086001883	6.23119518185049	6.72997971317818	6.67981843391612	6.64106979937966	6.13410005714352
+"EIF4E3"	6.16542544545917	6.50864653153082	6.20528759901611	6.48736446627437	7.32901187255385	6.02244363371046	6.06699468930947	6.46364231185574	6.60946148853194	7.35803521367667	6.92904448029094	7.31720457986075	6.25596797693458	6.08977297808427	6.14117216891384	7.21136846668994	6.90642390804227	7.04494013994823	6.82618006799819	6.86876879800318	7.47110251423228
+"EIF4EBP1"	6.94069386317493	6.56854035989441	6.51069169212234	6.53857187367653	6.46043824860204	7.11703997006451	7.2019661688274	6.56777760043105	6.44714519475319	6.73821640323883	6.5236527431634	6.61176981111249	6.59183270257466	6.98677950251997	6.75282791099806	6.38767645103206	6.56530265801998	6.64942964815253	6.7627966131988	6.72890628143956	6.84822783763126
+"EIF4EBP2"	8.22914923809793	7.67347850354898	6.45556593390266	7.09616776508214	6.56120852214126	5.69601751447451	8.024117301398	7.82429565000807	7.45096255966356	7.57385063697792	7.24373706287735	7.50804018366356	7.11904302837133	7.17854792958793	6.93247526832396	7.16520775934502	7.63714697361882	7.01872575538232	7.60986359172829	7.35692378467412	7.05092678985903
+"EIF4ENIF1"	8.8113922623944	8.62485154958147	9.21975454749001	8.49891167060417	9.00960247900983	8.67578679659743	8.50354796835824	8.7330263147529	8.72967008712968	8.93193636529907	8.71155177567849	8.70242362803199	8.31747276459471	8.36194001296359	8.65908330572861	8.80937960707516	8.69773437667147	9.13534023283643	8.55635702505277	9.13306639666981	8.84953593280435
+"EIF4G1"	8.71096665070636	8.18809304912803	8.1816623047865	8.32945006363145	8.40822573452182	8.36883671803958	8.61917055550487	8.91671454367845	8.37900900492893	8.78827316321781	8.50043947599862	8.77943210172318	8.35883010233079	8.57133219124048	8.13017057559935	7.99928333871294	8.3753116944771	8.26770710135932	8.27306868077526	8.80100177086815	8.55607800219732
+"EIF4G2"	4.34634699370544	4.4752576076541	4.13171989011465	4.38965413834755	4.34634699370544	4.85151263060897	4.2584785438043	4.43997767611285	4.12798034047027	4.52613417677977	4.26854745465933	4.23625873140744	4.18036565007622	4.30996571093361	4.34634699370544	4.31646733890976	4.33851345004874	4.34764184214775	4.63206563775417	4.65074819476528	4.31193660199717
+"EIF4G3"	6.48153068147684	6.6814718457107	5.61480969203197	6.56147231138104	6.48039791851953	5.88919108910719	6.26903171306483	6.54453950206558	6.48559173910321	7.36051084927493	6.86343556270916	7.27919496444456	6.53771033668771	6.35035777301483	6.32666547316362	6.87980403148404	6.82706252068394	6.50713674819984	6.40430281536452	7.11464439307476	7.03406883363321
+"EIF4H"	10.6654038265262	10.8690076643224	10.6824246630657	10.7006381668708	10.9159402155779	10.6738192249586	10.5289348319605	10.6186969969073	10.7679738279922	10.979572206621	10.9479892097481	11.0147393081281	10.7027963924012	10.3774306376996	10.5526788192311	10.9004761019162	10.8777352450283	10.8056922060083	10.8055357211133	11.094113149038	11.0137628261961
+"EIF5"	9.41561424455726	8.85657648234831	8.18361605823367	8.76267918414441	8.96043344061987	8.32987498488945	8.93279179981778	8.93902663686791	8.49554563656477	9.4982393954091	9.15774748746192	8.85410555295777	8.69520902815755	8.2529824752972	9.38412211718693	9.27713553792605	8.69058856660365	9.64729336191754	9.51967183935825	9.35903085128688	9.41935068525539
+"EIF5-DT"	5.12447565652675	6.35755190064825	6.63223481788269	5.31141193333745	6.35038795033294	5.31182567292379	4.52853828419472	5.92166848509325	5.72011283282495	5.82767518346872	5.56935135805114	6.12953766271494	5.38065476544819	5.47424679155842	4.79412223134748	5.08506923863863	5.95897888462817	5.86454874366612	5.09620479835577	5.68748334246997	5.59976509916783
+"EIF5A2"	6.81849206214862	7.63340909526755	7.91406571608329	7.40955002149483	8.62964397614308	7.49214522191464	6.75993694801565	7.30816070952123	7.74022976704438	8.2197437085458	7.0597230931333	7.98085454309129	8.01426166678542	6.89508071309959	7.84851219529122	7.85396801830955	8.27346272784284	7.83430759118907	7.40007788727353	8.16553331652344	8.52189343333191
+"EIF5B"	6.31789614790134	5.88440355055393	6.33212063622905	6.34249813282622	6.20448580874642	6.57877841708435	6.05084711190636	6.40517744541047	6.20143001050856	5.68040933666341	6.63300719934101	5.68755125467115	6.82107008598136	6.39008157468647	6.54290875135309	5.72694547130133	5.79558972837436	6.25885901300784	6.04716288196727	5.5829262098017	5.84954232602272
+"EIPR1"	8.14565145390251	8.35359137676481	8.71944822102598	8.02293010203464	8.45668380130066	8.28142970343328	7.77869705301309	8.26941828610169	8.46516476643882	8.60246702478644	7.96960035861199	8.53440858299856	8.06096020791536	7.79212247149493	7.89280865959167	8.42500236969691	8.29617953213251	8.50541000136304	8.08669265376386	8.54838679531462	8.34869466985057
+"ELAC1"	5.61695494726481	5.02911786542874	5.22047683075603	4.61722787526626	5.20085812244446	4.71166812478774	4.97212777758905	4.68812437867969	5.04298267263501	5.12906069912838	5.59141450465433	4.83851391392687	4.67182517268179	4.75795979365634	4.39477187318932	5.37482376124809	4.62299656688494	5.42448461550116	4.99854406462995	5.50226584017121	5.13355923038056
+"ELAC2"	8.65298574302928	8.17614634366274	8.34149453123569	8.05515283275691	8.28265268809797	7.94680616695191	8.06540437218612	8.06917108337733	8.04194546893267	8.19520213466259	8.19732245809908	8.30143779674144	8.012754936144	7.98598853688834	7.95190573339327	8.22663347060152	8.16388519675431	8.43006822998931	8.00939634900932	8.26904393520576	8.44316624839604
+"ELAPOR1"	6.17776952996432	6.92906209891373	6.84310868251546	6.58397837342769	6.94630716246288	6.88517583799973	6.03355682069224	6.4685461418416	7.15294667344096	7.33353045978175	6.60417682821153	7.26959366098403	6.7347279485162	6.443834933189	6.71457049127202	6.75716725802045	7.15444351183069	6.36083737692556	6.63861843095433	7.26161151247193	7.1400122480191
+"ELAPOR2"	7.37702848670076	7.49710823651778	7.22750292277962	6.97117843527996	7.33332481695581	7.25919046970416	6.33282091411096	7.00939887406687	6.82620294746193	7.20187081272523	7.48335276214588	7.15801017211448	6.47574034013645	6.86029600587602	6.59143987973658	8.57271517059784	7.19246274848755	8.57768421947235	7.06339145102497	7.28070641591676	7.15801017211448
+"ELAVL1"	10.0040623158374	8.72481863327379	8.36036180094096	9.00139271410903	8.24429086265689	8.35664335787532	9.43835820965189	9.34296210195534	8.90052591979763	8.5081728328794	8.88966106916608	8.59995499346187	8.85069184184095	8.96289380928304	8.68087015860841	8.51261671872006	8.57936639920034	8.51910648642213	8.93304791720731	8.84681462086751	8.60810977522864
+"ELAVL2"	5.96924622704274	7.64089850398812	8.94412350279708	8.15655010720054	9.43324473637781	8.09963530025886	6.2366222829608	7.82257340985838	8.43597789400719	9.01620349114858	7.26192854409439	8.96344769334822	7.88513000872741	7.17318379723816	8.30928155135074	7.82161928220463	8.63178789524142	8.53905187357709	8.272501865026	8.45183093193241	9.12089037667242
+"ELAVL3"	9.07751405474546	9.74878123307713	9.71261035851544	9.82162345435632	9.9278965630689	9.76273519215617	9.15600595484876	9.48049559682239	9.52232701746617	9.86725140992766	10.0514541731404	10.1017745954285	9.56618766938176	8.97730883805724	9.16597047318403	10.4678756448447	10.0005585915304	10.1747446585607	9.77117450200476	10.1400106800449	9.99320015520631
+"ELAVL4"	9.49047930578813	10.4972431878159	10.8325323962199	10.7357449037199	11.1169667184223	10.4815202164983	9.80857329374259	10.2116483917603	10.958347074643	11.2090133618816	9.82365494943104	11.0498624671696	10.9302555610345	10.128734395594	10.7848266045475	10.0714879586794	11.1812524762901	10.2366084964638	10.7222592903667	11.4109781062601	11.096627840319
+"ELF1"	8.09920713114717	7.28304046314004	6.61448105543751	7.28356119163591	6.79512938622374	7.59409558373319	7.14738832808681	7.56110800051456	6.91438709392853	7.07781580458735	7.7317118191043	6.68752154598335	7.36304106768531	7.58643012141935	7.36690500749059	7.60747080858213	7.05154582903189	8.12807348926484	7.37277241479079	7.03616318889648	7.16938813387299
+"ELF2"	8.08092698102881	7.93459390437943	7.59669455637319	7.91582468661242	7.61894957941646	7.77657740579705	7.54913716313271	8.29482031453574	7.80586006433634	7.54363155484774	8.08042341561026	7.69267180193793	7.56709198068992	7.56305579118223	8.13292838120373	8.46098714216253	7.87096133250529	8.29310838878722	7.93009205017503	7.64176193083015	7.55505736971805
+"ELF3"	4.27698755506852	4.26890013161434	4.26795949932763	4.23702769454379	4.49997660299284	4.47021025980984	4.61835193583097	4.32828064835751	4.30898823238888	4.2493817728559	4.2431327365825	4.16340132948383	4.30898823238888	4.20748073523672	4.35283241137725	4.32755192181119	4.23660949202467	4.18991963433348	4.27698755506852	4.27698755506852	4.32930752354101
+"ELF4"	5.65660283540601	5.49477410962731	5.55609215315353	5.47692846732754	5.68896893223457	6.85793508455455	6.0611057751678	5.70298390433626	5.41981714804801	5.37827694892718	5.36402330609715	5.29703708769806	5.88290477255524	6.15363201922677	5.46170605257485	5.73904050811254	5.29143755833005	5.76483742410282	5.43495742234692	5.67834667684188	5.78803416983737
+"ELF5"	3.97494578363806	4.34949878999009	3.90557952570915	4.2156808866812	4.33456110424258	4.24194299370149	4.13281408047729	4.19361712848083	3.84642055884405	4.12964946074176	3.81067892208576	4.12964946074176	4.03823494037655	4.19188399619176	4.32775564568797	4.12964946074176	4.07316893915781	4.00845265038348	3.83451769763902	3.95351854058308	4.30291884282523
+"ELFN1"	6.48461759990843	6.42173213926084	7.09549091416627	6.8429239918306	6.78877002418138	6.77551955118387	6.94042405135042	6.47477287558247	6.79834616838683	6.64508084960825	6.56319457132155	6.7395437378934	7.01174186094262	6.79015666489124	6.88016231136261	6.50320574604373	6.64367033663774	6.51917094596604	6.76027676260847	6.88396370765438	7.02752989211184
+"ELFN1-AS1"	5.61398114693799	5.74183270047777	5.4747066176486	5.9480776012261	5.78212174721307	5.82835007658995	5.77712555612514	5.54963860469205	5.97869432322653	5.62340049632479	5.47721522889398	5.85099954704659	5.61632076283361	5.74867574408923	5.7049130712805	5.67542680653566	5.68252365059641	5.30608512784853	5.68437123525303	5.62727687287332	5.95951525238285
+"ELFN2"	7.29380156464076	7.79034490050613	8.07323846635489	8.03751960356099	7.37689442179827	7.76633263205943	7.82310741975931	7.53624849049879	8.12051059183653	7.66528329430372	7.31173191250305	7.88066350977391	7.61518683933546	7.5709798260358	7.63859878611933	7.18088789614819	7.8151036009595	7.26471865750569	7.55576328200034	8.1138880731839	7.81582428045713
+"ELK1"	8.59855658804925	8.12419330113015	8.29024935373026	8.97160391839441	8.65346415261128	8.9295280388513	8.11959204667041	8.62559673636678	9.43460747531245	9.14260928030045	8.28915947905184	9.21773705960207	8.99620826452464	8.73279719693976	8.81506223726288	7.87959688453296	9.17363293515079	8.44623159090566	9.20633600399216	8.59086378089361	9.05858147352818
+"ELK2AP"	7.81447502400737	7.84088344180672	7.87483780455043	8.25915180494927	7.74740629287077	8.45414390654479	8.35790383131386	7.91627164153184	8.66599205261805	8.34329603175889	7.78514212032369	8.03400597567736	8.39614295812972	8.11161432482934	8.30729153556301	7.42475216589016	8.28593698681719	7.64703175849061	8.27394710991573	8.01887045295991	7.87069598014447
+"ELK3"	7.83818280864175	6.443834933189	6.14519893632813	6.16765980808033	5.95897888462817	6.53183782080105	6.4798062720434	7.01985950081913	6.29769654846486	6.04867303231344	7.24009044005171	5.02304238563046	6.48339820737955	6.36282739707957	6.66450881872593	6.30186167821616	5.91373257738978	6.36106056355303	6.36282739707957	6.31339373270988	6.36282739707957
+"ELK4"	8.47301891070964	7.944373133181	7.78171856230645	7.82900640210215	7.61202101126149	8.24840843207759	7.86571905903814	8.10381943275898	8.0820995124113	7.52968636209555	8.0991435001629	7.54652226259621	7.72888671952026	8.10336137444811	8.14872541388792	8.3920540339412	7.62427325982931	8.65554966662103	7.96352892646338	7.76853989504387	7.5564245450999
+"ELL"	5.18355484197021	4.55268301141141	4.537699768961	4.65460138190775	4.43861910495428	4.91505053058439	5.12894036035338	4.84858605635451	4.79726130083194	4.70779697725139	4.90891536730434	4.9682606398056	4.75384912646536	4.68427239780626	4.63417810994288	4.54772221803909	4.89880963868015	4.6067420742545	4.74591010325435	4.79587791842829	4.95957190218042
+"ELL2"	8.09882127042195	7.79281111980169	8.20417607541702	8.23509650145279	7.87245603407893	9.30680538556534	7.5705455837723	9.43259976025099	7.80061112781087	7.07637200547968	8.24197552472421	8.43434052904676	7.81671930340301	8.04709582093918	8.11433316452457	8.46020731246832	8.72971528491676	8.67030171888549	8.46354463002903	7.38928913644858	8.18369919974664
+"ELL2P3"	4.06483698721325	4.43300684097567	4.44934097382103	4.38868458282386	4.32461632713217	4.14252013120543	4.37937922377156	4.24433958925473	4.31485906316091	4.13739172364391	3.90400691443278	4.23648400349538	4.36331610319183	4.34343662296139	4.31679371120894	4.30444364491175	4.20402032494732	3.91584310601801	4.36453496980775	4.1832088445116	4.37773725239219
+"ELMO1"	9.2826426188055	10.1455059408094	10.1620547533256	10.2183570267619	10.4348827737682	10.26489653061	8.98355398591949	9.56817685264145	10.2112454608536	10.166624152316	9.86212173467812	10.0131364466617	10.0948834096725	9.40875640721736	9.71733825978417	10.4801105379256	10.2882230130969	10.4762552374034	9.92118574003123	10.3298788911175	10.2064148973323
+"ELMO2"	8.01846851562171	8.10383499673283	7.37151177838993	7.56500985232115	7.80135725909287	7.18625184335916	7.75460867498117	8.18254296533432	7.52554260498626	7.93738724519084	8.2941239770892	7.93975903573298	7.14453111444293	7.16784239923047	7.28193154751261	8.26715194732203	7.74590666106737	8.19932960072672	7.69386142035264	8.1358126359846	7.81602860892084
+"ELMO3"	5.17330503755635	5.26095224784649	5.15536410272708	5.54533373321223	5.45124121372987	5.77833262517831	5.65206214082645	5.29011189402689	5.45124121372987	5.58641170608878	5.2272095405193	5.43271766799956	5.58235610319775	5.88154132630321	5.56757313374301	5.25294939108576	5.45124121372987	5.34810385551279	5.52130807599268	5.40281763549714	6.18716468009646
+"ELMOD1"	8.16051371633451	9.3720573108208	9.89763240227921	9.4570181185719	10.2560345351887	8.86290094418631	7.9380993825472	9.43655468372343	10.0846655732729	10.1439931235433	8.82443997538988	10.0566340713871	9.79892923799222	8.5938148442793	9.76614461550144	9.22973542431595	10.1746955820169	9.46491860691021	9.50632419958262	10.0951296658061	10.3742187015518
+"ELMOD2"	5.75222627131644	5.58340335609143	4.91726057914621	4.83253003256814	5.40293714195828	4.82255418563632	5.31508298059779	5.44282885037452	5.18873272237937	5.16509871528385	5.45374624493811	4.9300530606706	4.99965293092183	5.25949096982501	4.94134979743106	5.89773295115469	5.20880777204665	5.76187283606468	5.49571238593798	5.18847895175719	5.18888558895602
+"ELMOD3"	7.73507682155136	7.76417359318878	7.73564198715486	7.75309869831413	7.4235175230006	7.73604057025109	8.20500239040208	7.59948228233582	7.83411293260383	7.73636277095728	7.74596864729974	7.7122518745863	7.8727479938488	7.95155432016481	7.77156250035459	7.73636277095728	7.70969441503574	7.72305353025193	8.0160464063007	7.68622872998662	7.72140334466698
+"ELN"	6.93948844604692	6.80251848548689	6.86370604792247	6.66237402427022	5.94274509291113	6.50962976351182	6.74992850779053	6.4910290001193	6.51582836276761	6.46886950588064	7.7186324923307	6.49275221697328	6.53935763486745	6.96418913737563	6.66237402427022	7.14141390036435	6.52775277744771	6.39514228443397	6.59787768265175	7.03158008441305	6.66237402427022
+"ELOA"	8.05131711273285	7.92529209340143	7.80582795741706	8.11352559270434	7.95855454671771	8.52044662726217	8.07616450331471	8.0984447751963	8.14128691248968	7.97333913493681	7.83064570247052	7.86906638027243	8.23866835756618	8.34222800415827	8.06163500697884	7.56281138758253	7.92910639014649	7.57398171710932	7.88034756040046	8.11883710696777	7.79489722935977
+"ELOA-AS1"	7.50648213223351	7.31062269392905	6.81743930317316	7.06717999913554	6.92496902743737	7.06717999913554	7.12245996088349	7.03727968404228	6.9441969227576	6.79812386559162	7.34968492450363	6.96200273904554	6.88303649602439	7.06717999913554	7.06717999913554	7.62148246430605	6.96585487579743	7.26027478419507	7.18639191954532	7.0839875246391	6.831379462607
+"ELOA2"	3.18300953595673	3.39029159289148	3.3678462426753	3.43972525726117	3.21338106522803	3.8464847379274	3.39953463915436	3.22713717870343	3.62221497454031	3.47411235775752	3.35870532648825	3.49364420136796	3.45152239045463	3.41383618404755	3.66427617722694	3.39810421114475	3.31989517423784	3.08668046630514	3.5005016573427	3.31309654886457	3.19389132821489
+"ELOB"	8.38399951581036	7.93021029286052	8.22320376872527	8.18230648231339	7.96170274158203	7.79110310459285	8.83416057521271	8.20470913047533	8.31075442451088	7.93926410126541	7.89850022153076	8.12581965381244	8.22376872759926	8.41161065827733	8.61350507019099	7.85220246373549	8.14938913866783	7.79368358948663	8.2821239060727	8.10016219922386	8.23308592509315
+"ELOC"	4.55579170680819	4.97078882060694	5.0899981819427	4.91100454531016	5.52056716970351	4.25478244554138	4.30061720633577	5.08771697782503	5.16859433059197	5.4319415515599	5.12120332688625	5.11966139533628	5.22138826089115	4.60085459404712	5.15432290900209	4.82480385758291	5.17344334106451	5.35740207723156	4.94712509384843	4.94667349659654	5.40553185888091
+"ELOCP28"	3.77032094281493	3.90006430522609	3.90006430522609	3.88966295846671	3.88509171534632	4.09642608374802	3.6680233250876	3.87661100939894	3.97477834180187	3.90006430522609	4.0540984110309	3.85318780318494	3.84036882317867	3.90006430522609	3.9485779055575	3.85615629373418	3.98917098470925	3.93996596280315	3.79677353755311	3.98720999234989	3.80153964684245
+"ELOCP3"	4.80642447303822	4.68856124280817	4.34904980527509	4.60645064662789	4.85404127515556	4.53333059791559	4.75479865616159	4.48320956020932	4.76152510111165	4.71324531095938	4.56791496003554	4.69439369629525	4.64608455624872	4.82060220185962	4.72368365535458	4.54649791892512	4.51918947622553	4.47948257119636	4.57999154060775	4.47666782864319	4.65581147687937
+"ELOF1"	9.50612400063053	9.39250909443678	9.56160952011471	9.47430399750648	9.24585496469083	9.67720739312944	9.87464916280765	9.42351507946787	9.7310060853822	9.48421184462815	9.30512771895792	9.36628441178226	9.6377633487079	9.73655805854403	9.62861437798153	9.3070707235881	9.42172805761055	9.29558828309884	9.51414462391551	9.47700410703905	9.46468639390033
+"ELOVL2"	8.16201311051755	8.58405621958932	8.03667273841978	8.20019197050416	7.93695432827121	5.6079880305216	7.97113984302936	8.61976486118478	7.95996239163341	7.55749165798922	8.46118569764242	8.03502906407461	8.07179559281692	7.70316076134021	8.2484058268163	8.04526386233658	7.71159849930871	8.25134442461379	7.60860667076701	7.91334993557308	7.67715906334646
+"ELOVL2-AS1"	5.25303561367658	4.92113655888077	4.56259721059674	4.34817904436295	4.85322542280645	3.85317324206187	4.38412909736769	4.59149739364164	4.60375710981819	4.47838115123506	4.91039853300132	4.30979180882632	4.37958883286503	4.57327185104906	4.54546415723689	4.86136841721684	4.45858067072067	4.68842390969957	4.25226167096859	4.44676634082281	4.537699768961
+"ELOVL3"	4.18394352449253	4.5846662986318	4.24033533765474	4.33744302452186	4.20951727150549	4.22894335167912	4.55249146934599	4.23553893974832	4.3662223928657	4.28509671315074	3.99035414497721	4.24256677053447	4.4147231110086	4.46748755641601	4.04566657301149	4.4064149513138	4.4315661298355	4.24106070029396	4.22287493212461	4.18902970056513	4.29938893389525
+"ELOVL4"	6.66776298154058	7.75329124562761	8.48875465799488	7.80730521925231	8.72637246054685	8.04075020196799	7.0877530456956	7.40314084100565	8.064845402184	8.08297106949651	7.27129780307389	8.05739672881112	8.11433709860619	7.15065520648407	8.5257726986729	7.19317810891637	8.13349190499115	8.16913009210682	7.80298305560783	8.17149397827719	8.14047522275861
+"ELOVL5"	10.8235616656459	10.4084118701503	9.93663198955587	10.0891997694269	10.0521258122247	9.67897441584223	10.2790914034267	10.638387730859	10.0915314549101	9.9368142315961	10.5247151268281	10.2724649403173	10.0993629654749	9.89037119022325	10.1886693814454	10.7688982649858	9.99193536508801	10.7481650021161	10.1214266549278	9.60174579336977	9.56684720805544
+"ELOVL6"	5.92553634732532	6.80315569503445	6.86791895171106	6.19340339231078	6.54116177377583	5.87744461234443	5.46366700355804	5.90616854061035	6.30036546314864	5.83421545423716	6.53342663224544	5.64593118986021	6.62696087893427	5.46601032164123	6.26102505794095	7.68000933821163	6.08462548424215	6.8797618312943	6.27225131441596	6.73841845205243	6.27225131441596
+"ELOVL7"	10.2695656467986	8.57276497916862	8.167568308414	8.70084142506431	9.00583832899605	9.91328127873629	9.21062641083823	9.48503063686025	8.69984487399501	8.87122641646378	8.62566888420459	8.75808106067239	9.26578983757766	9.57770521844898	9.08134303332325	9.05179303736	9.13847032023638	9.35009460302995	8.73616354371013	8.83809782253126	8.9599743923978
+"ELP1"	8.97955610997886	8.75542820740262	9.12228006999882	9.03008476517412	8.92120270611242	8.68980445001605	8.34480236213086	8.96684276862999	9.25359169943785	8.8664722556591	8.930679228067	8.96934285973645	8.7663445795558	8.5021065912826	9.18903602098559	9.14212267510707	9.24403449006561	9.43089340352105	9.02093061793399	9.18737696137101	9.03958348591448
+"ELP2"	6.64487296671851	6.49576276296102	6.26515305533066	6.18411562645571	6.56765170839669	5.69960896751906	5.87275755679131	6.34895607991293	6.08348704354375	6.55468281999552	6.42758551796655	6.72297467918206	5.70055268120902	5.96509825500608	5.94623574675555	6.57662766470212	6.3660450774453	6.754607957501	6.55420785723914	6.7915572518096	6.64209653954652
+"ELP3"	7.49848740367804	7.67133876166934	7.67006997218133	7.55397404904048	7.90963378652541	7.45262481285977	7.40100014426068	7.61800812297541	7.60770338739265	8.19163410306501	7.61965351117263	8.11426581096992	7.53318119720474	7.56302191518097	7.49304662138133	7.75588217492929	7.82971189781874	7.8772083784468	7.6767235340335	8.1797026074583	8.11724874285767
+"ELP4"	7.96828938478844	7.4028211872744	6.81714103495251	7.23618664625759	7.14107482715145	6.6057302066401	7.38934791747875	7.6600879271271	7.20162662960189	6.78883632634808	7.50488758919988	6.94886255364288	7.07090529066321	7.07891498113306	7.02502486947488	7.26591734141008	6.89074888569316	7.36262369709599	7.15879877563712	7.03300103226365	6.59001530289142
+"ELP6"	6.994781969654	7.0359732571541	7.12732030595192	6.89431451881217	7.04095021470268	6.7882932219884	6.76040115024521	6.51984994893845	6.94562074490208	7.35466701296041	7.10565278545633	6.98442032760267	6.40525527409724	6.67155012692095	6.65440447275588	7.18597849628092	6.79387634570757	7.14470896374422	6.97894555511497	7.29183402564899	7.07942761989267
+"ELSPBP1"	4.73359864489368	4.87064490377825	4.52824614643676	4.79351180411601	4.81141587321622	4.87810184985147	5.04070589200654	4.57512919121534	4.63474744429828	4.5691866724183	4.69637218708887	4.68855975369494	4.9629928702237	4.74383767225104	4.66074563038837	4.76455796680861	4.74417814100072	4.57512919121534	4.86225669408297	4.30069740554802	4.69637218708887
+"EMB"	3.26399077675306	3.24842591979035	3.26238085336438	3.15797017177055	3.24961612509669	3.42962320454641	3.2853671540139	3.30655931019177	3.24512947846945	3.24918854598728	3.25366512208268	3.16881026993901	3.13806085689354	3.25366512208268	3.18033990008818	3.18313753345051	3.36017923109249	3.27278202850613	3.2079773328099	3.42280490056895	3.39343913368815
+"EMC1"	8.06953345622234	8.56416194276632	7.38005012508558	8.57791361701814	7.22115544799633	6.24556073683887	8.09480119482759	8.61226997683924	8.86211308989117	8.63422822789385	8.71601909669881	8.34758004914032	8.67771492574696	8.64988083039045	8.82535686313663	8.50039631234193	8.62504695674781	7.31457720447683	8.34928081970536	8.42449193984362	8.09800042706527
+"EMC10"	9.30788572524681	9.41605370646027	9.02707908578204	9.17439529694039	9.06314497688188	8.71919085132836	9.47697142217605	9.1861381721864	8.8485240773404	9.26355594086134	9.79613579406867	9.22829444315803	8.98836456579846	9.07772220556265	8.60766451418661	9.9580781144578	9.03646518221028	9.50222473244608	9.07619569590441	9.33699831364774	8.99588405214822
+"EMC2"	9.28181254340216	9.34926842564274	8.68492095913652	9.00660698605226	9.0902316573331	8.27460078088271	8.7923331466517	9.43041005605792	9.05704606935574	8.96882758354377	9.92869439594121	9.03290445778282	8.72290971450752	8.63267129322769	8.94218512222029	9.92633082123826	8.78719650451329	9.88037435461733	9.30892212204359	8.75901370879598	8.76012287151543
+"EMC3"	7.72471797101642	7.63869860669369	8.23624539034363	7.43478851006923	8.18609981313498	7.16554745434723	6.71355393463075	7.3833578644596	7.73694360972101	8.0515332123472	7.51084183229526	7.82013967438483	7.21136390299839	7.13634723637507	7.4454203287647	7.8199906393609	7.49508034909958	7.88866108537724	7.32675209006265	8.11471019974195	7.69986344694086
+"EMC4"	9.72889064522597	9.86390073557924	9.43266990059795	9.5070806992642	10.1197210517295	9.03545277930612	9.07542961993464	9.53403603282219	9.65923231213102	10.244173719732	10.0117883841909	10.0246906325224	9.30604081204569	9.0635915709909	9.28278692211923	10.2766737131966	9.74020218864925	9.98017477139395	9.56660937018186	10.205302737049	10.0603030341453
+"EMC6"	8.7891654052052	8.6007193767372	8.67709914850976	8.6780650180386	8.8506120512218	8.6290318981331	8.75104319225248	8.81985310562792	8.98558693131394	8.97736586463919	8.64032754000524	8.46788801361901	8.80259637922927	8.77475463621485	8.87281135638434	8.93017238488757	8.53807406341615	8.95472154546509	8.75620247678461	8.74245982091026	8.69051236254818
+"EMC7"	9.3953999394278	9.34642007001298	9.21965389944564	9.22263719460252	9.43425029947849	8.77788338857444	9.26068720335768	9.44935781996039	9.29638403447531	9.45185651116451	9.54396425579145	9.25781038125702	8.97691667167047	8.67904378396149	9.13548475851365	9.62557582354876	9.08699262218982	9.75207500839643	9.38014638574086	9.51656114494151	9.1969176736789
+"EMC8"	7.13291122907606	6.94920393069902	6.79472952510191	6.59361593165903	6.50118287551202	6.57221785181057	6.67099574096437	6.49674128309375	6.59846375479759	6.59361593165903	6.86625398882042	6.40383553337044	6.19492661273312	6.53076425977469	6.65405827289871	7.071195569001	6.33401339575911	7.09349839832951	6.50247521400603	6.51849164206064	6.22436321691284
+"EMCN"	6.60897451434619	5.61633293382848	4.99544169703166	5.15852697711373	5.43111365804481	5.7770618883912	6.03425607948031	5.48925435216221	4.87236348692928	5.2485283492491	5.9840168974358	4.56329545178936	5.21681274073143	5.63774469991133	5.14138543371351	4.88251328758458	5.1232702640307	5.21422797785334	5.27420260234193	5.51920383989746	4.75338826863593
+"EMD"	8.7553849242691	8.53054776343801	8.93698832983671	8.3028114529996	8.55351564814808	8.82717705319751	8.80780426258522	8.40013535758376	8.46637324588934	8.56070492011834	8.55474716385298	8.52583589130112	8.48789823949692	8.7990663423505	8.48411466114573	8.27985857276312	8.39400637389082	8.30933164310889	8.40643495343989	8.44175596559447	8.33384746231425
+"EME1"	6.06425536978966	6.20142875921353	6.18743676361488	6.07343874456108	6.20142875921353	5.78117843877586	5.77732153631056	6.1102191438338	6.16309621844859	6.05542957437433	6.07343874456108	5.61735136688327	6.3431940925808	5.73598661185648	6.6692594580852	6.30200953421858	5.71288802350442	6.4428216120395	5.96677503398378	5.90282451203391	6.09852892481377
+"EME2"	6.24343192475618	6.45373286562341	7.02105788731109	6.32629551530819	6.34686242416747	6.63981681369342	5.97949175250465	6.17285393843575	6.36684748168555	6.24650226565693	6.26901999371472	6.01364180456844	6.61562711242533	6.68752004212903	6.39148180567638	6.09017668875019	6.30207482884948	6.24122588304219	5.96418714079271	6.40382767411492	6.22838992151127
+"EMG1"	6.85130392765123	6.41442237389091	6.6897116476284	6.50562538675028	6.62739816527896	7.18566190935681	6.75154819906605	6.55468281999552	6.87514999114653	6.74849749657816	6.57137720196366	6.62066781697131	6.46614578950695	6.95703483007389	6.8232814711216	6.69295274796852	6.70735780981428	6.9212962810253	6.54642159417592	6.65108004261333	6.48509432105189
+"EMID1"	8.8357690949783	8.84009457979091	9.03524743392124	8.61993854104489	8.41647152009604	8.32276003996169	9.28662101167537	8.86980716441444	8.56790892907804	8.2298262967656	9.18361139097582	8.53049453000219	8.58307533240269	8.71748856814983	8.35769840073643	8.53083035470373	8.32785520967151	8.27956895142083	8.34897189994964	8.55231859664199	8.39261361601229
+"EMILIN1"	5.70606484315093	5.46301452290681	5.52246081092371	5.41461826486302	5.12599871436129	6.05368345260315	6.3236522300421	5.62910151297718	5.39786990365855	5.48274667970837	5.85841144602177	5.39576317200021	5.47363645685422	5.85094582935108	5.51057099006062	5.15668556271974	5.33292377448106	5.12244311810584	5.52141690673932	5.77709835583784	5.3905320724612
+"EMILIN2"	6.4404309654856	5.58120338609537	5.38105084191232	5.37372202649359	5.67740968850667	6.25874069215484	5.91685265611122	6.03618545894031	5.84322157171654	6.03968923016303	5.63382362284784	5.50157253752754	5.99674435294501	6.08991114121804	5.88642477932821	6.55942633531897	5.45416307610494	5.8208480020512	5.71044709636298	6.52041228003123	5.84324430367431
+"EMILIN3"	6.65434005852695	6.73043724508041	6.39988163546796	6.66285579964714	6.53741257551686	6.60350634393438	6.85093300526979	6.42099721326006	6.46964488619953	6.55485206833032	6.36712716930837	6.58107650614902	6.39285409451104	6.6615799618547	6.25858271841689	6.41916843191289	6.58140799977363	6.31771195727137	6.36277017857725	6.62241776477369	6.28552169706969
+"EML1"	5.05686752107723	5.8804187818631	5.59880449423756	4.89598655448305	5.98746236274763	4.73942792266181	4.33372012284897	4.73088672149456	5.29571130600626	5.60525575485078	5.65373996436337	5.3108937055764	4.4103882028914	4.94786876244742	4.98897335398734	6.0934976075546	5.23360526239832	6.20563714954876	5.19089775951343	5.7662511083396	5.55850829508804
+"EML2"	7.42404157846429	7.37676016866931	6.81495792988668	7.30671101789993	7.1487112653079	7.47114426859972	7.39648490797117	7.11034621715896	7.04502876401862	7.68258780800402	7.77283800059535	7.4962156766222	7.4233123798137	7.20632101832345	7.08724244251361	8.2064639368634	7.3843830800801	6.72540907508622	7.51972047086669	7.64834274508803	7.57646581857353
+"EML2-AS1"	7.14738832808681	7.28020347358975	7.38926515140116	7.57088954652581	7.32840926855866	7.81583651031195	7.43549988689072	7.19364430745277	7.35161980829064	7.2688392805866	7.08457485566482	7.33225574137786	7.41457216816154	7.64345977986252	7.25375061723998	7.20397441840009	7.42631724434976	7.12532116566108	7.57666121499251	7.37053316427458	7.08175940611933
+"EML3"	8.88732369538662	7.86932318356533	8.01682633559973	7.85502217465486	7.66447544028482	8.53798957917088	7.88310357658194	7.98013666687932	7.59250275730691	7.77264641861584	8.2545728365467	7.89354350252098	7.36040713592825	8.32187104273509	7.28070019430277	8.28666993547812	7.50389633280945	8.18160390907683	7.64948183831879	8.01845611358574	7.79497371849064
+"EML4"	8.76648475009405	8.44078985948383	8.8026145082854	8.18245424416888	8.2940901314949	8.574029464778	8.01056752793605	8.32188207051506	8.04338628655228	8.20590949356478	8.40818231329135	8.02966518867031	8.0513814589806	8.19872944697522	8.2728556961536	8.26158024140375	8.07193964429504	8.64317905138065	8.0845040283056	8.65859956730661	8.30686148444129
+"EML5"	4.61448749699315	4.70091534211696	4.73390116723494	4.63733400763433	4.9060926863559	4.63424800652927	4.67497296214778	4.81890521324018	5.18983806553429	4.61953598046001	4.55497110091947	4.72083029964895	4.75799280259008	4.43506579377509	4.83092969938049	4.72083029964895	4.94948107009844	4.85571225042474	4.45708969352408	5.02164875961843	4.84520626549034
+"EML6"	7.55161717039106	8.2574362563992	9.08475099579902	7.74497281958577	8.51271759928585	7.62282086175607	7.51482341121821	7.77699725352017	8.18461754305353	7.72121449217684	7.6991311250737	8.01365591540623	7.93663941093346	7.34625133931714	8.19693464154897	7.48808053739238	8.29784918399023	8.04107721047935	7.96503075944526	8.30095091295408	8.05943930672152
+"EMP1"	8.03939731482095	5.81480201540877	5.78570157239476	6.07171656567024	5.59584878884002	7.32009073575978	5.51403668859576	8.51896694047416	5.19250266534728	5.69399783743618	7.44087506176529	7.40395003905453	4.99045919421275	5.40561565906554	5.722855880924	5.88901021058502	6.04383925550157	5.61242244018977	6.18090659054	6.53346043843363	6.89258094662091
+"EMP2"	8.85183564475172	7.34399775676404	7.04658225975266	7.50396211900266	7.38858066374592	8.35687371415944	8.29109334069827	7.70716548065196	7.28424875678271	7.13222443861276	7.63139957320435	6.87749899587188	7.69634594205933	8.04104070675799	7.34135214138317	7.17144958860344	7.60436283139377	7.03506270600902	7.45322298224708	7.67347850354898	7.1616844716486
+"EMP3"	9.22950562618346	7.78204898086971	7.33990540892604	8.09212038749265	7.42952251535647	8.33203692474641	8.14132709421019	8.2471462008562	8.0003076513561	8.46301607084364	8.64033480433611	8.09989398134145	8.17913469355971	8.13144285602159	8.36519978851311	7.22768517329904	7.55401446287888	7.51997891147757	8.26926662046331	8.31660973751288	8.11178859124344
+"EMSLR"	3.03568165502486	2.97954599700698	3.18732221820056	3.0579037973092	3.25060804234161	3.40029657812753	3.10678827289563	2.98954848314526	3.04355798872618	3.19202111975901	2.92317441777134	3.18691831996517	3.22170668800443	3.32766283243553	3.42859038370887	2.98418955535262	3.11005157194012	3.06939721262146	3.06424951773616	3.07500237218315	3.04146155574554
+"EMSY"	7.86215837358822	7.90768031412243	8.22923954458376	8.35248412583762	8.02108002801461	8.66052825602147	7.80403323063362	8.24876799793455	7.81565119071814	7.77605665082987	7.97513239735554	8.00271549648416	8.03597149314576	8.15934923240069	8.27891642331436	8.05927994825042	8.05028693809052	8.50309121505618	8.13339862244526	7.90706473230436	7.55214991679555
+"EMSY-DT"	6.64944054995747	6.69641216537081	6.83417210797332	6.10980194530579	6.4972844645876	5.62406492683086	6.48511530978937	6.71737771239027	6.71824969846691	6.4972844645876	6.8735265936271	6.44202934052303	6.34608760685647	6.19840989508872	6.01096729112887	6.95482136747765	6.4972844645876	7.14395884208877	6.0518882389905	7.05210367085667	6.34588863133194
+"EMX1"	6.40220405043551	6.58231684560889	7.03657301002731	6.89041569470082	7.20532930910066	6.82051393455905	6.77226624731639	6.52837698949226	7.04001682597781	6.95768902139409	6.39326948748814	7.08907282882087	7.26460551233318	6.70448234812973	6.77015475387019	6.24443397539332	6.93130368939373	6.478882212917	6.83920469831263	6.99625708619531	6.96750264809739
+"EMX2"	10.060060797959	9.02937010978075	8.63239544964262	9.05594218861206	8.56843181651097	8.21106468016633	9.36553467642339	9.69307962257022	9.45102048157239	9.02094698195316	9.00122671090001	8.69682324032896	9.02519839223205	9.60294240513116	9.3155703399004	7.94756832546813	9.05958880434801	8.47081600002979	9.43840855245979	8.33881668627956	8.12786944977705
+"EMX2OS"	10.4863086057402	9.24449696313889	9.36782888702226	9.52888461259993	8.92896083916913	8.91282427946572	10.0347030033019	9.90731732956388	9.77224314124202	8.84819494813502	9.11521640679662	8.84657087098687	9.62828048693844	9.94829310384145	9.99744685700104	8.34463132102871	9.25762675041841	8.56190223750152	9.8468185199788	8.86173661316918	8.47371271183955
+"EN1"	3.6733071422335	3.7640029165118	3.64695963331	3.60335313026459	3.7783676872585	4.22418977974962	3.78647983670601	3.36042643467481	3.64244440333094	3.44592785763275	3.39358060159072	3.80845708635082	3.64244440333094	3.95401394966277	3.44612245092521	3.61730569234116	3.60851428359753	3.44708482191069	3.70005861680889	3.60522744506757	3.79495889198901
+"EN2"	4.28811339558514	4.30846909825649	4.11440733154676	4.34223019379144	4.23765927548747	4.02818156512387	4.28811339558514	4.08861102527998	4.43210711367194	4.27477748860236	4.16254072035129	4.02408689619226	4.43210711367194	4.27593031562188	4.28811339558514	4.62395273618471	4.43231929846229	4.70328571349803	4.28811339558514	4.28017958766683	3.95829965054113
+"ENAH"	10.0039166833187	9.17559451154091	8.76184351974137	9.1678892254191	8.83271612230579	8.49626002165714	9.69548752441496	9.40355085937782	8.93915306873773	8.7474706849284	9.70552238463294	8.99464012138261	8.87264150815535	9.26184080697822	8.96763950266926	9.56409996442292	8.76325624235354	9.02292501241309	8.98975437155356	8.92721869400833	8.73132970778684
+"ENAM"	4.94895526411854	5.29115639572597	5.21512072827666	5.16922883783029	5.12240841923354	5.42045118516564	5.34810385551279	4.754982977206	5.35802319951466	5.06996489966299	5.00130771814613	5.09549802201988	5.31799376602292	5.45849191926311	5.30844009082715	5.00130771814613	5.32042056752048	4.71476348057945	4.93326951945044	5.0532164320019	5.08529704806754
+"ENC1"	7.40311403020607	8.91191561287957	10.5095359201177	9.58842782458619	11.0323138035896	9.06110008062493	7.59370078799827	8.6162813624399	10.6915842030624	10.0423600881536	8.45598319207424	10.0114764756311	9.47853040080367	8.62379962807947	9.82430290934516	7.94107541808417	9.83568414369003	9.52224232009153	9.53581348421593	10.3942479309084	9.66462311081209
+"ENDOD1"	8.38152154946552	8.44513990944388	7.42223238406235	8.09488787671652	8.29975280416734	7.24153215103099	6.88473504127211	7.72569196903203	7.66580712330196	8.5955287228396	8.93014379453016	8.09544867712204	6.92049574182781	7.9958449361878	8.27501258873117	9.35693697342507	8.02650390998197	9.26965597974285	7.62838466704027	7.80988937387946	8.48518306896126
+"ENDOG"	7.69651335577323	7.70622543332408	8.22231727473534	7.75260057578093	8.40694262877434	7.70652131532054	7.69551945116139	7.68987435462424	7.79758418223948	8.10249885032215	7.41581444289086	7.9670970864862	7.93197277432511	7.61103642169737	7.91781669527566	7.81940298400277	7.55372179102006	7.93983021280439	7.19874434194172	8.40128783459977	8.08044777086332
+"ENDOU"	5.47180888147643	6.13686102819495	6.03748794424163	5.67855961462717	5.81417984297918	5.58080816098734	6.25938841001553	5.70208568416981	5.66664659995615	5.41611397796318	5.6934827960435	5.67855961462717	5.51624677794109	6.35318346391037	5.77155870991863	5.5863426213241	5.36669010409279	5.84786941335622	5.54020077292647	5.5829262098017	5.37564383812519
+"ENDOV"	8.27402902317024	8.21519290590563	8.34437107691877	8.27402902317024	8.07241285977134	8.92412962606715	8.53426297631111	8.31377323536714	8.23886982096388	8.21910428860993	8.06028269217215	8.2982566257439	8.43314743331803	8.63774174409365	8.1713204399612	8.03056332675673	8.24410972998202	8.05417969392192	8.33839379041516	8.28919164883035	8.30294834011072
+"ENG"	9.32794056590091	7.31425493833153	7.00204854630428	7.30087970623433	7.38703302653711	8.94846042789003	7.73880819012304	7.58395616838621	7.34500052213851	7.66388792051985	7.08221798532618	7.28060660789967	7.74757505865467	8.58785102117399	7.35335347385207	6.80223421347578	7.22531221097272	7.49509984727313	7.19441143888095	7.92315157061392	8.00815389678351
+"ENGASE"	7.61525059218938	7.4878021715137	7.78053975491997	7.64552404141031	7.31956301753343	7.53332811010492	7.55134332205244	7.61729122977313	7.63006300906666	7.31488529553367	7.67545607219113	7.1042372315372	7.86675850880923	7.77423733885674	7.77510630071437	7.73184539971076	7.53993442172856	8.17590262694359	7.56983799409851	7.21275851227008	7.49201333790992
+"ENHO"	10.8794603011329	9.89584290391816	10.141507696782	9.77924149706318	9.86625806548089	9.75980572648977	10.9424074017729	10.1941405197432	9.77664602990118	9.63586428108847	10.0522980317591	9.2056336714975	9.75024269332158	10.4161958128456	9.53699455516653	9.09607279808445	9.4559831581956	9.52212431812451	9.95792466375263	9.89943736504549	9.68818282712104
+"ENKD1"	7.12079259547834	6.21933698206403	6.50942687606576	6.11895390513612	6.02634035067248	6.57850189501719	6.16625421708886	6.32567961466547	6.34888586484211	6.19184725442968	6.63705848334814	6.09230755858059	6.1045602594456	6.35729957908486	6.15726518143814	6.06169509142871	5.97114528943838	6.00648800086654	6.17565189442624	6.42449376023565	5.90148396788871
+"ENKUR"	6.36417355559716	6.09513350079486	6.13563952049856	5.89780103760458	5.97701650089987	5.5282585565248	5.94512435670577	5.96668269176176	5.58625387815257	5.52817936391778	6.28474746636602	5.83575193264775	5.59545196354429	5.7363953412408	5.5418193989911	5.98002317694776	5.73394146753543	5.63565315682727	5.83402951393403	6.2008444528262	5.64293762381859
+"ENO1"	10.9205061148049	10.5576242580758	9.10572689786974	10.3758053871456	10.5031711953997	9.03477927452061	10.3411487492205	10.817326264069	10.4432459229775	11.0426235946784	10.7341240248102	10.6281832898546	9.81424891837875	9.55606153106685	9.68614689817378	10.2480734483937	10.3009879504826	10.329162139172	10.1061233622823	10.9541432690008	10.3975314692898
+"ENO1-AS1"	3.51263671289449	3.66565952846413	3.7399716042538	4.02338931611364	3.79340624972589	3.93317599255975	3.91511100321428	3.67017262460924	3.7263278541651	3.89719570422016	3.71030126400909	3.64285616255356	4.20954984641821	3.80281523315351	4.08693037575095	3.63277648500842	3.73517206020763	3.71977733101952	3.63380446419854	3.82384996343559	3.75275762005123
+"ENO2"	10.3863310255553	11.250076518824	12.0793097583753	11.1195170607511	11.9071604293826	11.3970116633851	10.4792077967885	11.0911722600749	11.3494033094154	11.8970826611768	11.0221646069052	12.0934123293183	11.1868031721261	10.8028283588998	11.1681075216532	11.3468466389168	11.8836234297819	11.4444144091039	11.2646247136527	12.0256607585897	11.9415376830966
+"ENO3"	5.08961543800521	4.87598852855677	5.09389787709554	5.02792804141334	4.94437413447854	5.8203706718334	5.25180383529238	4.98086507261295	5.05352407781599	5.06867330460442	4.98091072350599	4.84606686945403	5.33500009750035	5.43409988512283	5.41642062981021	5.04031140831065	4.90746634937186	5.18761725585171	5.04824570420185	5.10992953944459	4.94082814654764
+"ENOPH1"	8.9930004289577	9.56853842536952	9.49411192949312	9.36899090339736	9.78183618644613	8.95053873850146	8.6352511038625	9.41759449956336	9.32823371491467	9.43025779334744	9.68267511165212	9.49259647675737	9.16456347458936	8.99977226281445	9.36612738984866	9.93218279718702	9.30330523826546	9.86238496585019	9.44958601649927	9.41261229880104	9.36418453617193
+"ENOSF1"	8.52846386130409	9.21809351313067	8.68602162444339	7.50409549887505	7.88566846083201	7.6754301419753	6.7333701607369	6.95594184919272	6.03971791801237	7.79135779181902	9.76719185109303	8.10532034091755	6.14068422792186	7.37301122973568	6.75511767602609	10.3020994037224	7.72667709704837	8.86843088781393	8.18655725715937	6.74663902352547	7.57340245709781
+"ENOX1"	7.32318334139244	7.53063623316507	7.92861165442606	7.87282387980001	7.82008529232911	7.45987202794964	6.77507427446534	7.41914248026864	7.68642428156841	7.67138257179353	7.72328497409815	7.8802066897397	7.68131706307831	7.14961276495045	7.7778518517021	8.01848057970538	7.65188337028203	7.91353645668614	7.73571829757093	7.93479851245705	7.66435815826413
+"ENOX2"	6.92306806106378	6.76317473028867	6.87647562594106	6.7985868689708	6.89133200641764	7.3305449316845	7.02894925718554	6.65890620827685	6.43818565499281	6.63567733808739	7.04938125506887	6.80525266930498	6.50119932799755	7.04687516981247	6.88984404403412	7.02555473142096	6.8516765650973	7.71116635804937	6.99940440335622	6.75991836494229	6.29500254290151
+"ENPEP"	4.40425338834092	3.90134484519074	3.47137817292648	3.47440943921145	3.83282462705169	4.35840301927212	3.72316277984966	4.01615771219074	3.6469999880306	3.64006651592399	3.28560785322984	4.02331713700613	3.76255619492145	3.87244841866638	3.71183708758751	3.76277589290572	4.73751015422408	3.58210113203229	3.54810336896469	4.06998910066782	4.18004314232014
+"ENPP1"	3.59553424429532	3.82671421296804	3.73170694685645	3.78415962501613	3.84746626312461	4.07792606942969	4.01782331129115	3.95251358009123	3.91077963295285	3.86319188910884	3.68033116697272	3.68714150773071	3.81937063645404	3.84746626312461	3.84746626312461	3.89502560264769	3.94628300328328	3.56076061429057	3.68889244927334	3.84746626312461	3.75390081356638
+"ENPP2"	10.2416188220883	11.0213224976546	9.82271867640524	10.2513536154678	10.2348464124229	10.7524771805135	9.63967873893656	9.90904504553142	8.41321984251605	9.4776060461785	11.6709749671039	9.62247177504414	9.71018274248266	10.1437554229923	9.50461975410717	12.3180268000307	9.71130875994944	12.2631840362435	10.0648374186553	9.01849024756531	9.63002695243476
+"ENPP3"	3.11235987861836	3.16726208407978	3.4084424252692	3.00075328771493	3.21323807181796	3.62293445180216	3.12395777938106	2.91651787935466	2.9700978745076	2.84450814327548	2.91865223738626	3.02986437890998	3.02299206261669	3.21818613367896	3.23746036102195	2.95096481696946	3.03088600168538	2.94690228441098	2.9057173790823	3.06984967829911	3.08375355590937
+"ENPP4"	8.71000746617602	9.04704099095554	8.37206249922291	8.74816544785758	8.92291579998045	8.89416483644607	7.85866896540335	8.78200416766098	8.78200416766098	8.78200416766098	9.11703329320159	8.79562561538385	8.30713889090934	8.42518875130795	8.49355619624848	10.1309017299956	8.97220982523414	9.97589973494213	9.03523720778026	8.55622637018315	8.72465547863228
+"ENPP5"	6.96231172756496	7.49342792072677	7.27743456928725	7.96951996034655	8.31830144073444	6.79154323229794	7.51248118863858	8.26772733401091	8.70823866044659	8.22265196452185	6.66113170549471	8.04124207885121	7.73571829757093	6.87707957542602	7.28278375210401	7.43927055400467	8.19840680809143	7.58439925907062	7.85465334065741	8.02653984216565	7.95026623258876
+"ENPP6"	4.99169548668545	5.77872950452485	4.92106121009051	4.65915049192384	5.30187354528235	5.33358936572871	4.1423014880516	4.51522648258772	4.57032019734483	5.75448074931902	5.2274610774656	4.54997459822176	4.24470478706052	4.73563657601757	4.66309177277099	8.27579134458588	4.96520331805839	7.96469051097165	4.8539178359467	5.87436639273078	5.12057429431316
+"ENPP7"	5.24763309060329	5.84893645025319	5.72854550478276	5.93080973007002	5.47298049881635	5.66414680554758	6.09655264868428	5.77125609672095	5.91085932689964	6.0277628424914	5.98160937936458	5.76492878856735	6.00425413484984	5.95236830550127	6.01391318059441	6.31709412469924	5.92806973500867	6.00004572758841	6.13128036585687	5.53741165909623	6.19285337677185
+"ENSA"	9.39045468860968	9.84966809914584	10.3651466713171	9.72879508248313	10.2296251605509	9.80674123598495	9.42360760339447	9.46483430472295	9.8928773102672	10.3408681446787	9.59777360355906	9.80366629892007	9.4440340747658	9.3767976120759	9.49911850236043	9.54719701733153	9.65936125648638	9.64096136215725	9.7158007990404	10.3454440747314	10.194682747371
+"ENTHD1"	2.99245884840149	2.75775714554254	2.96844391789452	2.99745077924667	3.06309786366261	3.31729572619702	3.11659216143014	2.95718399424286	2.99745077924667	3.09838891102276	2.84358745289624	3.15283296735095	3.14866723671063	3.16325160510205	2.82202597212694	2.99313810765188	2.99340219609522	2.93121205018541	2.99745077924667	2.9680543114531	2.88829330098211
+"ENTPD1"	6.54809057595236	5.74808973270327	5.58964385351024	5.3380020125563	5.33149519194618	5.90537188129364	5.70808301660493	5.8704121990033	5.74538121329616	5.10959785312784	5.47532400043375	4.87505036340522	5.77465542437975	6.09412120940641	5.75781745429195	5.39586855509437	5.22465279616116	5.5471802592044	5.6267838254134	5.4793747946868	4.84849731521344
+"ENTPD1-AS1"	6.03642761675148	6.05833470741894	6.43925976411152	6.26264262518909	6.32078499642961	6.26177668441922	6.63994054427628	6.33265771103711	6.46964488619953	6.51593799787228	6.40930529553795	6.32648100176509	6.5168451937158	6.54191418210626	6.38911286095615	6.1893104801882	6.20109538411177	6.38911286095615	6.51761331005779	5.93565744903606	6.54588646081211
+"ENTPD2"	7.75314373412185	7.07738973369125	7.51993998658145	7.13808329691727	6.91236699364482	6.45195453391309	7.57740977081006	6.99769263370241	6.65489407316474	6.95296081756253	7.78291597008861	7.4734361242953	6.80835429200028	7.35893134603369	6.55103634061609	7.0732295010555	6.92233477799879	6.56511162260888	6.79275573875792	7.24660844820025	6.84077998819356
+"ENTPD3"	6.44462388154056	7.47698296921499	8.19054640097505	7.40612756533459	8.35336779546221	7.07935687663978	6.19065241098913	7.06061157158542	7.91434161324518	8.46508735011644	6.75999348396907	8.11763206952489	7.94257153063117	7.0176356927944	7.75817929871542	7.33922874464604	7.74407407896198	7.63217132612997	7.38453604722343	8.39119260512409	8.45512841050959
+"ENTPD3-AS1"	3.41603442714824	3.37834861639486	3.4093926472821	3.47969461183536	3.1516160398116	3.45833052496939	3.62746867079082	3.34874485334788	3.46924752939726	3.35770929168423	3.4093926472821	3.30475393293289	3.4093926472821	3.57671733864627	3.33722350389218	3.64523137931619	3.21298117002204	4.0808500573333	3.22348337818133	3.25864527096417	3.4093926472821
+"ENTPD4"	8.62790333688125	9.2994866913315	9.50329047946284	9.38034423376645	9.72328303935553	9.1175710143155	7.9992291879311	9.11413006227126	9.69709726901436	9.66415070632795	8.82265426126978	9.43023211744201	9.72674205567643	9.14394833454686	9.7800542248273	8.92931494993697	9.69819056989326	9.43503802949023	9.43503802949023	9.60575701510195	9.5736943983274
+"ENTPD5"	7.37161369681916	7.7079547082921	7.1551667006972	7.0146490867982	7.52771099244633	6.82473925421672	6.63075858878234	6.88386806118483	6.56632847837282	7.03922929639275	7.71110587152061	6.89689542224587	6.60218548402689	6.75588391852195	6.52204448886947	8.26703821962127	6.2906970887982	7.90906279447747	6.73331591257117	7.0146490867982	7.08550581634435
+"ENTPD6"	4.60137167893475	4.74987488580008	4.15632758064385	5.31637462352649	4.48403951294192	4.22086222070013	4.85326311204401	4.79814767992321	5.29527852328641	4.85102036417908	4.51785741665734	4.71301136589447	5.05497694948843	4.7140221471832	5.19026321574145	4.89469920315542	4.95771342590708	4.5089769971589	5.05457853468748	4.802516651463	5.18571876543033
+"ENTPD7"	4.07965698119855	4.26025630704096	4.21872545876549	3.99666470310616	4.05238979546524	3.71898058578298	3.93441742028881	3.9406337470006	4.30544286534425	3.99374445692554	4.03979539245002	4.06056399441324	3.86888829721451	3.99463554932796	3.70267478165782	3.99747312713499	3.94919434467544	3.8701118958472	3.77218184251951	3.99666470310616	4.37938036940552
+"ENTR1"	6.46628383892834	6.40065443065363	7.30820460482879	6.54444171521335	6.7932570645231	7.30600891858235	6.57211625616677	6.53843156023327	6.88633353345763	6.52261020580458	6.79741683415613	6.27275641062401	6.73475590270448	6.87443064786314	7.00892378074233	6.45417534952873	6.48141939546276	6.80996049730738	6.73679364938529	6.51544300200287	6.46072320972603
+"ENTREP1"	9.11634044564454	7.97274489620082	7.99845203892954	7.73371115091509	7.3159596876233	7.45557797881604	8.57632633847937	9.22395508124904	7.70854497943099	7.15945256512089	8.67372908071287	7.65081489363353	7.36559142483999	7.77475503861168	7.69750657613351	8.02050314260658	7.47792341131175	8.00996531340601	7.78313152940083	7.33160955749483	7.74818274687377
+"ENY2"	7.45143009746799	7.74931936746982	7.24157244597289	7.00433633999314	7.97088863074752	7.13475935394512	6.45338891710654	7.05368455482976	6.96750264809739	8.20098592730368	7.51826410193884	7.85954233975957	6.60125431792616	6.99057628467685	6.73676173994272	8.05757345932874	7.55732756107134	7.92484881634761	6.92833411167005	7.89914878013831	7.71463986491166
+"EOGT"	6.14505941677971	5.49586263721525	5.95880470178958	4.97883876497165	5.33031585147989	5.37800770193079	4.85608225722333	5.48567522101798	4.97996265113183	5.33031585147989	5.52999907686608	4.83851391392687	5.05860741922831	4.9995963394141	5.06529757664303	4.86328226427482	4.8333766862856	5.2014672472658	4.55015244144025	5.18179094252013	5.11427566132576
+"EOLA1-DT"	3.19974090533624	3.58259137436938	4.01294456859059	3.10120438437933	3.3979305409254	3.62623888116188	3.20958751791083	3.21063037305084	3.15915873274982	3.27420848537286	3.31951218371657	3.27263646285485	3.13645256648828	3.40153130788648	3.27420848537286	3.32171570768567	3.14631772423135	3.57500907041033	3.03818541330694	3.26860880260067	3.14975558751163
+"EOLA2-DT"	6.22707715184262	6.09098459025649	6.34864499359425	5.50243761080164	5.83848924790529	5.59816552870181	6.38586673202084	6.0580826474935	5.21512368071448	5.28882324511752	6.36945850344925	5.58998915888436	5.22395192051569	5.7568743515898	5.50572850341807	6.93159360187045	5.47231551902543	6.74539642359874	5.84260552000708	5.45477519349709	5.23120303830385
+"EOMES"	4.05124240315865	4.22571225441339	4.33265341067047	4.20879953997125	4.03197215724261	4.00074991235758	4.13966451832132	4.17549196806852	4.31006223043798	4.16325644402003	4.34648216757703	4.08708707374213	4.16325644402003	3.92444426586148	4.02902103000701	4.32344606531179	4.36534363870829	3.93727057237037	4.28279161306424	4.07046507634952	4.53361658517061
+"EP300"	7.04328425842705	7.27216922663427	7.27421514330073	7.65810466592912	7.30974707296712	7.71388569074224	7.686393966097	7.16185335343875	7.40121033067199	7.0166222366287	7.95294019341738	6.91913834097835	7.88708271733085	7.67426022285675	7.66238658625737	7.39567987895083	7.4469067166257	7.67369383095682	7.26049538061913	6.71652176492664	7.11731062090702
+"EP400"	6.68109164595485	6.56733669155538	7.39351499908988	6.55410493380267	6.91496572667366	7.52585159981521	6.6793968930626	6.5731459592447	6.78474512361716	6.5726627460515	6.78170969758156	6.44647832183538	6.91047777522692	7.27129780307389	6.28580916750851	5.79112011281876	6.02188648050516	6.59432414405997	6.23952148943615	6.32249196672931	5.84179253051922
+"EPAS1"	8.8770078957053	7.88936009437173	5.91545042156462	7.2699135627444	7.54170492706452	8.13250057287756	8.82149495941466	7.90075404078515	7.28354916476141	7.93611304589446	7.59641286028409	7.68620983937304	8.31150580651226	8.4792490613761	6.14117216891384	6.11224051345455	8.23726556771199	6.42081071283208	7.51113357199208	7.69916042539788	7.36679280394977
+"EPB41"	8.72149822361103	8.26052981418417	8.03967552981656	7.8791830856771	8.05417260835528	8.24928579168499	8.3374622619293	8.54308995655004	8.4199410366328	7.90234088576608	7.85257294774713	7.98085454309129	8.36552772136394	8.22542392100386	8.60178702791565	7.21860387716448	8.20145536819674	7.83100219915577	8.1053260600306	7.91921895759159	7.83740604903582
+"EPB41L1"	10.3038028948254	10.9275319537812	11.2559782409422	10.9984268453434	11.149665351736	11.1415280969345	9.98871228598989	10.6510323379418	11.2061413086453	11.2398167333137	10.5782998331376	11.1257436570354	11.2127108392056	10.6702133728434	10.889978574763	10.5057703733755	11.293247373942	10.8897258876651	10.9135951220235	11.1275062188101	11.2367969399479
+"EPB41L2"	9.90589757415589	9.56807462570393	8.46508572078981	9.16786487896547	8.96950691318707	8.65458614317332	9.29750262246266	9.55864397282839	9.30564065911989	9.03539428515104	9.56822802574192	8.79539394697669	8.95528896784717	9.07664844398982	8.73376242091188	10.0278495851095	9.06206132318199	9.34998336577776	9.26511581160503	9.21478763997416	9.29986669074101
+"EPB41L3"	8.68912392795721	10.1767497162549	9.91267621451315	9.87900412826257	10.4177115096856	9.1066836837029	7.6517410740569	9.50726444831278	9.90159753300811	10.4218841803144	10.3022673049899	10.328085842386	10.0631464851536	8.89555774771529	9.89149815631193	10.6638040623574	10.5325169148676	10.6929943776095	9.77973545597016	9.98487829000789	10.8300483972832
+"EPB41L4A"	7.59789417700682	6.97607202494888	6.53671443128668	6.17893238771836	6.64597711724956	7.09539812977339	6.14067178564974	6.83954361000466	6.2221640529411	6.67352896276082	6.71292507237271	6.54367896325785	6.50864653153082	7.25189968699727	6.39459160796663	7.27751850162711	6.60424680594401	6.87968186752419	6.39184173648331	6.46463538751185	6.75110268128475
+"EPB41L4A-AS1"	9.06616067220818	9.14122557669069	9.52862760592915	9.29470473193854	9.61345525731453	9.50323128642455	8.70127448674678	9.34694292738708	9.75784453964218	9.70245509187682	9.2401270347389	9.56805821128772	9.20085523008801	9.13141321490794	9.63017505979437	9.53256749667204	9.64145155896111	9.58417756597975	9.53074105693084	9.55588825419815	9.51705531831835
+"EPB41L4A-DT"	4.62251665316525	4.74254403385524	4.49497619638741	4.54541178436845	4.51168703355382	4.82255418563632	4.45050586776386	4.62251665316525	4.49008176145483	4.91306343836676	4.58358010786368	4.65915049192384	4.75262790245434	4.75583591089631	4.8087252044808	4.72940737355469	4.55739786132805	4.92646118637988	4.40187645130486	4.70180651944255	4.70026244383726
+"EPB41L4B"	5.08475673134784	6.4692099875834	6.72443389911742	5.8445279865867	7.53151884150591	5.82259314044762	5.66268536823794	6.10172455145438	6.6900521492224	6.7783260516677	5.39158029130136	6.42503942385871	6.20451218021733	5.73532092141702	5.91423351962887	5.92764803969021	6.99373891493829	6.26055707232894	6.2871574084502	6.76909130246291	6.71206339268031
+"EPB41L5"	8.76266147580186	8.15161414033368	8.21284553700477	7.93639352786569	7.85944652432533	7.47390543553088	8.47715753328838	8.51097187742324	7.88326250802626	7.41483188934914	8.12863903065753	7.63152851352731	7.79631111952332	8.09934258800214	7.76853989504387	7.72852429204367	7.92033048989289	7.9973484494739	7.57908556642582	7.80761287889074	7.39758789421237
+"EPC1"	5.24956053964613	5.26265897708434	5.82028421620649	5.16247885245636	6.77628679161935	6.6264040532414	5.09229184150166	5.38699373809496	5.24779863517663	5.1185867710918	5.26322104248805	5.18644377184811	5.23226219305753	4.73036396380397	5.23045797676844	5.45584697018112	5.38286147520874	6.00694508280099	5.22158447387345	5.42287069404256	4.96750392250698
+"EPC2"	8.43881010448526	8.42823361198048	8.94386956100772	8.51046868488432	8.61910700924885	8.42549136445357	8.26391301758153	8.2806981401604	8.80042813565433	8.50903451498178	8.50758216012878	8.35770580042003	8.48137052084079	8.1650293279043	8.87465515294434	8.66801230247455	8.65501589336687	8.70738024223101	8.66046563052463	8.87046341942867	8.48958583499086
+"EPCAM"	3.95763449252572	3.97521665806832	3.93809687295311	4.49221284936792	4.60143496385277	3.6224326354743	3.58075041556664	3.4662592282872	3.70087814314883	3.58269905251228	4.01934153799412	3.93213662583312	3.36679582005834	3.78929307726226	3.83875314666237	4.1647414434239	4.89470637886502	4.27731332735015	3.79260691662162	4.98452147952241	3.86269069168587
+"EPCAM-DT"	3.53165271093168	3.76401901291639	3.59633813407353	4.0814508587017	3.8511613475197	3.86611372540269	3.83239471446675	3.72326569143094	3.69286516008314	3.42819073714749	3.25597566455344	3.5581928248815	3.68831862007427	3.90356309227969	3.58538466766184	3.71031846596918	3.71031846596918	4.13511344450973	3.98506016341637	3.54970223383564	3.70956400099674
+"EPDR1"	9.75355169692376	10.4956077625352	10.6527555944183	10.6009745957113	11.4566509046665	9.89041998049241	9.15384682511545	10.3127004145454	10.8358618227702	11.3776353916348	9.9890549303077	11.0815509139661	10.6357668460143	9.41253998936651	10.8395320067311	10.3705241279671	11.2093244531673	10.6443411377938	10.7289784497654	11.1339829779193	11.4361321977108
+"EPG5"	5.89185721794352	6.13820941563336	5.0604705086316	5.95970610302724	5.30711658295351	5.50965862115207	5.87672470361722	5.94888312952166	6.19485485763525	5.57100456783909	5.93900793816728	5.99299941255858	5.7647288847422	6.15824982780456	6.09976280713533	5.51621464038124	6.37310260475588	4.68303805452752	6.26833669849458	5.87693294607475	5.85629004392639
+"EPHA1"	3.42598080769835	3.47298025610708	3.52829277705955	3.61197381937122	3.50117372901666	3.72090724332034	3.74611532368551	3.54869998083903	3.42652685410214	3.52059294205912	3.47298025610708	3.34056324994755	3.62589837570552	3.3404377108901	3.65158637677008	3.31792985969161	3.33073424609052	3.28312082380285	3.12134775472086	3.5789467913752	3.42598080769835
+"EPHA1-AS1"	3.13286306709146	3.10939698407494	3.27670027513944	3.08718494991094	3.00751141879323	3.14742788967527	3.19329141295069	3.23365101528796	3.30042176578684	3.34003958365075	3.15121936970805	3.36087562784709	3.39749535370232	3.11070292409882	3.12644932407424	3.31577692091721	3.31153983599004	3.28037248881495	3.09990242382646	3.0607856832157	3.12105495346067
+"EPHA10"	6.46963843057949	6.85292015916978	7.37943269195332	6.72540907508622	7.1361968943273	6.98080509038148	6.95842617417014	6.76485213237645	6.92882617734264	7.07437590073528	6.57267923437706	7.12103916919891	6.94434044561531	7.05576945560501	6.73253309867692	6.96507280171397	7.14738832808681	7.15477901930807	6.70972061278907	7.15020030247404	7.03102147531322
+"EPHA2"	6.12804836269725	5.09004490705715	5.22358180785958	5.70521875498061	5.61365293098007	6.37459970237826	5.26780351065013	6.10431643430728	5.53942133948931	5.40214157055877	5.26681966539107	5.3693944314714	5.92262701086147	5.81494273802696	5.41436364377312	5.26446916015489	5.40527783163408	5.81022963325939	5.29872558053533	5.40202696312572	5.99199146300321
+"EPHA2-AS1"	4.85240200585304	4.91078519372082	5.12660505679732	5.24356963647489	5.10499681095068	5.25588847549187	5.64027793720158	5.09620460018918	5.20141515653874	5.10499681095068	5.03032079002913	5.19910859616894	5.1970109685944	5.63134604245332	5.08024920903227	4.72444983547483	5.19149731284007	4.79181913247848	4.90333351276525	5.15239917715336	4.93516194940204
+"EPHA3"	5.11762664438696	5.37443872324913	6.13694842746732	5.11800646398126	5.66215176841443	4.87222486269728	4.72083029964895	5.43678644818958	4.88121202136497	5.09536292001676	5.34153597328702	5.4588332264734	5.0934537033914	5.17531102246592	5.62282885032255	5.01889158533175	5.10279238529049	4.95300095642613	5.42852556413064	5.99232958392796	4.98000714632021
+"EPHA4"	7.23188133516602	7.94874429363251	7.97800942584909	7.8791830856771	8.91967801841225	7.30198114034781	6.39854806614858	7.55111920910948	8.03523155826843	8.83825376381304	7.08995666284767	8.91716726960125	7.7713802990708	7.1329808514723	7.89263084400386	7.9421974091815	8.67388480971537	7.89527149671981	7.93837199589939	9.22353544691079	9.11323633879391
+"EPHA5"	4.87098892684911	5.92486251596102	6.92001390283484	5.79866918131023	7.17004110820046	6.76219006653888	4.63428655770604	5.71206105561136	6.34491395371694	6.28344761576574	5.81706683750286	6.61482981806408	5.62537345676088	5.11563847440622	6.48736446627437	5.61209916033851	6.10271985819724	6.32632885493423	6.14783941098533	6.82153507381057	5.85178111419728
+"EPHA5-AS1"	5.79501272711706	5.9721574541798	6.19996723533958	6.1670695359745	6.16778032522281	6.91159617666883	6.67526236714917	6.35429614021334	6.28734704016592	5.9229210196641	5.83027540700739	6.09213923269872	6.2030763496523	6.57400539175762	6.39539226390783	6.02530209039828	6.16319032426261	5.74034527039251	6.35329726890607	6.12984407081768	6.09207270339924
+"EPHA6"	3.9526432462815	4.26305368095071	4.20066426467189	4.11901592407419	4.2199736487155	4.53853159696151	4.32351478355936	4.30260012078665	4.48108730479083	4.42732966090988	4.19479574126043	4.41842563060785	4.32312586636902	4.20465361763303	3.98702172948847	4.13075649723786	4.26324776984239	3.91937774211339	4.10588611444957	4.45885790541455	4.11065693404601
+"EPHA7"	4.63888096077212	5.99449232349793	5.55253756903542	5.54401917941556	6.47017173638984	5.39898291932512	4.57702404438903	5.19140983145955	6.19413417847784	6.70135490315711	5.23026186262127	5.94037791409894	5.59234515657673	5.16274360254425	6.12350285301047	5.37682447631082	6.5524404442333	5.8516979124991	5.68890998193129	6.82169202953033	6.53444475426697
+"EPHA8"	6.31429396779173	6.24379013433612	6.20795769672599	6.39635131342257	6.22436321691284	6.72429871587785	6.57711310219331	6.22364078799269	6.44462388154056	6.34602942256585	6.14462668111173	6.18763439753723	6.41409056284689	6.61306948420102	6.30338147326039	6.3778946361277	6.31429396779173	5.67391258957803	6.2675148223629	6.21489414363936	6.49588519650305
+"EPHB1"	8.12201406561024	8.35443378247537	8.11502405045575	7.2797226383436	7.84870272918598	7.39328430517659	8.32923647748747	7.57102465524297	7.80562765360181	7.54363155484774	7.86911785035402	7.1536690493495	7.77601972256748	7.65689417386088	8.13769383854255	6.31018526135214	7.42252701352423	7.67551527004332	7.65689417386088	7.38621314213967	7.0235896284086
+"EPHB2"	6.26797458163275	6.67500043411534	6.81920317327122	6.39499757139212	7.03245256000156	7.27277651291981	6.64806030103261	6.26802473710937	6.8640765751705	6.79854642133952	6.68991709560082	6.54277742461903	6.46989346770501	6.59230219192548	6.39870811419464	6.97895628001412	6.68991709560082	6.84641401913297	6.41947147500538	7.02616466373238	6.78484106136514
+"EPHB3"	6.77480550262135	6.686806761623	6.60493143418491	6.58704242154115	6.51175731818361	6.29879015013825	6.70217275020497	6.54659556922926	6.61951121850993	6.55593879402747	6.44840437320261	6.45379117510307	6.45553227041363	6.51519473000883	6.50498404686688	6.57747998855109	6.58472216535486	6.3837135959734	6.37998700479554	6.9713315617339	6.86874902059063
+"EPHB4"	7.72934911533555	7.69552405238092	7.76380625465938	8.08547018923038	7.58035076451678	8.40756661838966	8.80476538541517	7.74599548289784	7.98186810800997	8.02239026506447	7.77045669317954	8.01818635241418	8.19853354613596	8.45832271340389	7.98075002135077	7.35365180437383	7.92611915964737	7.48401034611211	8.19486353894173	7.90431129072906	7.93751491076865
+"EPHX1"	11.7508022482404	10.2719742738069	10.4837695950836	10.6885652570437	10.250177755809	10.8095449213609	11.9101988518051	11.2359102289598	10.590949145987	10.7502569792526	10.9248343237356	10.082600744115	10.684197000423	10.8146344832267	10.6328571960753	10.4934511167328	10.5817891831415	10.5242573868277	10.9362393006792	10.5540782360378	9.7645926482221
+"EPHX2"	7.15287297968701	6.98288790807697	7.1125212541907	6.5728380978364	6.94537607955347	6.38090974662743	6.83571555989061	7.18142743685868	5.7938234306143	6.74435486395056	7.12818471627094	6.5627557026573	6.18525411831997	6.32009929268315	5.84324430367431	7.40551155958732	6.41041781069472	7.26301876348994	6.30456530859725	7.00604223466238	6.43669379064976
+"EPHX3"	5.08145647675799	5.22183814795293	5.46111327978163	5.46304644753366	5.01646824597292	5.42638056079393	5.73188097864119	4.96917016637099	5.19157756357157	5.47238404453623	5.31876110706325	5.4019107505419	5.21290784316184	5.27820963486744	5.42459983903564	5.19135791945074	5.36506398348912	4.91036701056561	5.08932954645208	5.20804110921002	5.36112780136974
+"EPHX4"	5.6559370218794	6.30499642173992	6.61786330757004	6.84942271533786	7.54127311975595	5.76950933278826	5.41040755411848	6.19762777142172	7.24583148113113	7.34082578056613	5.45041995283107	6.73289937376026	6.88770789916435	5.70562894890026	7.25292422294467	5.75663334100607	7.25892837224445	6.652392942678	6.84496929924392	7.28714497137988	7.02771038350416
+"EPIC1"	5.6705778911471	5.87010844459758	5.857563902182	6.18786076929621	5.82673941909572	6.07958747557312	6.18293846369017	5.92789876027619	6.0577706046823	5.56535378310579	5.6416864706479	5.7946814127797	6.22218713042695	6.38506659248588	5.99495400064366	5.34723653418003	5.73971809950586	5.49270391718676	5.8788232046433	5.65351770119134	5.76145628120338
+"EPIST"	4.00532749341177	4.02152355176177	4.27706471119407	4.22051640114121	3.89039605596159	4.38195702000894	4.78828238879333	3.93552868151749	4.26563126517973	4.01159286631987	4.02362029594143	4.07376231637116	4.13524335779346	4.22234523900494	3.90527208519706	4.07376231637116	4.12243703610009	4.02362029594143	3.94446861915577	3.98841401889304	4.06682058068618
+"EPM2A"	7.28437513235231	7.28949359403817	6.67201783955493	6.72078058098781	7.11061245823858	7.43354825247852	7.2529485128021	7.24433240229203	6.69817180195433	7.12760396541213	7.81111747582782	7.06564228798902	6.75391113078074	6.7804190851929	6.93081061410203	7.39099522831461	7.09617343326876	7.69188401648775	7.24719586381023	7.12541516528508	7.00667711984749
+"EPM2A-DT"	6.65043183089609	7.03874090549947	7.11057823454536	6.24638202837286	7.43611975583893	6.17069023807036	6.07977631076077	7.04986726825049	6.15764874063938	6.55614368191586	7.1489595957189	7.11499454586799	6.0587769931855	5.69102499633529	5.68904484115865	7.28791732333398	6.47723401531253	6.74159907235308	6.35114473656821	6.68718111358368	6.0966377802434
+"EPM2AIP1"	6.78815532150971	6.87301212245118	7.10731997642395	6.79542450197159	6.77749050957255	7.37954149237787	6.57211625616677	7.05431537897466	6.52062437716209	5.62722151353734	7.14463851248388	6.82632357330451	6.76731102635749	6.34898416167672	6.83770975644271	7.28164351859235	7.01165354922771	7.71499458756045	6.82874305789312	6.443834933189	6.45574290993031
+"EPN1"	8.5014805543651	8.51721596405388	8.84628635019644	8.70174952117246	8.57471413843711	9.09151030987566	8.79863911434363	8.55811530406421	8.69450356225684	8.87138758314397	8.42595714732966	8.8639846310304	8.81028295179156	8.96167409771343	8.6002547028111	8.29183315108625	8.76274557961338	8.31118779842451	8.60253065291505	8.83840285358943	8.64315009846844
+"EPN2"	9.30553288049954	9.08823716355554	9.13197636632996	9.05108412189874	8.81153458073681	9.91624405626767	9.21164844661259	9.08692627038328	8.75959413616177	8.52546189135594	9.43451580627147	8.58378199197269	8.93614856200054	9.1473485965239	8.98813257653445	9.62549855807658	8.87697415793621	9.77039869960795	8.88766049834705	8.8050848755759	8.44131538436121
+"EPN2-AS1"	4.14403274575795	4.08760134636187	4.0183853372689	4.16089863856463	3.79866287145304	4.06150927318671	4.15965697008562	4.12837773652782	4.22750660259733	3.8372096911996	4.08760134636187	4.07811149038232	4.13420600901039	4.38868229331506	4.32105426994091	4.12837773652782	3.91376380689959	3.96801694708051	4.33233046361859	4.08427777824437	4.10425814136837
+"EPO"	6.0844513599628	6.11410458380699	6.21377687739126	5.89834366819061	6.12193708732992	6.9464577503632	7.03881403339542	6.44067483123101	6.31927715190717	6.42504906866994	6.07712224293783	6.39756079512802	6.37924679416959	6.73185528111348	6.28552169706969	6.23838668444553	6.30196487492332	5.80668784496655	6.57387962887378	6.4589908453682	6.22571379050789
+"EPOR"	7.94659397886471	6.87918026022171	7.02772768398516	7.00174438650156	6.92051418457044	7.22482143622915	8.21458012032573	7.09600930180284	7.10951849698619	7.03134582646087	7.06560501625193	7.1100810326869	7.12222478321287	7.4288987735229	7.00649489947399	6.99469201665118	7.55994569840281	7.21553459191859	7.47206201972658	7.23760698473885	6.99197791831006
+"EPPIN"	3.47960427064542	3.42307229741542	3.12122429916605	3.72144177300804	3.47960427064542	3.47298025610708	3.13470775003432	3.37970009408146	3.30042176578684	3.45751522158255	3.48739869420673	3.68857137254553	3.42591196414042	3.4464277036396	3.67627110594648	3.46883003152474	3.51280973563024	3.18029171063115	3.29371210137819	3.59328512942323	3.86048101512148
+"EPPK1"	4.97651374246265	4.40422664719564	4.40187645130486	4.2670325972529	4.33228103593079	4.61046419147135	3.83695959942122	4.29938893389525	4.22486172742754	4.40187645130486	4.31724874697785	4.04286547744235	4.60447664438825	4.08799197170554	4.50925102156841	4.61284354163675	4.55974308300449	4.22340697133161	4.11020467126678	4.92292916124671	4.70430714982571
+"EPRS1"	7.8858789156562	7.58688890473727	6.453085510806	7.40358949346822	7.51665578110793	6.71607327901556	6.89839227637915	7.70613254642522	7.32478344203905	8.02200293314701	7.86115250545292	7.88651337926041	7.14351876180387	7.16682447455431	7.31195858218541	7.69165547033712	7.494214053465	7.53402618330654	7.4301274346914	7.97963049955662	7.85983910127325
+"EPS15"	10.1850799357665	10.1475894442672	9.86572517936412	10.0770271672952	10.243615248188	9.18005938627192	9.57932747231471	10.111107901822	10.0388782409318	10.1807676535439	10.4319152903169	10.1991789317147	10.0212545736403	9.40839821626742	10.0062915476067	10.4399375152514	10.206038382087	10.4737854632809	10.2671718142704	9.91851745750152	10.2590746146316
+"EPS15L1"	4.89183982489267	5.09122390903668	5.2393487407662	5.41319049330832	5.2019095137635	4.891431597517	4.99295406018985	5.13852792563751	5.38844211534397	5.05093088707718	5.2393487407662	5.86701355292833	5.2035850681817	4.87244915964622	4.5658552464298	5.36971192270261	5.52063007424722	5.65849817645949	5.19552020876248	5.31958737103795	5.26427929001776
+"EPS15P1"	3.03528113822439	2.91262238554221	3.12918774748908	3.18057437033577	3.13532056549469	3.06059477603285	2.91206763276964	3.05814716789064	3.22680502716752	3.11591700155528	2.95558423950795	3.10445188916792	2.64280168626567	3.05255124538224	3.02471288538393	2.93663401829323	3.19751186428787	2.95937233605088	3.14423671100268	2.98196249047147	2.93745197504432
+"EPS8"	9.4575202924107	8.43439116356955	8.09556774323119	8.23273576833779	7.87437623811608	7.80479926240773	8.49321279554011	8.66272015016754	7.92711805361663	8.11798401092602	8.60953382404234	7.75833062595153	8.24384822484423	8.75671434664492	8.03436135690537	8.4373968027928	7.65780919329065	8.28581322966784	8.52526508619244	8.61174999394303	7.84970398120889
+"EPS8L1"	6.6675920705076	6.50753433466736	6.60099140551667	6.65822850994907	6.54420532855797	6.89921108638967	7.25185616564519	6.50562538675028	6.87345075169252	6.63029809539277	6.3294836743057	6.51806591095123	6.95437971522139	7.08398330731781	6.75202114017177	6.45367842473181	6.65183987692601	6.50232708917412	6.65822850994907	6.52313267881419	6.67444375536461
+"EPS8L2"	7.51965333543035	7.00519182904199	6.8504963353139	7.0428988357604	7.33647441407881	7.09447583792203	7.14688383345499	7.29396625051904	7.13081736787554	7.20976657207406	7.01390624726756	7.25511331576414	7.24209816791887	6.98822979883639	6.92109044690669	6.57297778340476	6.89317647162548	6.68257868841693	6.88910754040668	7.6441837154751	7.08550581634435
+"EPS8L3"	5.76776488752762	6.04077735049063	5.80190450501194	6.13081348530307	5.99699571162763	6.28904896942286	6.03181159955754	5.96864801341201	6.12891916010847	6.10132076166214	5.76588915884526	6.03741346896304	5.99990831857885	5.92215013472151	5.99699571162763	5.99699571162763	6.06991757604207	5.63008050722849	5.88777528749396	5.92996058697613	5.99470315254401
+"EPSTI1"	7.03507938211179	6.46233737930655	5.51048054024039	5.80384961348675	5.87691406858114	5.70917506271211	6.08730654658332	7.10241435639948	5.82613471278057	5.97464882956425	6.18485580388448	5.53096337113436	5.68252365059641	6.35394658592951	5.79641441173885	6.05921737087814	6.16311525104359	6.24443397539332	5.60048472305042	6.10491618369562	6.16916548909162
+"EPX"	5.3153155009967	5.5105343679958	5.28588923482782	5.6248647250951	5.45105821357904	5.89800965603352	6.29079601809376	5.66811707961597	5.50590607289787	5.55972372587674	5.18944324558437	5.59399724801605	6.05742326576766	5.8233503799777	5.7794120696666	5.60746443397661	5.6358385586528	5.24159344297877	5.74098876048883	5.60244300386434	5.51014632409961
+"EPYC"	3.17137048373343	3.00433584253542	3.24066188559043	3.05152881299959	3.1296868036751	3.51254819101841	3.23152096940338	3.03796292623119	3.09271034914183	3.17431928442203	2.9584057573181	3.09943728697917	3.0595826202585	3.03716470402842	3.06740805222228	3.1319413940582	3.05009181997926	3.08417116437327	3.22234202993832	2.9612702016626	2.99245884840149
+"EQTN"	3.34059980818641	3.10271875687885	3.18862084670605	3.19565048395629	3.30099749830362	3.45732062678383	3.49314807653104	3.20613388925853	3.11207821779598	3.22255750683555	3.17662551998812	3.19970488624553	3.19239129705914	3.34688548364237	3.37713065527892	3.17056106004132	3.14837856425994	3.38472566063944	3.34237472488881	3.37526270464904	3.16227436078501
+"ERAL1"	8.41901078863717	8.2516136210394	8.77970034086972	8.16431462432675	8.55353309825577	8.39435725699996	8.12865274848647	8.25879061535222	8.17089081766057	8.32767163459868	8.13571212648407	8.32787394805261	8.00911057514474	8.22648200651991	8.09856564718358	8.25876307816438	8.20994841666203	8.62604068347178	8.13705128893301	8.58987978480537	8.24239268956875
+"ERAP1"	3.78230690521545	3.73340536859488	5.72536146002368	3.5448582959148	4.46166034850697	3.48003470577109	3.78230690521545	4.33742538760009	3.73117566847063	3.4793514359925	5.42210685631753	4.94542686440032	3.91747510671074	3.3270690696104	3.3706610963308	4.69635393856003	4.55561106459764	4.09512767248834	3.40765795023543	3.56430338441713	3.69709538458106
+"ERAP2"	5.56077927499413	4.27417518401684	3.77393785743342	4.39828355696571	4.27445456895281	5.28141504095585	3.89163371714681	4.20479628536753	4.18364379959	4.43635694705121	5.32585029707932	4.00153303182568	4.78493167431888	4.62142070330257	5.3298061898269	4.79478271996083	4.5713810970854	4.03211547627415	4.1809624752242	4.96465875204189	4.43635694705121
+"ERBB2"	9.50241778900859	7.63362695455383	7.74509737580824	7.48999259323526	7.34257390522769	7.11398267875225	7.7909604946614	8.22380140726688	7.34632150168841	7.45882337554892	8.14829614718848	7.53402618330654	6.94368307863578	7.80302466930344	7.12780319183253	7.52113313441411	7.15253399039476	7.05413037601503	7.25576219890416	8.04832557804285	6.89052475439578
+"ERBB3"	10.1515981910733	10.1252623957713	9.58563823149822	9.55998971352638	9.22290066725796	10.482229703969	9.5411738549779	9.31758517512849	8.37100938374772	8.60752907921349	10.5970969915652	8.90880044835262	8.90117846237677	9.77834386615887	9.13725090060662	11.4078149544729	9.28986977284861	11.3639307027197	9.13252662912648	8.18933068126512	9.20714548827742
+"ERBB4"	5.26171924212312	5.65007146584897	5.59244771667565	5.63560912270612	5.92541151423276	5.44089096314885	5.48373471114602	6.21185209890993	5.80978586383108	5.85037860556995	6.03014660667997	5.86633600246165	5.60492954969895	5.9105813472478	5.26134166925804	5.61784812087413	5.66410796466703	5.40538474598569	5.35399964018139	6.19726666524423	5.78118707017365
+"ERBIN"	10.1171533453746	9.12458767119602	8.55440294012971	9.36624211441052	8.74884837323234	9.57746587091783	9.13891826386519	9.88612997662003	8.62072298909482	8.48301749293082	10.1371909305981	9.07534324830408	9.47442071850083	9.12880453290621	9.07021506704222	9.10602124765097	8.92636060862906	9.85465561164615	9.24134182306978	8.12316768149471	8.83501699986007
+"ERBIN-DT"	4.99372060740065	4.97500848139807	5.09455689204878	4.98986998149277	4.80905405001374	5.2156276212372	4.90495644906428	5.11760320566818	4.78008863174065	5.03174237022639	5.14534584089212	5.1803298308774	4.94303338123271	4.87811267054934	4.81160689314281	5.22091145479911	4.73555030266278	5.11201438088293	5.09060581239452	4.80536090536264	4.73617276857555
+"ERC1"	8.30915637057586	7.67347850354898	7.87287318333829	7.24933961282581	7.38288547863635	8.29586445718452	8.02617113419952	7.33023668350655	7.82854293215042	7.69617934399048	7.82936966703302	8.04653859966002	7.71830474116555	7.70015182568492	7.82900640210215	7.88129627195075	8.03803403554944	7.61254962503175	8.05283670381804	7.84957766243249	7.00390178575506
+"ERC2"	8.58365672955479	9.37253880886289	10.0881022415846	9.35081768562209	9.75341721893455	8.93346468924006	7.28304742078776	9.38542213857115	9.27762443723783	9.44119007203818	8.63822278069895	9.77770745405923	8.98739302199173	8.36808579632999	9.66700738285391	8.77944797934802	9.47675166322611	9.24536758893494	9.52159413202446	9.79295862788669	9.44121393236962
+"ERC2-IT1"	6.12851024636576	6.40827464890389	7.17567304175422	6.50059613146142	6.08729090221138	7.23749976065729	6.59592401716849	6.3297813595326	6.19164026565591	6.24857401345179	6.2030763496523	6.55010924773006	6.59995618875513	6.63498626920804	6.52634980771321	5.6574801806283	6.30092681934937	5.75347784025293	6.3297813595326	6.1161293450946	6.23621590997436
+"ERCC1"	8.67508033368817	8.49612182794131	8.38618158445006	7.94499365169893	8.44995260224107	8.15192322254427	8.21613716719426	8.21761296209786	8.18378901957404	8.60298489864716	8.5161881762207	8.4172825057756	8.23082573216379	8.22818419283221	8.17463357633912	8.58247968755046	8.21965912037549	8.57035883468827	8.0480404213047	8.89562622370591	8.48457207540648
+"ERCC2"	7.40409019487239	7.26395605191056	7.45710226704161	6.88427468622997	7.24436539579128	7.14282103638527	7.61089422477668	7.03249711622243	6.94871677620149	7.10806231213293	7.11462840850246	6.9774371702711	6.93528808410098	7.22612701792402	6.71896341753913	7.13462533155225	7.03085229836481	7.30616507973734	6.8541966074825	7.42843043106864	6.92254044644134
+"ERCC3"	7.93616597326888	8.0854325323933	8.34670836118121	7.73765085468487	8.21824171077384	7.78982098392625	7.35489431007825	7.82742108408799	8.0751508986967	8.2354366818777	8.10782049891414	7.96068075317595	7.63942803680686	7.76489486556904	7.77719027975338	8.21238079778164	8.00333616997205	8.3435800356115	7.72731383921614	8.22089643028889	8.07042283003452
+"ERCC4"	7.06724661569197	7.23527502758923	6.29735924312185	6.93017059487968	6.63774856055973	6.62573534172986	6.97516746539439	7.08401171401194	7.0494448074725	6.97516746539439	7.16726104543761	6.70096793943119	6.99061053435462	7.10749342974368	6.91991234132982	7.29064661347494	7.30824147227433	6.29122403759867	6.88152402903882	6.82589515751733	7.21186722414828
+"ERCC5"	3.35144627375742	3.240656076554	3.30197213082444	3.2347746813709	3.39974374040184	3.3532750551046	3.51852756510015	3.47646632779208	3.30042176578684	3.1897162667685	3.2218301753477	3.4106492904256	3.36643458939025	3.5129818416894	3.63608635751374	3.11170098950275	3.21172626355746	3.32079614051099	3.15702426230183	3.18209740815639	3.30595450541498
+"ERCC6"	5.66772324285811	5.1526977122736	5.48353717262487	4.91100454531016	5.40253067650717	5.03510683349168	5.11796556512396	5.05190838381294	5.09831361174612	5.09831361174612	4.96025933163237	4.84001691834518	4.93779438031075	5.07175789454454	4.93596367619336	5.3272578904872	4.94498448929325	5.31871650049309	5.04796297111279	5.51697586654017	5.09831361174612
+"ERCC6L"	4.08022174867621	4.19818030628423	4.19818030628423	4.35503271499443	4.06969984766169	4.35630564093701	4.4124751969533	4.17822023087718	4.25630353516445	4.09971651642486	4.16572271406418	4.09615742208499	4.31955255151919	4.17846897006649	4.28114240078323	4.14462887567453	4.29953210448215	4.19818030628423	4.26922254456699	4.20298284022139	4.19066345843554
+"ERCC6L2"	7.26006997396547	7.24753773144844	7.94901176226612	7.33949304013611	7.37173509786848	7.25955036785211	6.90083487035061	6.83111762473576	7.38751640557171	7.38909493360749	7.10770860988915	6.80824284673777	7.48098948020822	7.21802874869502	7.31104196085477	6.95350816257799	7.10523854993717	7.66859156590843	7.09657671293619	7.2428916785332	7.4901406153602
+"ERCC6L2-AS1"	5.89047021692407	6.80182531407694	5.04813431251689	6.24805382549595	5.47497484484807	5.64438202516616	6.01957723785303	6.22035698729366	6.59116793793091	6.09827798851779	6.46648497605652	6.61199328951794	6.15134617839729	6.85123037725432	6.80141997977602	6.31689959940998	5.97373370464583	5.34810385551279	6.31549880883879	6.71138745322811	6.00100419804072
+"ERCC8"	5.30244655467032	5.63995204487947	5.20802832618888	4.80539215291718	5.38803057989294	4.62925617209285	5.44608651465389	5.28212870246429	5.30880969711325	5.40901832283017	5.3467783572827	5.27507280998174	4.6544408958588	4.69988659885436	4.95771342590708	5.39173338124981	5.4104068299285	5.71536310939745	5.34733353188264	5.37960128466098	5.16373223318345
+"EREG"	6.38064738630159	6.26272269685162	6.32032406766099	6.55616851897506	6.29127791080519	5.9029054935002	6.38621016255878	6.3454641499755	6.63520514610012	6.46923851950088	6.36653840845061	6.61384491177737	6.49267127652899	6.40638139208693	6.68825979017225	6.59946087580754	6.47260315503772	6.18326038807549	6.55836438160168	6.35658514726325	6.77291016460534
+"ERF"	8.51779600449806	8.15720405441809	7.93573815963074	8.26238258279358	7.85656794426696	8.79088515478631	8.60189257685396	8.45833504912004	7.9203433382896	8.2022048182081	8.79787272438407	8.42559805427306	8.39765179488634	8.55396221584918	8.10826237728631	8.28983424036487	8.31319130297928	8.80906043478308	8.18854979714153	8.06965220414449	7.7787007978497
+"ERFE"	5.74184032297507	5.81802997675296	6.63981681369342	6.13643746801448	6.29060126232355	6.10628640700625	5.89502507828445	5.93205053860108	6.07854110773496	5.9469406045936	5.47831590142259	5.79834880574275	6.09872038472331	6.0088375330385	6.01954168466976	5.58407982860543	6.0088375330385	5.69850590212678	5.95064509775566	6.88678728171805	6.06958091592352
+"ERG"	6.97320199197167	5.77872950452485	5.36946462573316	5.75927691378943	5.86940408743131	6.53375252176534	6.22849752284129	5.80073411502646	5.42323350381873	6.10271985819724	5.77243969745981	5.27309387492674	6.28756721467514	6.32090276927531	5.76526079514817	4.87736830207084	5.30766823226829	5.71518910027999	5.35081590805166	5.87680729915042	5.4644466501823
+"ERG28"	8.14927207721801	8.18164463338219	7.58300437016639	8.07840176616167	8.21370620361729	7.82432523161688	7.78207409444196	7.92042685021295	7.8518279141564	8.34326577188184	8.22512369524377	8.21555142116298	7.56309117922395	7.36716586717793	7.61432657912049	8.31330720961446	7.84257050210622	8.29945410492559	7.95663690482778	8.39060521061108	8.05550588823562
+"ERGIC1"	8.19666147452375	7.72397640265384	9.0220356505543	7.35809349379476	8.72641182101969	8.7577436421543	7.26416484525954	7.90307208828137	7.80095906497284	8.35326081458393	7.40212419521901	7.22208297719781	7.67068395342802	7.30470591751249	8.15273131356458	7.55938249707234	7.58871757236532	9.0810058369108	7.37260741589811	7.81583289550724	7.02386243992352
+"ERGIC2"	7.72493868362274	7.94159766097517	8.05583759888063	8.19129941299855	8.18577326932203	7.38494012784969	7.52957149314885	8.0746063476479	8.18053162298177	7.71800521151613	8.25463093974192	7.96718254728868	8.04141004713252	7.79660374711543	8.34823034996118	8.30422077738365	7.89946783335632	8.07648511273891	8.15084965121059	7.9423142192566	7.82959338501996
+"ERGIC3"	9.49525678784351	8.9847345751554	8.82959113423447	8.9340946416173	9.11490601901505	9.19591662341086	9.29754895846735	9.13976733371812	8.86272699033888	9.30595539236732	9.18411644755983	9.25482249508227	8.93281845573363	9.01109203439009	8.75289213741153	9.21952665142677	9.00705932028641	9.24486066923417	9.03357738451261	9.52062902037231	9.20006669760842
+"ERH"	11.1432432335257	11.3331241140897	11.5002439106746	11.2228013805681	11.3780529785184	11.0679576517624	10.9326431809112	11.1862267895982	11.1183157945902	11.234878103549	11.2826712783232	11.1631742829154	11.1631742829154	11.108030544291	11.1624397649406	11.2577807716112	11.0121317986476	11.1631742829154	11.1705390304293	11.222775825424	11.0571844018968
+"ERI2"	6.79758646077907	6.86817476099273	7.21136846668994	6.29079601809376	6.80211890943194	5.90203539561586	6.05205499073231	6.34182552949009	5.82571943467718	6.22619955772884	7.07680228682664	6.28809143291088	5.57520282254772	6.09321691712288	5.91195625768927	7.6215732050843	6.11377723538456	7.41373973007628	6.15860203657152	6.58643456884311	6.28552169706969
+"ERI3"	8.58708981259907	8.54176565021211	8.78595867263874	8.26988393658085	8.89049125583208	8.15464880281763	8.5913994128686	8.47415372937469	8.46470563263319	8.56879370583923	8.45034583346174	8.7076353912733	8.16046696976404	8.08363929716004	8.43749090197087	8.60718484300534	8.43204839684059	8.79871226186358	8.35363633425951	8.91655165901737	8.51703725767207
+"ERICH1"	7.19298447391746	6.70362457710228	6.95173035285805	6.84608002704234	6.75658204083591	7.62917834119029	6.85719777340498	7.04141826072762	6.66811610708489	6.87421664663877	7.29431835564511	6.72540907508622	7.09423467094392	7.03330805194007	6.73253309867692	6.73988551067213	6.62999979060482	6.74156446253005	6.84608002704234	6.84608002704234	6.62476889256716
+"ERICH2-DT"	3.72305814010273	3.47508067950629	3.37277820207701	3.35445834642491	3.34317718918302	3.21298117002204	4.08966005163984	3.48159592148139	3.47508067950629	3.61915663035838	3.48229370072322	3.54222717601307	3.47508067950629	3.56985225026227	3.83596033677883	3.42113088240042	3.47510159526883	3.40719843816787	3.54145129566856	3.43704076793892	3.67884275111033
+"ERICH3"	4.0829159536155	5.7387301614239	5.48471439088668	5.93485686331844	7.17093031128198	4.87334971784542	4.4437016640601	5.54167099802406	5.94052944787821	7.5544244303821	4.69199221233345	6.73840516027338	5.08771442907837	4.73563657601757	4.83851391392687	6.04566898624723	6.3504598942255	5.91112160275751	5.64917469532523	6.94066761758064	7.46321237848714
+"ERICH3-AS1"	4.51224431667974	4.57512919121534	4.56314421967201	4.5669600191339	4.59002769011986	4.57388727225206	4.90096346596718	4.43632316759458	4.44484070114656	4.57050095940244	4.50545385558814	4.54137198263651	4.55997744098857	4.82602285059943	4.46949725802189	4.54137198263651	4.51419084886844	4.16514552139705	4.65631252165461	4.53050496635159	4.51529593325112
+"ERICH4"	4.38155753948702	4.50977777135906	4.50815203581866	4.60081956995329	4.58815965006379	4.29959757137263	4.54751080496412	4.40982593643743	4.6409879730495	4.50815203581866	4.47670225160393	4.50815203581866	4.66789506771436	4.50815203581866	4.49079783204272	4.50639731363133	4.52089045847243	4.38868458282386	4.45514920923651	4.57309264684472	4.74804806254229
+"ERICH5"	3.52260276971418	3.53556735190412	3.58128442422376	3.80910850655984	3.66708382814895	3.28788905117261	3.6611482745832	3.35067878314635	3.64717984007271	3.78297181400333	3.58657035912302	3.6451677223008	3.77411877830712	3.42025824009778	3.39841562454627	3.4968643339601	3.58128442422376	3.51063389950808	3.24338791133665	3.53851589680267	3.72671353130302
+"ERICH6"	3.89743695355527	4.40518445553755	4.26401692815446	4.26092309375431	4.7224039617021	4.57526787261292	4.51443474875203	4.59640976171535	4.63127029291817	4.64513989752745	4.14274581044182	4.27529787118686	4.24929405861512	4.44513201948622	4.27770391052219	4.52982597365173	4.29938893389525	4.13840805799242	4.39235248727854	4.16325644402003	4.20884631351508
+"ERLEC1"	9.27763958408134	9.5327268874245	9.41053601580712	9.20490813590565	10.2930925036015	9.27810432173818	9.0226243743917	9.34841622296802	9.52599361589316	10.237541927787	9.51129363565591	9.91446546553659	8.93441503142142	8.89459998063006	8.97876688436002	10.1246745942472	9.70456759558837	10.1954090290985	9.43648345079687	10.3351782900022	10.1816509864371
+"ERLIN1"	7.46229875158343	6.78289606126118	5.68042806266308	6.68190999382521	6.87622041959211	6.11861947196445	6.77863426035727	7.01356154578732	6.73037632254024	6.76952520370632	6.91809906756682	6.5092739819237	6.51170660684866	6.3593364505816	5.91355115064936	7.05884903982593	6.41718312534915	6.80431382660152	6.78317057326587	6.80357840394665	6.92051585925875
+"ERLIN2"	7.88949564388702	7.87127019717509	7.22550218613631	7.2295979591879	7.54615221305568	6.55490076244565	7.20723092761938	7.63666896211003	6.57193080202935	7.35797685370766	8.23074427395142	7.2025458777103	6.71350125677789	6.78698416464965	6.27673206577635	7.88733848269788	6.91551666616397	7.87043080166915	7.16919983081673	7.27170677618967	6.68440777944997
+"ERLNC1"	6.55838122532395	6.94202762924746	6.27275807418204	6.850412224528	6.61309243737037	6.54778130164811	6.5384335520485	6.64273103031283	6.88140083215564	6.40200502739972	6.48710458309146	6.69562272383158	6.78505675748667	6.62875171226049	6.64737513990755	6.62875171226049	6.66762202483325	6.2385806075756	6.7105689637057	6.63513249176605	6.78316352334852
+"ERMAP"	5.77806338342706	5.56035088690433	5.79290381776969	5.80035166667065	5.75999274188423	5.18814461838171	5.98620707750879	5.45197360438168	5.33574129397033	5.88435468254505	6.12639010004436	5.35853085164954	5.48643449648661	5.58712511948417	5.5046976004984	5.50207768972366	5.46049976254501	6.10715733246769	5.5017391600587	5.56312711519261	5.29223742554174
+"ERMN"	10.9213281423876	11.3680381760579	10.6614281705875	10.8182465500127	10.6453833955865	11.0672303741284	10.6950666647363	10.4738037613964	9.49008073042662	9.92326582019141	11.9546198964333	10.2953088005224	10.3486041810055	10.9457903095182	10.6339089625835	12.1476708087483	10.4055687223717	12.426589238619	10.8145178905117	9.3971085262497	10.8343947176248
+"ERMP1"	7.18769630438318	7.51808949125344	7.85230430125896	7.61194815146463	7.18383981753661	7.55057249635273	6.82560609397005	7.07078182039956	7.03214771434891	7.15254294958167	8.02624151578829	7.17497727771054	7.1173851888095	7.11351161013324	7.49337398304002	8.68015989848125	7.52837137696748	8.39575081547857	7.54708203773703	7.07231045609224	7.27743962498249
+"ERN1"	6.92347093105779	6.52893271390552	6.770335509383	6.31492887415062	6.55017950570769	7.14295926159674	6.74053277162919	7.04573177048276	6.25975585486541	6.42316959745497	6.53060811424171	5.90806806395763	6.29146708000458	6.72167388995617	6.53555580588306	6.55760306617614	6.63966095478919	6.69253592042878	6.31688145576524	6.63738939204309	6.36017278949439
+"ERN2"	7.3775906355823	7.73604057025109	7.51315607371043	7.93791721968553	7.42935078856021	7.80785697455885	8.16227117483885	7.749275763047	7.91118487712682	7.67012641804783	7.73604057025109	7.62387933444433	8.13371018832125	8.15442700299542	7.98058534552723	7.50783448896307	7.70885078268237	7.27510144969694	7.87976656700695	7.24058436942008	7.73604057025109
+"ERO1A"	6.6384102543407	6.36518168044999	5.97800896169146	6.42444108413769	6.67087239692417	6.00990179220662	6.16625421708886	6.45562402650744	6.12759350124128	6.46886950588064	5.89794797060701	6.55408680100586	5.93453513626568	5.70978513809009	6.14408322850968	6.61622637071724	6.40089093070636	6.53036259315506	6.2507184954811	6.58233714102856	6.87967503828549
+"ERO1B"	4.74290787211555	4.54023080133415	4.10640299339994	4.23004735410239	4.57512919121534	4.85754358000365	4.59612709704572	4.57512919121534	4.4472125095201	4.57512919121534	4.24844667835383	4.32466624437208	4.62263815100922	4.62571630824846	4.59612709704572	4.54401385893497	4.64083520584937	5.28117482077835	4.30547792156707	4.25862462254762	4.86697538581605
+"ERP27"	5.60930554271886	5.70405913002715	5.39100071652769	5.80220288371575	5.63347893340086	5.7745244148754	5.38868066140192	5.42367876445384	5.28012111001949	5.66789551977944	5.19293639617927	5.30918070843266	5.55680870660139	5.71106649892182	5.48620800059374	5.53461604555159	5.34555049177143	5.25033882002642	5.41038933604368	5.5357898312576	5.48237980016492
+"ERP29"	9.14758392876821	8.96003797222747	9.14145229796206	8.81503701771286	9.05813716359139	8.91635149998847	8.62694811432836	8.97202832631622	8.82492929034168	9.35072914958805	9.12851719597075	9.17551537110089	8.73630880982333	8.58685050747808	9.05245528621549	9.49757895473551	8.96838364534443	9.05245528621549	9.13473613463894	9.57963176972562	9.26480493788315
+"ERP44"	6.29079601809376	6.31326792120596	6.94518744315383	6.85043535924745	6.55075370797318	6.41606604083728	6.48906043022139	6.6249051072043	6.75424604542207	6.23634295867924	6.76668275659611	6.64549370076324	6.7297239646202	6.35943065964171	6.77840771334914	6.05204380911216	6.6751784211107	6.53974927398431	6.77704076804273	6.47221939895431	6.22935669124236
+"ERRFI1"	8.90898853864753	8.85124728123826	8.73020784028813	8.97379674628866	8.95170725246881	9.01139856359681	9.26255593806601	9.51816832352006	9.26977772551598	9.21723501882266	8.56555727613081	8.67628109598314	9.22462635812102	8.73556707875246	9.2726223355387	9.02805450208948	9.01139856359681	9.12302865126206	8.91771063072989	9.09558168357813	8.77837440600725
+"ERV3-1"	3.2596707081375	3.43561657898329	3.18842087989906	3.56496387504333	3.41222709564578	3.56393260617697	3.26712279676463	3.5948858219098	3.28446109125899	3.49907232928224	3.46607470840542	3.59885819410693	3.41378532204932	3.53441402737784	3.44300753404903	3.69436734196501	3.41150633500414	3.1497919621923	3.11111057874465	3.27420848537286	3.3199885714811
+"ERVFRD-1"	4.25143243062479	4.51551084103811	4.52751141702122	4.39815186672342	4.44710237448209	4.62746801435285	4.54052352579406	4.43196477394956	4.59929780640414	4.53406166629231	4.38876692348673	4.41398383564247	4.76264772881922	4.62142070330257	4.66006599805428	4.4858366678964	4.56389793280048	4.42764418536643	4.12295243368091	4.29664778628183	4.50971056462156
+"ERVH-1"	7.55847187239453	7.75526801910092	7.59372063851354	7.82071206246573	7.75098631108628	7.95883148244806	7.86333922150254	7.75098631108628	7.78127506739284	7.70469290868811	7.64122806880621	7.74521187484023	7.94229668737003	8.13721698886179	7.67616813724772	7.67010610605223	7.80541765262819	7.50320290225446	7.68871449482638	7.605732423965	7.94591498595954
+"ERVH48-1"	4.87940653460929	5.01481995376518	4.7376713245554	4.80233369621466	4.83832703978334	4.88937341473088	5.31921342725403	4.71027048285517	4.80538330743631	4.93530306673464	4.95051072400117	4.83253003256814	4.64226989176202	4.71603521396959	4.89789358716046	4.93779438031075	4.76464484829982	4.73901700329326	4.99008487927326	4.50468847773694	4.87598852855677
+"ERVK13-1"	7.65640584029509	7.48546790047043	7.40318752234436	6.74009660749002	7.20474559252	6.24624496249475	6.40787855118129	7.19921842620422	6.19581848732175	6.80782539790956	7.30140590167644	7.11504157231833	6.38553375421663	6.34612486449628	6.39584838188904	7.43031419189949	6.77325287705968	7.83661811048731	6.97462132687096	7.11053614338754	7.00331296321866
+"ERVMER34-1"	5.03059807456142	5.23358550611754	5.17360733157601	5.12269172925778	5.37737451536658	5.47708289782149	4.68403636233045	4.88175692707423	5.23900694746881	5.24827626667647	4.97049091327769	5.24921636777845	5.37495952997958	5.22176401658224	5.23245437770587	4.84593352693304	5.36938407632773	4.88171959240332	5.0739217668694	5.13806788381042	5.12057429431316
+"ERVV-1"	3.3835656045187	3.69814304466714	3.3835711751716	3.60036053737483	3.50621446683147	3.58657035912302	3.70034397628044	3.52572913779923	3.71680892442111	3.52150756895928	3.43155590018536	3.5624319227835	3.74759683835759	3.83363806345085	3.8122789523602	3.48796071042596	3.68792392310729	3.15661021599238	3.66375772756891	3.47636029467179	3.58657035912302
+"ERVW-1"	4.255727397313	4.77570390851372	4.38764958439664	4.65236019277623	4.8003552595029	4.87416306819005	4.82545527808394	4.65029288499483	4.82991246656748	4.65029288499483	4.64280886699664	4.59057876101051	4.65945832991652	5.22209266910451	4.57261125698688	4.65029288499483	4.65029288499483	4.15687141742361	4.76094836054352	4.61114921898567	4.62879165982471
+"ESAM"	9.03591861680428	7.27698897718535	6.95469921420165	7.61561348722911	7.44253534006441	8.8189697395802	7.99557887592053	7.56459290063344	7.33783580349364	7.50273960571535	7.40341181340883	7.10224259608832	8.00803623539986	8.27052257027133	7.32393180410655	6.96631251334461	7.41429775232958	7.1242366496645	6.83832450374076	7.56917873683245	7.69541876500794
+"ESAM-AS1"	3.93852574720024	3.66939699762786	3.80511083401667	3.9719987584544	4.16722731805482	3.7388191210767	3.74276984811547	3.83353097716374	3.82424597289619	3.90662249874762	3.50650206535696	3.60834622566317	4.09955213194851	4.07903734495491	4.02109868497215	3.8149206858322	3.81628539871173	3.88239977369414	3.88053042557247	3.9991190544081	3.9948652213925
+"ESCO1"	7.64298971223397	7.63798982697646	7.9531234319265	7.30604823356347	7.71872361253636	7.74193924862293	7.34920368242437	7.44169564530832	7.66909712586355	7.40296268250291	7.59770377061732	7.39621026653084	7.29637325833935	7.35285997700426	7.49561536121929	8.11935330280728	7.48391490595177	8.13966969479958	7.85685008363821	7.71346416246445	7.42730934205703
+"ESCO2"	3.6609074648413	3.70885853327876	3.58077056754459	3.7191340781717	3.67931465179357	3.31759044470501	3.83056703938656	3.59810707599511	3.49826029148669	3.58705235310705	3.62508584162416	3.49289417580959	3.75686146050913	3.72111216107493	3.77580377015522	3.84290218718998	3.87599414916851	3.46554788342105	3.77840740537392	3.578679323412	3.73866597576155
+"ESD"	6.9168605839875	6.69295384641039	7.11374020027961	7.25094324168457	7.0911762210965	6.48029648254103	6.52836947157348	6.99715751142901	6.89270849743174	6.80750653979556	6.85469469461235	7.00776498350764	7.08739651596228	6.50769858568488	7.475794799849	7.08228061745402	6.76389543632269	7.06441082410601	7.40833270637742	7.4775492726265	6.91684086371531
+"ESF1"	4.69723008853347	5.06681065219983	5.03005478123914	5.248126250617	4.92833664131584	4.58234075451375	4.82614822850747	5.0523002046193	4.96686781850019	4.72408733077399	5.42580674511246	4.3858499817178	5.29609403522037	5.16641943358137	5.24508617681463	5.08486183730474	4.90572343555537	5.41680902916043	5.20040893015579	4.40854920940328	5.52199686494345
+"ESM1"	2.84330766856269	3.26310053282029	3.03400425887108	3.02395863348052	3.10211965691746	3.22401738616961	3.04548012468386	3.03996409240351	2.98565156509334	3.17724389185492	3.18681423616675	3.12368534153069	3.28886152600995	3.09451222236535	3.18331657584346	3.16789372711094	2.98207055724756	3.01864844770394	3.0403844619751	3.22644377320875	3.38613004288932
+"ESPL1"	4.71255543730442	4.82473704358141	4.56372768045876	5.16079357723248	4.65094193657651	4.891431597517	4.92419791981837	4.8539569828871	4.77022380110344	4.891431597517	4.92527529544842	5.00134633004102	5.12418823896519	5.10155170872358	5.12746650795198	5.21342498618067	5.02113414522846	4.54770284308557	4.93928263287057	4.53860484692085	5.02070708343681
+"ESPN"	6.79042250555937	6.93847100184339	6.92339850405902	7.19579143137969	6.86455668932961	7.06885151202835	7.09608935253017	6.94335174084996	7.01490925562151	7.07925910723668	6.85005116244783	7.18564402986247	7.09102529488331	7.45518200086231	7.14118902407171	7.06519377572276	7.07946260724598	6.75357568160973	7.1459847431085	7.04767832406729	7.14335683056779
+"ESPNL"	7.27024995864879	7.20346614286036	7.03046814262506	7.54326329760508	7.123002377469	7.04880464315894	7.37442047111214	7.33974320867167	7.47786520138582	7.48816991694467	7.34396815827148	7.42751376852352	7.41808183248362	7.3829341742671	7.53267595942205	7.43587002483136	7.46609361285187	7.038632810911	7.51361498275253	7.10110197277995	7.53411815269609
+"ESPNP"	3.62035674097015	3.81012174324763	3.95693780793561	3.71415485398044	3.89500915745943	4.09795394887466	4.07960590236761	3.76115430238917	4.03502539052832	3.92773577801606	3.79809109839105	3.89500915745943	3.9789500728973	3.96362705440045	3.82482964577266	3.69834232215837	3.93669628815423	3.69834232215837	4.18465321933423	3.66946690370772	3.91191970889718
+"ESR1"	5.2591698815454	5.44309285830871	5.6405567705967	5.68657639813247	5.46493036661492	5.7444855377407	6.05705369344318	5.28185900612628	6.07443391914186	5.82548677603001	5.67541236424089	5.76149125640299	5.81713962645249	5.40191340082129	5.89865581679219	5.65372583411324	5.84375890376277	5.42149920478537	6.06504581024462	5.24302972481212	5.8668976310647
+"ESR2"	4.22818866935202	4.59993978330906	4.21935996419809	4.47832889554109	4.30648351660682	4.47832889554109	5.04314732886162	4.4493783845351	4.55517131020144	4.59776495582163	4.42584792699787	4.75625068425135	4.55286008787517	4.27029682798221	4.53791796159283	4.30463871562434	4.51918947622553	4.05160735495054	4.26911742509487	4.32942059956591	4.67503285156725
+"ESRG"	3.82188005263001	3.78114456090308	3.79340624972589	3.77144572954749	3.77455685474076	3.20343409617655	3.77144572954749	3.76095763023252	4.15356034158993	3.76649934649826	3.74731987988338	3.7118783854017	3.90630622901567	3.95980264966618	3.63678643796468	3.73820188779484	3.86459097792117	3.71376678480937	3.74800133840698	3.64530253613998	3.77144572954749
+"ESRP1"	4.11084345381299	4.52878501076937	4.90703745494834	4.58797172608722	4.93407570820466	4.08038799497544	4.32371714413548	4.4612561196283	4.69660000950475	4.81802125091384	4.24200839850447	4.53433622275918	4.64689393620036	4.43835417161357	4.62173342534554	4.60350941236461	4.52816317666263	4.40783007942724	4.58547997068846	4.68966246362145	4.48288155589218
+"ESRP2"	5.76248450513079	5.63115641007934	5.9483005740523	6.0854075894819	5.70825386578334	6.48058324208202	6.5689230351974	5.78860887743928	6.07905992718165	6.15451203889014	5.64562740477972	6.03941758520597	6.07882360043429	6.38805955332752	6.22295811942052	5.68971855161165	5.97594108013737	5.63828899016293	6.30241231673634	6.00800513828979	5.96369342192143
+"ESRRA"	7.71155137527419	7.66774632832548	7.88355345441636	7.67616813724772	7.60946557974728	8.3189469776543	8.74217670086543	7.82128152011994	7.83426481718343	7.82362687790795	7.60000607305295	7.80155546232136	8.0684273021924	8.21688574408006	7.84081781383775	7.40458545312609	7.81833737213022	7.46095870608672	8.00314479703338	7.87722335468206	7.82128152011994
+"ESRRB"	5.38050265375617	5.29115639572597	5.28841493020685	5.41071446291742	5.25978628124589	5.31233421642366	5.63894783514033	5.47389764126414	5.58042501265004	5.31491725862736	5.42884754178257	5.6355314626734	5.60744606169943	5.81200276721884	5.62974363669839	5.34013314224705	5.54196792892706	5.43005317517836	5.57774368828424	5.3374349527388	5.93662918458963
+"ESRRG"	5.72885083046669	6.30003134629032	6.40058942968649	6.16790529280103	7.15945256512089	6.00339958917397	5.84324430367431	6.58433870852555	6.67771234478764	6.91117585594916	6.09215043565595	7.00838964666583	6.79928181149102	5.8305234515198	6.69117331349508	6.16799014820774	6.77857468551878	6.00339958917397	6.28669754289218	7.14889615390614	7.09953683046537
+"ESS2"	6.03238994561784	5.27513130328966	5.55890411844152	5.86124959081575	5.55224971774556	5.86124959081575	5.88726178638071	5.50528692233858	6.41440429326409	5.71334053506429	5.86124959081575	5.40545326752614	6.16025378280936	6.25942324995398	6.26684751841142	5.83421974232116	5.86124959081575	6.1204172617054	5.37747434765061	5.70504906418866	5.79653254952866
+"ESX1"	4.34360438997689	4.21390628263959	4.00120056005103	4.30676133484249	4.3043158826563	4.27693095745756	4.12279782924886	4.14556266213926	4.19700174524958	4.2732748181471	4.15648021857778	4.20527569981048	4.2522990654167	4.2522990654167	4.2493817728559	4.49008176145483	4.26889275311052	4.27043295264598	4.30360522320942	4.2493817728559	4.27687088542962
+"ESYT1"	8.96076895534774	8.63121296317268	8.88316336658696	8.30807110192205	9.03831533772756	8.6764491754374	8.20267262801789	8.41722904205634	8.65202202510328	9.03762910954726	8.67328850947119	8.77945454353748	8.7159294017471	8.56464938356257	8.66959137966916	8.74180732375952	8.8946761313537	8.79009604131361	8.34334611446356	9.18466818727952	9.24376530409475
+"ESYT2"	6.0219440612024	5.8639220248937	4.29766969327026	5.52999079483176	5.74067802755724	5.69262208203168	5.88118873208783	6.30376438136512	5.71952796071763	6.28022849751453	5.98875448675539	5.937022894154	5.6441613047767	5.68489185071027	4.58389329828448	5.76213346982691	6.1427690278763	5.20988579482063	5.32458993672737	6.19840989508872	5.97189891106844
+"ESYT3"	5.65628860121563	5.75577041196381	6.07383651012376	6.71002265772572	6.08050624757272	6.29368063099104	6.04743445083836	6.64441983039718	6.97209784118239	5.82424887044684	5.01460675553387	5.74322575134271	6.68486841541328	6.15793701947938	6.88979062341899	5.08520937173094	6.35895719343413	5.72560938723637	6.04743445083836	6.09771761296288	5.65643895819644
+"ETAA1"	6.31619301094287	5.88469612675746	5.72225883665279	5.51726741023691	5.98841506020249	5.38079572652306	5.53820967313464	5.55915285881956	5.7412534504936	5.84023405318294	5.98821406853432	5.520481150419	5.44511897386931	5.62609680992406	5.87192623716505	6.3850449786764	5.53675188720068	6.23315247243321	5.8502491556209	5.7230127490046	5.49955893018819
+"ETF1"	9.63680830688347	9.18030319234505	9.54549801288231	9.14192088647466	9.25656321990547	9.15722244942275	9.18771912673412	9.54983605603836	9.35599373600712	9.43561415816956	9.1948233827928	9.31749371330555	9.09602561429861	9.03482626036473	9.48154602366967	9.36778433592165	9.27100907751193	9.42087539403233	9.38010782086292	9.62318766882047	9.39255805558404
+"ETFA"	8.77583438255506	8.17856301393311	7.67293119602182	8.12941299287598	8.08791551992372	7.31932092631173	8.14472265562904	8.62002070502296	8.43171151348852	8.41947410671985	8.27615286985574	8.08425957194404	7.85435363084064	7.64560577573518	7.90938749518965	8.0789872091962	8.21458012032573	8.34383040683012	8.29704197362222	8.34861602084216	8.03178109970867
+"ETFB"	9.21521975475116	9.06174531611993	9.60018977874823	8.73610329296475	9.13993237193639	9.15016355486441	9.27036524216937	9.21708173542282	9.13993237193639	9.20866577755975	9.17919364329845	8.94701715303251	8.72290971450752	8.99575109899347	8.82017733607701	9.29202949059801	8.68477006402244	9.41555350502546	9.11754225346691	9.14072172070933	8.91743760418967
+"ETFBKMT"	4.17841118159891	3.82677295913797	4.0951228315848	3.84054160309622	4.00794680614666	4.14349506395976	3.81304310971496	3.75625807822644	3.51226710307794	4.09592521414763	4.07501133400244	3.47216046074515	3.66578030110417	3.51328569910325	3.71031848576607	4.3823702805316	3.59222776405588	4.31334211094857	3.85269877613686	3.45815567278601	3.51864567856243
+"ETFDH"	7.32474300367999	6.16550406648071	6.97181475141633	5.82983993670566	6.09161411977368	6.21930446095877	6.56212780368482	6.31867064137626	5.96438796259714	6.28022849751453	6.43732593463505	5.59264035813717	5.83125680000634	6.32203255687728	5.72772537545781	6.19969965355747	6.22701441616564	6.45983986149055	5.73557633783171	6.24472639333256	5.77649941419024
+"ETFRF1"	9.59101981796469	9.54036841882045	9.22710519461337	9.51963516592961	9.30197521624446	8.79328022437164	9.35832762832149	9.584724052322	9.20920607529337	9.19947218381966	9.85935662605446	9.23557303830862	9.15778265041666	9.15941603458375	9.37018951143716	9.92994852912241	9.18171300484094	9.62641553352065	9.54908064974316	8.8389983086113	9.12248551965761
+"ETHE1"	8.11952347749061	7.84623362000412	7.6840743471034	7.55559267084703	7.74987269328395	7.43499198006344	7.8913232524375	8.09142603626952	7.64480320908419	7.94427465167128	7.74454864150123	7.88715186275081	7.78237738908306	7.73837824505002	7.89250220083792	7.87034462856308	7.72455349955694	7.99607585888572	7.75521649059811	8.37811239158286	7.87484142230613
+"ETNK1"	7.16369297119274	7.27241018799015	6.74731606813165	7.54840096063931	8.04254300948624	6.90237709266814	6.47376030278516	7.80723122322795	7.59740607071529	8.04067224982278	7.71613271062129	7.96405137728675	7.33292344884724	6.18879250184629	7.90520888884896	8.19804408829009	8.14044786681025	8.24229591120592	7.88605353408534	7.70514424701048	8.19564326917013
+"ETNK2"	6.25367513373978	5.71937502896612	6.04566898624723	6.04847466272962	5.6322010614917	6.31333491935046	6.64827623974266	6.25226291398015	6.06298276042951	6.02041492618651	5.65369821872757	5.9650807692283	6.38989929547413	6.19299811018293	6.00661183675425	5.60244468136327	6.02263260843666	5.55228394357694	6.21120413048138	5.96219249830674	5.81304295774917
+"ETNPPL"	12.0284673375594	11.3019039661479	11.3634001065682	11.3355655003221	10.9128442574923	8.44690368675883	10.4174238057314	11.354030760722	10.8294511543005	10.6165834107033	11.2725342611809	10.3085245686202	10.4141351351639	10.7931437583156	10.3922811877155	10.7278892548152	10.5390403427113	10.9113752602137	11.2036908387222	10.5064992130428	9.32913377556343
+"ETS1"	6.86241239253755	5.451649200718	4.12059276372506	5.451649200718	5.01683906903156	5.50905067022173	5.94707105400352	5.81525180588778	5.0852426046556	5.451649200718	5.67152720299209	5.53294215327753	6.08015415657345	5.72941099207143	5.08441644286618	5.01019572577396	5.20177230415438	5.18706524288718	5.07361594259381	5.37531796353806	6.08222256910601
+"ETS1-AS1"	3.32513848455955	3.25144048150691	3.40631955251783	3.49209955726735	3.29561303526149	3.21520988186401	3.282269127166	3.17472252690577	3.36427967488863	3.28210827497256	3.18355949891177	3.47699055564259	3.37454019499013	3.48401303533419	3.27420848537286	3.32247063048195	3.30042176578684	3.09862429787113	3.34830810296413	3.17883168262794	3.31685581691117
+"ETS2"	8.876302032391	7.65109559154241	7.59924993000889	7.77545651407544	8.38656420739155	8.11777756369975	7.47296203729744	8.38105433681043	7.9863121331078	8.51254534886008	7.54105177796205	8.20374335981098	8.02978110871569	7.4686707939372	7.49314685296513	6.97251372231595	8.49380743378627	7.77219992885131	7.64140742511404	8.20964816229554	8.29660053785559
+"ETV1"	4.43162721497385	5.39696614205307	4.57001862341334	5.17931526516359	5.56292996009813	4.36815555018286	4.99264562525237	5.56521824307519	5.02911786542874	4.76695027429861	4.41244830431351	4.93508093743932	4.55406860526996	4.94353236858526	4.90143375678165	4.94954329151742	5.33492262503597	4.97056066379552	5.22025635773318	5.23899262869938	5.20309750308663
+"ETV2"	3.9526432462815	4.21892337981034	4.52665516598592	4.36384924079986	4.13715348700271	4.84478997299374	5.20287858623603	4.18608795095136	4.53928154992507	4.42598446505047	4.26376421631741	4.42764418536644	4.57353769408224	4.57044121253492	4.43605274487858	4.10491581333148	4.46805494335525	4.53799916922905	4.50851256205873	4.37835982291416	4.49805900427407
+"ETV3"	7.78846496049858	7.67802758240369	7.83946267855078	7.36845592607708	7.73609637956968	7.60846364543005	7.60379789373948	7.58918903512286	7.36431919145832	7.49776955191156	7.47832427423929	7.22589097419382	7.21136846668994	7.38663378597492	7.64544596201058	7.54436735665946	7.61459089735652	7.94523248254069	7.30817797525348	7.47781981356308	7.42791278492474
+"ETV4"	5.60799992481468	5.26075325555052	5.0385130395138	5.36245217135415	5.38205075705326	5.60464883133949	5.63288298101265	5.30152964571647	5.8704121990033	5.34056549439998	5.05544596254541	4.98427305657721	6.08645391296058	5.71959767164827	5.67100335107837	5.19382972812122	5.5697666671798	5.00673491051044	5.16551134599839	5.39576317200021	5.54611839679256
+"ETV5"	8.76752278395973	9.06818994144374	9.6082734477372	8.63945637382501	9.08665161968708	9.55000004185065	8.67997770682814	8.78297873159443	9.0014123421063	8.777204959729	8.78463637876762	8.16455124237095	9.17315699955619	9.08824078408318	8.89139265815184	8.92707722633353	8.93947411135732	8.60884944212493	8.09532990177402	9.6441769609389	8.82843099645959
+"ETV6"	5.12953188474638	5.08392140471724	4.59474174556022	4.25757049827261	4.91708165502444	4.74033493455737	4.10944899922983	5.61250818803442	4.49631922704701	4.98033800295528	4.83931376714123	4.95176402770623	4.58671012616357	3.99175255982351	4.25373474542018	4.03913995187344	4.55974308300449	4.73203875011237	4.16696352200633	5.46994202798139	5.15954824693267
+"ETV7"	6.75169964168415	6.69555896492486	6.92881116816843	7.05284409271291	6.87420357041962	7.35848871793751	7.48529164968757	6.88405379809574	6.89805008050728	6.8988688135335	6.6593799766738	6.99415322081466	7.11089643892584	7.36837712778728	6.98513944344582	6.72181998688848	6.86488675275513	6.50674008717112	7.13277680059956	6.90637675296665	6.92881116816843
+"EVA1A"	5.5813932315189	5.82287033003888	5.39256889886875	5.76593936646027	5.70138134970241	5.68491943568735	5.6537456143446	5.63652375391351	5.8267157665418	5.7234715134017	5.55654107923316	5.80783591726174	5.5941733389914	5.7667109271436	5.57040482495037	5.81408731830299	5.84153062075994	5.4776708557271	5.43181402619662	5.93180066160726	5.93089253090327
+"EVA1A-AS"	5.58062445202613	5.71394812693306	5.4921593886247	6.01872166974713	5.37199344061437	5.41206782373546	5.54882919066631	5.46830285940204	5.6355314626734	5.8046063198732	5.3711204629988	5.5199808586644	5.77001484075164	5.90007014025147	5.74163550463996	5.65384775190922	5.77551632263217	5.12244311810584	5.6355314626734	5.43406020476864	5.70944832079268
+"EVA1B"	7.53640003193295	6.64491415756234	6.63366753402104	6.87980403148404	6.53909897854718	7.5978941325369	7.57847035847137	7.07339892133357	6.77962674680018	6.95651979410182	6.91438709392853	6.61430972348653	7.2210707769658	7.34172740150052	6.94924292693971	6.34522496883278	6.86118141824014	6.86729528239915	6.92897708096792	7.06561517334744	6.86217596028607
+"EVA1C"	7.04612651291514	6.50968856038236	6.4921461124783	6.21321644132311	6.33877099780655	7.43370005402523	6.46964488619953	6.74539642359874	5.88695228634882	6.31041120396583	6.35351520974292	6.29514150355948	6.55331502174497	6.81730467086429	6.49385925042302	6.19314817863398	6.26065213410191	7.17263571401204	6.04909922261243	6.4400567245018	6.29815872461209
+"EVC"	5.13061505189604	5.14752792576426	5.37370364077295	5.24583476235032	5.0008790202142	5.32099039068156	5.87275755679131	5.10803083322809	5.30131105257199	5.18137013086616	5.2959536581184	5.13227338447243	5.45619160109127	5.39415588805401	5.07001632008201	4.7691116784908	5.33997713719783	4.76508703924569	5.42836887343166	4.97985866950509	5.20625717307845
+"EVC2"	4.79061390362974	3.46902758661559	3.97442859891072	3.82036796186277	3.60639173409553	3.62584380748829	4.52091553706492	3.61950824562501	3.86306088998082	3.73425107147365	3.79247018987131	3.73425107147365	3.66838617116164	3.95170401133806	3.71491532882987	3.54627334759935	3.86980765553809	3.39774022231242	3.70013303180024	3.66802184595642	3.46852434038074
+"EVI2A"	9.56491254233813	9.94391410134044	9.10786720300376	9.70537814921216	9.04000656612668	9.36748871363501	8.94685684975749	8.97242752060815	8.59096131470966	8.73789240442306	10.5249742662111	8.82809446503127	8.33738398937634	9.51013661257752	9.14899129058749	11.0701435180476	9.2286875983139	11.0127219129399	9.7319224162445	8.2454235810199	9.16060790114797
+"EVI5"	7.89369978844994	7.73001260217416	7.6720114881796	7.70822461580359	7.85257945926868	7.5813308780869	7.58536621439201	7.44246374229907	8.19472581332585	7.56933936171096	8.15147046463842	7.37636172577238	8.03712291266128	7.8336393193235	7.96000500811774	8.02907879536515	7.58244550828369	8.41731777483171	7.77633296795124	7.16398383686603	7.3829341742671
+"EVI5L"	8.82399320392535	8.87801539978543	8.95352184403824	8.80693830873578	8.84969690289881	9.39935841153552	9.27036524216937	8.70691085877906	8.83105696254699	8.80972092592502	8.89834330232817	8.8581123094969	9.01498350520107	9.23991928773484	8.53932549212244	9.0234413024261	8.71878850140372	9.19289756964767	8.79881455995461	8.94435374711719	8.8653791690701
+"EVL"	8.83876529353227	9.3665437481982	9.2090076293894	9.0887001109124	8.70285256207867	9.18915135613387	8.93415151934287	9.19421406968127	8.98296754893355	8.69094428001799	9.23257479216554	9.13192685922797	9.08490696003449	9.30505609612898	9.14983180695619	8.77948418455707	9.06375082690268	8.6571029712691	9.28807085915236	8.83986335388614	8.95281457581206
+"EVPL"	5.98915103445303	6.17007248696622	6.12059484398192	6.16773948416798	5.99254904928767	6.24899617662387	6.87975593712219	5.96382460040598	6.25975585486541	6.19981042212815	6.09857123137184	6.23921061528754	6.65535238826948	6.54146808189856	6.20540280729412	6.01765653466031	6.44988247325882	5.8791577289529	6.46306071658432	5.93450081615823	6.12472606672647
+"EVX1"	6.62357572691253	6.79214088454055	6.91682620379925	7.19703077837442	6.64289855606407	7.35592929390203	7.66605605089778	6.79845670231287	7.09814562234239	7.10641933852726	6.79685341098753	6.94302075429294	7.35339604483903	7.47662702091892	7.04670296237998	6.45415301514407	7.09709840244056	6.54808953281406	7.26766814928229	6.77611738259011	6.78334312703754
+"EWSAT1"	6.01007804718539	6.0621486116307	6.1090098338333	6.05911335515184	6.11339283951909	5.93381294197617	6.06852540967333	5.96668269176176	6.00078519786063	6.27455492383488	5.83649105582884	5.83686561729984	6.31331029862122	6.14589253380528	5.92908585495928	6.29014296606768	6.06852540967333	6.10612877381521	6.2315363899442	6.21392316698595	6.16485687674475
+"EWSR1"	7.94881185372267	7.71428753661285	7.5670088355769	8.08332150934075	7.16027256680574	6.6298349061791	7.30881430066819	7.46097708745903	7.92973363587234	7.2965333637706	7.94837040087387	7.61772064734591	7.5319067411956	7.61772064734591	7.99220623075868	7.73641203618505	7.54662247714467	7.3396881472599	7.91608856318252	7.50274596639315	7.59725737330733
+"EXD1"	3.44839201756855	3.31167184983276	3.29422574787316	3.63380446419854	3.5640805714546	3.93139637843323	3.57713124295439	3.42000420869118	3.79179198728138	3.40604192715315	3.25133489269559	3.48164763312981	3.64120268112539	3.46572676605633	3.38909759470229	3.66597564940297	3.45936899467211	3.54016004786775	3.34985513862705	3.46572676605633	3.31018741395615
+"EXD2"	6.57375085749373	6.57933751425979	5.73651178094711	6.29018964712852	6.25975585486541	5.79377237518313	6.50387457031415	6.52948543081192	6.54810247836131	6.36584624891203	6.55160251259879	6.39990044773908	6.01750339752057	6.13536750311478	5.86570825935478	6.62971290983397	6.36666098181352	6.36242583310918	6.36242583310918	6.45497593471382	6.39626976766934
+"EXD3"	6.29079601809376	6.34798749939582	6.60783656811985	5.85060848217313	5.96671360590206	5.69050004291591	5.6036519884978	5.92307297989724	5.8704121990033	6.14362835305178	6.45953243011086	6.19777698145229	5.86794245750264	5.96574541583154	5.3760187430061	6.16372429327547	6.0764962498762	6.03995847389319	6.13280593702169	5.72079634689313	5.97550293899565
+"EXO1"	4.66784483447504	4.89433691276819	4.67151396146689	4.80205757091714	4.72423247387559	5.05082560921724	5.00390103342028	4.52880389868409	4.83350386485622	4.62794614924986	4.5932846946546	4.63538104472435	4.69871939750808	4.79592163315716	4.76350920845053	4.599153966904	4.87461183525719	4.57382265390252	4.72423247387559	4.79484276353642	4.44247467435713
+"EXO5"	6.5748179251325	6.71855864575532	6.81294338801741	6.52141623116222	6.56454544308479	5.95082272207859	6.11367082491704	5.96405822430191	6.46964488619953	6.69973791221714	6.25955328544908	6.11287512255717	6.48091417783412	6.09088935592447	6.27779690102418	6.77073297935693	6.48280961254837	6.49821252442271	6.40338499307189	6.62753022395755	6.67193538722533
+"EXOC1"	9.65880808057148	9.69045411518965	9.73598453817371	9.3007810121523	9.59474174374501	9.11295663127878	8.44121013389886	9.34802359778997	9.25992624026379	9.56220841558534	9.86935941017276	9.51312901929625	8.97831937501515	8.79112601437886	9.27270736341125	10.0463164485975	9.41667667680729	9.98128493952459	9.47668750756277	9.48209999252147	9.56416529818382
+"EXOC2"	7.29365421789838	6.93249793007217	6.67756874713045	6.58869990121463	7.1133249486257	7.04940215167927	6.65465769849407	7.08215437599177	6.44332904007688	7.23366040051123	7.1327027559332	7.22647782904029	6.22327670607287	6.53513529991988	6.29128071608547	7.44505137683053	7.00254498977654	7.43562061293045	6.87307739863122	7.21128356871563	7.28962977841017
+"EXOC3"	7.04278425416865	7.07944492936544	7.25515378019322	6.70641364459837	7.10211781181982	7.49007594552624	7.28589908118514	6.7702648737321	6.71713359328948	6.9132475821373	7.12098008554743	6.8109779249482	6.54965079424286	7.07661384202393	6.72988529211351	6.9231520414706	6.79252895461688	7.26994920590507	6.8248745576399	6.99571977021097	7.0206515528024
+"EXOC3-AS1"	4.60908431534549	4.65238838590816	5.39698379404721	4.81956631297146	4.73425345295896	4.57605158728774	4.70059409698803	4.39267410676429	4.7759970795667	4.81566439339334	4.99887806816343	4.82341856334042	4.891431597517	5.17531102246592	5.1578321845923	4.82323084068634	4.21749257809528	4.81956631297146	4.81956631297146	4.77917063818425	5.02129526801122
+"EXOC3L1"	6.19953594901184	6.30736089165637	6.28645519725769	6.65439001142355	6.26098748548543	6.37632540887809	6.71110090043013	6.53886767256353	6.510629862545	6.31027036121116	6.43826565495811	6.61997985543878	6.43617195462983	6.59620303011336	6.3643480768716	6.48132661898815	6.43826565495811	6.29583599034513	6.62576303803133	6.44213995909094	6.5779636125249
+"EXOC3L2"	8.16747059800838	8.50128077589576	8.25878211613692	8.66447910055957	8.35511588385687	8.55008929735946	8.6102718217715	8.44336361753103	8.5002589184236	8.34815932266277	8.21023777746808	8.35542469073591	8.6502073900964	8.97433915588968	8.5977467845314	8.41444370918509	8.40346145386045	7.98221230601001	8.41444370918509	8.29245934230357	8.46309494799031
+"EXOC3L4"	5.47980531802704	5.33387171567958	5.42210685631753	5.37480022741915	5.34806110573355	5.73153768978601	5.64292220197661	5.10722499408828	5.63282737911643	5.48721112042966	5.15272912898267	5.22556111020077	5.40241475637127	5.63006588910225	5.35962851153297	5.15411593733737	5.42210685631753	5.27401949988898	5.52793448522724	5.42388844114656	5.46382371786442
+"EXOC4"	7.26923945666425	6.82336977655476	5.94137068035391	6.6624559251038	6.95625767722287	6.14893618509495	6.45570739302882	7.05305497176805	6.52956982909772	6.81561722634564	6.86354453330507	7.18623624812455	6.32804008770739	6.46092958547658	6.04392455898967	6.93784753577117	6.78209079504244	6.65988795575851	6.5175617110806	7.21096837869131	6.93080966451022
+"EXOC5"	6.60797836491491	6.40522327779556	6.23498990796408	6.42007878450299	6.47716720203211	5.81165063992605	6.29953314816161	6.32651912787117	6.32160950301717	6.02666940051493	6.52066819169955	5.9743436879444	6.02789736666907	5.89675715170042	6.36601830300886	6.93272194354391	6.22203011465915	6.76745704998976	6.37549131814299	6.11016270308805	6.30285147455454
+"EXOC6"	7.16130442950975	7.43903128183999	7.25772836747004	6.75369649905545	7.74472572925005	6.76799832679021	6.63329259009652	7.17189326348289	7.23032592221231	7.80454665139596	6.83720947246015	7.61933231582822	6.70316411669315	6.70575429080795	6.60388048387813	7.4883331848492	7.18852246876749	7.8394533232201	7.31391486068947	8.00285023316691	7.76344252261124
+"EXOC6B"	8.79086235678389	9.13821935832587	9.15815467345622	8.83256619690403	9.22881459870421	8.81872849453711	8.61324043238407	8.93597686176802	9.00828579331598	9.21717452175742	9.16190685980036	9.26339789828008	8.78450635760222	8.59759038970677	8.67352078790335	9.37889900611445	9.11743638153836	9.55047386668322	8.93612784100656	9.15784356294405	9.0635862861723
+"EXOC7"	7.98363887863859	7.69543189666696	7.7106976288157	7.11740478420818	7.54048112956038	7.06711536124745	7.26897259335665	7.62658802262754	7.01608974763739	7.67818207698051	8.06039318556234	7.73446712470267	6.93085866484755	6.95504927790271	6.80215843167382	8.00465549387257	7.25196179880656	7.5283745502781	7.39757755010999	7.81917958362806	7.78774528413005
+"EXOC8"	7.20481474969134	7.45827446259737	8.12129374131635	7.24708137443869	7.92541412150206	6.59411065309313	5.76114690650554	6.85587772475465	7.34362462267431	7.61717287074943	7.2990459408732	7.29723954996374	6.62388391630392	6.81134516771441	6.99822827055171	7.59213829805779	7.23867373512961	7.84128279659483	7.00164901672328	7.71766015560905	7.31875477130172
+"EXOG"	5.776813754753	6.21206289961303	6.21642973009611	6.22828014000656	6.09404730763319	6.51390851307064	5.98121264807696	6.04435904485323	6.25975585486541	6.37479847558217	6.27578903484686	6.38095977499886	6.43452910424256	6.34284363862212	6.2666805346907	5.98130660729122	6.34284363862212	6.22828014000656	6.4093687290814	6.09562363321588	6.10841721346906
+"EXOSC1"	7.99875369017545	8.05350662784549	8.36459415706356	7.69552965217132	8.36873478867702	8.05350662784549	7.37011795583607	7.79172155232835	7.73545796507031	8.21681434089197	7.83867802991032	8.20436816164312	7.44733062040791	7.7838071961952	7.63568858993322	8.21864235745201	7.88852959007052	8.37133657613642	8.1358206496626	8.48632367014913	8.07101361617247
+"EXOSC10"	9.13944860597804	8.40056878107307	9.05639639192436	8.26796050506316	8.60567399267396	8.5846961752743	8.01910099567043	8.80209186947219	8.24839235195979	8.43468088726753	8.75828263177267	8.53622472168476	8.03568680882592	8.27891760602383	8.22953131033134	8.4724757474974	8.40214328823963	8.941611934258	8.50972842961185	8.45601397882217	8.37336359806924
+"EXOSC2"	7.28193154751261	7.41864523295349	6.94494248494304	7.31694266992202	7.08954679982854	6.44376059668005	7.25166875745098	7.19799564378471	7.18845072530274	7.81955685880205	7.49304662138133	7.65927506782894	6.77444158569695	6.96442992002764	7.0722179803567	7.71848534480585	7.17847812435296	7.47187402476988	7.44258946967352	7.93302686195586	7.48893153431644
+"EXOSC3"	5.13108900244321	4.93901246800399	5.09922779559617	5.25802813735904	4.96103951203477	4.82255418563632	4.94588276986235	5.02895546877272	5.03191246747219	4.93130984634375	5.254168435766	4.85150714178326	5.01927668871185	4.95216297125357	4.98927807276347	5.18801865025769	5.11067326834678	5.90276073499652	5.09175318092395	5.16480192173615	5.24682446758078
+"EXOSC5"	7.16167049733289	7.70360240475588	7.78530612028414	7.53917442359013	7.73411885057275	7.61790590327054	7.41697879546372	7.37689255563605	7.67380088558146	7.82269378453895	7.51106083670712	7.74722072902317	7.456355762506	7.31005392921081	7.25140119104617	7.91402084650587	7.62645104445601	8.01219411220268	7.57905306375975	8.0247778066068	7.652384396855
+"EXOSC6"	9.02077126296038	10.1491899581159	10.247903513573	9.59775078213515	10.0813007183744	9.74821223606737	9.4543828971934	9.44937826396387	10.1357596339339	10.1635438720014	9.64382304365502	10.1567153602355	9.89379228884683	9.65378451874431	9.77305918760171	9.84162185189572	10.175109912151	9.93069789729299	9.64764073866955	9.94914201985294	10.1787910091098
+"EXOSC7"	7.82138600951606	7.95326435852414	8.55366030437718	7.88750505056575	8.34856058010494	8.03130370333959	7.77100245065422	8.15321790762066	7.990544479403	8.25973858865525	8.13552915713621	8.18219501086818	7.94055452964654	7.8154428479522	8.26561244683996	8.09429852487188	8.11107248995856	8.30217247529092	8.11278164800454	8.31923553096299	8.0526226029639
+"EXOSC8"	7.12196683775377	6.63354114566189	6.86743914126102	6.4580089122808	6.63774856055973	6.52335396782032	6.46457165200326	6.5580323009887	6.38578241686134	6.5375715722147	7.23525972347577	6.38569309996352	6.29074117219237	6.73193027955709	6.46601842046606	7.26399987242661	6.41160476317215	7.42776498088953	6.62362852008762	6.58918605893253	6.29202007701459
+"EXOSC9"	7.74308573219757	7.85285575773326	7.99903389844183	7.44560338302851	7.90721357558249	7.79288750132187	7.07500964675844	7.73268730888455	7.84428677435532	8.15492749284833	7.87009049309781	8.08116724998937	7.59712265092893	7.79187057775583	7.43070281395355	7.98956203161589	7.73322237913808	7.95933540860378	7.55889911027006	8.07641980754201	7.88491407269686
+"EXPH5"	6.70273705653862	6.87142339226469	6.69365951344416	6.47520973614576	6.60002047100646	6.26621296570832	6.29079601809376	6.9607350708608	6.8383806229948	6.16125151756263	7.3942525009118	6.39895132503548	6.48692924719731	6.92911942099716	6.52330920699871	7.14010106234666	6.39247550125226	6.23717653420241	6.4997048595698	6.52256846256538	5.90311674495829
+"EXT1"	5.23852839977062	5.61393898239764	6.46427171009128	5.23175909031277	5.98308406191277	5.43673097678669	5.52288323827588	5.27450019552815	5.60290943366549	5.26877990255733	5.2761866166594	5.43100275059075	5.36219142069614	5.51247154209765	5.50944690982184	5.07132118929217	5.35670264906344	6.02263260843666	5.34081320572294	6.00884381817078	5.46012958269793
+"EXT2"	6.60625525722065	6.22133652592476	6.84195408557868	6.32974927073708	7.11553738027337	5.94074475404114	6.15739354844603	6.0612775722839	6.88711799183891	7.0482650253933	6.18879757245479	6.70986265685069	6.37917031536649	5.72751392942495	6.62063016117136	6.15807583792205	6.85585221456974	6.89970030602744	6.12847089168474	7.10283785574449	6.85152802223599
+"EXTL1"	6.82613463307079	7.20236262031528	7.79482894599988	7.36282051503332	7.39079073898276	7.11730945313132	7.56377259527178	7.13081736787554	7.31463533518386	7.27183917626968	6.75526097268547	7.2179980632656	7.4114898348101	7.37363149696868	7.36502942420232	6.69375814837881	7.02822428346905	6.99197777747011	7.29994999766659	7.71032286187117	7.2117583376915
+"EXTL2"	9.37131990428555	10.0405424361329	9.96819558427543	9.829443496755	10.3774379497143	9.51386768730858	8.77735998117933	9.43692252762511	10.1501042410835	10.5330279295338	9.43706627149273	10.0635433637169	10.1053430440307	9.32954792597723	10.0405424361329	10.2325318929105	10.2835411010176	10.1641661391465	10.1377034492892	10.5025082212235	10.3113384910786
+"EXTL3"	7.27529439277353	7.07156041845043	6.88147564460524	7.13330844831534	7.51869998119552	6.86325375496912	7.2964261357508	7.36335663385985	7.04576074889948	7.45189809269143	7.0955122098186	7.51175933784348	6.94157219099685	7.2134274164464	6.84735774073151	7.25916428701119	7.22271983227002	7.01714163905033	6.98709495568479	7.64799358627142	7.5531060128892
+"EXTL3-AS1"	4.96922775380539	5.4051292824164	5.36517760591618	4.99422558881704	5.30024564535504	5.22118093684822	5.0659617644482	5.26590355278674	4.97881548015619	5.31760053301025	5.59541107913863	5.32962420562991	5.17852547272114	5.2876831342746	4.85148119591987	5.57548519633543	5.36761691457786	5.05715322748618	4.92762254274852	5.14535360143521	5.44794245802383
+"EYA1"	6.78642970003727	6.37192606533436	6.52786682556406	6.08393437666037	5.98737603366594	5.77895403127636	6.70898815846947	6.30160429764019	6.04566898624723	5.72245387909531	6.1976756770771	5.6355314626734	5.31348218113999	5.70415247185988	5.7662511083396	5.8046063198732	5.88440497418561	5.90093990614092	5.98705158634731	6.63459161436322	5.31293621425222
+"EYA2"	7.06499894068186	6.43668974256464	6.6771005303753	6.81403528824011	6.19388069240354	5.89552995113354	7.38005012508558	6.86481929793357	6.35732151401423	6.56202303340067	6.9251652484798	6.61712948130359	6.69721761681862	6.87375169084245	6.80039465485486	6.00228795931731	6.09254825700071	6.8079755733787	6.80888060909439	6.80190290366883	5.28864909089882
+"EYA3"	4.56066944655122	4.45300179233291	4.24390547115972	4.06179121747512	4.3331031679438	4.10676732165842	4.43997767611285	4.10450768036973	4.18849360136305	4.37614830639885	4.11195259665405	4.52279064051837	4.21635460959541	4.25376225261543	3.83611789051708	4.37394899180027	4.58365555616308	4.25923528414054	4.26598277412384	4.41644281758322	4.29844120593106
+"EYA4"	4.54310376204007	4.73273283081193	4.78560847973744	4.32292860021233	4.72053335745618	4.7213907445144	4.67225879335155	4.50520234061397	4.49008176145483	4.60678304708722	4.61564859306185	4.383263287729	4.71367253634627	4.55440352073118	5.04680189798347	5.87203072567159	4.7119390077953	5.15745852276562	4.55479695423965	4.84604276531598	4.45652052828631
+"EYS"	2.77001150977134	2.79502511302071	3.10192972681613	2.88502346519029	2.85794844199885	2.98586326033229	2.99976932184025	3.08842531720072	2.88247134117108	2.94717927335704	2.82574167705392	2.8833225509095	3.06585838732676	3.01449908281559	3.17060261855207	2.73455251566852	2.80801731592307	2.73638239076039	2.91419174836181	2.94793927214927	2.86279201480323
+"EZH1"	6.7117532119813	6.14534854829062	5.79900729853834	6.8755649378787	6.10172455145438	6.41031637814496	6.65408253400485	7.09659968468463	7.19170086998601	6.25901843472853	6.89950277173478	6.8061464556925	6.93827760294243	6.71207132911031	7.08954679982854	7.11169966439947	6.96922186283095	7.17067519780514	6.84096226005618	5.70660889993244	6.05608316415491
+"EZH2"	3.76649585251223	3.40149769679249	3.70034992659801	3.76145915426798	3.51579328177109	3.77369493388198	3.64913535614768	3.77730376819231	3.64059749430968	3.42693811679389	3.44719600834218	3.64059749430968	3.7460190068675	3.55722518438783	3.7039301508558	3.68366643847386	3.64059749430968	3.84588072423363	3.62992168924982	3.68677898483993	3.56985929678115
+"EZHIP"	3.88665798804394	4.03349896825332	3.76645895184282	4.04530889450109	4.10981840719756	4.00437406850807	3.95728501637646	4.00437406850807	4.15381337806259	3.96554773319657	3.6847314280482	3.96045170463815	4.04714259592915	4.07679555840432	4.12648293521386	4.09873407540009	3.98623478248853	3.90868586432932	4.05593480669066	3.84882986542276	3.94847753638272
+"EZR"	8.99750475493246	8.86675491844755	7.59924993000889	8.45791454310863	8.25355793094642	7.18745696456475	8.88702160377344	8.89922142107535	9.0625068618759	9.024090980802	8.94879493624922	8.49283143932606	8.59286167281655	8.50789996755265	8.25758752744171	7.52360991236492	8.34975724200836	7.92293305307375	8.44291389330447	8.40128129847363	7.19974050193407
+"F10"	5.40529812337545	5.50076182085259	5.37115878544332	5.43021135528639	5.23043616147164	5.98141443788237	5.85710252286891	5.48761974362015	5.63488518763582	5.76294503745046	5.60026876590666	5.43919106604519	5.54560255951775	6.16756647617645	5.28934320434297	4.90122496205643	5.39956904422392	5.09901147188646	5.83763938026939	5.75481375585253	5.52436499765928
+"F11"	5.13449612325385	5.20387649071482	5.52855012020374	5.46049976254501	4.99096429302493	5.8449711929587	6.08165843077266	5.21397591757731	5.55947743820898	5.60705611600647	5.34758837865287	5.51532343969293	5.62735506388359	5.83248475931933	5.46049976254501	5.10233425649935	5.42623458728714	4.97930295823642	5.41437348804559	5.32875758092828	5.5732341456343
+"F11-AS1"	4.24686826976487	4.29938893389525	3.96193552655569	4.28752359183984	3.95547954213648	4.20062407820949	4.63322298402376	4.51549223913954	4.6686579465561	4.24334591271577	4.2118236336655	4.06025354405228	4.25731421446804	4.4638975594394	4.72929223998534	4.14475692614294	4.27578723276513	4.22744504843406	4.1063042940442	4.13526430408947	3.9903247287779
+"F11R"	5.04160763734158	4.74582935967727	4.94353236858526	5.04504514253301	4.86665595836445	5.70749634837736	5.45276714559527	4.86880548783987	4.94948577618923	4.87716861099478	4.76314117362399	4.97230925562285	5.1424671187672	5.23303281159587	4.85296917859682	4.86181456955762	4.86846382134677	4.75799280259008	5.03777475560787	4.92647689693095	4.84521509262107
+"F12"	6.63253386393828	6.9970232700504	7.88996306616879	7.13029761583964	7.52678278054871	7.39760994822533	6.88282590872857	6.9954586343201	7.34699793238089	7.51540136923223	6.42835151635944	7.19411353327294	7.37310038326004	6.87378694391152	7.20047308635951	6.86999894561089	7.05001168163045	7.01391992719423	7.23030353864422	7.48741931107958	7.29888386287574
+"F13A1"	9.08164940229607	6.41755486876755	5.63344164886487	5.7481059845657	6.29728524419005	6.17512803023423	5.81433745115582	8.38136487375485	5.73400732847602	8.56252903911405	6.04032153899562	6.80827741471813	6.0574931594628	6.1591153284458	6.03508315965144	5.79378036735677	6.38340007371235	6.12211103899904	6.82031422348149	8.8083578971284	7.69655670726745
+"F2"	5.34961099543421	5.70830566766369	5.58374406605628	5.75351667157409	5.51442670950659	6.22679834610517	6.04568632090638	5.47652094841179	5.75333139620268	5.72079616817687	5.36559638009186	5.7118575915088	5.98304351766738	5.75637558398597	5.76997284313311	5.71526505182296	5.66271174814691	5.31201882052956	5.88454044359249	5.69266060232856	5.81025567081233
+"F2R"	3.78597793331814	3.48401303533419	3.31109042266861	3.47115147475991	3.44761510179555	3.48401303533419	3.48401303533419	3.33675651474743	3.58949528350159	3.39170830096682	4.14959750503089	3.48550348321871	3.59496183962564	3.53746661171721	3.5337749677029	3.54300354855708	3.32053277379238	3.42353488288254	3.662369729246	3.35500780707277	3.39359085156519
+"F2RL1"	4.56685777061137	3.84727049688055	3.92865748835825	4.78628592370009	4.16519872356217	4.24102605897518	4.04671204669982	4.04164737578748	3.69827570917166	4.12590318330011	4.31142765687374	4.11296027284241	3.81473729819818	4.12363760152732	4.02902103000701	4.01427305640163	4.03339602489926	4.0523953633354	4.4845407846589	4.07087063952915	3.90706610486182
+"F2RL2"	3.30583515760206	3.31579304539674	3.59892841363821	3.43089402618762	3.34339882760936	3.5374050146018	3.30843272191791	3.33670144983492	3.33131891744099	3.27785066680604	3.28637361822904	3.08499481965568	3.39801211483736	3.65804548326577	3.42598080769835	3.38008965886987	3.12724023942355	3.14256222116178	3.47878036336491	3.45051256054757	3.22909655827191
+"F3"	8.69986086519611	9.42543491122268	8.87417659262573	9.01774574668586	8.74401378725266	6.68458396877338	8.4095641174599	10.431043441275	8.36325266698128	8.93292361078245	9.84753086987825	9.99982983726455	8.26812074802629	8.16080363124198	8.65142494282553	8.69405061124472	8.97825155514302	8.47130650153047	8.53831693745422	8.91143661192568	9.49555109658619
+"F5"	5.96822887995514	5.00818454249618	5.00933410939512	5.36578409923816	4.95867405215646	5.09455583692069	5.04879350114054	5.28854696033705	5.53568673977452	5.16958604707363	5.72560938723637	5.03498119169402	5.54214095749149	5.42843485498401	5.07511670498757	5.72813705940389	5.03244979331276	4.96590573796181	5.23723153847947	5.17463930462689	5.15954824693267
+"F7"	5.74669476811525	5.8340343607449	5.75626872132082	5.67510028482279	5.8340343607449	5.8340343607449	5.41823383987652	5.44710361446203	5.80550203520331	5.8377367264752	5.56647441722911	5.8820628071799	6.12986881244393	6.12548914445075	5.8999530926913	5.73233361595859	5.90464601188147	5.84324430367431	5.84777955460592	5.52837488033941	6.01306448022038
+"F8"	7.56877934610421	8.0188436391073	8.177534901491	7.76821036410384	8.50593032204103	7.20348609121102	7.78137701502862	7.84223911570746	8.1154987067058	8.36796322398944	7.74478094765736	8.07150601348055	8.14924049606272	7.66808414629917	7.89922960213638	7.87881166051098	8.14296606373178	8.0009270750874	7.99674198913003	8.20481922464269	8.06950142514542
+"F9"	3.5108520218848	3.57065159798244	3.64325004562519	3.52439941221594	3.60197335463035	4.10509533827206	3.80629848690241	3.69942743216824	3.81510920933225	3.69942743216824	3.50117372901666	3.62109758153346	3.83388420274767	3.93034342092605	3.69942743216824	3.64030196009424	3.80413962323114	3.71944685806819	3.7300145389108	3.57656714083155	3.87272086659516
+"FA2H"	8.56623544231999	9.48699093474502	8.74365804810439	8.59585748165503	8.38075320671549	9.22321203633377	7.67327374960921	8.00114691823464	6.92775305291996	7.73287528874025	10.5057901591378	8.26732967429057	7.61104940700038	8.46520216557979	7.78162010398999	10.8949960481866	8.29412751749113	10.6788554550334	8.42383193689138	7.34518490402047	8.26365746061506
+"FAAH"	7.47074110410595	7.75298635571023	8.22527433937264	7.38563295334717	7.71956362323752	7.8060115810945	6.88637633125492	7.43662485315814	7.31227793172855	7.66494981646452	8.31034074077182	7.81351505264177	7.42791278492474	7.41669839732914	6.66846527075555	8.63007266246403	7.4351324629151	8.27164191722302	7.65535279924221	7.69250592229698	7.64068543354038
+"FAAH2"	6.21584260534036	6.12500764128184	6.21584260534036	6.31194845593634	6.32937364683285	6.46484173222168	5.75753327866486	6.21584260534036	6.25438480685582	6.3278351543148	5.94785160033243	6.41514183788059	6.33759125876737	6.26589400835854	6.45981653306387	6.13503855835032	6.18341535348484	6.19756121768099	6.10024527434392	6.22844209850015	5.8801389363526
+"FAAP100"	6.28851433698636	6.50864653153082	6.3874080805523	6.15405061618681	6.44293732579813	6.21029591611163	5.94232203120066	5.91706057974689	5.97869432322653	6.38996846307449	6.66532564014693	6.24051166400936	6.01556032085619	6.18102626692444	5.90595255732731	6.33234316961624	6.2230587445385	6.58872342905061	6.24051166400936	6.62101794331143	6.46511949433748
+"FAAP20"	7.790697616725	6.63163238189392	7.59280936968333	7.14263595498565	7.04048414222018	7.58592488554088	7.16677004397084	7.01714163905033	6.92700884502888	6.8847341389952	7.1086932486508	6.77527149344225	6.93449789464394	7.21588698927081	7.00369596788089	6.86575347540237	6.65718794307894	6.91974507183552	6.76826527863109	7.43567083158704	6.81379606800344
+"FAAP24"	5.84549272241214	5.85989887833086	5.6595547542923	5.94347749257532	5.67068714592033	5.71357357698962	6.46970124022795	5.74305836074624	5.97119390403629	6.10723103304282	6.04670736749587	5.94815012546327	6.35783699913903	6.06138990327555	5.94347749257532	5.57875999712696	6.1053759252075	5.90773354541563	6.25192507321454	5.48429010341102	5.95485465155434
+"FABP1"	3.39053492489109	3.25494424028319	3.70725403649796	3.66366833568993	3.65234060839254	3.77732070794968	4.03370460317926	3.44799315884077	3.79188980142367	3.57789448620016	3.58543594836989	3.6620495718165	3.4766724249302	3.62823277895483	3.61788051473068	3.42222918409401	3.53999790302788	3.33511543483752	3.77767530838439	3.46784671588868	3.48964024571321
+"FABP2"	5.9898683872772	6.14887008034272	6.24839874286359	6.16958651375453	6.02209845070406	6.46389494083948	6.64380579573188	6.0596301884071	6.32852480889918	6.21708474503652	5.95647108916376	6.19189057490382	6.27115763368116	6.39029578271303	6.37534290227886	5.84818349844177	6.19887762115088	5.95324631443135	6.43035129439989	6.31086903009301	6.16338232955149
+"FABP3"	5.99127918580005	6.661577875369	6.9662399300535	6.19625552230254	6.87898394690925	6.82290617243072	5.84565697496607	6.21834714925368	6.75512333748787	7.05638144262496	6.56566603000349	6.98364828957303	6.75251109507072	6.07837691365489	7.1710087109169	6.82157655793637	6.69856926784592	7.20283459911967	6.51361540554678	7.43467923313574	7.05410186814509
+"FABP3P2"	4.78703268148316	4.92100522935068	4.96858661082842	4.87178155670733	4.7139338499007	4.76858834507046	5.27688496164268	4.9562430874371	4.85327270711649	4.83003000964499	4.96267331778546	4.93820325887804	5.041609904468	5.01523870331322	4.85109317227756	4.8284773488799	4.74084774483777	4.84262242212879	5.04003097162902	4.62792034736069	5.02967246706057
+"FABP4"	4.30826856858223	4.29147899560151	4.19688124126247	4.30329241598269	4.02387874795082	4.19818030628423	4.77498420495714	4.18481815842144	4.03909970957083	4.23103830176272	4.14063005449808	4.226010675223	4.17795976515959	4.63198576480475	3.96779852709763	4.41647405705438	4.25774765043002	4.19818030628423	4.19818030628423	4.09084031793464	4.18202660953645
+"FABP6"	7.00007236647093	6.57515121139295	6.78764680686248	6.74187098422811	6.69520210704962	6.98072472794418	6.63526669201373	6.71016672678311	6.50366299910724	6.85130359254457	6.14796780806433	6.91534421569137	7.12698739098189	6.58778574449596	7.3122906353235	6.88170958983171	6.83629051664064	6.77304967960807	6.69607043210912	7.22496414718522	7.1548141615437
+"FABP6-AS1"	3.35982733247846	3.53842711776766	3.62009804815924	3.4402997484538	3.42491802982317	3.69305848859646	3.90631881477564	3.4196990376816	3.42082261242347	3.58843536838599	3.35266761649072	3.46729714172747	3.53095015475553	3.65513478974486	3.37101235843652	3.3984906472399	3.54575993282893	3.42972371228174	3.56324440175335	3.41971206073372	3.46729714172747
+"FABP7"	9.91311226858866	9.52646816740322	9.27824823007271	9.86602112210015	9.03633004322342	7.43967680298941	8.91041941136745	10.2515017158272	9.64517583745407	9.81950460818884	9.58425819601593	9.88686716698908	9.46975230234782	8.6714363401259	9.26529034503424	7.99990567441519	8.82001677853431	8.77731457106509	9.20928334213968	9.33482663670773	8.59330984523077
+"FADD"	7.64739042710356	7.0059604944301	7.11999265797565	7.09870632965123	7.18629416103414	7.31942398492129	7.28256746503133	7.59854118544847	7.20160046509388	7.4116379197435	7.28842620730195	6.96200273904554	7.09339686558076	7.13501586538677	7.12054579970468	7.36652334145234	6.88737193085241	7.38882617078084	7.08395899295948	7.15978810547131	7.26267627597549
+"FADS1"	9.29400220026789	9.83139598731153	9.42936972033614	9.13423614964377	9.26577015983271	9.47276446797289	8.93930975986421	9.4668152995312	8.24908600517688	9.01676816141318	10.1057294818701	9.18243979893883	8.54605742123928	9.18913521474455	8.28168245359379	9.8724133507982	8.66312072454041	10.0361636310509	8.99732328341965	9.2979659814179	8.93186917298241
+"FADS2"	9.14408552917915	9.35886838513349	8.87598597322479	9.10866772878883	9.00483956042667	8.93758654932769	9.57238791634127	9.35100529640091	8.02292064986278	8.92688299790424	9.66848667201904	9.2593972649082	8.85082544304206	9.01962759786149	8.68533527145073	8.82211267684531	8.60290429819741	9.00483956042667	8.72168654637621	9.21840534525168	8.977113514839
+"FADS3"	9.0587150034907	8.65891334952756	8.80979274613397	8.60836090008409	8.8728277674516	8.80129387213208	8.58351088839763	9.01977944102625	8.4506312304109	8.76349777972624	8.80141086357795	8.94478706461698	8.28404453429297	8.36099326148031	8.26759743214651	8.5825996483221	8.78294026048169	8.90119309075541	8.65399204338881	9.05545690565832	8.62834454957711
+"FAF1"	6.31515691350251	6.22852626239008	5.3023593966263	5.68612686233244	5.85136545150861	5.54450087133998	5.85665652148243	6.00412888194291	5.78268551993669	6.35407691464347	6.4018378496062	6.29723081358114	5.32692006831047	5.27497667479207	5.42683236134584	6.45200517761833	5.67954341252309	6.4105789210885	6.2200704335922	6.32394348935248	5.98183310761786
+"FAF2"	7.13605134818182	7.27951044215151	7.28295313742375	7.15504389482944	7.56233732421724	7.5926578634024	7.13605134818182	7.49416882996765	7.36375647023814	7.50476260704696	7.26696545234589	7.56130661655889	7.20963707267055	7.26696545234589	7.30235983725861	6.79597127508513	7.10847972391618	7.00398578991798	7.06846366969111	7.42696512267646	7.13254437921534
+"FAH"	7.76806857812934	6.54041876507691	6.7858405759777	6.13202916420897	6.11367082491704	6.00889957016399	7.10142144863957	7.09724241747462	6.27292496266887	6.28369932511188	7.19743723526821	6.47315631317111	6.18058712747912	6.59645849546553	6.4007764310707	6.28128312104464	6.15197432704118	6.10468907067281	6.70169293715126	6.70300110836897	6.35428860629855
+"FAHD1"	6.9580172818065	6.96658987356188	8.27388526338214	7.27203049221629	7.41072978743617	6.66780422232191	6.2664482803383	7.38279827241064	7.20230706827553	7.76435183680779	7.15337453491604	7.21302543222023	7.3651261113759	6.73833579171416	7.14341112948236	7.56256932990162	7.46610609398301	7.99939256247295	7.70192321991495	7.92280308711828	7.62835993656594
+"FAIM"	6.94164216518762	6.45718866223775	6.49912679919947	6.3492178784612	6.55091637464115	5.87317217557911	6.41960778318769	6.30258503914771	6.36790485698114	6.37814861625054	7.21229531254048	6.3149223909392	6.00993618956084	6.05269781786387	6.32416566057305	7.01661116399222	6.11430701480872	7.128245260396	6.49763496971204	6.32699822043737	6.17084115141884
+"FAIM2"	9.83595282887624	10.5873430078006	10.5451559035269	10.7803097178344	10.9182466686815	10.7837268615227	10.5366000831949	10.4098992236917	10.7369249688194	11.3916144292169	10.3090315484473	10.9977730309406	10.942039940161	10.3734642002468	10.3221313410493	10.7985917289253	11.0302057820268	10.9815976347717	10.556078485576	11.0517783286514	11.2349685229991
+"FAM104A"	8.26212358810443	8.13798308656165	8.0810459300028	7.89369978844994	7.99229272861966	7.8527971801455	7.68733315193323	7.68987435462424	8.00499932123282	8.09711792990417	8.07729486222075	7.66585891885725	7.67412327292453	8.02546918355138	7.90384900704476	8.09725107587748	7.88631045824843	7.87856601002264	7.81634337730644	7.95400110286357	7.77266891333302
+"FAM104B"	5.8351332346945	5.73522179989287	5.80217089783492	5.52325450387327	5.84540285682321	5.67183486317528	5.82118389830285	5.82287033003888	5.6822950982044	5.71361309740593	5.96982174837	5.51067145652718	5.68825141312785	5.74235285678067	5.8046063198732	5.96854708125727	5.52269681306219	6.24345602019659	5.79051849068255	5.902572915729	5.73376090751668
+"FAM106A"	4.96134154629962	5.75222117053705	5.44949362374808	5.74173761274149	5.46049976254501	4.81903772224174	5.05780377888597	5.56361758689826	5.84044826577185	5.02936015455532	5.42869001074778	5.39576317200021	5.80879249524365	5.54424746932462	6.22528175453793	5.56065970942745	5.45090350578432	5.62992584338665	5.47348405352925	5.18303306607279	5.02918006113457
+"FAM107A"	13.1811645214566	12.2786724724498	11.9391927724161	12.4574676992399	11.7510683512532	12.0012258262264	12.5931952194066	12.7827585992332	12.2786724724498	12.075343857357	12.5791064995126	12.4146703924303	12.1898595494129	12.8437156224528	12.4464775062307	11.2714172598529	11.9395496030538	11.8204832200174	12.7027613780584	12.3400140594899	11.6490236328442
+"FAM107B"	10.1184636901202	9.79808226538748	9.25959274559126	9.73274686410423	9.24995758034696	10.5805335397852	9.34001852290217	9.19711468668189	8.72477127187567	8.7749640438845	10.5072101876961	9.26106087563975	9.29747848464997	9.86007445568679	9.42907077046636	11.0875931768898	9.03500291482003	11.0489520134155	9.48976802310407	8.11137108323151	9.10070376633457
+"FAM110A"	6.14505941677971	6.0657836454774	6.00076046480454	6.01571380751433	5.97557477581034	6.06399124649204	6.01802146893758	5.95772895745619	6.202143603654	6.16793227209756	6.22436321691284	6.08918323959831	6.1163605186116	6.35899094296795	5.97315403909182	5.97446842027238	6.08918323959831	5.88083490012478	6.19754921463358	6.08918323959831	6.20461367820033
+"FAM110B"	6.81202814727854	6.89431451881217	7.47311144813914	7.19514556754729	7.69137093899238	6.97298166974515	6.78460168196287	7.6043893224387	7.37169469368502	7.35564408192316	6.61751518123437	7.30608576106723	7.14149384154757	6.67872801182484	7.1060972370486	6.68809667358838	7.50793888133047	7.07637200547968	7.12979280476127	7.94511368292577	7.66962873802678
+"FAM110C"	5.49235741426456	6.35004988938603	6.5793184786918	6.05074722856983	6.66423581220121	5.75834305229751	5.32588567900397	6.6420162620217	6.26740219807084	6.21853911925741	6.71965379002425	6.42661539083448	5.43141547223631	5.36908818319604	5.59900214784201	5.91172058997429	6.10084311045379	6.50264191664579	6.19951966640593	6.90009278060067	6.24231993205939
+"FAM110D"	6.77320498397843	6.65334134570538	6.70364590908035	6.87520802207392	6.92254017627021	7.63130546710082	7.87259392075093	6.80433428473018	6.87658987147856	6.71759836123556	6.70579919937004	6.80433428473018	7.07193786561477	7.37848460977515	6.93813147344092	6.41293512856129	6.80255600564527	6.44131761912293	6.95473226446252	6.92169614539817	6.64031267861175
+"FAM111A"	7.93376255089424	7.28748894244938	7.29073351815178	6.9515458853079	6.87980403148404	7.83984217799022	7.47248849458811	7.51166792218329	7.11605387440172	6.96343720910481	7.54558011410152	6.77469418696952	7.08461259766481	7.67667191676062	7.11708523674755	7.48382699124441	6.91418138390163	7.5486277250561	7.34516313161719	7.35046712516762	7.14485254019657
+"FAM111A-DT"	6.89210427935844	6.43096444273397	6.78085970642945	6.09150389534625	6.37183337383374	6.58312540860316	6.28356717321255	6.37238961968376	6.07629234432715	6.46403074025488	6.78157673631805	6.0051424756469	5.97451327584681	6.16382691317334	6.43141280853285	6.51010143019921	6.01215330115016	6.60858326590167	6.37590607859896	6.43141280853285	6.1738305469686
+"FAM111B"	3.95002116509752	3.87158426665492	3.89452863468082	3.94084222563246	3.88509171534632	4.48106341686764	4.44941459544734	3.78169460375955	4.01520690170689	3.97723544643213	3.76590829062164	3.95460782053365	3.97723544643213	4.278049591398	4.08760134636187	4.06979919763207	3.89809037210094	3.9112110128471	3.68891745032702	4.35997810141403	3.95791445571721
+"FAM114A1"	8.30967745114642	7.51207880655834	7.09458216397847	6.99394656104825	6.96659332033575	7.72375557182082	7.58072279659154	7.71281110756515	6.75814606993319	6.99576900503585	7.83081802593841	6.5777044049002	7.06989383873015	7.65995460217954	6.87750909104608	7.73553061668567	6.91826784872927	8.03648367424646	7.24928690227839	7.66383454919226	7.06134713146883
+"FAM114A2"	6.64547556517261	6.58642276929035	6.13823586854281	6.40382767411492	6.54060821715895	6.02021735418733	6.28078158637152	6.42234643749053	6.29055350451939	6.52709732478829	6.52066819169955	6.41514183788059	6.00796635917149	5.79389833015047	6.24793227273496	6.82412798554431	5.94352279023843	6.70382347147711	6.0507044568824	6.51806187663034	6.38257691374792
+"FAM117A"	7.01701640675862	7.21152175745378	7.19064563913194	6.92882814185417	7.24998007642182	7.07356660381088	7.18355983259343	7.04949239822177	7.14910420978264	7.05638144262496	7.2324243053369	6.443834933189	6.98281271756633	7.07369795435277	7.1060972370486	6.90722897648877	6.90677275953955	6.99870618636065	6.91849112638544	7.01678142043337	7.08818072815685
+"FAM117B"	7.61685632148309	7.74556614634702	8.290216984091	8.12878021172144	8.14953627432172	7.82465851552252	7.50963013957649	7.98918187668963	8.32153312223912	7.72619188210686	7.30578873576762	7.77620118612715	8.04534462247246	7.55070260677678	8.70194328938292	7.28343621862556	7.85181412188995	8.11218267698591	8.17097382227886	7.71824883634508	7.76853989504387
+"FAM118A"	7.38941835487305	6.89560988928799	5.55890411844152	6.14798364969492	6.47733090747298	5.39256889886875	6.37196856712591	5.7998396666011	6.15368836910371	6.08480807858317	8.02513347604331	6.73683178340398	7.42257902956205	7.20183997022319	5.8700176205399	7.17569968766103	7.44326023480401	5.82287033003888	6.41691772241835	6.29460026596395	6.33183698598407
+"FAM118B"	8.30128601123261	7.90965725925324	7.52331347604428	7.5367952402083	7.77197084926284	7.38574094433831	7.98405336778875	7.92973696984323	7.89077089272365	7.77197084926284	7.72871020890517	7.33172341025638	7.71037277340906	7.8326273777316	7.84278538273622	7.83316373278673	7.32296672241612	7.98451820608984	7.77197084926284	7.86090263767376	7.36429245547196
+"FAM120A"	5.48677320073719	5.72225053366778	5.34601923634733	5.14124702157885	5.74099656108496	5.41789796509192	5.34810385551279	5.39085882555027	5.30084503523019	5.80615578204542	5.60534607952546	5.95623480741951	5.63753032440117	5.41390131676289	5.59156075326365	5.62103668120178	5.82044835985698	5.55179699327359	5.30978424729303	5.64299356455056	5.83301521447937
+"FAM120AOS"	9.50748989812607	9.06019899810801	8.78448997481232	8.68943112134483	8.72309432888965	8.28026287253349	8.71601311761759	8.98877038316614	8.55621099949407	8.76796702156349	9.1167311586412	8.71476159475654	8.28321239469987	8.69428656479894	8.78448997481232	9.10245507667144	8.27167154078086	8.70654279667708	8.84973458829426	9.11453532901546	8.78738262172748
+"FAM120C"	8.76652758361517	8.43128620601881	8.73489271032073	8.42138565371453	8.13753329143759	7.91805542000198	8.43521075401499	8.46663895399462	8.11038981974046	7.91376547454113	8.79643335854722	8.02978842063721	8.13758899868805	8.31702424947076	8.22805943514473	8.74585136129907	8.0263596720912	8.93951493990881	8.15661786570269	8.014097308992	7.96938746552884
+"FAM124A"	8.4575787036472	8.35215207494635	8.43354234773149	7.86797841884598	8.02097756756076	8.23064029562183	7.64577464888492	7.32602742219274	7.76676369818019	7.4788672283828	8.92278059669208	7.27553462334297	7.01684622263303	7.74549692443918	7.73131181222499	9.59873247851888	7.73636313659399	9.90445059398618	7.65442255508392	7.58430361799163	7.85122058433207
+"FAM124B"	5.83489135196075	5.171468290621	5.12216848548955	5.29504812467606	5.15059448369654	5.09538230120688	5.46394606482501	5.07598880682479	4.96311780009828	5.02158000742972	5.17058145535251	5.06937282774149	5.24566253393281	5.33285286996423	5.23649895626377	5.28897956180992	5.11361886209998	4.94990574648802	4.7898404900173	5.12057429431316	4.99880989306554
+"FAM131A"	7.43815165478541	7.51042933913451	7.82484124593318	7.29072711580778	8.17377038111032	7.6453078141313	7.09389713138317	7.55951990420793	7.47616889260623	8.14700459019981	7.27900251613628	8.46161600485548	7.22817834341443	7.08240689987637	7.15151644795369	7.65077146038385	7.93186090882619	7.79920886955223	7.6130013087934	8.36727659571839	8.26499084058265
+"FAM131B"	8.48422615762055	9.08317897293074	9.2472183378895	8.85593975688901	9.25846212507258	9.63726349793992	8.72673356196625	8.52842715970863	9.06518136512187	9.33258909641693	9.01139530556192	9.17137645253925	9.16659490954757	8.93501856291227	8.98330337051794	9.27553521984087	9.11996375353783	9.43086760649137	8.60758700984041	9.17335467086062	9.25639489609431
+"FAM131B-AS2"	6.12326423336487	5.79976601284619	6.22528175453793	6.13897507847678	6.07893205538568	6.95243772702529	7.27977756440403	6.25486447406922	6.43092771140791	6.27824226517694	5.82287033003888	6.0488133037497	6.22528175453793	6.54709613845959	6.36577047444682	5.81530295961779	5.9577417504824	5.99015823508499	6.44946705221758	6.36470663322994	6.17428804619311
+"FAM133A"	5.45876031836811	6.49271412924938	7.33766559284575	6.22092968828659	6.96427232204194	6.5134193137618	5.69880308638581	6.38697237204529	6.57360018057901	6.7227171531713	6.43084067594678	6.61151009264331	5.73514394421227	5.96113347815753	6.41972815512516	6.52417140902208	6.4669406806172	6.60424680594401	6.68521176963842	6.90392327596156	6.46474552356016
+"FAM135A"	3.86012669711561	4.07610898118996	3.80868959164996	4.12318141876913	3.64646847182225	3.47298025610708	3.85268963624496	4.36346310298116	4.34077049483861	3.83098852756615	4.36698304386797	4.18143712043548	4.08433179371749	3.96487942944883	4.52230793637023	3.94504991880119	4.04607259124915	3.94492613759668	4.03771313355036	4.05789165932912	4.03433778833523
+"FAM135B"	5.5497642290686	5.45468293040393	5.72249490252066	5.85589553021013	6.17278905281352	5.82060458387125	5.90853447574668	5.64779125622131	5.81487350274217	6.32673683110563	5.61283319709768	6.12251146326202	6.07752519323062	5.3450052282921	5.61730443837768	5.9886476278016	6.35702757418425	6.02263260843666	5.86219836836549	6.58134230769637	6.56122879369994
+"FAM136A"	7.82981596384122	7.93043186958402	8.43355194467063	8.13783410135065	8.48636270672953	8.03027228810624	8.06764878562845	7.87196279650425	8.43226915235461	8.05625913020963	7.78339652487333	8.01297256743891	8.48585704812366	8.21504258718022	8.54838679531462	7.78511002068207	7.97577930517604	7.94443492881264	8.11801288872242	8.25698814964697	8.21214094768143
+"FAM13A"	8.80135217236204	9.09413879203321	9.20574604028093	9.11009836266724	9.5493750414172	8.37529062103701	8.55345897185831	8.9140029477775	9.66906460899883	9.48340225738215	8.48463129193132	9.27930263654411	8.94534702506344	8.73184095960011	9.50942070176684	8.45731090112762	9.54299914844717	9.16061685080817	9.34757961155614	9.2364148933885	9.23193202307385
+"FAM13A-AS1"	7.32204569433288	7.02730881345837	7.16441962084406	7.00628069548102	7.04758769301621	7.35678264650592	7.14486297512556	6.99538468398722	6.79887012750224	6.62955235999452	7.08410052881661	6.6737680690843	7.27263131536736	7.34625133931714	6.86798940470854	7.38730161162028	6.98202536371951	8.0299250262362	6.4448258146879	6.74925401859798	6.71127366640675
+"FAM13B"	8.72354426449703	8.863071895794	9.44975674479852	9.26171344323588	9.44335160773329	8.61024254964771	8.05969942675727	8.53485986980087	9.57959724666064	9.48621528273204	8.88721635310178	9.02028387238999	9.0226489849255	8.86409971917961	9.38059071455165	9.07624027509448	8.94680388697122	9.55761216609265	8.91994746741295	9.05159627253284	9.26930055776161
+"FAM13C"	8.89817762714939	9.23341436446224	8.98184760890863	9.19111926706093	8.87214400926128	8.83383900578474	8.15417717003402	8.98880088965906	8.85239673262342	8.55480556157272	9.7385019838789	8.55040387684647	8.96974931266941	8.85743282852939	9.5113882585079	9.91249340721679	8.73772775746397	9.87879762601535	8.90138874468873	8.3883553454628	8.82743492666745
+"FAM149A"	6.63987921723778	7.50110037702441	7.82018974023783	7.3723370508683	8.00178407201932	6.83139468425971	7.19233611258124	7.29934784946852	7.92462972771117	7.69090369779783	7.68271093123334	7.35597038162428	7.35683704869916	6.77976224608797	7.14647411439584	7.363357393341	7.27743383540402	7.52551628483218	6.85973069346989	7.85534650105989	7.74461915844582
+"FAM149B1"	8.28631098118317	7.9412244660191	7.48048003966464	7.65886196262589	7.64460373995509	7.51246328280775	7.34559579464952	7.70161207086519	7.24478037551493	7.11941249295898	8.24523384730456	7.35027150444802	7.52902385949933	7.65881100597402	7.43715457333544	8.36617683474228	7.41526284665632	8.16140565997373	7.56917873683245	7.25009876306934	7.41599716407387
+"FAM151A"	4.97627138323585	4.71892801087094	4.74589574865265	5.13062127485998	4.82064975776487	4.8169764930437	5.30891281732634	4.90275496957292	4.80791093082941	4.91100454531016	4.76917860353478	5.17475044933212	4.87090595031151	5.23143053892897	4.81607208640823	5.06064417237483	4.91100454531016	4.59463450519546	4.8695259193778	4.98834335275316	4.85291505964577
+"FAM151B-DT"	5.93569615540744	6.46764340310717	6.26065213410191	5.86851220797618	6.68324760077683	5.97987716756697	5.32860865300503	6.05829099150814	6.27046390101543	6.02902658249507	6.45600033655858	6.03553018543786	5.77382597976054	5.37500935640489	6.15416747512485	6.6380624489091	5.958249646191	6.8115202091185	5.62812029906696	6.05351866963749	5.82281750651228
+"FAM153CP"	6.57932221710586	8.10849577152352	8.26426043246264	7.89369070748807	7.31151956762721	7.3907333692508	7.26174652608012	7.82279288980777	8.48249124908862	7.68272888083647	7.44304313870613	7.57816392903323	8.10731135736383	7.72481999275979	8.60342780784545	6.26239390560911	7.56445079941547	7.07889240206266	7.39271620076244	7.49542245232748	7.81382040893872
+"FAM161A"	7.00606413878963	6.92766231903926	7.38963230373191	7.29046713076019	7.5308564705226	6.89740628108289	6.33156577030145	7.29827912859852	6.96438325512095	7.18842346129246	7.03568774213475	7.50549511458594	6.50913514049642	6.54069057468717	6.82840361985247	6.91374438008019	7.04029151883567	7.13909205240279	7.22971758059192	7.28077125212592	6.99085122698531
+"FAM161B"	9.6052262542613	9.76768016456605	9.4782523233903	10.0130233871131	9.09201817060505	9.67144049932059	9.74415268430077	9.74965988035158	9.90005660796209	9.36017056268789	9.93215346545014	9.40975705206974	10.0756560031358	9.9704762691659	10.0726759138572	9.48753566565928	9.54004050010813	9.07553928633005	9.61524676292974	9.03425669597431	9.54642477729219
+"FAM162A"	6.99638527656353	8.21735270035397	8.98965403520216	7.66515155546687	8.88792652620383	7.80721390736541	7.5558596696573	7.86568999791559	7.75344098181295	8.19392488230351	7.88674999814959	8.062918921411	7.69551945116139	7.51121264126976	7.45875730689846	7.76853989504387	7.9618134074002	7.97260354531074	7.49170135687225	8.091689137385	7.93871699494933
+"FAM162B"	7.04055484788852	7.27083926187134	7.54016054020147	7.43507627291899	7.4820392484324	6.5728380978364	7.200009158964	7.3073469779764	7.23573090892828	7.10460047299542	6.58739426814324	7.47493837602055	7.54390410003202	7.43292151016782	7.23573090892828	6.97847082169562	7.13873173772693	6.77274605598909	7.23573090892828	7.94236796753781	7.0667856999557
+"FAM163A"	4.99196387444923	5.30928796427768	5.92134831125395	5.23333645048945	5.67268361736882	5.12730677172538	5.22582900084635	5.28774006554701	5.54921639391144	5.71049578216747	5.00687322581661	5.49617237597656	5.27481987471263	5.01958226070045	4.95771342590708	5.3140928744585	4.83230102262727	5.32044159804188	5.61698632638071	6.16306547782766	5.31323984849485
+"FAM163B"	6.87644581496987	7.59747741534073	8.65690620420416	7.80916068808445	8.35732267266529	7.62831436652571	7.48442544063537	7.22161202711905	7.64879423311324	7.69849911318372	7.02092680003519	7.53755540204666	7.95711387805753	7.57443445103535	7.60038253403415	7.02968628301614	7.63966248913411	7.70204786387329	7.20050498570384	7.69893122898257	7.93838350377501
+"FAM166A"	5.5745046954441	5.46222396047942	5.44969832233166	5.36245217135415	5.23621015982824	5.40271379925146	5.51532788505432	5.24805654765808	5.57591864690812	5.61793235147028	5.46049976254501	5.77448964134695	5.19836105707313	5.60185490487299	5.47336132311929	5.32604973762002	5.48038586494633	5.59602762863515	5.18557904182547	5.7593598155042	5.76500536145535
+"FAM166B"	5.680874367256	5.64451695803787	5.63339713212391	5.54589642378533	5.60174169833947	5.67379703624815	5.87964047749081	5.64451695803787	5.65620113687215	5.51870075596508	5.46131936277571	5.68293693182008	5.71845474971684	6.15794204187807	5.88422845657708	5.62228368212006	5.71656556366923	5.3607045455396	5.72915781350851	5.21386116474645	5.54867886950408
+"FAM166C"	5.58217463046499	5.68784705771737	5.54183882189903	6.00534348301067	5.22830572659658	5.85962789182058	5.66889406273678	5.56312326331723	5.73972723326712	5.56440585136211	5.64644444909643	5.58890154673561	5.77502341397335	5.64108880073936	5.67984079459333	5.60617132306111	5.64108880073936	5.37932215430979	5.63958543273077	5.47216918231573	5.76584443904165
+"FAM167B"	6.5671389414739	5.53379584987649	5.69631252839081	5.99597721995026	5.45643786121736	6.52440452384347	6.3643480768716	5.81657719289928	5.3973348872181	5.70744661268682	5.51824736468102	5.72792835146	6.87337288836361	6.22012552874506	6.59565627219886	5.33392628435838	5.8046063198732	5.68017762464577	5.80992514274134	5.6844696066874	5.64492104987505
+"FAM168A"	7.91523255231359	8.0084033195366	8.02497976119271	8.05831738443502	8.2164590321406	7.46318765027445	7.38980221307709	8.01986759598634	7.9358210123138	7.85414008389791	8.29412983690047	7.72263451020684	8.21435670617933	7.8160875869125	8.08600198538006	7.39008774599792	7.93543518288246	8.01712483186758	7.50727110856684	7.61120555323179	7.8176349365474
+"FAM168B"	7.01565762090796	6.77296484059977	6.74984027507205	6.85331160211737	7.22287429569436	6.54809057595236	7.21166861666938	7.08727597734396	6.97102261153749	7.71412517968065	7.15363620073729	7.7115381449518	6.87364165681825	6.698156721138	6.01887431818321	6.7650981303753	7.02553240277084	7.02626301858764	7.09884271906361	7.2647582844303	7.66786045461968
+"FAM169A"	6.51508569114201	6.92972870710438	7.63649182024312	7.5185338078769	8.27077730426201	6.38328431868458	6.89950277173478	7.46687700580525	8.05807399914336	7.51564525325157	7.06496908538605	7.6456829310728	7.22908883729323	6.46525945559634	8.33818455238563	7.08633782154945	7.64787974560166	7.46687700580525	7.4822962393698	7.46905776728442	7.51309922326509
+"FAM169A-AS1"	6.03740498371411	5.78312492578781	5.66527197731348	5.36245217135415	6.08027375814893	5.18295266734645	5.1799864355252	5.69469046411752	5.40172421527653	5.43160084318117	5.5517735806811	5.87574416046779	5.036277250002	5.26499900950191	5.24483104237556	6.38759378747888	5.31775145219151	5.98254920626824	5.22025635773318	5.77061785191014	5.57011592742621
+"FAM169BP"	4.55310185538193	4.66556331188605	4.56770648830177	4.90826517864316	5.02369555397859	4.8423075151489	4.93483988482961	4.71697011912895	5.02473512089069	4.88200987307401	4.63065537192316	5.10736596751018	4.78763408902469	5.0027547683221	5.13294487766189	4.86151189370967	5.02021666309139	4.79982294021075	4.88608567300995	4.70693020908482	4.99695643229299
+"FAM170A"	5.2199929210822	5.31622979550919	5.26590355278674	5.35290343264938	5.43269682224021	5.11674885985308	5.33942082578481	5.40039183322376	5.35290343264938	5.55448679041106	5.36572560900631	5.25676184092833	5.34306178865349	5.2269925487601	5.35290343264938	5.62214467473494	5.52356642363746	5.61065403637537	5.40658275688618	5.22307921863649	5.58074965211644
+"FAM170B"	4.66784483447504	4.67918931151918	4.68722707737133	4.69920982319418	4.53343714688644	4.45503733336714	4.64869869381843	4.61440356102168	4.72510801288706	4.65029288499483	4.55080717961838	4.63088026852083	4.74197835061526	4.65029288499483	4.50118064949179	4.65029288499483	4.92112737316211	4.52891354322985	4.83764939934943	4.56260720862916	4.75271288948731
+"FAM170B-AS1"	5.41102977576325	5.2532601286776	5.24288630408136	5.57451021257816	5.40776331105127	5.39256889886875	5.61726368600702	5.38334923684571	5.49263272788145	5.53224555427365	5.02711178943359	5.30546980925186	5.67437613910842	5.68011092582541	5.51383714714212	5.13029123579766	5.31398496511112	5.15712227824203	5.36685224740792	5.41102977576325	5.41102977576325
+"FAM171A1"	10.9117121466615	10.9402510533924	11.1029514077408	10.8291417093679	10.8818861086061	11.4021910971284	11.1111224344694	10.6427519294945	11.0910391496901	10.7248955769481	11.0346304410603	10.5961109407304	11.075259671101	11.022911027605	11.1418981597725	11.3622423795762	10.9076302569355	11.3643226824624	10.8554478360719	10.7879574135872	10.7966232284195
+"FAM171A2"	6.32492330159183	6.42349392412716	6.51009838324093	6.70206632237043	6.49243492184155	6.2497738734673	6.63596815194655	6.52606374301054	6.85484138488238	6.85647236800361	6.28287211202339	6.86373613387561	6.71694416838411	6.69130945539523	6.59848800918064	6.24295503305231	7.04497860001181	6.11362695003624	6.67866197695183	6.88127510695086	6.59293011668852
+"FAM171B"	6.29078175794755	6.57607359504407	6.00201238509422	6.79515198932036	7.19667116907258	5.46739863405158	6.72816315990373	7.34572261569049	7.11930087752794	7.38909493360749	6.29369014923217	7.17214338001808	6.25222631908152	5.88969241814441	6.56488365876604	5.65229606818058	6.49414004739444	6.31256632744119	7.0038208925016	7.38782050908671	5.68682391226025
+"FAM172A"	9.24585128565598	8.99153918213522	9.45450750936571	8.81832798091514	9.06013262022977	9.06574869452088	8.98110450147067	9.39716776158264	9.09767204682719	8.65325156460477	8.91268922969551	9.0767401800486	8.78251023726232	8.91205221690318	9.09079009311951	8.97805929325123	8.98120433958527	8.9955655873426	9.2605623078931	8.825805232764	8.77514640139603
+"FAM174A"	7.8328453678641	8.59152414584025	9.0672469989512	8.83539607033794	9.08718101091734	8.26521992241813	7.56220410949382	8.47920983817119	8.74581490871937	8.86986752401993	8.71223170403787	8.61499124700009	8.9156459375315	8.23203643537958	8.64468405877234	8.75610928619733	8.71882315395088	8.93202185158359	8.55746110914236	8.60678754603171	8.75980968870258
+"FAM174B"	6.26630106352659	6.60496504691236	7.08947501954496	6.52965364496427	6.84632752900695	6.62113880333714	6.29665097847584	6.28094367426176	6.66629976662408	6.91021719605732	6.4160760704336	6.60311735260254	6.4159201120384	6.25168162642432	6.04732065118119	6.50797283168188	6.5741800861295	6.73345846125098	6.31657597597993	6.90502219600871	6.71323667396896
+"FAM174C"	7.32639475375249	6.78331224141729	7.22597406975144	7.19165159944212	6.7481488455358	7.26054586944524	7.40783296923389	6.64903521880774	7.30873574081438	7.17646054998287	7.18080822436596	7.05793481470005	7.26732367521863	7.29177621809252	7.42699659449941	7.18080822436596	6.92885489139205	7.11451044846813	7.10456980537713	7.21021156586622	7.0389792927728
+"FAM177A1"	8.49261866233299	8.87003326522554	8.63185461170144	8.47085910882977	8.57179039960568	8.86853908394927	7.82015293864458	8.35541804068644	8.00244540983007	8.24988062487253	9.4818117730218	8.31993795655718	7.95222583041402	8.48065907010257	7.99797705644589	9.6059537124636	8.11883629933999	9.30672665888905	8.28917576745767	8.23887182341448	8.37320886159762
+"FAM177B"	3.78361839956065	3.95644754186536	3.98972888249975	3.82391606043507	3.86879444046347	4.02315519334434	4.21774510673929	4.00469379059507	4.2925176890697	4.07314820494725	3.78316087310665	4.11384012282492	4.22414855701288	4.0269720122487	4.13958554966424	4.00469379059507	4.30707142815009	4.00469379059507	4.20696044041702	3.68569045739877	3.98383229406865
+"FAM178B"	6.43263031290633	6.64356615774593	6.38515600219287	6.79348587936103	6.5694737676954	6.78128869008792	6.87302180986536	6.34820963300797	6.53041595529342	6.49038229254022	6.76184803727539	6.70598851825365	6.69924295100291	6.69709518407571	6.43388990053535	6.97442351640443	6.6308328899224	6.48353088780249	6.6308328899224	6.46238601618529	6.61951520149195
+"FAM181B"	7.52545703855036	7.2348582264899	6.66901877601286	7.50174437499713	6.67794829452719	6.25074690501538	7.7333913653639	7.94562362738743	7.18464298362673	7.2553488655093	8.0284121762538	7.44180928469449	7.36979543015049	7.27332470764948	7.04293513693102	6.87252096097688	6.86810657426004	6.72949344863452	7.34984808225056	6.95151105728459	6.71421874167443
+"FAM182A"	5.226364805074	6.04504196711907	6.13703550130342	5.33317066041832	6.08767888962907	5.72050759046015	5.62816258846127	6.18482198792276	6.45853330751419	5.79996324603177	5.42378550209475	5.72050759046015	5.72050759046015	5.89592973161603	5.95881629418783	5.34666443816612	6.10938827320911	5.91169622162869	5.61820907274873	5.14954015836037	5.4651521501015
+"FAM182B"	6.15041807726115	6.71824969846691	6.50864653153082	6.41363276436822	6.28506300198445	6.52124962958633	6.75700047553494	6.50864653153082	6.90967796773308	6.75642186267207	6.50864653153082	6.49622339446515	6.54615625525543	6.34587292012336	6.5371410618178	6.52646085914733	6.48978654850691	6.59263915451521	6.24743121006469	6.15403221725893	6.7387722529428
+"FAM184A"	8.70806595216264	8.65848489958902	8.71883919059661	8.29256889668701	8.52309913424039	7.64767013847203	8.76557903659711	8.78826656514066	8.39101097314677	8.47157770430219	8.37290156810846	8.3053433554111	8.229685836542	8.46976650122378	8.38256773332331	7.95993235013112	8.50444836625502	8.17892085031669	8.30097969904495	8.47062582887731	8.14706477311139
+"FAM184B"	6.74795538253272	5.89580359235245	6.08361367529484	6.56654132798731	6.22863358832057	6.49804472660575	6.69049121560991	6.11248448309131	7.42155817795003	6.55771190683216	7.51340767666415	7.52922462495781	6.59219254372013	6.86448044141373	6.28771350250034	7.52605048363504	6.96281479921055	6.71592921820761	6.59219254372013	6.02583188918789	5.97379783146313
+"FAM186A"	3.49964151466408	3.34221344340736	3.31871404303182	3.53946439452784	3.2588562825902	3.43380050779593	3.60539201997861	3.56154011482399	3.4124947447712	3.3992244546131	3.42598080769835	3.40822199375431	3.41603442714824	3.56738124127193	3.36808335871078	3.39921793950473	3.52896283659532	3.41603442714824	3.42227852662291	3.37862893925362	3.41603442714824
+"FAM186B"	5.33464636245334	5.57244780972795	5.35453997688902	5.90752410941777	5.39994920090105	5.46668379056703	5.89914512936698	5.40212240752079	5.62409225606254	5.73155952581321	5.37162097931287	5.7705704409984	5.5917752535482	5.57905338149345	5.61324672506247	5.69050004291591	5.67980435963325	5.12244311810584	5.79429522837084	5.36078672857958	5.76638251709968
+"FAM187B"	4.71478594344409	4.92239453206753	4.87988248785737	5.11926012775089	4.891431597517	4.92150192200051	5.36601488407874	4.70821375246702	4.98167230888014	4.88055376183466	4.77349503711271	4.89003994626594	4.92158177269146	4.82856558551795	4.90122496205643	4.95187046000566	4.891431597517	4.70522431615946	4.91331012921033	4.95371005143044	4.88207175724739
+"FAM193A"	9.20130375588248	8.82234902531126	9.15628197854008	8.76883202920431	8.8278904887612	9.19062266062685	8.57524468290476	8.83437258315465	8.71388841992841	8.49986237904493	8.93536678213036	8.73247348157437	8.56477669532812	8.64664492180811	8.64181581497673	8.79038617572623	8.645546639388	8.98552360675576	8.61130074589726	8.7645759530985	8.79991812118918
+"FAM193B"	8.84221988946246	8.69038117096363	8.96096952659229	8.58265786712288	8.42926249402805	8.98223429822472	8.77604284309717	8.817452127306	8.45905046130722	8.32825508153844	8.73940718642322	8.41951960814224	8.61226940072963	9.01118142350134	8.52080167715421	8.49170675379741	8.58265786712288	8.54945411856846	8.61635334210532	8.42907677947025	8.58173612646141
+"FAM193B-DT"	4.57072687291648	4.54068367701429	5.14497323633397	4.78743078420859	4.63958944182767	4.90992076457475	4.84259663034401	4.69964974845151	4.78027140758929	4.69964974845151	4.69964974845151	4.69964974845151	4.69964974845151	4.65925407366429	4.90386821930151	4.57992018286604	4.72385026172578	4.97490191474583	4.69696842408571	4.76467757097085	4.4915814474312
+"FAM199X"	7.47835580591004	6.59539861936085	6.08361367529484	6.52737095572998	6.51784314870453	5.98404238780459	6.96683152549955	7.16090456495779	6.33536456490224	6.39255734462961	6.67804654781641	6.38932006313155	6.13931583350872	5.9334356797255	6.44811179801407	6.36497505408167	6.46594465575895	6.61802838901324	6.38481722879479	6.24533970727445	6.57442190217741
+"FAM200A"	5.04494292788859	4.56485256148178	4.75160195466974	4.95711276207063	4.82133395894771	4.44143290368945	4.66961208371532	4.82841316462313	4.86361138153057	4.80090791410107	4.95880900958592	4.31877389421269	5.28046087448393	4.80589088998748	5.10507393977965	4.61095622474794	4.44909183765624	5.12882734624508	4.91057780054349	4.60363219984205	4.7096388695463
+"FAM200B"	8.43901524701405	8.54019828017487	8.87942966173613	8.39440323846388	9.09578408878073	8.41562064808157	8.30836686617154	8.56667923163922	9.05641714433501	8.19285858729344	8.74048304943038	8.75260669686101	8.48045922056373	8.02139855087873	8.70978546990467	8.55529491186531	8.98166782323495	8.55001130292783	8.40225479980464	8.61350507019099	8.73739839319392
+"FAM200C"	7.2595458885212	7.05445434638557	7.18476010663007	7.02124468919264	6.91244525297953	6.55166333035269	7.01843203991407	6.99549208259724	6.82707422641331	6.32974927073708	7.58996060405573	7.1632194362064	6.7102906187073	6.97102393561207	7.15896226450035	7.85315811651186	6.62229191467588	7.72396590232728	7.17858399524051	7.05785164010602	6.53245617045107
+"FAM201A"	4.33936315228393	4.15350827126735	4.07840288347301	4.05631231557012	4.26625990529966	4.03300315584199	3.83489182419103	3.6318137131696	3.67791250251972	3.95323714220352	4.9426226036242	4.07792606942969	3.95157683704972	3.8597881059529	3.82563258315805	5.51117681150396	3.88812108675078	5.04441185976792	3.96963174208265	3.87457576078842	4.22793996984227
+"FAM204A"	7.21505342836276	7.52980672684641	7.6122412200184	7.2150771772206	7.83502711935651	7.02547129797932	7.25679905627675	6.88810682276747	7.61577305093376	7.72090830329189	7.68633127121544	7.22887751667864	7.45765534279384	6.96122461767326	7.35383090642572	7.23787638049941	7.38263995348353	7.44161170278851	7.10860207766847	7.17425598058937	7.35383090642572
+"FAM205A"	4.74141472098206	4.98428309916651	4.78406250943396	5.02079954150072	5.18709035549064	5.15411651201305	5.23139852737768	4.8467804063089	4.94282143164382	4.89550325299867	4.58498318772104	4.8421384297946	5.05218022181213	5.2650421548932	4.69039448376223	4.7939943459758	4.99484450237814	4.5525696948799	4.99372165742728	4.81084267308524	4.87972715381281
+"FAM205C"	4.93145002558661	5.15795147686824	4.8751063259271	5.10337905743539	5.09754542111266	5.18743250867064	4.90271570533652	5.00071135723412	5.22672765125578	5.13806701846961	4.96981011186836	5.0774301093202	5.20158966539769	5.34810385551279	5.47714677464561	5.15497053690633	5.17928028460376	4.75799280259008	5.06639394950746	4.91588360173855	5.07231941310203
+"FAM209B"	4.66878089364112	5.09036902015866	4.90039213347131	5.18008585998221	5.05321564404438	5.07511947567619	5.13988773820519	4.92721308684856	5.33554314295936	5.45167033157481	4.84721026276804	5.05321564404438	5.26373124646406	5.22209266910451	5.11703314399435	5.01620036453527	4.8943823719034	4.89785887357612	4.91197276943195	5.0833050448528	5.09233047940182
+"FAM20A"	5.0236824294879	4.48451607061575	4.34880592023429	4.66309177277099	4.64257718809396	4.66309177277099	4.25236319213596	4.87255298318235	4.74428572055847	5.55890411844152	4.37875411450015	4.48319839176815	4.66309177277099	4.42078735481884	4.38560815447885	4.36377213340282	4.66309177277099	4.2892257431677	5.11975724712187	6.96519644389544	4.90169161608214
+"FAM20B"	8.07748514217906	8.45747405322903	8.27321177822476	8.19207771707179	8.56183101275139	7.43931211920273	8.06922100210886	8.36145190533794	8.67046203510376	8.66586518806596	8.37666557624702	8.60038183227113	8.16459477736321	7.94822576394814	8.39967828498749	8.48938382261936	8.61075200655853	8.16326869418553	8.51534849654331	8.78804164352087	8.73987699695647
+"FAM210A"	5.2381593278364	5.81823868881081	5.77310015910495	5.92320324134791	6.1896583674021	5.5622547884785	5.40028051644457	5.55397753521626	6.06508117712698	5.70881492160149	5.90396444645219	5.06831891061021	5.7736876332118	5.2067442446454	5.76118398543547	6.05249662267228	5.49220761962721	6.13407018997857	5.58130678531926	6.02267377001799	5.41266887481282
+"FAM210B"	8.4557219460027	8.51623666696564	8.13802350775751	8.4242919718128	8.64055780069603	7.25657378352872	8.61539087710109	8.62082552934963	8.49890440449911	8.60369541901953	8.21917943556486	8.35830864316205	8.20157281502063	8.36714005693482	8.26358512534591	8.58425944184228	8.37466248861163	8.22601115988249	8.73408513074786	8.53868323743902	8.26125577310336
+"FAM215A"	4.9553700392502	5.29224904356991	5.27209543930618	5.46049976254501	5.0887448401106	5.18683093070436	5.36587360139248	5.02444359535581	4.9182731583183	5.1230614579651	5.18683093070436	5.22912129134287	5.35670994028076	5.18683093070436	5.30959002946017	5.29922683773657	5.18848553235747	4.92834251319677	5.49423687815206	4.99929107597753	5.32215910880386
+"FAM216A"	7.06977433087775	8.27613753994891	8.47496726049065	8.06345820117172	8.94131145017466	7.65177898859526	6.68822834219533	7.55402414948052	8.468353105479	8.8694783706597	7.83154888359843	8.50425144773827	8.45383658519076	7.64176004974896	8.38575475670666	7.97509657847698	8.39827549049724	8.61036523920742	8.28032782804672	8.87170410189201	8.67566180084124
+"FAM216B"	3.451571882493	3.53741376891322	3.50062020964457	3.60032858857694	3.48117046255026	3.58828311028543	3.50163825968231	3.29035425826882	3.46924752939726	3.55963358131008	3.53838024391684	3.45769690124092	3.55753866207569	3.53741376891322	3.4012106454657	3.65728228443318	3.57382096491534	3.36210719287878	3.75636396936924	3.57780944370043	3.63998737899854
+"FAM217A"	3.3859546353047	3.66460139364954	3.50416813437164	3.73772859197891	3.7529872072488	3.52158552891792	3.78485611780917	3.60550755170551	3.5711231657017	3.57864811927156	3.50837889634388	3.59035006425724	3.53932555628666	3.98083586445708	3.5940220400786	3.71417511606356	3.53828061843286	3.5193495030817	3.50142571355776	3.59035006425724	3.58099966613023
+"FAM217B"	9.48390234848063	9.9941590679866	10.4000329937171	9.95318640050433	10.3112220216202	9.34388665764732	9.63343886056294	9.74251018929754	10.2657337283065	10.1669282142002	9.57636157426194	10.0378263146988	9.53077827439213	9.3665437481982	9.98728584036874	10.0063731985734	10.2190721181863	10.2127984681747	10.0530235219272	10.2467803802824	9.97777663402456
+"FAM218A"	5.65962779411246	5.83650797642022	5.65857449057061	5.56458709019212	5.660481216862	5.89595018730311	4.87598852855677	5.56458709019212	5.06453688147201	5.46184755992006	6.04670736749587	5.91134288273354	4.80809818035089	5.239393233799	5.07917884194024	6.14347854444454	5.59558120028058	6.41881022857237	5.4683770612976	5.48603892134312	5.32015594171675
+"FAM219A"	9.30353510696879	9.53917067141857	9.45912646571004	9.50657456577515	9.5010781925249	10.3296979295802	9.59779780250577	9.36719347036177	9.40798882474926	9.85189455414462	9.43274711824122	9.84984408866625	9.78808027611356	9.63871211593428	9.41802220143385	9.53081556696498	9.73646012178791	9.43478591584346	9.56706228934732	9.57993005216295	9.84657788610137
+"FAM219B"	8.17477959463163	7.89500162043545	7.77214683606508	7.73174818079442	7.96204242548265	7.1217515028951	7.56521584041337	7.80940622412506	7.66857170563151	8.11278164800454	8.16717546297421	8.26287070570643	7.69853662464172	7.58315851508604	7.59854118544847	7.86107647436354	7.98621231338143	7.90107542954262	7.97692162620416	8.35654835893256	8.17305327765031
+"FAM221A"	8.32208322149988	8.19004108694967	8.41293388456724	8.8268781198868	8.4623119419183	8.5195433053299	7.88320375439289	8.42068779952884	8.06926071607345	8.15773873418163	9.25376801292875	8.2627860335685	8.65124452374189	8.16565559440339	8.45379678833263	9.13981880167091	8.51097007993321	9.9297661659142	8.36954957857318	7.61079454583346	8.36822876258851
+"FAM222A"	8.27193783149019	8.42848420944183	7.9505383524995	8.14662612487745	7.79245317651856	8.72555181798888	8.21737946982985	7.815469070098	7.49626468014646	7.41166369093342	9.31889440118311	7.93288940266853	7.97193761341143	8.38619681256257	7.89234407690207	9.80142807213163	7.85979949363007	9.49302846954187	8.01038733798032	7.74895090495146	7.72882247861912
+"FAM222A-AS1"	3.74756295426403	3.48322544493419	3.78781519788866	3.7953542771315	3.68976846916076	4.00133058006116	4.47296684831795	4.02949772201066	3.62344007068986	4.00939027108363	4.0985198164577	3.92289770657619	3.90302193134982	3.90882538535162	3.88509171534632	3.91838519281959	4.04607259124915	3.60167211035625	3.75577561175152	3.94242743478032	3.88509171534632
+"FAM222B"	7.78459441013957	7.6754733099712	7.97676961333491	7.82386040986572	7.68982279065544	7.73063587662474	8.11571875452979	7.63893210879723	7.85932091668433	7.74791433128087	7.47805744260399	7.41910882970235	8.04266570387633	7.94044284274765	7.62467413553716	7.5573279669602	7.78606195758222	7.70040027639431	7.50621098457166	7.96912999483117	7.8016181217233
+"FAM225A"	5.34570756619754	5.38008408771501	5.53174436476427	5.31042840149972	5.40690143815674	5.94128227658018	5.54232088113304	5.34119870202307	5.17710778429615	4.82282250633878	5.58216529076942	5.07278255258738	5.46033064884179	5.85549855960524	5.45942272755243	6.05208155389548	4.93751658996813	5.68517821522558	5.24246214114539	5.27161625676996	5.2992386944742
+"FAM226B"	5.84376899239346	6.22196036109993	7.10158106664305	6.38559317989184	6.32318404216459	6.49253214273397	5.90853447574668	6.88095839299905	6.4201858370381	5.7740655667805	6.28722653668666	6.79934365700993	6.87312722185341	6.39196646312282	6.99590375190499	5.19332556102034	6.47151678563019	6.03099289612228	6.50718981706853	6.13545421436117	5.98082654987073
+"FAM227B"	3.6512573836694	3.76969911470808	3.47745495565209	3.65335145106146	3.47298025610708	3.59590630473477	3.65275067931632	3.55969993101081	3.63380446419854	3.78069429175003	3.86990182885272	3.6809753131983	3.58591977719922	3.57457834926649	3.77937997601493	3.54938437393489	3.93316276471085	3.69350009133721	3.64741858824904	3.56760660913853	3.63380446419854
+"FAM228B"	8.56595440824697	8.38103140281053	8.61636395707729	8.04872176502021	8.07671340627062	7.90541568525548	8.4607341015511	8.06627952209251	7.77558835720829	7.99573443421439	8.32161833992311	7.77409194106581	7.77761239127843	8.29155915912857	7.85593216384839	8.62321873494811	7.9796890590884	8.31722601300666	7.98871091451377	7.92960773131371	7.96235066089073
+"FAM229A"	6.22806279824829	6.08461773876511	5.99934761588542	6.349251309805	6.00988655427101	6.79377911847397	6.66908418360497	6.47446451478454	6.25346990066833	6.19308634934003	6.39276792231792	6.15338172169023	6.43657752827277	6.40137378060398	6.24203124281082	5.94210644480276	6.3484177062266	6.27225131441596	6.32947005457679	6.03457965896269	6.25283224518781
+"FAM229B"	8.71802370581316	8.32923647748747	8.21202989384345	8.16891358945628	8.3866893548282	7.62494633003974	8.05123597936145	8.40009231346684	8.28706477828012	8.45820457737331	8.58545379372861	8.28797116689998	7.59522743767387	7.98776969764732	8.14533776201231	8.70049951411083	7.99920452772138	8.4347551267049	8.45939971390121	8.48113596019954	8.1514753983822
+"FAM234A"	9.0595941484721	8.16692542192873	8.32714044889646	8.15778570026562	8.04104070675799	8.71531288016162	8.14663011802409	8.08426597061819	7.94120739101943	8.18992971435352	8.71372581280864	8.06689627837806	8.01583709777451	8.2516312096348	7.97020875770954	9.23398346548265	8.03298253279404	8.90287214647093	8.15482885438777	8.31672671237021	8.13017756212564
+"FAM234B"	8.22238843054527	9.04440992629183	9.48527389147467	9.13459999104506	9.70057355692153	9.27936415814362	8.70803315695181	8.87769985467016	9.5401463498304	9.47001460387196	8.51595399300951	9.48644420085599	9.21613769001482	8.64168762758483	9.05345851135407	8.94737564022669	9.52618513705973	9.31344649613385	9.10101585946653	9.82942880521351	9.39270965588042
+"FAM241A"	6.20460568312239	6.29079601809376	5.97398991380053	5.90090459147067	5.96449544032782	7.10828686827689	5.64663427322982	6.32654704701097	5.44369627060706	5.21717424344498	6.48726657871675	5.40913668501007	6.0055489657349	6.38588375419674	5.99790978686356	6.98707241259079	5.8325695779357	7.29788507554526	5.45220945297259	5.33128013855642	5.68002213820821
+"FAM241B"	7.57103668137451	7.74759470039753	8.56065201151225	7.79135779181902	8.44049224992246	7.77082014318531	7.53519763014216	7.82550828153575	7.90001159568487	8.12857829062153	7.43552525915708	8.14815483998095	7.48089699763325	7.45983807804373	7.76101782487331	7.77588617966538	7.84207007818758	7.87877091897326	7.81567826847086	8.46006357860089	8.07362619290326
+"FAM24A"	3.99409118277158	3.76465903944367	3.88344523871476	4.00382268286485	4.05481702447735	3.91104693323829	4.3162095480246	3.70917823460714	3.91104693323829	3.93466144247852	3.9158240827319	3.8486636022146	4.13808490085838	3.92006609016158	4.24957786261069	4.05049959983287	4.10778200028812	3.73801472513048	3.94570738068365	4.10905630394763	3.85350675890856
+"FAM24B"	5.67193313290703	5.64564853656141	6.14824504324331	5.52760150966379	5.53827731472364	5.95430129256898	5.09466974876894	5.69851329087269	5.50006823141464	5.87148542115166	5.62259646278022	6.01303633240172	5.90238859905603	5.74400616173524	5.92892160788977	6.05677874238765	5.80161760441187	6.5104518013113	5.90765512021875	5.93565744903606	5.49625986527888
+"FAM27E3"	6.98792654647372	6.82293631128123	7.5750888770214	7.24708137443869	7.11645715031485	7.98094406602135	7.72414049686022	7.37384291635007	7.0273980193641	7.17145426200459	7.24708137443869	7.12712384513803	7.6161379124358	7.4811005598662	7.31419909673376	6.81381429463036	7.13322191396768	6.93272240534921	7.40285522305767	7.24708137443869	7.1061305553423
+"FAM32A"	9.16619290941124	9.00657374816067	9.35979183980654	9.12721175960747	9.1396486175299	8.87865792298095	8.85234678816385	9.1029375270001	9.40589367422712	9.35588889377209	8.90131861066314	9.12898318975471	9.06792897251664	8.87931023987538	9.1326505784907	9.09367522170522	9.06006995222263	9.07428171666109	9.16369588360402	9.36422707022688	9.14667176755116
+"FAM3A"	8.50063303074165	8.26760356049043	8.39773257222588	8.23482057533476	8.20941931083171	8.61438604491144	8.5290821644074	8.20635191571688	7.84854049650936	8.18026416141087	8.50192064589118	8.19737355620127	8.19854724459447	8.44700873742118	8.07560516798187	8.77075583036172	8.05423376573515	8.66799837387636	8.24056559909372	8.40503050160571	8.1180246525956
+"FAM3B"	3.59035006425724	3.49850062639603	3.74835814678923	3.83187929446962	3.62771755487961	3.71975481308956	3.38283503414885	3.43043026582958	3.58313704304031	3.72769539060809	3.46462012930475	3.65187389313594	3.74504038460536	3.74235217017352	3.86098501074452	3.83566538563212	3.62771755487961	3.4671978417472	3.64104662047002	3.60011177266698	3.78119809222448
+"FAM3C"	8.67087010488805	9.89913899311939	10.0328008447333	9.81055471904819	10.3625601263734	9.14490082245682	9.21857495082692	9.74016912898618	10.082778315046	10.3884852109322	9.43252994181579	10.189302654758	9.89965387996389	9.01825043396524	10.1340648192558	9.46378181771286	10.1854906540543	9.70253355154868	9.90762258609079	10.0574843408628	10.4230818084701
+"FAM3D"	7.41138224643424	7.40688632951515	7.41628318832294	7.67793824590614	7.22827334732948	7.88966384209826	8.13688222421612	7.57177131079617	7.51940203536722	7.4689123688165	7.32179174444199	7.51799867622817	7.76186815007055	7.75655640336563	7.53111471397693	7.37140070065353	7.43147157349114	7.17046326123571	7.83566492456228	7.69022755294763	7.51799867622817
+"FAM43A"	7.87384373870014	7.43154162586142	7.52514925897404	7.84681667924665	7.60577864536545	8.3434229394594	7.83614459129066	7.93695432827121	7.93942852483839	7.86805186663654	7.40090994142384	7.17099068065896	8.60164966520268	8.45319780542603	8.23044382182859	7.26146791973127	7.86805186663654	7.72232781804278	7.62349081305279	8.27953838504533	8.07132236650971
+"FAM43B"	6.76832689924917	7.26781525265191	7.54913039302765	7.28930770879201	7.34920368242437	7.8311197421974	7.65109559154241	7.75270031618104	7.33315601687279	7.23575736651511	6.55913958996227	7.35034399523779	7.80528729845593	7.55536642738593	7.48173851588312	6.81380817710525	7.36972096992954	6.97275934293568	6.93285369815153	7.41820033239464	7.60653266345747
+"FAM47A"	4.10809799235728	3.90783500018992	3.83310248364495	4.07760957599039	3.96779852709763	4.05163066510947	3.8554701688884	3.96779852709763	4.21211819774489	3.93202301786673	3.78823365730846	3.97544257768988	3.83813169349937	4.14895083561275	4.02902103000701	4.0572085496819	3.90951953193268	3.78337298607483	3.88509171534632	3.96779852709763	4.18661201660359
+"FAM47B"	3.46183373328704	3.3199077720665	3.21418038258089	3.26918218109437	3.40002809198123	3.37226940148396	3.45182859218167	3.19986504861776	3.37477847192947	3.47854239045864	3.31090968836087	3.48257240905969	3.4453664589403	3.51688383008962	3.42598080769835	3.36560010406572	3.41508664015969	3.17682774451879	3.41348644124301	3.14356770346682	3.36560010406572
+"FAM47C"	3.88369272066496	3.91651279782511	4.06422961267019	4.05473763002037	4.12690677341029	4.21513826481143	4.07776331202643	4.06962792034789	4.20841132697409	4.20586828423098	3.89989275568063	3.94487437515833	3.87053694389621	4.18234803252526	4.23428934253201	3.9493792917746	4.10019565505575	3.8143073536031	3.98544605296826	4.2537661587434	4.00560689323722
+"FAM47E"	3.4081726216592	3.4676367291402	3.60259972552542	3.94285560338793	3.35766664585483	3.61476234871759	3.44286058269342	3.49087943341051	3.8455947773691	3.5650910595549	3.49087943341051	3.8185617640948	3.37529893542131	3.38755011847901	3.65653059714466	3.72876954546885	3.51684836806591	3.49087943341051	3.49087943341051	3.46111799610813	3.34307056706792
+"FAM50A"	9.39076257086141	8.99837937680626	9.30857030156376	9.20499227962499	9.06739390164712	9.8748867992153	9.33126786303464	8.86072552492512	8.71377573836858	8.91360499823753	9.20357133816415	8.88463091594513	9.13701082623798	9.13701082623798	9.07720383556602	9.49412394217217	8.89407102655043	9.70864051580342	9.19606615294668	9.22746034069427	8.93813838320382
+"FAM50B"	8.03195714839138	8.14080018381365	8.24702796135522	8.1543189322459	8.42868487855019	7.52743726826321	7.63585469429531	7.97089678290613	8.08272247496216	8.45472552429059	8.30357159642451	8.3343467198393	7.72980377286026	7.62688186966452	7.81282992931189	8.3228481234182	8.05254420773061	8.40692406490983	8.14435041090415	8.3621619591305	7.95090395547961
+"FAM53A"	4.4641239109085	4.65672468090608	4.4127206398931	4.3148693386628	4.46840181412414	5.09122390903668	4.96041474517454	4.14576019024197	4.22713190778212	4.54716181304249	4.83851391392687	4.13333743154961	4.35403564861049	5.05997129709322	4.41072317732947	5.10602933147455	4.31604961522061	5.47143641115349	4.48553381835113	4.27502497014956	4.35601274283148
+"FAM53B"	8.05256467562732	8.21647956694988	8.14327272549868	8.17509085792724	7.88107208381122	8.86918304241328	8.3090426082145	7.75282695836723	7.62147239897701	7.72793197590507	8.28631098118317	7.88268912699043	8.16947527196438	8.26669181316042	7.88086344131056	8.58136776333263	7.90317052765842	8.73746923296298	8.0731739704168	7.66267062741085	7.81729696562798
+"FAM53B-AS1"	5.56571886816353	4.81473997109497	4.537699768961	4.80747609807292	4.75410814516716	4.5325818016231	4.51620951484275	4.61738986277418	4.84736464999642	4.62065968884953	5.02602488536603	4.43271996077633	4.64918359810867	4.65425221764343	4.6009091491855	5.16966678834562	4.6146800102754	4.76311415421834	4.3477552690041	4.41017491100909	4.79391865579181
+"FAM66C"	4.88249487579259	5.5312872301445	5.13940241900216	4.69700528789679	5.22722384610612	4.3138654795927	4.45994615664634	5.02236474721354	5.45708863412774	5.16304009926144	5.65522750429337	5.12057429431316	4.67450974008649	4.69599066234732	4.74543228892144	5.09967501328381	4.6966390871068	5.13868431121685	5.08233132634964	5.21470088749278	4.64452732764225
+"FAM76A"	4.74052301509626	5.24306751528774	4.78108728602276	4.75087374625615	4.84008537385921	4.66829127571431	4.25836121743834	4.56578535973303	5.02911786542874	4.6727403613166	5.275412520102	4.46398999662771	4.49777800977864	4.66216339554322	4.46001535413174	4.96701719002284	4.47525760765411	5.26153054935503	4.58762288013422	4.66829127571431	4.61613294888985
+"FAM76B"	4.68949907972223	4.71721641242413	4.30621164113627	4.28373667655893	4.67580647329739	4.0318801256939	4.59067954021774	5.31318219714734	4.45438827204092	4.3322533590025	5.26365825119531	4.68661197834833	4.07509595599962	4.20634571045829	4.26165823141076	5.1854558727764	4.9415343627366	5.16102800805739	4.50643129871752	4.40911165996403	4.31266300724456
+"FAM78A"	6.87532900723803	6.57797340252066	6.50560966246873	6.78135316096028	6.2878713415026	6.79271946564881	7.01174113842621	6.05769842939383	7.04619505688239	6.50133914447151	6.47383086894043	6.58045240936183	7.28773324157204	7.09737016745929	6.88988943232529	6.18041500585614	6.6010654976686	6.3764623811399	6.66519275191989	6.7492331620295	7.09364374406448
+"FAM78B"	5.89446897541696	7.0245612065403	7.4688097063351	7.05014285910104	7.64630272644234	6.44074875306042	6.1042980428579	6.34747755007537	7.42391804528097	7.39149779897625	6.15849265482726	7.0245612065403	7.4870616712026	6.56775994802349	7.03122204366648	6.20972246816876	7.33322913249692	6.89613175694591	6.61550071492461	7.74695044405568	7.39672006774843
+"FAM81A"	7.198903780398	7.67347850354898	8.36856001154244	7.50085489339693	8.35795512537668	7.90295195991766	7.62794224767361	7.27760874936136	8.34797128332076	8.16786311774631	7.4793179389857	8.27432406507948	7.64250112577151	7.32109328484283	7.87270830927505	7.87088266497554	8.08811983860499	7.63197789807429	7.66767708598908	8.53827931615254	8.22492057900144
+"FAM81B"	4.14655500909891	3.66954478000024	3.60052328729769	3.32611269124675	3.58048122737596	3.62325061569471	3.54453644323141	3.77674647121396	3.66954478000024	3.66954478000024	5.93900793816728	3.69862087905468	3.55117206095291	3.45725999856774	3.66954478000024	3.95829877711067	3.74099943052465	3.36486271748655	3.58190368598688	3.61308974999269	3.67737406226471
+"FAM83A"	6.5551436004938	6.58423371940002	6.56102283270932	6.77944672062805	6.52439599646622	7.25937910697612	6.83044292531843	6.42178791984011	6.81286722447579	6.75086304820619	6.42063569527287	6.5901425918715	6.85983259442481	6.69477845062305	6.60424680594401	6.25115745714172	6.56933476275269	6.20563136493749	6.88821993496787	6.74376532534409	6.66599720505071
+"FAM83B"	3.45381638697342	3.38896239866265	3.54553027090861	3.41743977044848	3.60768577964975	3.6159959068924	3.52186326016042	3.41743977044848	3.41743977044848	3.24934966933917	3.3740275960819	3.44454613520546	3.27564343959403	3.48401303533419	3.40086073297376	3.38853970599387	3.39064693040541	3.35666337036695	3.58516061687785	3.37384627917367	3.41202942031572
+"FAM83C"	6.13665648135903	6.34939597235381	6.34370335475479	6.31232292955087	6.01489378585651	6.68477396567153	6.65586370147647	6.27412247764704	6.38051130463419	6.35897875518536	5.86966823979533	6.45156611697455	6.59964441061591	6.65674570840758	6.24269565536507	6.1848760834358	6.41755486876755	6.08899080879029	6.37696521690448	6.43689410044036	6.36612280456692
+"FAM83C-AS1"	4.90023887696605	5.03146502943015	4.85763200700767	5.08961543800521	4.94545988818027	5.47649869535171	5.53674856494562	4.96530284883724	5.26057546334895	5.27712674663482	4.7939943459758	5.13764312459974	5.37828316377822	5.09261267352135	5.25452711895408	4.96525461160511	5.21609894661317	4.72998723884818	5.44384254302264	4.97501000972918	5.36263822423055
+"FAM83D"	5.97057844955058	6.00704765506354	5.67907823240794	6.16417737603092	6.55213544413397	6.04266086662591	5.40737541611705	5.82287033003888	6.71426103434163	6.41994248816986	5.27368148415318	6.04567010033741	6.33252901929876	5.88793733850383	6.70641007196773	5.88001897982089	6.40501709670645	6.05341757672602	6.06258029792183	6.50899500120616	6.5085433008749
+"FAM83E"	5.09208947340469	5.12673838795209	5.33380608999143	5.39576317200021	5.19171510697854	5.76031265274223	5.71947157480592	5.17897715438078	5.36517497265621	5.23710541814001	5.19892157067967	5.27941117347017	5.31395578230655	5.43300576023898	5.30709348253498	5.11552722804497	5.15821611317002	5.18900251503333	5.14069057718029	5.31113568560492	5.08558400459271
+"FAM83F"	6.01927514546894	5.72155063152589	5.61365293098007	5.66850211740629	5.45735434878458	5.6083534913448	5.83768823965429	5.90745839605957	5.5066130789184	5.58632303053022	6.10175665113931	5.9743436879444	5.48575287290276	5.63625946833947	5.85293673950411	5.53717236468939	6.29844549771916	5.45339518047121	6.13208260969402	5.37410793198804	5.34613405272159
+"FAM83G"	7.40133808450103	7.21147613027038	7.46073262346769	7.41383354405157	7.12934604490615	7.94697676534606	8.29919957626468	7.35809611634712	7.40677478325289	7.34998044149098	7.18531016869102	7.43507627291899	7.64286566868831	7.78118041346673	7.41732797846754	7.11461256562781	7.42615911179751	7.25928452533917	7.54125573577472	7.37960055369907	7.35724423644768
+"FAM86DP"	6.73510429669277	7.09086876590252	7.07054630113704	7.18024150763238	6.95066188033318	7.62805369504649	7.81898330418838	7.10865689308927	7.25667504286031	7.29199180995312	6.91330813413987	7.27237496930807	7.34622963005347	7.69877875715356	7.22822904943271	7.00204885732644	7.14302357337771	6.93045398910941	7.32102462425409	7.33809898369322	7.2474997916407
+"FAM8A1"	9.80082226007027	9.84117841532322	9.69007653114168	10.0425797504537	9.98789199327473	9.75680146963841	9.67537761234776	9.85413582848348	10.0480518039621	9.86630192807256	9.83425880837804	9.65279675172963	9.96193892126739	9.70305536046058	10.0430356476531	9.86374517309847	9.96724387344924	10.0592239539919	10.0489492384718	9.79936862661009	9.84551543606952
+"FAM90A1"	5.03903526695048	4.75928379610345	4.89011941914898	4.99470647286151	4.82086559569501	5.40922855398532	4.69958596084254	4.74596465018779	4.87647427226326	5.10891469305368	4.9705134773635	4.74667075255486	4.96848393506951	4.95965158614126	4.78359139893938	4.57414915931437	4.8451081372188	4.71425297859585	4.91147835671372	4.76530165187806	4.75391176901744
+"FAM91A1"	8.09636553620123	7.82634686713936	7.88523538284047	7.8666788304112	7.89150561368484	7.54735317029859	7.21288430386482	7.72056881418075	7.91732029451312	7.84902344792683	7.89150561368484	7.76253077225934	7.90463797472291	7.80607337038879	8.02190437664555	8.1361946074022	7.87315210979654	8.01710757660637	7.98615547175	8.57165634984955	7.93328704880077
+"FAM95A"	4.89649983069152	5.30454211925055	5.30844664198374	5.39576317200021	5.37652123809807	5.59538330388607	5.07147582956433	5.48926787343745	5.20267743779837	5.28301217578754	5.31407454626123	5.20166918330677	5.50166923364149	5.2048711249877	5.52397886436441	5.65846114785407	5.47300179192943	5.42724868099898	5.13680856623696	5.33746603276631	5.52569558141744
+"FAM98A"	4.55632406933316	5.94147667681659	6.54537671198115	6.22711676241055	6.42925631159278	6.05293289793163	4.92329405947123	6.44627379048611	5.88058107742969	4.8601936716667	6.26865240341558	5.550124795828	5.73971809950586	5.47659693716142	6.31961658882903	5.5247601515074	5.626596130513	6.13418639637652	5.36028493308514	5.1565506833213	4.80783313656367
+"FAM98B"	8.47581958766781	8.59413953279459	8.72033858033378	8.46036556020983	8.98204702455596	8.04613113536367	7.97200667651351	8.59694162885857	8.65191230852608	8.85094726069216	8.61898634742492	8.78608106466125	8.22992561423475	8.21354541747409	8.57127197188668	8.86568092884635	8.52279849026312	9.03644704445967	8.64748043154225	8.59947881809508	8.57755407315732
+"FAM98C"	8.2379783834604	8.60212314517197	8.78149355123117	8.41489139877428	8.77192614320235	8.69092347255715	8.43840136484606	8.24840843207759	8.29219967914829	8.66425036472728	8.43190534502776	8.47951852536207	8.39509118786976	8.24301798107815	8.14478954559515	8.68033916789504	8.32060105688482	8.47996544802317	8.43464816655053	8.58294122480245	8.49640500402098
+"FAM9A"	3.31394912552841	3.34234331903233	3.31394912552841	3.37080427617218	3.601373320897	3.27026438811142	3.42868281299262	3.30413981714948	3.28139425358791	3.42407831137335	3.27420848537286	3.07544773342651	3.17498567197248	3.5469346533259	3.31394912552841	3.43561657898329	3.30889304124557	3.22655192294205	3.39466415280945	3.07238047073302	3.57832020115938
+"FAM9B"	3.49147156344806	3.62379537194521	3.5333577259367	3.57371317616543	3.56657640680993	3.52708496435165	3.68370708818863	3.5985855354401	3.5383982618498	3.49907232928224	3.34345204015714	3.45120458781939	3.543063042919	3.87576534905104	3.47089147214399	3.62893584701847	3.69765881575346	3.52970537206662	3.43285297846777	3.74985896442042	3.53368055242085
+"FAM9C"	3.73461823139818	3.81761849959262	3.49907232928224	3.77193531331223	3.72301837511287	3.62452996910018	3.90684968719012	3.55969993101081	3.72022886486665	3.82227133280008	3.62267040861279	3.71148242284464	3.64581689423503	3.7770783885116	3.80578457962786	3.62020723837265	3.77363797009205	3.63734615191803	3.96723603062125	3.90620185017123	3.86431114500018
+"FAN1"	7.31891593442019	7.76349012571413	7.52710120597466	7.85247395261973	7.83354982071859	7.23362778229578	7.9443011945907	7.55901139742044	8.0684273021924	7.93038566430467	7.66537938503927	7.55156864899066	7.41152610434345	7.64981223748858	7.84107590755076	8.10747851084479	7.56700661816651	7.84761770932046	7.79507438106111	8.47742462341555	7.76349012571413
+"FANCA"	5.22256371685682	5.593704312095	6.04742890307589	6.05580578327786	5.93272771993669	5.90906800040966	5.48774605931317	5.28699890537351	5.60453898243414	5.49488036120881	5.22256371685682	5.70881492160149	5.55567056488563	5.66128153398499	5.69534018183496	5.42403653439266	5.63539446687971	5.2623216843844	5.57499031453239	5.68847635709796	5.53812873717063
+"FANCB"	4.30923821664179	3.98496601949408	4.30433872731463	4.2493817728559	4.06770956154814	4.78807154900542	4.65083584226387	4.13560314320163	3.99107308566651	4.10406759825081	4.50635963515051	4.2493817728559	4.20954984641821	4.31476300724084	4.31098620958412	4.83851391392687	3.99598133819156	4.59328704981345	4.1406501684265	3.94686974025956	3.720250527897
+"FANCD2"	3.49875679658906	3.66235697928938	3.57227682817948	3.61289814027219	3.58387896601217	3.77933833708057	3.57789227923734	3.72601720066387	3.66285338592504	3.46867981941219	3.52368128932753	3.48485274068312	3.61578558226533	3.7087080561728	3.69560282977792	3.90939949298174	3.79845584805498	3.22931397239729	3.34215571292522	3.58387896601217	3.41930074156923
+"FANCD2OS"	6.09829307079731	6.49116336962523	6.49085135400992	6.52027623489678	6.366922526025	6.74795538253272	6.59442819454103	6.41830149780148	6.35475387360354	6.28022849751453	6.22191562450045	6.42955973830883	6.54092742388054	6.42955973830883	6.67330242468132	6.46053753095452	6.4415299496584	6.19935196801996	6.3785378275132	6.43010878665747	6.42955973830883
+"FANCE"	6.17957490459026	6.11253977993875	6.11253977993875	6.080575677312	6.01355093693643	6.45912301483938	6.31562139090367	5.85017835698247	5.82535813123495	6.11253977993875	6.51770032487871	6.11253977993875	6.38564901513386	6.28490602541352	6.08465147724795	5.85413255316234	6.08465147724795	6.21329659479243	6.20068254427934	6.13609079697629	5.93939002789136
+"FANCF"	6.38621618640359	6.243880829951	5.93863457209532	6.22711676241055	6.10563211718263	5.67321241372086	6.31908869218921	6.0955047887822	5.87512358378739	6.36100880584957	6.34335017104122	6.25298824204427	6.04347079761044	5.76683474239612	5.76839399960211	6.79031979584408	6.1815210800412	6.70623061779663	6.26708119593197	6.52817740647915	6.23399112304993
+"FANCG"	7.10304787299644	7.30829609119226	7.72816050382993	7.23595433444309	7.21937361876284	7.15945256512089	7.03209147586593	7.07619694380584	7.24770133460984	6.82525193662266	7.3097597331676	7.11509512654405	7.08266124639764	7.38663378597492	7.18049828047685	7.28862893528136	7.03950931126112	7.17514080170155	7.13848055649082	7.01927976514627	7.00484080825371
+"FANCI"	5.87785610202704	5.55589516785499	5.74105883990305	5.8642712642793	6.08439921175116	6.37222268638274	6.0641040496515	6.07647354445717	6.13219651047258	6.10016484201785	5.56753273770491	5.975754470837	6.10986568781081	6.30307830797141	5.87930287048984	6.13922436859426	5.96123648512884	5.67977021989205	5.97489269684781	5.70484442814816	5.84324430367431
+"FANCM"	4.31660578112991	4.56728406371099	4.46342034899189	4.33161572447633	4.80935077937794	4.41570620992115	3.99076501122784	4.14826471077164	4.06670485960639	4.45503733336714	4.4051385998315	4.18174255764253	4.2441292889178	4.24495915456452	4.69597904116617	4.57105365424546	4.42065259297038	4.94929268926977	4.40187645130486	4.4520680954476	4.40837021763269
+"FANK1"	5.57561713820941	5.35143845758598	5.62949129445514	5.30014536429699	5.45897158643725	5.02128754425348	5.52430432310988	5.68252365059641	5.49934988219176	5.45897158643725	5.34230403766382	5.43132371823809	5.6691818168718	5.49824592466158	5.71063228149587	5.30537906430826	5.4872131878477	5.43307302329036	5.38685669639265	5.22180900405382	5.15917417599256
+"FAP"	6.60353870866261	5.95070511535684	5.81705730993284	6.04202860047483	6.11291532764186	5.81801678452314	5.58195003496934	5.82903740452757	5.93054746585274	6.06668228698407	6.06830338473732	5.97017076971248	5.78031930715344	6.00460622173154	6.09586317676783	5.95070511535684	5.97941203910136	5.76215880184414	6.11397701028213	5.87158562155245	6.03314313003854
+"FAR1"	5.21974609484931	6.14400035191957	4.49497619638741	5.31531421581846	5.82546680460519	4.85010793791224	4.62274434587846	5.35596278108331	5.17675860574464	5.41227793534717	6.46888788268054	5.30362396912152	5.06355489314509	4.99169548668545	4.9722787269196	6.67680584349984	5.36724102242157	6.74633817940698	5.55204635222141	5.14490371406404	6.01761567813847
+"FAR1P1"	4.26272403386226	4.67175588945149	4.15208892540975	4.39160669427176	4.28361528535951	3.88480588531064	4.2765931091139	4.39482101794597	4.22735825225748	4.32538942895647	4.42289108671046	4.35433882931911	4.17639025454367	4.14498707392909	4.35301432294966	4.71657189530541	4.26272403386226	4.55364895728825	4.49197777364659	4.22999300953229	4.48732759234182
+"FAR2"	5.68761918824236	6.14471368174433	6.66228144111115	5.84677416422195	7.24749179108365	6.11906591264528	5.55922313496534	6.00856011988319	6.60201960010009	7.11569864765645	5.58154696846042	7.1959969393947	6.44067483123101	6.09470636228604	6.68801621532653	6.24140410606331	6.6857226127635	6.70667692872043	6.34974879362475	7.48046771443623	7.41343896923403
+"FARP1"	9.76976099115686	8.79948730507408	9.83987718405589	9.5799559556654	9.20715421863828	8.41880936144909	9.32120199921339	9.5553003693509	8.89407981074119	8.14361433811368	8.83682109646494	9.20336369964918	8.1768532573408	8.94085588345244	8.84869075961783	8.43603414313894	8.9778212225858	8.36212014568301	9.02011173893716	9.0935939814581	8.70769823604373
+"FARP2"	7.29380156464076	7.50897505495459	6.21437251740986	7.2797226383436	6.44139148871991	5.99032536795887	7.13840564542005	6.92142001828295	6.87688433805547	7.06003747548973	7.57999054424517	6.91690478969195	6.95315903904111	7.00663777395651	6.79060808038333	7.86186520404419	7.10655962888406	6.26432703624378	7.13375656878741	7.39032393475074	7.07778735816202
+"FARS2"	7.11758281859603	6.6702619279748	6.74731606813165	6.32974927073708	6.86932295215918	5.89241330639761	5.76949056991783	6.70178076290639	6.71423070779343	6.95749156406909	6.6568382958961	7.24353254177955	6.04080798621902	5.76266603339022	6.28026497474701	7.04172419462648	6.56532979902828	6.90237709266814	6.75817793054269	7.22438047869826	6.72797368456943
+"FARS2-AS1"	3.1152219117293	3.09701601070896	3.31390622118165	3.35674684098921	3.21045496376362	3.47298025610708	3.77076600149266	3.28486782640334	3.46198298717909	3.26999318611957	3.2452162975586	3.21732305484451	3.31455339464876	3.19613740539147	3.37692333670018	3.06560903084786	3.28881978606701	3.1697643451216	3.23312695545978	3.41777730227808	3.10312677614134
+"FARSA"	8.23990662817565	8.32894520668184	8.57440530965376	7.9576756871143	8.9601816964304	8.30240550743155	8.22011996224001	8.10772498931606	8.2324704427111	9.08440756601795	8.28631098118317	8.7279592289641	8.037026224612	7.76867029768759	7.99573443421439	8.66445300830472	8.21532947342425	8.50951091563609	8.12341453604104	9.12593151052586	9.02773267526364
+"FARSB"	4.72083029964895	5.27563331057994	4.11978946285732	4.2145941176451	3.96072765840143	3.87337879278994	4.21293959595464	3.96135213781183	4.74793262088002	5.22569912467287	4.81185481140427	4.37442912500094	4.09206751221887	4.7347546973722	4.71064076018123	5.12870855920428	4.23235734582078	3.77630731224783	4.39779828740028	5.30918070843266	5.02937749850292
+"FAS"	5.84702629212342	6.97283329256314	5.6754672403927	5.7950789245428	5.80497284691094	4.40026484318794	5.38072558930362	7.09171872289805	5.42283841860956	6.05941110913468	5.8029989910976	5.34573682542841	5.10454772063115	5.29116155959451	5.23045797676844	5.50436406674	5.67062870397463	5.5992431151247	5.8959683427113	5.63047101447043	5.13081323593648
+"FASLG"	4.24544102357094	4.08820929758102	4.27542414866506	4.45298101747298	4.36703495584511	5.03167084985881	4.93047027318613	4.33353729910966	4.58314384575934	4.5452134501927	4.10321699321869	4.45685778578822	4.56129506847226	4.87583997393834	4.44560602687705	4.21128232063239	4.41016449365541	3.86256666754852	4.41016449365541	4.40449704026839	4.44513905779915
+"FASN"	9.42146325120179	10.2883996863265	10.2798975032632	9.9536195965747	10.4706615000195	10.2514592166347	9.79944572401229	9.64575426417824	9.58332623006635	10.471459139522	10.2730997179574	10.4665595442073	10.1284868466453	9.66371443515347	9.08055119109139	10.196668187108	10.2580798863338	10.4941012404615	9.41462359428112	10.166528256199	10.4393376143566
+"FASTK"	9.25634824598312	8.99455049162433	9.20363279667399	8.89789438194064	8.70013060949921	9.34948425454709	9.13056872912301	8.88068780629682	8.91916532059443	8.76668146034328	8.87460696229556	8.64671913432616	9.19192973579869	9.36412213876861	9.05598357484272	8.68478351430054	8.73118332063252	8.72856538697175	8.81364812806634	8.79132793493632	8.85372397206182
+"FASTKD1"	8.53604020359624	8.55040387684647	9.07640794313641	8.6640088043886	8.46222105698311	8.69671064177151	8.43056136353217	8.50927519327239	9.1188022177684	8.28400305450377	8.23205047070794	8.34556652246028	8.89149558790597	8.66306087187903	9.13443947507734	8.50121937680959	8.58838818667105	8.68497056019042	8.83982291977538	8.50702258531484	8.49880151404824
+"FASTKD2"	5.73971809950586	6.47556273923027	5.93507457961421	5.43471708589443	6.32286118137255	5.01567135822624	4.95485432035843	5.76526173324735	5.91888717732343	6.35413613650377	6.443834933189	6.73069538002321	5.01995165591187	5.43908333986824	5.26157432632236	6.61021436056014	6.57704367843569	6.54067858950695	5.87307931503725	6.43259698088066	6.58662590362133
+"FASTKD3"	7.01074968916055	7.37691233322672	7.86029057300912	7.05771053330765	7.57829255163452	7.18611586451469	6.24443397539332	6.90275442259171	6.98868305714236	7.57170874883501	7.73274809477855	7.18611586451469	6.56209683560111	6.61620117866378	6.9650471175414	7.33915898073294	6.9376109452478	8.17639600988373	7.00799981767723	7.29090417056093	7.37483542153592
+"FASTKD5"	7.59612590836622	7.39090467577534	7.28031045628355	7.62968980738232	7.63425043570484	7.24300548667257	7.54786342297129	7.2529485128021	7.81397784622718	7.70667446272755	7.31789476713189	7.36194574810686	7.57367364559902	7.23735648111142	7.87178172838083	7.54786342297129	7.64094860745702	7.66221587060064	7.37592501732607	7.68494519975683	7.6976635740157
+"FAT1"	9.16632351511141	8.77125823254326	8.79075976177687	8.72080683418722	8.22721275268058	7.97309267870245	9.48357037282775	9.40926643920896	9.00055113177558	8.19559395874277	9.16489682848568	8.24546859911012	8.66435034150206	8.4842625144852	8.85885361977343	8.64716491279737	8.52862535718422	8.36169120479798	8.31332549014217	8.56030225265313	7.94041881336152
+"FAT2"	4.49659247484076	4.23735527616484	4.35614311406445	4.62060732472779	4.50494517564907	4.72828246805483	5.5366249154975	4.42619687213604	4.66893565936794	4.537699768961	4.66985241185937	4.80419531992814	4.93432665497988	5.33599077389225	4.63253551790741	4.32277912204526	4.54878566134347	4.32382105928493	4.71167572031349	4.5825381669879	4.51262352487257
+"FAT3"	6.90192567003929	7.32988667543468	7.69012600330787	7.6547615940157	7.65727083109253	7.05248131552779	6.91969315137932	7.70842778745615	7.64630272644234	7.5528342633523	6.64633657961667	8.05130647543024	7.59476253548436	6.99072486563964	7.69826655600435	6.48946064864004	7.96468985357847	6.85914076145858	7.23708200881683	7.69283142535999	7.51516920356115
+"FAT4"	5.88393588841807	5.79504729791501	5.65853354654715	5.52789591222224	5.61166503344945	5.72303727889227	5.42941686494489	5.4505090943916	5.41415992662942	5.61166503344945	5.9841263243859	5.14045588297355	5.12534927241599	5.54672956151668	5.43770457894656	6.94063405256809	5.15813264934293	6.38787761928782	5.45588322239895	6.1586249146529	5.43604477956549
+"FATE1"	5.86491169633021	5.93453624054637	6.11258335431478	6.12156113725645	5.88604680561822	6.62942537889141	6.20233382439052	6.11388735115204	6.32136117132208	6.13364249035469	6.06308963140147	5.98987853148835	6.38739073894584	6.43746816865711	6.29694833227075	6.10271985819724	6.03503704302901	5.89302190745265	6.13247626543823	5.94624911381685	6.14511335452032
+"FAXC"	5.11267079674937	6.64602824293984	7.38673495179684	6.88541597413821	7.46834836119057	6.26635458779508	5.24571025403481	6.21766457739849	7.35137360386374	6.86008520041049	5.85306039165462	7.08608198373154	6.97013467669776	5.98720201576534	7.08758303108434	6.38874179477927	6.8830577104529	6.80436548124982	7.06820423010683	7.02771038350416	7.18443423611314
+"FAXDC2"	9.65675109922934	9.47426141006928	9.05687152698568	8.79721814270755	8.9389449234574	9.03096874962706	9.27075560806706	8.97117143913083	8.53307983927415	8.57728990033405	9.98016413963979	8.48262879754686	8.15239866149869	8.85523967304406	8.31485622834692	10.4725452679469	8.73160068092629	10.263030148462	8.97060286040137	8.6047974865832	8.27283959171985
+"FBF1"	6.45398605282826	6.75862010871745	6.62326792386217	6.75369649905545	6.62816521412338	6.59281352850288	6.75369649905545	6.80687675742483	6.73638612825569	6.85478006431676	6.67841843179284	6.73643049301839	6.86227712738576	7.03435489673396	6.83519382001246	6.80847403985715	6.80694209871492	6.70294860155135	6.82874305789312	6.8833051566845	7.05690015363454
+"FBH1"	8.31489249271754	7.76236117647534	8.0279323955012	7.89341088128319	7.89341088128319	8.53757268746525	8.19194904905529	7.95207607419906	7.77672061681452	7.80482482490816	7.77913357660509	7.72841191680096	7.88355345441636	8.23467501345491	7.90176060452312	7.70203998120612	7.76227474841122	7.90819728527425	7.80247895888647	8.00432172488057	7.74264216441432
+"FBLIM1"	6.13040878562897	5.43613344460784	5.3372969675576	5.53554004605977	5.32500760447136	5.39256889886875	5.34246746133233	5.80311800499159	5.61505955777213	5.75255789492612	5.58459747930501	5.76631167978568	5.6819221394948	5.21457116433435	5.58459747930501	5.58459747930501	5.5896650144904	5.26387991670045	5.56528520749396	6.14505941677971	6.15365215991761
+"FBLL1"	7.36262369709599	8.1480196891195	8.82697394980192	8.40029566379794	8.6315506081819	8.17013225485908	7.71420123845582	8.03499591984901	8.46023714133671	9.23128715866894	7.9127638947428	9.08569926234228	8.59763491883513	7.85157862921282	8.40116380882374	7.95886714568396	8.62508849498485	8.1744071211068	8.40029566379794	9.09037454166573	8.97383849695846
+"FBLN1"	7.699667868194	6.94943729029062	5.95809105463145	6.60065941624605	6.223058118239	5.9088729980415	7.48562287012045	6.64673020317313	6.19797800103642	6.81867189614139	6.38598107230156	6.11824441188687	6.01419279321508	6.5793184786918	5.19297594373071	6.09192853481744	6.03839915762157	6.37979490539674	6.37979490539674	7.42789737902456	6.37979490539674
+"FBLN2"	6.59676725268008	6.10508727568983	6.27856444065272	6.09719826066539	6.04512946824067	6.68413524014112	6.54622463628495	6.19483698290952	6.59085444004807	6.38005873390796	6.26541715129786	6.53071317883832	6.42417006002449	6.64496590774324	6.12740168236684	6.05647129372247	6.31429396779173	5.94254950565784	6.46216784894504	6.48304056730598	6.27838084541521
+"FBLN5"	7.96304416711729	7.53267768828701	7.25997254948468	6.90547829051852	7.38391340859755	7.80586006433634	6.65114236293456	7.79744062716815	7.43705255840429	8.86467486158764	6.98049647238251	7.69257026084319	7.38080257883083	7.23866413452381	6.98295400594359	7.01079754217012	7.26926851086357	7.0638153734382	7.70031500572224	8.97214583665302	7.18093087934687
+"FBLN7"	5.8668976310647	6.42009724069719	6.56469898612965	6.24076507184714	7.15945256512089	6.10197112739906	5.84504979181056	5.89069698686413	6.51842173865867	6.86788264290123	6.24229129965278	7.1508881846567	6.40352293860223	5.69986966514798	6.0492278219785	6.26482379002216	6.68791948317856	6.30681338737152	6.55513993606095	7.1001456177046	6.75596856809744
+"FBN1"	7.57009146185569	7.41325554393196	7.93358625127847	6.96416102761314	7.340752335675	7.97127626779895	6.98938772674105	7.23011738488562	6.80005458067239	7.50034082074301	7.51921621587545	7.26752929192064	6.96524416839604	7.0532812365462	7.2330227743017	7.83622719065555	7.37509258764062	7.69617005286275	7.1340372069711	7.8364170994374	7.01854855856858
+"FBN1-DT"	3.62448308674432	3.45446545662413	3.6351058455393	3.41682486509613	3.55969993101081	3.74811636459788	3.70916780291634	3.39739408449451	3.55969993101081	3.67045695498026	3.38279394465364	3.70967849161021	3.29399216977492	3.82007889937428	3.20400899330195	3.45697712944801	3.56933570229575	3.55969993101081	3.43615303342996	3.516106439736	3.49752612473932
+"FBN2"	3.25309811826045	3.19083666701576	3.48344090806075	3.25309811826045	3.26619181958317	3.25309811826045	3.74689698694265	3.14722595890085	3.17885523175745	3.25309811826045	3.25309811826045	3.44738848127658	3.25309811826045	3.2371083959586	3.10227392514865	3.33670144983492	3.19578031963398	3.13810137489585	3.32336395313094	3.21794244057313	3.35111871389182
+"FBN3"	5.29023830867792	5.42103907736179	5.49174520658211	5.48443078817688	5.22666339066181	5.83022237110602	6.03197464627965	5.40807672020137	5.50076182085259	5.31480261728711	5.11625448349469	5.48443078817688	5.50076182085259	5.73458833531939	5.42683236134584	5.40390967684009	5.55432871175261	5.18544709344162	5.72873767200136	5.49037794518013	5.48567180253361
+"FBP1"	5.95374153908373	5.79809297708916	5.63828899016293	5.67756006177547	5.79942722199053	6.60832950256549	6.25324336969353	5.98737603366594	5.84272409591879	5.94012709463831	5.94921714490942	5.94012709463831	5.87102469619517	6.4036749536807	5.92865752662265	5.93092289619637	5.6508307113084	5.55996179239498	6.09286096801364	6.41661469176036	6.09789750832629
+"FBP2"	5.37372114797396	5.68846144785363	5.53294215327753	5.60273932778196	5.57201879502252	5.70402163932165	5.9090220295174	5.50528692233859	5.43781301531751	5.83488901881393	5.5941733389914	5.65990306737734	5.75783115906953	5.88146970622392	5.48824063488365	5.75163135372898	5.94696697663086	5.28836639556144	5.6693455433707	5.48994756479259	5.88819010683264
+"FBRS"	7.07890597563914	6.87575116762284	7.123403029658	7.15842945083944	7.09739952909189	7.51349392058272	7.41991141303164	6.80793595613865	6.69788000210891	7.17809079044994	7.33693301742795	7.1409918128199	7.24114911463959	7.25315841942804	6.80861426300578	7.37710108667008	6.88860669841497	7.41022710829232	7.0702559201262	6.9864621334753	7.12485136913214
+"FBRSL1"	7.08663480169403	6.97679558928625	7.09095589560339	7.53819187023548	6.74608192464005	7.65434911575222	7.61860520048755	7.13908280040701	7.06738843371509	6.78206430457926	6.74381677815695	6.9682792335128	7.4269198537053	7.26564404169039	7.19762179657842	6.90702951284535	6.87747509961809	6.93811125598975	7.15870941918329	6.78546601278246	6.84125255302474
+"FBXL12"	8.07860275340578	8.17342731277724	8.08686300644166	7.78117132645602	7.88057341479745	7.79701152014083	7.44684954394245	7.84304283597799	7.6612940146333	7.65088260182116	7.98262077711461	7.65969771736613	7.69533332409296	7.85311782017126	7.68620983937304	8.07700703665292	7.77343741285015	8.15071538551576	7.67873493153538	7.74331713435427	7.65209966791898
+"FBXL13"	4.0880687685479	3.79398030925736	3.96479490872893	3.8742879080381	4.11729412276009	3.90980382944873	3.64412061090917	4.11147018087037	3.94956196637362	4.04496306971949	4.20023317064621	3.92100895169969	3.77194401230202	4.18679617522588	3.87370900867252	4.09992955228915	3.69790187461057	3.91977967638055	3.821838118723	4.00085904726383	3.71854972969388
+"FBXL14"	5.27078475882974	5.87127189830178	6.29079601809376	5.33109790280485	6.36864920886599	5.77004242420223	5.79083238992432	6.20267743032277	5.69514125542049	5.70881492160149	5.42122130659856	6.252424968326	5.57177719748	5.77493650852476	5.64508586291976	5.77866864324965	6.09627043492828	6.00670622707959	5.74494458169346	6.06759082926793	5.82354614285498
+"FBXL15"	7.99093947524807	7.93410313909134	8.67678668975778	7.96603351072578	8.37627011984534	8.06750510597358	8.15582986149149	7.99440836965787	8.48563765468889	8.50725257358371	7.82325169801729	8.15582986149149	8.22834690470432	7.83194208355336	8.38890167738732	7.63840835296747	8.111291806412	8.21271464343154	8.2315283802942	8.68404190370871	8.30099387459364
+"FBXL16"	7.38185811544704	8.34111029796322	8.26954386559096	8.46521602952947	8.32982514323872	6.69570572915665	7.64622746619352	8.0721603414764	8.45071446878916	8.87672330034227	7.73493064370878	9.29274240908054	7.84159399679331	7.39139070588466	7.46943620273866	7.90105784637525	8.75364322864039	7.83336722343954	8.7446545656062	9.02040171942815	9.02538742655328
+"FBXL17"	4.78435553527798	4.82328066502042	4.85529956784842	5.1191055696877	6.29959961222277	5.17812717956871	5.62241579216022	4.89915272753014	5.22633943980706	5.00817853194618	4.75028614623197	5.04622872590692	4.87978412601758	5.22322530225946	4.70029519024881	4.90122496205643	5.85087528654442	5.6001025534366	4.61955713510485	5.26493635676166	5.3689213327963
+"FBXL18"	7.87443470705107	7.9443516773094	8.1886291351851	8.70256920888107	8.09505246414229	7.78403665425027	8.81709999372356	7.96169179617032	8.5627247375534	8.44172479905965	7.8340560627279	8.09594427152723	8.91737036361189	8.46277209961699	8.22241409741869	7.73676425706246	8.25737135067884	7.71826846689979	8.18475226284687	8.29525368197055	8.17500346615226
+"FBXL19-AS1"	5.42603374836747	5.30636622360925	5.23466551811796	5.32692006831047	5.13093170932011	5.75571196330681	5.45825317180728	5.34052578054356	5.20315389011226	5.28656414886703	5.34174865786296	5.44548785188202	5.45710325751541	5.48546883664693	5.17003626627605	5.35038941820656	5.46514564268364	4.91454010360009	5.4317609710305	5.35380200898553	5.4204703079185
+"FBXL2"	8.51234136486508	9.38560829641267	9.63214082137347	9.33647674406929	9.77231670259283	8.93096303840464	8.705412933517	9.34325218657127	9.41679158096013	9.54440917403681	8.97697959629752	9.515604804944	9.25636688737518	9.06755324182802	9.12179601344926	8.87520242845988	9.63887790766592	9.06892263551367	9.48263046837386	9.67441539834359	9.46666747853324
+"FBXL20"	6.46616087364735	7.52024579028993	6.05478997956389	7.59129432234784	6.11618939773953	5.55286208514777	7.1409765861127	7.42277092118877	8.13038279239071	8.10637529429024	7.54355652284888	7.40711035757476	8.15680827740136	7.50727332533614	8.15457166864415	6.9130718478074	7.88184535955094	5.37784507024541	7.41625615609478	7.56803008948282	7.14352227366493
+"FBXL21P"	4.08984174425773	4.27410832425307	4.46609403713743	4.04822028490247	4.36977367435414	4.47662752731632	4.36575925520203	4.30291884282523	4.3063316839832	4.25921069920454	4.1927320948847	4.17280759353615	4.39049789178956	4.27094048477743	4.58660843619225	4.39555285071139	4.30291884282523	4.17185284598082	4.06516853600841	4.4349235647813	4.40564348657101
+"FBXL22"	3.47115147475991	3.58292343779526	3.78444519308628	3.47115147475991	3.47115147475991	3.41222410027302	3.62368458324343	3.4253370408555	3.43474427875779	3.68675731954555	3.49163047310304	3.42774676026629	3.47115147475991	3.80882433833689	3.31056192333524	3.33623220578182	3.5993461596638	3.46191436046137	3.47115147475991	3.53737356028408	3.38768346352017
+"FBXL3"	6.58221678169406	6.55603915227111	6.49755522153669	6.63371297352642	6.34369520603855	6.74399133960643	6.98776038824032	6.68534674582053	6.88598761394843	6.68257979024901	6.14796780806433	6.33571552327933	6.68693147528334	6.62299050536754	6.71522538004502	6.39064711014691	6.55839321513293	7.24921205228843	6.58003672720706	6.51455563360732	6.25926344297499
+"FBXL4"	6.41675258161934	5.85498154554403	5.83489135196075	6.00847361623483	6.2209041044934	5.61149142825597	5.58129269563262	6.19279248239801	6.12874368945753	5.94149005419639	6.16591741724873	6.00437419106672	5.81542539348244	5.55392046421192	5.80322556739706	6.66279162848404	5.89074995411191	6.6740944466157	6.05057670840478	6.00437419106672	6.03952536530346
+"FBXL5"	9.41654131241138	9.52606170498558	9.20076677794705	9.21231346242276	9.309094074354	8.75205569185084	8.84084948071724	9.40136225389725	9.01859396321701	9.32943649600527	9.8772841933264	9.27734649241165	9.2745676252332	9.04050219114025	9.33712561130799	9.67847284783199	9.20774391657085	10.0063768315846	9.38823601189101	9.09196312762597	9.27937477273873
+"FBXL7"	8.57061297450318	8.28522393647228	7.97676961333491	8.07684496290291	8.02820299232406	8.38484137138256	8.91048261644736	8.61864935209777	8.05592925439414	7.69120460121473	8.57531967628291	7.88908628431576	8.06219649458182	8.35933475920915	8.09931811408624	8.76170690346787	7.87019024844007	8.61627560138073	8.11278164800454	7.81820235835218	7.49304662138133
+"FBXL9P"	5.9362226403816	6.05158602310001	6.17051976475178	6.10786091542487	5.84981914531602	6.22574405951399	6.36262434395964	5.8290898160266	6.04608995919301	6.15546789701393	6.17789256566555	5.97011467708681	6.00670622707959	6.38801813547705	6.21424783294032	6.2297907085554	6.03750161438058	5.94355114686908	5.9219375033236	6.29080017783903	6.23710516043571
+"FBXO10"	7.16131347248937	7.34464544619591	7.50805131469361	7.37534049808807	7.20968104730784	7.19236291003954	7.27485110041379	7.04702155346524	7.45728465792699	7.17379660339886	7.03945930668781	7.11441776888135	7.44039517259296	7.27066266065274	7.28193154751261	6.93090785619502	7.0865659226953	7.15271801618812	7.11733942263849	7.31289957775242	7.23378159556318
+"FBXO11"	8.49247970820387	8.43109353447896	8.50091188618707	8.35581975440306	8.0843825567	8.56560161744573	8.03255078048613	8.11526130346387	8.30559655182697	7.77453478870558	8.35076117412105	7.65116089238885	8.55640188897716	8.20722606590815	8.5917115610972	7.96609434682528	8.04238779344546	8.57745192760819	8.29740866962674	7.67762465234802	8.12882374592004
+"FBXO15"	6.66877808930279	6.60784632619836	7.11157141949308	6.66576122473134	6.94308420850192	6.40816673629486	6.19875537285518	6.43906693768585	6.18891801887496	6.6773777727516	7.22594946130904	6.68104998642711	6.65798935419519	6.30397285924332	6.29824440718659	7.19599077878935	6.13536260557335	6.94576553286772	6.37185718661986	6.47239380676058	6.79869336938765
+"FBXO16"	5.54337652360298	6.72803683031522	7.35778851976793	6.43642125403984	7.12947395520017	5.92525359736889	5.66001227967867	5.98262019793129	6.50515539518302	6.41885627022191	5.99068772357219	6.77589827724876	6.28291912933538	6.07039354339939	6.26436983490266	6.03079549714269	6.5940694565279	6.27460135136957	6.18825295853784	7.46493599564205	6.68543999753426
+"FBXO2"	10.3858706337109	9.79029726557031	9.89669841781166	10.1622196341854	9.95664674823951	10.3396180397663	9.6539306104124	9.92610383116993	10.4670459698621	10.5910133272395	10.2623351309273	10.0428330846117	10.6892869135352	10.35831001116	10.4437297295313	9.70760454511451	9.87662228590956	9.75076145324691	10.2205761164134	10.0679546976821	10.0480869226944
+"FBXO21"	9.91522906406844	10.123328734999	10.087521458595	10.0950716160891	10.6062189818437	9.94922337317341	9.72817387970778	10.2834531948299	10.3713028054798	10.5114341925308	9.99951789801678	10.4140888595256	10.0355620452414	9.74550382991653	10.0747537009698	9.85720342357221	10.469536711308	10.33403810684	10.1120464656311	10.0886044754188	10.1900085569055
+"FBXO22"	3.86494287167731	4.06170302155913	4.89724561868517	4.36632726442253	4.7371741758646	4.47832557506871	3.7080822881191	4.06196433519016	4.14823903407872	4.26000932279221	4.35589302114349	4.01490590815261	4.42125054751398	4.19380575536491	4.69630320816981	3.95539473333249	4.30893538772334	4.2575394466327	3.79036467151859	3.91977967638055	4.16372748552347
+"FBXO24"	4.8196280096826	4.66636290671931	4.94128349751246	4.81729758902951	4.73866868690553	5.33666353725478	5.32816053075765	4.77732147077596	4.86361138153057	4.87508150822018	4.7939943459758	4.7805571353162	4.89136807471927	5.18307383313826	4.74860006521986	4.67120935378225	4.73086626809024	4.7939943459758	4.86779259923625	4.81729758902951	4.85271378768823
+"FBXO25"	7.08124779325961	7.40944284171757	7.75301481831057	7.45959041396962	7.63614733889111	7.68307536122507	7.23448969081618	7.35843353214543	7.3470999399308	7.49304662138133	7.40944284171757	7.51048412267459	7.52701798680037	7.0989213346788	7.22418699740466	7.16143160622215	7.3651261113759	7.50247791847913	7.35130880604695	7.31062696540594	7.32059794721583
+"FBXO27"	6.8677869616769	7.02932740769242	6.98207528120553	7.15663946523069	6.9997563874575	7.21772018338272	7.10634694598834	7.06756257497567	7.15828178345304	7.30214862510957	6.89259653116657	7.36712064022472	7.32673824014134	7.25786237916923	7.02434312069528	6.88818587673853	7.10160227823993	6.63774856055973	7.20609273134182	7.17794672852225	7.23148901603089
+"FBXO28"	4.53735237195615	4.54044348632141	4.12607694667702	4.51754530194018	5.24924820119463	4.08845536662304	4.41482041496243	4.46866772596223	4.55930589382043	4.8615233956358	4.49427781246386	4.78614834306696	4.34697749112299	4.24808205542265	4.18763528809446	4.70442261969171	4.59619104260017	4.75486166899918	4.63730419133647	4.97790585893071	5.14949147725612
+"FBXO3"	6.64188210616937	7.20183882017847	7.08820092833068	6.21118359540793	7.2109785519462	6.03329204847746	5.51403668859576	6.52186198109716	6.26102442384736	6.75344581725176	7.0257051300663	7.13498375661594	5.77262474231015	5.83110350118774	5.7123690971773	7.60298109161414	7.04387777930039	7.5086589872041	6.7238074770082	6.89809295076863	6.68267443081639
+"FBXO30"	8.77987532754184	7.90479164627569	7.83185666503274	8.04786235778685	7.619164570371	7.40296268250291	8.49753854552128	8.51609930110447	8.06728216906794	7.52982854444084	8.1460091980432	7.44180928469449	7.95559709860597	7.63904888090743	8.38066813395803	7.64724076278703	7.83882288778345	8.03686134771735	8.34350921429241	7.59012660749952	7.65644419042155
+"FBXO31"	5.70627946192957	5.87031279115495	5.68928296943312	6.21698384206764	5.76760285769056	6.04981717946903	6.78928350093624	6.04068067466665	6.71824969846691	5.83278475882028	5.33720644884228	6.10081586913352	6.36348608254112	6.67048998446635	6.7180955345479	5.51593425999916	5.98936132674754	5.58975167674439	6.3309946012092	6.08729179409893	5.82044835985698
+"FBXO32"	5.37431013223189	4.69582962380696	5.39552366092555	5.36546984605749	5.33681102054299	6.64962896372638	4.9288283931948	5.21954982713723	5.25564163637509	4.6366833574211	5.32807787083081	4.85079441124463	5.74018492323187	5.43832569818422	5.76810869669336	4.97397755609248	4.879755604757	5.49813808571369	5.23103904682863	4.77557481083132	4.56941423686392
+"FBXO33"	8.00092390600546	7.96731499426824	8.4809591175334	8.07169671961227	8.65260306113449	8.08452355564677	7.55223244298782	8.29421121490936	8.95629019451642	8.77178591208786	7.47480860498908	8.29421121490936	8.10218914104305	7.67658981602934	8.56235565459067	8.081674515277	8.73218632461105	8.34178426731461	8.14055675788306	8.63093939290496	8.62010483324199
+"FBXO34"	5.36609643152042	5.94620965081464	6.82140879610841	6.24424268661769	6.05040573449146	5.72083322567877	6.28610059021589	5.66075286466335	6.22559603978748	5.88816103267067	5.2959536581184	5.81945030910469	6.09773367825593	6.41404653362139	6.95361333788173	5.40516669171032	5.65483078124846	5.65174101684393	6.24054472513449	5.91425051158983	5.57219934218949
+"FBXO36"	6.31163813179538	5.66797326681606	5.47689524176883	5.69367400490461	5.8046063198732	5.27428642912524	5.45958664768657	5.89508407884158	5.71738925504433	5.8322526952118	5.90366942608985	6.05359456897679	5.45435932724968	5.27928443144363	5.35326887720123	5.8692499132607	5.60150734018331	5.61781992874554	5.61647416074158	5.6355314626734	5.82796450395974
+"FBXO38"	6.13521607065864	6.11997822599785	5.39627126276037	5.67435925010969	5.93081864744729	5.93900793816728	5.91533587547819	6.34695751539435	5.56314817321003	6.31229314432934	6.09004803236798	6.03961782765107	5.90739189760262	6.04537354087203	5.70312822382592	6.30821788615127	5.74131861486376	6.46359104529538	5.70899526425796	6.0077724735066	5.88520945379784
+"FBXO39"	4.5913346726415	4.98517462798156	4.537699768961	4.93697942709851	4.82898525588243	4.82255418563632	4.7704905293998	4.77950131311552	4.82255418563632	4.95178606347442	4.71721641242413	4.78240427414062	4.75776721182627	4.94353236858526	4.82255418563632	5.04136767514228	4.83851391392687	4.72473818031412	4.86503784239795	4.82255418563632	5.14117313440781
+"FBXO4"	5.3607965010649	5.65763736898489	5.49501500278714	5.00609090133362	6.00338772963133	4.83920981606536	4.66255647242009	5.21286207097192	4.78486323667854	5.35613241605432	5.70230056550291	5.53768305017572	5.03157474928169	5.02168442688898	4.79797537032524	5.49814754705922	4.9447347903232	5.84059581817253	5.28155650425315	5.57489743391971	4.87827475481735
+"FBXO40"	5.57218743767773	5.55075625631428	5.72981269371856	5.71767012347587	6.4897247027855	5.87218626750793	5.75380194527743	5.66238214295089	5.58805445300551	5.64234854951754	5.30199883642241	5.81623987082754	6.17757399298503	6.13759371469165	5.51403668859576	5.62899166804537	5.69321269100867	5.51648266782885	5.46123684331533	5.83127893085894	5.45562067838258
+"FBXO41"	9.37082933424154	9.6814627642852	10.2616973340948	9.88895034232903	9.96634456226138	10.0581903355339	10.0417312956572	9.72547150033584	10.18669288644	9.71689179604869	9.1976955673062	9.68278940269393	10.0814565929559	9.8723235597402	10.009089440425	8.62789008815326	9.84924720798788	9.33295028808753	9.81669442263798	9.97591574563926	9.77788332092267
+"FBXO43"	4.83851391392687	4.57512919121534	4.46503046131334	4.57512919121534	4.69895205803882	4.38164605192974	4.51120830096811	4.56662109233126	4.57512919121534	4.49410443733918	4.56798002553385	4.66115319258448	4.57512919121534	4.58686202676896	4.21390658032342	4.75354681762801	4.53669069077399	4.4978357845024	4.708130932981	4.61783634844587	4.7096388695463
+"FBXO44"	7.08064175472538	7.25789444570371	7.38494954823923	7.48134597962553	7.08643812152463	7.70871554286297	8.01710757660637	7.36870956146724	7.49524705606785	7.47022061477307	7.39131110583197	7.66987084683451	7.6865182884252	7.74825245169823	7.35649388873972	7.08593555036874	7.46555188512426	7.13883276482029	7.71878375958846	7.31920299333544	7.49304662138133
+"FBXO45"	6.19323699475241	6.64184903781554	7.03568321206872	6.88166653980617	7.09709291049551	6.59598192516597	6.66479881816696	7.00272387204806	7.27400670056655	6.80354987879208	6.23533412715583	6.61449918361847	7.0038208925016	6.55794347402061	7.24073611898215	6.37001060265822	6.83236469371306	6.83236469371306	6.91298862584288	6.8804308099859	6.84965958638025
+"FBXO46"	7.20177799614078	7.19834517605342	7.21132433842853	7.1622036718248	7.0532812365462	7.29423932486654	7.17002435544918	7.159396100671	7.02829795737731	6.81147548172438	7.15270902549605	6.84762859966986	6.93885269329416	7.17217094740179	6.96087063157419	7.07737449542179	6.86750141252808	7.27613948456788	6.81599947002002	7.03710432487519	6.74052043077605
+"FBXO5"	3.68315444089027	3.54201952301091	3.21584029887638	3.59121013255471	3.45104753355688	3.61503987193116	3.2371083959586	3.44054555878908	3.6455456697356	3.43113428052576	3.42910512674755	3.08752329765203	3.70676187082384	3.42394014461038	4.01077361095587	3.42876004453813	3.29736888424571	4.06174905498299	3.45104753355688	3.45104753355688	3.43585109939249
+"FBXO6"	6.93811125598975	6.83634299637973	6.56158563029116	6.74188245487044	6.93110061224102	6.33047554785542	6.80875839651955	7.27683437473672	6.73608344614192	6.96312860513206	6.93299485157954	6.85755308189401	6.56234330308569	6.68827768322838	6.30997109772858	6.30732921222542	6.43602240143403	6.69117521424895	6.44034471336455	7.42751376852352	6.63561047180801
+"FBXO7"	9.79605441007435	10.0413812293829	9.24035163715173	9.26982398456274	9.44862805260451	9.30139922103757	8.92157076244844	9.50183607569898	8.72111879850941	9.37159023085177	10.2820959843469	9.552861179976	8.78992690972544	9.01257511735136	8.74960313498988	10.7545944028775	9.35341661914094	10.4153182942344	9.33126151404096	9.32290764036833	9.30356172387488
+"FBXO8"	8.1061231336966	7.53284351480996	7.08176243912046	7.43471080057844	7.52286300731435	6.85561262781686	7.95820380280187	8.21521710270037	7.48068570821936	7.24529441189344	7.73604057025109	7.31253677352087	6.97428558740069	7.18759038337088	7.25355361162674	7.68501410464122	7.13934068428167	7.73104826412194	7.74860280291838	7.21055692738537	6.69706847610203
+"FBXO9"	8.16341681158455	8.5194338362614	8.70232259458494	8.18836353002925	9.29458533662204	7.81090730974135	7.30044580808855	7.91078318586209	8.34689142081283	9.26960361195523	8.70244126481314	8.79752696754175	8.18432006228	7.67039283104507	8.28300027469117	8.57718596438945	8.23057695395691	8.85790318914534	8.16604009243534	9.01892160487666	9.17484963037029
+"FBXW10B"	5.08956958708516	4.99071905924134	5.05441801823541	5.04847240442016	5.12263277583952	4.75391176901744	5.31564474568559	4.93395257263887	4.78770916669393	5.12906069912838	4.68110536724735	5.04281199991157	5.45620872140626	5.26842718867638	4.93390230187928	4.86736592506677	5.06477711582073	5.01629378768755	5.13255804082297	4.93086417712617	5.22914301163168
+"FBXW11"	8.39245333494037	8.2865568890115	6.10151970600183	8.02329323185729	7.86915274541191	7.51229646361921	8.42211954966797	8.29371804604745	8.05969942675727	8.51620546764398	8.35506171939096	8.29048593947361	7.8895331968627	7.99210908676001	7.68558805321845	8.5609481516261	8.10456841415853	7.63559572024807	8.30039253764368	8.12051062323397	8.5826371953528
+"FBXW12"	4.83851391392687	4.88390515366921	4.83851391392687	4.90583640621184	4.75799280259008	4.94016896406052	4.79364648408111	4.70273250509797	4.91243717460177	4.76060795820799	4.51632482718604	4.94212028469405	5.00263885581078	4.92786787380889	5.06326925189081	4.59347754298821	4.76851251941331	4.67008887260483	4.97088406117322	4.77147878927536	4.75417993577781
+"FBXW2"	5.77468663584914	6.30197414566887	6.75907537308285	5.91536334384264	6.67583157490052	5.98937393130406	5.20790582979787	6.15045931277858	6.15748228759566	6.34335017104122	6.28829926594939	6.36728248829232	6.14856548381231	5.94141180966136	6.29327855755143	6.10502048306124	6.03560847718915	6.8944254204189	6.10227379339075	6.08225571564019	6.33996187742872
+"FBXW4"	9.58515274407022	8.9636765918522	8.93401656419781	9.04048432193573	8.61929665725017	9.92511425905104	9.38831417269681	9.10794916550907	9.01205350442731	8.77344525124779	9.32644167571978	8.63145439000852	8.90131636847091	9.55606153106685	9.0523517720703	9.12324124295586	8.91062172657697	8.98926991720875	9.01099477049735	8.75535817863636	9.00939558023801
+"FBXW4P1"	7.16218046823666	6.65552345597802	6.80067095148751	6.90423993676397	6.63774856055973	7.57014409521791	6.81087140579919	6.85745311621077	6.69788000210891	6.66692941308928	6.80067095148751	6.8903582621166	6.97202426445476	6.94021012110665	7.01466289658064	6.49470117714722	6.86414312462357	6.84735774073151	6.87006266158612	6.42657060403565	6.61335021769737
+"FBXW5"	8.64164381224054	8.37195881828525	8.50384511037096	8.47065149158074	8.39602878373457	8.63601060859703	8.49378439694414	8.49100238951298	8.72614944901072	8.61420650329929	8.2980447375702	8.41476250643942	8.67106784223425	8.48557524871193	8.38652447524714	8.20014716688443	8.49946257847242	8.49460740016439	8.54512514789075	8.82768435506021	8.65448598950966
+"FBXW7"	7.83175839922971	9.40373521370968	9.56723274634932	9.23511441754387	10.0525913570718	8.43363408052321	7.9491409980226	8.98886271569779	9.60320189219001	10.0937467235018	8.46362001573686	10.1469703600649	9.17843562689526	7.97103121031649	9.18896611848112	9.28917244986557	9.94695427253262	9.21921310787834	9.5418571798495	10.0260364597804	10.1584277005366
+"FBXW8"	5.67518360240336	5.55048846341932	5.71601291506946	5.50930336523216	5.52275822535722	5.58745603690556	5.66924473452819	5.52189621171543	5.40664871606101	5.49375445297923	5.68108403121755	5.50816853495466	5.46067570877317	5.46473306810021	5.46714241137902	5.69120015652801	5.41727796814015	6.07511267072239	5.28441787732694	5.37392204183575	5.59769638842372
+"FBXW9"	6.52527563693714	6.46701061607575	6.78630603370127	6.42462512689001	6.34545863796348	6.27648327351381	6.51166132831683	6.15782415342858	6.32282295704716	6.33266579066395	6.3111512773229	6.40141034436154	6.41439769968134	6.25856946622631	6.25796161345581	6.39004930252835	6.36965286268769	6.39860197702335	6.33445485027891	6.63112193426516	6.52374411245507
+"FCAMR"	3.77604663715289	3.78097035799407	3.90531855542347	4.06549336325472	4.07300975727308	3.9958377027699	4.15445634250024	3.8925348844478	3.79179693792603	4.09753691427981	3.94561730902074	3.88122381823942	4.03446559670187	4.07414672631249	3.9068657511388	3.86201434759604	4.04855162491353	3.60991870869315	4.10702579950161	3.86134334800034	3.82976415795765
+"FCAR"	4.02209119233493	3.91793293861616	4.01615771219074	3.91506726214229	3.90701037092895	3.99321485246642	3.97046537545831	4.01615771219074	4.26567711987046	3.96574532222342	3.99355420718544	4.32589039138826	4.35269318985058	3.85374844396569	4.029865151258	4.01615771219074	4.03546709623435	4.01615771219074	4.03771313355036	3.92408825927679	4.08196664144385
+"FCER1G"	8.32431524856486	6.19018694254278	4.83143748595373	6.12907651108988	6.28822645589367	5.57646834675271	6.22661180845864	8.18924284726755	5.84313342618529	6.58200048253507	6.95514357980889	7.05533252476753	6.70729234482742	6.55066347882023	6.51090820999459	6.5434770657955	6.57788503655338	6.84149417770264	6.69585042409421	7.93724583509627	7.65177898859526
+"FCER2"	4.39515924941201	4.68247813281382	4.75448147875296	4.85864305454147	4.49328897426433	4.97803966354652	5.26456576504801	4.69345638037716	4.78886299683595	5.00892481815257	4.83384370757684	4.83851391392687	5.31960933321014	5.03723710792883	5.03964243886626	4.54938157480739	4.76891938191489	4.4639965426867	4.97664961090827	4.50423296441564	4.67411217345509
+"FCF1"	6.24498347146743	6.61760108656451	6.36222461806858	6.36923298840066	6.56632847837282	6.25668271829479	6.11367082491704	6.35346723828212	6.28816126081896	6.26866816680875	6.82450629332652	6.18619783200992	6.5096895074066	5.98644767929652	6.67486792272358	7.08438045667014	6.65370959214598	6.95472848180501	6.64062377624477	6.11605739907067	6.36197372075751
+"FCGR2B"	5.51540611620098	5.26561581584372	4.56350790858762	4.58901915959584	4.80235220162129	4.89623468506498	4.89623468506498	4.93558703600924	4.75421448080437	5.89870081571094	4.89623468506498	4.57512919121534	4.66904955819701	4.97886195242168	4.59582707901808	4.89623468506498	4.82243036791251	4.71636486395458	5.39751116216788	5.54267954490689	4.87583171976683
+"FCGR2C"	5.17716560015536	5.23389961059546	5.06838769114589	5.45027199838977	5.29843502028833	5.20893316038394	5.33646517607511	5.21700374504252	5.43531151747558	5.12906069912838	5.18157275341326	5.31384648876715	5.4744378670053	5.19659004583937	5.09655555571951	5.17563844126046	5.41129322883709	4.93801009076597	5.23389961059546	5.40510691705212	5.54813632990634
+"FCGRT"	8.86982677343829	8.09307978583723	7.57210139942813	7.78703262027105	7.70279223392166	8.07378040086496	8.6672256973191	8.09930123759452	7.90715592710957	8.22285281791569	8.06284023975412	7.51030656176833	7.7874689192359	8.11451785422802	7.7724176635975	7.69354254051859	7.87917772810762	7.82032511439429	8.02739545900682	8.46773064910662	7.79570225419558
+"FCHO1"	7.22929121802518	7.51082278748633	7.29073351815178	7.33531857178596	7.12375244763444	7.72371994598389	7.34618678901354	7.28839907343207	7.16049768347348	7.23008838590957	7.96251829842973	7.13740999020593	7.15731247750268	7.24928105625194	7.44085425892998	7.8549800420532	7.31190484266944	8.30280913607575	7.59109859215529	6.93082044126374	7.48643658804345
+"FCHO2"	8.65269297979392	8.49621588333722	8.82618384117877	8.47383074642488	8.3951133859256	8.93554911974166	8.21007582709812	8.75472399133239	8.34751253481152	8.10863658375561	8.65090273907061	8.32120713621618	8.1695515463923	8.4777576927305	8.35383237712422	8.59948051805667	8.48153583964727	8.78111141426139	8.68554761031483	8.31437789820739	8.08673871209275
+"FCHSD1"	6.3221567206987	5.88743757001588	5.69504443975447	5.79765156711091	5.53502726205656	6.46562678815194	6.16625421708886	5.9714715404091	5.48414909124167	5.60911410612036	5.81951400997501	5.28110843775375	5.91394388153282	6.27525246815325	5.76443955444799	6.63575555524189	5.7825998567155	6.43936628863289	5.9970542938211	5.63831568412525	5.54909831224005
+"FCHSD2"	6.62557288354416	6.05862537192857	6.26250787507239	6.81765945019048	6.14232451631053	7.7973954964759	7.28357689322713	6.34672640600703	6.5056648804314	6.12673829556133	5.69049892955202	6.03941758520597	7.41974477180558	7.06666761084124	8.04147745509897	6.34853966251799	6.55566210516945	6.59852628634041	6.79453291251634	6.30563521106612	6.34595557005931
+"FCMR"	5.78614018579534	6.07653601834777	6.206299664538	6.49457255329546	6.22664181941471	6.2426460357132	6.6105879267926	6.03222075765803	6.535404025651	6.25714090851386	6.11589447021433	6.01839984652521	6.5644990408409	6.4664188930347	6.18619783200992	6.26306773745934	6.18619783200992	5.62190384437109	5.94570517050411	6.13384371131382	6.32294855317028
+"FCN1"	6.14505941677971	5.31560787295187	5.38804567695154	5.43557649654684	5.17302177050277	5.57057500890445	5.91836353673704	5.47700937752932	5.22864060970584	5.56206391775393	5.18898324423965	5.34285022534953	5.51040928810062	5.56303212327799	5.35108903278317	5.21167054134652	5.42557131703695	5.55164005273765	5.34810385551279	5.44061319479109	5.42557131703695
+"FCN2"	3.25309811826045	3.23691508009208	3.53247299774125	3.44927333376118	3.34827202996677	3.84232318792524	4.12046557695041	3.26499456959597	3.38952093511284	3.51729734100449	3.48589439304453	3.50823589423279	3.42631449438149	3.65874964271182	3.80810666811664	3.18138151282327	3.39810421114475	3.44927333376118	3.50235518489245	3.52526344906416	3.46196962648893
+"FCN3"	6.18620082650564	4.79626659434169	4.73128590539929	4.75380909126293	4.84007759510638	5.5941733389914	5.50779313025473	4.87560359968607	4.70726255867117	4.92234158527835	4.6134542679437	4.9687877894467	5.31333314763235	5.5214193665771	5.07010693352521	4.90335077970943	4.88678520730904	4.7313093479097	4.87472614985755	5.12103253802021	4.97763284609842
+"FCRL1"	4.14864277208201	4.18447470112453	3.98248050472052	4.18625628595356	4.16995792821466	4.32852197550107	4.25655878801648	3.85790933383103	3.85457861593501	4.00469379059507	3.78220937565669	3.55587997726816	4.00469379059507	4.17015892147185	4.02403136654434	4.04605277304576	3.84054160309622	3.99082036832402	3.66707908801258	3.94167996959657	3.81318062742558
+"FCRL2"	4.08022174867621	4.13599558968001	3.81751553599152	4.21861199283767	4.13191715981448	4.54237192097379	4.54751080496412	4.21311855486506	4.23847069784049	4.1754205340173	3.86854028403321	4.1554836734576	4.23954528287852	4.26864114683915	4.15166577938829	4.11981415541396	4.15803890372351	4.00165850539839	4.11394599607566	3.95634138876101	4.19944915960751
+"FCRL3"	3.91746354783808	3.98951604925738	4.10803620113007	4.38868458282386	3.95769175518621	4.45432828012359	4.25964472169835	4.08902925541525	4.24537948198192	4.0379858998967	3.75783980030032	3.97412314490592	3.97211261788589	4.15254687903742	4.174842629603	3.92606029895844	4.03631329081573	3.66451674324876	4.01427305640163	3.90334237943875	4.01970013915636
+"FCRL4"	3.7646982062129	3.47115147475991	3.42997978897237	3.404033184532	3.33645854237922	3.55216993504708	3.57523367609365	3.27011328368126	3.4405599895745	3.36603371630002	3.3441691426027	3.40590622472715	3.44402500432151	3.40590622472715	3.35700118530447	3.43663801176559	3.69365214950309	3.30451144692132	3.57726626345713	3.32415796679771	3.11787445079385
+"FCRL5"	3.59086448904719	3.96467032962042	3.57863911871573	3.90798174851548	3.9960062631877	3.77731523269348	3.60219952837906	3.66923094956995	3.78318670423985	3.58129818372664	3.54127067137852	4.15739946769112	3.84945866221672	3.57433782896039	3.87513661904514	3.91221669374323	3.85470435242763	3.47520202998458	3.82838058508698	3.68677898483993	3.97778838015088
+"FCRLA"	6.08150376719284	6.04103611787207	5.86427952298736	5.87598388922428	6.12833565634007	6.25426083009123	5.71070885139405	5.39305341384989	5.55760567876315	5.73586417311183	5.52514365031294	5.61633591669113	5.81249462694916	6.09031816369679	5.86928790233501	5.64153671410392	5.89443716394183	5.35214669644362	5.55984795711698	5.69911456011767	5.86546255406051
+"FCRLB"	6.32672716186239	7.05224635229932	6.68755191429663	6.26320933435169	6.97567319255553	6.23658438735368	6.14999401552023	6.36330362171576	6.57518628633265	6.89142407346852	5.95133227983627	6.86190662760494	6.53718868487586	6.83858706295518	6.58609427975372	6.49956404978159	6.51522843013209	6.6093012962759	6.19730768751321	7.07851594371946	6.56458076612091
+"FCSK"	8.57703986577682	8.04717547588258	8.40029566379794	7.85970939987725	7.87203912947615	8.40070227849263	8.19753866256071	7.97798047138529	7.95707644704866	7.7737559828062	8.23453122346904	7.63321268195457	7.71769499777986	8.17784568757071	7.74442209598228	8.38551707473599	7.81473609023646	8.41605113928981	7.95633484213746	8.08816719921108	7.75185139015406
+"FDCSP"	3.4918118699467	3.53763433918311	3.60847761592675	3.62100615754021	3.53816079876218	3.62160727492543	3.56497114304989	3.53932555628666	3.49437295687608	3.54310020182134	3.50599116514233	3.57779075733887	3.53932555628666	3.65610621893167	3.57075556487637	3.52233471798495	3.7516587080562	3.50097034475306	3.46861023963545	3.33173608354174	3.50310234788329
+"FDFT1"	7.57211529937719	7.08364542848309	7.51708660797792	7.13410231887988	7.09508473513436	9.2713167836062	7.15107070426719	7.57224795728424	6.92785342817904	6.49746866999462	7.16268586610672	7.36848294540157	7.26297374390664	7.51271983842125	7.35105489708106	6.87790510774625	7.4617942912522	7.80050204922035	7.21969962277975	6.49354427147418	6.74163980779604
+"FDPS"	8.46751766358714	8.63287273549857	8.57997431436577	8.45842507185115	8.68297739708146	8.64458259061661	7.88150438290924	8.49415656395152	8.17200278119257	8.9720862664764	8.86546145765455	8.67606081323807	8.40699019545809	8.03576191370546	8.67083817569565	8.50603746445135	8.34548700674745	9.08592158680598	8.45509234216394	8.80385501804878	8.81410609604004
+"FDPSP5"	3.51018006113275	3.699572825339	3.65865453576676	3.72468106408729	3.65510577843624	3.76649585251223	4.01637249227648	3.64486164963211	3.59293973266562	3.76811296197147	3.83245299930446	3.79789751493351	3.77509223921007	4.10416871608921	3.76649585251223	3.47487242086632	3.76156716845593	3.92242796142585	3.72025072610509	3.76649585251223	3.90289565167205
+"FDX1"	8.37137347566059	7.97385859393107	7.77542609962186	8.18058179853748	8.45003118856762	7.0532549519961	7.78142160325225	8.32085890536187	7.93200025065159	8.37844588185778	8.2246484384976	8.09043729562366	8.0178781309438	7.4505721879319	8.10471669326138	8.24263446257723	7.98508422043463	8.35998571981292	8.2796250973836	8.48810301914838	8.33242105333153
+"FDXACB1"	5.25051928565831	5.64940906660934	5.23938123450256	5.7579859421618	5.54046872808564	5.29611353858418	5.85748451568815	5.41347256260137	5.54538282082092	5.69167314040968	5.54465013087792	5.28265839014847	5.4742395025684	5.47238404453623	5.15245351548949	5.69177468850453	5.38713685745137	5.42268653700069	5.40247241763448	5.68394796793189	5.68087189168121
+"FDXR"	6.19832285484673	6.02157572737164	6.36566299342697	6.07350542491984	5.97309995754229	6.27845956459268	6.62134362189961	6.37459284441625	5.8704121990033	5.95384992873419	6.64141756435079	6.2359666249435	5.80526599311524	6.31254973020568	5.81213223270555	6.75443547351287	5.75579595506186	6.1681660401562	6.08041443818975	6.30432965112256	6.12810643140219
+"FECH"	8.09356899083409	8.48481822685407	8.10642868892962	7.78573432470143	8.01911459815238	7.3035415050826	7.39929009715599	7.56632615899498	7.26416484525954	7.80042272043687	8.53307538994542	7.50990265027428	7.21885010748842	7.31443792782252	7.20725129200639	8.71786055352745	7.72340225237287	8.67921517122516	7.69899614465056	7.9116493280707	7.87549868433126
+"FEM1A"	6.92495856517945	7.04659328759076	7.19199271967522	7.27699453661489	7.11226801531408	7.6766519114659	7.82424776116937	7.16737788345017	7.42082369490401	7.19944876041546	7.1407081262702	7.06390657143813	7.47111858403082	7.65423828173453	7.44512631734503	7.25767196093283	7.19145577335845	7.3283785747604	7.15557634586605	7.06990315469905	6.91970868523065
+"FEM1B"	6.41737242714724	6.7280726504843	6.68301228687374	6.71039873609301	7.15367432031124	5.9695299239881	6.29473400435578	6.94871677620149	6.57942579869113	7.20357428142124	6.93781174980394	7.22250714239545	6.45417972793748	5.80762505929593	6.53061188280067	7.10021749691509	6.79707115152245	7.28664884395169	6.76469176134686	7.20422856044518	7.22887751667864
+"FEM1C"	7.68721017609055	7.78514212032369	7.38517182741304	7.70142600210425	7.8943136729089	7.15945256512089	7.61501570271299	8.10821554286496	8.24057109904595	7.63104503334043	7.56024078904509	7.54132232806032	7.48893955113055	7.17346882083708	7.84615096000972	7.46824507767369	7.72406827349774	8.04098358676897	7.64006663626814	7.70759450098312	7.82920436825225
+"FEN1"	6.92448967396184	7.12934604490615	7.11746369298232	6.49653218847326	7.49140898970513	6.92206467297856	6.59689406139209	6.20251972798579	6.81904067814388	7.60631829126407	7.07891498113306	7.34700339612854	6.10241624199375	6.30092316137618	6.38974031778354	7.84521346285558	6.89264219728089	7.63388980976276	6.76682615294416	7.79305695755682	7.33866331642222
+"FENDRR"	6.72736655410953	6.63383700646766	6.70161924278961	6.8248397620842	6.67159759215073	6.72670697142586	7.30429454941179	6.67079875788475	6.72670697142586	6.89577570189488	6.59845171995468	6.66426939533747	6.8319748853973	6.73549553712937	6.72670697142586	6.5258963533309	6.89577570189488	6.53991516002599	6.85983259442481	6.48701729341045	6.45918105562576
+"FER"	6.76053222659398	6.6557483582683	6.46242859008468	6.11727358966293	6.51784885846291	6.5728380978364	6.27460989838434	6.62893084649405	6.67007300921039	6.32304270883192	6.50486911363902	6.46459341716983	5.6766139952617	6.27513749846904	6.04320958250617	6.49070830522653	6.3643480768716	6.92613710711585	6.30716686311678	6.49804678052724	6.24150140515028
+"FER1L4"	4.32841465670533	3.92203219490466	4.15409901959632	3.84716746490182	3.85540844684441	4.58038778037333	4.22927990871593	4.14626973733186	4.16089863856463	4.35571518299523	4.07002093254452	4.16174402135614	4.34229690250928	4.05343856066134	3.90866721100015	3.984607717526	4.27048490564229	4.01535297133316	4.03771313355036	4.13033898052997	4.28292288836288
+"FER1L5"	4.61284354163675	4.44390189854921	4.04499778355144	4.61441061645364	4.23556264330529	4.39285289635609	4.72442521756436	4.21252907269636	4.38195702000894	4.34057268666813	4.17123649721005	4.21436760656028	4.56180792728275	4.44151643234859	4.40301029549201	4.14764280346349	4.4752576076541	4.05634932748881	4.60696608945206	4.09924497141934	4.28624662114615
+"FER1L6-AS1"	4.05078446911961	4.32048605428327	4.06142087323968	4.80270559863186	4.50022979731238	4.45364925732878	4.31383957284374	4.42823293195999	4.35794210178353	4.18464866735661	4.15794019669029	4.2735549147926	4.33246542441533	4.39411964211797	4.29938893389525	4.25031616197514	4.34667687839601	4.10240901356259	4.23341179838558	4.27039756591878	4.39913196646256
+"FERD3L"	4.81228999434992	5.14427292323166	5.09190932540863	5.22209266910451	4.73625081167169	5.26276975906679	5.1716869876303	5.0069134547076	5.24103413687238	5.29339144688489	5.05307460166819	5.15058164026976	5.55444431643622	5.31125318182972	5.23425867932573	4.9639803779746	5.28677728576356	4.79619946429078	5.33511277070712	4.78900896862727	5.33598383506432
+"FERMT1"	6.92206213560706	6.62875171226049	6.75668069632614	6.78331224141729	6.57043806173822	7.17332184971239	7.73367027686715	6.33958846628278	6.71073669843924	6.30335047123062	6.32136257645792	5.22025635773318	7.13218113586875	7.18766765129026	7.11488773696756	6.75889079840147	6.26550398044328	7.11936798325345	6.33923332096263	6.03692585884294	5.72641531006546
+"FERMT2"	9.30317072115155	9.03265299747042	7.81179371835063	8.60590519775469	8.40730940218684	7.38901117847618	8.68426000962589	9.64310615420682	8.2904098670132	8.30255871502198	9.17759407210256	8.58459409720147	8.09506341842051	8.24433064523819	7.75818790628322	8.74465214502015	8.46116521271645	8.54451340125497	8.36614237842995	8.36320716362235	7.70857172802651
+"FERMT3"	7.02410420768146	6.41990274777422	6.2024725572718	6.38586673202084	6.0116037477988	6.48547450747277	6.5247605319362	6.40382767411492	6.3279220801629	6.50740710510823	6.47428842775992	6.30832985346427	6.89808075423053	6.63632754954969	6.74756366907289	6.28536993734165	6.23156545978739	6.26652370283491	6.44462388154056	6.81126918811202	7.19481724753932
+"FES"	7.23470048745053	6.19295972596668	6.31308805819194	6.32782543546694	6.31277500350379	7.41994968014454	6.71608498628097	6.96034866943324	6.23837763945241	6.41296131501193	6.27932297116465	6.49873647633951	6.52813120898041	6.93090005573178	6.52773128558263	6.39478418451783	6.62087700615036	6.33375294938598	6.33500024264631	6.69507535933357	6.84733188096048
+"FETUB"	3.57891014079954	3.67745426166863	3.35811323002609	3.60683511117734	3.45609825774336	3.69824963154255	3.76799166216152	3.57705282118427	3.57168277338513	3.59355704153958	3.50135286300994	3.52860727607759	3.7914881741721	3.67720033809387	3.73461151706899	3.62787277809452	3.70825401424496	3.55969993101081	3.60683511117734	3.60683511117734	3.65022425851518
+"FEV"	5.16304009926144	5.13607554152311	5.20479494627262	5.27370157501242	5.2797786847267	5.52091223458819	5.62861491019472	5.04374624199948	5.14946478264274	5.16304009926144	4.8576335136406	5.20265748118645	5.33069323853224	4.98412934974085	5.25022438795489	4.80386869783378	5.18888236899333	4.81335695332315	5.24837348660563	5.15464444309038	5.08434163260989
+"FEZ2"	11.1839168687272	11.1274271986893	11.1820194817152	10.8435876270857	10.9350847164595	10.5568776800512	10.4765757941164	11.0313690510635	10.9797238936637	11.0521475857222	11.1863797471217	10.9766988239437	10.7052332758094	10.8160987120339	10.8923412802855	11.405119384923	11.076267488758	11.396868130068	10.9918635648097	11.0005045294053	11.0574332950079
+"FEZF2"	7.19746292278507	7.52414149317064	7.70045673182996	7.50027986318307	7.89170656251488	8.05937453690929	7.9034883660345	7.4508575839789	7.11151236261581	7.57064794271766	7.25429769417943	7.2656501253012	7.61716692208781	7.53726103187016	7.46597342369527	6.62737540310601	7.53209269853107	7.46245111356978	7.49113861154599	7.52845539248031	7.373436282229
+"FFAR1"	4.00967676648148	3.96401848396164	3.68109589034218	3.68757628697963	3.42364973555414	3.77239734641919	3.73899959912303	3.60310300642408	3.71031846596918	3.59012711967918	3.85366200410919	3.53932555628666	3.84232318792524	3.66961258692491	3.64240561991806	5.15621152584527	3.50808468204929	4.17136177874307	3.5282240573432	3.62220485342102	3.48324900926292
+"FFAR2"	4.64546980121357	4.04518674547636	3.84027965379838	4.07911977537473	3.80521344532757	4.14725079111801	4.10391463329432	4.27775061592008	4.29359011617591	4.15227527674769	3.89652244794547	4.20790240669933	4.12575903582157	4.15741835194707	4.08419961023635	4.05049959983287	4.15560404975801	3.85033030410581	3.92502085163644	4.2493817728559	4.20707514329891
+"FFAR4"	3.88180720138628	4.19936068110828	4.25460745883136	4.16635215125011	4.34843087985514	3.97269936959541	4.00668458522139	3.79318726396141	4.1244835114738	4.17982290848701	4.00668458522139	3.9786910687738	4.07792606942969	4.00668458522139	3.87691157189968	3.8412414708828	3.90066237975731	3.82970017842932	4.05751805500455	4.25938872370961	3.9345877768516
+"FGA"	5.67193313290703	5.88062935700909	5.79652314704603	5.78792841228779	5.93885617395185	6.18969871495302	6.35773507994489	5.95701768150494	5.98673451505503	5.83142710646552	5.24826959821441	5.68696228171685	6.10306223175243	6.13522781152601	5.84673292874021	5.81158814698957	5.92721229098952	5.47060390964765	5.90424122594182	5.64555507156397	5.9325911261211
+"FGB"	4.64829119014841	4.84525690567366	4.83825995376479	4.87178155670733	4.74888927540538	5.50364649572142	5.17954888675519	4.7980270421907	4.80630699696376	4.83392163332822	4.47958843813328	4.74412090780759	4.72203798422872	5.02475465761855	4.83219677380312	4.75799280259008	4.78683284337178	4.24469312314868	4.94419759288456	4.77022762473659	4.69027421843055
+"FGD1"	8.08403643515727	8.21046046771303	8.4903501637491	8.19336602602549	8.22668377113819	8.39690352521981	7.87682368528999	8.03522162021431	8.30428249445473	8.24523126123527	7.76725855227417	8.03522162021431	8.26579838855477	8.38407348398192	8.14128691248968	7.74884443343864	7.88530374160197	7.82223497761717	7.9803992666783	8.18254296533432	8.14128691248968
+"FGD2"	7.29081843640933	7.11595791162391	6.20553446784646	6.98460542706073	6.06332191945945	5.89991788910132	6.83443326905742	6.43037645516062	6.8383806229948	6.80984932933687	6.66987089492341	6.23417124010832	6.87630242142316	7.027183781052	6.62384580544069	7.00134714233523	6.07687273648575	6.20313071084596	6.82645943568772	7.03558736517192	7.28151648127516
+"FGD3"	7.04029151883567	6.52040102304732	6.61938646705468	6.54018689620685	6.55178940097672	6.54809057595236	7.15137434207528	6.54798044327148	6.50197212034855	6.5742253805219	6.4981994185677	6.55541343581233	6.72226770760709	6.81310817358539	6.07125793336216	6.44642830251908	6.50682008889941	6.39274443226733	6.6810820333485	6.80378929931365	6.28552169706969
+"FGD4"	6.9293553292998	6.95869270123052	5.11113205605882	6.33634778458911	6.51248599922534	4.90912648201656	7.21452303913231	6.98496276993549	6.38126003179971	6.26452967041607	6.51302858927287	6.25753641123944	5.71475824972022	6.02838786661408	5.70918233309292	6.3300026869528	6.6308328899224	6.8094928937719	6.70184503480271	6.13043238146735	6.59744254722668
+"FGD5"	7.00377729177692	6.27580215003386	6.48853021698317	6.17815997209501	6.47053711149558	7.20418783756025	6.82086485154473	6.34675600799586	6.37009160678019	6.24348701624035	6.11894375929326	6.37873895882396	6.63456460920768	7.11407112826712	6.35324033311973	6.10710328434564	6.17609650693316	6.39487517988831	6.23694290398364	6.56777760043105	6.48191946258798
+"FGD5-AS1"	9.43869388992933	9.40985513549319	9.40383663604539	9.36978169704386	9.36978169704386	9.03709798369471	9.56823649717176	9.38402599821797	9.36978169704386	9.02748546834382	9.76423810767507	9.1996645038472	9.55436336999664	9.4441795928281	9.48675472564156	9.22550793234891	9.33286873690447	9.58505506767827	9.4810123732718	8.83907099246419	9.22510739060657
+"FGD6"	7.00354595473783	6.90887206767143	5.63691224076254	6.34272618469892	6.20224370638351	4.86552968364055	6.84117151014477	6.80133005339375	6.4237263952146	6.46886950588064	6.61463253350923	6.11394912117483	5.85011563595584	5.84954889425481	6.03530636231761	5.64147338097121	6.24624496249475	6.06171383205738	6.68458396877338	6.42079699550939	5.4962647944973
+"FGF1"	9.67475401598199	9.2304528264589	7.87469500796762	8.74951950997777	8.29673253302186	8.12818261381603	8.89070546521708	8.7573614545512	7.6247128062679	7.85150501393307	10.1853255066346	8.05486877636663	8.35478409188604	8.83638180329359	8.04920130087881	9.55257364399414	8.08754461678086	9.546353842389	8.95887851225335	7.04444219855943	8.75335691401426
+"FGF10"	3.94290903320883	3.76452602257583	3.70897390052951	3.81692629194529	4.13988730332033	3.78492317365956	4.21866302192442	3.9704686705924	3.98005087886253	4.11678386626549	3.72557746089429	4.19818030628423	4.19547059196851	4.12244320899281	3.96779852709763	3.84154467237719	3.91704288315324	3.63489015088957	4.16949877553842	4.22038548328655	3.96875066855728
+"FGF10-AS1"	4.02955835097365	4.43997767611285	4.01615771219074	4.21749257809528	4.23358250188458	3.9828987057558	4.419683445685	4.21749257809528	3.96779852709763	4.30574681858223	4.17350252403046	4.09670484748043	4.21749257809528	4.14312608426289	4.31947161776397	4.12809634319303	4.17677101012931	4.12591783546111	4.34623289942056	4.2521805391295	4.50866019674774
+"FGF12"	5.97569114171521	7.42751376852352	7.3928207567954	7.56762055312139	8.69901520916687	6.29724018799164	5.80368035631382	7.30365575117184	7.43177785243601	8.77743187127892	6.46424237873833	8.57350497442404	7.35130200416512	6.47766948866391	7.13429537925319	7.90609177253323	8.05087846912735	7.83039451385801	7.58610719850046	8.72381258186363	8.87566720180279
+"FGF13"	8.1456270356882	9.79913602966046	10.3060143935058	9.84218691629169	10.5356979036779	8.95882320641486	8.07886009746065	9.66424650002549	10.3680026290576	10.2713883855264	9.12457487370791	10.0960672986971	9.91448440444731	8.71000746617602	10.0392506673672	9.24113258978794	10.1268422336783	9.84708322206383	9.72979296370327	10.1717801595366	10.4283167209204
+"FGF13-AS1"	4.54751080496412	5.03549367245715	4.85448303861858	4.82322891043077	4.76842565267491	5.25278093918705	5.03960880153408	4.83795398845685	4.83040228005594	4.65363676506467	4.51690767661615	4.74790449043301	4.97439714009685	4.69207377039353	5.07132118929217	4.85448303861858	4.83527906937124	4.76550315001701	4.89083015891835	4.9790202086681	4.86112030320498
+"FGF14"	6.12059484398192	7.59886787468496	7.72753893152688	7.63664842194091	8.74627318064097	7.41928326898685	6.31601944212345	7.66700826850009	8.11598897258555	8.59047597906776	6.79670080721274	8.90437694991675	7.36682041628271	6.89676899118533	7.50280696454158	7.76906220437389	8.43133903145199	7.6972994537876	7.71794600551093	8.81051033553188	8.71000746617602
+"FGF14-AS2"	6.36017278949439	5.74761283109155	5.13223679595663	5.12982840995993	5.11289672615305	5.21852300896543	5.324888208176	4.89393412726644	4.70885027771542	5.01594307501433	6.56681056802307	5.32565406064065	4.61962293968365	5.28359866826285	5.03297895861746	6.37648140990109	4.64343864048606	6.09293610035718	5.50037821129485	4.83001963562857	4.85558331113599
+"FGF14-IT1"	3.94017190147686	3.80675069861865	3.92510255885662	3.87882896241814	3.59035006425724	4.03484862440665	3.9509007853139	3.9509007853139	4.29091127852734	3.93150729093181	3.75173053805012	3.71670156518125	3.80463707499397	4.15938219438507	4.24084061765742	4.37700389055911	4.64423178974708	4.00769462397557	3.68781381040948	4.14012077379675	4.02962984838951
+"FGF16"	4.66784483447504	5.17457420003708	5.01440952698643	4.97870876005205	4.92105618575939	5.11127411695174	5.12746650795198	4.99835880086172	5.17961838235984	5.0089997229698	4.76338070375635	5.12596055170524	4.9369910282837	4.94544111727159	4.91968352959815	5.11437798079491	4.99606550696295	4.99617184136932	4.61240543343684	5.12723384524228	4.99835880086172
+"FGF17"	7.26593073377288	7.25512473398185	7.68420708268809	7.6536407966025	7.04857672772231	7.9240815901084	7.4160272020027	7.56740080607991	7.73520454585888	7.28509903411906	7.0567244326749	7.70074828346391	7.59441495353222	7.66809306267629	7.56328705981465	6.91899973174701	7.64497425525802	7.00631394016947	7.73954781074314	7.33205251560792	7.35438367719709
+"FGF18"	5.25441171154802	5.55051144214946	5.89810252276906	5.5116519959517	5.96937451758341	5.19600420865554	4.92441615220296	5.38917717024748	5.77335193218938	5.2622562601944	5.48739943004589	5.49057147677114	6.0518882389905	6.04749316245949	5.42303871642594	5.23855829837296	5.24986296163964	5.23248320927212	4.98083224542738	6.09665539407046	5.14586822221767
+"FGF19"	4.72083029964895	5.0122005754417	4.78655776385236	5.07303549734583	4.71785011057703	5.24716502500752	5.17917737629135	4.83619148507764	4.92521412109698	4.9668021310151	4.71240284255536	5.07393285098335	5.24437088054209	4.92521412109698	4.92521412109698	4.80661226969483	4.80034306955918	4.75052119542083	5.06259607914165	4.91929581372037	5.13754053160937
+"FGF2"	7.78987426679692	7.69462140462128	6.80084471282193	7.3983396920472	7.43804568698574	6.49804472660575	8.15177456129877	9.28970367643206	7.49486709643978	7.24098880394027	7.48196970828022	7.62384956826489	7.41549166921611	7.30009305833995	7.40609332868314	6.89286160906154	7.48760631536957	7.1521538438625	7.77082766177229	7.24127153775658	7.00471934593808
+"FGF20"	4.45925703198984	4.63743967355902	4.42035589089419	3.99248245815399	4.30038748918225	4.35603649727383	4.08723199406032	3.97503199452097	4.35794210178353	4.30038748918225	4.67182517268179	4.25666380182452	4.25666380182452	4.80142045150678	3.88064004347707	4.41346542206068	4.25964472169835	4.42782489704559	4.79587533853396	4.51182999599768	4.30291884282523
+"FGF21"	6.17222436931896	6.31946411537033	6.3484177062266	6.2685914107686	6.23660514661444	6.46733349558046	6.91227253917358	6.33486472787957	6.56770940668419	6.52861275509416	6.22354675470409	6.29204556820367	6.50864653153082	6.41567046870124	6.34499803521971	6.27094610767756	6.3484177062266	6.09820066034049	6.64128165751705	6.22085326463089	6.3484177062266
+"FGF22"	6.63508304384228	6.72150836554369	6.41514183788059	6.8664635035487	6.28287738921389	6.94846082169778	7.02823679380972	6.75639021401215	6.59719399782602	6.77008031502595	6.69610629685145	6.91980298521093	6.73253309867692	6.7153758920344	6.57064154576087	6.80912343243556	6.97610040008585	6.39417927934089	6.97462132687096	6.7072194411309	6.93100905466554
+"FGF23"	5.05161178113323	5.22164171793723	5.09469177550531	5.33184902847434	5.28918555796572	5.58542946570067	5.42807271404977	5.17750484083966	5.07683305185414	5.19987628899586	5.02541259743558	5.34739305383544	5.45360511499842	5.43300576023898	5.32131061221714	5.34810385551279	5.28918555796572	5.18338116842709	5.37634365292886	5.32670063311972	5.4535640966538
+"FGF3"	4.28714205848418	4.3764318555075	4.5328326315121	4.62590561461843	4.51414908748741	5.31948379371759	5.40521817909145	4.43361092676795	4.83738975846126	4.69663078877543	4.4639965426867	4.73493107704089	4.68042135490642	4.87030070688439	4.70460210711524	4.46353971477801	4.63291624055091	4.55546193517578	5.02534621048142	4.28199484191872	4.73560586390235
+"FGF4"	5.57196516262478	5.58998915888436	5.49351669223436	5.91177514596327	5.53343662362722	5.95779681698879	5.40321092214976	5.66797130924819	5.64602012725714	5.54848781465695	5.39811525944099	5.63126968284386	5.98078924574016	5.92553705906056	6.00096011133152	5.80182237694846	5.45735092798446	5.34563497897751	5.75127185408853	5.37221681206129	5.4784291456009
+"FGF5"	4.44912161788235	4.72403327970942	4.57512919121534	4.67166009139186	4.4107231961272	4.64179847551434	4.82001530022861	4.47445267781709	4.2947976575029	4.7419731535693	4.30214195955945	4.71396489786756	4.88965651044509	4.52569073144287	4.64729571574769	4.61552486600255	4.87656359571255	4.50644310409156	4.84952227078687	4.42033965844629	4.86990427841691
+"FGF6"	6.28042822301098	6.61126746116594	6.42761558096897	6.73582833441043	6.64638809826194	6.9388556107156	6.62875171226049	6.56799582150047	6.91214602335211	6.78965231988029	6.5294195847841	6.58497863505008	6.74182007491385	6.93541088630195	6.7772836519918	6.48679890257446	6.76376628909377	6.33239832710628	6.59791972608904	6.66740538567933	6.67728188610786
+"FGF7"	2.91400522121417	3.19533869377738	3.1114625151004	2.94304226262722	3.06643446652217	3.36446128183935	2.97972728254427	2.9532855415763	3.10054981288096	3.10445188916792	3.10271901198936	3.18257434256964	3.09782467255632	3.26832597482837	3.17619299720125	3.12575261463605	2.98400369984491	3.32511171738598	3.11254416377786	3.10852190111252	3.13399577065312
+"FGF8"	4.27331436268814	4.08214323996848	4.61197636818924	4.20440994554761	4.03821202069363	4.40204958557991	4.38283185462986	3.81401464797511	4.13372836389448	4.34451062165467	4.06454711108181	4.43655843381411	4.4969202452014	4.26022597770028	4.59530457488445	4.08950244132383	3.96588752581463	4.00469379059507	4.17493251185335	3.96819519736259	4.45956977070015
+"FGF9"	7.09636462793742	8.22275456905045	8.61644027163147	7.73129113351638	8.57751208324693	7.51224006526153	7.04440696009982	7.60470775278566	8.318176116102	8.42758126551344	7.46591189202906	8.81590382559448	8.34780956667532	7.3956116712051	8.40705477457388	7.81725700889963	8.51298030677573	7.98957058807428	7.75036277923462	8.66671068613914	8.90974975149043
+"FGFBP1"	5.70405852253608	5.53877296903047	5.24239819799206	5.64277339499654	5.65316847157467	5.37851876125288	5.61710337635749	5.62873473867109	5.71499644556303	5.77537755613061	5.47349230259853	5.75061515566501	5.81945895925012	5.69019540686218	5.62873473867109	5.55321208823299	5.74350171773715	5.39286740463625	5.7017004122275	5.56853546184461	5.64995042145413
+"FGFBP2"	5.73953669706911	3.75443478653444	3.8919074252735	3.53253667154408	3.76425107897083	3.95340725584035	3.96798525437515	3.78204056874707	3.73399166214858	3.79552938946331	3.57127609185896	3.5249816058305	3.55007867912026	3.71957356200323	3.49864408515055	3.60694916251519	3.46797747713864	3.718072901008	3.72578129785459	3.87514651378131	3.59856638619599
+"FGFBP3"	5.99231719072438	6.37868518487355	6.85436009897766	6.2555569229193	6.58527293743349	6.37908821414674	5.64364715371007	6.03419139609067	6.16721046927294	6.28448254946579	5.95740591931162	6.29343661887064	6.40996859961443	6.26601642296342	6.33959531915262	6.12545452124143	5.77797156721386	6.83069437763132	5.54187446762847	5.84129885670337	5.60813587004795
+"FGFR1"	7.47925739459068	7.5767555011942	7.42924693924328	7.99913815480274	6.9592548178644	7.60384830214911	7.93045470317365	7.65760650907593	7.75476932244074	7.31538892353503	7.72325315981905	7.28043949439529	8.12239388977101	7.96034390433139	8.08445178994201	7.11522107781665	7.60765417416285	6.94356149509674	7.73602627460958	6.93329076218235	7.45752880348457
+"FGFR1OP2"	6.67135508656229	7.1206778869304	7.32840926855866	7.26546998455454	7.89389636624747	6.00338557292506	5.9301407486862	7.13676753773698	7.53827055757277	7.78503840256841	7.16934092227715	7.62932605062114	6.96323582620903	6.23520090115673	7.30307864533704	7.55255698422607	7.7407013469702	8.01685922744299	7.6130013087934	7.40709566111599	8.00832948944299
+"FGFR2"	8.08962091966167	8.07728851259871	6.67762393181408	7.33880117224428	7.48176297611127	7.2226199551717	7.83143034967002	7.99655632813535	7.27513403544879	7.29099411533659	8.51514009429942	7.33436908632116	6.91438709392853	7.16455031299821	6.85902090969804	8.50503015332171	7.40035905200277	8.58835254242658	7.43593832745691	7.2104736849827	6.91602864649937
+"FGFR3"	8.71682883858312	8.39622476989193	7.48802105112226	7.47153140004334	7.48919437101237	5.86952011708934	8.08895615535008	8.01975709251968	6.96279573428051	7.51898757919248	8.37208361447756	7.72809896795373	6.23557917849545	6.49321485462296	5.77048366857148	7.48079152586404	7.56684348464383	7.22907461555708	7.30718018322902	7.50048753634374	6.91561257753554
+"FGFR4"	5.07122855780795	4.58931280518163	4.62049773946041	5.15037478945368	4.67528122789625	5.15421464215208	4.95841601471135	4.5467958394896	5.02911786542874	4.77584452429319	4.9644836038757	5.04683449011072	5.4096866958023	4.7869372112844	5.06074985703244	4.56469434736837	4.89421555606703	4.84449108791264	5.062810411599	5.08880474929511	4.98280669193352
+"FGFRL1"	7.3804070296492	7.16505754971952	6.12828231797502	6.87048656657889	6.33608945929445	6.56608964120035	7.72252477052712	7.51302661363389	6.61022339903917	6.79056139989479	6.85449943154279	7.12693161906349	6.72859133089718	7.18436480019178	6.44067483123101	6.46350597580026	6.87048656657889	6.37873414770657	7.05096489111237	7.01663223529065	6.61906741493603
+"FGG"	4.4338526546948	4.08193599403084	3.9580994885973	3.94298627485983	3.95469329677662	4.61126835351242	4.52630760595256	4.01615771219074	4.02250643577413	4.04069134263466	3.83353097716374	3.95237172759877	4.04224978536589	4.18052360800169	3.87335900067404	3.64574151806053	4.01615771219074	3.94298627485983	4.20462386016902	4.07815434834664	3.97121169960447
+"FGGY"	7.29675902320532	6.93607743437299	6.8317143296803	6.59848013765718	6.84341702022264	6.16690515132718	6.68572817990134	7.46161113405653	6.62159775259946	6.85624452889625	6.94363190160703	6.67140120086831	6.60816656834009	6.88330626713481	6.1997654092772	6.76826527863109	6.3093877247869	6.83991153404891	6.59950436862847	7.11333362035255	6.51819453050535
+"FGL1"	7.13881286863966	6.76491161518897	6.56632847837282	6.85194589202833	6.44571221802421	6.64305054432129	7.08237228873327	6.71824969846691	6.94066245896141	6.64329455392387	6.5784996148362	6.39842750781231	6.91801294384644	6.9380502407972	6.751147711837	6.59642859364859	6.57428070025303	6.54680225161712	6.85377823445883	6.63764149010072	6.69459508520502
+"FGL2"	7.12196683775377	6.86499040747829	5.16618195257782	5.60758045347422	5.78030585200675	5.48491982759414	5.81923767666098	6.7182415699055	5.47431367402138	6.17483474824185	6.05343146989646	5.55576369770416	5.00480605901026	5.78857050305736	5.79606487829458	6.50487910895491	5.82102896675101	6.32454687508393	6.79949832634754	7.16652266721708	6.16156939813647
+"FGR"	8.34904090086164	6.27239617044742	5.54479497477248	6.70346705452511	6.53010645046284	7.56393903521236	6.82651686322785	6.8196522992188	6.17288698031222	6.59288946401817	6.00703961151351	6.46096467962818	6.83451090295632	7.41669839732914	6.66893244835951	5.78596616985549	6.52813120898041	6.58030839817232	6.15324945476971	7.0839875246391	6.51922827478149
+"FH"	4.80074780449299	4.79245906794678	4.4200898372589	4.73383815512621	5.97993590102246	4.07792606942969	4.66564780059121	5.08434163260989	4.96820431081337	5.73591343629069	5.23926886600014	5.58564655310124	4.44513905779915	4.24035909939415	4.36193267304848	5.22928963159571	4.90433424895236	5.50117566231509	4.42309693262793	5.85952345550961	5.51857239017416
+"FHAD1"	4.36525095537253	4.58071983232089	4.70544260833083	4.69136407185154	4.37253480609131	4.86273416149366	4.83679444235415	4.83928790529876	4.2947976575029	4.57512919121534	4.55764273726522	4.44861329886775	4.49497619638741	4.74156574373723	4.97462520782572	4.55090976862686	4.4752576076541	4.34169691025264	4.57512919121534	4.49077172569414	4.62575251451765
+"FHAD1-AS1"	3.76649585251223	3.69834232215837	3.83466993403898	3.76983760512187	3.88078117777919	3.82111681360879	3.75697958205546	3.8407343484687	3.67886882346042	3.76649585251223	3.83314424323035	3.85832735811911	3.80869097216387	3.7289399058038	3.83881186154854	3.95548776508015	3.62697476855738	3.48401303533419	3.77840740537392	3.65829559536538	3.86779345811354
+"FHDC1"	6.06603017584878	6.50280517577112	6.39956000404297	6.76551541483693	6.69898220300369	6.70699375753437	6.62423810495824	6.35346723828212	6.69788000210891	6.53036259315506	6.33797559787469	6.51935873641739	6.94291754943497	6.81951788465433	7.25519876631456	6.3850449786764	6.69806643280236	6.31564165058825	6.29714704268985	6.52520736379619	6.67241170867986
+"FHIP1A"	5.44849796380885	5.71801892931176	5.87084162075955	6.06158456927386	5.69497247617494	6.1941598164269	6.30607235093711	5.84360510921332	6.07229992406273	5.5421773750114	5.62259646278022	5.7637414832805	6.15146958339379	6.54146808189856	5.8797578682831	5.82647585281959	5.89627515076034	5.4562522828822	5.99055522756404	5.77988119876869	5.88775845658426
+"FHIP1B"	7.88973322733383	8.22573855392917	8.25306957781855	7.57311983803979	7.97079905291828	7.07166725364427	7.75099890086246	7.5871894859433	7.23573090892828	7.78830124350784	8.17849127062954	7.90222535169653	7.49119741238096	7.60954111077851	7.08260199064876	8.18516431780462	7.71375700873465	8.05908896354252	7.6967431700858	8.19853354613596	7.75099890086246
+"FHIP2A"	9.03259264794084	8.67871248281496	9.28387714248311	8.76845442693822	9.01217601791034	8.55235678505407	8.60046666215941	9.01677553965449	9.03049864926565	8.77809722986758	8.61422939028936	8.78997649505655	8.57174570314407	8.72075700186516	9.19857456662804	8.57758304334345	8.86274310036372	8.83404366085044	8.88936374151318	9.13640445752364	8.84219350416271
+"FHIP2B"	8.67717879419756	8.46785805485712	8.61205474075628	8.19439050452375	8.36489097654591	8.51358206454532	8.32219998305577	8.38999047822621	8.20321575373471	8.25098848209663	8.51625018603794	8.31095411292068	8.12534301730479	8.36489097654591	8.42642306007982	8.37962228919387	8.22102408269954	8.69636227631834	8.22565839913341	8.33344317573174	8.4300090785269
+"FHIT"	6.79203114253252	6.71559353843871	6.82627811176534	6.3623995350418	6.86410043165316	6.30852136071082	6.1117177520039	6.72373714020073	6.40868674303362	6.89982110227055	6.70579919937004	6.76826145778153	6.48598458128395	6.56769512136079	6.28552169706969	7.32999599991165	6.34715205035462	6.97819438383475	6.63901985158632	7.25024356738156	6.67066341876858
+"FHL1"	9.30081363213187	8.90880226782641	8.34588098691691	8.6808414624055	8.9584854840525	6.91951824663056	8.40701611320294	9.03054534002771	8.49246716877481	9.41293356925006	9.18917694950005	9.27270148519587	8.08737840062193	7.94327349065355	7.91937595987779	8.54428840252649	8.84852168175168	8.30296435545164	8.71857667301961	9.29161489276053	9.12326960429525
+"FHL1P1"	4.42858902384903	4.71928956111236	4.62832854389565	4.91466704249947	4.51245998080963	4.62260141054136	4.63260434313843	4.74572092122075	4.64846312662636	4.72615383865004	4.490931552171	4.59103344124643	4.80419531992814	4.84461110817963	4.97418478805489	4.90857562396191	4.77558343118484	4.6841037233774	4.59278206806594	4.66951430641645	4.65675343327746
+"FHL2"	7.31750201681083	8.54312158542739	8.5377660472753	7.86786521739605	8.84255650466374	8.01525001602733	7.26772271922173	7.85742533296589	8.21181459005373	9.06701537758413	7.44774542450696	8.53977761741524	8.05576996353836	7.897871669224	8.20744110939381	7.84098239985865	8.37912750883452	8.17157211966543	8.22426688757309	8.6886358364548	8.64726211507384
+"FHL3"	6.95025246942901	6.65026269806532	6.30997109772858	6.68810600898118	6.51715777176981	6.62378221614846	6.51764909593417	6.30047720978892	6.6382774077062	6.66945283564329	6.434967320991	6.64351909491205	6.88289811188077	6.88221122286987	6.60424680594401	6.583493957092	6.55760306617614	6.44712855812739	6.45491673475528	6.81777523047468	6.50137358548302
+"FHL5"	6.9507808548182	6.4384342006849	4.46569082689668	6.29329962679233	5.10923275920316	5.82045546466059	6.5076490231821	6.60119971129231	5.67624719159909	5.72670777253262	5.84680436663177	6.06378284221862	6.29966563066443	6.8539056390786	5.51852913240992	4.46948582334242	5.38842459547217	4.8415617551137	6.20825330330606	5.38122625344644	5.39929470132354
+"FHOD1"	7.55700136298774	6.6715434584449	7.10982996439402	7.13287743038198	6.90237709266814	7.45399725630587	7.06741153563858	6.90774836228665	7.06717999913554	7.0077995537454	6.91751124242506	6.53193400772458	7.31455010825638	7.28175055831178	7.25519876631456	6.58345976490156	6.88769787828925	7.05443035280109	7.09096647325483	7.39942009202561	7.50642777701116
+"FHOD3"	7.68718302020061	8.25880625509364	8.42209773317248	7.8363045373959	8.78603308114257	7.64484667327994	7.22539627267613	7.70920512770019	8.39064110259272	8.61745728643736	8.00885178831096	8.46121211602737	8.32445472772948	7.68454106860051	7.95367049507247	7.7544804792691	8.10656436540952	7.92147477662189	7.7192927127952	8.65704934641718	8.55261324398116
+"FIBCD1"	4.30923821664179	4.24989952779523	4.72704234594379	4.5778976651631	4.50788119024553	5.44061319479109	5.22616909027853	4.40727565577578	4.65798759635343	4.63713425929523	4.31695370387739	4.18825108112563	4.60109936358868	5.07317013158007	4.45311904948888	4.25673708213759	4.49226020451996	4.24032026198868	4.76926676174033	4.63565432077105	4.56395769018552
+"FIBIN"	9.44080692663049	8.96923279624981	8.2866825389291	7.88712513173976	8.33297218906195	7.09291561128086	8.39961547334257	9.24481178310947	7.47616889260624	8.19361371063139	9.38008904487724	8.56695187093205	7.44805823672549	7.42477502253242	7.01451001864172	8.68513583209895	8.10790022910175	8.50421484953572	7.94225798239836	8.38710724742812	7.87069598014447
+"FIBP"	9.20446550583166	9.28860292356202	9.44550047252802	8.70258468356105	9.66302546494604	8.86771580522938	8.44132511143496	8.64711104039054	8.86687097945856	9.58517614661588	9.18912726908635	9.53145283699358	8.83000733599546	8.53397504618277	8.69490076203749	9.51437728289	8.97197851861291	9.48035089487389	8.8623404490271	9.96572440776302	9.65754359722135
+"FICD"	7.65016669046712	7.62979112144653	7.86818120965943	7.59466669888128	7.93230919237807	7.58881993291039	7.5739682500455	7.41976989726522	7.57393197766303	7.49116688897326	7.59889720615998	7.0477883891769	7.42952245442657	7.70184953789547	7.43483145313157	7.85968525863084	7.15118967813152	7.68754346758596	7.44557157808813	7.82999108839705	7.57999054424517
+"FIG4"	8.76252100479842	9.03568620484006	9.27326743849723	8.8780455638098	9.44088186411229	8.69011298890461	8.44375738364464	9.0698931540844	9.22786511398224	9.10667241280875	8.65004983486358	9.06237525668582	8.94018203016352	8.56863880552038	9.05650498952333	8.76198882609362	9.20308321963295	8.99883778602941	8.89666898550526	9.47017008815025	9.13378958322654
+"FIGLA"	3.68066303906324	4.00364320395709	4.01615771219074	3.93725188114354	3.81558417031427	4.19119215799431	4.06433521173519	3.93725188114354	3.97316954927047	3.77113345467547	3.74221283711914	3.84054160309622	3.95141154672365	4.11550160679323	3.89398515944462	3.9324185414848	3.79514074796675	3.90528730793205	3.79788204672626	3.85581416467659	3.93725188114354
+"FIGN"	5.43271428611094	4.49391104276885	5.55599166263476	5.2271258426205	5.41278817612461	5.15153950008199	5.117408912094	6.03800504606506	5.21127024076091	4.63437588729024	5.46735230944612	5.19195980597758	5.14656309115428	5.30414423973762	5.94547618662933	5.16832902236931	5.0508694000121	5.36567421818529	5.06313350424622	5.18116514205517	4.89302550262425
+"FIGNL1"	7.48648990688061	7.47441446810072	7.9892394435386	7.33202510328216	7.69916042539788	6.99252582287807	6.47594545256609	7.12799107933639	7.59250275730691	7.40558756887196	7.35592929390203	6.99572009600953	6.61173765005913	7.06232092300709	7.30169495387087	7.85971277887473	6.94873020263284	7.82113559660767	7.28538182069523	7.01714163905033	7.43287924378817
+"FILIP1"	4.22693518321964	5.46486680137932	4.61738986277418	4.24840095652908	4.86895344648217	4.57713522096131	4.33775282618629	4.50425645093695	4.06416804211047	4.558702776606	4.38304504569714	4.83363574253001	4.10806098549372	4.56577666839312	4.52816548933714	4.43103445318638	4.31453709449163	4.70078336295778	4.24858890530331	4.30291366200137	4.57397459723462
+"FILIP1L"	6.60199638542994	6.03728305962018	5.37226330084355	6.69484801541787	6.66372985891453	6.93579230570757	5.62812378273105	6.10578087324839	6.36684748168555	6.1289178409885	4.12940532904854	6.57480392548036	6.11942527607098	6.25711154398273	6.07051816683642	5.20614387392443	6.25711154398273	6.18513495776395	6.32963540249965	7.03706529092914	6.77196161190978
+"FILNC1"	3.367925732512	3.32451992769788	3.34971726294459	3.30836677292992	3.26961342704724	3.3175644954847	3.39375108659888	3.23591244776322	3.25680833965064	3.39926933639045	3.25901375625409	3.36766443155823	3.3175644954847	3.3175644954847	3.36745270829621	3.14050860709436	3.36745270829621	3.32752365630185	3.26367531848532	3.42043762015904	3.3175644954847
+"FIP1L1"	6.6479591759769	6.49576276296102	7.21768444819452	6.45113393139097	7.1741336512854	6.66237402427022	6.56172707773269	6.5188658960599	6.42863036591272	6.59374427674492	6.54107652276749	6.97482047617051	6.28054632323293	6.6686644296025	6.66237402427022	6.82471844657042	6.4873822138358	7.49964438967077	6.66237402427022	6.85300309644892	6.66237402427022
+"FIRRE"	3.64412061090917	3.75345936977004	3.46856592685445	3.47840710357134	3.72992299680568	3.82357856638865	3.49258368468902	3.42580700395474	3.84759812062186	3.74411476583002	3.69834232215837	3.69834232215837	3.53189772226903	3.84746626312461	3.66664336770714	3.91773961670182	3.58221314824571	3.79812741608534	3.55197648497312	3.74138163612407	3.73498412521348
+"FIS1"	10.025244547132	9.96561214274254	10.2040895880685	9.56571410431278	10.1132666255856	9.71534641320005	9.94796063301365	9.88756590192658	9.68851292262291	10.0959992493303	10.3509582996359	10.0469824290613	9.41400131591931	9.55135458393178	9.63290710940196	10.9310279571088	9.66822048973149	10.7895121238875	9.93817403777564	10.1408772900081	9.75029644191371
+"FITM2"	8.55549053596465	8.43137910389742	8.82399320392535	8.55152339312768	8.93536235658851	8.53471180807346	8.2618999994284	8.35602519259851	8.80239765113022	8.95175481173733	8.27252563700982	8.55406408820772	8.35964699524883	8.13310810060284	8.31418530909189	8.95636040146788	8.53199130798402	8.82644257515967	8.53710874579071	9.17966921408409	8.84106834855358
+"FIZ1"	9.1345861839634	8.9571029463202	9.01302791481405	9.07058463419603	9.05620267287659	9.67705831706264	9.40829217475276	8.88517525595164	9.27612924422109	9.02765966247495	8.57920584868236	8.82153693423164	9.27826887634241	9.50273990264373	9.04349976220094	8.86567855218362	8.94562289206125	8.81974244686104	8.99539892383323	9.15965617591508	9.14898538818236
+"FJX1"	7.24845500705642	7.57776048478715	8.375828052862	7.35760580914717	7.97070829587792	7.58147007706454	7.32781602283424	7.61784563267785	7.94967381990435	7.92320347715322	7.55590900923461	7.26286332286119	7.80278665975537	7.37072521547029	7.80186177723778	7.25964528013248	7.32770401146212	7.64527360906706	7.06356409032097	7.94967381990435	7.79430661130378
+"FKBP10"	6.36977725754723	6.38423782262642	6.35710857135517	5.95982126925519	6.66372985891453	6.96902695795469	6.86700933619292	6.25604502223783	5.99848265629615	6.66000612872265	6.27491531476537	6.20955918560086	6.25984063084994	6.55906097447666	6.09679409477056	5.95113577898981	6.22607722011946	6.5752017709459	6.20117749727378	6.1739738500077	5.80225672613415
+"FKBP11"	5.45431728749144	5.19460825328732	5.20280921737355	5.64254636641704	5.23881826531862	5.40897309651704	5.05870436415663	5.58825719366139	5.63477374239158	5.91536334384264	5.04605371576315	5.86238343611806	5.56035088690433	5.20528096738348	5.41759730121164	5.36566996584778	5.52978187969386	4.88134148696805	5.43134249507266	5.80704814905133	6.00547156321505
+"FKBP14"	5.99733811949661	5.83231018638549	5.98757984579674	6.03295403970167	5.83738336233055	4.75391176901744	5.81290756343318	6.00713810440842	6.05489542663291	5.85377281222037	5.99207158838396	5.70881492160149	5.5941733389914	5.56319368821177	6.11244726438579	5.76042793477428	5.71381859224165	5.96435061883886	5.75911911869957	6.18166548008774	5.52627942545334
+"FKBP15"	5.78829482670479	5.58101999444998	4.62537730321582	5.11070558486645	5.74930865195559	5.18344337251908	5.37577734925746	5.65256525903079	5.12138944793926	5.47350297025284	5.6076454387348	5.25791480828064	4.96178846008747	5.3806867218128	4.94027271675001	5.56840259310852	5.27810267206749	5.428997460189	5.21261732251098	5.42290694885903	5.47100307857804
+"FKBP1A"	9.93196934146628	9.70807895954468	9.75303091863757	10.1466165507872	10.3418062012264	10.1566665631418	9.37656441369683	9.77822613525978	10.2334324018295	10.7575083860343	9.63086892710131	10.4668838495782	10.0843883997523	9.48804367353804	9.51204372753938	9.77401268111361	10.2695062688868	9.82086242596407	10.2492405496423	10.3669503443737	10.6265165065681
+"FKBP3"	9.05369938054041	9.16540095908673	9.66139787376447	9.49505952854087	9.63533225427619	9.35850828705615	9.11701902883908	9.4005875795673	9.45048746734466	9.39764098992414	9.21203687811794	9.46172628595078	9.41012362677018	9.25676930571652	9.46981700089361	9.30250851800419	9.39977835983017	9.68906817197657	9.48979809176383	9.41693576046466	9.43951481943889
+"FKBP4"	7.52122642520063	6.81364825402368	7.05820331119393	7.82790870940682	7.34371594189027	7.27330363065872	7.87637810320341	7.70788882681704	7.65708981639754	7.61241031028671	7.4631771045501	7.81827465310372	8.13250057287756	6.97864023302892	8.17878268740381	7.93283745417643	7.46749997461325	7.67384420841038	7.93513604026278	8.151265602434	7.93263669975881
+"FKBP5"	11.1302543225791	8.86433050522206	8.04650780590003	10.4077757489489	9.85841780864374	10.7243318425009	10.7527571094298	10.3217750218603	10.2377578864059	10.6378374007192	8.12938710595374	10.3253794245067	10.1890015203476	10.8992317957544	9.94057568697715	8.54670001641784	10.4119984252565	10.2153020324786	10.492670288041	10.4084324409381	10.0956248597196
+"FKBP6"	5.97951777597861	6.33305494348058	6.32504146395817	6.36092772014494	5.95841411700803	6.79218558699473	6.66668178622267	6.34717101271961	6.44475086036862	6.25300123911043	5.97422507209675	6.41514183788059	6.39533341037198	6.81008870326671	6.52031636278164	6.33062621589482	6.42503542177026	5.87230984185886	6.23230764548169	6.37762847937247	6.14515587135059
+"FKBP7"	3.89321465424803	4.18976499153455	4.01623317449625	4.30911343216817	4.31205407230737	4.65336814170263	4.32351478355936	4.20479628536753	3.83561005670718	4.21749257809528	4.21749257809528	3.83986593474062	4.24169221121256	4.64895017570272	4.22755470341769	4.253592738339	3.9622322989162	4.71231084908583	4.20540050951315	4.23224030518837	3.92856012015721
+"FKBP8"	10.1175398314713	10.3225095223265	10.3961751816275	10.6121303940895	10.3246155944792	10.1231058521549	10.3617390558954	10.318552735155	10.3227196921029	10.727961082781	10.2770600206867	10.83505984312	10.666859520908	10.2726739510626	10.1012618064758	9.92199288522579	10.5566894220466	10.0115444820906	10.3845974646311	10.6505206372063	10.4555615367156
+"FKRP"	5.13770292474018	5.37252219463883	5.05464495393278	4.83871969833046	5.33358936572871	5.15421464215208	4.83924610479485	4.95282292127317	4.84065146752018	5.68000847178663	5.18879354520698	5.65022214661541	4.99916844764486	5.03425362629019	4.65865631388699	5.9235146454835	5.48866518649709	5.50240007360784	5.20327950487321	5.49625124869927	5.81620706699939
+"FKTN"	7.42175984012665	7.41560909375556	7.62006228920848	7.02956042943242	7.41454265036114	6.84910030183596	6.81224888792222	7.03616277545324	7.04656125706054	7.07175106454519	7.51843698205208	7.01511173248658	6.65736885876409	6.73833579171416	7.05746288222176	7.59107436150509	6.81585738794613	7.71820779195886	7.16919416742774	7.19183925351856	7.20519160368244
+"FLACC1"	5.03379837123567	4.9484706789049	5.00474322908638	4.97365814236833	5.02976404765387	6.11392123929375	4.50860832841468	4.88301371079985	4.91912212229306	4.86488903877491	4.86874594124021	4.96353482213664	5.09529552371629	5.28893393993814	4.95771342590708	4.64746135544929	4.94872854576802	4.77802476052624	5.01827155028939	4.96353482213664	5.02687591687123
+"FLAD1"	6.62650047163807	6.46609057402462	6.57953220163128	6.44754587034681	6.68795626260385	6.56895378251751	6.66771860995475	6.62802493535147	6.46964488619953	6.74090028382873	6.54112101133307	6.79255276526447	6.20081966624657	6.27728653185781	6.73384168582309	6.85127658721311	6.39976519623215	6.80395207449968	6.95623955288718	6.9319807736647	6.92221421260843
+"FLCN"	8.66738672801301	8.7901195115171	8.00672944505679	9.49094968237288	7.40360197219086	8.67089192628001	9.29758540410001	9.29260676813444	9.86625806548089	8.25608512472189	9.02953508985624	8.2464571755787	10.1871839644581	9.61082374113908	10.1741622527982	8.70788621717949	9.33944232483066	7.91449671641383	9.42620311425315	7.94378461639764	8.63612054205252
+"FLG"	3.03615643697882	3.15828382342225	3.36637449010951	3.37698267423499	3.12922776095692	3.43860147009226	3.47283651290166	3.26822690767859	3.21298117002204	3.21298117002204	3.16126977991363	3.21298117002204	3.25835905987069	3.22623080713299	3.33465322302459	3.19771504741613	3.25518701397528	3.12590777746954	3.16367633608087	3.00100749091032	3.18404779816901
+"FLG-AS1"	4.95714848408803	4.67182517268179	5.06341337255022	5.07840127703515	4.67182517268179	4.73905009234667	4.57654953038439	4.48459854142097	4.58821256838628	4.53071394608781	4.64280599842177	4.84921775999288	4.48677001776784	4.36765335543089	4.71662792922618	4.56537266800334	4.77768519612842	5.00094277422735	4.53854488473933	4.86809499442413	4.46557620844579
+"FLG2"	3.23358923077644	2.99890107150098	3.02656915363614	3.19248512760708	3.09139408530474	3.00065706514534	3.2853671540139	3.12899645905324	3.34053208951034	3.00819291367794	3.11950823403743	2.87069464139811	3.34265774299316	3.11950823403743	3.11950823403743	3.0784438314905	2.9143614704037	3.09543466979221	3.16367633608087	3.04710996792358	3.10340068539473
+"FLI1"	7.02521118316289	5.37498208602554	4.39780713725337	5.35990385319975	5.14875551271648	5.95652993507858	5.39851291129448	5.7403924247422	5.03693434235008	5.39895405151906	5.45824163428025	5.08905680694636	5.75632625087399	5.70585885719817	5.63504337891299	4.69336151143795	5.49541917209383	5.30474787835846	5.14828125385931	5.42787232083436	5.18888558895602
+"FLNA"	9.02963793312335	7.63337668084133	7.98139832753716	7.71277066524899	7.49058903516853	8.37879381277012	8.58031937544793	8.21863228256961	7.33133036899658	7.68832021238756	8.25334140715616	7.83924232080207	7.83924232080207	8.33543365329854	7.46785274783228	7.35633447288528	7.77586947599802	7.48178607248614	7.91017999621317	8.20640502441774	7.83806736834135
+"FLNB"	9.26941336779411	8.83914742524784	8.63269704124637	8.45730825768686	8.4796926813279	9.1940054529792	8.4828854300988	8.41048093572895	8.3260244466222	8.34398411253408	9.23374844820725	8.46121211602736	8.38640213081082	8.79232072172358	8.22802173827682	9.43516306390639	8.57262016214094	9.16517413930844	8.59238216303295	8.9223541631853	8.92765500888313
+"FLNB-AS1"	5.01437009021633	5.31904632834434	5.32692006831047	5.31709734252583	5.16854249761319	5.44751082394185	5.47278533428175	5.15795163913769	5.46438993974467	5.1428333831978	5.11806963240212	5.24921636777845	5.32952095202746	5.37190771870304	5.39085710263485	5.05050067237665	5.33691139859507	5.15402703397306	5.31547161966513	5.31927678360765	5.3386618682145
+"FLNC"	6.98077746598016	6.94445814723994	6.99045256689998	6.67793857237568	6.72888854761828	7.29745151518023	7.38005012508558	6.52141623116222	6.79379591946419	6.7738073707211	7.68119911563873	6.87659932174439	6.93847528806521	7.31094330651085	6.64737513990755	7.23806297316843	6.90352521951383	7.49402940847833	6.96163959760113	6.97867700513894	6.65482373518155
+"FLOT2"	7.25582128452716	6.66237402427022	6.443834933189	6.8595286161208	6.9373332876586	6.43775778606752	6.75648801427686	7.37893614551557	6.79318542149995	7.31188544527201	6.90711703822268	7.28060660789967	6.6671181867958	6.72447648435516	6.81244332672325	6.89530250639844	6.90503885390091	6.79508310492225	6.90711703822268	7.63583130094061	7.30191634748267
+"FLRT1"	6.99512697095259	7.37629490950376	7.85130054558307	7.23964705149972	7.57364966690352	7.35236865925463	7.15828580518636	7.09257972793605	7.06717999913554	6.96633744834994	7.55417664998979	7.04674849122433	7.30188509065331	7.48080662317657	7.10123258504385	7.68858981267103	7.02161261866895	7.73450115917768	7.04403287650056	7.63674778681916	7.15156093561002
+"FLRT2-AS1"	3.79507553960803	4.1310976519126	4.33363479670344	4.01969830219366	5.0912016525171	4.10133197126357	3.71666916048792	4.0065398781036	4.24720555904958	4.34057268666813	3.65339246072752	4.78768626847165	3.68410371520759	3.46682115722091	3.84367472264081	4.07274501072541	3.95695201921638	3.94992065640432	4.13422150784232	5.36724102242157	4.22540255587129
+"FLRT3"	6.73253309867692	7.56366257762154	8.24583362459107	7.490760519677	7.80155413965054	7.29091923854158	6.46964488619953	7.39685754091895	7.90398007116476	8.21826887110437	7.24701300274192	8.5044382088629	7.57585828503546	7.2596887710881	8.13552768774885	7.2570382063525	8.10168828015445	7.70871554286297	7.89608388515631	8.13292926353181	8.02750661484255
+"FLT1"	9.1558117737263	7.22869542808586	7.13668770031538	8.00406630581072	7.83993824238518	10.2500314183848	8.3566653577375	9.12273784659528	7.49988589105188	7.17706385773287	7.15734674393939	8.10957738848599	7.88943411748464	8.71356843060056	8.06291977227018	6.93260379958555	8.63336347163332	7.12380470404204	7.10937573282182	8.0724346919426	7.49999003854108
+"FLT3"	5.16312135987642	5.79976601284619	5.99502849823011	5.54300675593903	5.63267208171555	5.62113053619882	5.76294624498541	5.52526297272783	5.68149879920475	5.63488724362415	5.1701466571937	5.74823199221246	5.81447888308407	5.81262757342047	5.63488724362415	5.54560788576072	5.73307020904454	5.53707091179828	5.69847450657452	5.85302704683497	5.84625258784383
+"FLT4"	5.09745898053812	4.41480861477629	4.1145547603626	4.4239471207044	4.51601382023375	5.65026436519264	5.58119112435369	4.71354924920628	4.65157319088745	4.40371275329665	4.55072000108511	4.60241660067765	5.06097700227348	5.12312175566063	4.60432838805109	4.47735428183349	4.61916955777863	4.41268509584063	4.51806112424815	4.40000255427569	4.49098363946278
+"FLVCR1"	6.82781739644565	7.26887325082405	7.91918354828888	7.00640024521493	7.61700144593584	7.2517100321045	6.5422067791773	7.26416484525954	7.05100458880325	6.83803105466562	7.35589176315089	7.1653183291516	7.40984688685213	7.32300049179205	7.855733426779	6.89552182510538	7.23418631877022	7.98994823489623	7.13910392383624	6.75451618793906	7.23244882227971
+"FLVCR1-DT"	6.03642625174018	5.77872950452485	5.75229246789141	6.27102588270816	6.53883651718134	6.75879252926118	6.03419139609067	5.83629665155226	5.97550268187037	5.61172238062259	5.50117519779455	5.88451771739245	6.29571314460315	6.44647995032213	6.03419139609067	6.03419139609067	5.77840805341286	5.88090888010447	6.09216297285577	6.16740074433293	6.27461752073028
+"FLVCR2"	5.42884036133332	4.61552486600255	4.54220930487948	4.49936525912734	4.53429328962109	4.53831382080888	4.67989848514839	4.5831547354208	4.5314500396118	4.65041605983627	4.69846923656666	4.42590236384705	4.62403072783591	4.70993955202535	4.41063380519601	4.52313991782531	4.62775391991545	4.50161232372389	4.69951386454477	4.68620588202006	4.90101329578106
+"FLYWCH1"	7.42458130649912	7.24291655034341	7.30348472627305	7.12876860068031	7.47671924562389	7.2337432868057	7.23817627049027	7.2625113465535	7.23920435777697	7.55485931753772	7.48200601096367	7.73421132540893	6.94789125115331	6.70703915315287	6.70069825481128	7.7117848526585	7.50363459790865	7.45600974846188	7.37260741589811	7.70890419640592	7.73216198211233
+"FLYWCH2"	7.15997209431802	7.10579212644105	7.48908350128491	7.10720281278235	6.98051383086778	7.29393981913125	7.46721544830157	7.07441218467444	7.1771904777038	7.30009760801165	6.91351781361056	7.32866608736206	7.35895230744762	7.34625133931714	7.14214921857866	7.09329959017167	7.12807148646098	7.1771904777038	7.19451048982567	7.05876524329213	7.2495612133133
+"FMN1"	5.36714797092687	5.95202365211241	6.35806986981851	6.16468867836884	7.4852683877617	6.21056962498587	5.66924473452819	5.9003923629044	6.23222175473838	6.2244286567199	5.6997941567412	6.61209485747741	6.29886858194999	5.94531405495682	6.48952557349429	6.00604742312689	6.55563585572731	6.319784524435	6.15280353122745	6.72180271745808	6.76863985847864
+"FMN2"	8.79756305337107	8.79043306874804	8.64799429549777	8.62547167296118	8.72831290954524	7.28193154751261	8.7224164227393	9.10109770091049	8.70244126481314	8.64762510285149	8.85994510178766	8.90869647094876	8.70786640621701	7.95933888694563	8.60978452582525	7.98748935825855	8.81413320147661	8.39416953066779	8.81213493168417	8.6976911081825	8.62189984278046
+"FMNL1"	7.81837056948105	7.71428753661285	8.03136794691225	8.01112052148834	7.77172458162802	8.28823005682983	8.5993308009275	7.76825157343059	7.79299059431307	7.88057723709548	7.52598790619547	7.84180867929064	8.13153706041144	8.35191273673755	7.75120259514825	7.55207563070288	7.93377438603357	7.69101429650403	7.95699931849038	8.14319320466615	8.05172841977428
+"FMNL2"	8.97095544972554	8.8989833744749	8.95874412602841	8.97657148507441	9.20787209446264	10.3774924963724	9.20904991553448	9.13387772865764	8.76904649917517	8.44828909085372	9.79640828089223	8.4187602111379	9.00492183608722	9.44775204661364	8.95726940843097	9.47674116427698	8.43627553599621	9.63529734909368	9.12811923238065	8.34789540712589	8.40157044722666
+"FMNL3"	7.25514444476747	6.51100922203202	5.65894679064849	6.20805319758212	5.98736150863083	6.76752908171698	6.91938901268164	6.46888410113715	6.01958164949385	5.94171580431864	5.95175242882407	5.6174118328734	6.01790887089272	6.72619719550441	5.88439034533424	6.61325492235163	6.431948787424	6.91938901268164	6.06585738396114	6.2316419397179	5.79114734971711
+"FMO1"	4.44852772844697	4.88623822632751	4.19818030628423	4.41205235609454	4.61199383909598	4.80351106013218	4.88472131467463	4.67833492341149	4.73780036800828	4.48778175880858	4.31498760705191	4.54137198263651	4.49124308229468	4.90728849805027	4.77833872548826	4.53552366041602	4.67264775769089	4.21324944602977	4.2493817728559	4.77261293374499	4.49008176145483
+"FMO2"	6.32068426860143	6.18525411831997	5.86362160247012	6.03837270463874	5.79101357212549	6.21697709864174	6.48651778350955	6.82996191622513	5.61284961295292	6.70631655156056	6.09908648841167	6.03941758520597	5.94208268328593	7.16677697954399	5.78262174834488	6.17388351644803	5.77750908354358	5.48586292530663	6.62765692022607	6.70930280119678	5.88514766929189
+"FMO3"	5.83187966722587	5.07094211181036	4.85227407992614	4.94936370266715	4.66815149209238	5.22699525290753	5.82905755614336	5.23952692929917	4.97996265113183	4.85310768862327	4.54234385277106	4.67175950187675	5.2320857740861	6.27638749178589	5.24184045619596	4.76258554597106	5.08185688105855	4.90834954392359	4.99287701974204	4.98562281697558	4.77243660480397
+"FMO4"	7.20972051066104	6.87318448474298	6.44055618838574	6.49975064364728	6.49797411665737	6.72521105740383	6.21236089386766	6.60141955524593	6.39487517988831	6.63567733808739	6.86370447238468	6.60141955524593	6.52325476010809	6.68461928977513	6.22451685024142	7.4546090862129	6.61669354212629	6.52265611653841	6.61752835321295	6.49645350063447	6.65557567367966
+"FMO5"	6.21335093949854	5.73971809950586	5.24911150419519	5.9672490007717	5.62744733552583	6.49790155555423	6.27378519028729	5.52439618892657	5.93299173715643	5.52144166382868	5.39118978174723	5.42368688596723	5.71959106661163	6.54619879503915	5.50693407264519	5.71959106661163	6.01197661536815	5.65957096609111	5.94260391882163	5.5530005939139	5.2308144324592
+"FMO6P"	4.40422664719564	4.3703964778965	4.40422664719564	4.44893249528151	4.50375506954686	4.65846386685572	4.20328728564425	4.39267410676429	4.27601487529068	4.58513118445557	4.142262713872	4.33692957709413	4.66508590808182	4.54159185963856	4.30818558571103	4.88898277652965	4.40422664719564	4.33532376820859	4.44024119241603	4.67436751393534	4.54100969284877
+"FMO9P"	3.38882598272867	3.45900233353355	3.45576309769142	3.33536643935231	3.42598080769835	3.54556997899327	3.50894646707859	3.46871486358027	3.52794444075191	3.43685135575604	3.45106259676881	3.24144503510795	3.53163198747555	3.57329422289811	3.38037083417209	3.42598080769835	3.34428352250029	3.31565454539776	3.58695917458996	3.28570219512939	3.34932343062975
+"FMOD"	6.87805292457172	6.82665229594797	6.73863793293568	6.51066711584762	6.65933388187199	7.16893936410581	7.16228331182671	6.92620595532586	6.89533736553864	7.77816949391842	6.61577311001254	6.8573116546128	7.00207457572744	7.29854198463295	6.751147711837	6.61463677494694	6.67032782140359	6.27052543349739	7.11232014240654	7.93443208231157	7.10412093332046
+"FMR1"	9.04175677961125	9.41796584942708	9.41202088738609	9.47993298938088	9.53240761176711	9.03812686813179	8.9071334122765	9.42107996990146	9.57998718117193	9.36838340818646	9.43433404879336	9.2239415971718	9.50622711304584	9.01700264037951	9.56481732303428	9.17647864833126	9.57186115596239	9.42927007726242	9.31920205246563	9.03073679772979	9.48630066581707
+"FMR1NB"	2.90113106061891	3.08589884502808	3.08027149802841	3.00496735452471	2.92820288929573	3.04013726336914	3.51116018933778	2.90243487909658	3.00474637091737	2.97593266337038	2.89785798495906	3.11179286134784	3.20901276928803	3.34755330421199	3.11950823403743	2.85115976020319	3.10750611634147	2.95432218679651	3.02471860545015	3.11607708634234	3.02471860545015
+"FN1"	10.0368511662163	8.92582622901043	8.28938843706446	7.8382890682125	8.45163552138814	9.60401399160893	8.11040368402882	9.12968274455205	7.73378314823404	8.93920099125476	8.92831602294802	8.03136243318904	8.92413722597885	9.23986208612529	8.07815679291457	8.01727276351036	8.69887356116659	8.13867491471435	8.3255368116715	9.90073230859384	9.63340762306055
+"FN3K"	4.35377555558111	5.12593684319866	4.94999028232668	5.21641381940463	5.28423052450045	4.85324671643976	5.06223283549597	4.92449372786249	5.02911786542874	5.11013294927927	5.26835634241554	5.32418378389507	5.24368116427196	4.7404720341553	4.68177871540208	5.62348587893364	5.25493734126779	5.33974203214057	5.07072350243246	5.57170986971546	5.00481820434694
+"FN3KRP"	9.47077410417041	9.33933343709499	9.1249886896446	8.63079976063048	9.24525213401273	8.69871851712952	8.61637958020071	8.90185764574493	8.69459970756445	9.1843440444552	9.3381806794476	9.29111232922987	8.32043432801911	8.79161121521342	8.4072136289124	9.8569448162115	9.10667241280875	9.31270665846011	9.01308544594042	9.27303275744041	8.83720436717632
+"FNBP1"	9.43928228819865	9.50811143733737	9.38422451747367	9.11621129648786	8.8493254856338	8.69048341558145	8.88439926795285	9.03425189866478	8.39438721227334	8.56879370583923	10.4331937435584	9.17444034504148	8.54685591024009	9.00770521488379	8.59837716885111	9.95063800845844	8.53418770397825	9.81095597010828	8.9716979757083	8.71176380262871	8.92905173906556
+"FNBP1L"	7.24798556561319	6.95555432756305	7.37763473319967	7.0964232619499	6.85450452551878	6.51768677115475	6.6720775017025	7.29449127951654	6.75630380077023	6.25158199473871	7.10485437404764	6.75565843586366	7.0038208925016	6.90007809423247	7.05483148814065	6.36981943124841	6.72754824282118	6.80385148650894	6.87276331422922	6.68090656780948	6.55824208599907
+"FNBP4"	5.51740359280238	5.51740359280238	5.57325235982825	5.76689919279131	5.31085921744476	5.27131818188412	5.5400175742113	5.51740359280238	5.53654928937851	5.52342422829054	6.12341960218261	5.45609444450601	5.70499122789369	5.78768051154372	5.5005034822566	5.52763321258156	5.43942864618187	5.2912949051048	5.55342018796923	5.19030308396743	5.34554377586527
+"FNDC1"	3.52975457697435	3.90402006060552	3.47929960527349	3.53932555628666	3.6362907771362	3.62160727492543	3.44513297993396	3.50918133237635	3.56072065816006	3.38363711268737	3.34888745090918	3.37334421265744	3.52045676379895	3.28881978606701	3.77621720245581	3.66076069256676	3.53932555628666	3.73330323833202	3.53083138826587	3.66260686801128	3.466348662717
+"FNDC1-AS1"	3.54142291510932	3.4936956492253	3.50477964347012	3.68141574213456	3.45428329070102	3.60395806236849	3.67634404636035	3.5985855354401	3.88370350265066	3.86769682161591	3.67634404636035	3.53963777247773	3.56342038134881	3.88690788646645	3.8370726040369	3.68453139524439	3.84772761736314	3.47191673003304	3.67634404636035	3.56068895226782	3.91698987183632
+"FNDC10"	7.40945992921445	8.02120624917411	8.37162520456233	8.00583486967022	8.49575439530986	8.52597098053248	7.49638906879827	7.79680780420249	8.25480053341766	8.3538096674597	7.54379549160837	7.99987217776501	8.26153000016909	8.19689561636743	7.75222998976921	7.53809780178152	8.02951820916637	7.75936445876375	7.50888007149753	8.57016127643834	8.45241353258421
+"FNDC11"	5.66533078083038	5.46171883459271	5.5620826622862	5.30909311646669	5.77214127253799	5.77402112049208	5.69874321862586	5.66125498089444	5.66533078083038	6.11549123426721	5.44488697042506	5.51716409340917	5.79981547243454	5.53707552935919	5.64785108911936	5.76996949517959	5.84371445964794	5.6903293085088	5.71859849055847	5.50226584017121	5.87154971920113
+"FNDC3A"	7.07131732617851	6.93249793007217	5.82757927612578	6.7463192588919	6.7203492692421	6.43997451141215	6.54154303214486	6.99463274395262	6.67453090427133	6.74053438189359	6.88428001537421	6.87688433805547	6.46862723220092	6.76257066680091	6.53995828763624	6.72159914191479	6.79278406643172	6.9134054614689	6.63291107424417	6.78425175946528	7.04737869323446
+"FNDC3B"	8.11527270806475	7.16414234258787	7.32279312457176	7.15059766800363	7.28310966818349	7.85653771001699	7.08284074346266	7.77612025419228	6.97670639556778	6.55754978704986	7.17785051132928	7.04446722677026	7.59155677306424	7.01247838164379	7.48322029158593	6.78660973614734	6.8095196682905	7.49562730256438	7.16903184016095	7.41953243032977	7.24563729394349
+"FNDC4"	9.06988782515701	9.09934933004555	9.3170409411792	8.91413780174878	9.38296461076547	8.80705036911111	9.18548058178895	9.00114586573119	9.05952627214381	9.18740201921992	8.6511761281116	9.21118138026916	9.11706636278172	9.11833901418174	9.12718204886021	8.7424291011218	9.02870808438512	8.76430752243683	8.94402393383316	9.42247815178562	9.35193549275687
+"FNDC5"	7.85507589781054	8.12113814088011	8.48357472908365	7.6597597561289	8.35329409421534	6.72894323012813	7.71612791017291	7.79387438344052	7.76650074050382	7.8187078151231	7.40902290774982	7.9463106455965	7.43174555990569	7.3651261113759	7.45346176758053	7.58174806031343	7.6835738071489	7.29742582178101	7.59180200687756	8.7335198146755	8.19547828580837
+"FNDC7"	5.13449612325385	5.02911786542874	4.91457404011539	5.04399888831979	4.97433552974889	5.37270729691581	5.13282878936844	4.98173689984688	4.99737669308896	5.01910209506571	4.77180514545444	4.80419531992814	5.19926014580325	5.23900435800016	5.33668223061482	5.02911786542874	5.02911786542874	4.91709221617157	4.96311487541891	4.7859103289832	5.08434163260989
+"FNDC8"	4.68403459521396	4.97474944331108	5.15108797616691	5.18352402546491	5.00446614590567	5.55938356654968	5.1716869876303	4.84305985536806	4.76698893530104	4.90678566975788	4.47534786447026	5.01850170446151	5.04343358360352	5.34504088708445	4.76594996531139	4.58028008974161	4.79177309211516	4.74059584082985	4.81060469210691	4.94145906772359	4.90374807401276
+"FNIP1"	6.5174922152438	6.70256641721921	6.71593209863425	7.05288204601919	7.16339419848988	4.9805414879306	6.19695239794058	6.65561736482326	7.25069474395748	6.5160187912131	7.35066110008855	6.614534384897	6.76394867565745	6.5221638843384	7.06526507064698	7.48584642517918	6.90937658747227	7.43947709571016	6.85641757999366	6.60002212854653	6.65860047025796
+"FNIP2"	9.36606329112732	9.72274171032863	9.81002463632303	10.1060088857983	9.72598523004043	9.88815560928125	9.02157345903283	9.20273336054935	10.1316097055474	9.77977393346232	9.87930087065461	9.84282734918708	9.8320444431512	9.37296078141946	10.0182977242753	9.94459088902405	10.0452235732248	10.1963423579992	10.0167091656752	9.71341403727876	9.8320444431512
+"FNTA"	9.08499207013478	8.94431877375719	8.03246053264924	8.54174981032327	8.55534297147018	8.25539472221498	8.54201923030743	8.6029360899845	8.29421121490936	8.46438695922197	9.33463877013315	8.33533307270889	8.15124157456962	8.3347794662919	8.23033953202411	9.72167931192939	8.22403118596085	9.44777253432869	8.85325436348395	8.39257504030393	8.42384454669216
+"FOCAD"	7.70199723516764	8.36505862448395	8.73390878554612	7.99916457928738	8.97469375246772	8.67426329726813	7.30216804772758	8.081674515277	8.52357739068693	8.87849417865797	7.9140750255377	8.57425389624667	8.3408866640515	8.02614668600301	8.46982905583627	7.87508382947897	8.96455522601883	8.40029566379794	8.41044025436823	8.90429642727088	9.02655425419513
+"FOLR1"	5.49774807637606	5.02911786542874	4.90680036655285	5.01625630485446	4.95248277901739	5.09405139543893	5.20724382941297	5.0898740212628	5.02911786542874	5.21851925042461	5.1165432962824	4.94211170850169	5.0613514252862	5.14651575271585	4.95038316999559	4.90565030092922	5.18820616055104	4.65238838590816	5.21959900425885	5.05662614095982	5.02154319240149
+"FOLR2"	7.91170558170731	7.73899735597968	7.42990913929445	7.57979923075579	7.56990205025351	7.63321268195457	8.17102215951327	7.52194668456096	7.45823314978916	7.84065876436225	7.46173337636113	7.65628422306475	7.7966904181746	7.99434990242008	7.74855338068211	7.50217010610125	7.51952815815577	7.45187067558	7.60753763072994	8.19386128666376	7.92527472395353
+"FOLR3"	4.92115138762788	4.74449331972744	4.78163249350595	4.91752714401549	4.81495346464785	5.45705591903689	5.42860292418858	5.00016071227282	4.96306768595209	4.86675367956281	4.76968531283371	5.00156889563802	5.10407791080817	5.08722266884944	4.84497891209935	4.61158417912301	4.99169548668545	4.51427075009993	5.0454839850719	5.05497694948843	4.90143068211991
+"FOS"	9.97993823103971	9.03537072304053	7.38005012508558	7.83351702157199	7.67622205225517	9.58224979691906	7.6184715279457	10.7291945381486	7.1163091602473	9.17675862230441	9.10582479809863	9.63204868299222	8.35464367089967	7.89167622226901	7.30997454475655	9.5504632356475	9.80298090113004	7.34271982524165	9.19951602838032	8.4984092103298	8.39866753771322
+"FOSB"	5.75228026481062	6.41493257199457	6.66678086787906	6.27225131441596	6.74151026496329	6.56837503328132	5.75260386680084	6.41879551330414	6.15679034587078	6.38977007695054	5.74988123258855	6.39100358800888	6.18295159178617	6.15532956167477	5.99385117287266	5.74733598042042	6.67662204459596	6.17022839595014	5.84216124252084	6.33754031704944	6.27049331081881
+"FOSL1"	6.58791393499304	6.46863995380466	6.50347014401788	6.66572807112583	6.4347087108132	7.40304432457838	6.64806030103261	7.30850895791058	6.48823136865478	6.22079432922517	6.25101434629946	6.40031802678595	6.75673569446926	7.01289236700537	6.67151759460887	5.99944355062228	6.32443017608761	6.40946379123049	6.28658689532285	6.40318368420314	6.6274038512751
+"FOSL2"	6.11907592587482	5.13816803960072	4.98990274459931	5.27743630834843	5.44897679685665	6.59840645981795	4.94741357671217	7.53582278102234	4.93441020541919	5.60525575485078	4.40994722453418	6.39119080624374	5.42524687603376	5.48267966861945	4.66697220944006	4.44017567375975	6.68791948317856	5.26994664312572	5.31103042668047	6.24533970727445	5.91120956090389
+"FOSL2-AS1"	3.30273101781838	3.51194514017699	3.5409835349553	3.81965771297006	3.41787433211412	3.83542904901498	3.95202119572251	3.64460496447091	3.54191422802191	3.5102169193673	3.53288110070516	3.70932871736441	3.89527559476672	3.61415068957221	3.68829421285108	3.64344023548348	3.64909295262813	3.5453535085113	3.65609522687224	3.6278698021276	3.63380446419854
+"FOXA1"	3.04385858196007	3.07795021563932	3.10046402343947	3.24281882945974	3.18017625384602	3.04048422142886	3.31301405226983	2.83194893217837	3.20149546408563	2.93346372471234	2.99155008963685	3.11150453906584	3.07471097979719	3.0390589784514	3.26199404754458	2.91411675921841	3.18175450427025	3.15931909350751	2.94449805011502	3.11566498894652	2.90261714236021
+"FOXA2"	4.83039394148718	4.887222399485	5.1060814755974	5.02911786542874	5.08358731420303	5.54450087133998	5.75542993354688	5.00025110480601	5.70278765248046	5.26568112921676	4.75216466839291	4.81935153351746	5.40239971067223	5.60203174912643	4.72083029964895	4.726748683743	5.02091879041992	4.76779186584494	5.15667385031125	4.89780785440889	5.03121139831054
+"FOXA3"	4.66784483447504	4.78345846041811	4.8338306080362	4.67350014529413	4.64252722750606	5.2119167287786	5.32074839801671	4.54946903243493	4.88393645131943	4.90361760253621	4.81419695084799	4.8642646192689	4.87941682290077	5.00523868292802	4.91249307413941	4.63879621675139	4.79317780513425	4.92719578539868	4.90333351276525	4.72369697132651	4.57821112912582
+"FOXB1"	4.43515536305176	4.44689754126567	4.7208963490279	4.87178155670733	4.67592972488626	5.26260980672731	4.87598852855677	4.49959687690825	4.68932842201707	4.73287082867198	4.52507543698794	4.70530655481977	4.85040769279977	5.06332789882574	4.84388487265397	4.99008983448467	4.60400916360968	4.53652321320045	4.72547953791045	4.69663078877543	4.85644963328607
+"FOXC1"	8.83125120369145	7.15350281711666	6.91968212071217	7.05522379022112	6.81244039658481	8.71740159302624	7.84125622944941	7.98547019073604	7.21037366574368	8.28436643533179	7.12186070409214	6.62301584474523	8.12899944167151	8.65261220650041	6.90237709266814	5.93325948593133	7.30253163046062	6.72185513669586	7.83511624151422	9.52983394668461	6.88312339725865
+"FOXC2"	5.87724713032217	5.82287033003888	5.50300933066563	5.53160641339793	5.29352235255261	6.27237342576264	6.19090719485407	5.63534036753444	5.18967664347263	6.49721971242519	5.40866741308533	5.36831997954017	5.71047581319339	6.43500738334362	5.32193421515685	5.23914183662527	5.27696113947941	5.16974010203123	6.13133352131915	8.17709327581903	5.29672120216516
+"FOXCUT"	6.29983717868084	6.59023711287695	6.32410273893331	6.63077259504636	6.62440211822918	6.59023711287695	6.86691294853639	6.49749139887545	6.77533191705066	6.48522805014283	6.39025557314549	6.70873160242984	6.68658620267005	6.62172377678017	6.63928218193874	6.53103385938063	6.62948262126677	6.4381074494421	6.59881207806634	6.49803975569691	6.45138348694665
+"FOXD1"	6.84984513039857	5.81849361976804	5.43831439061297	5.78303629235093	5.55771302069166	6.08941696046855	5.93431829955732	5.14314943965801	5.73126494738824	6.5706827155608	5.64644444909643	5.09555420797728	6.09759835288514	6.75160031320835	5.27435766543942	4.92353099758046	5.1551039016445	5.45265253114797	5.66249288595541	7.36914603567427	5.33583477196114
+"FOXD1-AS1"	5.26467636098346	5.396023584262	5.58998915888436	5.55273087233244	5.37069465183533	5.93900793816728	5.95309159241876	5.61693499559125	5.50294894930579	5.53056733555701	5.63579259447109	5.33373399559301	5.69342976384695	5.93963359927825	5.54060824123183	5.3894185906072	5.70978586955614	5.14219416736024	5.68684949975344	5.36243043855182	5.49559739289432
+"FOXD2"	4.09077506651151	4.27121302978986	4.2493817728559	4.38713769174047	4.11533581106853	4.17206189163516	4.56536662441394	4.15451915766316	4.35330024400628	4.42324332756141	4.21062482723685	4.2330209192495	4.22406256709143	4.67316517923396	4.24182908844142	4.2401978942979	4.22220300660404	3.96779852709763	4.36199234754964	4.51252675977591	4.30438306569418
+"FOXD2-AS1"	6.63997291675373	6.45382552298445	6.73560191772339	6.72712506292225	6.49231374836606	7.20817404562751	7.61615806366702	6.42316959745497	6.94310931893467	6.7911402622311	6.36768375425518	6.73940397298147	7.01364382670573	7.15023242454762	6.74295696256434	6.39131392083559	6.85039470461716	6.38834348855207	6.85075488087577	6.68458396877338	6.7233306660732
+"FOXD3"	3.95087067863139	3.78627673299006	4.26263890485675	4.05454455082573	4.03498417852747	4.47944472149328	4.7496193523881	4.1967583079661	4.08950244132383	4.04323253416006	3.87254805219508	4.1665950749242	4.25883785277148	4.36917973621587	3.9628869354987	3.97019206634787	3.97006111278583	3.9453963298378	4.29938893389525	4.10877666866683	4.28954653964794
+"FOXD3-AS1"	5.5540152204011	5.66959749888263	5.88396778771977	5.940549235239	5.67571627290523	6.41320463144483	6.46964488619953	5.80825881812222	5.94619557190198	5.76125936971348	5.59740794969211	5.75777952144626	5.90071730880131	6.41506276171421	5.66167331267431	5.68301219544124	5.83565902012571	5.7661918344992	5.99486131145933	5.71164167988404	5.86551868201357
+"FOXE1"	4.31300140499092	4.22461836963608	4.33928985950446	4.24938177285589	4.46166034850697	4.42594990003699	4.76208265638518	4.2150396802876	4.31929937472725	4.24938177285589	4.00356711212157	4.28627588176455	4.27221696772719	4.48142275299439	4.26751839955057	4.06959286127545	4.1537858526512	3.91977967638055	4.40091822725361	4.14395629854254	3.96737717329783
+"FOXE3"	5.07349848880682	5.26426055479999	5.19232956421241	5.31749955185242	5.19967542934778	5.44061319479109	5.23809177251319	5.21134028093622	5.36884338779713	5.18485763490539	4.94784952276516	5.23881508593424	5.14966127462579	5.43397692527856	5.55169671119442	5.21134028093622	5.30244655467032	5.06469107675522	5.25463691689013	4.90829210866189	5.22025635773318
+"FOXF1"	6.84612193958902	6.22687366984357	5.38285611528887	5.91686461876883	5.94962011945703	7.15195378462918	6.69117276838369	6.48848137683098	5.87615129137834	5.8046063198732	6.03283249757939	5.42809048004414	6.81719604530397	6.55412753087493	6.06274139070051	5.20909707565872	6.91854540157911	5.82287033003888	5.51181219471149	5.8281828584716	5.38884234733297
+"FOXF2"	8.10930295466328	7.09488937523225	6.91047207547236	7.2797226383436	6.98187542703287	7.59023135624194	7.91810848408651	7.44802989337497	7.6054936818871	7.14642334682954	7.3320721076235	6.45847489200632	7.55448426588053	7.94689627818271	7.24198002765606	6.20866008511568	7.43907486798002	6.99682342399015	6.66928786378799	7.61080287246873	7.05448694055237
+"FOXG1"	8.18085613432161	8.22319327593602	8.12010309318557	8.47935259087363	8.42100461399902	7.59843762137834	7.95246768379033	7.93301585586063	8.45319780542603	8.67265429180731	8.09127318149156	8.48901232256588	8.34899172529137	7.64696601413036	7.70997983512886	7.94059784914374	8.31288311010057	8.01868557068274	8.24070188812635	8.33832478614957	8.45980460300153
+"FOXH1"	5.10070342368373	5.10113750753953	5.12057429431316	5.08451140642718	5.11548710506618	5.68670891737043	5.38879506479128	5.12057429431316	5.19266836289675	5.13283342108917	4.85986932255197	5.13886605600705	5.37842216740189	5.65739716687753	5.10226156588915	5.06596307908108	5.12057429431316	4.97549814698868	5.25294444155951	4.94936370266715	5.08557577117917
+"FOXI1"	4.61676266462658	4.7918013514083	4.87799509213187	4.83041843239756	4.71151181275669	4.79887503419462	5.36096827259502	4.94392900709608	4.57734958254446	4.59698398340349	4.41264219195108	4.59560782451349	4.83535100396916	4.91845261491439	4.50181471848309	4.65215741315946	4.82126964167514	4.68735733253483	4.42700420621495	4.5960557633313	4.56527466325803
+"FOXJ1"	7.32244632676984	6.65315102228386	6.74793517642338	6.97545815790467	6.37931301135323	6.86923356837799	7.56440566075333	6.73602431484364	7.16185335343875	6.9686154490736	7.20059930580415	6.87701738985693	7.13228719185455	7.36289347111384	6.99697858947262	6.51136989063247	6.71563745604977	6.32171121758901	7.10250659342607	6.81686933468679	6.740943959527
+"FOXJ2"	8.56169138931992	8.47435971805516	8.52408115685757	8.0884993372812	8.40639951455793	8.36793824037841	8.33176540017037	8.30583283080621	8.15367103241992	8.18608556686651	8.31751218241831	8.11140679424255	7.93735045714177	8.28699608258068	8.07599269689774	8.47435444280473	8.19894224768448	8.41254313730131	7.96416988382443	8.35703729627865	8.17864143301654
+"FOXJ3"	5.77624423624617	5.71323503677638	4.85800986354735	5.41261563924957	5.68919713682614	4.67569487082649	6.08498222465747	5.7438141750731	5.7616604965741	6.14003600482504	5.61395047282118	6.00584028002558	5.51694965646835	5.41445952036709	5.4496040659371	5.94282725741563	5.73971809950586	5.80418470294741	5.57845848154726	5.85069721219253	6.44879407113593
+"FOXK1"	4.37886792935946	4.37248605885762	4.4631353223861	4.57695171434714	4.50924053237332	5.38848786529611	5.18627445204773	4.75391176901744	4.58318257575948	4.4509562997945	4.41235818557473	4.8001142863555	4.78283557970551	5.01119091143849	4.65901073919835	4.42199281599937	4.8823647172595	4.75391176901744	4.78429870424522	4.86775302928569	4.75391176901744
+"FOXK2"	5.60061904673349	5.66839097424864	5.21181576492127	5.94910026203177	5.77275975615388	5.35465574657373	5.84324430367431	5.79590148177702	5.64354701944239	6.17490477105674	5.97833187290352	6.15964809599781	5.8314539099359	5.95841528030374	5.52613676247971	5.83352835854116	6.01030780372649	5.83744985219193	5.66166517845762	6.045260567868	6.22436321691284
+"FOXL1"	4.71396615094753	4.86545963062221	5.10330321761484	5.0148480304566	4.75197546438594	5.55599215215652	5.52728945503152	4.88175692707423	5.43643954018731	5.15233818020659	4.83851391392687	5.05778592911626	5.44546517080073	5.17087384042138	4.97629147692681	5.35973888948756	5.23601860967468	4.94799836825371	5.38904840614964	5.05497694948843	5.04003097162902
+"FOXL2"	4.4431252893838	4.14475267209994	4.13008606014716	4.17612246444794	3.87600031669708	4.60580598193454	4.6656478005912	4.2463839579946	3.98964432973743	4.12374438103365	4.08097133061254	4.15451915766316	4.37503788292824	4.63898057536623	4.45627772968096	4.253592738339	4.12941084703065	4.12374438103365	4.29523086614926	4.27029155840261	4.06506234952278
+"FOXM1"	4.75199675159083	4.75199675159083	4.90490827982528	4.77188809418629	4.82906473377458	4.64435092957545	4.42312314924203	4.92926979409597	4.91509417716568	4.8547394676305	4.75199675159083	4.6642206382007	4.69465573661006	4.60994535639463	5.07132118929217	5.0008333277391	4.80693979156841	4.48162367655438	4.67144349329866	4.5546456990498	5.00691693641344
+"FOXN1"	4.33367980799483	4.52167849374729	4.30756233782354	4.57018250120868	4.40001915169345	4.78011588277717	5.04520227098374	4.49925335799036	4.44556544817356	4.6490455960741	4.15214495523413	4.3902273522338	4.51377240525427	4.83238244871363	4.52209717092437	4.56172777417574	4.51918947622553	4.18710275232435	4.68241858880869	4.43167784561468	4.41423869428931
+"FOXN2"	9.20749916512291	9.20368234744508	9.05183974990424	9.05649112432219	9.00742117652125	9.66528124713109	9.04376565757823	8.90662270527898	8.87362317615717	8.29288980396771	9.73024978888074	8.38290552287188	8.81991904582433	9.02436512321662	9.29154239996215	10.2876955857441	8.91720849596298	10.0696787749449	8.9475504528977	8.23019239758749	8.56547446044231
+"FOXN3"	7.07774023257694	7.00839025173512	6.43495372090638	7.02247724168409	6.97474610871465	6.91244417593581	7.68046448801894	7.24734031428462	6.91756899553292	7.15582344974334	6.72783662254476	7.00726984659273	7.23184955753269	7.11705011131881	6.92063837119347	6.98236385157901	7.09841992036603	6.56824634664941	7.2407867520963	7.13081736787554	7.01554962835442
+"FOXN3-AS1"	6.73253309867692	6.34336797919204	6.44747687275335	6.3484177062266	6.36351397131103	6.36351397131103	7.16185226729636	6.33957153600577	6.41976210265514	6.20988358212833	6.28330794874773	6.41551240352141	6.26210146816825	6.74523456256741	6.20140304921072	6.64737513990755	6.24259208417525	6.24975165161116	6.40020141938042	6.41384343555653	6.23689175998624
+"FOXN3-AS2"	4.5761802732906	4.54137198263651	4.59607496534539	4.83253003256814	4.83514161508806	4.91757950701861	4.82614822850747	4.50182653264424	4.75205190037435	4.765496808274	4.40956944139128	4.55877552581627	4.71876270820896	4.792041545333	4.53430203390675	4.87597590988866	4.70031904584842	4.25485008128872	4.34657207968413	4.33844436933875	4.51498104319184
+"FOXN4"	6.11694781499282	6.31919599385077	6.0268456023735	6.35850469038287	6.03022962416176	6.25834474350042	6.79788526564266	6.06967707682995	6.31099622701713	6.26373930158357	6.25834474350042	6.24868904160052	6.12059484398192	6.38175328692918	6.28273389215289	6.23496334533398	6.41361131415762	5.72419886322961	6.27960080443146	6.18381968196024	6.49311269557316
+"FOXO1"	8.25584429098414	7.50141201551386	7.37177807308791	7.6329491125961	7.27440741655603	7.81150436221397	8.10769483298654	8.04738701403661	7.44887657801278	7.10258572141954	8.01393934680592	7.58324608795082	7.28417023082745	7.54422929176365	7.71171280378481	7.60371787988932	7.47036969392557	7.8891112458273	7.47667180601616	7.34398750165459	7.04029151883567
+"FOXO3"	10.6132161130808	10.3793452278741	10.7189050072888	10.5231173947279	10.6314647018948	10.8918335993133	10.5658488376214	10.631195641402	10.5402031701067	10.2878171241277	10.1547902190873	10.7100875828337	10.2462110566094	10.4282845465101	10.4335090552987	10.1763096077839	10.6358363983475	10.2641631557456	10.5801716535265	10.4625535209047	10.1922332862974
+"FOXO4"	7.61252946019852	7.23657654753	7.46337974406946	7.81382040893872	7.25033931600394	8.25539472221498	8.41396000776353	7.48908543777239	7.64794053453656	7.47410574200087	7.55505419473795	7.55536642738593	7.81196344513285	8.18940362684588	7.75064485283843	7.45672882283816	7.45334022880774	7.72230450037945	7.8360174069073	7.21123366510324	7.45527945164217
+"FOXP1"	7.53091512243939	8.22919064217296	8.68083345430849	7.66145141164097	8.73325863130649	7.6619214882434	6.95652678083103	7.82112520011192	7.96347360343033	8.26327515388004	7.57995297027249	8.59425855901182	7.07915913694418	7.65589008840445	7.66913745227828	7.81101861785161	8.21458012032573	8.15825435181635	7.8373126024027	8.33366193154382	7.93927421724375
+"FOXP1-AS1"	4.13085604747371	4.20228415892307	4.15384707081653	4.19132157754244	4.13191715981448	4.60113493119007	4.213942613277	4.26449301487335	4.24159963501373	4.38372417968948	4.05975202829463	4.17942720648736	4.16089863856463	4.1906577737568	4.17205554038395	4.34512776033036	4.43236696908424	4.01943412217991	4.14606266634606	4.08051924960186	4.49008176145483
+"FOXP1-IT1"	6.8367192647292	6.72800370118402	6.75549951835645	6.89472347401918	6.51239689850161	7.64487461733058	7.12743351639245	6.68567940717693	6.74063201441099	6.40308684194664	6.7140897068483	6.39369686996743	6.97914334811293	7.29749071608066	6.96339038349556	6.42347901699411	6.7962319381455	6.45200780229645	6.78609644216444	6.45351182161507	6.46337631052622
+"FOXP2"	4.83851391392687	6.51877470977273	6.72977571948707	5.76617105654306	6.33517226061734	5.96270251408954	4.97257302424682	6.03419139609067	5.27553923456433	5.66291813447523	5.08961543800521	6.37415841319823	5.37329655984809	5.7158773739997	5.7662511083396	5.7425942544219	5.84388283475773	6.1883559330495	5.9173927094345	6.02474703489804	5.51437116952985
+"FOXP3"	6.56432733765825	6.71824969846691	6.84313929430473	6.75416649592186	6.57500146089467	7.08653098053379	7.5898785151472	6.81172083157	6.89680574273666	6.80317570106083	6.65111082349288	6.8227576485012	6.89837267070419	7.15404855242595	6.67988954000457	6.72923932589963	6.85126520080006	6.44066518623753	6.99907701400218	6.55314550341257	6.91598330246269
+"FOXP4"	7.00462397294058	7.18294993847413	7.50685679584814	7.30817797525348	7.34104945328978	7.68717747645717	7.73046334349627	7.06326157763531	6.91113215679509	7.28756612653394	7.21513970780909	7.2863778161411	7.58657379664707	7.45181845116881	7.10529119989935	7.160423305508	7.26215390344372	7.36654832529293	7.34663486732696	7.27839566762899	7.16408904656661
+"FOXP4-AS1"	3.98621429094451	4.14335730046671	3.62589837570552	3.76145915426798	3.56917500533971	3.86738611238372	3.9200934723415	4.12924853293095	3.89688908187253	3.82901194171301	3.54836270647262	4.08117933081606	3.65151538267289	3.94766487466753	4.00219451551893	4.10668944032915	3.59532859414679	3.64142702601318	3.97859002142018	3.75227180236018	3.82011720671645
+"FOXQ1"	8.46380402936519	8.20497473105726	7.78475606403396	7.40843786652486	7.75560412824361	8.16038251765708	8.08958155650886	7.59143452378558	7.90676273932521	7.28982585832053	8.51114919358677	6.79704913088321	7.72034863454506	8.55117573228412	7.38677907346094	6.96023099556154	8.17766796900224	7.57795157183982	7.36101952857971	7.9652104006877	7.05961673815717
+"FOXR1"	3.82305538947383	3.94455582282733	3.83325053725353	3.65780552771283	4.05131909240924	3.62864305744098	3.72421426249425	3.77865362319066	3.82847833294413	3.87892067007552	3.70200081004644	3.44549653919276	3.8237612768343	3.9760074188844	3.5940220400786	3.58559372001478	3.55767105718916	3.51405551640363	3.54161310219801	3.71162220199977	3.7383224926167
+"FOXR2"	3.13928796244961	3.0548790822287	3.01824340772025	2.98920501294193	3.13928796244961	3.34899860644918	3.31436348455405	3.13743287605066	3.151094886157	3.22808362410819	3.09859295518275	3.47400857331965	2.99145229837108	3.27957079123749	3.18953619358384	3.25629012922058	3.16654056711288	3.21000327910081	3.13928796244961	2.96737375600797	2.9433835305132
+"FOXRED1"	8.07516141570957	8.68958724809841	8.97361434480884	8.56939290460371	8.76867718415641	8.57870446940043	7.94765915494376	8.37103839834475	8.37837459043178	8.53032128272709	8.4039510769611	8.46688489710685	8.34411166336217	8.38786205528602	8.42934133401522	8.57465894565287	8.39020671518356	8.597124776056	8.09304108320019	8.6645444609958	8.4274606867442
+"FOXRED2"	6.94849367468467	7.21516336032684	6.65154081866934	7.00607148077289	6.94118598091359	6.00990179220662	7.20415902336049	7.09179293624137	6.83469409699169	7.55250563521817	7.4757830037513	7.46574780200314	6.97067705221358	6.90918156012245	6.55760306617614	7.37157253374725	7.16009172125086	7.03044697646469	7.10452619110328	7.48781011212578	7.09759496815981
+"FOXS1"	5.99404708395456	5.82522535244786	5.98629303404377	5.95568285574055	5.93332087508756	6.49804472660575	6.3195779562842	5.67924393791157	6.06908762856484	6.01019702794795	5.94791045203685	5.81979526752043	6.0469914395249	6.07155448316983	5.94681918439467	5.78960882614016	5.95568285574055	5.93784990719793	5.95568285574055	5.8472014175838	5.83444479615184
+"FPGS"	7.45617531495864	7.49730866746088	7.62346946033359	7.36655700815015	7.27012059859241	7.25632982883615	7.47119079069939	7.37467868952332	7.18233191847093	7.62194273835142	7.60568828019719	7.51534469122295	7.1100810326869	7.19063897375302	7.17878356210139	7.67961136933028	7.32440213229404	7.15998946339368	7.25897849950572	7.44381490505871	7.4713850200003
+"FPGT"	5.85088166422808	5.8139943516482	5.31748858145709	5.8490075115461	6.1173389242643	4.96964312989009	5.59598227422021	5.35998244708192	5.72397485655167	5.32952205606992	6.39021492424017	5.80642049091411	5.12245005739678	5.1259047687012	5.58708539845966	6.30194990581848	5.50991421310307	6.39487517988831	5.79557359960555	5.71190599901447	5.47544696664777
+"FPR1"	8.80098530875985	6.61917753645711	6.26747872047132	7.37296955211671	7.60847652896536	7.46120327269128	6.66576122473134	9.48212056294182	7.12163274752403	7.1098014715659	6.75828154482436	7.86774411013585	6.85983259442481	7.21900715518244	7.63828327667481	7.13589691571835	7.93317954284459	6.82857453431276	7.84151608826928	8.1619227563403	8.72177112500813
+"FPR2"	6.17007248696622	5.63993245684566	5.48712810567187	5.49617614921253	5.69176030604725	5.57297043859958	6.01728529124357	5.78930157685696	5.25668798699072	5.69537583477934	5.2795663264066	5.71974898291727	5.76215137111112	5.5829262098017	5.57128054650331	5.5583499270235	5.52457599108242	5.43345430749078	5.56876082013031	5.5829262098017	5.58893016689013
+"FPR3"	5.30510934111833	5.09028121597523	4.78519314810453	4.98188519795263	4.92530044211759	4.99721884143591	5.30023781716789	4.715358520815	5.25255474757163	5.31188212815347	5.14220959403872	4.81522511844289	5.09122390903668	5.30372760048142	5.0443051743965	5.00685429097039	5.02542660053888	4.4930871508641	5.37466014887025	5.21538205365088	5.52008515308517
+"FRA10AC1"	8.47421360260492	8.75710881959557	8.91684028378831	9.03897605804375	8.41911813850096	8.57683130476948	8.7374294523796	9.23543143389848	8.64428213703797	8.75871948824907	8.74833958034015	8.18701697522005	8.63785455454754	8.35414156442106	8.63785455454754	8.50441769201542	8.56210412810895	8.55937579207872	8.86600420903485	8.44012100681647	8.63785455454754
+"FRAS1"	6.84436793541687	7.21187966438101	7.77513391876787	7.03204379324851	7.62449026552286	7.67044665983084	6.5487379846998	7.75270031618104	7.70640343819085	7.15766611612373	6.28275288975088	7.07046555178936	7.71262269093412	7.6693705489005	8.11823068382807	5.72092408351154	7.30396047033254	7.33088020658309	7.22770893517985	7.37674699368895	7.17922111164755
+"FRAT1"	6.61843658247622	6.1668128129277	6.15313133104385	6.21219555828878	6.7254303440043	6.72870681385115	6.19590168512041	5.80718288830617	6.83569387909209	6.87860567185187	6.14238865299083	6.20320692835259	6.18996534876433	6.82041238279137	6.25485356913167	6.02147935819386	6.27884181953109	6.92063837119347	5.97931558408082	6.40199617797154	6.54589818309604
+"FRAT2"	7.14822865867904	6.50932280768559	6.33368890908959	7.0654740638284	6.9749464256829	6.88832168100196	6.95202680648556	6.98167555431887	7.40133808450103	6.73726537040532	6.09639602979978	6.49603030789564	6.88173135497405	7.03315303226958	7.29598903867181	6.40233378904718	6.79773885117626	7.15973925675348	6.70184503480271	6.98993450782242	7.15376514959115
+"FREM1"	5.26265897708434	5.26412091019923	5.65466835105962	5.29190743699255	5.26265897708434	5.02911786542874	5.16878488951425	5.07240141750271	4.81657185020544	4.95548530558804	5.60214726438127	5.22465517631174	5.21187678540098	5.3385977358811	5.01728460890796	5.55922262190476	5.23324093452471	5.29752020161555	5.0858976022751	5.60244300386434	5.17043000160223
+"FREM2"	3.96990872274263	4.8026611501815	4.51389172103442	3.21139663686815	4.56421755959677	3.96990872274263	3.43463653153993	4.42619270898578	4.51262049990558	3.67757615223218	3.68481828827527	3.50702043225674	3.60108154036648	4.43789632652342	3.55826291385799	4.71514206679326	3.9327462198015	4.30115438274366	4.15865259027491	3.65436460353602	3.72421426249425
+"FREM3"	3.23999699630056	3.80708525404186	5.46448955581991	4.34067412601357	5.41698655945708	3.26434229181475	3.31678287524569	3.58548441348021	4.4314007032766	4.80578537569431	3.74638135685933	3.88122381823942	3.74373258036892	3.04646911789858	3.46147558674861	3.76961760902662	4.16523126027109	4.111637469908	3.46324601667362	6.58723796922721	3.97989325761451
+"FREY1"	5.28555366639354	5.67172537281837	5.6010536394474	5.74218822588347	5.33358936572871	5.77872950452485	5.51032361604857	5.72768800540667	5.58998915888436	5.64629258298098	5.56458709019212	5.75113239654718	5.81647689902312	5.68594952620646	5.60949018519047	5.57410808670866	5.69050004291591	5.61365293098007	5.39096571044835	5.45124121372987	5.76399600090121
+"FRG2EP"	3.05196483459884	3.23655587199819	3.08355394994341	3.13326860454434	3.39248040157511	3.30171070533955	3.15318356207633	3.11452317698513	2.87653719305321	3.05359173249887	3.05743702175854	3.2234828702398	3.17358652737448	3.20467072920563	3.2516340081159	3.44467591319039	3.15318356207633	3.01972662250102	3.12643167200159	3.15318356207633	3.06607819596402
+"FRK"	5.18073309096057	5.33586916855698	5.25377596528461	5.19620469390342	5.38359813114859	5.2481589570111	4.94139535860158	4.83687003498215	5.19947073694737	5.13582785611406	5.49753985882088	5.14359506275068	4.97439714009685	5.04920631198667	5.19620469390342	6.09387138024594	5.01224810894067	6.15596655295784	5.21979598850525	5.09393446075472	5.30215560067013
+"FRMD1"	5.97103517809655	6.36766568472625	6.36262222713913	6.51171407542844	6.38588457307868	6.3643480768716	6.40078370359083	6.42825087503833	6.44828523592919	6.48450253560978	6.33169675977617	6.49342572685839	6.46382112668701	6.47686279572968	6.30798577066954	6.67897960221213	6.49200276984586	6.06967365122031	6.32647920658363	6.21477273706776	6.58764086124037
+"FRMD3"	7.73570684477379	7.3266984588653	7.38595120089224	6.91409468767725	7.43775931525007	8.34864169811508	7.3522958543243	7.46186720926277	6.69033421855358	7.19653718954729	7.32183226058086	7.21988013666094	7.16700648444668	7.66870440683185	7.00071825353361	6.29555907632386	7.03390561607936	6.95551728445539	6.78816926634009	7.12776576688395	7.20687879369357
+"FRMD4A"	6.4597679173917	6.62875137139051	7.37532455130247	6.71327899127407	6.68962621108433	7.61265034176549	6.61662162844834	6.66302906071966	6.7439113668663	5.91536334384264	6.62492839953599	6.62492839953599	6.69111498829669	7.11851024828355	7.00248104777706	6.0077724735066	6.44400469461666	6.56000536703734	6.78792449686023	6.31417657026691	5.91617678438535
+"FRMD4B"	7.32731950526378	7.51923330954521	6.76426209167724	7.21700741957382	6.91916265088047	7.49601108350953	6.49682092335482	6.73360058192708	5.482490963244	6.01584475739498	8.63345971557284	6.11898356241445	6.41643851265071	6.97356593210477	7.22382058022537	8.88756414169814	6.55513038843211	8.88193381846785	6.93249793007217	5.81862909966685	6.86391871602991
+"FRMD5"	8.81166261618305	8.9987311090593	8.83099914295211	9.01901723309258	8.85571417369961	8.65132166704062	8.80373081819528	8.79557780874478	8.82989082097385	8.33763168531788	9.43734820584536	8.65380646909456	8.7927805742369	8.64164605669291	9.06533642978596	10.0714621705736	9.0895189756941	9.96971010783113	9.15326591852391	8.6101762476189	8.62242636903084
+"FRMD6"	7.7699144677647	7.25004297833736	6.99415322081466	6.68236639378929	7.13648677387025	6.86787904194043	6.99415322081466	6.37907211573611	6.87573455415063	7.47812454682179	7.52862981557569	6.64014248494077	6.97309092075366	7.30033441499685	6.78953578471793	6.660337880218	6.42899719881801	7.05423396760052	6.89274647287408	7.93838299045157	6.79129924723802
+"FRMD7"	4.21942965780822	4.05022572003541	4.40087785436507	4.31436596118258	4.22845647487122	4.28638885504897	4.47633242450783	4.29938893389525	4.1758332177295	4.33463281540102	4.31020249057746	4.3195701228341	4.36431838364644	4.37932444708419	4.38521540004666	4.240448728912	4.18209668136309	4.33148823152755	4.41929190291359	4.29342740419764	4.12614528072376
+"FRMD8"	7.68721017609055	7.56008145474057	7.29840292633707	7.21934662243756	7.12881009570919	7.92315157061392	6.86937312802371	7.36987211173222	6.8383806229948	6.80550970668513	7.65993276235056	6.60874027031176	7.1806097836588	7.59423831478239	7.25421333746142	7.85238190533623	7.26505839601901	7.79617835769623	6.92595075857465	7.02030141856061	7.29640578014691
+"FRMD8P1"	6.18162373627999	6.15376855769166	6.10443095307967	6.18801511449832	6.11135561310807	6.23871791575577	6.54501971692697	6.18531647781782	6.10870339474443	6.20420153343969	6.0221867081376	6.19840989508872	6.47041984704298	6.47007910155922	6.29210267731717	6.11228943081662	6.22035131017224	5.8696117994647	6.44462388154056	5.89481263879821	6.16192564519443
+"FRMPD1"	5.88051501764139	5.83815376691791	6.10271985819724	5.63674186003779	6.19981042212815	6.23839307438092	6.30602494227955	5.52898649017239	5.67688785681481	5.84081997178141	5.68857852109392	5.52821394860409	5.80906947660921	6.14215934515233	5.6093560656588	5.75273271312354	5.84314143959466	5.65531863855945	5.47467687863475	6.18295638586405	6.06529935305638
+"FRMPD3"	6.8485504803115	6.65702339200642	7.21411454870001	7.1117202985616	6.80606083667481	6.68981808484859	6.66576122473134	6.54903646120314	6.50752873434304	6.91802896057896	6.92465231008427	7.17392395814198	6.77830772155519	6.81733483542876	6.79630406681414	7.07627915691153	6.97005533025267	6.75159030537587	6.73248656686417	7.20877054168654	7.07950742414096
+"FRMPD4"	7.20347072570913	8.16664476445348	8.82137313796452	8.34556521848407	8.59445793716835	7.8231686217091	7.11008103268691	8.00608960816141	8.62978823353724	8.40188433678798	7.47595577483919	8.77629272553374	8.01120470944492	7.46493599564205	8.49788394921134	7.82647637632851	8.63336347163332	8.25306255561663	8.23016052505948	8.94630727265438	8.50262097880933
+"FRRS1"	3.31934972016309	3.39343381954974	3.41413860105952	3.19635365361242	3.40522252426256	3.62406017271179	3.43177525918073	3.44419877100809	3.36308910427921	3.36409217433619	3.33446818129164	3.42994809390393	3.13934169584704	3.51410477150586	3.41499415968249	3.25373998042282	3.39343381954974	3.30031215197744	3.43177525918073	3.57043591860257	3.42598080769835
+"FRRS1L"	7.42177916813306	8.47768288895699	8.40062599910157	8.73585605188943	9.23497304364652	7.38600231697645	7.16113206522625	8.17305972224509	9.39034278403563	9.3750946984433	8.0263596720912	9.53783231322025	8.50415229540749	7.70775167910859	8.62125679733381	8.62571120899673	9.33510714163364	8.38191581732438	9.09626803042434	9.61922470401295	9.5054176421205
+"FRS2"	6.46858061957061	6.9709771691893	5.48314249934761	6.11314579971067	6.31476988803027	5.50076182085259	6.3231066908606	6.35346723828212	5.97526789702691	5.95716231109381	6.66053395118261	5.9679111032639	5.71267382577087	5.8869079971239	5.61479578879585	6.47086734168817	6.01492236096579	6.633594236058	6.1675925803944	5.93040760569557	5.99169507674783
+"FRS3"	7.38595086687359	7.91504858863713	8.44215150317241	7.80709095494488	8.023776126664	7.89878701013579	7.59374955208623	7.66796110322103	7.82298084152683	8.05133559946262	7.83081802593841	7.91077894357342	7.92363308961577	7.68210182018312	7.74808915165677	7.72571410853154	7.78861470207499	7.94004767865285	7.8176850006141	8.01598480484177	7.95086048408673
+"FRY"	8.96755508981988	9.53917067141857	10.0114308820389	9.5615008602991	9.83546078023476	9.42387910567442	8.1410435686779	9.01751393013569	9.73902740307311	9.54253675361575	9.18620269553958	9.47762660924282	9.55740982474012	9.21207693946846	9.58954885987492	8.75749417012612	10.0075616568129	9.52445190088569	9.40648141625942	9.74173874636037	9.59299525512884
+"FRY-AS1"	2.83778255488583	3.13489434008474	3.23365853853131	3.12470379192126	3.72669905896089	3.24894993379667	3.19655586571843	3.44928804048538	3.09109773471898	3.3627957524311	3.03361655615201	3.46110283409514	3.22451762234427	3.35862941274683	3.22718808715757	3.1582316119359	3.27148351001844	3.12454689447019	3.02515376111454	3.49366540460923	3.3777665796556
+"FRYL"	7.8372438229869	7.47377095555771	6.05235973571942	6.75661522716479	6.90489404791879	7.16223408574026	7.03099142823625	6.89896409378502	6.64184279764882	6.88524023852484	8.07843458104091	7.02507544696864	7.20695973875061	7.12304476507301	6.72175944320994	8.41441873504936	7.25578017664949	8.35992715114028	6.81829458051255	6.64745059469539	6.99969217065656
+"FRZB"	6.89431451881217	7.58459348978056	6.77191589935384	6.25852301181755	6.52800591970181	6.95196679849402	6.90724940358145	6.18377336497992	6.30374025748072	9.28641701832411	6.81294338801741	6.63154403026698	6.52278239162524	7.68912282671019	5.83629164135428	6.30997109772858	6.10298863326267	6.71955404869417	7.78808084215319	9.46196071726934	6.13071447049053
+"FSBP"	7.01236032690963	6.80527251969094	6.81294338801741	6.3145851704882	6.64127698283661	5.86666609144871	5.82183516495245	6.49412045347632	6.46493564049612	6.64838709612516	6.61253458915042	6.46586884461245	5.7190165758866	6.21724436294791	6.03388829542819	6.54397002533711	6.55385973223819	6.50563105155076	6.51741957813906	6.50462979825772	6.41446911105387
+"FSCB"	3.43957896791377	3.49318440494923	3.26267207146602	3.64838229189308	3.42363233170156	3.53101248374292	3.50237454657115	3.44619142430336	3.38053035471584	3.63065585279371	3.48999972210902	3.43177525918073	3.66625519735179	3.58849460622507	3.48401303533419	3.39810421114475	3.54960729677334	3.3404377108901	3.41124363176526	3.42876028503205	3.48401303533419
+"FSCN1"	9.18241694851541	9.34427806714523	9.26293222014281	9.00797064345902	9.21664402206555	9.28045357258728	8.59516004203745	8.51616759107468	8.50576215832243	9.00260750284445	9.86291091239968	9.14370074963028	8.99885069458664	8.790196312434	8.4280836636072	9.86626773533951	8.80406419002871	10.0352102261093	8.72767192855295	9.19609658135358	9.34175374618901
+"FSCN2"	4.35610068739388	4.58103234131341	4.75666916290413	4.60626330307365	4.51433898174368	4.61407714054984	4.71272358136035	4.40152675883338	4.60559204776382	4.44310275898302	4.441353213017	4.28321626627805	4.53552366041602	5.12906069912838	4.34634699370544	4.29271361658424	4.62898452647409	4.40807834950742	4.58803210030025	4.38442803094357	4.60300708920323
+"FSCN3"	5.83918166776656	6.09616107639495	6.00966440876623	6.29714294624094	6.16296725435379	6.24492205251502	6.12847089168474	5.96210395049914	6.08659265230089	6.26191961030792	5.78294018085665	6.29325213776314	6.20244672293077	6.01624152414628	6.3643480768716	6.27509781850467	6.2030763496523	5.65676156802725	6.12847089168474	5.99891409841624	6.33233926080877
+"FSD1"	8.48396812232782	8.91885504674784	9.20584067229051	9.05128950733078	9.17497840101253	9.71901753269261	8.73024267548288	8.78803404810028	9.27523362228077	9.21251638582039	8.43601239357147	8.80358955774415	9.32756738589651	9.09235455920048	9.20008450795086	8.40846330758429	9.06443772834697	8.96924017940097	8.86050433647406	9.22542053135913	9.11623607313767
+"FSD1L"	7.05431537897466	7.45823517927588	7.94250468893937	7.55151514730255	7.85237324697408	6.98448783569825	5.96165486430777	7.27365263041417	7.77810801079455	7.23367263655963	7.46938463005705	7.56100751563685	7.49706414243464	6.56651054471058	7.90051893191793	7.30470591751249	7.60528054134584	7.85528797610454	7.70485275870539	7.64083801235967	7.8097860263925
+"FSD2"	4.882213854812	4.81987999652685	4.82797497554128	4.90806141017177	4.891431597517	5.03995874078021	4.9435180119423	4.8405325190307	4.80034306955918	4.91912212229306	4.83359772221296	4.69884322537717	4.91733327412356	4.904457910227	4.93206336839964	5.14279753804747	4.91912212229306	4.76323842549913	4.77861311005615	4.66388531018404	4.97130637478555
+"FSHB"	4.9407587337614	5.20566254413599	5.36287552173819	5.29274730601974	5.19138916086141	5.79730815491313	5.91762942887921	5.26330390648915	5.43390712933904	5.17878220037219	4.93453748129733	5.2694151013829	5.59905120632463	5.71930636151418	5.22964897230817	4.87112902937624	5.26330390648915	5.05497694948843	5.48373507753533	5.15239917715336	4.99643053644252
+"FSHR"	3.87701235121761	4.07362271192482	3.52202209790561	3.94398373735442	3.75514739083044	3.78662697167551	3.72936933563118	3.89182477211924	3.89182477211924	3.91977967638055	3.79798818725022	4.03991956386665	4.07792606942969	3.97723201663949	3.89182477211924	3.95719491376713	3.99370533248954	3.65051905522767	3.84557938145791	3.89182477211924	4.0316218805099
+"FSIP1"	3.49908383836408	3.57171333986403	3.43655194843388	3.27394261561724	3.55498037048943	3.38823966858386	3.35374485992535	3.35824292779682	3.65505254163342	3.52492941107723	3.36261531675502	3.69264951902857	3.45543993057874	3.58486384311361	3.53479203920207	3.64733394137806	3.54960729677334	3.33537072275212	3.3320353119821	3.51835806570708	3.6573996657347
+"FSIP2"	2.99245884840149	2.99808497599001	2.88955696090223	3.19573972508077	3.00516021517004	3.27605695764013	3.03830226807961	2.92206869350449	3.06654427159491	2.96043890603578	3.0394294305637	2.91967355869749	3.03494250516311	2.99654379419968	3.20099660056293	3.06308855692379	3.11861954421909	2.90769832178924	3.06180193759706	3.0768461069553	3.01665602729831
+"FSIP2-AS2"	3.19974090533624	3.3404377108901	2.95222829187738	2.9863981969597	3.20685212583376	3.02347491089668	3.42121588786789	3.27996294968936	2.9370848103151	2.9573043412848	3.47333343544731	3.08541896698027	2.90831841343096	3.13828217733954	3.16686086178639	3.37747489924636	2.98195868383206	3.15093145176474	3.02778163854472	3.09227502684996	3.23647454857299
+"FST"	4.62013743160192	4.58579349442813	4.65479078916746	4.60493597143397	4.73592937873246	4.7607160548942	5.09194090218225	4.37084935420618	4.33992024496714	4.42486494118297	4.38828579569423	4.52445530770992	4.67997684799342	4.64383563198684	4.41592947255442	4.5223544495964	4.64423178974708	4.05916773100907	4.71778108645213	4.43817380528147	4.59064211410769
+"FSTL1"	5.03094701082465	5.20486887176378	5.09224773997923	4.87178155670733	4.74764933019908	5.13577880774752	4.87178155670733	4.64070335594568	4.49008176145483	5.12744979001331	4.90759763895947	4.71731010468388	5.08469522235549	5.23538404525449	5.02880277561049	4.44923963808902	4.73945876735806	4.91163464607667	4.84099475899739	5.23863375453452	4.60762415905151
+"FSTL3"	7.31645296471317	7.30869543108206	7.40174440554334	7.34081893930779	7.14500686246578	7.67952314328925	7.98948902152521	7.32840926855866	7.29673651600281	7.15319677622882	7.29865054721909	7.44539895106815	7.35086088646557	7.70495681862664	7.32840926855866	7.19934921656965	7.3116416970347	7.27729971605733	7.41180667108691	7.42845358860696	7.20754975034175
+"FSTL4"	5.18421963450682	5.77879022316413	5.83192872300391	5.8668976310647	6.32844647537198	5.64641993604116	5.56549787949472	5.72727830598874	5.63512100162243	6.28281140046849	5.43727814865862	5.96371923621886	5.4661201426411	5.5859857822275	5.79957076285	5.44808859948072	5.80563463012422	5.24180216894573	5.48886204640277	6.46856383887883	5.74805884567461
+"FSTL5"	7.70832709156917	7.81191536607902	9.18239126480511	7.86510826791694	8.28752454205415	7.32846112579527	7.0109561171316	7.91306416362988	7.48241800892715	8.21985857484393	7.69146827569852	8.28257400159304	7.53355384219203	6.9259541331017	7.95084650683859	7.83875513465932	7.99466981267084	7.86510826791694	7.78597712162298	8.67004075262111	7.81016323282871
+"FTCD"	6.65468294327751	7.38635269935474	7.39161651431017	6.89431451881217	6.78200579746892	7.43685283697157	7.10597701903138	7.2023505443453	7.36095300623976	6.96522729791655	6.55736699994044	7.07583762700145	7.17535877540308	7.37449290572134	7.04968800865597	6.44810103001015	7.01935670278972	7.49757873340632	7.23118265332788	6.81671434224608	7.10597701903138
+"FTCDNL1"	5.27870490077398	4.31192491482477	4.34921545494278	4.3609482904964	4.75338785570607	3.82429013717808	4.0743915928439	4.5608809652422	4.21072515961215	4.19901470424969	4.81683000722605	4.29729156621167	4.14000133258417	4.24403293087103	3.99970186732452	5.08451735063278	4.06128062764086	4.34921545494278	4.59394457219949	4.29314013731175	4.64436785365853
+"FTH1"	11.7176289223794	11.2609875254957	11.2335866070584	11.001090008329	10.96396836952	10.7511581916971	11.8468061858553	11.7815652536946	10.7390035445407	11.0926483442769	11.5672346933997	11.0226288202787	11.2779560691777	11.2918046057958	11.4041546076682	11.5272792256476	11.0197592212412	11.7729468126936	11.3559441295403	11.0989233650102	10.9116224169089
+"FTH1P5"	12.4314370174117	12.4314370174117	12.2446831385374	12.5122119656068	12.3726967858297	12.2676732931	12.5598451250078	12.5653511771459	12.4511990556492	12.3295207186431	12.5314061602432	12.2263486229815	12.4314370174117	12.2708671796048	12.6679443774711	12.616344787576	12.4223357948272	12.5242512691932	12.5237418198305	12.0826481029481	12.4314370174117
+"FTHL17"	3.25376706390761	3.48430518908173	3.66057142439861	3.43936571164112	3.38442257000426	3.74426500357006	3.29875205795668	3.32094221774411	3.67995008886645	3.394033739328	3.47718732267195	3.47516862672586	3.75988679027856	3.53741376891322	3.57894902669196	3.62589837570552	3.66734058242087	3.24388224947864	3.48898345012437	3.5017965212231	3.48898345012437
+"FTO"	10.5163296992833	10.8107128726979	10.8743194002363	10.5292405710133	10.8962525966358	10.354667447887	10.4518847458993	10.6330646329114	10.7361654673475	10.8541681748094	10.8459893940807	10.8225519513062	10.4850210523585	10.5647085813733	10.308362710702	10.7858684908458	10.8876255748922	10.9196990896754	10.4640082928679	10.758290162699	10.8346263664661
+"FTOP1"	4.47293802873016	4.39056293000562	4.64532825164274	4.55997845590347	4.52393317660799	4.75728559273465	4.93575790795633	4.33715298691305	4.42386975470919	4.61046419147135	4.46583390649559	4.48858203002431	4.83787613166238	4.88777994906477	4.77287001345918	4.80601479772558	4.77287001345918	4.49554317014281	4.70305806197609	4.66446266332525	4.80709327738115
+"FTSJ1"	7.82550342849268	7.94840295627319	8.04812112817265	7.68562681377927	8.13754875764318	7.93631219526872	7.53890875800507	7.53949077699611	7.83716024880144	8.06145432477845	7.86669264826288	7.62523167282733	7.83215010648253	7.74133706526091	7.71129771066921	7.80111005770178	7.60903945001616	8.19235508919395	7.56678336243846	7.92508110316128	7.79377372531369
+"FTSJ3"	7.78409513836059	7.35122371550998	7.56422552261024	7.4588062833344	7.47705958539891	7.81923834755264	7.51218125204533	7.3651261113759	7.46613163596458	7.00874934919704	7.20159226773165	7.13410435787339	7.39058137831418	7.72074419605152	7.39267263330854	7.45575193836958	7.2196500558952	7.82738706142405	7.44939159932763	7.16716045529549	7.520872679148
+"FTX"	5.35683282838212	6.70418899392903	4.93518646029232	6.52139760262936	5.04024353940584	4.56239357910524	5.50623761084228	5.94880961951673	6.69774748525785	6.20317306264026	6.74555633279088	6.31537788211959	6.44581123299461	5.88613839932837	6.30997109772858	6.37910863899258	6.58527346423747	4.91066908335705	6.45281283792552	6.315136699272	5.73843186413752
+"FUBP1"	8.51766165387372	8.33243695421668	8.687272583171	7.9124366785726	8.30549104937601	8.27866349193284	7.68614521606328	8.76580972714482	7.9461943557488	7.65212056576441	8.65496260643885	8.66920704582832	8.11716376176146	7.51589593346444	8.29554336617196	8.65983541082615	8.91039872646344	9.36302868424905	8.45199502140813	8.01917715733302	8.09884402983578
+"FUBP3"	7.43528524650536	7.76853989504387	7.10098719753186	7.24708137443869	6.99437347845041	7.15150102780926	7.05974770203522	7.71142914229643	7.18317777375513	7.16323077086493	7.7080585971092	7.89245021252984	7.10479022315437	7.34521524004065	7.31034377569606	7.87392110722685	7.81685660966711	7.05715865455176	7.44469022837049	7.3590918714043	7.29518438620821
+"FUCA1"	8.25113942857222	8.25430058304873	8.10574807159371	7.19892565865236	8.24773054060123	7.74406228793532	7.13919496807327	7.84755494007761	7.34751736909214	8.32727781230198	8.06463287884507	7.84755494007761	7.39752519830256	7.63897267897279	7.33320438578734	7.97111440836987	7.61263338347092	7.98484221970044	7.69558780015288	8.33689780969185	7.98409359078695
+"FUCA2"	8.22496621477693	8.08048575324566	7.68068019332546	7.42662214031079	7.93021029286052	7.92055666650559	7.69042330088687	7.79964043747235	7.40553502911413	7.79118462257459	8.37806598316635	7.4403158500073	7.36292954286681	7.73847606772127	7.2058008284957	8.38919541317311	7.45399576349833	8.41586427751225	7.76573756728511	7.77474540408083	7.57449452130058
+"FUNDC1"	7.87753759866008	7.9704334577589	8.14082480409147	7.93355741747439	8.31349811381644	7.08449379943379	7.53519712305171	8.19293891310097	8.14668951249393	8.54602184014905	7.94767693027988	8.06672570872365	7.94218553188374	7.57315248043515	8.0263596720912	7.94171235073384	8.0087634269075	8.1235444456105	8.057409528709	8.02244717168261	8.1918041624872
+"FUNDC2"	6.85693170161508	6.81516197732966	6.72286470206549	6.79696877046717	6.88407748260066	6.81629896388083	6.74968049704158	6.70983693004313	7.00428959305563	6.64697755938007	6.81629896388083	6.69350293605859	6.87401041543481	6.97447622965151	7.02092890753459	6.81629896388083	6.95095825546363	6.64507298364376	6.77822955810247	6.750510663176	6.98222439210329
+"FUOM"	5.34689088618492	5.1122666688072	5.24166712444426	5.24030632563438	5.24166712444426	5.27006696485048	5.55902569650435	4.84833664031185	5.03177809311014	5.41895332589483	5.0469375530101	5.28775850531874	5.09922951692291	5.33588368960069	5.1126957560687	5.39570831005124	4.91708165502444	5.4248996414287	5.3131386834445	5.21585717143373	5.26139362457586
+"FURIN"	8.04338628655228	8.03747077172205	8.11625197353154	8.23910959369288	8.08748896887701	8.67581448693629	8.46850921085217	7.91943404942496	8.24908600517688	8.43473831403728	7.9185939910778	8.24906866939324	8.41749614599677	8.46646104213388	8.16106534465349	7.74188700338455	8.21683505241062	7.93397011696164	8.15481832355039	8.13295471891421	8.33076426249221
+"FUS"	9.36967351016815	9.2796996612166	7.38745463511463	8.59585748165503	8.18076137092866	7.47114426859972	8.34997665742832	8.50032789028688	8.78680908698457	9.5142124597716	9.61795964461312	9.11400064509487	7.7868188781461	8.38424846950954	7.94446835010364	9.24571145933585	8.66795201979164	7.33246564055627	8.65226939219685	9.25806936863171	9.30878554280368
+"FUT1"	6.2695824894001	6.34994924674605	6.99379513637323	6.38944611481676	6.91896311687649	6.79749348040614	6.47969972117019	6.2775742785139	6.69797327614744	6.63516096248671	6.11879671322569	6.31485930934709	6.28242558563488	6.20673989943742	6.38944611481676	5.96997041474573	6.42862744233423	6.13041424204637	6.38340007371235	6.96588171396853	6.36217107671759
+"FUT10"	6.53102381297773	6.62157100674184	6.82548341367387	6.52141623116222	6.23076898238786	5.89921585090076	7.09316323974144	6.47807611294523	6.55313132856015	6.37152089658919	6.37683946300663	6.08899812779403	6.02726424219515	6.35745323653574	6.40220405043551	6.10271985819724	6.03637096211836	6.33156075106633	6.48764892886397	6.86255782235578	5.56833423224865
+"FUT11"	5.93218021587881	5.84713177898664	5.80101762784735	5.84175865942453	6.28376260994795	5.97934491560156	5.88258672093537	5.40273896266227	5.74673189373999	6.35444403686681	5.66318736081412	5.73585779691942	5.88258672093537	5.68533748592384	5.8046063198732	6.02752824617825	5.86676495996956	5.9721574541798	5.48778873067178	6.06230992378449	6.08332984660063
+"FUT2"	6.76138435049512	7.00378485365274	6.95325157037189	7.11139587930708	6.9007202492933	7.20813624181916	7.99033170907911	7.01250977459207	7.22779174169965	7.0221595498273	6.79611050018135	7.25081083663323	7.33495330468674	7.4204341018971	7.01314721011012	6.99790880418356	6.91371051289517	6.60631398460858	7.22796126628441	6.95449284171948	6.99145621917319
+"FUT4"	6.17397504483477	6.17386132610164	5.88151847285513	6.03138075777396	6.18599566013454	5.69583653453497	5.94589920292746	5.73776607523797	5.83710264906004	6.21515268595587	6.29611657213066	5.84680436663177	5.68503991566442	5.95520473582431	5.82233180411228	6.58047565580876	5.92071928202298	6.72540907508622	5.95752531646846	6.22619955772884	5.99842263080161
+"FUT6"	6.8135542779583	7.20741115076526	7.29555471485871	7.55430333419362	7.3871344348225	7.48098255710185	7.50882148201457	7.35869211216388	7.56551218625734	7.5072299903763	6.95636628088003	7.33948035271429	7.56301588687483	7.54675888189836	7.38690506976747	7.35414579102646	7.48809570093886	6.95714169753628	7.55759253690113	7.43467923313574	7.3871344348225
+"FUT7"	7.59363028734147	7.96158373467766	8.01896274853457	8.30257977496347	7.75614013911816	8.65489716348633	9.19451521731692	7.99067041439949	8.18053162298176	8.14137561398989	8.08687037216707	8.23435662256755	8.4336769434611	8.82087219982577	8.18638215568433	7.88172235959969	8.00662157690308	7.75641036834367	8.39620081455022	8.27615286985574	8.07007590653219
+"FUT8"	8.26284156140816	8.32064306954454	7.53646571050757	7.87462517424069	7.94002660695402	7.31802063716186	7.37520415129117	7.34480974414091	7.43359266779529	7.31509712278742	8.95881138992058	7.76700110707038	7.0747125802039	7.24244671690479	7.19739384780881	9.1370790196936	7.73696835409742	8.94528684588334	7.94171235073384	7.71918619359065	7.53428391824414
+"FUT8-AS1"	4.47230026746861	4.60045413818674	4.20469542416134	4.31523724990942	4.59878053075687	4.32563027608786	4.09106883157749	4.18152553724587	4.69515947754858	4.39117939388699	5.202576406271	4.41644281758322	4.02373856368871	4.24403293087103	4.21355939762921	5.33164042075344	3.86993026280864	5.17116043571326	4.5172975935597	4.41644281758322	4.35601274283148
+"FUT9"	4.78986846157809	5.06477078894264	5.98629303404377	5.2564338849626	5.01798440097118	5.17700236300466	5.60005292722986	5.09208013816219	4.97174610865128	4.6114357589153	5.14629218887257	4.91512066266508	5.155883537963	4.68922525320653	5.20371477151701	4.42182878014522	4.73353900507436	4.73115690567512	5.07985400059215	4.71903296119006	4.59333740500534
+"FUZ"	8.4018968853106	7.82400285239895	7.74150821995822	7.92407800624185	7.57604591632918	8.10270783930305	8.00363741498157	7.8095046555947	7.95850307451207	7.8810866352831	8.17093216879285	7.84800837065537	7.74701801632742	7.81350681792149	7.77005770865241	7.84946746257432	7.65048889103134	8.00831188882151	8.10068855312074	7.89514430326586	7.65523221982649
+"FXN"	5.99339811909551	5.56505724364701	6.10924781548555	6.24771949861733	5.96267153814256	5.46017501982317	5.95489568436239	5.77347831248859	5.67725711881609	6.12009656489667	6.38010486186632	5.9607105457832	5.98794151350833	5.84344258534721	5.99091364054602	5.84904226391105	5.59339919314709	6.3478945655965	5.98181617003467	6.05091358188579	5.92451275461051
+"FXNP2"	4.43571732473573	5.45026656981063	5.69447330753431	5.29227616066943	5.27820911560259	5.78330501550033	4.81246423525832	5.52771742478977	5.13049476947915	4.76556038456546	4.93441273531466	5.3691719668651	5.34889361673236	4.73563657601757	5.55977762592372	4.41073902600242	5.67927302702024	4.87222443972324	5.23292763896402	4.80292101858192	5.11265415822213
+"FXR1"	6.64765918455378	6.75650338129978	7.11936448092373	6.46964488619953	6.80255702702439	6.66318341077783	6.55599253282476	6.78804195191931	6.19960007387472	6.26244813689051	6.8932109746893	6.42982704214495	6.40589246288444	6.53232840220512	7.16441969773024	7.18715859931565	6.49620585084406	7.5081365790933	7.0549844323055	6.55469401487569	6.22436321691284
+"FXR2"	8.99998626621732	9.17606864669319	9.45724387846121	9.57423562215452	9.64037379611218	9.91273743040411	9.95073141297961	9.36640400670638	9.62219099455527	9.61446559253873	9.20727955756912	9.35368718095737	9.76847180044074	9.56972395699306	9.56004498686539	9.14330201034374	9.58387874523727	9.31681421168203	9.36186755088175	9.53633495790099	9.4766215519033
+"FXYD2"	3.99412413049413	4.06711408385181	4.38176603183749	4.10385028047563	4.21971147402758	4.23329822769893	4.51620949290094	4.09364376218939	4.1129157976824	4.00697387679336	3.91272478582379	4.31534295522861	4.1129157976824	4.65539998729431	4.15555988584511	4.31877595022819	4.27910884121594	3.88509171534632	4.18257711923207	4.22666061910096	4.01817464434006
+"FXYD4"	5.00180998685661	5.57340889943038	5.39375404969818	5.25413179032232	5.47542763050103	5.37370025282216	5.11250833378763	5.06520476443907	5.09122390903668	5.39463617077109	5.45472631491941	5.25391650272554	5.06196338808642	5.40234322985096	5.22843455634701	5.90301417243561	5.07881242184521	5.59074960035689	5.2057084234009	5.03024955539416	5.53039819483843
+"FXYD5"	8.76586426127313	7.64424375706763	6.99035809576055	7.32347390373848	7.42158773567844	8.63509889507146	7.8775879366601	7.71116810470733	7.26919279243056	7.6887252011632	7.43166079946232	7.10487925894074	7.70964016498209	8.29475070140719	7.3321168669163	7.30982151463929	7.58967009900271	7.28422467131099	8.00740351512576	8.13917937997508	7.85750631886201
+"FXYD6"	9.97770581913101	10.8253456180468	11.3331339020749	10.803725552155	11.1117034360063	10.7008325173066	10.1397958654251	10.6549800884938	10.7951942708369	11.3356873278728	10.9500115887033	11.5359761000525	10.5936713851568	10.2606384610578	10.3548070828666	10.7049106722783	11.1978049967872	10.8381251080799	10.6800225970147	11.8049668526603	11.2157349600076
+"FXYD6-AS1"	5.26199399314915	5.26199399314915	5.05757340812445	5.34794005477702	4.85227495025737	5.31809062334401	5.33290771553856	4.99772925989778	5.2429849102217	5.23941409045546	5.28213336844306	5.39178954402906	5.60508468843282	5.40782312582724	5.42816239253524	5.2183933590773	5.30244655467032	4.93508553540062	5.28793487285592	5.19609761774668	5.1526548263597
+"FYB1"	8.17926088455429	6.38750883584766	5.46662445745432	5.3156106554429	5.72577890028986	5.65534276433337	5.96671582556008	7.79376072129928	5.70701365881447	5.89899214033396	6.17183412215513	5.542491492417	5.46297057632777	6.31429396779173	5.64354062175847	5.86167825042147	5.76671236477415	6.47207111594939	6.27682066117113	6.69875035673081	7.21777497501175
+"FYB2"	3.6670852000306	3.34259500847668	3.42722025548507	3.39168606107193	3.53302262673751	3.28983855853876	3.20528809030298	3.30376852404421	3.47525042314408	3.32574134835738	4.26872061287096	3.27882136934221	3.31066613029901	3.22920159256029	3.1746215009654	3.47115147475991	3.31311166787905	3.38224058278281	3.36706315954448	3.4616372965956	3.24547870840979
+"FYCO1"	7.55392669072766	6.5789557005088	6.51172466866838	6.46591820106259	6.22481590965704	6.5007338877346	7.32926391322446	6.65184230442292	6.24577128198656	5.91276242084373	6.91276094932711	5.83909247856766	6.22534790516862	6.98715354255123	6.52440452384347	6.79918776622423	6.17501050267345	6.98442032760267	6.59685825752778	6.61729459936713	6.12332843885131
+"FYN"	10.6439487030458	8.75414890023717	8.81971933207749	8.89475515609402	8.59880378442561	8.02310709924798	9.39333030218023	9.20384794625591	8.91686301450313	8.28477258104037	9.12950172275416	8.37367401262661	8.34679982951143	8.64732288835228	8.96368689963279	8.40901272356536	8.46307157326493	8.68284889346306	8.89671391449813	8.4903501637491	8.10102621154849
+"FYTTD1"	8.28550657340202	7.96224285028358	7.34406401363588	7.68767193312071	8.13827547088419	7.30164324781475	7.95918281377457	8.19144521637546	7.72013471567459	8.167568308414	8.38325929057381	8.01180901661101	7.89729233831893	7.49594723345272	7.65796187351432	8.43723258372762	7.9145599425933	8.7728124626225	7.97870753652161	7.9963799877322	8.2630886283075
+"FZD1"	6.82318561640781	6.68936144709967	6.81757503881038	6.83657713772634	6.74283291742948	6.08764783821108	6.74539642359874	6.22636983849602	7.3436007034152	6.74539642359874	6.74944137765599	5.68269411246218	7.11662382028984	7.10668561787664	6.84799494025832	5.97909194676819	6.62096693171766	6.67137326373525	6.6116576684973	7.28545566566613	6.38457887833876
+"FZD10"	4.48306187027672	3.84054160309622	3.84054160309622	3.82494963964784	3.94447009739967	4.06786314894633	3.70087712844266	3.75920695090794	3.69528771597493	3.84054160309622	3.89876072149388	3.68677898483993	3.73642543989094	4.39378130418839	3.83182472425554	4.0143799327607	3.66592821683045	3.82931635965628	3.77566305702145	3.83286518310568	3.81304310971496
+"FZD10-AS1"	6.30932801968395	5.73827318847881	5.58998915888436	5.98332315600344	5.54388413810719	6.09653960548438	5.74696357717055	5.94787635541491	5.79827202443979	5.66474535074773	5.68390295092847	5.23292996849727	5.77001484075164	5.88692443887956	5.51654348221815	5.87206542357534	5.62939185318014	5.3623795291254	5.67051965778504	5.36630350113767	5.73827318847881
+"FZD2"	6.52813120898041	5.77113551243326	5.4814348596591	5.10635839901967	5.3930832045062	5.64795945875137	6.27350229596025	5.75285412477389	5.36782088541487	5.68363001394752	5.36575217633316	4.92840581413378	5.79360499914374	5.98202081050291	5.44556732200064	5.31106820677637	5.02745915622092	5.32044159804188	5.50499802414038	6.30563521106612	5.71305112488928
+"FZD3"	7.17344264143606	7.97062927983937	7.50729661661885	7.73135927694327	8.16445885912276	6.57039208519494	6.46780286143603	7.5857933386072	8.21041123393379	8.01592117509445	7.64557995066342	8.29724984100774	7.55263287949243	6.65853581740721	7.76264604164743	7.42031253732692	8.19003492258545	7.62211919024823	7.82658735948667	7.73863807306128	7.98512572608646
+"FZD4"	7.75678120803802	7.45712000072918	7.35957624325168	7.41449807760988	7.15079631849752	7.97661926481334	7.82716132679055	7.85857181526125	7.42796517000135	7.24708137443869	6.98729876315824	6.97493605981132	7.6320611788621	7.5946339053184	7.57135137405963	7.01661116399222	7.35743564293652	7.1772268102706	7.38349536239047	7.48194487355545	7.6743319636693
+"FZD4-DT"	5.15720040411857	5.46274521499458	5.61326405233723	5.58118422007946	5.15345862155275	5.1863904552078	5.81023317622843	5.65079474988522	5.51006392200655	5.60228346773275	5.35937988821561	5.43427563140556	5.73971809950586	5.44606705191357	5.09645810755651	5.15171102724617	5.3973348872181	5.35336013774339	5.36534167084703	5.51538498382524	5.43427563140556
+"FZD5"	6.40220405043551	6.05705369344318	5.89608498602774	6.01128116221268	5.89972428161236	5.88878264980399	6.01128116221268	7.01107116881463	5.35577412234757	5.64832595626577	7.08278095434567	6.01837944405606	5.51235839808495	5.86258317562085	5.72819661853945	7.25510854150695	5.74057449860745	7.32352819031438	6.01128116221268	5.78671137243842	5.78456874647505
+"FZD6"	6.60495275352204	6.31946411537033	5.99056432174323	5.22209266910451	6.07663331252959	5.85859501545494	5.69678488401814	5.83435229054596	5.24572952356747	5.64493075836665	5.67315372713287	5.23887613131783	5.24445013275879	5.7464420195497	4.92505829125076	5.58998915888436	5.38734001278309	5.44150394558398	5.58998915888436	5.5185549256555	5.58225622496135
+"FZD7"	8.36217938936102	6.62534100300627	6.81275452423175	6.89190480591028	6.47171821662777	6.66237402427022	7.34084200743283	6.90007809423247	7.05224635229932	6.8485504803115	7.4001184343043	5.65063509577241	6.90065318738582	7.0532812365462	6.80817359608003	6.09460003709422	6.46103877785124	6.36092098735439	6.70591059366074	7.3856232046622	6.69571484091499
+"FZD8"	4.88001012330828	4.6090772968242	4.04681124075614	4.69464030470835	4.54426299765859	4.35382125074513	5.9721574541798	4.61816637508493	5.23941345544127	4.90466881397623	4.5505082012202	4.37995925712292	5.0495063682062	4.67453867355663	4.86100777672413	4.61284354163675	4.59429870433488	4.4152284776728	4.46300617486021	4.40271228932068	4.72103423911459
+"FZD9"	6.77119111135428	6.06887797757733	6.32032406766099	6.52677940789091	6.42781499143169	7.29073592819813	7.2964261357508	6.70096629847907	6.73833579171416	6.65205856631002	6.17968046622718	5.7524002544224	7.08011423930877	7.26676489349961	6.74772682158077	6.32893862243024	6.65598055984755	6.65132449175659	6.45323274656047	6.67156277554534	6.03681255831777
+"FZR1"	6.63767166720375	6.75570697021388	6.98549548520835	6.4724669081671	6.75137166657537	6.71679048688396	6.42955973830883	6.55468281999552	6.3628353545876	6.94380168424285	6.95703483007389	6.97835057408839	6.2755957436529	6.42932938679506	5.84324430367431	7.10460834369059	6.82025704998871	6.95394578962775	6.46486563234061	7.06371088310406	6.92687079087198
+"G0S2"	6.39958059278144	6.7542275792135	6.37376544401182	6.99538092833078	6.75814606993319	6.95498452170649	7.54716488185667	5.84828999825131	7.70246821113199	6.52385128197654	6.81637772741914	6.05520487901034	9.1721869296997	7.2829613174366	8.82924261859126	6.48428225986324	6.21221594804494	6.75814606993319	6.75814606993319	6.37290549172117	6.56800740350319
+"G2E3"	6.74652154937925	6.90393417667133	7.01236032690963	6.79588058549406	7.49411281195396	6.88825659414934	6.1030449206336	7.35998967060959	7.05760813777983	7.08484163108577	7.05399927509927	7.49458310550299	6.23369950954725	6.63334544379093	6.99756735670865	7.32766173393195	6.79197767979533	7.31456030968106	7.05534878064744	7.28917453869622	7.22132396646344
+"G2E3-AS1"	3.97992952493383	4.14567440235549	3.99884774513646	4.47654476239322	4.16363149221337	4.12161208252002	4.56803815106768	4.12114783545175	4.0777586881139	4.07943798620116	3.76189302505452	4.2330209192495	4.21041038844958	4.76603513896829	4.02603725262213	4.21245254628354	4.00212991758146	4.00396625839746	4.13281354133677	4.0513369129253	4.20310923525078
+"G3BP1"	8.80712377066194	8.1788310956267	8.25000408046685	8.59399331128757	8.17056882181345	8.26162684933152	8.32835336951253	8.42322435614193	8.68755252241148	8.33548113018215	8.4806720452125	7.95999893201557	9.14443381679578	8.25316272248025	8.93547605834399	8.27537270621579	8.2540842050611	8.70419421834493	8.52022175635698	8.081882160724	8.3789094097703
+"G3BP2"	7.55577803362411	7.9468646566972	7.38299007050831	7.68527959090455	8.61198286618458	7.13477459909153	7.09593849980363	7.83686838036491	7.67390586111516	9.14758392876821	7.85624126350121	8.9343543091423	7.70627806655586	6.91051518976812	7.6191311992691	8.9488705095703	8.59060993976539	7.9990859473865	7.93493881448033	8.75091006206204	9.38121854603176
+"G6PC1"	4.33151006907354	4.70741398228863	4.5879510758023	4.64438389998838	4.54751080496412	4.61046419147135	4.53114694917013	4.49799904679852	4.66008269439566	4.73141886864788	4.50515041543404	4.61275403425961	4.73992690685734	4.47984327807497	4.66252908630712	4.51083505811718	4.95504595073619	4.4572782606588	4.50053489262231	4.76786359951997	4.77589735124027
+"G6PC3"	8.78638921647328	8.51928586855318	8.27925142041978	8.24740332529019	8.36340297580875	8.32832271612068	8.28463568590781	8.25972377787873	8.03304040863864	8.64559469623278	8.84526291382808	8.4671043757459	8.01563424528836	8.18490566598244	7.95118157683752	8.678636065409	8.14719493165409	8.57554947686436	8.06203980572182	8.64403009840587	8.3170496864068
+"G6PD"	8.24216823494286	8.15714590893666	8.31552868116882	7.88856603763329	8.07455134698335	8.34432305875976	7.87743122445629	8.12266086450564	7.83343461144461	8.25580808850384	8.0935642667397	8.08758254423444	8.09796205034292	8.13196109665088	7.56519401775571	8.06367665435947	7.90648942002432	8.11198457339528	7.59249833746187	8.53192931886463	8.12353986385159
+"GAB1"	9.22997792754466	8.90072849762015	7.83014043720594	8.55541642871442	8.31181733203003	8.50063775608449	8.47389815920194	8.89036979234741	8.12013385714258	7.73012657840008	9.64386151563768	7.91915777197031	8.2561888443286	8.38043600610571	8.28168245359379	9.93707859874016	8.35103271881714	9.70021846282013	8.73251332190087	7.81497612946838	7.95275218985401
+"GAB2"	9.37705909029398	9.18724936687485	9.12882197509252	8.93305323806054	8.8082833758368	9.6891723966895	8.97889478388027	9.05672737558246	8.47286070659658	8.33231116099951	9.75786049016937	8.76364944225935	8.80773984462234	9.21517377349414	8.62297504565477	10.0595330743121	8.79087415344263	9.88627206391482	8.80742338464967	8.47556523111535	8.93691072065681
+"GAB3"	7.27671714763486	6.7030493206607	6.59230418694092	6.37829618146053	6.42716678958973	6.81881752750654	7.0838688318267	6.52121212901565	6.37581861117743	6.35403484164857	6.33805492554379	6.16697595388139	6.44067483123101	7.02310491334267	6.59230418694092	6.7388066245489	6.21408473796405	6.33653438694078	6.71790902581283	6.64547983942237	6.69092563128986
+"GAB4"	5.94131455997381	6.21082118403483	6.10799105189807	6.50876778287585	6.33991575933297	6.36393265874583	6.15079104483255	6.1205705651394	6.54424486109183	6.18374640073562	5.80666568721222	6.12509589748481	6.50864653153082	6.27898742355078	6.32414247172518	6.21082118403483	6.24262071888236	6.11632780401375	6.05990809378515	6.24878171343834	6.21082118403483
+"GABARAPL1"	8.32104289060966	8.71911403072187	8.70262036388219	8.85540641913089	9.17018853489873	8.74761266654219	8.8814470639126	8.86468880094193	8.96577818386304	9.85252395017842	8.71000746617602	9.74372271907472	8.71988847176483	8.42849719220808	8.6924965839984	9.15886814028394	9.3102264284392	8.72452412204569	9.12731682956772	9.49349125319665	9.6986872374913
+"GABARAPL2"	12.0779065636029	12.1199983173474	11.9472107015766	11.9294171796535	12.1410142632438	11.3089554748151	11.9461085588009	12.1168318863011	11.9649560771295	12.2888403794086	12.2708743957179	12.1742324393066	11.8129628297835	11.6405705011662	11.7141354851843	12.5330913174439	12.073039919703	12.2796153332696	12.0970700352196	12.2372609617862	12.079897317331
+"GABARAPL3"	4.37259937265639	4.41959139180231	4.58075264814089	4.41522660694592	4.29441160631804	5.34375057648763	5.17924877753548	4.48370208827586	4.74209129319653	4.64583318709641	4.29999212505474	4.55192496355182	5.03620522784151	5.14169949116432	4.71502019807479	4.39404707758303	4.54828888722194	4.30692160198797	4.75208521379282	4.56810431509842	4.56316943826756
+"GABBR1"	8.2611862617003	7.68390776263759	7.61229928933642	7.6996186077495	7.59890136981782	7.53641448112218	7.63668347348007	7.78794248692631	7.65450934418381	7.5910073276224	7.78308159118535	7.6843348970444	7.62913802619811	7.82575424141227	7.63500355099474	7.61369811815571	7.39235409537955	7.65450934418381	7.9047722734869	7.64046133096628	7.39277880061003
+"GABBR2"	7.65761112372693	8.91859756111859	9.42150051523588	9.08809455192567	9.89158845455846	9.35904629995303	8.00831322557153	8.5879088272834	9.28407356452372	9.82698857786354	8.20447103945806	9.77932909792637	9.25177864520368	8.62463016362813	8.76085698796881	8.49541463223522	9.54651771309146	8.85817034411085	8.78571832667865	10.1366438520018	9.8263929323354
+"GABPA"	6.95010809028918	6.68309055107186	6.27426469635043	6.69414667604754	6.51966288643898	6.36274627008197	6.62438673477645	6.64814319230523	6.51966288643898	6.19862598911302	6.9958559947412	6.11543599843854	6.39588949257806	6.38440905238594	6.65025148287607	6.62120655240253	6.34600894761151	6.99091621329748	6.63837471930286	6.32686326269462	6.26423005459452
+"GABPB1"	7.77388597833217	7.46893005436003	7.94560236758024	7.68737480241673	7.66909712586355	7.54637434549686	7.3536480688069	7.44575977503751	7.36095300623976	7.40562968863489	7.54788923634111	7.30896072252328	7.72230170436101	7.36095300623976	7.84719858743523	7.88412601785433	7.42256953263585	8.02073839124656	7.35450319504033	7.55975824492321	7.2437004556708
+"GABPB1-AS1"	4.17362044064169	5.67593138489352	6.83348383023949	5.54428930408808	5.73929892640585	6.72670697142586	5.66027326994244	4.60786228864647	6.13617397253588	4.95935199255358	6.35737052542707	5.28176987933839	5.73706563649185	5.80580354368323	5.68553038744703	6.29516454704699	4.59040468458938	6.83060812287206	4.95132343201205	4.15315120239469	4.6024989042618
+"GABPB1-IT1"	4.62995617179333	5.12593684319866	5.35259284534422	5.31921137287675	5.17979469217145	4.47331456177387	4.24030405624799	5.12842935578689	4.8856956910705	4.80527316885567	5.1877554917107	5.20679819722247	4.891431597517	4.5924002250849	4.62163071194783	5.28821369203942	5.14062192800149	5.21313491465956	4.45440617816849	5.1015234844233	4.57062333917367
+"GABPB2"	7.92062087325974	7.75133802749584	8.02416080553896	7.8941596110524	7.4127431370489	7.32488487361119	7.59978369166947	7.21145641898268	7.44031904806691	6.96883771198091	8.2343200684935	7.19069186005105	7.08758618868776	7.43510491785529	7.34582689643859	8.66443446853419	7.26403408176293	8.06473910293579	7.78718881643867	7.42482713348587	7.23042680902843
+"GABRA1"	7.8268679799838	9.75103391620684	10.7868115341053	9.6751370909791	10.9623921242358	8.99291565369011	8.07054496568148	9.39772962813727	10.5189623717099	10.7818804930153	8.7972259758366	10.7192516500207	9.77304595324244	8.70500710100876	10.361029235579	10.2381845445849	10.6779732140361	10.0293539285783	10.2964984326486	11.2403089233854	11.1058911250991
+"GABRA2"	4.59651468001087	6.53259054546832	6.00139951167571	5.08070994285099	5.68256297525097	4.50774483072909	4.13455214400397	5.32081943788774	4.90540472673269	5.54499200489344	5.23090820321162	5.86576642203862	4.64068721261061	4.28622942644297	4.66252371944597	4.55288822992747	4.63774018369385	5.36400429184786	4.46244091330337	5.01948262750016	4.86132167188695
+"GABRA3"	4.79676884392083	6.51631310809081	6.94529921535093	7.09044490306682	7.82722604385777	6.85151035079595	5.55890411844152	6.73267284486914	7.63950296304747	8.34561470548766	6.10619371627076	7.85564818766461	7.31755301577665	6.38386591015294	6.6737576300454	5.78493440248871	7.663442504382	6.53814610790606	6.24624496249475	8.14434242305142	7.04114033273475
+"GABRA4"	7.69239754017307	9.61873216972703	9.89886409849932	9.56253140226851	9.97903142494163	8.19436427902553	7.59608747489253	9.02165741215254	9.92471202428503	9.56249782464774	8.64479747488226	9.86353425601836	9.54657392155209	8.55795725397782	9.73673439378505	8.81517371459717	9.96142382427525	9.06929982340569	9.91464687998653	9.71759289938948	9.52875149247606
+"GABRA5"	4.37297117998691	5.67855320107228	5.32165535724262	5.84785287564068	6.71880951304382	4.93604451369137	4.8829363708341	5.66571251535586	5.79608450905793	6.63332789044138	4.6565036404767	6.89282049022827	4.84440290758303	4.29621565538663	5.55187895168565	6.04566898624723	5.98454069429655	5.56149819976308	6.35891380264201	7.27962838193861	6.91967944844937
+"GABRA6"	3.18309940147688	3.7300145389108	3.61037758152299	3.74700161713938	3.84746626312461	4.05807687471548	3.66616693809705	3.47462064391844	3.54781689692524	3.61086912726416	3.38585904710592	3.82486372439937	3.53955009366963	3.70350315724666	3.41271328467354	3.64646847182225	3.78613533980898	3.65001015954173	3.61323064275302	3.88119488044974	3.97332457076097
+"GABRB1"	11.1963354852139	11.0775060133301	11.3702867259732	11.2542640044063	10.9577277603928	10.6420527623903	11.1248295296704	11.2418410614637	11.0563097938955	10.8866521094336	10.7181608358137	11.1760027056528	10.6995429845368	10.8755283620933	10.9524728752478	10.3235526607958	11.0757024714639	10.594335520952	11.0873608191805	10.9247602254744	10.7748957158074
+"GABRB2"	8.97814705368298	11.0345281115554	11.0237372515122	11.168307102641	11.1878854466479	9.97268795265524	8.94225314951205	10.7976895105617	11.4252293224211	11.3464692223557	10.262060080826	11.433032027741	11.2637870466441	10.1633349809755	11.402679267467	10.2988591842752	11.4810686378381	10.6148968639438	11.1755942548608	11.301918988833	11.2403864938539
+"GABRB3"	5.37322075420294	6.83546180487317	7.12885527027867	7.05035179483683	8.41047402659982	6.49087763945042	5.62176152498134	6.72623710087385	7.64908646966378	8.22944640811996	6.63369171528139	8.255588105369	6.59473020489214	5.81861672026164	6.70077144824301	7.00922897014088	7.92109945189746	7.26490539722083	7.31145054525237	8.36551600433261	8.46373214561047
+"GABRD"	6.24609044219421	7.90915845443156	8.27149214718702	7.75684373603314	8.76394650767954	7.10110197277995	7.034371214568	7.42511639992427	8.10058205980743	8.85964442413182	7.37302190858925	8.92250614868487	7.86510826791694	7.23388480042349	7.58897233317896	7.88109901713501	8.36683253691709	7.82249966590581	7.7426384488565	9.2139244428681	9.21366687629077
+"GABRE"	6.34542120153638	5.43339904124537	5.47821206910143	5.59140381272771	5.49108103609073	6.32726307064667	5.61879387962345	6.64956796765997	5.7190833518574	5.70984530749441	5.57160364558214	5.97914497838051	5.59030354863685	6.07784750316635	5.81365233652214	5.19798191722044	5.40574256347923	5.66191812485007	5.83709488077401	6.19223132659986	5.67655512785282
+"GABRG1"	8.33837422085704	7.86628669780313	6.14990795106781	7.39034958483716	7.20346614286036	4.03161344028727	7.61860520048755	8.20901892380309	7.75782268718868	7.36758309665051	8.10642779610846	7.2210707769658	6.07650775961619	5.964604940818	6.03691373034008	6.59959731933265	7.34222446356153	6.57453963725196	8.17071734170639	6.78753103771639	5.84324430367431
+"GABRG2"	5.69418754188152	7.99316265525033	7.95973128589105	8.09645045940124	9.803019674873	6.80606995832517	5.91681554733684	7.96680160170548	8.43100749508719	9.83933177830103	6.71485406056119	9.76259866345564	7.70858599651615	6.92287469156099	7.73311791655025	8.93109342705632	9.26086946550085	8.55658083305513	8.10076286185318	9.99048384327082	10.1900085569055
+"GABRG3"	3.92957420453834	4.05420247630161	4.16430178373808	4.17026068441715	4.43986599125741	3.97723473465502	3.92260726343267	4.05382782288848	4.31350063643609	4.52210003108534	3.72499566317342	4.54651609183246	4.2007012057014	4.2111090967564	4.00925697352872	3.98890160306619	4.43025407043523	4.37285663763597	3.92806254551032	5.03974431658369	4.65322043424277
+"GABRG3-AS1"	5.42036209878216	5.40559079291675	5.54450087133998	5.48101437596141	5.62370775099761	5.71345213265686	5.82703215867045	5.5432775877756	5.58998915888436	5.6439016279825	5.35937988821561	5.23724494072597	5.55134091682065	5.98581452351602	5.66083749331246	5.54840479377224	5.56849882419893	5.18447843941762	5.63915398165582	5.59059328799503	5.40891750870901
+"GABRP"	3.57564666016781	3.94455582282733	3.63587510730274	3.62569526949717	3.77614228195297	3.7170589006188	3.86164328832052	4.22157195793332	4.07509477544977	3.63814761425405	3.68386988996566	3.7813028173079	4.15441007070829	4.14000338647808	4.2750100797807	3.80362263221661	3.75714810291262	3.54949901695132	3.78552489601062	3.72025317375026	3.75993907353192
+"GABRQ"	5.2089189477667	5.06750055352106	5.48931690016404	5.4571365677391	4.99532194402693	5.45324228258764	4.70737096007705	5.35494464726112	5.15682600709647	5.22268934153563	5.11941484614796	4.98200908134609	5.25255474757163	5.4159841579991	5.10273022751728	4.84708099250806	4.86652563398985	4.9391095878333	4.62872451055053	5.2020441215358	4.68585783398588
+"GABRR1"	3.33736838254093	3.12134213646443	3.35726815639385	3.38815919666752	3.54122759111026	3.42425868513251	3.26006875198021	3.32362758519049	3.30042176578684	3.35255985210943	3.58500347535204	3.25413064341828	3.45983070863801	3.51468482598376	3.59347568234314	3.41157373731625	3.36217405805425	3.09125075563959	3.38815919666752	3.58500347535204	3.53160719915473
+"GABRR2"	6.25756807816181	6.17017992902809	6.09581836481441	6.18686565240361	6.09825391254803	6.38468243291818	6.46287226814149	6.17102607354078	6.4130236554263	6.19630083852956	5.96597900586797	6.14336846745011	6.25756807816181	6.66488789495011	6.35203405732935	6.29031652046415	6.2813757609669	5.65250088020432	5.88545789453118	6.11059261099903	6.07752419170842
+"GABRR3"	3.2349803255509	3.0946688560131	3.2256600404438	3.09436293317502	3.13756005958584	3.00518626586628	3.19508451739114	3.20570906698881	3.44006376959568	3.18533472716306	3.16796967635993	3.17698500392313	3.3635652325932	3.23601584937748	3.2517572896405	3.06405659447605	3.40410291361287	2.88682889637199	3.04901438637089	3.39144466553701	3.17698500392313
+"GAD1"	5.95157105707418	6.61906047747824	6.48973152298938	7.16664006744328	7.89591770674811	5.50076182085259	5.90853447574668	6.8135542779583	6.66701586068689	8.5078573609167	6.63106656625908	7.86493618345058	7.09270534387581	6.16185464534475	6.23105519966654	7.44417815933084	7.09829598498136	6.55728186214659	6.13920155037131	9.39814597632104	8.81931806774484
+"GAD2"	6.65994690537339	8.87093011943013	9.72902420610024	8.99389356193325	9.48540577663382	8.10976175118032	7.04841209937163	8.47394616224057	8.84804587286824	9.54939914023308	8.94350953296679	9.41739079182381	9.11444783409053	8.84539646313633	8.68811719104338	8.85248503572721	8.97752648396465	8.59828323496417	8.52271918049645	10.1814285911416	9.51912023260052
+"GADD45A"	9.43186752783102	8.67833697499967	8.26840088896611	8.61891877652295	9.05023647703395	8.79459045909864	8.69229533199167	11.4360360971119	8.19122456093402	8.67973433318891	9.17389220874375	10.5667985204059	8.66701751204276	8.42207274775943	8.17539274099602	8.47078390435605	9.41199455639831	8.51520090651116	9.10418588211185	8.74000975296694	9.68752849405002
+"GADD45B"	7.74320582417732	6.34505121110726	6.4627285118755	6.76889537870552	6.99368009655364	7.96345922415406	7.05613728071643	9.92213386223018	6.55225373771282	7.24671746712871	6.68880051375922	8.92782306219438	6.9559817398769	6.96259788466251	6.77104081841879	6.68086686969551	8.33597877880811	6.78463396043072	7.3829341742671	7.64512477940913	7.50301783464131
+"GADD45G"	7.65389806503978	6.26110015992132	6.41908620758741	6.99919129931171	6.52242282995103	7.50948347855855	7.77320772622223	6.51863265130701	6.75814606993319	6.9412784537357	6.31181666436335	7.17265453967017	6.56478473791643	7.28218848505918	6.71917333861023	6.36774313784235	7.18753044329375	6.74485319457002	7.592171471887	6.67725021094371	6.20095758143873
+"GADD45GIP1"	7.12862444562031	6.8856551536342	7.62492023924419	7.33716260209015	7.37094825325025	7.63478311220071	7.10294306759461	7.10294306759461	7.31833342293727	7.67322939862597	7.16281255123941	7.35786376069305	7.3237045270219	6.92299861031168	7.38846407601411	7.14457677478822	7.13068462402691	7.72677750474642	7.31983486011401	7.64046133096628	7.31983486011401
+"GADL1"	3.82129531069364	3.73738255729855	3.85334366212297	3.91490036217274	3.73425107147365	4.05710924146199	4.44069188679647	3.87678273690908	4.17542883236541	3.99694055503042	3.83787697270938	3.96215572850602	4.01718836621486	3.91406197050711	3.90527208519706	3.88976277900469	3.71494943434264	3.81130618676718	4.12296090498653	3.96014347765835	4.11688683441176
+"GAGE1"	3.65981208352822	3.65218705736364	4.10662807401441	4.00017003988788	4.18380760380852	3.96936926025053	3.92702083419525	3.93774064057631	3.89675418882294	3.97287220439638	3.86713704445091	3.96936926025053	4.65151540968331	4.12981651342373	3.5912160002807	3.7126511365608	4.15072039820207	4.17311988411707	3.94091732735884	3.84239799599041	3.96936926025053
+"GAK"	10.0664868840542	9.84478684802651	10.255908006562	9.85430412136289	9.90736578805154	10.2789249030473	9.67531037166463	10.0117903874736	9.925738021879	9.71081478551913	9.76645107075204	9.69403632499671	9.85727278309254	9.98667268242234	9.94694166963534	9.62216082455409	10.0237313455223	9.8876822893696	9.76348090140674	9.80765921422027	9.72554817939354
+"GAL"	5.05102693563448	4.83851391392687	5.11455868459841	4.8626061802949	5.14548330780811	5.102506599174	4.94432009363853	4.88946678420547	4.8719297868706	5.3252603479945	4.96087941561424	4.86913589060849	5.45987639090732	4.83257238110316	5.27204398665087	5.06007603061374	4.97479411144047	5.05372772667618	4.7096388695463	5.77517299515495	5.49570668219856
+"GAL3ST1"	7.23521446042744	7.54694493948155	7.24814229860767	6.96969675435399	7.1259866192258	7.79771710623822	7.09003606086684	6.66593952277462	6.39487517988831	6.82483531626669	8.20725004448374	6.89233636783737	6.61065882875099	7.02390872641358	7.01876052017907	8.93686161314774	6.84052120681829	8.74089804762418	6.80491943682189	6.327546939738	6.9559027537145
+"GAL3ST3"	6.63428331246137	6.82030424969807	6.95563375194848	6.78331224141729	7.12290066487409	6.93664734950178	6.73640415250671	6.70858755865697	6.67670314356642	7.03901336885729	6.67854873975677	7.05171300167647	6.90065318738582	6.81735557316331	6.6664210502268	6.38777620038909	7.01255526631724	6.84735774073151	6.67398483582724	7.00866112164948	7.29365922499824
+"GAL3ST4"	7.66987078232022	7.83036618452537	7.36470934363955	7.51835807794151	7.27483524173709	7.49495211114579	7.72221832534424	7.00894361758455	7.2970014814316	7.41709868495072	7.45094238288214	7.36196649577978	7.55427032898324	7.8622006919103	7.60164579411039	7.82867306094531	7.14738832808681	7.46289170470532	7.55269028945466	7.59927981040835	7.89860237907183
+"GALC"	6.89745218417655	7.27529003300959	5.12435123285377	6.47120580595556	6.66482421940138	5.65451971523399	6.24443397539332	6.63787527945675	6.55186048792536	6.66101691426689	7.43858750951255	6.67453090427133	5.83614194189342	6.02134824224655	5.38807680484633	7.43826532696704	6.71412937894935	7.31242167370391	6.45980623716526	6.47526950491854	6.48081251991194
+"GALE"	7.51283489182747	7.27982748804811	7.66573596624936	7.18666377359176	7.21044102501319	7.20421131676684	6.83455188296001	7.10277157369906	7.06539782415738	7.44715043056083	7.02507544696864	7.37467885958096	7.09809649106526	7.30842771560939	6.95482136747765	6.91670841330935	7.00702910663615	7.29643524326948	7.06286463903079	7.60138839895693	7.53139159001714
+"GALK1"	5.92098805327203	5.65693404786477	5.77175080182504	5.88954743605199	6.03041889504801	6.37547812677541	6.23023043978541	5.94841853843097	5.66401942261729	6.12059484398192	6.19457473612455	6.06682489089416	5.90538701757831	6.04472406623543	5.62446186016121	6.12634434886361	6.00253533663727	6.18902135694248	5.847109339049	6.11466257638286	6.03558307738674
+"GALK2"	6.21794326702635	6.26200939605207	6.09789172263827	6.38303282337798	6.4124809799492	6.35820425348929	5.87131809111198	6.2686291359294	6.37180943132588	6.35657480164676	6.34354993163529	6.38561616698097	6.34588612006718	5.77935324013855	6.17307807995642	6.46266953244487	6.43571330407665	6.84735774073151	6.08364774683568	6.10818154541598	6.56215276714214
+"GALM"	7.16826508112211	6.29328719490145	6.44758119019636	6.48736446627437	6.23273726573631	7.20930146012049	6.6119765222745	6.3363949554598	6.64521948530338	6.30440949115257	6.61843285565563	6.443834933189	6.81302969348639	6.57354777709935	6.72930881851007	6.42059992596434	6.48866248471508	6.45556432049703	6.44477678946837	6.15028917085497	6.303897164781
+"GALNS"	7.48413367650932	7.22590284279794	7.2505741949963	7.16336571064396	7.25735300187291	7.48002050852287	7.01320127200835	7.15644100435709	7.28728744617213	6.99934869342945	7.16693148514891	6.6292582537708	7.42509174731701	7.30052518064984	7.45268708178031	7.42512519087684	6.91552570639217	7.55130266881877	6.79451417748756	7.24837609320319	7.24425537698082
+"GALNT1"	7.40875129511652	7.50030981791776	7.71880477245254	7.19464323742061	7.97065038129096	7.49804243476715	7.12861834153082	7.26051529720978	7.41388112668261	7.58242359247868	7.66971252498033	7.07285206603584	6.90500351702877	7.13644730106085	7.46977319494269	7.49203404107505	7.10930678183729	7.8199843306592	7.21329075355346	7.82821481090738	7.37104267434474
+"GALNT10"	8.20697249639331	7.0618223970488	7.40299977796812	6.97391898732382	6.85582235152438	7.33298434884597	7.53859027194905	7.36033318270083	6.70943705847098	6.95592852327784	7.84264407183239	6.70052456767945	6.83789435467168	7.24316571519753	6.89728265431886	7.6311027388024	6.63709574989846	7.36388187497994	6.9410013744901	7.53263358395005	6.91059524930373
+"GALNT11"	8.8923362810477	9.5189494440054	10.193051988208	9.3114455011331	9.74136836827227	9.01257163555558	8.91586185967339	9.3566918577376	9.69065315149229	9.72263073429418	9.27074608661212	9.56700714434319	9.35581953124239	9.07341940411281	9.4979620093158	8.9855998481088	9.46373147403601	9.4247810235497	9.49469306471872	9.47419863306583	9.52332700205853
+"GALNT12"	5.23505448669374	5.53527860347116	5.53527860347116	5.19732290930443	5.79575324659403	5.80890398387881	4.713575040262	5.39465686348104	5.06551182822816	5.52302473350385	5.47067896141168	5.37236011488435	5.02712173519259	4.98239434172021	5.00680537530649	5.78134570590479	5.38852146787522	6.42131657911978	5.15223247768374	5.2302238426717	5.62735506388359
+"GALNT13"	6.69572903414343	6.86455668932961	6.31810233719297	6.35347489080952	7.03112818938842	6.58686200325423	6.29079601809376	6.75630682497702	6.73898541719823	6.53477590785602	7.4071622024972	6.72946623285133	6.66211210619156	6.41614145832929	6.3439578421102	8.0305692836579	6.51048721162278	7.33693301742795	6.37594901196051	6.82277465078053	6.64792156514347
+"GALNT14"	6.82437745972602	6.75268419822105	7.62280015755114	6.98312337507662	7.12386101779549	7.42362617839263	6.43173933099818	6.94370282585637	6.87098237957524	7.01369395911751	6.75020887219296	6.87147808606675	6.80202868018177	7.11941595023686	7.31034377569606	6.67623016676463	7.0362738618112	6.56474471903098	6.37512266782078	7.24209816791887	7.19739384780881
+"GALNT15"	10.1545847788266	8.90862542977843	8.00539155117176	7.99050214917194	8.0452585151118	9.0580170537621	7.72601648896549	9.50556773823748	7.64621762621772	8.53802547869019	10.6363014099868	8.67437399313071	7.45804668203419	8.37328041128512	6.8770275825189	9.86382700691839	8.51566911859192	9.2429440455581	9.05922844388638	8.08148640413996	8.08282761502664
+"GALNT16"	8.32966361815941	8.74323958797343	9.3000713414514	8.96721989689855	8.72529135352386	9.6235321519054	8.40967839342498	9.07263126351108	9.13173643996672	8.78265859170428	8.50974771247071	9.06611722048911	9.18264595169136	8.86519422574871	8.94800286489348	7.75014375864283	9.11249265071257	8.79815799150355	8.81364812806633	9.05249740102968	8.93427054486125
+"GALNT17"	8.20085513011445	9.27923784575268	9.81986236357653	8.97399527475119	9.59575729506514	9.25795275538352	8.68568798114552	9.00946653985162	9.13381967277567	9.5402782977188	8.51252949434004	9.54657011116862	9.04573163281775	8.75181884628337	8.62830407002306	8.62641239079558	9.42511854525433	8.85306898536261	8.77913580304255	9.96841884730546	9.34911357411543
+"GALNT18"	8.55948564586975	7.93386670599003	8.46788293805127	8.32969098525372	8.61313258977057	8.59700274163609	7.96598187963319	8.38487383558469	8.62994152607124	8.5699014535797	7.98343420697572	8.69972839677455	8.30729615786179	8.13947362193258	8.08192808105176	7.62458953550903	8.23506197876232	8.09134960617794	8.0288042459357	8.84238405110603	8.36500093037675
+"GALNT2"	6.87551186583569	6.76522978002736	6.77732033310035	6.49563121409036	6.35922801820796	7.41167862014906	6.66576122473134	7.17595746934344	6.45936026067802	6.18602920689646	6.66576122473134	6.73135597216172	6.62548129038235	6.76481608179175	6.66576122473134	6.22528175453793	6.74219132852422	6.73364859306477	6.71825225114182	6.17292123476546	6.50055157835585
+"GALNT3"	4.78226099405516	5.14545151209494	4.74654502637758	4.75799280259008	4.86536331551735	4.94626108722818	4.39378285990675	4.86553500896858	4.63310896577752	4.17502128975682	5.87863945326213	4.62374899855534	4.43986055319204	4.55424217872353	4.77757988867526	5.04145408685168	4.71728361705105	5.74882828363643	4.85225910778789	4.72402091925967	4.39893437511516
+"GALNT5"	6.96138217197051	7.03506270600902	6.81401462912287	7.16202610382578	6.99548853250337	6.99170402339655	7.52051500723507	7.12776518720584	7.11555668093735	6.89439802540129	6.86678613753324	6.92308099319643	7.16807676981549	7.74759470039753	7.08658662596883	7.03506270600902	7.04567699096996	6.50944543738316	6.96568723011825	7.05626297780484	7.11083742634255
+"GALNT6"	7.40180994975202	7.6240582185179	7.11999265797565	5.62141333079162	6.91181008809217	8.18467742084208	6.57211625616677	6.3216794597214	6.38864705207331	6.8485504803115	8.04350663259619	6.48107609358873	6.50864653153082	7.75572324854913	6.751147711837	8.11516648467353	6.67839506086547	9.05142950767765	6.61847065918534	6.13264060761918	6.60972628246791
+"GALNT7"	8.05685518165017	7.52917276755916	7.95727576948908	7.31421813974481	7.19213583220929	7.20377249456145	6.88388170087791	7.23650953735919	6.9842382142748	7.00226080738268	8.24333253448417	6.79497951444633	7.063589453602	7.1149171078395	7.39804369217201	8.78434326185221	6.99253884546858	8.47288921401308	7.2295085314486	7.23592536921739	7.27351963928135
+"GALNT7-DT"	4.49269855014657	3.59098217936036	4.16114904853601	4.47827615636238	3.73662529805387	4.07461388777586	4.08583791360896	4.65962454773964	4.03289840109897	3.96215389252569	4.36513292480228	3.78572934827867	4.4241960493531	4.08583791360896	4.32097394635046	4.08583791360896	4.30291884282523	4.40743602075559	4.08583791360896	3.6762241435338	3.87631700728262
+"GALNT8"	7.45870089145003	7.16998627866397	7.74839745665514	7.60038738214856	7.56856083333689	7.73932138394706	7.43937675653974	7.5101085849148	7.62523167282733	7.73015949854349	7.39921881971375	7.69219471144023	7.54624220596255	7.49714251752153	7.67870886491948	7.40562871833113	7.46157548215084	7.28655470077182	7.66979358102165	7.95450558487764	7.42506350815208
+"GALNTL5"	4.79262188228246	5.71094341605379	5.90361589809174	5.24241852632461	5.98995636678444	6.2442238054727	5.1716869876303	5.22763381184697	5.99146801715506	6.38285844597114	5.04083950225486	5.82648687307589	5.45943363832368	5.7662511083396	6.30099874770324	5.40511858314464	6.10770753087399	5.82648687307589	6.38340007371235	6.06640828209115	6.50618392924864
+"GALNTL6"	4.20291384464216	4.25405910102386	4.07128850793356	4.23659956218974	3.97727653140324	4.21749257809528	4.3230664097866	4.53552366041602	4.38787838629868	4.24163626043398	4.21749257809528	4.13903675608185	4.317463595847	4.50063874522859	4.39015097881473	3.89719925371923	4.21749257809528	4.13445467596128	3.89557596397729	4.25190961920581	4.18766777821031
+"GALP"	3.73529672025709	3.88033228695367	3.84054160309622	3.87094702435156	4.06291769013263	3.95444720619698	4.18807991751548	3.83353097716374	3.76889443902123	3.91711642711659	3.75466879899675	3.84054160309622	3.97689651360295	4.12981651342373	3.8962420252933	3.57571382542597	3.69389239891522	3.64740544914503	3.84054160309622	3.84054160309622	3.76454529942528
+"GALR1"	4.64058294385245	4.71741783086305	4.86350217915352	4.73628791930177	4.59254696700318	4.79353791659028	4.57919414067684	4.4772900559033	4.82796580927709	4.65915049192384	4.53822216029479	4.55607277582228	5.02571091870447	4.89573237334468	4.82282082606986	4.66717045437984	4.60803411177789	4.83253003256814	4.8745975688002	4.75983278080648	4.81509503823406
+"GALR2"	4.32366754131253	4.22019085576873	4.42589547686772	4.4338526546948	4.283166129463	4.48392803511861	4.6232233984705	4.41497159729557	4.5834046835018	4.6261817840202	4.2846465702698	4.73490803199192	4.83406914365115	4.4338526546948	4.56179649383733	4.4338526546948	4.37956200955199	4.55582836642549	4.4338526546948	3.95207008230385	4.57077067534553
+"GALR3"	6.46683714757297	6.67766590119438	6.47242531194577	6.84431628824635	6.66208294285779	6.72316109627798	6.75459561520246	6.44067483123101	6.68030548517113	6.82916897357988	6.67962074150057	6.80417569244808	6.62388391630392	6.68164517035099	6.54398308036194	6.80092593962523	6.72951954658573	6.37192408994883	6.59418997655091	6.53959816508376	6.81579289843787
+"GALT"	5.48461580234977	5.35719438785346	5.44699771849837	5.4093262425515	4.99692966879851	5.08204841443052	5.29361928442281	5.23701073899039	5.11480612407193	5.05595625309452	5.35197178128432	5.17825357276993	4.94403243453109	5.01140853867954	4.81348028022593	5.21162510184184	5.47388619268884	5.21162510184184	5.26265897708434	5.12696555967818	5.12726962541235
+"GAMT"	8.20155697071271	8.19689561636743	8.40075368007223	7.87934958684793	8.12911315437832	8.0877047290555	8.1027732563544	7.80292493425443	7.69562565941482	8.06877469984132	8.52600192856511	8.07135456528719	7.96207766133582	8.11026970083185	7.74821579652088	8.69500095021051	7.87291283607871	8.87008995961692	8.09990801722864	8.3273481068568	8.10777731732396
+"GAN"	3.7480070606896	3.69834232215837	3.61031171900429	3.43873379165497	3.73656647276137	3.41707159552396	4.07926458662196	3.97105042514755	4.03609913783606	3.70885818632385	3.60267624619488	3.40183771561882	3.65074712443976	3.53741376891322	3.81703329057304	3.67884275111033	3.78290393690784	3.98642531672736	3.43725700137603	3.34215571292522	3.5345900978675
+"GANAB"	10.0611063381067	9.5872768879636	8.65715121622828	9.43057693668883	9.24330190498163	9.13327809875975	9.68248122650504	9.46127440146372	9.2410746352496	9.73132817515023	9.72448377271646	9.74146788569763	9.17313221893805	9.41437573810585	8.97689158823074	10.0238314316171	9.53232145387823	8.80270941353858	9.28378288831168	10.0476845273564	9.66405047108889
+"GANC"	6.54809057595236	6.97585242990892	6.75116425624724	6.20956607157835	6.77372317033101	6.98673450289578	6.20740146495157	6.70923454174882	5.97869432322653	6.084432962132	6.87534712353939	6.48199457666455	5.94466829553123	6.74026236402758	5.55284862737416	7.50701177914604	6.53333939565744	7.3653793774768	6.14640112497881	6.15269957353749	6.32032406766099
+"GAP43"	9.30713948783267	11.2155550955035	11.4526388696808	11.3633546111555	11.6612675260592	10.125045571559	10.1113610353447	10.7661775102861	11.6410842975919	11.6946112665043	10.3018090159361	11.5766105620507	11.5803235346704	10.1421756608671	11.4139837816395	10.8004104327582	11.5995422884793	11.1313252672294	11.4793782107379	11.6389846154653	11.9119633310834
+"GAPDH"	12.7159470048638	12.6401456010012	11.9458564356869	12.6117239628196	13.128421726111	12.3133848909287	12.5184405580001	12.7689379099159	12.413985223748	13.1804572247189	12.7656151454209	13.097325187609	12.4522707440803	12.1461846957069	12.3113102988677	12.8103192052798	12.830152062108	12.7271569564061	12.6410707911736	13.1369779418065	13.170575846335
+"GAPDHP73"	6.78213784331434	7.0866546618309	6.48312125255959	7.07891498113306	7.24353774040289	6.69833558771721	6.88913932305508	6.76558771796643	7.06339433168404	7.2210707769658	7.00930713675435	7.01554962835442	7.30024199318942	6.70093934218646	6.97805044069121	7.14144299272757	7.18003988345621	6.59621534760526	6.86459777718411	7.07637200547968	7.18063165223688
+"GAPDHP77"	3.95582889139339	4.0488113775473	3.93668319481726	4.09362863910872	4.15161136003007	4.12255634680641	4.10108277851467	3.79052752102604	3.87020908709433	3.93668319481726	3.75228740088982	3.89326551297174	4.20714265386834	3.99555126222221	3.93668319481726	3.93668319481726	3.88649069149848	3.6804335273921	3.74804182048776	3.81857426938627	4.07154969199845
+"GAPDHS"	4.16868640366873	4.36996885499911	4.24872271140683	4.24572424319459	4.43165023808612	4.92574317852654	4.61284354163675	4.1112004030439	4.49773039017647	4.20850312006264	4.03979539245002	4.4188779425077	4.39893437511516	4.53164972105293	4.25289442726623	4.5686003335935	4.30381188228462	4.02761108504651	4.3180634623632	4.37270884358007	4.36501266910586
+"GAPLINC"	4.09169543291399	4.15023880386558	4.21766899604701	4.16089863856463	3.87661545112972	3.93294370159463	4.18485637936505	4.20127407251357	4.2320290600991	4.20087548998776	4.04830628557615	4.14834060084508	4.42359109405148	4.092259376467	4.08324028435741	4.15402773370595	4.16194008944514	3.73451384652707	4.14072271443859	4.15402773370595	4.26857787528841
+"GAPT"	3.75008494094892	3.66460139364954	3.49983672736471	3.5739870253035	3.72301810505594	3.42230413201513	3.56190782767308	3.62306627013432	3.69558627103495	3.43171121786745	3.50084115310744	3.41423035932705	3.3879006823887	4.14498458779745	3.57212746481611	3.58797465060408	3.57212746481611	3.52861551391958	3.58007858586624	3.61112474030518	3.5832507669732
+"GAPVD1"	6.41214505516656	6.30619483193643	6.01286677720717	6.48233801150849	6.71629096052144	6.18181024550912	5.91479743763937	6.53851495905203	6.10927333254735	6.51796171649799	6.57323831756853	6.61051502185851	6.20889881220879	6.10449743916863	6.11613754897907	7.07872909290327	6.42958954675949	6.96404476576801	6.3571324843092	6.73628313467834	6.72935195238113
+"GAR1"	7.72457017448922	7.29968065045879	7.89009537797637	7.49520615666031	7.2317314059407	7.47114426859972	7.55928149230884	7.23758146110184	7.66249411466838	7.44110443237255	7.92275121279999	7.26062247419955	7.39015882123163	7.53503587897907	7.52811753850935	7.67163134528071	7.08070428618872	7.49084391353836	7.40456416478519	7.61929531483061	7.65824142568914
+"GAREM1"	6.35322287290012	6.14672908030028	6.28909330838811	6.59468150585032	6.0450207516632	5.44236962797793	5.86870018777266	6.07339825706322	6.8383806229948	5.96802426334558	6.53607782480961	5.73527801951873	6.71694416838411	5.92030277756816	7.04029151883567	6.2731649297609	6.53733089780667	6.68272312916881	6.33207481117502	6.09614546019737	6.23794237722781
+"GAREM2"	7.70559455566699	7.95485965285647	7.61704906822878	8.14116524571448	7.54992579029823	7.45987202794964	9.22399142718313	8.03674448221503	8.07552009749003	8.2508913125367	7.83545172279318	7.44960592393306	8.31758431353275	8.51759748329657	8.04720158271999	7.3859065723811	8.21965912037549	8.07777040085517	8.0784685984662	7.52318391566145	7.14721767140411
+"GARIN1A"	6.41121816266534	6.03494359694459	6.03105185904622	6.03105185904622	5.77915002386926	5.53277870123809	5.76096111207894	5.61867774467187	6.33821833768961	6.25984351956038	6.11613060502719	5.87486227089548	6.03105185904622	6.0088375330385	5.7263487932704	6.15403774871169	6.03105185904622	6.05939320015925	6.27225131441596	5.78270280587925	6.22852170936506
+"GARIN1B"	4.99826407439448	4.92300243498012	5.04677582884104	5.12032525058507	4.90284293006687	5.10097249873369	5.0641184758455	4.92300243498012	4.99553421615431	4.76171640474321	4.71880151182	4.83141262027091	4.99448436926025	5.09685511729537	4.86880546780512	4.7770174719561	4.87938050935537	5.02522907181022	4.94318362391898	4.72423342346295	5.0508058474421
+"GARIN2"	4.53299473138786	4.72404080857399	4.24033533765474	4.95782969409159	4.74984675127009	4.61015471885292	4.55182462549543	4.60967268624328	5.00408559135512	4.64651660437937	4.50023722345358	4.6587770558098	4.79651650419665	5.05624355338395	4.73387463912549	4.67645033955079	4.84738444728806	4.64993627538626	4.62828515113945	4.54135676917404	4.63315445651658
+"GARIN3"	4.02632443247315	4.07523083722936	3.8675549543577	4.06359107344781	3.72251374372991	4.19694963103345	4.55527887730706	4.06359107344781	4.3610597008835	4.08193599403084	3.74585578753782	4.04437805592519	4.13722587909903	4.41725443359522	4.13538500864874	3.76656321390302	4.27333433569641	3.898773541995	4.15485373034289	4.03696129505415	4.18621493892016
+"GARIN4"	6.6571612403275	6.68478731093652	6.76891290846205	6.98759972583651	6.63365407817353	6.79958798600287	7.01842635848591	6.66560937964645	6.73382183158894	6.70527775823834	6.68623424736791	6.7144363542706	6.94392854511269	7.06666761084124	6.57021136190304	6.57246935772899	6.78206430457926	6.34423261922556	6.58499295153638	6.47807830138943	6.85608504771841
+"GARIN5A"	6.23266479913508	6.18229708281303	6.5804424014273	6.19675768019803	6.61119658489837	6.31290356680071	6.13069868150301	6.23693490673232	6.40500862926008	6.58762088814949	6.12229961529883	6.53300206915041	6.36137016034384	6.19336515258983	6.40500862926008	5.84680436663177	6.25050493152902	6.07453868033611	6.31290356680071	6.78605154154317	6.32381667300098
+"GARIN5B"	3.31543886748065	3.37440587774292	3.47504554500296	3.53284762631766	3.45405742391092	3.34486199625773	3.63630869474362	3.64472016357838	3.77138003833501	3.53563885221081	3.66444867071798	3.71683318379304	3.46487431105226	3.53563885221081	3.53932555628666	3.58947078646514	3.63825736930888	3.41603442714824	3.54439811367766	3.50706129241033	3.81304310971496
+"GARIN6"	4.79687902096196	4.99129928635334	4.9686938960808	5.21481323722493	4.71830784333498	4.74071717352605	5.19272769751399	4.82765978844094	4.80545519629259	4.84516722866808	4.80582137973283	5.05870277124623	5.05497694948843	5.05493363336589	5.23045797676844	4.87784943157434	5.14433124116309	4.72013977980529	4.80419531992814	4.94936370266715	5.05493363336589
+"GARNL3"	7.97872248892151	8.8754059648129	9.08909509096369	8.54361898315797	8.75745100329405	8.38112897874323	7.68796572132187	8.55314815148246	8.53735075553402	8.37672044624786	8.24839435518855	8.66218644287626	8.35317944003105	8.17549328019072	8.51102377118637	8.4257725784597	8.68089051882628	8.66750136480889	8.3692549593416	8.71007144549755	8.61772712841524
+"GARS1"	9.81809692483198	9.91731434285751	10.4402945372527	9.87751865206281	10.5943829486981	10.2843286296502	9.28424146808831	9.99723068334451	10.1953524522586	10.5343434047805	9.70034452027627	10.3733671078841	9.88389150935964	9.48856893699356	10.2815640238163	9.69007347627958	10.2702468433444	10.1048876286282	9.97637304644307	10.5631169039436	10.4316557191536
+"GARS1-DT"	7.42513579079531	7.74759470039753	8.02855352227408	7.63563595236675	7.16457828864501	6.65406713838305	7.27722759434037	7.42550225703522	7.69053963123982	8.08746718053569	8.38200282074393	7.72001630321387	6.9312921248896	6.95095136899938	6.61685830951722	7.66808232358017	7.6331695001791	7.35458954702195	7.57336618137567	7.44484815644585	7.6818837419593
+"GART"	6.70796079282188	7.42207971602174	7.83135656263572	6.76850106592872	7.58745208047269	7.88310506602726	5.63254803267466	7.92784664595411	6.32760379014523	6.53535143978842	7.3358788514888	7.49097625661797	6.73253309867692	7.00060552815114	6.60580613665069	7.0000929578121	6.91428900396609	7.25994517722073	6.82224320468421	6.93164201237004	6.73337586382231
+"GAS1"	6.90184323504483	7.0036005806124	6.86008443789526	7.06337900679121	6.98097423897826	7.11255597694256	7.22018944934617	6.67238700299707	7.02414025574965	7.06199393018198	7.65483945206223	6.14893618509495	7.25264011569132	7.13803534436894	7.05638144262496	7.43084783862569	6.47573640299399	8.05955713963206	7.21553459191859	8.43339220580945	6.0601656065154
+"GAS1RR"	3.04413200184465	3.18916756854124	3.22569488504146	3.13425694456665	3.08529431054539	3.09819274915201	2.76716461532535	3.04413200184465	2.85702246915503	2.97592694330417	2.96592361195192	2.91792464700788	3.13515396385485	2.86588741795333	2.91133548541098	3.42378583735716	3.06300079433236	2.9940696637126	2.92031879598008	3.12614350147628	3.08379079226625
+"GAS2"	5.7138488736402	6.0230098446336	6.05759219492186	5.74596163351471	6.48874736877779	5.93575588747674	5.43180986796164	5.37926674497758	5.87211851873674	5.91062715538316	6.5793184786918	5.60829750294601	6.00965427717937	6.03610364860618	6.26051172457064	6.56777760043105	5.9295269700676	6.60182479545065	5.82425019869823	6.0268456023735	6.11522886281258
+"GAS2L1"	9.85500812149492	9.59215734521411	9.64805764763305	9.94136473770896	9.22996400945805	9.80879225348293	10.1776540724116	9.91044562547872	10.0615378636861	9.54141450619873	9.32784688617428	9.12214097941052	10.0815259740913	10.0631898987276	10.1661836991968	8.76201139183417	9.48233592845287	9.39629114102252	9.5559287526548	9.51819808730682	9.64714811045645
+"GAS2L2"	6.77417944220208	6.88175183906364	6.60442832157469	7.04557478441389	6.85119543630362	6.76889537870552	6.7911588993801	6.83767153493419	6.74156262285469	6.95629374261681	6.6085124882928	7.04106963438169	7.0210345794112	7.03814175178472	6.95600860595731	6.82153449163169	7.00649488863629	6.553763901597	6.96034866943324	6.7911588993801	7.04029151883567
+"GAS2L3"	4.60977750295242	3.98494025160285	4.0002682587845	3.87612886376013	3.85333048088086	4.70054938389572	3.98529606025352	4.20479628536753	3.91552922194121	3.89364099389855	4.31084536241288	3.84126062687845	4.31366612654922	4.17286921806711	5.2877850641406	3.81383415728163	3.65410530142904	4.34384672476441	4.01271633030465	3.77751360704105	4.30103432640976
+"GAS5"	7.0639541777797	7.81918220667492	7.9523608440814	6.63398426326122	7.42000690682461	7.11702766220929	6.14625486114295	7.78663821021622	6.17102607354078	7.01654476634804	7.63807045218915	7.87829400273126	6.29454699806025	6.22774948335917	6.54364552009709	7.62187929641942	7.20687960106573	7.52651351442641	6.82399119753225	7.5685332742039	7.33511950166129
+"GAS5-AS1"	4.84951187497817	4.77073241233045	4.7056481318937	4.79008791352043	4.9215181950684	5.1566458056588	5.47542763050103	5.11342670521393	4.82252025605332	4.86998796154211	4.50612390166779	4.56792860109413	4.99156403737818	5.30414423973762	4.66309177277098	4.96318051977294	4.80433334044308	4.59917298013497	4.51714579892485	4.65142300407495	4.53845565634226
+"GAS6"	10.128082397104	10.0793204726805	10.0598848959245	10.0292031410562	9.92524766742217	10.57686358362	10.3941253549453	10.1901461854646	10.1574972965641	10.0849738014212	9.86827155015116	9.99610167486373	10.2567034982334	10.2858965185301	10.0170567027167	9.73606162380446	10.1910055571579	9.78759419455684	9.98346707246582	10.3359114213694	10.2469899904968
+"GAS6-AS1"	5.23159399335505	4.84102547674733	5.15572755128231	5.14283737481318	5.05954145354657	5.14283737481318	5.55018069636368	4.82471309062778	5.25485800367124	5.09122390903668	5.27110898088495	5.39576317200021	5.26303289027258	5.26973382839203	5.12588675372615	5.00186539850633	5.03576066414517	5.14283737481318	5.32643867351237	5.00452120415901	5.09074042085598
+"GAS7"	7.76650329937025	8.49678552157456	7.60751225963597	7.94921386532024	8.76755724126153	6.77054241918036	6.78406632153115	7.78348322308065	7.93779512035476	9.11525779932949	8.72720228547787	9.31880900259779	7.32547778457194	7.32748998975437	7.29476555420956	9.56037037912994	8.67714948855301	8.96767238294005	8.28438803820161	9.13174058460333	9.23134688984885
+"GAS8"	7.85414837452716	7.86352741549667	7.91433456383258	7.80751640580539	8.08125272294784	7.83949636852267	7.61129656867596	7.67427567202268	7.9846567369716	7.76173536881446	7.68386123961747	7.73434462969596	7.90067479487419	8.05069794077961	7.82266606601691	7.693876078696	7.88484191167627	7.61695806562141	7.53883686305624	7.87115377454539	7.80572225004651
+"GAS8-AS1"	4.80693347934925	4.81254749949588	4.80226026243736	5.09430325210326	4.55754376502237	4.98200908134609	5.22215528275532	4.95703034437682	5.06228152253017	5.09481824411651	4.98200908134609	4.87993159993619	4.87788335838595	4.84476187544855	5.23045797676844	4.96304803940404	4.9822364697671	4.72479038194734	5.16213527400197	4.63792475876838	5.46459405337076
+"GASK1A"	5.45155082866767	5.65519019542251	5.50329630085148	5.67629350431895	5.46342511965693	4.55103080349187	5.3440176998164	6.202969860213	4.95713060828535	5.34860174528694	5.51005763520272	5.88125507606798	4.76470507892437	5.03558341647633	5.04407878841591	5.74015959555071	5.50329630085148	5.71692321029992	5.55118439835459	5.88584740772593	5.11770206250202
+"GASK1B"	7.6255795928465	8.24277091594107	6.10441633520873	7.08201484249084	7.0736257407008	4.84141021494222	6.95792870019395	7.48616594406945	7.07715892442827	7.15125987118476	8.18832592690961	6.86434136511009	5.90739189760262	6.3617621058243	6.18752465740924	6.95768041464992	6.768580363068	6.99214846680285	7.73571829757093	6.53356738420882	6.44542958494123
+"GAST"	6.28718326950107	6.53052701124114	6.55468281999552	6.88042096608795	6.51554262862781	6.6182867198158	6.91739162453057	6.42995665070317	6.33205834818489	6.60088113836476	6.42716678958973	6.40779697296529	6.93294876492942	6.94392463336431	6.42507321468597	6.58782253707158	6.62091256196859	6.35665289360303	6.64254666860612	6.40335165523267	6.76651240246502
+"GATA1"	5.48450547796449	5.649593850364	5.72030553360857	5.71014270261909	5.63158239161505	6.11566652877704	6.10066663687758	5.67461059957541	5.71460331304177	5.59504618329008	5.49088558606119	5.83348673463374	5.82648687307589	5.80484416210461	5.52177973793346	5.72074101736708	5.62491969813142	5.59357859084245	5.78717978434665	5.47542763050103	5.67727472361426
+"GATA2"	7.53253455584582	6.47889833502712	6.12089681123485	6.53984158533749	5.99258881630619	7.09104291539911	6.80313380468457	6.41584957403101	6.30076327802149	6.54879900762143	6.57127338589777	6.18829047711353	6.70926183884584	6.98604704312176	6.74548386690202	6.049234474343	6.57238048816133	6.39280411338969	6.69469547153284	6.269956556934	6.36035234407323
+"GATA2-AS1"	5.51206757135793	5.51383590086686	5.16454278719042	5.62052383583875	5.44433960227477	5.5797130226779	5.9721574541798	5.20359605095534	5.65206995009276	5.46317693134069	5.32227102370512	5.56166027411583	5.66082254285061	5.81497997141975	5.86297549292101	5.5276255518973	5.67096726226493	5.60639287069256	5.50124761802566	5.32286366169179	5.55545671869577
+"GATA3"	3.41603442714824	3.20049835010275	3.4296346888249	3.42251906831705	3.31892663717637	3.20379295766118	3.8511856901809	3.52974109974554	3.42598080769835	3.49177900013557	3.20968728588634	3.37933421337448	3.60540378072048	3.50374644712242	3.31863859584257	3.39931201815477	3.50991063941228	3.42598080769835	3.27069749318645	3.46538631112885	3.42598080769835
+"GATA3-AS1"	5.08525123903448	5.25207830467085	5.3126716118787	5.47496931941383	5.17893285677726	5.3126716118787	5.75646296025572	5.24316222787389	5.09350710038521	5.41196121199064	5.03844305908492	5.30829800232271	5.22392372984757	5.60461808247508	5.48242820808364	5.07132118929217	5.22977942006306	5.0751081981946	5.49513182930519	5.37084237343482	5.18747938037321
+"GATA5"	3.25309811826045	3.27973543835535	3.34736328123454	3.49202021978786	3.44142677583278	3.83106603548265	3.62880964125742	3.36890121675791	3.43309284530097	3.53741376891322	3.59484081990524	3.76597463996094	3.51994107431018	3.84625881733546	3.61306200375938	3.2817120351468	3.49202021978786	3.43510498963163	3.2280527329688	3.51241319827201	3.63237981379641
+"GATA6"	3.14894562200451	3.00000958913918	2.98228070136061	3.20355692791534	3.15849489017981	3.24783188304782	3.36980935354078	3.07792571225815	3.1346987022082	3.09276653390052	3.05770273004395	3.01449908281559	3.14754853541431	3.43326127265728	3.24531026384713	3.03494250516311	2.98627402748739	3.20388506399409	3.1559613813224	3.26424843300039	2.96537403288659
+"GATA6-AS1"	5.2272095405193	5.35216807349522	5.40204776212143	5.7899061833471	5.38793923751382	5.71424479934883	5.49057196187833	5.38614847216638	5.37672341820969	5.49057196187833	5.24735156639137	5.57404690134941	5.40204776212143	5.94450565142442	5.6440340970532	5.42411291829854	5.51950533373135	5.14270098265786	5.57002631313557	5.47019817981755	5.45862397171909
+"GATAD1"	8.69682324032896	8.84711824379535	8.69855664177928	8.57804878219432	8.92118202861236	8.67360671224181	8.1269726698472	8.55074741661572	8.38901544424543	8.42568903049238	9.54516341594513	8.77838246887177	8.22893752974716	8.58992253677294	8.14057369963184	9.5361278518115	8.83866438173805	9.61024793506319	8.72925619182359	8.43412792206994	8.72988424930547
+"GATAD2A"	9.06577499692093	8.56190223750152	8.56190223750152	8.53015805918889	8.6666232484585	9.3407400474676	8.798791793048	8.7188999033829	8.69919985674312	8.50366078185344	8.51342548601715	8.11633368216945	8.96972298621434	8.9493993323283	8.7389171359998	8.45158859032436	8.46073517214018	8.0781199070017	8.29464885087052	8.37249187124695	8.48150621648675
+"GATB"	8.26212358810442	8.53738135638315	9.02209349544676	8.59672128614852	9.07012393015146	8.36447414086813	8.11404232334589	8.6819914112797	9.03389609141858	8.96579357580176	8.37957147161902	8.85033747588139	8.09005006988973	7.98728363251683	8.50919754291975	8.99990523522905	8.78372927891181	8.94813961812744	8.64045173828273	9.38884981395556	9.04157282603469
+"GATC"	6.99652400928924	6.80700148005004	6.56940350099781	8.00586224572609	6.80741656902571	6.50337535551688	7.37514769234778	7.35656154654189	8.06740770868041	7.99573443421439	7.35592929390203	6.69274316994491	7.24209816791887	7.11065754295218	6.92063837119347	7.33431888197284	7.28068634572618	6.68981442038573	7.00865948810511	7.06378104091103	7.06204790862196
+"GATD1"	9.00993224685645	8.86387472665762	9.33665734466983	8.89456977724482	8.5788468630161	9.0182171972419	8.95476017728248	8.71000746617602	8.70404869426193	8.69205285883786	9.09648801534146	8.49514104638593	8.82208611209166	8.88193536325157	8.9047549972586	8.63593063584496	8.4978615446643	8.74288328352098	8.73151237700311	8.7805181832006	8.71674438644954
+"GATM"	9.16850838071158	9.39712742081552	8.63888622353127	9.43519951085459	8.87632165259286	7.96196734953714	9.42391555229042	9.38885786516435	9.00215329862518	8.77523877094944	10.2312615318821	8.98435909359548	9.48853588511104	9.25602453847566	9.373856110797	9.638874413824	9.15258630121179	9.37570418623056	9.67787327098221	8.09956573673717	8.90781480161597
+"GAU1"	5.3410271750345	5.60666629498134	5.47148058913471	5.56896417975725	5.40685491381149	5.26680561458625	5.48737761385762	5.55731530496509	5.48737761385762	5.61527928085512	5.3741488818266	5.28660067695696	5.49626065149612	5.4527075383983	5.60565113045318	5.70627673471957	5.59225647618188	5.01234904462601	5.42980079240764	5.50667765304663	5.62735506388359
+"GBA2"	8.51703725767207	8.41506031994375	8.37137054295728	8.50430368375301	8.89388523576247	8.45093525851885	8.58782823197478	8.56087042147669	8.59747122147577	9.18637586679612	8.32571950927131	8.88880126385031	8.60525031772481	8.53827406287999	8.42748813901928	8.62328979364054	8.80429386051829	8.73102561286713	8.41476108464063	9.26248508419948	9.20061943657015
+"GBE1"	7.9059061356445	7.74910784424395	7.89572052029293	7.38745463511463	8.34079735707634	8.02631245175092	6.74823938432446	7.82373920940993	7.55901408593781	7.88366579445717	8.00883578726262	8.02951820916637	7.56955973021543	7.54810389158488	8.00025419279259	8.28203372942281	7.90749434206864	8.40663424136453	7.64238818319629	8.07109535743695	8.23820646193717
+"GBF1"	8.37967030611035	8.3333272366681	8.11869159747019	8.17313447055662	8.38227762303508	8.25946348407801	8.05893283596885	8.32434155721017	8.18844247764667	8.46412668021578	8.21508555096431	8.50947834262009	8.22681852502216	8.22584906698416	7.80947970473585	8.22219193087749	8.43587382585978	7.95357363572981	7.93975412216731	8.74750375232743	8.55224516181346
+"GBGT1"	7.15120340217942	6.63981681369342	6.54209978594801	6.88779509976339	6.52745204580882	6.87465683241863	6.94414034211635	6.94871677620149	6.49606183808792	6.57525594574626	6.50055880600626	6.70052456767945	6.85362720397926	7.24197474378638	6.78266499172259	6.49464773738007	6.34278408920858	6.55135972938997	6.64942964815253	6.80592217175239	6.89432982413639
+"GBP1"	6.29897771602723	5.61524449650198	5.28882338905958	5.15090999739981	5.12746650795198	5.20654412465539	5.41910842906029	9.04729353180972	4.30566129712695	4.86230624754277	6.54167523709613	6.02658154445867	5.80020119813179	4.95171406651872	5.03521767699869	4.96169478082105	5.00148235840704	6.30059087415301	5.34810385551279	5.45327854027745	5.85454082604757
+"GBP2"	6.17785517451381	4.85952490474361	4.63199054197018	4.91100454531016	4.85274892989981	6.16179000032062	4.71841367814963	7.9278236570651	4.91912212229306	4.93013278249689	4.87967256329112	5.17339519514035	5.85180575172141	5.14724125505211	5.34588472223397	4.65028797238816	4.73747527858445	4.83117052787404	4.98287244528009	4.80806231648653	5.08992990411431
+"GBP3"	8.29712320796482	6.42915804343792	6.32544039837159	4.77780968629913	5.28948084130776	6.25517938367576	4.37858549302112	7.27065176541226	5.44564954016381	5.3007593225936	6.555328752512	6.2030763496523	5.85318606179714	4.38520160712345	6.53307805848702	6.29645190598905	4.0871511723805	5.68523376565495	6.15280353122745	5.70183451623498	5.51978965919464
+"GBP4"	5.73971809950586	5.65311411297442	5.84473126136318	5.62052383583875	5.86464285879622	6.12292761093891	5.68069681481603	7.0560265089058	5.57460405166132	5.59115924327693	5.88890908496859	5.66116601342299	5.93453513626568	6.19942670830897	5.26703488821634	5.71589830559843	5.60401903243815	5.63683175871607	5.38881532383463	5.58687070597891	5.70997719013513
+"GBP5"	4.09109802554022	3.97439383978876	4.05899730111048	3.82399613781577	4.01830838711008	4.14773204055005	4.03370460317926	4.15342574993908	3.85902495942919	4.0361423108358	3.97599824373205	4.61460541702429	4.40673540370125	3.98594101025326	4.28183773898828	3.79446266240597	3.91302519733201	3.95605838227204	3.98805740812569	4.03370460317926	4.32349845711764
+"GBP6"	4.49497619638741	4.29614636941147	4.31935917076242	4.35576882054181	4.41976680400054	4.32351478355936	4.14497752207361	4.44899012273175	4.46799207245646	4.40013565609539	4.20378681661652	4.44650194604479	4.32351478355936	4.40013565609539	4.18071607204266	4.69264683027039	4.19541371359962	4.26626429992122	4.30117845317669	4.24768744814635	4.35083164501754
+"GBX1"	6.32260779336305	6.25587129942054	6.49957242350591	6.48802066375821	6.32994201653433	7.00860228461213	6.73648358577155	6.35665076906068	6.19287553417056	6.27027998037171	6.07780232918461	6.3567550763703	6.45484107198593	6.66642597053963	6.42908603590492	6.39421562214952	6.35292612305869	6.10010098642133	6.51349641687856	6.51285300912485	6.49023115443945
+"GBX2"	5.17933303058581	5.23389961059546	5.37268743956117	5.49840780156531	5.57377606300388	5.57766094628098	5.75279125928692	5.00464271214721	5.24028894717787	5.5604639606218	5.37837041131176	5.19304979441896	5.56522563960713	5.55351726394227	5.64508586291976	5.31730919846428	5.63423168097662	5.40518713384735	5.52980654579292	5.26688713559069	5.41184798818491
+"GC"	3.44037017422989	3.30836677292992	3.49907232928224	3.54961189116139	3.51911873369662	3.50202295304285	3.5422211868113	3.41138116776275	3.44037017422989	3.39121358402008	3.13618026791097	3.36560010406572	3.44037017422989	3.59324820147167	3.13389760056896	3.47115147475991	3.44037017422989	3.44994412743546	3.59595183134615	3.52615017897941	3.30173012344556
+"GCA"	7.77517090675773	7.52026116389109	7.27037961956512	7.21072493460173	7.69899605312743	7.27303431288371	6.42729852606471	7.63459968871081	6.98010943979407	7.20505177461619	8.00969276019564	7.32658866467017	6.44657909239642	6.49320570938993	6.81106080584268	8.3532847579201	7.42248371326838	8.00820051521148	7.27351963928135	7.24481636655084	7.63024109188143
+"GCAT"	7.91021013944879	8.10152372103805	8.94173859836088	8.10111926058154	8.43744209913166	8.55788081909738	8.07765155972469	8.11431691587172	8.31114725804186	8.51419097233349	8.07294156597238	8.30380867229709	8.44033711200583	8.09463898581737	8.29523465799328	7.96033052678519	8.07594063162713	8.392707741584	8.14232857052986	8.40871481251969	8.20335475844729
+"GCAWKR"	5.55890411844152	5.58153467410665	5.34810385551279	5.45281359590949	5.34810385551279	5.95513656217814	5.26265897708434	5.31778577474971	5.25255474757163	4.83949282577861	5.558682133304	4.91042994492109	4.8338013422754	5.15483137556741	5.26731973622314	6.2960991019677	5.37947297623162	6.38175328692918	5.34810385551279	4.94231858603256	5.20577432267341
+"GCC1"	4.34389295307841	4.30115575499644	4.49674301748861	4.59245950567292	4.3235957396432	4.58413707554137	5.19614517046327	4.43041676935258	4.50604064250752	4.59700628596134	4.90881085428106	4.73295085054963	4.72433032807904	4.53882101709111	4.53078753454077	4.48516004259775	4.53950263451484	4.30868842308916	4.66124087142173	4.32410770267663	4.66677639481395
+"GCC2"	8.92753447186201	9.47445050631181	9.79723097337753	9.23534018609513	9.68187764264574	8.51797460483094	8.28586496553735	9.3138011530436	9.50742924372655	9.53937815375096	9.08568316839074	9.46826822104087	9.21777976346309	8.75056309157674	9.31340595835832	9.44020097490683	9.66066368037409	9.29109172000479	9.52823347737165	9.57085720343351	9.60195896614117
+"GCC2-AS1"	5.27078475882974	5.2944117420346	5.47755936382034	5.67855961462717	5.36185973891323	5.79210829580479	6.34164608337279	5.36781935017976	5.70488715361555	5.57260824285167	5.40516240537388	5.55238323599001	5.8814444628226	5.68707216165264	5.58765876355188	5.37875352576155	5.46803503578637	5.328366957234	5.7818285637905	5.50816853495466	5.50584603682472
+"GCDH"	7.52103584612631	7.6238051475012	7.60875181842896	7.07891498113306	7.42333789124232	7.66346078473646	7.42871048680333	7.52270422355548	6.87809803873933	7.21281176376164	7.2862356997898	7.15328696171802	6.7279376710242	7.45119983624797	6.99913341061898	7.67182472227162	7.10900502527734	7.4977023444625	7.41697339533163	7.51278940222801	6.69311935595668
+"GCFC2"	6.13790445651876	6.4305897920746	6.57330144261948	5.97897293041852	6.05911335515184	6.00990179220662	5.8497956028155	6.19165652850706	5.82663682701043	5.92056527735839	6.36755405368114	5.84758107004499	5.47396712424135	5.9625642807194	6.07856772778804	6.81430424893357	5.47487454224126	6.35793186144703	6.15117176011504	6.03837270463874	5.98737603366594
+"GCG"	3.30234537175219	3.2183750087715	3.23352281297437	3.33971286237456	3.39212204928688	3.19482428478776	3.54578249456747	3.37070697246302	3.28544229852693	3.23905703290424	3.37227284406819	3.33845617202225	3.15398061512374	3.28446445626783	3.55313148668376	3.41692339929836	3.46703589750794	3.30181627920227	3.35162441523624	3.33971286237456	3.37239726800929
+"GCH1"	7.47634569240592	5.6545712205523	5.97315424655117	5.1392690912919	5.65634413115977	6.60038296669408	4.93131038143695	7.07492248389467	4.94543862790905	5.33696458406663	5.38658345127688	4.88366188965565	5.5941733389914	5.52641727837779	5.76063883585363	5.42382655583676	5.02911786542874	5.85966262647842	5.32004393919498	6.1990643174201	6.32414384222999
+"GCHFR"	6.61475303445353	6.3305014590925	6.84496929924392	6.83594636229173	7.35866391315378	7.58710184089547	7.18720277272283	6.60736912395557	7.26402518166778	7.29448066028313	6.5158119853168	6.97298166974515	7.25891397937729	7.29531868479754	7.47580838642293	6.42954324179333	6.97625912260208	6.85569610809451	6.99685875259639	7.33820724729287	6.93080966451022
+"GCK"	7.19437787294085	6.94541602407322	7.07307237408442	6.68853592530947	6.85062924557655	7.14393269432442	7.65895131411951	7.26416484525954	6.76772481654655	6.98808555939544	7.20659869829089	7.0839875246391	6.76180398307041	7.40789055805427	6.9132552776401	6.82820622786338	6.99272010205198	6.72444779658212	7.19483703868956	6.87269982267748	6.69148192813671
+"GCKR"	5.05247010515709	5.24267279808733	5.19864550058787	5.01666454350948	5.07508829750431	5.39830266147594	5.70579113424196	5.28938318817338	5.2323793101973	5.28728112607686	5.09976810769549	5.39305242486504	5.20203300873495	5.43990461127939	5.09093057299234	5.04127325269312	5.18622951901302	4.86787663311833	5.1034016120693	5.28568648576843	5.23824334609322
+"GCLC"	8.82446798798916	8.53094960450802	8.33072612167284	8.36629493280007	8.43366063528134	7.86328072917028	7.8080186784219	8.13408862522726	7.98096469094918	8.20418127940709	8.70920736680516	7.9551033786573	7.61289715029699	7.91116911951279	7.91308090688623	9.27133066845848	8.18985477810912	9.25177864520368	8.2821239060727	8.27829627958467	8.22077544477524
+"GCLM"	8.72072181275066	7.71951218007259	7.28532063971208	7.7514760620631	8.043272630039	6.79309906914011	7.73569700805441	8.7746856116666	7.94756832546813	8.4838858784242	8.30865015878621	8.0985011600837	7.76420993512583	7.06176973682876	8.01813303589527	7.80260489911351	7.9863798014757	7.90220032766599	8.18715691906309	7.89163399770761	8.3230286841227
+"GCM1"	3.39475357940598	3.34089142193434	3.50310234788329	3.51912389357139	3.4490711993236	4.02645050774955	3.82188128620596	3.31793786978594	3.68423227114283	3.50310234788329	3.25727462920027	3.52402327918103	3.82779472674941	3.85508134578741	3.61580116912615	3.47115147475991	3.44408106319345	3.41603442714824	3.48956807064872	3.55768282084306	3.50310234788329
+"GCM2"	3.30171777387226	3.28528372274793	3.18769459508268	3.13326860454434	3.21193305752604	3.5044881283587	3.28609591350609	3.07644453700029	3.1829658520694	3.12833369669866	3.16079182522495	3.10410431724551	2.94697296247283	3.15586787013708	3.09702934001642	3.13326860454434	3.00367059326968	3.09672516973039	3.15318356207633	3.05923376640923	3.03479745012784
+"GCN1"	8.07227518722367	7.52705936451597	7.44981251444674	7.34982524767677	7.41953164584355	7.53476733279246	7.72605744193703	7.44551299031803	7.42066321698322	7.53476733279246	7.61839257974014	7.41704965780569	7.55145104698223	7.42126343248709	7.36153384935778	7.94072593073704	7.53476733279246	7.98458355336701	7.5543177818041	7.60243497883502	7.69788968850171
+"GCNA"	6.27122755571399	6.0546254951655	6.49849299721358	6.90265930757772	5.92727262820833	6.47522117638278	6.57174671728779	6.72639482610771	7.38827501748196	5.76032473536103	5.9841263243859	6.00543439948565	7.76935839328788	6.67267798810165	8.04913327290651	5.88751146001352	6.64553341943622	6.68565793166354	6.44462388154056	6.04769775710779	6.38167652852514
+"GCNT1"	5.77056113578963	5.86466096090133	6.01152036622606	5.9030538671288	6.11179883911199	5.47167197001254	5.84660291946219	5.89708195618327	5.63775976525687	6.03338119519461	5.93130078170392	5.83544245197042	5.52604089668446	5.93673471475071	5.57973320318946	5.97553327793465	5.86466096090133	5.72037217152896	5.61786512704971	5.95993019447232	6.13188275908765
+"GCNT1P1"	5.66655405317902	5.78901327166312	5.6957276111731	5.79474146972407	5.72481902903032	5.50881742959171	6.21884127629051	5.33853103959405	5.53918429952828	5.68143228967665	5.70873844580516	5.87126642777165	6.15583686973657	6.20152486731271	5.72063497446615	5.83878823534156	5.65879013453608	5.67784841916809	5.86219836836549	5.41502238688886	5.77383254696564
+"GCNT3"	5.18616188822119	5.23078613565084	5.34007184776549	5.39215365955287	5.53274467425902	5.69050004291591	5.3969875860571	5.37338085992095	5.37613823918813	5.36939483356489	5.23432384132553	5.64609131336972	5.55797037315407	5.53290757583493	5.24023661482745	5.23613566503852	5.30244655467032	5.19549093604348	5.56457089460465	5.57196301127843	5.36378993820302
+"GCNT4"	4.06494357547261	3.97715728700058	4.3048300299691	4.57572939968586	4.32963830930097	4.55974123373351	4.23933470262061	4.24134616992103	4.44982669383333	4.18901227120007	4.05660629365684	4.32017081141513	4.29451720167835	4.36057100482059	4.26956214270663	4.09469848387728	4.28460070161434	4.08022174867621	4.01100097478516	4.29491684832496	4.27653325940641
+"GCNT7"	3.13471346413609	3.33784050146035	3.50568816171297	3.59035006425724	3.47398639083679	3.82312389418605	3.90384807943155	3.22569488504146	3.32149096419766	3.3976702843172	3.41073408249287	3.45733276282579	3.47072327303567	3.2371083959586	3.67445839631696	3.38852626833822	3.45543993057874	3.39328879229353	3.7300145389108	3.32689792747106	3.41631651886884
+"GCSAML"	3.16863074757603	3.23471286873714	3.18634256075662	3.29761498668823	3.03494250516311	3.18175450427025	3.24680265745746	3.45913379826911	3.21601990507514	3.26236617582279	3.03234999169987	3.18175450427025	3.34739936154839	3.28881978606701	2.93566263424196	3.04136531926307	3.18175450427025	2.94080004298542	3.29350907783593	2.98892015018688	3.11370763108324
+"GCSIR"	5.30640113049011	5.56035088690433	5.56805148579662	5.74922329864407	5.62264776948907	5.68280756066891	5.64294270567941	5.44260899547002	5.80365575103226	5.56035088690433	5.54555786670434	5.42851076087071	5.46837069856119	5.85760720408326	5.68760781090574	5.43491734336442	5.66128153398499	5.36453041324657	5.60319096173414	5.52954596667788	5.4132378820732
+"GDA"	8.69682324032896	10.4197170477613	10.9027098224647	10.5386232294478	10.8285370686768	10.0499540692772	9.30724417126749	10.0958514610275	10.4840117247512	10.5894785372614	9.59452674723	10.6622139108279	10.242425686634	9.44615496496462	10.4139016944076	9.91628599755525	10.6460140382154	10.2132012156739	10.3970602523669	10.7788973239465	10.7319785976297
+"GDAP1"	6.57508525195656	7.16421963482098	6.75443623175751	6.61096132315505	8.18629575014981	6.59361593165903	6.62765890178772	7.23928551345397	6.98993181647575	8.13071057915332	7.1379671920798	8.15711051809674	6.207266200635	6.3530792086181	6.27016487360367	7.83295383660271	7.55888759542966	7.49590630118601	7.05928027976862	8.16143958689822	8.45801539285338
+"GDAP1L1"	7.12435150612187	7.41557775591879	8.00268350433939	7.52817180734986	8.10775548067062	7.54365306752609	7.34132832789777	7.59854118544847	7.76092205762915	8.01385102294967	7.14601189176541	7.92873244187031	7.51402565369861	7.42752528462476	7.57145185906507	7.25877943093269	7.68620983937304	7.69042726547691	7.71407748509152	8.09323406730049	7.83834281154075
+"GDAP2"	6.77389501310037	6.41770572239702	7.05741336596542	6.67563163593892	7.31334320799434	6.41908338981972	5.73591268120656	6.72567521273803	6.4272091967549	6.49588631255889	6.43446648313604	6.77715086890322	6.38305000979405	6.25678521297199	6.58096123499622	6.20753526600451	6.69113559241072	6.7572111468451	6.58697449448669	6.65030413383976	6.39468883376943
+"GDE1"	9.27983105587738	8.90315701421003	7.96746739324932	8.85739907822505	9.21454497930304	8.51542881068085	8.5610562398046	8.77447006151245	8.9307595220549	9.3988203788634	9.27788204850901	9.24530141585468	8.50619540158271	8.76827828468675	9.08548076897718	9.76381830470751	9.15573090309718	9.4804080832176	9.08548076897718	9.41038610351619	9.46279970611506
+"GDF10"	5.90141765377963	5.6957520216842	5.80769781123928	6.01718255332604	6.38316733498921	5.04638075099259	5.87275755679131	5.88378228992453	5.88626844916197	5.87275755679131	5.50816853495466	6.19451505814748	5.70440724750916	5.61779005647707	5.5062234198628	6.04994548845806	5.95745566185795	5.94892307789138	5.47223366506496	6.85040961664549	5.63349815414673
+"GDF11"	6.08515662963452	6.08057171030456	5.81400790740055	5.97799215718323	6.23537633758475	6.4175335962442	6.94159455146924	6.03864472222935	6.24518157268205	5.90163423500168	5.90498803566128	5.68386064962048	6.5258963533309	6.7634292735146	6.07432761082988	5.97516789496745	5.8521675508761	6.46394624488409	6.24780348387918	5.83638769875275	5.86145196536849
+"GDF15"	4.91575602322673	5.05367799973411	4.79978941257044	4.99487056302669	4.97286253872832	6.19101289464937	5.69800027062316	5.65472461147099	4.99157115121352	5.27190775297095	5.14785866248246	5.34294492052164	5.2720887990395	5.51106357142161	5.03311000732513	4.67031997301509	5.02750344605496	4.70885565960743	5.4676250845217	5.19605367681188	5.15434161360366
+"GDF2"	7.22369094326914	7.25420300681313	7.43587002483136	7.53969092371957	7.28932018632914	7.96196734953714	7.67847960670956	7.35006994981957	7.65705334259622	7.51338779644878	7.37302190858925	7.48808053739238	7.64756323199887	7.80806860218264	7.56223592912945	7.33088347250198	7.49445541797545	7.23121304386895	7.62085519157064	7.51073390945301	7.66063381660838
+"GDF3"	5.49111513831035	5.64123757235133	5.55731299337036	5.87040493017488	5.80771338804092	5.45990057377426	5.89631974961954	5.59959213906697	5.73265628491289	5.68052550456492	5.4191293916852	5.68386064962048	5.70159500467022	5.93440278546881	5.68519644295041	5.74252361437163	5.60614077634529	5.33100756273537	5.68052550456492	5.62958669924671	5.82963079757082
+"GDF5"	6.52813120898041	6.69590435102358	6.73537391973114	6.9187473127444	6.49159121096488	6.73537391973114	6.9624700545741	6.58368707830809	6.79902649533563	6.80313884870953	6.4088106086907	6.85271831558058	7.00184254075471	6.76272372648165	6.52853873658727	6.63702518793628	6.80251398545896	6.38459410798341	6.94209778679947	6.58389074607423	6.98857293442437
+"GDF7"	6.1341005494997	6.56354719161053	6.86514611500985	7.1650210968372	7.13575443528628	6.42776459255327	6.62791921416118	6.80459694594681	7.5127417585556	6.887123918587	5.84102539287732	6.75521028763048	7.36308626074387	6.66869021372519	7.13390470595857	6.33826500249025	7.06196009475952	6.66908934051574	6.68493093571613	7.22964479783026	6.92514408637259
+"GDF9"	5.45631953989856	5.64728032902317	5.6704328648598	5.79528239654692	5.94565076371033	5.70944426987878	5.60510012818717	5.56421160582133	5.47995044818288	5.76114571340578	5.77465660577644	5.53330059743623	5.62923096331072	5.26590355278674	5.94168205648281	5.6704328648598	5.66643242674948	5.80218276014587	5.77469348433478	5.86637221439	5.69231461044172
+"GDI1"	11.6355467228417	12.0982607612435	12.1973256158659	12.1239063523614	12.1745539037525	12.0576275786939	11.5966662081623	11.8137265052846	12.0016006302332	12.1224987597512	12.0160329366992	12.1886903829988	12.278609621884	11.9092292315481	11.805309647917	11.9807028133022	12.1962361559615	11.9606157596016	11.8226730109772	12.047948461489	12.1457762124732
+"GDI2"	9.72333022686606	9.52758204813216	8.50108966415884	9.4091616513962	9.69051378188512	8.77020316398742	9.13012966256129	9.52699067644767	8.9723092744907	9.71701520251366	9.61519241228328	9.85292830403171	8.89596608926418	8.87932227318843	8.74996971192345	10.1145200002021	9.38452941242311	9.94805517244746	9.5495287129383	9.82485183396861	9.81574886466521
+"GDNF"	4.75715767387962	4.73473254977319	4.77979707295196	4.90302373453873	4.57838905990726	5.21245958561942	4.93658064690175	4.45897649395047	4.96371511860365	4.69183449139631	4.78479074435709	4.67364324432308	4.72083029964895	4.58458403120638	4.75715767387962	4.95143979805941	4.71878604520601	4.91727126285814	4.75715767387962	4.84342152086068	4.7096388695463
+"GDPD1"	7.3774158078065	8.06922485173907	8.70135668884453	8.04602012163763	8.68895435544867	7.85653771001699	6.9416253024852	7.84089988843269	8.63079987443525	8.54623098597814	8.21869026200132	8.6836844993799	8.3058571809275	7.18988499670526	8.59801258021984	8.45550286551093	8.4134523299024	8.52234594839179	8.04183128615844	8.46899606673995	8.8033821138348
+"GDPD2"	8.87807584007124	7.96959762599299	8.02754175249315	7.88355345441636	7.80401680738008	7.47117369630767	8.58016770832981	8.31555085817343	7.51906271303702	7.73539595288464	8.4218797531009	7.88355345441636	7.69551945116139	7.83646810938278	7.58132392616769	8.08861532697747	7.86265637358938	7.52201862242986	7.82658735948667	7.89704526998144	7.86125555591803
+"GDPD3"	6.8629564971144	6.3643480768716	6.21824816344746	6.6796717697846	5.72552927815799	5.87722160381089	7.34278921840893	6.71836495503316	6.62748005744657	5.83102710656399	6.69651286209633	6.22227376111198	6.56615614788156	6.68658620267005	6.94703423955229	6.68051959211965	6.33773489814645	6.4920340460788	6.49973763167125	6.14242662308031	6.16338232955149
+"GDPD5"	7.87587260992592	7.41165983508465	7.96968828192679	7.51797851377973	7.75761513435243	8.46047159719582	7.62700058031559	7.63212958395557	7.47186293270327	7.48577298629306	7.42867676555741	7.47249409491027	7.80431686650495	7.91671329815371	7.62587870041051	7.06288495004355	7.48279057023359	7.44434142324722	7.34836692496039	7.99397621299694	7.6709206997462
+"GDPGP1"	4.55543392599991	4.80793477563014	4.78561101664244	4.8972469188488	4.64225676657991	4.41471777891514	4.76743178181796	4.55622079232844	4.81971940608223	4.65638391222608	4.61342068055492	4.84766473186978	4.94628518377672	4.67735961288312	4.95771342590708	4.94252743274365	4.69504579782609	4.78082758956934	4.86442532137585	4.85668467537744	4.91787986200678
+"GEM"	8.94922237542493	7.07169316708744	6.80049848755439	7.62601111001756	7.20746031651423	8.19384880438529	8.33452794444393	9.53593154572776	8.60934460855959	7.65927506782894	8.12285100343598	7.96206112012359	9.99731980477455	8.61341118111092	8.60648626769459	7.6276384371694	7.64916253541476	7.84728003237966	7.93218434716805	7.46407178644539	7.0971779605004
+"GEMIN2"	6.73184400373159	6.81345865951544	6.8290201463864	6.78698191144722	7.26363320337886	6.03202384503898	6.14044099359811	6.5664791415127	6.56632847837282	7.0197623468466	7.02734552975964	6.73294586721084	6.417966856705	6.3593364505816	6.60587929212559	7.36497749385638	6.67707319427531	7.48032251562137	6.70184503480271	6.92347093105779	6.82374582536233
+"GEMIN4"	6.9923343520235	6.99922602205254	6.79150312823427	6.96636531959019	7.3377635294544	6.79377000208951	6.92667633208816	6.76771862932853	6.82152615123922	7.11543272009897	6.82450629332652	6.82086485154473	6.94278159706938	6.85510649589059	6.65005100306086	7.13438613984976	6.91552570639217	7.05310652857719	6.6437779234771	7.27261646624671	7.16070278153114
+"GEMIN5"	7.64278091694257	7.33060312425745	7.60364564131271	7.20346614286036	7.34725463092748	7.06550135919014	6.89517857708057	7.43759101863348	7.28213666023931	6.9771774904142	7.32140018082283	7.02958819698412	6.86661829419321	6.92911942099716	6.88909430515056	7.50217010610125	7.11020428508955	7.59179068951837	7.01909785706851	7.20346614286036	7.05224635229932
+"GEMIN6"	6.59517643521767	6.60495275352204	6.70028753992551	6.21573232179692	6.71629096052144	6.14893618509495	6.19877907466229	6.49396172822622	6.61199328951794	7.06000621460332	6.52482331831643	6.63697038846307	6.38240488860686	6.3557346562118	6.5328542287526	6.37747424061788	6.33401339575911	6.82093433804492	6.82536494653263	6.99599150603751	6.76469125815626
+"GEMIN7"	7.69245461013292	7.62682754592451	7.4277702367485	7.42990843206061	7.38697085906834	6.931129036758	7.30740737234316	7.3346894987276	7.73795739291532	7.73500351243922	6.85362045469983	7.39563754127559	7.35559114954199	7.29359506289664	7.59068287047821	7.4277702367485	7.09737897576729	7.51738862983918	7.46453582535254	8.0333861173801	7.57878151767229
+"GEMIN8"	7.25445788633813	7.26448129482086	7.58303347280014	6.91818882720004	7.18881010073233	7.31983486011401	6.59927504965769	6.53103476073338	6.41332395783373	6.9124091620035	7.84309661470429	6.74054392358195	6.06607702416369	6.2448863712369	6.43396159578007	7.91544183900609	6.30783610383461	7.72465855312868	6.52440452384347	6.46596289198467	6.7392885500171
+"GEN1"	2.97939647897899	3.15828382342225	3.45392167101811	3.12947803571873	3.40907026747535	3.32721785234231	3.02882605498558	2.99385605213322	2.98920501294193	3.13142667266437	3.07971528255596	3.13645256648828	3.10138240904816	3.04468580731823	3.13142667266437	3.15504171122615	3.08205531754533	3.19874072845443	3.2547017463936	3.21709033654449	3.12829451312833
+"GET1"	9.86696762596321	10.2219926053972	9.95581319861508	10.3193536586847	10.3318080046645	9.23687839429287	9.60326386956007	10.1047939478058	10.2100714743713	10.3376167167609	10.3863666428638	10.1759240195848	10.1520511019772	9.46314758901971	10.1040450835143	10.5755525118703	10.0029185747176	10.4409771971192	10.1919165225852	10.1216826117428	10.0185954177815
+"GET3"	8.96125760775585	8.92791441623372	8.74582510065265	8.60840945540789	9.20204588512356	8.52917552338292	8.5070697648901	8.6829291315472	8.81836154572427	9.30639737692332	8.89800797069073	9.06687446679537	8.63388975470392	8.33862257439433	8.73456741889187	9.02159188426011	8.89656716708095	9.01496112352184	8.78215741619277	9.38402599821797	9.11145037694751
+"GFAP"	10.9129287722459	8.65829046602026	8.07786567096515	8.62663959535712	7.49119289245233	7.7088419374288	7.48009568195707	10.0183455278302	7.53208669924267	8.72854562219176	10.18629761991	10.2244899892033	7.94450387479617	7.83280661757118	8.49616521109598	8.76325055948647	8.36846237191939	8.29627653640654	8.95251686661899	8.79019648314246	8.85751606376464
+"GFI1"	4.95891070006244	4.74831933726835	4.89845500295381	4.99160474906863	4.72491841047188	4.97399514795921	4.95012644701853	4.84874191146433	5.07376649679972	4.81649713933963	4.6674176410662	4.85775545866131	4.88031239902662	5.01651358383892	4.93406803826642	4.89296200778785	4.90218191197199	4.81430540978197	4.95558071010882	4.92814083569145	4.87590486741104
+"GFI1B"	5.01785393097593	5.25249543536611	5.44969832233166	5.66585130218215	5.39115942166328	5.82287033003888	5.7958409803895	5.55012497006774	5.91438771804709	5.66051530402426	5.34527086124316	5.57396258711811	5.75594292643343	5.67437462561253	5.51285685403038	5.54252619292014	5.81771582000778	5.22992802541336	5.62718478438062	5.17415856172213	5.83597097798871
+"GFM1"	4.17760511512915	4.77145158579417	4.2138572826487	3.76594825631227	4.00663271390443	3.53439927563713	3.22776549576854	4.05806276279877	3.89763732744722	4.22588502783113	4.76082071150918	4.42102489015118	3.8236373795543	3.79340624972589	3.97181109972335	4.92353870482307	4.13243704325821	3.89537496113783	3.96216542819195	4.2947976575029	4.22694771636041
+"GFM2"	6.50902677026751	6.56670040564588	5.61397756422429	6.16525082887876	6.87894914381277	4.91902758320051	6.04386023775333	6.27668041877947	6.05678788450386	6.72536955351208	6.24466422236693	6.60043561153905	5.58587782431154	5.96413663888922	5.98933858119787	6.94172201301313	6.34031685959637	6.87381582405004	6.84782110150532	7.24565058514922	6.93080966451022
+"GFOD1"	4.25412424242546	4.6811503929213	5.71514534394286	4.55970399817546	5.65783172117228	4.61046419147135	3.69338410558833	4.63938976377164	4.6811503929213	5.08036564201985	4.1874741752968	5.55494205427499	4.64603062883337	4.38612013534329	4.61252180841112	4.39453470708877	4.75799280259008	4.92935746620226	4.43662745554176	5.43699389550987	4.80014494619315
+"GFOD2"	7.172620227322	7.07140850011857	7.42988582507254	7.53402618330654	7.36001366456717	7.31318408825085	7.35969871721245	7.04634261038298	7.96554476215375	7.84771159732326	7.19081556774041	7.51056534312608	7.47418231844864	7.27254943597047	7.5087737975702	7.28707802873085	7.59146098794176	7.38669112829341	7.44259934183452	8.07659381831432	7.67784661553202
+"GFPT1"	7.06357592605405	7.47351670905729	8.10122634005515	7.10105321792455	7.72615841763535	6.90529994955583	6.69205106303982	6.99284603128383	7.4465399913631	7.36621301957091	7.32799143643916	7.42755097465573	6.95188780962516	6.87445381070841	7.16088157000734	6.71115724594223	7.29611255822668	7.50292779854522	6.92866573925658	7.47616889260623	7.39299648746303
+"GFPT2"	7.74788250578425	7.9283821910344	7.91029230320484	7.73360828642247	7.74486017597173	7.80586006433634	7.75031178382967	7.81901175945477	7.65741107446728	7.62250402059043	7.96187284675497	7.63321268195457	7.91452717276288	7.58644203341692	7.72552885257118	7.37977871250607	7.66725802541713	7.73360828642247	7.73360828642247	7.72469758598567	7.31903176308871
+"GFRA1"	8.72245884891833	8.53838390383057	8.34459675976111	8.19992579469639	8.18976993199121	8.35681157897316	9.35263499968488	8.87078212097882	8.36232112492088	7.93099675477213	8.46236690561605	8.52957129502013	8.27813471768689	8.04882045592759	8.32495810079263	7.80021751570482	8.4490609014668	8.36744997775433	7.63804936952734	8.20957618453551	7.96564638580679
+"GFRA2"	6.24347342811335	6.63140286849998	7.00419631485184	6.80562188403204	7.90013416089669	7.21487202317832	6.75128988846314	6.79974629653748	7.18721043005339	7.40296268250291	6.41391805660364	7.40548241294575	6.86295112151464	6.54674861142578	6.72482249999772	6.42763686912859	7.1453281903043	6.68919498087118	6.55690172156404	7.77240163388898	7.39277880061003
+"GFRA3"	6.23106345399091	6.46253162150843	6.07148904267823	6.48981146668405	6.35153262071017	6.66309393036501	6.39487517988831	6.42756941007335	6.69392806138276	6.49099214362139	6.17846836696655	6.70744246199206	6.32804008770739	6.39487517988831	6.46654086522946	6.28201962656947	6.3271438095223	6.36586436730413	6.42953351586045	6.40936294999956	6.34879565744587
+"GFRA4"	4.75580284419606	4.75730939699153	4.74552952360262	5.09895226256012	4.68316672616464	4.93454082642666	5.06709907405051	4.71721724809527	4.97996265113183	4.79412225817292	4.62936098099948	4.85037571071833	5.24485759067968	5.16706245306091	4.99595122253472	4.52329867199087	4.94673801569978	4.98815375829743	4.85225910778789	4.46759737107523	4.94262344892859
+"GGA1"	5.35920092705181	5.3110602344707	4.60091051889905	5.29016183862064	4.4338526546948	4.81645856292225	5.13767109494525	5.00079754656275	5.14959778201997	4.68048772396701	6.2030763496523	4.86169519155949	5.39120122962813	5.37336408702022	5.32487157550692	5.80441627868468	5.18939892956575	5.36991600138223	5.40315751775416	4.96974238679057	5.04448517476767
+"GGA2"	7.96642801574731	7.60856872756224	7.56361877104068	7.8503644258947	7.6842409067263	6.99524648294128	7.67684145562384	7.76161355310446	7.76161355310446	7.9254974851395	7.78171421170646	7.90679670656549	7.76161355310446	7.41508251768033	7.76859676341571	7.44113195019091	7.94389331202559	7.57763613127841	7.75770265338864	8.15932265843202	8.16243771689535
+"GGA3"	7.04329181315024	6.69371532646407	6.27902806959412	6.68601691884487	6.89913572217689	6.43420917536516	6.78353659923965	6.58172791600968	6.63637340611173	7.16903184016095	6.63705848334814	7.00869052605776	6.50864653153082	6.57939577833079	6.57465280852977	6.71349846687813	6.89267637856052	6.59109826990474	6.66688752132585	7.26958051624192	7.26235746201239
+"GGACT"	5.9315214200533	5.70022421781812	5.88183893122015	5.81559383037049	5.92412424785251	5.92195999496302	5.84680436663177	5.95812442805681	5.75243989219758	5.68381551230706	5.9004341012225	5.61226127972902	5.84680436663177	5.99443646646352	5.90583190408084	5.62743407595682	5.55408847547987	5.55161604387049	5.75909125727786	5.84680436663177	5.5941733389914
+"GGCT"	8.67387585207933	8.85940742049726	9.60196225823814	9.12721175960747	9.43120961525025	8.24840843207759	8.31873634133196	8.87583686123687	9.47891443168619	9.54657998772802	8.71258521525828	9.04709057345489	8.82377849056958	8.75495255811844	9.21332885450366	8.74793052688446	8.92382875904398	9.06521539662816	9.24011708187857	9.46514608671976	9.29027722876347
+"GGCX"	7.24532298423279	7.2960362933462	7.18568207895949	7.1766531904044	6.78491411534652	7.49223044828465	7.11838899671897	7.01417866548042	7.2210707769658	6.70651878881633	7.61993051972845	6.25049158421249	7.64648745408307	7.49702078584503	8.02641303212836	6.92425569100433	6.6704464507148	7.43779956778499	7.08349467926078	6.28746973561303	6.58411713776094
+"GGH"	6.36017278949439	6.90684809719354	6.56979734840245	6.5021356014781	7.28812566843387	5.94709328671742	6.15962477285174	6.65858692757337	6.96234238933228	7.62523167282733	6.59361593165903	6.88854541671753	6.77315591660051	5.66674424085375	7.15319175363745	6.80128705907523	6.74079285852103	6.94172109583498	6.89594192579867	7.20532941106803	6.89704208788005
+"GGN"	5.31730919846428	5.64495372690024	5.79735893019957	5.65220830951727	5.48788237366167	6.4283011953306	6.46678588069267	5.71011156651643	6.00638775781954	5.76125936971348	5.34977223539326	5.94086638359605	5.78588221598957	6.06161152500069	5.77156969438336	5.34225718919517	5.70574537948661	5.3967786505846	5.80497949570126	5.8430297177485	5.76125936971348
+"GGPS1"	7.03097338008561	6.77410748384472	6.93115881383858	6.77622957285709	7.01303873331466	7.07556845192481	6.97073416385916	6.69933210029852	6.70744976236123	6.53246461746268	7.01014396651788	5.97211709190886	6.78345623329496	6.73787740557122	6.97516637641503	6.9796473739118	6.40764840277929	7.42151524147936	6.69389880575645	6.73708143497334	6.49594424729601
+"GGT5"	8.52184682738768	6.58784370491153	6.55860088891012	6.95025103847483	6.99523061134154	8.24410622928251	7.07586292093241	7.18051400156334	6.92835906411226	7.18103717888231	7.09398503694273	7.00232709621301	7.23955280870639	7.83853557373095	6.73227155760049	6.4192933013046	7.2574516021669	6.69947527755077	6.66809026603832	7.49146246411418	7.23794615386726
+"GGT6"	4.97781834866386	5.30864078647455	5.2959536581184	5.21822626467336	5.33437484973269	5.41699803540758	5.33355054903505	5.0383315448574	4.92423728962518	5.06205139182681	5.11845637548368	5.13614047935582	5.21554565544074	5.59140381272771	5.37120803584103	5.31289813465543	5.10947436466515	4.94034964523901	5.246451689418	5.13570978932324	4.79932667844778
+"GGT7"	7.3527360121672	7.77388597833217	6.48925580290562	7.88653857638173	6.66372985891453	7.51700731296856	7.45926841463112	7.69655968872493	7.62727239001627	8.29945410492559	7.52603168234748	8.55177216686067	7.55340272362724	7.17054456418012	7.33911761584357	8.22617708808089	8.30805156185851	6.25694655387642	7.87941234370534	7.82861385873847	8.2714348679087
+"GGTA1"	8.56439922790976	8.45915281712911	7.87252937070833	7.69954769132525	7.870467911836	7.2987813514223	8.40029566379794	8.1209257164648	7.78764242964152	7.73837888529802	7.87252937070833	7.26007800324069	7.40984688685213	7.80465840586788	7.32573083995091	7.87252937070833	7.8038865848978	8.5614128328097	8.01934616910106	7.86674984663306	7.91450250711283
+"GH2"	6.28213995973307	6.51872517148394	6.37437138933747	6.59130512077391	6.30411987741405	6.68385062806356	6.88586978089559	6.62315774429107	6.50056354025058	6.52375420711972	6.3133298564375	6.4548656324026	6.68225503292105	6.53443682938234	6.49957947490781	6.23221158572354	6.59988869726265	6.33996187742872	6.50350387342825	6.3550064159222	6.5793184786918
+"GHDC"	8.33205419512214	7.75901582248824	7.94338791325833	7.81620661138267	8.06400223196299	8.5184578889729	7.87176998851409	7.7818054057365	7.69420671366099	8.05926484996994	7.73098438826536	7.86963838111747	7.64926456950472	8.04055895920185	7.50977365874254	7.82904306614189	7.81336153839853	8.07499764744427	7.65647014060417	8.18598141413882	7.78423253863849
+"GHET1"	4.08022174867621	4.09409788804547	4.17679775366427	4.38868458282386	4.72029617814863	4.46131757336808	4.15175216311034	4.14126406379536	4.65504735443419	4.23869665166912	4.19909921061071	4.14052900908611	4.4110962691298	4.4738222425216	4.30279572632314	4.54193813761554	4.12293876162232	3.81005940894814	4.37271332819449	4.43960104439938	4.33201644367371
+"GHITM"	9.04053015093241	9.38772281472127	8.91084876361444	9.23503132166661	9.99586613749811	8.25563133467794	9.29618751123467	9.50827412264868	9.45858496346317	10.1139304293953	9.13688475708277	9.82955567060334	8.97109940325258	8.60354549951918	9.06533642978596	9.40039628492371	9.59870385777798	9.46753577611178	9.48050419930306	9.95938988080447	9.96112303211704
+"GHR"	5.08086932855002	5.35364244616325	5.80487458299563	4.99537999665412	5.30010922959123	4.95943014296011	4.54707419086592	5.33620502018463	4.95782905418828	5.58713172163771	5.09587760329839	5.47035204268452	5.17531102246592	5.17531102246592	5.11897866813	4.8737604291241	4.7586708168087	4.99487629950398	5.2857868621899	6.61510307584015	4.5105341248846
+"GHRHR"	4.89552946617363	5.02482221392297	4.83697004352155	5.02911786542874	5.0723386227211	5.12665392384994	4.9288283931948	4.79618799492435	4.88548364385296	4.88548364385296	4.71721641242413	4.90393518586976	5.01927668871185	4.95845940953606	4.82319431460165	4.80249630530481	5.01626080794755	4.85863989061996	4.40936958922423	4.736192589169	4.88548364385296
+"GHRL"	6.20304792639828	6.3803118930124	6.30768239151245	6.49277921813045	6.23615634318745	6.61899963734308	6.5584802516792	6.06229676653516	6.4226621599815	6.41565767794551	6.16702492952024	6.19744828163766	6.56049904004301	6.57817147647224	6.25629681156331	6.2747258126732	6.47102868922539	6.12270150646758	6.24437861664077	6.37516881781302	6.48022622393153
+"GHRLOS"	5.59699545007391	5.30828968219713	5.43213547117726	5.36183127245548	5.59631233132893	5.31540240677801	5.39576317200021	5.55579255096137	5.64003485864857	5.32952145716569	5.07362604391328	4.92120066686714	5.34247427473186	5.38584431569415	5.6416516091254	5.22327845780121	5.24454720218057	5.63973003565838	5.62531386882337	5.42368688596723	5.30372800426127
+"GHSR"	4.78485383830183	4.96996530159404	4.84614388604807	4.9506788133226	4.64064904531151	5.12484120387796	4.95046382004314	4.75132377554099	4.83625357186041	4.947723608921	4.6886407630693	4.87957902701218	5.21417181221711	5.17174414526569	4.83175854751151	4.62103694296392	4.74146469096399	4.83253003256814	4.89149057987387	4.64657254489272	4.82720523161007
+"GID4"	5.95358310439925	5.78235261445558	4.90597322639576	5.56301394668604	5.75806251051286	5.81267022300457	6.6137833997545	5.94018611555342	5.76626257225999	5.82003842143064	5.78721183779555	5.84148146121396	5.84148146121396	5.94702336098776	5.6931851063408	5.8046063198732	5.84148146121396	5.7409966801492	6.09504134961742	5.97767117066491	5.98890847086854
+"GID8"	9.09665070795611	8.99707696112667	9.43235581686784	8.93122689524719	9.12281089287799	9.03672343464309	8.75392827014633	8.81250088528358	9.1390864033075	8.957782881522	8.93016494382608	8.78674822111281	8.99746228366091	9.14227970623586	9.12367006209927	8.75415642607444	8.78939443235169	9.08479950317385	8.88673135603068	8.98145699557172	8.65465792440973
+"GIGYF1"	6.77183368505163	7.0428988357604	6.93146115686443	7.34185449963201	6.79372165977816	7.26654093780787	7.32069091218397	6.88310878751488	7.46121634091145	7.0428988357604	7.18554248254639	6.99210909057398	7.53190468994667	7.30578931991214	7.2039667200919	6.7567419646124	7.06525506233291	6.4409742370609	7.13857291019026	6.88678728171805	6.7039476105673
+"GIGYF2"	6.22388346595851	5.88572864477737	5.67345381509584	6.10271985819724	5.66269492452627	5.91783535050379	6.18117549451117	6.0088375330385	6.43619896613891	5.81167528628218	6.14796780806433	5.88144020417712	6.21245547134636	5.99804395800612	5.88044379608494	6.34168008432674	5.99101943213268	6.05661773295238	5.95540073192693	5.96483691726444	6.0633368095585
+"GIHCG"	3.35400866645636	3.15677683098583	3.45392540911069	3.46088084132387	3.32993510221114	3.28755221923201	3.31823315722545	3.26499456959597	3.32993510221114	3.11298436316486	3.3807685719943	3.31709610071721	3.40042169045794	3.28881978606701	3.46798413138502	3.13496222211856	3.49190458876654	3.05412817899284	3.46842539754176	3.36720358055379	3.26909628598846
+"GIMAP1"	7.21988875046341	5.71681759969342	5.09501216148464	5.36245217135415	5.73018162863659	6.29221474525655	6.37718571354175	6.01853323556364	5.47010140354432	5.51410613664467	5.97787751824883	5.080153537509	6.33614363714305	6.33537381033539	5.58142186535057	5.7637414832805	5.46049976254501	5.85368724530677	5.73140553562577	5.92698136593038	5.56892933955877
+"GIMAP2"	6.32123733034792	5.31560787295187	4.26399152012193	4.89325630387467	4.83876108863551	5.10485276881472	5.26265897708434	6.31601944212345	4.58706218696485	4.87099602598468	5.50816853495466	4.49898619201346	5.08174845162203	5.10684355064765	4.79664771117384	4.71947249144374	4.75383639647088	5.48240429720729	5.3799803558138	5.10485276881472	5.08434163260989
+"GIMAP4"	8.63406914155105	7.51926347665923	6.91495651248815	7.57566235165811	7.34316187374557	8.12153287937951	7.83443446317354	8.0506114288897	7.39014898201359	7.46773580298756	7.08849006036103	6.83981972382543	7.67213180399088	8.12631122490036	7.61209480075493	7.11768463689578	6.93844425613237	7.4519116615969	7.33357548645526	7.49086448706671	7.56156197054719
+"GIMAP5"	3.9526432462815	3.99762094673254	3.65713281695858	3.82498026868902	3.84385832847625	4.04875642576913	3.81090655206171	3.99061032080006	3.77557918372796	3.84385832847625	3.71436765955081	3.70744586391646	3.90192851407191	4.07288365170569	3.81360994078098	3.76677162627367	3.67216776847921	3.621535808286	3.84385832847625	3.84385832847625	4.02814801904965
+"GIMAP6"	7.62707567182605	6.09055336833829	5.80075043204693	6.09214427863207	6.00661569289631	6.44620043156737	6.51166132831683	6.37597032059022	5.98066480224064	5.94012709463832	6.51728220181719	4.72605918943768	6.65798829018842	6.90360543973019	6.26636489829452	5.63012888605001	4.72155874839211	6.51538589274407	5.63553146267341	6.33087681661394	6.03337149353458
+"GIMAP7"	7.14364416125728	5.62310014933174	5.68028476250369	6.02340677588847	5.87603743535002	6.28610839073347	6.2906600465694	6.26265949798514	5.89678212266372	5.72560457300674	6.40893051673304	5.69930098200688	6.18868969976806	6.68467077405313	6.01096729112887	5.21976515747778	5.33370317884208	5.4609508389353	5.88196321348262	5.28537489721806	5.52035299432342
+"GIMAP8"	6.76304316393977	5.70801383009615	5.31082315303208	5.51751892285501	5.56846238406389	6.21392641186437	6.18496121040964	6.0678116074583	5.32292464642492	5.47010529214675	5.83871756103383	4.93999188410265	5.88528767714186	6.52997723628592	5.12333813720833	5.50050620505741	4.73788550328557	5.83285917775972	5.75836498747172	5.63282737911643	5.27500408779333
+"GIN1"	5.6315406882844	5.7216656310064	5.58145923134886	5.14698578325049	5.39092654520278	4.95943014296011	5.38252005196161	5.67920110350387	5.04687073872491	5.60060951306473	5.94303285640887	5.6355314626734	5.09791491072666	5.2766499819498	4.97040686564709	6.27491531476537	5.19791287049471	6.14926851176925	5.57874634498125	6.01390486699825	5.55214380028679
+"GINM1"	9.23838523542234	9.06455464990145	8.21102948190432	8.88363483785671	8.60988940739937	8.50828292873603	8.53351453214007	9.16660596607571	8.66106613807082	9.12638207370653	9.51121317168784	9.04566977090741	8.62913263148741	8.83401616431971	8.51350422628899	9.27592824744749	8.71000746617602	8.97464085841141	8.80491900041929	9.02796755080718	8.31787092226153
+"GINS1"	5.02009018369795	5.93964861968305	6.5258963533309	5.44811043318877	5.89233359004061	5.65347770368591	4.66526924582954	6.10921400637348	5.74426678687994	5.72789902530123	5.76091360642355	5.82552770985538	5.45298344175153	5.27741536907839	5.94837624680463	5.48404946589643	5.62607949670748	5.86793268755484	5.65357349901351	5.86900512136202	5.69383555732109
+"GINS2"	6.46886950588064	6.59018179874212	6.34508292920489	6.32248497862773	6.11130195137495	6.14068703882215	6.7355672214803	6.44268336360148	6.24280751876007	6.22516031843794	6.42714407825991	6.18619783200992	6.41809012639385	6.89346761304256	6.302741751607	6.47942671673723	6.13515410188472	6.24136277444984	6.32248497862773	6.43035653009328	6.00665466131457
+"GINS3"	5.47255442196973	5.32692006831047	5.21768439766263	5.32692006831047	5.39202756824093	5.66845800969873	5.36877566203599	4.9848014565637	5.33552878768377	5.13798302932228	5.42038737374223	5.06552637015784	5.27899310864875	5.35330069637901	5.12469351327129	5.77716436148568	5.15801246410355	5.46641559964212	5.34550420523222	5.18505986194094	5.45204848962983
+"GINS4"	5.17669175166862	4.78646412321768	4.8190480605062	4.84057357563553	5.08062275988965	4.64773705797378	4.98860929218771	4.77292575802855	4.91243717460177	4.64738153833957	4.49657071038216	4.85796798009988	4.94233147247879	4.83851391392687	5.22054939975777	5.06660120121798	4.30661190948119	4.83851391392687	4.61273915134263	5.03746415341481	4.64685081790692
+"GIP"	4.25497692001649	4.14946683798892	4.58972941461586	4.40690973505259	4.24781548051216	4.50695004368448	4.57491255420455	4.48874379750123	4.57601290460009	4.43112270827147	4.15964835391397	4.2330209192495	4.39893437511516	4.6897415888036	4.39673179820502	4.17102074817771	4.35736375052187	4.13810816034209	4.46346598659219	4.39893437511516	4.39893437511516
+"GIPC1"	9.34297938809586	9.40136205663064	9.54773261474293	9.4657250952465	9.31504376584396	9.86726749475208	9.70901227474741	9.21081217092352	9.3199729273088	9.40855164941393	9.34776976269055	9.36465408173005	9.55213188102592	9.43356895557517	9.41283308735805	9.63200629680435	9.3148684916771	9.19340001609322	9.29873714906828	9.39149063798943	9.45145218743737
+"GIPC2"	3.36442582973812	3.26457816581437	3.48135556674184	3.23595319963447	3.32638004459703	2.93265315111108	2.89778820862982	3.09810185009461	3.04385858196007	3.09815504974183	3.13020749059591	3.16070287356659	2.95214908119303	3.15698407657975	3.16070287356659	3.03441732065424	3.13013875269613	3.20633962488444	3.46487676539136	3.16852139780172	3.36531211112777
+"GIPC3"	4.61488761519613	4.30170342791767	4.25307624961701	4.55991608001362	4.09416393825168	4.18932873980929	4.294132185376	4.2493817728559	4.55733736340998	4.17799192762138	4.07712743672078	4.36606537799468	4.70694812313793	4.6800975627569	4.34606593970827	4.30746845412188	4.34148585203762	4.16329488840627	4.36248586261335	4.28865384465891	4.29990915189496
+"GIPR"	6.60916172738913	6.55811492284053	6.42544761813629	6.64746513071983	6.43155780315787	7.74941102346053	7.09608935253017	6.71110249945983	6.7418638629799	6.81465726044589	6.96239587993942	6.77791488736619	6.92903564889943	6.98539791917133	6.99905365774347	6.88499104909679	6.7277023367188	7.08252566462506	6.78658755194132	6.2194128568898	6.56342586747504
+"GIRGL"	4.12479672172074	4.36329553377609	4.26886985663348	4.39154743860588	4.2493817728559	4.18092584699679	4.36675158100606	4.25586271856516	4.20764782571752	4.19533339880941	4.04233250117139	4.2493817728559	4.15170045217013	4.36254455668731	4.06649412535208	4.34284263891397	4.12836819688767	4.08022174867621	4.28055629521553	4.08403659352212	4.30303125673962
+"GIT1"	9.03415528585409	9.04608533180615	9.00025594737045	9.36300086622077	8.90094222709142	9.61833459263636	9.64787587765688	8.86348955872369	9.31037973004648	9.32553370989557	8.98395865713997	9.22459082063457	9.37986289582144	9.19031271841033	9.06625671986515	8.79457748027126	9.1731275423317	8.85939056311171	9.29604936410996	9.11327812395077	9.18367619290413
+"GIT2"	7.9320475495062	8.15082895254346	7.42562680581159	7.86829503896256	7.76775080202214	7.25670247450775	7.29024743680411	7.7161020280382	8.06541254011509	8.21058459917012	8.16013145540645	7.93834970906049	7.90406426634882	7.83924132452156	7.82462266586926	7.98139832753716	8.20849545279811	7.41316547147936	7.62349081305279	8.1288045404792	8.24791330077739
+"GJA1"	12.8770490516713	12.3429040595984	12.2947637734694	12.8023521267262	12.0484760372217	11.0926982681892	12.8562051956027	12.5866695322333	12.574086226847	12.3606136486332	12.8656416415508	12.1444846479793	12.0537070421078	12.4341795200626	12.432320925104	12.0906508565636	12.4600090682637	12.0927611197072	12.6972419089122	12.0014571384906	11.5057534231543
+"GJA3"	4.87898255371498	4.87644377723452	5.20224990708645	5.05985939934662	5.01255513893257	5.14754107162238	5.56523477551247	4.92340507141402	4.71413715278119	4.99169548668545	4.97527003080511	5.20499068161572	5.13254939416289	5.30414423973762	4.76331025380894	4.93096256917662	5.13670157956975	4.87877202554988	5.07733464047676	4.68753321126554	5.07560915199732
+"GJA4"	8.00886548379945	6.28496489352916	6.26486002585218	6.5258963533309	6.46964488619953	8.09130451889019	7.36743082106698	6.82279787387724	6.34281890520129	6.55948167898827	6.22548485614727	6.45272379986713	6.75377012478194	7.15439990850745	6.52249629300248	6.11016225535494	6.82114425604431	6.24406415184374	6.78469516160264	6.5258963533309	6.30730466818926
+"GJA5"	4.07689694217689	3.77380843758311	3.951991705931	3.90028642467079	3.65914545338039	4.26285419574686	4.4688946930931	3.84552967209331	3.80613933647641	3.79754425517705	3.35096595888249	3.60945320812099	3.77536666398665	4.43232034722426	3.74898224616914	3.37984437627244	3.43561657898329	3.72655462155143	4.00081351016276	3.78153326080422	3.64479781690178
+"GJA8"	5.98067099609307	6.36635393064654	6.30997109772858	6.56816854263734	6.42076595379169	6.88374315069061	6.61339462183129	6.46964488619953	6.46340584490474	6.60190125643496	6.25963936990227	6.50237701874701	6.56553598641205	6.6261924846909	6.42076595379169	6.05919667046666	6.49149353592866	5.84696722447808	6.50486911363902	6.34056703215961	6.43936278164984
+"GJB1"	7.78264833404717	8.04162468244382	8.01691121552435	7.78264833404717	8.02985594976658	8.9229918638865	7.26850524649963	7.49855833735814	7.49426376488867	7.78264833404717	8.78551038091093	7.74370741866966	7.48578331889836	7.85761450411569	7.5244534369493	10.0104976831319	7.774596542859	9.14236226011863	7.78546201119528	7.49096185301849	7.60567882398132
+"GJB2"	5.05050484194229	4.55859631571893	4.24033533765474	4.23307663479992	4.72758493889169	3.96292953095932	5.05827561825381	4.20428086486531	4.77192948914428	5.7108040000288	3.94100513525619	4.04143144695744	4.24806197695591	4.5693166811872	4.10478685336829	3.84746626312461	4.41413033115019	4.03230217566718	5.76659079281846	7.74951900553649	4.00690386092342
+"GJB3"	5.39324611204937	5.3185241789487	5.42180011819633	5.6344118372482	4.99532194402693	5.2645200919437	5.56822211092218	5.27009307881396	5.06691161116877	5.3246687180052	5.17854947772081	5.08373020782408	5.49634822263574	5.52807480832515	5.27238606258982	5.11665420317235	5.29057781809165	5.03167704858807	5.23540511777973	5.15091541928645	5.34872549187811
+"GJB5"	4.90140563794842	5.23674342893285	5.05892512021599	5.07127821818651	4.90031197996308	5.13917403139846	5.2233436065153	5.23389961059546	5.46218062021006	5.35613241605432	4.83851391392687	5.38487234698318	5.35475945322018	5.37607096001074	5.12746650795198	5.19620366068998	5.17793144766443	4.72083029964895	5.14770032887215	5.29286871161116	5.39134969742876
+"GJB6"	11.2468164626754	10.4720482440348	10.1763197474481	10.9725317412026	10.3164231510829	6.88446328538063	11.2757421912952	11.1383366716662	11.0897482311354	10.7155617044124	9.3313397937092	9.84371898015444	10.0513702355845	9.88350076002358	10.0648356748757	8.55261500608294	10.55795609636	9.48326605281092	10.6601915227871	10.6305751206726	9.32071816266697
+"GJC1"	8.43655711380421	7.02550064799233	6.99415322081466	6.93024861317818	7.07197577613782	8.07983368869322	7.58344298744407	6.80989384530992	7.15560304967019	6.77818826652078	6.64970105632408	6.62653114528373	7.14673912948039	8.0669611659857	7.34437002429835	5.95233644860062	6.60278246434099	6.70913881407141	6.28293149671562	6.68392260529012	7.20800139072276
+"GJC2"	7.63969337829379	7.84222439449621	7.68812801237405	7.74558341619439	7.64469320049749	8.34001937269307	8.15000516443058	7.50328193998447	7.33907157791368	7.7731500960178	8.16222933404642	7.67635887368396	7.82710467353153	7.81702079683088	7.72953574471031	8.40879565266572	7.60490738676515	8.43295721784137	7.73024844928099	7.56964585776835	7.68802331304116
+"GJD2"	6.41374306799484	6.53699059471624	6.45116456100741	6.95858821124614	6.58407585657208	6.64996224126859	6.65182679431654	6.50562538675028	6.56877132513621	6.66101691426689	6.61877765944908	6.63114435391856	6.81618088835051	6.8293769800521	6.751147711837	6.40830691915708	6.75433299290439	6.1681660401562	6.54367896325785	6.58845950474538	6.92642380509125
+"GJD3"	5.17536860554674	5.68018870326163	5.49218410848962	5.57485599637809	5.6142351559514	5.66444650789633	5.84324430367431	5.38969151828074	5.83305197877797	5.57485599637809	5.06410961912847	5.5040096562553	5.68252365059641	5.89569898440898	5.72216918941708	5.47257276797843	5.49217496810922	5.07740030543666	5.63776099104275	5.65752940968536	5.42929714943659
+"GJD3-AS1"	6.07751595947429	6.12059484398192	6.32706790941531	6.17475264216628	6.14906351786872	6.40748388718395	6.28434939885216	5.9787026906106	6.10283739004107	6.15860835587616	5.98685330558369	6.11466257638286	6.41625581922714	6.1271166045764	6.22817121593623	6.18251649746604	5.87467048246049	5.90717557288129	6.17957947574882	6.12059484398192	6.16258745643268
+"GJD4"	5.27596256652932	5.47023116897261	5.63006588910225	5.82790376259152	5.63282737911643	5.46230698276428	5.87627645861195	5.62835761159516	5.69311719380727	5.72400699009941	5.5006796997495	5.69869283731847	5.673422056633	5.66128153398499	5.63382939042912	5.13449612325385	5.67456565247412	5.41476873242505	6.04205978990854	5.42167405706827	5.84100925186006
+"GK"	7.27629551320754	7.45030599993341	7.47354089184712	7.5455077605537	7.62524676433769	7.61861954772609	7.70533925350458	7.67817784159179	7.45799525721832	7.42034769711672	7.42034769711672	7.70355645079405	7.6481003025786	7.4550769213979	7.50153983812738	7.25098062612692	7.68474331277046	7.46077267186557	7.60530559459291	7.45472359407361	7.50817949646144
+"GK2"	3.61106007416881	3.99584216057414	3.89878837395821	4.13701950795508	4.07618061214656	4.01216424446971	3.95298035289377	3.80255073232931	4.0227103386527	4.07761705825734	3.85564453375837	3.94419296630613	4.01291765454569	3.99692793224384	3.96372502190268	4.43139104124371	4.15787845018664	3.90356658437604	4.11205026633102	3.945588395208	4.32052233572779
+"GK5"	3.00826451795891	3.34082135071632	3.3404377108901	3.09744815698876	3.53218437418351	4.04561156790825	2.6972968697291	2.97694075828978	3.14467524372997	3.35988093099856	4.27869431298441	3.39810421114475	3.37529893542131	3.05199663372655	2.8960539854295	3.57939461880674	3.13335497327938	3.37091521551285	2.76165660938256	3.10597654882	3.19587596239918
+"GKAP1"	7.90222534793723	7.54377590999243	7.6380437912642	7.97043554376951	7.58782460413297	7.75963721539873	7.98441072263685	8.11633867289848	7.85505486792087	7.33647097466974	7.95553587106985	7.44180928469449	8.03500931631047	7.8304514234731	8.55990117943846	7.7857648939336	7.59591648664478	8.11761725354181	8.02784005706027	7.49516629553596	7.12098008554743
+"GKN1"	4.12712669542787	4.32907743373855	4.34966437503824	4.14970010721469	4.41644281758322	4.94617221678715	4.86324223785669	4.34658172580471	4.48611945704636	4.41644281758322	4.10894848622418	4.15500430397032	4.50746477959342	4.71144992399524	4.43393320447435	4.67869016707373	4.4262688859531	4.13361504591633	4.40595471826825	4.41644281758322	4.30466852208862
+"GKN2"	5.35978562589574	5.51251833626252	5.32692006831047	5.28480894757284	5.50366140261584	5.69639022576549	5.60400122868557	5.23278353452799	5.38760499548537	5.28528934145449	5.36705044945946	5.24053707284654	5.66662272296007	5.83837276723514	5.2547753997093	5.27457435160635	5.5578766107101	5.02911786542874	5.45381788931366	5.48280320935802	5.36511697198652
+"GLA"	7.95634287407545	7.33530563924507	7.47732594025715	7.33750744360804	7.47765132905012	7.6120044893664	7.45447665764465	7.56356235285118	7.46845932270598	7.36937028390329	7.33693301742795	7.44417815933084	7.29336367154408	7.41417169057581	7.31504784320303	7.62357492264042	7.18042953710041	7.67435486926678	7.43050428332256	7.50044328672654	7.35554679436404
+"GLB1"	8.54087954356086	8.05373239087495	7.83228041850174	7.91902815753942	8.16057954605491	7.79662013855612	7.92547806099361	8.06616359616778	7.92768174362941	8.30349631043083	8.07946857331879	7.99867053358449	7.73442848646704	7.73249160511467	7.92462919923033	8.03168393311563	8.00079137164869	8.17214583314686	7.77827380856227	8.45264142434306	8.03694130725548
+"GLB1L"	6.22183255922926	6.17007248696622	5.96668269176176	6.22860527576659	5.96545957713597	6.17007248696622	6.42804599924007	5.67496245320072	6.17007248696622	6.46458356042819	6.40329298344406	6.22335758467758	6.33382397409133	6.64515963166278	6.17652662837739	6.27442106319039	6.07822278405134	5.75441606963139	6.09308794678146	6.54201757540764	6.08787324352273
+"GLB1L2"	6.86278696602064	6.80335773779608	6.89372331060569	6.64942964815253	7.02577802514676	7.22972343140427	6.62206322575004	7.04746993807108	6.84077998819356	6.85906020238862	6.54809057595236	6.95103257413851	6.91645580728095	6.94524044115893	6.70400456194781	6.32014238407805	6.98363709823974	6.5696346245811	6.68549833272494	6.863795783376	6.80452582386258
+"GLB1L3"	4.4933763108227	5.14323800350552	5.62878721011775	5.07114393492193	5.19688856525971	4.81592567039417	4.41895653019089	5.00464271214721	5.49145724868795	5.10065634326487	4.78321932456054	5.00573473571192	5.11853132904955	5.00464271214721	5.60127960186386	4.48061109599757	4.97938160245429	4.60612794485501	5.24317492309672	4.73476592631055	4.70879001652726
+"GLCCI1"	6.18582535672034	6.60009080741756	6.24990326747689	6.39934093048114	7.04075019896364	6.0587739209332	6.11536358786527	6.42793825912846	6.55892564646327	7.13228719185455	6.41999442668815	7.07011238217213	6.32126331569615	5.56986640342679	6.1813144987247	6.63188367339961	7.07262200723124	6.62666752626276	6.78504317143165	6.76403376310951	6.90477888410489
+"GLCE"	5.73971809950586	6.44656103231167	6.88220512641327	5.53344152052625	6.82455407368293	6.25936958651964	5.23015041074031	5.98737603366594	5.94347749257532	6.12137448465415	6.39672354604031	6.16017503161962	5.16579705315078	5.580650282976	5.78993720906946	6.58346238506192	6.12822359804933	6.84735774073151	5.94545739016869	6.5390915696957	6.16173307114241
+"GLDC"	7.90113431951037	8.16134269353849	8.2948789295797	7.89160059668907	8.21761356950674	7.85631753532076	7.83783043904646	7.92302278067678	8.005848772635	8.07846382218978	7.72717055013653	7.91800750435625	7.93534105925521	7.85338284773323	7.82571834524118	7.60750198630694	7.99603416599282	7.68143331088233	7.79126788625065	7.97685632505841	7.75380497674824
+"GLDN"	8.58904089356466	10.0041178066436	9.39705199531106	8.32308929111775	9.39966242716009	9.07105731850757	7.51097768143809	7.88195754391974	7.09514478106306	8.77449609779871	10.060392045538	8.49283143932606	6.58833402437837	8.36106095426078	6.73584509145734	11.0803852758249	8.04816419346875	11.1207970302294	8.17196008132977	7.82971663358065	8.90486595017558
+"GLE1"	7.26983524448982	7.05078334603615	6.71091972458645	6.67537141313817	7.01961345007348	6.56435252237564	6.77259126355625	6.59242790867004	6.78862111254676	7.19997472308077	6.94370282585637	7.05261252388865	6.77725109639037	6.64167506617659	6.44059588678691	7.29598903867181	7.02962148238086	7.06972150287187	6.88340706914144	7.26821891636519	7.22576320624266
+"GLG1"	10.2804739003019	10.1863653856911	10.0479887383554	9.98177985120634	10.1819925460204	9.98985475143732	10.1143778975828	10.4019311252556	9.9086151635317	10.3463001152002	10.6696751124361	10.5637115081226	9.64361541649939	9.98306364873659	9.78836894167902	10.4190819806161	10.3105385864143	10.446231452008	9.91195236421697	10.5701365556519	10.2080501207754
+"GLI1"	7.59083804793534	7.33704400106787	7.49722540208174	7.61265034176549	7.53124490550127	7.88676847400771	8.54102808815262	7.62070106067301	7.80300898408962	7.80784940499866	7.59707606188647	7.53025988304637	7.6421137420291	7.85902237879347	7.61265034176549	7.01661116399222	7.64002060938432	7.05985501335742	7.75548630228265	7.46642268746617	7.61265034176549
+"GLI2"	5.33138465675804	4.55483488296278	4.64225934135327	4.74622716798312	4.48532447309069	4.440800383485	5.80118085540222	5.30354799462403	4.76787841011023	4.77648834021733	4.54283145768441	4.69670656086041	4.80887068344186	4.68607854192162	4.63517339171307	4.17125534829386	4.50301638557604	4.20489549009064	4.7096388695463	4.74163851902835	4.38452087474483
+"GLI3"	8.08543197638636	7.41307518069449	7.51586518595405	7.01351511272256	7.01240267410273	6.90237709266814	7.97458624555428	6.80711618299561	7.25525704076045	6.64163630515677	7.20836454250206	6.31064593827514	6.60552395202495	7.28193154751261	7.09878607727545	6.59153473313646	6.65318596836117	7.13361206565995	6.71824969846691	6.86201574155955	6.2030763496523
+"GLIDR"	5.41041364365613	5.28481955241683	5.74866393210972	5.34372931778574	5.88633530345017	5.37944324221899	5.72451738529578	5.46629147122821	5.31895706314132	5.46629147122821	6.06358866234935	5.55890411844152	5.75149236535284	5.42644070641918	5.5056118860896	5.62880526975493	5.40230855869409	6.20740599055699	5.69511995630585	5.24142762731884	4.97658324125325
+"GLIPR1"	7.55324884499333	8.16987934549728	8.57445827197475	7.92956928961536	8.60608962880572	7.2536360764271	7.58364989217826	8.19189802608851	8.79778851647948	9.0899877421269	8.06696388759692	8.17162442531873	8.41621734950072	6.65773551271619	8.64380309665294	8.30192136213385	8.22681500030503	8.44237909126278	8.11278164800454	9.00297935536206	8.42921660960468
+"GLIPR1L1"	3.85517760475755	3.78702407440369	3.97805245820775	3.97805245820775	3.92659523072107	4.24145798125449	4.12310073983469	3.9094462767537	4.22117488749988	3.97805245820775	3.82628013588227	4.03650800342245	4.24958039080995	4.11874926376161	4.03608468584359	3.98663309865026	4.13227377934594	3.89501455607376	3.87364428173497	4.14676033647027	3.78735300568239
+"GLIPR2"	7.78264833404717	7.22736448869478	6.57862152228022	6.00820511553684	6.74574947364451	7.03855667054831	6.47180832824595	6.91850060112582	5.6892979487501	6.32986697540987	7.99247390750927	7.09325794888883	5.72752808346665	5.89923652558541	5.603096271505	8.54752006052578	6.31925985126917	7.93695432827121	6.65684109491298	6.56974753782954	6.73029880692432
+"GLIS1"	5.5921197314966	6.05150282229611	5.97482823959966	5.97307982777935	5.82365965836164	6.53775672990028	6.20654349387909	6.0271958360219	5.93565744903606	5.47525433447167	5.47979020731503	5.78171681561027	6.45484107198593	6.22917001597166	6.1674497954105	4.87345570976426	5.91536334384264	5.94231705249331	5.88901021058502	5.77557283997741	5.34289633746577
+"GLIS3"	7.65845800127176	7.21878907318106	7.28203693371372	7.66539118840399	7.33892101399765	7.21954139427063	7.54084938739908	7.85065112489833	7.43198802111225	7.25105561873168	8.39960108371003	8.07049524312556	7.56271657529539	7.17854792958793	7.47345332793828	6.63360313764443	7.22303619773351	6.89166917409956	7.60311428589821	7.26937082643278	6.52024065125479
+"GLIS3-AS1"	4.45970061269007	4.55217499354868	4.49215475926142	4.77837263541206	4.37163228642825	4.7512731118994	4.78442430401686	4.58786835887243	4.63510480697104	4.63387184261474	4.51559123588832	4.57401823374961	4.58257019839434	4.4368094569497	4.34634699370544	4.47919049391204	4.64933277428655	4.46990980126442	4.45173877943184	4.61983292383396	4.63184268883653
+"GLIS3-AS2"	2.80727337020919	3.00861091618588	2.86919990936177	3.17533374339076	3.2588562825902	3.09520735474525	3.09520735474525	2.83257289371193	2.87875985116687	2.99468068414172	2.89249462830669	2.95838683806917	2.98781860472143	3.10081225508733	2.94369697976608	2.95267767219595	2.86967431673489	2.81144078029092	3.00067979506418	3.01128868949859	2.92887246895088
+"GLMN"	6.61882503824905	7.1731137990198	7.45600922408907	6.95644767565656	7.48562142776864	6.67033844725774	6.36390005410411	7.02981487324759	7.10801276518819	7.46454709010307	6.76108129642176	7.26834591740923	6.94946033441524	6.67545348145508	6.86501023130692	6.96492678585305	7.33194126819634	7.18396511483631	6.89837428140538	7.38649649970941	7.42934882697192
+"GLMP"	7.06356576544945	6.38586588945023	6.54073036784031	6.05911335515184	6.1186163705718	6.48532935565757	6.2067841049174	5.80971097396896	5.29105066068862	6.74255523331134	6.75769629157443	6.17137634930036	5.58591051990931	6.03401352395975	5.71202879293312	6.84735774073151	5.92073783191552	6.37228408851959	6.16161740905159	6.829834548684	6.16338232955149
+"GLO1"	10.9349132069302	10.887587950825	11.0115310616025	10.7694156608551	11.0418742684695	10.2845007177108	10.5195061846388	11.0361786087546	10.7866976231362	11.1175125925425	10.8804737292035	10.9669620333084	10.6413098910921	10.6138606356281	10.8278294769639	10.9617827400216	10.8358672609939	10.8830807147421	11.0290942119158	11.1302667513747	10.9618481646046
+"GLOD4"	7.86928255779046	8.34012652240665	8.5721499849204	7.913303874652	8.48760168700301	7.52031012600915	7.02041297592852	8.03607473413245	7.95413358973791	8.62901948746289	8.3682213333687	8.42301631699901	7.54123892621359	7.31405579144586	7.73356839149319	8.45187290102953	8.21235729566152	8.40266047453168	8.03632127798677	8.38495189402404	8.39129491011313
+"GLOD5"	4.99900289288415	5.17868203428572	5.59755153678026	5.42606798756839	5.23962899701724	5.21009568500734	5.47730443567437	5.08815088451023	5.23963537818821	5.16350566823313	4.94301800410923	5.07427603305191	5.37991423645798	6.06502053579768	5.45894309976311	5.02349649140461	5.03212562125377	5.04318664080061	5.17785324642039	5.30520491905562	5.23962899701724
+"GLP1R"	7.35238211262452	7.79955738849607	7.66873227772553	8.01196638957064	7.80676598023473	7.79846480407963	8.34287781818344	7.682870365319	8.01629748386267	7.9183318360286	7.59116815726978	8.05488378872735	8.06251981922984	8.05542673388438	7.95134380102735	7.83296380715093	7.97108291749638	7.29476722370559	7.95677055195015	7.8433642350127	8.02706607853755
+"GLP2R"	4.14289501157236	4.13629942350316	4.06295441621919	4.52978492323463	4.28791573319832	4.36303659923352	4.35989228666365	4.07378307377338	4.50400119969466	4.30453920888145	4.12229667410478	4.27181789743379	4.26681250810365	4.73893076939594	4.24466213307001	3.96579835519625	4.42710723246635	3.88509171534632	4.28575927596018	4.32103878172294	4.12761737160828
+"GLRA1"	4.19299893616507	4.15946665830073	4.06187751779232	4.59258148246096	4.29167401348551	4.24603430376045	4.15233970823019	4.2493817728559	4.38647643817971	4.37253480609131	4.00583269762721	4.20049956084934	4.43530803184245	4.44641814337078	4.3151099554043	4.32362510898996	4.18603917500732	4.01713608951987	4.25829237231733	3.96780819016514	4.44500118713771
+"GLRA2"	5.1903400873117	5.53796030147377	5.23069765405495	5.62539727460007	5.55890411844152	5.34704241799257	5.30468948984305	5.52668047730076	5.84155755776428	5.55890411844152	5.33921184037931	5.71101934779807	5.73968071841032	5.661281533985	5.58328286560092	5.64234854951754	5.28877282681724	4.96404782053478	5.52281496410653	5.5829262098017	5.78425007790563
+"GLRA3"	3.58163752193101	3.89688252675122	3.95322134027173	4.00444797799937	3.97020170559482	4.24943779577831	4.21972732898888	4.05845560176958	4.07495521194692	3.98620886526696	3.69141790411748	4.04067584057746	3.99196381840106	4.09571641024716	3.88217910198897	3.88222485449078	3.99715096617455	3.76145915426798	3.94771730180485	4.19063385332584	4.07136121882782
+"GLRB"	7.33717755784378	8.72677700039169	8.51126030462371	8.72677700039169	9.66722814816924	7.4554370756907	6.77028567130004	8.41263426208947	8.98514879830208	9.71122680553613	7.77423472737912	9.32623334835617	8.54967071891004	7.34866478649607	8.56498037603128	8.8110081889001	9.34259431188319	9.07645159072095	8.8420973259415	9.63417491700224	9.75910278809099
+"GLRX"	7.81073485837347	7.86472581182561	7.93865063485155	7.96360701819605	8.41487243043539	7.56551663026639	7.32841366484646	8.41867927869533	8.32980456589516	8.99687580013141	7.46564264512315	8.65551893603041	8.23845167140702	7.57004855871122	8.18608556686651	7.78257768119701	8.2770390287198	8.0157554485558	8.41984085695539	8.65437154788112	9.16708881097926
+"GLRX2"	7.47132528321688	8.1364682208194	8.4424358526194	8.37988468310165	8.76023063177145	7.72746812304682	7.96890234527329	7.96202817647275	8.59532470431281	8.73215445389136	7.95855578444228	8.5684008126876	8.59461402832786	7.7919165207593	8.85470359433731	8.36863708793647	8.26198456477233	8.75423572330553	8.62218595707509	8.71758927106383	8.87228308926312
+"GLRX3"	6.19475271450241	6.29173244505888	6.15128576579373	6.64032883529131	6.0011450820327	6.25349932903378	6.90037053233349	6.37365650300377	6.87902600455583	6.35030808834418	6.32889491394042	6.43947751257982	6.84163532161218	6.78098764685801	6.92063837119347	6.30008712041554	6.43372148562579	5.84949035446667	6.69413207406863	6.36825642698643	6.52880532357536
+"GLRX3P2"	7.01402359299915	6.91831104726544	6.6780818031061	7.05169458147661	6.9465896019193	6.98354212249743	6.95797844699001	7.05076973287609	7.16413904002001	7.17344327603295	6.80067095148751	6.95315903904111	6.92988282031943	6.87219844224048	7.10711877732525	6.87193887743779	6.98354212249743	6.88328418436333	7.11082790062292	7.24460448695467	7.03216504852853
+"GLRX5"	9.86660817351644	9.69912857912527	9.97401881403262	9.74868232781281	10.0408743547878	9.41866980161466	9.89754885000347	9.70842627257745	10.0878563172245	10.0893225830394	9.52362308544626	9.76687766036504	9.8730320770284	9.77183726910313	9.77377856654774	9.48464343380511	9.71698487685518	9.67118478380088	9.7203768826041	10.069687554002	9.84927658248563
+"GLS"	8.61016859773739	10.0334612568842	10.2816047005316	9.86986852769721	10.9617219486531	9.55001873237645	8.03871236628545	9.70424584807897	10.4689924873178	11.0880666301523	9.26738377079032	10.8412240622175	9.85791588955568	9.11255249520027	10.1027129154281	10.3849181414594	10.7608992459181	10.1737442549769	10.2608282177199	11.0728274058538	11.3214791038149
+"GLS2"	5.49680424237106	6.85533035529021	7.328751921569	6.63636807590223	7.285170225041	5.92517020552086	5.20019502525598	6.93854097959271	7.15430317014294	7.89080810999361	6.1123697152198	7.72353365517126	6.65557567367966	5.99774247277525	6.92696233883237	6.59605476731299	7.65770714773824	6.86158743123231	6.75865502873454	7.91538894858881	7.75366950241735
+"GLT1D1"	7.43499440890342	8.18546244502594	8.93761447835857	7.88297543077253	9.07332979478234	8.08095162126738	7.48676424150599	7.82408772805535	8.32514630801372	8.75492752645191	7.78571351219319	8.465601945913	8.12033957229888	7.78073955309319	8.03109488832686	8.08951440472145	8.41213103393277	8.30548002202678	7.93244273667589	8.87143854883677	8.74542684658876
+"GLT8D1"	7.06769220551436	7.05762763799476	6.96121471012626	6.58867236388996	7.0245478816755	6.14893618509495	6.25514043865265	6.53691444473678	6.72977320027972	6.67824819143263	7.35066438973069	6.91560461443984	6.35964424934147	6.2798424298454	6.36300389261981	7.2529485128021	6.51632131469601	7.29592176928078	6.652261978629	6.77801049069813	6.64050557309748
+"GLT8D2"	5.29346280761622	5.70741984761823	6.19386190474642	5.36203831441239	5.83673270325326	4.93326160695801	4.57276724061774	5.2449943434701	5.43152355870167	6.10209614631933	5.09022240805363	5.34085370345951	5.46651582407048	5.21765438369688	5.40255303935483	4.97515077424804	5.07869369290269	5.36346860103135	5.65737958494765	6.37815078020164	5.07182525101879
+"GLTP"	10.8726762973678	10.5969275327198	10.0870403432185	10.3188186822493	9.76194911354655	10.7285128863766	10.2249029849005	9.83031676233798	9.67159786071869	9.6010539564768	11.2704649629841	9.61089382152041	9.95911383465644	10.6341899589713	10.1275109745989	11.8888361580707	9.74998438228196	11.4074099217722	10.2160572629385	9.51679697334838	9.77624971420498
+"GLUD1"	11.0639361477018	11.2260863625013	10.7007387534121	10.9189534564002	10.7091711597478	9.27277268405588	11.0188362793029	11.1773046910398	10.8131322877632	10.8637590510144	11.2804378284071	10.9436917118531	10.4157526662713	10.4572479354509	10.2311920868714	10.6012186038382	10.6434918687223	10.697965746139	10.6385611316792	10.7568698747472	10.1377871740112
+"GLUL"	8.88796672804862	9.48937699697157	9.18110828414615	9.20131811042041	9.13037674097369	8.08160868462384	9.11735490425492	9.60766895705562	9.36125307871589	9.28077872347493	7.69989331449962	9.13251851592674	9.52585899642942	9.32662167084185	9.1346609808265	8.72372244291772	9.07286500353739	8.89343385987558	8.60700059550994	9.05860500585572	8.12312001181481
+"GLULP4"	7.39547393032928	7.49190044659896	7.46591774889841	7.8295954556951	7.42039911770298	7.71320311996404	8.03433560628238	7.63411614469947	7.70947039325422	7.75709282200739	7.3980630099138	7.6451192940547	7.84370296600506	7.63325082723597	7.6200027788609	7.26987693096291	7.58178466082014	7.33532878451947	7.60830592207174	7.36005025673091	7.44171653753784
+"GLYAT"	4.24276410794045	4.24276410794045	4.17127866114387	4.50889636226687	4.47793573455451	4.38255441381183	4.3896420584183	4.31225303211269	4.46430467424822	4.38175759488636	3.9526432462815	4.12945504949366	4.39893437511516	4.45010276665424	4.24276410794045	4.14654857131114	4.31808033599617	4.05835820684827	4.14038336586003	3.96720783953308	4.14705370907765
+"GLYATL1"	4.30556224728475	4.15428087930762	4.39981654371882	4.48101624424806	4.41049118417113	4.30879253907209	4.63504152001743	4.36229625772484	4.51932072704914	4.40515352236459	4.24319380928544	4.58102602516704	4.53260520649452	4.77067241028772	4.63001057030076	4.14951048463105	4.47143039020756	4.06275730109567	4.32785432348668	4.35833900985236	4.35982425011298
+"GLYATL2"	4.29938893389525	4.20720241361713	4.15445690616625	4.33565555214193	4.42590206744449	4.3651060829804	4.57125947446823	4.23859071392618	4.47987999103589	4.15263694157145	4.22987902480356	4.2372333693813	4.29194195601373	4.37468334208313	4.29938893389525	4.26387982481609	4.41390354463222	4.26730810669686	4.29938893389525	4.34503265749423	4.44513905779915
+"GLYCTK"	6.61244334313011	6.69747225378076	6.77493842047412	6.9077429376409	6.87118984699492	7.03895740237778	6.79411434342081	6.55165598756218	6.57042813705258	6.84348837970838	6.45281525699023	6.95300341471179	6.80869392504992	7.05114846196532	6.79107075745601	6.75010218515608	6.74748994273894	6.36391705175245	6.85831410788195	6.78206430457926	6.65636179804214
+"GLYCTK-AS1"	4.19288624718134	4.2128532289642	4.27782841173147	4.37175404777137	4.10897423196225	4.46801423956466	4.61284354163675	4.24392794607037	4.35147475981244	4.19092715316387	4.0082120791732	4.27739899581171	4.4246855712763	4.68779368972047	4.65148791084482	4.16910210131818	4.23568359412931	3.9251311189932	4.26638965474822	4.26638965474822	4.20924809464739
+"GLYR1"	8.40259066590622	7.86588977517299	7.35844801778664	7.6461264030233	7.4901889804275	6.67775125770358	7.96959761064716	7.87201465510927	7.49509224730481	8.17793748650295	7.83081802593841	8.17916569215996	7.32066696009236	7.5350839437577	7.23279437064483	7.94289774271505	7.78732065281957	7.81354813374571	7.83312654768165	8.08272503307096	8.05344362396361
+"GM2A"	8.08926216892351	7.76298596064077	6.12078054390931	7.47153140004334	6.67076451400911	5.75469480118798	7.64813656118691	7.73720265290903	7.4202487186418	7.59264116192059	8.59834664668029	7.56131873449449	7.47153140004334	7.53504763765666	7.04717934607602	7.87676234240328	7.31443648128866	6.78487084258921	7.72639600026181	7.33345127597218	7.36514978869844
+"GMCL1"	8.02108002801461	7.96614973036346	8.21081041335097	7.35506592356062	8.70392479863099	7.50473564967921	6.70029586821624	7.67583220712803	7.79197229282539	8.59709986417741	8.17603005550672	8.20603668065956	7.70345158160046	7.69725169674335	7.45552011642478	8.37131909387301	8.233648992433	8.59461402832786	7.41873292914408	8.3128284802654	8.02108002801461
+"GMDS"	6.316091433903	5.93782912389898	6.19214876666096	5.42687344809913	6.42413419809881	6.18525411831997	5.64732960294295	6.08889007691952	5.58610460270502	6.60656894085472	5.83192818725058	6.52098404441308	5.58053643115203	5.63006588910225	5.39339969639172	5.78352376783233	6.14797279380195	6.19522996525178	5.88832323940365	7.16862637079887	6.32995339063247
+"GMDS-DT"	6.36231240483136	6.59537869451758	5.99429877766096	6.37734124359212	6.20105025695508	6.18650844555271	5.89643707395577	6.38391219754382	6.75253660241368	6.46534080417585	6.50486911363902	6.58619191078069	6.00047486529754	5.99385077119225	6.09904339690926	6.30012025349935	6.60424680594401	5.9650737695961	6.02152022342471	6.23124441745046	6.42410962663217
+"GMEB1"	6.82934729556851	6.71776504956581	7.01236032690963	6.58103663012201	6.82158827642902	6.62907817443329	6.28488067061347	6.12271701149872	6.69353739257321	6.72911242362791	6.79109031431239	6.49003541227792	6.10644231630231	6.49471066998863	6.46654086522946	7.03111383617786	6.52588256222682	6.90378943441832	6.4908410301211	6.7907772780761	6.64070829455221
+"GMEB2"	7.62312575070703	7.4094622619156	7.96800559029412	7.42631605673944	7.50477868418847	7.99895462422192	7.83626611880337	7.8886956982843	7.49497090921978	7.61637858981935	7.51109311934087	7.15016136090195	7.79068922820646	7.90692736225383	7.5901793032344	7.33693301742795	7.56666135688304	7.57964982563016	7.36249561556921	7.59151613708084	7.39087737895519
+"GMFB"	8.71840226517249	8.23518992235802	6.83485857949483	7.68198526795612	7.86108147743206	7.797530381492	8.29333554452003	8.42251327228547	7.58434151647254	7.96804876769846	8.45685170255384	7.73216853859339	7.62622105386511	7.83480643163807	7.38735968870119	8.21388614196152	7.67832542093136	8.20252054610064	8.07813892846945	7.44423107256266	8.1660830559656
+"GMIP"	6.95141003265395	6.52066819169955	6.51104739409758	6.66603361571361	6.32590712803359	6.77686399521014	6.42700695002348	6.57061415273021	6.42503563959567	6.72411709709739	6.39476284329587	6.20715430203867	6.28739013283976	6.55102604893858	6.45524343428056	6.4159466304982	6.52066819169955	6.03190531662948	6.46543118900687	6.91495651248815	6.76018994577965
+"GML"	4.91498540566334	5.0010397619419	5.01513564062992	5.13100748631788	4.782400391756	5.39163330222159	4.83168504583091	4.84330323191099	4.85880801912029	4.91686013084353	4.61773708254837	4.83851391392687	4.85880801912029	4.98878532113437	5.0193967046792	4.83851391392687	4.91921828975613	4.46176976156221	4.63297900926323	5.12247296235382	4.83851391392687
+"GMNC"	5.57169682697286	5.39611347910692	5.02324899387102	5.4951880040683	5.45243585982509	5.3973348872181	5.35746942878278	5.46130255495717	5.44794840050822	5.52709528988894	5.39782499494805	5.28598671775579	5.38000446623954	5.29556516016672	5.45027266594112	5.46530889270555	5.55164005273765	5.14873718901971	5.31626069827045	5.04858182392182	5.34158286489606
+"GMNN"	10.1696903208584	7.8791830856771	7.85906218542525	8.77166548923975	8.08494965946431	7.8623363145634	8.99999202415078	9.07873207840716	8.54395881663636	8.39449321863456	7.74212798538252	8.36986787279123	7.65116043185774	8.1098522274406	7.95058102079103	7.53615992348323	8.43957354133228	8.17699168867715	8.82024226986417	8.15969103825038	7.18935467975313
+"GMPPA"	7.38344070795227	7.14348423074252	7.51805704132411	7.38973426876108	7.14145683007555	7.64707850981964	7.13968263480947	7.23629514989463	7.1055488524284	7.26717967170764	7.23299345755831	7.26750514810791	7.31498225700122	7.46620657353284	7.26750514810791	7.16340732134341	7.15605778294895	7.55626557368304	7.28573161490623	7.3449841975682	7.25546010480742
+"GMPPB"	5.92553634732532	5.91728566237518	6.10599098050093	6.22107688184924	6.05866619350574	6.12059484398192	6.14772423550755	5.91711548516783	6.17102607354078	6.18483851678001	6.17047857793829	6.28180373762956	6.22722581395751	6.33373990310286	6.0908314461418	6.09871429077924	6.18913734764034	6.02811235886311	5.97325139048016	6.56902328567141	6.31141930318535
+"GMPR"	9.31769964022396	7.00992443444693	8.11625197353154	7.85158715847407	7.12686127794126	7.01621315563682	7.59436371805364	8.2901197868927	7.35283333518815	7.6105684593322	9.12299192265534	7.57400426429725	6.86175869527957	7.35088139778733	7.01266350432407	7.3758930576777	7.19903078994454	6.69359214126965	7.68797221468457	7.62812434980473	7.01661116399222
+"GMPS"	6.52278842460136	6.86355746282459	6.8900333321716	6.7848102137643	7.29189047759155	6.52328077555277	6.81246068706812	6.36043646390456	6.91269387596913	7.57476979822742	6.80131331816736	7.04341973417167	6.94670814112916	6.27943343513116	6.62500270445494	6.83496838928935	6.94789165234317	7.027183781052	6.70764824753133	7.48930121022878	7.34695811889317
+"GNA11"	9.21408610762958	9.05618937173983	9.33849626556781	9.21377588471634	9.19452241743712	9.80335219650502	9.55511775074262	8.99733473733221	9.24184895692695	9.0898446774565	9.08010037705061	8.88687362658871	9.36255037946124	9.02406581416614	8.97270441348967	8.68769767439754	8.9406155750466	9.04575658403054	8.99896408512769	9.18985949756556	8.8953784090536
+"GNA12"	10.7276657486973	9.73164893533187	9.48889218672781	9.83075381091365	9.44548085906146	9.543448421529	10.82838799024	10.689981285188	9.85315739937874	9.58426497295576	10.1822879468175	9.6789880955282	9.7813008715316	10.1333673335527	10.0471501943295	9.35523675407066	9.55750239615021	9.5426470688208	9.8652329001206	9.65731280230223	9.47950379151481
+"GNA13"	7.55061064149506	7.4637181800415	5.42618366945995	6.87335868388278	6.81007673350833	6.0857855800961	7.49879679049686	7.76243034052001	7.1171374871322	7.03426981331242	7.40928568204704	6.67371343352402	6.61322097961603	6.70421881165015	6.37916623178089	7.02820392678986	7.13942076928432	6.91953754805877	7.58524244062171	6.43301557358252	6.27154323854755
+"GNA14"	8.26172124285016	7.01188905723095	6.97883166916785	7.00721541294395	7.34186096372136	5.97844486523441	7.39458684284333	8.61927551253895	7.52170491995623	7.19071591027624	6.68700538968502	6.62123329769755	6.77643519189656	6.70448234812973	7.07714164650643	6.62828127410921	7.28759489353445	6.57964952223454	7.0038208925016	7.23422299865179	7.66391473704964
+"GNA14-AS1"	4.73602545130588	4.66833206108413	4.82513996063792	4.85002973554673	4.64611485178473	4.56879497056399	4.97644039891811	5.00413859161566	4.86582224088101	4.6850454592459	4.90766946141309	4.62004534350943	4.80152650324211	4.91829777779931	4.7201309700737	4.6835641951428	4.7399855549576	4.65238838590816	4.73780036800828	4.51419913752859	4.88379902231904
+"GNA15"	6.09313694797454	5.78317056109902	6.06825760132905	6.03837270463874	6.25260444721476	6.22970899206326	6.60032477607942	6.00335671409594	6.15295983787483	6.04302413328164	5.36124307668057	5.6454615574223	5.99438615122677	6.40879870890861	6.02073476950089	5.75358332748699	5.60525575485078	5.68201969176251	5.86395029899256	6.39128188437282	6.21825377596025
+"GNAI1"	7.74663360179259	8.35766597909656	7.92590487321919	8.09277388911716	8.16445885912276	7.47984222835689	6.90127246021231	7.70116450435619	7.43954282172764	7.99116380561461	9.22670002939303	7.94584072586654	7.79734609288611	7.28203786075559	7.91363972555064	9.79261253702706	8.01573917704363	9.65585803479729	7.91946734067482	7.55917027733897	8.26570708280126
+"GNAI2"	10.9742605582957	10.3585405850829	10.16654826953	10.4747256529419	10.0578711028761	10.4307813355782	10.6151839790365	10.3600066434046	10.1486855619572	10.4000811350444	10.9110690018243	10.4204235775044	10.3095515817793	10.4132650338442	9.85673912020179	10.4919780603883	10.2587793407632	10.1258936620638	10.4397669027445	10.6350851150979	10.3814919379217
+"GNAI3"	8.28910939224857	7.50735629440103	6.82846800968041	7.3544397755459	7.32956334040145	7.12653519320111	7.36056234045226	7.99205880695866	7.38796602665651	7.17706413243639	7.76421115862028	7.39563754127559	7.27461531220856	7.1231260293741	7.148145310777	7.38717325829917	7.39766047213019	7.67946205835045	7.82630503293513	7.31815642914968	7.34758964854215
+"GNAL"	6.8090842104325	6.7766021149087	7.91443973310731	7.19738235874063	7.64432222195424	6.8773273656432	6.80486164411038	6.93912631560478	8.23424177254218	9.43910303969164	7.34571019227922	7.86368683841045	8.16828336737711	7.3651261113759	7.78642020449791	6.75102136754708	8.18053792946943	6.96359028530708	7.27650559953422	8.1489004068475	8.21666005472074
+"GNAO1"	9.21649714660999	10.3435675219989	10.6225763041594	10.1744561713009	10.9832355121413	10.2281786068651	8.61770856242855	9.83020463227472	10.1413068198582	10.928580053399	10.2400603430176	10.9563633108036	10.2289794274674	9.53438979157388	9.49723314636567	10.1459440215921	10.7850079669531	10.2691225195233	9.98435753130057	10.937705886058	10.9313730794023
+"GNAO1-AS1"	4.98111404250502	5.24125016541336	5.32541465721248	5.43263472420666	5.37408322589825	5.94490303014783	5.64522820816277	5.32541465721248	5.24948846355185	5.39500643081274	5.19119250994337	4.98438853069212	5.31000703466858	5.75253267230642	5.29558472541473	5.19606006746302	5.46721823998881	5.20089340712176	5.53554675616815	5.27941117347017	5.30412778995194
+"GNAO1-DT"	3.9446065860705	4.44944282242539	4.55259595794143	4.72174736172167	4.34634699370544	4.20672522417935	4.30016648468325	4.24050422307891	4.41240058475406	4.50850331135573	4.16478449834696	4.55311810923629	4.34634699370544	4.30485039451314	4.28811339558514	4.60785540159215	4.55259595794143	4.06391346924292	4.31282373212572	4.34634699370544	4.37320502589982
+"GNAQ"	7.79422437665319	7.81339894019923	7.67160566116122	7.91075465258272	7.90434888392339	7.2761926528967	7.68506371323368	7.92038275543346	7.90434888392339	8.19501178873813	8.19619583194172	8.19130696733037	7.61795341684829	6.98239403529689	7.6743912820027	7.88333107757947	8.06047166086143	8.3081731137205	8.12338291752081	7.9791837798478	8.06696926688506
+"GNAS"	5.1033641987613	5.14257910234593	5.40264190086401	5.25933259883504	6.43002437083203	6.38211441981456	4.92458129822923	5.34725422542482	5.94237987979017	4.9659413349091	5.16732340742799	4.87598852855677	6.60102605384279	5.53521560697616	5.74737589088268	5.05569266278918	5.11534545909877	5.45551148581978	5.41945496573842	5.08971671658577	5.33278141100592
+"GNAS-AS1"	3.70207974153546	3.61350954801454	3.53303652946889	3.95989665879781	3.35694279790696	4.00391004499807	4.00791879022628	3.66969290927696	3.53088456273445	3.62682900965625	3.64714049842851	3.64714049842851	3.65869059419761	3.74235217017352	3.61953471621589	3.58588137209805	3.64714049842851	3.35635590251374	3.75170137854862	3.58257146290698	3.84010874826711
+"GNAT1"	4.28750035641881	4.35121908643746	4.48746633138876	4.4338526546948	4.41046317135729	4.53552366041602	4.9363239184449	4.41353443135362	4.8111342498047	4.48250243192528	4.33631041849487	4.38292581720921	4.46860978173633	4.65726973230912	4.5329243065401	4.253592738339	4.46487207317048	4.19777890832164	4.67234113600489	4.7116015372755	4.29538402924937
+"GNAT2"	4.255727397313	4.43631501567126	4.25248307009833	4.90933682972996	4.37365641956752	4.51083342013744	4.33245142264117	4.39849797843724	4.60953931354569	4.69960835156154	4.2589189125069	4.47256834437548	4.67800587526132	4.48179238041682	4.45554740027558	4.58156410719525	4.64015775782415	4.25969783656811	4.78576787880677	4.39794006300127	4.58221230702001
+"GNAT3"	3.41603442714824	3.55202122514977	3.50608295521472	3.49907232928224	3.49010789094588	3.97356405825598	3.53388821721214	3.3975983650604	3.82565480918747	3.49907232928224	3.49907232928224	3.49907232928224	3.42660192376673	3.63346037438584	3.34655039248576	3.6217554709834	3.40938299588612	3.32681814335968	3.3074078938372	3.45666970993107	3.54606841694302
+"GNAZ"	9.21797067938539	9.17179529960292	9.79421856924835	9.18995729912795	9.52169806274503	9.51289365957517	9.08529055596579	9.05588600464358	9.39569328791662	9.57731477012402	9.41279355824262	9.5290109725904	8.84960541783268	9.28198034800331	9.33179776435113	9.49636473620738	9.40140916104415	9.90794719379406	9.32766825064792	9.63767640091	9.43594671452362
+"GNB1"	9.79110610320478	9.68243903844057	9.18276422577879	9.68772124910162	10.3064689949911	8.79422002581892	9.7044906511657	9.87193815531123	10.0934707748349	10.29415762413	9.61814508322393	10.1633021477477	9.37851959671898	9.21088912065525	9.42295322312121	9.76732756435664	10.0180115779654	9.75672559468127	9.96327463301005	10.3663028067617	10.2010228338741
+"GNB1L"	5.73971809950586	5.97383095937965	6.37531766919564	6.08477088399413	6.10172455145438	6.29509620317378	6.46810213322261	6.09985269168515	6.27041628258492	5.66269978765048	5.79709504688894	5.97608054433243	6.42896453975519	6.75879424975537	6.03146883991838	6.08071925868164	5.94953560517929	6.11114908580368	6.1486742533802	6.01721912112847	6.02866792574215
+"GNB2"	10.1834657453747	9.56580754575278	9.66102546473745	9.42548624906115	9.38900312839758	9.7417655361852	9.57932747231471	9.82592955773318	9.35144787124389	9.75200828002163	9.5362128371309	9.84653114124192	9.30882651026079	9.47697243809274	9.01483684934665	9.2950317709798	9.5362128371309	9.22929840553823	9.49361298055844	9.87500755747294	9.53538988092559
+"GNB3"	7.11881740094622	7.28171151646379	7.69928867613376	7.49100283342541	7.28104838965062	7.6266518127617	7.50482029051915	7.15601677552784	7.36095300623976	7.01385578942077	7.06124943371748	7.10475509899872	7.49854264661646	7.58094219232795	7.45544063555217	7.01465503565618	7.43408145621598	7.00916395939473	7.63856115354185	7.24538706161011	7.3248241319991
+"GNB4"	9.31558331069819	9.09692232440304	8.94376785282272	8.77550005140702	8.57910423707341	8.51844222315036	8.04798995458004	9.06651837955526	8.2000707847281	8.27376370480815	9.06610992953384	8.56307916226156	8.3041622079289	8.55594622426539	8.84366821527732	8.77887946430964	8.39926863918426	8.56011586453156	8.77223364807299	8.47530850101601	8.78818240727375
+"GNB5"	7.35745017403555	7.69589716322509	8.27637567432181	7.43308612165978	8.60499500946289	6.78503117609697	7.21979101813012	7.80124749872009	7.9547150933961	8.95744277761413	7.50972918283852	8.61172900984687	7.40520791287676	7.00317671420143	7.60463122756783	7.5268801735799	8.52191938734671	8.13403178964543	7.48232911798089	8.93202185158358	8.60284768987831
+"GNE"	7.70343272137494	7.73478365927328	7.95345438850849	7.59780110755524	7.85634587527108	7.99211665799252	7.60172779763256	7.76499418984837	7.63310650676635	7.81974359075831	7.94244245010328	7.53518970658688	7.74683180295285	7.32031550566736	7.74855338068211	8.48943854111595	7.76499418984837	8.34954970551892	7.5905809444426	7.82325453906769	7.70712888950062
+"GNG11"	9.40213247066427	8.20373286707687	7.64773062191475	8.01323569250842	7.61875961338103	8.98876736692189	8.83377138522018	8.63981807868377	8.10284071461776	8.00307570267426	8.33086900666814	7.23719115848121	8.50654623385846	8.85316606070423	8.75242422173599	7.71202078411085	7.63266434427872	7.71915897671435	8.1581521577979	8.22264368675059	8.11724196379251
+"GNG12"	7.44797290526694	6.80073860885955	5.77730482890858	6.63895669647077	6.09205543525054	5.84760649955006	7.00675003931747	7.49368261606479	6.88805992343418	6.59361593165903	7.88167808895049	6.3871324895412	6.40611700322454	6.79430298874102	7.06813908675283	6.15659911286711	6.56022521679036	6.26879689746581	6.90317282837696	6.60495275352204	6.22435517348072
+"GNG13"	5.9841263243859	6.48506556423064	6.8084272348924	6.77870820774912	7.57209809159738	6.24624496249475	6.20578210684138	6.55789771118834	6.92603399902119	7.48374450883551	6.01112144304181	6.89777542638619	7.01629623740982	6.42316959745497	6.68260834388885	6.17388351644803	6.92162313117797	6.95812377721521	6.3551189847045	7.45205210743957	7.22885545741576
+"GNG2"	5.89084232491567	6.93249793007217	6.5794500294581	6.80826441460259	6.71805399911518	6.29985413409686	5.68883210571125	6.69377905416565	5.93962637914581	8.12605835614512	6.3139322073308	6.85400639617381	6.55413553700944	6.03026837102093	6.17285993995288	6.36377693104329	7.18105588681744	6.01222021532833	6.5509625750556	6.69493631670091	8.40193359529471
+"GNG3"	8.65637778979213	9.93292677863397	10.8918985206037	9.87447995560702	10.9514620329007	9.60125334754497	9.12564399508573	9.64914666976334	10.179428432604	10.7832323748186	9.33750462188618	10.7836368495578	10.1238635649237	9.16603601756285	9.98858189026462	9.82529361720597	10.4442202969659	10.0002654005893	9.93130736368343	11.2148100876745	10.9053267600501
+"GNG4"	7.3953073055301	7.93021029286052	8.96476290289692	7.67514447588319	8.12809792251497	7.38862181504983	7.14150741968322	7.86563395797993	6.8383806229948	7.18267029730795	7.84673414863562	7.8212829756514	7.09014641321558	7.16712106679049	7.51048291672943	7.35131681719734	7.18651850423013	7.69309783590388	6.98457283392871	8.34743137718075	7.31906655513741
+"GNG7"	6.07141768577964	6.20644232301084	6.0681649603796	6.35845706585124	5.97918473307271	6.76397909832607	7.09883291330127	6.33081314082951	6.48298139889636	6.26975977761105	6.31240751375641	6.30627211869227	6.50576481691999	6.699572140843	6.29588116160688	6.09948792357545	6.33426026611087	6.08078175876874	6.52440452384347	6.20644232301084	6.51049373628878
+"GNG8"	5.16299061211559	5.51698186140246	5.83962628244998	5.80141702232177	5.32832066263635	7.13750336150268	5.93509059876816	5.81248238170866	5.05333782524221	5.10658725978431	5.86514349591094	5.51022843316043	5.62970342253807	5.64511586398539	5.54679241134274	6.10271985819724	5.30318790084615	7.11627400987078	5.61743451423487	4.94936370266715	5.4235136300896
+"GNGT1"	3.05978068989533	2.98434485145321	3.22011228573615	3.10853274465289	3.03411988201317	3.22631240238459	3.20790521543232	3.09374803017525	3.04009166307385	3.10445188916792	3.21183750769042	3.16940434290283	3.24362142127887	3.24235035321927	3.12085153978271	2.94354242413222	3.18275420392285	3.07392602482033	3.23642634396824	2.98400369984491	3.25585628386978
+"GNGT2"	5.90895871940482	5.83458335016188	5.41818316350349	5.95701090720422	5.78744276291512	6.18654153449085	6.09420791209883	5.79245633383935	5.88925913978842	5.90853447574668	5.73240684706531	5.86740434397106	6.12553694805277	6.33571552327933	6.03422637212627	5.67034315445663	6.04252725037426	5.43462448170038	6.05140377805119	5.90853447574668	5.91392486899686
+"GNL2"	6.77528499164438	6.78550840297479	6.80187570155064	6.72950203062992	6.815385397274	6.90648821967788	6.42955973830883	6.79438770337017	6.40066986924397	6.61271634190652	7.14561191589271	6.6016545328503	6.40782284115381	6.51869993102629	6.86302883961134	6.75592267333301	6.45018065977139	7.11309624766744	6.70184503480271	6.89018672533706	6.87604928292907
+"GNL3"	7.57755589428723	7.83815870607936	8.08135137975433	7.55614193798015	8.02904515590797	7.76519730380242	7.25309555175633	7.72771401005126	7.66828508492213	8.0575016506735	7.80401680738008	8.12987336017773	7.66034579592647	7.37033231524009	7.88702423552242	8.0166862046224	7.81055373536014	8.18680705369367	7.87502459060108	7.92856829853785	8.24624600026572
+"GNL3L"	7.38591295292591	8.04870002291479	6.48583228849031	7.75091502885358	5.68552828739833	6.30650686022506	7.93408708602904	7.77977677444625	8.08340078900826	8.2142331728716	8.33626817786639	7.82266648112636	8.01059931540448	7.84267296259635	8.02280599551569	8.24910893645222	8.00000575601662	6.54715378413339	7.60552296601375	8.16263732948455	7.01661116399222
+"GNLY"	6.00818375049827	5.34247000307863	5.37969558125768	5.6315534289384	5.53580018496403	6.30668584311523	5.71978503798449	5.33080742212669	5.40076295565993	5.73228347628339	5.29410190757998	5.27941117347017	5.9664758453195	4.98515985851495	5.0843019799864	5.37816871030886	5.62378173261059	5.97636378420287	5.27402406204054	6.02977034442604	5.588997921787
+"GNPAT"	9.59446932338416	9.15589357596805	9.38833803088014	9.02797901229893	9.23049529037648	9.21685079143716	9.38724151893648	9.34841534214443	9.27116136020891	9.09652367032901	9.11600275056408	8.98447260588075	9.04442045504592	9.21419184685986	9.32827975608838	9.25659195792183	9.08213479207565	9.38433182950955	9.5285595515093	9.25448071669086	9.03566998352684
+"GNPDA1"	8.46716454190356	8.59820245713524	9.05575532685844	8.57837892446928	8.64507997671614	8.60147309474711	8.01839662542629	8.47122394936354	8.80292072841855	8.67116774377259	8.68707288261564	8.7194912466993	8.62661003206165	8.26064140870711	8.74202231533508	8.45209936067776	8.46002846137423	8.50265255827686	8.75607215591728	8.79149800594688	8.68507263744389
+"GNPDA2"	8.68040199562572	8.15284861954888	7.92657137017594	7.81008380236934	8.23805985266941	7.39401425479217	7.99164741446309	8.16304297228538	8.31179814303994	8.10066756316198	7.85864907072503	7.97622408108958	7.52234288119728	7.54065234566234	7.96681016940788	8.1743044011908	8.07554181062905	8.03320164536452	8.1225687367061	8.10311074100639	7.96306903700149
+"GNPNAT1"	7.75560034439829	7.89736026100198	8.2875737630455	7.88680987915815	8.35121245663965	7.95714069980958	7.32861394440826	7.66460770827459	8.08976732114994	8.16206240631296	7.52357145790892	7.90143053078889	8.04243902655685	7.52972901825812	8.34643531083573	8.06770628939413	7.88729115146474	8.14111949613319	8.12162978545858	8.16311684340579	8.02226045208292
+"GNPTAB"	7.32958041837618	7.48083703818406	7.64209226451358	7.42632187683466	8.05787236943582	7.25220395173505	7.39605236611253	7.44409759897167	7.86363421325305	7.620871557721	7.12164429158515	7.79916358600447	7.17807361292493	7.34362214575692	7.76810114138821	7.18469989736373	7.51123625703881	7.5803830898809	7.23231593541356	7.77706246555678	7.67193786915214
+"GNPTG"	9.11685490347523	9.35019775481413	9.28466342767194	9.12291112707542	9.27563039405788	9.00100773894455	9.08051661847828	9.31982286825195	8.99253794797866	9.19504668126423	9.5636619246566	9.14339032393936	9.11466837621121	9.01257511735136	9.02447433622004	9.30911125632234	9.18489050452503	9.77761794232358	9.16800683832833	9.31953891593104	9.11695671929247
+"GNRH1"	3.69332758719222	3.47115147475991	3.55519594484003	3.67968591118268	3.38694248253605	3.88414181728274	3.5777440035161	3.75696304164843	3.59474855375127	3.45767797688384	3.56744422936479	3.4579707305293	3.87257283995627	3.77957793491136	3.97236925347772	3.37942984907682	3.51847382897228	3.49192946502811	3.56744422936479	3.30627270553787	3.42946443952115
+"GNRH2"	6.55569320466046	6.65523308201047	6.68290108045023	6.65892126311775	6.35054383230316	7.07355988303612	7.02220367013427	6.6764510545774	6.89716615562348	6.65045648225317	6.63760376059495	6.59716826366417	6.71588265592706	6.92729617271619	6.82626049893542	6.74713807534598	6.87024501520573	6.49367070717642	6.65148549653717	6.45478913763978	6.71910001046759
+"GNRHR"	4.41547998126448	4.39219848347163	4.33232277431362	4.34032375988827	4.51823112443489	4.35019475944302	4.55789214019274	4.29938893389525	4.41141949154053	4.21218787278094	3.9526432462815	4.01363763074749	4.04585161519926	4.24657064880372	4.25644714150619	4.29938893389525	4.58199723533012	3.93726031640152	4.07955087881111	4.29938893389525	4.29409666181477
+"GNS"	8.05163277613257	7.45478332787548	5.87982042925881	7.03124882522843	6.74025040875597	5.78922400222241	6.9894919095734	7.29461615227991	6.88325359137481	7.62119322918461	7.76662379803029	7.05431537897466	7.11754767821319	6.73833579171416	6.73271835529161	7.88378200701342	7.4082785261471	7.29643762599084	7.16287920542675	7.66583428670361	7.49807917230654
+"GOLGA1"	7.56831388153597	7.50292599482398	7.55238372806368	7.20628599387618	7.26240047409466	7.39115464000403	7.19197468702801	6.99812464607834	7.12388523227521	7.22887751667864	7.65367959208288	7.10447824055081	6.99706445989355	7.44847526523828	7.12147354601354	7.86731367476914	7.20429045034093	7.77210542313102	7.12205325589439	7.26240047409466	7.18003956613531
+"GOLGA2"	6.79093733737163	6.65148123200678	7.11835359211079	6.78708097921721	7.16712106679049	6.94739009716459	6.61547149937246	6.8383806229948	7.00114192010537	7.55685560971175	7.29450845503693	7.41565343528403	6.76897906889958	6.56719018812021	6.60912154553619	7.20160046509388	7.04862522063267	7.34202319815253	6.85466407327388	7.35600029391462	7.09451346637241
+"GOLGA2P5"	7.3752875488712	6.48087689508722	6.52107314818121	6.49603824597544	6.62137209940116	6.95723739667017	6.28396712941537	6.46875531462007	6.19122438074344	6.092128546832	6.70112668313329	6.24433161579621	6.41031295942542	6.92911942099716	6.41031295942542	6.28418180232667	6.31636539351852	6.36969386071669	6.27041303351336	6.0268456023735	5.85663605493367
+"GOLGA3"	4.23190316499525	4.387188417126	4.05066924818348	4.29938893389525	4.10245368182929	3.7894743953045	4.39319670230421	4.55430132794795	4.50618350090164	3.93273915250025	4.0219325704925	4.36520697712747	4.24607353944498	3.98345994706798	4.65298375932948	4.33646536510205	4.21857790633529	4.19276816109722	4.23190316499525	4.38496673529009	4.35622085402742
+"GOLGA4"	9.13657014059425	9.01532348521737	8.72282387196388	8.79997063729834	9.00172622607023	9.36262006319958	9.13261425715121	9.25616368304911	8.97423240501623	8.89064016401163	9.04675514894599	8.84132149245873	8.99739970800334	9.01532348521737	9.319092194185	9.4091342513983	8.8303459480698	9.58242661674051	8.88354094184659	8.85524980050354	8.95476279134225
+"GOLGA4-AS1"	5.22402160576658	5.32707747761293	5.05352934659381	5.34433215383629	5.3098016105161	5.15413568724855	5.33832376009474	5.23573668737886	5.14785645014479	5.31497976676401	5.36216750261523	5.3098016105161	5.39576317200021	5.3098016105161	5.34832512856679	5.58289258713311	5.3897663154713	5.17897076267243	5.08705095715922	5.28335027243607	5.22576675195749
+"GOLGA5"	8.22663001316695	7.87747199334791	8.02872922295006	7.71830326466829	8.35505689816963	7.77505430181071	7.79711729818899	7.9254396239416	8.00228197963917	8.07890783505457	8.14044703635995	7.77105816687442	7.50922014063393	7.89337020258155	8.0390602809006	8.20731641174044	7.71559547237025	8.66911801880508	7.83543685650267	8.11764934268129	7.86555254471432
+"GOLGA6GP"	5.64478484410611	5.49048734719076	5.76615518726632	5.7637414832805	5.64035962210497	5.93804324370921	6.12486221628662	5.54213085382523	5.52488849638518	5.78240213245573	5.74736174532637	5.81302365422418	5.73247039593202	6.171717343018	5.74430484312498	5.53027076228918	5.60525575485078	5.7604377109745	5.55800190047079	5.31538437896982	5.59432987240525
+"GOLGA7"	9.65075220793318	10.2275783909627	8.99922793372089	9.50661248711746	9.38496968786647	8.87366610610801	9.64352368277506	9.60045711888811	8.93874953496301	9.43226173586511	10.5318515337543	9.43226173586511	9.24079495119263	9.41705904194999	9.347276500574	10.5438663106712	9.28805671498645	10.0723388236351	9.66455676158774	9.2527249227262	9.0798927044845
+"GOLGA7B"	9.31051848620549	8.63961753074247	9.61706796053406	8.88510517378123	8.8185999516972	8.82480942867188	8.85229779542276	8.99034216094346	8.7768255604897	8.68694948308232	8.7192359384044	8.76111744963298	8.73124684390262	8.62494772464721	8.92230449093262	8.34323440563481	8.72388493367307	8.64680451038592	8.64853767722627	8.98361571624534	8.88879269395415
+"GOLGB1"	8.91814373699467	8.55313132914391	8.64656011065683	8.04962258588187	8.52729097680945	8.41654506480784	7.74862118461789	8.45524919896815	8.40476213474601	8.74087668898266	8.65600772576488	8.79742780941494	7.88369471400182	8.15267801808648	8.21689097354966	8.90371043380464	8.4387765063306	8.73208500175194	8.46046304767708	8.85951175302289	8.76859474655723
+"GOLIM4"	8.85288501385266	9.05229582249962	8.79956033245247	9.18290394697216	8.56843181651097	7.54143714327149	9.07823669052302	9.2718768051055	8.72835278385792	8.43519391033124	9.90876920605177	8.68927388624002	9.43359970688836	8.65173191690868	9.3389091502258	8.53372539265931	8.80321031621414	8.51107357330638	9.00924417512377	8.37127222994963	8.55777587137104
+"GOLM1"	10.0410112519466	9.58801216068536	9.56864229422193	9.50764397101747	9.27305351005547	7.95515494951355	9.62357223668415	9.829205985072	9.89654712497753	9.66022654231116	9.66716096611184	9.56842433763771	9.31918066618603	9.24930534267385	9.52186098459053	8.84020957975873	9.3666488574789	9.06546466218195	9.44093194419853	9.60139664841785	9.25944795608789
+"GOLM2"	7.29092321174489	7.31246337857232	7.08295254038955	7.23333396374376	6.67645337092781	7.17341583267861	7.17581795452755	7.75359758717221	6.84083382896124	6.77088912974291	7.20299994955822	7.34783152994612	7.32427420899126	7.22145939663037	7.50444199067423	6.93359898620849	7.22438985980757	7.06623002138242	7.3617193974892	6.77746977900927	6.71141277538425
+"GOLPH3"	9.48143986207701	9.28675641023436	9.26467838857877	9.67411897906686	9.38488912542692	9.47469151261111	9.3002775013005	9.65303384344836	9.66627713904216	9.42011571681109	9.46075663262291	9.17286188738514	9.83590270536476	9.40412937139714	9.67518627038072	9.26456864979498	9.5727111734034	9.58121350354678	9.51769063865359	9.12520197919605	9.41116759703836
+"GOLPH3-DT"	7.05817303443216	6.84377359403695	7.14859220917418	6.58383014394144	7.4567312311852	7.34508476714165	6.77370132865185	7.04360172365773	6.72694761218238	6.98919970845381	7.11057823454536	6.92007119124133	6.77848971202247	6.87635831242264	6.78633977495698	6.93184105529155	6.91446505014557	7.52739658605346	6.62874649919037	7.05395028346021	6.6960851556251
+"GOLPH3L"	8.54827058342598	8.04874468804768	8.24679651480598	8.39349742953739	8.42357314695188	8.00413581129684	7.95566662382779	8.28624101367784	8.47286070659658	8.24229591120592	7.78371330215474	8.03101555249154	8.22490309616321	7.98514725679144	8.68681112363124	8.0669961389318	8.1438924881536	8.13323481512146	8.37193565088092	8.39736604339296	8.11579838623629
+"GOLT1A"	4.71090736743121	4.74434990473406	4.82538998452478	4.76525358957537	5.18782225164413	4.946646117848	5.08052538773411	4.61738986277418	4.57213321485592	4.77090449992409	4.46599816788169	4.54859575993328	4.79207724718548	4.80153172839094	4.62958536927222	4.86986392122983	4.74434990473406	4.33701107284354	4.8209705723507	5.01653724386525	4.72349764154386
+"GOLT1B"	7.07838369381606	7.49139282241446	7.12885527027867	6.80572923016785	7.72152926046634	6.60654896801771	6.2791070029058	7.55098433567852	6.61199328951794	7.2377895033824	7.38211074835513	7.36347468753855	6.77643519189656	6.26406751655165	6.81673629417316	7.5739466073917	7.24765609780756	7.81187338352562	7.0073416176829	7.25024356738156	7.44730216151989
+"GON4L"	6.85753420986697	6.93249793007217	7.47608812782785	6.9011890944875	7.24075738863983	7.85147244070226	6.79967404661922	7.19444381853677	7.20305217531293	6.78675695535887	7.06262604145769	6.96881580828932	7.14297600290151	7.46499740303476	6.94842771664723	6.6179562643545	6.61159531055458	6.75992420876653	6.78331224141729	7.05805491640291	6.41272476421522
+"GOPC"	6.76905441432188	6.71824969846691	5.9109231928671	6.48570558078007	6.88794787751089	5.76076473795883	6.17693193744736	6.45185519092464	6.08622119414759	6.80226100565551	6.86460751511979	6.86142078259285	6.07125278706941	5.85899317344183	6.04566898624723	7.04928534983861	6.63841058339799	7.21438691666188	6.58472767404505	6.69582889658963	7.3227223129495
+"GORAB"	6.32805666761681	6.18684277643912	6.29497695331951	6.20822715390069	6.19593655628843	5.80593849673427	5.65562813578991	6.15678504225305	6.14531752498882	5.88534589461959	6.66715450382643	5.46505280341585	5.87672750427741	5.86513353400637	6.65239031837874	6.21147039600279	5.84534416890068	6.22619955772884	6.39361626090003	5.92871448048635	5.84696599012514
+"GORASP1"	9.1756844470124	8.70756413061442	8.95213501523113	8.45280572229808	8.6068243912461	8.6068243912461	8.61002262040979	8.42113362137923	8.51821217217771	8.55724971803934	9.04768976703044	8.49180326423316	8.23505183711584	8.61280329588255	8.54427750092794	8.94629758511558	8.44769892116954	8.86337491076963	8.60297145747421	8.80430736423515	8.42894323658142
+"GORASP2"	9.4576101702405	9.23506985252367	9.01239598291637	9.10605933847853	9.4131455296945	8.75254801223715	9.11689911448049	9.03057599733818	9.10238703576452	9.55583339703849	9.43835323294163	9.32257552850397	8.9546559081456	8.81064952016138	8.94924862927372	9.68159974622945	9.12175132551126	9.66837303097487	9.06950757465662	9.47443926824816	9.36964891995276
+"GOSR1"	8.01117067318808	7.91406571608329	7.6982726481232	7.59262207169009	7.69916042539788	6.90638709247799	7.35648056056556	8.00176959114435	7.3142689985441	7.61895472202694	7.96047871953022	7.66954013339027	7.5064107010069	7.12805050580908	7.76079898933892	7.96933313843993	7.4311176637222	8.03945741993851	7.55176519568192	7.80971748561957	7.81301894119989
+"GOSR2"	7.79273178055375	7.58357654902623	7.23094165200893	7.28117479986904	7.25579745387658	6.85979910539572	7.16139953686354	7.16863134834033	6.98547745939058	7.55380066737583	7.50583237732643	7.37688142801341	6.84667613720847	6.94896508002359	7.0245478816755	7.71404734075662	7.06943624626484	7.4788672283828	6.87454432148369	7.7786877540895	7.49455932394409
+"GOT1"	8.65952884424369	9.52032453622861	9.93426990565117	9.47212299425315	10.8083675969813	9.2471575402568	8.76804698875288	9.48258630972837	9.58121257700103	10.8117595659916	9.2977349526166	10.4437885931754	9.72036068121388	8.82064066851521	9.50401157262348	9.73383274194535	10.2629005973271	10.0544321791782	9.66119517231815	10.8443352885757	10.8025237193492
+"GOT2"	9.84440553528348	10.1615948576974	10.3658627574274	10.199044730313	10.6574744965918	10.3057146930106	9.43810946824775	10.0210545509028	10.3201551563071	10.8419475332457	10.0456477519795	10.6151535397482	10.1371715549566	9.81272194402545	10.2744780077752	10.2637937553478	10.5843885107593	10.549738052261	10.1975189381602	10.7131940593078	10.7127921078746
+"GOT2P1"	4.90461233833353	4.97262367852321	4.82622414043519	5.14510208336765	5.01902346319873	4.85800009892438	5.43604477956549	4.99169548668545	5.01564526934405	5.12716813262662	4.68485308502051	5.18572128860119	5.09185005310424	5.02586049203768	4.73761479324622	5.05108585361328	5.01202430697492	4.81006842392847	4.99169548668545	4.95963126652045	5.12578274142812
+"GP1BA"	5.70800672976505	5.91244139139105	5.59607886713419	5.94797355641024	5.61012408248332	5.66418913637926	5.79392228242668	5.51421451956777	5.84194113314376	5.64063845855836	5.76438969243037	5.53429568164947	5.71646579397137	5.73463951300979	5.96574211449669	6.0952238337312	5.85832730446383	5.48947949437491	5.73843186413752	5.68327633928796	5.82044835985698
+"GP2"	4.83946100165054	5.00085833622707	5.22096399960128	5.10617785471953	4.67348642517431	5.32379703643902	5.55890411844152	4.88672086929386	5.40317206171432	5.15979493665458	4.69918315688667	4.84028416161498	5.42098090485075	5.14574920546087	5.12371087098587	4.92605320867037	4.87948456755777	5.05066208717926	5.2870296530428	4.98562281697558	5.08771697782503
+"GP5"	3.59554827755661	3.60771598139718	3.77861852541688	3.66522118064057	3.62160727492543	3.99498166585469	3.71695689730064	3.66895355564273	3.28363928194075	3.55434519999239	3.31815073440857	3.48234136693939	3.85839057979119	3.90443390982076	3.41580776837164	3.45207609705226	3.5921739170254	3.44131646067121	3.58663220075966	3.53337304681611	3.48589797208618
+"GP6-AS1"	5.60879954241865	5.51057980358149	5.63282737911643	5.34537023472028	5.38779115195023	5.38811565684949	5.63282737911643	5.71011156651643	5.67593138489352	5.79978556339713	5.63059946066044	5.72757420727343	5.98264434667418	5.62927408177653	5.47390323137484	5.93560929253937	5.7393551224286	5.41603826822172	5.83934304630813	5.38516631965622	5.71888658038436
+"GP9"	5.96241504681924	5.93521903500455	5.93904691734173	6.08361367529484	5.91307160027746	6.08361367529484	6.56830507895123	5.99468880061264	6.38680627587525	6.15476639514419	6.00348579582065	6.132935609095	6.12220161081894	6.18865963665393	6.07854110773496	5.92029666423796	5.96255851764441	5.90396011585878	6.27619457192542	6.27762668648088	6.02664533017017
+"GPA33"	6.28632093199404	6.3910987297918	6.33729837796895	6.59587810871634	6.52070963520178	6.22541656585417	6.38150194733805	6.35335605664554	6.58159117255492	6.3309102922255	6.1999157819515	6.45274537827551	6.35335605664554	6.48583228849031	6.51376179089474	6.52530592512193	6.45358834278808	6.06569546821877	6.32020022065501	6.31988360910253	6.65843549343887
+"GPAA1"	9.45132928550182	9.03475029488393	9.18972454359812	8.57736906786581	9.24071891838155	8.88984745543283	8.71275764027898	8.94776775446369	8.80480261629813	9.28874656227974	9.17105711745642	9.0605600283531	8.5200962406357	8.69503918213285	8.57211192731712	9.26198733455199	8.84233922357641	9.41350629016537	8.75127394211518	9.38617468382011	9.14369671809472
+"GPALPP1"	7.74666846812241	8.46421546184928	8.66924421136977	8.27167951785316	8.80721837883866	7.7924171303063	7.41878723692294	8.29907864353763	8.34543279722403	8.35907050353906	8.57813461783172	8.72642160906823	7.60825023874036	7.54150539374581	8.11030304798711	8.6366330081426	8.45442397545556	8.66552067173871	8.26349005335719	8.38105433681043	8.2103165935337
+"GPAM"	8.15627009867711	7.5767555011942	7.54219049549753	7.31633145198568	7.12657588732329	5.1721624048394	7.88381943026921	7.46959470316332	7.16470354165208	7.00467799444885	7.27129780307389	6.78904595872082	6.4590569021492	7.17871555948633	7.37529220437885	7.44355460929229	7.26460461935961	7.71801599661295	7.43736079766681	7.21181012230388	6.87116488958387
+"GPAT3"	4.19890618983072	4.39728400844499	4.67569487082649	4.39207618526612	5.09332922274616	4.49599200367939	4.66205161796421	4.57512919121534	4.79469869288041	4.82691617966278	4.0924586129407	4.69765708530374	5.20786836643383	4.56291299538131	5.2044746799874	4.29686989039258	5.14695630389143	4.67569487082649	4.11164731102428	4.739936711822	5.28503956390535
+"GPAT4"	7.36159475926161	7.23704372832392	7.34029490613693	7.09773210076399	7.32369927143859	7.53579428805782	7.59455533953981	7.08465845894351	7.38521532933061	7.24567152600285	6.96446107193172	7.26806329691466	7.32971540872344	7.35224283993385	7.56336354900511	7.10315296318578	7.27520337179947	7.15836354590719	7.16970540138869	7.44012601548007	7.1135328627959
+"GPATCH1"	6.94006117611686	7.03333607541931	7.43569300516276	6.64604996519321	7.39183253973508	7.08067309371123	6.70184503480271	6.87454432148369	7.00514024639664	6.72827105071864	6.93193539437146	6.65342362760494	6.96398174684168	6.67653558617265	6.89501752167693	6.9181198604143	6.91392763776182	7.45868653963199	6.9271379328196	6.96750264809739	6.69604086027893
+"GPATCH11"	8.2263865865225	7.86466261317866	8.19691594894809	8.04486820664021	8.3133879657183	7.8048341937816	7.89250214143584	7.94083630569906	8.20629211708681	8.30534649965953	8.09806428737231	8.1740502437555	8.03213581248676	7.77210649499392	8.02198916331115	8.34759360104263	8.0111549262844	8.29571417078949	8.41761792989902	8.10167795506424	8.1700806634301
+"GPATCH2"	6.14891120257577	6.61268874038642	7.0934592881929	5.89864423643538	6.39487517988831	6.66440762897393	5.47430380607713	6.74270582820744	5.83020526195617	6.25530383678621	6.28940538934796	6.39943321785954	6.09221885564847	5.79976601284619	5.64508586291976	6.06112076137966	6.19335095374401	6.0700002734358	5.72860102202732	6.28470274874526	6.10486034336993
+"GPATCH2L"	6.58791393499304	6.50030133404942	5.72701520811255	5.52709528988894	6.04579582264446	5.466861289853	5.98916036655074	6.31039912816512	5.40484620375497	5.97998994351436	6.45272352455471	6.28219022539381	5.43805129805181	5.90160296040778	5.68779257037693	6.66344761794393	6.11568683199032	6.16940310639664	6.06012200524999	6.19691138192771	6.02615801287673
+"GPATCH3"	7.22803215038153	7.38249425628069	7.48747330440911	7.42247208749346	7.50543884915989	7.47103363064247	7.45582954229074	6.89260563645279	7.15983158180909	7.4500295048774	7.25860408112776	7.27456062886626	7.18214037133615	7.27456062886626	6.84836115139742	7.58147237754013	7.11554085140586	7.34848847194571	7.16269636032932	7.41385667493559	7.26358496995697
+"GPATCH8"	9.42238419835968	9.5084748554052	9.45556451258111	9.5330987434206	9.23304289327234	10.1955847915527	9.3990664753193	9.65655572113972	9.45162269468251	9.11127585125619	9.40941453208032	9.34493834982221	9.70774926067796	10.159651574643	9.55797301949094	8.87559471141269	9.17437179778465	8.76224118155056	9.29288344194217	9.06705335252247	9.04698307428747
+"GPBAR1"	6.15201804412003	6.35284404918727	6.19385002616821	6.59668437467215	6.34419128646182	6.30109206613383	6.40787855118129	6.30284725629726	6.55606380455134	6.36518168044999	6.33130566717196	6.32478585837048	6.56288113239111	6.68349770939339	6.42223207328499	6.35062538692538	6.31429396779173	5.9721574541798	6.3452751785007	6.18003231930784	6.48188877722049
+"GPBP1"	9.53465938213418	9.6384725025584	9.57693814770569	9.60380482722513	9.57846572756364	9.0747867916585	8.87929961783333	9.93748089534446	9.46693862442941	9.5490629744547	9.96561130636494	9.70510403942234	9.70499132891489	9.14665727345635	9.74995946392659	9.99687921104653	9.51493081973634	9.84288837822499	10.0036683427945	9.52070088398368	9.48186713682232
+"GPBP1L1"	6.61627160306969	6.40569883382419	5.47512300236073	6.28966129855251	5.66924473452819	5.58297538872299	5.7854645203528	6.33261795774726	6.21517969344655	5.61115891781354	6.54396354962339	6.12606393889029	5.98611777046716	5.7662511083396	6.18254639211801	6.52527544407943	6.23809928469626	6.21329659479243	6.34832679745309	5.99745463890557	6.13948119021575
+"GPC1"	7.45693811603606	7.59288461482241	7.86503948158989	6.94194871363011	7.31893820947969	6.90379045703929	7.11633869749857	7.11249868367728	7.36955664487811	7.64808297504835	7.71494165271205	7.78711060170657	7.25209839231064	7.06666761084124	6.95482136747765	7.2779605047288	7.26386182780701	7.31819218195785	7.02270801509116	7.6214018738027	7.78140751186294
+"GPC1-AS1"	4.00583460781281	4.34173255468739	4.95818262788632	4.94936370266715	4.23853450414859	4.80494067260477	5.19512355560165	4.78477807835724	4.49665310682498	4.49665310682498	4.16311412136377	4.77530660240406	4.96169248216112	4.38728200579714	4.99222249485161	4.3931757189437	4.26981866955206	4.34829953467608	4.42457227634127	4.57393749226798	4.37146118897855
+"GPC2"	5.94230145842158	6.51134029087333	6.69664909588194	6.71434745501662	6.39489195628297	7.1463199237383	7.39032393475074	6.45589289407471	6.76408704420299	6.6430462135758	6.49118793684738	6.68698545102185	6.80358920485084	6.96586459562706	6.70581991670992	6.49605758556831	6.61431019367756	6.23258161871234	6.95518053873364	6.62699680781584	6.50228049060064
+"GPC3"	4.83561323689634	4.83464703255128	4.57512919121534	4.8377073042884	4.58522345519294	4.87173189549545	5.12746650795198	4.76670221912289	4.62043826607746	4.8894409639251	4.79021226893947	4.98200908134609	5.13582603678208	5.06675430027169	4.75329842406749	4.97075099195059	4.70951591390661	4.76763333055349	4.52983841418747	5.41775124115574	4.7305650919691
+"GPC3-AS1"	5.50226667477365	5.4205152597258	5.56035088690433	5.64684968262065	5.50826086947234	6.07837792720287	5.73211262792699	5.38447389254706	5.63159362502552	5.4041364068794	5.37191895618168	5.61588684100422	5.7003453719361	5.63458160787447	5.58075786604552	5.40708410570392	5.58149924278408	5.09756612203895	5.58872898328767	5.41931909605709	5.64688556113046
+"GPC4"	7.45870089145003	6.28754217861548	5.90907725397982	6.02925893679691	6.17065018943796	5.58220907364688	6.20607693654129	6.18153484959242	6.26362978201014	6.80687791242883	6.67654712921	5.92915902212734	5.84750520649625	6.09470636228604	5.56537928932293	6.35430717119677	6.07537891467464	6.20076218189107	5.97466365134723	6.30563521106612	5.6170500104204
+"GPC5"	8.37336870479634	8.7853695685588	8.0425818593158	7.94577133927113	8.2759312450647	6.63133030170361	8.28970471446272	8.68485353517114	7.87729469609242	7.45674688215153	7.72925767974595	7.26788922438552	7.44733062040791	7.58570131997936	7.45493566485988	7.70400871092517	7.98594961326422	7.81992512986126	7.18816940015704	7.72925767974595	7.40000243193788
+"GPC6"	5.433141540865	5.75420286008221	5.55586083775637	5.36388836077629	5.52416905712199	5.52588705915711	5.43604477956549	5.50177149798934	5.44792748250941	5.55244116674947	5.68196545104509	5.66299527760378	5.42378777014852	5.23198291082055	5.28437882898049	6.08361367529484	5.58183555737664	6.14855065433811	5.91310680158446	6.63365147772473	5.31621365425127
+"GPCPD1"	7.54365530143866	8.75800369668162	7.58386867581359	6.42272823073442	7.51039317622893	6.07517286936518	6.04218834063393	7.44620972940512	6.04141787317846	6.81025915543282	8.62190957329631	7.45655604101314	6.51127699514774	6.54146808189856	6.30785514298978	7.71894773859858	7.04029151883567	7.38909493360749	6.77995052807834	7.3671459742934	7.55497963497683
+"GPD1"	5.33501732141223	6.25402869486299	6.11890695579784	5.30096461982389	6.00201237166958	5.73483422263635	6.13190403871166	5.54873511897585	5.67593138489352	6.00195798085162	7.00337354833142	5.78144960622845	5.81182792585834	5.90397552368548	5.38295579866584	7.29598903867181	5.75742622245382	6.38336203617476	5.89217746278076	5.82834998911816	6.38656357716259
+"GPD1L"	9.34929644228632	9.63752400198473	10.0858551567069	9.63413073357405	10.1793884003655	9.72877435466416	8.99440830139669	9.48548316971264	10.1701536117632	10.1113053886024	9.49869818142725	9.9954198584759	9.76251084557165	9.2340220137462	9.81481857413298	9.55334736037335	10.0371819166009	10.0010427002407	9.92862240643107	10.1633309490144	9.889356222472
+"GPD2"	6.66397541855466	7.02924212242126	5.33252546064097	6.69520776035304	6.48659855365978	5.13307678835744	6.57328736741725	7.68637873057044	6.32598084958351	6.83211471138347	6.82060556848298	7.11277781805478	5.86212134899165	5.83339781745404	5.90547299720365	6.15180250063975	6.76594788297909	6.39566276632267	6.69572452944187	6.72800370118402	6.24133430969982
+"GPER1"	8.41596397525758	7.14555102594152	7.14102488836954	6.93859753388633	7.09557845787815	8.31326533850592	8.11228520506839	6.5471242286257	7.52704310971823	7.37219280408716	6.93444546108487	5.95088774652466	7.9065326519461	8.25005650916408	7.62639193423084	6.10622802405828	7.12316993459832	6.71458861909473	6.64942964815253	7.16154255744984	7.03275956370947
+"GPHA2"	6.00438108944225	6.02787903914022	5.88746858779651	6.09988031503569	6.13537251119074	5.99204463594116	5.99809674914715	6.03599333231943	6.02787903914022	5.97556830268242	5.8087190361665	6.10948888518843	6.28675963893776	6.26539568129538	6.03319279848986	6.0530818408953	6.02646158990904	5.72171544099857	6.09694229749322	5.95083239578432	6.0535469487772
+"GPHB5"	4.95492741519438	5.12593684319866	5.07505530356135	5.38548377779694	5.21815394863081	5.02504661181298	5.59916628080017	5.22025635773318	5.47921723595269	5.18509396769769	5.18339141974237	5.28167345536798	5.69575914466269	5.40408385263089	5.22025635773318	5.09858864690391	5.41814189924412	4.72083029964895	5.3173069175982	5.15854066288928	5.05610499014228
+"GPHN"	8.12125641048101	8.42068779952884	8.17162442531873	7.83769418454175	8.57013943035795	7.42935272939139	7.2210707769658	8.51419628676359	7.92961446067355	8.51383449593403	8.06576565163878	8.84965372237399	7.00466642928584	7.36017703138964	7.27661160579406	8.38075104120739	8.32532548256004	8.52965376401454	7.86404158421448	8.68398925838827	8.34442217118064
+"GPI"	10.3347057706066	10.8523518605599	11.2618977854288	10.8050416110949	11.4008209655356	10.917191550598	10.0858673767664	10.8848194588445	10.7756822735923	11.4801620220029	10.4271872950922	11.3886108728723	10.7932018604423	10.2295097283091	10.5145400113439	10.7458851480871	11.1564402834735	10.8523518605599	10.6053875328845	11.6759696276187	11.3412756732111
+"GPIHBP1"	8.18425616051101	7.92426720314476	7.39216117481683	8.28095691709795	7.70171146727385	8.66846512062702	7.76700820438221	7.60830799205904	7.03360870722512	7.56007404881662	8.1887766696601	7.25798786345736	7.15223540736674	8.58837934229918	7.14891150806998	9.62850851778014	7.75870966970657	9.27286606081123	8.28894920222098	7.05797216434437	7.73113064842831
+"GPLD1"	5.63282737911643	7.50153986246054	7.83573438991464	6.38414121074221	7.66919426277396	6.60645356710013	5.6075342876652	5.9127850822079	6.18616188897194	6.87950405018132	7.08954679982854	6.87175657379271	6.30262998079606	5.98020269817631	6.01909914472569	5.96663508937002	6.81159728593562	7.07244629667443	6.28405444144244	6.39102785606035	6.83598159702431
+"GPM6A"	9.76704065921435	10.4612420698067	11.5209109101826	10.1834066660548	10.5882883491542	10.1944960294691	9.68199729526795	9.90916734573602	10.0529321035571	10.419563996168	9.80609475093414	10.8914872714401	9.90464180761858	9.85714002079082	10.2192177274174	9.57185451095985	10.5190145750455	9.97725629353322	10.562936750453	10.5771554395507	10.1567972304015
+"GPM6A-DT"	3.52886242174029	3.6225076800359	3.42947199120781	3.81863438193044	3.69606840566671	3.38188322976906	3.70034397628044	3.52327584379561	3.61377047390312	3.67741392319956	3.49864389351871	3.65020534126552	3.78600705539609	3.65372723830539	3.78157962030617	3.81474210124194	3.64355885982599	3.31883385354353	3.79187902794296	3.51320479429197	3.7167302971569
+"GPM6B"	11.2655137610507	11.3999004445467	10.7937332753017	11.2005229092162	10.8200286637516	10.2602133403846	10.8120195850707	11.2920560615581	10.848059973461	11.0070354430919	11.7108457053134	11.0563073034935	10.7413268095875	10.4755496508667	10.8894337682614	11.6299520339479	11.1007969089096	11.7025338374642	11.19590478103	10.6291453200663	10.6346538270847
+"GPN1"	8.51604895091968	8.29278952060019	8.77056612036376	8.20938396967717	8.59035807518444	8.08020575881673	8.37092159888918	8.50076785958817	8.37330661045936	8.5768903416871	8.19260031984805	8.40095484723444	8.39315159192279	8.19532697704208	8.45304633756751	8.5288558751965	8.32976932547641	8.50789773897618	8.59480459903733	8.82754307421348	8.44673030334944
+"GPN2"	6.69498843814381	6.72485782082315	7.36195610022975	6.56485595458484	7.19739384780881	6.95671605455579	6.27057712549874	7.0422518934302	6.51762184950932	6.81561838249233	6.69111573077467	6.87539213749654	6.17266967204603	6.46075263887731	6.43461522279955	6.87980403148404	6.64476287889671	6.96542168482461	6.21012192179644	6.95142864078779	6.74658027519536
+"GPN3"	7.44037253579789	7.47234760488779	7.21635344415181	7.36740739481799	7.52582414659399	6.94846171137551	6.98679627275394	7.66963310669957	7.2015490249548	7.31509712278742	7.47490171475931	7.26389383916396	7.18442194979682	7.04979495046225	7.17072655056369	7.69851396954192	7.27186193659355	7.94171235073384	7.53331904391804	7.43370470735161	7.31337044443014
+"GPNMB"	8.69685969428617	8.83457371950047	8.45082875650843	7.40164392433139	8.30489526354192	9.2612975899079	10.1156886413725	9.18097692479745	8.90978474552772	9.04395397234821	8.82193249841037	7.67851746044424	10.1879679132513	9.35877922792604	8.42290888009805	8.31332790244087	9.27167838792569	6.67565246911126	9.92333657303971	9.13949897445677	7.71707180105443
+"GPR101"	5.15657133751976	5.19038611115932	4.86510989757525	5.38509475093972	5.06794907160597	5.01018005917149	5.39112004585967	5.3547777983693	5.50076182085259	5.40014839279518	5.15054886489327	5.14280668051185	5.38756726384969	5.30077041877248	5.46907889682561	5.21284196428619	5.29561146810749	4.73895199063255	5.57383746222049	5.21832296557845	5.56100562338192
+"GPR107"	6.3605255450548	6.48470122336632	6.39895132503548	6.1503633025215	6.43438685093032	6.12370689831956	6.2054252346502	6.39017128074461	5.95680711984977	6.59427658631997	6.46814793417784	6.31688145576524	6.18438029182149	5.82467159319811	6.05145383347973	7.14046209242583	6.31688145576524	6.54342857511742	6.06454671132934	6.34793035685327	6.20775241245459
+"GPR108"	8.95377515224642	8.69001709186445	8.55258644710683	8.57799134505542	8.66810662087177	9.20192149008243	8.99449299981832	8.68488331653961	8.64609329689205	8.85662129047436	8.71988092516074	8.28168245359379	8.72394238446056	9.02012555636511	8.77283134079013	8.73155873777208	8.68412737397274	8.55720634072885	8.67894382323317	8.67648242234684	8.62687341092208
+"GPR12"	4.60539684586932	5.05774205998607	5.23045797676844	5.45340749025088	6.25523815493032	5.32379942240844	5.16560683217579	5.08092358064515	5.90169914403269	6.44940068033943	4.89333597720716	6.25043127851023	5.29391459874415	5.4984489830654	5.51058768790857	5.67138754418099	6.07101358409548	5.75184221135929	5.67461059957541	6.47295217252439	6.41002995833761
+"GPR132"	4.32835337127967	4.44525131224633	4.45936987494717	4.56518417673811	4.52025120996881	4.89740901998616	4.95430042933294	4.49023211477911	4.73685417520337	4.73397719922534	4.41542752101796	4.57512919121534	4.46454344846159	4.50479667546601	4.50479667546601	4.70367300697419	4.63459791735433	4.34921545494278	4.68926113014719	4.67732844309524	4.73397719922534
+"GPR135"	5.59574970318966	5.97893356557539	6.05020551004862	5.76500536145535	5.70617184970918	6.04857143258478	5.92349618872986	5.59839235843027	5.94223174569107	5.70756917471724	5.69251473007206	6.21610355836832	5.49951607396834	5.64006036417053	5.65844575813095	5.52979812677486	5.76500536145535	5.520989653945	5.4174919755675	6.22619955772884	5.84748040767806
+"GPR137"	8.44633178661812	8.48974154345617	8.44101994732739	8.71549578774401	8.55990117943846	8.90738638457682	9.31051848620549	8.4318216921724	8.69295425420132	8.7749640438845	8.38879918917255	8.55406408820772	8.96332629982353	8.99403641766875	8.64080265706163	8.38896607827829	8.76718052496798	8.45358978202599	8.66743869380808	8.70013508040272	8.67451979244018
+"GPR137B"	9.26367479555972	8.75582972166543	8.67630605603807	8.47290968181552	8.57507135950939	6.97158215415057	9.25580105491946	9.1887809246803	8.53961344081646	8.06261439980548	8.87061490613075	7.9727278446016	8.02361948966513	7.83894229865174	8.28494199474822	8.58899181841645	8.27098193831625	8.63689776119153	8.46789927599864	8.38480710754589	8.00278318358501
+"GPR137C"	4.5298064231025	5.50200671686876	5.30357448979567	5.4630367451976	6.05040346793095	5.08700096261646	3.95961254958858	5.69815875395903	5.25255474757163	5.63997653514785	5.28754642578725	5.79063332826196	5.14742468693618	4.13651187848841	5.37682447631082	6.55184830923929	5.7662511083396	6.32073627918247	5.6168893532213	5.60367277505192	6.14323615141207
+"GPR143"	6.77962425250925	6.67913941468945	6.6528473374998	6.23557980679023	6.60907458707162	6.12030220100893	7.26464513660512	6.98605205729031	6.51278282463738	6.29253703460405	6.98735640751757	6.2663863118461	6.35835656592501	5.97525317783538	5.91288822174316	6.40204000784053	6.56586572384563	6.40968088579842	6.36715305534594	6.90381210851592	6.30157862707094
+"GPR146"	8.23833752671882	6.6878436780404	6.81108684415125	6.93464674237931	6.47867308711568	7.91886022727109	7.93475937059096	6.96674470758999	6.69991150809636	6.90237709266814	6.84914648052151	6.1688142938685	7.38169885909152	7.64033618469848	7.28096678663381	6.82024377741073	7.08619999770295	7.33466504233514	6.95728938375429	6.86750141252808	6.39724854507753
+"GPR15"	4.88282432653876	5.23104748782481	4.93164126322453	4.99257556117408	5.04174860199602	4.82337654083467	5.16570182379802	5.14191741243921	5.15803573122846	4.96927846255724	5.02000071536441	4.95990270283733	5.19892674655405	5.09478735869083	5.16219999630226	5.27719087517683	5.05216214850016	4.99107398222019	4.94742361195915	5.02000071536441	4.99695643229299
+"GPR153"	8.08926216892351	8.0124218428853	8.28015767539227	8.28004723712866	7.8536679676201	8.24520524924827	8.58186485144939	8.11860515145896	8.43571714030466	7.96250146756563	7.55353312286031	8.09117178211902	8.484731561113	8.3914637439486	8.37628133565953	7.76577753524326	8.05126476376218	7.5940507258987	8.20585914840636	8.09117178211902	7.89447677970312
+"GPR155"	6.82417004817703	7.49064358136708	7.70346367342525	8.14501866675449	7.85475811652112	7.5587224219536	6.49714747876457	7.70701589472896	7.82261555362475	7.42326239276769	7.44311305843133	7.74539491569573	8.26989348812975	7.58090640962857	7.92888164061897	6.85732549035744	7.83293397607414	7.19398305355306	7.61575457105655	7.14446814758614	7.50705174353003
+"GPR156"	6.96016453008305	7.16998627866397	7.1927383738197	7.30931291792041	7.28500696010891	7.05970661984533	7.22862263824163	7.05132501163614	7.15363646271863	7.20003738743353	7.16064872174636	7.2271318730237	7.3227240521772	7.33571593576034	7.1925962792746	7.34132952985873	7.2077215792891	6.80582188772572	7.42994194795812	7.1927383738197	7.1927383738197
+"GPR157"	6.03135542396196	6.0542541454193	5.95763679420063	5.8668976310647	6.16293201037969	6.0542541454193	6.09938957424176	6.12260502781571	5.75984524483965	6.1280081481155	5.72427031465423	5.8730259476857	6.2699908721098	6.07212913120398	6.0542541454193	6.0542541454193	5.99616308631791	5.87994937446408	6.01077585459119	6.0106476423739	6.07071247142937
+"GPR158"	8.19878692639267	10.0407452456214	10.4376162406812	9.46911037631372	10.4980267060596	9.44110140291788	8.31841201508144	9.57138167726471	9.91826731068627	10.1387262093382	8.87217964498881	10.1856499811566	9.62046166116484	8.80692045853115	10.0323072715676	9.59817715014344	10.3054697462148	9.77016160214503	9.88460154491342	10.3091315532769	10.1969738825131
+"GPR15LG"	4.83854779981757	4.91052200259465	5.06957779141246	5.45275203932616	5.22229676018768	5.46112546871353	5.02911786542874	4.67896232848414	5.00669255295135	5.16849464468766	4.83776281316187	5.07227751002577	4.94324506132927	5.18349180116259	5.0214738148365	5.02911786542874	4.98456775317864	4.85177986377217	4.96477060546513	4.86470955470563	5.07256419422863
+"GPR160"	5.67068043607547	5.10728350751556	4.34704666551136	5.01147894228009	4.97078882060694	4.35612372227114	4.33682396731155	5.61042095187124	5.07137870579657	4.85346740920597	4.69911714933581	4.40711961151263	4.68315709787156	4.78615855867484	5.07132118929217	4.76707049744592	4.808061366766	4.85346740920597	4.69747191739447	5.22394398944414	5.31649427670197
+"GPR161"	7.43717454734086	6.8135542779583	7.30878947136668	7.07403641288011	6.95294578387563	7.09813343496355	7.41190900581682	7.45155258891803	7.06287985534448	7.05224635229932	6.9165051315067	7.09458216397847	7.25396790884929	7.44583120828423	7.09106889400466	6.76187001312227	6.9250605333593	6.83786166456834	6.60932285270717	7.33698208799952	6.65817080576448
+"GPR162"	7.74553970207109	7.8987127300056	8.29311654384994	8.04754510406127	8.13225574239861	8.31291307150206	8.19469265674339	8.10157015270866	8.39135635524994	8.10157015270866	7.5329137446867	8.22503282371794	8.31150580651226	8.00069675295112	8.12707774095759	7.29632172870072	8.10157015270866	7.52476005507136	8.18655725715937	8.19455248617123	8.08652964804994
+"GPR17"	6.95371336136924	7.03108848402839	7.35080041422902	6.93560322027913	6.39930939352326	7.85240302458634	7.80380665527141	5.62226809130431	6.63675183822682	5.96228722742972	7.17849313377181	5.61986640400556	7.85163085841111	7.18948670579876	7.12220583405343	7.77988381804596	5.71084551081209	7.284851443414	5.98434106048556	6.52200230396781	5.53147984400162
+"GPR171"	3.84099812444391	3.65950391218412	3.95123680370738	3.97220253708288	3.70791588310641	4.31399792748652	4.05623513438186	3.6542419919925	4.26801790364412	3.8612331406468	4.08909870428282	3.71666267468141	4.0570275675878	4.10780975927116	3.74326166803952	4.19900039010788	3.80417622168415	3.38225560398155	3.88509171534632	3.79327117151041	3.98145973647946
+"GPR173"	5.27365135467927	5.29347968145021	4.58799899666624	5.54026115293007	5.49725541873551	5.04606358466993	5.39519638666391	5.54648153046954	5.35547940819963	5.96219283553418	5.48616837611794	5.94377427632208	5.34364553138729	4.99116853750123	4.90657076610944	6.13976453505644	5.69310859035134	5.31914896630886	5.48616837611794	5.92050243237059	5.76392655498018
+"GPR174"	3.49315941491499	3.7300145389108	3.76226279812328	3.87737547726531	3.65731078250589	3.75595881608825	4.20015002458678	3.7300145389108	3.86230995944448	3.55917318029411	3.46924752939726	3.83321894473657	3.7300145389108	3.7300145389108	3.80154494689759	3.86042807148151	3.70491616372413	3.2790407765974	3.84862173408011	3.7300145389108	3.7300145389108
+"GPR176"	6.59923174991735	6.35678145427954	6.03165844406768	6.33493282051742	6.70054903097373	6.00833968517577	5.91684574093793	6.26512440912941	6.7830751388538	7.18709339079816	6.19085235819008	6.98195098358148	6.09872038472331	6.01341557589195	6.08650397335666	6.59626683065434	6.89774138690247	6.0580826474935	6.7138335472251	7.79960035454307	7.51626217619133
+"GPR176-DT"	3.33375006551717	3.46540434147523	3.5864811418431	3.57704594273175	3.39194169068145	3.70831173079615	3.53776538480657	3.3484697289378	3.64321903661049	3.53099622678431	3.23460328434004	3.61687649595563	3.47565261977345	3.55276001996412	3.65653059714466	3.44077466707162	3.53776538480657	3.53776538480657	3.85413542492127	3.54160418022693	3.3024339101175
+"GPR18"	3.5985855354401	3.5985855354401	3.58019272176181	3.50585739094501	3.65770091269407	3.82928536685665	3.5985855354401	3.62210350962799	3.81106873037688	3.39139237458036	3.62589837570552	3.59264742687818	3.49923153179821	3.84441325412312	3.5141766552192	3.83851524057783	3.68832297365492	3.5528908339762	3.6852878074472	3.42422410321277	3.59222776405588
+"GPR180"	4.8729798828981	5.57607973961107	5.94570517050411	5.4540653704491	6.07345288814668	4.65922012481087	4.58286667606218	5.25553610035782	5.41551404286055	5.6339556576431	5.36967794187314	5.54794035438368	4.98134760402842	4.42650093324954	5.28437882898049	5.6919412023288	5.58149924278408	6.01977515176806	5.17124053578264	5.7358210350198	5.74229548522407
+"GPR182"	5.53316162457963	5.63019858733231	5.61820847426707	5.52877104253071	5.63330330582072	5.62756095151882	5.48341162516379	5.59222595126281	5.7942833907463	5.66417722086183	5.62301176173033	5.82648687307589	5.74919388970233	6.17021276826831	5.73074157944283	5.68457873285739	5.65691509936633	5.47678131986094	5.67730750288754	5.67446274107519	5.76500536145535
+"GPR183"	5.24814926466313	4.76405907456641	4.42106038329616	4.86787663311833	4.86787663311833	4.95046433882223	4.6923698188513	5.55065456885308	4.60484778702442	5.24427811408091	4.79170597085731	5.11347860715594	4.57907105281332	4.84473703843003	4.63260649445466	4.90122496205643	5.7734098304583	4.83253003256814	5.30339239197707	5.36688911724069	4.39123558341119
+"GPR19"	7.68655105478044	7.98841964043242	7.9441626263043	8.0440122426864	7.94573116759529	7.65362777295966	7.92007793301189	8.13980539157857	8.25868682081097	7.56965964056847	7.88355345441636	7.59883034755163	7.9838955737961	7.73566079364356	8.23303260563551	7.76190844108125	7.94393242841542	7.48428676937775	7.70786820098273	8.01719970501068	7.86484205546896
+"GPR21"	6.39769423752035	6.79453438147002	6.68543695653653	6.7568666604397	6.96183395411224	6.69087122183719	6.66636401971036	6.77435077772256	6.96750264809739	6.96251131021625	6.36373844955078	7.17664972656744	6.77435077772256	6.7468144750061	6.85654009390501	6.72382916003588	6.90352521951383	6.57424325626255	6.55995177679114	7.05492043988021	7.38710984380232
+"GPR25"	4.08022174867621	4.14634067578329	4.31891877440127	4.30429465932146	4.03511678702435	4.7336772786793	5.22540271943848	4.2947976575029	4.18870274864769	4.38540058209434	4.0397196582012	4.34373913988759	4.50360716131672	4.44603526235195	4.2947976575029	4.4242741840034	4.2947976575029	4.04009909958014	4.2947976575029	4.39167981079601	4.07881973721086
+"GPR26"	5.18448579864759	6.0438456777203	6.77652747945757	6.93534542967094	7.12067193767034	5.45957271036728	5.12390331033975	5.96668269176175	7.79330760465256	6.8166771890059	5.49220070743747	6.69127698253557	6.67364079770233	5.39067659356193	6.64195691630666	5.22881527915291	6.94904475953991	6.84529650734586	6.74906979400356	7.26083381555375	7.15700942027601
+"GPR27"	7.74227378836349	8.65021892671848	8.75950804773992	8.57114377636427	8.9064303424712	7.80040538135774	8.10974307465142	8.59473391484945	9.05307682238614	8.41784647832921	8.5687076781048	8.49322158443082	8.63707677669943	8.24912078045493	8.58648804001944	8.42326905655988	8.71449519029827	8.54457815225537	8.76250041567175	8.57114377636427	8.57114377636427
+"GPR3"	5.47092481985156	5.92068389353882	5.96668269176176	6.18902521443021	6.10120204122458	6.3643480768716	6.15794145200642	6.62630003822319	6.02852193968578	5.89209767514874	5.47831590142259	5.94962895430951	6.32804008770739	6.4061750437383	6.15325787883417	5.9389789500691	6.13185043019576	5.5624992334111	6.05464653223381	6.15454675534578	6.11186192956398
+"GPR31"	5.38563690966855	5.4205152597258	5.39576317200021	5.52709528988894	5.19275200750368	5.41262097544597	6.09143822680599	5.38618096373008	5.45517923360264	5.49488043039103	5.13680290278332	5.2993373528713	5.55012079689489	5.81077660610837	5.40318776890286	5.38588914546649	5.43894071540122	4.87016741350176	5.39096571044835	5.30095254436146	5.41485856481358
+"GPR32"	5.48912703620919	5.77761500941593	5.61365293098007	5.78456728037988	5.37494212280279	5.73586417311183	6.12385976625277	5.82587619984995	5.68043596640633	5.73586417311183	5.65869770807705	5.73705009151271	5.88569632060524	5.86875522652099	5.8611936236604	5.61471552078446	5.94291792347908	5.54917983885812	5.68955722282474	5.4020062344961	5.96448716297629
+"GPR34"	8.57427505103082	8.74421371601955	5.56639620262115	7.58153577201164	7.68769950070291	5.41975418009156	8.01012461116249	6.42298608378687	8.10429838239931	8.088757564989	7.72188331431059	4.67079258022954	7.67302769382996	8.30666281319096	7.8045364881292	7.74709346241445	6.04462879909585	8.11988806287389	7.85624126350121	8.21790399245957	8.39140950839612
+"GPR35"	7.09955082686375	6.41727559805236	6.82888636502734	6.82299171266419	6.26349682340523	7.24300548667257	6.97324363336374	6.48680377601189	6.71807236059589	6.56705322083808	6.84025623257845	6.64839764313247	7.13319349065964	6.83174181400881	6.71588666197935	6.59097498609029	6.69283625044022	6.71858541185605	6.67312702532863	6.62736259047128	6.84077998819356
+"GPR37"	7.21472083941664	7.67011185747572	6.88304603079153	7.15649798108221	7.0445969195075	7.48079152586404	6.40121810630964	6.69420214296983	5.85272231720462	6.63723240122702	8.73473436124523	7.09038199745908	6.13141338541426	6.58619973121182	6.5810270411438	9.3754928558447	6.47032810378254	9.40105627896468	6.8076148402832	6.10065268686847	6.06418530385152
+"GPR37L1"	7.9174951759201	8.48533844765901	7.17557422983151	7.94611040563052	6.77621656188443	5.54391046418228	8.58265786712288	8.29075166299573	8.07600341115662	7.91114678477784	8.55292524099038	8.21143525927513	7.49304662138133	7.45461760927803	6.97596689449911	8.05839689047566	8.0762578714019	7.56912901853479	7.56752937486301	8.11174751019747	7.07661215698864
+"GPR39"	5.37973026862768	5.54752926619082	5.61828873703424	5.61348545577639	5.18930956756307	5.29156870113988	6.20360336640604	5.61348545577639	5.74995793650411	5.63282737911643	5.79798552780891	5.88889074376153	6.03362337659316	5.63282737911643	5.63343947938423	5.49913300814703	5.60997088783778	5.38254664572375	5.97325139048016	5.3264629804473	5.55506408196412
+"GPR4"	7.21163547558105	5.83928170222787	5.52992836559916	6.43984494412799	5.69779391026069	7.20770059449339	6.51776431882669	6.49964533058107	5.98369399045148	6.08310339122109	5.68596013847811	6.28268656063005	6.77839788800609	7.06852599162668	6.1808285385081	5.36921504800209	6.6339784772049	5.70941072508123	6.29430090802031	6.28268656063005	6.44397095262087
+"GPR45"	5.3457371701466	5.0141459731544	5.33508416951097	5.29073517524948	5.31085921744476	5.82600412214387	5.51692884963767	5.19932623223088	5.15547702934048	5.24025492197919	4.88708481967352	5.37501613453041	5.3788508172792	5.59557514870889	5.23133615226664	5.31085921744476	5.28855302487015	5.2959536581184	5.62522325209411	5.15296830709151	5.31085921744476
+"GPR50"	4.61013945807977	4.76819087294291	4.40370293710783	4.50172936179723	4.66132285147677	4.45503733336714	4.54751080496412	4.61284354163675	4.7399353581088	4.67656935602657	4.43108376736826	4.60384461953544	4.89658620441706	4.62067282390122	4.56924795984353	4.77575617012318	4.64423178974708	4.36841278502347	4.83951044732884	4.43617943007703	4.74258690404791
+"GPR52"	5.2470337495964	5.39229335419568	5.14590421147154	5.53666503547365	5.64912582762758	5.43924044000893	5.38524176604533	5.37050273905623	5.55496453098861	5.37110635441848	4.94353236858526	5.56488966935563	5.19935348855395	5.50973864259733	5.37073417486184	5.29549824956274	5.61553647981223	5.09586716931069	5.2844575842804	5.44401073742638	5.72510681136313
+"GPR55"	4.86040278130549	4.84915231028846	4.99033989409395	5.13506306937726	4.91090319500384	5.54488909034585	5.41171780266224	4.57307798520236	5.11123109999232	4.73518927665261	4.57960097923477	4.7455092516939	5.46642901439579	5.04545893596628	4.90871835444093	4.52216786233846	4.91708165502444	4.20803373462584	4.93133700362507	4.78771089437975	5.10208274490252
+"GPR6"	5.03602564543063	4.65457175285026	5.42210685631753	5.57068687122012	5.80118466231652	5.52021725627088	4.15208892540975	5.1097039004602	5.93911947499496	5.51652342913918	4.73713983896396	4.85545717582052	5.83004783479492	4.61367223052264	5.78778779672606	4.82303834611345	5.97934517948805	5.3355092035001	5.3355092035001	5.83985502397857	5.18888558895602
+"GPR61"	4.11457414770858	4.35318515009564	4.28928928427739	4.00605547788667	4.48031627769697	4.29648878279925	3.60354583237606	4.11781515890879	4.23097630152585	4.88579899584427	4.20954984641821	4.57512919121534	4.37551951995779	4.41123651001263	4.29610037651732	4.41814661112412	4.55588760514162	4.23726624367453	4.2493817728559	4.80232250790377	4.5911741674205
+"GPR62"	8.10697021208803	8.03838469225434	7.64216885390418	7.66565289653172	7.62974810166255	8.28460125381019	7.21862918078697	7.04382288309163	7.12928201289769	7.70182130419923	8.79356688988519	7.59677810872086	7.14578274081235	7.72935308777483	7.71182396282057	9.19721036498959	7.77747535699562	9.01922798199647	8.04718793567336	7.29853376891673	7.62875726135632
+"GPR63"	4.78857113582418	5.39498684899207	5.20489601424224	5.28522066054207	6.06280146797923	5.30740483732249	4.50785310295333	5.47910239393236	5.77350637171395	5.73061836210544	5.03276486282365	6.01910052628748	4.87081845641945	4.19393285318901	5.23045797676844	4.93684533457772	5.84071310265847	5.41536858750039	5.44731979310877	6.05438718189833	5.33805869630956
+"GPR65"	5.92070104623913	4.6826249530127	4.21931597273612	4.53180544159778	4.557759421303	4.21552449758492	4.52117700534289	4.557759421303	4.42316227098052	4.31616602772907	4.31252279219153	4.76140889154995	4.58516265452199	4.73365291431608	4.78183970749831	4.49351274913192	4.31401815083383	4.48085205164887	4.55974308300449	4.88920887708854	5.04003097162902
+"GPR68"	6.19840989508872	6.77983472025227	7.25879188735328	6.84050773272144	6.62875171226049	6.99455698815691	6.80128705907523	6.53433623629637	6.83810422836394	6.78538732714253	6.53143017039834	6.76137969533752	6.97595580332603	6.86366401858352	6.97843829013908	6.53525795866575	6.83810422836394	6.70226576100306	6.67677088057351	7.12851160252474	6.89258094662091
+"GPR75"	6.43675494452398	5.8986257293277	5.66819735167317	6.1156529407882	6.00612175326942	5.25839636416055	6.15054322175341	6.24813845321992	6.31048970732696	5.7924133457987	6.5099041541923	5.54708355168582	5.84442467847073	5.60106166002546	5.81261515695509	5.80157596581846	5.6916546564118	5.6133780829055	5.47163515329448	5.75637514179866	5.50076182085259
+"GPR78"	5.18391081129588	5.73971809950586	5.29398990476645	5.44164329893636	5.50076182085259	5.4996796237193	5.89494379968588	5.67676811673814	5.50076182085259	5.45560879996776	5.37096218439301	5.43536750504622	5.53147984400162	5.81995557928693	5.58902306222557	5.69716254490612	5.52269681306219	5.35663009086096	5.50076182085259	5.41762548202118	5.38028341825135
+"GPR82"	3.55741108924632	3.73341421130796	3.55741108924632	3.59032026423289	3.55741108924632	3.34466285248202	3.69401190727725	3.42777710781888	3.5495072845401	3.67606958523935	3.49207835257368	3.58378804172368	3.67039810726783	3.47749153699766	3.44232347596116	3.67456767486489	3.6023423635403	3.55741108924632	3.48932213624752	3.51969673882491	4.22173316208322
+"GPR83"	5.73735361210822	6.72910090885587	7.77404919765839	7.22057627193941	7.14974431568243	5.93874878587674	5.70461775629236	6.51860991471743	8.24908600517688	7.47825108012451	5.59127054268827	7.56724196232383	7.2210707769658	6.18579156441768	7.08959722164225	5.22881527915291	7.37375471548611	7.23885265322168	7.31620344485856	8.4039510769611	7.42815268503265
+"GPR84"	5.83638628770754	4.34284575970594	4.57512919121534	5.0119675206036	4.86787663311833	4.75391176901744	4.87449261220163	5.43170293011619	4.79476700509905	4.81331051213667	4.55142265678521	4.86194377030591	5.26540269755464	4.79951284025784	5.01691280658494	5.04246285112181	4.62773017807436	4.3662763529116	4.3692227121833	5.61720113884821	6.09077688741391
+"GPR85"	7.18207749717575	8.1657893791032	7.9867007566189	7.32364032808922	8.00217968937302	7.5850084588814	6.85491193685185	7.4266454679003	7.95476824580927	7.6596792729464	7.58267618876092	7.72360896511308	7.66812569930939	7.45269069873571	7.89765320011638	7.49657420135866	7.65034308938244	7.65034308938244	7.47297997873915	7.95056263594693	7.63073920825064
+"GPR87"	3.32831283512022	3.37176723506152	3.05454732105722	3.22629930720997	3.23133600545421	3.53910821655931	3.1697380300437	3.21094302697006	3.38040717419392	3.23133600545421	3.39674405294379	3.08761351934662	3.26651484528232	3.20739766706818	3.17766650994552	3.21902549239621	3.15132839120907	3.08811298321673	3.39466415280945	3.25740551372951	3.36845042838148
+"GPR88"	5.68525957780959	6.62919318108524	7.14494047494516	6.63596826759648	7.06973921445535	5.62506659309375	4.97075045342577	6.20001803717567	7.11616086357932	6.86629367833186	6.22418058744188	6.68858566078218	6.36939353576246	5.7635706123116	6.35379781708395	5.57214890950362	6.4195946155923	6.44139445982755	6.55346010210004	7.18422759931506	6.30638659162703
+"GPRASP1"	9.2660028201142	10.3543086044663	11.0909273510006	9.86008221623293	10.8065502058083	9.37988758158204	8.64679499476454	9.86791120750497	10.009100280263	10.5739381024428	9.6095084624668	10.5254801873179	9.63107013941341	9.15712174192071	9.75795572449619	10.1570872264531	10.4359797678391	10.2075157322726	9.93221409141552	10.6941887243328	10.6961099865969
+"GPRC5A"	4.62497902328757	4.36102474415286	4.65654004930775	4.77210628312434	4.65654004930775	5.01767754092175	4.66685619601837	4.7277740859858	4.54751080496412	4.74694984760346	4.16489053494542	4.65654004930775	4.65654004930775	5.18151720299746	4.76331329991855	4.47810285151357	4.65654004930775	4.37651149481157	4.62238835355067	5.09785370148379	4.55872550586943
+"GPRC5B"	10.2002639086951	9.71624986431941	8.43483420668789	9.27581448825333	8.70217714013008	9.44616552032758	9.8471087316159	9.60134705352541	9.03298090123661	9.41699367037516	10.3557170959056	9.27413929164442	9.07198944686042	9.06880021617653	8.68746340771651	10.3240245847752	8.99261624315909	10.0044966065519	9.69793060242124	8.5895074271787	8.33085169793223
+"GPRC5D"	5.5233760068324	5.54639409297396	5.48831717677712	5.7251662729634	5.71029899981914	5.91854554609334	5.6806161607133	5.60281224515934	5.69772855883375	5.80904815131035	5.45248480689042	5.52702168902546	6.01587181835005	5.88321054583733	5.51403668859576	5.77331363802615	5.69319993260691	5.61421588943828	5.70491146600838	5.69704113672521	5.7342752471844
+"GPRC5D-AS1"	3.52194857440506	3.52658931646871	3.91636234094751	3.76145915426798	3.79281585121594	3.75091284402879	3.79027861939821	3.41616937569744	3.95834327691804	3.66600458386036	3.65967070314801	3.9111283717918	3.83312162363733	3.60241306710368	3.83125227551566	3.6296404545094	3.55003111393058	3.54621481211331	3.86693428041923	3.75725020300614	3.75574618368753
+"GPRC6A"	6.03702545406211	5.78866730561128	6.01155923346893	6.0580826474935	5.95081043629135	6.02991042065132	6.29269275664676	6.12440934391308	6.11125928380338	6.32974927073708	5.51410549584683	5.90709968374924	6.06984928367159	6.37655796858787	6.1231974140906	6.08361367529484	6.17168911278001	5.8600506893052	6.10212318181548	6.0580826474935	6.24090336911782
+"GPRIN1"	7.19219858318023	7.87626213403568	8.5955935251918	7.92936506745638	8.14600940749103	7.91406571608329	7.5534487461675	7.60512471380489	8.03502906407461	8.34071109849546	7.7499134720183	8.43007982114295	7.62358423383659	7.75941683143049	7.59895509805033	7.53290574719317	8.10301186705203	7.73765085468487	7.72731383921614	8.12281143435673	7.97317628518277
+"GPRIN2"	6.9942826204933	7.04674522623123	7.02536766093614	7.27854229704695	6.93301264600194	7.15204203555916	7.45113491515392	6.93699033670033	7.28329779002674	7.04904323771907	6.77344267268822	7.24411396965797	7.3002486814948	7.38774680755305	7.23128831968968	6.92994087507383	7.22111818541317	6.64032555728625	7.27014516427943	7.21074274707607	7.09759496815981
+"GPRIN3"	6.25026283283515	6.08411147096434	6.73198070871981	6.51460571739292	6.45348782808408	6.21699543390393	6.25488518230006	6.55835352756178	6.06594198973661	6.01876282330221	6.2198050991039	5.95054625290317	6.59730939813112	6.13442734779024	7.34907510249075	6.17561110056312	6.45412625014429	5.94519522872771	6.31054371264932	6.63295585949083	6.27811537038996
+"GPS1"	8.33988206503451	8.20580361438809	8.57727207696405	8.0244353121111	8.42608068679727	8.51593039781069	7.91576984485578	8.08713503596327	8.07344396878097	8.53983459873286	8.42618326114469	8.50819629756428	7.93589078539222	8.3790682991085	7.82775946669033	8.51540254640416	8.24076894098543	8.43972087972605	8.0267725423574	8.53457625436101	8.33594393551889
+"GPSM1"	9.27466974669298	9.09067895129554	9.37972596617233	9.16193448148849	8.82970411569247	9.5672957188672	9.51746545042729	8.93576650092277	9.2408298519701	8.97937279208025	8.98565880106145	8.76902799086684	9.29507559906618	9.49067216460115	9.09067895129554	8.97055135624622	9.06357011105715	8.95300990949724	8.79000537153281	9.02911431900632	8.88200126748843
+"GPSM2"	9.42389978172548	8.61738013727869	8.43995978738781	8.95900108707627	8.43317700221254	9.64851913743481	9.45876090275243	8.87002090891263	8.79666676007299	8.09449993118434	9.34110607717644	7.46532479637249	8.90991689566905	8.97580253442938	8.59054245457048	8.55607325323253	8.706125150342	9.08209497903071	8.45022486435939	8.15961001648325	8.56220056303127
+"GPT"	6.42098719863454	6.60006918296835	6.63486190237185	6.51090820999459	6.45051032843368	6.25852585977422	6.51090820999459	6.39239200129789	6.28816126081896	6.69393206969388	6.50038191079976	6.52313106983612	6.52437249762976	6.82490985896896	6.51090820999459	6.51316638519897	6.4331517176191	6.58194637667866	6.46018754385209	6.33176461994332	6.51090820999459
+"GPT2"	9.50269357224812	8.43820991437602	8.23409819680954	8.14584613593921	8.13021221706621	7.10097639286754	8.22202694096904	8.79872123866327	8.12429935379085	8.03503363245706	8.55582333760717	8.2887559527009	7.29335545967932	7.6653742716865	8.10901415719978	7.87392110722685	8.05701237066682	7.91778279991827	8.44848576044435	8.12848408031132	7.99490722295439
+"GPX2"	6.0088375330385	5.9473933984528	5.68801176915296	6.06779393383663	6.08629723109476	6.18910039195487	6.27291997532126	5.83339082475012	5.89970873188759	5.76606395919887	5.44569073957044	5.71897146243992	6.19569454629944	6.8456165424555	5.8046063198732	5.5927933481302	5.88901021058502	5.60087571426146	5.64613105580415	5.79302687813882	5.91505865721205
+"GPX3"	11.1114539897044	9.06687446679537	9.41177152531002	9.52278277256103	9.68934246091217	9.58680746710916	9.1246204245289	9.50121186415523	9.26131697710918	10.8677982504445	7.69722367686287	10.0213075199257	9.49224696361966	9.62002903374755	8.58187044601761	8.8638482223242	9.42378104614693	9.17181569105452	9.76617991574089	10.9591610939764	9.38576397093398
+"GPX4"	10.8853918884308	11.1072715125108	11.4824921863607	11.0724557550357	11.435003655867	10.9567354606025	11.268991067139	11.2849928369259	11.3258119935111	11.6138250577389	11.3251602508451	11.4944425454897	11.0521630326532	10.8392086047414	11.272334093767	10.9868404343102	11.2520025877887	11.2826375474214	11.3116599283959	11.7060755526167	11.4274552462878
+"GPX7"	7.18677275242053	6.27326125625869	6.33619477373793	6.15874019454136	6.38297474992408	6.1821590171717	6.44462728424682	6.27759497768277	6.04717842577818	6.71203612385654	6.5027988848867	5.84800196986771	5.6825236505964	6.24443397539332	6.00889706237655	6.40326346719602	5.99634394566415	6.63357939394835	6.20007337490168	6.76076854464418	5.98676640550291
+"GPX8"	4.25964472169835	4.39191962837841	4.11343205601807	4.19963006143157	4.253592738339	4.25278094366956	4.26596817871232	3.94583086456196	4.19912124160681	4.56020712733782	4.36882684906683	4.1693786223	4.18978158759815	4.34921545494278	4.12088361306112	4.1338155390393	4.22147387733066	3.92364299152771	4.34634699370544	4.98300071069626	4.12761737160828
+"GRAMD1A"	7.05941933113046	6.65003730286977	6.64486750902291	6.51742401426345	6.38792739539091	7.18711875737295	6.68162322927703	6.7626407711507	6.51347493116681	6.63227962465384	6.27994323288374	6.6069493781329	6.90763276186963	6.86429114565265	6.33826500249025	6.88334450244459	6.61047282432617	7.00877412949041	6.98713050202263	6.54240626948849	6.64062480233785
+"GRAMD1B"	9.3893961256186	9.83101525492773	10.047749236311	9.92131552643381	10.1568543967925	9.55673840714631	9.57938154604285	9.61104858168372	10.2038398811937	9.83101525492773	9.53220702173287	9.89802307347914	10.0363455770823	9.64858536076942	10.0965444784636	9.11953192391503	10.1291977098037	9.37927587566055	9.73323491699686	10.1501176904737	10.047276276803
+"GRAMD1C"	8.59655626729109	7.32222323964019	7.29962990438641	7.80471050667951	6.76546731205481	5.37889711997067	8.12600127615203	8.21507723729886	8.03573493948253	7.29119441422541	7.1789507409195	7.23894820102751	7.51665310837645	7.65756565830101	7.87014237997618	6.51083916759381	7.42894925521961	7.02739188869314	7.50272844213537	6.69655590036985	6.8210765371827
+"GRAMD2A"	6.8902075818677	6.38888879768463	6.59324959070521	6.68185943685048	6.41523248200196	6.13348816968802	6.02224349111317	6.64133246603425	6.20780149719364	6.52022091557337	6.41523248200196	6.70660302037153	5.62176562364501	5.54966652175439	6.19934398970307	6.39382231251633	6.29855341399553	6.18086871350932	6.7250969987554	6.7907772780761	6.41523248200196
+"GRAMD2B"	11.3389242693184	10.5065564026806	9.97997336910753	10.6168513810254	10.0436507205037	9.15774541769594	11.0877661688299	10.5475884747461	10.6681181415033	10.2856592631091	11.1945554435038	10.2774152020081	10.0699223045466	10.5469208850749	10.2682342306012	10.5545079535851	10.262465622291	10.4663607335205	10.7230397779806	9.87308727231992	9.20423674077732
+"GRAMD4"	7.3643522797661	7.61940950050422	8.00539155117176	7.74317854084848	7.47324805514779	6.66018414867548	7.35428720936744	7.06953444354024	7.32538966694458	7.09495397350861	7.54239298566677	7.73664651223696	7.23527048600427	7.171018547182	7.42683179989515	7.23660555554339	7.36137204519492	7.29742795086578	7.19747262223741	7.43113383026204	7.373436282229
+"GRAP"	6.55830783558701	6.41617663940302	6.34844779066392	6.44731147537382	6.35467943855127	7.18569088021684	6.87896473320216	6.31124832494262	6.56944700853933	6.51246450415108	6.32162103414482	6.3443358595731	6.50213044904396	6.86595958476723	6.44988469497802	6.30464896375933	6.38559394291299	6.14010165233519	6.12847089168474	6.37355078801934	6.2108264661827
+"GRAP2"	5.91361605860876	6.03092762700319	6.01955956657003	6.20835059012654	5.99948880808954	6.24762072098888	6.42555328194622	6.0580826474935	6.23591791100778	6.19867389050923	5.93293533439987	6.17085309687216	6.3280853997978	6.08411485642605	6.28552169706969	5.7799766463571	5.91220041333109	5.89708195618327	6.06240760041155	5.96087429363745	6.12059484398192
+"GRAPL"	4.55604051932008	4.59829332426495	4.66152119380921	4.8215433776221	4.58259996466021	4.48811870980268	4.76136494038993	4.64971698684393	4.42236112495982	4.56963311182623	4.40527901332517	4.71654472876972	4.58358309055061	4.93755266397078	4.55010440489696	4.50004206676491	4.69981009268677	4.46951874578922	4.69990052497582	4.74430284997225	4.7080475345128
+"GRASLND"	3.88509171534632	4.85573045378608	5.11363195888925	4.78694402599514	5.28491707569125	4.95351718668338	4.1428608838615	4.6722991079778	4.65124792818772	5.12497289010959	4.08193599403084	4.78694402599514	5.16904612405547	4.64207655857268	4.66601343412464	4.75181061140083	4.86134925256054	4.77602243886905	4.70912209441743	5.51122850475855	5.38615606146745
+"GRB10"	7.60581243983265	6.87805899941241	6.63699224383906	6.90459556517392	7.37865631820421	8.13942451026151	7.29913853494731	7.40967511594208	6.76332523497967	7.54363155484774	6.9422059740631	7.61265034176549	7.12675366696847	7.20355326469491	6.93667228818138	7.57854945510529	7.37041879673604	7.63111407726602	7.30740579361715	7.36665172053581	7.56591281169892
+"GRB14"	5.32907792079408	4.69611780748238	5.96668269176176	6.42309865932616	6.25399615179448	5.14115500752586	4.69175922613355	6.16071223420069	6.71546798692686	6.47478288495613	4.45927325642708	5.55890411844152	6.34402630387574	5.01810362226795	6.63930327789514	5.12022646357937	6.66805562989248	5.51178626312004	6.07379336429182	7.36251357928046	6.01472877146422
+"GRB2"	8.42398792485192	8.50040948159867	8.72528649777441	8.72842779308256	8.99673671085923	8.37014702160626	8.06615819410398	8.55831408465235	8.71233793011514	8.92108274910583	8.48810086625183	9.03868191239619	8.62102766293675	8.19208498977913	8.56253374306261	8.61965867627713	8.76779526466635	8.75420357523194	8.54782823595551	9.08342023446872	8.86628328329943
+"GRB7"	6.07421378483033	6.27580215003386	6.0464599876111	6.19923797996308	6.13744845506311	6.21699543390393	6.20320301265687	5.96186715624451	6.30141255852655	6.22619955772884	6.12552208993326	6.31495289930233	6.4185389062664	6.51998568741479	6.26875424939961	6.20736620225553	6.28739722130851	5.86492759589936	6.44488284441069	6.11271679027663	6.27092157682847
+"GREB1"	6.62122330780404	6.47400481131488	6.62875171226049	6.82870544076772	6.70372053542375	5.64372325546358	7.42384150912132	6.64975104531106	6.48888416209588	6.79837120140173	6.57412100038259	6.61041847151929	7.2278965923022	6.68658620267005	7.02859577182699	6.09917515596278	6.76054747605003	6.64643629117434	7.17996994464397	6.68658620267005	6.51617177992197
+"GREB1L"	6.36017278949439	6.751147711837	6.88504463552737	6.76889537870552	6.815385397274	7.50750252545994	6.70184503480271	6.77197593491126	6.6023631868241	6.751147711837	6.7044451745	6.77517339205141	6.32566999090286	6.70515182783991	6.49195615703615	7.4552998340917	6.83113991373326	7.53299857912397	6.71272789854726	6.50315634393709	6.6510983906844
+"GREM2"	5.05224749358326	5.50028831695931	6.63209119447495	5.7694018717702	6.97142521845728	5.69242080573303	4.87193276436694	5.47389764126414	5.82403631322133	6.35452746913919	5.65206108923504	5.83058497469737	4.6969466687411	5.30414423973762	5.96287729768704	5.06888757524085	6.60025745129736	5.00349909593585	5.44136324277069	7.0338719155212	5.77073867318765
+"GREP1"	6.42031192965921	6.68020038535357	6.85620616447609	6.82420936085329	6.62052997952356	7.44225042112269	7.5247295454083	6.78936502148178	6.83544249856473	6.7966333925118	6.37136772276725	6.81104292788629	7.04645180779847	7.119605078298	6.72399635227224	6.51193831954869	6.70541505754637	6.30713191444567	7.00331984348126	6.72192215146023	6.65621895794868
+"GRHL1"	6.02607497028527	6.08226193069308	7.25714238810122	6.37263970595055	6.77674614715942	5.89823397989782	5.31878810848393	6.10720940664587	6.50848400774289	6.20595597338297	5.66889255837902	6.17210552886053	5.59835129626184	5.7869282253856	5.92810279996051	5.83735335683866	5.98195862516118	6.63774856055973	6.1718007302195	6.97909149640964	5.91562045687834
+"GRHL2"	4.45954822340847	4.61552486600255	4.53765468448943	4.54413508112687	4.73506223548574	4.71089135802592	4.88858379895684	4.57512919121534	4.97975684200639	4.38165425016891	4.39807192613814	4.68379200771875	4.74862285478085	4.59012382637289	4.5889438718793	4.52506685308329	4.52506685308329	4.44696191048234	4.6183647452862	4.40216589037262	4.50708231802833
+"GRHL3"	4.4522569785095	4.49176525431619	4.44442769624504	4.4338526546948	4.5445616328858	4.63632608152828	4.34635919177851	4.44962779675309	4.54323054875385	4.56674427243857	4.32036906786531	4.43738115378871	4.39875325985675	4.35324888925483	4.35422132714419	4.74338524815014	4.57432006479445	4.33368956922806	4.32277453683225	4.24999828836407	4.5132084139508
+"GRHPR"	9.31329764739666	9.17961351483178	9.12268050610299	8.88529109139043	9.38151376276187	9.30002331492249	9.00481477155597	8.93615985476559	8.8065044425251	9.15139223366399	9.47517958879012	8.99878643424706	8.44336361753103	8.83921176536485	8.74827286213362	9.79650036974338	8.70251656568725	9.97653862537613	9.09503327800868	9.19066288111277	9.10729535812613
+"GRIA1"	5.51845199681869	6.2516623364466	6.58410082095187	6.23871603707913	6.80764821940869	5.43015660884369	4.93511262882317	6.14173665821794	6.35805183034917	7.00592892764426	6.07486189684218	7.15824073840674	6.15160883879145	5.47238404453623	6.16588500080119	5.96717140249653	6.51316638519897	6.05217205759818	6.17036543326337	7.10110197277995	7.34371594189027
+"GRIA2"	8.25944856851058	9.62123215595561	9.83144277467859	9.91374229915383	9.75764780250028	8.71085452661699	8.50202681545407	9.29271396280627	10.0271961434428	9.60919833687917	9.27097045048582	9.64187417088823	10.1080479757331	8.88108768359704	9.91434260088166	8.71150213564241	10.037257120597	9.23842582129004	9.70461309462628	9.34596253490433	9.73971057806589
+"GRIA3"	6.22537588150369	7.504809025245	7.57038988855107	7.34315494462295	8.09030885510639	6.99510881232921	6.21518100029278	7.24666266138477	7.2310138961219	8.18397319818939	6.8111233416131	8.08403605654257	7.01245171774684	6.76740637648726	7.81720824826868	7.52360991236492	7.7329743497543	7.18905566780594	7.13277680059956	8.30400310888827	8.27526616634421
+"GRIA4"	6.3725298771105	7.7909368655562	8.18547257708478	7.55668251925445	8.37547979676754	6.45552480727693	5.72535754120659	7.16528894415179	7.92941398342474	8.12727370478253	7.29888185205419	8.01904157809217	7.88535375945881	6.5793184786918	7.77403471592336	7.49341788814259	8.15484511471259	7.54782914520431	7.31781556857784	7.93300142594983	8.34833369718037
+"GRID1"	6.74874696789707	6.96046898225652	7.22714561558551	7.05534878064744	7.08599891389387	6.3643480768716	7.09914774776048	7.05534878064744	7.1224148477982	7.02290861165494	6.80292071152582	7.29354636457013	7.16280144485142	6.71843533217189	7.08967088971522	7.02975264586986	7.54727345512724	7.64949116493666	6.61550071492461	7.20148995890985	7.00015534755704
+"GRID1-AS1"	3.63049337063317	3.33664209110223	3.41996053574914	3.63380446419854	3.87528172893067	3.94121861176909	3.71366831455798	3.43416930274159	3.66316396334303	3.53000006109997	3.63380446419854	3.64923189274774	3.71622583837355	3.59670437478428	3.66812305819727	3.91806834314823	3.71110707930087	3.45599510659712	3.51855758797255	3.79645882279203	3.63380446419854
+"GRID2"	4.53484529577285	4.69213995504553	4.70058571089382	4.58910345236296	4.62354398167424	4.47092397158903	4.81491227743417	4.73182275601382	4.8447661820611	4.83158382234724	4.3724149853369	4.50027435686551	4.75915918147518	4.6856707258722	4.64146659762292	4.72687606600716	4.72548856982554	4.48449146385826	4.80419531992814	4.75325075066384	4.83473028675705
+"GRIK1"	4.87392614369599	5.61335452315822	6.46936655601066	5.75158555372558	5.41493125554503	5.13274332062536	5.12403088769996	5.30925962119385	5.13149654817364	5.47238404453623	5.37983646924741	5.58883839867797	5.50076182085259	5.58494715530407	5.54122638590022	5.17559079288427	5.57931299148343	5.44350183401953	5.08323201323777	5.55334622959306	5.42984834939477
+"GRIK1-AS1"	5.37037721212952	5.36601109323779	5.33024872748072	5.47417464096768	5.0700384933023	5.42198812729794	5.6645321138827	5.38829060789942	5.66700019639813	5.58435872996778	5.52244050342252	5.35731312843273	5.76169766513558	5.39081120025373	5.51230361313797	5.44836279331774	5.59278411535897	5.29685549783287	5.70931130806652	5.35550138740873	5.68829635031771
+"GRIK2"	3.48640645443347	4.56655679806786	5.07224677681069	4.31301585239413	5.09122390903668	3.53989076690703	3.69004561261334	3.98075920077325	4.47465501882496	4.78021690642759	4.29938893389525	5.12057429431316	4.15372299970135	3.9199853716809	3.86459543354575	4.20348839678314	4.94101636023298	4.52905631838042	4.08090723421265	5.13944735924102	4.93664841935885
+"GRIK3"	6.75369649905545	6.92556187143736	7.35146085992373	6.75369649905545	6.74173437653964	7.37394712702555	6.88837203766457	6.50401675039996	6.42438107289072	6.52042965039834	6.73691425186991	6.77962511570732	6.90745473177563	7.31863613905386	6.86514611500985	6.34609186181963	6.5758790004202	6.45203673294623	6.51465926690606	6.75880850268311	6.78850303814974
+"GRIK4"	6.12239670889608	5.89708195618327	6.08745042568542	5.70680649329852	6.26557004859138	6.03229103987088	5.72260528359352	5.91913154978762	5.88490758060139	5.91876002295633	6.53522550050075	5.89668293978205	5.76697540946034	5.66128153398499	5.51291376523682	5.75958645228061	5.76125314317622	5.91536334384264	5.46682610321981	6.03653041623694	6.12059484398192
+"GRIK5"	7.62195939422746	7.35447433174168	7.73019432622352	7.37437804228476	7.52116958580785	7.43297552566718	7.22963694134183	7.49555557191972	7.42712973219518	7.98813778021185	7.58786802201582	8.24856095404115	7.07757198078429	7.03650192882142	7.18280736657363	7.38248533516477	7.69770313198379	7.6129231255537	7.51278638442854	7.78840549619852	8.08262260905461
+"GRIN1"	7.77647351518213	8.52548960640167	8.45600521777635	8.32896579982788	8.80861164981243	7.93693557812362	7.63053640691666	8.2009200038655	8.72187960735503	9.06337599078963	8.07899615232414	9.41937118978759	8.46072093303119	7.89917806067138	7.80177125239113	8.12137194304845	9.27431740058707	8.39283344362387	8.07309552203786	9.43364787506959	9.095304998458
+"GRIN2A"	6.57406654621943	8.18857260353158	7.79276397645332	8.00128700689203	9.31504225224288	7.49587573551362	6.19558042403521	7.7838062252921	8.20474040741835	9.12762574836753	7.83042100485667	9.43883766686657	7.49143067337242	6.93703689482287	7.65786961009662	8.59975851523073	8.77009394151123	8.34457217910863	8.09242946097532	9.42304766382465	9.2877541793561
+"GRIN2B"	6.68414881248728	7.24487154971842	7.66311538985427	7.7325299925504	7.66559675126607	7.89564985737059	6.97298734974097	7.27018693204408	7.76828539975056	7.14156146319423	7.21595441195142	7.43662470027333	7.39864622265621	7.24430812183654	7.63286659808861	6.50900867662099	7.5756972575208	6.94871677620149	7.63806418108072	7.37327767940791	7.34231429813967
+"GRIN2C"	8.99859150261354	9.17416118564664	8.68319796632549	8.72623959987431	8.35084724327539	7.75960678428414	9.40206071494832	9.48105314351145	8.37411105172068	8.05566318753724	8.07656755727937	8.35612698381788	8.43151768733609	8.72550455944313	8.49655723936828	8.6568218164784	8.27287150404249	8.38223782289931	8.30188628063433	8.31274784309298	8.2149176244763
+"GRIN2D"	6.35169848265382	6.5065581617704	7.41924524221331	6.74095571229666	6.52675379965226	6.66237402427022	7.11733076796915	6.68646477395521	6.56343454572737	6.59599056523354	6.20053947306097	6.80542444418902	6.66700356722895	7.06585242973538	6.08548911115335	6.14307589532853	6.64357515220183	6.17785038456723	6.27225131441596	7.0839875246391	6.57211625616677
+"GRIN3A"	6.72358712381354	7.127741725452	8.71499048603521	7.25088913121024	7.80630116310967	6.63308838346007	6.73247992834483	7.32883665417741	6.96615123360364	7.43286330983111	6.97703902041547	7.56773089724504	6.89917840698793	6.84390674687715	7.47509657011556	6.82852375617709	7.46665757603389	7.44459620103475	7.04598403632521	8.04852001659089	7.61941396170256
+"GRIN3B"	4.78502166024985	4.91511073819386	4.65101342605957	5.07549155941069	4.81694512620613	4.8834043239549	4.96615688793372	4.84926052273851	4.92410573987836	4.91912212229306	4.79211091293652	4.98513910013463	4.8329583535387	4.86787663311833	4.82063183028197	4.64547921305981	4.95347404247452	4.63736518158852	5.08440711340004	4.93111881051918	4.86787663311833
+"GRINA"	9.52453873553206	9.18173295623253	9.32012377145853	9.25331533634501	9.46514169049714	8.83746541125481	9.4371788365775	9.22722952792281	9.09767204682719	9.75875945437944	9.537059178667	9.72756623681398	9.11020791770529	9.00802367249971	8.5047959982311	9.20358518398794	9.51344484250832	9.09289911904549	9.20173708453875	9.91410557529683	9.65247264783187
+"GRIP1"	5.50713498334728	6.10853026445245	6.49851288834985	6.30399754829676	6.59193506056061	6.52538726332277	6.14771569746908	6.29167323049457	6.22894975166585	6.19967195206656	6.29167323049457	6.39920922004177	6.59662531630843	6.37657238578473	6.64032703762254	5.7125898432098	6.62558505289172	6.09505848801764	6.18567906638225	6.21669179610793	6.34401936926686
+"GRIP2"	6.97386967284457	7.46337974406946	7.65652116865906	7.5645096611179	7.61917556696935	7.52501908938898	7.54078142482584	7.16453892524297	7.34945032901556	7.42084374985671	7.28496161219623	7.34962393311867	7.66729498639489	7.92505424159335	7.47719704939842	7.25212840444599	7.46337974406946	7.05224635229932	7.46337974406946	7.73960813411202	7.65525054810164
+"GRIPAP1"	8.67885417318599	8.98527278202516	9.31706146499044	8.79153365727228	9.00074585150945	9.08379267663507	8.81509231697748	8.78647136266685	8.92921299849831	9.09349588561177	8.77190671416642	9.19527086473922	8.99915594634306	9.02387223355685	8.85323433279362	8.91326498140459	9.16611865067451	8.80296326435932	8.92887433966072	9.20281551969215	9.24935838421768
+"GRK2"	8.16118874959209	8.22632012383974	8.30414679636657	8.24305664468649	8.52604482401412	8.25738795918602	8.64349853475698	8.21308215615341	8.56849635888531	8.63779021886046	8.03732659479452	8.80666076490347	8.40621916712364	8.1379169279535	8.2559817658013	8.08113979249575	8.62937890300681	8.33420833401224	8.46082853575583	8.83258223166011	8.92417144371007
+"GRK3"	8.27541736046379	9.13881331104181	9.72610685154251	9.30335984034606	9.76010057057255	9.31106342028724	8.85089726437257	9.11329861503207	9.97343329033926	9.6747337792906	8.77945518236172	9.85271822401841	9.81161639422107	9.24649055086419	10.0232045140156	8.83106841838909	9.73080638426192	9.27123697321351	9.14562894722881	9.69933904821129	9.9272470983304
+"GRK3-AS1"	3.20994159034089	3.21294912338214	3.05747307624502	3.29096152111381	3.37594468079526	3.62256405733602	3.37359681988219	3.11570316882809	3.35173792119535	3.3328683242458	3.26880176525968	3.06793238099527	3.18227901808981	2.98686888381147	3.33748629343166	3.39023690153978	3.21151361285891	3.18403103335462	3.33028023825693	3.09843081672169	3.27433450488782
+"GRK4"	5.66749112985434	6.18423814274473	5.37079472388971	5.85636823550951	5.28539353775419	5.14971069177839	5.84764530648759	5.19953272628954	6.50491757658919	5.97349228710985	6.23697741424332	6.06604020478266	6.20402984011905	6.13246043666086	6.57622175321668	5.21231371264221	6.4743930391799	5.3973348872181	5.96011643887284	5.39086649778024	5.80289756907389
+"GRK5"	7.23112032016221	7.09502542551788	7.59928873903107	7.27820371824726	7.21841097599394	7.11126182022288	7.20904874364672	7.44345305786774	7.65578130027395	6.87213068084532	6.65422528306678	6.83245608929531	7.40167360979525	7.48982808140962	7.40962564285487	5.97294204239552	7.10288883854838	6.91795671391154	7.04401959245404	7.71428753661285	7.32993706032087
+"GRK6"	7.90630252305967	8.02878415012464	8.28260269821842	8.0898308000524	8.22770267658109	8.33234486283858	8.02799509665778	7.80934607877313	7.92981067989953	8.17556023696375	7.94222824789378	8.05254432307988	8.03264154299644	8.19782331569417	8.01434115211871	8.04166808462605	8.03602198554393	8.14400779992743	7.77779719191528	8.43211976783423	8.37272951926287
+"GRK7"	3.76649585251223	4.05510062373629	3.67903715757377	3.96782031026937	3.65784099156417	3.83366037395054	3.90161086865653	3.68492295077226	4.14023170585243	4.08112223601136	3.94920917909429	4.22412827572543	3.96447855765973	3.9323392698848	3.9592480843977	3.86207525865081	3.96261899717234	3.52956525526286	3.9261048619016	3.9981175517249	3.92438685986648
+"GRM1"	6.44736258934072	7.66729491906781	8.45438606550286	7.82143338664233	8.13214296828008	7.21958209281438	6.34956126694637	7.84859195935528	8.51171272269879	8.03616037385298	7.42751376852352	8.02797367403815	7.62726621906534	6.8194323613508	8.09937064426238	6.92285120725242	8.08160265561544	7.82143338664233	7.31111258789839	8.07944037663171	7.92418090016629
+"GRM2"	5.95549587391879	6.77904681793162	7.27939291447926	6.78817095758855	6.75712785143437	6.41709779627757	6.26530186162595	6.18799533963031	6.52017928017133	6.74703174514063	6.36940550783025	6.68321735696732	6.48141800606883	6.35046628252239	5.95163091257292	6.48036762903348	6.50051654534648	6.35430717119677	6.50560948962948	7.14438760791185	6.81719736134084
+"GRM3"	9.30603023181586	9.85464952031912	9.85552300641499	9.44039171921401	9.46775711649193	9.22959081777148	8.88158018074168	9.36888001435126	9.13590815906879	8.99178801212295	10.1315103327828	9.04957824716839	9.12126021661556	9.2300428650209	9.35408075880506	10.6799315891348	9.41182655320193	10.4689513817756	9.344618190444	9.15952152149735	9.10350718014216
+"GRM4"	7.00399506020358	6.7490044366609	7.28720123545386	7.16536802574989	7.0202421498723	7.78015022964391	7.55619749490878	7.0428988357604	7.17385603729682	7.12497235096268	6.92725431373549	7.13632075638145	7.34682049766682	7.14574146074505	7.13147601049579	6.92237796583864	7.16466815654987	6.78704238843547	7.19223571362352	7.12497235096268	7.21923612432238
+"GRM5"	8.42736276922001	9.56580955456987	9.95794735271179	9.93634763525699	9.82479884234609	9.32785098301115	8.00593279144616	9.65484312804182	10.093247087866	9.97018318053699	8.81867993951349	10.212822242035	9.61866213851964	8.9709623851355	9.95223013332765	8.77920704994919	10.2072636196245	9.54177568658431	10.0471207375687	9.94012190788638	9.71099454587199
+"GRM6"	5.60000984839098	5.43392821554204	5.22612616581738	5.31710974542433	5.278476581327	4.94138082778373	5.28050314496039	5.37177909459624	5.61369096352508	5.40920663414367	5.36956629335466	5.43612072404816	5.25415526153684	5.18891513152254	5.37682447631082	5.55332508810367	5.49644686072989	4.86963188211536	5.30284494431641	5.23163228836339	5.34810385551279
+"GRM7"	7.11200385550257	8.21388614196152	8.50515187178736	7.96357417870168	8.5247629023961	7.25131516107655	7.06973921445535	7.99534850406661	8.29258766793183	7.98655408277492	7.3291541784296	7.98221012888509	8.07324800244136	7.67030962034289	8.07353341370854	6.86532025350322	8.18871206132922	7.75187135818576	7.94682131558362	8.15182026093127	7.89483208388224
+"GRM8"	4.25013072189287	4.15741507863317	3.67044825059652	4.15741507863317	4.15741507863317	4.44132543051295	4.21702153816616	4.16114780534299	4.05927932919649	4.72801847769833	4.1433942864658	4.15741507863317	4.11164572105089	4.30099040307726	3.85877016778798	3.95024597228741	4.16083474964007	3.92076888524162	4.11941127786057	4.49852897839739	4.50121065895087
+"GRM8-AS1"	4.90472147865501	5.24527408630843	5.37160755198029	5.32223627515969	5.24604503326438	5.33560201520019	5.24180850070153	5.11647109885826	5.38481266184345	5.13639720466035	5.13769233749626	5.27828981430296	5.38516817127541	5.17687829218375	5.42766174947305	5.29274730601974	5.08552709531428	5.01652998816337	5.24180850070153	5.24065145305062	5.10915199391085
+"GRN"	9.53084867923995	8.57795777106641	8.26047585516211	8.28229022387454	8.43935943292037	9.11759714966789	8.84043953252794	8.56483551182616	8.32195812507925	8.81960488112477	8.83122616234922	8.32186430689275	8.68241548795916	8.73444719044863	8.34920132388985	8.68772894865992	8.48866921124715	8.60954915874415	8.53154506807734	9.07228668261114	8.57795777106641
+"GRP"	4.93921689384395	5.59988273137261	5.45074280223856	5.10975761474041	5.74329553254003	5.09122390903668	4.94434101770555	5.09122390903668	5.17264185443953	4.93513666634165	5.37486723943177	5.14684646728688	5.74797823691871	4.91601968896696	4.94148267950113	4.79305021259621	5.11047028383994	4.76295412283202	5.01200432273479	5.43890185546979	5.01422007551561
+"GRPEL1"	8.32332286024615	8.18425399292964	8.17644167519714	7.89124019139424	8.59078133514573	7.91325971071286	7.83190944924903	8.07547536238121	8.00966294067573	8.54981859978253	8.0058733773092	8.42781324963951	7.96626730568086	7.67286523243894	7.92352691365484	8.795282577076	8.00199052612096	8.59619577471039	8.08877285308462	8.82658172793992	8.7096976006632
+"GRPEL2"	7.35195173030088	7.44652033784692	7.62962950764995	7.30176411183762	7.99235635889037	6.92007119124133	6.71209286853156	7.36424091121577	7.38178855292463	7.61057813666008	7.21497048118821	7.41146193676031	7.25612867584758	7.1568483335377	7.49381340534104	7.76093857134736	7.6064493908672	7.71781521329131	7.24133216282205	7.52286300731435	7.75397390191338
+"GRPR"	6.78643790297921	6.83417210797332	6.72411001006446	7.20884756929549	6.90139949248697	7.14924536199438	7.14738832808681	6.77141303064289	7.0822020926639	6.81065927880463	6.60847731322271	6.89045414633584	7.15879200561513	7.05415259753872	6.91438709392853	6.86394671136333	7.08164964251767	6.66101691426689	6.87887922148653	6.87501195185301	7.04029151883567
+"GRSF1"	9.88374360465243	9.37805001875549	8.81284337974207	9.00212229123024	9.50655981690871	8.4205721662124	9.4220840488728	9.29965980514362	9.11574081767875	9.69937649854612	9.67412731877705	9.50963968543452	8.70825021794153	8.76342055025264	8.81365742596589	9.55570028702956	9.33643882730127	9.49023089641453	9.4526692234394	9.60227340015629	9.68396090004221
+"GRTP1"	6.0088375330385	4.98465359387549	5.00512766627401	4.73713433916363	4.84154619044837	4.85682383583451	5.63282737911643	5.68331560006963	5.40779588640571	5.09359356456475	5.1079513368875	4.62553320890682	5.09122390903668	5.74674539380325	5.09664057399811	4.5985952533073	4.99271032294569	5.28294654770145	4.80751900189334	4.94450792285219	4.60278886730465
+"GRTP1-AS1"	5.52560477454462	5.6817173382143	5.4262067042072	5.7115349004184	5.7766644716246	5.56721877642485	5.9690883104358	5.91380591161833	5.65822181765901	5.53103856434267	5.60244300386434	5.40789707777099	5.54682718988614	5.66128153398499	5.64508586291976	5.65560787244429	5.49196986446951	5.58611441736511	5.62015241188065	5.60244300386434	5.58338471923233
+"GRWD1"	7.54323571712465	7.46047725702742	7.64904345590483	7.64904345590483	7.41909282174883	7.90695295594648	7.85409052357764	7.61248897053775	7.6382438328795	7.64099876041899	7.48846078417763	7.48079152586404	7.79417872335703	7.85232505877303	7.64627015447994	7.66682880967734	7.73441062434776	7.64904345590483	7.72255566936048	7.79704704654894	7.66006875901759
+"GSAP"	7.54916680723551	7.38909270533243	7.77891539369267	7.11712187958273	7.41830579964071	6.70579919937004	6.41356995113593	7.11033356116525	6.93311316815093	7.34190404282239	7.7293313042712	7.47230535142241	6.86623446755635	6.56314407341495	7.02993393560967	7.31893697563944	7.7350816311338	7.55904163347178	7.24695619336191	7.89603299081553	7.55011755841673
+"GSC"	4.33323476242297	4.57512919121534	4.72236045042269	4.51846600986967	4.41966947953694	4.58785230939155	4.95015113002126	4.47720288115335	4.62755433511922	4.68257889388935	4.59116437352414	4.53117143583079	4.66524847291079	4.65231778226785	4.52878950768198	4.57022551051076	4.4315661298355	4.41653015375491	4.50643129871752	4.98562281697558	4.78568728534833
+"GSC2"	2.89275565241213	3.1215649389365	3.30540119878164	3.20049795478487	2.90383623992352	3.39973708769414	3.48401303533419	3.19520479416641	3.31634749141177	3.2648603272005	3.11172861505671	3.62539887739527	3.31441813245973	3.2371083959586	3.15418019021503	3.18791520617089	3.15336447378402	3.2371083959586	3.24052806696549	3.30627270553787	3.29691409324901
+"GSDMB"	7.71494165271205	7.48010807785173	8.05616403128299	7.91376878417507	7.40376591771478	7.95960162722121	7.95430627258202	7.79480794665865	7.66484755029849	7.28472712330648	7.2990459408732	7.38146803139377	7.94118186986935	7.83958596308957	7.88674999814959	6.84861089415114	7.58513252288049	7.40978153699248	8.01799249346522	7.3725100783744	7.36527057032208
+"GSDME"	8.58644068344526	9.41514400663468	9.25921565051129	8.50658869579901	9.20272791930665	7.97530254420014	8.22176830716149	8.38728645435382	8.92922570519206	9.1628015154051	8.80522618136648	8.89071153918841	8.53931791144592	8.79219927112197	8.12551031337019	8.66586518806596	8.70556397199887	8.94146987359625	8.65987491910978	9.1706250068271	8.81830475211721
+"GSE1"	8.14711488412681	8.44080801080384	8.58767583935839	8.28304418720454	8.62538329894432	8.44551362247986	8.35460119366913	8.0057773157882	8.49361560405795	7.95091369859851	7.99182043015577	8.05821395427424	8.65102391367221	8.08596531772772	8.59844244714608	7.32349429630596	8.14895962545705	8.0122720402639	8.04696378523964	8.19733015156531	8.3365990794895
+"GSEC"	6.02071497364074	5.57133885868206	5.38544916771868	5.44690609578976	5.53991298571133	4.71979007720667	6.00374593136241	5.58145412168123	5.36246236681701	5.22514449738284	5.4854489135226	5.5578462893097	5.14589366808818	5.40621506572379	5.45920140804138	5.47103466456216	5.44187490201483	5.39464932982596	5.47781602120147	5.6252754423068	5.43887323142642
+"GSG1"	4.00344480275897	3.99737503827044	3.94123961063552	4.10102530657994	4.32744970127839	4.34822631257794	4.55339080230476	4.00302751168316	4.08950244132383	3.9524453251054	3.93919644885804	4.03805725341364	3.94278183567953	4.36267270736869	4.1710766277069	3.95731288262505	4.04724803299661	3.80831476942908	4.25326855968276	4.31096131726028	4.15424396914711
+"GSG1L"	6.93140208263661	6.61905267702596	6.62875171226049	6.72911725901295	6.39334721872016	7.16088594908147	7.18453159310565	6.95812392276774	6.77976950339487	6.67299979772919	6.51268802640065	6.59933301029968	6.62846774771834	7.02033321582061	6.78919801567049	6.5258963533309	6.7075986038637	6.61787281445205	6.80981207596161	6.61905656301053	6.59639202625935
+"GSK3A"	8.32053939542037	8.52309960793748	8.5560169155183	8.56088007250076	8.58401564435906	8.85048147864624	8.86993906256307	8.47363394537233	8.7088824297418	8.74599136725432	8.38127489318466	8.69182299166446	8.85242900565771	8.86039639681255	8.50189966435803	8.40080390346812	8.65304389665655	8.18230648231339	8.8450571895689	8.70606525393124	8.60840945540789
+"GSK3B"	3.95764411010661	4.3450226220581	3.83443159891206	4.33421737587115	4.98514949115755	3.66538380432139	4.26634023826093	4.55541989502158	4.27559617868036	5.02911786542874	4.57444384269677	5.33467434889033	4.57509884099753	3.58023110528216	3.7896244140596	4.60078208131753	5.07589280760586	4.81700296206501	4.85116783184469	5.33321203961443	5.44779445419665
+"GSK3B-DT"	5.30389283308949	5.57464005182051	5.94570517050411	5.44930612900098	5.72431138520103	6.25029815704692	5.47286810502222	5.39806697265868	5.29555272330186	5.07926877556118	5.71364275899574	5.68066553340809	5.49190243436941	5.56703624042668	5.72753226440354	5.92950063027323	5.57320963931982	5.55463845305724	5.52525678242736	5.34464526850707	5.36741341960014
+"GSKIP"	8.407918423782	9.20265835034455	9.62483189824307	8.75156453251068	9.52647746123057	8.67406380379652	7.99897180682068	8.82516100411793	9.15436097254236	9.21225068309043	9.15942591914231	8.89427336495876	8.8747076987078	8.21797928336944	9.45223726519552	9.36349929306195	9.04443603529539	9.15581089492003	9.12095217810352	9.22657060430979	9.28838243318633
+"GSN"	9.08808935391582	8.45711278719895	7.43532504266033	8.18050574939141	7.83515217057409	8.63836460990819	8.24444473412851	8.25831441816171	8.00264860914913	8.63013971429002	9.54176861205259	8.10549723296522	8.03573660852448	7.93127507431024	7.6021276611204	9.21067624272873	7.88558498964656	8.78340807922155	8.20016961842823	8.52498778966169	8.06408302254112
+"GSN-AS1"	5.09397204497001	5.22732900211105	5.07765787873992	5.46049976254501	5.15328097468851	5.13314537266509	5.5490165432746	5.13031968254242	5.26562053457437	5.22732900211105	5.18815482935777	5.45124121372987	5.39981118112139	5.07010147464059	5.31933507008833	5.29345808473476	5.21583796371373	4.95143703808169	5.14393196887729	5.20041860489739	5.51592668562201
+"GSPT1"	7.75323181522844	7.46393406749904	6.49797625171796	7.10774108705098	7.7096280226356	7.074579675206	7.06809896366922	7.55937834506203	7.32950738158592	7.9027144235595	7.67102932885944	7.47568760163037	6.44050631992593	6.96841614515595	6.93822836928999	7.77952502708202	7.46393406749904	8.30035730782184	7.36663383887172	7.56646403693129	7.64994790696693
+"GSPT2"	7.78369035251328	7.65993101670126	8.332548192104	7.71494165271205	8.1082522176104	6.97081360849578	7.14738832808681	7.60310986114963	8.06157191180604	8.00577558498825	7.20208872467252	7.47661251062276	7.41910882970235	7.11851024828355	7.59143752872362	7.66165330494648	7.59469795291837	7.80590245090209	7.53519504383274	8.07157010973175	7.76569452738585
+"GSR"	6.81741687220567	6.73037829474275	6.18016581160403	6.54073036784031	6.83571137623981	5.32117573738205	6.9295072739204	6.86627092106939	6.5773549043644	7.20346614286036	6.79969670676159	7.2587193290025	6.57025382792817	6.3987700277896	6.41089884174556	6.77193909516887	6.97890404862405	6.62666752626276	6.99815509992732	7.31365148507735	7.09064909581704
+"GSS"	7.98777660971372	8.19399869126323	8.73027585766316	7.67471860903884	8.2290017058267	8.01579381987802	7.42220140698356	7.91405793724691	7.97690434342285	8.1768566464922	8.23853294085142	8.232507371962	7.60148329449054	7.80664864124966	7.72524220774979	8.23804156625095	7.97840497345567	8.25965483559471	7.69793874251542	8.59596705069982	8.19403388128111
+"GSTA1"	3.64412061090917	3.60276537093898	3.50286978221351	3.66076069256676	3.73258528879814	4.02912621087971	3.97521665806832	3.61981161255105	3.49693896474948	3.58285473684788	3.5310938589685	3.73859871302163	3.72153709264829	3.99843355614374	3.56477680191482	3.93668319481726	3.80258965507728	3.54975835654964	3.61655777709149	3.61135646399447	3.65946078457037
+"GSTA3"	4.66677440619816	4.87598852855677	4.66309177277099	5.11670700732208	5.02607147806444	4.98226513757892	4.72578777786368	4.87598852855677	4.98885966998289	4.74021750729024	4.87598852855677	4.88232986868471	5.04015853549104	4.96291624756983	5.15989299390798	4.83598613492495	4.93362257607445	4.62169267270151	4.74679039816147	4.87598852855677	4.74547845289778
+"GSTA4"	9.91223738932356	10.2941722742719	10.6551925866789	9.82547650608007	10.5325010384489	9.52100332738789	8.98080100838551	9.95190504087836	9.97765571655541	10.5249896956075	10.1825201858127	10.5899837862616	9.61014657173783	9.59181382177812	9.75606188571252	10.5150487538306	10.3483158050946	10.3403338121708	10.0672086483976	10.5782067240483	10.4681023919308
+"GSTCD"	5.77105737032002	5.68135022755979	5.78297068284433	5.35290343264938	5.73836142914815	5.47660822150486	5.17076984329915	5.2457426346185	5.18146836460172	5.35290343264938	5.7396328282952	5.33946082334348	5.04663593803083	5.27672240427977	5.06796997291994	5.69690910305627	4.97000006032204	5.61419730514346	5.35290343264938	5.49363532931991	5.15954824693267
+"GSTCD-AS1"	3.75681674401467	3.86850911329051	3.84227708228744	3.92069173033792	3.93668319481726	3.99533465298194	4.29981472908855	4.05332790615551	3.87425996092959	4.03547363381204	3.66076069256676	3.84528870986037	3.93813909431159	3.8782017446774	3.95366516048466	4.12035963837245	4.03116210272915	3.717018456631	3.9307338822183	3.92553256912128	3.95187672469685
+"GSTK1"	5.36380693089099	5.36955244689262	5.27696610207424	5.7637414832805	5.14510208336765	5.37589761763558	5.82126093050118	5.53211545389701	5.82216814911399	5.28034860099638	5.73841162093188	5.34132127422965	6.01774902061834	5.43452175340233	5.99881032492896	5.11538017316211	5.46049976254501	4.89057562999463	5.60064550780532	5.45772225959126	5.39939622788585
+"GSTM3"	10.4975305050565	10.0416675236312	10.4293595659386	10.4572715435076	10.474973150723	9.21060184741091	10.2161758518822	10.5724652231234	10.2990515083387	10.8932929509187	10.2883266961206	10.6575448043812	9.48157338187295	9.82140412825466	9.7003817015932	9.90834190336629	9.86393377156446	9.29168297397383	10.697760751912	10.4922715883549	10.5525627470034
+"GSTM4"	7.3414209776157	7.42116552669343	7.36829634499648	7.08885163860666	7.89687395469602	7.47507006656094	7.01608049380812	7.41606514052154	7.45185024882656	7.91088303001101	7.67874728492655	8.02175180335734	6.69714222125587	7.44190450624601	6.67663983488354	7.05287777978493	7.57543641899006	7.50950651001438	7.39434801491918	8.13005039638896	7.52623159601418
+"GSTM5"	7.41416317731736	6.73590188908319	9.44389915207087	7.67737365093366	7.16188629358101	6.20132884392108	8.63222440438032	8.95585021354365	7.51483911289914	7.30370909014754	6.74112838143967	7.45914799580923	7.68698082954556	8.27031579487839	7.38701658071345	7.51082235774835	7.6572345422292	7.44508674214473	7.69105495682902	7.85624126350121	6.39487517988831
+"GSTO1"	9.59980438288506	9.35145439738839	9.3086779862153	9.38757643780605	9.91246571809589	8.81512825143277	8.62747501061938	9.66893977241328	9.46979210283166	10.0340902416762	9.45475524107302	9.87361998878002	9.08484022850789	8.55678679411894	9.29770913909422	9.80718761111011	9.48746151774793	9.89991963305883	9.48747561402452	9.98747439584207	9.94245673974081
+"GSTO2"	6.7398091715116	6.98713050202263	7.50898650173632	6.48654304399064	6.84889202136016	6.69219318589819	6.30312644021964	6.50816899359912	6.75787286815906	6.72488823283944	7.1733564577522	7.08159172778482	5.44813954420498	6.89796724706089	6.38036868722297	7.5974800167419	6.89668636076852	7.23060359492874	6.58330826431504	7.62209850252506	6.75751125677883
+"GSTP1"	9.22353047237843	8.65132231450341	8.63353104590808	8.51239442862678	8.70631156438506	8.98020867447338	9.06056971048492	8.7129679712937	8.49860395334275	8.82505855830825	8.98280765002502	8.66330374986427	8.62720593979406	8.70796091598305	8.56313620805216	8.8564086588685	8.36208862986828	8.90268066966026	8.81364812806634	8.95661294691429	8.50520049521419
+"GSTT1"	9.27310223204738	9.01190989026717	8.40124988844739	8.52217073315933	8.41036091098262	8.01398331086842	7.89231326425794	8.88672391214249	4.73780036800828	9.1724428016447	8.98787622921078	8.23918080356456	8.11605586035362	8.57795035079158	8.94243375831344	8.00060134465118	8.10888077591677	8.22102494770281	4.85225910778789	9.09642545074337	8.31734167149932
+"GSTZ1"	6.85905321095309	7.10650843133936	7.29168702466742	6.8532080121233	7.33130057925547	7.13122206855327	6.84345310927791	6.70907393707836	6.57816424102224	7.25582855723545	7.67545795220252	7.12183996341209	6.62227315864667	7.02268708314624	6.57654198939879	7.65324718178056	6.86991083362271	7.13799825157142	6.58003672720706	7.20634713334186	7.02268708314624
+"GSX1"	3.87015883777267	4.06965358921249	4.3160668722989	4.34434867863521	4.11026265726475	4.30469897612912	4.16033735803169	3.89999759143487	4.37859273933227	4.09969286583691	4.00294424462906	4.15067972715389	4.31353287142904	4.37828726002614	4.20146475246757	4.3810445455721	4.38012600794701	4.10535226628354	4.19340185194845	4.07121181561603	4.17632435105737
+"GSX2"	5.80590510662724	6.18334414481714	6.03767550043007	6.12355292427533	5.99164758548605	6.55025313620359	6.64697567796531	6.02038795731631	6.33221340029823	6.13756911565192	5.96997721151775	6.23645873843171	6.02868439270202	6.19098971033683	5.91591884614871	5.90376146017861	6.18812124909949	6.13220569693291	6.10264363320163	6.43665691400236	6.23457679418
+"GTDC1"	7.60702322642022	7.5582622590658	7.20785524905129	7.24708137443869	8.35963990633385	7.68895423911724	7.67116288669389	7.63091346931672	7.58106728190472	8.02099859909429	7.6221057933663	8.02085211628633	7.20279668515591	7.36405589410911	7.46848992387157	8.1156182643534	7.52961992136593	8.05720026500721	7.57879644407708	7.90208561623049	8.38252227172078
+"GTF2A1"	8.65710318067341	8.70677483865235	9.05214515422826	8.73214778806084	9.05764106802876	8.31919794040328	8.45017085297523	8.61481722461616	8.81801598635445	8.80014931297045	8.75204263510694	9.08069812743172	8.5361392568738	8.47860708755876	8.75985788356083	8.83615968088834	8.71789268016182	9.09004823217481	8.75204263510694	8.66018438650871	8.86623368108696
+"GTF2A1-AS1"	3.6521431528631	3.62263828665975	3.53979611596708	3.77569005044394	3.87503393334314	3.78951810564811	3.83472691549792	3.36688312087677	3.67377494721125	3.6008712519761	3.64578450802527	3.70184179358249	3.53657561542614	3.66689267078446	3.58504281835674	4.20470337222016	3.6521431528631	3.58590950188337	3.51587458624085	3.88509171534632	3.72421426249425
+"GTF2A1L"	3.28654853389071	3.22820985971729	3.26092963400805	3.38669782559331	3.29024212798611	3.09854132329333	3.33670144983492	3.41769193568177	3.28654853389071	3.2675853575978	3.22226589085712	3.32366657190497	3.412596272973	3.28654853389071	3.14879466707713	3.40748338581723	3.2588551780879	3.17623637341923	3.28654853389071	3.31397732828171	3.3404377108901
+"GTF2A2"	6.03807416297589	6.03807416297589	6.0893028890053	6.0202638037613	6.1025320535966	5.9165726610721	5.68278119312286	6.22436321691284	6.23984147158328	6.02584615635978	6.08765862935209	5.8704121990033	5.88434051983374	5.86322542204045	6.25796161345581	6.41731136102892	5.96499514909182	6.1428692120735	5.78226209862103	6.42706189657624	5.89584030882316
+"GTF2B"	8.55139349276873	8.56981105721412	8.57060179207291	8.38489624823397	8.72955767829558	8.13981126300246	8.01710757660637	8.79793625388343	8.74234510867935	8.86896023405509	8.51384325697786	8.75701688344139	8.40510017851962	7.84285625327418	8.640797704684	9.0186636607886	8.65054798831314	9.0003153271185	8.69323133369029	8.75364886350654	8.71689001957906
+"GTF2E1"	7.65212056576441	7.31249006288454	7.60016272115341	7.10632484858117	7.86989230934979	7.3875959326906	7.54029462116543	7.21142645264689	7.43726131594078	7.41630921607743	7.2295508719832	6.69980385300539	7.063589453602	7.26093058660859	7.33522575893934	7.48000938878847	7.10134580559122	7.75848378194264	7.37260741589811	7.51161277972883	7.22223657434115
+"GTF2E2"	7.47481719591427	7.15134053414343	7.34877120510108	7.41760542139136	7.51030131105651	7.23025375425475	7.54193581711988	7.94308969108615	7.56629715368404	7.31330282312806	7.44147534466767	7.52659367172211	7.44504072625358	7.25775033308315	7.68282649803737	7.53105777200954	7.52502958979233	7.38377171079703	7.56838521512959	7.66774632832548	7.47401171744695
+"GTF2F2"	6.17007248696622	5.80830636169216	6.23375301972632	6.2843049662033	5.94474058781131	6.16169307844214	6.10060542833037	6.0930970384774	5.8704121990033	5.84857901335636	6.58724510540759	5.94018222606774	6.04968486411082	6.16729797878421	5.96971598823286	5.79421772124084	5.79870844406131	6.83930266553689	5.86219836836549	5.75058030028384	5.92115611521549
+"GTF2H2C"	9.0006654494479	8.99585094540815	9.51256655688634	9.07058463419603	9.00924591031677	9.35895054575764	8.88251077860223	9.70443736432053	9.30616414768464	7.37145794149161	8.24733428490985	8.34617642622388	9.53918841956765	9.4860047905955	8.7553849242691	7.93660593814669	9.24690639143187	8.73062465148742	8.82520700680785	8.370516684189	8.59352838884081
+"GTF2H3"	8.46452583728	8.60081887352209	7.90193136385101	8.65294412861128	7.46542928067012	8.14304579518381	8.85308424496468	8.40828404088837	8.79319810366644	8.30526915337261	8.91057120609818	8.43405795545022	8.76077988638942	8.83351217576633	8.94149056023326	8.50725257358371	8.69559116111208	7.71647258318858	8.74140879589297	7.97350824905543	8.47376024728167
+"GTF2H5"	8.76829110095354	8.41756704222087	8.70671573232535	8.31312672044767	9.03595562235882	7.70454644859648	7.79408213016767	8.49772825257259	8.59899310553747	8.63263820233572	8.92285741961814	8.53622472168476	8.02760401418717	7.54583912648351	8.14544305481934	8.70851633961371	7.89475169876704	8.84480031676948	8.39622320128672	8.60527561568952	8.40941688916107
+"GTF2I"	8.02140290100554	7.83869746862614	6.43668820019217	7.38155367488671	7.2168943598525	6.51420079253378	7.42806390258131	7.67583220712803	7.38827501748196	7.95576543979346	7.96452653491117	7.56227976266909	7.16470993584141	7.09873811660225	6.93812960637761	7.79407919301034	7.56822764510867	7.63809896786364	7.47230535142241	7.44789801505459	7.63888594561562
+"GTF2IRD1"	8.01426787044772	7.97480885233522	7.98715140881645	7.83156559001017	7.91406571608329	8.05968356652852	7.89897735213251	7.84222783978406	7.85268313845732	7.73327412869036	7.96852523453005	7.86163286503189	8.05059063218241	8.02537461952764	8.15719921246387	7.94399676646403	7.94601114379934	8.19065975624796	7.91757723188306	7.9190582473044	7.7604855330261
+"GTF2IRD2"	5.79765185268324	5.51698186140246	6.1435169131137	5.78470900333406	5.4053758246379	6.58251555271567	6.19811494547756	5.80561871577075	5.787840211037	6.02583662868417	6.08865496164599	5.75171709858773	6.14286418317749	6.31003450861895	5.85984294376024	5.5416937103325	5.75718400232476	6.14515986242401	6.00162130856506	5.57932498271051	5.9788953657833
+"GTF3A"	8.14435134631344	8.37527757151213	8.61886952084351	8.60131404062403	8.55351564814808	9.31905100401907	8.41486994339102	9.03519559803945	8.54907100626554	7.77227715666469	8.27863447090231	8.81188440851418	8.93422673365581	8.49973579228751	9.28711402186061	8.42524771186977	8.84826566757051	8.5641575091086	8.75204263510694	8.02386716587579	8.23983489763358
+"GTF3C1"	9.69251752008891	9.542238524647	10.0589598082541	9.51816687580069	9.68565737882863	10.1258229258396	9.5966506962817	9.57438919938406	9.62739353460602	9.49460101861815	9.46563723440146	9.57270904006814	9.69166269484301	9.90507736868269	9.60984601608652	9.17586094862094	9.64917290347115	9.61863436882782	9.08621119041332	9.57081853506444	9.43234266676128
+"GTF3C2"	6.71409118867328	6.56552621321811	6.24741058928159	6.0139815094273	6.33709613943923	6.27433585085721	6.44000368035833	6.46686430811561	6.35637908579174	6.71101486724522	6.5841203739179	6.62437778975975	6.34588612006718	6.36966623771134	5.9271537554437	6.82598509724603	6.37898786482522	6.31256632744119	6.43484391523815	6.5596269990169	6.56342586747504
+"GTF3C2-AS1"	4.81345510305039	4.96226636010397	4.78672948028106	5.18360934512915	5.03499887603235	4.99169024201563	5.47845310428405	4.97932068550647	5.35290343264938	5.11921718430982	5.10515563639416	5.28313686133277	5.33467506234453	5.30414423973762	5.24773605476086	4.96829187716496	5.10803066517768	4.92784515624246	5.32714999132671	5.02065012877719	5.29265009089429
+"GTF3C3"	4.47778861120891	4.63561000902458	5.42113154684654	5.24598486324131	4.50267713931802	5.10682327604625	4.63473645761837	4.83766691321976	5.09242193507904	4.29341463074061	4.46455835972367	4.72083029964895	5.43141547223631	4.64091074740029	5.58224380288594	4.79928689188646	4.69930872976896	4.72083029964895	4.51461020262686	4.70751512402246	4.19793861113606
+"GTF3C4"	7.66269569956131	7.80839983704869	8.08554527585034	7.86741286555827	7.96554476215375	7.59766682917061	7.74766421419897	7.47748148055595	8.32880921031395	7.81016769874717	7.62697043448654	7.20987599718444	7.63942803680686	7.71657564661805	8.09047454693534	7.60202191428126	7.61636813768462	7.79913339826599	7.5767555011942	7.96649043828518	7.57070053442279
+"GTF3C5"	8.70685743538228	8.52114633294417	8.51757150632193	8.20284657575224	8.31830144073444	8.96344678256959	8.69999362281593	8.44931845812474	8.3003968315621	8.26090921477285	8.62468728026434	8.26310017852981	8.34959790171069	8.64090445183092	8.37605881642916	8.77064642793972	8.34891009566586	8.98745059827751	8.45365482532332	8.27430599026302	8.20358117227766
+"GTPBP1"	8.13390638363977	7.88999875469603	8.12928457712616	7.493488972951	7.87079223689361	7.92346339586387	7.83705430398911	7.87224135895184	7.63359886754438	7.62594580930862	8.24983983807426	7.78331709307138	7.27098525280244	8.01975709251968	7.28642238368197	8.01823270716828	7.90904471939795	7.81397306285408	7.24018365232405	7.95755216752404	7.64440843243809
+"GTPBP2"	7.97447661304642	7.64098941813052	7.84223911570746	6.9919841377764	7.557850249261	7.45789145163884	6.99537154286795	7.4529395456844	7.23173228278919	7.64468670039343	7.42577096214749	7.46171716931641	6.74419645645777	7.27427817445498	6.72775717660871	7.92173567230808	7.41057177449058	7.89543201754539	7.2964261357508	7.76355073272184	7.76275938048393
+"GTPBP3"	4.90025577345666	5.17928558343481	5.20044308219465	4.72919325806482	5.02724438788711	4.61534178970101	4.39216282819892	4.7550241810897	4.80751525652696	5.37836860009323	4.9255695687938	5.19486285161886	5.04029873915795	4.74081120486783	4.59493628646042	5.09785227051809	4.98209502005949	4.65464629421782	4.89285082232066	4.93350580252341	5.2992386944742
+"GTPBP4"	7.4180290317512	7.2964261357508	7.42307572328891	6.82733508716087	7.44979928245542	6.76636893268641	6.70163510796189	7.09282051368585	6.96750264809739	7.46730851641338	7.46964776142521	7.42751376852352	6.66403400695373	6.61100663861069	6.91069664105685	7.77317277055518	7.24527129024007	7.87288152046527	7.2964261357508	7.51831756187074	7.39381013484235
+"GTPBP8"	8.49721096138723	8.334911719572	8.48244311441415	8.26010822161366	8.36365192304398	8.18150324490313	7.69110101869405	8.40860007562372	8.34071050902609	8.32522386127018	8.30210196292403	8.13284853822451	8.29967214573833	8.28850062046995	8.65827334545241	8.20896416062001	8.07513998733384	8.42685074187603	8.53774797350867	8.35574681100584	8.17123996331721
+"GTSE1"	4.54751080496412	4.40543582354845	4.25035523124716	4.65555927290035	4.39207483247946	4.15595271361727	4.34977705276393	4.47153784185349	4.47370442532322	4.36448959763263	4.22091426845532	4.14363252769563	4.81941822415036	4.85094193775675	4.70430874929501	4.2947976575029	4.2414600875636	4.02614931398735	4.30788132646725	3.65082742689319	4.21718283674272
+"GTSE1-DT"	4.81038100577495	4.90152793019081	4.93340426581773	5.05671139992382	4.90506853991198	5.34964427481386	5.25978124043141	4.73556627782031	5.33421716568199	5.02911786542874	4.93340426581773	5.21700705104459	4.90524483260915	5.14857162762244	5.03596870820878	5.34112598947799	5.03654281553055	5.09917929166538	4.94131035431075	4.95684074244463	5.04003097162902
+"GTSF1"	4.73694313040419	5.08189311190969	4.90347825733775	5.22548808633994	5.16267159697856	4.96087097447141	5.26558959606794	4.94349529009525	5.1750875785534	5.10980934894816	4.83048911787518	4.99227263689269	5.13254939416289	5.21053283414992	5.07098613135812	5.21426307644949	5.07098613135812	4.99090847137331	4.94349529009525	4.88091280081014	5.15330367708006
+"GTSF1L"	5.7225690143857	5.99075070631799	6.05992169364055	6.32841711390676	6.08814230488052	6.0500047307159	6.20461295440792	5.77649248776594	6.11409434503206	6.02263260843666	6.17688879059092	6.11409434503206	6.31107026619575	6.18674422431888	6.0692441708494	5.78088962524154	6.24115366509099	5.97969272673798	6.32653295614376	5.68664066465891	6.12344209463167
+"GUCA1B"	6.66895688565936	6.62540434357525	6.88101470774411	6.79374637516432	6.79649366147845	6.96054219414443	7.28738633949109	6.51555760867164	6.51842173865867	6.59199007080604	6.46972589328282	6.67138841056621	6.98288946916534	6.96862701196402	6.95827568560592	6.93238339538987	6.68679622022341	6.91602977059921	6.8320678904566	6.41755486876755	6.43294650990188
+"GUCA1C"	3.64210627642972	3.95451308331429	4.00660602398452	4.08329278387813	4.25623301483823	4.10182524031007	4.08444687261808	3.96119723338552	4.04430861204022	3.85469062093669	3.95264324628151	3.91747881625649	3.97110699712574	4.19680652781505	4.06931942498783	4.12830993821073	3.95794903225493	3.93043951906908	3.81993470195641	4.44750705519096	4.27813556910522
+"GUCA2A"	6.54010238422574	6.52591868767971	6.63443731227133	6.70052242760169	6.50010538727927	7.17786116877785	7.21735577483296	6.52352733458581	6.76370267586655	6.71278305622094	6.3165848202116	6.72307201847278	6.88364736931326	7.07590125229572	6.61529744955315	6.49215516582426	6.50324368301589	6.39841456387497	6.73446992400927	6.69655590036985	6.60894725848387
+"GUCA2B"	5.12710697824151	5.41175659999179	5.05987065554049	5.48460957253875	5.45440992493617	5.33358936572871	5.56520957599104	5.3112710506667	5.22368333973052	5.27021248851545	5.19318497588055	5.62645342283335	5.80112068871796	5.33358936572871	5.44142492046402	5.55281784922626	5.38949585943742	5.31113683516313	5.23155551996882	5.18354036733898	5.30956514363472
+"GUCD1"	8.5050255032035	7.96245577291844	8.09263186602609	7.8120017357424	7.82028733300198	8.21740308284888	8.19939090560214	8.15490464419342	7.70443141930864	7.89080810999361	8.11121594997569	7.69185986079759	7.91812318551352	8.27283688738256	7.87837110250041	8.21741613457792	7.77218225651704	8.20613291702922	7.80885009727578	7.93235276305696	7.84017452779921
+"GUCY1A1"	8.75300134903175	8.81547912834477	9.20526116293276	9.36579576888925	9.33343598159933	8.86584476650533	9.06100337950778	8.85502038303014	9.84829198110086	9.45421341890025	9.0870810221737	9.33006347920757	9.18182204081306	9.13352827763533	9.67482448019329	8.99598627968708	9.21588886309632	9.25077356166391	9.52299197721184	9.80048784355553	9.44452270425916
+"GUCY1A2"	6.40000360128323	7.66606135168668	7.9976860493438	7.94583489804446	8.02143885916691	7.52970514672421	6.62328526054635	7.48192652822226	8.49943858719556	7.81635226139047	7.36285259161553	7.89588822465184	8.63837185792701	7.33693301742795	8.83624033736671	6.77781873266837	8.08658617950091	7.71477508042688	7.79779641659444	7.55755612904339	8.06104067280667
+"GUCY1B1"	8.11579649971002	8.3076444100866	8.53472716931643	8.50053432302378	9.38807908275696	8.15630902366628	7.65992862871281	8.59032353094898	8.73325010282995	9.59454699310024	8.25948093069598	9.35172143969155	8.32831663724506	8.1995036280275	8.40131198573691	8.73214778806084	8.89534739656008	8.65522850475135	8.70687764398704	9.49854583850989	9.68770689046132
+"GUCY1B2"	5.26752798558736	5.0630958195108	5.20228165544086	5.21470034257653	5.6696975623552	5.06120276214157	5.22591137636775	5.06841085173	5.15141200372858	5.18117699132764	4.85047372188072	5.07248665166594	5.36082033345385	5.44855496529178	4.93062005808668	5.13960508002118	5.24532913418604	5.13960508002118	4.97865735360944	5.02531975475422	5.02376429907632
+"GUCY2C"	3.62290407510104	3.87661100939894	4.00884863468165	4.06841595982077	3.95202207391692	4.15307131803752	4.2104620673634	3.86426257681481	4.04898394655994	3.97840004374802	3.79886005206692	4.08602228628629	4.0175742165013	3.87190175400219	4.04652255881865	3.86617581785263	3.9941729806781	3.77896068307963	3.95202207391692	3.82805083873477	4.01817554913681
+"GUCY2D"	4.65830581506853	4.60754829702456	4.98142714498772	4.8683478994399	4.7224368527803	5.3223330706946	5.22025635773318	4.91708165502444	4.89229902882075	4.95771342590708	4.66867706068716	5.10463315656511	5.18216701012136	4.98056059003451	4.86554075424369	4.97078882060694	4.81699360862584	4.91708165502444	5.22025635773318	4.99301257473934	4.91622262652073
+"GUCY2F"	3.95845740447506	3.95845740447506	4.0041744767947	4.09213299865331	3.97521665806832	4.13617919875076	4.32069343930235	3.81329235269335	4.29679100588918	4.08193599403084	3.83656005032747	3.77963272910268	3.73185950272876	4.27381353252216	3.94101044900815	3.83311301345314	3.85999773993805	3.78086994455177	3.89715233550311	4.11009316380741	4.09350725795666
+"GUF1"	5.41020480744803	5.80280510731868	5.35937988821561	4.88181699497038	5.46987475874485	4.41412426853368	4.79249103975474	5.7493403489493	4.95288966039143	5.62373378038909	5.9276152524882	5.38018255319127	4.96693487574056	4.92353016124695	5.12174569193742	6.0001284034196	5.33358329372729	5.81230800973804	5.33211635905906	5.94546228063278	5.67101134124211
+"GUK1"	10.3905561670638	10.4345996642842	10.5669734878535	10.4083111291848	10.6675209908832	10.6531517169445	10.8560522420349	10.5571280345091	10.8687265192847	10.6393461868462	10.4499590294612	10.4437885931754	10.6474648889829	10.4561161927994	10.8181805090831	10.4232029405418	10.46390931949	10.7359950384028	10.5760509427666	10.6761343919959	10.6619379022669
+"GULP1"	6.54775632594678	7.35781126658559	8.07353678947628	7.59392583938937	8.65987055965041	7.11561346184378	6.46995959557405	7.41360546743099	8.0609520749571	7.85700924344321	6.89995342513304	7.54144718457736	7.66037470030297	6.50285014585444	7.75886671312852	7.37301539503777	7.79590100895721	7.94951504677374	7.82664720837923	7.95821660207871	7.67784661553202
+"GUSB"	9.01272370234864	8.55953705231491	8.71165744735075	8.10210204368962	8.21787698264413	8.91924272264609	8.41578363077932	8.42628618680089	8.08780926920367	8.16656466205646	8.77067122256521	8.03847129030957	8.05953087325908	8.66042599047985	8.14598860878501	8.76574474374143	8.21078594590644	8.92361697511972	8.43901756061235	8.31889167161244	8.15458719650585
+"GVQW3"	6.54019953885146	7.32094319618832	7.69264494203373	7.28485411262604	7.43640655447048	6.66098638980529	6.27487821935671	6.82980821246556	6.98275360447809	7.15125987118476	7.06607427122331	7.10160227823993	7.32608344298512	6.99904053089268	7.31408718064483	7.30713735596718	7.03707304618837	7.05514091771735	7.06607427122331	7.29305327358263	7.22158841297123
+"GXYLT1"	6.01239876692773	6.16056589257742	5.89937959054926	5.7637414832805	6.65489407316474	6.48307831730068	6.01604718048382	5.95740024665317	5.94212198681132	5.89305034700701	5.98089285986297	5.76519957598638	5.28647659757944	5.70574970269132	5.72819661853945	5.91095717462981	5.80867109376936	5.82434417252828	5.77431741375267	5.98089285986297	5.39920610878599
+"GXYLT2"	6.67043200632809	6.89486075151861	7.45778111740568	6.48937658319531	6.87968460463504	6.67842146276415	6.14896471202479	6.44433948070231	6.47269106640163	6.82662186871169	7.17338878419654	6.51001327566123	6.54384333389321	6.41211052144473	6.51090820999459	7.45487384550017	6.00543106915259	7.27833782777003	6.27341668614061	6.95893994251523	6.08642839866362
+"GYG1"	10.8195733481679	9.2756953496285	8.72344414564179	9.25562936636564	9.52348961424038	8.18679304448609	8.94170461469617	9.81355255348802	9.33859085316702	9.64223468962565	9.59498444457173	9.41018412743828	8.75267985887124	8.84124668847601	9.02855996351078	9.23659835707657	9.18489050452503	9.1962169182146	9.72744469867921	9.54120067048439	9.43616527436371
+"GYG2"	7.18251516679081	6.88628577168087	6.69986388061975	6.71507275887842	6.55001238647148	6.04082948227612	6.33357189080751	7.02825758221858	5.8863497011996	6.77921898902643	8.51899434136505	6.96080309797513	6.35477866615777	6.29079601809376	6.46383951663829	7.04953179246163	6.63558780475229	6.49257170977038	6.76162563990288	7.0839875246391	6.41071835591001
+"GYPA"	3.86017555476865	3.98331711712571	3.60295758026154	3.903958281097	3.97521665806832	3.89195980156196	3.89080777784741	3.89080777784741	3.79652753982135	3.97262935335054	3.77953698987138	4.00530605716065	4.01805797816577	3.89080777784741	3.89757821862183	3.96708706980443	3.68422586458005	3.73472250181334	3.60790105254846	3.940284112906	3.95165303842802
+"GYPB"	5.99312152152423	5.98800118274755	5.63202277595675	6.05595528638773	6.09298576071621	5.6643490422466	5.72196526555601	5.94011824636541	6.11015633444751	5.98800118274755	5.98800118274755	5.99577538049346	5.84060504020754	5.98800118274755	5.89628136899644	6.12059484398192	6.25501297760515	5.71683164634662	6.02544752615789	5.79744613377742	6.1160083855621
+"GYPC"	7.90409850990833	7.51349392058272	7.11057823454536	7.42858388924284	7.33778262904079	7.79662013855612	7.9584780630888	7.54157748493513	7.3935723286014	7.86147971202149	7.55405922841523	7.4283253968525	7.43439720716735	7.90891095996618	7.56943064055611	7.3464541470706	7.45906773023582	7.36867307635233	7.97445491995302	7.85487805443715	7.60058902483695
+"GYPE"	3.66068101361831	3.83866489390273	4.21919947447858	3.70053358166833	3.83870066698491	4.00331415016206	4.04718594096134	3.78204056874707	4.02539850906667	3.55105437464005	3.83111011583547	3.99550469525468	3.88269032112842	4.25293121963562	3.83866489390273	3.80934113667554	3.74331506407702	3.71412772385322	3.98544605296826	3.63426515569684	3.79317972759277
+"GYS1"	8.8227656201787	8.27050223394713	8.31463793213533	8.08203854614617	8.00217968937302	7.71039248613831	8.18664498738874	8.20470874901122	7.71121426746166	7.81415732781287	8.16468016768199	7.92714902344153	7.69792971452276	7.91797008701608	7.7053361664499	8.25539472221498	7.9331658982771	7.94951504677374	7.68695909145945	8.54631214801584	8.03343277157854
+"GZF1"	5.40385322256902	5.29605752117512	5.72320213915561	5.31122776838231	5.54235602269558	5.66022887319428	5.73971809950586	5.03166708541503	5.28251729726051	5.49425693914144	5.20225174732788	5.09558103160507	5.35513236868809	5.62972580372674	5.09367119026686	5.40210283756454	5.04123806472734	5.73971809950586	4.80419531992814	5.35868515069808	5.22550248183229
+"GZMA"	4.30204897261786	4.34692453274314	4.36448959763263	4.2675888642047	4.03770675592074	4.46469766696102	4.32962461346185	4.01615771219074	3.91897079085057	4.21215188251693	4.12590318330011	4.1329138092326	4.12590318330011	4.12590318330011	4.10036839646071	4.03650694839787	3.84197950290972	4.12590318330011	3.98544605296826	4.12590318330011	4.29309259848881
+"GZMB"	4.5549811584466	4.76037563878461	4.71511129951285	4.74575989624927	4.69663078877543	4.8331608764729	4.7080108074831	4.80002477551147	4.91830252398947	4.70578181855398	4.5523876035069	4.5138735805548	4.89047398508526	4.67917786930457	4.8129922954636	4.58177561857002	4.69663078877543	4.50266118997412	4.53341285813019	4.69663078877543	4.84573608178133
+"GZMH"	5.42725710375226	5.58615642249375	5.57669254732387	5.6464242889713	5.70316539916239	5.93900793816728	6.0724554800178	5.12054704962991	5.63499770487689	5.47745056954269	5.43906801939873	5.18344112673522	5.57669254732387	5.63498913995404	5.37605638508306	5.16453566205345	5.79362137595844	5.26831890220323	5.57669254732387	5.61310944982545	5.96788946441478
+"GZMK"	5.25562308613337	5.09376260344961	4.96900507461759	5.08641435463159	4.80589088998748	5.27240505057373	5.16861465735765	4.99428868308597	4.98498584514345	5.16993912574834	4.89471555415045	4.96848163688626	5.25255474757163	5.45481648940014	5.04180121999015	4.95500692509871	5.06959211468852	4.71410680706034	5.08316977892919	5.33757676048824	5.7613618763475
+"GZMM"	5.47135102127287	5.2414621744068	5.26678312381774	5.41151993645785	5.05149213705714	5.74818354262327	5.57688578728184	5.40673789049228	5.57181526187639	5.52630600852715	5.18978911777857	5.34922402463958	5.66251521389985	5.87834016550968	5.5215992524071	5.11920287201996	5.20233278092981	5.06142132427828	5.50378845035731	5.35703645803351	5.36394874028357
+"H1-0"	9.47613172312072	9.28453533346211	9.57023535122252	9.57174794544565	9.55275608639441	10.1181203839353	9.57838034511738	9.18430018581462	9.48964124679289	9.65002774667788	9.2973670476568	9.5979664623873	9.56448238282337	9.68575103450819	9.51283243958895	9.00122432796755	9.18932237848036	9.42628323455588	9.52958640134794	9.42883073905575	9.33005030971852
+"H1-1"	4.81701128515354	4.84214335556012	5.01329455218302	5.11205809846213	4.94691629397676	5.02911786542874	5.00962885863234	5.08535191716622	4.95933227555161	4.7661535870144	4.85045012664777	5.05342717624879	5.13757247106605	5.17531102246592	4.99033077983837	4.95750688319256	4.94691629397676	4.68321541631749	4.94742361195915	4.88502534619197	4.7096388695463
+"H1-10"	9.23063077758864	9.00773835533296	9.26006205644119	8.88301498093788	9.15577354549992	9.86163618748612	9.04241657715849	8.94329964510586	8.95171883832868	9.47954935737558	9.14403337914707	9.60373577910643	8.91905604004195	9.15229473179345	8.73375606300532	8.83967297685766	9.37572778670109	8.99074434683207	9.27666979302404	9.32445358782635	8.96495965582335
+"H1-10-AS1"	5.94764622194968	5.95070511535684	5.77142465615103	5.83049736420374	5.8202736348574	5.33546078990681	5.91597940585382	5.86053659726459	6.06233702115732	6.18938402037741	5.70230056550291	5.90094050492529	5.90739189760262	5.840803573681	5.84324430367431	5.87105586100844	5.89748982467682	5.73757196709082	5.7968292437169	6.0077724735066	6.02534014943082
+"H1-2"	9.24736847339111	6.42069626505767	6.3931847384393	7.15945256512089	6.40360918031548	7.99334064397814	7.59689766790093	8.37411159006124	7.36709063857061	7.05014933159518	7.27129780307389	7.30444598810003	6.71694416838411	7.57419506248874	7.49758469784629	6.75687616389373	7.21183196404563	7.01714163905033	8.58246813000104	6.87298289888956	6.39487517988831
+"H1-3"	5.69535815683423	5.16701559688639	4.87577238676363	5.18572128860119	4.94545988818027	5.0898363094849	5.36557601351061	5.24766572673362	5.23926879419641	5.29831262366758	5.25236638050803	5.16724166554829	5.24942778271055	5.22209266910451	5.07132118929217	4.96648910702723	5.24838107450495	4.93754484347536	5.34015874053738	5.41217143036067	5.18980075815009
+"H1-4"	4.54751080496412	4.35779998709955	4.55685194513138	4.3695309578758	4.46166034850697	5.02911786542874	4.71967681868778	4.57219898803097	4.32869911413534	4.84306417506748	4.50669281658718	4.69125375185415	4.57219898803097	4.42841424742431	4.42446838441254	4.57219898803097	4.60236994293648	4.45718443777095	4.72095426829351	4.63084797146707	4.57219898803097
+"H1-5"	4.27221403061728	4.08193599403084	4.17473870743599	4.17953429494828	3.913039118645	4.51741766012959	4.66020066663136	4.08193599403084	3.82445593290238	4.0427692797608	3.92839298664947	3.99290102841952	4.08193599403084	4.6020542647318	3.95167710244612	4.13783391285827	4.00376096856764	4.1665154462653	4.13707529215182	3.8429679640953	4.09099344179538
+"H1-6"	5.18180113287024	5.15282105175538	5.01800767320946	5.5558305382718	5.2361259682506	4.97765148771445	5.38473885608353	5.0673993070238	5.35354354890571	5.17337570930437	5.30449684916867	5.14893176783778	5.12647571400497	5.43178558483881	5.36837515483766	5.40806365155992	5.29733802671884	5.43745645865417	5.26265897708434	5.0103519809391	5.22295006009892
+"H1-7"	4.49825201709702	4.33759439838426	4.36200934167334	4.82902311276535	4.34481825884788	4.68705082443226	5.25768847322496	4.34227119376949	4.81834999646584	4.66124087142173	4.47561599732325	4.43362470288379	5.03450045036237	5.06924957959097	4.84654751065466	4.76637054953869	4.76286990190465	4.30264882780194	4.68719395686684	4.81398855704487	4.70258006507769
+"H1-8"	5.71909090198624	5.73092132660703	5.63689968223466	6.01088454680699	5.4839125280704	5.83773264272308	5.78944851898691	5.66594764815308	5.74309896510534	5.76983950774419	5.68381254252438	5.94816098964002	5.90739189760262	5.8269247647263	5.80045555249742	5.7637414832805	5.87142106623549	5.56043254289005	5.92375403441987	5.55780533119367	5.52215685638603
+"H1-9P"	5.11842952834911	5.09275815509542	5.30196673642849	5.43495654007932	4.89985641511987	5.95447179382991	5.78154915337336	5.21769520602863	5.14785649165567	5.35613241605432	5.13161964584686	4.85097001084544	5.62011295552662	5.55252983545943	5.30196673642849	5.26944460357011	5.25479124477511	5.28738800297537	5.53951149170034	5.27766029856314	5.11296582243659
+"H2AC16"	3.19949617044599	3.15188936258473	3.05499997896235	3.2371083959586	3.10470728954957	3.3122478044783	3.82986738051436	3.17062530007647	3.31502123905516	3.12525862108246	3.19974090533624	3.26240243896096	3.19974090533624	3.59858076812953	3.32695566235675	3.0487871251965	3.17013667130151	2.93670581510928	3.21966980882433	3.16671937950104	3.00687812636949
+"H2AC4"	5.36657114340695	5.13655426054924	5.17317900917948	5.37371873125276	5.26506108208178	5.57998397985456	5.9831695254962	5.50176586872485	5.65989577002354	5.47947970662725	5.36804674541239	5.52806230097152	5.41666601868708	5.56529694117036	5.49331517999895	5.32550674086003	5.34017014885878	5.37522421249729	5.65447772833012	5.30696468387396	5.30611771507685
+"H2AC5P"	5.18801607291426	5.29115639572597	5.34176995459734	5.70750606593993	5.17164239700485	5.20630945006908	5.92842739347318	5.38502609852239	5.58568098948111	5.65154007325471	5.33515563141687	5.66364177276348	5.59381084755292	5.7333449653039	5.50588732587075	5.39993700872053	5.26766210204047	5.44674976970599	5.6038505544098	5.45623426780368	5.65836606128853
+"H2AC6"	9.28130918077995	7.83495614613031	7.56996911095771	8.49746347284326	7.6441895950678	8.85437609987205	8.81089333904395	8.90820476876704	8.24976212743236	7.43978180465568	8.48060516277935	7.61664209698561	7.52128625567379	8.41043888594782	8.77147535321813	8.90189216481489	8.3024727340235	8.93750794486282	9.23601225101891	7.84223911570746	7.24871493921418
+"H2AC8"	5.94752371605839	4.15377405330661	3.76486884170549	4.14131059315062	4.00799882080335	4.72483778433901	4.47905244625142	4.57866776023642	3.90431283488072	4.45950869194216	4.6783379959243	4.20383274238863	4.19615902948143	4.3703964778965	3.86213844367435	5.33975767387844	4.12594424097285	5.14156104556523	4.56256910994027	4.41644281758322	4.23496205122873
+"H2AJ"	8.87845485823682	8.02944011426101	8.01381969906894	7.79508397031053	7.96412722608357	8.71109194419448	7.95724821834185	8.13174311702022	7.75582854309832	8.19502141675397	8.40723888292376	8.136110957715	8.0106761450158	8.06082056858922	7.89759449135179	8.5561769379794	7.85475811652112	8.52958909589195	8.28771359907959	8.15482845919458	7.76977546574479
+"H2AP"	4.08665396342117	4.31545901166501	4.47378607843457	4.28776005466349	4.446407686921	4.43604053211533	4.33582872699864	4.2727574230888	4.08175936887135	4.27130034685857	4.16095216646057	4.2947976575029	4.2947976575029	4.29938893389525	4.60432838805109	4.34057268666813	4.25118691992177	4.17238415121067	4.18491057545403	4.19958598575789	4.34573954342246
+"H2AX"	9.84484835265209	9.12979080394976	9.29547310308912	9.55176578744146	9.1536425217213	9.13460002379243	9.7165928544512	9.45702841747396	9.39987295622594	9.10426269525888	9.49275302466797	9.11108190957529	9.48004027850477	9.56179893662377	9.55737681090243	9.52590197274946	9.10639265821477	9.59159468817759	9.21608450216634	9.27571201912987	9.10493421344924
+"H2AZ1"	9.38789092801655	9.09817354294323	9.00577536596262	9.39189396461607	9.69308270435534	9.1841388637728	8.99955510891123	9.53983136310155	9.94297302505903	10.0240868156424	8.92526189556944	9.79874307754705	9.58738717784855	8.94906221921051	9.91631305598853	8.91852296024067	9.50345888299004	9.61191432065296	9.63668752936793	9.6898163306155	9.727594009117
+"H2AZ2"	8.36331994307034	8.4330667409476	7.85483625389397	8.12840237171863	7.83642346947338	7.22007268484426	8.53262279234532	8.61183614636501	8.09635200184036	8.05038955512516	8.25681172714896	7.83406991723944	8.19330170987177	7.8630615389488	7.81254418297874	8.1336240866598	8.03060729846867	7.87157920722614	8.17305327765031	7.79750897505733	7.47539701165205
+"H2BC1"	3.40652584589774	3.18322163700311	3.77926162800682	3.27137003018707	3.34215571292522	3.35157792684285	3.51329606772731	3.34215571292522	3.28707896434621	3.34215571292522	3.3091475841606	3.19974090533624	3.29471575438393	3.5329325688783	3.43392209484193	3.28330678046607	3.31288031087041	3.26267207146602	3.50865932827173	3.34215571292522	3.46708262812907
+"H2BC10"	6.0096853783763	5.37351586515674	5.17349128680239	5.79997459996782	5.38354665055419	6.17038775115913	6.33996187742872	5.59085230502158	5.71630922002701	5.70881492160149	5.70881492160149	5.78687571725285	5.6101751186666	5.65151745516643	5.62824845339433	5.70460944584605	5.51138219916626	5.74081310409504	5.94364735952917	5.65394908770553	5.53428166748762
+"H2BC14"	3.54818009962792	3.64883383175346	3.48407066612822	3.93282021788504	3.58991655022805	4.17116348859198	4.07884002277608	3.68879486129105	3.71031846596918	3.58930426645521	3.51214305938609	3.73743327444838	3.87756837577787	3.9687318705167	3.45251187934773	3.58274735485166	3.77860717842997	3.35718884979422	3.67475964875236	3.66952736677809	3.48496989288609
+"H2BC15"	4.64477068849312	4.43997767611285	4.64333024325489	4.80875478206077	4.63205421055207	4.74123373313635	5.15428032441241	4.56761158640773	4.57707875736723	4.65737708150799	4.45312817936243	4.53034009934002	4.80741997926397	4.87537740542869	4.25055640720957	4.63205421055207	4.63205421055207	4.7574595423369	4.35039885382215	4.63205421055207	4.68009728779367
+"H2BC17"	3.7432273089973	3.48839375604142	3.33335808592257	3.3911756632259	3.45405775095808	3.69305848859646	3.43263510470346	3.62390352500424	3.65613123524798	3.57311657325817	3.5085323526846	3.52817618016137	3.46539577888413	3.45409836219445	3.48976602942541	3.63273412829402	3.68885292754555	3.52817618016137	3.64190624661898	3.51836514415825	3.5448582959148
+"H2BC21"	9.36331382366261	7.90842547313768	7.91150374607449	8.32410090081778	7.87013789710361	9.03049578013902	9.16861814903359	8.97179420594436	7.7416563653393	7.96906236567735	8.46674408560622	8.1862869829724	7.7835010487079	8.59131074188507	8.40151736617655	9.05121898999409	8.1676476528305	9.12099086927162	9.21418391773896	7.95367776793339	7.40245451531037
+"H2BC3"	4.61284354163675	4.71721641242413	4.696000297731	4.57319416858042	4.84629202843403	5.02275972148714	5.04953889078685	4.61738986277418	4.69751585183527	4.75456672378528	4.79425255002473	4.82676370623552	4.69560360711515	4.75456672378528	4.66890456744321	4.6302473765824	4.82692957764383	4.49169046146477	4.80465039681549	4.85550348615037	4.66565182872016
+"H2BC4"	3.88065774376531	3.76145915426798	3.55297975097409	3.76145915426798	3.85729842395635	3.96716230070491	4.33515023951716	3.88805407455247	3.41222410027302	3.80005852962073	4.4557819538074	3.90721041995694	3.42911056219107	3.60265384864383	3.6070632048014	3.83331122806515	3.57680872577167	4.03979539245002	4.15113244666971	3.51723891288377	3.59828242087394
+"H2BC5"	8.20273684642969	6.59361593165903	6.13879523344549	6.87644965748474	6.72540907508622	7.97137554653196	7.51016436090595	7.93695432827121	7.02777531084598	7.15619821945737	6.88269767285942	6.97298166974515	6.674981096745	7.16635367360154	7.07165212916423	6.83729149202199	6.85670119337562	7.28021998950363	7.56328434020804	7.20298414829903	6.34519765385666
+"H2BC6"	7.08878848688183	6.02157572737164	6.17215678875171	6.46237324866842	6.03564225948718	7.07386692922636	7.09578658300473	6.64013406397778	6.44240148159889	6.10717689997388	6.36013885217521	6.3357377710216	6.37794500718992	6.52735194835126	6.46916697361394	6.65833623757876	6.30388524969293	6.72708814672752	6.81960209538452	6.6571323437275	6.1499073194162
+"H2BC7"	7.29897357338531	6.17696050406203	5.58047814517305	6.44382412447288	6.26686041200488	6.63255560587196	6.84977558905489	6.82566711250216	6.25987057088251	6.58028947945941	6.40699330078817	6.43676442619402	6.34537471048228	6.53842078537976	6.4159466304982	6.41962453073742	6.43676442619402	6.51111798806203	6.89391241714505	6.50761479412892	6.11819141085303
+"H2BC8"	4.95410134687488	4.01427305640163	3.58387896601217	3.78857806228473	3.87956578623568	4.36011478715549	3.99035536912221	4.20353152356448	3.70935556429269	4.10130489058456	3.75657557004239	3.97585583196743	3.97723544643213	4.03310032142638	4.01576890968319	4.37912586485372	3.70853654806089	4.50612241659829	4.23580879659872	4.16218182513142	4.07655324721584
+"H2BC9"	6.24413912888052	4.94209900092375	4.67002778369674	5.4224111023617	5.07168108925774	6.07535469713649	5.61922344475885	5.64337931562832	4.93599257058803	5.38593035564652	5.23370994621316	5.05108007990599	5.28150230773489	5.27803292451531	5.47806439436989	4.96889566655003	5.09852163680722	5.57962642917049	5.57754417027083	5.22820941537117	5.11422174232049
+"H2BW2"	5.05230882365384	5.21650390139968	5.26290474153764	5.36264186697158	5.26427929001776	5.15443159452355	5.36532275695055	5.24922781841897	5.17334566674127	5.40011411671474	5.21863644223657	5.2272095405193	5.37585576961182	5.1055078319123	5.54061995730142	5.04468216119318	5.27816119027199	4.89550325299867	5.05438503319189	5.03276470711981	5.31216502412779
+"H3-3B"	9.61466616592605	9.72829537405602	9.77628641676193	8.98816101901104	9.44245776867314	9.37639040999735	9.40404341689775	10.0319131947603	8.73286765325254	9.21989999096126	10.3312990040432	9.77301984824263	8.9668607608644	9.41097151638847	9.01180904675482	10.0170136275696	8.85523290439363	10.2617652916122	9.04694903458132	9.23065095953927	8.78372869729492
+"H3-7"	3.79543241379416	3.77536635261916	3.70568282553364	3.7906966221625	3.84226232830315	3.70501216158977	3.72432539457049	3.5985855354401	3.8061179212589	3.75136555366454	3.76649585251223	3.67366820679079	4.01250264600183	3.64467199276812	3.71724314579447	3.93624216993702	3.93101703144702	3.61960364268056	3.70430050245711	3.76649585251223	3.83497922146387
+"H3C1"	3.39561743805876	3.75326433852345	3.60273928307212	3.53741376891322	3.44609591284592	3.76649585251223	3.68703283811613	3.69481367875989	3.60546872658353	3.53741376891322	3.53741376891322	3.56952058139466	3.44634274457096	3.5226261140777	3.53932555628666	3.47180402917294	3.53741376891322	3.27437867868625	3.61148755057306	3.61120463303003	3.48435317112363
+"H3C10"	4.45824920760248	3.75297973617232	3.78510865225153	4.06687238153658	3.95979812649378	4.32415278540087	4.15208892540975	4.43116740676499	3.82265032933834	4.02183121547255	3.87565976600081	4.14431482242525	3.68195343973377	3.67515615184506	3.95186996673214	4.22281003715112	4.03138273664237	3.473561329938	3.96683857299102	4.14713712587575	3.96692991219137
+"H3C11"	3.6492136935821	3.66285835396215	3.75714810291262	3.63380446419854	3.73425107147365	4.01095432572056	4.28256842805936	3.7061282657962	3.57658645945772	3.64156060859477	3.58654230165826	3.51458110180683	3.57575387798096	4.09787282677348	3.58339659349704	3.52190777847356	3.66316070253412	3.90111988861621	3.91932091041939	3.66406736825296	3.44882167986092
+"H3C12"	3.90104016052169	4.16875933087817	4.02241235886108	4.04641387963066	4.12350110464983	4.13168966334976	4.17151720864116	4.24487906732445	4.15060322090222	4.15509593612619	3.87526204515951	4.14276088954143	4.13123560107588	4.37947837310224	4.01985125805616	4.33351272725937	3.95315240186401	4.00469379059507	3.7300145389108	4.17031755728172	4.24335112759921
+"H3C2"	4.58111425482261	4.57512919121534	4.67839657451486	4.537699768961	4.46166034850697	4.69636905723429	4.74948446683247	4.537699768961	4.61317173752541	4.09945745107341	4.45987480238739	4.73606307476951	4.76220330398027	4.59592053119123	4.45285854714446	4.43046645638233	4.537699768961	4.61040352536591	4.54476588904948	4.45488914971406	4.35601274283148
+"H3C3"	4.14447517150522	3.83648616889002	3.93557549059217	3.97121830380633	4.09416393825168	4.41533990903748	4.35927358353653	3.99343531395294	3.97074270581039	3.97121830380633	3.68903783983171	3.91762105628788	3.87673939589445	4.11457078724629	3.93783923049369	3.99996260267593	3.81292915585502	3.81292915585502	3.99075758138172	3.88762398763053	3.80732497780591
+"H3C6"	4.19170876567731	4.26006733424849	4.07650652624918	4.38868458282386	4.40422664719564	4.73682951564157	4.05706670830053	4.40760175077085	4.38868458282386	4.39747679358536	4.21864373053803	4.06636337135012	4.41477665599901	4.67250316789424	5.50369557107508	4.52294868143536	4.23761435533184	5.12360241369013	5.40673035022554	4.40590041595131	4.3480991087087
+"H3C7"	3.21256527694911	3.09810171587683	3.26267207146602	3.1863076054547	3.2692690446228	3.24362540408117	3.27946282740407	3.3416939085477	3.1987252310296	3.00858214486632	3.3441691426027	3.41917259397087	3.24362540408117	3.33675097980484	3.38859263641901	3.29013538438669	3.30035628113736	3.24362540408117	3.12654947304797	3.1671234645978	3.27744785616825
+"H4C1"	4.16154891849836	3.61794794236578	3.78486869853825	3.83531539327057	3.48264634684355	3.99663794101886	4.09806347536868	3.86435233999745	3.8079807689442	3.8802357144226	3.80277945584717	3.86263433796233	4.00931519723621	3.61658550737854	3.81338163124457	4.11753871776754	3.81101641313924	3.69001488700201	3.93668319481726	3.99695869809879	3.86263433796233
+"H4C10P"	3.72790305415896	3.57065159798244	4.2523734491639	3.81565229714765	3.71297802362198	4.11575075950571	3.90855238267272	3.8877241200434	3.57877224391697	3.77840740537392	3.67189311325376	3.77840740537392	3.77840740537392	3.97792166721879	3.68589353030658	3.77840740537392	3.74602030446375	3.58389851494629	3.77840740537392	3.54291712105995	3.84746626312461
+"H4C13"	4.98657725210627	5.05868845139605	5.16495948139325	5.22692095359217	4.94545988818027	5.28414070165672	5.64528488438902	5.21989126609426	5.09700909431381	5.17668928276197	5.05204655490962	4.9673455681591	5.16776174638408	5.10828928256135	4.91587379167053	5.06078588591044	5.26676776813541	4.96906525517128	5.19327117243109	4.92015829502991	5.08771944672134
+"H4C2"	4.14431662611653	3.85824968725307	4.20274332838796	4.19991104547153	4.19429929689593	4.15835085745034	4.39646518769141	4.1081890374553	3.98085444032024	4.06140582675284	4.00294424462906	4.07354854009462	4.13145646675984	4.28161615026258	3.96779852709763	4.04389305095718	4.01168724155153	3.91715034676676	4.18441324332471	3.98557849133983	3.80201376722805
+"H4C3"	9.69816412867036	9.58803664745646	9.74356244748117	10.2783563574157	9.8990023344271	10.0466451709499	9.97647059627615	10.1690398111965	10.5549192048515	10.096367558035	9.61722593432146	10.468339346886	10.1891485731537	9.97647059627615	10.5217759605747	9.61861272843845	10.0152258341982	9.40707839184537	10.309873993081	9.99018284453434	9.53768957150428
+"H4C4"	4.48705866497234	4.012417388712	4.19818030628423	4.41571322008299	4.19818030628423	4.2161485677424	4.59465757274443	4.39581435809707	4.51865557316914	4.25335598087696	3.70416719633664	4.25335598087696	4.10709105068324	4.64415186818949	4.51264778719484	3.97840380154254	4.14249801545098	4.16003542608805	4.48175131425969	4.05726521278742	3.99313685384229
+"H4C5"	5.65268135452454	5.31560787295187	5.06901742458509	5.38113574711588	5.2761777748724	5.52767639124234	5.95974494085266	5.2230579341177	5.4164151333375	5.04431936927188	5.7721844911388	5.31244101076243	5.39656535034702	5.25153289830387	5.64476182339663	5.52667493326847	5.43300576023898	5.73883080304643	5.66217673908285	5.37114242575309	5.30717649499863
+"H4C7"	3.38765235499357	3.44153084495147	3.49907232928224	3.38453263758907	3.53750404427259	3.57541676731242	4.2795994744919	3.47298025610708	3.66110851277346	3.46805508577017	3.29519359229089	3.64923189274774	3.49907232928224	3.6922056478887	3.55974947730348	3.4513408358752	3.44936721137912	3.4474808498113	3.50122679111109	3.56865977077065	3.4301360117552
+"H4C8"	6.50755010608715	6.03162511004296	5.69310825893059	6.11885649796751	5.77606904612579	6.07405808004571	6.28210911797937	5.71814774577294	5.86556703233221	6.17142006737818	6.0721949795988	5.70419089244463	6.00329154621593	6.06697886253572	6.58750564871043	6.24174886357698	6.14362453174939	5.94428610433247	6.7240728350595	6.05569867428818	5.76500536145535
+"H6PD"	7.82484214025564	7.82273899187417	6.18402558516731	7.33820724729287	6.45682099703307	6.2768745801624	7.64042320356402	7.32187503077837	7.09938499877064	7.39724847354596	8.10129210614386	7.33533854575811	7.04304358783855	7.43547251522788	6.83612514789352	8.16244051153742	7.40526364548059	6.73436326398708	7.14004663501281	7.60702322642022	7.285601948678
+"HAAO"	6.20133156365651	6.0635623612851	6.06254470652783	6.33378542755469	6.01979460779749	5.98807648167544	6.3643480768716	6.10741669586177	6.22186943315704	6.23383652743946	6.0154521806693	6.15008338693788	6.37185191213557	6.52139203732687	6.18980163052925	6.09434845677278	6.18980163052925	5.9721574541798	6.30795302159344	6.22667677070885	6.12353874828059
+"HABP2"	5.17949106771782	5.45379143567992	5.42210685631753	5.25062115734909	5.3594845763263	5.16391519049939	5.19271587143197	5.22521766139483	5.34820726476523	5.26265897708434	5.16202364202864	5.28135780255309	5.31476168415865	5.18069990024249	5.42547802018471	5.33166123713982	5.36356351161723	5.26265897708434	5.24820497767957	5.05999339069376	5.33027305695033
+"HABP4"	7.67574045953492	8.11843777861622	8.21620571728157	8.07231797130723	8.45549148301631	7.76561193857902	7.55967151312876	8.03234431585869	8.05246769818595	8.49335152465127	7.92940716175706	8.4469984281387	8.35464367089967	7.45408535722352	7.90071506508648	7.75017201339194	8.2415550256983	8.19362677889559	8.19750015631122	8.33314599075782	8.45728239840288
+"HACD1"	6.60739987437618	7.20346614286036	6.78292569137376	6.91473121459087	7.0799559804565	7.25850387169687	6.20517980724397	6.66882527272787	6.76102147727185	7.09588236181357	7.70708092644635	6.96670016881342	6.97783462621009	6.48496402514217	6.93811125598975	8.11123260146011	6.46704530668051	8.50954348757766	7.04354651496946	7.13089936761687	6.86439710309402
+"HACD2"	8.27295694010495	8.26741075834121	7.32074756389387	8.20091213871733	8.09532859961022	7.73604057025108	7.92315157061392	8.29006994359412	8.28543308132472	8.59508373922604	8.80104624466649	8.73821816483848	8.11464693739778	7.45997999585256	8.07316394312573	8.72755591972899	8.35031902208096	8.53082087574676	8.4964946463374	8.56770985711183	8.01646061014569
+"HACD3"	9.50070084271661	9.65879716929513	8.26382065870573	9.47212299425315	9.47071972406584	7.72844941230088	8.60297587542613	9.68172419622766	9.24228494926262	9.81615259736232	9.78840673539083	9.76217815077399	8.70349679915821	8.34680873755575	8.62494566300214	9.860946612872	9.31959663174832	9.46360510515351	9.62854348232254	9.74372157924134	9.49275986980846
+"HACD4"	7.38694361830943	6.92233857439194	6.17298716608557	6.22627769751099	6.670704150184	6.33513107616872	7.24632585384341	7.11238333750742	6.51376009982827	6.53172171655417	6.43605705834124	5.72051044697319	6.99643617084389	7.05582217461457	7.3237677220665	6.37831970222646	6.43731427381975	6.32059048282802	7.16270084587821	7.14726223407191	6.0601368334601
+"HACE1"	7.55339300046078	8.61638551549411	8.7277792314803	8.47913794335233	8.86136763571375	7.72129025979434	6.92163203343395	8.19107416203331	8.52153429290768	8.46397596780205	8.22731858384373	8.66596013211432	8.41938912013581	7.62725751230107	8.34367695067145	8.11951665203863	8.75179157934615	8.74613557566344	8.34284284511089	8.1797026074583	8.51584550979896
+"HACL1"	7.16185335343875	7.25409897767568	7.47281463183056	6.46170363048694	7.51712170751373	6.82632357330451	6.30082291491181	6.96721143167682	7.05786226750633	7.67768639122715	7.28111522857761	7.30776332792075	6.61704390802056	6.65524759580677	6.66899017586946	7.37749281688707	7.25358293426095	7.64786488146392	6.96034866943324	7.59825104304519	7.16185335343875
+"HADH"	7.82481842118363	7.4239657508373	6.97551577470917	7.04600971874936	7.19190875685198	6.08612028907328	7.19804427986575	7.55937834506203	7.13366622200691	7.13366622200691	7.74826846009841	7.15776290802581	6.84027517150967	6.71199850201138	6.85811286326798	7.38109777217314	7.1242773196136	7.57529574393885	7.19223571362352	7.40196869535913	6.51183740174343
+"HADHA"	9.92931325817969	9.21157441205233	8.97825126796711	8.97225162333305	9.03697114006603	8.93388522854195	9.47818412013922	9.63235408594753	8.83132304666164	9.02675655156307	9.57753573886653	8.97982888888125	8.68552113055725	8.9811438051348	8.85836887781417	9.51391246735453	8.86715052061482	9.52467540908206	9.11982903003732	9.07922192021399	8.77993378922364
+"HADHAP1"	6.10069028464516	5.96814479805987	6.01359367597099	6.03088575178145	6.14893618509495	6.52139819977275	6.36999652133162	6.07039354339939	5.97376094565342	6.06622403063689	5.93423003466121	6.10042752997307	6.19666597639134	6.21711448460684	6.07039354339939	5.54862153894291	6.06748006931115	5.74038931011283	6.17300628836927	6.1915162888072	5.92484878288492
+"HADHB"	10.8309630691153	11.0157150058854	10.3297425847159	10.5029152867112	10.3237810214028	9.96218907990233	10.8885763904447	10.8553990865234	10.3534185338245	10.1605694819823	11.0412103541693	10.2698722947009	10.2885841289782	10.3820896585204	10.2846689223046	10.8027568888005	10.1826288126667	10.873279326892	10.6788915307258	10.1332082155894	9.84711435452289
+"HAGH"	8.60366338189011	8.91689069572517	9.4053041722152	8.85170174155689	9.3853548676697	9.07932742379552	8.50018802324092	8.79582931037293	9.06697745065479	9.37391102032133	8.6068918965015	9.14552321749838	8.98436806152482	8.64830453631413	8.96485638831639	8.81121844171334	8.9803010039863	9.33178373287971	8.95775206344768	9.27657876700586	9.1035937935498
+"HAGHL"	7.77562320643992	8.09486002110208	8.12882374592004	8.11639975368277	8.12534572854615	8.46148777671008	8.78048882034201	7.8940409301255	8.19581993004516	8.238637862831	8.03081230932148	7.94784658939018	8.26880791060154	8.28056170430327	8.29424436873067	8.01628745790323	8.07170017929768	8.06610001546272	8.17934689348733	8.15538576360632	8.12882374592004
+"HAGLR"	6.40881704417916	6.69720276557361	5.93861281869472	6.20526926941574	5.90455234040472	6.43889140846747	5.25792293537472	5.54552133606034	5.21453544885944	5.17798400084412	7.58041433206545	5.34384812868842	5.28495275977886	6.13464621552614	5.7731299474693	9.05222793400208	5.90336656775943	8.72684752448906	6.41389000460781	5.15735110274738	6.22436321691284
+"HAGLROS"	4.01661015919893	4.12980827346932	4.24033533765474	4.31736720007964	4.09974370135032	4.21324988787266	4.28783667259378	4.1112004030439	4.07883843400777	4.05020260779862	4.16184197767366	4.18502440913718	4.21738732243364	4.36580094356702	4.09270629151436	4.31676030329518	3.97473698681249	3.86876314126131	4.06798463567644	3.95720175732184	4.01171757155602
+"HAL"	4.00669707967229	3.71135270191997	3.66838617116164	3.90768156398763	3.62160727492543	3.60895433672811	4.0860783224446	3.8041640826483	3.57310008285718	3.53014113122028	3.44997803841023	3.73805975669068	3.74819771928324	4.05530336692129	3.7013240772486	3.47891605565252	3.84162354250825	3.7186960041415	3.92892385591985	3.877505759951	3.56251541050836
+"HAMP"	9.73793408113148	6.65148123200678	6.71033557732942	6.96723225478679	7.37252277881826	7.01823076423718	6.74285559594704	9.48029759823342	6.56703988399072	6.76187490613009	6.68735864145728	8.61823770641398	6.92460194898915	6.93522943034161	6.83935062155516	6.79193483828237	7.91732022961578	6.77798534196355	7.13281259807513	7.12581085000156	8.53679528295916
+"HAND1"	5.44402728662873	5.74582204769994	5.82700421422201	5.86781767619312	5.8237413048625	5.92436993894032	6.12465662773518	5.72675061468007	5.8704121990033	5.40312972587964	5.29604559375312	5.54372214049355	5.94576180815068	5.96164028961232	5.90802577952916	5.79928087847267	5.76479362006281	5.35601627241551	5.5703947514793	5.52071350005397	5.72215933828773
+"HAND2"	5.35136766719477	5.43698259655443	5.88141087500705	5.93147701532761	5.41759730121164	5.87419636646997	6.29113929525373	5.61933450684302	5.50877540190293	5.76125936971348	5.41346896932233	5.46896188787315	5.62557573329605	5.79423704245339	5.82359281548898	5.35744280144327	5.40302289252484	5.46035303865058	5.73843186413752	5.54690364119382	5.64688670857204
+"HAND2-AS1"	3.72368374320758	4.15013591198731	3.77192385700894	3.71144673504655	4.09610645174118	3.92648417823922	4.0189576498362	3.81371803864158	3.87743484457229	3.96809995169707	3.81288717884221	4.20133368464634	3.79299292696194	3.88029130352728	3.76405767277765	3.66076069256676	3.9881828408014	3.8668876421071	3.79937139628014	4.00914661383308	4.00441086620116
+"HAO1"	3.59035006425724	3.37529893542131	3.58946673990282	3.6618985228317	3.6375237364474	4.00291345393276	3.93734113399627	3.66784813075295	3.53863327011966	3.64854623144976	3.50358535029879	3.38203656386442	3.58459142140612	3.66440754366588	3.71724314579447	3.47950718864948	3.74116790297923	3.42040562681778	3.5641002092121	3.71418875784585	3.63611837372207
+"HAO2"	5.37602524525269	5.3673559809528	5.56458709019212	5.60903470094649	5.53284784514368	5.43189875935842	6.10433170748321	5.48840606182251	5.76718980023733	5.56458709019212	5.50816853495466	5.53251659090241	5.57924418088752	5.64160920413624	5.66215250710797	5.32213206040226	5.5681169991221	5.21137427564253	5.56458709019212	5.47719262473113	5.58687854321925
+"HAP1"	4.8800452712387	4.74165641252298	4.95290254920993	4.7803095214113	4.90039012986817	5.77872950452485	5.65073084106097	4.79503879406132	5.11722566185511	5.11089150883475	4.80575358268472	4.93687193279457	5.10457940391344	5.65085972742237	5.24781156337979	4.66924500830998	5.03599033296664	4.84686095818886	4.95943014296011	4.70989098628705	4.92237737986157
+"HAPLN1"	4.8036901224042	5.86951152168388	6.12059484398192	5.58570626875868	6.03214443290447	4.77826563805382	5.12036615559877	5.36654037234746	4.88267408768778	6.00551445651739	5.70585169574238	5.39576317200021	5.45824728724465	5.42410094452146	5.28286362354635	5.58575636709853	5.72865078114036	5.64391144966236	5.13951864006938	6.31946411537033	6.15547996003998
+"HAPLN3"	6.97080050812389	6.90702156110788	6.9738307610562	7.29803098797677	7.14028022584847	7.1216516897761	7.12245996088349	7.09764081641075	6.84271416558299	7.12835634242542	6.78245530162801	7.13081736787554	7.20898516746812	7.12001461836584	6.99442789322374	7.02842676090315	7.24646521367477	6.79574838760622	7.1279264625451	7.07499287768914	7.2448120837062
+"HAPSTR1"	6.6453270991074	6.26244235959397	5.29828009745485	6.6311023905283	6.69860872231552	5.75321377372331	6.50005136752892	7.47434316179877	6.63659922367227	6.71582730294443	6.77240622469402	6.85599683624431	6.88060477047329	5.95281982472789	6.59165107490267	6.73875540615363	6.80341384242058	6.92164181721338	6.71876306722954	6.43544668393387	6.91040200088531
+"HAR1A"	6.16196227203881	7.33395543039673	7.82152121574342	7.51286131561684	8.29351878306683	7.19711348306622	6.40787855118129	7.30417524787425	7.65292620968662	7.85005548308709	6.93901676410462	7.95053053311998	7.72922154827908	6.68627485003575	6.99611758738609	6.64737513990755	7.46039515804277	7.47771045580991	7.36088318645009	7.98181346341077	7.8035194160169
+"HARBI1"	6.13377284921572	6.18639481118674	5.89809704753927	6.25271733059128	5.91970720868359	5.8509976925567	6.18114370246587	5.73787008754231	6.46964488619953	6.36597122489578	6.42015236376473	6.16906694949258	6.22636683374393	6.43647824649377	6.40983556397201	6.5823602558988	6.19570783095095	6.29083953458214	6.29892703654367	6.19109761319406	6.21715667248434
+"HARS1"	9.3751840415973	9.76819867853764	10.1063528343833	9.73799863858548	10.0325789829204	10.035000814814	9.17067856592672	9.45551974278676	9.92345268491866	9.97505643538145	9.36850789040277	9.77334246498987	9.78950485074324	9.54867417527999	9.82139962472343	9.50972480459544	9.85906871364033	9.638949400295	9.75573784843721	9.97831606589112	9.77854029441029
+"HARS2"	8.33560676560653	8.26352661942523	8.43275738741295	8.08216260444609	7.98453811279714	8.01520427261064	7.83532367036741	8.22842728199764	8.03708506732419	7.87789931813824	8.20401558420262	8.17457513645819	7.85383624149771	8.00491114618945	7.93330522294518	8.40956375514858	7.85302832152495	8.51255342671656	8.11895964514083	8.25123756346676	8.00216461497189
+"HAS1"	5.59322863359807	6.23464014973337	6.67027669996173	6.50672772764212	6.35600811600935	6.4158362725478	6.66642557611104	5.99475383174986	6.30559061936075	6.37466507725805	5.90702048972912	6.26329247274965	6.40235518559214	6.23028861006357	6.23909551397902	6.09082304937269	6.50559338981275	5.96340548838191	6.22821746144426	6.6259521040629	6.51617177992197
+"HAS2"	3.85348265851243	3.92442119349452	3.76911540699071	3.79148832378796	3.56771474076126	4.07762294010779	3.83353097716374	3.87819671835827	3.83525645149546	3.68321798542846	3.6258474694284	3.65442674231722	4.16911672958171	3.81230858996463	3.96779852709763	3.95595522927853	3.71588142818247	3.78030156411071	3.64685965513562	3.59980871967656	3.83956107703299
+"HAS3"	5.48443078817688	5.43616204076448	5.2959536581184	5.26098236906956	4.71376840831509	5.33933606031532	5.63209669262691	5.4205152597258	5.75999274188423	5.32584734779261	5.67593138489352	5.26851821760217	5.55686574517891	5.23844467440736	5.77364740096482	5.56458709019212	5.58648466758056	4.64219590565961	5.42524687603376	5.17336381464655	5.44019208416885
+"HASPIN"	4.71328600964163	5.10780236543447	5.06586547205773	5.15466326420646	4.91708165502444	5.33965456827135	5.19990423486256	5.04834442026819	5.26480801590078	5.15954259970256	5.01222029118375	4.86684601775443	5.42428059782081	5.34547540490281	5.17897583377368	4.90122496205643	5.02713791478022	4.63746398970116	5.22758785278609	4.97416452087317	5.12593684319866
+"HAUS1"	6.96200830821654	6.03873517343623	5.9921299835417	6.0291752012427	6.29419446339825	5.97652212446285	5.9030676688141	6.19142142923175	6.3874536821352	6.61834803092162	6.64942964815253	5.68817053237884	5.76435254255424	6.0380125370659	5.86149844891883	6.31140726002185	5.79615118245765	6.65229896830388	6.05303793594105	6.19142142923175	5.77093556332923
+"HAUS2"	8.95474750048279	9.02708161531597	8.73802522456909	9.3286886506022	8.27454512920143	8.93317646257409	9.29617020370343	9.19106519674594	9.37117176765925	8.74504917294691	9.18036980672546	8.78967060776687	9.30564144663544	9.45189993084791	9.65892070282752	8.70089205567334	8.90042763173631	8.20676464297141	9.10194468943846	8.37955310039386	8.90042763173631
+"HAUS5"	6.99638825976777	7.00534708768758	7.12043433685285	7.13641974167004	6.84051351595106	7.56054330065974	7.91664584512277	7.1031999921372	7.13235668962748	7.01714163905033	7.0475251934597	7.20229072586794	7.238241289487	7.38623067049406	7.07574681219391	6.93201297377633	7.1952370516314	6.81630190534601	7.18060384357028	7.13034092767891	7.1923180402788
+"HAUS6"	6.65788956990829	6.78217818427897	6.91495651248815	6.188695818863	7.01991429228847	6.1043623376994	6.16860176442411	6.49521998946138	6.10468477963777	6.2819211351862	7.04654118122876	6.50553974028911	5.51982224960807	6.19393292203784	5.90345417400467	6.93346363583862	6.39976519623215	7.11026035705859	6.14023897614915	6.19312547352761	6.22436321691284
+"HAUS8"	4.99169548668545	4.8798597270398	5.21205682830132	4.98633750869867	5.0489752042474	5.54360411221861	5.27638155536071	5.07792293536569	4.88713180743863	5.08961543800521	4.94830406870931	5.24606808991993	5.45715989158929	5.53472069020005	5.07132118929217	4.75630215701232	5.10018566746132	5.18317423046622	5.08961543800521	4.85293061612862	5.13280623091662
+"HAVCR1"	3.17344818028357	2.92601621185311	2.96845916200363	2.99842016033126	2.98761527559711	2.99223323015788	3.12091614223649	3.09452258420991	3.13645256648828	2.88622552799565	3.00864978011044	3.11015984143561	3.08702483977597	3.2966884750054	3.00864978011044	2.87715018213924	2.97017601883375	2.86200057592944	3.16162628748278	2.94787338002891	3.00864978011044
+"HAVCR2"	6.73472020397965	6.7883880579772	6.11233199755717	6.37521579645485	6.13938049675456	5.93037610642563	6.24878384419407	6.56118704472144	6.71298891328227	6.63685160357948	7.10110197277995	6.49741562861511	6.63685160357948	6.61924671014052	6.5582044756311	6.75101710280597	6.65484947036103	6.94438250869756	6.79736819716079	7.0243807280749	6.99511907454255
+"HAX1"	6.74795538253272	6.84459477813783	7.14568382833006	6.94924679210584	6.7839358052683	7.64578587848562	7.54604326643616	6.84883521075791	7.0143702927684	6.88704968304331	6.65259447829322	6.95423447651816	7.19426511318868	7.47705507994679	7.11573865921947	6.55946328345642	7.05579370125764	6.60131772471256	7.20638253072924	6.87104383400696	6.70170294610165
+"HBB"	12.4751339664299	11.3932454175202	10.4429745113122	9.08305230549388	11.1009878169587	11.9829944802624	12.546180554172	10.8074378454126	10.8927658993445	12.0396650184828	10.383313472407	10.817317529713	8.75566056605001	11.2180451375778	9.67134126709891	10.1165005409809	10.2191689873699	11.0409359728983	11.7289619403669	12.3837045086186	10.628998683819
+"HBD"	6.37821708639191	5.28260338187289	5.066669747019	4.82198163338098	5.28367839140071	6.09359939707562	5.40363322486174	5.11946537805621	5.23305548107215	5.48181423255772	4.83851391392687	5.06546125779088	4.7641704534759	5.35825050966318	4.78872451543696	4.94668755369166	5.20981235130957	5.22025635773318	5.25337636799758	5.41259541915746	5.03712582704522
+"HBEGF"	7.87040242895089	7.77096422193102	7.41067177022513	6.75571646301709	7.43467923313574	7.88124515482468	6.958231969481	7.76087067317743	7.07348853772258	7.00895383845336	7.86533427025394	7.43439756165889	7.41431258561335	7.13345552400609	7.13383063345971	8.4414116877846	7.26769608734449	8.13431211236304	7.05286842435255	7.27545927837608	7.08599003884392
+"HBM"	5.2272095405193	4.71300677064038	5.01219569211952	4.99709087720147	4.84103188113585	5.2012926257387	5.36766259243975	4.80283154950129	5.02911786542874	5.03420142482008	4.56637200528221	4.88270605904175	4.84431414565121	4.88670655785192	4.96847666988846	4.78990336715005	4.99537274489028	4.79299924704733	4.79233974866491	4.98164539603138	4.87451372325363
+"HBP1"	3.93928841446888	3.80772934918587	3.86934335365154	4.08004596885118	3.74758693834702	3.91946724026876	4.20540482196173	3.94847753638272	4.27511120356833	3.70096108433676	4.03719501913817	4.15959144659191	4.23770321180019	3.9341586502824	4.307916057404	3.7986125666026	3.79340624972589	3.78051853566066	4.14527548546712	3.60067530368405	3.94847753638272
+"HBQ1"	5.86055524131348	6.02704397720362	7.08903249044843	6.0159098106838	6.38441413383221	6.4698243983063	6.12346967068426	6.06263274037534	6.26209541680552	6.6538285845756	5.78879431495697	6.0551379944227	6.15290096386425	6.04287483040218	6.30997109772858	6.09328715741747	6.06630590866418	6.23969609076185	5.95441556006135	6.6512862495125	6.1537227172087
+"HBS1L"	6.00602472894063	6.02921797787364	6.42562473452562	6.12482192515987	6.52601277897836	5.66754222934591	5.52123706933166	5.95888275215033	6.07458215186765	6.62529053964376	7.20336022145999	6.75894472939976	6.19602774016754	5.48882022806239	6.68901667487759	7.43605786392582	6.14505941677971	7.88230182980618	6.13434749184684	6.0077724735066	6.22228988082332
+"HCAR1"	3.72050348516029	3.56621627353427	3.71830136976378	3.83353097716374	3.8845850567161	4.15208892540975	3.92116376731868	3.96778981638915	4.02634298427744	3.8510394196318	3.84441081835424	3.66070010476446	3.71707718269574	3.61379664316433	3.84476109570399	3.65643800492748	3.7867013402203	3.52970537206662	3.77786592048302	3.83541617226917	3.83353097716374
+"HCCAT5"	5.69728258879572	5.72445104786291	5.43893560744302	5.87282760041798	5.75999274188423	5.72259148737552	5.94391536230123	5.87832781273399	5.60426723898511	5.64578633019301	5.45551380647741	5.78244636949068	5.75523689548794	5.75134903653556	5.74677614457354	5.88568604368772	5.90528824381851	5.34737406989571	5.38859742447643	5.59898167152309	5.84303967669854
+"HCCS"	7.24856947147466	7.44104416743145	8.32609683941516	7.71556998054599	8.50538720880051	7.16989200787694	7.02823679380972	7.42751376852352	8.04458835200865	8.11043174760796	7.13130747560549	7.74740914644639	7.7758832779009	7.32584229263485	7.93375061477563	7.49089782453163	7.93753207675135	7.96961358340888	7.57313031488265	8.2022704173646	8.16584536409763
+"HCFC1"	7.12492318250434	6.96309138948599	7.07047125342042	7.15764563384462	6.95623852840223	7.84851219529122	7.90657173786233	7.15878348553022	7.0202815291315	7.17763007405335	7.03491369343005	7.17192955460537	7.63122453605066	7.61688217912466	6.98062472784511	6.71899650917076	7.08592153717305	6.82035576313394	7.03014748679638	7.18052978057722	7.02771038350416
+"HCFC1R1"	8.66258967966186	8.75965562304252	9.38448178347305	8.98758019576529	8.92329589965406	9.5810028662947	8.98942394595683	8.9436155382724	8.86156535604602	8.91753265802013	8.814109285701	8.90962283546583	9.25428481873051	9.31725980069189	9.06436122611599	8.31600694548845	8.72250533342912	8.8526716721974	8.84978375647076	9.15848326650474	8.88376230802444
+"HCFC2"	6.694713713582	6.83760911034112	7.29073351815178	6.59581458296656	7.00527936255477	6.29379186601103	6.48385660723265	6.89389707345519	6.5727186075825	6.55468281999552	6.72260176050526	6.65596342253814	6.28816126081896	6.67048998446635	6.694713713582	7.08357745769388	6.49543687714691	7.84194366557544	6.78917784188162	6.63691828074181	6.79646543941221
+"HCG18"	7.50428721225899	7.65987624963646	8.4260906870604	7.79885180444325	8.73379261836353	9.28216110074975	7.64278513569371	8.04406445926416	7.74233770720467	7.56354371575907	7.71494165271205	7.6562558698519	7.89352186685836	8.130947018842	8.16182254194602	7.47918542765602	7.58178466082014	8.27337666754232	7.75260884942195	7.36766848377106	7.54314316106456
+"HCG4"	4.11661272020204	3.93552513439646	3.80263036261248	4.01777053240644	4.13532349014592	3.4684174203376	3.74305196731571	4.34642551270081	3.43001880080674	3.59338514218109	3.58827592027694	3.61450640251358	3.57406788677356	3.6870926604356	3.78335898516093	3.48265315778885	3.51976796907143	3.68544127413031	3.79046601562013	4.20479628536753	4.12761737160828
+"HCG4B"	4.30142832748091	4.27059766256361	4.537699768961	4.00459065457392	4.42494938056387	4.26998747993388	4.33472767137781	4.21484284787385	4.45175493782981	4.36095236039787	3.81063147568587	4.24478607642222	4.31680537726726	4.40588944203854	4.02902103000701	4.35116509155494	4.38868458282386	4.29952188067089	4.2664375292238	4.18723706566122	4.3461177608433
+"HCK"	8.30593291071032	6.52071186964649	5.92277903856234	6.40720831790493	6.63503881667655	6.46964488619953	6.72235439818243	7.50172227116767	6.11599328191225	6.63580085129072	6.52722516937782	6.72022706757357	6.24126008904568	6.47177644844001	6.33469448665331	6.58887896108242	6.05540143217234	6.87194221478264	6.4166332898407	7.67045746979193	7.43147405861108
+"HCLS1"	10.1721970093421	7.90463560919763	6.7525727104975	8.04577874299392	7.71931477337957	7.44770431584127	8.27580253189075	8.75321792958098	7.71260150146309	8.28614410090897	7.3289989918996	8.29311573005784	7.91937239157727	8.79191730776131	7.25582176617769	7.88769383137535	8.15402023009463	8.18337685123675	7.97554201055057	9.3307172130248	9.11311275951996
+"HCN1"	5.86208976773019	7.16249302185809	7.80155546232136	7.21727277053578	8.09356090290151	6.56387409975345	6.43418753288563	6.95434224038053	7.83487516474288	7.81458757054235	6.74448604860018	7.43296154876735	7.63709501267398	6.58448446945918	8.16535312400088	6.65622939710314	7.99681064499354	7.23425475068629	7.47683730478476	7.92182895699383	7.93540707068899
+"HCN2"	6.71254961381328	7.32085823542877	7.40668681705613	7.63285019707661	7.26549842027977	7.14721712419928	7.42001761902993	7.16071792876067	7.7117656856463	7.96122745712755	7.80646289095126	7.91073221433951	8.12128428320159	7.32584229263485	7.35568137200576	7.26282348057845	7.92446375645488	7.36011058869139	7.66808414629917	7.73566806037429	7.97814743241566
+"HCN4"	5.34497109468318	5.32358888523252	5.69185920290015	5.93777872317202	5.8046063198732	5.14687941959263	5.54705532646325	5.4950156403237	5.83310397048331	5.58435872996778	5.45081153424143	5.90487456434002	6.1592039332592	5.79711711719436	5.47238404453623	5.37652702247542	5.77614285286496	5.42926507174689	5.51958178209067	6.443834933189	5.66857383220914
+"HCP5"	6.78749183718788	6.94696810217418	6.84620394815238	6.93584591255201	6.95169973407068	7.15600099385286	7.01840675426162	6.87454432148369	7.09141119352997	6.96007086461822	6.71167319285766	6.92870649311737	7.05000425634933	7.01840675426162	6.89721274845468	6.84715041032263	7.0231325670267	6.82017326344816	7.23008015088392	6.65002520737063	6.96412329829233
+"HCRT"	4.97005152266724	4.97509858820323	5.09008971186654	5.4410332353826	5.46482295388036	5.45839903690747	5.94578515059068	5.0304807837884	5.5416937103325	5.2393295852331	5.09731661829201	5.49577034786798	5.67045652895858	5.28889259389446	5.30774421278959	4.97078882060694	5.55816353710641	5.34122372150079	5.35387744724458	5.24466548101145	5.32056668969074
+"HCRTR1"	3.53056651477714	3.55999179406151	3.58018109567034	3.71445883333758	3.67100443339628	4.16626303324646	4.09835706171657	3.82682861983585	3.84823746883994	3.69581221331367	3.62589837570552	3.79789751493351	4.03764089971375	3.90536732418251	3.83057737385138	3.62365791769611	3.86926823904336	3.58018109567034	3.86231582866019	3.88509171534632	3.94847753638272
+"HCRTR2"	4.92840045446734	4.83851391392687	5.30584098426132	5.22355357646988	5.29733447054536	4.95725619283888	5.02211736940131	4.85508525978128	4.89389981523217	4.76194415673309	4.49767843818279	4.78171980358971	4.87306268682666	5.09892167502584	5.08349566770846	4.87306268682666	4.91098525884292	4.57987657254415	4.86343200748524	4.90630051589589	4.83851391392687
+"HCST"	7.54105177796205	6.79589367931534	6.29610222822562	6.70020110682396	6.55387183278239	6.61899963734308	6.78019296644979	6.89897730642739	6.47574854919366	6.96963431643053	6.71629096052144	6.72913489188871	6.8980788448107	6.98604704312176	6.8291002004217	6.59013291411924	6.60466960552697	6.46434883354255	6.78108845731171	7.25024356738156	7.11600069911224
+"HDAC1"	8.71000746617602	7.52142081090003	7.74892606149993	7.8118669142412	7.35841791629664	8.07953299908928	8.14343680064649	8.11937245700146	7.54073484023269	7.2211513323823	8.13899537010775	7.2789713427138	7.74129088049848	7.95699931849038	7.81371961407247	7.9273901476157	7.37961761951452	8.28954652209315	7.66218506492969	7.44323489879345	7.42439776276554
+"HDAC10"	6.93212741083673	6.92998638636345	7.01236032690963	7.19920667708557	6.81025952601008	7.21414721982182	7.48654906605576	7.22337126532421	7.33946278294444	7.13714350093725	6.94061915709369	7.08621122340936	7.34908549022282	7.23395747540489	7.19833973507799	6.75521502562358	7.0670484764884	6.81477528236767	7.38500508673348	6.8484276988708	7.05409741963725
+"HDAC11"	9.70563970635996	9.74532445650379	9.6502660839735	9.46528734644422	9.21124067025601	9.51373966718417	9.68621940141343	9.5118963715903	9.10974499960254	8.85329948156169	10.1518699546774	9.13459707500402	9.00564171661569	9.38249606074232	9.26456864979498	10.6693602411769	8.98274434259031	10.0421474539916	9.37225652383128	9.1946133093855	9.11273262412633
+"HDAC2"	5.56076598618804	5.80127612430704	6.00779282019377	5.9561693712246	5.78702588948103	5.86831671383489	5.93531899254006	5.89902109879945	6.14117216891384	6.06218213050199	5.65835462275511	5.95377888033013	6.06550653059003	6.08261900102556	6.79957480422258	5.69431856862914	5.88596665655124	5.98614391177247	6.03167535757936	5.89607918896543	5.93531899254006
+"HDAC2-AS2"	5.52560477454462	5.53877296903047	5.23727153227925	5.43387890309651	5.50076182085259	5.58567646459596	5.43570768444369	5.20689348832995	5.43570768444369	5.20664155573088	5.35323426486844	5.36083163948135	5.43570768444369	5.4232458641893	5.43570768444369	6.00240610996634	5.35646961115935	5.69297657179132	5.15613110040986	5.43570768444369	5.51432309468675
+"HDAC3"	8.55224661208047	8.23356859456362	8.38964558932394	8.10216044116782	8.41972702133494	8.07557552828267	8.17653376413639	8.05894663978734	8.33442722183923	8.38710525347658	8.23975777333509	8.0962233765154	7.88738093221017	8.00514140519932	8.0775392824664	8.28592061342308	8.08472757377834	8.25156772080755	8.08698175845976	8.356995301853	8.22884796795702
+"HDAC4"	7.78537738563083	7.4997849204294	8.07315667334538	7.88531376276589	7.81563228471489	7.94706716630341	7.56364994532436	7.73904529250739	8.0684273021924	7.38959184111354	7.51882040681231	7.71198974651339	7.66522894694983	7.51635420282869	8.01709488717558	7.66710851451198	7.80488818935629	8.07127575084034	7.98540179394069	7.75758671477648	7.55128787575671
+"HDAC4-AS1"	5.38980181735089	5.62420460749977	5.57472696451548	5.20325658330814	5.38303573185564	5.77003618481106	5.86402886637118	5.54442204564907	5.5068706260571	5.51630964189817	5.46854998313935	5.64032995254348	5.78217220824094	5.89873219890363	5.71004658729884	5.47031166574256	5.43252763693516	5.7066528269076	5.50076182085259	5.42614736378819	5.53948037178372
+"HDAC5"	8.39826169219181	8.77337013033084	8.92458652575412	8.69384133488533	8.74155177283467	8.85578321875596	8.93802769067261	8.67227512434513	8.32999957592412	8.35715292290943	8.72468826651488	8.76714630467079	8.55715119858925	8.52235607980251	8.38105433681043	8.85962823865654	8.76552345071799	8.62366288048987	8.5312380887337	8.76268337797341	8.61927238485734
+"HDAC6"	9.30968865173023	9.20349372968142	8.88543022986671	8.91624862078906	8.83570326719076	9.31936229124597	8.96616008785855	9.05033716391671	8.82251372194408	8.92340056215224	9.18070575129638	8.91229630546399	8.82947210904253	9.23517336804521	8.57006011992361	9.28419302399506	9.05439480490266	9.37233331109638	8.91907339739878	8.97718599338224	8.85051217918276
+"HDAC7"	7.91415106836583	8.12931494667144	8.19445656613039	8.37547979676754	7.71951218007259	8.83719805954223	9.00305139575725	8.09778012597483	8.21687986781159	8.23638350299791	8.04973847596727	8.32602888502765	8.37254260561906	8.59227528607579	8.3012380017235	8.00052164947219	8.08804119162229	7.7949325933491	8.27957805352935	8.23638350299791	8.16498716215397
+"HDAC8"	7.06593743379584	7.03742199290016	7.50292779854522	6.88309477541589	7.2007832230164	7.20715742593403	6.49875661777403	7.0648566051597	7.30602210247224	7.0901594097549	6.96447129158318	7.28060660789967	7.2551791881103	6.94664248365269	7.13094094985722	7.01062812293291	7.1935055773495	7.31524754523371	7.15410869186621	7.14733831601865	7.17465754662365
+"HDAC9"	4.13557720799785	4.42183815313955	4.5820433685644	4.48210053486476	5.05639740324077	3.82128410138074	3.96649271948611	4.00207394535896	4.48210053486476	4.88548364385296	4.47435305847615	4.73784430186344	4.09066480104043	3.7317899307179	4.1992437887204	4.54526672881298	4.88998509071644	5.36560670806502	4.30524177722391	6.01943638049865	4.82600581182232
+"HDC"	5.64676249775138	5.64142080828429	5.69489943749899	5.87133730838628	5.59024902048382	6.08848137414182	5.87589393883028	5.95993826085231	5.7967317555256	5.78610373658681	5.80056121168811	5.86336612412735	5.93020980713453	6.09111475066689	5.78624721050504	5.68198243645641	5.65409901463075	5.60311639363185	5.60814951888006	5.86681778532749	5.97720957538157
+"HDDC2"	6.91732106481657	6.30222055869654	6.16017602171083	6.48224408444947	7.15710420613525	7.01617388809997	6.42955973830883	6.41352395895034	6.95639695428073	7.01864645917352	6.54818367346634	6.48876273588327	6.95039421449815	6.44030223645939	6.42289413443462	6.88082574079981	6.55070385909749	6.86495889795561	6.67358187224164	6.95758766550207	6.95487684028341
+"HDDC3"	5.20731797503825	5.381916580669	5.65512092059679	5.61781992874554	5.72371549242481	6.2390908262026	6.46435183121601	5.49054869624685	5.76337705307391	5.68046641080671	5.50194785476795	5.82397940097037	5.77001484075164	5.82392721854707	5.64941334404768	5.61781992874554	5.67670584069975	5.56042650638458	5.71519812459044	5.6759526029866	5.67670584069975
+"HDGF"	10.7234642152385	10.2249971655868	10.1063528343833	10.4464773463228	10.1618348671343	10.5106507459817	10.8151193251155	10.5251268785229	10.4563735574296	10.4436020812012	10.4890314538565	10.3763636261812	10.4466890173538	10.638915458818	10.5424349050868	10.2391003345653	10.3614994371225	10.3236961950516	10.5107570517939	10.3131022923249	10.2081841839526
+"HDGFL1"	6.95712221754914	7.14597882845007	6.76722503007907	7.43389930712572	7.14843765824335	6.81603658365999	7.01608049380812	7.10562410308643	7.23573090892828	7.18279748503203	7.04201024885494	6.97728680249422	7.20113366842797	6.92508265900616	7.15954459387439	7.0583051848743	7.25760298978494	6.81511345129767	7.1195963454786	7.04627422532827	7.16646658438506
+"HDGFL2"	7.97479332419413	8.11138237877165	8.36337526141329	8.21262583650419	7.99461328704726	8.61389140787022	8.22726793554214	7.87903062411824	8.2163974877575	8.26838190385631	8.14638767387592	8.23935036726245	8.31013821926429	8.46904014693065	8.22595338094044	7.88258159820034	8.25111738349214	8.22173175049494	8.2935289017615	8.1211210205623	8.22724425090206
+"HDGFL3"	6.47572562119191	7.1639022151824	7.73538213167879	6.80984087036744	7.29248748641523	6.28399020684963	6.70891308858057	7.05303489696831	7.27453410502079	7.39141261362687	7.0038208925016	7.14154412841465	6.74003643246337	6.79015666489124	7.2194841325504	6.94370282585637	7.17579159987223	7.0038208925016	6.81930414705173	7.35046712516762	6.91922969145731
+"HDHD3"	6.86227148206911	6.80236507425787	7.0506534913417	6.85156582345771	6.95372714623039	7.02863082468875	7.38926543939414	7.06384572285181	7.16185335343875	7.32729811041244	6.93069343615241	7.06081115711369	6.93538391776341	7.02615436975093	6.90211622163934	6.800674667315	6.85298122621618	6.71297669127873	7.22868470034348	7.36356397643575	6.94713533981746
+"HDHD5"	8.03332886278109	7.89426191893716	8.30026988168437	7.87304224188598	7.98697151765245	7.95095115802324	8.11838452852106	7.81878059050227	7.96807050486439	7.94946831592712	7.86524513331132	7.65632131838449	7.84814850939515	7.92408654865702	8.09464653895624	8.04604672341491	7.78046272935314	8.40086386875842	7.92469562941134	8.12636731166517	7.88463022505098
+"HDHD5-AS1"	4.90137561167753	4.81117678095575	5.00344934754537	4.75346151363715	4.51561903316426	4.87567602210248	5.39892727679626	4.79814767992321	4.67569487082649	5.03975662195199	4.85092850021845	4.83320051742114	5.00577599214381	4.98942412693614	4.72083029964895	4.98680602807369	4.65678364953865	4.64999206271817	4.82140617585568	5.14670863497274	4.83320051742114
+"HDLBP"	8.11888578185462	7.68998455010372	7.41440129434143	7.33417895658321	7.51464465128274	7.30204825463604	8.11936600981052	7.82595781496679	7.51204243372645	7.95570605280849	7.93921178904847	7.76282491498984	7.54027257126723	7.56090638147246	7.22704443361305	8.13012290601355	7.76719056805529	7.93207063013774	7.62241753313334	7.99115036439982	7.93323477969643
+"HDX"	4.08422980184823	4.42150536303883	4.42764418536644	4.49760484259628	4.75876852975665	4.45305431660637	4.14894719413583	4.49559141291879	4.42764418536644	4.46738482552198	4.0767968760365	4.42764418536644	4.27906775551748	4.42764418536644	4.65808755773841	4.53306569792425	4.44636061417378	4.38868458282386	4.12371811833631	4.59820237664955	4.43918506362719
+"HEATR1"	3.31943013807728	3.94906781070555	3.61709641981498	3.25338419757568	3.60333340333614	3.14158156187289	3.29547383088894	3.48479721291967	3.72208064768783	3.60683511117734	3.35545920687683	3.54020322388704	3.17887210199089	4.06855971000483	3.63129404718863	3.38536862623749	3.33247159087264	3.49945897529075	3.16367633608087	3.19798653208579	3.38931402536285
+"HEATR3"	5.56985179945532	5.94814463447694	6.0268456023735	5.26374565821037	5.52565001152929	5.40492189476026	4.71656633560005	5.23885029699547	5.30570652491595	5.48325978076466	5.67172343782007	5.27941117347017	5.4466563966044	5.13262910846149	5.34790984877937	5.51214527626595	5.30293258943986	6.14599848079411	5.2801440623269	5.31155144205226	5.36883595846047
+"HEATR4"	5.49978628054176	5.51698186140246	5.72289193405657	5.48449806001499	5.37492915520737	5.64927400990398	5.84324430367431	5.39615099633714	5.75376044325283	5.29922963717078	5.14934444705288	5.07899034578321	5.51768274090005	5.44875773424875	5.24658695524717	5.37492915520737	5.22499395603619	4.9030770449925	5.42524687603376	5.00285005056431	5.2465055456991
+"HEATR5A"	8.75948687239964	8.09618510282302	7.73793695346302	8.20483391310134	7.6416303867758	7.65340543772222	7.98628318609856	8.23817324001123	8.22084324799986	7.64476314401549	8.70341543044928	7.06653409741864	7.93868449962169	8.16342570119023	8.16244829882289	7.97433517658828	7.86312298395581	8.47068130195766	7.91038160037881	7.40408347753149	7.62966544433291
+"HEATR5A-DT"	3.71729365384578	3.68612300597979	3.62589837570552	3.71188800326075	3.613523070125	3.70886193023235	3.56990879161595	3.54379810253999	3.41222410027302	3.93530231150437	3.6629710650614	3.6629710650614	3.75465653068184	3.71303340319345	3.65941452257237	3.81657775578213	3.46473986640733	3.55390174164079	3.51923629731201	3.59541953412622	3.67978755270491
+"HEATR5B"	8.39673562159621	8.52445045488068	8.86538088742162	8.42703570787382	9.03241723089305	8.31019659441564	7.73446255634716	8.49873943354638	8.53640976257174	8.67917735799386	8.2079123649053	8.68617900317604	8.33797267916208	7.97528682314215	8.45046097907626	8.60375172251542	8.86594160451534	9.23401839203082	8.406007485548	8.8181407503186	8.64649105383856
+"HEATR6"	7.33723964611462	6.77467075387508	7.40871046671014	6.81110916462199	7.27526508652074	7.19971744203585	7.26417307541754	6.75847005321269	6.7601526106652	6.44005551336292	6.9946691005976	6.62895187123082	6.65557567367966	7.29243646529869	7.14580636431026	7.11676125163026	6.674050250595	7.61055932348352	7.07514636229347	6.73022917959683	6.44981620639559
+"HEBP1"	9.54152499761145	9.31634925406139	8.83377611605388	9.10157291143742	9.01306361694155	9.07672382601195	9.00230172510042	9.45518698917292	9.10157291143742	9.05763602185746	9.49005131694794	8.9270395656112	8.6425815733686	8.97286457222501	8.79385125101831	9.6032390757495	8.83712156001793	9.56709278717737	9.2555505137455	9.11189681243699	8.75946231117307
+"HEBP2"	7.96984961836577	7.50675878505465	5.86031305011571	7.18266395785348	6.89386473213	5.95020380790188	7.43440418407116	7.27665432155669	7.02339269892537	6.86564208259515	7.40944284171757	6.72943208127555	6.79015666489124	7.25539575391146	6.75478387749691	6.25392932936292	6.68047539597408	6.83702606118766	7.06706662685704	6.80927050147998	6.34257484648098
+"HECA"	9.77167270139968	9.34873428003731	9.50441004107289	9.59887776652872	9.56621623785464	9.83850075258174	9.57932747231471	9.65221573751285	9.88656259652692	9.65528473062889	9.28000126679873	9.20922161082999	9.8269154756497	9.6175224279509	10.198185618343	9.49114955797982	9.81481413999903	9.81371740595691	9.85911232504701	9.6777244867657	9.63067534453158
+"HECTD1"	7.19250074502942	6.72205413251145	5.91267678730193	6.60481857182316	7.61703163171856	6.33731578050199	6.38586673202084	7.39235263489883	6.74006052203912	7.74644597401949	7.44349985071506	7.49857624408289	6.49058224959269	6.62991433395531	6.43532010345349	6.97516746539439	6.86151980193235	7.14642397440665	6.74604867621256	7.28039638246115	7.17299114352428
+"HECTD2"	3.54258930478537	4.01204173138985	4.78982710035097	3.3919915707923	3.98976507144207	3.47308406298738	3.2354175521004	4.21318555336818	3.08182350597333	3.39299324307043	3.93666057552795	4.13429985033905	3.20371521937991	3.15132839120907	3.11950823403743	3.88018101555807	4.07024189538443	3.5767543101376	3.60794095986216	3.78174721546232	3.53245385108228
+"HECTD3"	8.88023128696762	8.81950892399007	8.86081037321407	8.57669892639467	8.64885032889993	9.00567448216389	8.80472716494393	8.53951552516349	8.46794752970676	8.51896860152257	8.53649812987882	8.31380580306142	8.82399320392535	8.94842777958861	8.60371361703386	8.77887946430964	8.4301955182685	8.85250054267099	8.39117010521799	8.7872103387242	8.5938753988144
+"HECTD4"	5.12100321577026	5.25246538888668	5.27299610152906	5.22209266910451	5.60270153284929	4.8473905648355	4.97867184889243	5.33111950781254	5.54066257657589	5.43701747971673	5.30244655467032	5.99419680254131	5.19088284358793	5.32875739465622	5.30244655467032	5.13449612325385	5.40623302994701	5.30244655467032	5.22249816706098	5.50226584017121	4.96591274417999
+"HECW1"	5.72122637418391	7.27603829168098	8.00938670456902	6.91950378822081	8.09219770182986	6.98480706591809	5.7877056306703	6.48698975556395	7.71878430418789	7.70070531948895	6.10369027632592	7.43967888025054	7.1587310945439	6.75295521691534	7.56225778859345	6.6991494069758	7.5739770690292	7.43946916384888	7.25153211242306	7.5545289633828	7.373436282229
+"HECW1-IT1"	3.04894132129125	3.15580685681584	3.13504752663617	3.13431202534795	3.07044622866174	3.28083027283621	3.02461630131966	3.06700306799524	3.20094294248512	3.18705390293514	2.98400369984491	3.43177525918073	3.25903798698158	3.17431928442203	3.28644224348912	2.98516209023785	3.21139308617098	3.09312236549602	3.1716330785296	3.26529941268276	3.40299621186769
+"HECW2"	6.94651104421729	7.71391894334836	8.04882382052652	7.07085459778461	7.78533878556536	7.16277009111887	6.69357706146853	7.22664850152549	7.26821193985044	6.83097849840728	7.44053738741866	7.17829431734292	7.07617180509085	6.87073658477502	7.21229531254048	7.85353438831093	7.15189661029713	8.05594752323777	7.03502676512054	7.26138128279587	7.13203595617575
+"HECW2-AS1"	3.04133220394336	2.89823623128049	2.99552447260479	2.81149874358055	2.91419174836181	3.04048422142886	3.04543060447808	3.06768044864602	2.90966369452483	2.88665757492339	2.78642600436068	2.93259893531408	3.11714404423373	2.91419174836181	2.90977404799005	2.90977404799005	2.80298535692189	2.91928741107058	2.85712771492165	3.06059824110185	2.90667490051312
+"HEG1"	9.81783095919664	8.64587771066596	8.43605178891525	8.13936676387535	8.18701297177705	8.75425957692903	8.37631660578038	8.49454674899982	7.983997934031	8.17153628554239	9.05503233840772	7.80323101457713	8.17800291199984	8.84323122510785	8.08976659642705	8.60948452027815	7.8522448724033	9.14552321749838	7.88841879077091	8.38703473752891	8.05630169498467
+"HELB"	3.66198298102561	3.45706803232637	3.46122812912309	3.66847735094401	3.71031846596918	3.7959778899092	3.83890555186293	5.1259115208476	3.50410280808175	3.51715486142976	4.26446083333156	3.59172983713355	3.73638713018236	3.94073243400623	3.63727579742851	3.66216114840214	3.8739361661026	3.59809500003988	3.55666941015398	3.74301434679396	3.81091017287454
+"HELLS"	4.70482982990909	5.55783367150359	5.60505691603709	5.4593040432849	5.36559551496366	4.45621332212561	5.05797695657803	5.50760725846404	5.22039194958199	5.17768874504296	5.09144004582614	5.58002534885462	5.57290936054102	5.19832838185557	5.98195862516118	4.7096954135675	5.24335512163066	5.21175386060237	5.24335512163066	5.08961543800521	4.77144591481972
+"HELQ"	5.57280287593796	5.34846434406251	5.45357207342658	4.80889526440604	5.49588405786343	5.44251249065617	4.86430402536915	5.17401815709929	5.12749112364478	5.38040644704823	5.48527716182221	5.06568228282573	4.891431597517	5.30414423973762	5.14407467893672	5.08364949188422	5.17747311615197	5.91690550124131	5.1442745738193	5.33691139859507	5.00797287875087
+"HELZ"	8.20173241536176	8.31055103816504	8.42998022710361	8.53698027218026	8.14808462843393	8.08213508693956	8.18420957244656	8.2207470490943	8.45629842793477	8.0618026202449	7.99007577748671	8.10648782962924	8.15867978631284	8.3099977483076	8.60146089443462	7.92597339363468	8.20173241536176	8.02054724314377	8.33003449813346	8.14333382044119	8.05993548593205
+"HELZ2"	5.96484748051982	6.2632046381651	6.26032464058269	6.21098490088721	5.92841829917047	6.81567202084961	7.12245996088349	5.95339099768987	6.34732452044533	6.34113877580637	6.12322041675427	6.43209033766011	6.36402631741265	6.57578816941877	6.23974980500736	5.96677809904328	6.34354749572177	5.82695112036409	6.51394891492693	6.1940658503163	6.28728200923485
+"HEMGN"	3.78824398265591	3.85377947980674	3.75330625631425	3.87020920805245	3.91068537295202	4.14235563703224	4.08760134636187	3.84728990367028	4.15475177624705	3.95034105026954	3.84586754756185	3.79916367313348	3.95034105026954	4.34158450180847	3.99301027055182	3.79470878691857	3.90579093801944	3.62494926593403	3.81758562786947	3.90465181327494	3.87888054080578
+"HEMK1"	7.4117645481251	7.1791989686661	7.49501628960005	7.13674480780324	7.03595144421202	6.86004282380235	7.02033601925883	7.3283868781028	6.95451034713541	6.98919954251649	7.43549102260239	7.07762468480343	6.7803455357022	7.27030054289928	7.08863284860513	7.60970103247453	6.76300718918645	7.18956190824612	7.14724347704888	7.35944391773934	6.99216214716289
+"HENMT1"	6.86732397412819	7.31983486011401	7.74904551643118	7.37714769351778	8.09256324831281	7.22656002453593	6.56270037562571	6.8472306816956	7.92880130862349	8.2419503947863	6.83743724288809	7.76462328204105	7.45443182728283	6.88583903439526	7.64487498262321	7.57927227242956	7.51912267076672	7.80882814213378	7.37404825990784	8.12685873731643	7.83563793051857
+"HEPACAM"	11.5575719453342	10.9404680203534	10.9062500042328	10.8800765713535	10.0145327040436	10.4109019504414	11.6105097113318	11.0610215329509	10.8085206884221	10.1451263584593	11.479702068645	10.4017495289502	10.5259699876484	11.2110039717157	10.5187336927371	11.0948514800981	10.3528036335761	10.3515352368042	10.7414032540895	10.3448433485683	9.91727957164124
+"HEPACAM2"	3.03373657251672	3.11800012072257	3.10445188916792	2.95828574999353	3.12231569091034	3.13948880497033	3.09274994418223	2.97489812485461	3.07915781929427	3.03081990692066	3.15455129811678	3.04385858196007	3.00927863671304	3.17071418332123	3.28725372804037	3.28523634803927	3.06318191316561	3.08257374816919	2.99806202802198	3.10083946806612	3.07738093652364
+"HEPH"	8.77924229268341	8.4292509766946	8.14099247789751	8.49271367289077	7.84459866840223	7.09347396177866	8.40537012899946	8.66608439048688	8.16716241634576	7.90762883861709	8.50441769201542	7.48299742438262	7.98585360557167	7.86258946476769	8.28916883635859	8.57706586498404	7.94893089169959	8.16414407311515	8.09931736036937	8.00865220838612	7.50798761024916
+"HERC1"	5.2678729030157	5.36977923333968	5.41099061948878	5.19771357407528	5.93048214449451	5.39256889886875	4.76968755238661	5.27799789783399	5.14785645014479	6.08361367529484	5.77065448157777	6.35930458533084	4.84720514866298	4.73563657601757	4.82177356404202	5.4601896215684	5.70952808333381	5.36405626491212	5.39452591859674	6.20258177055739	6.02267224983311
+"HERC3"	3.81238446367579	4.38056974343761	4.11338175491526	4.0234104027737	4.7842678390648	4.0091563249264	4.26771652449344	4.27144595690889	4.20597573944348	4.75630215779513	4.36734458828163	4.83513612886291	4.12505307424681	3.89972405630544	3.9881025802475	4.0559730211985	4.55061630915911	4.34584336311152	4.30080507619973	4.06114555662778	4.57380219587818
+"HERC4"	7.62738486335841	7.63335817054683	7.62738486335841	7.79930258107366	7.77771238672848	7.06442174276221	6.79524050419615	7.78369994149902	7.76664451087026	7.17420830416957	7.75715295610344	7.53455430852471	7.8686398663505	7.07538699541899	8.12064883384019	7.49883660498542	7.6572345422292	7.98487781257366	7.8512426542657	7.33451918922122	7.66115948620486
+"HERC5"	7.01456378058572	6.16700932713495	6.27278994012819	5.80345739885492	5.96871302412217	6.86691294853639	6.27092707794452	7.1709307535142	5.46492811296119	5.61918913596261	6.89332033151794	5.64326748689049	6.14931660531431	6.57268415213864	5.86477516349817	6.60777308838608	5.81725107086887	6.71412829191721	6.0268456023735	6.00860384612443	5.5388676033323
+"HERC6"	7.43830514030835	7.62573725827202	7.91406571608329	6.94547350286795	7.70083859065493	7.23282852050765	5.89500033321581	7.06434426227853	7.2210707769658	7.50313376935793	7.33720168232655	7.30490288307777	6.87298637099295	7.23183126261969	6.751147711837	7.19063398433374	7.25680105274017	7.40167684584888	6.69070804718006	7.68302908278688	7.49767446357443
+"HERPUD1"	10.0661680997679	9.39911664640512	9.06964267499202	9.64511185652788	9.52895926021867	9.95261930829163	9.88067818504622	9.50655341565227	9.62223737051222	9.69053138501425	9.39802689297091	9.41050267432518	9.81000661836298	9.65603060088288	9.94340032232168	9.53196818409121	9.95011345997779	9.64511185652788	9.83776752001405	9.73859880346957	9.79009743318639
+"HERPUD2"	8.56128757015216	8.13714367421275	7.93494832891415	8.41816743306611	7.85254486639565	7.46361718632638	8.21817996495048	8.58613483836131	8.3271016187738	8.11175931199522	8.64304434826849	8.09715526717715	8.47826469512684	8.14634049168662	8.37975556575919	8.27214078550291	8.20560575194197	8.11793416796049	8.23572270920292	8.02651834975457	7.83563793051857
+"HERPUD2-AS1"	4.77934921258327	4.687848526894	4.74018728699258	4.47813101033336	4.84085592230825	4.51705819168762	4.82614822850747	4.37381413118459	4.48386338249219	4.35549388873306	5.00944833473127	4.47681191525115	4.37901061522187	4.57512919121534	4.77028560489929	4.88734147048439	4.26888142937693	5.10913829215066	4.4494879124818	4.40205216542932	4.44568065816837
+"HES1"	6.43039647424295	6.7594148594212	6.68407179667671	5.48218015293741	6.06679595598489	6.60869648356307	6.19270024529279	6.67100916598214	5.7392217789894	6.19862348038844	6.98589877979959	6.50580469332942	6.34662242223068	6.29432596420344	5.899583955988	6.77865124203191	6.41755486876755	6.01125481621377	6.01011501318688	6.47002246195223	5.69135840098083
+"HES2"	4.54618098428809	4.70433577788227	4.87178155670733	4.91944087319474	5.03989272772781	5.19569570809065	4.99371421295965	4.55519739656134	4.94455899866274	4.87178155670733	4.62534402848049	4.82146817655763	4.92531862667667	5.37775866713556	5.03182556148829	4.88090740994368	4.8732549938307	4.52362871675417	4.85787537255976	4.76764009535909	5.06261598684078
+"HES4"	7.38470935757298	7.06470304300169	7.59023621549912	6.85890637726406	7.07946003027662	7.77934420293945	7.00071101057149	7.26346023322827	6.94251590690524	6.69251377127051	6.81355903709412	7.0532812365462	6.84051653574483	7.0532812365462	6.64397148339266	6.49392226304942	7.29336367154408	6.87490104737638	7.17502061455872	7.38648311284945	6.67765363634045
+"HES6"	8.15100701138387	8.34633521186673	8.08256103497786	8.54664249794434	8.39963936872145	7.78887473582906	9.15889953340146	7.93257251196962	8.24635850728151	7.87836263329222	8.75862670819872	7.99679956368574	8.35400303901481	8.70100653728807	8.47227898325625	8.6904263504324	8.10456841415853	8.38950782145986	8.65791339754898	8.14953627432172	8.26595437382
+"HES7"	5.72397778934548	6.06193348351221	6.24443397539332	6.09894299598306	6.27469306942944	6.6687497101963	6.98604254996509	6.24429093587371	6.24429093587371	6.26525175087973	5.81672241507665	6.48659855365978	6.09897332139506	6.74151246983056	6.09601583869403	6.09128948164166	6.28530470219865	5.86548597009646	6.26325719054728	6.28261873222032	6.38669983454885
+"HESX1"	4.72083029964895	5.01395824640996	5.16361858455273	5.03465158831415	5.14333145179209	5.09485214195208	5.22538820063514	5.01395824640996	4.93219448164583	4.82954253598216	5.2272095405193	5.09115260104911	4.78699365415407	5.14198191693425	4.71041443072095	5.18258175842425	4.8402977116676	5.00075236867477	4.79290451628514	5.09115260104911	4.99695643229299
+"HEXA"	8.48408420328225	8.5707054526426	8.65072235963468	7.99565892152125	8.70398942982424	8.45084370670957	7.82204070276464	8.31026235848156	8.04256508867907	8.59901005426843	8.75582402165607	8.59636028772804	7.83376310218355	8.27015701792977	7.90511055411752	8.68065470873719	8.3389778325423	8.70200015596083	8.32855299346914	8.71461977746867	8.47781482287914
+"HEXA-AS1"	3.65496478429873	3.62054774318819	3.56757202041623	3.65496478429873	3.71971928922431	3.91747881625649	3.53492129791993	3.56763603318216	3.78216190835339	3.50900869928004	3.54127067137852	3.58020721668009	3.71495397484153	3.81641524032163	3.79026732147311	3.5592698339866	3.64123114800651	3.57074874766713	3.7552798781045	3.52110350969492	3.71177613020124
+"HEXB"	8.8824583940072	8.44826563776624	8.5375785609553	8.33882283903484	8.79676139276262	8.47815563175529	8.13878392203652	8.70094456785834	8.68067405033247	8.90986072776322	8.29746184060304	8.62100058926035	8.17101838793073	8.09900659573205	8.29002648635937	8.1773392932251	8.5524132271309	8.75222939580305	8.67211017171377	9.09050672063677	8.79129783347056
+"HEXD"	8.65901421194144	8.39964676889039	8.16554384917156	8.2671579623554	7.89573779041181	8.36503105241742	7.9571199076232	8.20877114067701	8.32445154988269	8.2432307055077	8.54749771918079	8.00806265123508	8.39579376489146	8.58373261663865	8.17653951060384	8.42365907112773	7.97904086695808	8.42389695124405	8.13648252953225	8.17590674388113	8.18295125821618
+"HEXIM1"	8.51865711640948	8.34219095144837	8.38574934127709	9.1109810063493	8.84261230702468	9.16176883158966	8.88541284248474	8.05892677907652	9.15800088587665	8.8678492033301	8.19123953369021	8.31854196050095	9.62505562693222	8.88952171839669	9.33195868769371	8.08924788428264	8.80967297077431	8.71552050648618	8.45561905647903	8.81392372783863	8.76489456779777
+"HEXIM2"	5.62598985329326	5.52138646719628	6.48593700701792	6.0481364844237	5.91334878723706	6.08012439284441	6.1552977942442	5.63484034392408	6.25593783370542	6.22319643247887	5.7755057982138	5.82008395535264	6.38256013892276	6.02681762994543	6.28714743656788	5.77302194765065	5.81179689820394	6.2245645398077	6.07223411777386	6.30311400945276	5.98737603366594
+"HEXIM2-AS1"	6.32661271070931	6.73400008659129	6.98351157803458	5.08534916369735	7.28589908118514	7.25564839614161	6.75768515236162	6.34801649835362	6.33564603813559	6.77014982729426	7.1923501613486	6.11618369792459	5.53681095760857	5.9841263243859	5.47697675442976	7.01126531387527	6.21290287119056	7.10816388959726	5.96774072837752	6.07476582402848	6.00985838976219
+"HEY1"	9.1309165458038	8.83471609763429	9.16917922350424	8.69720265059206	8.96446910407293	8.10931884648319	8.32628437299078	8.6257311824037	9.18760286381115	8.89383527393868	8.63206536458171	8.65959305423498	8.44164162852584	8.15640246172809	8.86955661089109	8.84560515988647	8.94849973355372	8.89122229822573	8.83471609763429	9.20889329156209	8.9242342987312
+"HEY2"	8.26460269063679	7.54249400227844	7.19350372642626	7.06013293882593	7.37689103670203	7.16484403554666	7.4082080303935	7.54986027504783	6.59380341107087	6.82571806762229	8.10010348774538	6.63942943179015	6.81933939656524	7.16573039913832	6.4414833260438	8.62021794677937	7.11554085140586	8.24776669586958	7.00589799746704	7.04421808760954	6.85095877232016
+"HEYL"	7.95042786135493	6.60196082351387	6.75765383114666	7.14646029671392	6.89401880788641	7.99374305924925	7.46955643431522	7.02766545559154	6.16469801058926	6.97625912260208	6.45682900048243	6.97625912260208	6.97625912260208	7.54227232829359	6.62509897439781	6.3160624372772	6.96585487579743	6.69805180474024	7.3378029606602	7.00190825888147	6.91780023899273
+"HFE"	5.36375576033405	5.02762626406498	4.09409535811007	4.762725466642	4.53329769349656	4.42685187629207	4.98941155962028	5.07562902381597	4.87464702415845	5.06844929282723	5.42210685631753	4.72633320947483	4.74484533417507	5.13700393768782	4.87464702415845	5.13094160117325	4.85537279681546	4.47731642829523	4.83913915171645	5.47312134503887	4.86793671072576
+"HFM1"	3.43091025186903	3.04385858196007	3.3371543557198	2.99644910842877	3.1534297909435	2.93265315111108	3.02295889744995	3.12523631803392	3.00399398312218	3.17555334327529	3.27414130156159	3.15132839120907	2.98586326033229	3.15591966760142	2.95748448809982	3.67448235355235	3.06263288897969	3.31554674127738	3.18738362640947	3.15132839120907	3.07823686962519
+"HGD"	4.31299193802971	4.37910854552383	4.37553041969206	4.38263679755108	4.75692898581838	5.0355145058207	4.86019969079632	4.33269975240677	4.56944041909531	4.56746405581166	4.55498338786856	4.57145256342597	4.55248932807664	5.04581744234706	4.7372206520166	4.27942285297502	4.71611028490419	4.43981737324273	4.4206212258352	4.45503733336714	4.48270072296197
+"HGF"	5.55479223716628	5.69577795191179	5.20360434690182	5.61762678123155	5.62008132499503	4.60001649116558	5.08878114033452	7.17569061085826	6.34442749936474	4.91912212229306	5.26265897708434	5.86172663164093	6.47041984704298	6.25023559801711	6.6589745285485	4.60697528299236	5.38855904205157	5.09219655537248	5.35273470666044	5.2656580793409	6.51705853402735
+"HGFAC"	5.38482685440257	5.02911786542874	5.49234518795995	5.31900865884911	4.93944230322326	5.27955191656606	5.80928115655698	5.18472172772501	5.30097962000209	5.13399902724695	4.78685844968884	5.30886902974798	5.59630045248316	5.43300576023898	5.2574430668017	4.85793152889652	5.10516321174384	4.76609309663597	5.44206537007255	5.23872800751727	4.9191919948253
+"HGH1"	7.93692693336446	7.94427560691071	7.79392726221503	7.79432273661722	7.78840355416788	7.66131271141655	7.68100944568594	7.43515376751895	7.59755259730965	7.83176405230673	7.79615696001263	7.36185384510219	7.65878732534447	8.04780644824192	7.53336708569872	7.84810034552408	7.4963799571942	7.73182121860709	7.4057682528375	7.9432861589938	7.86637033198775
+"HGS"	5.40200772814197	5.08671584612402	5.19620469390342	4.94055546581851	4.9825483571375	5.13618193304559	5.35820705427331	5.40649192138123	5.41687494600402	5.37040816393883	5.73967823299096	5.53094945719051	5.21849602695821	4.99438872677587	5.6745472467053	5.21291698027853	5.46143297519989	5.30848941514298	5.55228779167052	5.41388185295081	5.48163851407306
+"HGSNAT"	8.43244633219043	8.26336977063227	8.47012229556122	7.59487847905463	8.37713375909899	8.167568308414	7.49721178312347	7.59540883187217	7.56550535195795	8.36087299098068	8.2858561054668	8.20438869733445	7.35791570568996	7.86445584391032	6.77236429465614	8.35729077106186	8.20930224073389	8.29318906818599	7.5559225691264	8.26944748565579	8.24886018283389
+"HHATL"	9.1220501594379	10.41289859087	9.79306307209291	9.81673700797449	9.82623176153875	9.48840716585131	9.96306825784015	9.34796609458716	8.37346473489673	8.9613824102291	10.9198884765843	9.5826699346328	8.4290801709192	8.82780185745615	8.83245751561614	11.3624973683375	9.73354775301138	10.7484518368943	10.158286795921	8.9374053472546	9.38602792000277
+"HHEX"	7.32084024858547	5.79330059026236	5.02278536256709	5.59848254358687	5.16471387493366	5.93900793816728	5.84152263239713	5.97046041445332	5.56620957568454	5.57809093490421	5.8712566869298	4.86893891036273	6.11401497070652	5.66029925176421	5.07784932713283	5.70840563508257	5.1668815499574	5.69223157943735	5.50559998661764	5.86058490031043	6.05483275021134
+"HHIP"	9.11657865197254	9.45854751785723	8.97373918628765	8.60435526919751	8.65172583881739	9.28153449793734	8.21101526360574	8.42834469842909	7.25787880408807	7.87301648034301	9.86780297256225	8.48901232256588	7.60423302747287	8.68067405033247	7.88367039829599	10.3758245430788	8.27599305966514	10.5375941404462	8.35578601639213	7.60225569182879	7.96306903700149
+"HHIP-AS1"	6.73442535779264	6.94079280014017	6.89835813838221	6.68190999382521	6.76105266661896	7.2603591028102	6.73926698236468	6.35986560670714	6.2765653391011	6.57308326173012	7.18499545295126	6.8349805096984	6.29482555293215	6.91495651248815	6.11768530033815	7.47511419336277	6.55185961931594	7.5370852031357	6.57925993864826	6.33486472787957	6.68133569671719
+"HHIPL1"	6.62684743430299	6.32327795462887	6.30952317537763	5.93653418733862	5.78512372003671	5.71634570444916	6.93709237293528	6.17398388244869	6.49272206608387	5.85773782981293	6.41903290601969	6.16506879893233	6.33898135103721	6.96711657840364	6.84800096828866	5.47888588476423	6.47415847852295	6.38175328692918	6.26061810826384	6.09771761296288	6.09713693329993
+"HHIPL2"	4.27082031547087	4.80530255935093	4.40827564418163	4.86275067385092	4.72790140512572	4.49753931542507	4.6533069696648	4.61552486600255	4.86168517492867	4.61552486600255	4.6170620310147	4.61552486600255	4.76073829219028	4.76893803291796	4.70943969743902	4.75799280259008	4.52729800424102	4.3013411013522	4.38472553599958	4.48552782572154	4.75391176901744
+"HHLA1"	6.86945225789475	7.08334285630028	6.75527238185858	7.26911572611355	6.83091369907621	7.06717999913554	7.19861574069399	7.06717999913554	7.15054919663617	7.29981424522426	6.84460674107893	7.00141516925889	6.99702353694847	7.47712748593859	7.1300088124276	7.06717999913554	7.16932730293292	6.56016822289599	7.10961475516636	7.12799328417176	7.28193154751261
+"HHLA2"	3.63367289478329	3.79909958067835	4.10602520758155	3.7686236235222	3.889838232724	3.99321485246642	4.22628810343076	3.62894938994855	3.81519926508095	3.72421426249425	3.58657035912302	3.79280973472794	3.72222292012234	4.36821331739611	3.49726859257358	3.72222292012234	3.42778829192977	3.73508448069662	3.90357759887473	3.76453982151873	3.78437295867516
+"HHLA3"	8.69602167072597	7.5781265400308	7.78981050340015	7.75034561010046	7.9315926769868	7.44090952961741	8.0095020157884	7.80353671334911	7.19484405756989	7.68350630747146	7.90007755696129	7.4242969549413	7.43209273478725	7.60132923358128	7.15650699645042	8.10406913643209	6.91552570639217	8.02591144695714	7.29018194973024	7.4867566331141	7.19479349497531
+"HIBADH"	6.03563131054742	5.62772746418622	4.91472748724579	5.37354327913186	5.45080999437456	4.68766493101585	5.46388897475962	5.74155136905015	5.23933307840082	5.60453697602316	5.7840238124295	5.4270803491012	4.88948228183727	5.02066152570801	4.96433542836666	5.48005908131394	5.46372489712345	6.07195901934652	5.91536334384264	5.59597805460343	5.06807605248999
+"HIBCH"	8.40587048690565	8.13880901416312	8.27110999487962	8.30713668106827	8.0666346978904	7.71180711394464	8.22586809921009	8.62391501971712	8.21101626896015	7.5061473812756	8.76180447373394	7.84881023408154	8.47087154736685	7.7836203950193	9.12384734359104	8.62175377582342	7.96109934072904	8.874018780316	8.73992620896817	7.66774632832548	7.70048214111021
+"HIC1"	6.05497843713415	5.47747586044764	5.7093787509129	5.84435560196959	5.83848924790529	6.14108906239696	6.54015096247001	5.73650670425872	5.79239561340849	5.75591688752577	5.37623464216062	5.03987685810347	6.06151812428818	6.63936222020509	5.89338324397545	5.52072612866764	5.77897764851414	5.34444039157086	5.82208458424108	6.16539444074156	5.97880950870541
+"HIC2"	7.56259866292074	7.89745726099533	8.08791700704775	7.9089660494229	7.53384674509767	8.08976659642705	7.97458624555428	8.13130201384926	7.76603279789206	7.01901523481679	7.65764710974	7.35798073785758	8.13377468900486	8.10300471560515	8.15707698259594	6.99646704211921	7.62727963870288	7.39647686975232	7.68005757014442	7.38593455136102	7.61516059555428
+"HID1"	6.71476386604245	6.74169050528671	6.5357149923729	6.8169366097743	6.81740975582507	6.90240139598276	6.52820820908628	6.4773564365862	6.47842069575432	7.15368247495926	6.92805133365856	7.27070298114239	6.53896771777293	6.6775488973899	6.54952370480747	7.64388512379385	7.28877595353641	7.79832974717091	6.85501336580433	6.80190290366883	7.18658754490344
+"HIF1A"	10.687263725712	10.5356516228504	10.4666411238671	10.6217386964388	10.5133062996904	10.6593370586933	10.4499901167325	11.0123830330797	10.5676195915188	10.3961788935915	10.330698075252	10.7289932641508	10.8232613725029	10.5716230219223	10.6800270340126	10.3993155727063	10.6912674956345	10.473699906974	10.6196180047092	10.3701231927971	10.6808046305607
+"HIF1AN"	8.0844754476013	7.74215011265717	7.83392972773598	7.77079806412983	7.75919474765379	7.32576724700643	8.10314976379175	7.67136497614873	7.89238829607988	8.01494554610376	7.68206072156952	7.50384173419438	7.55681205995772	7.43809178279008	7.67470085488121	7.85898587158268	7.82593528752467	7.72471797101642	7.68377028574028	7.94739087253283	7.77382289420108
+"HIF3A"	7.3623398227425	5.28097647380516	5.74499822995845	7.55634894958887	5.32540443675725	6.27845956459268	7.6628632714679	7.2496075625672	7.61405369788543	6.53041070159004	5.8704121990033	6.748070034522	6.25483291787151	7.14204793514497	6.45502914941989	5.13500067942187	6.88381066818229	5.7409966801492	7.15418032489813	6.06584563489065	4.97978499506181
+"HIGD1A"	6.06447112088505	7.28664699436449	7.54323764932734	6.8198849799398	7.74136294020681	6.51347904907154	6.16779630811136	6.91624345595687	7.22371035766205	7.57546698780268	6.59044864929629	7.45409192382945	7.22371035766205	6.64018893205768	7.22371035766205	7.11057823454536	7.41124555353583	7.35469100915726	6.96494798565953	7.63345069323571	7.71313639330482
+"HIGD1B"	9.11825274923214	8.12084476993969	7.57999054424517	8.50053432302378	7.56798671180431	9.19569748652902	9.35182310439539	8.61138236196376	8.56418417598156	7.93870581626112	7.83091658440365	7.49365181747702	8.82788154673836	9.43842229877232	8.82015291556722	7.41582066971323	7.91241632643801	7.94675214510156	8.46592615058384	7.5857238812094	7.31805392619262
+"HIKESHI"	9.42027429415271	9.31688794986034	9.23754564200505	9.12090526809886	9.51289433739457	8.96063688144292	9.06520818599116	9.30911125632234	9.38212891821649	9.41277720839394	9.35324572223899	9.32646473020272	9.0658944672584	9.03311844178271	9.44539708362143	9.48720771601	9.04649111794628	9.62151367118143	9.48173965773445	9.51829374283004	9.26340805199661
+"HILPDA"	8.45881107582157	7.8532517995619	7.21375698695176	8.8924413610937	7.71920410687154	8.78902694725801	9.0984546756963	11.5564993928886	8.44323319943192	9.19117814486477	8.0785285151279	10.0653137358942	9.23227524244217	8.9014260077209	9.89825071648963	8.23416683446154	10.9341622944242	7.44039194671819	9.44714114639237	8.6717423084662	9.34550997860939
+"HINFP"	7.62302161300777	7.61052111004727	7.49609419813719	7.46362527508655	7.54782928141558	7.5247295454083	7.47625912385809	7.38454187737772	7.68508413879651	7.37624975782762	7.41750232234912	7.45572102061001	7.49635875783983	7.40793068771441	7.65344675979428	7.86081995312131	7.48226385735867	7.54485878063441	7.58745910962854	7.64046133096628	7.62417113836519
+"HINT1"	5.40504119966116	5.64438233499654	5.83489135196075	4.94936370266715	6.07177277676126	5.60490912838833	4.68403427814401	5.54099380579511	4.5444576391789	5.8046063198732	5.6948645879351	6.28728200923485	4.80419531992814	4.77668052068645	5.33835081662454	5.69114139585555	5.79362137595844	6.02134234437968	5.71677925063901	5.56129690367571	5.72340909342989
+"HINT3"	5.74164050949201	7.13444832965779	6.43534528796271	6.86164198125409	6.69938518195823	5.2928346228643	6.77330844263314	6.77023751328404	6.83608713997199	10.9001188343765	7.56374229594821	7.07399126204991	6.90277279186341	6.80646485758433	6.02830969255407	6.76391894883167	6.36769666744573	7.85843859812097	6.75475303331247	6.47245369591907	7.23754575280621
+"HIP1"	9.34758218802903	8.42890298935301	7.90195468106879	8.44932696988229	7.78733513083398	9.26425906482091	8.24950622556757	7.9762309183035	7.66864998247332	7.12838587750835	8.99692724946978	7.15031683783852	8.08876753623595	8.50062916381383	7.69246540224936	9.60811855824987	7.90959347543709	9.356298556093	8.04691514881829	7.19825331526517	7.42158192947143
+"HIP1R"	9.4842680787698	9.07079442417181	9.25296184405511	9.09506628232992	8.83245732826866	9.68884370984314	9.55998164958669	8.91342158275392	8.71907161685411	8.69870094136618	9.65718153085303	8.47409407648926	8.77131449022521	9.41820068316294	8.65177111609058	9.75226010857908	8.82183672030828	9.64807262771383	8.99197418683109	8.39590750930687	8.67268538860079
+"HIPK1"	7.97123956495241	7.0063108135209	6.73744748716322	7.13720852933177	7.58589497818128	6.47582239497644	7.52106567040862	7.32883665417741	7.80845987941517	7.45279078326541	7.61365605725108	7.54534930584954	7.23383480108275	7.30560340561905	7.3079272549204	6.86926536569357	7.34598880370672	6.99464972246034	7.52197903080015	7.66104535313381	7.05922151376248
+"HIPK1-AS1"	3.79079746131196	4.14790639005551	4.03339028860927	4.22295456602453	4.05131683364318	4.36227110128846	4.51718092586691	3.9920085618623	4.25434093425032	3.89611814613339	4.10803388162838	4.07857360304663	4.35915252674245	4.5793266114045	4.28915931411607	3.87098529499085	4.2975693394771	3.88106097419039	4.29938893389525	3.94088474291912	4.03375174215246
+"HIPK2"	5.3834734035629	5.29842496667073	7.56773102115341	5.11471836961674	7.60546075162721	8.96666672923029	5.73971809950586	5.27903147228864	5.14207060780462	5.18827124638895	5.5239125477708	5.45124121372987	5.41573665768602	5.54490988601334	5.17506244493069	5.57065082260465	5.12030777817027	8.8850185516109	5.46049976254501	4.43713684827044	5.17267616643457
+"HIPK3"	7.53173300501085	6.54886837824092	4.537699768961	6.34722238843956	6.70834614598224	6.15244496644373	6.57459673233685	7.29059839169382	6.53829548925435	6.85982258363631	6.82303612775583	6.97614411607743	6.4391526279148	5.82849522753732	4.67782801545816	6.37500914637341	6.8645417219878	6.68257895229849	6.39011500972867	6.30628470497202	6.98432237045917
+"HIPK4"	6.54042955141665	6.61542959934184	6.26546292912688	6.59383241365608	6.49454044650563	6.40716679316246	6.24324816298131	6.53102071912094	6.71840358454558	6.52515063137414	6.62249009445852	6.3583262055189	6.79015666489124	6.66115052081021	6.70842982641631	6.50979901800337	6.69528918103419	6.4636730424043	6.30017099576711	6.29079601809376	6.69211492199343
+"HIRA"	8.69042962917511	8.66402710329406	7.58311058415677	8.76942424037269	7.95378661185607	8.34121536066711	8.7744509789172	8.59526901068286	9.11590670889532	8.58319534196138	8.56517072107918	8.27814607649984	8.79226793353156	8.86321567777732	9.06869993262901	8.38669805770024	8.66072653221246	6.8112961709246	8.51004683791022	8.70813105037486	8.59526901068286
+"HIRIP3"	8.19337492006652	8.01869786998454	8.0501877825484	7.80718205658825	7.99455565417188	8.51047955064562	8.05062134883133	7.70160993720155	7.66842184929633	7.89572052029293	8.24855956536774	7.82668590670287	7.8312481507208	8.15831506195561	7.63286659808861	8.41826633581792	7.55943679117295	8.33886278919681	7.83586292722563	7.96230843568918	7.79536908062297
+"HISLA"	2.99245884840149	3.0768461069553	2.91661695030426	2.95721256434924	3.28703769404833	3.27754967172217	3.0768461069553	3.08928421494186	3.0652862524635	3.15528386587433	3.01259758578083	3.0724157689731	3.13645256648828	3.15350270539925	3.04727698556754	3.01629705715404	3.0768461069553	3.19818396055836	3.07074345163131	3.15366675641509	3.09856681788914
+"HIVEP1"	6.86441351921546	6.90607034610335	7.26334806491728	6.85331160211737	7.66930826822235	6.27845956459268	6.42955973830883	6.88023386422214	7.084504979253	6.98723945952577	6.94602456420548	6.89777542638619	6.41220714363654	6.57823232036572	6.43811790882162	6.82779995188696	7.11839675661574	7.18245809135546	6.77844234033549	7.23616264752564	7.04671140572715
+"HIVEP2"	7.78264833404717	8.35065055991081	8.86773888773054	7.86510826791694	8.97422234553125	8.15509019047361	7.52349690607695	8.27122495618097	8.44336551006917	8.71229923854683	8.02199915070677	8.95382246484904	7.87827876462723	7.63732621572322	7.96393902493081	8.38320458652539	8.73020818138088	8.44248759852216	8.25192219461074	9.16710608743095	8.90305595647876
+"HIVEP3"	7.18866546354104	7.33124413743922	7.92663321344681	7.87304224188598	7.5834973434106	7.72684064229392	7.90287639441071	7.40146498089083	7.96554476215375	6.87816850759573	7.1823368594283	6.89450644653091	8.30793404667926	7.81266046237256	8.52837172787773	6.99836990181267	7.31006792995638	7.2951026641672	7.46069516863275	7.40671861249545	7.68970017367962
+"HJURP"	4.77200319329989	4.76232416581269	4.71795973287695	4.99169548668545	4.8151193770773	4.93379388096875	4.95130988476365	4.89457993196736	4.94214055155254	4.44438033597572	4.67448495513053	4.94742361195915	4.92789563997912	4.88251740514971	4.85132391265924	4.93779438031075	4.7648337908718	4.60000117526893	4.90333351276525	4.82235892622259	4.8928651677493
+"HJV"	3.38734192229519	3.61054263835115	3.55936057072981	3.75113490603528	3.46019384403948	3.84643021568552	3.95230135284118	3.47639951695996	3.67969641888713	3.72156962898512	3.50558018410813	3.70509595585815	3.89863003803979	3.8125571303608	3.5940220400786	3.63734615191803	3.79340624972589	3.63562814988291	3.76804826823329	3.57311321609681	3.87630978162094
+"HK1"	10.814597558367	11.0381968146364	11.2889289209137	10.9020392931311	11.3992686991323	10.9949663831132	10.8304013273193	10.9706485911524	10.9949663831132	11.4108603654155	10.4928888668669	11.2618581891728	11.0393757917421	10.894327079796	10.8209962889308	10.5099973862358	11.2510797707662	10.7650689651589	10.7611826870021	11.5509103380185	11.3064413191771
+"HK2"	7.38567785573111	7.41869606773284	7.00042202514531	7.45052471306335	7.29248748641523	7.35340271937852	7.98390785036431	7.3991928252921	7.45901376895829	7.65235898350689	7.42667869951929	7.21846895951771	7.56903793919753	7.49277974849318	7.67400286961634	8.23883387743738	7.73611357996514	8.22610727359204	7.7089146284559	7.94451873335463	8.00087051917253
+"HK2-DT"	5.00441589942882	5.01289202727594	5.16304009926144	5.07193223560363	4.95255686030228	5.13695124760187	5.86864318113082	4.9643014983739	5.08498636853799	5.08890708855798	4.99469746188309	5.03510640432652	5.17213962479254	5.05864800471979	5.05864800471979	5.05613837966068	5.02297238788754	4.80732384279972	5.31223632089907	4.97347656955611	4.95943014296011
+"HK3"	6.93908179555992	5.45297498834291	5.6931082589306	5.73586417311183	5.70737562583859	5.86614445116577	6.08316736478874	6.12059484398192	5.91326424675524	5.74090087135608	5.51603890028948	5.77077655281539	5.94704015688407	5.95953240949125	5.82287033003888	5.94355007709028	5.66128153398499	5.76613945298269	5.90957260204597	6.25696309187757	5.82287033003888
+"HKDC1"	5.37301446358308	5.17674023524283	5.12696570757313	4.70835582695797	5.01324354331538	4.43402330470293	5.70003832498952	5.13452973332406	4.79587143579832	4.70474778655272	5.15186389229332	4.81679199974243	4.55674678111341	4.93252838869594	4.80725255133306	5.145177241928	4.62845794251387	4.94676974615674	4.82576670279533	4.95470597988634	4.77878387744627
+"HLA-DQA1"	6.03886939338983	5.36146455080089	5.01927668871184	5.29353784307148	4.89858124554313	5.74437144025836	5.71763679586116	5.80659320737894	5.60102179068854	5.49264146499523	4.80141898935953	4.96103811374027	4.99588360138117	6.13965095013097	4.7132988772648	5.33493772599914	4.93436176547183	4.63995566867934	5.69130258768581	6.49683818507929	7.2964346967861
+"HLA-DQB1"	7.88287719770363	7.09958334522298	7.22920464819639	6.92857228805619	6.96758995375907	7.24634800382737	7.34149796197386	8.37248539873457	7.2797226383436	7.4323172427309	6.78559758260154	7.04744153275044	6.98176324167119	7.67499691888031	6.55367284716421	7.31249094062414	7.29336367154408	6.59589801111488	7.66319201227533	8.07593253044854	8.43380309483227
+"HLA-DRB1"	4.19376948523502	3.40132816255731	3.42235448582666	3.63051133190654	3.09524621714692	3.67781535553008	3.51665060752919	3.72504373796163	3.32795499744516	3.88509171534632	3.21818161083249	3.28567359721488	3.24034728665448	3.39453399850911	3.30961092870076	3.71155141169726	3.2286671418695	3.23997060069131	3.45843182058035	3.52418267769997	3.81903769210123
+"HLCS"	5.77559885793922	5.8574750608798	5.63500138113251	5.61639313999467	5.65786945471914	5.93900793816728	5.30414423973762	5.62873473867109	5.65709815193571	6.21389929079452	5.88307186304346	6.25256561523732	5.59567336455001	5.12906069912838	4.99064785556887	6.29079601809376	5.58149924278408	5.89419472077331	5.62051433354247	6.09103899945783	5.97781824913156
+"HLF"	7.86274905698657	8.89050320663726	8.99324874773517	8.72462363418541	9.52026687540571	7.73338033333069	7.8441566992474	8.76831780376746	9.26245782296071	9.79141552383864	8.50468463944887	9.82549857607039	8.37436360421621	8.01470603847068	8.91288797491833	9.03374569495611	9.38095997890443	9.0183960914031	9.02976422615365	9.88429562481071	9.80792812404855
+"HLTF"	9.1362049369689	9.42602801043004	9.34794380469732	8.54373569825276	9.39090235369073	8.24353427998792	7.75545620410714	8.49025587463962	8.59594904547775	9.02894500468156	9.62733429260105	8.81494956842341	8.38640213081082	8.44314237473192	8.68819974663852	9.49801185672611	8.5373201755949	9.35043726823865	8.82194296756625	9.14153039078306	9.05025400831653
+"HM13"	6.33396050286234	6.43991666268497	6.71190920012916	6.53172214127975	6.44152717818862	7.15144133370462	6.89827212918524	6.58005478709937	6.80667698718343	6.94885009240937	6.4055032604994	6.70697261001995	6.88808083872893	7.05195613559034	6.59332657800798	6.53205019989652	6.66104348057155	6.36493326495472	6.73375017101202	6.69655590036985	6.73636309103584
+"HM13-IT1"	7.12196683775377	7.03611325533664	7.25649111524359	7.15485226699559	6.76514635958238	7.60920330943823	7.31795973090875	7.44047134070192	7.243913901316	6.57728153680773	7.15670329745685	6.90364412328713	7.37457325446334	7.43171345865046	7.66642354033026	6.78187495340461	6.88181818865086	6.83148274634026	7.33042469394062	6.89546907740355	7.05497479383156
+"HMBOX1"	10.0129229113852	10.1166463328018	9.2589692837834	9.6981638259823	9.89606642454021	10.4781494328281	10.0670533106771	10.0169494232877	9.73515544268627	9.61129960923787	10.4443514918909	10.3427547878279	10.1158429039556	10.318998915903	9.87900675361922	9.49554403881112	10.1854332561785	9.49095401152281	10.2577566967529	9.97594871552194	9.98193767090241
+"HMBS"	6.30576424868447	6.24776011589832	6.24861502700115	6.28214573287736	6.29477520023678	6.63237345178191	6.4370171471938	6.20354496268008	6.32813397238984	6.17768634446465	6.04021799828658	6.22528175453793	6.52459339161738	6.6874176723916	6.43084838088542	6.16835691761665	6.12552208993326	6.10890539417486	5.97138733078642	6.16113592832737	6.13262274882572
+"HMCES"	7.41655286418464	7.63013370006086	8.41221984585009	7.56198833696792	8.32348122455216	7.79457095317078	7.47624206417234	7.40526225958668	8.00966294067573	7.99481795676468	7.79457095317078	7.91866058445228	7.75273451739676	7.52121006463871	7.50444199067423	7.60482798125567	8.07495256185105	7.94106264279468	7.48148044149313	8.09304108320019	8.14537400842932
+"HMCN1"	2.90002137391208	2.79348804394738	2.81184425022198	2.69678043099107	2.98242732291282	2.91265242578254	3.18624870628117	2.85620134014232	2.89113689882137	2.9164839593205	2.84992380573065	2.82705608832439	2.8254048695171	2.8661289887142	2.98560856867589	2.89491928051122	2.65298995753808	2.83765267375011	2.80431898975881	2.94282536000877	2.85605986070238
+"HMCN2"	5.13449612325385	5.28213987464334	5.13253582426348	5.15835466027212	4.8261283502926	5.40035732995861	5.50083714309384	5.16085722343322	5.40943381341701	5.1691384169971	5.23088822712339	5.77266810772518	5.53733556783189	5.20058413802008	5.48081934054993	5.15449002089675	5.34256101189326	5.02911786542874	5.78402449875875	4.99164185795698	5.39867021515896
+"HMG20A"	8.0444270686273	8.31602001601921	8.58914738084483	7.95655358894259	8.5242011625395	7.86091652939039	7.30697153401504	7.89586949431534	8.24364752159825	8.51663622607296	8.35112598269276	8.59923246446241	7.82116920469496	7.81626093539405	7.88246724663916	8.33027858851574	8.12289344920811	8.42569116632044	8.01241815365969	8.07697771369962	8.15919642955208
+"HMG20B"	8.68681264131659	7.62481415357113	7.71081924311687	7.6895784391611	7.46493599564205	8.32930382100176	8.75190333588071	7.91292595031852	7.70180264704951	7.37726541847124	8.20466573785204	7.17985050783071	7.7379254604147	8.2391490308086	7.74315956190795	8.15361536955707	7.28680278795354	8.14771383255473	7.93660103394161	7.45699438597004	7.33559325529493
+"HMGA1"	8.63626492572714	8.56820446357707	8.82309580536438	8.68439156801598	9.01974009224645	9.0428148141145	8.97057741015766	8.77604091163106	8.67072373417693	8.92080133869056	8.45215073330891	8.981585054622	8.85063771521572	8.26164060630815	8.36019461688834	8.49454674899982	8.85257952823754	8.50027422497016	8.86141816460135	9.19999603560238	8.96668542719082
+"HMGA1P4"	7.03106965438447	7.1156546139142	7.27656186360187	7.42090461836908	7.02852978453034	7.334664803319	7.71534221966232	7.13175337601304	7.33847647079845	7.25993301432024	7.02374078383727	7.26416484525954	7.42952249115899	7.78547792637484	7.30987193236803	6.99722577952761	7.341463896128	6.89120487054634	7.20890233115602	7.3795149205971	7.34233351439296
+"HMGA2"	3.35030729623954	3.77653653059721	3.71031846596918	3.63834599113449	3.53228052937601	4.16773344768812	3.59035006425724	3.57868967862861	3.5937654792952	3.64849979812115	3.44120538347655	3.57004064286341	3.58117169639349	3.54871458050035	3.53049518214208	3.49682347627045	3.83685417415918	3.35804081522804	3.73065826681283	3.55767394839393	3.85456586572507
+"HMGB1"	7.85934660373126	8.1524207059149	7.95460111998534	7.68222694772346	8.12590103970753	7.94764029092953	7.78520217673873	8.04050207354164	8.03065231736659	8.15773873418163	8.64679499476454	7.92079044029522	7.86152406473377	8.02145954259992	8.26230358521232	8.3126946547683	7.8419397161869	8.70826356794959	7.80065625826195	7.86034652483872	7.85441053428381
+"HMGB1P12"	4.00967676648148	4.22710445270375	4.18766724820568	4.70330590175963	4.35031757883216	4.65104959782056	4.21412427194866	4.22124723627878	4.38611062769904	4.27870300633036	4.12590318330011	4.3858499817178	4.31625215524798	4.43128407332196	4.26941521934055	4.43491748635529	4.20007542990631	4.13779751780523	4.11405844887229	4.47950899695225	4.28909264063505
+"HMGB1P17"	2.72118221372105	2.93510129708557	2.91225247919911	2.95454824764559	3.08387096078253	3.16185757344581	2.98343720739439	2.97194393271255	3.37584993751464	3.00628602528085	2.92125832651437	2.94584716279219	2.99483824906834	3.01449908281559	3.02772274650722	3.12194111937339	2.87473320476686	3.05459016946768	3.04996958396554	2.93959147134526	2.99108786855618
+"HMGB1P4"	8.53429445605887	8.72118636044432	8.34566701385148	8.78081661827562	8.81398548408409	8.53563696197178	8.64228317697095	8.88577840420505	8.68602162444339	8.7949932487458	9.24326096959756	8.80562126768459	8.87622888448152	8.74357743480757	8.87100292141551	8.89780292256468	8.61652909576492	8.81746009312261	8.93884444885501	8.53225948707624	8.78405562499838
+"HMGB2"	9.04291377077538	8.41385525384419	8.61688819402095	8.41425806528655	8.41385525384419	7.59185068653346	8.01410660740906	9.355277627489	8.03322019119408	8.05350662784549	9.06312993475665	9.08570998899418	7.91524309974431	7.74022357713998	8.01806765025925	8.4853303206979	8.53128551611839	8.58954086492991	8.83011409121409	8.32056027840896	7.6225514815148
+"HMGB3"	7.17434813203645	7.51431259276101	8.26924040267709	7.31900924700831	8.10465215671644	7.22887751667864	7.79602701750392	7.60954279835461	7.82436552550083	7.85883325564752	7.43018836155213	7.7814989471628	7.65694138245065	7.58784578518892	7.40512752354767	7.30506757027304	7.68620983937304	7.33742845726965	7.24666880018353	7.86653437615891	7.64950737636361
+"HMGB3P1"	5.83489135196075	6.12500338543641	5.91876155381923	6.00542728393553	6.23422101340851	6.26118011273775	6.06297753572168	5.82287033003888	6.56736368996509	6.34150250751408	5.98599367170892	5.88032732372026	5.87326385536195	6.16715425919087	6.00310177527692	5.99164853307734	6.05396880465002	5.72129083493001	5.95627069372572	6.11860167047994	6.21065878407481
+"HMGB3P19"	3.53563885221081	3.83166573843437	3.92743097022775	3.73770821255976	3.82563827532926	4.42971053126447	4.22123165848677	3.87492854864153	3.85691472881396	3.91255514550696	3.9991363885364	3.79060166183427	4.08317220906595	4.19344172003859	3.94455582282733	3.79373162971553	4.01248668650358	3.94674152144387	3.82355601642961	4.08193599403084	4.08346676796019
+"HMGB3P30"	4.48365312057022	4.60314850531338	4.82036826572403	4.6697021067067	4.68766843985962	5.11053674171426	5.25279217079065	4.67680664139204	4.94500963336493	4.68089928183737	4.61155297713231	4.87677615959859	4.97081341520309	5.02122390479587	4.53132030583349	4.49627387640297	4.52595628418152	4.63469922957354	4.80332353395216	4.6627613741581	4.61738986277418
+"HMGB4"	4.40677877858682	4.0291201995716	4.40827564418163	4.30647937374331	4.23314375641514	4.44781002193002	4.55995512814894	4.21662973650939	4.64339916363457	4.26643738455274	4.40827564418163	4.58452728082229	4.44309286127387	4.48877382414784	4.49025330065245	4.32769134656911	4.41542292101986	4.30403381870724	4.58966286483132	4.00603093232268	4.57878091598903
+"HMGCL"	8.68958664604523	8.44092203182518	8.53066243015485	8.1916892778613	8.52763382488494	8.25550102323432	8.42835514224328	8.36197059448081	8.06089573815442	8.56796534485295	8.68841554809114	8.43659595132867	7.90567416204729	8.10106983610596	8.21160830960561	8.57470144291235	8.23430305111444	8.43384846124772	8.36197059448081	8.44245525753937	8.26250419264146
+"HMGCLL1"	6.58543563419414	7.04672855569649	8.03832743112417	7.29727693403274	8.09212693553972	6.70114005449931	6.54031724797552	7.23144880597117	7.20251173717866	8.25283537564759	7.05005403448669	7.53917047826784	7.11777215035949	6.31984368523976	6.70880857199158	7.11059451558655	7.6467170740312	7.43124951462951	7.42886636265489	8.220926081455	8.08890164138291
+"HMGCR"	7.30558788083143	8.34123898424601	8.62846300831326	8.11921803226542	8.98572853617004	8.05842241734358	6.94605478610101	8.18518033424524	8.05759800789527	8.5392736733659	8.10331989571815	8.82368999342234	8.21682872830197	7.21111264348342	8.56534367568565	8.15283157037044	8.42649572850719	8.80850217604384	8.34879625420188	8.59411313965384	8.80270417156465
+"HMGCS1"	7.04380855391506	7.71834618983342	6.00344460164593	6.65455114174456	7.10757345435115	7.80388599285727	6.65833177363449	7.83962613340369	6.56501156159303	8.62468064681565	8.19305831148329	8.16633694974517	6.95315903904111	6.36519755791748	7.28357849098912	7.81892339761336	7.83218860622351	6.78613546567184	7.36086750949243	7.95298407698479	7.47800073434971
+"HMGCS2"	5.10893086099325	5.32718195583919	5.3973348872181	5.62383705560225	5.36881811113285	5.65966431525617	5.61750432209057	5.20102848764664	5.61958595102667	5.39435734529361	5.09389744093447	5.35100777415925	5.50076182085259	5.60764713594542	5.50214732675489	5.58530136900991	5.3973348872181	5.20945420658198	5.35100777415925	5.36910036533906	5.3973348872181
+"HMGN2P46"	3.30627270553787	3.30627270553787	3.26826890476527	3.30177640592487	3.25005524958584	3.30627270553787	3.45410836961639	3.3934077330258	3.43009236285135	3.0768461069553	3.16810728129145	3.41042032754456	3.31519934313307	3.38020634812243	3.3774318238097	3.45486801994203	3.17881616466981	3.30627270553787	3.22191914134726	3.47769930191044	3.22569488504146
+"HMGN2P9"	6.76679864023231	6.95187284220771	6.90202999576942	6.89061543150962	7.12489698076177	7.07239049060515	7.21555985774921	6.88421008060571	7.0266639741628	6.80469342137047	6.87285289560626	6.92705379217514	6.93923130504113	7.08096150857655	6.68487927571606	7.05827060147687	6.98717779781	6.67274284338017	7.10858839816785	6.81380819262883	6.79566642439337
+"HMGN3"	11.3244633404106	11.436417293857	11.4537216841983	11.4330411464379	11.2494622831986	10.9949762297544	11.2647254268703	11.3016553496879	11.5658706211041	11.0599043605295	11.5306625721906	11.1422182997665	11.2791388831477	11.2821165331875	11.4611014510127	11.251589698835	11.2353938947338	11.3621372920123	11.4431370616074	10.793005352061	10.920770698759
+"HMGN3-AS1"	3.12309301679235	3.31520736056065	3.85976076223163	3.37046238763134	3.2307173568388	3.20438203555246	3.14143706440191	3.2547017463936	3.05078024672983	3.31047588221699	3.2371083959586	3.159886576061	3.43956086997291	3.19292423153121	3.50865292709406	3.30518698890097	3.47298025610708	3.17003487494053	3.2547017463936	3.34625139144789	3.16829649683586
+"HMGN5"	6.2695824894001	5.93970222024565	5.56872713814079	6.02790810982351	6.10994581223321	4.97538983861922	6.07299593904053	6.29430090802031	6.1621448305153	6.01215329238985	6.3723740550605	5.72475628634561	6.22491974757691	5.95879081913166	6.00596735489947	5.50894760059268	5.69833009968051	6.10419299773471	6.20707998792814	5.55554130601401	5.78810120651302
+"HMGXB3"	8.0679190734342	8.30703904025249	7.94850181710508	8.1921907872054	7.86132035538735	7.80558395802657	7.78755061761128	7.8289291398335	7.96041713518364	8.18801845982412	8.14130011811344	8.2347672965419	8.04827880293752	8.12261144200563	8.1288338883325	8.22690530184414	8.35349852071517	7.89560693862707	8.06572811064054	8.1857261256418	8.22391893841291
+"HMGXB4"	8.14711488412681	8.33611129172885	8.72183675841733	8.06369504062194	8.40415388415781	8.74793220779661	7.96889720608671	8.80535079366024	7.87966904318813	7.88471665358379	8.39353810736228	8.2916232762745	7.75582482979556	8.44006839251981	7.85274246881641	8.65197223314376	8.0943390613034	8.74801688144127	8.17432209176619	7.93931334195244	7.83121668953591
+"HMHB1"	3.61486733230043	3.83300341795059	3.50691734638127	3.74660720501306	3.58398256516548	3.85004613540055	3.75786150513934	3.61669611364761	3.76693860647408	3.48065241827476	3.46619548524452	3.79294775028827	3.84232318792524	3.8304876043672	3.73114617266942	3.73650225235769	3.83742338388941	3.55969993101081	3.58745405792259	3.57307082705974	3.82707055513816
+"HMMR"	4.72592749619434	4.95425044453916	4.68974225356931	4.9253282096807	5.02715414089052	4.86984156431826	4.97996265113183	4.86984156431826	4.97996265113183	5.02310601515307	4.48898400895995	4.92707489545405	4.97439714009685	4.98632138249934	4.86984156431826	4.83851391392687	4.86984156431826	4.64798426995915	4.50537936457009	4.98895307165368	4.76863160920184
+"HMMR-AS1"	3.62155556845379	3.53563885221081	3.44383030928091	3.42186978910251	3.71745212341076	3.10105195734342	3.11411988914631	3.52698849064981	3.6518359261231	3.40144427096083	3.20873549744934	3.48402092738772	3.43931507930186	3.51887828186226	3.71523586044304	3.49618556269678	3.57638749658285	3.48401303533419	3.38835062636048	3.36012520161584	3.98342441316415
+"HMOX1"	8.44907560840621	6.81200495881659	6.19787674329869	6.68028949842871	6.53747328858265	6.70455012459243	7.06567700667492	7.23129272334459	6.72112849859792	6.64937194506029	7.12169999937343	6.34948944581183	6.96281735016041	6.98338569483117	7.15568962208236	7.26301052782403	6.62841093704484	5.94645794035964	6.92600368351804	7.15621338208641	7.98590264978307
+"HMX2"	3.97242659595548	4.04700604727138	4.41439533390993	4.10395077015166	3.93260534364664	4.61046419147135	4.33453457668258	4.07684440539468	4.24841382947471	4.10105095536211	3.97423231999547	4.28759097415503	4.3196064530135	4.22228921392272	4.04856350128086	4.14424987338018	4.06541509984852	4.15451915766316	4.11966784898813	4.12846005974963	4.21180687359881
+"HNF1A"	6.5449553929627	6.637341783203	6.62875171226049	6.93962060311145	6.83461688202424	7.02355114508858	7.25552084925903	6.56863468493832	6.7160997206182	6.83127798325607	6.8268952529602	6.99214399357449	7.01640469757026	6.97298166974515	6.66132700485035	6.67437530346023	6.88420492426108	6.51917094596604	6.8323609987034	6.53911552647629	7.0181791179803
+"HNF4A"	4.95274008170324	4.74823698529279	4.82043231223796	5.06160059767642	5.18373139738378	5.35462827573281	5.65266113488068	5.15926293094278	5.09122390903668	4.79842667922777	4.70580087562305	4.75145694930168	4.9365571542669	5.62040139193857	5.02911786542874	5.0030347910474	4.96140229892315	4.56533142128298	5.41067632448667	5.15633302260633	5.01288425349892
+"HNF4A-AS1"	3.08662710938115	2.95443630501723	3.14347369246983	2.90442130624939	3.01865578020498	3.27605695764013	3.04698301428031	3.10445188916792	3.42124686806241	3.04385858196007	3.03506637119856	2.87440590641606	2.89718542166217	3.15132839120907	3.39068804738765	3.0588737849467	2.89572824183823	3.12176453767894	3.05879109208327	2.92420818338533	3.05231373051665
+"HNF4G"	4.17733135510251	4.2029453185016	4.15604339568706	4.0194698179545	4.24141729817019	4.73022516162748	4.43718669798213	4.16816569679323	4.23486872637775	4.30849574047503	3.97412172050157	4.06965423886871	4.12363904859751	4.29604641213646	4.32444314085623	4.01467699650902	4.34634699370544	4.15118863646605	4.07173808574947	4.0477269296271	4.15892744486859
+"HNMT"	9.41796584942708	7.99963188453053	7.3375000329107	8.02978110871569	7.5798126651128	7.14006381276845	7.14738832808681	7.9622323102316	7.58610916252213	7.63321268195457	8.82743580863012	7.22274894828873	7.27989780344685	7.49708034615118	7.64877836540724	8.22751986337405	7.22719999342843	7.90534359554371	8.1337241024308	7.81565119071814	7.39277880061003
+"HNRNPA0"	7.23745747682077	7.31835992299624	7.31835992299624	7.05805003961064	7.82897515123768	7.26630289984044	7.12245996088349	7.24837775004505	7.12394677027421	7.72439315882985	7.34503426778638	7.51799867622817	6.7799872095014	6.61121665449528	7.1266217500282	7.5699261955253	7.41500857176193	7.78233630745078	7.23663602252858	7.81960993242177	7.67927053641098
+"HNRNPA1"	7.55702664893048	7.06690620810641	7.71940199639778	7.04640069276786	7.0752023329254	7.87547935824339	7.07003539981332	7.43000158614117	6.91258576904164	6.49347153773963	7.44156829986435	7.03185209923571	6.99259711175847	7.12301243457364	7.03798875295821	7.44569237941412	7.18753044329375	7.95755216752404	6.80005458067239	6.90181752910761	6.92590914659989
+"HNRNPA1P3"	7.46365173067566	7.42840043739506	7.49943752515786	7.33294828302069	7.40179453377201	7.15747618230044	7.55806055527603	7.4813031788126	7.34706334227223	7.31012914362548	7.72925767974595	7.48258573071721	7.35038169633986	6.99292026698597	7.34135130456854	7.65128598524384	7.37061475549182	7.61255262975924	7.36285693551263	7.40520563986116	7.55244164568094
+"HNRNPA1P31"	4.56120025109918	4.55275635233559	4.64161371017392	4.653751125085	4.55201544693936	4.9646191075598	4.60616897651294	4.5036976065457	4.61552486600255	4.75284463845553	4.50588217842986	4.92142041667263	4.891431597517	4.76481050481927	4.4752576076541	4.50445852890802	4.46211826932035	4.54137198263651	4.64055776710556	4.65968918041208	4.85916502804679
+"HNRNPA1P37"	3.83353097716374	4.01427305640163	3.85497739442236	4.12184285381836	4.06447036827676	3.65969860584382	3.72866921240277	3.93183137431596	4.02904932635875	4.01766870482898	4.15059811279311	4.12395156802486	4.23720554132246	3.8121705103752	4.13787507414401	4.2640816996226	3.90079095894991	3.90850088402979	4.04184230095229	3.8444379640636	4.2104473728546
+"HNRNPA2B1"	8.76131803766439	8.44769892116954	8.50157722896337	8.27199586177984	8.32962040485364	9.24442488015658	7.42871048680333	9.31012307844886	8.04714721691595	8.10926502147232	8.72842268116553	8.80888039131134	8.25639704701746	7.9025764195289	8.49772398852286	8.80445810632844	8.92120835860314	9.31347726110025	8.57066056166376	7.98500845573136	8.36021473385802
+"HNRNPA3"	8.87460298978421	8.99236421546843	8.7065051619154	8.35476437397398	8.86185692943985	8.09490110098465	8.40327825226295	8.90411631542884	8.48497253784854	8.81432064467104	8.84400063311543	9.09589663899873	8.40515776186737	8.24280606792126	8.27267612552461	8.9153286009435	8.86397324489066	8.94284148104486	8.66517405710423	8.96988180068842	8.9241237081093
+"HNRNPAB"	9.65242583664439	9.3483127530946	9.45244690612134	9.38474253181175	9.53693223440985	9.58418466515933	9.1733582812083	9.34662498959734	9.55685811011206	9.6498380176972	9.25203304421122	9.2466228576422	9.75607567236102	9.3547351260524	9.55836375380448	9.53392066739443	9.18930629202452	9.6608557371913	9.4372612346752	9.73147927927865	9.68017082895736
+"HNRNPC"	6.9992193013118	7.12946247181664	7.46337974406946	6.90013453281731	7.45105589444585	6.65965455148666	6.71673648413376	7.25084828785436	7.13081736787554	7.28448524851472	7.04721059227133	7.31064951822926	6.94304191476875	7.01289236700537	7.06942238406868	7.20291551514744	7.33657291933824	7.61204619627016	6.94840355886823	7.14169961495611	7.19331784711954
+"HNRNPCL1"	5.52467012466464	5.59985222467421	5.44969832233166	5.54967266117274	5.51920513240631	5.85392290018505	5.50646639525299	5.49260956796786	5.76287076720072	5.61469997438784	5.54447134807571	5.38804490601242	5.93576658365212	6.06405377808297	5.60432623019088	5.57077401970817	5.71179603943988	5.32044159804188	5.59419900542975	5.48781535187459	5.67904022724629
+"HNRNPD"	8.04474008153126	8.11969974563906	8.11506978782445	7.67616572999714	8.37419928768363	7.47467619317858	6.68229965290382	8.16635641638842	7.84669569356626	8.26435958718921	8.12071790374646	8.19596521233813	7.58826101398046	7.10262816531814	7.45495212487114	7.79971336028377	8.01449019778341	8.43423118757275	7.67530177408468	8.13018310113484	8.23744600737698
+"HNRNPD-DT"	4.55190905325081	4.55938711575797	5.05354470600486	4.65358662809589	4.59754647115389	4.81564760260413	4.31750181238641	4.715358520815	4.47902244008356	4.55076195570615	5.12465864025732	4.69693463496526	4.61883663123698	4.33900830999823	4.70346587782994	4.7361079567315	4.54330576338753	5.26337647948189	4.50234011015113	4.30318717209956	4.49593629524644
+"HNRNPDL"	8.41000271343072	8.479365097402	7.95683840486397	8.11699452990813	8.55002063336392	8.02978110871569	7.26913220896903	8.57442152018423	8.01465515842029	9.12368639781219	9.17776238496634	8.9539591209346	8.08192808105176	7.67427056488259	8.04806603649241	8.67715390175339	8.42274587570272	9.29628870408387	8.19775775102118	8.1694533367764	8.7118596063903
+"HNRNPF"	8.15318269139901	7.74527879888598	7.46237008877078	7.96681817233645	7.77424199521321	7.81714803985592	8.19716694422635	8.2096801513127	7.77894088654642	7.9192970605899	8.26878969759157	7.8764405675398	8.12576720960226	7.91964110747761	7.84851219529122	8.10933759630804	7.64490234891668	8.21242014637405	7.9669018821491	7.53476964248472	7.90464752663843
+"HNRNPH2"	8.90790408501313	9.24299798413402	9.40198031407824	9.42936972033614	9.41693682891355	8.27220544764863	8.41306587210627	9.23241094548476	9.27058116162929	9.36369424559011	9.37245059533476	9.49434384141733	9.2596023495136	8.42221093311452	9.15125937750702	8.99429625961144	9.29271416787321	9.31735949763143	9.21872218473499	9.13767509071958	9.40687686687817
+"HNRNPH3"	8.68115097338809	8.3437920826622	8.01177440537962	8.7862512004924	8.05210979285369	8.57888992618527	8.72995366268417	8.8709158118883	8.52709038091983	8.08833574592377	8.84625541111936	8.37258079217339	8.8362504115281	8.34461734354155	8.60866472232805	8.57213727132787	8.57213727132787	8.64301926028399	8.74559191021198	8.1161237186465	8.34369680162444
+"HNRNPK"	3.0959515226303	3.10521770418707	3.05299949814711	3.08856443004594	3.05325944574819	3.3568813450562	3.33617569861211	2.84966013688478	3.27716306207192	2.89572164551417	2.99273596565666	3.07838238089263	3.04385858196007	3.16156231234635	2.89175400017792	2.81723092196991	2.91552644748954	3.00312309023314	2.88252590120543	3.04385858196007	3.04385858196007
+"HNRNPL"	8.85737129786841	8.95191039209827	9.17515787730296	8.83690107311195	8.36091221711326	9.0276907634457	8.60487907656805	8.621206065823	8.33815991922208	8.16774359125052	9.04835874151792	8.16578920330294	8.76506521535215	9.12142601664462	8.68886118565555	8.85359341598831	8.29180184124088	8.83987133707446	8.83982291977538	8.088951711998	8.35363528370826
+"HNRNPLL"	7.5964602002798	8.2695531982946	8.65509747966568	7.75197226841611	8.44404072337416	8.09439675900943	7.47806868215081	8.20519844250639	8.11959473833915	8.15515885372127	7.96251829842973	8.38216505982512	7.44066588048601	7.56788429551115	8.1353618318245	8.11183421421463	8.27703902871979	8.47728881741938	7.99246134609808	8.22178254791582	8.11112646581313
+"HNRNPM"	8.12649568834349	8.39836585049654	8.4639368228008	8.30151396065345	7.9639373898162	8.40658534936571	7.80478912703793	8.96467605467387	7.85897882393657	7.73269211312796	8.27743765333346	8.85889545776499	8.13011465563797	7.68636724518573	8.21360749032445	8.51828113350436	8.85069031692453	8.1869448062626	8.35988098200517	7.81565119071814	8.08063150739099
+"HNRNPR"	4.36785836888881	4.30331183608213	4.54664641281683	4.3918963197311	4.28282699631049	4.30291884282523	4.36785836888881	4.27983899543939	4.73908159110058	4.33294845076903	4.50968285240473	4.26259206362729	4.32009875099185	4.18234803252526	4.60390664160287	4.51936874386798	4.18280028637678	4.77886515530305	4.46720128691799	4.31026303199886	4.44322337195932
+"HNRNPU"	7.60692049249119	7.83856901360547	8.22639823551109	7.63750012608503	7.80876226921801	8.36737585196783	7.58536621439201	8.66499229998585	7.84850528790101	7.34100327751789	8.0263596720912	8.48861392038805	8.13855264912842	7.37517730903435	8.34981292573903	7.60087379780646	8.52729639385578	8.43819099397801	7.85522257965508	7.39877651853652	7.51786020805731
+"HNRNPUL1"	8.65294133672331	8.19663908002732	8.35045166905077	8.19663908002732	7.95519709839197	8.60058790929775	8.95692710394562	8.20276192112947	7.99223119431987	7.91184196801052	8.53307538994542	8.05352464966954	8.27819301243907	8.75188328517877	8.05658949984073	8.33465333045993	8.08542397012044	8.44099302903152	8.12421510027926	8.06316123802481	8.05268932961855
+"HNRNPUL2"	7.94777766101258	8.04063310910817	7.99300348631465	8.38251657261669	9.21619074115359	9.71743350741196	8.65274128460996	8.11146052728056	8.39391465381119	8.22663313198269	7.96301532520129	8.20837817981438	8.32115373273403	8.22369658285623	8.23663567875486	7.74073403888559	8.22884810388709	7.76393879697354	8.09706704296278	8.30648545203987	8.40780609994846
+"HOATZ"	4.02390694673181	4.15241505173364	4.36251038963103	4.11862611173834	4.19767414711715	4.15241505173364	4.15241505173364	3.95212912907675	4.33029007658509	4.20479628536753	4.3650397597391	4.26575980032195	4.33411158566991	4.04736773476702	4.42949235310351	3.89842193120785	4.09907912487543	3.6663191995108	4.01927210809645	4.19264665523196	4.20751219185179
+"HOGA1"	6.79631477724678	6.37629293560448	5.91270198363057	5.84078352518013	5.9569584528287	5.84973156946541	6.05705369344318	6.32928256898114	5.83489135196075	5.68237418103675	6.37983466683367	6.16197501671712	5.21681274073143	5.97244157745633	5.61272459268275	7.13032709359118	6.18619783200992	6.98821923389849	5.82538973488386	6.22758319200932	5.62735506388359
+"HOMER1"	8.5775338833426	9.2859697435546	9.84176114468019	9.68716099814601	9.8557751322904	9.44844304883796	8.22800929264794	9.07102080454891	9.97098893821809	9.4540922606146	8.90929926375623	9.41533733126264	9.74380284819517	9.13967029873263	10.1364123422892	8.3216109747532	9.64506905306621	9.15472839964534	9.68317331130132	9.44193870946824	9.46482779711557
+"HOMER2"	6.48440618173897	6.61906451392472	6.43312991394695	6.38586673202084	6.48229707710158	6.95023808598978	6.6192579635562	6.20407164641142	6.07188720615371	6.76043364822725	6.1071788435786	6.54840302523686	6.49809650624026	6.66160698934093	6.30397037622087	6.02442049805681	6.33019874613229	6.14032814772457	6.5094256855582	6.70669227243886	6.37103987357446
+"HOMER3"	7.94043363940956	7.89687627139837	7.74126998532289	7.85971642438331	7.58172290177785	8.59542454960553	7.99565126012963	7.92602761248714	7.83535329628748	7.70386543381109	8.63110318752634	7.42879962301068	7.85926406563547	8.06259437608932	8.12487616213411	8.52918751634266	7.24952786263209	8.24417620807965	7.89809005953687	7.47616889260623	7.49406761491158
+"HOMEZ"	5.18391081129588	4.97425600523203	4.72158966370877	5.02626660528098	4.94710505281003	4.45750688575863	4.72997021283399	4.60995449676451	4.58032617482924	4.72997021283399	4.94151799990519	4.50063554061455	4.49296182770735	4.72876029885032	4.43235542183533	5.54102695561963	4.72604023889998	5.24304749421949	4.88936391155559	4.71405145169341	4.70744501379831
+"HOOK1"	6.3014558713005	7.62524241545368	8.53380710058582	7.99147535889792	8.28928187303438	7.47525651562341	6.31234383571606	7.88398259250462	8.3645192409446	7.72604505959323	6.95703483007389	8.04253289495392	7.93191076377681	7.29866337653862	8.20164146172938	7.09278232225893	8.08294890654079	7.6043804170753	8.14441000185565	8.24505898652079	7.89197068448751
+"HOOK2"	7.90409982857304	7.52158401592568	7.65166555188112	7.61395443446603	7.57577880384662	7.89531623574814	7.59321447381511	7.59345875626927	7.79030700798996	7.53087706994268	7.39771572173858	7.36373034496411	7.45454466414347	7.92018451540123	7.65552079559762	7.49489053159152	7.56463547083936	8.03435062863647	7.59032590954989	7.67246191759757	7.6200027788609
+"HOOK3"	6.18937520358938	6.69860945837594	5.05999457095304	6.04193848591886	5.97331985294271	5.10237095871246	5.75515437545909	6.16338232955149	5.91642171151078	6.38827303312914	6.82450629332652	6.28990221020867	5.98645769459128	5.6388483111005	6.27576853797959	7.00454333876396	6.50216797496601	5.83491406448591	6.16338232955149	6.22152825792105	6.22735904930893
+"HOPX"	11.3513237337393	10.6986914456787	11.147197228065	11.0760740633802	11.2711546264899	9.72018785255173	10.6210566224391	11.535105176851	11.4390314724402	11.3642638322248	10.0004451525993	11.0689204811277	10.6418207454114	10.1950771498133	11.0230654900498	10.4752701357006	11.0772883505464	10.5451537613924	11.1069903922642	11.5501174506184	11.4629719705236
+"HORMAD1"	3.28245187294913	3.2770148956154	3.01410436492014	3.24230196145342	3.18348912599046	3.44660324054002	3.48401303533419	3.2668328045852	3.24230196145342	3.28557575364651	2.94550902354219	3.20788504162283	3.20418477290945	3.3210867855536	3.42915704437976	3.18935863904129	3.15249364552468	3.27352117052258	3.1728806191893	3.44468114638176	3.06450416767884
+"HORMAD2"	4.64138455684991	4.49123226568295	4.13371718566468	4.47400230254395	4.49810558196426	4.19483927306003	4.38335143545649	4.34227119376949	4.35794210178353	4.29012373700013	4.47943221540083	4.38450794647348	4.22150799139093	4.22896321923966	4.27603332139326	4.49825559927457	4.4374828655145	4.22394354053577	4.3956071206277	4.31559312947423	4.47220811132508
+"HOTAIR"	3.19974090533624	3.16102672657923	3.19974090533624	3.23985129911558	3.08922373006966	3.57789416530607	3.31945615029376	3.166349094071	3.19527078727629	3.0246494849642	3.13659185757309	3.20720028634418	3.27356399302257	3.34002373412413	3.10767145242228	3.3396461243605	3.12150410402375	3.19974090533624	3.16367633608087	3.20781959290375	3.12966287844685
+"HOXA-AS2"	4.90742154222024	5.42635456056089	5.37812081210808	5.60806689998961	5.27122862929227	5.85161593699663	5.63165679603907	5.17259642218856	5.42635456056089	5.45758503489472	5.05252500236034	5.26377840366795	5.59273276739143	5.83181678911115	5.47194671655797	5.58624707354106	5.3973348872181	5.2959536581184	5.46652296365711	5.17664579699601	5.50960612235097
+"HOXA-AS3"	5.06119040544338	4.98073866713463	5.13767369861976	5.13092373595978	4.54920276844735	5.04727816769625	5.28265529345625	5.08434163260989	4.95755829462693	4.90001456557339	5.02911786542874	5.02911786542874	5.0407008403196	5.05165458028065	5.00833046844121	5.02911786542874	5.11015196642457	4.94300618522235	5.09316556068636	4.41000783106508	5.12057429431316
+"HOXA1"	4.64021524238722	4.43997767611285	4.6509014718163	4.45391171311747	4.77132627721023	4.89297968569104	5.05386755791415	4.53357534845839	4.31514561787616	4.49665310682498	4.00294424462906	4.69803682518663	4.48454729900196	4.55786615970886	4.26284689785879	4.45938042038707	4.75846951569959	4.26758321834016	4.4124876682122	4.28357854897772	4.49008176145483
+"HOXA10"	5.73108239950475	5.79943449679925	5.79790279549136	5.88901021058502	5.95117625635563	6.03713549598365	5.96671917173217	5.59008804910395	5.85426920504342	5.87191098901135	5.83684877893712	5.88482603047798	6.12117091727197	6.22803661192637	5.8046063198732	6.14557580024881	5.94925444455479	5.44393415879503	5.93436305085787	5.32869904790013	5.96485059866216
+"HOXA10-AS"	3.73891877723127	3.7300145389108	3.52145857325564	3.91996738338497	3.50117372901666	4.13213107573217	3.8826681905767	3.62296101123285	4.07002503212424	3.92965363047401	3.63494815578095	3.69141320829905	3.68067874705375	3.9752172998816	3.71656935929385	3.59497951991164	3.55367695471062	3.58028055977042	4.04390596367093	3.71656935929385	3.89682815819056
+"HOXA11"	4.94421054670096	4.57512919121534	4.66309177277099	4.95291748029781	4.47037855554539	4.76441863757505	5.37354944381526	4.75732381302312	4.83765436871012	5.10343099620601	4.68965254924264	4.83765436871012	4.92974350548723	5.16770329692498	4.94765795948438	4.62125217734128	4.75624783056117	4.41567585031584	5.09834204365116	4.70731665198376	5.17162550257925
+"HOXA13"	5.97155244305026	6.00447662347756	5.77391022670078	6.1681660401562	5.73500898321812	6.08361367529484	6.26439531092511	5.81420419520982	6.15879048995619	6.08554389775346	5.71996977232701	5.91355712142248	6.18403733615016	6.4491442871491	6.14940813166811	5.96382871843915	6.03774543303031	5.73335520777649	6.08648406608918	5.88568452219538	6.02504380376774
+"HOXA2"	3.5109805474714	3.6421884956875	3.41641686231133	3.59323134347308	3.63611296014001	3.6421884956875	3.56772338852937	3.32564899044364	3.62299232024257	3.5995290037223	3.42191104965071	3.44710362667616	3.74484869980913	3.69068742859288	3.58647040242912	3.5893613698286	3.69221281292151	3.50651916336103	3.66513874346257	3.53320230730272	3.79030704845566
+"HOXA3"	6.73767098321107	6.63728088079786	6.66372985891453	6.89912352835859	6.56189614966918	6.90887021274983	7.40902961988029	6.96914657163103	6.91700560235101	6.83300286518138	6.75389195257345	6.86499567174183	7.06350903749142	7.19401677533704	6.98886690168013	6.62790983774348	6.81777604423364	6.49445671911794	7.13014642574331	6.69655590036985	6.86514611500985
+"HOXA5"	3.78720642899129	3.80178679885111	3.79340624972589	3.98475541329513	4.01638791448254	3.52608484008023	3.97521665806832	3.69481367875989	3.86365287843515	3.86352248129519	3.96228909605977	3.89750769692117	3.79789751493351	4.03175150095591	4.31058301111852	3.82494923012648	3.97989381812422	3.52803399155927	3.89750769692117	4.00542553037457	4.28787441664366
+"HOXA6"	5.04190095998533	5.12810616221032	5.25649754163911	5.24194996165513	5.09975397548548	5.20647331144799	5.73531734067245	5.05668554820443	5.3760546713908	5.37065692922524	4.84841474259179	5.20229522194061	5.42526226936681	5.69966650863249	5.20647331144799	4.97491917887628	5.3841820391155	4.94002109455493	5.41059972454569	4.83931156552998	5.36724102242157
+"HOXA7"	4.85347339911823	4.78144153962003	4.84499890178371	4.75752737561828	4.82122861807966	4.93445181468021	5.14020604928891	4.89550325299867	4.94407934739438	4.80589088998748	4.63497616074713	4.98119485655569	5.11203307904405	5.15346437286457	5.14240789237426	4.75810375763328	4.87738350057327	4.65562763095737	5.11563343778139	4.86516137198654	4.80972324824914
+"HOXA9"	4.78252314392457	4.80793477563014	4.70824841447161	4.61552486600255	4.928105230745	5.04916283527113	5.39466358542922	4.57087087505345	4.8237226368348	4.75712242383267	4.44090800718362	4.75939908750246	4.88429287097594	5.24830014668946	4.73150203762978	4.59274690896657	4.59719448055537	4.44080423055116	4.97235223387595	4.8237226368348	4.58941481642099
+"HOXB-AS1"	5.3764714423853	5.11659200295076	5.23045797676844	5.24246952786001	5.00716526424068	5.33358936572871	5.79363907068643	5.29179533065744	5.3973348872181	5.47238404453623	5.08198727210983	5.53942055269092	5.33562470168714	5.53626691427685	5.53815576375063	5.28959887739595	5.48684853591198	5.04152701398346	5.77796287293376	4.96239486552115	5.51520246665333
+"HOXB-AS3"	4.93751897295885	4.9978850894918	4.94353236858526	4.85879349993199	4.90679993092736	5.84083432196743	6.06312848243619	4.87411535399401	4.84073748654569	4.87960632282707	4.58433021821762	4.900591461599	5.14477244891435	5.45152594745021	5.02929572373859	4.81943178133286	4.91240746845417	4.58151253917623	4.97520763859462	5.01224722199478	5.02920903463396
+"HOXB1"	5.66848115903209	5.88431080332605	5.99586777278795	6.28482767499084	5.95029318900267	6.09244822341561	6.75949105885156	5.95029318900267	6.17642938400408	5.98636091963633	5.62908048424829	5.99302145898749	6.39582920781677	6.60861168413925	5.95029318900267	5.88872309689562	5.81605164324691	5.65598673889162	5.75224763671294	5.90343058541491	5.89336104638206
+"HOXB13"	4.17614319828936	4.57914218233041	4.63053845882065	5.00955719191779	4.80034306955918	5.01121260864881	5.2381375640339	4.60413509986536	4.80034306955918	4.76968755238661	4.60689909489886	4.99653270346618	4.81779043353284	5.12906069912838	5.14790353840509	4.65304810260531	4.95271028913791	4.43797569019043	4.96392280250934	4.68001157235112	4.8834387239622
+"HOXB2"	5.91725249310133	5.95403994125152	5.40782783613266	5.62664947570022	5.47719885260202	5.70710813404969	5.6895307674229	5.6895307674229	5.5364075975656	5.76125936971348	5.52243714292966	5.60112473071896	5.91254998300531	6.18218337886065	5.95279936606943	5.3706160852352	5.63054364585637	5.51125200031178	5.6895307674229	5.72546254601588	5.63525825727104
+"HOXB3"	7.26761649466372	7.30602349706732	7.26888834731455	7.29643321004014	7.05971826814189	7.37329666700018	8.205521757549	7.13899588616895	7.16282764219511	7.2681253702809	6.96216195220772	7.32673489055933	7.41806164414278	7.60043956551047	7.27294284050222	7.13859100181753	7.2173823484406	7.02455387974098	7.54661890274702	7.28172263151375	7.16975780249268
+"HOXB5"	6.19804712513525	5.94069775754129	6.21630399330131	6.19840989508872	5.95776090715691	6.49804472660575	6.63305269727783	6.20300151598634	6.27798294159906	6.24670865293602	6.0979560186391	6.17805764857496	6.49304932026743	6.43190617433685	6.21446025009788	6.14432842325389	6.32430032339842	5.92446577773122	6.39118261264759	5.98093137664478	6.07254772466134
+"HOXB6"	3.9526432462815	4.11720018108278	4.11427166121048	3.98649806476753	3.93340823479196	3.84232318792524	4.18373969316468	4.03452973741116	3.9526432462815	4.03452973741116	3.86105385148634	4.16195111497338	3.88069602595667	4.03673035971074	3.87870394615279	3.84010646056639	3.9526432462815	3.80583892084898	3.88166316482489	3.88509171534632	3.96042831392398
+"HOXB7"	4.41334180164298	4.61620782388869	4.55364751137911	4.34686950085108	4.35804209123041	4.59363181529242	4.59363181529242	4.46621812675015	4.4440079661125	4.620453632268	4.23338591402159	4.38420351485881	4.72245192085219	4.31643067219392	4.238424800699	4.22636114943371	4.50042470676817	4.38434835865583	4.42272468460309	4.49852897839739	4.66784483447504
+"HOXB8"	4.54042426836121	4.30021983279096	4.45252675569218	4.72926228753349	4.71293671698282	5.19373918819101	4.80214378753414	4.54273056842193	4.59649958599224	4.48451576906292	4.29938893389525	4.50027435686551	4.65235483931825	4.54157834385469	4.72083029964895	4.29095673123497	4.53694684595583	4.24266280713489	4.85039933007723	4.64108009783153	4.39643055027442
+"HOXB9"	4.19202632520325	3.99163447745934	3.84054160309622	3.97502638054717	4.0883843870904	4.47900336062981	4.23379647567784	3.780790979625	4.17268698989162	4.23548201194174	4.20099775062936	4.0460189776364	4.19636486083224	4.15688376430901	4.10987492875195	4.00701935193307	4.12264632186828	3.97333463446736	4.16182181976437	4.2390582201454	4.18648766611021
+"HOXC-AS3"	5.11475845162945	5.33751377868874	5.29575314953908	5.500845218736	5.44541601810974	5.61940819123961	5.54578672221503	5.12412882071819	5.38225380945846	5.23685794921842	5.28367099746824	5.39889013867897	5.31670439587287	5.51632749198592	5.32436327543916	5.39590512745893	5.33751377868874	5.34810385551279	5.266012634899	5.2586017906543	5.59002868037006
+"HOXC10"	4.17946344458439	4.08061641554188	3.95830451018567	4.14025456915753	3.89453707532232	4.00469379059507	3.89124072912105	4.15646611292056	4.13546024495119	4.00469379059507	3.76492545777886	3.95913921069182	4.12111016678412	4.14020026963574	3.84054160309622	4.09522162934276	3.93897664150992	4.02657328425352	4.04261261476928	4.02476173047641	3.85137577940119
+"HOXC11"	6.01802181346236	6.43162228107792	6.46964488619953	6.46964488619953	6.26709986072016	6.37248349959512	6.49752835715954	6.24491441028084	6.75174916099315	6.60419932367106	6.31842275228776	6.51821272937667	6.43660051656888	6.38764618472377	6.46457645838646	6.43162228107792	6.40872208163798	5.98111425760652	6.45984770582255	6.34223539034742	6.57804619841901
+"HOXC12"	4.12429358672499	4.06425055115494	4.36539323467157	4.3116903830871	4.3480371265217	4.5084843796949	4.87625546545227	4.16612930642835	4.23867363389456	4.19505419211281	3.84951122126138	4.21919843969534	4.13429701454131	4.39212248609867	3.92096498489944	4.46517624354896	3.97637184175248	3.93878225218752	4.20500790420103	4.57724891503422	4.06631039623976
+"HOXC13"	6.12268161506703	6.32997087408646	6.0777448413487	6.50288011174314	6.40220405043551	6.4305398348921	6.8527361974188	6.31692475969807	6.59148032307955	6.35345563759128	6.15354360297118	6.29048409153126	6.70429578069106	6.59829832165047	6.62919082089836	6.03932168567461	6.42962958619165	6.19701742094468	6.48879682203765	6.28485659467453	6.25058434804609
+"HOXC4"	6.15708014177912	6.07644344849062	6.08361367529484	6.53415873709565	6.02297711076243	5.89823397989782	6.4807486989702	5.83091991360256	6.40469080111695	6.11466257638286	5.97838443345332	6.11466257638286	6.33108738860258	6.1288050537444	6.15981526684772	6.07725880690241	6.10770753087399	6.10316763001508	6.47885901391443	5.6576705946799	6.11466257638286
+"HOXC6"	4.23278625770284	4.22206840776231	3.81153119338269	4.60183079873196	4.21971147402758	4.12378737062472	4.15451915766316	4.15451915766316	4.28418599126142	4.05071475456459	4.07739761747822	4.06242250655597	4.38208185335653	4.36894461355989	4.46839547549137	4.27837304593756	4.15451915766316	4.06582365543377	4.02300899017377	3.99254263070054	4.12761737160828
+"HOXC8"	6.37294239096127	6.53259054546832	6.75283070105245	6.63813122830548	6.50513577150242	6.93275779138473	6.56199930485178	6.39103561301548	6.51842173865867	6.56705322083808	6.30251807353921	6.60452783546798	6.72983911378508	7.02815597359809	6.450573402657	6.53232715918735	6.56705322083808	6.50713674819984	6.75668367570109	6.62796838747676	6.52904942006548
+"HOXC9"	3.93687589190804	4.12981651342373	4.06015584893598	4.29938893389525	4.11234940215888	4.30777943137182	4.56818596703785	3.87661100939894	4.15863706198681	4.12981651342373	3.86586522599472	4.12981651342373	4.27848213560949	4.20694288661028	4.32016521377267	4.08470341940224	4.21790377792821	3.86871803754848	4.11438908487453	4.44074053290546	4.30537368303377
+"HOXD-AS2"	4.84408258137959	4.84180253248339	4.92727219156429	5.04044996706093	5.04652090372757	4.78670193837591	5.18412157156141	4.84378681448077	4.93176204017375	4.94353236858526	4.64023428959126	5.03134934259462	5.01278434014674	4.94353236858526	4.87974847463235	5.40328531987154	4.98060242901871	4.7917626129071	4.83747861832628	4.94353236858526	5.08174982439644
+"HOXD1"	6.49628596733415	7.26505839601901	6.52737100777698	6.49628596733415	6.38127562756824	6.38201556844308	6.07439896100045	6.01418002623983	5.79865210989382	6.24624496249475	7.37754323732467	6.23514129850766	6.22886244410415	6.63504390824211	6.01096729112887	8.84215433999086	6.31745418539684	8.57563326244763	6.18016308041535	6.27149605829288	6.8988922161401
+"HOXD10"	3.9027277950516	4.13933721909996	4.32752490385531	4.4133615718838	4.40224519661244	4.71013883990482	4.88241086462184	4.22092745302109	4.37850421030923	4.37182173053631	4.03291848187574	4.44263659577225	4.54137198263651	4.63847297199881	4.10214122946041	4.30674231647377	4.36459496428877	3.91977967638055	4.2493817728559	4.37182173053631	4.42285439881438
+"HOXD11"	4.56643599347749	4.77746797150687	4.69728336521649	4.98489606004638	4.89797365565968	5.15421464215208	4.84061413865632	4.59596459109921	4.80740709791464	4.69115235535334	4.51818032132029	4.92512575119346	4.89232552876473	4.88400731073259	4.53727033294917	4.73677434724206	4.84392072952921	4.83281971509501	4.83798262096729	4.80740709791464	4.65422552515606
+"HOXD12"	3.61084409740703	3.48266280047911	3.73568327962086	3.48429308719882	3.39063502276523	3.67657344167636	3.62763556398907	3.69481367875989	3.50668861901943	3.66518213154824	3.73223540462858	3.55241879296028	3.59035006425724	3.59035006425724	3.43121273372498	3.36560010406572	3.55304822282402	3.2632002805951	3.68102971060272	3.53068433427321	3.65119532483785
+"HOXD13"	4.11059304308397	4.29226103055737	4.57282162644983	4.37032643921461	4.50853076861424	5.16315414614018	5.18015923513344	4.39928583245072	4.46482692411635	4.56752011532008	4.50643129871752	4.42764418536644	4.53362366459146	4.56562240753307	4.19895831945779	4.44513905779915	4.5380854807493	4.27267887872232	4.44513905779915	4.58085871406833	4.32589198097135
+"HOXD3"	3.99610308853704	4.08974122035559	4.18653009367646	4.39724614705036	3.96894276167786	4.49193259686458	4.54883032312561	4.00469379059507	3.85951377198513	3.76099303410951	3.8140009630355	3.78319127127377	4.11482133292713	3.9143834431015	3.64298855071286	4.00943410731484	3.92553804718425	4.00469379059507	3.85286598873719	3.75223411590495	4.00469379059507
+"HOXD4"	4.2105371458821	3.94455582282733	4.18172140773189	4.38214041287016	4.12688313420355	4.69718402866204	4.32509746965829	4.37073568527786	4.20304843461666	4.19816310733138	4.03057622803545	3.99297278561416	4.31542219272611	4.29938893389525	4.32826813785544	4.05294354532278	4.15803679543685	4.21749257809528	4.54877682532175	3.61035165174516	4.34631315244133
+"HOXD8"	4.2544376784931	4.21437244445929	4.18288737084431	4.14328348103468	4.51496094181503	4.41777362871386	4.2330209192495	4.18624716033229	4.11325097469652	4.16842445888458	4.10623929764939	4.06807097415416	4.24897643633082	4.49463502783041	4.19032296026823	4.53516069261874	4.32562497486809	4.04898166160506	4.13287911871315	4.64649261802579	4.35601274283148
+"HOXD9"	4.91012456077062	5.14838987213588	5.07942302632599	4.99169548668545	4.9668486356651	5.22055015856989	5.1716869876303	5.06445514582735	4.92271077500313	5.03256595106673	4.86566236320334	5.06623663360546	5.01471744493454	5.11271894589466	5.13477951430678	5.02735796198423	5.17530637478291	4.78170233179149	4.91828099887714	4.65736598102772	5.14950531716648
+"HP"	8.10103065476362	7.24970973124224	7.22970332394921	7.29030799382202	7.2038156020118	7.83263089539229	7.47668731328466	7.46998719158391	7.18730062301139	7.29986755122752	7.04509876102604	7.28684373915717	7.66679026260534	7.66596599092037	7.29355332665208	7.28906963317574	7.29510697663474	7.07480848239129	7.45588255697225	7.37984557781137	7.43898669141932
+"HP1BP3"	8.97010676068816	9.08968205338712	8.32326322009055	9.31271433343457	8.33836980922315	8.29687958764137	9.32780392318655	9.04286778091903	9.11212528533586	9.1845862368434	9.32780695866322	8.96547703456154	9.23673706633789	9.28685503427369	9.17693929667763	9.25874867335419	9.14467383304325	9.13309675171176	9.40888289049034	9.034176127492	9.13309675171176
+"HPCA"	8.67410280187417	9.98811704015192	10.3047005419196	9.86800627309034	9.95914107549922	9.78316759279477	9.72420659750688	9.90263483840158	9.83842122200938	9.68417394378998	9.1659575383914	9.99173235990483	9.85189609936061	9.57833867980067	9.3886177097517	8.6756464641429	9.82587710447938	9.41093575413579	9.78309607286185	10.1926057904047	9.56695095616239
+"HPCAL1"	8.36581721116428	9.12549300921119	9.68509085339031	8.88268028148319	9.54190504433694	8.64093877665271	8.36131753653902	8.93324429390028	9.34817829609433	9.24098465039948	8.51252949434004	9.72474799849919	8.26750649337748	7.98345530533913	8.24163783167483	8.29724242922722	9.23099249295138	8.99335944997464	9.25816554762817	9.8539502478215	9.40433337098078
+"HPCAL4"	9.28640687215078	10.0165197893893	10.4809420337328	9.99906906241679	10.2174245494754	8.94921925259626	8.88501845142953	9.9941903843365	10.299888193795	10.1729243909443	9.50258247898946	10.4541526204878	9.28309237044556	8.92096026639309	9.74707111085444	9.50286141418296	10.2325424712123	9.69672807210785	10.3377265641698	10.5536757255929	10.2032253450505
+"HPD"	4.31494783119206	4.51255590604446	4.34396698709146	4.46244124465271	4.54497687325099	4.97290035057143	4.98257562750361	4.53025316540347	4.70484246117303	4.39432905969014	4.50643129871752	4.51953244540476	4.71767743540447	5.06702544945783	4.37904542291486	4.34406041927021	4.44565489863599	4.12111016678412	4.50643129871752	4.48326246613415	4.3934890123246
+"HPDL"	4.78057709465034	5.2856208714175	5.51268416519083	4.86046143202346	5.10235466969002	5.19685141844233	5.49063174930491	4.82608609687315	5.56963393972181	5.4773526901435	5.81321479702815	5.28577576914181	5.25416690351475	5.43434991189102	5.20705303747759	5.07342756242375	5.05636265432877	5.54743815747933	5.26265897708434	4.85679682112907	5.08156032750019
+"HPF1"	8.47417967423305	8.57109217938173	8.65948258884107	8.19286543364514	8.86332027440611	8.09087872130721	7.63499203515175	8.30629406118923	8.29518678659968	8.86218136120856	8.57648612402039	8.67674596819131	8.17979596217689	7.87920055496711	8.4474106159714	8.89858090995773	8.48516017017275	8.96739469978243	8.39243381202645	8.74188586590608	8.75250302035399
+"HPGD"	5.17321240633039	4.29766249734428	4.25162728571186	4.53674298026813	4.59504628757886	4.84071799514208	4.03370460317926	4.13057989539948	4.60929546629767	4.91492962128647	4.1136781181011	4.2394691906691	4.59054306668002	4.99600619542894	4.26159309104156	4.23117038675135	4.38508868752477	4.65765042843691	4.28050664218754	4.59588721955294	4.11666950832032
+"HPGDS"	5.04868210914309	5.3929702971621	4.74023142272016	4.65915049192384	5.28785027180112	5.33358936572871	5.17328491759518	5.03544884073394	5.06385424668749	5.16854708186028	5.60786369681137	4.45831875647854	5.73295193643102	5.92371714880511	5.73034685366406	5.24669158083954	4.67741581378734	5.18472798018915	5.11692526935293	5.41110047156881	5.4776404355335
+"HPN"	6.60495275352204	6.15965293321483	5.8666328627093	6.00880217987589	5.84768375725912	5.91001664173606	6.69329132740172	6.30647074972909	6.23570181894934	5.90410268995252	6.56965375916518	6.24207858691793	5.82701328338145	5.98109810298021	5.86873639013682	7.38095128756567	6.10429367968499	7.0466480209355	6.29430090802031	5.79759160533659	6.14214476769302
+"HPR"	8.31802043745468	6.96205721438727	5.68994588650772	6.12170635636886	6.34274249864421	6.73279153623452	6.32315541011316	6.05256258762433	6.17652472500167	6.08462031789627	5.76837895757768	6.12705715984143	7.04465634446744	7.3695544095871	6.2455569074913	6.52165269864154	5.9815818412961	5.92465136697213	5.9262221571151	6.89546907740355	6.75686353433095
+"HPRT1"	8.47903504372564	10.0418327366773	10.4531789225219	9.91931183618391	10.6532226038011	8.96183691884061	7.94600938853391	9.68843554117525	10.2526064593298	10.62570663423	9.22265789737986	10.4328735135082	9.83060973181654	8.94923172686262	10.0012032259326	9.88289781150655	10.3141107464057	9.93371331839641	9.94584810876884	10.5495701696278	10.5677808507115
+"HPS1"	6.08856301694664	6.14019872511372	6.19963920041256	6.39826826093528	5.86709296978428	5.89753806213398	6.34894134854048	5.93588832250335	6.87909217955441	6.75751125677883	6.29274517333327	6.16532563336093	6.55043572900109	6.48487287274828	7.1329059039777	5.88093041548843	6.31334525628128	6.29274517333327	6.25900599364619	6.29274517333327	6.71824100734979
+"HPS1-AS1"	5.0724760694668	5.1247636324605	5.3013722077212	5.43686083335913	5.7302294054277	5.63391914243132	5.41767499680242	5.24070529516582	5.48131127147445	5.53366065057842	5.01604214845096	5.3892313163891	5.32692006831047	5.08450192309898	5.13885562503252	5.12623601467171	5.31730919846428	5.04540486764243	5.50217716987942	5.36571585718753	5.33221789689668
+"HPS3"	5.82426286216133	6.05541484624324	6.48057155413247	5.49244414430945	5.35524777293178	5.28109027485658	6.0185884051394	5.84975261077167	4.57722176870775	5.78515709278922	5.94099542275713	5.45738051486466	5.93200963371273	5.60809875965272	6.02607292302292	5.82104167927779	5.69050004291591	6.44968583918664	6.1354275078236	5.2828037652999	5.44380688814368
+"HPS4"	7.35691950815496	7.33551621832657	7.57160651266551	7.22243369343079	7.40296268250291	7.40082545992517	7.01767975822125	6.89892910593037	7.39369867521433	7.36293063034802	7.44318343363774	7.2942628264757	7.23208446509051	6.91755429880952	7.27552050881992	7.42155055757131	7.30253163046062	7.5515855137382	7.20384446593584	7.40680869555897	7.1343985096585
+"HPS6"	7.80794593333484	7.84033467530752	7.87207781276485	7.60076105057783	8.01114902424376	7.40449634348778	7.65260609648868	7.51156395224933	7.63632370646767	7.9916142259223	7.47748712871673	7.61896615468608	7.61349699789581	7.69829156093276	7.45997139472318	7.51156994834978	7.62697043448654	7.70611417698466	7.51022989785665	8.06312596594897	7.87143968533595
+"HPSE"	4.61217448933384	4.06239889745532	3.85312864459183	3.96959665829109	4.09680398825181	4.01310521587826	3.84803219659198	3.80832852825719	4.06849258300996	4.02270266129195	4.09721611454757	3.83906074651988	4.23949192198362	4.64821162359542	4.33047476860663	3.84499885508181	3.59222776405588	4.05322646040406	3.71471088009125	4.17291607272191	4.37865732238767
+"HPSE2"	6.47669827159482	6.41367846047921	6.22538984543172	6.33095031213256	6.07634255375327	6.46904003633374	6.83417210797332	6.27047256506841	6.11424249796545	6.2942875326674	6.36351397131103	5.90771745503098	6.34422508138804	6.52038227248624	6.43983025257367	5.82648687307589	6.08814469085058	5.76568167249024	6.36084070701806	6.20461093268919	5.85666114374265
+"HPX"	7.02273820524253	7.35801310941861	7.21152335393807	7.54550687887815	7.00269006018156	7.02495935610208	7.31142756365265	7.16409764511282	7.48333828864818	7.22301122972463	7.31223299967313	7.46786900694891	7.42994540021489	7.25922665200368	7.51823629922961	7.49431499174089	7.57804751641116	6.73908052570581	7.46417261940948	7.33143905771682	7.34545993912806
+"HPYR1"	5.63282737911643	5.84831794181243	5.42012579970641	5.92943553284535	5.73971809950586	5.94908699160343	5.88358538378526	5.64245363661527	5.77723646584625	5.56124861953262	5.58252644879908	5.67470372206793	5.94933825258986	6.12103477599598	6.00224327700064	5.73971809950586	5.71656556366923	5.28114218593424	5.70323678590443	5.7237492908343	5.6402459608513
+"HR"	7.96012689625539	8.00432172488057	8.09059469822751	7.97614798833691	8.04962258588187	8.58783201561995	8.61202524219277	7.80502419856404	7.86431981449826	7.48778766078089	7.94312453304729	7.64630243287997	8.31700949970741	8.2501005462026	7.82968851140677	8.06773913733513	8.1018257705188	7.91945773826171	7.66808414629917	7.83353120339158	7.89993462939724
+"HRC"	4.98446089506327	4.90387623386674	5.17480679928878	4.83253003256814	4.74127998109401	5.00478384397099	5.56777640176629	5.04384294345482	4.98925059532318	5.00207716867356	4.68318621573388	4.76114419955823	4.97118608295725	5.15707010548085	4.79604067913143	4.63554482114854	5.02908682860751	4.54137198263651	4.93471545662319	4.66156311342172	4.72249364209337
+"HRCT1"	6.74795538253272	6.70645717451396	6.60943524790842	6.74671637729835	6.46352023859423	6.76880550742171	6.72863891818064	6.72863891818064	6.68488208444501	7.17499080024116	6.59271428093223	6.88873875355736	6.71694416838411	7.55552708084636	6.62820294091504	6.5419775933223	6.46809371241148	6.77409375524333	6.93052587027641	6.72863891818064	6.75105017057439
+"HRG"	4.64785618706188	4.7726179383632	4.77399263699437	5.00222775290375	4.86361138153057	5.16178249363805	5.26101636292069	4.86642252011562	4.86361138153057	4.68611650731677	4.48821945778947	4.39722826628051	4.93599044174817	5.02742256372539	5.01843578916556	4.27951151481969	4.86361138153057	4.61442517845835	4.89234415068938	4.76193103932067	4.94680242952956
+"HRG-AS1"	4.30923821664179	4.22173255565243	4.22000955716813	4.28692323836711	4.28366222530064	4.6332297382406	4.2771695373402	4.22173255565243	4.59386548779403	4.18351972964544	4.03792924332072	4.23282975818456	4.28281912887386	4.46166034850697	4.16652270298328	4.26246128992833	4.05840190475901	4.27074594358688	4.15907102202771	4.03864200596702	4.27602328559905
+"HRH1"	7.03137996103087	6.75621964645702	7.39385211735835	7.17892888509224	7.3897902051074	5.96435623059444	6.71534053825842	6.85033774279691	7.25868304785384	6.92169574949869	6.3734336525649	6.53834893175924	6.83860124877826	6.64676692140072	6.95284429103294	6.46964488619953	6.68760910211574	6.35098055828444	6.68212549529618	7.36087983395275	7.08043511655666
+"HRH2"	6.91534724727421	7.11405385793062	7.7666552577851	6.88234004836234	7.36539127507221	7.35577433598913	7.01031630005868	7.11405385793062	7.50832237502981	6.85602004720838	6.75481311900347	7.32539992176565	7.01274605356021	6.94314464308857	7.25519876631456	6.63169627432695	7.22901668696051	6.93839165406715	6.81018017893894	7.42031253732692	7.32990647373046
+"HRH3"	6.66648235824753	7.19204380640408	8.09780951120359	7.68387301943957	7.77107666004662	7.43814638262072	7.26265824789304	7.53138728447325	7.26371479816597	7.73580970785535	7.02676987824358	7.69319767411889	7.72063407031801	7.16591255615813	7.42716465362692	7.26158547946594	7.77436754182742	7.53653401371574	7.54457715690365	8.32148726604223	8.03763422381618
+"HRH4"	3.95288244358717	3.88584731893567	3.83024160317882	3.88509171534632	3.75564318229935	3.84780049777296	3.98769833151708	3.78491833037975	4.34914403103203	4.03772816426835	3.97006128802171	3.76816412549754	3.88509171534632	3.90499343389103	4.15351263962207	3.81474210124194	4.02224682656393	3.56862480018461	3.75315593062198	3.9583108682219	3.94847753638272
+"HRK"	6.11767462380084	6.11767462380084	7.34899193630476	6.42021504998359	6.24234378536386	6.85472383739357	6.29079601809376	6.34382388033343	6.39327462163022	6.20984944804554	6.29865978905284	6.04910291669196	6.8376952169366	6.4330650552013	6.65693616369278	6.01744448112389	5.95015496280262	6.03002152239894	6.31955131126438	6.31102657661203	6.12745768993434
+"HROB"	5.96459567364454	6.10406047552926	6.16754577928935	6.24275745935955	6.22995571137309	6.36520488661391	6.76095787607154	5.91650110363158	6.14162208695446	6.16754577928935	6.03106392051109	6.14136107077202	6.40766914030842	6.4083917737326	5.79302253963156	5.82856740437261	6.07965666774102	5.86454874366612	6.22528175453793	6.03651740149303	6.16570680348717
+"HS1BP3"	8.60377667081216	8.13812023687643	7.86088105928619	8.18923447006693	7.89720566408698	8.44721843150551	8.1017646052465	8.10552076774721	8.08111796146469	7.96176255000812	8.42690769574992	8.06752065243062	8.13812023687643	8.30907428661437	8.14515423046562	8.60805305335535	8.02187075125975	8.22319897278398	8.11743620586891	8.11154928933486	8.16182254194602
+"HS2ST1"	6.66213862038018	7.15644871402755	7.48855163618536	6.23274777065742	7.71997566130006	6.23099917949304	6.3831826114068	7.03023910786683	7.10330440143885	7.09995400350184	6.96585974921017	7.08630683959067	6.51669903925057	5.65845968376681	6.87992059725444	6.45389491455729	6.91552570639217	7.27307554569634	6.27271975586461	7.0355864409104	6.70202027747965
+"HS3ST1"	5.66791736503078	5.65485136184148	6.12817954955664	6.05850306722704	6.38759780050942	6.65743916715511	5.9721574541798	6.04992718364989	5.84371152576245	5.60834045666025	5.53731103591558	5.93839403938167	6.36561109079682	5.93891552784067	5.95179725858792	4.81626446086924	5.75705810364063	5.8046063198732	5.7662511083396	5.80013882456428	5.79114734971711
+"HS3ST2"	7.6896674122225	7.99953576950723	8.5642300365893	8.09322182138533	8.69748735413719	8.74930126147046	7.79192791867089	8.09421613535746	7.72982038544204	8.69386900217782	7.31493243067013	8.71000746617602	7.87765825712311	8.05837785807131	8.24016846517265	7.90850820447539	8.62492822104269	8.23831731536549	8.12986865659118	8.70584459599649	8.45791161991461
+"HS3ST3A1"	4.1944070823348	4.33664281399226	4.34897946114539	4.19586215226823	4.30659404424836	3.89342236140173	4.10717041238052	4.39099325285812	4.32532185277109	4.15538712649439	4.53273360881134	4.1304627028084	4.27238250527575	4.05434418914155	4.25990765158245	3.7990706158646	4.20356110766585	4.01784566157141	4.08583791360896	4.01186566143989	4.09787755720726
+"HS3ST3B1"	5.67204246192902	3.83714879314542	4.13288793201356	4.12187990007175	4.12187990007175	3.52117280128103	4.12820335708573	8.04780644824192	4.31068014555973	3.72421426249425	4.40785759314381	4.75740280950215	4.17687842034632	3.84990697065343	3.97001561954405	3.60628399311873	4.61835276675593	3.78862170629238	3.88509171534632	4.03083007796493	4.93493033312524
+"HS3ST4"	8.96240671954097	9.55353660454789	9.50503360760439	9.02308755377994	9.422126973102	10.0870890349261	9.46544204658904	9.26311585530154	9.15321797318711	8.96170180038015	8.8458546784208	9.58905817203426	8.68070334803795	9.54819149806137	9.40572436376828	9.09128467733265	9.40043911864478	9.1785531591433	9.37751319930984	8.87444101771927	9.19821896641034
+"HS3ST5"	6.13312033450197	6.68785870502641	6.87792832231505	6.4586853564477	7.13374584956373	7.11405385793062	6.66694428025054	6.58433870852555	6.50657644507048	6.91000431889693	6.76945752263156	6.86856253506508	6.6025388921595	6.83075803367626	6.76945752263156	6.76342805274955	6.62526431442238	7.01714163905033	6.433927205849	7.01330308358822	6.74735644607743
+"HS6ST1"	9.6240174903161	9.55514861366945	9.78963986273671	9.79415372798585	9.74803801207216	9.42073974053569	9.52617873909867	9.67884970565291	10.1492225550717	9.91465526189224	9.50028174405912	9.68813609183815	9.90383441719831	9.41835924931292	9.6823365577221	9.12520491692377	9.89472749007086	9.41434581849732	9.7562209449779	10.0951348886519	9.89596142230875
+"HS6ST2"	6.3112047700713	7.428721465417	7.87604959051297	7.5940130160425	8.11450179808029	6.95482136747765	5.89394311663966	7.21784487957655	7.82547676653575	8.01123350185167	6.70692250721175	7.59872320207682	8.06930551350197	6.51425123787245	8.01373691054823	6.95941293448309	7.65216162567404	7.67213180399088	7.21970464773588	7.92416665128512	8.12190783968549
+"HS6ST3"	4.92869315251021	5.93926229792825	6.89752135835597	6.61243113172235	8.0158033264266	6.16321529593823	4.57694889276091	5.94864187871135	7.55901408593781	7.60172845944144	5.45128681498808	7.55056335556182	6.62132908652679	5.66208656499415	6.24651899140333	6.19365790922845	7.11438859708885	6.45827445335013	6.68644694376576	7.84731942404538	7.30491207168262
+"HSBP1"	9.69524371042633	9.43279176299981	10.0419719633621	9.56427496659776	9.62172257654327	9.76866706818826	9.79743613803534	9.66608100833711	9.66883519723012	9.66883519723012	9.66878850014666	9.55590533013136	9.44484323800628	9.43731292852413	9.88439793335178	9.92874745068304	9.36473347532725	10.1068709159716	9.84926823908891	9.87665669601589	9.44130470358722
+"HSBP1L1"	8.18989275209753	7.2548439958377	7.59803622058496	7.50104822591322	7.25867972774161	7.54510364453713	8.36447000036799	7.67982028724925	7.83162890974802	7.67119115673423	7.39086468837326	7.31902959136081	7.59493632287525	7.65995460217954	8.1656556808029	7.13731367803202	7.5632226327331	7.29564821669337	7.51292095803679	7.53439680564294	7.32991481218035
+"HSCB"	6.95300326482201	6.69336221999767	6.52864344383867	7.12541516528508	6.27225131441596	6.55656243036935	6.82472377241132	7.09809649106526	7.04184388713076	6.53925380671176	7.29608178520562	6.61299912190441	6.80595905348925	6.90763810742575	7.52499908267976	6.52446409244093	6.74901317398809	6.6254942135195	6.93300899460696	6.63822726748114	6.80446489933138
+"HSD11B1"	6.48378821042158	7.73024241352602	6.0268456023735	6.91391326110334	7.44280898230634	7.79443291945945	7.2880160491945	7.05431537897466	6.63133254906925	7.74686451279497	7.38972513965357	6.64144508865162	8.01275500141747	6.97455721357796	7.67503308214921	7.8376860956469	7.24977220519181	8.32945006363145	6.60427036624522	7.09593449740632	6.61413758743341
+"HSD11B1-AS1"	6.15391464853881	6.23384013834927	6.16147869230255	6.23705920435525	6.0990168616422	6.08391787310835	6.29300221479171	6.42547749568653	6.3711021139074	6.37201760978059	6.22455776139966	6.27047256506841	6.37324701782792	6.27295349977206	6.31152678439187	6.27047256506841	6.37301576586977	6.08982995006942	6.0894419477006	6.0627790807779	6.27550926331266
+"HSD11B1L"	6.92909654037828	7.41053752630683	7.42897481770058	7.63063919055892	7.60072991954683	6.88725719765338	7.38850664629477	7.26342541079469	7.58785268466481	7.8435634163663	7.3446484748005	7.69673814150444	7.67213180399088	7.24934079071722	7.40818793668059	7.14010106234666	7.51155968650107	7.38808525271351	7.48560106729318	7.98798402314591	7.75181320527812
+"HSD11B2"	5.28600517422984	4.87292433115631	5.32692006831047	5.73843164614279	5.18073597711235	6.24936626783983	5.69398624010521	5.52525227363315	6.30091913370359	5.68597008177273	4.75799280259008	5.41980544610397	5.86418287674685	5.93109383772539	6.3950211780801	4.81239263000755	6.21377269922346	5.32239946751934	6.17342640550195	5.56321093547314	5.46032110739853
+"HSD17B1"	5.4063607824359	4.90856237935118	5.12906069912838	5.68053230061797	4.75749426968099	5.63831129747172	5.85152916253486	5.1611850128625	5.12636942724154	4.55992340177652	5.25348707457266	5.14540170711099	5.32850540125054	5.78335511505682	5.59057966201027	5.38767899056759	5.05552673495078	6.29242236861655	5.56074300518667	5.05654408518561	4.78125701582035
+"HSD17B1-AS1"	7.00311831902283	7.5370272008843	7.7337789973957	7.08319426211659	7.59831435665501	7.26328033203082	7.16207614013105	7.21080544224176	7.18360343991494	7.54363155484774	7.33267743799909	7.42325492182819	7.16157331271248	7.2332873858151	7.07382453951793	7.38909246319002	7.14884531267946	7.41968379705115	7.1723997294752	7.77815723907717	7.48424880652256
+"HSD17B11"	8.87199890774993	8.35694591150198	7.97676961333491	8.28749947494484	8.3119752706232	7.83285955071618	7.93263265943119	8.36316614776847	8.4246219266489	8.49816564808373	8.23684073213734	8.04024382408738	7.91100485146172	7.84141761213594	8.31760302321819	8.60817958108707	8.5353701767802	8.60480440209813	8.41979584703991	8.40360230202013	8.33042760762898
+"HSD17B12"	10.9418170999662	10.8322936567779	10.160402864354	10.3774755563577	10.5917808137174	10.2794323085503	10.5716852083655	10.7276218245296	10.3123223309713	10.4296938141344	11.2053301484896	10.672203092553	10.2829110553248	10.1579526773964	10.3991901562248	11.0685227151083	10.4804002729996	10.4673917683782	10.3337759988651	10.6505704977982	10.2975038602935
+"HSD17B14"	7.55747938391594	7.92490158645653	8.14950736510507	7.88584704137878	7.86603099178973	7.99372884208711	8.47883339299448	7.65755514409031	7.74505759529189	7.89312936487406	8.36343152446284	7.92042405969397	7.97606295728646	8.14765780286119	7.94352501410359	7.66417876824171	7.25550884882596	7.70784608204039	7.95709151614594	8.00083930034436	7.73973236812715
+"HSD17B2"	3.69101410558973	3.69834232215837	3.72594810437099	3.90112613101648	3.75042825216791	3.77810643119545	3.91977967638055	3.60015658005349	3.64018063580658	3.52458281977743	3.54921777473528	3.84178184696505	3.91438789352845	3.72421497208192	3.76665728991002	3.8278861463564	3.64547985285257	3.38995943316185	3.7553500527253	3.65975024931098	3.55767292329186
+"HSD17B4"	10.3855865400777	9.9493145631195	9.83975688714186	10.08829157472	9.84693274622219	10.0074787454968	9.58206386387978	10.0455905521556	10.0236246652877	9.9541676294404	10.1059605399153	9.89864661874228	9.905277442465	9.95952788407395	9.94837616283974	10.0432294820266	9.92064552249001	10.4754060667715	10.0455296039124	9.72382574080016	9.92809813488755
+"HSD17B6"	8.11864881974333	8.38105829201515	7.77731168970958	7.89752027304599	8.28155162806197	6.56616603668641	7.20372210776857	7.99723636880815	7.23104964987349	7.52209923756895	7.89447793713009	7.06564228798902	7.30376408865807	7.3773604624005	6.94698452358703	7.56567999760759	7.06984187615584	8.07213800107377	7.49600234639869	7.5588447563376	6.82757642040335
+"HSD17B7"	4.89977468479078	5.06764699669236	4.94353236858526	5.06117222145664	5.16839297552213	5.33476040663658	4.9532124825508	5.07862773310055	4.88855250702137	5.13965057404255	5.25711088427677	5.34946222126783	5.12680352635663	5.72232536373457	4.85534113308176	5.20429747830955	5.28486501118855	4.94944384902802	4.96518534697908	5.09839356759667	5.16094449341545
+"HSD3B1"	3.84194198099505	4.03930622150797	3.84676627869757	3.88333650103349	3.97135132983273	3.92117765164612	3.97521665806832	3.70716109996551	3.77113781972294	3.74616016544722	3.88509171534632	3.88509171534632	3.88509171534632	3.65104863654501	3.98034666986714	4.49810587140611	4.01534974440053	3.78685476345613	4.10824122430206	3.83963733181027	4.12761737160828
+"HSD3B2"	4.23921618275699	4.19749447503256	4.2929085372578	4.29938893389525	4.21173583249335	4.37138891204734	4.29757794679382	4.32092797466613	4.40030064585507	4.33228531394494	4.16813754383562	4.30291884282523	4.28254119832392	4.42185682005208	4.38209362340098	4.42942790871358	4.17955885087191	4.16581606427015	4.16038376834627	4.37375975077173	4.25710734387727
+"HSD3B7"	7.55061064149506	6.85505991562504	6.69187863933117	7.23889185434044	6.92017204393866	7.64327600650899	7.41991141303164	7.4820042792897	6.91175530875382	7.1118312097379	7.00344170169523	7.13818481336847	7.06366671736625	7.48212947470599	7.07869394248359	7.07781873449917	6.86114874692928	6.95659470505556	6.96845426393426	7.05309797291242	7.1914569478691
+"HSD3BP1"	3.26307628559194	3.23588928990007	3.31571582541409	3.40257596608614	3.18932953269243	3.45329555242299	3.38238731642354	3.22259837712186	3.41352463238798	3.28178997616949	3.24202811222768	3.31004217326611	3.3455806981193	3.51856430306048	3.48051580076668	3.50310234788329	3.31004217326611	3.31004217326611	3.44929028371213	3.30166425412632	3.17366743555257
+"HSD3BP2"	3.26254171264464	3.27245200729203	3.41968830827479	3.54517543347629	3.51904231191669	3.4236567090088	3.31806258936414	3.33119015956388	3.55862484556559	3.46577165369423	3.32389046928279	3.47500082922726	3.41968830827479	3.50500829919774	3.32873077630979	3.48339546064338	3.43692093133939	3.41968830827479	3.62684431463384	3.35363527966012	3.49745394769887
+"HSDL1"	7.09746107026409	7.24093951894153	7.54678241659014	7.12584925076831	7.50485169206874	6.71807174927644	6.85900750335805	7.3236595039186	7.48783557788887	7.62479960847617	7.36656070635818	7.45250085841017	7.14899457370975	6.9793148226498	7.49274655190267	7.38274058054487	7.4665193034561	7.69733870758156	7.35508845817282	7.71463863743574	7.38955248349094
+"HSDL2"	7.97741094783126	7.66693436400802	7.34512146690945	7.30817797525348	7.31684052958926	5.15850882971538	7.62309900976313	8.21490846607597	7.11313070155734	7.01714163905033	8.17163222123612	7.24220288107996	6.59494048072671	6.98049824785963	6.49614627494625	7.33250321015983	7.02826764817827	7.14088317911308	7.7511730000565	7.24753932871711	6.74272254301507
+"HSF2"	7.30950683989073	7.69087215453969	7.86785491462654	7.54369972416859	8.17033582831133	7.55793679151064	6.86653572810768	7.76465247558955	7.36868230704832	7.71127482465465	7.71312622681378	8.0501537458689	7.29336367154408	7.03302949235251	7.7235920408603	7.63847373343505	7.8930610536843	8.19137746031358	7.71867527932944	7.6576112071079	7.71830973671632
+"HSF4"	7.90373900850439	8.05450035093574	8.27320020420214	8.3334099907252	7.89826931515112	8.21017533195045	8.79034236346498	8.03506601882948	8.21678136426248	8.00137560540562	7.90394832569977	7.89225857766075	8.35563252192666	8.55251821271443	8.08976659642705	7.74430866175424	8.11297696375584	7.88373355723552	8.18637034635755	7.92579431356395	7.94456582196217
+"HSF5"	3.48892736572057	3.49421063114248	3.57770192638985	3.76145915426798	3.52794444075191	3.32414502537471	3.54260783918177	3.7665400204692	3.47410198389086	3.39301365116112	3.52046042275372	3.65642486358249	3.52794444075191	3.61748771569354	3.71259384250994	3.56372406895833	3.54048810390316	3.52238940543738	3.5237334752688	3.60902796808563	3.60570462186572
+"HSH2D"	4.30923821664179	4.54137198263651	4.70548325674936	4.75600927346733	4.49530509964431	5.06602734806326	4.67541074544134	4.50104248307577	4.94498737398096	4.33029514658199	4.40283105425976	4.69247750154493	4.41068693271402	5.06040562436089	4.50396046288781	4.31404135364784	4.47492769129879	4.37008948919359	4.26706881671865	4.63930726904092	4.71890317804201
+"HSP90AA1"	12.9134056801534	12.7571576619525	12.2229621778604	13.3556048335523	12.6021623731641	12.6116803394356	13.1686877257307	13.0397386463276	13.0863655451045	13.166662548492	12.9400175148747	13.090231124702	13.4130804626454	12.7405198908709	13.4797019483856	13.014244294577	13.0412493266323	12.6417222838578	13.4680548431984	13.1014634796963	13.1849537526791
+"HSP90AB1"	10.7889951418902	10.5801028364168	9.38833059039401	11.0634342004903	11.2071130513735	10.0800814584351	11.0412743486845	11.4851255740073	10.6592732576405	11.5401310016776	10.8333181901952	11.536633344699	11.0924623197497	10.2350274965276	10.7108765789917	10.9325358864955	11.1048735379023	10.6676669025622	11.3250598786799	11.7796238163295	11.7801721174315
+"HSP90B1"	6.98316115833391	7.01289601043001	6.47045121058761	7.23797119111696	6.84015583044167	7.54510364453713	7.25436516268711	7.68031961058286	6.92757992610561	5.78457535376292	6.77851117011799	7.49190078154357	6.96359018617277	6.2655169135672	6.93301770412035	7.10310396675955	8.053640110861	5.91050238157286	7.04709355684532	6.86575743875843	7.30821871910602
+"HSPA12A"	9.26098532254579	9.85413582848348	9.89172067483466	9.8722812003287	10.5540441458816	9.66571900529292	9.12435610211703	9.48657808466067	10.3071156547745	10.6808671961784	9.4255539040204	10.4114207091612	9.9805664811558	9.22400929761762	10.1977650306037	9.9420067072039	10.452489604288	10.2053584277189	9.78394804534567	10.5287511036373	10.6517501305928
+"HSPA12B"	6.85330965907188	5.54516317452074	5.22440096104231	5.59933547546052	5.11901827014079	5.53823750321791	5.79117941987952	5.11188952419347	5.33388615786271	5.53839491128488	5.85199245899969	5.44389207875865	6.00581129866913	6.08726643919682	5.70539483844007	5.29274730601974	5.58525858206548	5.15856753807364	5.274120305452	5.80376184030333	5.54516317452074
+"HSPA13"	7.13497798605798	7.31127100545778	6.25123545424236	6.67734569089305	7.7304828768238	5.98423725340268	6.48583692582677	7.57664518702455	6.86797964580132	7.73425863808806	7.33783727144913	7.28687838138529	6.62866538940647	6.14439441449627	6.52417587547536	7.85238190533623	7.04700764396159	7.56917873683245	6.97855414577215	7.23855443935345	7.65600742303005
+"HSPA14"	7.22703567445246	7.44041360788596	7.53211229958356	7.08730457323126	7.68334500811928	7.15270189962106	7.15258369254205	7.73127713934893	7.54924189468444	7.62209161741309	7.23060156882541	7.29747803548363	7.05224635229932	6.99401474134003	7.46843143587616	7.23618664625759	7.42986892747838	7.92724067173664	7.4153793564109	7.47263880635723	7.38961262510467
+"HSPA2"	11.4001113767767	11.2726611200731	10.6406514373469	11.4637250217533	10.9073221814583	11.232616187979	10.6257025921059	10.4670746732025	10.4653297787458	10.5964395231587	12.2643115302522	10.7453174088165	11.014929378503	11.3172132160734	10.6767332475541	12.3011576707226	10.7053975996465	12.353632800915	10.7989427961233	9.74931431707239	10.4190636697274
+"HSPA2-AS1"	3.8849770849925	4.01125115598815	3.94340301202066	4.19342718914722	3.7603141169561	3.4279416721977	3.64412061090917	3.73835391462935	3.91907602442705	3.7545343820279	3.9526432462815	3.92536172398152	4.02169745600652	3.78410830715363	4.1745233960583	4.09844747792121	4.13232007219488	3.67415187941189	4.02409367812511	3.74698201983361	3.941716120693
+"HSPA4"	8.49721096138723	7.99088152599298	8.51166210290286	8.53582556671189	8.11399187871251	6.54630025474533	8.2926802762359	8.30468885596463	8.96307738687959	8.49459756419379	8.19259460163263	8.35012763068124	8.43245672712441	8.06604384775047	9.02523941574301	8.30240748724753	8.0746036756967	8.27447692630104	8.61904628641679	8.9163542167651	8.60689942868275
+"HSPA4L"	6.84895213970709	7.9638020178629	8.25323574964245	8.44633586110944	8.5043339200483	7.21414721982182	7.48758978721066	8.25323574964245	8.60620296798121	8.307933372418	7.33677183944489	8.25323574964245	8.88448837135116	7.54186660921833	8.90258170006298	7.62839344447495	8.45949392594515	7.91754347950316	8.51027031988489	8.27616310233163	8.51229816639796
+"HSPA5"	9.88294187878166	9.68811177944462	9.53130772430726	10.2883642617688	9.72876259623332	9.63542801915086	9.91205591381235	9.96898231880067	9.62001125954395	9.46868497880717	10.0637630500318	9.89501639045788	10.2334435821938	9.06975736603188	10.0837785128837	10.2521392118303	9.65283457994451	9.72322442113917	10.0245819122699	10.397057549912	10.5894454760106
+"HSPA9"	8.45417754731251	8.47813356368771	8.6545509253393	8.03891730870956	8.70244126481314	8.05731026951121	8.39752460695977	8.6204175798267	8.25655319976219	8.47231653837017	8.8635566822993	8.47126204331111	8.23797114388684	8.15441037041724	8.61649240538842	8.72989501245763	8.35941752433206	8.87336441484525	8.17238221789312	8.58201308245473	8.4705668472788
+"HSPB1"	11.606158783922	9.86631460353275	9.83848520708104	11.6188135094507	9.98558124137227	10.9562159249765	12.1403296247223	12.1992823814472	11.0878845704013	10.4146404580773	10.5346557481247	11.4945491511103	11.8119903726528	10.9159937315431	11.6505355437406	9.76345546929908	10.7235849072671	10.2312187063443	11.7243134333096	10.8599352826486	10.3874829605079
+"HSPB3"	5.63282737911643	6.79954726199472	7.96420857786847	7.13544338146471	8.02394509654477	6.49804472660575	6.98327039036157	6.88902023730367	6.99523061134154	7.50903385913222	6.47428842775992	7.68446144287173	6.88577146168886	6.33626557574862	6.82748268972583	6.75644048737315	7.55727355939572	6.98907366948952	6.7877110379217	8.03130714069731	7.36818768777723
+"HSPB6"	7.43705983446531	6.77099542593587	6.21102237346609	6.42438254780667	6.80214768807186	6.27433379606885	8.09667581084108	6.69282293304231	5.95568969013145	6.51372692446406	7.30327024512992	7.14111191338462	6.95446919137178	6.78766116567931	6.40094603031802	6.10317758633309	6.69282293304231	6.56061981878897	6.90133805830756	6.5842971746348	6.63850895851742
+"HSPB7"	6.66910112091875	5.6798134398316	5.44162520657718	5.7899061833471	5.6157935784446	6.49582569088439	6.07719360650786	5.56458436710493	5.62881443752917	5.81931138600803	5.51954039791646	5.58069233643717	5.86642018511773	5.99935268470737	5.65534792532319	5.23195581833364	5.708791673045	5.51752614248895	5.76118443683651	5.74434057424665	5.56035088690432
+"HSPB8"	10.7074788413374	10.2157257202103	9.43659282994567	10.382127927178	9.99557392032366	9.07665002923403	10.6541903228515	11.0145453521794	10.3693683984109	10.2937348338303	11.2439325976665	10.5344451834449	10.5836559101282	9.93369967752864	10.3472675069829	10.0621829166761	10.3018316496492	10.201672433591	10.6562323525003	10.2463420576829	9.84164120944498
+"HSPB9"	4.41554189096988	4.37099177871977	4.46724085812796	4.50566683369188	4.16765328038645	4.87900581178903	4.90999344666963	4.2493817728559	4.73780036800828	4.4502298520041	4.58991090260346	4.3966621231289	4.91285439221911	4.74141157219779	4.87679716932899	4.33714808078835	4.30398809786747	4.41554189096988	4.8243697854268	4.27095971635849	4.37791643874817
+"HSPBAP1"	7.42678062546788	7.13673688744717	7.3285669677486	7.14787283952984	7.22153116819554	7.18083824628793	6.94401611105867	7.18511212850771	7.25070349172933	6.75487740967345	7.44417815933084	6.56468244987959	7.22645604076962	7.24888725158491	7.18083824628793	7.68954160123779	6.86321892109647	7.73989627283836	7.04496403259376	6.77170483584391	6.98976427437396
+"HSPBP1"	8.27771045515149	8.83190929321817	8.91305016517216	8.52031275833886	8.72139049567708	8.65099184241915	8.40258792046759	8.52338030933909	8.50767205139413	8.67168748434314	8.48957450772213	8.63898191989217	8.60902002305872	8.34776118338253	8.4154192799941	8.51195118363447	8.58247866433732	8.42707445943408	8.27175955440648	8.97579544549809	8.65206503763332
+"HSPD1"	3.35982733247846	3.73053494877385	2.80481616843507	3.7659004849146	3.09208362411977	3.15686572720842	3.70483112504422	5.01385294779029	3.87309197204487	3.42925818033375	4.27300868896041	4.02194716477915	4.31401819494088	3.52237057860757	3.84860729666591	4.07638670161764	4.51655168213749	3.10742457815888	3.61082330847908	3.69358669135497	3.17106383587878
+"HSPG2"	7.87752809409761	7.14751357589394	7.12855827973105	7.23860354536622	6.91642702357542	7.90242551979937	7.73304794568493	7.47332392673986	7.20701893257491	7.34962495295766	7.49144575648365	7.21183196404563	7.48675344194151	7.91517676641975	7.33346337530395	6.95119987428513	7.32850107404994	7.07010353069634	7.46921451503589	7.51161277972883	7.34962495295766
+"HSPH1"	9.53889363192094	9.97655320682011	9.69902248143625	10.9440509573773	10.3947533735017	9.65566943161827	10.4025828766474	10.6532648081789	10.9307935087009	10.7665595799665	9.92954558095608	10.9423433169218	11.1313097215205	10.3473414857507	11.0432268066171	9.95799632904274	10.6279989286044	9.81939884263362	10.9702261348762	11.0676397270686	10.9513555615793
+"HTATIP2"	7.82160628822901	7.03349035956331	7.33756368667147	7.29675175708311	7.5546851486325	7.82058602667874	7.31854429215667	7.53521500541821	6.9819315621443	6.95290224871625	7.71772104149326	6.99143356505238	7.42147000739574	7.16931674582483	7.54090696940499	8.22219193087749	7.19945165550245	8.61192559767833	7.33102593706576	6.83849057015037	7.03497939795871
+"HTATSF1"	7.14227269513371	6.74431738040589	7.15124656433552	6.55824402183785	7.63429121657594	7.88546083641674	7.01432155798495	6.86337711503178	6.61699303913195	7.1732455974077	7.07320846859955	7.17132122828099	6.50041737752439	6.83601497050328	6.39765904435493	6.83455627655394	6.71605625307486	7.38727699871467	6.6298750282123	7.40839021013322	6.89064316274697
+"HTR1A"	5.32078110500575	6.94939874307001	6.56090585396518	6.84788897770973	7.52427118272848	5.79333994615043	5.3360300647792	6.38085340064245	8.42569116632044	7.5421470869773	5.97006354546238	7.23246197235269	6.61758977959131	5.35211597073649	6.95170048794609	5.77534127465061	7.46754602297929	7.23894277138364	7.27995818685697	7.40636365091918	7.27587715328434
+"HTR1B"	4.366507602637	4.55805993573285	4.5527362011058	4.52360408390256	4.72449122434813	4.9745310845426	4.6392656936987	4.87444708444402	4.49008176145483	4.53861350888461	4.36006351505436	4.58270473280395	4.5953680468958	5.05589011163374	4.71527733214173	4.40731616577559	4.71193439007311	4.31202092260185	4.66959680095469	4.51235374091421	4.62857506013464
+"HTR1D"	4.86218485959067	4.94622869999031	4.8739697857545	4.93189661444201	5.01904026113953	5.40447207680955	5.33890882939258	4.92300243498012	4.86361138153057	4.70435799076573	4.64887185910744	4.7246502185246	5.07590453628355	5.01723343597274	4.85859692655933	4.75543882807758	4.9603504715784	4.55585997977715	5.27483940823711	4.91042497339203	5.09304185989209
+"HTR1E"	6.83607830376563	7.46242953351935	7.54927795000606	7.91081783206241	7.89022907813588	7.66602088184424	6.70503566571684	7.5466302598405	8.32839096415582	8.03150909475045	7.12098008554743	7.99339811954672	7.84324049284047	7.44377174893456	7.7846182093298	6.87872808852044	8.2651897717387	7.39615888291351	7.67555040281522	8.06512564233154	8.03528536291279
+"HTR1F"	4.93779438031075	5.26858345486935	4.69129924689479	4.93552141031539	5.75751547906726	5.50245704824068	5.22925410334525	5.40789317844408	5.27823592991198	5.16434073850692	4.7054329799607	5.26469417095175	5.57684444463777	5.75445613431996	5.59008389260773	4.8352332194066	5.5860294630783	4.71542303040128	5.3704849366841	5.46937442221641	5.53739199419669
+"HTR2A"	6.24518906080835	7.14484799784555	7.7476022464672	7.69346149517862	8.74156704651439	7.15383109327572	5.85521358938013	7.62940118558984	8.08109078552415	8.09393328886022	6.8422187520645	8.4166254473306	7.85363389581427	6.62621790585315	7.67180728235638	7.11481043780527	7.98315570784487	7.71081623541062	8.04442754362018	8.59730919498886	7.81324051714029
+"HTR2B"	3.4681413425317	3.55304691905429	3.32886203490494	3.50343228887058	3.63511406653387	3.49221871360145	3.34576610092865	3.39645916877936	3.71542737455913	3.4681413425317	3.3441691426027	3.39804175906473	3.3771584959087	3.51743502410877	3.37529893542131	3.19879506302438	3.4681413425317	3.41242900585328	3.3505525859924	3.61740604186049	3.43010287131351
+"HTR2C"	4.41334018110571	4.95899230621369	6.75951992593227	5.05019676827068	5.71493031234089	4.32004864558987	3.8469614173239	4.04600814491007	4.47072593770217	5.04659378394944	4.34417587152644	5.54403381204896	4.18441728526028	4.20205786789713	4.2805106958862	4.80315572934188	5.11674424204932	4.7474135455354	4.50643129871752	5.54311080308804	5.57358885642024
+"HTR3A"	5.54901931803456	5.8090696537004	6.10067585115023	5.87422858899176	5.9747418005676	6.02001471484209	6.3012540029447	5.76980078507354	6.02367203999687	5.73299945425304	5.61430097593275	5.89434345542963	5.96014032718033	5.80497831073146	5.88976514795783	5.89909092847946	5.91536334384264	5.44408159306953	5.80529268342657	5.85037860556996	5.85037860556996
+"HTR3B"	4.51101758062668	5.14510208336765	5.19620469390342	5.26324040094429	5.28711509798904	5.10726529327595	5.31653715141531	4.97807450835988	5.16352586429945	5.50006551405405	4.65009846927676	6.38282107989937	5.30719777996524	5.15402867223453	5.04487701090963	4.80219881398058	5.54573832419513	4.58026770906069	5.24491139809003	6.08072377670447	5.14510208336765
+"HTR4"	5.18391081129588	5.70618625019859	6.4309103145923	5.97073952677012	6.16352398226499	5.71956672197702	5.37264304817475	5.70618625019859	6.27024232848759	5.66082191793058	5.07842856312848	5.51705763845171	6.16099373633202	5.52364129934106	5.66029657348081	5.11573209815204	5.93825501208622	5.36581521957458	5.95631331255674	5.62324299508449	5.70618625019859
+"HTR5A"	5.34522518738276	6.05472510304565	5.97177830893804	6.07426654499885	6.94087734642838	5.95090465471145	6.16615806426051	6.10172455145438	5.94091541124619	6.79200073936733	5.80873694892136	6.64770235823021	5.95670124985362	6.02582867652129	6.05472510304565	5.89929967975476	6.56216316420173	5.94400674758786	6.09943234324514	6.65163060793996	6.70953285546953
+"HTR6"	5.95361806935897	6.14692454489383	6.21026871851407	6.32404150440961	6.16434051166014	6.61899963734308	6.61548220443626	5.93069340068276	6.30257488855827	6.3473432615403	5.92828763763101	6.14893618509495	6.29079839341496	6.22074232981533	6.18731192468391	5.98862617434257	6.40265257944007	5.69921374929802	6.21005108211508	6.32815752672931	6.25180022289699
+"HTR7"	5.58051471521499	5.53877296903047	5.76526443172553	6.03837270463874	5.31541103741675	5.92390865019322	6.43188904357321	5.644457088193	5.87380490852192	5.77803750490009	5.64045950312211	5.85049736546781	5.68125366050745	5.9954904447645	5.64508586291976	5.49765776548888	5.77235623670511	5.66383423333958	5.87994455572327	5.5958567197182	5.82371888247752
+"HTR7P1"	3.88703113175764	4.17549109701889	4.36448959763263	3.83083395500101	4.17776922127376	3.51975032291179	3.28319074730162	3.62507307824029	3.96779852709763	4.16860865759026	3.94998234223588	3.95082917566376	3.6879552456335	3.58481804956632	3.60623420961287	4.24520833059319	3.94562786256674	3.88886747257364	3.76810542238558	4.80329529284364	4.13855147064209
+"HTRA1"	11.6292919360197	11.8285853971016	11.5731197270768	11.5229347580861	11.4746671783907	11.6570600639511	11.6451434381336	11.6894850185206	11.4326135498618	11.5229347580861	11.5429337253729	11.3160737081747	11.4972273107867	11.6070363659935	10.9338261310226	11.8338979875875	11.4325206957648	12.0472409560539	11.2612030517463	11.4404409248133	11.0132712484489
+"HTRA2"	8.80916361801077	8.55953705231491	8.49968047523481	8.19735113300394	8.79210633155238	8.01379356712833	7.84990005907916	8.45865495785194	8.11420832529069	8.89162429269835	8.61302614554261	8.79929859444655	7.89286153989428	8.17268252764337	8.03444308744991	8.77740611703668	8.26047980017216	8.80417750651699	8.54615716504503	9.10828920342139	8.77062535546731
+"HTRA3"	6.14739737517754	6.35297854899096	6.32990626440965	6.4940963155736	6.17673493343869	6.57640510467796	7.22958971023081	6.39875492442099	6.3862917835578	6.41530820102463	6.3251969015655	6.47910925820076	6.64902875793635	6.78245658329039	6.31311142568558	6.25141224342112	6.40113864979118	6.25521709525622	6.48583228849031	6.40364827485029	6.53036259315506
+"HTRA4"	4.09393669272726	4.13175088595208	3.99446054199141	4.35916225367477	3.85212512873762	4.2424270013675	4.13124738985321	4.06928475253924	4.35420291304818	3.62830921263791	4.20345629380441	3.85195990206136	4.1125694674224	4.15598536908289	4.23218329034149	3.66296793455344	3.84054160309622	3.86426831957576	3.95153469291648	3.8770813906745	3.93705732325869
+"HTT"	7.72471797101642	7.73034397932685	7.7999750427994	7.54567257275938	7.78657351572081	7.61484132886886	7.64388869768026	7.72142220204739	7.79898016880384	7.70765235645848	7.58019268914419	7.92109623810243	7.42791278492474	7.58963528706771	7.72370453638611	7.77307387116606	7.84264353581785	7.81991400155238	7.66017554956975	8.03451476788942	7.86938591424926
+"HULC"	3.5311094948091	3.58742107032399	3.70141754137761	3.64353395112119	3.64732933716854	3.82194031389661	3.93447664731903	3.57449864214694	3.52754973318228	3.53303696979652	3.37621680872155	3.44956079150535	3.63284224666175	3.63119911408124	3.74611704890652	3.62589837570552	3.77119909708154	3.44291431006582	3.73749561880726	3.57890326791266	3.6190061620667
+"HUNK"	5.78462814388797	6.45718866223775	7.21136846668994	6.43116743500821	7.01819613242029	6.05746906082919	6.32219497419946	6.68361947726479	6.55528558906622	6.81858081753464	5.86594095434049	6.87039620096004	6.54116039199553	6.08889219431186	6.59123245219542	6.33008437420002	6.87677778271391	6.46964488619953	6.32509117338309	7.34636329015186	6.92243875212232
+"HUS1"	7.51280539194475	7.37370434710578	7.16150150582961	7.41227805633777	7.05769819629783	7.22887751667864	7.66413495077771	7.50733133155899	6.97396097739112	7.41827545694272	7.10190182424502	7.36174196555553	7.21712786553267	7.5528709289972	7.51762381669839	7.51125788134639	7.26505839601901	7.57703019044231	7.43911761589909	7.59053781112574	7.43170093196873
+"HUS1B"	4.7747507306514	4.95077572981895	4.8679149619756	5.00584414374846	4.65952504164632	4.98791436698136	5.08780319022106	4.87110630326043	4.92596847952296	4.9808897523319	5.02137038904013	4.93395283776839	5.32126567196268	5.19624406895626	4.79187949375281	4.80398952752605	4.96281599179469	4.8795446345566	5.26265897708434	5.00321591401481	5.04369962597677
+"HUWE1"	7.73580191577175	8.39062192097635	8.77217427452404	8.29760878105246	8.49826730993525	8.41058200346843	7.84912750588124	8.24093404903405	8.87532386840669	8.1391155302649	7.91663898586998	8.24093404903405	8.28622853509602	8.16393318687421	8.25762297925164	7.34876786256186	8.42903130677734	7.92244449000126	8.14715291410991	8.46462686975021	8.24093404903405
+"HVCN1"	9.59283522721405	8.3862471218989	8.04897957952201	8.48893298022691	8.19448204613332	8.07557552828267	8.89794273592028	8.89830868438854	8.14941530128369	8.23860939621766	8.64479243959342	8.22724054596995	8.44581504421901	8.49001095812498	8.53650132830339	8.38370343370395	8.05589030492679	8.25704279967992	8.81680263765218	8.53997461463831	8.13327283365032
+"HYAL2"	9.03662437516596	7.95943390523613	7.63101006215305	8.24830000121376	7.79103029238074	8.86656191345037	8.44288173705469	7.86878073778356	7.82306355336839	8.05388859155742	7.88979767026401	8.17245446886932	8.09597974064727	8.63502067192451	7.90833045315164	7.54757136809524	8.0402898030597	8.27772918063809	7.88470521346308	8.09470654521489	7.96245875091125
+"HYAL4"	4.65518553067285	4.77804786240939	4.88756315629432	5.02911786542874	4.67955035248878	5.16169603906279	4.79712265835358	4.80030651781337	4.92519824676243	4.8752219136044	4.74953272100704	4.95914567090803	4.91242543061836	5.08267272408551	4.83201026371606	4.5634046350187	4.91172425038012	4.45960385749421	5.13864526668275	4.537699768961	4.91174926750005
+"HYAL6P"	3.23335971446105	3.12286407484455	3.21366461980127	3.04557596697159	3.1539598853322	3.21298117002204	3.08932836567662	3.06143532450408	3.04557596697159	3.34142141327813	3.05848663294914	3.10180155850774	3.2163412502009	3.17773370977695	3.10180155850774	2.89513829908211	3.15369266273764	2.98997954712568	3.07289889457494	3.19282352051794	3.10180155850774
+"HYCC1"	8.61016859773739	8.59726299665872	8.47967894984993	8.433863848967	8.23605984821544	8.66072337261303	8.1018128389053	8.27990656798303	7.81936723854929	7.8439430150116	8.95809958788227	7.25575239981662	8.61670671351802	8.45697816862361	8.60222026771958	9.18322478770988	7.87977955178154	9.06470034940981	8.28069340725784	7.66021567491394	8.30869995057687
+"HYCC2"	6.78206430457926	7.26831961768903	6.84662421264482	7.64631956778775	6.64157558541646	5.38501437639603	6.49195141287381	7.64276057665419	7.95672281450765	7.75047347773979	7.21623213603507	7.96890198428745	7.91913315676644	6.79848043652942	7.96483777853415	7.4514218609698	8.27015732828491	6.43022176044043	8.00612970579278	7.65819928949327	7.99611626774461
+"HYDIN"	7.53068629078535	6.76001910935413	6.37403565812206	7.16081857859305	6.47690083529149	7.38748403426369	7.41437665605607	6.86158407209269	7.47810625730945	6.581182300789	6.9411996054822	6.25207497481921	7.27070740926642	6.443834933189	7.0398951430778	7.01079708708383	7.33038008902267	6.63906494151227	7.17468627700625	6.25869095390251	6.62633671349608
+"HYI"	7.66273007026333	7.61541805561977	7.47372596690048	7.59177454796086	7.16628930659805	7.88083471423057	7.72877908510911	7.33221968234458	7.03829410066643	7.41961186188512	7.8987417442378	7.25093746795595	7.09032184640934	7.65177898859526	7.16162405508281	8.05220685584417	7.1648885739679	7.89917495795292	7.52994304125437	7.56337913713066	6.80887735142041
+"HYKK"	4.83004298945526	4.95019459494787	5.09896820455314	4.81730112480479	5.171973508218	4.78345954984092	5.04776399669815	4.70031918543772	4.89146482405995	4.82459644702831	4.7490521479961	4.80385517706939	4.80656074190022	4.91440988644075	4.90971038067269	4.99303184377997	4.49048132479388	4.92867247657591	4.66124087142173	5.10041732661136	4.92804875174063
+"HYLS1"	7.27680527500947	7.9433172976159	8.14724566039919	7.72450804153519	8.19946867176452	7.66436530018158	7.24481206360262	7.16543642354524	8.12509617864053	8.17874424287216	7.26901815194314	7.64737961787221	7.9125464778954	7.66808414629917	7.99714927825092	7.59714446845474	7.62697043448654	8.1272699469655	7.79100274066353	8.07363022288166	7.91512813328957
+"IAH1"	8.75369810014955	9.11262088042609	9.08737628524574	8.75177234790468	9.25080985569438	8.45515330388289	8.50038491961687	9.01057851518181	9.12410811566662	9.37111940606692	8.88279341319015	9.1460002727299	8.74677073162214	8.48773707241093	8.83636264627632	9.28116683511574	9.19832662062623	9.25535676749374	9.19357397866782	9.22353374698887	9.10834453128287
+"IAPP"	4.04209107169654	4.00749566871299	4.04713776542186	3.87427127023464	4.03979539245002	3.98759170024663	4.11131198005952	4.07508057406752	3.91754570018594	3.85690210828605	3.79941743324173	3.79424501766324	4.02283435574396	4.14251717083835	3.71203456798985	3.95732641042095	3.97154608950181	3.84816148539471	3.93668319481726	3.97851188544152	4.03728260169062
+"IARS2"	9.29636309894125	9.0851442573201	9.12868525971239	8.73655776645826	9.2406305707797	8.64987689896081	8.86199638897382	9.00884741126547	9.00536716690998	9.26750551141269	9.15966167414353	8.96667111998429	8.45955139295585	8.70013060949921	8.86087143229825	9.26578827023232	8.92945806716836	9.43526589399968	9.12450134699797	9.13063661341859	9.22747188803438
+"IBA57"	6.77678661146166	6.49499237347755	6.03886167778986	6.70440136802728	5.87151800613649	5.38575936436264	6.9619937321264	6.56777760043105	6.47775299236278	6.54175058839884	6.69361261581883	6.36518168044999	6.5354631347882	6.85749933714103	6.7144430701526	6.52961270619051	6.52199235894316	6.06835276876184	6.48583228849031	6.28360820213768	6.26697011691065
+"IBA57-DT"	4.68920773477565	5.12670197313248	5.25307712122572	5.1631016222036	5.05044782857177	5.27626556063504	5.10716487655696	5.10716487655696	5.25278243660265	4.99877473417801	5.24241197353949	5.31125528888775	5.09236106234337	5.2202249818926	4.83851391392687	5.23975243493124	5.10716487655696	5.25119269925783	5.03890459929938	5.04066267913059	4.97003985644836
+"IBSP"	6.47243675765028	6.62234836238743	6.72374564002748	6.61295339518768	6.54014938699679	7.00165367585944	7.02556637466665	6.68667107179204	6.69972711908679	6.66176053402842	6.15143061231791	6.53629571250192	6.68882285396299	6.9382760781697	6.61029288397603	6.29423814929582	6.74956197165545	6.28728200923485	6.62234836238743	6.68051912394355	6.56409419910302
+"ICA1"	7.02068560355857	7.834100160305	8.28163063697573	6.87845267939013	8.26368391979596	7.27376123173643	6.44577700899408	7.48754437387375	7.45008182050739	8.05711854107413	7.20941648874533	8.17182456609418	7.23548040272742	7.28877273371044	7.20477156683013	7.11374682639895	7.67612641812978	7.60498012526793	7.12545664220691	8.14953627432172	8.08924803214156
+"ICA1L"	6.54564183921226	7.01297623834203	6.46855046867032	6.37329881580833	6.53482052542463	6.16894603065176	6.26926803429093	6.49673497780198	6.42813131534083	6.91643707142629	6.92264969209679	6.93546436624665	6.40391174981535	6.1955610707608	6.48736446627437	6.64737513990755	6.5793184786918	6.5793184786918	6.7959781602755	6.69562804031696	6.80823395859119
+"ICAM1"	6.66400527129791	5.01375972393925	4.78051157487376	5.32692006831047	5.12026533286349	4.71540903811709	5.45316975790247	7.05454860374536	5.38391118182205	5.51634053073235	6.19583494919785	6.16777940097124	5.53147984400162	5.4330014512678	5.28437882898049	5.45245368548046	5.73956750617362	4.79556611561907	5.28812471940295	6.38746342019763	6.3037552067899
+"ICAM2"	10.6311653768351	8.40429004651822	7.97286874294047	8.63959485319664	8.1726096328332	10.142707472024	8.66431170899813	9.03346569430759	8.11699452990813	8.49610196825696	8.2362800247812	8.76046081085831	8.99444700196304	9.29136053645727	8.58602142819688	7.86231380086019	8.72388493367307	8.62581556960941	8.4376526459423	8.68685539527064	9.47447681628228
+"ICAM3"	7.54151177348797	6.65148123200678	6.90806078213429	6.48875816095876	6.53597308213851	7.05447137252126	7.13498936576422	6.94346750832892	6.57843580262089	6.86847001571273	6.50389059508518	6.57884083889862	6.93923130504113	6.81416046747267	7.06407686108721	6.28111974354335	6.59411453019857	6.9569522891271	6.53079102389933	6.9934251615431	6.56384023728804
+"ICAM4"	3.85765709304961	3.95772406066899	4.08599259045188	3.97911947327099	3.63144569368282	3.96962422787646	4.32351478355936	4.01629809976172	4.22101788520647	4.00469379059507	3.77665064829611	4.13144028761972	4.03256902107579	4.00469379059507	4.02902103000701	3.65147709909067	3.92030526424979	3.5204611493687	4.31737310441747	4.12089488131325	4.00469379059507
+"ICAM5"	7.21827641017974	7.65696002962948	8.62561528999077	7.63698473789193	8.03516464926186	7.54416943735494	7.70751507278532	7.61737584118939	7.75803273824364	7.72175361689161	7.51724885974248	8.04962258588187	7.66393549331417	7.50016650875726	7.26491676306447	7.04895020483092	7.68620983937304	7.61055902753713	7.55681842304631	8.23134474213961	7.82128152011994
+"ICE1"	8.59524459784941	8.66584988552724	9.18611574734621	8.57374974658785	8.75506550747885	8.39479511917097	8.38289604145093	8.57745192760819	8.6862446034572	8.3593542937283	8.62075416941126	8.15195360731286	8.3468205668428	8.44760014707283	8.79630499763616	8.70367041604635	8.45665817748736	9.09942652108962	8.62976246400549	8.42549136445357	8.57613200245923
+"ICE2"	7.1742734552394	6.38727624030655	6.43775963391848	6.57134189263514	6.39256701006839	6.43635745355892	6.29079601809376	6.43775963391848	6.26774060058283	6.39863554426522	6.86269071219678	6.15729184826925	6.20995544879282	6.63616445705451	6.43775963391848	7.40413692859778	6.34981913816134	7.21024356748104	6.88932172780027	6.28281082259354	6.13928897884328
+"ICMT"	8.27991529162963	7.84127773927797	7.86812455745106	7.97968010435368	7.86247029831291	8.28302187388198	7.89364093901622	7.67784076198884	8.44780567560733	8.1367723631711	7.81457271727907	7.72504271009037	8.19333355107024	8.27366467063486	8.25907574170066	7.70737376513334	8.00177282670545	8.16252955988117	7.79230324973078	8.03746625088273	7.9706595870953
+"ICMT-DT"	4.03321583424179	4.19818030628423	4.43041999319434	4.43942536759511	4.19818030628423	4.18904736618874	4.28340737308076	4.16948244628206	4.43622661958734	4.44460105051616	4.29108294453723	4.24633468372489	4.29108294453723	4.52079183941424	4.10829906364276	4.28340737308076	4.39279676951266	4.31452270536114	4.49304350318929	4.12590318330012	4.04907162915575
+"ICOS"	4.0142016788961	4.0902241935942	3.8210644134479	3.9375736628278	3.98493285985133	3.89866521309306	4.30845898378227	3.97562412794825	4.23540699448594	3.96089851493637	3.83353097716374	3.83716813870223	3.96779852709763	3.90962172492428	3.95829194612472	3.92013921061022	3.96779852709763	3.98498350322539	4.07914769484169	3.79868758898743	4.13125147050353
+"ID1"	10.5434757610335	9.30034121653794	8.4496123045344	7.86813291224535	8.74827197599772	8.70408922336916	9.18497934113186	9.16492734051069	8.03139910028999	9.05377591046473	9.25313278047827	9.4524483293646	8.03102485035895	9.51968524329245	7.75873986009699	8.17285944791488	8.68994207918371	9.00590505023376	8.80865961048807	9.78460159255219	8.15156498496403
+"ID2"	8.23765320193227	7.80260554775827	8.6561013577176	6.49956778250921	7.34479203246334	5.81120502818538	5.99790088944547	6.3971633108908	6.36684748168555	7.34751736909214	8.96665388375214	6.77197606300968	6.65053349055245	6.47835867293794	7.19739384780881	10.0748630680403	6.81416784364388	8.3819216354009	7.59772981433444	7.06841236422095	7.90395361608494
+"ID2-AS1"	7.28170792093477	7.31115721203153	7.52488822704017	6.86430138663691	7.0872081263693	6.79763944576506	7.47640021388444	7.08451124121566	6.92240049677691	6.75699188637825	7.57258610045725	6.88412712813047	7.04977164755342	7.18636783503598	6.8124289190769	7.28916397050954	6.89095888906386	7.26275707233396	7.26416484525954	6.93249793007217	7.027059253392
+"ID4"	9.7411132606417	8.42145883566677	8.6109363426677	8.39581532205133	8.32843936085544	6.87682740443913	8.78533091864961	8.53924187807726	8.34627369508913	8.47658899623967	9.21021966839836	8.47879800329464	7.91252138744126	8.11704662294106	8.41012305250998	7.9757625105454	8.21562408695747	8.59841376920377	8.67788251695713	7.89716216926521	7.22401365428016
+"IDE"	7.18850692588981	7.03778778444413	6.63466547796838	6.75839919449098	7.14288585309943	6.66688838499534	6.64806030103261	7.15078577248164	6.81053055737839	6.90626929289505	6.9677981558618	7.10101751734776	6.80087570903795	6.91495651248815	6.85157683275209	7.30530834743934	7.18529036120998	7.49990538954814	6.94816053035147	7.08905215262898	7.34371594189027
+"IDH1"	8.188174337231	7.53673968941131	7.06758730047773	7.54109569921817	7.28309633427867	6.55212088874626	7.54808157844534	7.63947291096298	7.2898383642863	7.2232774408701	7.83676398841143	7.01529188072074	7.66613832853727	7.15463896968782	7.95022155463319	7.58711411900085	7.00702910663615	7.64749819463033	7.16903184016095	7.40542303351983	7.57953333336483
+"IDH1-AS1"	5.3805403336926	4.78747473447894	5.02322536359357	4.61552486600255	4.891431597517	5.01469219518576	4.95530165937801	5.02272861073737	5.10525757667967	4.891431597517	4.95216948265606	4.94448320120187	4.57916080161041	4.93049868917354	4.53632984260797	4.61284354163675	4.78863547666301	4.76838385568164	4.97440784228042	5.1024960866655	4.79770385892617
+"IDH2"	8.44454089301148	8.79004360369969	8.18912625332506	7.74410059844016	7.9330241398586	6.81942195828057	7.89618593072896	8.41007141634736	7.5462571197459	8.40797119830092	8.79591026020292	8.34727934651167	7.63006848429012	7.79283799024092	7.06403520436057	8.43452642989146	7.9984578590482	7.82014845538363	7.84043453002205	8.12330887189231	7.78430934386495
+"IDH3A"	8.64665775037042	8.64443502626138	8.49377761981323	8.82079051939462	9.45056230372849	8.57888992618527	8.77218956719319	9.13082160759717	9.02504689894637	9.72580170677322	8.68853177358535	9.57449308915671	9.12235096845484	8.46985741922101	8.92100344501916	9.06301976676842	9.23964917266269	9.19382143683425	8.99050521167486	9.51517008037086	9.80007937779687
+"IDH3B"	9.02634274944342	9.02823536505326	9.22528245493043	9.12963860647494	9.45487284750985	8.80936673528733	8.90082773538686	9.08579302865257	9.12610663741061	9.92527009972392	9.26896532942103	9.54477265622447	8.98165268786014	8.8058296511837	8.83345732488474	9.51609531128514	9.16445429314695	9.49773336282236	9.21275606601235	9.95975489238464	9.58933086013003
+"IDH3G"	9.15662273677617	9.41145979285941	9.67531611630429	8.98725496238657	9.81560247834645	9.32580104111255	8.89961259120199	9.1679615020592	9.19027356163759	9.93383700323724	9.45689877726207	9.78321336820833	8.91823243757645	8.88295196481695	8.98623505263011	9.31914146488161	9.3743108189111	9.62163283062385	9.1020210292949	10.0201106867403	9.71785007488944
+"IDI1"	9.87557044301089	10.3760311900319	10.264681680942	9.85491127612234	10.3006233686654	10.4888573400718	9.53799371584445	10.313037877206	9.74330147344805	10.368671114903	10.3189262532245	10.372287144914	9.73471067644757	9.70793204738487	10.2248130018762	10.4765545263529	9.89978786123889	10.8939399696469	10.0935711407947	10.4204993004991	10.1764223882423
+"IDI2"	5.73714109842634	5.93319036804548	5.69529749047374	5.93354383530519	5.95345271274452	5.96669297743031	5.95345271274452	5.82346705127952	5.99149526955629	5.98874507561928	5.70278150847192	6.08028817686788	5.95536450011796	6.30321962494518	5.95345271274452	5.83334201905587	5.92798229368034	5.6993174302215	6.08838350233531	5.95345271274452	6.18241970740759
+"IDI2-AS1"	7.78393300617341	7.46627570098892	7.21136846668994	7.39298198188505	7.43165848951279	6.798454499993	7.31544312192775	7.73964476048044	7.63289887258406	7.24001930448276	7.69807674774497	7.11041011199787	7.22084052655877	7.26713713867631	7.77725385181767	7.45126153442155	7.30660626655739	7.78579831685186	7.47150202277572	7.30809760383583	7.01084547853708
+"IDNK"	8.41352379574816	8.35933991127734	8.41651692412657	7.94038474027958	8.42262177122244	7.73218583675068	7.73299875296406	8.15598669779185	7.87567867757991	8.20948317649431	8.69028598625238	8.2239784339663	8.10364530371661	8.16252945291422	7.74855338068211	7.97531541200415	7.6911808200899	7.98881343291652	7.71708511235142	8.08198717184824	7.90086997828414
+"IDO1"	5.16671355899116	5.27521974608877	5.16360098096665	5.12114162756287	5.25902941552915	5.38278489751017	5.36183307787721	5.30427574988533	5.23897278654052	5.50222904020961	5.13532507442979	4.91271576128678	5.26980164955785	5.19837698080505	5.39278279499327	5.07819789992819	5.22481820429852	5.03189592868585	5.07797363314624	5.32029323652972	5.60794576249495
+"IDO2"	3.59035006425724	3.91977967638055	3.84054160309622	3.97521665806832	3.76642664502819	3.7686212215902	3.95911212345185	3.7462019059214	3.99608696201593	3.88282303221218	4.00571783059312	3.95738604200733	4.20078672602283	3.93697850972881	4.07713626964945	3.87947265853533	3.94293221221718	3.91314241179415	3.97803201899525	4.03983885509123	3.91977967638055
+"IDS"	7.60573509968735	7.7898063827149	8.26971715378141	7.77521289665482	7.97487813850805	8.33881668627956	7.94964293445722	7.65017350772075	7.85122482590281	7.35767644715027	7.75873986009699	7.38575616190257	7.75873986009699	7.96846492754888	7.92765169867414	7.23618664625759	7.63712594901973	7.95918432461055	7.62895395032794	7.33598706030558	7.42791278492474
+"IDUA"	6.9984770225121	6.89962079618542	7.27940096997972	6.54266699358119	6.75987190444401	7.40324519369824	6.79972493530858	6.68615598750697	6.34372424862501	7.0215715819414	6.95467749237988	6.60126588820523	6.84796829920491	7.04638407366754	6.22528175453793	6.79514825751247	6.57779427510943	6.9907096332486	6.66689344080148	7.01823372608192	6.87645889148646
+"IER2"	9.64685258166633	9.51876894554817	8.87506208338809	8.9580525846377	8.82875101140918	9.69744145987316	8.91682805373702	9.43920309089352	8.63189196705077	8.8017576293799	9.44305735903006	9.34744347694465	9.06645222627968	9.10042812068528	8.94839984351234	9.13794508851527	9.13097776145433	8.85531363494969	8.86553127270581	9.12554751961277	8.92994239519134
+"IER3IP1"	8.31275748254303	8.39435331486389	8.74052421469873	8.2866548250654	8.7855450476158	8.10567885366483	7.77612694079459	8.4526127656036	8.56662100695727	8.66366889355519	8.28031714832491	8.4526127656036	8.36208757632515	7.97103121031649	8.52226160502145	8.27934338352012	8.38653594715121	8.6458745618804	8.55354496600245	8.69373657138472	8.52843149492429
+"IER5"	8.22667101388208	8.36729764845638	8.39099889887257	8.38140921350882	8.78644403519074	7.98631777906692	7.83443446317354	8.22295657758361	8.89333181647206	8.25966642603509	7.99937526019365	8.32714097541112	8.65266691108831	8.20500080201611	8.61662116527027	7.98150739860432	8.53374207035103	8.56651954962055	8.16009079001756	8.37307566322621	8.77090050753555
+"IER5L"	7.05431537897466	7.58077010140661	7.85652244077253	7.27641950694697	7.39686098388691	7.40456877458346	7.17557952921384	9.00459184177107	7.46281171859851	6.91060030780857	7.20899218114385	7.87301938516658	7.60505517940896	6.87385203161825	7.48040687164655	7.05101224757803	7.42751376852352	7.1775538261568	7.18658940248732	7.60292345204799	7.80766681205983
+"IFFO1"	8.72689314922426	8.70008975021508	8.83161026116203	8.57082688074493	9.03685945519154	8.67299056313533	8.31832225044658	8.36759462573382	8.73853644526378	8.74684635542278	8.72988426189495	8.58383835274457	8.69825619809671	8.59632793642319	8.73454966861383	8.70827784154107	8.79498117691274	8.76027002906278	8.54833143643405	8.96710577676954	8.92765500888313
+"IFFO2"	7.42595560137486	7.52777361500599	7.95871376695695	7.7283679263019	7.56156197054719	8.26815285029346	7.90128244193564	7.99644940443453	7.81646642703665	7.61212867577286	7.58635861071225	7.68760000237183	7.98457140641421	7.93790753181218	7.89572052029293	7.38975778512105	7.7353826365201	7.67838436714335	7.63631714891984	7.56531124278619	7.65898870293076
+"IFI16"	7.47108654791712	6.27954881466971	5.53568644706062	6.37062501261634	6.22436321691284	7.02153085938459	5.87974520126604	7.90787210058073	6.04485925437582	6.41309550454242	6.86113049433054	7.38849360216366	6.33911049836011	7.03218708109978	6.27258480466284	6.47484837151743	6.2095060728847	6.48935770625965	6.31094907012828	6.43013178157117	6.62156402880458
+"IFI35"	8.45402516840248	7.13470122983733	6.93642955029445	6.89814453966026	6.69934611339099	7.36986222564394	7.15848377071263	7.34515514888408	6.91081508599107	6.95987632195235	7.5493641563021	7.02076840513262	6.85444867643901	7.20392404386107	6.73786936966566	7.22341755123389	6.10027168991561	6.79776772613852	7.00300170287955	7.42676383672944	6.84132177467874
+"IFI44"	7.79984984651044	7.3998266149606	6.58387255379809	6.29247676670248	6.52834822746239	6.79943794651241	6.94370282585637	7.48243631560075	6.50981774031477	6.61616364196845	7.48058397147136	6.11436195700629	6.55383038416293	6.89452051668109	6.55452019989428	7.12850857806309	6.19648942590289	7.19622480618478	6.48792515707957	6.92240128826156	6.79943794651241
+"IFI44L"	7.26333564858703	8.00920155324253	6.9509433267114	6.32151309919657	6.92078016259114	6.55128082356019	6.45643603802555	8.49660227805013	6.51725445693384	6.51471137498198	8.91815129175841	6.13080214352788	6.13080214352788	7.53131407670127	4.9895407767537	7.5110128927796	6.02473037335649	7.68091399479651	6.24624496249475	6.82058926117737	7.05458668322088
+"IFIH1"	6.50240096840825	5.44298523081997	5.36147929393373	5.29457441731291	5.15141639283621	6.08307372253944	5.56615984777082	5.94786892520433	5.29405765894422	5.13571397502032	6.06385014082813	4.7519764785246	5.75557587101009	5.89592973161603	5.70764973151026	5.16421742933705	5.1716869876303	5.74115855193251	4.97135928500633	5.12508430524095	5.52237715329165
+"IFIT1"	8.24528317426842	8.83079969922553	8.68602162444339	8.76887842891248	9.14092970641064	8.36203244502121	7.66511032965705	8.5456849328377	9.16703146238906	9.30943612353297	8.8600449783801	8.75545704766386	8.74174107973752	8.23618770605475	9.00464808540623	9.13024105380081	8.80038195982888	9.52176180380979	8.89606148275001	8.99799823757944	8.9887109211415
+"IFIT2"	7.39343773301528	7.33395543039673	7.07013211812533	7.31310069307595	7.08160614749243	7.81412570061859	6.75692953893064	7.08160614749243	7.10829414786459	6.85353667862268	7.94062922874662	6.59598840693344	7.26294618921835	7.31697599888679	7.2710440087373	8.6661153720124	6.82166406073874	7.99221682699454	7.26362337244932	6.91570589877729	7.38190256010536
+"IFIT3"	9.09552766798433	8.29508635411677	7.74759470039753	7.75151829691599	7.83640829249283	7.37769480476841	7.62079718145186	8.32241696148513	8.17052659801964	8.3156282408899	8.65822284211846	7.33433771188805	7.52779427872457	7.45518176696328	7.53923891674153	8.18299413171185	7.93319940096211	8.03921349859446	7.83061573556201	7.81015186081108	7.90692579145031
+"IFIT5"	7.91721448417911	7.78624828531191	8.04849349314762	7.5451092992485	7.9881377053323	7.83037948845965	7.67688978967073	7.82670934283151	7.51146861328146	8.07668259529574	8.0220114831202	7.94627825128756	7.11073056278709	7.58286006079377	7.83563506065433	8.19359501223225	7.51156047046024	8.3223571916316	7.68227745821202	7.76477559836254	7.81382040893872
+"IFITM1"	11.127443346822	9.20585288772127	8.39790633306592	9.63276403309801	9.44206754928251	11.1276839905784	9.83369041887692	11.1419589635461	9.20322957829614	10.0723525179387	9.84525936685332	10.2108989995764	9.9887759069254	9.93007028541077	9.21844726823866	8.81730780774952	9.5285255717164	9.27610631631605	9.55678805569639	10.8024993989786	9.43977936002679
+"IFITM2"	11.6883855548638	9.75986117241862	8.53302138380666	10.4540445890208	9.73873130459706	10.8299945919896	10.6652629577528	11.5258404599824	9.95198432085414	10.2824888116957	10.1667537953824	11.1796785937482	10.4710171002311	10.4516501555322	9.67888068701768	9.23443356448145	10.2683971778965	9.79881485494917	10.1569486283344	10.9187613353369	10.2256364947225
+"IFITM3"	13.0233499550885	11.6623229554391	10.5961756481611	12.2481019340549	11.4985840813894	12.4093764380868	12.1090901205317	12.855963458401	11.7449766453298	11.9073579724901	12.0827399957498	12.6232734373308	12.1050248589689	12.0225776266792	11.4009629347368	10.8034826250084	11.8712809423746	11.3633298522057	11.744921228538	12.3614145455735	11.8084011998047
+"IFITM3P7"	9.43909749597163	8.65323410815102	8.07755391386215	9.14894701643909	8.47004786652959	9.52463345619902	9.03804766341716	9.87698654765987	8.82751876292697	8.9319264778458	9.01175566013957	9.35627059760288	9.25440509805971	9.13561962187854	8.68438047662688	8.30815013557652	8.86715052061482	8.40660803768351	8.82826988582477	9.21565594071084	8.86715052061482
+"IFNA1"	3.17513169995288	3.29026825969929	3.27156835761083	3.22186963124748	3.30807533515718	3.53647059399199	3.22793595890733	3.18676465015744	3.20332301171186	3.40426510345877	3.15862607121791	3.2331542660494	3.37529893542131	3.14648351909262	3.19204747340175	3.24389147598865	3.14648351909262	3.18575958832922	3.08104471519757	3.2371083959586	3.36464223278996
+"IFNA2"	3.66221151596208	3.531544283503	3.59035006425724	3.80204657209816	3.49218445226951	3.59563188904055	4.02937173730541	3.47298025610708	3.85124577332119	3.22066082388875	3.74906384631428	3.39573345150819	3.90738582076922	3.59411572940043	3.77216330589925	3.60639439884244	3.77008735615415	3.77710619670866	3.61160936671854	3.53348937039277	3.51349800532165
+"IFNA21"	4.8087656143237	5.11632248079953	4.66237942697513	5.3506878483197	4.93378521668585	4.61046419147135	5.39644147085142	4.92117693867963	5.30261762795716	5.11664495355898	4.63565618457763	5.0993724673372	4.98227793007573	4.99342768297459	5.01728460890796	5.20650628788011	5.18710866502283	4.56450483111637	5.14594783053059	4.85596277694952	5.05664886945247
+"IFNA5"	3.1652189043767	3.23784840587664	3.26407591360696	3.06948611539479	3.24522651862184	3.47283904612794	3.43177525918073	3.20659335452451	3.1049882478866	3.25027949471523	3.09277765197846	3.1465909841916	3.34279647797202	3.43359552805148	3.24522651862184	3.27656258463365	3.27021248861503	3.13598516499538	3.2272983466318	3.28809899854049	3.16913849985891
+"IFNA6"	4.99663541098612	4.91552680022739	4.88928291322318	4.91100454531016	4.99005628177397	4.85683822365257	4.95517832907213	4.98094230381889	5.22640213256716	5.09010878015668	4.85192976357014	4.85320522177025	4.95517832907213	5.1923149719194	5.1540988724718	4.95517832907213	4.84889661846021	4.95847236901451	4.95517832907213	4.64186357812282	4.92200213502522
+"IFNA7"	5.01985719933024	5.19784440674972	4.91704338873859	5.26995862976885	5.26879437380545	4.88224929518533	5.2602630711682	5.05084545649545	5.10987774282196	5.10987774282196	5.12344273426246	5.11163246500929	5.22861622356578	4.95624450489566	4.97522495900998	5.08978744495564	5.30244655467032	4.72553266809952	5.43382812469712	4.94377891153911	5.21114032209351
+"IFNA8"	3.05878994419871	2.93184799841221	3.22538013421305	3.10224453145102	3.00959318115518	3.04421580648443	3.00808307272916	2.82581880381319	2.95057980948967	3.0817487835784	2.78969552578317	2.89974633970651	3.03375153574376	2.95627019832297	3.12101834246345	3.01969310516277	3.0186729959603	3.01114237949979	2.88916498303431	3.10095166204737	3.02342936621795
+"IFNAR1"	5.56881460189767	5.88816085914761	5.55972902106688	5.28171525310077	5.64933259323371	5.48601713797867	5.95848088724188	5.92326738109547	5.4014258713783	5.71610186748133	5.437734944973	5.46082821719455	5.24424455154989	5.51947297402025	5.46219326879051	6.12916055367122	5.49874795420871	5.55972902106688	5.02003729582643	5.83556433127365	5.26859507111508
+"IFNAR2"	7.7049591862706	7.21762234301257	7.25114577948025	6.69737520934458	7.37633357000396	7.54278271207326	7.23207981828464	7.61863821746264	6.89281499965156	7.06666761084124	7.15011301161945	6.92030089204451	7.45134855699881	7.61552958234923	7.04799331317723	7.44226607524958	7.14926463834129	7.14221359177868	7.23426373942633	7.25114577948025	7.49596398553422
+"IFNB1"	3.83512116524596	4.22703592100397	4.27654998757356	4.27663673970013	4.25074876449904	4.30291884282523	4.46979980157209	4.27397249231204	4.10728512825854	4.21292715346821	4.11593819734889	4.26316745163471	4.44170417490152	4.46211410871872	4.08760134636187	4.2959194315606	4.3389168910389	4.04353844763804	4.46086684555137	4.20715527322423	4.21475493750755
+"IFNE"	3.4765941433319	3.47298025610708	3.46244968128947	3.35647803507301	3.70815188272114	3.282203400154	3.63178556173124	3.72102788028441	3.47107631074444	3.60683511117734	3.33228345055322	3.50310234788329	3.29713582631946	3.42136233128399	3.52004588062688	3.47115147475991	3.64763097005987	3.19252788411931	3.38724429161058	3.41462040631353	3.55852335291533
+"IFNG"	4.20291384464216	4.28680505263324	4.25964472169835	4.53451740348622	4.52368175997843	4.06045060826988	4.47835570204102	4.14047175917693	4.39516971562617	4.17129193465435	4.19393176866627	4.13008673020686	4.26841187461984	4.41529556516199	4.36899691336202	4.26716098227062	4.18246969141752	4.0223129558059	4.25964472169835	4.2998697408344	4.19412406832808
+"IFNGR1"	10.0457801769922	9.41621572550128	8.06995333362414	8.90905059235219	8.96145762504208	8.98942353445163	9.17217660598587	9.48241487026615	8.89134555476661	9.24631997152157	9.41086395401204	8.61060937696923	9.04184418789323	9.19057834088929	8.71630659762427	9.56775951086874	9.35058442879734	9.87019232103523	9.35068850366962	9.19057834088929	8.87668188154335
+"IFNK"	3.17291993511167	2.95230893690578	3.18574933378991	3.31376732213626	3.08583241851554	3.15602819262457	3.21028742573404	3.13871457363711	3.19314617937625	3.00808307272916	3.02699070987136	3.0592688144152	3.09782467255632	3.14823911550216	3.09268726381286	3.0575176547111	3.06461367225936	3.12464564278089	3.04581079490133	3.08729678441112	3.09276000164399
+"IFNLR1"	6.34375618970035	5.93900793816728	5.84371521874527	5.85139272828617	5.77680864201468	5.873398198427	6.0211530613899	6.38523529148459	6.13557799421189	5.76851462245513	5.84075144368434	5.49931110834737	5.93900793816728	6.42928990438548	5.90499996485881	5.52001148167702	5.81647620260459	5.84027550721556	5.98525502069163	6.1691563390675	6.02488074226675
+"IFNW1"	4.74138800183423	4.80793818616124	4.78135581656613	5.03100452131365	4.84478464754704	5.24191435414374	5.21339874912638	4.88904392575501	5.06019074383703	4.93776940832464	4.78888969905629	5.02127778897672	5.01927668871185	5.416169069635	5.17046165997468	4.87262148779429	4.93776940832464	5.04985083598187	4.88992371006014	4.72059559118853	4.74530014434353
+"IFRD1"	7.88812285737834	7.18124318738961	7.48348123760534	7.94809901984741	7.27005796866349	7.90783198404812	7.91822643249554	7.70444003845329	7.7229136972837	7.20994960007534	7.99153687223293	7.11999011097785	8.23248475365842	7.65177699692878	8.85076481013602	7.67505283570947	7.36602244849037	8.05578744884037	7.98849005031927	7.22581318162544	7.41538829182261
+"IFRD2"	8.40550588340246	7.71318162261884	7.61146650346976	7.85801902957153	7.49759320981377	7.86727865920885	8.0607586004987	7.5993213416255	7.64659832827811	7.52078765541635	7.74750792225863	7.44707455474113	7.7434105027975	7.88139629832336	7.70719852967238	8.11545219406261	7.54472953928772	8.10583367457637	7.74503510079938	7.75288850190269	7.74503510079938
+"IFT122"	8.39907222485423	8.36084836462943	8.99935655726997	8.21107574922053	8.45045098319569	7.97936030703219	7.53674105215408	8.13366091027504	8.19361416749723	8.30790610499346	8.18638873149521	8.53560381688858	7.89341737089111	7.80359078920628	7.84041034975877	7.88965327869147	8.28769181168075	8.3322911136322	8.06187671656919	8.40302582674911	8.26191293939567
+"IFT140"	7.04029151883567	6.50190184361147	6.83595317329144	6.62365112440966	6.3607801492595	6.82006580020122	7.00114192010537	6.72733260691597	6.54546209967628	6.58003672720706	6.68262918730734	6.41514183788059	6.84496929924392	6.97661608100814	6.80927260624733	6.23580087785298	6.58283279480028	6.86829275315488	6.9175443318917	6.34617792541017	6.70545783421113
+"IFT172"	8.49153454889083	8.56296994561275	8.85369993180909	8.39663096523895	8.42595274419517	8.60406959234654	8.15237456866325	8.21110138766521	8.39019077187605	8.24872182684059	8.24783040415068	8.27493047075482	8.16151230424522	8.43526190272473	8.26399283112245	8.48788567437324	8.46959070088018	8.49245452154759	8.38336141297749	8.46185005843719	8.49905705912744
+"IFT20"	9.15045623394617	9.23597946419426	9.45002550726218	9.23487316274749	8.93889381195501	9.48851452100356	9.23597946419426	9.62031832769893	9.4056864175045	8.81288284479618	9.10719645166289	9.23597946419426	9.10493688834094	9.40635742624546	9.46138582479469	8.95407558828664	9.31688515179911	9.16151728133382	9.51039478175572	9.07732708443611	8.85736682472211
+"IFT22"	7.04476043254738	7.03802090813913	6.91343206431149	7.44141592230004	7.09411576568826	6.78011840805219	7.48709838661673	7.03385921939324	7.82246296814488	7.30169522787851	7.01648946151622	7.14593624299243	7.37540908277763	7.43125416937275	7.67019779340054	6.87998781439013	7.37105191989009	6.56527476352552	7.38571733077017	7.34856016121919	7.24028181676197
+"IFT25"	8.56609170183223	9.20585104265054	9.37236889108847	8.78309621691761	9.33245623073676	8.44223278207162	8.32585613201227	8.90833878155042	8.81752947816208	9.09304594459147	9.19547514433624	8.91775544165002	8.61582422609767	8.63763512318579	8.76870845554619	9.0096750486022	8.8438654990234	8.92772848404094	9.11355588731481	8.88457718904561	8.86893138942248
+"IFT27"	6.82934729556851	7.35962986576843	7.52988306230046	6.78331224141729	7.17284581146475	6.5051017293236	6.40250228782867	6.88793965591316	6.34091960928521	6.82143957547297	7.34901657170827	6.82719331849908	6.31591869753183	6.57723311611973	6.54272173882056	7.41483428101776	6.82934729556851	6.87454432148369	6.35960022295416	7.00605142211664	6.57868000141114
+"IFT43"	7.73098394300853	7.54980470971328	7.74760830119071	7.32307699770548	7.61694421673062	7.33118639964133	7.18990563286544	7.83683578015957	7.54969543104104	7.43097415419899	7.61694421673062	7.67851746044424	7.27905184040431	7.26308069040946	7.47233429272238	7.44975082599288	7.2951636178973	7.52474510663306	7.23363802727444	7.59678584189243	7.2655747931567
+"IFT46"	8.58294530793221	8.31503831796785	8.51027031988489	8.36394543711853	8.46238437674629	8.38838606336338	7.82743659697466	8.27622174737925	8.49205793100089	8.57670086010686	8.26034530924364	8.19032523786444	8.24257756398917	8.4024436644848	8.4024436644848	8.45942325460593	8.30262985732615	8.4471511765283	8.05038880123661	8.46741442235171	8.45391684440965
+"IFT52"	8.0153912166019	7.95840197642072	7.97873652219048	7.49055168104444	8.03742294996574	7.45987202794964	7.2064659357525	7.58423109802409	7.39148545368185	7.75670981796224	8.05645607537575	7.7144906422379	7.08151987892832	7.39534943432077	7.34218528820296	8.24998684058646	7.40291696297034	8.09778723933626	7.42158619555619	7.94852151601449	7.55300769369646
+"IFT57"	6.94703552837876	6.48748707764277	6.27660484714748	6.33829110334399	6.93792749015391	5.64136074593591	6.14383416680706	6.5199078850328	6.46162594095949	7.19823919787133	6.42716678958973	6.95036820819576	6.00746354009197	6.34894785968906	6.77675855632876	6.61983507340754	6.46454057701125	6.55961044665352	6.58399330477567	7.27761778520015	7.08929533851528
+"IFT74"	5.99039319936072	5.89237292169702	5.51688108175264	5.36658338014605	5.59960711729725	4.73909562988788	5.39253526196582	5.53584279132252	5.53354230582075	5.7409785865779	6.01309219017134	5.40598167914826	5.00102732982673	5.40289436697296	5.51519823707634	5.58833779753184	5.01267909883765	5.42433118851793	5.6038505544098	5.56810191526045	5.18888558895602
+"IFT80"	9.02838654701958	9.25065128673372	9.07568650020865	8.64958310296053	9.10092865984131	8.20647006358425	7.88078035849733	8.42786784603603	8.78482353254012	8.51985704246212	9.33100870167581	8.69220148450561	8.29953670319932	8.37202275944091	8.46468711139922	9.57076333157447	8.9906466656226	9.50210761125516	8.74745419335258	8.55976400525241	8.8079756034455
+"IFT81"	8.31845105002953	7.88939933798583	7.86772352110826	7.55596249409583	8.11447820309173	7.36954392226866	7.06450344614271	7.47474172271239	7.67059643881539	7.67059643881539	8.22284311013946	7.78408383686443	7.34466671673744	7.44505387857685	7.62763082977597	7.70388418308248	7.56971934728541	7.73765085468487	7.69751355326697	7.54278777759808	7.607500936197
+"IFT88"	8.75883150195028	8.21813683401881	8.36790194470968	7.88277860641001	8.05983843850173	7.96911332589302	7.52037090442914	8.04257301051759	7.73163747070444	7.88544021407266	8.58373261663865	7.94367050756659	7.62259682324004	8.09429852487188	7.89572052029293	8.60488477678284	7.48654906605576	8.58927515430386	7.8853462974357	8.08726109528194	7.76284991600296
+"IFTAP"	7.57033436104023	7.71971134561409	7.84143113574856	7.50287330898116	8.0105390992737	7.42973564356983	7.26870945944386	7.49252537554357	8.0485824438253	8.14318058422433	7.43363371966078	7.77855727768482	7.66395931730938	7.30959013741372	7.82647378009	7.62889754592092	7.81927267925103	7.7818514071925	7.88796076053577	7.96004782190459	7.78694801377801
+"IGBP1"	8.48667394756352	8.41627115091391	8.57867428253742	8.59527035516314	8.79322402291976	8.49365017482687	8.35379530544	8.74720912213487	8.70465531261813	8.69802410426565	8.3682213333687	8.72043404589796	8.48153181732096	8.53723302830861	8.62227827335179	8.71186708782162	8.67314474108766	8.60876145551569	8.8180708634975	8.8503829864633	8.60876145551569
+"IGDCC3"	7.43228781638398	7.73278282140019	7.45812990010012	7.64424375706763	7.36539207249097	7.67444809121993	8.01332626773762	7.37088536259438	7.53877338678196	7.33902690314517	7.3907333692508	7.4658218022423	7.54477946310571	7.92087020353039	7.3251653227208	7.27623753974417	7.44907699931564	7.27293400587838	7.33421095422267	7.36429245547196	7.31498911932347
+"IGDCC4"	7.56047057093938	7.39506645045054	7.50788770910373	7.0750203866077	7.02230309190303	6.25586797112547	7.97909162721764	7.73787649955945	6.42663215160844	7.14400614004097	8.41942569689468	7.32503407091593	6.77643519189656	7.2704838729506	6.84548965976906	7.5894274858572	7.03017306252268	7.53692650728471	7.22753887970746	6.94202762924746	7.15512105260625
+"IGF1"	4.23887029867007	5.79456582279122	6.55468281999552	5.60668957497145	5.90429580794998	5.10047720561873	5.41629737780624	4.9746336638927	5.42856461459604	5.77638518486322	5.35379490828482	5.47542763050103	5.31016913016899	5.59978465796992	5.33011212014379	5.20694915883122	5.1716869876303	5.19529496616257	5.15173592741018	7.11685293268607	6.28552169706969
+"IGF1R"	8.49667647428977	7.99749411756751	8.27104382727722	8.67232161716784	8.09343916961319	8.6475926634721	8.55396419022542	8.51441838218371	8.79842089075763	7.95560934794843	8.14355941552942	7.92691008919261	8.83599004903501	8.61788339195906	8.92686153432392	7.92111602299542	8.69440480409779	8.26651893927801	8.45007707478817	7.90957309386031	7.93291534958575
+"IGF2-AS"	5.89708195618327	6.05184787925955	6.32683635441738	6.60807274747901	6.17575492920411	6.45343772825592	6.66164643365876	6.30138161473793	6.45801828156359	6.30674644569895	6.25180533764979	6.57408422175947	6.43057254819876	6.61598609620925	6.35731903459508	6.02974375510815	6.38995190071919	5.86397271367762	6.30997109772858	6.19840989508872	6.55948539362465
+"IGF2BP1"	6.18651293202433	6.23678232839366	6.32027339581371	6.48736446627437	6.47891707348748	6.97158490016833	6.70184503480271	6.39307361774179	6.75739954525226	6.32719269718312	6.39449466605356	6.5010817744764	6.67200312802682	7.00451454299272	6.44894797261859	6.26507313456098	6.40283129144839	6.15565790479255	6.49406113508599	6.64624595224621	6.44857524682602
+"IGF2BP2"	7.24507801007917	6.61653760907849	6.82681245532941	6.89534157797922	6.41554999967165	7.51754057332049	6.89950277173478	6.96193559922479	6.65649963533055	6.54459928959585	6.751147711837	6.35673424681858	6.68098357719108	6.89652620333366	7.0189193381959	6.78061157329501	6.49706590197935	6.92578507091604	6.751147711837	6.71344830884685	6.50647299802243
+"IGF2BP2-AS1"	4.18556408316615	4.24146463823049	3.94512977945966	4.44528545350199	4.29040951802075	4.24171364558957	4.43326064637736	4.24677740177845	4.46879284756622	4.17208762072891	4.27034946807287	4.27034946807287	4.39893437511516	4.32982153184392	4.48801218320101	4.3525650825347	4.3676899483878	3.6110606660085	4.29079289042039	4.19297703108205	4.26550174003939
+"IGF2BP3"	4.88720036090599	5.07161013683381	4.80954027394975	5.04800059870292	4.64692245337555	5.0527253467498	5.13377781147621	4.9286536426501	5.12339934225866	4.91526004074924	4.60722046300376	4.97633555928254	4.93738798956471	5.27985613657892	5.01034679527984	4.99802800015002	5.02911786542874	4.48101310816699	4.82860559977825	4.99497564840421	4.93107554001966
+"IGF2R"	8.47924439534999	7.749227135773	7.72860930861117	7.88758501828748	7.87271484294705	8.31443272806708	7.82027504782483	8.03655503911449	7.71899624114949	7.90882780112205	8.17138614561959	7.8734417891767	7.79883445927017	7.99310327847767	7.46467929816331	8.42231128750456	8.13725905242034	8.16063047170647	7.94954829659893	8.32209503079131	7.94465619173195
+"IGFALS"	6.57373332048886	6.78609544144522	7.02771038350416	7.13845866383521	6.79543044995113	7.61903484059863	7.8577878372934	6.79456072353629	7.11405385793062	6.9831248960158	6.91039485873343	7.01554962835442	7.27265922491576	7.37313326991428	7.2370474433975	6.65737751531558	7.05647936734244	6.60292372263124	7.24109748547963	7.06285405213674	6.88440159799423
+"IGFBP1"	3.69046813217713	3.11195586139024	3.46137811827439	3.21798186621294	3.36898829250292	3.56529593936954	3.27420745774909	3.19239574612232	3.00371152737349	3.34042288375484	3.14898357175574	3.27962441850212	3.32660152582733	3.38613004288932	3.06901469587778	3.30500669520455	3.32660152582733	3.32660152582733	3.05878506332837	3.40293605304289	3.39001649232305
+"IGFBP2"	7.81386653796706	7.51005597073184	7.27725038631703	7.0428988357604	7.93072976995901	6.88291273414453	6.85093300526979	7.27523556295044	6.76943464096719	9.01828048798454	6.53802463006921	7.89716216926521	7.39186557889354	7.51275257775568	7.25561110783615	7.41184554383644	7.4142973556115	7.15333780260116	7.79884366358269	9.76707759474548	8.06216454122185
+"IGFBP3"	9.26473779939156	6.80020318230286	6.56838982232996	7.66851935108397	7.57706130352571	8.66004030979031	8.38988807777649	7.57367690219238	7.27883228194556	8.36836711670336	6.23657673331023	7.52659367172211	7.78878920101788	8.78193457173615	6.21015067648728	6.81732539770891	8.90410388853584	7.5498481200012	8.13196729303953	7.71575881148698	7.33324588886024
+"IGFBP4"	8.00409532666104	7.28985573372093	7.88936009437173	7.68969332298244	7.48499284709884	7.96073385499636	7.09180522807484	8.16907641746849	8.00561471860204	8.10723899480508	7.02102503692146	8.10272259993306	7.74300748553896	7.23840398210404	7.35691432038028	7.27150671887065	7.83048434693201	7.09377391254387	7.90675761021127	9.19329384161169	8.1854678524432
+"IGFBP5"	7.49477365262506	7.42822261210484	6.9692094741405	7.25151018587725	7.02050812097168	7.95698148625284	7.30484830620446	6.20784331491877	7.01147112515499	7.49432470890748	8.98994828453176	7.29066908619767	7.5452492231344	7.31224198009015	7.19739384780881	7.59513466091871	7.241881567133	7.85054209889205	7.73876986438884	8.33582718612929	7.56539739950635
+"IGFBP6"	7.67966279629199	7.05659830015114	7.23506934231947	6.94579487643641	7.54407069485581	7.26732724496859	6.8239643595323	7.3937000499513	7.43883053329741	7.68520880856018	6.44025835820501	7.2964261357508	7.23903334020692	7.25795715641876	7.27863579076109	6.60570284711764	6.99440498880349	6.99329523025384	7.3099201976548	8.47526679476778	7.45457473753373
+"IGFBP7"	10.0648207878936	9.66668190925341	8.55758757161014	9.61834443919467	8.85887428481312	9.16203866611643	9.48554228272185	9.80686223981106	8.83425838073542	9.48051407224505	10.6503632820732	9.37642460757024	10.1604148194336	9.68320677059365	9.7016069301651	9.482275780089	9.70069801640989	8.99559430558636	9.54396738580847	8.56816528375996	9.69620825790584
+"IGFBP7-AS1"	3.1790140188738	3.24484364031391	3.21517960262917	3.09436293317502	3.21167150195654	3.44292548783219	3.07804700068545	3.2327384972233	3.01782386933728	3.09276102771519	4.31188031184099	3.17928211051406	3.25309811826045	3.24275501893529	3.02826320993193	3.97980014981922	3.08418357569352	3.42247220192946	3.29859016074784	3.42987179215716	3.09386002615915
+"IGFBPL1"	5.70606802950066	5.94305930437438	6.19271208521524	5.56498979778737	6.33794369028423	5.93998412594115	5.75905349467457	6.46184818449047	5.655141252855	5.96228722742972	5.43111776488638	5.73430056041218	5.86085826736965	5.96685222761717	5.91440024559142	5.87848703222379	5.63584573096821	5.93807122648257	5.7962159976157	6.2052980057216	5.70881492160149
+"IGFL1"	5.31338600345278	5.52177030136389	5.29670297411279	5.61277791690714	5.38458047317583	5.52712144222088	5.40462107082726	5.43072085229887	5.56988186318236	5.70881492160149	5.32606630087478	5.427291393452	5.73971809950586	5.73827709724557	5.66194166107094	5.60226400582292	5.77305755251167	5.49684190933418	5.50517662236837	5.40844690179576	5.68309566649314
+"IGFL2"	4.96681012112716	5.03186551521443	5.08441966816189	5.1266843264664	5.15658881155182	5.05085699105339	5.09251695054142	4.91121708589772	5.08441966816189	5.08441966816189	4.93561069531138	5.38039351555638	5.14610880609018	4.92663633498139	5.0710533216992	5.29863419494279	5.29626424486806	5.3416856890552	4.90333351276525	4.99798258520411	5.25163109948879
+"IGFN1"	5.51684657182841	5.80073103931041	5.8737629279199	5.8584969123384	5.92154098585031	5.66097133403867	6.02451112683865	5.30414423973762	5.75999274188423	6.24895245626772	5.715363584296	5.87322048558708	6.0973968090616	6.2681642786391	5.64648493827168	5.6201292743297	5.73197552758729	5.61781992874554	5.89907802844317	5.93775849971251	5.79838062164769
+"IGHE"	6.06652707264249	6.3356100893307	6.3693009428942	6.54367896325785	6.1052939870106	6.18525411831997	6.61019837780929	6.34669425950619	6.50543642038842	6.7964773636764	6.71938098400987	6.55732199506424	7.09716441496543	6.52831825591656	6.70399560723986	6.47563457151395	6.84317536960288	6.19888787827533	6.73722322347487	6.00677025338312	6.81039042666364
+"IGHM"	4.50131727738154	4.14967905492061	4.36448959763263	4.39267410676429	4.04696694823889	4.39267410676429	4.34700697652339	4.39267410676429	4.45859077487528	4.36010493931847	4.39274434564182	4.47143400711228	4.54670750181905	4.36114661190377	4.20185002222021	4.40101365902448	5.2216422401867	4.3372919687999	4.21576812040712	4.55877099670632	4.37212659627618
+"IGHMBP2"	3.71035637876249	3.72344276509917	3.85550522635533	3.58762682333588	3.96024734367757	3.84770666924943	3.94465905949211	3.96779852709763	3.88509171534632	3.7652041419736	3.9180185540939	4.07602798279329	3.88509171534632	4.15629241075994	3.86434483656238	4.09730936236948	4.01056705451872	4.42893382708065	3.93417096017714	3.81161983825255	3.88318776998368
+"IGHV3-25"	4.93779438031075	4.95191767690371	5.05477519399757	4.93779438031075	5.33520838718819	5.08000325959999	4.94262830681498	4.83851391392687	4.9226880523069	4.9243148160007	4.6498796522134	4.97260252983902	5.01189386450165	5.12409155200347	5.0441687201534	4.93779438031075	4.7633326975371	4.85606382996257	5.10038855157358	4.9943584352449	4.83979207775803
+"IGHV3-74"	4.42832789817934	4.44022095067281	4.16286480701898	4.37556549894121	4.60754622402443	4.57074270576832	4.71092279633728	4.61738986277418	4.47088895429652	4.5214231124897	4.22833624465538	4.82508687333503	4.75799280259008	4.72515048029648	4.60180540130332	4.62669120398785	4.63488570666429	4.2815250949131	4.43052633999857	4.50948604058499	4.62958192440195
+"IGHV5-51"	4.75300333815614	4.92251377754389	4.98200908134609	5.00487453175853	5.01176299518202	5.37242941983836	5.39027212579161	5.00464271214721	5.32965731451056	5.13017256837389	4.90783387309698	5.18209112083748	5.14597503278923	5.25074481328838	5.25806423174751	5.18296856157265	5.09709575747318	4.90388100497016	4.94612048715367	5.15920852250629	5.04141415266912
+"IGHV7-81"	3.91025697301848	4.115466852664	3.89686462384646	3.88509171534632	4.20301939394468	3.97906232906338	3.92928038632404	3.9619004317606	4.00991928247769	3.91621040673689	3.79267956829311	3.91710381935041	3.72603117757499	3.67444996347082	3.94739284057712	4.33670351212857	4.05179752186154	3.96476476747002	3.82154009923337	3.87581379031692	3.99626197963994
+"IGKC"	8.48824728451287	7.38113038022052	7.09223524501614	7.4323885975399	7.19822958056035	7.92883721071124	7.11177758031283	7.18551795984599	7.36387544680352	7.26733359942212	7.26772839665789	7.46831115334505	7.61350592461852	7.58426480384549	7.31046716382862	7.25374943816968	7.63582481950505	7.14075236521474	7.36791938347731	7.52450194940601	7.33449094927689
+"IGKV1OR2-108"	6.04770901628365	6.10454019223838	5.84949245480366	5.95909596141698	5.79012285262071	6.11674572548459	5.91550247014217	5.96318558128428	6.0972324831176	6.0351126308019	5.67753926670841	5.98889674526572	5.9539878587295	6.13481882678343	6.04566898624723	5.75138766564611	6.13684039135551	5.84868043647412	6.18325492022988	5.8393878592565	5.95909596141698
+"IGKV4-1"	5.85814545455989	6.01020227235498	6.26304254915308	5.99371386562235	5.98255706894963	6.12615548192467	6.2803490719651	6.08684478988831	6.16708083279198	6.11751568027419	6.00528740687242	5.99491693611971	6.29590619677984	6.1194561046405	6.03170004005156	5.93378589916338	6.04072921719472	5.7904971891882	6.26147101217787	6.08057171030456	6.03773092990861
+"IGLL1"	5.26785473302975	5.29376725162777	5.47730708782359	5.38215910886342	4.98348910098552	5.40354427977171	5.72250911217355	5.2998142068371	5.72147717455803	5.42882950244225	5.37630463113845	5.4322897996692	5.65353324028934	5.56466148606718	5.53084307448775	5.08124937241369	5.38929263562834	4.95992306313188	5.66532194500216	5.25612666009978	5.3973348872181
+"IGLON5"	7.0839875246391	7.48960536323623	7.53115603696599	7.50954313085952	7.68925663361333	7.85963905533081	7.92057089601766	7.67614027478109	7.71971366625433	7.95949784231705	7.05939916674818	7.78889061330104	8.1625483522557	8.26131815345451	7.73713010254626	7.18797102700641	7.85728814427416	7.09592882681493	7.30619431599867	8.03472741936437	8.05671627218071
+"IGLV1-47"	4.71208926462868	4.67879324065894	4.57268260466332	4.93648031852675	4.75013286386582	5.05976763531091	5.02745054687247	4.47568095817525	4.6926743822377	4.66093684515027	4.4382877995526	4.80419531992814	4.97042910603512	4.88155735181295	4.7364134327251	4.59760742315251	4.68051690059974	4.49037680707187	4.87169348356199	4.8403609542131	4.7025447621014
+"IGLV3-10"	5.68923558571438	5.41759051614036	5.4441235249741	5.8668976310647	5.43716113071743	5.64352299202959	5.70945619556606	5.46133432449719	5.82383603992571	5.6071532816836	5.51611659071282	5.67604049871246	5.56174474445151	5.59140381272771	5.40808032991251	5.66524845030043	5.59818814033791	5.22049549868341	5.50915134749344	5.36674167596947	5.59774628783722
+"IGLV3-19"	6.08073200769053	6.29760360184617	6.53876103520225	6.6200571801149	6.3850449786764	6.52440452384347	6.45742335939533	6.18224140599951	6.31977180359701	6.57827502293823	6.229891002995	6.61274805053595	6.73686122996185	6.59765737874276	6.44748241498342	6.33871717426452	6.65755743996426	6.23955681764179	6.53816151026804	6.23300714148125	6.6751001525547
+"IGLV3-21"	4.32561734244959	4.27061882217502	4.07533661422356	4.40780422737659	4.11091792295137	4.27061882217502	4.27686337086954	4.36648576518145	4.37203884805808	4.2470839636454	4.27061882217502	4.17969912997971	4.3369641223546	4.59381735981675	4.49373291883316	4.57018250120868	4.08760134636187	3.99369255224525	4.21401055100964	4.16908551540092	4.30447324926125
+"IGLV3-25"	5.55023411183438	5.14910706604332	5.60680933483912	5.59153394701374	5.55905173391635	5.85911893022456	5.84819326183662	5.53753834385429	5.38621688888266	5.54027183338707	5.66034715949034	5.63569410928716	5.59237256615406	5.55310378025231	5.68517718001424	5.45426814087674	5.73367725570755	5.38711565964224	5.79059869257206	5.35753836636601	5.70765110802837
+"IGLV4-3"	7.27605506678103	7.40047719028651	7.43507627291899	7.43507627291899	7.17090759451149	7.53083990741195	7.93179384667339	7.34602193785744	7.40568312895119	7.47631307254344	7.30847551527949	7.40500000543984	7.81970179826941	8.09593829716369	7.43507627291899	7.16520775934502	7.50834771941856	7.15454571574654	7.58220522529349	7.35698812666304	7.49304059865709
+"IGLV4-60"	5.60545503391999	5.70540561775764	5.93817520993599	5.883704428671	5.47337752316493	6.20230885640914	6.18717066907837	5.86061263442507	5.85635939789737	6.14092459329543	5.81244605169967	5.80542789098516	6.03724094267545	6.13346475704544	5.69974398474435	5.3749354544938	5.74833237996505	5.7662511083396	5.96886093484457	5.56818169571533	5.88705688486853
+"IGLV9-49"	4.20291384464216	4.05366176682456	4.02461061525562	4.08022174867621	4.01862819115662	3.93274591793842	4.18822831538904	4.08022174867621	4.23668584195809	4.15088078364012	4.06506646786008	4.24473608015965	4.00799730885257	4.35645615244961	3.88086403677877	4.14587799720999	3.97856669854256	4.0126953283442	3.94089214165509	3.65697438415368	4.16910210131818
+"IGLVIVOR22-1"	4.28328058847076	4.29938893389525	4.10066370197071	4.39874293753715	3.95359778596491	4.54836205557655	4.38044057973708	4.29938893389525	4.27514330955517	4.29938893389525	4.24815912055375	4.00694993058172	4.58377437083036	4.77366407110318	4.29311060996744	3.97244855763586	4.42814445994914	3.96151842774496	4.40187645130486	4.33844436933875	4.37302787776685
+"IGLVIVOR22-2"	4.00967676648148	4.3120671418961	4.10246670667322	4.16089863856463	4.11080946607023	4.45227675566745	4.45616196453898	4.26170480292853	4.19714332581322	4.2947976575029	4.15726481545519	4.3883895043631	4.41762850128792	4.12981651342373	4.40699228983851	4.2318877154694	4.16189935811173	4.13744860865089	4.21095984538146	4.348250655091	4.14350404444916
+"IGSF1"	6.63833128422861	6.71899988009729	5.9988655642991	6.20142690534321	6.0104766059279	6.16467886520164	6.40049124674181	6.06647631921694	5.61670563300238	5.65316237526751	6.77267021094113	6.16272251559893	5.7641713086654	6.28521571219277	5.94156467721119	6.64737513990755	6.23685652709966	6.78958651463466	5.78126256780366	6.1665656969232	6.10770945483829
+"IGSF10"	6.58529489130038	6.80805318109684	6.83378339086458	6.74227922328876	7.36779753915005	5.37554344050459	6.19813470428461	7.07664898710051	7.27127092647661	6.53925380671176	6.38449260943354	6.92965591358194	6.55777684052665	6.0088375330385	7.01045943559514	6.46964488619953	6.95615341656443	6.41850612333789	6.54156087878034	6.97475127706453	7.326307992951
+"IGSF11"	9.42038395193715	9.03596796769136	8.65704250869356	9.06016049275775	8.67847132811942	9.04103890936113	8.96090574516619	8.96447706224533	8.84350913557125	8.71826862938227	9.20784271589391	8.4473657614024	8.55184860574324	8.71818784918523	8.5326266840299	9.81899554109789	8.48537477322273	9.93586922101918	8.68758248211302	8.68343605936756	8.17761923473362
+"IGSF11-AS1"	3.22184400164152	3.14418787277948	3.27794087015614	3.17382348813597	3.17824033023281	3.36159231772413	3.18463705251833	3.1548202273642	3.27546865668092	3.09503284353811	3.17532685614457	3.0743611393802	3.09782467255632	3.4877645047295	3.20435962773358	3.03623200009244	3.28734089700595	3.06017500101361	3.17382348813597	3.15624122390205	3.28634092748244
+"IGSF21"	8.51379025755156	8.57633087015353	9.04515520414827	8.58393149403692	9.10970942931474	9.06363081846353	8.51234136486508	8.71901554696596	8.92446655286296	8.95094361008541	8.16572855141159	8.86296749101883	8.79954188904291	8.29953491158069	8.64515659749498	8.1264975453303	9.08527917118021	8.66316253619548	8.41401259391411	9.42272926574027	9.15121331307667
+"IGSF22"	6.64737034121027	6.92607119231799	7.0491372379866	7.08656627974547	7.12934604490615	6.68176557232913	7.01608049380812	7.06815569080537	7.08637681359681	7.00649489947399	6.90373225979999	7.03867523189893	7.09736054006448	7.09713689134911	6.99759322848556	6.90883660994369	6.99759322848556	6.60767676316548	6.96725835501102	7.10873693591255	6.99759322848556
+"IGSF3"	6.89544674597923	7.49189838080187	8.30666971585471	7.51946582955579	7.93974402892414	7.08203002925096	7.08052313193302	7.54508411296247	7.97045854192861	7.62298374247475	7.03610998575172	7.60695757423073	7.62137758723205	7.37592002781289	7.55571698431397	6.58261172254672	7.37564035679526	7.25287545873362	7.27942242935376	7.77288306351377	7.32327074116856
+"IGSF5"	4.93358204793612	4.73563657601757	4.755475902822	4.5288994371199	4.93489036537137	4.43746417456245	4.73563657601757	4.92705730268093	4.62209459397425	4.70094861498334	4.75301338914228	4.49424218508295	4.70094861498334	4.70584066978307	4.7413019283486	4.55585566548811	4.73714434659729	4.53241945953149	4.76677555938265	4.73725660414756	4.73364225894875
+"IGSF8"	9.01274053520478	9.54449912233755	10.0767430268696	9.34166478705513	9.54449912233755	9.57561029735535	8.91056858961388	9.34568281189368	9.32840054945118	9.56735825983749	9.91396731733429	9.95157117456873	9.34613812678461	8.90114752192368	8.91205221690318	10.2533482391005	9.62594073392576	10.3205711344822	9.17382433163157	9.61687213645563	9.71417717890166
+"IGSF9"	5.18305670967322	5.33751881557239	5.39819102383174	5.49215386728553	5.35133579608278	5.6168663884213	5.73007280120225	5.27456779434434	5.35416294539591	5.42173494308502	5.26265897708434	5.39576317200021	5.48904958739416	5.69581206167859	5.38343310614677	5.328754541269	5.34352708255809	5.11518782142876	5.39576317200021	5.31296104384684	5.48133859028101
+"IGSF9B"	7.7080585971092	7.89840928121165	8.35265652585597	7.96279369399568	7.60978579882962	8.28146167668873	7.89413064048865	7.71071756085773	8.10653038133289	7.35067298488087	7.48115607407233	7.31963697595938	8.01758029961124	7.86429654228965	8.24709173182258	7.05943805875545	7.52384725825092	7.06264152372008	7.45184924674014	7.462850080158	7.61970301490962
+"IHH"	6.17790535597949	6.24131207334488	6.38702053353577	6.60718591328905	6.20281993355123	6.70408105056455	7.19981065947723	6.35527604943856	6.3769320395441	6.36703379373534	6.02716560676849	6.4930553861696	6.57218418726314	6.71703819742058	6.68363375136316	6.07088488353499	6.4615107220621	6.19119265813297	6.65622443325177	6.26308046664609	6.38702053353577
+"IHO1"	5.70491146600838	5.79567411886771	5.8819411901985	5.97642426137854	5.93117398469806	5.58317438765178	5.67576001738943	5.5613400581411	5.81881118913133	6.09667830912755	5.60966645217881	5.93574747248563	5.96664569571051	5.73458833531939	6.02859700576098	5.92282398370596	6.11816948964363	5.55192088597804	5.69752672940014	5.83738847667683	6.05499011353193
+"IK"	9.46956422280717	9.10941136246612	9.2546853527786	8.91046866439429	9.1987523678941	9.11686128673373	9.21757696503451	9.1187214842654	9.06870331037209	9.21301339986775	9.27888697105332	9.06684836970276	8.77606824346306	9.09309855285078	8.95696260948178	8.87816986380944	8.98982121576617	9.38427148840294	9.09292449522289	9.25183566456458	8.98775510735673
+"IKBIP"	4.37972305416631	4.06204097337566	3.95109317272957	4.11256034174633	4.18324537798596	4.27669198354033	3.97472761878116	4.25593374380895	4.0762854135782	4.27063652406516	4.04887357774223	4.18452873321507	4.02714387774633	4.27454985418877	4.18452873321507	4.01806754151895	4.17205554038395	4.30688666374818	4.02543916971634	4.40188851485842	4.56537796989563
+"IKBKB"	8.87425652463194	7.93835537630742	7.80717574428157	8.02759574238521	7.55738161767424	8.16146670550865	8.44614742463732	7.94457891960806	7.95365316971525	7.52796148128642	8.1488290202519	7.22821594532876	8.19289145842336	8.44358990152306	8.30240307543315	7.9965416675541	7.82341175406718	8.07457169298475	8.20342494725051	7.84622496584404	7.69972224370437
+"IKBKB-DT"	6.5375321558802	6.60424680594401	6.19306972167463	6.78331224141729	6.48752999510201	6.46224400056393	6.64610799459763	6.55805968356185	6.77791924665087	6.48983934995885	6.42692830537589	6.56065315137028	6.58577680767264	6.53926618004269	6.54720748020084	6.40377773049896	6.62917691308096	6.3945039533146	6.46011572521634	6.50331130746194	6.53341481932882
+"IKBKE"	7.26805567048352	7.05198725924942	6.94057580023301	7.30787646986542	7.14036518491988	7.27225424287724	7.31854429215667	7.0661550405022	7.02916152661282	7.0570811023814	6.85661774601296	7.07263957165228	7.32624142637183	7.15301156736024	7.13197493544413	7.02164259335563	7.12109545792114	6.61004191738686	7.10777670305977	7.19756095380503	7.36790862922455
+"IKZF1"	5.41619079137214	4.64921466675775	4.50969988245031	4.50054833392122	4.5791671028295	4.34197412094317	4.4115555048649	4.67203619350262	4.51597693486904	4.30926671421904	4.50643129871752	3.99550469525468	4.31802808395154	4.99962449590203	4.77795912046571	4.66234094610629	4.24913151900392	5.00679051765452	4.56514547311319	4.79703011077799	5.18719078902895
+"IKZF2"	8.00939634900932	6.64665481323414	6.61858906952837	7.0320314962635	6.60595690309135	7.85155668538115	7.00752384619671	7.68386528226506	6.20306003131819	6.06032440672964	6.84697431166653	6.72107676992942	6.28816126081896	6.96084721449957	6.71039873609301	6.94745377375298	6.86550863932611	7.86594452038948	7.04304751722562	6.40230679367964	6.32993353423243
+"IKZF3"	5.77076241221231	5.96476166177824	5.48897952856172	5.90231913965166	5.85275515370317	5.91707197105072	5.85202416761012	5.85275515370317	6.04335910520504	5.97195466568337	5.51366422368225	5.73843710897436	6.12009909011376	5.78347192705188	5.56035088690433	5.67774787288703	5.94445991803898	5.37522421249729	5.71591230004481	6.20188444222357	5.93482271629213
+"IKZF4"	7.95604921072232	7.78045872187177	8.07979780552584	7.67404962664388	7.39817034589214	8.22497025726062	7.88865428136078	7.43489617120637	7.57066225108381	7.46020875638454	7.86811199710063	7.25474899631235	7.61738353673195	7.99000935124821	7.65086381975256	7.766839907322	7.21671626909273	7.78339781630188	7.43467923313574	7.5342205842349	7.57396526183815
+"IKZF5"	7.2764961329843	7.76565069472649	7.70509833740696	7.54377376789819	7.67036293366942	7.28193154751261	7.3222783364319	7.69124248060247	7.61801337719421	7.41933535559154	8.14901550993957	7.45200643941764	7.44466706547249	7.22397931790956	7.75903422785021	8.24046366028996	7.58822506920986	8.42131722939577	7.73656780669914	7.15374588430963	7.28201452089322
+"IL10"	3.49961803164204	3.36607816644049	3.4883449601361	3.28976211413659	3.70632310137397	3.65418991654859	3.63032121560791	3.5896448231999	3.45345328386179	3.45131160204879	3.47615125168967	3.34157272294783	3.47615125168967	3.63734615191803	3.17164058807027	3.35269328026638	3.4731627226564	3.30699585802926	3.62118089736695	3.55603457918758	3.70603070924586
+"IL10RA"	7.4430529340943	6.28215508471207	5.79931069230848	6.03050901733027	5.64700044731741	6.45582627360015	6.82473027040386	6.94871677620149	6.36684748168555	6.15362221017842	5.9841263243859	6.19591027222489	5.85510388989634	6.37157117298919	6.44077641038202	6.34282409791092	7.0108862718192	5.97689449629105	7.26456157611387	7.20805875192709	6.54610348685114
+"IL10RB-DT"	4.26078696996486	4.54785687200687	4.67641456921794	4.69805101511222	4.39703267889507	4.6454453973142	4.53079011590328	4.51041753148534	4.67569487082649	4.50333698288388	4.27420422129031	4.52632570426352	4.66984372279741	4.74611342810126	4.22942666173428	4.41375272631845	4.77989785214537	4.41586479066344	4.66124087142173	4.25441368172137	4.49724749929747
+"IL11"	6.95127503602636	7.08519433195604	6.87435857585306	7.21129681269631	7.05810062344135	7.53298158926546	7.64252570171878	6.86397044081491	7.13681756026384	7.24636848509819	6.95781765257449	7.25044557899625	7.44237371022174	7.6802155240667	7.35739562943137	6.93644667362863	7.22435754839248	6.63152124086861	7.31085517095574	7.11799551973675	7.20236549131155
+"IL11RA"	6.33861811409917	6.53289899298425	6.508831284024	6.50940082941766	6.35036450153851	6.58125898988611	6.95758766550207	6.3094359980224	6.50940082941766	6.53581017679657	6.43138341837805	6.50940082941766	6.44677536083781	6.67048998446635	6.48774511663119	6.57138560307051	6.60619193788694	6.69541314762903	6.62684188599777	6.46964488619953	6.28552169706969
+"IL12A"	4.64876264716285	4.87414277079925	4.71458290674933	4.65591175747759	4.90070451814939	4.60370396227791	4.76817262494375	4.92367633550261	4.77792060671901	4.54444937002218	4.89609154502829	4.71845498581342	4.75721582520924	4.95667346741993	4.76109791419933	5.1693914180147	4.50153894331408	5.53195953969245	4.66210218564187	4.84217590206052	4.91912212229306
+"IL12A-AS1"	4.20291384464216	4.36785285006829	4.46295784923016	4.73075783485586	4.50078314690981	4.75391176901744	4.569825172731	4.53643210004193	4.96886965060403	4.62622683478018	4.262589364342	4.65803566333276	4.69931835636407	4.82082138890408	4.67150150959936	4.50487378042695	4.75061567811573	4.43139711900404	5.00557227056878	4.87598852855677	4.66151339705906
+"IL12B"	3.10176958910953	3.19027695289061	3.10658013039673	3.21132887419043	3.21805656970239	3.10719242309017	3.22751498232325	3.06768044864602	3.15652195670389	3.16790852279027	3.11084743354982	3.17567368672327	3.11079960896511	3.03391728233529	3.19830493518584	3.10071901849967	3.18840108056495	2.96839971578107	3.15132839120907	3.07445741162875	3.12600492099808
+"IL12RB1"	7.16185335343875	7.29728200202233	7.4964918533229	7.4915055916198	7.22310587414419	7.61233477939811	7.97078224662213	7.33199760439635	7.42751376852352	7.46125529395624	7.3444773264089	7.46065541589424	7.63682550089122	7.75079604720394	7.46847797234858	7.37482775512964	7.46442249209448	7.18080425637649	7.47327090390437	7.57348167562719	7.45822432466345
+"IL12RB2"	3.63067493116649	4.14873357687989	4.30619245615864	4.1129157976824	4.74655548097036	4.46702394040227	4.08525208115689	4.09944062376107	4.42236112495982	4.23086962723176	4.00294424462906	4.5303181495701	4.23086962723176	4.32225911864455	4.33869983596136	4.09731146859768	4.29132709584729	4.04426735258164	4.23086962723176	4.79567379114214	4.20123425652154
+"IL13"	5.99931529438322	5.95055509670528	6.06721229143274	6.04484339567115	5.71220796062874	6.34731302243866	6.62182949746163	6.0340702986292	5.99514640799128	6.02703108526341	5.9704345201392	5.77343221103214	6.3448627572659	6.44953628612572	6.08890385596022	5.78676834358171	6.02263260843666	5.3617884030091	6.10404522948217	5.9220064954891	6.02703108526341
+"IL13RA1"	7.47654640264714	6.5596265843771	4.56189829269451	5.91221752552611	6.427254043658	5.30712932756779	6.19061044702339	7.03251529833236	6.07854110773496	6.93997296499367	6.51610692176632	6.23227334242734	6.14767343490421	6.5003298478176	5.47238404453623	5.29065497112579	6.89527249817995	6.10259033365653	6.51616210439611	6.76430656893177	6.5793184786918
+"IL13RA2"	4.12696799024857	4.04268289974406	4.98525158114924	3.98816709219033	4.39118877242915	4.26129303572887	4.01644065271845	4.20479628536753	4.16547427429933	3.99224114184493	3.69080845685902	4.29022653518059	4.1060582126969	4.12538758924979	4.16907683762996	4.49008176145483	4.16547427429933	4.30598922148617	4.1060582126969	4.76649555577556	4.09070045758082
+"IL15"	4.78057709465034	3.86604883835469	3.64739393739901	3.61779306473982	3.86328117864112	4.53503682195069	3.7951488003619	4.17805122739737	3.63413364106368	3.95503845848151	3.77188955994826	3.87298000999671	3.72365888397149	3.78650086064241	3.93996357203515	4.03145611406977	3.74657943025903	3.7939664568751	3.92045683305589	4.04814240308583	4.00619279755238
+"IL15RA"	7.18228370402221	6.02995630007005	6.11488675300147	6.28835950645267	6.21523804088222	7.36012667853301	6.26714448914424	7.05431537897466	6.05392148237229	6.11853184452893	6.13363973351083	6.23450634925813	6.59420211751208	6.64805335006169	6.25796161345581	6.11635573598395	6.33035290373292	6.10962075857088	6.30119997279082	6.24256302483651	6.34468827791094
+"IL16"	5.93695483331053	6.0268456023735	5.81149453394661	6.18158491151324	6.05303341475937	5.90580381840198	5.74383738357164	5.90670695952614	6.21221840582325	6.13253069556835	5.66255832641052	6.2249377089356	6.12563766646721	6.37166645543698	5.98030187049177	6.09914492885411	6.16505703058487	5.67496215153954	6.0268456023735	5.81436537858612	6.22405140987483
+"IL17A"	3.01386311760069	2.99146294310449	3.26267207146602	2.90986344024518	3.14775425885957	3.40603901100226	3.27885234649028	3.12744668808007	3.33803336954996	3.11005157194012	2.95466938383584	3.07838238089263	3.22018075778506	3.07978753165878	3.22395789270902	2.9509461917563	3.05434443005034	3.13024532555308	3.18044799059376	3.21154790647353	2.90783428646697
+"IL17B"	4.69084520035827	4.67336266608234	4.72591889686271	4.89997353533074	4.07675887701034	4.63228499341599	5.14315763830367	4.56311869517216	4.68006530382896	4.90260769062817	4.7440583026073	4.80601149322417	5.20109122421801	4.7534732056815	5.1252699930374	4.30934867218119	4.87338730715978	4.59770756278426	5.12906069912838	4.51785270410707	5.04239185411195
+"IL17C"	7.81297493916484	7.87468422862253	8.0393250022601	8.10886366958613	7.94070887899232	8.71399808892037	8.92263631599259	7.77853062123835	8.01533096218825	7.89025386292305	7.77921882644587	7.91406571608329	8.29421121490936	8.56737977135274	7.95086340764145	7.48582377661784	7.98979903046919	7.58428193725375	8.22323026945359	8.03372560108253	8.02065893457607
+"IL17D"	11.3770650409823	10.2806282306882	10.1581913903724	9.7999622938193	9.69694467275858	8.60782658786966	10.6737924495507	10.6601804225103	9.94122855339391	9.60370698451306	10.7056376712483	9.56698179760263	9.65550411989746	10.0637885067896	9.91979206140621	9.83565844031933	9.40147044909437	9.8869250469286	10.1905897587658	9.65285593458433	9.4222745183228
+"IL17F"	3.83927086464855	4.40422664719564	4.39079925579155	4.36005204199067	3.97521665806832	4.4369682122618	4.77584149190181	4.25494234898192	4.6454688622	4.35870048551574	4.54942143948953	4.55528554911837	4.52409709588284	4.41398769520087	4.53950263451484	4.15023666127017	4.38518688931674	4.48761434065678	4.57904535390317	4.04100987256331	4.65960943781569
+"IL17RA"	9.11626795197559	7.69986469671955	7.42259870671877	8.05634829416909	7.75930954297685	7.56011824912963	8.06757419594759	7.65995460217954	7.91142428396151	7.54729296533342	7.71468997175168	7.15553567232703	8.20884858402929	8.29377344615273	8.25929910496297	7.86422401586242	7.08458463112867	8.07021768187822	7.28391491953046	7.91101108693918	8.37612098848588
+"IL17RB"	10.2371603528959	8.5819436800224	8.59532394782931	9.55581426130612	8.66245113651578	8.85874276841883	9.87871979587853	9.53808584485501	10.0907629078881	9.05190842994723	8.5768448601907	8.48154302036841	9.67703392500812	9.48736309393836	9.56917124545591	8.17575446457737	9.16522828180183	9.12729427452999	9.65835385682038	8.50456684196754	8.03228746113444
+"IL17RC"	6.82470132141765	6.78439877162073	6.78922232065508	6.5900548257363	6.48043577488653	7.39388837889385	7.16333528359229	6.94291653531098	6.7639779571264	6.74538132670292	6.77697816986895	6.7196511818157	6.80239101026375	7.18442283259547	6.69567560909782	6.45221245021414	6.98271080662969	6.66482119090095	6.74558892200189	6.78439877162073	6.72348274509287
+"IL17RD"	8.08097975231308	7.35799868652883	7.57875001370336	6.98855222286865	6.76711550559921	6.07913391887764	7.72728030978797	7.85184837165009	6.90761274966582	6.46177192694303	7.76495166091856	6.42946252906051	6.72180667606684	7.26606859226304	6.93811125598975	7.48282933257075	6.70006501659342	6.98855222286865	7.05847765234997	6.93427883985514	6.51622021483103
+"IL17RE"	5.18714697801908	5.17897583377368	5.56032362143923	5.59531907670374	5.29717006648751	5.97199891045745	6.45855074066425	5.55478190517349	5.671363061541	5.60653669491542	5.46370838068888	5.58774789587914	5.65629196649866	5.890177429843	5.51880522305368	5.11434413640978	5.40813270099249	5.21231587730774	5.91703788410941	5.63945529454652	5.44784206319096
+"IL18"	4.75899534460525	4.21530313241774	3.78919236730675	3.75454969688348	3.731259987129	3.91747881625649	4.0773555585593	4.14071743420697	4.22135147681261	4.537699768961	4.36274593517186	3.75983286816227	4.21791953427997	4.3392840737581	4.19085373175885	4.36115780990858	4.3515757525525	4.00469379059507	4.71949694402514	4.63042550069301	4.02692694072242
+"IL18BP"	5.80294305351229	5.58966197557283	5.59868121039124	5.572482799401	5.62386853571103	6.258480916493	6.38869955629382	6.48899846442085	5.68515735983556	5.1093620408874	5.32692006831047	5.25840140277155	5.62735506388359	5.90291061458387	5.73536561902831	5.69050004291591	5.36883595846047	5.4015640559464	5.52723704419487	5.2508482031307	5.64333809344888
+"IL18R1"	6.15774986496333	4.64788168826185	4.36010446356739	5.16819483479008	4.87198654960088	5.63030353942673	5.52283328377065	5.35135468877056	5.14785645014479	4.85664971994967	4.3136630814524	4.89944316771655	4.99853905958904	5.66001661384026	4.43874418507388	4.17432970869996	5.164443253116	4.23799455027255	4.37618285983488	5.25255474757163	4.50328374920547
+"IL18RAP"	6.55009937000016	5.39576317200021	5.31164124880824	5.38305885914295	5.52212236238622	5.70636448789798	5.9721574541798	5.46597568422604	5.65391434128972	5.53987721921317	4.90277478158426	5.59774105486608	5.47616150623937	5.75908851588546	5.27586047602706	5.26817087397581	5.23154221209465	5.25866711069044	5.44061319479109	5.62649592181284	5.26864541370614
+"IL19"	4.71927874526582	5.12459273414997	4.96858227902182	5.4098873471244	5.19949905640288	5.03032295848381	5.46444637517821	5.08055177621952	5.02911786542874	5.08055177621952	5.10113739986823	4.82954938064545	5.17531102246592	5.34936804902223	5.09413131339259	4.82885078885891	5.15267966091687	4.94587672124742	5.04201831296846	5.19182041505062	5.10393325246146
+"IL1A"	3.53650093418225	3.65881150352894	3.85880486767431	3.67452603216452	3.94847753638272	3.98281139326258	3.89175489224913	3.70661582025794	3.74425103542898	3.82509051959463	3.50661681438863	3.79340624972589	3.88846823218452	3.84972866961881	3.8703413485946	3.89118371169146	3.37228875355819	3.84180270607679	3.59987002986641	3.8425159104891	3.90436481378254
+"IL1B"	5.54326378585333	5.51429527555832	5.19019556153835	5.3079905513964	5.5404427950666	5.02333554827156	5.18665274524175	5.48558361787531	5.66855285680623	5.52206645102311	5.28392527528152	5.50829982643891	5.72152168502655	5.32710534508796	5.46951073169755	5.78096321797732	5.6081948963507	5.0067522314532	5.35928838686	5.5920122782662	6.593242069107
+"IL1F10"	5.13449612325385	5.20504579850618	5.10295024526588	5.44553434859937	5.33892249255615	5.306999278028	5.51403668859576	5.34485947199719	5.07176561544444	5.3924644761561	5.60011987139647	5.33358936572871	5.46108812401259	5.43300576023898	5.52239596055338	5.26105432301264	5.44484540868405	4.94047058802501	5.33358936572871	5.32151725759	5.24464673699029
+"IL1R1"	8.38885496431817	6.25470335054899	5.92009654075644	6.21567930838519	6.62161875812628	8.18496009999205	7.09608935253017	7.9537478928201	5.90179533516411	6.94445085547378	6.58080793704731	6.55994259037433	7.15401443876953	7.36334088284843	6.64737513990755	5.62756257711698	7.27351963928135	5.86454874366612	6.83477751504131	7.3829341742671	6.6015253560247
+"IL1R2"	8.74222374020233	5.5360126085258	5.6101128931275	5.79309522999334	5.44092101514898	5.58372302452711	6.64806030103261	7.52896984597634	5.84023781822284	6.26513146989189	5.47408423608612	6.67700421708719	6.12542544951316	6.443834933189	5.953455672816	5.26595129870156	6.23110681860585	5.51804326801444	6.11776326092209	6.40571378432676	5.7234569798752
+"IL1RAP"	5.79132460319576	6.02946210925964	5.50865706108804	5.6791568323603	5.82554722549764	5.65563397226525	5.82198120638267	6.11800923925937	5.68500104346692	5.46864876613827	5.61273701328989	5.6329092558969	5.90739189760262	5.78066557618818	5.40558030413526	5.53680488077484	5.61339083294809	5.70439802411208	5.51918976707385	5.77230208073398	5.73004591087573
+"IL1RAPL1"	6.94447784849433	7.43433246801767	7.53624849049879	7.32593700993311	7.74040042068733	7.87840783610471	6.95523633020027	7.41327213677224	7.09578070238853	7.35796990983312	7.94486309005983	7.62064761230697	7.02695935416471	7.1316269687387	6.93388137579767	8.27558365936423	7.59596016655758	8.28158844663748	7.42574324486403	7.52995608533152	7.19210345360163
+"IL1RAPL2"	5.23741945864168	5.34174865786296	5.09122390903668	5.35509010742067	5.5340406201332	5.26089036546419	5.30866238108984	5.33853103959405	5.45705195278877	5.35170290695955	5.14400259068348	5.37326859157278	5.47525507669714	5.67333844278716	5.35170290695955	5.35170290695955	5.34590267523521	4.98036969102889	5.45479031776394	5.38962944517917	5.56147820230983
+"IL1RL1"	9.81971768369986	5.20194650775166	4.88474611422791	7.70554309649344	7.32069459781919	8.49157726223882	7.54938081331461	9.11540029732853	7.76923613719998	6.28123593998042	4.86533468277221	8.93106157094516	7.16598164089911	7.34083146993409	4.53938651830629	4.78941845747138	7.86729980980615	4.19430938928138	4.7921063991153	8.2511168171993	6.60323386079755
+"IL1RL2"	5.08961543800521	5.30414423973762	5.41755984247454	5.34360414688286	5.36347163826547	4.95410684834848	5.30414423973762	5.30414423973762	5.31496894963751	5.33301620132156	4.98187523404465	5.51634309286318	5.50570540525246	5.30414423973762	5.40204132907118	5.05130567935909	5.32447306002708	5.22523840869042	5.08583573287099	5.40785638217194	5.44774291013069
+"IL1RN"	6.47397881408098	6.55326868035827	6.59962345871006	6.5900548257363	6.52050492396972	6.89761618790716	7.31856738309679	6.65940287899977	6.75773928436648	6.63567733808739	6.3789713660931	6.72884467771528	6.69820724059214	6.82819737400833	6.64737513990755	6.66161016492162	6.61703047536702	6.40544452080768	6.59301933742832	6.62328454091267	6.56527354989955
+"IL2"	3.13530594813314	3.00459218426333	3.21747251823196	3.25871067594765	3.13354832982047	3.61614586760885	3.38238731642354	3.05940871890817	3.43277809689543	3.30101468271874	2.9757813330354	3.31831738448899	3.22296648106182	3.31791622671956	3.20901276928803	3.25841041304984	3.20901276928803	3.20901276928803	3.08841558026032	2.93539154468627	2.98436143303603
+"IL20"	5.01156335563582	4.89257103132395	5.04828933286454	5.18491236303631	4.93567791855971	5.21852300896543	5.51003653962938	5.0712599637752	4.97996265113183	5.03991399236214	4.84951756213033	5.11463463304412	5.36668654158446	5.21265522867549	5.33426128426886	4.74978267822816	4.879755604757	4.70415459773688	5.01256607813349	5.15787230620618	4.95984277800675
+"IL20RA"	5.6982515126023	5.19174819908295	5.11819375563181	5.00117310192685	5.02292098855845	4.70238124031434	5.90200936681448	5.59759568313198	5.06448647175509	5.020292253952	5.52548122800532	4.71637364287403	5.00117310192685	4.90482861871922	4.72078897836397	5.06282766773353	4.6878948174378	5.12244311810584	4.75326971891018	4.91547472961026	4.08503125396319
+"IL20RB"	4.12278240631612	4.36078556017995	4.47348836185492	4.36393912536688	4.27276180976469	4.8981730137454	4.61481009954261	4.19907146138157	4.44612852111259	4.24590237733073	4.12590318330011	4.1129157976824	4.45235585288945	4.53958538777114	4.34634699370544	4.15201105296338	4.5644208304289	4.20980075881253	4.39772806536217	4.31851994256037	4.25033540493234
+"IL21"	4.74221375461494	4.82083453562206	5.06938845956001	5.0871358600001	5.09688527203806	5.33358936572871	5.23498943105017	4.9162560033334	5.22885463047081	4.95396281623076	4.95807768332765	5.24271681334119	5.01056572176072	5.39499563677259	5.23498943105017	5.08434163260989	5.08434163260989	5.01443348826672	5.12700267303797	5.08434163260989	5.22379800094752
+"IL21R"	5.08961543800521	4.32644225337527	4.15208892540975	4.19128364654773	4.31079547891065	4.3744083722667	4.2518721420802	4.55173240418086	4.74943998242282	4.24790460840766	4.10740516924497	4.26962241878467	4.4681431669963	4.89045828150396	4.12810003276258	4.22376626672735	4.63849766366756	4.12810003276258	4.2842537044103	4.48715977135629	5.18888558895602
+"IL21R-AS1"	6.5476083033414	6.74639359498995	6.80363709992089	6.5787073204916	6.63774856055973	6.64408835349659	6.94700191356673	6.54128013427889	6.84397872953392	6.51541260558987	6.83124334188543	6.57729823252304	6.68183949314773	6.83835709587747	6.57583708327079	6.59826385799045	6.6413869684088	6.66814901952837	6.77300861372494	6.37941609108374	6.71563745604977
+"IL22"	5.22609191406539	5.38691932492452	5.28845671003067	5.34174865786296	5.34174865786296	5.31565614952718	5.37468763287388	5.30414423973762	5.51121280508682	5.26750577135995	5.21031837631499	5.50126558573071	5.51933399040915	5.34936337821609	5.23686981841092	5.60697028955071	5.34174865786296	5.17602666289877	5.56876082013031	5.33372785688413	5.34055483273106
+"IL22RA1"	5.35798908607966	5.39289104917052	5.17098450289361	5.33922165303402	5.2515185045034	5.45380983671317	5.72200467272669	5.32110393784538	5.38818394725201	5.46587467090015	5.46036712997959	5.38345040889408	5.52909882639105	5.43564971841852	5.51403668859576	5.38818394725201	5.41558718047101	5.08177647328113	5.32136681218605	5.11118385678473	5.1977007237532
+"IL22RA2"	3.67650666932196	3.93599392066456	3.71415781315556	4.09242932544182	3.95593994615862	3.94077562945183	4.01809551067257	3.84099548964726	4.30145880351128	3.98038116025115	3.7855793638631	4.12460320051019	3.94049957042967	3.99914608229379	3.84099548964726	3.95820720653912	3.92804196810935	3.71827750140139	4.0770962507312	3.98415144713624	4.12283374295238
+"IL23A"	6.01114352066979	6.26096014990866	6.18312212945378	6.34086159243828	6.09043338694708	6.54809057595236	6.85300289826802	5.95335422243433	6.22952326163179	6.23502383050879	6.08765862935208	6.11466257638286	6.60014004289624	6.51399815025215	6.29892637662058	6.2148128439302	6.26096014990866	5.92327081277302	6.37646206338165	6.31903033550431	6.19936304543407
+"IL23R"	4.33047722079378	4.31380772535559	4.36448959763263	4.2493817728559	4.32914381269951	4.18819935762455	4.48637175907967	4.34978226999954	4.44919183417841	4.48057730759729	4.23469054635387	4.44161113781757	4.43216194166789	4.51462121593035	4.36448959763263	4.15508668892419	4.5928853556813	3.97590077526299	4.62545378363365	4.31520837769604	4.27192306716574
+"IL24"	4.20291384464216	4.10607236349452	4.03943200267398	3.97103775367134	4.19720164975963	4.38611421246922	4.34563649407411	4.17608554150275	4.16344665357291	4.19720164975963	4.15024235232073	3.85710458060236	4.23276163521898	4.28407847436119	4.30537239963471	4.17050548476037	4.09488846063239	4.10454561477642	4.23855977344163	4.05715960829812	4.08900035437131
+"IL25"	6.21576044527206	6.52066819169955	6.53427787337997	6.59824072805641	6.54961418283723	6.52066819169955	6.8196476825984	6.45761290220819	6.4707107614253	6.43091656782213	6.53304592119866	6.50092183033219	6.50980465570413	6.77267021094113	6.30997109772858	6.60949100640938	6.58986017893119	6.42275136979101	6.44802742246871	6.26719003116088	6.39778731635633
+"IL26"	2.92641297047995	2.87865912797055	3.16763419088733	2.91928741107058	2.91928741107058	2.88570130943913	3.16953536577141	2.89314435839022	2.99677591265445	3.02476000904998	2.89088047869811	2.95230893690578	2.95230893690578	3.19201992465087	3.10096741614973	2.80866284931528	2.87787823578432	2.99445984366696	2.94906970106365	2.99338146228836	2.80294618820454
+"IL27"	6.53862676953849	6.65502913849201	6.62875171226049	6.83624482422786	6.55978266676806	6.58604331724795	6.58468736937492	6.54965871791359	6.62690338926405	6.66763813692229	6.55019142519162	6.76887643783913	6.69748044284191	6.56604049544674	6.51676590419248	6.5913138417147	6.7345897740942	6.31644398711924	6.66799449277566	6.53862676953849	6.91601347848451
+"IL2RA"	5.18372175730689	5.09122390903668	5.23401729644396	5.22394799417944	5.1490926005187	5.35094827997704	5.31001123459997	5.38792714332732	5.15566820532382	5.15255718081072	4.85736082939951	5.09382147775809	5.54836802499227	5.71701248114466	5.41321425061398	5.31730919846428	5.1158147196323	4.89550325299867	5.20410651701325	4.98636208186981	5.41253187023473
+"IL2RB"	6.17533277124327	6.50409651042341	6.16473591684021	6.3174850891689	6.18342382467637	6.32333801523844	6.3643480768716	6.2030763496523	6.49568288019148	6.52515063137414	6.0566061698558	6.35957588017919	6.40382328007864	6.48583228849031	6.36600944941549	6.4850988336729	6.51457094744474	6.21329659479243	6.46500039885536	6.21790843788286	6.50530329792021
+"IL2RG"	6.68014347225188	6.17313099847035	5.71353244878465	6.27826711416467	6.12599327909877	6.86691294853639	6.50172718413263	6.20525531220448	6.33897836726906	6.11405211337404	5.76077725162101	6.131787277167	6.49313115268793	6.53796168901881	6.02373937006624	6.02755039954805	6.39399575289811	5.7662511083396	5.99149391130113	6.17562600707643	6.34330899381617
+"IL3"	3.86984283236242	3.99167857852909	3.83035813222881	4.15955499977618	4.02365730338324	3.99321485246642	4.29721978799734	3.94977497673691	4.52340606851335	4.00469379059507	3.85043303975793	3.87034428714773	4.18745295996338	4.20478896206091	3.99321485246642	3.95475036405884	3.9914205764437	3.62268932336323	4.11367051990301	3.90576030019351	4.08281084864544
+"IL31RA"	3.70632310137397	3.94455582282733	3.88818293599575	4.30612468326118	4.07014958938527	3.98993281892664	4.22182907335259	3.74111808009242	3.94900189445091	3.9469094133226	3.74235217017352	3.94847753638272	4.00080979995104	4.00156163921494	4.09631282931688	3.76278989728237	3.88894901932074	3.67977159903683	3.94847753638272	3.70235697148502	4.07938984754219
+"IL32"	6.90925218805527	6.31478206797021	5.96991522885329	6.55071992638328	6.05880164550611	6.93526435258394	6.48281386867602	7.13081736787554	6.24771195509242	5.82752848764721	6.23186572447579	6.40028575555076	6.65557567367966	6.75433228697619	6.39206148324827	5.98793769760415	6.01626835925235	6.03481818871712	5.98507263149916	6.09391581984452	7.1594324453064
+"IL33"	4.39271003136056	4.94697770224047	4.40827564418163	4.09339319819061	3.96051804980325	3.15661021599238	4.89443258248067	5.11998422634402	3.61538769096731	3.52598804032543	5.64644444909643	4.03198295905609	3.5714623650399	3.32856273174334	3.88526373815386	5.09959688446091	3.70395437659218	4.23921492358168	5.09194595732123	3.60567434105717	3.73732461457401
+"IL34"	7.92926202541346	7.93576886330572	8.11368547297519	8.3369605264371	7.84031705803722	8.62315825546638	9.05582262736666	7.94005000936054	8.30481019243231	8.13323481512146	8.04406792900834	8.22749905314709	8.33268438447914	8.56451543231733	8.24645557115533	7.69075767253888	8.17722249591781	7.77435550250213	8.39622320128672	8.18893053693234	8.06948685234238
+"IL36A"	5.6810332512652	5.82747502801391	5.89487512202171	5.85454404078693	5.83335936211459	6.49441395868016	6.6105879267926	5.68824083555413	5.85454404078693	5.83308975670133	5.60142263079814	5.83535566405225	5.85454404078693	6.13514328343736	6.0288919789479	5.61028325757959	5.7152043942536	5.67168042941218	5.8342955706488	5.50609215741328	5.85690824740638
+"IL36B"	3.94796249206812	4.33365523925458	3.72088141323012	4.11664012725552	4.22378003236043	4.13853255767929	4.77710165268481	4.2495853564628	4.21753508035128	4.27035915277204	3.87254805219508	4.13853255767929	4.098397245801	4.34448634672258	4.03520241078857	4.2890885886531	4.14826043397995	3.85978321450996	4.02421134578905	4.16325644402003	4.10968469504234
+"IL36G"	4.22339510751246	4.58253038976186	4.16708810165877	4.59458742339227	4.4090494437955	4.32871284024859	4.3873015571639	4.48775055213145	4.43143614564579	4.37330194935482	4.29938893389525	4.56341163177551	4.49612640312069	4.4639965426867	4.69271425406713	4.71090004514272	4.53804229327069	4.42515684145257	4.66124087142173	4.5338084941698	4.35601274283148
+"IL36RN"	4.59129401544842	4.88180025694856	4.94353236858525	5.1530059361695	4.98550787133885	4.94575004214289	4.88758264637187	4.75799280259008	5.12395501402188	4.97793010276799	4.77536600203051	4.92279120276321	4.9439063005565	5.00932548878514	4.92279120276321	4.85388582598346	4.99629461033009	4.77556374608533	4.83683107545114	4.76887149053727	4.95224468289085
+"IL37"	6.40411457688677	6.47295214810386	6.28780300796572	6.57161314690836	6.60158090741005	6.56456477449118	6.65703824608817	6.38586673202084	6.84963216493466	6.66817322931165	6.24658926134595	6.52887539225768	6.93355953922085	6.69212123489986	6.39764083670919	6.33926617445084	6.61472260712664	6.10793174704593	6.80005458067239	6.37762847937247	6.6105879267926
+"IL4"	3.30964363655807	3.45378315933496	3.42041772599997	3.62199763512779	3.26096382497448	3.68644754126335	3.70866735366022	3.30085796234069	3.40078528344751	3.31497585760058	3.37530514605776	3.43177525918073	3.4421902829827	3.26869188430548	3.81323795213256	3.40143204638936	3.59222776405588	3.34522572472815	3.47622850955114	3.50935451673506	3.42163627343292
+"IL4I1"	6.06480747144274	6.12256733551174	5.96109031282847	6.0337283868839	5.88693769319575	6.26791736148161	6.72077850555246	6.07854110773496	6.25049714276178	6.07854110773496	6.00670622707959	6.21715370336148	6.07854110773496	6.44015181646107	6.21954311432637	5.79333259275609	5.76570935335466	5.84952684298679	6.26928835463834	6.48655672455587	6.12059484398192
+"IL4R"	8.87232183458175	6.85746700422801	6.5426816422601	7.35026678862231	7.24436539579128	7.80333932166226	7.38005012508558	8.28126309138119	7.03801262186864	7.29336367154408	6.60620830226902	7.48808053739238	7.23972665671899	7.75261116713665	7.29336367154408	6.72296553939677	7.29336367154408	6.88500133697196	7.12483585117937	7.51520161362915	7.57700327268322
+"IL5"	3.81325942825159	3.68084637584359	3.82860084363667	3.66228415793208	3.58418652257465	4.17454331007742	4.04994180750483	3.82860084363667	3.94234493439735	3.85949188391034	3.63642262555632	3.79719988044007	3.94707298140574	3.87341201373911	3.89729813050662	3.6551090714096	3.94391695691537	3.52686451427091	4.06875664471994	3.80005852962073	3.84717417216728
+"IL5RA"	4.78283621684188	4.95839424692695	4.92353302239574	5.12795360742044	5.16953743310757	5.02256947091359	4.92750104472078	4.58792602313309	4.89395968301854	4.92353302239574	4.71564102520645	4.63524156056892	5.06282838953252	5.12906069912838	5.01728460890796	4.87930984611837	4.92353302239574	4.92353302239574	4.67166669524236	4.93512297559072	4.92353302239574
+"IL6"	5.98085152455419	5.55233071301017	5.58523815451025	5.76537732671703	6.07345288814669	6.27272158773258	5.71368232551487	6.46964488619953	5.93352146843178	5.79878312735452	5.41427604710212	6.02020845176801	5.80393800030164	5.82131949675506	5.86326078013107	5.51566285287261	5.84733040948608	5.59831973222761	5.49478639069351	5.84733040948608	6.15924398292635
+"IL6-AS1"	5.48192550395001	5.70230056550291	5.44750728747219	5.94318869332854	5.62602680987759	5.63951083352917	6.0821535377186	5.88779467118403	5.69514118888361	5.73123283242185	5.70230056550291	5.63951083352917	5.70230056550291	5.83593691285127	5.74704624428689	5.75063917581154	5.83308354452355	5.35864477734588	5.69150006523055	5.82588496406528	5.86238265496054
+"IL6R"	7.40458545312609	5.98737603366594	5.94947091273226	6.01621017027719	5.74180707752075	6.00990179220662	6.11313879502573	7.45677679104049	6.32452816614941	5.83584119523102	6.57552856884894	6.25680248081417	6.14214476769302	6.29079601809376	6.08366521393566	5.77926534187182	6.1290793939318	5.67581088949537	5.93307479184657	6.5538633652104	6.12496235478055
+"IL6R-AS1"	3.88509171534632	3.82732984365533	3.93631914211664	3.75373922980044	3.95224741282513	3.95224741282513	3.98213088544931	3.82142286964327	3.72053731521232	4.22550108505819	3.87816331343848	3.94288996241723	4.19579005023484	3.86539719960737	3.91309731221974	4.06776176294312	4.04154234889114	3.70858112911534	4.15043529804039	3.95224741282513	4.2034814192123
+"IL6ST"	8.8147056753152	8.53493809548642	5.60516707076731	7.55977410603035	7.85193094375917	6.4075044645456	8.04208365749965	8.71737098593717	8.06300789004111	8.02250732151496	7.81664024427788	7.72122950121329	7.47162076545192	7.47093136343669	6.78480768393984	7.73134199940487	8.07032992016484	7.91335416469097	8.16152055201537	7.42660559764236	7.67481267092331
+"IL6ST-DT"	4.80963554172092	4.83679181857632	4.58143234836241	4.61825576266645	4.79538686561701	4.34651138136916	4.29459334255697	4.82983702428056	4.63171571568295	4.99823505818463	5.4736966193197	4.92022963598311	4.75799280259008	4.6955545449819	4.69034459018155	5.02986865546668	5.11952701351229	4.52563523917676	4.72092011323421	4.59489226558236	4.74637429251633
+"IL7"	3.22024209793488	3.1400171540334	3.19671773385639	3.01042219449941	3.0384975515583	3.3066242512047	2.94470848447235	3.18542744084642	2.86374605315992	3.10180466651355	3.24408783565649	3.19974090533624	2.99895861267056	3.06607851304385	3.11580016666062	3.15828382342225	2.8675066298745	3.28624947790369	3.34080923610375	3.15316765728299	3.11580016666062
+"IL7R"	5.68959375072502	5.51403668859576	5.44973839706072	5.53464247922045	5.59289317675739	5.86454874366612	5.51403668859576	5.6914729094298	5.57294887835946	5.64990427387407	5.28570175783927	5.67894215180298	5.45400456099483	5.43010735968442	5.54675648662309	5.44824616587968	5.37936163362365	5.16965008038844	5.92139657008423	5.61104306240717	5.69594482382061
+"IL9"	3.38584731122762	3.56990639192823	3.48063619212404	3.58922186863222	3.43849186357449	3.56865055713433	3.51828057505161	3.30570640478015	3.61125195856336	3.35173792119535	3.26375865793324	3.39810421114475	3.4561299492902	3.38449008709425	3.20487015826949	3.43237175086216	3.69326659213747	3.38477351482807	3.46504972802718	3.56775691011019	3.2400237092384
+"ILDR1"	4.67036618245637	4.81607376002052	4.74825605750398	5.29871308802406	5.05937000551017	4.66655585558115	4.9024643767441	4.68049988534737	4.96465022127731	5.05746026290213	4.82777202655215	4.83737728566372	4.891431597517	4.792041545333	5.17897583377368	4.61653224876536	5.10397321160241	4.34197227936119	4.86971306341385	5.02528645258725	5.26134674211105
+"ILDR2"	4.15207125706161	3.94237157185544	3.53986572167021	3.70253035866339	3.72829821322187	3.84589648260235	3.81304310971496	3.84589648260235	4.19049344292431	4.44887352794768	4.24936016168379	3.63848733321488	3.70814056371778	3.67440675410834	3.5940220400786	3.72425132252204	3.84054160309622	3.48352424105641	3.90911019883466	4.59234634062734	4.01907790151592
+"ILF2"	8.63429786843918	8.31124544677662	8.0334257953068	8.06921660622964	8.63901909947631	8.02747805027249	7.94275661318026	8.31226245965292	8.15661128265227	8.63115779677095	8.51161304758324	8.493087238081	7.8686398663505	7.81078352645757	8.0448619596629	8.71001526216937	8.02454281074084	8.92544708149821	8.08146566615341	8.82451412233969	8.4913870745986
+"ILF3"	8.14670675845361	7.58785403454778	7.95897211825925	7.21576311683399	7.74086567457037	7.64958325694579	7.39357929295342	7.10963493346203	6.99038315960384	7.84180805913283	8.0952935686778	7.70641492276403	6.1338068847442	7.12611374025274	6.22817046145989	8.29176734578618	7.29336367154408	8.4897681582139	7.19856122062465	7.46493599564205	7.29063948387867
+"ILF3-DT"	6.92692146605258	6.89280242853966	7.02678798759546	7.00852556093154	6.66977597820189	6.29342769455859	6.70112338448924	7.20346614286036	6.68931230296118	7.38906652934064	7.75715295610344	7.68673061335799	6.82984237596934	6.71160913027648	6.95482136747765	7.68903033237688	6.65145151657657	7.77906956096734	7.51693650657396	7.10702029304323	6.53589951381173
+"ILK"	10.1651395299366	9.43424381956684	9.17795343024018	9.473234066321	9.58813770722446	9.60899797903937	9.81220514495328	9.68326332064535	9.508711081566	9.60277651288239	9.55383530007737	9.54725898125692	9.4358721824846	9.65046729032045	9.29853399839268	9.58312472710813	9.47313373735763	9.6853978418852	9.51523772847693	9.81910911452207	9.54221025462024
+"ILKAP"	8.37078348355849	8.26955409783533	8.49010167231148	8.07019152170069	8.23911623073742	8.20722983184245	8.13165082255038	8.21947766808999	8.12115002201977	8.18184388668761	8.52825224683082	8.14749135288649	7.80133545380424	7.94255037524826	8.40380326528675	8.51345503794468	8.111291806412	8.83340647593096	8.18768934646772	8.22971704702667	7.97239653922095
+"ILRUN"	8.05014106270439	7.83744994181522	7.13044250809213	7.61790832693143	8.01958210365519	7.47606274215313	7.98359077729541	7.9754180517164	8.05969942675727	8.58279916363215	7.63806676693865	8.4598192853821	7.60631829126407	7.45338624541277	7.95379165002187	8.25525813987797	8.15336008629886	7.52745389913444	8.19361416749723	8.36683590731782	8.80202704242578
+"ILRUN-AS1"	7.36503859584241	6.87181991460053	6.87075512594826	7.13077246225648	6.90188743115329	7.29793716786887	7.54582149067577	7.34751736909214	7.1677803712136	7.03676205815738	7.33344575082442	6.82751940791477	7.31812377769635	7.36848866097114	7.64379486086651	7.50381019278011	6.36529305161164	7.55207563070288	7.24756101351651	6.87093109638806	6.72726789834082
+"ILVBL"	7.33948035271429	7.25946113879711	7.2970321661266	7.00292121672023	7.12815586719944	7.4150482612686	7.35747831541996	6.84563268318383	7.20176041835591	7.47873041300803	7.75096606425115	7.01554962835442	7.19038705625962	7.09529722537551	7.1685543840208	7.58194023132407	6.95139273474989	7.72828608686449	7.18499913815018	7.42500639010724	7.30924423801632
+"IMMP1L"	4.16053832751594	3.6369324317217	3.62589837570552	3.34939696512284	4.13191715981448	3.16676848441845	3.3289833713878	3.33576592705797	3.49732804056985	3.82817632293359	4.1781737831286	3.7344485563663	3.44303180526407	3.38613004288932	3.11177029661526	3.897144822887	3.34311217606736	4.18938666497433	3.48222322880242	3.83057711125146	3.58657035912302
+"IMMP2L"	6.84271682421075	6.56535851109694	6.80715635912066	6.55601309078752	6.67859717877972	6.18016188709777	6.700425152643	6.90456499372986	6.56988957090668	6.49938674690097	6.53208289607767	6.75389809945694	6.05322975176337	6.52485663434927	6.34618098181385	6.73253309867692	6.56848934543271	6.5738964317185	6.56988957090668	6.75719340215133	6.60306335901439
+"IMMT"	8.78249626665445	8.9701352568224	9.291033526672	8.64618219823541	9.3826950978723	8.53286965611945	8.43829729897914	8.89639650910621	8.7862671380157	9.28498048038446	8.9527868356952	9.05792319823496	8.577201091301	8.32422625495725	8.62125465359167	9.00207786057955	8.92882970090206	9.24861981883918	8.72502185681152	9.31975954727136	9.23619539537923
+"IMP3"	8.40769688737061	8.56182928726246	8.85369993180909	8.47730118057205	8.84795821585016	8.14965751163887	8.25297697701371	8.36718580444963	8.68331338785834	9.21840192335435	8.56263985079904	8.69212786305204	8.38269506148012	8.21176233184813	8.58850962031855	8.98219092697893	8.64180285265971	9.14122669588668	8.64263825475803	9.25932282911836	8.96730601335588
+"IMP4"	9.04299365007036	9.1318002180923	9.22245471087055	8.79628255966283	9.44125349032867	9.01662199306115	9.15736238905821	9.01156448689731	9.06376707037081	9.36179825625106	8.97274837845881	9.22761332677022	8.92375187412252	8.78265878656217	8.97505379882785	9.0409031789035	9.06016587562032	9.15583029976398	9.14032344872623	9.55777914955842	9.57380411937413
+"IMPA1"	9.98906637912265	10.3046149486798	10.2691450459319	10.1587389645013	10.4776384700794	9.94262823351618	9.61319048383857	10.2919996308352	10.5214788143659	10.6207898646891	9.81065005657193	10.5690091477505	9.94990787696131	9.78679589985537	10.4089427240443	10.1813962057392	10.5015521050366	10.6125408288161	10.4903937375075	9.98490931394234	10.4071454587751
+"IMPA2"	8.1355703305982	6.22682750473005	6.40426422618875	6.39682596650037	5.8734738122715	6.10723765461095	7.53362418627615	7.08601155870924	6.53186154127337	6.44080729829476	6.46875483726445	6.26875497624933	6.25527934281532	6.50491074891385	6.13199884623255	6.1432794251049	6.22834920635663	6.41410373870185	6.58003672720706	6.63912772530551	6.06654972944686
+"IMPACT"	6.35782305536654	6.3002348029998	4.97637264852523	5.40291862268148	5.63238456638261	4.3116198340771	5.19763368864143	5.88551290279898	5.03856578826054	6.08387916705533	6.74009392905104	5.68386064962048	4.6126918557457	5.1750059135084	4.48438775210065	6.09843675440511	5.3973348872181	5.54856570876257	5.67804553579102	5.62967097690159	5.42030130772534
+"IMPDH1"	8.73836836763082	8.03326821696829	8.43135964220827	8.2821239060727	8.25454607719142	8.79532032004196	8.47667923236743	8.18624073124131	8.38373983873085	8.21361219172149	7.83857376426148	8.21456550018079	8.62427093823671	8.65816385959477	8.41466076429227	7.6292240895329	8.25275363336465	8.0631923168986	8.11466729087663	8.43009043163294	8.22779617568586
+"IMPG1"	3.22567950860623	3.03912224424927	3.19249343207989	3.05927340028973	3.9111695485453	3.41222410027302	2.98675741294776	3.06252723574929	3.55425213392835	3.47123747193854	3.05407208719271	3.46817259849255	3.41222410027302	3.18928666632877	3.46377343647556	3.46171063636699	3.55333631847654	3.46664189771289	3.41222410027302	3.85115909653656	3.6745747223851
+"IMPG2"	3.43798990650538	3.34790967579421	3.56323492977576	3.60566711379909	3.49611170898572	3.69305848859646	3.43798990650538	3.46924752939726	3.62700960707895	3.40587065218401	3.33661390238435	3.40006017774793	3.45350453619763	3.90882538535162	3.35739374380891	3.42296167152804	3.36177386466716	3.39268477535123	3.42059676416689	3.53048138544774	3.46924752939726
+"INA"	9.27960958544692	10.5947267199211	11.0317642949924	10.5323051143198	11.4903622037389	10.2513475438036	9.30694360341702	10.4058183030728	11.0225357570362	11.3184323992691	9.78461897378352	11.2222540586114	10.8043129180758	10.0195992293996	10.9172592239918	10.2736378924462	11.2213168468101	10.674847373048	10.7194523572739	11.5231520178547	11.3911295341276
+"INAFM1"	8.30228606835386	8.38888727415732	8.84610357150096	8.16713077994424	8.56908838269325	8.8360559915352	8.74597493029205	8.7324432611911	8.14977422075696	8.59930574227493	8.40292511208291	8.57778589109782	8.65577803334893	8.58373261663865	8.21560905131939	8.31063258028199	8.52592440085066	8.43857751474686	8.2883571222457	8.78996942500606	8.53762692961955
+"INAFM2"	7.50734667910692	6.80935467887498	7.01389649269633	6.73458556117312	7.21555192065649	7.09653853342162	6.83143614250485	7.44752647388318	7.23375605578535	7.18318450856823	6.51520729649304	7.17664972656744	7.05697732543804	6.72946061893542	6.95900937879678	6.29308004059469	7.64227813065061	6.93895952328843	7.23982737143772	7.44625248179658	7.23160553978658
+"INAVA"	6.33144941723829	5.52846729484629	5.5443708448666	5.39576317200021	5.43202826853303	6.02488828969871	5.92944752853094	5.74225868778363	5.63510853245211	5.28800271820628	5.50528692233858	4.88656258168644	5.72759939071508	5.74225868778363	5.5228113202279	5.50528692233858	5.32117049680448	5.32044159804188	5.46508806651858	5.23538348478577	5.15606015712402
+"INCENP"	5.43466325859088	4.28755575802262	4.26063267182655	4.57008479513972	4.66928598007874	4.19855139747551	4.46561213352929	4.55830013425283	4.49544891737877	4.57543330681291	5.87975887903618	4.25382743565782	4.28100060215782	4.39150143189439	4.70431306146223	4.73499292815606	4.53986434439736	4.7939943459758	4.11683237474903	4.16950421754246	4.51115742065283
+"INE1"	6.55055778282276	6.81188781844004	6.59782187503205	6.85975578595132	6.59378052764671	6.63603467850151	7.06973921445535	6.81739964080276	6.86142908964817	6.83920261164898	6.87794766355653	6.67565308466685	6.87337288836361	6.76998609730257	6.78733570429225	6.78895279809995	6.76633693537961	6.49647826086803	6.97462132687096	6.72778499234282	6.78466169731986
+"INF2"	5.66144787879065	5.7439341436535	5.34571860468275	5.64072614587297	5.70386112103746	5.66251213795877	5.43209562536717	5.15789726809074	5.16567290808192	5.6224641636548	6.18574677648646	5.82648687307589	5.37545425783405	5.12193237032106	4.97665603152896	7.11169350948326	5.51519489906078	6.40603802582848	5.36608266355774	5.52058208559338	5.39700418154514
+"ING1"	5.33112793150095	5.47099865333773	5.42724074035764	5.76729191899016	5.93117398469806	5.88306866652199	6.09848055829864	6.40669484452056	6.04625671660677	5.7851294945397	5.23060249264168	5.89530533598046	6.10570828225275	5.76722890201273	6.39272917708388	5.06474388059229	5.82044835985698	5.76876663693663	5.72278144386687	5.84830001464235	5.76727561146558
+"ING2"	7.71494165271205	7.53592043681879	7.69112059634305	7.57026207091112	7.93768751293866	7.88193462342501	7.84223911570746	8.31476134388047	8.04295313232689	7.97803647855332	7.7308516223358	7.56492529402443	8.00019040101858	7.70279060765849	7.48525950694661	7.51064692858616	7.57947136901178	7.8297433022237	7.49691516729488	7.9403145605526	7.61956047137883
+"ING2-DT"	4.76204305581955	4.62004529864945	4.76396617127147	4.60110298900335	4.86787663311833	4.30985324378796	4.43235396971641	4.66784483447504	4.87230572408177	4.56880558376506	4.57691839483841	4.77612826781298	4.78066435883884	4.51986500921837	4.57507766271584	4.59894402496194	4.76982388755154	4.51310283968807	4.62153788418795	4.76764009535909	4.45926654683725
+"ING3"	5.86364730834525	6.19846659073267	4.87833646655366	5.97047820468781	5.06212173295577	5.06149254020757	5.28396431065495	5.53105877365942	5.72944152864024	5.95521012369985	6.11431851261785	5.68888417596039	5.7218509774908	5.87548722699285	5.72677884515989	5.93632159066409	5.53322384282141	4.3177528959467	5.51680807470746	5.80119558257894	5.79114734971711
+"ING4"	8.14711488412681	8.20506673245737	8.09818909962167	8.18369682045522	8.0541755218822	8.14984511210066	8.3116264770497	8.0247778066068	8.24908600517688	8.20506673245737	8.21180220167503	8.17538195750293	8.12350956202434	8.32607789785725	8.2252541469653	8.56571474914738	8.21265057711311	8.20506673245737	8.1966766786575	8.34933746354833	8.11164097940643
+"ING5"	5.90384362378434	5.79325468559104	6.14019872511372	5.84659915507556	5.74716780161934	5.46707702951828	5.85987402281873	6.33129663469483	5.84454204942688	6.15934010287306	6.11448382592729	6.1532011815857	5.3689509232024	5.32399972840327	5.47606136966448	6.44619842844582	6.06406972453732	6.33667155150443	6.13612060402568	6.0906289925569	6.11084269567833
+"INGX"	4.32835878522556	4.04637516568331	4.00368322960827	3.95476004258622	4.08299431046809	4.3461177608433	4.97202731121286	4.15439932106197	4.26507044637761	4.28830161329839	4.12590318330011	4.1881355742338	4.32758151726528	4.57512919121534	4.28830161329839	3.96544143965234	4.06419192716407	3.6805450699361	4.27801179935047	4.35783257527842	4.16910210131818
+"INHA"	5.3461207828764	5.9721574541798	6.25903754770752	5.8063839794417	6.27271846109702	5.97698140348084	6.22917551627367	5.83938001641981	5.92372224979001	5.96228722742972	5.71027812884572	6.06677955392864	5.75468731946134	6.13811902806815	5.45539117269937	5.68273036581932	6.12552208993326	5.42410636406462	5.92480693057813	5.89477565612256	5.84333269441311
+"INHBA"	4.04259546780965	3.8467497880564	4.02897752175156	4.00868072017113	4.01138704222196	4.34592287557801	4.05666113176746	4.22541045175971	4.11647555159234	3.65093321361272	3.54969021018417	3.68677898483994	4.30324349304376	4.08958658807579	4.11664121839364	3.66076069256676	3.80153212111018	4.55340814784513	4.01276657428898	4.1382054104787	3.73008554511735
+"INHBA-AS1"	3.338975375311	3.40396353222911	3.87813568389365	3.62453748416339	4.13111190276158	3.54127067137852	3.36895469836158	3.50182589139387	4.18798564585664	3.93919761274226	3.46924752939726	3.95227266854834	3.48168060060379	3.50596697227214	3.55432614837195	3.98712421185671	3.71049705442654	3.52970537206662	3.49432414004487	3.81798822003722	4.20579304557387
+"INHBB"	8.3230031189682	7.32962630590045	7.6907870894048	7.37003624891566	7.35084036433556	8.56112792411066	8.29743691983085	7.2453902905396	7.70472140782127	7.26805610047552	7.53008890316744	6.92589887757476	7.48797511690562	8.05401001824343	7.50899752780844	6.80274081983016	7.17567050599567	7.11377955821088	6.82424904109627	7.23628126219318	7.2223739912919
+"INHBC"	5.83820348563761	5.8778565362121	5.62122247825689	6.1133095581562	6.09987329116317	6.01236744196848	6.25034610509233	6.0088375330385	6.0088375330385	6.0088375330385	5.85527440791678	6.12171595188549	6.02789736666907	5.96844185825129	6.0298745497752	6.08361367529484	6.18619783200992	5.4940350392497	6.07425067829976	6.0088375330385	6.0088375330385
+"INHBE"	3.5772977946304	3.49907232928224	3.77446763799184	3.59756009944715	3.54024255057798	3.6473661819782	3.77980742564594	3.45091062188539	3.54831771351554	3.47937784331064	3.65072245588663	3.63826399689495	3.49010359421758	3.55217090793404	3.5076705204446	3.65732073111073	3.69500834517098	3.62129943495318	3.5772977946304	3.44211484477021	3.38647047291426
+"INIP"	6.34281784091213	6.087727605555	7.12461951118236	6.35154522199661	7.22857834197228	6.50916782545458	6.30083167919572	6.34165486480168	6.20284967498213	6.5000979980971	6.66372985891453	6.53149966051837	6.27292770187152	6.62098125199835	6.21963885490928	6.76826527863109	6.40672913861151	7.71414842719353	6.47308188915478	6.68616992450741	6.63052770391635
+"INKA1"	7.29255506631504	7.44299596352925	7.57999054424517	7.36523637472559	7.34087965611053	7.73322371626419	7.72166804113977	7.12233204224937	7.4870963616996	7.48561395905444	7.2496627972672	7.19956196223927	7.65519112645325	7.80585441431995	7.3549448306352	7.1652018587201	7.36167324065908	7.20863517741621	7.36523637472559	7.44567875956132	7.33818712321526
+"INKA2"	7.88454805575426	8.15094553033763	8.32246212451064	8.3120481759184	8.43535450894632	8.66863571489089	8.16761478064859	7.51787662160371	8.78988368719939	8.45954866575392	7.5274621891985	8.1463322287868	8.74998062780254	8.58019789391103	8.62064192729093	7.70932792209221	8.05168328994118	7.95817157749319	8.1337241024308	8.47151999740464	8.50862207140975
+"INKA2-AS1"	5.44142895448235	5.77374350031408	5.57265695481231	5.78612929869247	5.71676494370803	5.61820958742126	5.46923816308889	5.50304443982092	5.91501489254197	5.70491146600837	5.38971754367168	5.92794245957931	5.87298547809526	5.82182424506149	5.8046063198732	5.7938784115863	5.87054864116648	5.32967145409658	5.57119226027131	5.70491146600837	6.0097638490779
+"INMT"	5.50594914378356	5.46049976254501	5.47804412259188	5.4846428513548	5.22396585245624	5.40552178031468	5.35360904215557	5.32157394122193	5.50076182085259	6.06413183408036	5.57222517089717	5.58458391900975	5.57128145720722	5.30414423973762	5.17534962326197	5.33801949368538	5.48731160476453	5.33163350667455	5.57451062721094	6.02522601326194	5.31917830588822
+"INO80"	7.70645393594253	7.4468038982457	7.74100828631583	7.22413183415235	7.39717290051894	7.78368279471037	7.13627068301572	7.17189326348289	7.08880641562834	7.3305449316845	7.70791219703886	7.29957620168784	7.26006641559201	7.56341062912832	7.33328623149596	7.81784716192054	7.20002189825104	8.05552899212129	7.07883592843911	7.39964955279459	7.45299863350301
+"INO80C"	7.0839875246391	7.61676177397239	7.6739763347554	7.41963727952812	7.66547504994125	7.26458506436572	6.7783354605811	7.10202076553274	7.47980728435206	7.68959605737852	7.23228076517352	7.27258381047487	7.40430261411259	7.1369281934723	7.38881297554709	7.13625975220588	7.39011089688574	7.56723546164306	7.25159667403806	7.72079276238301	7.3101007653188
+"INO80E"	8.47097018344833	8.14532996241342	8.29024501163135	8.13947598488359	7.89022907813588	8.50096489670698	8.25811042495123	7.98930169164443	7.97365229016873	8.10546627896417	8.46023714133671	8.05551782009797	7.9919613616468	8.08825278450003	8.17586350047517	8.49198695826666	7.88674999814959	8.29144540628449	8.24586410402798	8.14748847260287	8.04516568625755
+"INPP1"	9.81511277443787	10.066153001193	9.83583450172921	9.71014882939382	9.57681524242895	9.88287287958145	9.06099253208786	9.36457981513989	9.46002953831172	9.55260262813821	10.0866688022443	9.57040532767478	9.87173141698342	9.55890455354936	9.60298366667222	10.6066083491622	9.57036664426719	10.6781776752145	10.4531373234914	9.45230287221819	9.66025859089431
+"INPP4A"	6.36017278949439	6.54615351713185	6.65567225471352	6.67764728940512	7.93060853444661	6.06132724097613	6.12395389360785	6.88794787751089	7.34751736909214	7.81402825397843	6.75722464813955	7.79646054956889	6.42164580342784	6.22149793573573	6.47303287515474	6.76826527863109	7.44494294913642	7.0995215386549	7.04130996164999	7.71422143899888	7.82495442602869
+"INPP4B"	5.4826488921975	4.71261590220695	4.65915049192384	4.89614825019373	4.65748404937458	4.65915049192384	4.25964472169835	4.80693722015369	5.07579034349803	3.94487331874782	4.90858557345292	3.58958819610669	5.02271372716409	4.65735917383471	5.36039841540931	4.48755367209446	4.12418225336384	4.80065665841091	4.29702995853981	4.43382919374496	3.95222462041973
+"INPP5A"	7.36628812057213	7.05224635229932	6.66557842586402	7.34931582808513	7.88503526536141	6.68336658641177	7.39926645367347	7.39146939308486	7.28680060517705	7.91714422998722	7.05373487588071	7.97801007481162	6.81304553430245	6.7622264593034	6.63631523026271	7.6895902776375	7.61435655018335	7.61126380723929	7.14544865350116	8.16778985752523	8.0827261890552
+"INPP5B"	6.63140120758778	6.58067265640736	6.17388351644803	6.57116326099089	6.40838062104315	6.34652967366424	6.32763357242018	6.45616227933497	6.44029450092305	6.30678401779345	6.51436541635452	6.32627876226057	6.10452832762128	6.0088375330385	5.92524662800358	7.15354857751143	6.47915737642331	6.74025051151587	6.67116194390168	6.55847418822076	5.95914990438668
+"INPP5E"	8.73318219549785	8.73224751078367	8.77131254497034	8.95038421291827	8.63871937177854	9.04243400632848	8.89490506048256	8.48741745845182	9.05186895913054	8.74196419721799	8.64156764306036	8.43010245833632	8.85245757334686	8.97095492720644	8.8313320485805	8.61443169990678	8.60827064597277	8.71000746617602	8.73318219549785	8.66306826824235	8.7143973878211
+"INPP5F"	9.93253973054701	10.7749097275589	11.2749066068363	11.0111223095069	11.3012445790171	10.7142764328743	9.64820728067971	10.92693584252	11.1184077533657	11.288766172436	10.4468352644163	11.2936471265007	11.1193154029864	10.4399273485444	11.1231775591169	10.4423984000591	11.2799895476132	10.7694730363008	10.976007165062	11.1465422636523	11.2731019766893
+"INPP5J"	7.32817727985461	7.34228315768278	7.65317920518533	7.41302394999799	7.72237605542664	8.25811819935245	7.77958568036643	7.35835780048493	7.6578396172291	7.82021731874664	7.2383835633069	7.63493224036819	7.86698202864123	7.95644584617133	7.51298972221065	7.26282348057845	7.64042012887696	7.48503445665522	7.07761632769438	7.83863294759624	7.64440915480998
+"INPP5K"	7.68551653408761	7.49197373177186	7.36806595953714	7.55792497871709	7.62317499833688	7.78265623427285	8.10934742283791	7.41403247837391	7.51414507928346	7.77658707753056	7.45204643358829	7.42923824907376	7.53084241308666	7.99321564049222	7.37564222446416	7.46609050685553	7.51156161397597	7.49412552552778	7.53595923479421	7.62349366415312	7.49321590627801
+"INPPL1"	9.09322144195155	8.18092737351263	8.26927379000156	8.27659601732688	8.0613221273651	8.93488900349903	9.08228306935604	8.56439063380959	8.52037263449592	8.3015757717566	8.3883604589592	8.18691584912933	8.41086504696018	8.64991023842316	8.45300056205693	7.89543201754539	8.33733110730038	8.07563108049282	8.3151464875245	8.27804954106079	8.0586226633536
+"INS"	4.60631650625714	4.60912801640147	4.61469689004799	4.78835573840182	4.55164079650357	4.98209972432795	5.32405250930453	4.63397489891891	4.72607833671991	4.86980619136822	4.58348041244585	4.5624295801061	4.92576782359458	4.80641552506656	4.8348582862588	4.29142042928228	4.70944050300205	4.33704658961698	5.04261828337363	4.8892772115812	4.77317045947372
+"INSC"	4.29749766721859	4.34815942019608	4.2653749484506	4.40648846501789	4.38602066788584	4.65165702871438	4.77552837153236	4.34706803700598	4.40648846501789	4.34057268666813	4.22117708803887	4.49069412460043	4.48208518127603	4.5945427976802	4.43163376588029	4.27511215658092	4.42326585880385	4.40648846501789	4.50643129871752	4.52976977674251	4.21118458887219
+"INSIG1"	7.91141761844022	9.02159188426011	8.64158959460947	8.24482356152495	9.1797325757655	9.84725389667451	7.51049081475927	9.31115246001577	7.46493599564205	8.95810055582827	9.29458400525046	9.19163383683113	8.01232896122417	7.80155546232136	8.09939275002486	9.41012014891355	8.7708195845311	9.94869694746464	8.57641203521544	8.69097465623121	8.67504531851904
+"INSIG1-DT"	6.57376596972919	6.91356517341396	6.69159439991753	6.58520564609544	7.15367432031124	7.92398888719694	6.86668347907683	6.6619637749777	6.46466308315274	6.39322949324534	6.78862912105971	7.04341973417167	6.42050389619189	7.04502973440287	6.75395055088655	7.38360250434851	6.88528476882978	7.49113861154599	6.67588724183228	6.63102817670592	6.33758359954793
+"INSIG2"	7.52323047005172	7.74764105586861	8.10242388957277	7.85429032022651	8.22200502809433	7.1716290532558	7.16633878235785	7.70470478399375	8.2663672754172	8.17634715024767	7.62745330036217	7.96422989675021	7.65103136518573	7.17340683152853	7.84934857525565	8.08836542385094	7.91235572959171	8.16124235263747	7.71883079359716	8.29622816235442	8.17795313129376
+"INSL3"	4.03492556991642	3.96105859874114	4.32351478355936	4.3239123935227	4.13187252654052	4.77181635956114	4.57202777045864	4.20813863879393	4.59707921887427	4.67481636746267	4.2493817728559	4.76012088162383	4.82453799200197	4.59438176340503	4.4975462791775	4.12928594173725	4.62247532750594	4.22998440343847	4.41717833123853	4.34003998703303	4.99122580702806
+"INSL4"	4.93779438031075	4.91981782974653	4.82919648996154	5.1447384860143	4.97746631402467	5.00843570666182	5.12746650795198	4.72791704129351	5.10504949851227	5.15692084831964	4.87178155670733	4.94742361195915	5.02024315763953	5.18977785614927	4.89325303744317	4.98079171853363	4.88840232726932	4.91062496433608	4.8728863819811	4.84778089784375	5.0002214207381
+"INSL5"	3.87880401294298	4.07301644584656	3.98612538918748	4.14906732240692	4.16520548115045	4.29404158220182	4.08833843576488	4.24337356995495	4.16089863856463	4.21751920861409	3.98197137187168	4.24455855300395	4.32718480469791	4.54038047550167	4.18107900841536	3.99103308430671	4.12296115165996	4.08022174867621	4.16089863856463	4.11813011114354	4.03118398015458
+"INSL6"	4.06864629470826	4.3587058449462	4.05473763002037	4.24346900316512	4.1330347868321	4.54495412482809	4.19836752350473	4.0852560177936	4.51120141042195	4.20291384464216	4.25090977151941	4.2330209192495	4.11072732436404	4.35423908645091	4.09811933560986	4.20291384464216	4.08371433266195	4.09760841099576	4.32873351176695	4.32007408109868	4.28659088369814
+"INSM1"	5.45550403770913	6.6010726554983	7.04943414948373	6.99469201665118	6.72751412522306	5.93393990586008	5.55635781271084	5.80930799199819	6.67479678699929	5.75121362819449	6.5503097711152	6.09903554553238	6.73933992713132	5.74455806851269	6.41234821430684	6.93433781562956	6.11565855812874	7.15927902166083	6.09285467578081	6.56143254999943	6.03709204559259
+"INSM2"	6.48329138442566	6.91802469567414	7.88002177960537	6.8391114815282	7.4908160283415	7.23363213599836	7.24494695597361	7.17748900925953	6.98883412586934	6.88833201981912	6.52827946358516	7.19411353327294	7.16890068757991	7.10462897135096	6.98883412586934	6.60009879320396	6.96771589687644	6.74771516368527	6.91836831227235	6.98883412586934	7.08550581634435
+"INSR"	5.54653986636081	5.76527319869927	5.65461909627242	5.81559383037049	5.99629861073261	5.91693347574854	5.95317607466384	6.56947257535978	5.94465158153817	6.08350374483132	6.62868967982619	5.9416945527647	6.98909189626335	6.18412362706176	5.61924871670844	5.70131725757565	6.08188644534907	7.14623721572663	6.16866184838741	6.4170016716125	6.59356127506991
+"INSRR"	5.43921022155019	5.44582018691106	5.73623417813725	5.72431138520103	5.52430409309421	5.62599865236587	5.86008240646756	5.52063282821104	5.71313248420723	5.91633317647707	5.64153126581991	5.7605167520808	6.05515032867393	5.76270416797814	5.72431138520103	5.5752812191455	5.8564028317602	5.29713496441883	5.67173690591296	5.93888726269283	5.6163679577167
+"INSYN1"	6.97005149743031	6.90325877406334	7.49839970306138	7.43229724771277	7.2642654522354	7.44129145842027	7.98628318609856	6.97615825063156	8.05624982256944	7.52532424356415	6.54405860387812	7.35605837645446	7.92854920073497	7.7536219436924	7.88954941023294	6.66807985140926	7.51912267076672	6.64239634341161	7.62708574015534	8.06016583815043	7.43830316573902
+"INSYN1-AS1"	5.51099857116786	5.46760147694732	5.92070240459883	5.63433299550986	5.27456999917099	5.92488658470586	6.53063410618486	5.35480281441599	5.94347749257532	5.7593586018082	5.48551108620319	5.50816853495466	5.75477614676395	5.94542696175098	5.67423814472203	5.3178216457289	5.47682868931642	5.53244255531443	6.0245526540235	5.60604308126259	5.61975703399261
+"INSYN2A"	2.91823005930518	2.89334938526495	3.00959318115518	2.89334938526495	2.98271876867629	2.93456109198089	2.97370798496057	2.91211517255089	2.87220655445859	2.70602590642544	2.91211517255089	2.79163527405291	2.85554485469338	2.89334938526495	2.89334938526495	2.80948722269431	2.83284027097926	2.75612833627361	2.85338461980383	2.89334938526495	2.7149674623037
+"INSYN2B"	5.29571532539496	5.73092639684023	4.74684172047359	5.1529113917543	5.8692499132607	5.34245899821961	4.80386937930263	4.94547501828071	5.55233447902366	4.95512368658919	5.64710005890146	5.39845101266177	5.11402829926545	5.28488167039219	5.57567952294663	6.70719032968338	5.4354313702213	6.37086531699556	5.29571532539496	5.19719599402653	5.10320442125121
+"INTS1"	8.38560625539384	8.16658887443089	8.50554240546241	7.85757785325183	8.17067893041773	8.40235213427834	8.04869383646836	7.9768466317052	8.04299174804407	8.07323963617251	8.37652031388357	8.24696830409819	8.0684273021924	8.20817482059599	7.63286659808861	8.22873508384975	8.31873183077351	8.28521134183442	7.77794734225234	8.46726501590911	8.30818587342712
+"INTS10"	3.39365627570735	3.57439835494525	3.66838617116164	3.41706204622383	3.3728812972431	3.42096344639207	3.57439835494525	4.01615771219074	2.97234939881664	3.57439835494525	4.08193599403084	3.62867870994712	3.58726917628995	3.48881285810176	3.46991678405436	3.57439835494525	3.99346800516401	3.57439835494525	3.66345594961001	3.65973405743423	3.57439835494525
+"INTS11"	5.16018276657287	5.2325372520944	5.82315530387725	5.24015361573614	5.50561916276001	5.8077869185659	5.38798904364587	5.06048583483133	5.36746228072905	5.44974932631834	5.18376902227794	5.19574319053338	5.41264265277134	5.30414423973762	5.5148821251831	4.95866570887072	5.32996414625343	5.57018988220241	5.4013910782552	5.52108772480513	5.3235628245429
+"INTS12"	8.37577887999403	7.86065303471921	7.79853687897404	7.94397086258322	7.94340916302179	7.77980456372016	8.06916507346377	8.33541767365296	8.02367772130671	8.07819443579826	8.08506260117755	7.79349732400072	7.81240744995477	7.68809461994952	7.90505144889544	8.21867907383313	7.73965475039624	8.21448645718075	8.07108700644875	8.03157177034556	7.78061269992244
+"INTS13"	7.69113376407759	7.77029858928027	7.26970425663461	7.55348856910861	7.35518999567697	6.68182626271477	7.17383568564187	7.52221555806031	7.57798900844903	7.0376794812935	8.14243549445138	6.98384845450412	7.40886139401076	7.18198898664081	7.74379041181392	8.35325349252335	7.25087806645094	8.31345308092771	7.47230535142241	7.21531089797172	7.47787416718352
+"INTS14"	8.03263931275006	7.81199845524622	7.75351096454287	7.52205937290521	7.80874070058422	7.60606412908817	7.78735206841001	7.52836235852176	7.55758416456741	7.69136824022491	7.65844320133956	7.41151223650319	7.3144554322239	7.65705681919498	7.32455708986376	7.97729487301447	7.49520707330741	8.04829991861633	7.57115717761371	7.73062269951049	7.65705681919498
+"INTS15"	8.18490566598244	7.91662708233047	8.26653884268111	7.78856305058274	8.26384442027455	8.51797460483094	8.16129591772597	7.81391811824495	7.88774666429945	8.0255265992945	8.19150071649554	7.94243009885871	7.75108616699433	8.03579431213045	7.77205720941323	8.41252783947607	7.92679362787983	8.69259192004818	7.83147459212791	8.18194261159667	8.05006819244037
+"INTS2"	6.2695824894001	5.98737603366594	6.46955899363344	5.87793880483744	6.16434051166014	5.88512986921674	5.73764125934718	6.13448720816621	6.18258237590998	5.61289488468323	6.07865967884481	5.84422836538071	5.57962449802989	5.90820562848723	5.96075535600531	6.015793967144	5.83528054963476	6.53036259315506	5.95897888462817	5.68715371390359	5.72313677596429
+"INTS4"	7.63860835517673	7.40595061755699	7.8754767827976	7.42088542802272	7.21634837188977	7.77696358448039	7.45421454008762	7.46606821178638	7.22960889290541	7.23181088143902	7.67729957421842	7.33922619257346	6.85802473766945	7.30177242797572	7.33114664468488	7.70180264704951	7.36616096411756	7.83692332175618	7.43164056558746	7.49537078253573	7.13451525429899
+"INTS5"	7.72294222541271	7.65772590689969	7.87090268326849	7.87973183436974	7.92534722720933	7.81157894480509	7.8286393718501	7.68696583890571	7.86506103347466	7.90721357558249	7.73819214822518	7.82253545663631	7.64437306705568	7.91796761108183	7.82090622250467	7.9118223326767	7.80096836851996	7.80026113003684	7.6029912046386	8.14717094958272	7.9495195370733
+"INTS6"	8.06096280518743	7.93187159800164	8.38193379442806	7.89266992254141	7.90147849266155	8.31291070378264	7.57226001531654	7.93609155506735	8.1433421637135	7.26229446474285	7.79843921636164	7.41910882970235	8.25871721849932	8.01126267267119	8.19989747221612	8.07295331280084	7.56165978182326	8.01787793230696	7.62349081305279	7.75608561793415	7.57972320414804
+"INTS6-AS1"	4.49414225363889	4.35504614259321	4.84770375135337	4.24113798108032	4.39734506308331	4.35504614259321	4.02351578502375	4.36533896579557	4.05449710991253	4.10842746892877	4.84161671311402	4.41420364206991	4.12886243065137	4.35504614259321	4.4299680870227	4.51847073664136	4.34856519688395	5.02192648492999	4.35504614259321	4.20479628536753	3.72501847329178
+"INTS6L"	6.94136761295633	7.34097917323118	7.38862548884747	6.66576122473134	7.13984958632567	6.52440452384347	6.41761028663682	7.11568973358419	6.59281242690492	6.92394585955583	6.89681512997575	7.03920259289278	6.7698216138603	6.38175328692918	6.62404923046005	7.26530359518493	7.17580644843195	7.24771326349293	6.78629584227829	7.19331001341331	6.90542100183757
+"INTS7"	6.53124183275364	6.45745026615954	6.98655358428217	6.10561314506068	6.53981900515869	6.87024633460745	6.07221191880028	5.92916177657471	6.63212987991791	6.12059484398192	6.48937147251821	6.06008964145783	6.44067483123101	6.48583228849031	6.95083244395574	6.86001881695762	6.34649450608849	7.24990986204397	6.66786810184831	6.75878060415813	6.33551095536863
+"INTS8"	8.32005999258708	8.01327227162762	8.22307839569226	8.12068283153027	8.03523995941012	8.00584554122744	8.03686134771735	8.13604595370651	8.00966294067573	7.78872843867785	7.92589383957116	7.88109869895965	8.04962258588187	8.39500259129344	8.16247222548579	7.94171235073384	7.89294828173097	7.99349357347142	8.05195426563457	8.03686134771735	7.75920203840394
+"INTS9"	7.46541536089286	7.08929153816792	7.03171000977558	6.89755485524515	7.04270036713988	7.24300548667257	7.01661492946841	7.12371162941061	6.75250352235821	6.95894651391593	7.18900757570734	6.81181508405006	6.53208055363596	6.97234506407737	6.91356249075889	7.26894958453209	6.9439075855084	7.38675827307028	6.87471802451554	7.23526129404664	6.95426747079359
+"INTU"	7.07368675246032	6.98713050202263	6.82243978220761	6.02789736666907	6.34844692464992	4.67569487082649	5.43528672069352	7.71886013343325	5.30266456260144	5.24502155882944	7.39536990259132	6.20874317416178	5.48794110969213	5.25857905007839	5.4581189308396	7.61825500412267	5.8629856857202	6.65780246206111	5.7662511083396	6.05911335515184	5.82141080668046
+"INVS"	6.93032329839732	6.59359222911837	6.09539474900267	6.50562538675028	6.59134501073108	6.63981681369342	6.29590031929838	7.00072703421038	6.43328194336589	6.34335017104122	6.72118426411276	6.16558259617532	6.11024120903338	6.62765770578239	6.46007370355989	7.16399218601135	6.4310436007024	6.96657806174066	6.50562538675028	6.41051879617301	6.21429011222419
+"IP6K1"	9.01238959443389	9.03475029488393	9.53059695303438	8.99507507113822	9.2570235094084	9.40403945932917	9.30110862388496	9.026382037238	9.30688101998908	9.26031518972201	8.76112318304817	9.16643620389085	9.15515130437462	9.16704995247032	9.14994406689399	8.80668054458389	9.27394827232261	9.07142559068922	8.81573532532664	9.3500689747172	9.09529440297618
+"IP6K2"	8.41213492381684	8.8906462628985	8.37183166075938	7.94480295153225	8.46023714133671	8.76910179542046	7.90699837092708	8.27573768061956	7.79631111952332	8.51957216451097	8.87033618448565	9.04522512408817	8.53048436123638	8.46278542011397	8.47083571843615	8.58078798554947	8.38274841339012	9.42804308714213	8.44241543843133	8.33798599912442	8.37631506275642
+"IP6K3"	7.39687200016015	7.25808797516941	6.4064621619075	7.57377114387889	7.01665477154831	8.18445762453265	7.87443178202783	7.53075017702363	6.63241700662776	7.04534108609836	7.44187697749269	7.26576168807661	7.22244112775837	7.84731942404538	7.53794588798591	8.62468728026434	7.53596836907862	9.79865445353711	7.41347820996767	5.90184847499248	6.7707840294365
+"IPCEF1"	8.79124759552055	10.0540972591232	10.4921750256733	10.149452481399	10.2037800837094	10.332845187459	9.66749672557039	9.88398653123344	10.480457853145	9.88242078442224	8.8601530330123	9.86101580752457	10.275743268475	9.93793797126918	10.4593285905364	9.25284964920965	10.3604827104104	9.55373474880863	10.2870384621656	10.2766917003896	9.93881504764482
+"IPMK"	5.2000716688903	5.16058418068025	5.58377725349444	5.52864271193021	5.5397177304765	5.38849992080505	5.85362184508874	5.37682447631082	5.35408300097446	5.25210302143133	5.4306809954554	5.33097185172402	5.64188269093886	5.62827364211423	5.60794086063125	5.18329114527267	5.1674844864675	5.48200700038257	5.53294215327753	5.18624916032284	5.18953957379442
+"IPO11"	6.19351173850039	5.47861944019587	4.61974758366795	5.33827529093661	5.53731103591558	5.12907058773636	5.26694820223405	5.51428020180318	5.36448432060891	5.55998011022885	5.47312153398574	5.1676183639644	5.29115639572597	5.04766704150972	5.47312153398574	6.15821503867427	5.59232104596595	6.15058560530466	5.27069008009704	5.32941358307093	5.80674806039798
+"IPO13"	8.87931023987538	9.11743519269983	9.15413492258973	8.87985918440739	8.88399756861065	9.52780089261977	9.1890748361004	8.68298558219904	8.59242959585736	8.75459232261469	9.30921955352096	8.78649618727525	8.69963002882898	9.03211246532562	8.78247100000507	9.57408703444816	8.71726486523322	9.53012515650859	8.71377953635901	8.73144735822193	8.8032488633033
+"IPO5"	7.16185335343875	7.69503578676834	8.19265238384958	7.63172016082443	7.7393564249627	7.07905588951975	6.94741402833063	7.56991293002266	7.94041679723675	7.70974704767028	7.30628232778795	7.87060462143685	7.43720341570054	6.90625752897251	7.8977269657847	7.49495211114579	7.70458040902543	7.97345296768772	7.95510100745524	7.84993060015013	7.72380491826174
+"IPO5P1"	6.95684308696563	6.72247490086969	7.15607854100888	6.36323740367889	6.64609406366454	6.12803913624333	5.88815948028618	6.13564027408802	6.5031940775799	6.75631548420205	6.52515063137414	6.45855302236195	6.45484107198593	6.50486911363902	6.2380243456753	6.82390002428263	6.57394868997687	6.52515063137414	6.79782135433139	6.58925612976573	6.33825790288531
+"IPO7"	9.42987266454081	9.96593559389244	9.643351883548	9.88906189924399	10.0679272876513	9.34361896674634	9.20752991196857	9.96826785506569	9.83555613827308	10.0194877030799	9.90920128349301	10.0745326824758	9.5240709932692	9.0841428561627	9.99999358659437	9.66168500559754	10.0031825764126	10.0875049989451	10.0525980681828	9.87993801586713	10.0176786052726
+"IPO8"	7.11294903036086	6.74153379939431	6.35472467254113	6.7344945091737	6.64555886570362	6.53412948626397	7.311141685144	6.88794787751089	6.80013469895159	6.7800998899865	6.9103086226957	6.76218939293249	6.59219254372013	6.7856334578932	6.64103251448072	6.59515525877992	6.90696518834126	6.75019773055042	6.96127436749152	6.83182787687698	6.75755893093078
+"IPO9"	4.96146145354941	4.81422515256665	4.78672948028106	5.11052815276599	4.86760831858955	4.39303294459538	4.7792192915318	4.83326557584877	5.35015932122507	5.2701090472296	5.04250779114953	5.00878674537867	5.19131782754458	4.81587565513673	5.18245550463366	4.6975189689343	4.85193807426128	4.84686750394033	5.02628105238779	4.74537157732839	5.24209362033959
+"IPP"	7.21925614586377	6.79319273415968	5.43402675965944	6.4280670373589	6.22913450538881	5.27428642912524	6.53866367800382	6.77061144526178	6.52295504375292	6.7620737569649	7.25204742771898	6.5214151279608	5.5972407688109	6.22655256746309	5.50396165425602	7.32382446843646	6.32918722181139	6.78086357551018	6.99073736954144	6.84215851742793	6.33482989439424
+"IPPK"	6.28171837019603	6.37514771516368	6.26703073835618	6.69788000210891	6.47279295782164	6.53241534577636	6.65258990747389	6.58066529921289	6.7226461520622	6.56434527652529	6.41513173358656	6.47906061730461	6.7619490955557	6.75817135003433	6.77098799652907	6.51316638519897	6.51721749614013	6.16961672701075	6.51142315643979	6.43201669077108	6.3746170713485
+"IQCA1"	5.23682998351899	4.61095485961079	5.32692006831047	5.80175241004306	5.38795037496919	3.78485873972048	4.78393418249651	4.77943918662546	4.41578610986818	4.24754208219661	5.26945278778639	5.07493729145926	4.48938593191967	3.6383699602418	4.23107754608189	5.12548472465605	4.86095929685066	4.62510796035625	4.52040433804346	5.46310464933471	4.16910210131818
+"IQCB1"	7.49910013071977	7.57067805020955	7.51724885974248	6.98667915220817	7.63730803845317	7.46304285940745	7.0373037530005	7.61371735346424	7.1787370590197	7.67213180399088	7.71053319679913	7.42236718417754	7.26282348057845	7.18988499670526	7.54276780486686	7.77580395433922	7.69419317899003	7.58099438123187	7.58448442791555	7.71223303858193	7.2442145450882
+"IQCC"	6.78501997119507	6.8933272236791	7.14544865350116	7.1638378390866	6.86477067263721	7.45659715055548	7.74425214169537	6.92999841534907	7.12744328580485	7.38395187188916	6.98766482488567	7.23493403283105	7.3135996428745	7.5035937932324	7.14053051502817	6.84735774073151	7.07660461775466	6.84381883104335	7.5141559063655	7.11104716603614	6.96076406390123
+"IQCD"	5.84461547779252	5.45992581189349	5.65812200597299	5.72471753331693	5.40882987825029	5.39363546606776	5.89971692595024	5.60436013392027	5.54812626283731	5.59365333230531	5.8735536283215	5.65812200597299	5.71267382577087	5.6115945446801	5.91423351962887	5.51493144189227	5.58939378239688	5.44380438669183	6.04807692454136	5.56371848817011	5.54026382618413
+"IQCE"	8.42622498506914	7.81229298073576	8.41234174377099	8.25090534368309	8.04104070675799	7.61180025446213	8.13384568784193	7.73503389262089	8.38186861131114	7.8969596600859	7.60614221079972	7.68012472337885	8.26313625892305	8.29746068020607	8.05938217737971	7.43260929294751	8.10862205899154	7.80648533342214	7.93927423959378	8.06188936049258	8.16448938075692
+"IQCF1"	5.75380352525277	5.93907809002888	5.98177386411929	6.08558399025579	5.87386433019556	5.94648181085593	6.35822420944743	5.93360360895743	6.09195289574445	6.02654101936825	5.95893619375321	5.94458214622052	6.30185385136837	6.11782630097338	6.055740216204	6.14546047101065	6.25453786079907	5.9721574541798	6.22392397786438	5.90396047055842	5.97489456334449
+"IQCF2"	4.86405176371403	4.77443215241328	4.89580820667755	4.80419531992814	4.78682339303524	5.15421464215208	5.26265897708434	4.74404669386664	4.96725817017317	4.70839189657851	4.74240486636686	4.79446744362748	5.01424622421961	5.05544609707159	4.66498102596997	4.86356162915467	4.70332055882707	4.64295408761773	4.83637565235308	4.45804240039044	4.80419531992814
+"IQCF4P"	3.27605695764013	3.27605695764013	3.53639134405626	3.32988889189446	3.14194965593433	3.41222410027302	3.24548143458748	3.33706617220148	3.22379418171196	3.0768461069553	3.08579681683402	3.27045727486794	3.42470318673266	3.25069138938783	3.18157804972825	3.23207725353464	3.27605695764013	3.33700713440897	3.32955545345339	3.3523914848557	3.27605695764013
+"IQCF5"	4.12278594153344	4.35198362302551	4.38740053092119	4.72242231379877	4.46166034850697	5.14490298180256	5.52302927522725	4.39805322892972	4.58792013968077	4.2493817728559	4.11383091275192	4.2330209192495	4.75058615903524	5.15230022763852	4.53759303890177	4.32320543296944	4.44513905779915	3.98835058253047	4.45048789978402	4.38640066413604	4.4185987050234
+"IQCF5-AS1"	4.57512919121534	4.65994619313076	4.47035426511667	4.79500809678121	4.841737698342	4.49267258017868	4.54751080496412	4.52995852415378	4.57512919121534	4.57512919121534	4.49754309459168	4.66855033204481	4.61230698842661	4.79466514504831	4.59007431463633	4.8017330009106	4.38868458282386	4.15792288405172	4.51670184066049	4.57175495269086	4.91702082617039
+"IQCF6"	4.2068245584573	4.38686605516205	4.66309177277099	4.61568621656044	4.24415645896321	4.7899035404879	4.72083029964895	4.58369592783993	4.81973853161039	4.75431925255356	4.44702188658089	4.67388812358572	4.91374431324292	4.78951388420563	4.46589808454384	4.34057268666813	4.87831884796525	4.45702777098977	4.79482857603789	4.38567592680421	4.90193189269321
+"IQCG"	7.6255795928465	7.02298381476889	6.90363067485647	6.9473241584187	6.91099820558269	6.22458984901025	6.62286141101329	6.82650865825429	7.01289738706352	7.27307554569634	7.33693301742795	7.40309694634967	6.72838496820786	6.82604105171759	6.84318156172253	7.14971310454068	7.00702910663615	7.13618705574119	6.9596530560326	7.22318809434931	7.23880560105418
+"IQCH"	4.51432188156265	4.47417197006695	4.40827564418163	4.60184651723876	4.71150456175122	5.1826084654093	5.19091242478933	4.32404384497622	4.51432188156265	4.51432188156265	4.39765433278922	4.47417197006695	4.58743785586741	4.70112211556535	4.31529335283963	4.59394042874573	4.45096611707619	4.29032625111994	4.76235382538386	4.49963802039097	4.31760326290177
+"IQCH-AS1"	6.11633044401615	6.19603347985597	6.25238699085254	6.05330344869793	6.35878907369442	6.23444892493511	6.20641553476726	5.94820125687767	6.12003997397899	5.9841263243859	6.10770753087399	5.68386064962048	5.8738810164072	6.22112069761177	6.14031727660061	6.2712294083166	6.08722334008172	6.15475307638937	6.00094224586258	6.16178313662846	5.74172224155215
+"IQCJ-SCHIP1-AS1"	5.63359047548985	5.70881492160149	5.66527197731348	5.79584389625673	5.67526318345451	5.76847049083888	6.16625421708886	5.75841742633684	5.5416937103325	5.90559752115243	5.2959536581184	5.56965570977179	6.15693152643701	6.19320702846887	5.95434771098429	5.41579311396942	5.66338424772712	5.54310838518978	6.03204705241698	5.28497272310772	5.70881492160149
+"IQCK"	9.98456217353446	9.2359148922033	8.75474889444848	8.95861951300142	8.73803834770309	8.35836614928826	8.64440956447038	9.19992100305756	8.88429689226671	8.50495665227629	9.61337710152469	8.37353102350888	8.58205853576098	8.60187951189121	8.63888484513773	9.06917845227323	8.47228807047668	9.37238873654483	9.12112774879826	8.57426012185635	8.23651452939839
+"IQCM"	3.38265878790682	3.40226796420328	3.42642072132609	3.47115147475991	3.57556801653009	3.37088758559145	3.61808950765901	3.68383264499864	3.39430440378858	3.43217112172232	3.39545151658558	3.34342045313166	3.60976786099854	3.70110637582853	3.59401013477476	3.29279434246341	3.62450551774544	3.47115147475991	3.59921144787178	3.39914383482692	3.43888613103457
+"IQCN"	5.16061971715648	4.77711302242465	5.52927252779947	5.12808263346745	4.66784483447504	5.21062520747156	5.1716869876303	4.89109259702752	4.88718307467973	4.96172695263831	5.53757929888711	4.89109259702752	5.19828192657328	5.0137124319149	5.11602649474931	5.02903013746221	5.0397262961651	4.74645236022201	4.765479278572	4.802516651463	5.25741504506603
+"IQGAP1"	9.51597197338914	8.42876175900566	8.33882563473292	8.13359413243728	8.27304702033339	9.69125147209508	8.53178356213239	8.75546571817121	8.17195480130961	8.15965588906839	8.75361351597984	8.13176184879454	8.84907931784837	9.10863432987485	8.67463424087228	9.04277000383055	8.46509309922631	9.48514376550218	8.47971601083718	8.26582535874877	8.3345090331121
+"IQGAP2"	3.8413330372518	3.87685551246938	4.11831604863232	3.79037850580605	3.88509171534632	4.12934202022968	3.90527208519706	3.92315132207515	3.69564884124618	3.99044717020969	3.64929771130111	3.87520793890676	3.60656040785684	3.90527208519706	3.98851699735355	3.54873702100878	3.85844244825362	3.60729171206466	4.1258610522295	4.37253480609131	3.82890662479208
+"IQSEC1"	9.65680541392169	9.71611343953841	9.75282518739666	9.61625374982271	9.97089320875494	9.73694383150077	9.23159712678696	9.56621167882054	9.89931723061311	10.0199301132204	9.43583180243813	9.93324762033528	9.73129451694219	9.42520017980256	9.72820171212295	9.54249100244522	10.1771008287004	9.70486997158795	9.60792690466366	10.2365348441215	10.3302301674837
+"IQSEC2"	7.64699801007587	7.84777580914257	8.03149685059419	7.94040259029103	7.96290773038192	8.28135463132467	8.1364511555803	7.87403540392528	8.02038681022699	7.8858497645131	7.538022892497	7.78192016405687	8.09620656051893	8.12465806044658	7.89079920184371	7.101150515099	7.96333425028232	7.40154125932673	7.7701097918572	7.8858497645131	7.82210973318642
+"IQSEC3"	8.17081980689065	8.82606216408477	8.91958889443258	8.65684751947554	8.90366178546988	8.99162112628203	8.68117622828274	8.47931088136188	8.82102169669216	9.05729182131343	8.26119355065227	8.79877229102768	9.01114749470886	8.94880223360614	8.59667457054112	7.8959576587259	8.99725974923721	8.27299232645817	8.67924094341134	8.77223956435211	9.13027640458338
+"IQUB"	4.77739400265556	4.71721641242413	4.63647267793324	4.68478189631691	4.68090610038749	4.55543109838728	4.28055525528277	4.80639322558899	4.72493038121878	4.73218315444988	4.65572255705948	4.84738400008392	4.33242577728328	4.63206273393266	4.68090610038749	4.71699699068675	4.82551876264782	4.33006520396235	4.58015630139898	4.53956370412981	4.7096388695463
+"IRAG1"	9.29055220860087	8.37155572237293	7.64252570171878	8.83140202441908	7.58378068492693	6.47095331184433	9.73060182482085	9.89236973645172	8.20925649820374	8.15998451043734	8.83049686345847	8.93054331428927	8.14284575866434	7.60104022925807	8.18608556686651	6.76826527863109	7.52312913033407	7.32014040111347	9.23463869714796	8.72856173475001	8.21481137228388
+"IRAG1-AS1"	7.01527573634035	7.00312592234969	6.71236548598638	6.9632021566058	6.95418356528442	6.93249793007217	6.97349635701136	6.79974629653748	7.08993278966885	6.97527289680034	6.48654419898869	6.86514611500985	7.01987832184963	6.82826976017013	6.95765622852903	6.97679799557096	6.93536694054265	6.63249553841062	7.01888684476522	6.91370898750282	6.90924646146829
+"IRAG2"	6.18250346489445	6.71376967101127	6.42513768967134	6.12560321737733	6.71352874637944	6.03067587445997	5.60486288456652	6.3871318420355	5.91904557302938	6.31292715857051	5.71069197610849	6.4173880728863	5.86886708290129	5.6775436114489	6.02643678969891	5.9765423405393	6.20920371400488	6.24993534645758	6.19709344802837	6.38301899721948	6.36449081687025
+"IRAK1"	9.40492170752231	8.32434934650268	8.58254644952435	8.46847390920075	8.71758752650906	8.87821955888237	8.93427054486125	8.50327535525468	9.09937086933516	8.653727660453	8.50616801248945	8.160912692208	8.78594081223866	8.82348939363069	8.99737383309962	8.24359060459811	8.32104790494361	8.21919813125666	8.50441769201542	8.93536354718763	8.64418537883005
+"IRAK1BP1"	4.08121614046683	4.31825298559143	4.47120198801417	3.90804532688381	4.10362298668423	3.6018602208517	3.61899520660292	4.12705095754385	4.6840478295954	4.45503733336714	4.3857290664005	4.28072699319052	3.68874991958257	3.76559188053064	4.53654666723772	4.06978150278133	4.05379415758657	4.34921545494278	4.25849802348284	4.36379630685897	4.02913019062411
+"IRAK2"	6.98019469496634	6.98803265804787	6.95637784053034	6.87738116251867	6.99728206488927	7.39687717195091	6.94876196982683	7.0669294295271	6.84570310155155	6.4228161787137	7.08603875846772	6.65310761272123	7.26684699753428	6.84959164692204	7.44417815933084	7.46064594760014	6.79952023715615	8.04344280875853	6.89565036822235	6.77015475387019	6.98606016651806
+"IRAK3"	5.70212098950089	3.3230251732398	3.43860712712092	3.79955296308019	3.30836677292992	5.38147100006487	4.85535945658559	4.48076591234851	4.18684347357902	3.63204219866958	3.26978872974973	4.03463602342837	4.51466401580149	5.52836995314662	3.66456727138261	3.29800995436189	4.63999895747165	4.28541765298867	4.06370271250641	3.89782278511301	3.70514739897808
+"IRAK4"	5.85626426125932	5.14935139256547	5.05519799376454	5.24112493769166	4.99113359417607	5.25255474757163	5.28570426358416	5.10519380921712	5.12417263972824	5.3252603479945	5.34458062085052	5.21357321225467	5.32969823927228	5.2590523028972	5.19123533503152	5.40253303130208	5.25255474757163	5.36683123723525	5.44369323987607	5.12336919173591	5.02613839062935
+"IREB2"	7.22852006594901	7.36800382584473	7.34286981828776	7.43772647784977	7.8791830856771	6.70333078996182	6.43993349488658	7.24198507606016	7.5623956440397	7.74407513027564	7.75342330151553	7.55251827327071	7.2756765076568	6.85663809157069	7.32455708986376	7.60333593266315	7.5907421641413	7.87661818286752	7.56947839416657	7.30758806832159	7.75429327241104
+"IRF1"	6.95474758460782	6.5852998950475	6.20169177764728	6.51555887111104	6.23902698213987	6.63981681369342	6.67101763603549	7.97840497345567	6.35412668225101	6.0742163394371	6.37785254751238	6.23263429031766	6.80613057610902	6.36876935871214	6.42490967279631	6.37785254751238	6.44445379118302	6.44698808816002	6.12045960673369	6.43756395449291	6.72785249978438
+"IRF1-AS1"	7.8909584238275	7.74136691714091	7.81529642983723	7.50331534166111	7.50119441579798	7.84210352346018	7.82278549861956	7.64546369111556	7.49061854998238	7.01714163905033	7.585319929807	7.17829663415643	7.44838564065503	7.94526310276134	7.52340874279557	7.69113393951402	7.2691890201418	7.63098243729839	7.32969104577475	7.09341764283264	7.47230240324275
+"IRF2"	8.28864184795757	7.9073006259415	7.54626932894571	7.86934810994718	7.5906856315815	7.512286954011	7.93194726464707	7.98547019073604	7.47954885818876	7.45341224859625	8.25246946361143	7.33946098996052	7.79999383631486	7.63177954537274	7.47103208207682	8.06288883305613	7.70787920876612	8.21919813125666	7.64330159837275	7.6961385797589	7.45242922082923
+"IRF2-DT"	6.94257241754489	6.69754669661114	6.43394118650719	6.1528532188808	6.5616799708406	6.59361593165903	6.45424974450716	6.03141862555318	6.25693238067534	6.48245403463859	6.89816718653875	6.18498052199584	6.07795656168283	6.43394118650719	6.10131070907844	7.60672561174129	6.04462879909585	6.84758179593204	6.34940139518953	6.46964488619953	6.28255302285923
+"IRF2BP1"	8.49340624842725	8.51290567970891	8.80846029711509	8.87052230085428	8.67768333553573	9.05391414786949	9.00073411397181	8.51609930110447	8.71883919059661	8.81636084562604	8.52526508619244	8.92619612926079	8.94197380454057	8.85723505686488	8.57445485124654	8.49474560097791	8.74189244147317	8.67768333553573	8.69461875138608	8.6584390466517	8.67768333553573
+"IRF2BP2"	10.3205965847103	10.468217289971	10.0641983270546	10.9948214417044	10.0322015321398	9.49987736112891	10.6417101917938	10.5746007272641	10.5237319746792	10.0731934033086	11.0841043005175	10.1715281892164	11.0781346382343	10.321216123859	10.9992349554342	10.9467624037574	10.6635498347289	10.4041893857281	10.6570167272541	9.74334406467468	9.82209281620842
+"IRF2BPL"	10.5076583657983	10.3458344082587	10.8637050578854	10.5487819375068	10.6625890547557	10.7373194508558	10.3248169250565	10.8155908428778	10.7764013494291	10.2525600389118	10.3668480046815	10.3840939599887	10.8871301469163	10.4338556103172	10.7767345991681	10.066950711861	10.5655008201075	10.3193509358776	10.2692851156603	10.2596618400869	10.4787449665537
+"IRF3"	8.71162759626491	7.88025670775464	8.16067100322074	8.15267801808648	8.1392722383127	8.59400904745608	8.45275498374124	8.25522716939433	8.26748495049288	8.53845196887531	8.15734845467258	8.13362656993267	8.12409143140175	8.30551226341509	8.14363463513788	8.3374752243949	8.08243507894148	8.37602213038062	8.33762658212352	8.46571014566787	8.22862217392383
+"IRF4"	4.64147355813272	4.98122736272951	5.19199313821935	5.16248408413301	4.89953585294887	5.11626336299183	5.06919958352189	4.80808620237455	4.86453448445838	4.860209526283	4.78418557866656	4.87024725730369	5.17531102246592	5.35453575428941	4.77506848898188	4.95910085361989	5.08093241907551	4.63183585955775	5.10051058648655	5.01394914189922	5.05052897060654
+"IRF5"	7.27302878094404	7.25919931831988	6.46634671702826	6.7781077025809	6.93063311427077	6.44237127157941	7.31232502261822	6.59537964204605	6.16541073902128	6.65667624047485	6.12130127411706	6.53470827573792	6.49827075946432	6.8989575976118	5.89323281433754	6.75966035808141	6.18619783200992	6.20525611664193	6.14486389128043	5.89256031932008	6.88958471970018
+"IRF6"	6.59330126998147	7.05998994970315	6.60444056284971	6.99234946723004	7.06534651034371	6.90237709266814	6.72963126427085	6.93224540156683	7.25463440344681	6.87743211362585	6.6441417914039	6.98621058254586	6.80313380468457	7.25537941769828	6.80785145012167	6.88465118523266	7.17130072468907	6.34753428296091	6.94816053035147	7.02247316630515	7.01010692117089
+"IRF8"	8.22004607416905	7.4567863029571	7.02098721848212	7.52547548499833	7.5092378921749	6.16592323473563	7.7106845871478	7.07311031584311	8.02196823443548	7.21512969566919	7.41525016395089	5.87912573928753	7.57999054424517	7.59436249280411	7.71658642039367	7.58232041131156	6.78894387891304	7.70728318612851	6.89806795181377	7.8797258285143	7.90829660389047
+"IRGC"	5.2272095405193	5.26265897708434	5.32707454725736	5.52650405068284	5.57804155831207	5.35398491762299	5.52556961474661	5.48979500744995	5.20720542896308	5.70909119230739	5.36297912706025	5.38977452373029	5.43876625805845	5.49421456441026	5.3286370722135	5.42258115681006	5.57752746052647	5.46706794525945	5.40376130715097	5.40376130715097	5.44268931069196
+"IRGM"	3.30627270553787	3.08069547988856	3.18508372793233	3.03843746818053	3.13020385009724	3.1959209991824	3.28157720998677	3.21298117002204	3.22239822537178	3.30819552096117	3.14007705543231	3.25933606355178	3.30728747914984	3.15132839120907	3.28863082209939	3.16229088689522	3.21298117002204	3.15673786365908	3.27214574853759	3.20688748446739	3.15132839120907
+"IRGQ"	4.9245198395444	5.22100229478309	5.13048009816474	5.34326195503137	5.16875477716858	5.10697425551703	5.47992196248421	4.98056253049327	4.90424382288129	5.95177927841564	4.91286204857129	5.31562873084816	5.46651582407048	5.47675890540794	4.63846719538539	5.3620169066698	5.31625237220682	5.22497103138093	4.89428220443243	5.58221950021848	5.92991611033216
+"IRS1"	4.30923821664179	4.52229619444718	4.62251259191856	4.71701307243922	4.59390070317527	4.86121897531637	4.49502253109775	4.77817155731791	5.13995330362206	4.71701307243922	4.54045117177667	4.51494989109173	5.07287536118974	4.70956854543764	5.45723392025102	3.92390023655686	4.90012464134236	4.18719064683176	4.94158553783159	4.87598852855677	4.71701307243922
+"IRS2"	10.2911042165527	9.87108924297066	9.96312362462591	10.3514936259952	9.8391384201788	10.6212478681902	10.3905222645011	10.4895212141298	10.6195905744478	10.1387647860444	9.8691557782461	10.3041994817846	10.4262267949251	10.183332753811	10.6536586633227	9.74792055367693	10.6091015929631	9.72460630440195	10.3882467086759	10.1725186592567	10.1506649017112
+"IRS4"	4.97105255209535	5.48646126863306	5.64811737442605	5.21330226985357	5.21366400647458	6.84795423378298	5.08876046884867	5.19897077479533	4.8333197459896	5.270938301465	5.67632837537289	5.36561860048561	5.48016026081571	5.25490658299767	5.029447499148	5.52533154957745	4.72322224343902	6.30461700011493	5.01762020336652	5.07826169643524	5.1255826014121
+"IRX1"	3.30627270553787	3.31281660897042	3.58007771416847	3.41766815647037	3.22562847458681	3.67011739860086	3.56184172218598	3.22567990573959	3.41766815647037	3.46923354438825	3.27233677585563	3.39574289090313	3.42366581404357	3.63708608242031	3.55430624289273	3.39810421114475	3.48006778897349	3.12800957831565	3.41010106928877	3.70059180507044	3.45083515739252
+"IRX2"	4.20650536757162	4.29938893389525	4.11443368975811	4.32790110993361	4.09142454616563	4.62192703466467	4.54751080496412	4.20650536757162	4.02014393240453	4.16645593017284	4.10744255850732	4.17287194025927	4.41775150425856	4.48973658927612	4.14237655728858	4.07241039217299	4.06897072650555	3.9701051097554	4.32204919352455	4.09882547845825	4.29966080234526
+"IRX3"	3.5251525097201	3.34982564247256	3.50474954442195	3.44230350989938	3.28703769404833	3.41222410027302	3.53741376891322	3.28458039243981	3.61585033489861	3.35288320509054	3.61724454308881	3.406556646886	3.30844696553542	3.40526866805984	3.50923567239077	3.26891670610684	3.36399184879089	3.25989478585414	3.34294950625749	3.80331723839381	3.29658390909839
+"IRX4"	5.20379081877846	4.67634312813026	4.91147198668438	5.05001673397842	5.21852300896543	5.21852300896543	5.22082386908949	4.715358520815	5.30179782584882	5.14483310569092	4.97696766803434	4.9901947183486	5.23481180988741	5.17531102246591	5.02911786542874	4.97376131593569	4.91382732761963	4.60731191996313	5.46257311024394	5.10914647518371	5.03860322306128
+"IRX5"	3.91898733840504	3.96917698134314	4.13067079556103	4.11562420533308	3.86388675457939	4.40477943125307	4.26234801878056	3.96868360988502	3.95870722497809	4.11715161116217	3.80059634615258	3.99550469525468	4.17043230454325	4.21300544982884	4.21712193958661	4.09076627916181	4.00967676648148	3.95680589883575	3.85572768104978	4.18937747806933	3.98557973632666
+"ISCA1"	9.37317514813316	9.4830763935897	9.58927189637762	9.4511189499956	9.83434537293092	8.72955560270285	8.71738029961739	9.30258206037134	9.80479973930807	9.92708151728286	9.31412909792625	9.85619637780188	9.27587472063153	9.0085791460065	9.62674028326064	9.82139864778043	9.79132699558694	9.68337678811693	9.49060301171171	9.82618480781464	9.98556484237502
+"ISCA2"	8.67661504734137	8.31732973104278	8.04099617592005	8.2338139087103	8.35005045364253	7.27254124817364	8.42569116632044	8.55400467423064	8.10881061429319	8.3243033096063	8.25695596870249	8.2623824361797	7.92451103155903	7.88822796591596	7.88674999814958	8.3690424807289	8.1797026074583	8.26910546288609	8.33493961020123	8.41213487574031	8.25062801451384
+"ISCU"	10.7241654567866	10.9916754813877	11.0826246347936	10.9684997135216	11.3878587485169	10.242094092356	10.321284775631	10.9165883996952	11.3543912957552	11.4873262428701	10.801559070821	11.2994023396071	10.9654680363904	10.5082881532922	10.9283596877861	10.7762230011466	11.3577797554706	10.9554813807108	11.1577950008885	11.2997193590119	11.5627585000219
+"ISG15"	8.45781913294656	8.26628542731508	8.40774811350309	7.93488424037031	8.31040759081971	8.9353001674125	8.1351909695008	8.12845136316246	8.21949631393625	8.06789464213731	8.2074519742295	7.70104113130014	7.99267840757863	8.38887299547195	8.04122603871685	7.68841359361573	7.58157279543462	8.44487901250607	7.96416988382443	8.08180863817474	7.85944633662582
+"ISG20"	6.97197431203092	5.74934225298071	5.56422242439082	5.749510726075	5.45755871381353	7.30560410290851	5.73971809950586	6.87071408027547	5.38310413001261	5.52815420912739	6.12636979902939	5.70881492160149	5.7646535732049	6.2471724288816	5.58264980964042	6.20866008511568	5.94653691454887	6.60220358264194	6.01708907761972	5.63044551617411	5.82901354646882
+"ISG20L2"	7.58607961334595	7.75844325622673	7.73346277849794	7.61299609860734	7.60802272857535	7.21139415044344	7.60240178763966	7.44921371428605	7.88518331202715	7.83353120339158	7.71802800817204	7.33729860140825	7.780775161387	7.48557936798101	7.96749109644983	7.58154997505451	7.59407817254057	7.8261062011784	7.43830632530458	7.78108752577479	7.69921476740362
+"ISL1"	3.59035006425724	3.74457238965262	3.68178265767889	3.53639597774499	4.01409930715363	3.65205326909229	3.69884441277858	3.76769235211608	3.84691324808401	4.06084212520083	3.54478241256372	3.7523166484536	3.73849970566408	3.73932293303656	3.78569824279742	3.74457238965262	3.96779852709763	3.65111081341102	3.60890495305886	3.81419966383842	3.92985475793096
+"ISL2"	4.63643115494607	4.21455774777805	4.40827564418163	4.26562200403472	4.6378819904841	4.96602785923805	4.32351478355936	4.43687315774249	4.32572254512151	4.31416164063787	4.0735316414937	4.20092865428354	4.50283209456346	4.53715068856219	4.28402334261446	4.53715068856219	4.25732186404189	4.58543555874045	4.40827564418163	4.42867371521872	4.27549585508985
+"ISLR2"	5.59699545007391	5.89816147842719	8.84398944276292	6.04110816646254	8.05322451850391	8.33846204857713	5.92370824415642	5.87907676749397	6.07659430402575	6.09213553068708	6.0268456023735	6.05634687467588	6.08681149447112	6.22139876356346	5.77314259139903	5.86835169466336	6.15598552483401	7.60299700970956	5.83826336572796	6.24731950935913	6.10136904925597
+"ISM1"	5.13449612325385	4.89910236147135	4.73563657601757	4.53123409232093	4.73563657601757	5.3218372478011	4.6610970418821	4.51343796998829	4.67516340698162	4.91912212229306	4.5588671627984	4.77682269269982	5.0608629350273	5.15040620996893	4.34634699370544	4.36652771070688	4.33296835588587	4.80704101553923	4.63158842994287	5.33691139859507	4.60698894080015
+"ISM1-AS1"	4.47758684113949	4.66779856709608	4.29655780240997	4.65915049192384	4.545612792962	4.52823817273203	4.64822279385053	4.63283960375309	4.53552366041602	4.61552486600255	4.20357075693552	4.39703918155482	4.56466388596745	4.37259345304879	4.53552366041602	4.64272927436928	4.60265527863452	4.37631362333998	4.57844989203012	4.22016118775774	4.5067620618646
+"ISM2"	6.10792294260418	6.07790179321404	6.25629407760155	6.31235023138391	6.05741518542846	6.26832175933691	6.22711676241055	6.15376264165191	6.25761512626052	6.38467545829528	6.03323582954181	6.29626565660074	6.29692433413256	6.3311065955843	6.25796161345581	6.16655350131254	6.32799726711174	6.18491343854713	6.32852025883365	6.22501383368398	6.22410575667176
+"ISOC1"	7.31768327169291	7.96582925312036	7.75810530794753	8.00761176155063	7.49805133909416	7.1367999105304	7.30416890538002	7.71055273254218	7.33467498950706	7.40296268250291	7.27242332383478	7.15571232595027	7.58629812811821	7.23642575798558	7.3651261113759	8.2832541882939	7.37340540475816	7.91401911414188	7.46399813738304	6.98496276993549	7.29370649637704
+"ISOC2"	7.30441825189164	7.43467923313574	7.76645842968018	7.38407014527742	7.38932071286869	7.36679197939933	7.62387748038626	7.58510847704909	7.54172764553434	7.43507627291899	7.45598671963502	7.41690531272886	7.29209953833873	7.07883770504733	7.37083765358521	7.66102924143112	7.27649546940863	7.54583912648351	7.615839985547	7.60524407017737	7.41017717121933
+"IST1"	4.66546041794262	3.82206327782919	4.23701763235766	4.22157667507067	4.00967676648148	4.50175206775606	4.07001779260716	4.25889020434691	4.25230801964099	4.00722868107059	4.30338834016631	4.14551234329581	4.13029894009566	4.5426309036563	4.60507270254781	4.09668636591321	4.33389939448243	4.51631832615975	4.68410581647863	3.97289152241207	3.85692149585488
+"ISX"	3.90008201100879	4.30506904201034	3.83182669355237	4.20090593858383	4.17751645524632	3.9963082799143	4.3580700318867	4.25630736599934	4.13371984988056	3.91977967638055	4.08193599403084	3.95801883028532	4.32649459784291	4.73765478984979	4.1627097288656	4.00896381172563	4.1112004030439	3.9150155777982	3.91343227195897	4.11946822211688	4.1112004030439
+"ISY1"	6.10565406671048	6.02522787203523	6.07049589927628	6.13399070958585	5.79995328085419	6.35564780486071	6.5891889165163	5.95721374665646	6.11540495825564	6.14708258082082	5.6626903120428	6.14085996116521	6.21710501246111	6.08480954706975	6.11100988190437	6.13061707095297	5.97654394007012	6.10786234120942	5.95471852400966	6.03810189477325	5.93152163467616
+"ISYNA1"	8.39566985526331	7.22944034555051	7.27082249147714	7.69818567691925	6.88938399362011	8.56208401431681	7.86752702250218	7.09026522058083	7.43774702396428	7.62698183426845	7.41735708177147	6.73575969806026	8.03603204888669	8.64922702440109	7.37507826584181	6.51316638519897	7.1816433084044	7.03795194802912	7.24769122127617	7.94394600193035	7.20411239021417
+"ITCH"	4.30602974558454	4.49852897839739	4.15208892540975	4.20479628536753	5.13330792557562	3.99227163455123	3.92655448546607	4.90565718575811	4.94495491185278	4.62068240958546	4.95060833059745	4.84112621999079	4.77919694980742	4.26635588112167	4.839851306628	4.46497129263322	4.62859476532465	4.7734822326157	4.12753806869514	4.6181711965565	4.33634966771414
+"ITFG1"	9.22148682354643	9.96703761786468	9.85887858359908	9.54929270044533	10.4816338998439	9.097830234444	8.64831437609034	9.77942323928834	9.85887858359908	10.6324500296454	9.60043639435761	10.513041295843	9.16282214451908	8.73356999474366	9.28884445404499	10.351485896686	10.2159448185528	10.2710008147539	9.79279801517062	10.6225248203368	10.4994124701277
+"ITFG2"	7.71901730871704	7.85357050015013	7.92471910226348	7.68649125201669	7.67677329142655	7.59138227875628	7.26261815173302	7.54387054136994	7.72293023475863	8.00646058472421	8.09535049762508	7.89453381392892	7.42690757389973	7.63572772123081	7.35299069610454	8.31813381781171	7.66168076765908	7.96205348122388	7.4207456649858	7.78108752577479	7.81742576505874
+"ITGA1"	7.57278935130704	6.25100836960149	6.17092630830077	6.69642316858804	6.3912663108606	7.51351385054239	6.76584947201225	6.6090418539074	6.53293374182642	6.56008046695825	6.48630859879758	6.71302047392217	6.68635111047676	7.47463864553905	6.1790321202311	6.42716678958973	6.26360722526401	6.53391291688656	6.15117431551571	6.55044374141976	6.47219481078366
+"ITGA10"	8.16038251765708	6.85449943154279	6.69121728800952	7.36132889399699	6.61584706389886	8.53452634351693	7.29370594142619	7.2529485128021	7.25098752479725	7.29117221017076	6.45752484239294	6.67453090427133	7.11002383932957	8.00107233591894	7.36493835227482	6.62787162554758	7.05782899391606	6.66279777890301	6.99845652693417	7.41596721190029	7.08981410388018
+"ITGA11"	5.47364171891612	5.51698186140246	5.32692006831047	5.64266244912114	5.36739900407398	5.92393047166907	6.04255722689553	5.51698186140246	5.60753316355761	5.35657443608981	5.04455499825949	5.37896570395259	5.72990580826957	6.06223324108148	5.24308404858423	5.10050304169266	5.50273402888916	5.08151964619838	5.7662511083396	5.64207010102211	5.5690283554175
+"ITGA2"	7.46920800300991	7.08919728144343	6.56939416889115	6.41962757876593	6.37189480152867	6.57914682880961	5.75421321334923	6.3839345709992	5.76497505903953	5.65582222974971	8.00939634900932	6.00732822019939	5.90739189760262	5.95236830550127	6.19220580220437	8.67242240884035	6.3066828619528	8.45911279575807	6.12091197510822	5.78866394107385	6.53463773394839
+"ITGA2B"	4.82688280702043	4.59760108122296	4.6012993842072	4.27181946156801	4.80017068242695	4.58399255121783	4.13453267919221	4.36469434273168	4.24916705050985	4.57512919121534	4.49190704773646	4.48389133527686	4.64374918139347	4.75324514776662	4.20329571341834	4.42549450001996	4.77532173593739	4.19621910702797	4.39956821768297	4.50883692288659	4.50883692288659
+"ITGA4"	4.73561044307019	4.7703565554299	4.68833470156363	4.76348983136578	5.07508829750431	4.63270527628187	4.55617667274812	4.69322928286768	4.78601558990647	4.37216648769955	4.24667746086005	4.32571094852347	4.45630566398616	4.89670864168177	4.59032672481191	4.63908945095564	4.64301142876455	4.44723720700504	4.33391585462165	5.14155829399421	4.97919014735215
+"ITGA5"	8.16589482238061	6.75925224793158	5.92215013472151	6.93706208496309	6.61964118375954	7.84407137474095	7.15101238286641	7.26167573869264	6.79532044279124	6.91569849028461	6.63385992676206	6.99120888590333	7.18853309104864	7.1898612974767	6.96524204425276	6.32896474674888	6.72693744293275	6.7104327514907	6.91890768704936	7.37873774041484	7.0562192551154
+"ITGA6"	9.45252103976458	8.3946217898889	6.75636418239143	7.65302727623997	7.90377320716953	7.91111085576949	8.3472606815393	8.58212899205839	7.52918244631133	7.69582550106243	8.74134926791208	7.9200347580273	7.44424662592506	7.80413921283955	7.26008997748032	8.0398143479014	7.96089516335031	7.76207326151533	7.96204479161499	7.93903499414724	7.80647396035203
+"ITGA7"	8.51615189636589	8.07936433799177	7.91376890349705	8.00906098152602	7.60759799424227	7.3203133921121	8.38398547454174	8.13604595370651	7.96554476215375	7.92078069545104	8.49824863035439	8.12587074963563	7.76928915606684	7.8912854334217	7.5052159063097	7.67645210402335	8.2857294232139	7.84141139116985	8.09459508630526	7.84563599074461	8.0721757399586
+"ITGA8"	7.57051192160012	7.26456129191074	7.42483605555463	7.67060162592855	7.15044828441501	8.68358104384972	7.43160521357688	7.46950179674917	8.0535126678741	7.77936951821289	6.70048645388882	7.51060325092292	7.93762407236556	8.02323276078119	7.76170010329662	6.85807037770288	7.71203707476418	7.1257530477458	7.59995832655937	7.988850621012	7.40329177894145
+"ITGAD"	5.79090072681506	6.15718720956245	5.7870619313947	6.22826532724766	5.99439704411287	6.30284594404744	6.08361367529483	5.99365063775203	6.202143603654	6.02442349051017	6.09828088741824	6.08514994923216	6.17686827242132	6.28832282399558	6.02635393906941	6.37601086538056	6.06630590866418	5.82506573216729	6.31154796584665	5.96199838456926	6.22370183329661
+"ITGAE"	9.6888219832697	9.15109248058607	9.23424000318014	9.05381949169566	9.18949776514066	8.6326478154163	9.29434466553964	9.04854162711031	9.07640111653596	9.37994794887596	9.23996613220296	9.03856520107055	8.82094889109104	9.01886791120606	9.26717657783826	9.5553312433693	8.83209118865185	9.49260404680021	9.25633968138406	9.10800253261495	9.09057416633315
+"ITGAL"	5.47800303750765	4.33213418293546	3.74415029571433	4.24398898006338	3.79083121939312	4.1246970949344	4.36291968174012	3.98374593577389	4.01281933659483	4.17501680577554	4.38195702000894	3.787425495358	4.35317987080558	4.32157309823979	4.17501680577554	4.40099278872332	3.84102274287645	4.24458081683458	4.08016225893773	4.78642970922617	5.02075001107841
+"ITGAM"	7.41299827472402	6.97690828684578	5.81562198718952	6.59133846797156	6.62875171226049	5.73364152513685	6.83552571572231	6.78517633263606	6.40583370442841	6.12798508473341	6.56866665377284	5.6355314626734	6.97625912260208	7.08598583913175	6.5303360385075	6.80591976681056	6.14203962231337	6.49623357074582	6.43448946680822	7.28030462174233	7.0633969779953
+"ITGAV"	9.8608341246235	9.6586837649819	8.96153629960057	9.95481929941417	9.39656693227499	9.14258261370542	10.2341289485262	10.0397843650644	9.68932992919924	9.51820971889131	9.56303549304677	9.10362887426649	9.60954184630079	9.40667357050518	10.0785119102004	9.84925059423042	9.75619379023808	9.87220419540175	9.54221174256931	9.05994035094897	9.20622018493779
+"ITGAX"	6.02048001721785	6.43348969372222	6.45262201579947	6.07119853606621	6.19706352795895	6.51951861445439	6.94717519729421	5.79267771700465	6.57717149352795	6.10027287855509	6.63984245375632	6.15540539872125	6.29359826670185	7.0532812365462	6.30892350470019	6.53960483330653	6.18989666884168	6.51982673768685	6.63291107424417	6.3643480768716	6.65832450452891
+"ITGB1"	10.7486893372748	10.2233359204561	9.5325475878842	10.0468969115757	9.71488116564359	10.7749607050806	10.2490632130914	10.5487048387742	9.6483369573235	9.81914252922471	10.5997206575507	9.91045257713896	10.2054095584031	10.4822802949535	10.1757947724771	10.5247402676957	10.0210545509028	10.534709767059	10.1594263972598	9.74181523345982	10.2457893657576
+"ITGB1-DT"	5.10519779415502	5.32037192487023	5.27443092847879	5.83846895836953	5.09618373759532	5.55794147061796	5.32065134830415	5.37208415959106	5.47781555528268	5.35283292796943	5.35162115367366	5.38427369315003	5.70606839413739	5.54952760626341	5.48132551321752	5.37208415959106	5.28121970029619	5.24441609153781	5.37208415959106	5.18757860038988	5.22713072078769
+"ITGB1BP1"	5.75187527843284	5.29374619885054	5.71656556366923	5.81203434866504	5.29724916509436	6.24706509579044	6.62763244000149	5.77919892974267	6.10870339474443	5.7269853218925	5.23481985077204	5.66072302773919	6.69405400618098	5.64380230978643	6.69453162038629	5.63439220072367	6.06841622726642	6.20810074923578	5.5317272659045	5.39347290819621	5.59109320919931
+"ITGB1BP2"	4.54307036861	4.60432838805109	4.65853818146784	4.66588605889128	4.62404697678439	4.60432838805109	4.6765815853611	4.47350384486922	4.65308758096285	4.49421323116437	4.34057268666813	4.39823553378702	4.60432838805109	4.60432838805109	4.59882883047007	4.49101001276326	4.77809454142659	4.58142307594575	4.45479436288239	4.7331667928025	4.82741055384279
+"ITGB2"	9.26579686986316	7.72240968205261	6.05386856057156	7.29801856059732	7.35217303845272	6.64679905959625	7.65910097921278	8.37783878046332	7.34751736909214	8.01223328984079	7.93062495796137	7.18153992993351	7.70729535026954	7.67701166317965	7.09234857238456	7.57078893700496	7.47560249129182	7.5826530633729	7.65791284899577	8.96250061010922	8.31939555029194
+"ITGB2-AS1"	5.35567164368516	5.80636721675582	5.33451751849238	5.37141359452853	5.42609955524564	5.71811802290652	4.74754594374128	4.82404043576054	5.28044481286709	5.254185348804	5.58194948692284	4.80419531992814	5.32692006831047	5.44981791791378	5.57899835799752	6.18887944375846	5.06164900670876	5.92058600839945	5.05473158993223	5.89546382450722	5.11657912811772
+"ITGB3"	5.24686329317701	5.19429564595958	5.0806256616307	5.42932801922343	5.0876262966214	5.50904058470113	5.49901633226304	5.4664109177279	5.50076182085259	5.41136251402836	5.24512911574274	5.52536029191468	5.20231997574804	5.43300576023898	5.96704088982322	5.51027060857877	5.37444179557172	5.06452263263787	5.59725208303249	5.21534682574967	5.42482447342918
+"ITGB3BP"	6.75296319241757	6.70190946998222	8.00461197436527	6.69770868579734	7.83413343941115	6.80616625272639	6.66576122473134	7.59963828421885	7.63511015261871	7.58749110049586	7.0689384157283	8.00497549921238	6.80278053624702	7.24353497579669	8.04580739275411	7.64239731109271	6.51792688800816	7.20937245248806	6.95589773677699	8.25078174158712	7.41991141303164
+"ITGB4"	9.59405769643848	7.78076554757242	6.92411319745454	7.77639494376111	7.22394798962222	6.86691294853639	8.24786441440728	8.58979365170691	6.53353169545146	7.71754423452086	8.97320240322429	8.60346636603164	6.31003484441623	6.7125882296305	6.4609593099229	7.88430955105844	7.53038616205856	7.23655166087909	7.89390963748824	8.2511168171993	7.33694759606546
+"ITGB5"	9.6917479716983	8.49702082357888	8.21041123393379	8.38466752667727	8.09240279372578	8.73079837308842	9.29393484627796	8.64176044181786	8.56613124172923	8.13944759304124	8.61331919819432	7.66950863529502	8.54214740765231	8.84142161246423	8.76402909533792	8.42952235549329	8.26506293888637	8.14542907103536	8.47208705316713	8.36619956157174	8.20044971310131
+"ITGB6"	3.29916271827086	3.43796173246392	3.24578326775943	3.52198789542858	3.34090327725745	3.19805651382043	3.37641364611693	3.26499456959597	3.25786242171497	3.39926246400339	3.24272879725502	3.30477906359813	3.65072559882514	3.06109045330775	3.22558945300513	3.30836677292992	3.30836677292992	2.92632565227195	3.39183478416966	3.45778508405937	3.30836677292992
+"ITGB7"	6.83437625799905	6.85932001123521	6.9698357494497	6.71099661011335	6.63092397194508	7.01592736366791	7.26032967810708	6.88985558599698	6.71078764077106	6.81627336948066	6.47156544106868	6.71366237045186	6.88705637851833	6.86661837904248	6.3643480768716	6.4912364358749	6.83437625799905	6.93026404373937	6.83437625799905	6.75512673361016	7.09527217502153
+"ITGB8"	10.3815350311739	9.72656011571049	9.18946080437658	10.6501473115874	9.19214748013648	9.37901951204977	10.2359902706595	10.3774811538986	10.2538560293315	9.45083109757618	10.3375756294912	9.62314915379904	10.0760618847705	9.85255564459988	10.3788883399276	9.94305953703495	10.0186313946853	10.0121716837795	10.2706133577988	8.75339639933996	9.26241188010098
+"ITGB8-AS1"	5.93061161205634	6.81448030237903	6.73965971950685	6.79264594539408	6.42210285537268	6.74741278058427	7.03310246996604	6.77273105991034	6.40005976196799	6.65818590729474	6.39396986220277	6.7712687465968	6.6457345845364	6.99861934635603	6.52826323761914	6.58147214565638	6.6457345845364	6.63472844573948	6.73746419521538	6.66118829513355	6.33365926341034
+"ITGBL1"	4.41937967070899	4.42466350427091	4.41937967070899	4.2755581769969	4.26614223553292	4.41937967070899	4.86220761677648	4.40796615979185	4.38213075987534	4.80501591601165	4.62998455699593	4.09192128617826	4.41937967070899	4.80395541906401	4.21814127065152	4.04561072417638	4.23795052128487	4.56686278520876	4.65311471373737	5.67050154794309	4.30291884282523
+"ITIH1"	5.68011770201657	5.4116727613409	5.73895275590514	5.93888595935178	5.78098362455161	6.18598798534036	6.6292359915877	5.8704121990033	5.94513907974868	5.84359181469109	5.78509917006075	5.77222587984204	6.09872038472331	6.12059484398192	5.88037240351335	5.66132568418852	5.7982227105551	5.60915191349555	5.86219836836549	5.72721920774562	5.78145534182087
+"ITIH2"	5.7830850995406	5.98995979313415	5.63828899016293	5.87894906222696	5.99483401943528	5.9805352095026	5.86427854896768	5.64554103087927	5.72772639410205	5.89708195618327	5.64644444909643	5.7830850995406	5.63634330832449	6.26266972837259	5.40849903013069	5.49767514210792	5.54711991099718	5.18838218771681	5.60616487996938	6.81553956043304	6.21819242664968
+"ITIH3"	5.1370283633923	4.89087699652949	4.74514907219315	4.94876527949232	4.42486673624362	5.02539515266932	4.77473556118414	4.74514907219315	4.51958292283053	4.85039392305399	4.67206875883496	4.72897996853786	4.83147041525428	4.75598017966116	4.67848779856944	4.36827527016711	4.63009891205589	4.67879632164988	4.70866775859172	4.80488384435203	4.67661473580836
+"ITIH4"	4.20237258300713	4.43573205982757	4.34227119376949	4.34227119376949	4.41777283308737	4.76964704566876	4.64423609175345	4.06779592949029	4.26793888380906	4.37433774418867	4.17535451485393	4.16664908388799	4.40160663668017	4.64935581165421	4.34227119376949	4.45098570805465	4.31236041433879	4.06660777045532	4.34227119376949	4.39664817291251	4.33865210641366
+"ITIH5"	8.35193503145858	7.90078515413535	7.30262667121835	7.02345838915905	7.58771739139246	8.71410294953502	8.12055909988847	7.05060190291684	7.41247885645455	7.7821373467093	7.83612706841611	6.69762657379812	7.71032028241418	8.7817419074425	6.82349933201803	6.98450513651573	7.515357236174	6.8629526521597	6.91904875597656	8.42424149067879	7.32869464163451
+"ITIH6"	4.36193281431176	4.54512220835459	4.33947395303351	4.48482991463158	4.50186154416145	4.80642009659859	5.01765040192465	4.61097391549139	4.669945198853	4.64297875304147	4.48536512100663	4.48278228022341	4.56182045740711	4.82861103011033	4.76032724785493	4.2265239160751	4.51918947622553	4.35821110933392	4.68852185394388	4.34621352839295	4.38847727395171
+"ITK"	3.69391983568652	3.60034030242341	3.56730854620339	3.59495134585845	3.6746526431488	4.025683812265	3.53741376891322	3.70099662292254	3.72319663332282	3.64646847182225	3.59002347818936	3.67469034964244	3.66460139364954	3.50897547211837	3.6867256922376	3.69255729665823	3.63271219888892	3.3404377108901	3.69814125286076	3.73092982048687	3.84746626312461
+"ITLN1"	4.42764418536644	4.42764418536644	4.42764418536644	4.51342419011596	4.44936006127408	4.44936006127408	4.46385149074576	4.43997767611285	4.51861775561078	4.37733141684047	4.38195702000894	4.41037507439346	4.57302972962731	4.46560233183774	4.44691841270943	4.57419210683243	4.42298682581151	4.20291384464216	4.34478291244891	4.40341923330022	4.44513905779915
+"ITM2A"	10.3657083164539	9.67230038840262	9.13750860718385	8.74858105420982	9.50175459542589	9.95742789307823	9.08979406630663	9.25890257810833	8.70792719804824	9.41405280337466	9.83598910790147	8.65214419280103	9.76042027842512	9.70772894252351	9.4526815462547	9.30054478263635	9.70230691247289	9.50135452690231	9.12054201666876	8.75886234434113	8.46893986635699
+"ITM2B"	12.0847424177264	12.149708549471	11.2872800283021	12.2050613900579	12.063195437128	11.3683314576191	11.8652483003653	12.0321689060866	12.0393920155764	12.2476238036719	12.2734949047342	12.0073957750155	12.1805179086103	11.7984224135218	11.7872173003461	12.2163014123433	12.1498122061269	12.0680532871716	12.1624348864132	11.9561255462674	12.121962751017
+"ITM2C"	12.1128363459168	11.8079964808119	11.6583467317498	11.7525880396364	11.6163676750864	10.8995169528293	11.8392309987984	12.4330618325895	11.4734631713449	11.7841644572312	12.0343719655208	11.8594048603181	11.627686161839	11.0924043227371	11.2498213359894	11.3393337241635	11.6474825920478	11.2576649510652	11.4299581536792	12.0706493630455	11.5224164600118
+"ITPA"	7.99026915850155	8.23530517468402	8.65229306472596	7.98115255973198	8.23527895913066	7.89058533091067	7.38777969229823	7.61535955754254	7.97923655705658	7.99573443421439	8.0873979166617	8.27438997527138	7.66003658967607	7.90835402488126	7.76857352061032	8.4726071624732	8.04947046879229	8.14483088154449	7.88272294615731	8.34759202505717	8.33760814854675
+"ITPK1"	7.8931127253148	7.81753959607299	7.45575582872906	7.97026287352704	7.71306855152645	7.76220487474885	8.25808763440701	7.91357370802104	7.82805276132079	7.9621298913541	8.03809061908178	8.10008703099448	7.87873265167274	8.07106421331353	7.73797269600291	8.10942856586566	7.95502435320549	7.66780945614293	7.79507438106111	7.78958485665043	8.04149756863487
+"ITPKA"	7.99765759499922	8.21643367675947	8.76379296510856	8.48304630786853	8.50240288523573	8.40109272219966	7.82222271699321	8.27533396715245	9.42100943287003	8.84211162927696	7.76499100602786	8.43369904249863	8.69350624939886	8.33300845729029	8.71777897046508	7.47874810035204	8.55958095691667	8.52873224222831	8.44966521530645	8.96711044443446	8.5457956771841
+"ITPKB"	5.18560766640544	4.87387360179342	4.378936193115	4.72070703910819	4.12855961921445	4.58085515976564	4.55712093454078	5.08434163260989	4.54581824396323	5.61644619343063	6.01528904649239	5.53495663091019	4.7480384943532	4.7526541345661	4.38811742105004	5.1121599743894	4.70635952364093	4.77935010519564	4.55121705254985	4.33476214689309	4.22191995630623
+"ITPKB-IT1"	6.95371336136924	7.05850646503634	7.01465193483458	7.26289437864909	7.18803562240587	7.60807857474898	7.5415603567307	6.98800054113929	7.35690466158738	7.34100089385088	6.92710123019094	7.1885939359628	7.50185762395321	7.40225607792514	7.202655363855	6.84735774073151	7.09222671805126	6.70219625083888	7.21553459191859	7.13985578763789	7.14071497119398
+"ITPKC"	7.24440294607868	6.69574539816368	7.00230053946059	7.05398637720757	6.90717772363643	7.75475711450066	7.2964261357508	9.00057176483104	7.25069474395748	7.12417779284604	6.82736224926675	7.74524108165048	7.17665675839384	7.37353463003672	7.08705791243666	6.75076769358403	7.29781827682924	6.65558979389128	6.94445230638367	7.0839875246391	7.38164406499318
+"ITPR1"	7.96291715048614	8.75549189886874	8.34849378079729	8.60674572944983	9.66102546473745	8.04450106993159	7.52214537979609	8.80662749083882	9.37086870409872	9.58293498632244	8.03391860992715	9.63457942883295	8.81671855932811	8.04857791326924	8.87910194444349	8.43366063528134	9.47200421190609	8.9807010983736	8.97170875804152	9.53728450366732	9.85791968147375
+"ITPR1-DT"	4.98029082904366	5.31560787295187	6.19165866906619	5.76133659050627	5.9159468871481	6.51198606492137	5.32866759206511	6.28783972386202	5.64944826220038	4.7963898980282	5.38422125299285	5.99618206995357	5.91025475535349	5.43300576023898	6.22913191930525	4.57431366856564	5.90636482979202	5.21162510184184	5.91786648285793	5.31689059192343	5.0199305671378
+"ITPR2"	7.61943794089946	6.97623724953114	7.08262627224941	7.10887269999029	6.9202522985768	6.58568363186344	7.27988420288199	7.48137978957793	7.15224384825571	6.67909833086409	7.42356618548893	6.58737633197141	7.49022494436645	7.14094363795046	7.27041335541125	6.75268573873694	7.01775563410487	6.97830718220662	6.85371843695928	6.8774687496268	6.9898223815842
+"ITPR2-AS1"	3.42691120156181	3.77350647844471	3.53484102882192	3.50310234788329	4.15267634937608	3.76649585251223	4.04041817240449	3.78687022723638	3.85558509873811	3.58793934487597	3.72834402524223	3.59277040029129	3.91853601095745	4.11933544749234	3.84890083682035	3.84003821540867	3.67216776847921	3.53667292317218	3.67689981321634	3.66392527005198	3.78043113847311
+"ITPR3"	9.29144927210509	7.20283146087198	6.78429013622477	7.15210106590872	6.99981580083457	8.04979033431672	7.48331470002555	7.94595476589877	6.87688433805547	7.04830770413	6.99314581118891	7.04645923433499	7.30284239021103	7.63387405730494	7.1668185953891	7.01481412263561	7.19334487343959	7.06555272255574	6.97756975693073	7.71128406383176	7.59122972765471
+"ITPRID1"	3.75072682938716	3.90882538535162	3.81206647171838	3.91298822184668	4.04692408892705	4.29597506980294	4.6656478005912	4.06239889745532	4.03597997487126	3.95327316311995	3.8265332439424	3.89893644140514	4.23160059205414	4.20839229736488	4.19859672936806	3.89358571911225	3.786958664429	3.78411576496496	3.99152053388289	4.0728752383687	4.03629671590844
+"ITPRID2"	6.79964428212333	6.31157349409255	4.9466530768965	6.23114316789798	5.5610283326115	6.29457131673243	6.44603583874763	6.79081426117546	5.74395504509951	6.55324443857495	7.20750899217815	6.40387555580271	6.815385397274	6.31157349409255	5.83378424719375	5.9689767163261	6.32863764511087	5.81815101509535	6.72802513454154	5.56202582632673	5.85567730442823
+"ITPRID2-DT"	3.17665228201715	3.06590701636797	3.01978501771485	2.9704966410193	2.99000272772178	3.0980128528146	3.13524411345813	2.99000272772178	3.05992032959314	3.09841391983883	3.01554298052335	3.01978501771485	3.00316043103392	2.91904989768635	2.95802618408429	2.9704966410193	2.83076531714129	3.23892028869259	3.04378073296863	3.01118246609676	3.00416079338718
+"ITPRIP"	5.30581687029994	4.96041997293093	4.87122563563504	5.26256332769118	4.94545988818027	5.82287033003888	5.28532593327447	4.7962598679829	4.99766513559204	5.02911786542874	4.72441847479908	5.11313916613724	5.20537564276209	5.36527273905255	4.96376698096725	5.0618592666553	5.02911786542874	5.28651870678154	4.99532194402693	4.92592805006462	5.17043366893313
+"ITPRIPL1"	5.1544372182049	4.90568651902168	4.65605849390872	4.9709777675913	4.96551929966397	5.10993416967264	5.28296633204229	4.93872373060885	5.13810763974271	4.79567123654169	4.98200908134609	4.60111287537042	5.01734800390586	4.92103976161658	5.08830145432978	4.94753605242276	4.99169548668545	5.05510154958383	5.03873720914412	5.41194235018695	5.17271860586427
+"ITPRIPL2"	7.13322503623747	6.19844471082491	6.73821837486605	6.72194469237417	6.378215132653	6.82400606984348	7.23296498775715	7.36148836697357	6.7827287680665	6.27375201718422	6.92062324119119	6.04793226609316	6.68382475672271	7.37385486027	7.61696322116991	5.98737603366594	5.90891029407811	6.06610603072179	6.33996187742872	6.69225089470441	7.17048767024629
+"ITSN1"	8.26744223174049	6.92023531680525	7.07637200547968	7.71004661591592	6.86455668932961	6.14049985975775	8.05769443698143	8.2395476776024	7.68520851320717	7.04654118122876	7.24149012372731	6.76806029283193	7.65881847878028	7.50977384910383	7.50866224566549	6.10300298111702	7.37897842493033	6.82148552692334	7.65770074534059	6.69655590036985	6.53768500931542
+"ITSN2"	6.51392013896346	6.40899975057087	5.90660138795266	6.56761290415961	5.42276616250311	6.25033824339952	6.5664379535383	6.43306082937087	6.44462388154056	5.90619982963179	6.35494839075156	6.23947191348221	6.48466950184748	6.39816395394827	6.72383186499556	6.26327335641898	6.2775742785139	5.64172877033787	6.17633450386177	6.17166577786594	6.36966373989621
+"IVD"	8.50123179828314	8.40021583622519	8.52890040949118	7.73360945178386	8.18071525289641	7.77168704859872	7.54970597307888	8.3321685321915	7.64877574131521	8.41956431661375	8.57615715371749	8.41851446199903	7.46513840025708	7.73249160511467	7.58130832192945	8.27768434206522	8.09690871745241	8.27958243606028	7.88878048093814	8.47212116230887	8.31426142050024
+"IVL"	5.01682483311745	5.17516192215239	5.28223040287586	5.42931275627068	5.30097962000209	5.64372325546358	6.0006202115848	5.18434088375426	5.36468528431112	5.24785496871985	5.09098260453463	5.00630977402495	5.37951299880628	5.50595750572143	5.60536710206782	5.14692964733518	5.35841059957728	4.7939943459758	5.30097962000209	5.30097962000209	5.36724102242157
+"IVNS1ABP"	8.75876954249146	8.84911986187291	8.15387534964884	8.75632442915515	8.4237930140222	9.0144429989817	8.42205169478538	8.76526705179543	8.086387433447	8.4546057608289	9.42366442967064	8.57664482907547	9.12897279400675	8.40282493197714	9.25763198328518	9.63568603226256	8.57604815445556	9.88237166047171	8.95462955863127	8.39737832951708	8.62189984278046
+"IWS1"	8.38427622228361	8.11600436978296	7.98257420586558	7.72112329978116	8.09076291564662	8.28536531637623	7.76169641873688	7.97148298655674	7.58037760982575	7.65418847886147	8.36488526980618	7.64795553650297	7.4927644930672	7.68904640579074	7.66578641469301	8.49991807428007	7.71866576182689	8.96167494838303	7.73669148786182	7.8791830856771	7.90232370310981
+"IYD"	2.80727337020919	2.78600807287671	2.81641428639624	2.93876602636254	2.98029372677887	2.93897498669319	2.97600445905577	2.87158096934383	2.84358745289624	2.83364243841902	2.74433307068692	2.84358745289624	2.73943044636976	2.81405369073112	2.87909532533825	2.78218469158642	2.84358745289624	2.68052460265121	2.99096421839457	2.82979727464443	2.84358745289624
+"IZUMO1"	3.57344613563307	3.87773983095578	3.59378176153826	3.6731545306249	3.85828995250812	4.13442969802252	3.64428611275322	3.5985855354401	4.04815877720609	3.96089851493637	3.75714810291262	4.0010042528357	3.76474429230509	3.54291332649423	3.71724314579447	3.75714810291262	3.76264766049363	3.55272751788792	3.74732185097808	3.68637574606648	3.57199185991662
+"IZUMO2"	4.92499979845479	5.18276765956369	5.19620469390342	5.18428190096719	5.16330529470983	5.28850809564345	5.26265897708434	5.06928397104503	5.30097962000209	5.32720061982963	5.01352429623981	5.28118581766161	5.37933522459138	5.52212641742384	5.30721005697492	5.13449612325385	5.13739195319903	4.92300876444827	5.11354225830956	5.12395286949281	5.30307496664927
+"IZUMO4"	8.02859598191391	7.91924177242305	7.74859829804632	7.6822918346816	7.53797554340377	6.45852385454336	8.45629140231446	8.64090090809449	7.6686323685836	7.54415173978181	8.11714228507697	7.65927506782894	7.20155771679503	7.70240654496482	6.96621967122678	8.13751235077356	7.66695517780601	7.84200000671413	7.74383212289648	7.65454054979736	7.05316480682207
+"JADE1"	6.36714586094193	6.83442404082862	7.57809148375269	6.33794152366217	7.45147796773093	6.81964562838804	6.52497874541998	6.74361513418466	6.81941952392206	6.91468289551686	6.34292919633893	7.09458216397847	6.55906097447666	6.48911714478131	6.68385310089201	6.81657243778115	6.78331224141729	6.67122515340142	6.48146662795968	7.16429815628089	6.78331224141729
+"JADE2"	6.71791294890682	6.31433715085995	6.34184039066287	6.5900548257363	5.87576139354131	7.12936530973273	6.85760861563571	6.08269388935631	6.60313721597542	6.40618311151006	6.50486911363902	5.85136716256499	6.76948144206732	6.6870595149184	6.82907050811906	6.5571201623104	6.31433715085995	7.13504332843698	6.63378557834839	6.00889194000481	6.07417076587238
+"JADE3"	6.54069525911443	6.26195538810393	6.21387843269294	6.22711676241055	5.89669624480529	6.86928720950488	6.34807935455194	6.13060733321719	5.68590100808692	5.44526729076404	6.64660797161108	5.33748555560376	6.63084476457463	6.84203096483443	6.83129641572896	7.3806210862855	5.96054822586333	7.4788672283828	5.82387823255495	5.98743655158525	5.36489428923056
+"JAG1"	8.50043134883462	7.00646749660429	7.22750292277962	6.90531434641891	7.26553413411622	7.87661517072553	6.82028103026432	8.20629775239831	7.05858658696051	6.82571806762229	6.87425454952134	7.12147354601354	7.18648508556669	7.39203412035066	7.08478897660853	6.39558459362761	7.66762539054023	6.94435129203862	6.92811395874525	7.60457813478809	7.13642089696044
+"JAG2"	8.81784974304947	8.61863539654914	9.03382020022197	8.43326316637996	8.34084812574495	8.80618437721107	8.26074479146869	8.24900242538967	8.44452473410914	8.26366624738306	8.13371232829658	7.96439418714373	8.51108337213346	8.73900544405808	8.372742717341	7.84156138300021	8.45593880138278	8.22610545891624	8.00458186722673	8.66739802184	8.43910613043426
+"JAGN1"	8.74351397386838	8.34368877961816	8.33286314850922	8.307933372418	8.36612132861142	8.04836330638888	8.46110891672438	8.29352321901018	8.3528327951495	8.52361550092806	8.4614039473258	7.99557590851135	8.2963777381294	8.33477445009588	8.36784446949414	8.85531270480285	8.04542837302587	8.74597493029205	8.37954364269154	8.74029981173424	8.47888134528058
+"JAK1"	9.29439962118096	8.51666120956058	7.47294817593616	7.96473340193426	8.49676737818894	7.61952858755942	8.26970302849276	8.83694252175336	8.23305779567865	9.01483459779638	8.54400027691699	8.49929443294197	8.07030261795914	8.16881015951562	7.55419669696207	8.32115305591358	8.70049887753374	8.46567776941876	8.38435003229306	8.84164892060774	8.83295924410345
+"JAK2"	7.00656965195923	6.70645717451396	6.17372592422662	6.5555528568132	7.18649687127077	6.50662572434462	6.43059089251683	7.02981487324759	6.77236010865649	7.0943507443247	6.39564256969417	6.8585428292832	6.39840090003946	6.56985065054715	6.37661145854912	6.23930807005682	6.72424466511695	6.9405856674125	6.48763301102577	6.6845664626001	7.01794915019781
+"JAK3"	8.15833444892508	7.06027567686482	7.38569563061383	6.96915583899612	7.57095762447465	6.94203586926991	6.97352842920314	7.74480574437935	6.97573535770367	7.02311109240388	6.62249009445852	7.2436502967447	6.92296810481023	6.85618526453403	6.75457650257924	6.49736944157336	6.95364679697843	6.96719785965122	6.68458396877338	7.77828083083029	8.01194189831188
+"JAKMIP1"	7.28383988387642	8.44039461103825	9.03218389857484	8.20359113041048	9.09804629438751	8.15429349572127	7.59915915910247	8.08573970674806	8.54734549750696	8.93427054486125	8.1677527426619	8.88625096455716	8.39411549403525	7.97246619050691	8.62130764165533	7.97379504228432	8.83677431488926	8.56339431201721	8.39271559840252	8.74657822247932	8.65657729256571
+"JAKMIP2"	7.27331286736348	7.29876539088402	7.71624286747756	7.82900640210215	7.85400390328495	7.760762752494	6.85093300526979	7.32839846393611	7.96524139374418	7.50643244781819	6.98120961677772	7.46843143587616	7.49502783493608	7.22844370713693	8.06193605670831	6.9882723457625	7.52023385178328	7.55716469416634	7.38260437462	7.2912919509516	7.50458452616636
+"JAKMIP2-AS1"	4.70932128616332	4.74360910763702	4.39767971888098	4.7869793156406	4.8380751567894	4.59152168416992	4.70932128616332	4.70441900597063	4.57986944789593	4.47675558900061	4.50010716380471	4.86639272406158	4.70932128616332	4.81700473404388	5.00906669337593	4.94463766032407	4.73758081536499	4.39040643250814	4.53446686584666	4.68966246362145	4.7262048692645
+"JAKMIP3"	7.95439519118951	8.42449193984362	8.95962361565918	8.66730796253389	8.53514339083383	8.83423977176513	7.90439270902066	8.25425585072414	9.18472339787018	8.80230447700372	8.50441769201542	7.68479486667127	8.97043505381955	8.75886238474985	9.20334449405261	8.59932372326273	8.29556521870637	9.27066157588616	8.08802294216128	8.02899226630103	8.57366608940751
+"JAM2"	9.72717006826415	8.9602955239498	7.78313331491136	8.27952489500045	8.3099281867157	8.12666812001119	8.97289030061104	8.63336347163332	8.48307017655961	8.58386399897052	8.77241597201676	8.2740774031357	8.74290148184325	8.04192599464655	8.75119718337252	8.19217771168304	8.31020516847025	8.22751610546498	8.59210626684469	9.22854115838292	7.62793279827611
+"JAM3"	8.07778860580622	8.2113478883512	6.17488300017141	7.26949959257278	6.89544776557633	7.1133666997499	6.52631594469144	7.14104920872804	6.66220070202422	7.55145110621951	8.72063163621263	7.58774856922753	6.98827517119487	6.63085579503839	6.32462571410319	9.55653366278438	7.04628279923681	8.97010017120924	7.39539522118361	7.43496715370153	7.24028181676197
+"JAML"	6.39451718921288	6.36598574935551	6.31197092379514	6.29206723070096	5.86926645905747	6.39605208264703	6.70593986945767	6.35407930630578	6.23661137904295	6.36598574935551	6.39487517988831	6.33556764839885	6.52950348871952	6.89664457501788	6.22528175453793	6.22961062662224	6.23228158717617	6.33996187742872	6.50918964041304	6.22626970452917	6.2869475721718
+"JARID2"	8.63824627509051	8.62208334767037	8.81152163728211	8.78408632905655	8.50796992527697	9.33067081480431	8.60674446673237	8.83791907340908	8.74950207641504	8.4059012737131	8.63538149884411	8.69416064629594	9.0513947330255	8.90670989744608	8.73269965149595	8.44783616752498	8.90963089175455	8.63546638573864	8.55866309428157	8.3655243391551	8.41999759146985
+"JARID2-AS1"	5.11136382704611	5.18519487024111	4.85274519012574	4.89722626242432	5.27576870850822	5.17439523194902	5.02911786542874	4.91172511860117	5.01842443340953	4.90365988702734	4.80876006927454	4.83057779893751	4.9479552082901	5.14333072950417	4.87068844171422	5.35151523697599	5.20981235130957	5.00161451046809	4.8651128680695	5.02724438788711	4.96463732404353
+"JAZF1"	7.79133739116608	8.49678288087226	8.81721874316502	8.5256999275975	8.90971189528202	8.01817014390791	7.37994815225031	8.3111496917952	8.48537477322273	8.7772260572518	8.11740588839239	8.77162709132634	8.24022863122963	7.67168533243024	8.54849794797518	8.55867533024903	8.71344899121243	8.63027474242487	8.68024505321582	9.0857298424619	8.83157882846933
+"JAZF1-AS1"	4.25685781324625	4.50643129871752	5.81000878963292	5.21738199439955	5.83246652462947	4.41654168854894	4.19884303883544	4.85953279323607	4.78105735753199	5.70197225402218	4.56330409158211	5.37849776216509	5.81498860955449	4.56792220334365	5.52730040509484	4.61284354163675	5.63909085193187	5.32080017481489	5.13329758141585	5.38363400365265	5.36515262884319
+"JCAD"	6.36883316198527	6.71714303999697	6.01239166068932	6.12326373300871	6.25524728310841	5.68070904910455	6.93931222709596	5.6846842372146	5.5416937103325	6.72864475021877	6.53490903075602	5.97768480286939	6.4204198401652	6.51520595842389	5.9818823877167	5.99041343206746	6.87980403148404	5.91586869964241	6.26427100250483	7.20745282640409	6.50603191420605
+"JCHAIN"	3.35704681429822	3.19670689750872	3.08408003355342	3.1024769127906	3.20722492333442	3.29438821819448	3.17060261855207	3.34971774655239	3.15756660192773	3.0368106314753	3.06324083723185	3.17060261855207	3.15430943522296	3.28009047236659	3.17060261855207	3.18333001239375	3.31322161572577	3.08764052405307	3.27721417818211	3.13645256648828	3.04084065007635
+"JDP2"	8.73212520959914	8.1426181692052	8.15929280773351	8.33901901495039	7.97388374187982	8.51740222636682	8.97467485621912	8.25831441816171	8.27903089825817	8.09108162859563	7.96479100836112	7.97479748555067	8.77950942121107	8.43675757514721	9.09034943841216	7.56986541574063	8.35811073526201	7.56840445138701	8.44981819682044	8.27903089825817	8.25830086135629
+"JHY"	5.90435939735904	5.44956944967612	5.93544953324623	5.4717694778701	5.78832373173788	5.33239294932063	5.28558096222744	5.17867264313184	6.20653215231136	6.02263260843666	5.35305072167163	5.3911679102156	5.47398880917074	5.75949662381424	6.09820448132113	5.40511858314464	5.70276566244174	5.48221871774429	5.70276547232331	6.36366543800075	5.63148649948784
+"JKAMP"	7.70686366918978	7.94268796667705	8.29562883440088	7.56510199753394	8.18827452682064	7.54720110789985	7.34606195707032	7.77518525807803	7.30661673067453	8.04883195877096	8.14055675788306	7.92541412150206	7.03700082175918	7.29327149807988	7.84417760463286	8.67429795335473	7.65996819340978	8.54655917419148	7.66973321426565	7.90065143088843	7.99232316578381
+"JMJD1C"	7.31768327169291	7.65073367205697	8.00958559374068	7.22870319085765	7.62686120707697	7.66276681230938	6.4428258888443	7.18287983372676	6.86298572200507	7.33889070433606	7.23299345755831	7.81687529327122	7.23503276974839	7.21159812651128	7.30157507396883	6.40728127068975	7.67394381933805	7.57215211842501	7.33889070433606	7.14724690248372	7.35882948054078
+"JMJD1C-AS1"	5.03200017413456	5.04222101096098	5.0518539192338	5.29434677728658	5.31782948461544	5.44061319479109	5.05135671737534	5.24865969699553	5.13447420388329	4.99603033768988	4.88837175770225	4.71199529692661	4.99352203698775	5.00566438537612	4.9976571273134	5.16832902236931	5.14800096937943	4.91915724893877	5.15049466025005	4.97361956878694	5.21652168024503
+"JMJD4"	6.69842665535033	6.74396905088464	6.81794765401464	6.18746110381488	6.62710546076906	6.56104692498214	6.13004838273933	6.1116806068729	6.05805510908969	6.60121188025991	6.46676311267645	6.41668142851038	6.07513132500234	6.5221638843384	6.27301721536225	6.70512295090267	5.93677191233105	6.6148656351489	6.25158227557859	6.76104182275415	6.35395944322397
+"JMJD6"	7.99999587722705	7.52024579028993	7.90989473579582	8.83324089383136	7.66049037435041	8.33615980422442	8.80875869741288	8.43064154055068	8.86779610165338	7.58476641972786	7.5941100278924	7.67402138332196	9.04074318852252	8.60088436069262	9.28245217913081	7.87054854605367	8.04806603649241	8.04806603649241	8.31102026752979	7.92846669354915	7.9230145484125
+"JMJD8"	8.26792999304175	8.23684073213734	8.35618856291121	8.19052397937144	7.98139832753716	8.67230542881784	8.611155111282	8.05350662784549	8.35268745447686	8.32849072696238	8.23684073213734	8.107401928121	8.44749667813616	8.64529023024513	8.23061502408824	8.11302064727283	8.17264931943666	8.1115402202109	8.07288407316527	8.24165275186625	8.16850852285053
+"JMY"	5.21665420158835	5.25850855403608	5.06430442089728	4.95967492416997	5.64819514679507	4.62839046349952	5.5941733389914	5.38768558416852	4.925960983401	5.1721739047667	5.26590948258122	5.33738216832489	4.8933068511368	4.84962910394394	5.04195000702846	5.17862018955582	5.46049976254501	5.60727986625417	5.01444411769227	5.40679903502101	5.17320787278847
+"JOSD1"	5.50146701800846	5.26265897708434	5.4283211458124	5.50842188556625	5.17974910671108	5.78511648584346	5.71812895503221	5.44032394444668	5.4283211458124	5.52880361952755	5.4283211458124	5.04641102817364	5.45905084704134	5.79885220066969	5.77370569316573	5.05318144188622	5.33586716470979	5.4283211458124	5.45654657055704	5.33249353052832	5.38337844215673
+"JOSD2"	7.41748826063715	6.94202762924746	7.37947244667237	7.15872204438051	7.17060410773623	7.43666334027197	7.36154732245855	6.96253819909623	6.82347417129501	7.18186378702618	7.43416811570644	7.38773525664172	7.06269057431413	7.07525172401256	6.82934098232813	7.63824191531489	6.64931123685228	7.65477052097888	7.1775828576833	7.01783769900979	6.93080966451022
+"JPH1"	7.14684097102777	7.94876469022289	8.26944729527826	8.04074201532794	8.12922471310725	8.08281212225867	7.5247295454083	7.94339081912151	8.70581827742692	7.80108492999266	7.3466734726984	7.79409631590634	8.04601306730358	7.97537921179765	8.2295481478311	6.72274275504657	8.05272355740236	7.87570268520893	8.05393388380894	7.85852898204253	7.94567931379245
+"JPH2"	5.47875182147827	5.04576885842132	5.32751530466235	5.02113048459249	4.99849659623875	5.70721652106339	5.63282737911643	5.12697461638717	5.34187918114456	5.43833679175611	4.95348624767514	5.25189503251872	5.13873641769718	5.0941062502756	5.00801109766614	5.03004513331291	5.16064823010121	4.924033946987	5.32283497858391	5.12836315742922	5.2992386944742
+"JPH3"	6.98587336550894	7.59310839841257	7.84609829122259	7.81451608804714	8.2367779348138	7.74875998194702	7.28177213932351	7.67767215333448	8.23966693558119	8.56575884218809	7.05962813475896	8.6154383338446	7.96671598396695	7.49338136214717	7.43447295807476	7.18713942628947	8.34343873849906	7.47423686239789	8.26806373851959	8.38105433681043	8.65202427052641
+"JPT1"	7.81565119071814	7.75533118579359	8.25684104701269	7.75305976519774	8.49015911951889	7.4525074043763	7.08511154170852	7.50286514204757	7.93779512035476	8.36748632187981	7.37594046608924	8.27772478177807	7.6616313474147	7.05123372776587	7.47738979368511	7.82907994079946	7.96474702592201	7.9769340822281	7.71761140248097	8.79560725831259	8.46480915203115
+"JPT2"	8.40284627476153	8.04091465479805	7.59250275730691	7.92477754124178	7.67784661553202	8.61584126584903	8.04046405559224	7.62094268624737	7.38799347226534	7.63396565267994	8.49283143932606	7.17664972656744	7.780775161387	8.10089983577901	7.90618693817395	9.425378619582	7.74548095142666	9.41162482180466	7.91946734067482	7.51161277972883	8.10135983991683
+"JPX"	7.6255795928465	7.64172191583749	5.9537850643127	7.58871606080033	5.62496181408468	5.84830909000302	7.88400662634522	7.70664433303151	7.58890668378836	7.02913881904039	8.02367564922273	6.52082666424684	7.61818057519966	8.03114233759056	7.13913968316634	7.03663334067087	6.69267006918275	6.11779868227082	7.03653247003962	6.58218932333131	6.29306756982882
+"JRK"	7.12048645623999	7.14453594043104	7.25342265071742	7.16855247170267	7.4303682313732	7.0403952188841	7.02083333966936	7.0428988357604	7.10652479225316	7.03597257091516	7.18442490664894	6.96921527703826	7.31843679717144	7.01095202572862	7.21843557594662	7.12048645623999	6.96236972196026	7.22314365179037	7.10354157654162	7.46411529416164	7.11595755811646
+"JRKL"	7.3975859934252	7.45044449187064	7.72618474919073	7.34861695111664	7.23444716958651	7.12451658912207	7.41073701889067	6.97243898464734	7.0398646735589	6.81995312019445	7.73332140335618	6.72793227070765	7.53456663592152	7.20206711077248	7.76104597372194	7.3116416970347	6.98289857973395	7.47230535142241	7.56944628290974	7.23283796787786	7.08193937644182
+"JSRP1"	7.15039365818803	7.3863835989248	7.46188819881244	7.59897979367763	7.06121569222067	7.9763399021129	8.26978955086097	7.31031042343993	7.63718556641753	7.56018452974658	7.40235104214143	7.64041671571589	7.69068733255027	7.62343477963148	7.71823751566875	7.14297445688347	7.62697043448654	7.28104838965062	7.96918648039825	7.27839566762899	7.67587009300242
+"JTB"	11.3798933821351	10.7648566555204	10.9361912124838	10.8537234405203	10.9419583096194	10.7442187950448	11.2737306448117	10.9579737733899	11.1201489190238	11.0115561912259	10.7841902787844	10.7225301733357	10.9987144779914	10.9527193396128	11.2773326709904	11.0774090986492	10.7998170434955	11.0803062925022	11.2002979210851	11.0056034083383	10.9824887075369
+"JTB-DT"	4.30923821664179	4.76981923701179	4.73847173279423	4.4066672323966	4.25837440338255	4.50643129871752	4.11965005897171	4.2759878130471	4.3086941142237	4.44376865631452	4.42473222872958	4.53057498105623	4.50450705161547	4.56746547916754	4.51195873257105	4.87449341910983	4.51016445654833	5.16943257712665	4.50643129871752	4.60640231646924	4.50643129871752
+"JUN"	7.26240170847689	7.09458216397847	7.32069459781919	7.27154333869927	7.39732283972792	6.98073499434514	6.82336453999241	8.65578102579297	7.70370010830944	7.2990734759062	7.32257758153317	7.93426963501363	6.75076216135715	6.3113790206465	7.29316234089289	7.03954264435621	7.63639267191831	7.30906693238334	7.32343287580836	8.0411799675427	7.54108407868574
+"JUNB"	8.42983970304728	7.77707727540391	7.67868262038933	7.64225349105975	7.94323115801715	8.86341090426682	7.66605605089778	9.59583412120392	7.12828631893128	8.3507423595213	7.9767416171219	8.77976510847387	7.64523520469893	7.6347900926533	7.52946044055023	8.02757580520245	9.26657558298636	7.52091131969478	8.49894277602349	8.17783859865152	8.04090977890378
+"JUND"	8.27997677574961	8.13861342455584	8.48868217934764	8.61821638916094	8.38440143952809	9.36142894246066	8.23186477778175	8.27599522476291	8.39157347910869	8.93727982434386	8.58836105297318	8.87521961073214	8.58627968148389	7.97764091786205	7.75323615064212	8.24603403959597	8.62597674037278	8.72748547480444	8.302914904491	8.10272574185226	8.35294245755307
+"JUP"	8.47550146780062	7.77381770663198	7.69095832595385	8.14559185972749	7.6610990341163	8.4026668375192	7.97546655870875	7.95724270730136	7.42049246146168	7.83588423351249	8.59758966529346	7.59747741534073	7.56983519148354	7.93491595408946	7.23031662294661	8.94118634064912	7.87613001713719	8.57942880633926	7.86028200319067	8.30557938102848	7.38557637878961
+"KAAG1"	4.07073271365246	4.01876897669829	4.3871339858929	4.213705138458	4.06736636070864	4.26596486835924	4.62593491733298	4.08463667613268	4.15177069338787	4.16325644402003	4.21309489111167	4.23137431564971	4.32205694320016	4.5451665616588	4.21927967850089	3.97586106080848	4.16325644402003	4.10261175182941	4.24797284381351	3.90735604719006	4.1153174291461
+"KALRN"	7.98442066946167	9.55915520947204	9.82656552697732	9.23693996813184	9.66433874228857	8.73939180789531	7.9894164968313	8.92513529006827	9.58658323045117	9.48438097084063	8.40692000307866	9.37725020297717	9.2202947766834	8.59365730937131	9.35039983973806	8.48204229509182	9.34097156355635	8.84213079221227	9.22117515056555	9.55678476087536	9.66646460647379
+"KANK1"	10.9631093888496	9.96875539381543	9.50789439378803	9.93852531724669	9.5590403331387	10.018113599022	10.4314521491974	10.1111702909195	9.47911379678368	9.06623381729627	10.4779374116112	9.30694360341702	9.91388277043811	10.1773802349326	9.78984122609084	10.2674962472378	9.78629934149963	10.0160859291141	10.0390939811517	9.02522153018231	8.81938618528222
+"KANK2"	9.14742071853998	8.16513487265717	7.65355643328199	8.13484047301344	7.81708046905767	9.22423790755824	8.69190931795256	8.48578429074636	8.0112329743541	9.0024100980495	8.19129633474912	7.79433864311686	8.66568994777685	9.16714440880041	8.21964969652932	7.35708579597374	7.81691411381657	8.07358209675005	8.45714377388628	9.1867779028505	7.85615440187447
+"KANK3"	7.82073624909842	6.64913640851241	6.78424964621548	6.85111920818773	6.74146316590668	7.329994757435	7.33475936172248	6.77018230018729	6.71491347440498	6.81707280327274	6.9051231642253	6.67024527105417	7.03037521335332	7.2864224366029	6.64650340363012	6.56777760043105	6.85111920818773	6.69650750124866	6.89163974304826	6.91795266715818	6.70778014929067
+"KANK4"	5.96820124716889	6.31269370172472	6.33838077333182	6.11730406744447	6.4616342068136	6.74328564104926	5.7079144344817	6.39733741070287	6.32392938293254	6.814786801296	6.47795220205677	5.9385870387733	6.57882968789628	6.1174868859856	6.67465350072679	8.31248020894481	6.29430090802031	7.52771099244633	6.29622574196131	6.10792581687171	6.75939132046405
+"KANSL1"	7.40232067126373	7.56550147301493	8.52289993826992	8.23965040826242	8.09712375346305	7.38969567204318	7.44048338314945	7.18178324452609	7.22864997715117	6.7606552461848	7.8880561392021	6.30217651030967	8.03621426836972	7.14051902265194	8.12008870138948	7.46266719028471	7.72406827349774	7.68145800139782	7.52689300612611	6.01267943985002	6.58357043183395
+"KANSL1L"	5.6436181909008	5.2068031020338	5.40498973261804	5.51840601878413	5.3564369040745	5.81617977455756	5.626988505506	5.71027955873567	5.4004324890305	4.55957189663418	5.53167036811541	4.41009360549584	5.82648687307589	5.40241957138214	5.94681918439467	5.35486921455152	5.25374809235895	5.70359632454133	5.65837869940971	5.1517764303685	4.92274885112022
+"KANSL1L-AS1"	3.19252788411931	3.40226796420328	3.033248454408	3.13907149741007	3.28703769404833	3.53247973436244	3.2560553516205	3.2358061916923	3.19252788411931	3.21765722358071	3.18639182914759	3.17139477170707	3.19252788411931	3.30256616814903	2.98574572254949	3.16638016951832	3.17792305510286	3.11351433099769	3.21303451289967	3.0179841822778	3.17139477170707
+"KANSL3"	3.72382911908796	3.86017895282855	3.9879757314408	3.76699146508184	3.77568580763303	4.05405329878428	3.72064089277078	3.83353097716374	3.89850873284633	3.55634422054343	4.17298239333331	3.76699146508184	3.7826816158547	3.75473128177854	4.1622080308903	3.84895095944391	4.15598879397478	3.82553641879518	3.83353097716374	3.82573912758686	3.96320376234137
+"KANTR"	7.72091533345135	7.82679903121644	8.06286721773619	8.11003166466047	7.59605042174305	8.35099341770368	7.78919120735542	8.11589219960906	7.80167011212552	7.35383255718384	7.90070324294898	7.73294039301012	7.89919554062749	8.12070158967149	8.09324536222874	7.61088565112301	7.81894519704686	7.91939659110549	8.05056088130824	7.44075211439586	7.58580502062167
+"KARS1"	9.59658273028198	9.20841954243869	9.22713314174008	9.06814951732795	9.34376484555652	9.02819021907555	8.92533085642067	9.25153190884362	9.14931174634102	9.46357428380663	9.20841954243869	9.28893509567898	8.97935098256056	9.02305976419045	9.07368090627902	9.41035667380755	9.15384405858019	9.3750009884031	9.11991170050273	9.54374229960713	9.41451467470655
+"KASH5"	4.93194936390298	5.05586812123849	4.89685135536678	5.02686842519711	5.01989797097645	5.27428642912524	5.53245429891094	5.1284702233408	5.28008763875047	4.81770710338673	4.68294262463619	5.00675769182787	5.21094529767402	5.52601369035891	5.19383765243252	4.87715562000643	5.10171567519842	4.69380913032124	4.91242394145072	5.23646624268814	5.05006784482195
+"KAT14"	7.1196328791125	7.13391312906979	7.78636193641573	7.32217719178206	7.70436710451301	7.38258377608179	6.93326485251989	6.9927439089555	7.39703453773974	7.51089233062778	7.12851069638562	7.19411353327294	7.08300725861887	7.29292564549583	7.32713307756082	7.37676663778826	7.218558700777	7.52211571537942	7.23295400519487	7.79840722339274	7.45111542644948
+"KAT2A"	9.25624681053728	9.28229774553389	9.61015271071623	9.47212299425315	9.1543163311946	9.70889067544632	9.85247424927699	9.35896791900609	9.41836751495287	9.04136139605044	9.20959210455209	9.11533292973625	9.7229132076951	9.76119026586365	9.61952961715389	9.26453965150607	9.35976268769358	9.58276386643437	9.50245462838211	9.22235760129458	9.2719337515302
+"KAT2B"	6.77084993360759	6.202143603654	5.84901434780848	6.72540907508622	5.76219117389617	6.81305455647783	6.71903530448263	6.42864495133684	6.2032143827424	5.40706040067696	6.96534063887881	5.79279689185645	6.1883670580654	6.40993494548449	7.00866088046225	6.92045311289204	6.22931671317291	6.6752758108994	6.38143520371481	5.53295046205082	5.71083393319282
+"KAT5"	8.8161646465585	8.49535895410142	8.7623628081075	8.38329071247678	8.52489211021117	8.41810206213456	8.67289739060617	8.40786484232781	8.44449087773594	8.64019542201776	8.71393935322846	8.40802043081145	8.36551600433261	8.47640870657928	8.1951409223125	8.85261676776228	8.31635230994651	8.7553849242691	8.41260922703844	8.8997640176755	8.39002721423212
+"KAT6A"	5.95834090581401	5.42214380848519	5.41552616944885	5.06225435039345	5.88669173449022	6.07664749873463	5.33957028900533	5.83044251575104	4.57764058664017	5.36302796153719	5.90919095661213	5.89797224656484	4.97301137495861	5.20278344114353	4.60239137656415	5.60491111694103	5.32782355083497	6.34635446685047	5.37323579770953	5.54619976309581	5.06716753216081
+"KAT7"	8.75114114046374	9.1401014744936	9.16970471745559	8.9494524961857	9.17885566716345	8.78166148797423	8.50744314526875	8.66216395335212	8.87007011281992	9.11394409010005	8.90044981119192	9.14994127276465	8.66817231572	8.72070542779791	8.62357397989134	9.32041010607673	9.04319340633731	9.18966543034877	8.84668995432918	9.28012211231024	8.99252027434348
+"KAT8"	7.39673624131612	7.41762379623566	7.50947435463213	7.63481559500804	7.37633357000396	7.84905803766972	7.68451508541872	7.46020274292911	7.61715136781209	7.45428212408673	7.27288136907343	7.60087766103406	7.75585259139701	7.74759470039753	7.58907296280407	7.13254829780392	7.5636400678336	7.37520479295025	7.55694828550939	7.41320733964588	7.50960641124432
+"KATNA1"	7.81308620593017	7.13668770031538	7.11944200745513	7.08182113189584	6.91900019534163	7.23310429350058	7.15145835809351	7.72841965694654	7.11944200745513	6.86985287112989	7.37751719357327	6.93747832023152	6.73118557634152	7.02648745158234	7.11928223549682	7.69295866687349	6.82681568786955	7.75120441726149	7.26828103917594	7.11944200745513	6.60978161651651
+"KATNAL1"	8.89598727543725	9.22223076698498	9.52667227177487	9.04098121221745	9.33884540676433	9.30605088400349	8.51490335298492	9.08197372683521	8.93113795747925	8.91994562522307	9.10816426373286	8.98981148673349	9.07366426569573	8.67007817981706	9.27117027006415	9.32656657704089	9.17220159847992	9.50069057308105	9.21187173589915	9.11752989869512	9.10852878196236
+"KATNAL2"	4.61861871944393	4.97915259133771	4.7814928320074	4.95684393253835	4.92749036177789	5.17952901943605	5.84968443253055	5.07369935094676	5.45723695294694	4.71083750917048	4.91398587144164	4.89852627180902	5.52090007729161	5.43869363886472	5.38070169209432	4.96244235822468	4.98249017118957	5.5136953148823	5.21004317204482	4.78074199989403	4.89265698830366
+"KATNB1"	7.09353659967423	7.3833457110496	7.89015006316971	7.07566907652743	8.05634829416909	7.55836956751009	6.59872538477163	7.16348765634289	7.42557106312642	7.97979259697738	7.27037657845811	7.63198065206944	6.87396911327662	6.92633818943332	6.87810420360227	7.10188672287661	7.52748275043345	7.68006044705358	7.10630778258534	8.01228317120094	7.73706099538232
+"KATNBL1"	7.24028181676197	7.49853847918707	7.15319175363745	6.79265716120477	7.44417815933084	7.0296284327389	6.6008103003931	8.3216792047428	7.51441178872695	7.00492266850893	7.27837943772983	8.01379934310934	6.82268316856164	6.62104234513822	7.19593845221871	6.74407041736703	7.65075377158204	7.60261468976528	7.66479518836855	7.50421217439903	7.24028181676197
+"KATNIP"	8.91297573722632	8.35124966913991	8.31442533915182	8.36509934923012	8.17700420103797	8.68324295535788	8.53336893901732	8.27697029562722	8.33821792764789	7.93303478416459	8.41520544996028	8.07749159471861	8.25566737114073	8.59668846622968	8.16180717598134	8.21388614196152	8.3144221416445	8.46877339680227	8.19249893508119	8.3144221416445	8.16671156942974
+"KAZALD1"	5.22478932682087	5.6718267357422	5.41689901596732	5.59140381272771	5.44392763737432	5.30959843620778	5.5941733389914	5.51698186140246	5.64123672286323	5.71989960933198	5.26678728139878	5.61147661475923	5.72275824265441	5.73364547073565	5.32239949790789	5.23636551047147	5.49186014986416	5.08360834118386	5.51698186140246	5.46948518299286	5.78068509412509
+"KAZN"	7.55287808942202	8.59862090273941	8.58285530979835	8.3816701039544	8.89425016719083	8.32873085216457	7.63795811125398	8.1341592960591	8.22120663432632	8.79262975989881	8.50109714186381	8.76737240043517	8.68468702068505	8.21307774407225	8.42068779952884	8.86737318766861	8.69542041103051	9.09139741068336	8.2047845055108	9.10045109554999	8.79061075704209
+"KBTBD12"	5.16619077428571	6.03649328340605	5.54055702262641	5.41459805192658	5.74380034908448	5.11532712020888	5.30151501519251	4.8348857740601	5.41459805192658	5.46084583518823	5.4110104273903	5.17557698081077	5.56035088690433	5.41459805192658	5.40253763960265	5.15829727992908	5.40192395571926	5.46376179609038	5.28092447548019	5.51555103333423	5.67912272973419
+"KBTBD2"	7.79622083617048	7.24931565955496	6.18375251805737	7.19242679008714	7.58779738903729	7.0376794812935	7.3833457110496	7.84350586041492	7.42324956112925	7.55132759298492	7.35506211018611	7.47901550741169	7.28639615107626	7.24650046136456	6.83685260543585	7.51008564017057	7.25564839614161	7.61796730614324	7.11126922210528	7.72874279069408	7.3833457110496
+"KBTBD3"	5.69114113403111	5.98931132707246	5.84450339588095	5.68633989514258	5.88220973293304	6.14743566167208	5.73971809950586	5.74244946233673	5.50076182085259	5.47643458144065	6.09429846738641	5.8595742735639	5.4670691879678	5.47754034774024	5.48274756475086	6.9015515896757	5.84561921232563	6.68106444572652	5.97090081874172	5.37631491153515	5.30028051374048
+"KBTBD6"	7.07879861543236	7.99084111081081	8.55366704962424	8.02669895626457	8.33740945649473	7.51817720714365	7.15973249425123	7.43620289150015	8.16933844673289	8.1382665299045	7.88674999814959	8.01511923067352	7.68543398019455	7.34544067033008	8.130952166784	8.06292343711903	7.86553274642812	8.13475211010593	7.97992285713233	8.17922764041924	7.93548892808722
+"KBTBD7"	5.20375501146474	5.75715883290474	5.91487244562938	5.96777744796683	6.41931584787402	5.39460172794989	4.95121234705566	5.28827704441121	5.7059480885316	6.16119298996759	6.1288824474364	5.90769039763687	5.85164371112511	5.60487587300907	5.72819661853945	6.17250223169693	6.04097408678991	6.20038482198533	5.83127893085894	6.08057171030456	5.85164371112511
+"KBTBD8"	4.77518458266844	4.77338771718041	5.80252737597333	5.06561843153379	5.360135594782	4.5024373342364	4.73121741499407	4.79924566146844	5.2820378567259	5.03697947878629	4.68999626084672	4.96375999295188	5.21678117688976	4.7794226462955	5.10547033238975	4.91476948066076	4.80034306955918	5.47858152030473	5.04529179950573	5.06039661127316	5.2210729025461
+"KCMF1"	8.20941812365312	8.77794073207065	8.77794073207065	8.69436017081212	8.96068034518351	8.27234845935668	7.97375169309018	8.73473033394407	9.05883651308231	9.05802023351938	8.4186600636657	8.83422285787391	9.23684345472133	8.27837216226491	9.44267664742921	8.19321236182301	9.03024060962899	8.83555946080397	8.64484784790267	8.93875455520246	9.05438672606216
+"KCNA1"	5.76753070451469	6.28348654273499	5.89732593707889	6.54825822455539	7.20935330557898	6.67378313314756	6.15845884045469	6.08714585367611	6.53027899637574	7.72098496393958	5.87393327329826	7.22466605762582	7.52417577088407	6.29079601809376	6.64238307124987	5.44255141852089	6.7394567040488	6.48949337551702	6.26896333793028	7.45574772916489	7.68520880856018
+"KCNA10"	5.31730919846428	5.43785786807942	5.57237329346953	5.25618565677167	5.17546748368576	5.57624477109431	5.83579964556325	5.35438574487063	5.40181282857434	5.65698217601462	5.32876430079439	5.39746219329221	5.40616202301518	5.71746845986786	5.19121112084593	5.19402282280303	5.43939448809974	5.02546392349396	5.5738021458011	5.20262796945831	5.41046442115204
+"KCNA2"	9.31212538537661	9.7432000659114	10.1468627418411	9.79952281729462	10.4471252813755	9.64218624869506	9.85780794217043	9.31361690800296	10.443645267599	10.3964907167998	9.28078495672856	10.096150618264	10.3929846603328	9.80967049484396	10.2489814113296	9.71760421195922	10.4616771635374	9.8199457931593	9.99570737326648	10.5599311528353	10.553723490486
+"KCNA3"	4.48573537574271	4.69035946137029	4.51828924972425	4.69302545088739	4.55106811241534	4.50107266718905	4.71791379339404	4.38576446272193	4.73856764033777	5.11608931688806	4.19548357390522	4.70220824504446	4.77401983380249	4.62142070330257	4.66283616628387	4.41126630503903	4.38183828584613	4.57512919121534	4.40943925188787	4.83875272338825	4.86392537456006
+"KCNA4"	6.22180401855494	5.91729230876362	6.08260317862374	5.98147470383922	6.28908880855537	5.98448077570244	6.06077219703444	6.05055224693605	6.11354026210306	6.20958867201295	5.74548465644172	6.29757545314526	5.99993518780931	5.98938733892858	5.83227206360733	6.04566898624723	6.04462879909585	5.92646463996003	5.77891246540082	6.18861586813974	6.20765515130356
+"KCNA5"	6.20906390398781	6.25580786025636	6.86830974405979	7.07353762481552	6.90925218805527	6.58023096056851	6.22562107127903	6.14575652996945	6.88996773859955	6.69222014879131	6.40390036454401	6.78381955893682	6.50910842971726	6.50116151791244	6.52693935072355	6.39971082696619	6.69629916228698	6.42037711339761	6.58786233351581	7.17192888663369	6.12966792946507
+"KCNA6"	7.22902337545451	6.14443290653375	5.9439999522686	6.40712428864692	6.502590705204	5.83826157476483	5.80260816273113	6.29822878037488	6.15104118814339	6.82707066562728	7.22522754990545	6.78455909971804	6.23221560677592	6.03691087983317	6.21145131060412	6.77125548639495	6.49022208431911	6.1190927853771	6.40567923054232	6.85594026724846	6.73130056727872
+"KCNA7"	4.37253480609131	4.44061962186711	4.28365174130801	4.5169803220895	4.32553880046113	4.51985741303418	4.6656478005912	4.36120661549843	4.40808311753958	4.45503733336714	4.14669081138827	4.49381922173446	4.63502425187938	4.60952101955718	4.3347781192273	4.33306162795813	4.39402749192126	4.1982191689823	4.68132742737912	4.39835400424753	4.35601274283148
+"KCNAB1"	7.19491909172316	8.39799131508662	8.78517700259966	8.5954033951582	9.0958240492629	7.56582590982333	7.1445468105964	8.04288074897236	8.15788353735757	9.10685247903231	7.79391146571377	8.87250605940048	8.49244998227919	7.96191068829758	8.17837299873721	8.48855714417402	8.62543223989131	8.22269162539425	8.34117966704652	9.32299240058627	9.02331052997647
+"KCNAB2"	7.16047373548479	7.78633186698064	7.37274012085484	7.74632166324002	8.46637988667283	6.54139728366153	7.5189836586288	8.01405460572276	8.41037300976692	8.96674116648093	7.41481843844058	9.1376581646651	7.57876369391412	7.38751624141377	7.53362187187083	8.01236567884066	8.79660029464625	7.68681591390848	8.29069282131917	9.24570613166369	9.66726555754014
+"KCNAB3"	5.86443373201466	6.39637134292261	6.51508181708113	6.58392492077086	6.08255510635303	6.24624496249475	6.09985519614711	6.136857621289	6.48887377270116	6.71811812920624	6.18928829724888	6.86161422230388	6.68764958115788	6.34006425510576	6.3250295180415	6.34625497564799	6.47387341013138	5.72941889717252	6.47387341013138	6.66837725389632	7.03761400368284
+"KCNB1"	6.96645111732996	7.89233361151001	7.21202230873904	7.75909716332858	8.091896331692	6.93421838750523	6.71714034937058	7.45780175367276	8.25889997154038	8.8544422400178	7.31871307206143	8.7937054442719	7.6539723574891	7.30492915027265	7.61019117900755	7.98557228211224	8.64604842376876	6.92664560731862	7.70585093740272	9.25785085755645	9.04283448628454
+"KCNB2"	5.13374516148229	5.83109385745411	6.50983206978967	6.15773212693353	6.58138049781167	5.874367978581	5.15631857326911	5.97924959512399	6.04699010106997	6.06719597859704	5.39256889886875	6.16073322050457	5.73234777432039	5.88949822939376	5.65635952285489	5.37558011495758	6.16939744424132	5.97924959512399	5.76962944203999	6.52081283842291	5.80762912355698
+"KCNC1"	8.08794501768795	8.55546227215735	8.75440490169706	8.85624596276568	9.38567019737491	8.99982475972721	8.52141424886701	8.54904850024726	9.35671566990729	9.66220545675854	8.4302164786172	9.18896948954341	9.68670991565076	8.97541276346101	9.12958576203051	7.94585920024638	9.30373115742623	8.07021768187822	8.35305080148146	9.376293737246	9.98085752563623
+"KCNC2"	4.08830661757924	4.66204993153071	5.09634279535546	5.02400656402631	5.76542571470021	5.27428642912524	4.81390707079509	4.83498166351011	5.43731283307128	6.02854473663785	4.2813669830523	5.68765314510329	5.29218596318177	5.03253786787011	4.8321838859704	4.68400592201723	5.32394161142707	4.76663117102023	5.48198007763088	6.09064749469404	6.12670965726648
+"KCNC3"	4.94869055893193	5.03308612385126	4.65530209928044	4.93192891306989	5.41668753975993	4.69661923858622	5.03733258558676	4.80787983193802	5.09830402032691	5.68252365059641	4.69274954044151	5.82333990430366	5.43983937993077	5.03048205038819	5.01728460890796	5.28398964695798	5.48283915132749	4.93086312054968	5.16282662957498	5.48865568517961	6.19725688556189
+"KCNC4"	6.26481987380684	5.9048566803902	6.65923177129106	6.21358684054478	6.98094632475683	5.99116352985838	6.25698748493548	6.20254319963944	6.80005458067239	7.17807361292493	5.69173778209261	6.9815196559022	6.33982826022833	5.88152003750812	6.17203649657009	5.9230802145137	6.95053031587225	6.42949917769291	6.38287849812462	7.3829341742671	7.31068617819752
+"KCND2"	5.49954948027124	6.81759590579629	7.12696045009849	7.2763674181295	7.55849069309152	5.83046656446434	5.47064353934319	6.65440299314206	7.77561128058151	7.12096039190583	6.37307673559958	7.02356472181594	7.30847258179767	6.24002021066227	7.5241480084715	6.28868166700243	7.55743487178374	6.85178921393292	7.14399560343495	7.35543997692515	7.34371594189027
+"KCND3"	7.14229273253977	7.07825151988983	7.08794018368007	7.75691773319041	7.46761870558317	6.71975423057203	6.92980117123284	7.64492674534957	7.99223119431987	7.94604052537892	7.09686154631032	7.88597935183527	7.73849665008065	7.11859874288511	7.93036302510371	6.86926536569357	7.7374114971583	6.9813897280079	7.5505360552368	7.42506774932237	7.97938786852269
+"KCNE2"	6.06773373984686	6.17388351644803	6.17388351644803	6.34774196329855	6.15657187533302	6.23313754084594	6.42277818526429	6.02984651164666	6.35573751169964	6.12059484398192	5.90517013407776	6.00255564084245	6.22306359196144	6.58339835291608	5.8193485610489	5.9010242713281	6.17388351644803	5.88137298080335	6.2987232606299	6.12841300714422	6.10172455145438
+"KCNE3"	7.21640388588235	6.41202268624768	5.93137137832557	5.75005048707294	5.88397238300844	6.13808766276285	6.32921908900401	6.53055255251791	5.93651384120221	6.20674922322508	5.7162096614095	5.38901708835141	5.86047708957555	6.64035946888725	6.32314649813174	5.84680436663177	6.10690264544563	6.14751796737223	6.46809371241148	6.56777760043105	6.14751796737223
+"KCNE4"	5.63692213545437	4.60923305654721	4.80102464742729	4.74575989624927	4.61536219580755	5.99872565516278	5.15503944051039	5.67186167515643	5.65688203259662	4.91571748102069	4.8766702318973	5.08198670695126	6.10504038719004	5.17531102246592	6.25274656488149	4.69011191194896	6.96791817621901	4.72083029964895	5.42524687603376	5.17531102246592	4.83105478953841
+"KCNF1"	7.17883237945702	8.0371195279313	8.95755181012139	7.77729607054362	8.26493635161443	8.17003340547315	7.90237158348815	7.82233035475108	7.76475422607908	7.93144471341596	7.59136024978251	8.21196499791154	7.85347270382372	7.6266054992998	7.60553377433057	7.61851356688698	7.85193115884368	7.74581177349956	7.65456000756022	8.25400131486141	8.00939411935302
+"KCNG1"	7.0839875246391	6.70328975306083	7.97946056396296	7.79887366050239	6.66705219638945	6.86797746999265	7.12221333785206	6.69173721262947	7.36558214521679	6.75410043923232	6.63683843012127	6.48374511139807	7.38277633611209	6.88897400846865	7.23066795768264	6.01957424786711	6.89818975812525	6.53939844351992	7.10363668162754	7.48361325008644	6.56481528814002
+"KCNG2"	5.75336641646129	5.75497488749276	5.53480792493631	6.03837270463874	5.52821658044723	5.78556384387504	6.07375736144113	5.85938127026259	6.01033505040233	5.77667445851128	5.8476570487492	5.97432128951117	6.38076838698691	5.74567242054	6.08029528842397	5.5330156848324	5.87106841644577	5.3973348872181	6.08976304944919	5.2739700595885	5.96396885146095
+"KCNG3"	4.26226966208896	4.51626695877792	5.64731036044341	4.36896911750516	4.89976487860482	4.71636790705773	4.03370460317926	4.71467977845489	5.45270273391583	4.89508883482808	4.25114288386735	4.54137198263651	4.58393930281319	4.37074035301777	4.72344493764782	4.57528351711136	4.66422164242894	4.65446056314311	4.50470767355753	5.29067212052582	5.33182589092642
+"KCNG4"	4.65742646789905	4.87151114900244	4.70520293194233	5.28205649235717	4.93098982139505	5.11437270625897	5.29255115661584	4.79814767992321	4.68550611187984	4.87598852855677	4.89576544346327	4.74122811274263	5.18378238040329	5.12906069912838	4.62722446534274	4.82595675904315	4.77496412074444	4.3217833987764	4.93189674209788	4.87598852855677	4.91517743428667
+"KCNH1"	4.77496789671564	5.06399996461464	4.57512919121534	5.04050201491668	5.04046359165029	5.19590642839028	5.1281081314947	5.29491840775408	5.05162281758845	5.35934434236696	4.7382525462552	5.28218848938649	5.11236729946222	5.17287559427788	4.91395045810105	4.97895253485413	5.15560684863398	4.79579237538727	4.82824710455787	5.55860622219243	5.37307560739057
+"KCNH2"	6.98268089365464	7.0059604944301	7.42148859186111	7.0854643675225	7.47703660516926	7.47091675606042	7.35904762978655	6.96819390634268	7.34857445034445	7.38551439054193	7.10683473435725	7.25474899631235	7.68240620368773	7.3183299964453	7.29740243659162	6.7195433019522	7.31800251953964	6.84118895670131	7.019270815555	7.56794222031039	7.39196870426887
+"KCNH3"	8.43023568553401	8.97804309890507	9.45981695619363	8.65910324592545	8.97580182912956	9.03054486895469	8.84913839515399	8.73234605211948	8.74279356725868	8.79989764251839	8.34450075645685	8.96387707940636	8.81944834877092	8.70120191150634	8.65344131910013	8.14474649570304	8.79803170461119	8.57942880633926	8.89962772635944	9.04600262053689	8.80008308049578
+"KCNH4"	5.41507212400734	5.67719630464449	5.86071677700168	5.71729640205869	5.63494791541178	6.04375201959368	6.16309473682775	5.62024401398326	5.77811525037804	5.81419673611564	5.5997503478365	5.81921101753904	6.00670622707959	5.96979035367714	5.75911682975493	5.39396580337698	5.67593138489352	5.45124121372987	5.63142517565612	5.5829262098017	5.67212995769165
+"KCNH5"	4.41583929203508	5.64756860224827	6.73690959325739	5.35039953727588	6.03460858695672	5.28105663952441	4.73763731507734	5.0578381710847	5.47773680882322	5.28049139293271	4.34759900311077	5.7057699164864	4.90132720285133	4.81340682590977	5.24303489845184	4.91628416381907	5.23897278654052	4.99524446040582	5.13509520511902	5.86699943755776	5.35601935101385
+"KCNH6"	4.81231222263575	5.01389310671915	4.89872644663963	5.13559486390296	4.86021219362628	5.23146693293237	5.32910555654261	4.98792064794625	5.05046813299926	4.99532194402693	4.73993949889782	4.8462319586586	5.46150288030441	5.25402193825356	5.09375964925026	4.63677286707445	4.82596708376343	4.78269824659892	4.91105155749697	4.83851391392687	5.066850371234
+"KCNH7"	4.80886014747984	5.21783361234154	5.13384388600807	5.31975944609728	5.76211116336831	5.18589959092544	5.4767000858036	5.02208648114144	5.4895467611237	6.24547566690162	4.95907133460523	5.98760958346037	5.29756439715224	5.06831095306036	5.2603882851367	5.09986325644259	5.44564987440698	4.88195492092212	5.39521964068047	5.82021792312431	5.6545712205523
+"KCNH7-AS1"	3.18678217741677	3.16411542467542	3.03791078191153	3.0579037973092	3.04398346590007	3.09782467255632	3.15267531737336	2.97176005252738	2.85651317630139	3.01826695443476	2.83002738633471	3.03791078191153	3.01826695443476	3.14605066544276	3.05430135814279	3.02893897647899	3.07167328503569	2.95338797412822	2.94757394132165	3.0745904040703	3.05588687169891
+"KCNH8"	7.42971742624032	8.37366263835587	7.79628545220537	6.50562538675028	7.82785063042143	7.91064640210996	6.50061008420385	7.43566199606399	5.6445255091374	6.70484113910605	9.22459072270181	7.21356843341322	6.37596486352984	6.95644415683961	5.62116010865133	9.425378619582	7.45322298224708	10.0062344610914	6.55105326199735	6.17023841160212	7.17175478806966
+"KCNIP1"	7.86274905698656	8.11632394313261	7.18792462971082	7.80776321494504	8.08098138247496	6.50134955141535	7.51499706921893	8.06472747605943	7.59106545693525	7.84680867947944	7.20440130886379	8.05058672161412	7.58751690831656	7.37862233053304	6.88623257600174	7.42791278492474	7.33400777931337	7.43507627291899	7.4032172875079	8.36449335983809	8.01631859794398
+"KCNIP2"	5.53485430535402	6.37084446315691	6.32032406766099	5.78982470110349	6.49878694402164	4.28974944541758	4.54751080496412	6.24220538845573	6.89261857684898	7.15945256512089	6.1731315864668	7.62624578383595	4.72083029964895	5.11316987774603	5.35560117726385	6.14333895958293	6.87081529320419	6.41605544169601	6.22528175453793	7.3738636665541	7.55257111660762
+"KCNIP2-AS1"	6.68014275933901	6.62411802811442	6.83513175795814	6.84530818475912	6.55954575596383	6.97773448003672	6.90736863638819	6.74539642359874	6.78082361978962	6.74322969249194	6.70299056929712	6.78778137115241	6.98636315458569	6.92911942099716	6.82142981589144	6.67709754113959	6.87932666201151	6.67292973812209	6.98673318595609	6.86855289845344	6.98603508773454
+"KCNIP3"	7.02704744120058	7.3380667635659	7.25332595662745	7.32216182792853	7.70272272353792	7.04687361834498	7.12245996088349	7.04584275316614	7.25069474395748	7.63505245614089	7.18062906882681	7.64630272644234	7.30267202273136	7.11339972783769	6.8146231322423	7.220592675115	7.27041616124847	7.17652346643773	6.9643208006762	8.15346860104837	7.51197436326069
+"KCNIP4"	6.79538697799029	7.77039350831627	7.60256990886518	7.80096013436067	9.03876210612562	7.11076425916196	6.7318721092245	7.72738327079035	8.12403178725435	9.03376392634903	7.13559247809823	8.93251813842902	7.65300764825755	7.17177046644929	7.67046714883148	8.04149229810363	8.58206386023754	8.12095746545329	8.1061894848371	9.09958523267746	9.40623479961805
+"KCNJ1"	4.62086648390583	4.85928049686074	4.58741046184706	4.55673713082709	4.67938065620688	4.76085134386459	4.54952362531217	4.54625789978372	4.63044869217596	4.80489639633327	4.31471874991083	4.61552486600255	4.62086648390583	5.17756851176593	4.56179321510993	4.72083029964895	4.64063245881467	4.54138284244663	4.34672068797301	4.6562591218584	4.54992825880179
+"KCNJ10"	8.35107140822566	8.76036098718817	6.73511495515571	8.50521747743396	8.01525001602733	6.72087314339	8.19184539160302	8.28138790200698	8.43218893793373	8.59923568814737	8.86758021629423	7.66612325669389	8.04354787088756	7.98145785298272	7.57899757131465	9.19689157592719	8.10845324623545	8.79629127136249	8.36687191354843	7.76798682264864	7.14008118553487
+"KCNJ11"	5.82206454560092	5.49477410962731	5.81072428505669	5.60368549296908	5.95495472926908	5.67081601293339	6.32632160475427	6.00352369715261	5.80439622755691	6.45892811017513	5.56232944979089	6.38051137043822	5.95287995608673	5.49465766196455	5.98195862516118	5.52418571153177	6.08732755054091	5.38227981742108	5.88543984569517	6.60126657900276	6.50430106810945
+"KCNJ12"	6.87006253930777	6.73720914206007	7.21136846668994	6.69108916196638	7.17586983752797	6.54359275993401	6.53784075069279	5.98935500418625	7.26471029536186	7.00773322977361	6.51304701594857	6.87006253930777	6.97299205402561	6.57297920388609	6.56875014834391	6.62376950028053	7.02208721444122	6.71898600344042	6.71914404296481	7.44919474501696	7.2622671784805
+"KCNJ13"	5.72345775112614	3.91025535379956	4.12989123152337	4.42782865575009	4.0880079356473	4.36281179984889	4.38488885474328	4.31137806675	4.42236112495982	4.13212834260008	4.16780760967055	4.05033134686658	4.42686000910048	4.36003713683773	4.27421556380887	4.11139741898481	4.37223320409005	3.72045838857017	4.39609237203813	4.3355009119861	4.21988006222001
+"KCNJ15"	3.96751629643301	3.92554393262723	3.92226338378805	3.87631087838505	4.10238167572432	4.2252002243788	4.51968754150884	3.96591608637226	3.70946853502871	3.94058202178196	3.83148845449693	3.96939873715838	4.24996730084628	4.6906906984504	4.33021416217295	3.77376351595999	3.9366579921748	3.96939873715838	3.96939873715838	4.16357106970628	3.91084111241122
+"KCNJ16"	9.36982462088533	8.40168733950205	8.17199317938067	8.87509912671666	8.18986290040559	7.6065477809693	8.74601245068864	9.00169728696806	9.1724428016447	8.05350662784549	8.05124320873145	7.54105177796205	8.61129904655593	8.70694296705672	8.84616457175437	7.12815729030197	8.64025544505728	7.96898712845805	8.27460254281874	8.18986290040559	7.83081447281684
+"KCNJ2"	8.89232821297776	9.05813716359139	8.85155062613805	9.42447909827886	8.70422376989415	9.24218035137226	8.3653256357478	8.55782515567284	8.47980795515753	7.97267391946269	10.1123666885048	8.15289201043618	8.9359285396667	9.04563676091349	9.22124194421662	10.2737176078996	8.51632152532391	10.267224171112	9.23676811348357	8.2305111199771	8.67983039245408
+"KCNJ2-AS1"	3.35506147994224	3.37651582180569	3.62589837570552	3.4232020051987	3.55741108924632	3.50885369214156	3.33934253409061	3.38512059066556	3.10845357136589	3.27605695764013	4.47244861650955	3.2292980852541	3.19447055239992	3.41222410027302	3.40867080011846	4.57018250120868	3.19447055239992	4.33592874748954	3.43725700137603	3.30024838422687	3.31644182463636
+"KCNJ3"	4.18566470432351	5.17002112043552	5.49793281456624	5.64778786003062	6.27964872046881	4.79997173598202	4.21612178817434	5.06266541035237	5.83201059771468	6.34139352022432	4.99231749078037	6.26693375575981	5.87916379913706	4.62113496002449	5.84794896620135	5.79098572358564	6.0713160000072	5.63443279963148	5.59824379914626	6.24261986780019	6.70698954692584
+"KCNJ4"	5.69508559512844	6.18954376117609	6.66779360260535	6.85601553220059	6.95741046790748	6.23125136148657	5.51331315075598	6.29430090802031	6.88957118137914	7.5687649076892	6.10240806036553	7.5057893064173	6.60777308838608	6.08551677803045	6.3132904546858	6.29878658981864	6.87588740773858	6.18275425882145	6.65766074174555	7.96770876781975	7.22897321214737
+"KCNJ5"	5.69567235075557	6.00670622707959	5.86119782314191	5.99044280812417	5.66943441441273	6.12905669325869	6.6786894234725	5.91089200469239	5.85593652344151	5.97719594027524	5.83043705643641	5.95164775589967	5.88174794899641	6.14505941677971	5.91837441969187	5.84192303329388	6.01140054416781	5.40692161254655	6.05217392125342	5.58604108375874	6.17167591103983
+"KCNJ5-AS1"	4.17017091780865	4.37310919099566	4.13659475072092	4.05826336909817	4.24195206483622	4.11793727770688	4.03370460317926	4.3958516961482	4.36167151452529	4.537699768961	4.37874101016336	4.34825646446747	4.63536785371835	4.56935488417803	4.17579126906393	4.18448307745659	4.31409366581791	4.2896651113334	4.60706923459944	4.32014319084555	4.55803570217359
+"KCNJ6"	6.29079601809376	7.13668770031538	8.40001173516275	8.01660909684372	7.92196920071127	7.7024335272781	6.58751915757133	7.30496812887279	8.2867510198569	7.34419719348235	6.44924018324018	7.63384575763885	7.83574168632745	7.24394026776694	8.64874731827704	6.09779115759935	7.85193741896331	7.56050998693757	7.50908494288401	7.8871508439472	7.5785536428312
+"KCNJ8"	7.44178273675177	6.69788000210891	6.44000324708917	6.47413633417781	6.5119995006735	7.3570299012481	7.02522327683773	7.66774632832548	6.46011666728787	6.74121599642332	6.54809057595236	6.9046295502658	6.72888216744639	7.17685073629744	6.83058770677163	6.51056603105916	7.12242124826365	6.58473088531155	6.80014827626478	6.73491161616188	6.63182469093211
+"KCNJ9"	6.53109536910097	6.9265490985582	6.97648984622216	7.08483359977636	7.62838128534335	8.18392719536251	6.37928552137266	6.81548748849847	7.10837662575502	7.79918639286895	7.2005346352251	7.85435055300771	6.95240817275725	6.94314464308857	7.02115251552492	7.67016875908855	7.58568312858485	7.62523167282733	7.14544865350116	7.86288952695192	7.93030012575711
+"KCNK1"	7.85564818766461	8.40501699003083	8.83170361858174	8.45172685029907	9.34257656428625	8.34714046321604	7.27330771848494	8.14973909067611	8.97245507804591	9.70349062075114	8.82417539388346	9.33614823988522	8.47066379661571	7.56074016458359	8.716390308134	9.43023941242126	8.97028454525487	9.03488127479389	8.53491521428739	9.66500776452401	9.46653391063518
+"KCNK10"	5.59066682822645	5.97926004882375	5.65233558621452	5.41013379180868	6.4100410021462	6.38984828215904	4.97425132960173	5.38607148381307	5.04500962162762	5.59940363673253	6.0789154727782	6.06817481694593	5.0401888794331	5.60818944432165	5.23045797676844	6.09727387945384	5.62081220522095	5.86551380312261	5.24087596725014	5.78839839680098	5.52733801602509
+"KCNK12"	7.14323796808427	6.79274768516096	7.89284372036025	7.47407553548894	7.71104671041927	7.83643103257565	7.70133561606289	7.20346614286036	8.07208116661183	7.12252188838193	6.58862804214458	6.95315903904111	8.01260872151711	7.67141461635507	8.32856033494336	6.33826500249025	7.43846550918544	7.34944725424196	7.43519116840138	7.50856133306322	7.57096121445327
+"KCNK13"	4.45921466891296	4.57002344903442	4.45098570805465	4.20553332201671	4.31238887593184	3.76649585251223	4.14481794091259	4.29938893389525	4.37597457004953	4.53557145163161	4.22177682056531	4.43114602626606	4.53618947876613	4.26156204270893	4.3047074408964	4.16545920426913	4.28225758081265	4.13644750492496	4.40187645130486	4.4258051830512	4.62797261054881
+"KCNK15-AS1"	5.14884803406271	5.0809329958853	4.58818154623316	5.08870913252897	4.90689872418654	4.90262313160591	5.23708756976533	4.82764036405546	5.13793492786243	4.95581566238589	4.58732794682307	5.09777801199686	4.96948082146117	5.17819198461845	5.28154176319772	4.94731784654535	5.0987859834324	4.76795196806125	5.09893852742891	5.18105580503408	5.24594420806732
+"KCNK16"	6.3899380461593	6.5520049699721	6.31494316948024	6.55726421853244	6.5520049699721	6.6681425781005	6.93050929979772	6.50562538675028	6.64063509285573	6.55680982340195	6.29914872465497	6.54924144926348	6.73023768620326	6.81545792080832	6.59053369649467	6.65324474462423	6.59381011735181	6.20510671413582	6.51230475179532	6.35930185547899	6.6718095682803
+"KCNK17"	4.66784483447504	4.58218918330888	4.26512118173732	4.6188149332421	4.51999735043969	4.75814291001365	4.63955984803144	4.41350681936796	4.55586664987172	4.46973774311757	4.32698808150703	4.47735326227698	4.89954824874258	4.83182476135349	4.70308092824272	4.39022816713218	4.63279398368258	4.12111016678412	4.61224512279792	4.42833592582061	4.47489447766452
+"KCNK2"	4.95319002929702	5.61109628726898	5.33920896387577	5.00537983466329	5.26265897708434	5.09122390903668	5.03061799694584	4.99567084951061	5.19108593118386	6.53889062875804	5.12746650795198	5.51654912358878	5.15596059206931	5.04167301697494	5.22924108703136	5.45787802723534	5.1927246623358	5.27578273377855	5.28635041462116	6.01614693222654	5.61612553949914
+"KCNK3"	5.93682125643174	6.75965419477629	7.40307247593319	6.93249793007217	7.36920041462515	6.59303937964823	6.23238192807545	6.2459458149184	7.16217465217801	7.03095754653507	6.46196851776386	7.05257739204425	6.8923836578906	6.45421673314816	6.55452073639913	6.12621960555827	6.79129820029056	6.13193044991551	6.38873745088284	7.81746508756259	7.15952757007556
+"KCNK5"	7.16113752475278	7.3136200534914	7.44657057828594	7.67120714168196	7.43610290849568	7.20993205930829	7.70110092608714	7.24349153228912	7.27658217907116	7.3812868522	7.21628520014382	7.20378942290042	7.67563670699874	7.80564077643409	7.35872364756305	7.42837247108098	7.43616780052586	6.95829628276634	7.36663154887218	7.31394632956096	7.51307210008513
+"KCNK6"	4.82652414000013	4.32850108612744	4.37123908245786	4.55554647637059	4.50102481981514	4.71531870915114	4.27155108349979	4.47727241221908	4.57334737163495	4.36639325401571	4.55554647637059	4.32774359773276	4.72083029964895	4.55554647637059	4.68854345033849	4.51774050618691	4.09810673217907	4.68854345033849	4.55554647637059	4.75620925422421	4.93642322084665
+"KCNK7"	5.44375683418717	5.73458833531939	5.68723928774843	5.86661973623981	5.36421500038954	5.79250477783001	5.9126901748633	5.37716354994902	5.79608450905793	5.84109233812046	5.72303069625858	5.71467948763911	5.75110997160574	5.73458833531939	5.52798513714461	6.04295962961557	5.84665201716729	5.97757839523063	5.53676434809522	5.68962581975014	5.76098790434324
+"KCNK9"	4.61077220326952	4.84009767002668	4.71936615187505	5.13410751779182	5.38482525034637	4.98523604187566	5.11431634186418	4.6074791901395	5.1419769639988	5.14385663430279	4.58256888975107	5.31441607998391	4.6360936338363	4.84786737272899	4.45560090227873	5.13449612325385	5.01608482713459	4.80730881836814	4.62406700468114	5.39031565793675	5.29888773882968
+"KCNMA1"	8.26826012844705	9.47516534792305	10.0117929199941	9.44109565864912	9.63041007613155	9.51665010141487	8.62171723730285	9.47652957085547	9.81434266563793	9.41334225905366	8.71393935322846	9.59997704674776	9.65405235939939	9.33189034151435	9.67918132197131	8.27113827624198	9.57924216607224	8.92617163188926	9.37862577938597	9.55592617216095	9.49415117461221
+"KCNMA1-AS1"	5.33230065184093	5.68174718085292	5.52336226701872	5.55418033070602	5.67042017328297	5.52336226701872	5.67520530953597	5.41804394518556	5.81076732269751	5.41286333778247	5.47995009265213	5.54759770949887	5.55208579855633	5.83278232951147	5.68283385364784	5.50809614441281	5.63487127208131	5.30156184464206	5.31552422249613	5.51842634189524	5.56229790768892
+"KCNMB1"	6.53273868248129	6.49363292869069	5.66527197731348	6.04652683817544	5.88217593861439	5.85949027797989	5.70491146600838	5.59650345762319	5.72441693110483	5.76136925260749	6.05299666011568	5.45491664857842	5.93862166021381	6.39660811399519	5.8046063198732	6.12989302239014	5.71953205307324	5.68252365059641	5.73095428572294	6.07173315726652	6.18258572276905
+"KCNMB2"	4.5531797363284	5.34810385551279	5.92225467132412	5.36993222833374	5.74095062137111	5.09122390903668	4.74935181706462	5.12942794100298	5.69621668439386	5.34810385551279	5.35937988821561	5.18266532351806	5.72299935989355	5.32276439373172	5.47238404453623	5.18513497068836	5.27449367904634	5.37812388517255	5.19388934935115	5.55890411844152	5.37861489625349
+"KCNMB2-AS1"	3.60602309666596	3.53362961814722	3.58387896601217	3.75208297513797	3.57471702815019	3.84232318792524	4.06948767708259	3.82366032398094	3.83982070594843	3.67884275111033	3.46903227083285	3.59431737997981	4.01859283611369	3.82204908253682	3.68633915645535	3.59212869020398	3.67884275111033	3.6576823042735	3.82879913089461	3.60683511117734	3.67762140979583
+"KCNMB4"	8.65420489658381	7.93358625127847	8.04256953804733	8.38616709387247	8.27655159518287	9.53461339149065	7.9346498713237	7.85089611039049	8.14263463511763	8.22673815090412	7.82329390568508	8.14285143084945	7.85567107951042	8.65175704897572	8.18135336926718	8.2102914792473	8.16876246820757	8.7219396622049	8.3160859631833	7.85411137751134	8.12257232719276
+"KCNN1"	8.44024232343175	8.39663096523895	8.82627938470617	8.56517072107918	8.70828516491918	8.94518301073217	8.66171520131925	8.55437706045014	9.19827717046298	8.64483056413626	7.56678327737582	8.49950338757287	8.93841381934038	8.9867923592283	8.96636419449144	7.87756809648755	8.60286122201211	8.46708314126816	8.66171520131925	8.70416072406683	8.96370646798138
+"KCNN2"	7.33401938607839	7.83322999108193	8.25431823472881	7.68494753734928	8.20684093846864	7.29423932486654	6.79302637304768	7.02981487324759	8.4315806568444	8.0337511350104	8.39968552679669	7.40211725674243	8.12496882681499	7.27209466487983	8.20732276717447	7.81732410410579	7.91765798422705	7.93008857872208	7.67890554231736	8.18135240633984	7.7511952420455
+"KCNN3"	7.89916280772289	7.42738788177159	7.50798175090288	7.34878228884311	7.08201721966251	6.49814778850194	8.09711600094293	8.01336782183018	7.70180264704951	7.3906537369355	7.97009842363811	7.08073733765372	7.15153049047025	7.19634166057269	7.47723569587846	6.6336412835654	7.06301430476204	7.73186254888688	7.68128872775577	6.93471731284073	5.4363174198676
+"KCNN4"	5.54885451430098	5.51827537600425	5.96879734715742	5.74801121385704	5.72921851233395	6.1687438971626	6.19476902618463	5.61468891222072	5.63711766009238	5.67297801720333	5.4330157560446	5.53194040000239	5.8415999815138	5.82384467348647	5.58566803765506	5.48446770242576	5.53416780088393	5.19844509661163	5.81401469645365	5.70230056550291	5.98984907398848
+"KCNQ1OT1"	6.38766754008984	6.54155617215941	6.68858566078218	6.61969840473883	6.40470623583326	7.83871574567991	6.44210303151106	6.8559464977005	6.5412047748992	6.5154813159596	6.97506168968348	6.72856563419052	6.30356847659683	6.65273496387337	6.52545751878649	7.78818995308163	6.95729829589842	7.32447094354433	6.98310996006615	6.25975585486541	6.52069948540679
+"KCNQ2"	9.55188989627142	10.3454648333974	11.0590193746858	10.4736552143175	10.5668285252196	9.9202600653179	9.79714715082416	10.1786621672471	10.7133970136506	10.3908093602047	9.69100636138576	10.3158285986928	10.4704906068544	9.85844960600209	10.2320425948243	9.53926837856456	10.6971605338384	9.94955740748052	10.5291033831163	10.9310483117119	10.7036858828129
+"KCNQ3"	6.00534884663365	6.4880197232513	5.86291240059626	6.04414385318632	7.22153116819554	5.40639981796075	5.73971809950586	6.22436321691284	6.23702577228534	7.22007853593287	5.38277147367645	7.33503641993171	5.78369012796694	5.98156967759392	5.78615398513821	6.23281725726386	6.82615891781406	6.09226431927478	6.55838618390992	7.07212365283952	7.39277880061003
+"KCNQ4"	6.98198509830683	6.84449675541339	7.86344336964882	6.95413575158913	7.54282465956407	6.97924652041701	6.98793305197087	6.82907076667927	7.30029492572103	6.64620715530453	6.7529656844159	6.92557572836587	7.32715708598067	7.00247399360308	7.22578802499448	6.27995439602658	6.92799149083855	6.90625245071731	6.70814712341073	7.5965734838138	6.78455909971804
+"KCNQ5"	3.84723921920113	4.57512919121534	4.21897176781479	4.0981051182722	6.42979114833769	4.26557151572636	3.52622884361911	4.49124481269966	4.85223852339627	6.04313926631586	4.24660483829226	6.57104764707364	4.25964472169835	3.67431776335856	4.07785876151393	5.22094428484113	5.79362137595844	4.87490173906195	4.65720459308807	6.53228994755719	6.81299983772142
+"KCNS1"	8.57294892156323	8.98530224658495	8.97539603740923	9.352884530867	9.54184598072229	9.35597078386788	8.90505835058799	8.99010701025047	10.1826216383791	9.79260198471167	8.00877384138945	9.44721073067042	9.9548108602704	9.17925151590044	9.53881916235209	8.24242264821313	9.962200970039	8.82290874668576	9.23333149958084	9.82000685655771	9.84602777728147
+"KCNS2"	5.25072504920512	6.33486472787957	6.64605313617138	5.74104284613324	6.94366231522985	5.98128036146532	5.19243077900826	5.24485009546509	6.44944531520139	6.87967333555244	5.53731103591558	6.79134370048174	5.9178719246471	5.33476084725845	5.74429562233171	5.90377712229746	6.26611306738711	6.37769791776466	5.85749848938365	6.8459728085319	6.37845446668022
+"KCNS3"	5.31246889143728	5.50204153466221	5.82312190172495	5.73672627928214	6.15824720927254	6.14409587806795	5.62798707208942	5.4651665206091	5.70014398841345	6.22135925070183	5.62907952103352	5.52196924275187	6.10875738686799	5.7983764774437	5.79976601284619	5.79976601284619	5.85368214067103	6.10471632697935	5.19168982819836	6.35950776984459	6.14901294298652
+"KCNT1"	5.80762504116278	6.42971672125379	6.35506921125204	6.58679190955295	6.8511005406224	6.39420640894157	6.35263577497911	6.5003499181283	6.97855763243228	7.55755612904339	5.81807288984136	6.92954080690371	6.3850449786764	6.55906097447666	6.28173581565053	6.42522415116212	7.29336367154408	6.35996375295354	6.72340058685317	7.35718686294717	7.47539701165205
+"KCNU1"	4.06900683289306	4.21633190176513	4.00583204059676	4.28375100396607	4.57929891293247	3.95270639160876	4.10469394232667	4.14552680788214	4.34031584733097	4.25826730269086	4.00261551007951	4.2330209192495	4.20275894028829	4.01738101601644	3.92479450100009	4.3715828584802	4.20433065550618	4.04422730676755	4.03771313355036	4.14020309185959	4.30935309969793
+"KCNV1"	5.0045732394746	6.86383888949064	7.10335745889596	6.65342069764345	8.36560130650561	6.59361593165903	5.07108152489551	6.11844543115551	7.85589842332918	8.16856851577754	5.07528271199695	7.14179409216276	7.21951175630341	6.38639280824769	7.40612161481266	6.51108883282326	7.7194705714592	6.99388923165217	6.95841646666799	7.78492398313318	8.28079914318702
+"KCNV2"	3.56453012470892	3.52733825040559	3.58489686380954	3.82899474492032	3.73028240807042	3.72868149229982	3.76118374538878	3.62956260500408	3.62144831182486	3.60670016401848	3.44174496755122	3.5706148420417	3.71031846596918	3.74235217017352	3.48114884656521	3.68224066015027	3.52880566233237	3.42813113700981	3.58657035912302	3.53673191203138	3.423311814191
+"KCP"	4.89348766688092	4.93517331796543	5.19620469390342	5.00276647102852	4.72423247387559	4.99532194402693	5.5719177153505	4.79814767992321	5.25007249115955	4.98998376472882	4.94580133690422	4.88005695380931	5.26667576719173	5.25131442483961	5.08342093998364	5.10007233481054	5.07183594579757	4.51812769582077	4.99532194402693	4.82957832419846	5.04036023093872
+"KCTD1"	8.50399530611905	9.09924648306851	9.34929350078153	9.0736927688791	9.57579912600458	9.15352909071926	8.37494286028883	8.67223002567369	9.520658550504	9.66923368595976	8.73263437737645	9.29758540410001	9.0837257756496	8.75424238842301	8.85756675507436	8.64461805881921	9.42488868844779	9.01095242566532	9.24180980730314	9.81569815914805	9.3004769097091
+"KCTD10"	8.80065623939496	8.55559525655099	9.150075141192	8.46179678473178	9.02860994443405	8.95042199181299	8.34254941047571	8.51076797619653	8.6515611280995	9.03735651675515	8.54169308021624	8.7422678820757	8.44336361753103	8.65653185804433	8.49263834697698	8.3502152784646	8.52226460124989	8.94042823920002	8.5927932328252	9.03928746279602	8.71209327480916
+"KCTD12"	10.5073887915591	9.43389789999585	8.76128561644496	9.85198160420503	9.40389744970892	9.60013474980135	9.30632370030693	9.98224902536509	9.57188260950365	9.33196361986164	9.43251178066958	9.20131197099419	9.89251596129643	9.98658781399804	9.79822728395716	8.92709058128733	9.31309452677246	9.30260798753037	9.62329633135079	9.74284130263903	9.87915516903533
+"KCTD13"	8.21155971304132	8.90010629466173	9.28752916813012	8.5869061089048	9.04990675363441	8.66595799487052	8.63619406749774	8.48949207333753	8.36473082508914	8.46352852773588	8.6517038870839	8.82672960412611	8.69487228727029	8.55036840870539	7.84680049233452	8.72349856662163	8.69971752621215	8.6290318981331	8.31898277513567	8.94769534245039	8.48586544704701
+"KCTD13-DT"	3.74923470386026	3.60542227661578	3.09146087692393	3.55351600545798	3.52567212375592	3.69449887331893	3.73105057114029	3.57895606625876	3.64244440333094	3.64997238886589	3.68799803713391	3.76038536877425	3.57172208262971	3.84746626312461	3.64997238886589	3.87426690534813	3.82691587947847	3.45130083698057	3.65476732738424	3.68466034990011	3.63734615191803
+"KCTD14"	5.44110237265616	5.11854272707036	5.24408104662469	5.48781858057869	5.4732281351484	5.47364766247939	5.73223028404205	5.39544912375797	5.45240933990968	5.20727526807597	4.99727073722415	5.1966806287366	5.42338448175876	5.74340860743704	5.3812323381557	5.16832902236931	5.20981235130957	5.04819777097657	5.68008631149275	5.45019257799654	5.25245407160281
+"KCTD15"	8.20746853922698	7.57375311205432	7.93301839148286	7.93268432823434	7.30470591751249	6.6362349083385	8.04552123415117	7.18746464332004	7.92984766143227	6.81477528236767	7.72469633874874	6.68904737532759	7.0883942321639	7.53231974266715	7.39648047008393	7.07484406575444	7.21292695333761	7.54322584686954	7.41765387650077	7.36429245547196	6.68525168888194
+"KCTD16"	6.34244749671858	7.22597897931989	7.28204620203255	7.09070592390571	8.06605236418138	6.71985043070695	5.9352716384757	7.38737097507105	8.04471894643495	8.0026419238428	6.70691252708296	8.38285778924169	7.00169430057589	6.46382003712027	7.42440167175542	7.26295068411977	8.18891653729816	7.30555305324976	7.42769550353732	8.37568664578536	8.49465338187542
+"KCTD17"	7.70365104175976	7.80873172419595	8.39788895824569	7.99906999199358	7.79415899735546	8.40070227849263	8.52432534878538	7.94223838681081	7.9839005075414	8.17210086668461	7.84907473020688	8.10217981028771	8.13812023687643	8.11903315527782	7.98655408277492	7.77244179403652	8.10819163627792	7.90767709105459	8.02410922916483	8.20832053962451	8.00966294067573
+"KCTD18"	7.2689177382123	6.99766334542815	6.90220646838826	7.08470207295433	7.11188970899603	6.75517034837056	6.85531256293562	6.40822714101081	6.79904329257306	6.62539229642852	7.36994396928157	5.99491693611972	6.90220646838826	7.03738188598102	7.00649489947399	7.16692186456012	6.56410680439187	7.41022426570963	6.90879396752109	6.40544976365625	6.67965860347309
+"KCTD19"	6.09709689133802	5.98428813573027	5.84920149681377	6.0912462276942	5.83512457196119	5.97090717342171	6.18181014527336	5.90584485579692	6.01968285630044	5.94073312723132	5.80130521400637	5.79044570045598	6.16288252501313	6.18554640632854	5.99974180963057	5.76240661874392	5.99974180963057	5.73340199642056	6.15366670595265	6.14505941677971	5.97290573252782
+"KCTD2"	8.7377595297467	8.91417233314181	9.35773886571065	8.87039989462639	9.04467664391503	9.04495967584518	8.64558421700819	8.78231113236242	9.07984269867868	9.29867006399062	8.78376871345543	9.30562476504363	9.03478724565469	8.97392001124284	9.00556243316318	8.98206031986328	9.16467563525972	8.88978194676168	8.98680193375935	9.3483242737454	9.14654867948217
+"KCTD20"	7.79534523415195	7.59161675303368	6.28084341799564	7.16518832373639	7.13672030773441	6.18630622977642	7.05963627295881	7.41321838907933	6.95893313071721	7.66488452606992	7.43078360439835	7.36043829064252	6.94649632242735	7.2008663329131	6.95177645616502	7.77027082516016	7.33766706871243	6.75751125677883	7.15844076984838	7.41729832162218	7.52701223826895
+"KCTD21"	7.71903554682384	6.94202762924746	7.08499989662734	7.0839875246391	7.21459275772593	6.7308649908772	7.25093541748639	7.07963560548796	7.11939859897714	6.88085143243683	6.9320486579707	6.85240137085066	7.2951466767278	7.08444311804962	7.32455708986376	7.0839875246391	6.84289944501219	6.97468551888513	7.28676347534848	7.17364317101636	7.01179268121579
+"KCTD3"	7.38080961612634	7.03708799551575	6.68479941293932	6.99796297911241	6.86177477664116	6.80222887353534	6.15952173634406	7.46144986146468	6.78956040632011	6.75751125677883	7.44659003371235	7.04341973417167	6.66864025373141	6.48099558515265	7.009442751126	7.49495211114579	6.92601383410143	7.7733200581738	6.89249348394036	6.28419413344041	6.93080966451022
+"KCTD4"	3.42889468839445	3.30557401137632	3.98305232759408	3.78485526490747	3.63446753617164	3.2857558976586	2.8708856151164	3.35947993057809	3.2421485354279	3.38815919666752	4.3773570059397	3.24033661330559	3.26595837950666	3.41679501915081	3.62997924607871	3.57815783526356	3.16554988352451	4.4639965426867	3.63380446419854	3.05407666680479	3.03980811392219
+"KCTD5"	6.95030072983442	6.82916731801463	6.65714778976977	6.79973144947475	6.87161395331001	6.0712499501208	7.13250968973388	7.02300331592282	6.74341947983782	6.82346511948004	7.22562550542879	6.82346511948004	6.49118793684738	6.63130859178631	6.45722908212568	7.32037372346808	6.44800381948228	7.15497507178316	6.8188933515612	7.07974449252564	6.88779240190073
+"KCTD6"	7.19139873480385	7.27545633288323	7.04475548862454	7.39004347719002	7.34793816952448	6.60035768413831	7.25571757031946	7.50375256409774	7.34793816952448	7.40296268250291	7.37016535627188	7.41005390761112	7.43512142995131	6.69277679230624	7.33399372530426	7.49982433986345	7.37331012165775	7.8005136643238	7.33516092404173	7.68513699139556	7.51531932658277
+"KCTD7"	5.92553634732532	5.93408292783319	5.06485412206144	5.73586417311183	5.28906951168911	5.01602330700626	5.34810385551279	5.69110517015804	5.74631735956373	5.74078565294021	6.17272190297833	6.16933388877601	5.31979093970907	5.23104444239596	5.15204777718166	6.46465770696543	6.00202075692033	5.60943559527716	5.85925632562345	5.78130863117013	5.70881492160149
+"KCTD9"	6.12770774842742	6.16012990841879	6.36697737208811	5.62052383583875	6.97209001146691	6.01312389284129	5.87633115942945	6.02562420521812	6.33392243072806	6.90865565951058	6.18044299637471	6.09945854211066	6.60777308838608	6.12059484398192	6.33803119286337	6.28287099118635	6.4754621310351	6.5332763860834	6.24624496249475	6.58533094736126	6.95542144669225
+"KDELR1"	8.71835795517043	8.26966454914966	8.18083788635452	8.32186072600555	8.37346024171484	8.12432993794674	8.33204191718038	8.23455202795513	8.14486979548379	8.84126260910211	8.52560298083602	8.69682324032896	7.93754778993564	7.85824929415521	7.51762381669839	8.49822914715085	8.35674087740858	8.36158056765587	8.51129617737942	8.67869403518609	8.46728644016503
+"KDELR2"	8.72389389638834	8.26257106524911	7.75316026775582	7.96670553317792	8.32706298185545	7.99919257356791	7.8720444024664	8.37584687510831	7.6363603128893	8.53883166003408	8.76144489494445	8.5332415336979	7.98601574451376	7.78864505336211	7.58155580841015	8.90048948301652	8.23564385170938	8.68197501343884	7.97212600064483	8.26904393520576	8.48598892389053
+"KDELR3"	5.64695681017147	5.22048511755291	4.80417716087329	4.88989819383406	5.16943946168819	5.30836616898177	4.81658282353574	5.01661061025148	4.98315396694179	5.31009190568962	4.38826227954783	5.16306663424122	5.25340168780133	5.27790922918669	4.93459295453119	4.7939943459758	4.93347736454696	4.64813802060637	4.92956128896315	5.64136377161462	4.96107026428735
+"KDF1"	5.21019067630395	5.00139951383068	5.10790843733063	5.43557156407192	5.4733452270947	5.81300425439948	5.57830494079101	4.96813713579171	5.44121066100904	5.56985090043998	5.07132617936848	5.61267594394481	5.5941733389914	5.69966650863249	5.47238404453623	5.20210317630235	5.45977028886745	5.29476428212795	5.70410569183104	5.43873078330861	5.49434000750964
+"KDM1A"	8.63033273627494	8.58041277558334	8.81887813256109	8.5898961631124	8.95822519021106	8.69809001938186	8.55651074756385	8.58423436832668	8.74064667737848	8.69612017655806	8.43061618648814	8.68860265278364	8.39193470707853	8.04359629200206	8.49084968280452	8.40500384572945	8.72006737919016	8.83945935216359	8.50653576210063	8.84953593280435	8.66438552676568
+"KDM1B"	4.76408731334911	4.76764009535909	4.1821710927919	4.95863617309521	4.80174412300945	3.93505278100515	4.65013271629281	4.94913564997932	4.74526373882368	4.78971466723042	5.34337302712208	5.04266148991525	4.35966167049863	4.20638936521139	4.27927854396104	5.14876252650702	4.87780193173489	4.8859395705084	5.03083493285837	4.76764009535909	4.78309678839008
+"KDM2A"	8.15857352695693	8.03325484959341	8.31587514862526	8.37719238725069	8.19691317671842	7.98804134853449	7.88675050760203	7.86215865095267	8.39054813986549	7.63896540117871	8.08925437809779	7.58755392963561	8.59069738812562	8.21986430659313	8.68184191050394	7.57741617886825	7.92473004966802	8.08012803472962	7.80434780755962	7.78233349952064	8.04383863278994
+"KDM2B"	8.58834368885823	9.10435062484239	9.25319025348836	8.76907562060848	8.84299608958481	8.50344650483318	8.3114412757932	8.75188328517877	8.92470180916205	8.85722585642093	8.96695111508439	8.84825978459084	8.77045182725244	8.69621328964914	8.82524839329185	9.20021373805029	8.78574465601593	9.01076615578675	8.70557555475314	8.94014417394182	8.84299608958481
+"KDM3A"	9.99328404834912	8.91305822527818	9.11837872326292	9.22242854752851	8.89593508222563	8.61526619303716	9.19050749661016	9.00441415278633	9.25380850357037	8.95246516438038	9.1664107060346	8.80392865044455	8.97360394425789	9.03378742340707	9.30585935962896	9.23560040157379	9.22755454735066	9.18513955170509	9.42659422800608	8.98959613803051	8.87648711723924
+"KDM3B"	9.42163587555516	9.1794541968122	9.26795490179745	9.01417299241312	9.24439967733043	8.85660040348783	9.15162905735516	9.06170619245876	9.27687247841926	9.01674754210363	9.31508427493592	8.82132217096664	8.75267985887124	8.81275890598852	8.88047622487527	8.87613401127589	9.04460826820126	9.53004470015764	8.70367364188604	9.04582166698025	8.92088662617853
+"KDM4A"	7.48428241993641	7.46238360750938	7.41677970086199	7.50747529711545	7.53735836170773	7.56384484833297	7.68425527700159	7.2229594864387	7.66296778013666	7.44180928469449	7.32945627078088	7.25981220520479	7.45023819268305	7.50961236365805	7.57857137076077	7.32686324479333	7.38950233588412	6.94489799168628	7.41944672395166	7.61682625312106	7.56873671102585
+"KDM4B"	8.40652859790318	8.12857829062153	8.4332046363345	8.23301328752648	8.60593260042899	9.17525596212387	8.33681027261761	8.33474282840366	8.17775260911183	7.90666346058403	8.28102002149569	8.11427072428854	8.40991387161754	8.55493637692058	8.35164350050932	7.93656826817302	8.21458012032573	8.44581059822871	7.87304224188598	7.92276682983071	8.00853672220726
+"KDM4C"	6.96451093103708	7.11947353394296	7.33597928920191	7.07407517888318	6.93294094475249	7.71317937342925	6.79871592222142	7.06746768233901	6.58248226876559	6.61177195699756	7.19330293393936	7.17307871737936	7.08523005256561	7.07831820640275	7.27893037812132	6.93599435517137	6.97752083289546	7.00800907284336	7.17464516231931	6.61973792433712	6.64050557309748
+"KDM4D"	5.18391092110591	5.74098340756296	5.59137650384463	5.76050498912614	5.59219698130554	5.76820128793568	5.65682297921299	5.60638634089362	5.68252365059641	5.89797634851283	5.64880389492452	6.00563800504677	5.52892985243832	5.96282642461007	5.68252365059641	5.96997041474573	5.67870538071905	5.60638634089362	5.94570517050411	5.45921137895374	5.66025167113703
+"KDM5A"	6.52813120898041	5.59431403598664	5.27868909446579	5.51791697278331	5.50937505591795	5.84172111439227	5.65238571321773	5.92489785342896	5.44890068405568	5.50198853921004	6.11742490519763	5.69602736393936	5.30037964555325	5.30186756332454	5.17841439551976	5.78493440248871	5.59819526926829	5.66675418535984	5.61349636276765	5.81558113875947	5.38237820005771
+"KDM5B"	8.0867365969563	7.99566903407739	8.11625197353154	7.44125736440934	7.70793288213334	7.23339377375003	7.59969688927998	7.7818912841653	7.73212710685755	7.49866593981791	7.41722885456828	7.56237590499445	6.692849877122	7.39658715061472	7.37051110122933	7.66354732728436	7.74765177237333	7.71757617755002	7.34839789825426	7.97513239735554	7.34578565583711
+"KDM5C"	8.51234136486508	8.50300274279245	8.46640306679353	8.79350707910545	8.52639606213065	9.21713170615576	9.03199696626992	8.48031339974481	8.51681783732416	8.5464282935571	8.6157411741548	8.39501774894204	8.78829673986768	8.75374419294891	8.25410644163573	8.22241635405769	8.52639606213065	8.16110372271605	8.33626817786639	8.45015661205152	8.3542905203424
+"KDM5D"	4.66784483447504	4.7830153677051	9.50375041121379	4.5107186641453	7.80415938532444	4.891431597517	4.95189891127341	4.58177514166359	4.53788833585857	4.62061460609771	4.18122203791437	8.87327959362738	4.75285849599309	4.7830153677051	8.19620089790093	9.49249199094645	9.13691243431457	9.22065696607761	8.67026875074451	8.4503400697603	8.73504043516502
+"KDM6A"	7.95865723043221	7.61657648369122	7.00873600872259	7.36845592607708	7.23996308686036	7.88620861405325	7.25762045209709	7.78543703092533	7.16185335343875	6.9811672622073	7.98680614907521	6.91731861160459	7.17998294236523	7.08831062025442	6.9447319973539	7.86576920130009	6.99483429347242	8.35674087740858	6.93511803045813	6.53627290170314	6.65029336945152
+"KDM6B"	7.044381992611	6.79130638458405	7.34286981828776	7.1334141952132	6.92241248178553	7.85759451557598	7.35154751799386	7.09753666990895	6.77549943346022	6.74539642359874	6.88327148955338	6.73147515262893	7.29449446138998	7.39876421467283	6.54976142976426	6.3823389400716	6.89546907740355	6.8522188766441	6.69013902876943	6.89546907740355	6.789314899239
+"KDM7A"	7.67422635161334	7.59154780712606	7.95721431544416	7.54714434512048	7.76056944307023	7.91976173783241	7.20552266299139	8.01405460572276	7.69543788213464	7.70655691352303	7.55750672561009	7.67945195132854	7.60992211226027	7.29292564549583	7.53117720348209	7.9881285461173	7.88436328877754	7.871790807029	7.6926361771756	7.92217733029308	7.66170817811244
+"KDM7A-DT"	5.88074407055955	6.45667400673404	6.25115097525326	6.14810638199352	6.34384476269402	5.97652212446285	6.1787053304582	5.9845891213868	5.94531396704306	6.31019302834441	6.12971178369991	6.22315995139319	6.21804069674205	6.19422603628477	5.94220828316785	6.61980156684367	6.14810638199352	5.93694385689883	5.98456252274658	6.3394815790061	5.98084144726518
+"KDM8"	6.33993997795191	6.28792666431021	6.20758207277161	6.44179331410088	6.3850449786764	6.08031785192935	6.31601944212345	6.32791937777657	6.54287428010838	6.50925279882983	6.30987668094947	6.3850449786764	6.63232328698367	6.52103277427815	6.50054854258154	6.05108022311526	6.55760306617614	5.89103385295004	6.75394152804312	6.3053281110041	6.40164906938451
+"KDR"	6.81923755841441	6.28563788550292	5.73497617294931	5.72527068566347	5.63630888291391	6.10876117628975	5.77900018215992	5.69239338689957	5.01896611113056	7.22327264687806	6.20171214448072	5.4456450014106	5.29115639572597	6.11777570666169	5.06893393900231	6.56273673669079	5.27138928306411	5.63828899016293	6.29430090802031	7.39893966423407	5.59707181269591
+"KDSR"	5.17483831161301	5.53295938273945	5.2959536581184	5.16004532368213	5.31066619908653	4.5828913300164	5.19855852061636	5.11599128060194	5.93592598544034	5.31560787295187	6.04740909615856	4.6681251537315	5.62735506388359	5.20372022483313	5.72819661853945	5.98183506296461	5.08603661055521	6.58074309648433	5.31262992286542	5.16146979354792	5.31560787295187
+"KDSR-DT"	6.21519354060641	5.12593684319866	5.53452071072323	5.52215275486547	5.43506710046146	5.69946253127595	6.06577233621625	5.71596073578997	5.59089384134075	5.29493338472767	5.33560382882744	5.14079646459021	5.50351934761934	5.7253578357491	5.58350348368266	5.83799519514362	5.71038405105788	5.97063559869605	5.62297305239022	5.71079002639958	5.58350348368266
+"KEAP1"	9.11416423235572	8.67496238242903	8.74173500869088	8.65976293038722	8.78153046413279	8.99089108410331	9.05290781127195	8.69285193874012	8.82360819626469	8.74648325586652	8.84993838367696	8.47918017119517	8.75267985887124	8.80996306739532	8.97534451476181	8.92729976285498	8.58572333371898	9.36815064757701	8.66718281538519	8.68638490799258	8.52843149492429
+"KERA"	3.06196395270071	3.05171400620981	2.88654527047177	2.90201248726451	2.88529984114099	3.13815054381489	3.0231538004503	2.9665142682167	2.97602664859827	2.88412362932838	3.0231538004503	3.12538522388963	3.0231538004503	3.05093727423533	2.90647131296109	3.13326860454434	2.980511512886	3.0231538004503	3.05293609044336	3.06694300221802	2.97269882874944
+"KHDC1"	7.48002211484443	6.99609889712865	7.18170888727229	6.96969675435399	7.65904508929919	6.93155158779029	7.00520539123035	7.21612396925728	7.2474282794921	7.49900556150854	6.99040163870493	7.16903184016095	7.1111119916978	6.88446328538064	6.78953578471793	7.32784931422054	7.14336393052396	7.1328002505099	7.16903184016095	7.9103225675161	7.27324527630135
+"KHDC3L"	5.00772942668724	5.10307405845093	5.08046697763782	5.21743019806816	5.138437894125	5.29975670521772	5.58787658122514	5.1611850128625	5.46399077422017	5.16358956258483	4.98315907051783	5.15058164026976	5.29068082369333	5.29756474987651	5.34769434832959	5.0125494497566	5.20294564201216	5.02225115613133	5.51347862664579	5.12412882071819	5.245206313571
+"KHDC4"	9.01951010697575	9.13704994368089	9.17639307388264	9.04416564314103	8.95604653269026	9.18531063800513	8.91840582743391	9.35735235320795	9.21074420943788	8.60395110360428	9.12541462745764	8.98267073781343	9.20412026880529	8.98759192467768	9.3139644794828	9.17233232966923	9.06595304136256	9.21687988561923	9.0376031331333	8.75899817250811	8.92929153875908
+"KHDRBS1"	10.0974312655582	10.0778763308708	9.92379965568488	9.33035038823216	10.0503082945987	9.38703010777195	8.97596670406569	9.53453261259059	9.37696550912843	10.0231140043443	10.3073357761317	9.97227063328327	8.98950205649075	9.28610255127432	8.98150989562201	10.4270947268269	9.4984028257501	10.1760763198056	9.56131391765062	10.1416823158146	9.70982820211604
+"KHDRBS3"	8.44847222340884	9.12932367755127	9.59677677079382	9.68793876994608	9.69563199956195	9.74634096415885	9.07485113280811	9.24716297488009	9.60154086137563	9.47344559632345	8.83482584145777	9.72233357294739	9.70273501971554	9.07170105668699	9.53464440236257	8.62682020399768	9.60724743804376	9.31847117240848	9.45994470184687	9.74879551520927	9.35447277738335
+"KHK"	5.63512845599765	5.94124552753488	6.24955601720293	6.14505941677971	6.14869583472765	5.85202512193465	6.12246078026041	5.56458709019212	6.28670970395075	5.78121285843234	5.65857385366416	6.01479009818451	6.02778718356594	6.03772061678797	5.89945357035784	6.05938251407543	5.87587534335161	5.94124552753488	5.75062030169789	6.01670087155497	5.92609623688017
+"KHNYN"	8.14630707698277	7.47862798806476	6.92113572007738	7.09173895953946	6.95101761780521	7.11810054485353	7.42452952516134	7.65177898859526	6.70203436887445	6.55923764544228	7.57983631368501	6.84256321463715	6.98924155198357	7.05856943306274	6.44417837917056	7.80017952409773	6.69959537669284	7.40686550203619	6.88296727963758	7.04551442758453	6.98255390158923
+"KHSRP"	7.48624582529353	7.4193255754828	7.14302918446707	7.58478971063849	7.31838439964239	7.92691124632322	8.2126775094915	7.50843942434367	7.40418190819924	7.71440904091549	7.30605030153396	7.64265884735884	7.81807243869555	7.88472993360155	7.31501173530866	7.56340225088184	7.63854475758509	6.93543768708513	7.54375147648505	7.54375147648505	7.5949922305062
+"KIAA0040"	6.66763567921479	5.8378896666729	5.58669101257299	5.9117067742488	5.70619080171577	6.61215413265229	6.02789736666907	6.48666114843783	5.98542112960352	5.84389578412509	5.86244893853895	5.91376574362351	6.13435224571728	6.24443397539332	6.19389920484833	5.7302584481582	6.00706953136355	5.4283211458124	5.88046432597457	5.58794135203101	6.19355488088158
+"KIAA0087"	3.04046613200217	2.92542638995277	3.19191785979125	2.96836813365969	3.17492918642785	2.81216092737866	3.05567051132931	3.12629064348863	3.02046247273339	2.96357681644845	2.94906970106365	3.06481142751636	2.9804290452376	3.19638382162059	2.96382668252488	3.06581213061313	3.26310978474877	2.9265371579623	2.94542127154394	2.93526210224512	3.22210089287869
+"KIAA0232"	6.72149856245641	7.48294768286061	7.89065646410731	7.06395470561989	7.83080256139422	6.71341938482509	6.49371478031825	6.87104383122872	7.49535405927527	7.72148189254141	7.17822816011049	7.29292564549583	7.28151284159983	6.64096924227709	7.41623073204312	7.13324709155559	7.29336367154408	7.78350914497314	7.15560691659343	7.58196424145748	7.64258686253963
+"KIAA0319"	7.35891101077934	7.9115794614782	8.37206249922291	7.70806018462042	8.14128691248968	7.19581645446713	7.3316253139156	7.74913758556296	7.62622330846147	7.56156197054719	7.73999005141326	7.74236819965661	7.3283983928594	7.14733882857589	7.39093654528269	6.97631317731809	7.55096984746928	7.46610208363362	7.21554943744342	7.81960993242177	7.62679924913234
+"KIAA0319L"	8.7010336680594	8.34796885486493	8.88504639563623	8.32437626203138	8.59018244718828	8.3191085056311	8.17982184036154	8.44518583859137	8.29180027339196	8.68017169752162	8.4039510769611	8.60788129416174	8.18460164591612	8.19869623863712	7.98773205137452	8.30349597371711	8.39926528211311	8.52398489331794	8.31807341191648	8.72893555436429	8.47715892835892
+"KIAA0513"	9.85043205117656	10.6178665965719	11.0820066327406	10.6303424721495	10.9671821860509	10.7696507812622	9.97442336125731	10.2781150344814	11.0346734236885	10.9512017828983	9.98820186509131	10.9700192567798	10.6778945139513	10.2556357804808	10.2829614317254	10.0244294787884	10.9727377876132	10.3686800127856	10.4049727892497	11.0574975877174	11.0138438341691
+"KIAA0586"	7.32680135809433	7.1655251342465	7.23484496870153	6.89047793291127	7.04028029217505	6.83842131745049	6.83453079632303	7.20780086300218	7.10010084106319	7.33355544389798	7.11098356985389	7.12426378693306	6.70117875304441	7.22133501612108	7.13697755059988	7.51837255024745	7.11202739473237	7.47630141836608	7.0567294128467	7.3124275149941	7.14625553195192
+"KIAA0753"	7.5767555011942	7.69388609561442	8.10324311219464	7.83417658727254	7.69550709029216	7.55556659345477	7.40122092055049	7.69382860739472	7.92706994950254	7.34436360578072	7.30365845313761	7.4085672111608	7.67099503556749	7.5006397188742	7.71375889235823	7.15157610908067	7.62094489929171	7.47937842886638	7.5767555011942	7.75005376490479	7.43914194405783
+"KIAA0825"	4.99279260469207	5.14213605918735	5.1685537039656	5.33259755592937	4.76267345649419	5.18868860202836	5.17285526810766	5.10842175530152	5.34880068297436	5.08468148178514	5.07046454721686	5.12343007178073	5.52053321454076	5.31393339170824	5.47238404453623	4.74957975517148	5.10166643068468	4.85190163106182	5.36545603810524	5.05340150591396	4.85973462745585
+"KIAA0895LP1"	4.25899385804529	4.76158399550463	4.65536838756909	4.48218515357804	4.69895205803882	4.5489588153797	4.12697037225674	4.39267410676429	4.51154465272253	4.29686006287585	4.25785413079848	4.48218515357804	4.80664328464993	4.64420105269038	4.34747745138431	4.33719647336149	4.48970479098179	4.11696156465621	4.45689108370439	4.46152465574991	4.56624727377757
+"KIAA0930"	10.9816236365214	10.6757569675701	10.4880061782267	10.9702905911225	10.0130727894982	11.2070312505914	10.7723616580049	10.7330445103587	10.8088138556226	10.4089427240443	10.5569224102456	10.2411247379071	10.9209479243144	11.0162487815821	11.1002786240249	10.4854982645474	10.6455426162074	10.9931033869016	10.9658503503802	9.98048810986112	10.2595823451047
+"KIAA1191"	9.62304706818982	9.92267547778352	9.64523542575383	9.9636133117909	9.91792204721674	9.11330732051983	9.32292108498454	9.86888411417955	10.1466015760986	9.91445259085315	9.76349498414186	9.90794300890555	10.0445082010036	9.69017498675183	9.92671384443548	9.50638585562184	9.95677848147523	9.55550000381051	9.96901587541509	9.81291814327567	9.93559503933959
+"KIAA1210"	3.53563885221081	3.59295445925226	3.59687545148902	3.56126009710927	3.49940235586511	3.32821254910792	3.39455564054304	3.50656968140442	3.52448725881445	3.6033438480619	3.48192613804775	3.49275485800591	3.44692118714027	3.49239859590947	3.5247063080991	3.50656968140442	3.49101549430653	3.3885313997481	3.29043191704547	3.63922618819509	3.44334516549453
+"KIAA1217"	6.64188210616937	7.56350114715863	7.97964351348734	7.34035308192669	7.38375713047241	8.12437868298447	7.14252935711237	7.38075034234702	7.34751736909214	7.11355785265438	7.14479883535748	7.48997712791003	7.33726129158035	7.52568915477169	7.55063760405405	6.71890202098195	7.46962273172786	7.06351034189372	7.39387633917031	7.73622946689785	7.39277880061003
+"KIAA1328"	6.17093290277596	6.42424627371437	6.75867144541156	6.28275949934285	6.44146375495362	6.93126873504506	6.96080020404442	6.43005024403648	6.3173712717741	6.04358770183941	6.53190537497843	6.3340747691813	6.47892366548791	6.51324594415422	6.28838074693929	6.3598597626134	6.29347454996423	6.49301070919708	6.68016134547238	6.24980750015418	6.23032957093191
+"KIAA1522"	8.5136893678775	8.35819875120332	8.51160080410074	8.72173396369289	8.51330450843603	8.44140808667058	8.58729173587941	8.41986241442141	8.94259777930806	8.561688096404	7.98908416612269	8.41782928276616	9.02789001274474	8.66725626095628	8.93329244474115	7.81866217797386	8.67228510374256	8.18927022752143	8.66751953770423	8.4808886136911	8.62678479307441
+"KIAA1549"	6.84479531526064	6.93492025798264	6.98496276993549	7.38128305818225	7.0428988357604	7.1742118333159	7.016855081665	6.81182804503481	7.50721440487843	6.89142407346852	6.61400383047229	7.02911446531017	7.45505698941833	7.33456775924483	7.47267153809249	6.16505350339056	7.47889307613985	6.44711040911195	7.20253062999041	7.29792483913374	7.03029902773402
+"KIAA1549L"	8.87931023987538	10.4140077457115	10.8614978805233	10.3591755114672	10.8194576013121	9.99670518985854	8.84044306299517	10.0523411274794	10.9227920173101	10.5480811912309	9.27901942388815	10.5138145198271	10.2884920477486	9.87670020829273	10.5428735882769	9.35833385525127	10.6987458369514	10.0714317139996	10.5307295001915	10.9143079157017	10.5403808310811
+"KIAA1586"	4.0197832208657	4.40623233051426	4.39299400079665	4.33492357207427	5.02057496895383	3.94648923652136	4.15537786641313	4.26529629788847	4.50673389572267	4.87077204942278	4.43735853427135	4.57683560425813	4.34792280763582	3.93383187836731	4.47525760765411	4.61371706835914	4.65630855953775	4.62605178009045	4.28966466087788	4.55208872749197	4.67086215565296
+"KIAA1614"	5.30968594762053	5.8909393724073	5.78746138398419	5.87801638840895	5.45897158643725	5.55804143748621	6.06362256867898	5.50600208761498	5.85566024412322	5.80208316159374	5.93451598188808	5.66280020715705	6.24624496249475	6.02058901530828	5.86795965735856	5.51312907823654	5.81656282541333	5.80208316159374	5.95209048056887	5.25255474757163	6.2030763496523
+"KIAA1614-AS1"	4.75466481390279	4.97996265113183	5.04261077193286	4.97996265113183	4.69354127221018	4.95943014296011	4.6656478005912	4.89235524919574	5.18259363875133	5.16979054488084	4.84609406976234	4.97996265113183	5.13254939416289	5.15932607313486	5.1052921016804	4.90752026039932	5.19728130377228	4.97996265113183	4.96400259966759	4.96335046143031	5.00184839719476
+"KIAA1671"	9.55653539660875	9.09773424610072	9.42637743034725	9.08904800275596	9.10345450326183	8.72856392207365	9.05109607004052	9.29881229921648	9.36222931251062	9.06366837060796	8.82201615333348	9.15488651262049	9.03277323440104	8.90646819894479	9.23165976773896	8.30230770102717	9.36996859500458	8.7993126754422	9.14110213656687	9.56479627028663	8.96470654770185
+"KIAA1755"	7.58307392631813	7.42204080824604	7.59725511908058	6.83116506578917	6.69151673338799	6.99219932762444	6.99511376952042	7.22065306912615	6.22728100365984	6.74517697702418	7.94811787062287	6.89301416340793	5.94542774869314	6.95747723454501	6.18653786553033	8.40674007369149	6.94146879783934	7.98215924570018	6.81163718138797	6.6788854254287	6.73679561922769
+"KIAA1958"	7.09769531601789	6.86946020010851	6.30574002683514	6.94564510838597	6.33931166509701	6.94841308225253	7.11577520403974	7.24436539579128	6.85777848780546	6.42866301482442	7.10561451327902	6.59948825421568	6.43863468288545	6.80629944173499	7.04029151883567	7.52406549622368	7.01216957345371	7.62072861934868	7.12048645623999	6.330290755856	6.31173582453627
+"KIAA2012"	5.31178068825261	5.41707090688393	5.29864911767614	5.46950240654296	5.44000782780103	5.56386069196987	5.69059115129637	5.34819664745314	5.53587544002489	5.41589674568124	5.0629620240064	5.35101869159592	5.58397075776813	5.70716776999149	5.41514354190472	4.97713504030559	5.51422814695149	4.9787053747827	5.29352400930309	5.42368688596723	5.58714666671109
+"KIAA2012-AS1"	4.82028353554438	4.94328706072388	4.74687803156437	4.9909452813582	4.91708165502444	5.30671011866379	5.12215395313034	4.96798398921211	4.93663044198041	4.96559170786553	4.60267820420617	4.97352570547785	5.01927668871185	5.07996764317892	4.97352570547785	5.17566924144913	5.05327986823945	4.72721606975507	4.94432613984721	4.97352570547785	5.11559356392812
+"KIAA2013"	8.29541745365941	8.28688840687888	8.39191129420365	8.26105762687073	8.11210379028256	8.28448095329574	8.11500828683486	7.98517303114433	8.26450128321254	8.1378763582999	8.49525110314924	8.1455354706414	8.26705970017381	8.28311098898708	8.10863000175252	8.7653061677822	8.19984373248673	8.52080844789504	8.25556678082831	8.2242609280637	8.25556678082831
+"KIAA2026"	8.29015150203695	8.24949035201558	7.29228901811345	7.99641645519995	8.05564720736345	7.18611586451469	8.03458456831723	8.03086863592219	8.11515019366559	8.14849477612581	8.20669541678334	7.9253197411023	7.80675552906447	7.90994593563214	7.81960993242177	8.41658351695517	8.08217448204996	8.46252906930112	7.9578933848171	7.91007259022887	8.16526887511697
+"KICS2"	6.14782415742423	6.45718866223775	5.37419027487028	5.75628449337757	6.13922436859426	5.99303121155709	5.68736858243139	6.1522567143158	5.89556091112807	6.24805870188887	6.63303002791393	6.17728181386353	5.77857029162863	5.9841263243859	5.68324864263083	7.11853865592041	5.74637992343394	7.21358679159901	6.37685322606845	6.30368741074654	6.15940629864024
+"KIDINS220"	7.81456916501176	8.12973245002128	7.74759470039753	7.57758198176486	7.30452176594906	7.5292138862662	6.83452560767826	7.48557617173835	6.9201350485715	6.88620859078034	8.5702875886789	7.56345733857909	6.89005152753563	7.25594104198086	7.40784310178585	9.08608925871617	7.64805948348852	8.16855486471879	7.55752597261301	7.16243759908828	7.73425146096293
+"KIF11"	3.83353097716374	3.55365444567866	3.92013744550841	3.72255031654506	4.37997540087306	4.07792606942969	3.70034397628044	3.71251278834355	3.83586897020827	3.99727399862778	3.7044293974341	3.92174563043336	3.72442335674021	3.79340624972589	3.90527208519706	4.03307549765904	3.79340624972589	3.7076100943319	3.79340624972589	3.72017397089127	3.5866553126035
+"KIF12"	6.13117479283889	6.41383771117529	6.5430105192102	6.66138779928942	6.2496463535154	6.29480107343602	6.4381812179853	6.29430090802031	6.27525568734282	6.6395214710813	6.38272119191139	6.43613376095778	6.30862983709134	6.21840033687325	6.46218734035357	6.25312628886909	6.61188266103122	6.34645598358286	6.45086162271077	6.09614722730166	6.6333286794222
+"KIF13A"	6.1817677728604	5.99691948481442	6.07725247209003	5.77415390030655	6.53851495905203	7.07582543658994	6.53259054546832	5.91423351962887	5.75999274188423	5.53002979816452	5.67434438642474	5.66983081947235	5.86803387026521	6.30570352019254	5.54031681941765	6.07439949425684	5.70646799116831	6.77326590819466	5.5339510503873	5.63522804878833	5.46273236091624
+"KIF13B"	8.7737511527319	8.52619710450663	8.32315144306117	8.0629635786898	8.06934947970652	9.03986573880753	7.74801098903089	8.04223894343269	7.46578752632268	7.79803519924136	8.8767685817705	7.80535172296405	7.40407324634457	8.40375328342774	7.76638868832451	9.36012883866333	7.96725897200948	9.51827827671835	7.8338701813452	7.64380917374899	7.97012762264305
+"KIF14"	3.38227315721138	3.36317777179737	3.47334418155363	3.51307328466856	3.2588562825902	4.16452517264375	3.52696137765657	3.5323857042159	3.55804641809941	3.47634700598775	3.43917318720426	3.57040340418555	3.50245200808768	3.55952354490646	3.70208760563363	3.42793800071621	3.47043070746539	3.31122934806173	3.44437450030129	3.42568176424909	3.50310234788329
+"KIF16B"	6.98977414472391	6.63781248041028	6.96260373952372	6.51140389539809	7.23647572022588	6.81313095507159	6.62381851761122	6.81904067814388	6.81904067814388	6.46900989165598	7.28909227896432	6.49633606482658	6.41690180802705	6.77861241732466	6.89560234771216	7.39046363723396	6.89569213406348	7.39734845416225	6.83770126073277	6.84251188167552	6.66390004965468
+"KIF17"	7.24443839087737	8.02532978653484	8.29150225634625	8.10195560721149	8.47288763796245	8.14065005607357	7.68083771937412	7.8534830609095	8.05858154942561	8.05802483347608	7.49079943024579	8.27136354890777	7.65705999985102	7.47683833118855	7.68900883968023	7.71124433985315	8.06905911799037	7.99201915142544	7.94717538835886	8.7903890610904	8.03896525319384
+"KIF18A"	2.9598509160692	2.96309015191133	2.73040239062887	2.98505371782429	3.1185745162553	3.05182839715796	2.81805458521475	2.91928741107058	3.27655365379054	2.90072801085273	2.9584110340722	2.94722874633716	2.86064560685654	3.01987932160637	3.0164692203015	3.03669645695513	2.98505371782429	2.89193205025198	3.02581892369257	3.10445188916792	2.90650791157341
+"KIF18B"	6.293434596072	6.29051315101406	6.17388351644803	6.53313960244641	6.31716401829166	6.28113729336484	6.14303707378682	6.10178335664853	6.41906506418978	6.29071950163497	6.09100174811728	6.293434596072	6.42525261727364	6.36168389902021	6.37931958280561	6.3752407133452	6.293434596072	6.27916724462471	6.33364573324907	6.32699446461549	6.18126552651169
+"KIF18B-DT"	4.36490679072851	4.63056834095502	4.52963984078853	4.81314339748031	4.45077959482798	4.95710776104338	4.99582372196161	4.68083165926083	4.7162588554517	4.78305506854491	4.65294548562346	4.67845028022048	4.78177838300028	4.51855584654371	4.44280487141678	4.52576595406463	4.65294548562346	4.63225955805857	4.75799280259008	4.52576595406463	4.77138276833065
+"KIF19"	7.61218318996615	5.52685074927608	5.52099418501225	6.53359196802567	5.5740302090149	6.65274085701943	6.66510699858147	6.36040950099415	5.09122390903668	5.82552644466732	6.03501377611232	6.29077456371252	6.16712209274182	7.02415510029774	5.68519644295041	5.93117398469806	6.68245872638667	7.17609047509655	6.52513613922778	5.36900109245826	6.05096210447801
+"KIF1A"	10.2823567835203	10.7855633525119	10.6433207088597	11.0119896161471	11.3121798364418	11.3525366195244	10.4101429978817	11.0652534168098	11.2699511870733	10.9953191784151	11.0087631607316	11.3506339606489	11.3799309261369	11.2502430278573	10.9216704819164	10.1722491668569	10.7985767186391	10.2244110830365	10.6648543719825	11.2565063967597	10.8170001900211
+"KIF1B"	9.55828383937398	8.37755992509637	8.11423376261659	8.49534267363267	7.68701963799667	7.52887169679872	9.17875568285602	8.21224406008699	8.18053162298176	7.35899449417881	8.90072284464325	7.41897005461575	8.34411166336217	8.24198132284451	8.47891907949512	8.52440005268962	7.54192984898481	8.24228752892498	8.29973280412921	7.89709961958705	7.23725634445289
+"KIF1C"	8.31969273208918	7.55299662673892	7.53896149159429	7.71451329536257	7.41732659096143	8.63680822430263	9.01411794688475	7.7071240418671	7.89802488613957	7.14542862017894	7.74999020769878	6.88585009640227	8.00904505706388	8.50952689527301	7.86861015478621	7.8520417817411	7.49979606608071	7.91938384473694	7.73610129867633	7.10651391594571	7.32073972801258
+"KIF1C-AS1"	4.88548364385296	5.1029293368049	4.8412177572166	5.46593109549628	5.09370294023209	5.21163921984957	5.10833275369115	4.90944362634121	5.28101233754561	5.16781755717223	4.89753038623098	4.84690267812812	5.04083851844879	5.40471451193297	4.95771342590708	5.14348568949571	5.45482013381882	4.78558107822744	5.07894783153589	4.96644258838601	5.08926397824651
+"KIF20A"	3.81244370872935	3.62662792274404	3.54798755785897	3.59035006425724	3.5555606189396	3.88342629337071	3.38116602135189	3.78204056874707	3.50959018686403	3.6361916974242	3.56177250445676	3.53863669590322	3.70046487552616	3.82476833540076	3.4181885065802	3.58497320887304	3.56177250445676	3.59035006425724	3.44044854621407	3.53199021446369	3.78931259499105
+"KIF20B"	5.70728517321372	5.88499768265237	5.6128093410226	5.59804497883669	5.83147665145738	5.92466623254362	5.5864166163732	5.6599947523575	5.70582008485605	5.58435872996778	5.68968032060292	5.69832073487737	5.834026627999	5.55272665643681	5.67932913591773	5.80340188635219	5.70425884343929	5.53582041572947	5.68722711673615	5.74456586128451	5.61107301850341
+"KIF21A"	6.44365484578957	7.31887756194328	7.51971486020064	7.75316450166101	7.53028437049027	7.4449934451827	6.84472662346593	7.65679294910278	7.76302327569461	8.14488173679491	7.66279596082069	8.19923494717588	7.96282435111428	7.243553461717	8.06901193311006	6.47232916057688	7.52693620238654	7.06197109821853	7.55404023488304	7.84006760975045	7.50972918283852
+"KIF21B"	8.31700347426248	9.09083912985745	9.33393576677608	9.16818231797718	9.07116732488422	8.941296245829	9.2159351011244	8.4940257243046	9.13995654465191	8.93893967132091	8.19976187814291	8.31418963910281	9.01921057194783	9.08303640064048	9.04515184825972	8.22998065925649	8.82654261972376	8.6491969631937	8.68581750718092	9.1351383323974	8.81911804450417
+"KIF22"	6.26818136165191	6.31411506880118	6.89827352547052	5.99721610058866	6.36507963931655	6.24624496249475	6.41945661845957	5.95219049777124	5.97623612243616	6.24027785850475	6.33028316295004	6.31488992230934	5.97235902382714	6.09470636228604	5.92903069852611	6.32660580776046	5.85988403994773	6.51215178412914	5.87381997932389	6.44972054200624	6.03134023873627
+"KIF23"	2.98340771570233	2.90450215374571	2.94906970106365	2.96537339498178	3.16155333896989	3.04888196271168	2.96684630311362	3.05802511010383	2.77921692442893	2.94523760062669	2.92971262297037	2.89823623128049	2.94541456434923	3.04955099261935	3.02471288538393	2.91374092861075	2.83505654846827	3.1031713595051	2.94763683247024	2.96684630311362	2.92224670741374
+"KIF23-AS1"	5.83025396862024	5.48053929185051	5.84040330413477	5.96791942334576	5.48769581321516	5.80545087799077	6.32112893982091	5.79906978358875	5.78897714935128	5.8036297255654	5.82594021170096	5.7654685237803	5.82648687307589	6.28757556590196	5.78251955220775	5.63747406372269	5.78897714935128	5.41530796817155	5.70951017813922	5.30616031111952	5.84981049791477
+"KIF24"	3.26464499889932	3.31296987098175	3.37920880915821	3.21984029395112	3.23051609901097	3.6272896555883	3.78416835524311	3.1660966193068	3.52334279506925	3.3404377108901	3.32516310054949	3.16002832270196	3.35805911721812	3.36573178076375	3.39492745954263	3.13658086390396	3.27962865061749	3.42086548534826	3.3404377108901	3.30627270553787	3.07659385637004
+"KIF25"	5.73861050755269	6.73512597855724	5.83864695621796	6.47822983301273	5.85634269161091	6.26734731601223	6.44890402025782	6.3341232814784	5.79608450905793	6.08537804096287	5.6924329566579	5.89477565612256	6.44509196365604	6.10430381354226	6.23213929046549	6.6927519739565	6.03228678105205	6.79934847686942	6.19778396697157	5.68767939560722	5.82044835985698
+"KIF25-AS1"	5.18046564779099	5.32404042695454	5.32922121563449	5.71837995156483	5.30904945003922	6.11753933981492	5.83624005446177	5.65859722592425	5.32104977241217	5.28222618195746	5.0323596932779	4.99192220729101	5.71267382577087	5.69966650863249	5.39755800203061	6.17388351644803	5.20207970659014	6.1829209346343	5.74790138152314	4.9039665716554	5.00549183177754
+"KIF26A"	6.7407089334335	6.07583503154335	6.76156506759521	6.08361367529484	6.14962307562719	7.07058701553314	6.80929462548877	6.2257229840962	6.34724078861144	6.1011488268805	6.52066819169955	5.70023554598685	6.49332693362853	6.73782935418134	6.30013390283386	5.67306242190516	6.00400547703773	6.00386568973709	6.19859144965826	6.53481506144973	5.77800579884928
+"KIF2A"	8.71760488344289	8.89134868402654	8.1450746223132	8.54490186368853	8.71713786156669	7.52030491003229	8.12809263814132	8.5910553876816	8.45685884571139	8.49089886868259	9.2231885185427	8.49266010549472	8.58877538620125	7.99000070334786	8.42612592045991	9.52389108982342	8.48658481653031	9.16839461472477	8.52300711763849	8.58877538620125	8.64621761495281
+"KIF2B"	4.27207977583	4.04521179900898	3.98185566254467	4.22604472167878	4.08626182977585	4.67396777453791	4.53674162331119	4.20479628536753	4.1741903484032	4.15577121378066	4.02466603892824	4.12970170550537	4.06834095343807	4.43744936750205	4.04053398940538	3.99868216526878	4.34056457676068	4.03893460020985	4.29494425348257	4.27396221655537	4.32187617644712
+"KIF2C"	4.33749677096821	4.78343794420849	4.67005792370944	4.7069425912777	4.80242776080109	4.50810767741874	4.95530083167106	4.73068552543801	4.86361138153057	4.72586214544893	4.68094260774184	4.52944481000616	4.79002142342632	4.81520528718248	4.66309177277099	4.7474264679628	4.89548285572309	4.58702002157544	4.7474264679628	4.7845429256466	5.00742501925612
+"KIF3A"	6.91922270977456	7.91406571608329	8.11385315192519	7.97020957202418	9.20985805572611	7.50331126624991	6.55522533784265	7.70485382556638	8.54453975328087	8.55456789026576	8.01498445487959	8.68060941437972	7.58843076740838	6.84749765724472	8.41622998405399	8.15131547535366	8.39213921041342	7.93955943877775	8.08789363093113	8.73046407354801	8.49292799401244
+"KIF3B"	9.36957416100731	9.39171703823301	9.4744789661336	9.40667357050518	9.23698349503317	8.52624463510715	9.26059520106388	9.36397009713633	9.59156765262622	9.60653337511826	9.31663725750459	9.56465587527405	9.39171703823301	9.16101721612421	9.66781461662476	8.99074755283407	9.51494338272264	9.07462172284797	9.42848083200351	9.45415688068607	9.49245655088944
+"KIF3C"	9.17704663354196	9.17996965814988	9.35383618678513	9.83010992201948	10.0133778122576	8.76593657800996	9.01812806030913	9.46215496031881	10.1085178326873	10.3899271502727	8.73463733516952	10.048958536108	9.54470031867629	9.43291284465584	9.71049601394653	9.55845536655937	10.1812190286805	9.25339966199227	9.57629827972757	10.5971806641727	10.6415029034568
+"KIF4A"	4.56580571322463	4.4850318609336	4.537699768961	4.92066078888307	4.65029288499483	4.85904778956838	4.41908303038584	4.65941520489904	4.75568971238534	4.73716099557105	4.59713350411889	4.77579101265098	4.68983511674305	4.58727906399632	4.65383256737187	4.75114862087163	5.05372480185657	4.39667054983936	4.85551788063839	4.57136875981535	4.61738986277418
+"KIF5A"	9.76730866064425	10.1592271828068	8.13312158248518	10.2003139044624	8.75109371708131	8.22749840272732	9.98163960611376	9.83533134828644	9.63667680330027	9.68040531616538	9.50012334867396	9.85202661409605	9.92605139509028	9.60841601704903	9.90320808329713	8.20901199749025	9.81881258773714	8.66671068613914	9.87430887108064	9.27751867209686	9.62276030310282
+"KIF5B"	11.1791128335613	10.8335588817564	10.4838426547908	11.0736675109071	10.3369338944571	11.327610307394	11.18481217036	11.1938615501593	10.8477428380291	10.3501435389523	10.9739442232023	10.500112321986	11.2880831810223	11.4307514796392	11.181128558812	10.8244227224898	10.6701397131134	11.0766138496438	10.9163755478223	10.0689750200792	10.70761564915
+"KIF5C"	12.3516895048154	12.6077234084348	12.4905502014295	12.5738384808758	12.4760223447225	12.2687148476061	12.3834679247429	12.5852713979252	12.5931270902885	12.248876982973	12.1843368449734	12.3423615742423	12.5660061561689	12.7520539095571	12.7405379186768	12.0818665956852	12.4552041093109	12.4410519362224	12.4606531551853	12.2428729575983	12.4164571344176
+"KIF5C-AS1"	3.18885277986323	3.41447529815724	3.27162803371841	3.57287540163301	3.51259504254845	3.61182396331455	3.49907232928224	3.34015906582444	3.59166631381045	3.55479387786758	3.53422378175086	3.75764765743967	3.47990840821509	3.548835082445	3.41070784454025	3.61041037286504	3.44176980064824	3.26267207146602	3.61338689252159	3.69820029837172	3.44800240404352
+"KIF6"	5.08961543800521	5.34568668612287	4.67864387200702	4.49736206052612	4.96714505574068	4.59296612421725	4.17665873295083	4.22410838829306	4.37191895597839	4.41762983738799	5.58458467695128	4.49736206052612	4.39375864728667	4.75776419995685	4.08760134636187	5.90936259835249	4.61046419147135	5.54648620575403	4.51757477055775	4.62173894761454	4.34536051367311
+"KIF7"	7.3017038750926	7.0971945005014	7.27610196931586	7.41832620503559	7.07290744470901	7.44180252714906	8.0553102296492	7.19639177425514	7.40340467773484	7.06895657491958	7.10777384333677	7.15462690210228	7.47576767015739	7.65995460217954	7.35262245932943	6.87980403148404	7.06185021053971	6.64845327828457	7.33896681572345	7.18649332358587	7.14484359283523
+"KIF9"	7.78345755809283	7.64512044936178	8.12513752431852	7.5662621377368	8.18158868123674	7.25564839614161	7.50173583274658	7.79135779181902	7.58434760115854	7.82702371799036	7.80179098851062	7.77894439756451	7.75129922881301	7.12416258828523	7.83758435708529	7.84854061720922	7.7848063515314	7.73626280764708	7.7604325758305	8.20606763897998	7.935567847544
+"KIF9-AS1"	5.84459821624856	5.89708195618327	5.77712209106033	6.18902521443021	5.72283637260898	5.81217787402354	5.7440387123394	5.82287033003888	6.20094168509222	5.77073483702308	5.93319573260812	6.19079243707714	6.06186649994043	5.70625463446713	5.77888413596707	6.00177631032942	6.14505941677971	5.63828899016293	6.02700942534055	5.66860459333673	5.96952427404829
+"KIFAP3"	9.81727516018187	10.2285397679417	10.349982093304	9.98156695203669	11.011146807046	9.50655666019221	8.96253172948966	10.1218883752913	10.5308302923678	11.2095477100837	9.83952075583137	10.9510575206205	9.88942502455163	9.15766234707339	10.381926165135	10.6122219988946	10.7681825300728	10.6242136839423	10.327880250999	11.1691143404248	11.2950270845242
+"KIFBP"	9.27536279421516	9.46355874888507	9.41357400288977	9.37374071688384	9.67923945863701	8.47271744056146	8.75549267049513	9.43921453651271	9.25322293548611	9.74410217095168	9.41357400288977	9.59566850633775	8.85807602033182	8.61807749272173	8.89719513841345	9.78081515454554	9.45950647873149	9.77579039828841	9.27953497722994	9.54649169752806	9.61654212548443
+"KIFC2"	9.34007361474261	9.87127753141031	10.2818577194926	9.80433202473703	9.99318933863907	9.96570776197606	9.5881788112538	9.83296213345217	9.87618466560855	9.87882665697605	9.18794246019897	9.97413085701154	9.82849743970913	9.78800102824549	9.38457465232398	9.07699778368653	9.96438168249831	9.27452968643858	9.76429968887869	9.98492311166158	9.85057453887388
+"KIFC3"	6.01655927758085	6.2647715926623	5.73781981016369	6.39493030963995	5.70706994035967	5.85410331534022	5.7987283355364	5.9089786336496	5.96044813952783	5.98600102296856	6.47070089774888	5.98600102296856	6.30711290797923	5.79976601284619	6.14617171772815	6.70141481187238	5.8668976310647	5.58001237703351	5.84964645876005	5.74692377212946	6.1337590205585
+"KIN"	5.24124596819083	5.85321035726845	5.81083602606724	5.35288565515055	5.82445866707359	5.05980964187025	5.32463101942643	5.61437367941063	4.94705800783794	5.78605707250265	5.78335060123193	5.2187707901557	5.09829690703002	5.4153897707614	4.91122774132199	6.31155943476329	5.05452781708695	6.30542392003725	5.50076182085259	5.43761219978495	5.32252249287779
+"KIR2DL4"	4.66784483447504	4.58700889270223	4.65884429715249	4.82215303338482	4.63796175217307	4.98744337047478	4.6930876968277	4.97474136981785	4.98513663599088	4.47604235765453	4.51821113628963	4.4753920964351	4.93549778197313	4.67938571273579	4.63450738047284	4.79427643683121	4.46441531091559	4.68153937970037	4.86888864236504	4.58036167078971	4.68153937970037
+"KIR2DS4"	4.37722948175116	4.74740710805749	4.47622632250183	4.75658521454703	4.64257718809396	4.7043582337504	4.83954744613135	4.68586573951502	4.6473602783976	4.65797956587765	4.50758462429123	4.46472975187912	4.67145402520325	5.02332361642864	4.7399380635031	4.74380408729844	4.75799280259008	4.20291384464216	4.55777094016073	4.56522013156964	4.72842626268431
+"KIR3DL1"	4.58689193537783	5.00085833622707	4.78672948028106	5.01572619131754	4.83850979478826	4.9149370902383	5.02126744902171	4.85057181770624	4.66467422090904	4.94415476807272	4.6660204908713	4.87598852855677	5.02898981073918	4.93504212479728	5.14810297108076	4.6659030183313	4.89490364791679	4.50543732409258	4.98200018460747	4.55816754366874	5.08558375026983
+"KIRREL1"	5.69054310931998	5.56035088690433	5.63242546965916	5.73633086652297	5.47812200713807	6.46239096654081	6.35579269926282	5.70280926412443	5.72808073498105	5.65127478607904	5.50759951820424	5.60303778309924	6.00670622707959	6.25766224172522	5.91303758127091	5.48647247569621	5.59180620163919	5.17727597866944	5.69752510941658	5.85739302451244	5.59486353613485
+"KIRREL2"	5.4949330445464	5.24469822266823	5.61365293098007	5.35475447328574	5.4491878339395	5.58544903629917	6.11367082491704	5.51470686871889	5.89660275831828	5.45068371408922	5.06071505316368	5.32879250812174	5.669126472274	5.95236830550127	5.3599613148005	5.26978250233072	5.27790368765305	5.05520659350403	5.45750547183394	5.53500613935614	5.669126472274
+"KIRREL3"	7.3103183813702	7.42738141894133	7.97224602326267	7.47325404951445	7.57189948413132	7.54040103612385	7.16115825591724	7.45204643358829	7.45410700295982	7.17110167998707	7.81845733031035	7.24721202973796	7.51769886040008	7.23090226513274	7.26331984274854	7.90524173349332	7.56352299637651	8.08466056349265	7.19004832735972	7.78879477048524	7.25159667403806
+"KIRREL3-AS2"	6.06910392981876	6.08267233849352	5.79114734971711	5.97325139048016	5.84972035664683	5.79632675551995	5.97325139048016	5.93638830263814	6.23567789432085	5.95416537205056	5.97325139048016	5.98839186229343	6.05872832455602	5.8668976310647	6.07487710939081	5.97325139048016	5.99370467638289	5.84831637790556	5.98973627564888	5.76472720620576	6.01684488175497
+"KIRREL3-AS3"	5.14510208336765	4.94929961017478	5.31026704623735	5.1612518601002	5.2474178011234	5.39256889886875	5.51136095006361	5.37208415959106	5.37423748841424	5.06006889764205	4.64559554391282	4.91770665809905	5.12858002010783	5.64878363813812	4.78997209808628	5.36401241399281	5.16103534680056	4.95495154987278	5.14510208336765	5.19818618619987	5.30397023300751
+"KISS1R"	6.10718491925796	5.82643177418316	6.80765096402435	6.3286353483966	6.14117216891384	5.9962651870297	5.46253195165984	6.3356659693939	6.14117216891384	6.05440612872395	5.05343012863997	5.9749748216857	6.07650775961619	5.5552986114733	6.22583359097049	6.19047787239384	5.9002745504767	6.75787655816299	5.92495745580797	6.78150577655649	6.32180456790315
+"KIT"	7.43018508944851	8.0210091338809	9.17103869290322	8.34125682240652	8.45242876065213	8.11831047033205	7.54801714496511	8.04208365749965	8.33921861326328	8.27053676932053	8.70967152299622	8.4417839078985	8.71652078513903	8.27614604094294	8.48269193548345	8.23366236044277	8.29719610454097	8.34611736323966	7.93016246313396	9.1752749617612	8.67208289809218
+"KITLG"	8.88134374306915	8.9923463429168	9.40372725254288	9.25128264049085	9.47510242207203	8.1880464745076	8.35103821693932	9.0470505895862	9.8263431635968	9.48818716932783	8.92095379623604	9.2569746466837	9.26201103902486	8.66777325229168	9.60259496414211	8.72907499825574	9.50267249471306	8.9353930369306	9.55400616878104	9.80411415422325	9.73286356350726
+"KIZ"	7.7815972241504	7.49551639348435	7.58892901734945	7.62731793548938	7.3278572040446	7.98547019073604	7.50926482223622	8.15511749946505	7.34188311770863	6.86075265817681	7.8526441446061	7.87180456218355	7.35784294737509	7.59140923912429	7.99570659229098	8.28938843706445	7.98655246372527	8.14230259770985	7.87603952766233	7.11875187359959	7.3508248408958
+"KIZ-AS1"	3.16248380434192	3.49907232928224	3.32145838523197	3.51882799907098	3.51435200560247	3.50805472163615	3.55387719882795	3.74259797511204	3.82927256282924	3.53076072576129	3.43116767188497	3.36372405825842	3.49213283182933	3.53231817977078	3.68743841310634	3.58849460622507	3.68312794534002	3.52179637162956	3.65601753640842	3.38952374296717	3.53076072576129
+"KL"	3.53563885221081	3.47115147475991	3.58571300314324	3.29007548270481	3.65725178454589	4.54819306291604	3.55229871025616	3.57619879172653	3.22126566152909	3.33004024816593	3.23178122513165	3.20425387212091	3.83594438770491	3.8258596052366	3.39567889849495	3.00279417941314	3.18175450427025	3.46693614438291	3.46521861194749	3.63051000712065	3.43176862382437
+"KLB"	3.63380446419854	3.63380446419854	3.5412699724865	3.70916927143368	3.63380446419854	3.34215571292522	3.47506927911312	3.74047246536651	3.86209430783194	3.60683511117734	3.60973089995333	3.63380446419854	3.83614627651683	3.78608328762995	3.75600528135941	3.3922675855748	3.57394958208338	3.55084236969954	3.63544488659128	3.2689996469202	3.61453023685555
+"KLC1"	9.75861388705589	8.90924133713824	8.90043391942397	8.9949447752711	8.57588382604457	9.4655865467746	9.67585547239977	9.45543764894308	8.7532729553912	8.39041284577407	9.18730245381946	8.33846019908747	8.90117164049526	9.38259838179876	8.92469826926902	9.24483487586276	8.91857826934818	9.51212358016667	9.05641944686406	8.38889059085897	8.3754442896012
+"KLC2"	8.58713071767159	9.14042159721878	9.35079431385986	9.09057107522062	9.49766534152616	9.41287459247963	9.11846440771234	8.84481845159226	9.16815017345851	9.23814033345737	8.8116128940428	9.161385660297	9.72743370055071	9.33719397978751	8.99795561874853	8.31272361417856	9.46531567016492	9.01643926587127	8.79180297941013	9.23224969885988	9.3829636008576
+"KLC3"	7.85919668640186	8.12661314338855	7.804782659534	8.25516988528445	7.93269944468835	8.19927895953935	8.42551107725537	8.0579578298858	8.25516988528445	7.96447271557687	7.8963739037662	7.91496895529972	8.53624360150741	8.49547708622409	8.18421145158049	7.94073220976666	8.18007647517833	7.59712265092893	8.16165071948116	7.89469889296669	8.23093147595944
+"KLC4"	5.96972066792143	5.99309166289578	5.64274761251224	6.13427048972437	5.95023960200836	5.98806404792358	5.76428622326485	6.26192834195866	5.83535050755975	6.08183710811612	6.30659372996124	6.18906859916633	6.37538487278453	6.22616520643446	6.06897684686991	6.17253210705641	6.27187335643588	5.85748271715311	6.12847089168474	5.92567780979696	5.95316000110712
+"KLF1"	4.93400682292845	4.81828819665198	5.02338033442878	5.19884935607909	5.00533199851828	4.98054309584365	5.13907595378042	4.82051800553441	5.02911786542874	5.15024347239071	4.67627923982005	4.7873945127066	5.02949601578981	5.28637596226593	5.08537479231647	5.02911786542874	4.90835663239268	4.89770224971324	5.17531102246592	5.13784185973039	5.12715769570915
+"KLF10"	7.9549088130507	7.22409176387006	7.26813291106299	6.63501540346708	6.75258768740972	6.92591092620176	6.7947385941709	7.19972319225942	6.52886464843606	6.67615270950107	6.61338745621936	6.5733327073054	7.0257005326522	6.79727506221079	6.85945488294523	6.33826500249025	6.99924186796406	6.59485380991891	6.92345768051712	6.91739780508534	6.81456736720282
+"KLF11"	7.65480194061524	6.64942964815253	6.73073596132535	6.50802715930732	6.46691097502738	7.0408100481797	6.38131436112592	6.64942964815253	6.18940406649274	6.82571806762229	6.90828720996263	6.29567726090731	6.34463496107677	7.0326389556586	6.4420881596802	6.53069668730638	6.80016817824149	7.16001964527083	6.43809328246646	6.73833579171416	6.17197633051018
+"KLF12"	4.46532400886439	4.79897303438718	3.69284005252718	4.47191411811761	4.48986989929284	3.79689040851481	4.49453815889081	5.19775861748377	4.40137721243976	4.36324129826329	4.2493817728559	4.70581000797293	4.34801682665272	3.95170662355842	4.41080651902178	4.3082198692226	4.65595013831339	3.92977038459065	4.58020523697835	4.33273322240656	4.38013666960664
+"KLF13"	5.1386241850607	5.23045797676844	5.3754082435413	5.30887305362117	5.37374158101716	5.32563158251147	5.10261047898882	4.8281838931248	5.29937712308063	5.26265897708434	5.18940583033284	5.28567292111545	5.48420408411527	4.92010352413082	5.12986445970594	5.00665190785899	5.35227360577491	5.17165401705442	5.37454939188221	5.26319872175202	5.3129811302594
+"KLF14"	5.57667184159845	5.55444679682188	5.42401432423472	5.60080118958008	5.62035841481436	5.85867555854757	5.8497725164517	5.29632954792283	5.75790919260513	5.62959347494855	5.16304009926144	6.02639458845706	5.89598215642574	5.85717230680691	5.62959347494855	5.53146338166	5.85968736749488	5.06287662434379	5.73570326688024	5.62959347494855	5.66369446981472
+"KLF15"	9.66696754626189	8.6701481768011	8.33584298843381	9.72745604877104	8.62024146970612	9.45531954400851	10.0219797892562	8.97396498485383	9.16881850845783	8.81471649395071	8.73155473027541	8.80872125134082	9.20038157794482	9.65492909192377	9.28173120647284	8.69292524088308	9.13044697081197	9.20465286607276	9.29944010072702	8.67885793341116	8.32470927221925
+"KLF16"	8.00686924828914	8.15349953534921	8.08111082922889	8.37041054518975	8.20485184577083	8.6988085715466	8.85939362607595	8.22472225592551	8.29973348255019	8.31043790188577	8.1068260767782	8.37416798403479	8.55437458597414	8.52008621020457	8.30690782395896	7.76360735456213	8.18277419689045	7.86348538891998	8.39929043918034	8.27197545136046	8.25856358211214
+"KLF17"	4.58550775324392	4.79000236482749	4.83727112486665	4.94588599862484	4.50231232827903	4.83633845385928	4.7865911077875	4.58797410279602	4.74871142480747	4.73789988747048	4.58991090260346	4.69439369629525	4.98036173994563	4.68526875915891	4.62345364146482	4.65458822225877	4.84679266843271	4.47481988830818	4.69857787640228	4.6035424558298	4.89039908827896
+"KLF17P1"	5.31270725536398	5.34470580186516	5.46491432423292	5.81195438611031	5.38025356772343	5.82713016446499	5.88356619857323	5.52425573712004	5.690833272042	5.6365579075744	5.53494073317524	5.5941733389914	5.81930875479887	5.8069227414972	5.68181443300477	5.5416937103325	5.81930006801306	5.46615393393497	5.99963247885892	5.5184830495771	5.70750634698694
+"KLF18"	4.20291384464216	4.45947100134372	4.32351478355936	4.65011113741301	4.36076413678443	4.41699707015699	4.47409806640859	4.27719184476073	4.47992853820077	4.41400526935633	4.24185901225909	4.32040751374466	4.51498111444106	4.47927408948103	4.31033596966242	4.34690538791673	4.48260680989726	4.14777308207475	4.32712419587442	4.24133672190372	4.49826638060199
+"KLF2"	9.95011345997779	8.82974325425038	7.87107729486594	8.27659601732688	8.00951829504135	8.69974858147499	8.669214012169	7.74239495520816	8.08446129066348	8.45188624938604	9.29930961374245	8.6047208121227	8.40501611839727	8.87029907027495	7.81599334578644	8.17669558440978	8.45870130064967	9.02248572304594	8.46667977552656	9.57338851400505	7.58056986449103
+"KLF3"	7.71456670335674	7.25974898347677	5.55657787173045	6.51484021300501	6.7480172843078	5.99532638483195	6.70184503480271	7.08726700608714	6.32601643566652	6.63727766014228	7.41629370776996	6.02591152109525	6.46318800075579	6.32517206536556	6.04743708274677	7.47649380241592	6.45188327874988	7.63131795580703	6.83134369540595	6.81172083157	6.55696275129576
+"KLF3-AS1"	6.27987953425245	7.19136956013892	7.45807706383911	6.88017047310974	7.42152787067329	6.57878381945846	6.55304369133352	6.25778419322865	6.28816126081896	6.41123399361255	7.6991834519261	6.56931008235968	6.68561782891123	6.72010091336405	6.88623247614843	7.15711859557954	6.4042849999291	6.8252834374358	6.53411418317228	6.33811935605423	6.83260454517476
+"KLF4"	9.12269354342816	8.06097005942188	5.23298314995123	6.83201951730031	6.79970774802508	8.46062721028319	7.06973921445535	7.85279501751571	6.14117216891384	7.64647288150322	8.02643020950168	6.83537489932243	7.11222678766892	7.40688984666938	6.46349116872224	5.7193039327767	6.84782941417105	7.99465742001226	6.88364862364023	8.45193112933333	6.03314313003854
+"KLF5"	5.0704080364032	6.07864531943005	6.36379541086297	6.07864531943005	6.22576760627422	6.77801046109037	5.67634771262248	6.0088375330385	6.05461060861279	6.58003672720706	5.36230504299451	6.39815486738656	6.28384897593844	6.38397117344353	5.96580181686131	5.66528852471412	6.29283612208912	5.23436120385198	6.1083158820604	8.09228721875549	5.87746683376004
+"KLF6"	8.13533565000118	7.36924072849378	6.62048326071164	7.2237516561954	6.90536572046576	7.95831471747448	7.58069910718471	8.11969203801287	7.06507625270527	7.44384264002488	7.32564565170905	7.47788467457288	7.24675911218147	7.30473122083171	6.7771916674343	7.03113045214429	7.46243837103242	7.29423932486654	7.3829341742671	8.061245793973	7.40662511270368
+"KLF7"	8.38084205418258	7.97664053831339	6.79101194463347	7.85323105156814	7.59384001577093	7.77450269362231	7.5247295454083	8.73630954588675	7.40133808450103	7.73464729798361	8.32049013688348	8.59934336955872	7.49979394588556	7.44881404657889	7.26907253982794	8.46678383670191	8.12804384792496	8.2266536863052	7.86469834621649	7.88095934085826	7.86858896937931
+"KLF8"	4.67635562807964	4.99527793868532	5.13876436183924	4.69175094458816	4.92363292793471	4.55922972709845	4.69491848366565	4.69029008266782	5.34489953489483	5.77140343823731	4.69175094458816	5.51231046961915	4.68381730931786	4.99169548668545	4.71707940832869	4.65136207296609	5.09565741854079	4.6787605286586	5.18172029999022	5.74751770429965	4.77611283576978
+"KLF9"	7.7203382563442	7.62359728870558	7.08680259423361	7.86333922150254	8.22178350951602	7.30730183455993	7.5189641748731	8.36810334612749	7.88323536374526	7.89572052029293	6.84972292830532	8.70434490825464	7.35047740067034	6.88446328538064	7.73675498797018	6.9656334627493	8.67783141509534	8.3617308290088	8.04052113823668	7.68240371039114	8.12697580885231
+"KLHDC1"	7.17824213279716	7.56837113485332	7.69348106828372	7.07212841469595	7.51418635335049	7.00111695506842	6.3810069322925	6.98546156300703	7.15221834588628	7.43663205367547	7.81881101826881	7.22909446929975	6.82690620629338	7.01289236700537	6.73396846007236	7.85554293209978	7.56788957454077	7.90725918122691	7.19717613283871	6.86154469481016	7.19717613283871
+"KLHDC10"	6.58687165378631	6.69982480100805	7.37545791504913	6.94505835952157	7.80302539851174	7.98547019073604	6.88388170087791	6.88643862258511	7.27779837343856	6.9965200618849	6.55995183662721	7.07864863283875	6.84758793449003	6.80620647061034	6.75972909753283	6.4219334021516	6.81920834984519	6.60980268050709	6.8075821870944	7.13427135190674	6.87034645032971
+"KLHDC2"	10.1594514001951	10.0288971873715	9.82613107260594	9.92734369810027	10.327880250999	9.83855811712788	9.86905843063349	10.0102117570465	10.2639269572185	10.7286616495274	10.0759606415693	10.3645842529592	9.78133869502552	9.77605172219189	10.2158294375581	10.255873762249	10.2626804689168	10.4412488582453	10.3611488753247	10.348471479013	10.3189866281233
+"KLHDC3"	10.0333731160179	10.1050667511746	10.2767962988136	10.092733765479	10.6423813390466	9.98517442640627	9.90789273231571	9.98659546777395	10.4653977501937	10.8788449193892	9.75343856236255	10.8433795680982	9.98849050521626	9.79762235576209	10.2519936890499	10.0241949096001	10.4363734718482	9.92991860600362	10.2939165381777	10.8453982996062	10.828263934793
+"KLHDC4"	7.60528291421404	7.02523361147708	6.97516746539439	7.2854896516047	6.92010292461393	7.12724934229179	6.68659587482029	6.70898445584962	6.91438709392853	6.85630887776868	7.42992551355492	7.18934648228663	6.70283273623544	7.21275851227008	6.94839174418475	7.22765525735647	7.08691179294825	6.77667478075815	6.84023493214536	6.85053815797633	6.63974547256747
+"KLHDC7A"	4.48405816687309	4.50945512192857	4.34014933241962	4.57512919121534	4.69895205803882	4.39842796661328	4.62238916628399	4.51721965550901	4.53138181439947	5.34354772087524	4.57512919121534	4.44073265914264	4.59461930077493	4.57512919121534	4.55098472676233	4.49506410799979	4.69456350011975	4.53138181439947	4.72814452381138	5.36724102242157	4.5462663855899
+"KLHDC7B"	4.4483239677795	4.57115413963846	4.44027875932083	4.53082649505533	4.55273866630611	4.9214562661971	4.68863270332495	4.54786005428585	4.33932407773906	4.36650999866743	4.27054106980402	4.39892887189659	4.7480628318044	4.71929624762837	4.47901214064157	4.27300968493839	4.56277359051324	4.27870300633036	4.41986597839272	4.60908114271294	4.84958908946356
+"KLHDC7B-DT"	4.33717104755655	4.39100782046703	4.49497619638741	4.51359097195376	4.49759152201731	4.72930550764217	4.4421602840918	4.4552638438445	4.42969166252128	4.53147419920739	4.16800346230905	4.37408479707324	4.53812082529816	4.80262036228781	4.26711538120383	4.34932422891391	4.43116520667131	4.13287065943439	4.40187645130486	4.31466550699838	4.43116520667131
+"KLHDC8A"	7.25603229189364	7.52204937146003	7.63286792220484	7.60724797945476	7.74701397787267	7.79295653775131	7.49495211114579	7.43400036255364	7.64351507380943	7.82257105071975	7.25085046692677	7.36185143217443	7.7979191624161	7.7741533116465	7.88310927268621	7.5857238812094	7.70968713003532	7.36661121564806	7.3809695913312	7.9640275361838	7.83524591773089
+"KLHDC8B"	8.76555314344595	8.28380119625974	8.52067639166588	8.34623621046223	8.20916373162985	8.4107220920366	8.51199081673593	8.30097187182903	8.4101676346027	8.35393867610697	8.07126312367264	8.14663011802409	8.31714450590029	8.25838530057744	8.26433954859256	7.79571285490185	8.1805167268857	7.93805706843141	8.40268415406933	8.4781081412086	8.09245589141861
+"KLHDC9"	9.13018722346668	9.30479972652681	9.55315176918246	9.15988676345695	9.58744921315166	8.92001129088773	8.79542740160801	9.23910162841746	9.26754085159715	9.45559241313721	8.90845611793632	9.20492207298927	9.16054717986483	9.15988676345695	9.12025318400378	8.97735869982449	9.06623381729627	8.85464495607947	9.02901810913686	9.37647286337442	9.26754085159715
+"KLHL1"	3.44068290577752	3.87661100939894	3.87701248486126	3.5528267745228	3.57639220861677	3.69305848859646	3.51866848696574	3.4366782612259	3.02103888899848	3.36620062152374	3.51866848696574	3.43400790705231	3.50783737949773	3.72103305030149	3.78378555787953	3.33235019729753	3.47298025610708	3.88509171534632	3.56979544545245	3.40674692944928	3.13866028899977
+"KLHL10"	4.13480972298017	4.08623429674027	3.95877054381996	4.0574994867354	4.03793483524519	4.05284512842691	3.84598010766865	4.22646168496374	4.60629437827689	4.21349023573625	4.06257452058955	4.1338155390393	4.44822819724012	4.34177161673335	4.17685357429733	4.1168247007376	4.32701169134649	3.94533611212851	4.16019249151667	4.09486697735777	4.10005798392449
+"KLHL11"	4.76435454257733	5.08690080319328	5.06317663229899	5.24014297312674	5.48697306314843	4.75874605265983	4.89217525086013	4.8771027706186	4.91912212229306	5.37351648902581	5.06617381401938	5.58667587550104	4.9073222207617	5.16351922803053	4.93832527352797	5.28328756091799	5.04825261858931	5.35659224638432	4.94729135247295	5.18311503881625	5.38221083157701
+"KLHL12"	9.16288622320579	9.18682577755451	9.48148060374226	9.00817893945548	9.39304430887625	8.73014807345709	8.70980488210699	9.124447230168	9.20855551799155	9.44417096642192	9.02504912956257	9.13067147692695	9.04689854710146	8.78295884668952	9.29529432796187	9.21987061993742	9.25254004430507	9.28974036468523	9.23951661484823	9.58067042979165	9.31060308899423
+"KLHL13"	5.55687427570297	5.89716464811375	5.58113983595545	5.82005523771308	5.86278505396805	5.77872950452485	5.38014463107583	6.0080040869417	5.81289586109377	5.62734800964045	5.81420021132103	5.41585601267709	5.85261153445878	5.4556708905485	5.91423351962887	5.48813138908803	5.20157345086081	5.95202072375139	5.63179459182343	5.73084931458636	5.70509546974983
+"KLHL14"	3.04334266899815	3.81536065845327	3.99339201957487	3.2371083959586	4.63751971822516	3.67287085632046	3.32245451550107	3.4939720397731	3.31992015633717	3.66863897471466	3.26568295660892	3.62281293710459	3.00260717727122	3.19731453466749	3.66331277108006	3.56567892001205	3.21298117002204	3.4183556674483	3.57491419019119	5.02218392526636	3.64564808150171
+"KLHL15"	7.18284653518012	7.13081736787554	7.13081736787554	7.12541516528508	7.33139334412306	6.82632357330451	7.01561234034894	7.73873465708817	7.30159189984964	6.76289919288772	7.11935693021924	7.13081736787554	7.06819189929568	6.45489171060019	7.32699426370751	7.02693630070765	7.18893183503377	7.41428393090215	7.10664439938553	7.0225050535638	7.01411459777839
+"KLHL17"	6.47681295552492	6.07751523640929	6.28552169706969	6.69851517735478	6.06277216963323	6.92565534921379	7.00114192010537	6.26658351049218	6.46041054166739	6.04748077413262	5.87367534571857	5.77862135552763	6.48082557321539	6.72215921664424	6.30326882145089	6.18490612912239	6.20300683689721	5.94289827652249	6.3659589576537	6.28552169706969	6.02831976926202
+"KLHL18"	6.80589415165731	6.67964102013576	6.38250091525964	6.00335208964665	6.68991709560082	6.09415594913	6.52083770546976	6.74307972251646	6.86224142087556	6.54020210292112	6.26953053345711	6.89600573637334	6.30539641383647	6.1192725298418	6.61322827417875	6.78665571624923	6.36607189716019	6.54441520281797	6.30452239396828	7.11943108465652	6.65557567367966
+"KLHL2"	10.2424459242578	10.002199790983	10.4735707170803	10.8799125042072	10.21601433295	10.4244200774829	9.90055262646121	10.1285917041237	11.0220564312446	10.2627244772224	10.1164698507877	10.2884975663621	10.5668300300287	10.3315797640909	10.9206232492367	9.93937810414587	10.6083888218285	10.5877723196416	10.824908836236	10.0698095855674	10.3364139979462
+"KLHL20"	6.96263924279519	6.76744711151257	5.85753529038584	6.44691439639128	6.7932570645231	6.33826500249025	6.72613292219606	6.56777760043105	6.33786252990881	6.8788264078598	7.00613574845347	6.5607929843912	6.14214476769302	6.48850627244572	6.4071539723676	6.76641627621404	6.45105881029617	6.71563745604977	6.42952395452789	6.76677087462767	6.64532456338248
+"KLHL21"	8.43638160843397	8.02160173231324	8.17236285048084	8.49791052438463	7.98336157630651	8.69227581598856	8.80901735313829	8.35670325931953	8.57853056089218	8.01837013865912	8.13323902755009	7.9942288294913	8.41015656876027	8.17752623597308	8.75352926238659	8.20626311873267	8.28901879094783	8.37570459961553	8.42675052622177	7.90445336642461	7.95995852147987
+"KLHL22"	6.87805292457172	6.69207897953093	6.19484979478792	6.52828970168712	6.96384901564886	6.32173057403529	6.71226207119315	6.62282376208577	6.60502440549011	7.39645328495126	6.70028119589669	6.96407873307764	6.18381635949423	6.60894868446148	5.98154090894322	6.81475864260431	6.79595920335236	6.35430717119677	6.39262794980848	7.43036620860182	7.14688030361431
+"KLHL24"	6.3622098387129	6.02603756685646	6.67335292003043	6.3796780742152	6.07131537846725	5.37551141264752	6.05137538323114	6.28719165187776	6.44862564534914	5.94856990714929	6.64942964815253	6.07650775961619	6.3850449786764	5.32338313646833	6.95475178836597	6.28323387142748	6.86874308195481	7.06753672138224	6.42730569067699	6.04462879909585	5.98507657809853
+"KLHL25"	7.16115367752187	7.2964261357508	7.27351963928135	7.41587381573284	7.14738832808681	7.40776221672571	7.45683200414875	7.31283083568839	7.26241499742363	7.3376338863776	7.12550909515724	7.16652711060406	7.49469342413991	7.39001816186103	7.35405989584959	7.31552028366033	7.23262809184468	6.98003188529718	7.23982737143772	7.49999390790405	7.16782461896161
+"KLHL26"	8.87732044522531	8.87042480663644	9.03461685511523	8.55294603707188	8.81722111945628	8.29016066948095	8.72811033222654	8.24451818181431	8.60323219926757	8.50803316390205	8.68022187051642	8.55294968341331	8.00329663610897	8.37714192811902	7.87748649280591	8.52118296064121	8.66481744368155	8.76499848318457	8.39048648407835	8.75124570940102	8.25061434347749
+"KLHL28"	7.15036467210761	7.49342792072677	7.56645653404948	7.67165015966518	7.54215796154071	7.01505371072374	6.82968168070182	7.50917990711278	7.63334593345647	7.02771038350416	7.46999034227526	7.34719431445303	7.780775161387	7.37808008853853	7.8552610166031	7.62531902238817	7.41907094150806	7.55532495651099	7.5898517842797	7.08084767110135	7.45613598152531
+"KLHL29"	7.79632790561651	8.32461170628731	9.11047344415554	8.71911391267043	9.05734845636021	8.77229820430043	7.91634254983271	8.06996204934344	9.04044817445306	8.6164685741778	7.57007368068692	8.57942880633926	9.01948493233873	8.43613103806098	9.16540095908673	7.76190844108125	9.04183010472392	8.35614008825972	8.46485123937787	9.06546466218195	8.98325133741101
+"KLHL3"	9.29593830197657	9.39401739308669	9.89070562993628	9.52222139448801	9.32494434198636	9.46039667204851	8.74051853958077	9.19788400761221	9.30820622819466	9.20456456096706	9.17541629658357	9.23167145539643	9.4074708289178	9.26318923341111	9.39018210682179	9.65280227906437	9.48713581588336	9.85876311115588	9.36992642240749	9.73015006620977	9.35168563613367
+"KLHL30-AS1"	4.78049304657308	5.12057429431316	5.09775639753801	5.31095052776507	5.05188625699288	5.15749945916486	5.11929447046162	4.9280633901694	5.05393447351056	5.13985531826509	4.79387777853035	5.21774279552834	5.22031404129107	5.41577552429952	5.09431034685938	5.28333451412524	5.10967923184728	5.03233844792249	5.08819329301016	5.01825882970438	5.12057429431316
+"KLHL31"	5.21300844464608	4.92437688231098	5.49949736592483	5.31028255272211	4.92417349131543	5.50076182085259	5.46576823308775	5.18310302116327	5.35419841588721	5.2634510881722	5.23467178620457	5.48764285169353	5.33858749671136	5.64493466970654	5.43499162032801	5.10855297978736	5.35765202086319	5.38594711158014	5.42524687603376	5.15272679587125	5.24117029340092
+"KLHL32"	6.6512282767128	6.63981681369342	6.29469151235635	6.20866008511568	6.5739572551268	6.37233162076687	5.43604477956549	6.01101082427985	5.75636415654205	5.75673536553626	7.51895951564946	6.10304184431907	6.09656008698213	5.74870680499473	6.20520926935513	7.42031253732692	6.15738967283909	7.82434560293361	6.51202626826446	5.6545712205523	6.10228811042816
+"KLHL34"	3.52985940864845	3.22663370031468	3.29518726959006	3.46820484284178	3.63738730002958	3.68874276360343	3.53741376891322	3.37098986584087	3.55964074485359	3.42352904986505	3.70034397628044	3.58707566712019	3.25425024733347	3.7637140313637	3.31412220315712	3.52985940864845	3.64717491451903	3.15038385795375	3.63255241342972	3.42129907972082	3.63951732050574
+"KLHL35"	5.57898382803526	6.26642589948799	6.63981681369342	6.10000386485207	6.35215260303767	6.03089234563847	5.85317438136083	5.81257122658873	6.1212272686142	6.26485510538148	5.85616365466729	6.42735162124313	6.18914248997775	6.00993395479409	5.96175243456628	6.23300953069414	6.04410557378299	5.76207390232486	5.82565011838648	6.61293159160129	6.33996187742872
+"KLHL36"	6.52813120898041	6.05240173967933	5.96329681902469	6.2209164824729	5.81578398070621	6.83441215682607	6.39757713753248	6.58433870852555	6.38414395940214	6.24950195253338	6.02956739634847	6.32108170276879	6.42948649568209	6.3593364505816	6.07340816820911	6.00826694542176	6.42572276327005	5.78617945977011	6.29500311760385	5.93086603896001	6.18752513727084
+"KLHL4"	6.64056403391986	6.71824969846691	5.78834262635392	6.30164834091551	6.60600174619685	5.64338619627579	5.46834912796455	5.96839405647132	6.02601473694798	6.0988622819786	7.03610998575172	6.36243379870283	5.70556000254728	5.7662511083396	5.52100857138429	8.11699452990813	6.20594718854051	7.88215573023963	6.2014280580755	6.2775742785139	6.430391674529
+"KLHL40"	4.33684198667605	4.61284354163675	4.32788608791348	4.81574976513625	4.48384680853684	4.70981699089581	5.03022229286812	4.44767160628748	4.44273739554841	4.72837185701565	4.35883863475785	4.78660589225312	4.83318833817752	4.58293915737783	4.57711136168258	4.70018353131965	4.72336491024502	4.24932076553892	4.62281118154972	4.4453237453744	4.69438832199588
+"KLHL41"	5.13532526787743	5.50203753965041	5.26797082503657	5.58887305407002	5.35303554357137	4.83884874450389	5.1326462954812	4.99400091717851	5.09122390903668	4.94594901413078	4.928166372978	5.05108007990599	5.16240836740276	5.22560027883955	4.99542665711507	5.13532526787743	5.0417577375209	4.95931295614428	5.25089150169403	5.39434425169122	5.17061183015631
+"KLHL42"	6.5780062322829	6.73924283052367	6.46086380393337	6.66848447289063	6.7975893601765	6.31771613399082	6.11026516256449	6.77221047771432	6.63866442975383	7.149468966861	7.06419987257461	7.08267377272864	6.41519466568131	6.50486911363902	6.38760014468502	7.49290992873084	6.768580363068	7.17389076854751	6.59787768265175	7.01714163905033	7.17798688653464
+"KLHL5"	8.44137943137637	7.77691017396264	7.71161096677565	8.346042006626	7.40136936222067	8.12216149877556	8.09680575933261	7.67845339216375	7.61584477938006	7.61265034176549	8.20839744490799	7.52727778912859	7.99938403163725	8.57194846268507	8.0382989702405	7.48612821027381	7.20244233530284	8.37021543133272	7.81849932259816	7.09257012678747	7.79135779181902
+"KLHL6"	4.18163589389116	3.49646741319935	3.59147118330838	3.53690592304674	3.53966515257352	4.28783679038339	3.94717969432851	4.20479628536753	3.8201203477013	3.55607387273234	3.66576132608834	3.67720530562875	3.51744597880038	4.1740235663432	3.64357919895307	3.66076069256676	4.17250099250738	3.73798486398322	3.7300145389108	3.39257357867796	4.04474876374535
+"KLHL7"	5.17177021074485	5.44061319479109	5.35937988821561	4.81617307742445	5.27467073819446	5.05870307715233	4.50449411847725	5.65516241520442	4.94693946131569	5.36019972882372	5.98457969266267	6.05624452029431	4.61159170985299	4.54119224852506	4.72657282526054	6.25975585486541	5.13590680796317	6.27225131441596	4.8327775832825	4.98562281697558	4.84651915854425
+"KLHL8"	7.85274865663028	8.0781199070017	8.68433762877961	8.27423409681672	8.96006704281173	8.74006993076423	8.28785052970029	8.06866656144061	8.47083019634855	8.28687112666768	8.17590674388113	8.25545459913652	8.43467921816671	7.96291018629669	8.91019985954803	7.97412457389229	8.27490168060912	8.59274710061559	8.38479158841539	8.45415348849656	8.34833369718037
+"KLHL9"	8.00625626064785	7.87772687698747	7.44400560969103	7.76035979680703	7.87558484147992	7.45862669867649	7.4939585867466	7.72442864980997	7.66909712586355	7.930851302345	8.09253779949759	7.78232309746518	7.55414979321657	7.5509162281694	7.67662655407205	8.04066937860719	7.82309831486492	8.21919813125666	7.99488510186051	7.89875456725301	7.88327413297458
+"KLK1"	6.77554234856578	7.02899536959479	7.16450911390991	7.15553501847009	6.74386486397244	7.56932703834293	7.74468591043316	7.01714163905033	7.17935356941071	7.16295146553926	6.87227659320068	7.08862158939646	7.24769190386488	7.40726038339096	7.12777951155052	6.79420957702733	6.92336468437007	6.78444409488189	7.25401335358871	7.27071544332881	6.9633306282399
+"KLK10"	5.15138335897949	5.07465587287657	5.37710651411635	5.18572128860119	5.7877264384133	5.44061319479109	4.99424361280758	5.10718846983511	5.44461561936926	5.60525575485078	5.17436151439531	5.28661427326803	5.10962940319805	5.15045524491775	5.22958580123912	5.50107661968112	5.26766210204047	4.946668251429	4.9611592565169	5.45544622092629	5.21787898715844
+"KLK11"	5.46625110537671	5.67128446443863	5.78401195569089	5.92519010333933	5.93117398469806	5.75718369150637	6.31147964400407	5.85708344868517	5.7255326305919	5.58931317759617	5.51847423695742	5.7378110160112	5.86822299043401	6.22407051612145	5.8159194705523	5.63268697885223	5.62258705484464	5.31313601449462	5.40914575896674	5.70522869500784	5.73983660062945
+"KLK12"	5.33811812226514	5.53633212649104	5.70097616187496	5.67855961462717	5.50578184092371	6.12651160469574	6.33153864132593	5.74425446944795	5.70097616187496	5.70097616187496	5.62259646278022	5.6747883494891	5.90584320392624	6.16319282844049	5.77521904837796	5.62064399218658	5.713085328045	5.1715179077752	5.91536334384264	5.66493790663212	5.70097616187496
+"KLK13"	5.42666415863676	5.3953706971522	5.59906691098784	5.73586417311183	5.4938591156523	6.15348217913315	6.33945248413951	5.67783194547599	6.10975088955019	5.85948370526671	5.5400631254336	5.7637414832805	5.90051367220111	6.19840989508872	5.73586417311183	5.53131326501549	5.7893913437126	5.38892096677098	5.92930629441383	5.73586417311183	5.70763810395868
+"KLK14"	6.3582450657602	6.13623423653752	6.47080550666293	6.72244055552023	6.41687035633148	6.9467070325746	7.12162365675195	6.45973490688821	6.64226110430688	6.63567733808739	6.49218419745241	6.5391422572626	6.78754774823924	6.69050412956883	6.79712365160825	6.08035927155113	6.5391422572626	6.17550169409074	6.78331224141729	6.54010470497175	6.54098100518347
+"KLK15"	6.52277678388218	6.60774618401039	6.78701427923125	6.61822732478597	6.62218791190651	7.27476986802341	7.75053880309801	6.62556617912544	6.81497786027366	6.69284692880048	6.63705848334814	6.97247628111465	6.96318591783102	7.16614560876162	6.90237709266814	6.58190785278241	6.78701427923125	6.3620526252388	6.96742152136871	6.74035719502461	6.77284851407842
+"KLK2"	4.15871293994809	4.25067190845266	3.82917327998414	4.38935941033967	4.29317666074763	4.63723652287687	4.55662300611103	4.11633753412532	4.29744778525781	3.88466663031635	3.95998743276593	4.14756417145104	4.2818453664863	4.49362518174862	4.15871293994809	4.30695972530026	4.15871293994809	3.75914664349939	4.09886785288417	4.0219383425362	4.08197391487204
+"KLK3"	5.68222993342426	6.14019872511372	5.9692866797725	6.53937424645325	5.92594412059436	6.01166565250661	6.35506113355675	5.97794668332405	6.05035394417863	6.18915574774542	6.04670736749587	6.11029587828622	6.20331326552338	6.44207834121497	6.18318174151111	6.13752852435864	6.17158461739682	5.82456327771543	6.58073381753462	6.03105940791262	5.95874796891648
+"KLK4"	6.07707793699124	6.32922778944472	6.36732366264775	6.4000481345826	6.37403796177686	6.59652546195391	6.84017546152381	6.56026776315791	6.56454597954715	6.35673017204247	5.94066114956324	6.35543441804479	6.50011589506903	7.01496276282615	6.57284140655418	6.10059426417757	6.4634556377965	6.05359464889695	6.27336454877455	6.45330805608234	6.16404783410506
+"KLK5"	4.32745456283337	4.57571589267657	4.64806759235603	4.61068739296637	4.77158852768397	4.87320918682144	4.89144368762483	4.60015314327739	4.7174167650057	4.85465440420731	4.49923744663542	4.76121815259444	4.4737685456267	4.72888361191765	4.44901505605529	4.55245082524268	4.59609550467328	4.86787663311833	4.67799186047325	5.08479061972255	4.64649018686725
+"KLK6"	8.48405580453166	9.37577251259678	8.64196432376145	8.86288263974908	8.59638528088629	10.0253656309829	8.45496086205296	8.29466863287721	7.31668429413163	8.51310474283554	10.4076013480947	8.61237099658883	8.01295295497698	8.47101798836569	8.40131198573691	11.4192582007798	8.28190319671834	10.571491307969	9.03837659114702	7.80422052006856	8.16780721946102
+"KLK7"	5.60222253139882	5.78037109784951	6.70356576690165	6.47033117469837	7.10892373103531	5.84084818634096	5.33397229153042	5.82910447574077	6.32240725760107	7.57256070944303	5.88498415445987	6.27047256506841	6.28816126081896	5.99230636700096	6.1984699130593	6.3620432768814	6.37328548948612	6.90753946415433	6.28214519929349	7.50911245909358	6.85392869070498
+"KLK8"	4.01790211478945	4.18689981176686	4.09923898744915	4.57999915025561	4.0762171008435	4.3361733252321	4.52214472991138	4.08037614945292	4.28128594083576	4.42599758351696	4.10426253359407	4.3510363403912	4.31249073396914	4.3188861327549	4.41318845422835	4.3516715814465	4.41271444105692	4.0346883090873	4.21372980478198	4.22254463228408	4.28787014644298
+"KLLN"	5.68048586123352	5.97970069616313	5.55890411844152	5.82041164255055	5.78989189543342	6.02651973678424	5.92805137186454	5.81120427077187	5.38589442345389	5.87275755679131	5.63196144727646	5.74820575952985	5.8858606083496	6.22708482156762	5.8339116793179	5.92879414678548	5.81916370571252	5.55493296695807	5.74360342088366	5.72467032569144	5.9032341693572
+"KLRB1"	5.06620283756099	5.33888279798107	4.97935161586514	5.18030911133302	5.18356447095221	5.09966086725401	5.2272095405193	4.87925171205518	5.42038061008906	5.24007286544112	5.2272095405193	5.2272095405193	5.42897867441485	5.58137839841604	5.46765811158753	5.40096055697603	5.09961340476162	5.07375754053597	5.28183579237423	5.1570504661126	5.17937492554444
+"KLRC4"	3.20579368076698	3.09926035080228	3.11454254265889	3.02471288538393	3.08320647664708	2.98874819987439	2.9662752495555	3.11906739021321	3.04918958456993	3.11454254265889	3.14442601528306	2.99329954678535	3.32335204647271	3.19613740539147	3.11454254265889	3.13097588522966	3.30977911850905	3.13611122208243	3.0316192378751	2.97537541686741	3.12218659325113
+"KLRD1"	4.55988314688856	4.75480366943611	4.59717244985691	4.98299224337327	4.74096748437335	4.45370002868864	4.8599758539705	4.7732020556128	4.71118886106436	4.86981216120313	4.54751080496412	4.70010264778065	4.96959392389424	4.50523006922995	4.74096748437335	4.8806727557753	4.79127085927436	4.52419561622663	4.74096748437335	4.76764009535909	5.05695600848207
+"KLRF1"	3.19083666701576	3.2595997012419	3.28983167401918	3.10204100535718	3.14218688978528	3.15661021599238	3.10204100535718	3.2807894733681	3.19083666701576	3.19083666701576	3.62211435439322	3.10227147671028	2.94906970106365	3.15132839120907	3.18791606999667	3.29876296176528	3.19083666701576	3.26397810825324	3.05036608407437	3.48261028973804	3.21769609944971
+"KLRG1"	6.34557729251299	6.17356521443738	5.92584752555439	6.17084405084492	6.14656715284158	6.46964488619953	6.14117216891384	6.28622378987054	6.31601944212345	6.21831518943481	6.1657727516832	6.31373070385171	6.06205508850551	6.21831518943481	6.36086955799531	6.44594494200491	6.15214165700042	6.03707700242528	6.33391384995069	6.42364717764518	6.18668399135455
+"KLRK1-AS1"	5.39415588805401	5.48882959955344	5.25486333604667	5.45969365355445	5.48882959955344	5.50076182085259	5.39415588805401	5.37624019986147	5.09122390903668	5.09122390903668	5.35607506027211	5.36308568620459	5.15635806201484	5.4406737126676	5.4720804679344	5.53681713951	5.50917328415418	5.3111635289492	5.19890142279208	5.44583094828496	5.39415588805401
+"KMO"	4.50468583330333	4.70200912162928	5.40683255980299	4.8052481528302	5.19258735913729	5.26320731049446	4.69987746154721	4.59238485073296	4.85335454866951	4.41654661764205	4.0486245037268	4.67756615230695	4.4867926819012	5.03377292117803	4.54769547685526	4.64865109470388	4.53072111149636	4.70469044599508	4.66577900240712	5.19086133354519	4.74768858590279
+"KMT2A"	7.43725470868304	7.3143709263564	6.02861927774941	6.79696877046717	6.9835017355661	6.84473271626812	6.98927533926305	7.17781403049963	6.8675359889934	7.01714163905033	7.14508810893782	7.38026362057566	7.05870066179928	6.97939782517391	5.93273876972183	7.63105948472911	7.20866201067354	7.40842847461378	6.66783879111614	7.14984457202237	7.29059609117381
+"KMT2B"	8.34643531083573	7.9997424085023	8.15532917125119	8.08319844651647	8.04975978615932	8.2419711741633	8.18017638894484	7.95554406271376	7.76002531936832	7.88862219892397	8.16125940598292	7.73357277894819	8.11022525331786	8.39010174621045	7.8142401291777	8.09763890012649	8.04836972888019	8.21423544641492	7.94332580029843	7.99688529025564	7.97952898759257
+"KMT2C"	9.60116310028731	9.18572620841467	9.42154327668465	9.249978769961	8.86443334491558	9.29946407198388	9.62491182608133	9.19336441977661	9.19336441977661	8.40043888817608	9.55378969705227	8.69208411856058	9.20085523008801	9.30180686886773	9.28862939284805	9.37692289509337	8.99550601097159	9.71361181578247	9.08448968429828	8.73252945828479	8.83140202441908
+"KMT2D"	7.62297232124559	7.77636475708084	8.09931736036937	8.0492050231085	7.81140167288325	8.37520714289704	7.72720816687104	7.5039273617542	7.67693201072232	7.77527485862997	7.91216092943422	7.89402302175495	8.4053121115492	8.14141416519301	7.34904317818686	7.5087999763306	7.91681000295984	8.02506163933396	7.55268055383599	7.60775440467734	7.88869601727932
+"KMT2E"	8.72189523961032	8.80256991381291	9.47611801633951	9.20376704822512	9.0259018844425	9.43823336903347	8.72842453042441	9.36629169455322	9.0259018844425	8.56790623305607	9.16329615415016	8.84380708111513	9.31408453261201	9.43787432801319	9.36342805197583	8.50912924424513	8.79912915854728	9.0370794164891	9.25729000333504	8.41238065785429	8.55656333272218
+"KMT2E-AS1"	6.18168233469276	6.47403069343094	6.5599755308131	6.57188210271968	6.0821588779739	7.07908705926493	7.42871048680333	6.56618357501413	6.63475558449962	6.64710040850997	6.52052441007514	6.1681660401562	6.85030044662305	6.8103152683732	6.90237709266814	6.11037889545776	6.56956218994964	6.0821588779739	6.78415592596877	6.49461400015684	6.54924099419266
+"KMT5A"	6.60459099731284	6.79980969733058	6.6355634620658	6.80014066442906	6.40618327572917	6.29822104576379	6.87917094855806	6.62600474641286	6.84879098161051	6.73501392159818	6.80067095148751	6.53789138776415	6.8741157632339	6.64008638522087	6.79911298443361	7.05147156370696	6.76108997098356	6.56815423353852	6.77191034147122	6.76940590773711	6.66988008514159
+"KMT5B"	7.5216001946642	7.14142667300555	7.27229482221725	5.9349539722219	7.14107482715145	7.09530776152028	6.89797351220065	7.08601155870924	6.22404894949893	6.65993131285829	7.21051025669007	7.14572627664483	5.864099935372	6.33557917588985	5.61857156840475	7.26360606264765	6.90801524172695	6.90524952747022	6.17061344823268	6.73527802912317	6.12563853694583
+"KMT5C"	7.56592282649885	7.61191276957662	7.79104764343471	7.9189037890854	7.64115856275175	8.30296019013683	8.61368046044261	7.66195019566485	7.70813730022437	7.77231565630813	7.53872161857812	7.80155546232136	7.94204358776264	8.05263963031275	7.77548922900268	7.54088942195884	7.71689026878149	7.51390930868846	8.13675910709519	7.82207248170878	7.74692132966682
+"KNCN"	5.42469597559822	5.64721509739322	5.27270419372004	5.65330377556708	5.57719862247566	5.52663812892188	5.75528408619021	5.57134770346568	5.57719862247566	5.47611810693425	5.27183231338847	5.51403242852744	5.66128573590489	5.72912880917938	5.65487065636825	5.57719862247566	5.67123474639726	5.23138353612479	5.52924949257212	5.63971661640409	5.73843186413752
+"KNDC1"	6.78305737667803	7.07815358394988	6.65643038836241	6.81269088108207	7.12125599452436	6.91944177730776	6.8092948469268	7.08601155870924	7.38283030289001	7.97633687096927	7.14608547324055	7.68714190462101	6.81983299592621	6.8996130071388	6.71235495091983	7.06641980041581	7.45514606847707	6.71794830024787	7.27390568828062	7.53859425713172	8.10436371447927
+"KNG1"	4.67620442727037	4.86803513988266	4.7459366344145	4.89998601300604	4.891431597517	5.02911786542874	5.13962525088337	4.88175692707423	5.1687860827109	4.94724103773708	4.56850046706083	4.91747088180779	4.77218260054407	4.90862453770776	5.12382232350259	4.63687848985545	5.09958519205882	4.57371229590723	5.0992349104789	4.69526686158562	4.77776981881052
+"KNL1"	3.39376338913695	3.4868636417461	3.42919714149145	3.76893274736963	3.46418156367015	3.80433109952205	3.53741376891322	3.36945707874669	3.59595720903112	3.40270855612976	3.59909542056862	3.63103042080075	3.22521199708964	3.38740748996264	3.40668171730563	3.41113735482672	3.44066358948227	3.39376338913695	3.16524534297498	3.72548688527017	3.60689102243608
+"KNOP1"	6.90174241673635	7.02949898606688	6.8550929797111	7.22708688428552	7.59136372871397	7.28537647218285	7.67786588883672	6.69323120761984	6.75814606993319	6.60011901996099	8.50838496830373	6.47932027193378	7.09714980879253	7.07262094528802	7.66944944553112	8.62882069856822	6.7688560404999	8.38319395754984	7.11098130417654	6.78312677397118	6.54923785046592
+"KNSTRN"	6.94263796919061	7.05735989710715	7.01257328730578	7.75664445876609	7.43467923313574	7.06812689102582	6.73566194974089	7.09458216397847	7.43654742543845	7.31013605665807	6.78558229090827	6.79525634774422	7.388841784993	7.11851024828355	6.84771210567721	7.45169109272201	7.09830169674871	7.01915513216059	7.00986150778426	7.09458216397847	6.99145621917319
+"KNTC1"	5.25459633155893	5.2667360280575	5.58397125961689	5.00724631720049	5.43313061574422	5.21852300896543	4.44128696606451	5.2183158861384	5.09418810258681	5.06919555761674	5.3677166197317	5.15707506163984	4.85773562754252	4.84221707203419	5.04227433958114	5.13449612325385	5.27529386086723	5.26590355278674	4.80050206035476	5.16119127649362	5.22036673386683
+"KPNA1"	8.02978110871569	7.82904491836527	7.07300872244532	7.89369978844994	8.11911621759282	7.36751816199544	7.48715882555242	7.97735433380852	7.77247102815489	8.64885032889993	8.34592320791155	8.38536084584926	7.12070239526254	7.14769010439887	7.53408014440061	8.263329495173	8.30165101914521	8.30703088072529	7.73065352362191	8.63858820368929	8.24358465875601
+"KPNA3"	8.74101268663738	8.52512633911107	8.99032751872222	8.58523169598189	8.82428797084086	8.42719316354659	8.36979011241849	8.96284960148294	9.14181905641553	9.06388009925895	8.28631098118317	9.06032175807828	8.15467501704023	8.0058174461558	8.6806028319415	8.60760897456193	8.53559160971638	8.85666687575762	8.85835799503271	8.7389171359998	8.80335386818553
+"KPNA4"	7.39995005992684	7.06477437772796	7.21740375263408	6.80553239894423	7.28665544641313	6.64079769206039	7.05310979636837	6.80228944224434	6.52248658234248	6.71951664165418	6.97288789933948	6.86345286444278	6.40220405043551	6.75028948971565	6.72595282118795	7.42005172004098	6.84829003392938	7.55146944113591	6.87527454358287	7.14818804626164	6.87881623130235
+"KPNA5"	5.91761054586676	6.1192162588393	5.1167920127319	5.72598138970398	6.49741743295749	4.95943014296011	5.63200557431865	6.3302858277772	6.30466418949759	6.77704840173093	5.99221385248524	6.49585524278961	5.53147984400162	4.87686689514066	5.67445784020542	6.17388351644803	6.25663636956988	6.5793184786918	6.1192162588393	6.50327222927428	6.75342880825155
+"KPNA6"	7.64162143435128	7.76976709598231	8.02398622296589	8.01756398774308	7.9056098898971	7.42956485015898	7.2210707769658	7.97951041050205	8.10157015270866	7.83483753305096	7.79116261854114	7.82811775066368	8.15753051144401	7.26500573080828	8.06012411874924	7.7644568343973	8.01501123592567	8.17176875066609	7.6241306020498	7.69344577169124	7.86901016803449
+"KPNB1"	7.93852111838743	7.82352685220295	7.7250829607355	7.94892644282427	7.99483363710424	7.03099309240415	6.9875705528109	7.71725102699933	7.87279348622341	8.15801430876131	8.30930631345439	8.42264767454683	7.85705052226089	7.38663378597492	7.59566350174697	7.92478820752281	7.89576106937259	7.89856931160528	7.71992787418087	7.84320129287091	7.9114257125961
+"KPTN"	7.36466475749046	7.03475524350378	7.30379102470775	7.41838487219423	7.19622548888559	7.68127254227615	7.45131987243532	7.14119480013053	7.13663276986659	6.98953643908405	6.95196819249184	6.72594050895042	7.35299069610454	7.59499634249973	7.42915626424777	7.08689944292778	6.95371336136924	7.45127099708217	7.13973138228588	7.15792232643297	7.11057588586013
+"KRAS"	7.18611586451469	7.62781400308614	6.40558983019747	6.99843750090144	6.93934232871998	5.86411392311245	6.75267809357593	7.48033434754284	7.18416227986242	6.98909972713133	7.63014707154502	6.80988505218093	7.0189860926859	6.60588849625752	6.99099297389986	7.88118693894845	7.03208610036753	7.34540332786314	7.29031546780901	6.75214361581106	6.84698874704391
+"KRBA1"	7.74083147350819	7.99630474738009	7.83626491800576	7.97854885687888	7.94632665738037	7.84514786565593	7.45909137592536	7.80000627170644	7.83100863710128	7.93456015058568	7.81175666825266	7.86634735013178	7.78201957728014	7.91502311465675	7.58794416696123	7.78244337743535	8.02461521728926	7.583168429143	7.72818833262118	7.87450672015614	8.07820856602694
+"KRBA2"	3.95475366232595	4.01064708297922	4.19818030628423	4.29940032071672	3.64094799430618	4.16152309525229	4.46175705484238	4.0113316356037	4.16325644402003	4.16325644402003	4.67192565759255	4.06673465742868	4.67375082407343	4.16871586999798	4.8755648067162	4.47328300534675	4.16325644402003	4.27396194303837	4.02443713385724	4.08601646196866	3.90383291028324
+"KRBOX1-AS1"	4.63611149039295	4.86361327430632	4.537699768961	4.78198443844184	4.74258775622466	4.78405424155301	4.97821379355416	4.75486224174172	4.64151636527948	4.6661861435039	4.40294201125134	4.6019054139842	5.0739915962579	5.11145706089482	4.70770980352282	4.65070979829464	4.6458890259509	4.45617870433634	4.70770980352282	4.64595113778993	4.70770980352282
+"KRBOX4"	7.89744275216126	7.8087979493549	8.24344416161376	7.8087979493549	7.82095752669361	7.41299487048502	7.22059764844549	7.78318966909535	8.00815030477916	8.03712291266128	7.98058257398728	7.9973484494739	7.43972876979189	7.68415703636948	7.7444899603586	7.80949170881212	7.76924357973693	8.02157132822895	7.73676940383718	7.77295837116688	7.83935050728457
+"KRBOX5"	3.67110527675784	4.070853732212	3.26267207146602	3.66452272852628	3.56628051697946	3.24116463434259	3.33713297940202	3.78204056874707	3.55241833410908	4.03574236359985	3.58546120713823	3.91918109177099	3.43781771432131	3.69068742859288	3.7585273856228	3.88199686135944	4.26512932211738	3.80452900598101	3.67560408083902	4.00852168025447	4.22110531290677
+"KRCC1"	7.95451314593983	7.43097376594635	6.92722492241938	7.55170952284243	7.17284581146475	7.3345140239372	7.33905610905615	7.26206389896148	7.23672713512226	6.9274841506077	7.96251829842973	6.56574156088742	7.26206389896148	7.09647682747411	7.4157724213327	7.8138694458156	6.78246755935167	8.00137560540562	7.47229725877233	6.59967621228409	6.78918104919668
+"KREMEN1"	8.47421360260492	7.30600891858235	7.78015022964391	7.34921145857293	7.12913624041502	6.5313823582483	7.53112351615267	7.81445885768046	7.59684285490907	7.14005703181777	7.4726089683977	7.11212117691824	7.09531671883441	7.14340370996848	7.05940340302977	7.02095109231317	7.27747726034774	6.8915357658178	7.25067859983423	7.58417331093251	7.34444826700295
+"KREMEN2"	6.25291611994386	6.46144479427993	6.4096320529613	6.46809371241148	6.42109261125198	7.00774365335771	6.8860051692352	6.31443392070506	6.64868938597258	6.5018163030258	6.29120750834822	6.53985191400064	6.56410924470141	6.61069534569868	6.38266744768153	6.40634439091612	6.48015297168557	6.11156951325435	6.62374211188337	6.58374442095209	6.4451324202654
+"KRI1"	6.62492839953599	5.95737535964564	6.39823471404843	6.18525411831997	6.22777646475755	7.0308698522084	6.54700145977062	5.9969822549491	5.80569073034109	5.85037860556996	6.67654712921	5.6024223985164	6.21329864211632	6.65148123200678	6.0467194831605	6.21044107117937	5.33412804804698	7.15287495215594	5.52280669765071	5.93650251425386	5.96701692367371
+"KRR1"	6.52813120898041	6.38699615661197	6.46600213593538	6.79517146741046	6.95371336136924	6.021663131926	5.88436090700569	6.44725290402099	6.75533184595287	6.91537239422441	6.75580153005682	6.79758646077907	6.40806543157327	6.04675328563279	6.61826455518036	6.35430717119677	6.27873358837911	6.77683530310205	6.84496929924392	5.85389215042311	6.34367932387824
+"KRT1"	5.46888303443172	5.59388739657625	5.48971958162887	5.74410803460348	5.43448762935025	5.50076182085259	5.51403668859576	5.32902383136603	5.68006731933268	5.66448233199676	5.46290390933819	5.37706633557133	5.65724316811554	5.7571284779212	5.75544193587591	5.54778937729304	5.47312991487049	5.1155133344786	5.50076182085259	5.35140706970904	5.43931080359879
+"KRT10"	8.61887265250816	8.08930867471945	8.26590562775648	8.12838728666289	8.20901892380309	7.78328061705665	8.02773987144092	8.3370485768464	8.49889415379129	8.02773987144092	8.28493605020919	7.85532532221158	8.3817434912728	7.9208854658365	8.7010522391242	8.28607831484161	7.95558687071894	8.77170506473311	8.29808329068333	8.10843877615269	8.232507371962
+"KRT10-AS1"	7.44836866079842	6.87568440602837	6.88995846483614	6.85997225322533	6.67269181978834	6.31177141429533	6.94313736037531	6.71179414707892	6.89546907740355	6.66082585490801	6.89625357734028	6.76385673320631	6.69363882845048	6.43946207028035	6.820492655982	6.94274313277019	6.58567155823237	6.71582987537304	7.11538246920022	7.06109733263244	6.94202762924746
+"KRT13"	3.50906254194858	3.37364025184445	3.50906254194858	3.32583904903001	3.55187000681729	3.59217357795991	3.4216870626014	3.42598080769835	3.50906254194858	3.5568385777039	3.54127067137852	3.51729266432242	3.56351726940949	3.66073982438758	3.43885391511596	3.37781281474148	3.64502614886084	3.47136129710415	3.68859763385322	3.28902617245223	3.3404377108901
+"KRT14"	3.64309247287001	3.81815499701902	3.4855817530036	3.59894652104443	3.73037764928238	3.69481367875989	3.81218348691005	3.69481367875989	3.58094184146106	3.70035539502563	3.69190461756627	3.79419314736654	3.7301801949106	3.86845401754639	3.59713235807412	3.66672444461165	3.92110579034609	3.6008520971686	3.70035539502563	3.41468867959383	4.05321633749457
+"KRT15"	5.12459625763214	5.08292328424894	4.891431597517	5.15537363857321	4.891431597517	4.831426307857	5.34771349598997	4.64602979103695	4.81972349787591	5.01924172139626	4.97537185657982	5.1217359126602	5.14487147292131	5.09175800524892	5.13031457743882	4.76617893366192	5.00514256336484	5.09979352016003	5.31331702508013	4.92243575161353	4.71039881001329
+"KRT16"	4.90372788459676	5.22869381810789	5.39624410792028	5.41630658272048	4.62242995122898	5.64372325546358	5.93258008222205	5.14150554184472	5.65248638159778	5.3822564826197	5.48475519714672	5.55954428220917	5.72933200613044	5.72332680223765	5.47524079364333	5.18084261262575	5.53695081261193	5.03129018326287	5.7438801337344	5.22728380190397	5.24007038564588
+"KRT17"	7.28177480279308	8.27785573678225	8.75206049698674	8.09512795601649	8.29498991180291	9.33999242683509	7.88400898567619	8.17131530805742	7.30413027349582	8.09772454745863	7.30917548947177	8.34152215788609	7.76163691679258	8.43074966993944	7.99573443421439	7.84204560351538	7.96486634262151	8.23614070396967	8.01975709251968	7.69440307791895	7.9442249653286
+"KRT18"	6.71509252087403	6.04214061139553	5.91338362551002	6.04505037957311	5.77127192872887	6.96612003365719	5.94385369401835	6.01324550288393	5.87030956583826	6.15141073934674	5.70230056550291	5.80746914403501	6.06630590866418	6.38175328692918	5.86529698317182	5.57231623721138	6.07695962391344	5.7576621249408	6.00632542180442	7.74855338068211	6.18355318780776
+"KRT18P38"	3.94156538113781	4.04121176398364	4.00867677259479	4.03643567597685	4.00867677259479	4.18554903993621	4.00867677259479	3.91007112392541	4.02910271966655	4.00867677259479	4.08976510532453	3.87400171762268	3.94185776034174	4.08257988538939	4.01424730620257	4.08135038110154	3.95562189030625	3.8252257541365	4.00990823276117	4.08193599403084	3.95853987609517
+"KRT18P44"	4.12395118535664	4.10484576968164	4.17932805393542	4.19541780581896	4.17932805393542	4.19946295199817	4.43667471576095	4.16684965775018	4.12540272748066	4.13245155189427	4.15618015471313	4.30283376839986	4.2810977809868	4.02370671025521	4.29152268627103	4.1176778278855	3.92800625417935	4.0949330247542	4.30175230605021	4.10566943749951	4.17932805393542
+"KRT18P50"	4.07705424689163	4.4971933172679	4.24417421269579	4.27223599285901	3.89963267117496	4.11873989797614	4.49852897839739	4.18898918931604	4.5130180551458	4.537699768961	4.58991090260346	4.33988118860605	4.4028594162192	4.39060103713171	4.52137100685936	4.17578548006067	4.36862674610096	4.16460730326787	4.56713691377006	4.57261793338303	4.07546159040315
+"KRT19"	4.82209910437419	3.76598037145929	3.92215378632366	4.01227872904566	3.82130013440079	4.36117920052865	4.15698149864157	3.65635999667701	4.04146416129963	5.71918400966972	3.66777350759416	3.9666169661185	4.20954984641821	4.42168627308402	3.96779852709763	3.60350499145775	3.88566646038599	3.96779852709763	4.31690630105751	5.41175376590379	3.98762508073682
+"KRT2"	4.62316786262047	4.78057709465034	4.46007390221791	5.09458488943828	4.96492845214277	4.72196383718094	4.6499183559593	4.80578893195407	5.11667310240323	4.93134769796648	4.58107525226956	4.83851391392687	4.81450607086342	4.72653922849533	4.97852571128991	5.00570649996125	4.91745190144141	4.47853155691435	4.74454720438545	4.97362928798446	4.67237020495399
+"KRT222"	5.66864261499499	7.52412205046602	7.52994187900952	7.90080964746178	7.91430120836008	7.48079152586404	5.75256173453276	7.17189326348289	7.65057029477043	7.56627243940817	6.7248301753818	7.50428785097057	8.10314795755959	6.90267100890448	7.92696879417883	6.60025062264405	7.67385845921034	7.17163157240337	7.621807457371	7.42357084347812	7.70997056485723
+"KRT24"	4.13724659343964	4.02471525663214	4.19259340474871	4.13244307300814	4.19468367323738	4.045755407977	4.1570891199119	4.0181386523542	4.0734598788273	4.24597667198422	3.98927488639305	4.11445269484696	4.30291884282524	4.02523576315431	4.21852956248692	3.79655898027278	4.1727918627244	3.96771837613619	4.11445269484696	4.05850419662743	4.19984008733435
+"KRT25"	3.78823365730846	3.70962697531682	3.58387896601217	3.88509171534632	3.68878419125946	4.36355676063973	4.17468236634878	3.72066045377877	3.7983741794308	3.64530734684193	3.5997373662917	3.82226654713394	4.21048675695751	4.35015236548207	3.76773962415868	3.62683528624482	3.78823365730846	3.49858959543366	3.90394109557032	3.77916769425622	3.83701088619097
+"KRT27"	3.76443108322213	4.00469379059507	3.99564735539391	4.00469379059507	3.7951074101892	4.00469379059507	3.91977967638055	4.00469379059507	4.19172525276282	4.01348600135658	4.04587754336795	4.28407861111374	4.15424639285434	3.83780083160506	4.05165185040526	4.05684398798947	4.0215834811778	4.10411549599309	3.96412997073581	3.95686719240347	3.98762508073682
+"KRT3"	5.10006139075946	5.06446355466813	4.91584654586563	5.16663631778147	4.73456300133255	5.21162510184184	5.5881452207008	4.89776913423652	5.38261801152437	5.43879539806742	5.2175569587282	5.48600367540477	5.21162510184184	5.2097133144684	5.21162510184184	4.93779438031075	5.0987859834324	4.72047803432785	5.65774559852344	4.84358797695266	5.26452730961107
+"KRT32"	5.70292337977041	5.88813364724862	5.93574141713779	6.08485703280049	5.96118582928058	6.01588317588037	5.9554139490366	5.8704121990033	6.06030791591148	6.02812329274474	5.88533280257458	6.07928956317792	6.01779062239644	6.21386285916055	6.22528175453793	6.07612898049635	5.96351917439032	5.64624015831145	5.88698919389583	5.83127893085894	6.07612898049635
+"KRT35"	3.9445346501093	3.85640268629553	3.9667796081063	4.1712978208719	3.87806841706256	3.87128181780793	4.25964472169835	3.9667796081063	3.95129538437883	4.09486238930244	3.95290527843803	4.07329049037833	3.90287307287722	4.09002208227543	3.99820961669601	4.19199051891251	3.9667796081063	4.03077607777964	3.80919422915011	3.8763574243373	4.08213835670223
+"KRT36"	3.71442257546242	3.50382037079852	3.66147762866174	3.75104617864689	3.80893238539144	3.83095337045506	3.66503041067172	3.74163062348967	3.82210366310171	3.76649585251223	3.57964293501165	3.75977740723173	3.87107342177068	4.03858129579105	3.5940220400786	3.65577806822761	3.65544223136066	3.6612094732134	3.78700117682431	3.49337323459124	3.71442257546242
+"KRT38"	4.8266278998954	5.0701777667863	4.91237552606486	5.23278514187141	5.18541432957502	5.18136075136092	5.23304768253287	5.0241638842385	5.03982853116234	5.3252603479945	4.8639966008685	5.24585431123567	5.07523044920629	5.1305775819269	5.55373944839706	5.29573282267794	5.11917095494177	5.18391081129588	5.24287135860161	5.30918070843266	5.39870419736031
+"KRT4"	5.43198912420994	5.5232904601072	5.39680733657314	5.58021675153022	5.62286631830415	5.81295969475155	5.69282112714734	5.43157701850895	5.55656844209956	5.67909360453035	5.28911389128237	5.44777209680787	5.79034050984859	6.17439614846273	5.47908955541313	5.40511858314464	5.61379848255946	5.03194737506194	5.61400569152551	5.68980998531982	5.5796100887924
+"KRT5"	4.70176571693422	5.54081978497312	5.27282410967798	5.02506282950808	5.41768095799412	4.83397990571797	4.85062068088171	4.80708852623439	5.09122390903668	5.16304009926144	4.91963549426025	5.13269827259998	5.36784381940586	5.12331267674259	5.05624474490616	5.60237990743374	5.20981235130957	4.65636010101565	5.04003097162902	6.32382374137921	5.33649109131465
+"KRT6A"	5.27404616185	5.3957631720002	5.29647433173317	5.32879410140956	5.31730919846428	5.82603489395629	5.70794883514379	5.34852678272311	5.32064523123963	5.31073554062851	5.01289792529826	5.20672460152173	5.4942344016349	6.07935251427744	5.36738604129064	5.31730919846428	5.50521990277041	5.12210954724707	5.30097962000209	5.24673418535545	5.35594236256161
+"KRT6B"	3.78397205707608	3.94535602939888	3.84070597761104	4.01772724422479	3.94535602939888	3.94535602939888	4.09273626144338	3.84318509634129	4.16117224993231	4.01052773931339	3.91031911359648	4.06607106085863	3.77918868505219	4.18234803252526	4.04099190026793	4.14327508969568	4.01366476634201	3.63653217854652	3.81210833247437	3.7194629817375	3.96086619602774
+"KRT7"	4.0928158355098	3.7018546216877	4.02757202403253	3.83192717754066	3.78235476926917	4.51246821965978	4.22661252513748	3.78235476926917	3.89277666957117	3.87529832580608	3.94954121230909	3.86803827263303	4.12991084696034	4.07792606942969	4.02401454865608	3.78780774596397	3.71031846596918	3.78105246101491	3.82083488513485	3.64412061090917	3.76674268767079
+"KRT7-AS"	7.16034258426266	7.50788937167315	7.13100847640311	7.3922920879313	7.2532843806488	7.23233437225552	7.3457156428885	7.35718686294717	7.42729043067459	7.36684168172385	7.17841824888723	7.38720189790823	7.42791278492474	7.38663378597492	7.17831831244975	7.53874504546422	7.38949042853653	7.00105645246078	7.23785106967714	7.42751376852352	7.50972918283852
+"KRT71"	4.43160042576765	4.40345586649525	4.37815114868524	4.62090880635966	4.40130368452187	4.70736698964455	4.6656478005912	4.50057106814313	4.74601661340416	4.57090164532031	4.22666139186411	4.47650998934314	4.62403072783591	4.3744666651838	4.1410316427735	4.56251709819977	4.69852627276042	4.2842770804105	4.47269801751734	4.22176565234659	4.60283111255089
+"KRT72"	5.42574314061662	5.53238271285234	5.40440408770281	5.54862323478041	5.42574314061662	5.54450087133998	5.5291503994841	5.30626693406337	5.27211597853455	5.40428885653102	5.22348445047119	5.45124121372987	5.56035088690433	5.4321740987311	5.44762138222675	5.21078374650655	5.51804550102639	5.37917946848596	5.59277311396959	5.57445419430265	5.23336095089972
+"KRT73"	5.41064866671784	5.81079571415049	5.63541486214765	5.67702578563892	5.43604477956549	5.52865085577563	5.54305410287718	5.29312342512848	5.48133488757743	5.34102151252588	5.44404598984274	5.57027936689988	5.67759720979486	5.2798404221771	5.54450087133998	5.90903758485604	5.83796661948117	5.32681647283541	5.58800053884546	5.50159963963175	5.80549677190939
+"KRT74"	5.50689804009117	5.67032502432713	5.39464709615438	5.69299551106362	5.53731103591558	5.22038983738659	5.48581248856176	5.67906747303582	5.73316391415984	5.64644444909643	5.64644444909643	5.66895635949808	5.88976986725794	6.19401944137916	5.93408072571008	5.64644444909643	5.79573656017558	5.2486222689585	5.73962186211444	5.4623881891536	5.69344053675722
+"KRT75"	4.86653202894898	5.26652490636073	4.92576216416613	5.30071969285793	5.19258735913729	5.25212531779782	5.16253020951509	5.13699918171375	5.07113328094769	5.10062947136777	5.07967480069135	4.9486073384923	5.31601733256573	5.3201968029357	5.2192414795721	5.09380497719225	5.26511436623018	5.08562276129985	4.86996946968901	5.13699918171375	5.18731709939201
+"KRT76"	5.38393524063678	5.35777415650169	5.20587499489232	5.53751016579651	5.37935255852745	5.20742171091478	5.59871274866665	5.30414423973762	5.63618501888319	5.49908423461674	5.05204655490962	5.38710922642901	5.5522844144971	5.38258429075315	5.32222929176064	5.38293654967731	5.24437855151506	5.3450378289024	5.2686432727966	5.20841680796638	5.31286928855523
+"KRT77"	3.99245254248942	4.32721290519943	4.08915131839063	4.14639833400178	4.03828317659728	4.39331359381055	4.32928640162788	3.97816547256472	4.2482773004032	4.04241826692292	3.93820875356909	4.08763910253789	4.17432640340325	4.32968100219893	4.21534332296946	4.2061708859182	4.08915131839063	3.99671299954543	3.97169959417681	4.07612929276226	4.07773780747349
+"KRT78"	3.70632310137397	3.62379496915837	3.68486492006281	3.84232318792524	3.5758439007209	3.71713351928504	3.67440135409689	3.84232318792524	4.0726479181005	3.91183257193005	3.77415694840929	4.13697735628566	3.72094384616027	3.7232063596938	3.84232318792524	4.07553909007055	4.15504091634515	3.34240280677296	4.02907294106175	3.84232318792524	4.21272898941167
+"KRT79"	6.02141118483004	6.02157572737164	6.1508761838946	6.1098421827902	6.17306849335581	6.03431999371777	6.35276717361615	6.00165629757188	6.15429341014384	6.36393606998007	5.92783186424433	5.99761492126997	6.3643480768716	6.38206543886172	6.05619479411436	6.11508401266494	6.04945834240008	5.74113605670072	6.3914746021134	6.08361367529484	6.11487888103445
+"KRT80"	5.65595438306489	5.55522632942786	5.46649158998829	5.57047532082157	5.3974762371616	5.40354647225626	5.4304977629968	5.19620469390342	5.28278608650381	5.4304977629968	5.32177627898726	5.5734588833565	5.51410387531086	5.12906069912838	5.4304977629968	5.43779876996755	5.50916103046398	5.30433098878792	5.48312204276663	5.3879291529456	5.32383397142129
+"KRT81"	6.6529574261081	6.45182185673573	6.61199328951794	6.48985963614915	6.35000713589569	7.06922773444854	6.96710135687862	6.61199328951794	6.65816706928197	6.64495732047744	6.48081064257952	6.61199328951794	6.83200430635775	6.84977161732009	6.59939019146243	6.22404324975312	6.63108396975664	6.13495776583487	6.69544873700157	6.30718652200518	6.47904291861188
+"KRT82"	5.50924017195465	5.44719459402383	5.40436275282169	5.61026709267663	5.39558202168533	5.63183952932632	5.47950652549744	5.17789347366117	5.42988708158015	5.55890411844152	5.4764373652679	5.43926391859124	5.53458537900699	5.51875952536352	5.31703509276362	5.57457290862729	5.40888583433272	5.17753388443403	5.55109901360919	5.55632544748213	5.53308817891738
+"KRT83"	6.40463663433274	6.81394527879022	6.75403318259968	6.6587835566239	6.52884320481326	7.20967320817741	6.8852425709695	6.68125455075109	6.65390684933614	6.57101421580417	6.4119182616782	6.54743877313029	6.92856800302224	7.03431383256872	6.66846527075555	6.82509231450609	6.51716721205327	6.3622894168179	6.55997403481703	6.59585682533829	6.48128804374614
+"KRT85"	5.84469299110231	6.16721046927294	6.17671608238765	6.16721046927294	6.04414288943473	6.24811234788679	6.39650861100143	5.99078067301623	6.36129719503539	6.20958867201295	6.16721046927294	6.34204209023442	6.18713961601759	6.44916884580061	5.92432946198622	6.19407195854236	6.2531700395361	5.9120671785508	5.99926137896361	6.03487162725168	6.18578090750634
+"KRT86"	5.84564115730784	6.1084288537384	6.08361367529484	6.04557176048638	6.09521868969743	5.81742900234121	6.33996187742872	6.21319894653705	6.20275150984511	6.04358770183941	6.06348598247671	6.09671510224502	6.18809118495292	5.86672268391827	6.11208234918163	6.06539137069477	6.24262071888236	5.75451476066344	6.37737962206834	5.96748101043713	6.20994887888999
+"KRT8P11"	6.4898978139319	6.45718866223775	6.79307740491181	6.78444251993724	6.3302378270386	7.12457454594208	7.32141431696133	6.50562538675028	6.85240164576806	6.78156191843188	6.35398186112552	6.74891431656972	6.9334656049557	7.03708171679585	6.54051360740925	6.26302181091324	6.59042962476975	6.4148428686077	6.93114709144882	6.58291973373186	6.65565381778627
+"KRT8P12"	6.95804960505688	6.34089349569484	6.56192893841821	6.70580208556794	6.41118584223614	6.77301313268891	7.01894009259849	6.63015480754281	6.54220541910782	6.61638793806684	7.13103287660429	6.64127912296933	6.7396938101517	6.70448234812973	6.63981681369342	6.39976519623215	6.5461071774524	6.2865316657915	6.90085851944955	6.53481506144973	6.57764300742193
+"KRT8P17"	4.29764984760341	4.33320921592377	4.41157409092424	4.50932075356467	4.2953132024975	4.43089053660953	4.37039864349514	4.39267410676429	4.50300121145898	4.56721162663548	4.49153719182987	4.59980253611786	4.4455228784326	4.35302671618219	4.39962663477369	4.07548139886206	4.2471289294512	4.22490170254831	4.66654913113051	4.15076802603676	4.60641687615132
+"KRT9"	5.73971809950586	5.96977097861079	5.73766216064567	5.94648632913939	6.17820749677664	5.89095821442793	5.8435585682681	5.8704121990033	5.71155269406321	5.95880620386481	5.87998781590363	5.60236980501968	5.80084689851667	6.057986373761	5.98534470832337	6.06443033862819	6.11782402801863	5.7781059349869	6.03142803643743	5.73461088653373	5.89095821442793
+"KRTAP10-11"	6.51628386162076	6.78461197234941	6.49561062668799	6.84621751559023	6.73833072763922	6.71532214883418	6.31601944212345	6.5033989550757	6.85502615309289	6.72800370118402	6.61875308414803	6.78909022686654	6.99491977667036	6.72800370118402	6.72800370118402	6.7746402923346	6.85685811679418	6.57238246446309	6.75989289594464	6.72800370118402	6.85661530156256
+"KRTAP11-1"	5.42593622867217	5.58360241661411	5.48491580658296	5.82157770167289	5.82287033003888	5.61567578676922	5.63027788016067	5.61534659492674	5.77111674410474	5.66556301352164	5.52209904910999	5.63447804518675	5.53671034980414	5.62254339543913	5.67289252380371	5.89986769438942	5.69569779952714	5.46065836887333	5.62408438758928	5.63006588910225	5.66924755881467
+"KRTAP13-1"	5.31730919846428	5.71656556366923	5.6234899301836	5.85553851114416	5.5118790005627	5.31730919846428	5.53296870046061	5.6225713925585	5.86489340197969	5.73586417311183	5.59249469877454	5.80401002917381	5.910334702892	5.55310378025231	5.84324430367431	5.60131294578493	5.91911442468485	5.18294986730694	5.62050935869791	5.42251679215425	5.76496457153969
+"KRTAP19-1"	3.25309811826045	3.3409322205573	3.31533891846873	3.2041005782188	3.3003558312166	3.34215571292522	3.41975679309365	3.17617179267725	3.18304939842871	3.35696768155708	3.35735832816208	3.28710028630298	3.25316961080401	3.42752402186876	3.17816255241317	3.19900491551003	3.3652644166551	3.19336981639656	3.15884166702241	3.25188457566559	3.40209540418962
+"KRTAP19-3"	3.81907309873226	3.70296806608671	3.9526432462815	4.19201272545371	3.98890058608362	4.11773976479445	3.90697708152745	4.01374041846658	4.18365550297604	4.07481443408882	3.9526432462815	3.95928972772103	3.99206815577728	3.88301597209571	3.92846449581922	3.93668319481726	3.90147412366507	3.75781353050536	3.89803406532978	3.98242553627457	3.95433354182778
+"KRTAP4-1"	4.08452165749888	4.24887173316778	4.17280950839562	4.5262083810354	4.22548224983027	4.35159208619772	4.34535790603603	4.1997112944505	4.20481018571598	3.98914110211286	3.91194507212394	4.16897029063815	4.07792606942969	4.29938893389525	4.11677569448133	4.21052385881703	4.17840919116782	3.98035611007951	4.01117630981775	3.90721725584011	4.17280950839562
+"KRTAP4-3"	3.75055386712727	3.5940220400786	3.5940220400786	3.54819707606685	3.29121693540224	3.17697191312088	3.5940220400786	3.73802420947521	3.87184190325417	3.67202048832308	3.55319272741249	3.67743090226735	3.88146424376188	3.31284110629323	3.63086480347766	3.25001978386198	3.43317011906002	3.51823793952237	3.39609742970414	3.45946722327327	3.63674561265219
+"KRTAP5-8"	7.5185812132203	7.78821145573631	7.47379310356749	7.76245862522896	7.53845058696083	7.35331486166419	7.73380343320663	7.69916042539788	7.67726518734047	7.90239730228681	7.67405582500837	7.78247337816985	7.69916042539788	7.77684578305666	7.69916042539788	7.73732894155335	7.92266865020843	7.50292779854522	7.74101415424713	7.47926786598553	7.75335537430048
+"KRTAP5-9"	5.6467789729587	5.86516742637547	5.76710732522213	5.9581993963516	5.95189879823099	5.97735069408648	6.05738161070081	5.64187893383219	5.92644556788118	6.05088949033496	5.68280804175825	5.88354478423438	5.96752896628317	6.03843159982258	5.91423351962887	5.53748618091003	5.87579830066045	5.49409952983717	5.67047041049553	5.86023554796528	5.82044835985698
+"KRTAP7-1"	4.85554729619923	5.13959431286115	5.02315687179369	5.74492198225388	5.04424846075476	5.33358936572871	5.39476115143637	5.08886846619384	5.21543521799011	5.31964649232318	5.278674413716	5.21178803078752	5.21681274073143	5.24076762780321	5.18541107831015	5.04481360150345	5.11252327315469	4.79160750309463	5.24076762780321	4.95787787930109	5.20009993490502
+"KRTAP8-1"	4.47167935242141	4.71721641242413	4.47160993574079	4.65915049192384	4.56705624002181	4.69442438030095	4.50950181097656	4.58143500359523	4.45565622348816	4.62552208796096	4.43698074585642	4.57717006612709	4.66694600499503	4.91292045606411	4.59787424837869	4.65182193371308	4.8165269966691	4.27117835231864	4.53972639724586	4.50046459298284	4.49334582964002
+"KRTAP9-8"	4.8732612009515	4.65296272174799	4.33897885917767	4.89493441153696	4.82939435265276	4.51712788574388	4.67660731607263	4.51289770586047	4.90862545144613	4.74485735448459	4.75799280259008	4.5657870176924	4.67213451417104	4.54600881070702	4.74639729535399	4.66877336260341	5.05660480935361	4.21038204113219	4.55974308300449	4.49315072430535	4.73834266795772
+"KRTCAP2"	5.30043838922235	5.38515084197497	5.61365293098007	5.55620400043007	5.24569287260312	5.3276780870593	5.24027348906248	4.99716817223397	5.49150000440013	5.16797007383686	5.2272095405193	4.97476542991459	5.70815648200977	5.69310466461571	5.84431967243858	5.49670531114603	5.233219679772	5.2959536581184	5.26104135784123	4.99462122548936	5.48763528288964
+"KRTCAP3"	6.07344267169701	6.03668990045071	6.07752419170842	6.00863349844767	5.95027414310353	6.248070537698	6.17993440562729	6.07752419170842	5.97282589428158	6.07752419170842	6.04433749500906	5.97483118692716	6.2409783788429	6.26542838123879	6.08771615148998	6.03453194582737	5.78958936440651	6.08678710584945	6.34350765155208	6.11247492089834	6.07752419170842
+"KRTDAP"	3.73800610688576	3.8384907205093	3.86917431370031	3.9130388135987	4.08924782343835	4.10656690620415	4.32351478355936	3.99321485246642	4.17183476427238	4.04348406311246	3.67891572299779	3.942302917631	4.14033828528752	4.21392545571247	4.2312013228093	3.77216330589925	4.105806644186	3.85295615499172	4.0283837157282	4.02704533297355	3.78266093310963
+"KSR1"	9.26968275714434	9.01317160213558	9.24036651629253	8.93282014655904	8.83832278885875	9.1992824133163	8.64849210420839	9.19033915554106	8.63177804058892	8.53684972928061	9.35228457070293	8.90367528888817	8.86637828373555	9.16661064511042	8.8483261715206	9.37643136804205	8.9787767931141	9.21015759102639	9.01872776708329	8.91242200897946	8.79854001006819
+"KSR2"	8.2426249029387	8.88744595609865	9.5108176853924	9.24834146435477	9.16582913840842	9.22321203633377	8.04836579808326	9.00738542943871	9.54727358541935	9.07097130155041	8.23702460734729	9.35925215003931	9.40321338384588	8.75193690975605	9.09566431728924	7.82188591996214	9.65677627420929	8.89092410812485	8.94001248053775	9.24419474602881	9.06187331990153
+"KTI12"	6.25349038186033	6.45753230631171	6.61690130235004	6.14505941677971	6.68316084861289	6.00319987030315	5.95720494240983	5.97759527226384	6.35090933474626	6.53925380671176	6.08765862935209	6.14177866972795	6.17590529646154	5.91073913578202	6.05470150749633	6.46164126038921	6.38455368250115	6.81702950623998	6.34974704900366	6.89361402724692	6.45653834659346
+"KTN1"	9.81817714180152	9.70200861257049	9.49201538827068	10.2439572606808	9.35057638222682	9.80011782439898	9.70552898005043	9.97184403620643	9.69644142341894	9.39722509286313	10.2649489268324	9.57915622094045	10.4578448479198	10.4107651649466	10.391932843261	9.85537503768313	9.67403964807654	9.64545994960561	10.003373474921	8.88931519813161	9.66292344318543
+"KXD1"	9.03265299747042	8.79420616228856	8.70129627417111	8.62399493721353	8.75505660032129	8.73106032588823	8.83201530737466	8.6618096301178	8.67554060711075	8.66736552551301	8.84704264566539	8.70655825262136	8.6851213387351	8.5911469383648	8.52673648047699	8.97793673530732	8.35219750663041	8.81294774652392	8.70655825262136	8.78276621058442	8.51407377174985
+"KY"	6.99792057284918	6.93611582044444	7.350176083228	6.86382876229823	7.19223571362352	6.33052450359589	6.90113437173225	6.28674468302891	6.85954133690056	6.97625912260208	7.21646787393551	6.55994452365767	6.64287290166614	6.61282796202807	6.91292515852653	6.5258963533309	6.71868751469449	7.0789507510091	6.94456986784502	6.72459903635577	6.71216504224714
+"KYAT3"	7.7564255392581	8.43822322415137	8.20289517998385	7.51724885974248	8.53807406341615	7.99389454956227	6.97049640396427	7.90664109213263	6.81626069673944	8.61465874404678	7.98868861499994	7.87392110722685	7.1998005257324	7.66787774948802	6.70219973991605	7.800014986502	7.87816759030052	7.9791582544841	7.800014986502	7.78533633690566	7.60733873622855
+"KYNU"	4.98041144062689	3.60428087358268	3.46245683569587	3.58998981896889	3.92786024276741	4.22291146633374	4.03370460317926	5.15733607558711	3.47196684614042	3.99682545521648	3.5840391987996	3.92000202484242	3.90235169271905	3.72590028345704	3.69187990403922	3.44609869825307	3.83121020459538	3.75722696276209	4.14014460799698	4.37253480609131	4.31955009793868
+"L1CAM"	8.39326346087888	9.75372781041107	9.8597849226251	9.72609933063152	10.0682746761297	9.41800531724307	8.83894472761923	9.46481620747097	9.6270505299085	9.95326998210893	9.19084830909348	10.0311023704154	9.96356136109572	9.40568181477562	9.49307550917188	8.59052083367534	10.0821568103275	9.47485930091918	9.23161470209445	10.0274989585739	9.9081205857768
+"L1TD1"	5.21387216218281	5.11466128018777	5.32413804353886	5.29274730601974	5.26983445687381	5.51137439842412	5.26049326903729	5.36180246841926	5.21569566630478	5.07164297939935	5.14745464364697	5.41136293697603	5.42056387884208	5.5880829958386	5.19567367019891	5.01307884756307	5.19567367019891	5.14038964051468	5.54858900970189	5.30146313486919	5.26049326903729
+"L2HGDH"	6.28797911666375	6.70670024221346	5.89225567681414	6.31150750242858	6.69966797579637	5.73715070605808	6.45605321995405	6.58563828989636	6.35480225190494	6.74027681797528	6.34335017104122	6.83080609509978	6.14832632419894	6.01719653176104	6.12631630421488	6.54965755782984	6.84470785083061	6.29345629212825	6.48583228849031	6.74815691023776	6.61909630779564
+"L3HYPDH"	6.04089168982651	5.8583105196702	5.27852975644859	5.7334360714047	5.61850870405084	5.52177557184042	5.50639797895487	5.76743105060449	5.27371971450659	5.71752423688037	6.26268093526162	5.89479464957281	5.38525313279026	5.37707667787706	4.91465587297983	6.05960121417418	5.1716869876303	6.76700425227989	5.91040081980086	5.53147984400162	5.30190473397469
+"L3MBTL1"	7.38616844157225	7.66310293622798	7.04448088404405	7.55591956416236	6.37648979853875	7.30637195841863	7.69706209423089	7.7341634598398	7.35878619776604	6.85965720039815	7.79662013855612	6.95003646641987	7.47532793947504	7.69603964586733	7.69085946214144	7.82591109240644	7.46733394248058	7.49730713811075	7.1227091382927	6.85924099342978	7.14537373772818
+"L3MBTL2"	7.62380024642597	7.7737625637921	7.72362620958465	7.51179702318329	8.00947488516005	6.67775252294852	7.06666737067931	7.4116808518839	7.55629828307233	8.22875471768941	7.47075404381295	8.03134577014985	6.87628758704165	7.17277917141559	7.18218448449462	7.63217418119396	7.84693662425312	7.83915665550598	7.42752747917284	8.2448109454214	8.2586674604955
+"L3MBTL3"	6.39102468003921	6.55687355857933	6.91714553764472	6.41071127750208	6.82916318442482	6.43722519586463	6.10248594601258	6.59774039056756	6.92858557522878	6.53562247053415	6.51504109288734	6.63705848334814	6.50100723813735	6.28583064151677	6.3643480768716	6.56555562939164	6.55687355857933	6.39276380676598	6.71760893986096	6.76843076136734	6.56444881697129
+"L3MBTL4"	6.86278696602064	6.98788536249238	6.81834343361632	6.7314672062919	6.97681160086025	7.33993509743974	6.6334689941072	6.63827439740763	6.64124274614116	6.78014271226282	6.88657382087727	6.70435557352781	6.4866052570511	6.65843696451508	6.54291661337145	6.99469201665118	6.71495998870792	7.73355932921189	6.75199806344757	6.92047562589372	6.4429403477464
+"L3MBTL4-AS1"	4.66784483447504	5.02911786542874	5.0435250370359	4.88398526183861	4.78589674487934	5.32157244411385	5.06515794503162	4.80831100020405	5.05110899809974	5.07001100753918	4.85326644633338	4.95103894309019	5.10051406266953	5.34789106828653	5.18283446437753	5.06328681312347	5.13128683945659	4.84103279777336	5.11789155299552	5.02911786542874	5.20752382935207
+"LACC1"	7.22087847739857	6.98976567233289	7.20264524426379	6.87388386611134	6.90290281714409	7.41915956465569	6.57211625616677	6.54234629057041	6.23125363554153	6.49185810735607	8.36212149186585	5.92266455069518	6.39836672491896	6.70709123595195	6.75188740363231	8.16700320812474	5.85103167708281	8.49756124258052	6.47623212922853	6.12570361725065	7.23513435033283
+"LACRT"	4.75716023347061	4.8605621481902	4.88835674653421	4.92218186558743	4.5406308162892	4.91132832362974	5.00459758156528	4.8605621481902	4.73780036800828	5.06463855564097	4.57389328835672	4.91391930947769	5.1102873151329	5.13549855561822	4.8605621481902	4.7312460445954	4.85615799131863	4.36882877333757	5.0333528747359	4.63354891768668	4.91650125769264
+"LACTB"	6.2277695518599	6.03890680074339	5.3844696198659	6.19242530674201	6.48929536033891	5.66253057349469	6.00823135879245	6.16661394640233	6.33062242796317	6.36246023479545	6.22894975166585	6.19643078236354	6.14220176179168	5.73637567665709	6.35728670984185	6.83324621121669	6.52813120898041	6.787270970767	6.05084725596231	6.58181866446829	6.20408856103223
+"LACTB2"	6.42234786725105	7.50459233193262	6.58284019160214	6.85679492014066	7.48930224740843	6.21993720462108	6.14073776445159	6.33169195338068	7.05944852639993	7.24708137443869	8.25469387788402	6.7776207669597	6.93619052701988	6.47516788982906	6.85679492014066	8.19801828217673	6.65815906226631	8.12242829646909	6.57032134518035	6.61800317253881	7.15225984161762
+"LACTB2-AS1"	3.12675479885687	2.95871171761012	3.00653587701383	3.0384460085409	3.19646576290841	3.23694950258139	3.37416281567249	2.99437247921743	2.87463554624955	3.00808307272916	2.79363040697157	3.12121138716573	2.99670305402149	3.01449908281559	3.00435444881786	2.97039303071345	3.00808307272916	3.07017430344657	3.12134775472086	3.00808307272916	2.87510004654346
+"LAD1"	6.16497823653567	6.24981630108061	6.04895814664056	6.45701282868225	6.33084731249228	6.54615476734282	6.53201112375096	6.2775742785139	6.60002518478939	6.32955284994314	6.24806719311117	6.29816208964781	6.65588290128937	6.56124449491134	6.27261371437199	6.55468281999552	6.50848435692579	6.12009662572069	6.47742129472268	6.12503707896689	6.2055565955467
+"LAG3"	4.30723199237224	4.36464719358937	4.30235078632924	5.01650449533988	4.4338526546948	4.69591049012619	4.54751080496412	4.54751080496412	4.91912212229306	4.88682583911246	4.38363605646823	4.59117195358519	4.37329237320439	4.49859386676476	4.54751080496412	4.58554901528864	4.71851248797487	4.096439604362	4.59238364467584	4.37335863213757	4.87598852855677
+"LAGE3"	8.55072294758593	8.81122660677359	9.14818287056202	8.74745641366827	8.99638988236441	8.66408094048768	8.83355087135113	8.62525478037039	8.9170781688286	9.12256349391961	8.68664042096132	8.90029247076867	8.98921235216469	8.51487151022133	9.04435070762703	8.9207305595144	8.79083660045049	8.78121927944143	8.77908389719742	9.17093512947472	9.06527560232338
+"LALBA"	4.21673750005484	4.37789270811571	4.29078325063883	4.32944589262374	4.22053248328446	4.06419388273258	3.97632787108024	4.18749422845384	4.16089863856463	4.31353726460772	4.08032242374648	4.3273994474781	4.38884007750133	4.40312663760792	4.29120508009147	4.43295081817229	4.4526131737019	3.99960034473755	4.05271074533136	4.29120508009147	4.4298023840788
+"LAMA1"	5.05162171532397	4.80757567542802	5.05497694948843	4.16243735624326	4.4338526546948	4.16819723971062	5.63403871293306	5.66424856046928	4.5744234444702	4.10744844408992	5.27509027314341	4.16243735624326	4.34563274902436	4.62194412972038	4.6307533722714	5.07132118929217	4.12593757624003	5.65001357636821	4.27724402941097	4.18135301647938	4.67997022305967
+"LAMA2"	7.38271268639016	6.43963332276685	6.15562389763832	6.60424680594401	6.78986130640778	6.83457337767662	6.46651971722683	6.60141955524593	6.3300548158212	7.01299606179843	6.5761725041002	6.59934724337348	6.49819883135536	6.99748772731363	5.89728061799214	7.02133981713667	6.52836266915581	6.85223235652588	6.43549374497602	7.39620675413286	6.56342586747504
+"LAMA3"	6.86973616988336	6.2792001921692	6.17493612171931	6.27886288571116	6.17673493343869	6.83226313156338	6.79600151152766	6.66101691426689	6.31599328180975	5.88727254248968	6.17493612171931	6.09901494422693	6.56545732953172	6.76682024840351	6.37945547455437	5.67894331682764	6.38100832173639	6.14837341089837	6.19302109074518	6.32995865546089	6.22297968857245
+"LAMA4"	6.18699728665828	6.21976314139905	6.16411969095104	5.15374456547436	5.81747433249337	6.10960430707384	5.74537072102956	5.98964348517165	4.95688855006164	6.05962834716509	6.72241141675991	5.42465325476585	5.36082033345385	6.16042428506769	5.38629804323226	5.82022411516207	5.1716869876303	5.82287033003888	5.66965813017237	6.75966086825551	5.9653707118358
+"LAMA4-AS1"	5.67193313290703	5.67193313290703	5.46121761465556	5.99458612850954	5.69618670089583	5.74512909262153	6.16573200158923	5.66345304695674	5.75532803944534	5.54640709144761	5.3720412156022	5.63880606972321	5.78831318997596	5.76822503485473	5.75813295807276	5.76529823814436	5.55290308027599	5.21635830448535	5.68841801807575	5.65000786733979	5.82301776449421
+"LAMA5"	8.19426884818967	7.40930328591411	7.75788250741128	7.62731793548938	7.22066458675002	7.99229436549548	7.70265746909616	7.96501480191989	7.60518557098516	7.25053492226902	7.19403409374432	7.47329561439039	7.67287567107776	8.00490531332341	7.39791508267082	6.82386972290364	7.61282775773743	7.32685211325642	7.45312627255792	7.45777017861757	7.65963437779716
+"LAMA5-AS1"	5.8989227205024	5.98453060131815	6.26585680662491	6.32398915174209	6.04230672804518	6.43412828758051	6.4939764250405	5.96668269176176	6.30398625165788	6.36244533303687	6.38347396610635	6.47959704783747	6.56134678530761	6.44522097457171	6.30863528210666	6.32032406766099	6.3484177062266	6.24759656846894	6.47898550397041	5.7874985472009	6.56207950515268
+"LAMB1"	4.48163136023605	5.07762371512435	6.155542136946	4.71039483834119	5.62926912075999	4.00201966752215	3.76320186471338	5.3867166538348	5.30797600518511	5.42294355908246	3.93586779129037	4.93961048687216	4.81278803088795	4.25168152720066	4.44364562416068	4.08299007813454	4.879755604757	4.72262774468201	4.64439528733423	5.81200174251464	5.45876566299903
+"LAMB2"	8.86553742990457	7.16847795110387	7.26862696566016	7.14338481840317	7.02182419259531	7.88863733828318	7.71418131545344	7.38964265779167	7.14641881677567	7.35592929390203	7.72925767974595	7.23503935602798	7.47331620131307	7.5721236295846	6.97556666091205	7.01569841740152	7.50858213933382	7.18937411308614	6.96034866943324	7.8388581340439	7.06410293610853
+"LAMB3"	5.13974617534552	5.54440743457759	6.09799576193788	5.88875926335686	5.83336002860271	5.56310494768024	5.58394703787	5.88606208756767	5.93888995416265	6.09799576193788	5.54440743457759	6.10512088892583	5.85164915056608	5.64345019602122	5.8710109308343	5.71914879689558	5.95897888462817	5.63616489054164	5.88237927463559	6.07947637192802	5.89446890376429
+"LAMB4"	2.91590153485461	3.15133052430365	3.25827628666684	3.02516375009477	2.96044971977131	3.54117730032309	2.90287192002739	2.85284445925282	3.14282313482954	2.75265583307934	2.97274063418055	2.99864289623907	3.37448003325938	3.13733587928254	3.4221088763266	3.00279417941314	3.11222912182376	3.02621214078974	2.99711601814201	3.14947096381626	3.26462177837767
+"LAMC1"	8.75228276879661	7.96078443511517	7.84518770257568	8.05910984988876	7.95433393101112	8.53738633525011	8.35594079386337	8.45570113077233	8.086188842245	8.00433014148109	8.06689804614552	7.70641492276403	8.24191372033126	8.35769949939142	8.21204860971741	7.4068409091563	8.11074479456004	7.72423948436912	7.75599307617464	8.08845832486492	8.29821123832346
+"LAMC2"	4.4933709229041	4.71282464173812	4.73187719071354	4.84470225029574	4.59480364700619	4.65636560201978	5.06614735894961	4.53773279374733	4.72524062331297	4.76573960576195	4.65535736121405	4.68687760900169	4.80750870563732	5.20429292389722	4.71282464173812	4.58334297891762	4.91708165502444	4.54053009032376	4.87651566884398	4.71351970594665	4.55567568510521
+"LAMC3"	6.27972265290129	5.733966615298	5.68519644295041	5.30334886519795	5.72538013006353	6.44160794380385	5.9553968572953	5.56295749493133	5.38272593300708	5.59381253987903	5.41805234166911	5.43423521414159	5.62735506388359	6.21866396688907	5.07337722232218	5.59893887769094	5.7361933892859	5.18144042462422	5.25521340533546	5.72785257932603	5.70800014043253
+"LAMP1"	9.47410799887495	9.32195092239214	7.71998603000242	9.06598109427637	8.76355033004513	8.26963630941894	9.01751796124291	8.9564112605681	8.51732744977467	9.36073125083779	10.3172655090973	9.43018858420482	8.63551455085084	8.35960181154035	8.00995360899472	10.3980370417363	9.07782864489797	8.90068592560853	8.99450543644191	9.39018210682179	9.09932385199772
+"LAMP2"	9.67287454761083	9.46761801345757	8.15122883261297	9.49453086665688	9.14806946525065	10.1605276481445	9.20829925328372	9.1431056315759	8.76623776183335	9.23988565583255	10.0676346482499	8.80103866899203	9.5446794727518	9.37936142246109	9.41571785241424	10.488282100087	9.2208599587582	10.9598954639097	9.5111151594225	8.40088619499051	8.42710429016043
+"LAMP3"	4.07104059682233	3.8746445595931	3.66543043723449	3.78961549678074	3.82255491921593	4.05817132102697	3.97359447273044	3.92441742645917	3.83586897020827	3.69796513192869	3.50117372901666	3.72421426249425	3.90404305173502	4.15999509412616	3.83586897020827	3.80033407443165	3.72649136011552	3.79789751493351	3.65752383037605	3.90505632185761	3.79069830314671
+"LAMP5"	7.31017876428745	8.42034080678003	9.29454920000316	8.33621794646547	9.19117002122224	6.87886119506517	7.02164553876897	8.01405460572276	9.26473945868639	9.43717030475078	8.34810254468645	8.97729050003449	8.65759329898446	7.39038612228938	8.38105433681043	7.65784216624631	9.10117724757385	8.8321184145134	8.6330174239423	9.47149411088404	9.58452666052931
+"LAMTOR1"	9.58336295333006	9.38719551606841	9.07170570116563	9.2253579004526	9.31025129012407	9.20938565505957	9.33249219444957	9.27275656441943	9.25022263254952	9.43717030475078	9.4838261892075	9.20036958352614	9.17159202744308	9.13436416547812	9.19847918001028	9.51756371604291	9.06001902246876	9.4557506842839	9.24831736229669	9.48159226824138	9.24599859992443
+"LAMTOR2"	8.10632467572528	7.88299724792658	8.18524932757958	7.83539385022473	7.89525997783654	7.51555605744804	7.54284087611201	8.01405460572276	7.75874710532602	8.13641338054063	7.98885844847667	8.02508562194761	7.84403618152576	7.52577807250045	7.64727169096454	7.7080585971092	7.57595096073178	8.19467927306874	7.85090820349352	8.27688483376822	7.97582110051413
+"LAMTOR3"	7.51332768625426	8.10902824253933	8.47313738530133	8.05716514247835	8.61745015020109	7.06804408817217	7.53202286936688	8.17804314591019	7.74439449070916	8.58350306814886	7.98696157004261	8.44874438807304	7.61251915389679	7.51609653397399	8.46644110070219	8.24608109828932	7.69687086031462	8.25239577940816	8.35588263266234	8.79040721729212	8.63965406032878
+"LAMTOR4"	8.50917742967964	7.99971638637482	8.45192662740875	7.93910059579436	7.90275744116051	7.80454025107342	8.35031903103014	8.099804641377	8.0667321803663	8.24156786679563	8.45143259160564	8.28192673866189	8.07499483348467	7.80862054158973	8.24828413861122	8.54603196836512	7.80124749872009	8.55463754424961	8.35378617078832	8.51026358014322	8.03955634453906
+"LAMTOR5"	9.79984547615701	9.59059512939319	9.4565272644053	9.5331098433466	9.92110618978754	9.04851204546238	9.64397245215753	9.81750428307217	9.75439527116417	9.98646895477003	9.71158697718086	9.68949497124476	9.37026287427788	9.26264597516718	9.71497959984354	10.0255577845633	9.54515530382128	9.86238472782983	9.84479053454282	10.0515501536562	9.67825974893815
+"LAMTOR5-AS1"	4.47296332863802	4.60909631652752	4.61738986277418	4.22243902597331	4.26313513893635	4.85490839041572	4.38086541302815	4.35031737832336	3.91049817725837	4.03979539245002	4.5417210689949	4.16576397719314	4.05835656546159	4.72300192664008	3.84197357358949	4.77721932088215	4.08132473059392	4.5134242858277	4.38887367546794	4.40359373628688	4.18494980849258
+"LANCL1"	8.8680329813313	9.06221360211871	7.7366226564465	8.11231501201653	8.84326731270511	7.85629576560212	7.80247080501353	8.35937235466454	8.02425227175087	9.04624428991134	9.31436797113958	8.78153589338309	7.87626213403568	8.16184841438186	7.95330159357065	9.97478463227005	8.56279982889231	9.72047144620464	8.506479424351	8.68401271650374	9.28908857019546
+"LANCL2"	7.71965148376401	7.57389403860425	7.36367693313601	7.05051688397065	7.74687450389714	6.86090932524328	7.01916558238193	7.35856124171208	7.07331053191391	7.75049229255915	7.40727479078878	7.62799739115858	6.88243015205273	6.97056069389715	6.90237709266814	7.72078906622567	7.34495557657459	7.64328964292433	7.13756449929529	7.94585129468531	7.62153597814803
+"LANCL3"	3.70632310137397	4.44616524595561	4.88878454670972	4.50643129871752	5.43695518194251	3.92957927812334	3.99789851050414	4.50359972018268	4.79744725051616	4.86374607753724	4.0277315805191	5.00696634770702	4.66844005933776	4.28196782289028	4.41531957833783	4.18708910209002	4.82635933071376	4.50027435686551	4.91056022697713	4.79240651089953	4.63052023075385
+"LAP3"	9.83301928008129	8.70582804403637	8.43929648597057	8.44296885225611	8.65749323805489	8.02074361075147	8.17753245118589	9.28896005564737	8.2776649037205	8.60651462552005	9.37324424138273	9.08457021781556	8.66417270394194	7.9208854658365	7.94931951872872	9.0973003720414	8.06284474916142	9.03366318682781	8.22781522036068	8.89283348533968	9.23986611123528
+"LAPTM4A"	11.1009733867449	10.7177346958617	10.5111133454017	10.7100977090893	10.574599115012	10.3052892527287	10.5109585504101	10.9541394957253	10.6068955216159	10.6880277555396	11.1164577729106	10.517332521482	10.7192142491377	10.5126022738982	10.5781640093908	10.6638393212177	10.6115495710715	10.4159383776627	10.8529672073774	10.5681688623964	10.2903145859762
+"LAPTM4B"	8.48306661436177	8.4842110439173	7.33531607896254	8.03686134771734	8.678452425765	7.02496492938196	7.68454811906381	8.49956691379641	7.73824695965183	9.05104324223571	9.05813716359138	8.75745184675326	7.6663188259485	7.0736931523256	6.93865357947135	9.36494593038513	8.10050284198802	8.95040690204947	8.10770240983165	8.86806896125864	8.79737036717565
+"LAPTM5"	9.97937989953602	8.83714089817491	6.89272678204396	8.52386727624845	8.33493198663828	7.49402922829184	8.70291805001405	9.51772828732609	8.65242185684253	8.88348824657506	8.82464898440421	8.8791639800823	8.87377988609197	8.75254859114071	8.60946438733981	8.53063215035849	9.21134880524252	8.78255825999791	9.27812075849433	9.3304323827364	9.8877281263963
+"LARGE-AS1"	2.85124053788357	2.87568601369397	2.86207730784802	3.09007393809574	2.79269658958032	3.21944999569308	3.15163085613633	2.88349713453704	3.0700263497686	3.0230903760573	2.84666683943395	3.1124068800251	2.81369520268488	2.99823996038568	2.98400369984491	2.88114445214499	2.9247487746605	2.77670191011664	2.9756875799787	2.85236718274946	3.1011894147164
+"LARGE1"	7.70473622429119	8.26098268409734	8.60755453228437	8.2975265947212	8.72388493367307	8.23363612585857	7.89192781172262	8.26767719124777	8.24665725236274	8.82390183347931	7.80991461343192	8.61174999394303	8.25561952411123	7.65177898859526	8.31949403540899	8.10780951449865	8.70321593625195	8.36842922562906	8.22767197185941	9.12276259828034	8.82333177129058
+"LARGE2"	7.12496551261624	7.16846201827452	7.14544865350116	7.15471550285234	7.06538584337665	7.65714049620064	7.95090404806998	7.19236922557375	7.17389845915876	7.14740987379707	7.13445319803559	7.19541940030014	7.36907173196437	7.56866037862473	7.09787622767105	7.0266569863129	7.14315398164902	7.15470771066337	7.23158283723772	7.25255118414098	7.13589465838616
+"LARP1"	5.95782840910062	5.93639722773717	6.01269030854556	6.14906443040865	5.93921840840693	6.80012143802407	7.14529342020717	6.05055448485936	6.33513306349432	6.30449116266639	5.86712549777405	6.27426948894695	6.3702780589931	6.28656282149458	6.13502723973313	5.85332499981892	6.0304547690015	5.66637412388071	6.26145478763204	6.26190856722248	6.18241970740759
+"LARP1B"	7.00877397837018	6.87395872382028	7.0407144421337	6.38192741810216	7.21553459191859	6.8244423402479	6.67342733051757	6.93901468035477	6.59506354782768	6.87784653405447	6.54132726809756	6.92460313842704	6.53021656701368	6.24824031878337	6.74941208358705	7.07565626009269	6.80760725082188	7.66272936631331	6.59052864144385	6.7907772780761	7.01871714197079
+"LARP4"	4.87303574133451	4.70664079142725	4.15709575919105	4.67171972517175	5.43127450901809	4.09097378118759	4.34436513723525	4.70770042234405	4.7813245138473	4.80589088998748	4.87178155670733	4.72565479371379	5.09949249405652	4.22775158834773	4.72819090716094	5.14603502627105	4.60602786418399	5.21462136933088	4.94742361195915	4.60616711556995	5.22715288919132
+"LARP4B"	5.809386275469	6.23730009892491	7.14218520477018	5.90277138564246	6.71836895553323	6.18892812646507	5.82577198341629	5.9899387232581	6.00768503219826	6.50940082941766	5.77822022391516	6.31781971699773	6.02709171986794	6.14070219790001	5.83655976284022	6.12118658017617	5.99088093777158	6.37374071047066	5.54473932887505	6.59693382509116	6.21766236162196
+"LARP6"	8.19489437730482	8.9602955239498	8.61362084494941	7.62731793548938	8.94987938768006	9.95453747027668	7.20577018654298	7.40779325466291	7.60133114743669	8.68796594906818	9.7965417032646	8.11040954421939	7.48104948787808	8.18559302138737	7.48856720556911	10.1968467492279	7.464469387985	9.91779645547614	7.32815742626667	7.66305702234015	8.07940135090041
+"LARP7"	6.41435857281026	6.20057316211075	5.96652337697967	6.43068960548597	5.98796923504244	6.7458336097175	5.59557558522459	5.98737603366594	6.14889740066825	5.0783822917696	6.09296788389483	5.3362081310069	6.52652413008069	6.52307420388947	6.32309120324075	6.35849968415465	5.86023176341612	6.25036938267526	6.23692427708713	5.60244300386434	5.80332968777573
+"LARS1"	8.67597860761494	9.06947541017465	8.74179058340813	9.03814715992739	8.07214882240002	8.68690798325869	8.90213878573648	8.99369696307993	8.9667124941635	8.38092279451461	9.17989356839381	8.787922523297	8.89845485747511	9.0300765479589	8.88038586749631	8.54502586037695	9.13615237055597	8.40638288370889	8.93392874107876	8.90604998726818	8.83464482436224
+"LARS2"	7.7269580015337	7.40149705365302	7.41048254079362	7.30090151365481	7.68394635138267	6.91899808362465	7.73635470544803	7.4895335985604	7.37154210587361	7.21598326869602	7.53284066235682	7.13602354064973	7.05919452445655	7.29112892220927	7.50458464640662	7.21252105966581	7.25600127473946	7.48086631997963	7.32181926082287	7.49931789837469	7.19653789104484
+"LAS1L"	8.28840541189813	8.25196134762384	8.38208429943166	7.90958499736186	7.91555280646892	8.23650448202328	8.08367389584717	8.09835291843855	7.81813614151374	7.55689661955478	8.36572273838063	7.67281865345688	8.02872922295006	8.1337241024308	7.79683510095849	8.27629557604882	7.75206310145446	8.23354108216381	7.86510826791694	7.79070276695491	7.85352574820861
+"LASP1"	10.2026115161493	10.0733847030305	10.3094952202469	10.2187314531027	10.0085871460513	9.89409471954728	10.0469635015402	10.0895951327211	10.1036360968585	9.97244201757404	10.0836739656077	9.87492078600273	10.3030910899921	10.1998550912539	10.1033494461314	9.60343673655387	9.98159090130609	9.6725544142874	9.97364743058646	10.2010299379512	10.0910026227608
+"LASP1NB"	7.09808366229035	7.75184893078151	7.84456355774441	7.7403159415285	8.34178426731461	7.26433740874968	7.1374140528417	7.39395350342827	7.86629224739292	8.3217231899432	7.42284964445505	8.12230015166426	7.75184893078151	7.5305198549678	7.68125345130102	8.0820205094874	7.75225027825662	8.08129348176126	7.75233853952652	8.49714098857048	8.48378575478938
+"LAT2"	8.93413010416977	7.630181844245	6.94862553972583	7.76853989504387	7.47218034898884	7.02084951295858	7.81446521582747	7.6747571162675	7.8653209366416	7.63508136472516	7.81137574698461	6.97298166974515	8.12538356566613	8.00267520670098	7.88689080673426	8.21647871648137	6.71928865586432	7.9224785342633	7.8637606989401	8.10486228794609	8.62555725115985
+"LATS1"	6.67420961977961	6.47203156493709	6.90884728033645	6.4664690109533	6.23043643296086	6.14994609514182	6.41436102687106	6.28150859097777	6.37329661193711	5.87275755679131	6.56458078734833	5.69819371546245	6.45484107198593	6.44729237149307	6.84735774073151	6.4518381854551	6.15028321774943	6.92616151055615	6.41732606016678	5.87158562155245	6.0052604559311
+"LATS2"	8.51589165741997	7.2160082241298	7.0315545377733	7.52878448320427	7.18342910026224	8.53574125325395	8.32087707519255	8.57680168941909	7.20267156934048	7.52316320165383	7.92677547203982	7.44590193925658	7.77723452187409	8.01860914404088	7.75251506167697	7.86610452528403	7.63688988702793	8.10433859331077	7.72922363667305	8.08644229864909	7.05806111782852
+"LAX1"	4.21145523463627	4.20606272197766	4.10087514208896	4.2493817728559	4.04255720820438	4.41607356219059	4.42446129796269	4.23205523742887	4.129051252373	4.18880368466133	4.22215636369654	4.2677744129358	4.33659868462242	4.21145523463627	4.29775047473511	4.21145523463627	4.30291884282523	4.11263849447761	4.21145523463627	4.14063873288318	4.16457873259512
+"LAYN"	7.59098520676841	7.74026690070194	7.01255160768316	7.12223612724615	6.98190864792364	8.20070778237452	6.99937736691648	7.47148138051047	6.40988095872886	6.64203949354351	7.89671018050974	6.82247748462717	7.41885264710483	7.34418880268568	7.28538329272868	8.71246615106456	6.81234239229377	8.19872355702723	7.16417115986882	6.93344098984111	6.78226751505956
+"LBH"	6.83348411669641	7.58242054094269	7.60526024226857	7.12960296442609	7.53620680538918	6.93118354384236	6.37875680463882	6.8879032702534	6.92569179680152	7.04703618052522	6.97521514410828	6.72710737205816	7.52434643720383	7.61790590327054	6.86100350057583	7.16520775934502	7.06204790862196	6.53210888529251	6.9221524080043	8.28818003881842	7.00500596260187
+"LBP"	4.08022174867621	4.00576511275113	4.14901043123104	3.94283394662135	3.84734217690675	4.2922220031158	4.61143990637875	3.68444454554272	4.06630510552818	4.00576511275113	3.78823365730846	4.15451915766316	4.00576511275113	4.38043919320314	4.16828465857404	4.00576511275113	3.91121389196708	3.826342139729	3.94430069733701	4.05937774751642	3.70511617080051
+"LBR"	8.42149348657005	7.74148158743464	7.67048846971319	7.65159038774706	7.60225524413025	8.08278610223659	7.62512775334938	7.89196747464804	7.36863033741568	7.19904376193134	8.07211451547	7.43032654165659	7.42791278492474	7.69482325365763	7.79185060928117	8.36579165630974	7.34590377196517	8.61096759852842	7.59818602683976	7.4355087818967	7.43418919712959
+"LBX1"	4.51977898946852	4.38805434998336	4.49497619638741	4.49665310682498	4.35808214196503	4.70623231116103	4.49665310682498	4.30542167957913	5.06011023720734	4.25377209953826	4.37065841190487	4.35252050422559	4.67182517268179	4.64156376881623	4.72701674719314	4.253592738339	4.59473584132251	4.24209792402612	4.24136731156793	4.69344102738283	4.46391170559843
+"LBX1-AS1"	4.98641829542162	4.89791436710509	5.16304009926144	4.90306742648235	4.94217081854505	5.46387951826781	5.36325672824195	4.91855457125706	5.05080267976136	5.06317286865598	4.83851391392687	5.09678940437857	5.16709913512657	5.38678739709904	4.93476439379735	4.72347249796134	4.96316047923998	4.86059224767462	5.19185462363805	5.07035324028564	5.15639700994277
+"LBX2-AS1"	5.41525797541509	5.56337636007271	5.12470360942587	5.47453846880079	5.67286679922654	5.85821565913462	5.8775827876927	5.56875754294562	5.26774002411575	5.41697222076972	5.47949547337533	5.55890411844152	5.82186647906693	5.59140381272771	5.64231252203992	5.5557370996279	5.68050657545943	5.43225810256079	5.54414812887208	5.43377961300288	5.40353803262879
+"LCA5"	6.30875086758557	5.64767975952149	5.47689524176883	5.84361429585387	5.61973436802303	5.28626017570336	5.33916615887532	6.39048569545138	5.66921698692977	5.45802022217804	6.14203013530958	5.49247264625287	5.46780087936496	4.96886548176481	5.85954466649886	5.95363658175718	5.79585029393843	5.78617945977011	5.85389325002216	5.29996174210912	5.37412316810948
+"LCA5L"	5.01683198612949	4.99698751180781	4.90718520917642	4.73794739878924	5.04784358900861	5.21787656460039	4.87598852855677	4.77183671631599	4.99347755387297	5.1163719732447	4.68543589120073	5.0288851652333	4.93704818765626	5.31765914247876	5.06988453926434	4.95074269660653	5.08228684239932	4.58864409395648	4.98430372334808	4.79474260008355	4.93124312555849
+"LCAL1"	3.82669676279294	3.65585851301349	4.13380466385454	4.10373524953536	3.89555214671762	3.77122946159149	4.28318389548889	3.90679553691576	4.05398019394213	3.83265116556243	3.71604635800342	3.93048614549888	3.78115270472624	4.08463637043844	4.15672604786099	3.96005921255993	3.68287423759754	3.76145915426798	3.92367895946163	4.12590318330011	3.98762508073682
+"LCAT"	7.44478953051781	6.63479116631272	6.73368845169194	6.4200153085475	5.72626409176064	6.56141851698014	6.64637962472592	6.53407056410981	6.45824788799471	6.35585489220788	7.1983472923632	6.45828395473405	6.16338232955149	6.62929654393258	5.95806343151733	6.88480171542525	6.11528271613949	6.66719531915068	6.45343904713668	6.31256625112223	6.32167434439089
+"LCDR"	5.27748302105744	5.61259977485416	5.46003676125878	5.40650430590672	5.70595419954227	6.066377294772	5.60501207079528	5.23620488511554	5.32698281332572	5.37500486821155	5.86002012289159	5.47238404453623	5.30430029570171	5.69510844194272	5.49686820955767	5.66955263767794	5.33846181070353	5.5941733389914	5.25798553301854	5.36575677965028	5.52122827789565
+"LCE1B"	5.55959791619376	5.57904103490752	5.69815289327533	5.67129815991192	5.63282737911643	5.45674797666311	5.79940201700914	5.56194577710684	5.63282737911643	5.63282737911643	5.5276295786727	5.82858174357182	5.64881710141828	5.73458833531939	5.93504453944449	5.75207445594423	5.71282929308011	5.52095626047668	5.56046016748857	5.37568274546062	5.7549607330292
+"LCE1E"	6.26686370412854	6.70037483035075	6.11316305925245	6.85215532975574	6.38478725324188	6.23480671568236	6.11367082491704	6.41334996700848	6.48681978534067	6.57296925241026	6.58450749272898	6.72812639159127	6.64949366934315	6.47251078564461	6.63499931557217	7.14888962841556	6.88762626988212	6.16462523513226	6.43068688394677	6.26264642654644	6.74941816602342
+"LCE2B"	4.37253480609131	4.46489461248084	4.57887302620449	4.57073738310738	4.5027978292698	4.26968486656065	4.50128772084378	4.4606676567004	4.46031841018071	4.46489461248084	4.46174569779722	4.34514194396823	4.56864859486724	4.28735645638071	4.34729445055967	4.53805865880769	4.4898917495579	4.4124920591852	4.48380737305071	4.56406352726064	4.7159909606432
+"LCE3D"	5.63282737911643	5.6545712205523	5.6381502615925	5.71288362357998	5.63282737911643	5.67905652962612	6.24912239278042	5.61569224313337	5.81941466755767	5.68494872572342	5.37380839530264	5.62509043902986	5.67905652962612	5.82381360103258	5.71133652674127	5.63282737911643	5.56725270922885	5.42266695870082	5.5981394180822	5.60696809232873	5.64052304847494
+"LCEP3"	4.75624683680337	5.27867667163669	5.10987774282196	5.2851070918726	5.08158041795888	5.08291307003583	5.20918242276321	5.11145582225982	5.06359662435053	5.29439946128232	4.92540686098306	5.18324322725217	5.46651582407048	5.19534841725853	5.18615674075715	5.09551227867746	5.25343679682295	4.95156841211104	5.10987774282196	4.77445995575887	5.29341495090134
+"LCIIAR"	4.81117824598457	5.09122390903668	4.78970595915453	5.17782620983197	5.05859112135156	4.78136051283204	4.69324252624419	4.82024529718401	4.85369563366465	5.05255133902102	4.8484387700936	4.74905800359482	5.0398283900639	4.63821513590227	4.94128708115553	5.16200714231887	5.02441961314977	4.65525897536558	4.93383540019996	4.92739519806769	5.06227985276801
+"LCK"	5.30244655467032	5.30244655467032	5.30244655467032	5.55074770251696	5.21449475291319	5.5941733389914	5.7722338345253	5.1832493988637	4.96361870590512	5.40143658359277	5.13505377395278	5.07402461865744	5.53780275892384	5.22049865238124	5.17897583377368	5.29963939366284	5.30958573606799	5.04886222548182	5.38945422519445	5.53147984400162	5.5882370771738
+"LCLAT1"	7.32660886846373	7.32964071218187	7.99115156068846	7.1523478578347	7.76710742902969	7.04936976293252	7.10585266248347	7.25103400461399	7.51390955091558	7.43812752318075	7.01521619321076	7.37884847320198	6.95937139390864	6.779209498213	7.12147618179929	7.31833447824462	7.43435447404457	7.55562802398367	7.14882977772215	7.78108752577479	7.4183416272536
+"LCMT1"	8.55455403550787	8.84753091717553	9.48354270982598	8.65966825325685	9.28615102906901	8.79999518923284	8.31628971392913	8.81965057542533	9.02101531299393	9.22145661316905	8.71939746825886	9.2133657928351	8.45237544104717	8.39271536062708	8.85325763369718	8.80377625867705	8.89110961335008	9.04673350146207	8.787974058156	9.3307172130248	8.89699955927004
+"LCMT1-AS2"	5.04074987014872	4.97756601877392	5.04624023649586	5.25247263531375	5.09519656604295	5.18238064265082	5.28831996891557	5.0121687035485	5.10178824980401	5.20439271621996	4.83204251089262	5.39090412563066	5.17682945099346	5.26079804330518	5.10123698512881	5.14116446538319	5.02735754868254	4.76984455529623	4.80419531992814	5.12129498878327	5.14595182115562
+"LCMT2"	7.62391539698605	7.77485962407344	7.91967220737167	7.5597861726713	8.07889918691791	6.96884346843516	7.39848898410694	7.31182288312839	7.42406343068426	7.77955293034587	7.92657044702917	7.02786477071115	7.14022803755366	7.62920495404961	7.35852871490975	7.97732739565924	6.93435138816005	8.09656195381644	7.27351963928135	8.01926703109471	7.55719260398799
+"LCN1"	5.46581801029674	5.61808538300946	5.88314208823741	5.86101406594872	5.55776968817376	6.04981717946903	6.3808732781389	5.68158291471038	5.88849286981189	5.85359048678124	5.56586385063585	5.95893788493486	6.19330659929664	6.03676411008001	5.84063129215026	5.17150728453236	5.80209228051326	5.61004373883994	5.97325139048016	5.53332863202078	5.80209228051326
+"LCN12"	6.24817698453919	6.06515258521175	6.54073036784031	5.75064586411193	5.56829778531591	6.08431944766313	5.80704814905133	6.1427073352185	5.46978112668201	5.98990752752239	6.87152087279256	6.14740262097618	6.1173484989412	6.68119903991147	5.46614953756718	5.62277302959372	5.86164012931946	5.99099694212164	6.06568639636333	5.5829262098017	5.65303376394336
+"LCN15"	5.89701339832846	6.33009565278784	5.92838434157023	6.26674332618903	6.28118408382836	5.99495882871866	6.07348271388367	6.11617888247044	6.22754248767887	6.35444248319236	5.77689832518441	6.42716678958973	6.2328975244182	5.87545132949356	6.09542104615922	5.78527726717388	6.24718141537516	5.78895181918354	6.09123006782084	6.40752658602458	6.06351167105006
+"LCN2"	6.44462388154056	5.35660877988313	5.6931082589306	5.82082014498928	5.75388947511125	6.04161915816421	6.03009060348375	6.33771893943163	5.67961536869474	5.63994281838149	5.13866610918291	6.51669834149641	5.76089617626319	5.82082014498928	5.77246095989617	5.32831481516574	5.69947037834146	5.72444210917908	5.74272731343896	5.64698562072378	5.76292932913285
+"LCN6"	4.93158940876769	4.86533731583237	4.64013080727164	5.10987774282196	4.73904328039566	4.88131592056406	5.03743127331056	4.60672210633664	5.10271148811508	4.99100025460551	4.72437135472082	5.03617092166707	5.13869922740524	5.38126241779738	5.04058919833405	4.58232894098823	5.00063602589045	4.54776760227196	4.94695729183649	4.75361931894078	5.07479638656985
+"LCN8"	4.6287426835127	4.6656478005912	4.28824788247878	4.72989962032667	4.55586015465058	4.65450782455587	4.6656478005912	4.54090118462133	4.3960827330469	4.82861998825234	4.62622683478018	4.76643914432296	4.86944810878816	4.73073951910806	4.90815404167316	4.7939943459758	4.71128203724331	4.43437598937085	4.70188784048776	4.59795960407873	4.70933236748934
+"LCNL1"	7.0081114793511	7.20996356095528	7.43682302044307	6.95430311196657	7.1113062551358	6.9429415554421	7.77599556347397	7.3856212687836	7.50487622313091	7.02686826642513	6.99093919059203	7.02507544696864	7.66071724452664	7.1849690290492	7.40377429597986	7.19699955422448	7.1368868746014	7.20094425884322	7.06537870940634	6.92174188388884	6.99276835142381
+"LCOR"	7.87783059671476	8.27651560936352	8.4260906870604	8.47089642923603	8.04412077626845	7.95985468940508	7.57027597825303	8.13054076469699	8.20694941506194	7.57393072834474	8.29051956111429	7.72984088040096	8.47506701425433	8.11266695300763	8.65295223358415	8.3938056386541	8.26726121465973	8.89233779498974	8.13792507681602	7.6258709098967	7.93751491076865
+"LCORL"	7.03034297836894	7.30151666682222	7.43311824125712	7.39785294414072	7.22459388520866	7.02486748460049	6.3542588022293	6.67763622883929	7.10010084106319	6.58579013051428	7.65869874391639	6.3580225395932	6.93950037419317	6.72253355809616	7.40261236727823	7.53050079555169	6.67671247346367	7.92963782551086	6.94854114197354	6.56209161257603	6.5793184786918
+"LCP1"	8.42528907117046	7.45503527904883	6.569188024093	7.56981107678824	7.23275563244529	7.01391999041701	7.61926860836139	7.84223911570746	7.29370502899017	7.76775628387716	7.11167282847257	7.06812423702401	8.03083731975586	7.81028553006512	7.33659183961499	6.9081190921094	6.86353919011672	7.27350515967363	7.39789103359221	8.0578380820696	7.67784661553202
+"LCP2"	4.62326000193653	3.84345262969929	3.58387896601217	4.20291384464216	4.35000811130806	3.8295192535945	4.14265560109519	4.06449762121001	4.46287107230919	4.49665310682498	3.81804327958815	3.53932555628666	5.06397507024652	4.70329169797925	4.85115358214558	3.6275068928444	4.18980565424249	4.03979539245002	3.82645146932517	4.33844436933875	5.77229704127301
+"LCT"	4.78425710149537	5.16297729534596	4.81908335854173	5.01072806958743	4.90863325609298	4.66611384695039	4.97078882060694	4.97326743638338	5.14785645014479	5.02911786542874	4.8339104420173	5.10246663358632	4.87751529043314	4.90267342256056	4.97078882060694	5.08980050614312	5.12161301371873	4.63639632824907	5.03997867653955	4.72417030893114	4.96015613065332
+"LCT-AS1"	4.25714074302999	4.4752576076541	4.4752576076541	4.38499899631711	4.40332441089985	4.28586524247825	4.59504737940116	4.41235022625702	4.53603400773564	4.55948007504201	4.5011560550338	4.49611752641069	4.6573718613387	4.52316608163369	4.41016449365541	4.59225977442508	4.4752576076541	4.64453871921553	4.4752576076541	4.38499899631711	4.4752576076541
+"LCTL"	3.43665218618805	2.86741560517499	3.00794939732631	2.88829330098211	2.79854200264922	3.15661021599238	3.18911246908135	3.08760240775618	2.79568559330963	3.01449908281559	2.88173992217623	2.92494912913187	3.01449908281559	3.10271875687885	2.81699952419304	3.01449908281559	3.01449908281559	2.95739022132622	3.03500571159595	2.94906970106365	3.01449908281559
+"LDAF1"	6.1866766076182	6.05363513771972	6.08781981895868	6.27580215003386	6.27580215003386	6.2837148724797	6.42698534316364	6.22436321691284	6.56052567363749	6.414956605014	5.90970737586715	6.38944294102001	6.32631873245273	6.05675899364944	6.50438444789022	5.98082556455347	6.28175477293558	5.84324430367431	5.95755177496617	6.49630667864634	6.27580215003386
+"LDAH"	6.72131267569823	6.28650219644322	6.69079578301424	6.18103731341069	6.18084989516775	5.82308555647322	6.36952459577175	6.63579338678603	6.46050261087906	5.8354143670595	6.61318988178072	6.23804923581854	6.08775982572	6.32651167151798	6.42230820867847	6.79860068590717	6.16562225338658	6.51975328628569	6.64806030073652	6.73057291351976	6.31886187063529
+"LDB1"	8.19999750615162	8.38914316783394	8.58229749462227	8.54545978218495	8.47943249866563	7.86111285967687	8.09463476145672	8.26252838650541	8.64133044106869	8.79506710135634	8.78163957929144	9.18176796479821	8.46870626389368	8.39261921458419	8.20062257660606	8.15654870280172	8.35315670567917	8.28473334469331	8.37788601566871	8.88166005230179	8.33457172758827
+"LDB2"	8.2352903979881	9.83370268749454	10.1837895010629	9.60031929855059	10.1090491561651	9.36570979538832	8.47093176481371	9.48108667145209	9.98177985120633	10.0851081947086	8.88266544470685	10.0944613152412	9.82253504448713	9.02060849060533	9.80832966883215	9.14815650307637	10.1761389759246	9.62474210069208	9.78357452996388	9.96649273689529	10.0656401023175
+"LDB3"	8.42200987945519	9.4936144907846	8.94127520538177	8.21550490583495	8.40887795830404	8.60625413982692	7.8018050986177	7.72895318392761	7.2408800231123	7.8568499817716	9.92424876393909	8.20324981031766	7.39859270905857	8.00786547112961	7.6430966556471	10.8055286614357	8.33060508752857	10.0827070329489	8.1202636841999	7.44290786778938	8.88323070035623
+"LDC1P"	5.87269253612884	6.08637895114899	5.98990521985831	6.27596578033089	6.16300045368405	5.94106468156672	6.05531927115585	5.91967184109473	6.07047733294327	6.19414173304409	5.55654227050117	5.95664037522159	6.20006019752973	6.19680580855265	5.98990521985831	5.78031589836685	6.02292320085004	5.7305215753788	6.07687469251547	6.05531927115585	6.10630047682972
+"LDHAL6A"	5.45196589960423	5.29305663053561	5.59135986039001	5.47949497258154	5.43303578516973	5.41184895136582	5.48516655108729	5.36445197743633	5.45124121372987	5.43141547223631	5.05204655490962	5.31443125853816	5.25677157865298	5.50475339132322	5.29622300310396	5.65452893518825	5.45265841606295	5.22373344464041	5.51883228078082	5.53004215898114	5.52879641209689
+"LDHAL6B"	3.14677347606495	3.48401303533419	3.44622895746191	3.38926349942786	3.61167763812979	3.95152048939669	3.47946671419676	3.48401303533419	3.52794444075191	3.48401303533419	3.5209103854244	3.34427809391346	3.45465518473407	3.49103797164431	3.64147130319661	3.77635352914673	3.44653842070429	3.27526758977914	3.50391333554087	3.60117327179071	3.5205954512943
+"LDHAL6CP"	4.42510777235841	4.34778866132939	4.47776505741284	4.58923904705325	4.42524615829656	4.45503733336714	4.55008618552888	4.74989853287963	4.82637155812667	4.59493620831976	4.49816802271099	4.30291884282523	4.43487968386304	4.32564669641726	4.54055478938658	4.69081824989688	4.59776458817746	4.60086102749226	4.49816802271099	4.46012051813003	4.37313809717194
+"LDHB"	12.2916110185038	12.3521311134472	12.0948543792902	12.2015423895239	12.3196469690414	11.1736672862397	12.2808136056776	12.5213215062598	12.3223710760385	12.5338294625396	12.2788335439049	12.3704053226394	11.8766151372379	11.8192298359229	12.2750800741441	12.1060139911026	12.1901952350545	12.2852388335975	12.3928902283624	12.4710527945313	12.3283063003022
+"LDHC"	4.73194834975489	5.05836240675419	4.85026982714939	5.18362637238502	4.99576604058051	5.06054084327263	5.28739670808191	4.90688904884866	5.40003816093323	5.1234540728921	4.67224266322286	5.12425060252106	5.25827997476136	5.39415588805401	5.05836240675419	4.80873605604388	5.0224990039725	4.78899181504822	5.33000249513325	5.13981411168201	4.99707016583581
+"LDHD"	6.18222832424235	5.78045680554087	6.29082892697284	5.62052383583875	5.93603261909063	5.73715070605808	6.14117216891384	5.97082389364537	5.58998915888436	5.9030352022298	6.11869585293192	5.65785096579177	5.07389620470939	5.67077230006758	5.24721850777121	5.58256513904788	5.65697876210351	5.84946248024184	5.76125936971348	5.73771988858424	5.48170118918399
+"LDLR"	7.89095629947346	7.73668489972164	7.56079576072572	7.46497024901836	8.22762134849382	9.18895464869793	7.20475185369432	9.4563752896378	6.92591304528903	7.47785156917017	8.22334509282089	8.53434071470174	7.81587413311654	7.62719458549783	7.86135975206452	7.87229268208131	7.78964556710014	8.75385684220318	7.27431339417324	7.96881302649512	7.91328309475325
+"LDLRAD3"	8.27991529162963	7.80361129542544	7.29854833712064	7.38302615390148	7.18755733316194	9.31159947467854	7.36297595402471	7.58722565820169	7.01717858773382	7.43597359239577	7.82839886579311	7.36420716949382	7.50570162673986	7.63313793253996	7.60018469707517	8.46732648547256	7.14489339347211	7.63676896891141	7.36983408164379	7.16903184016095	7.09199682110371
+"LDLRAD4"	7.77235915180328	7.95753203383232	7.29863438831043	6.97766463880558	7.56306974757355	7.26862707500322	6.39783469800111	7.49380911932273	5.80964977036834	7.1900108973063	8.73755186317001	7.01136247169681	6.32121993505228	6.64710386001209	6.4705322866964	9.58391519181098	7.32069459781919	8.90260678324033	7.09958243027859	6.95629395062414	7.29432593532591
+"LDLRAD4-AS1"	4.04509730098976	4.51350516220415	4.10246670667321	4.36764399710124	3.92806619124373	4.16340364178039	4.36764399710124	4.37269218303602	4.44595408320038	4.32343393209424	4.40917368392766	4.7405505524473	4.52245621349908	4.32906407927161	4.62644761047605	4.34159626518582	4.49403215409852	4.30540531099675	4.33040483508317	4.31429431151932	4.34090487541564
+"LDLRAP1"	8.28317197627768	7.72565711102188	7.0659317443789	7.33870066686076	7.22909525436688	7.81984002485772	7.35521826147424	6.90838932696212	6.97214164324651	6.69143956666325	8.28504426567127	7.18690848901627	6.80299721953423	6.92012246366939	7.19637597959287	9.62892020618141	7.3818512267483	8.57653393079176	7.47305339177417	7.27443019365503	7.55567635382479
+"LDOC1"	9.83295648591631	9.86055293954818	10.055898333494	10.0084774873297	10.2920795025128	9.97515062462926	9.19295537897615	9.92073789658271	9.97929782426041	10.3704324025521	9.73838749607629	10.3142988765907	9.63864737024348	9.73322738201827	9.60921955382188	10.037504208984	10.2061497021327	10.2679828367198	9.70415590859463	10.3673118118556	10.3048676280457
+"LEAP2"	6.84603738314067	6.29462325515115	5.85629004392639	6.46421849163004	5.99878466172823	6.38099883796311	5.94214315795404	5.97396377529102	6.33679292423441	6.03294141139823	6.51329796949939	5.82648687307589	6.26690882677525	6.5259133054408	6.53555580588306	6.70152406960656	6.27085519652843	6.80620647061034	6.38235099983339	5.9401593892309	6.2399984295616
+"LECT2"	3.83353097716374	3.5631517154673	3.21567224680756	3.69994805409955	3.83282976304378	3.4302015273184	3.42331563622323	3.53741376891322	3.66042183037632	3.42354732431545	3.28826320270872	3.53741376891322	3.62106354796297	3.51117874308564	3.67450802419004	3.49030142949583	3.59927561395681	3.34455271926446	3.68175891063662	3.5888135024718	3.71667196076229
+"LEF1"	8.43529491496957	7.18819039280183	6.66013767041267	6.91434841483469	6.59361593165903	7.97780992933432	7.12838699925669	7.54399971811434	6.61100292439022	6.50506615795499	7.04654118122876	6.69226579734936	7.44513145991648	7.86922762651084	7.08724017799286	6.2643153529476	7.05225476374023	7.027183781052	6.69180621942166	6.96998103899263	6.67460768609007
+"LEF1-AS1"	3.83911455894166	3.82941986932858	3.85220825252544	3.89802321189792	3.88218778795126	4.3136205342703	4.41176216784516	3.93962657187868	4.35544045754653	3.9352838784256	3.91129561448531	3.78226408336184	3.99465726063373	4.02264324777335	3.97310548945642	3.87246272751622	3.98274126074136	3.56690969947292	4.29938893389525	3.75184733297172	3.96410038644323
+"LEFTY2"	5.55769117946991	5.50200728486372	5.74542821462657	5.7637414832805	5.64041142409613	5.60670240757326	5.81448318524048	5.35957179318047	5.58248254635475	5.76837387359347	5.3170044078124	5.60216062946774	5.66785120733899	5.84699404781744	5.53127085502036	5.60619671275505	5.68262815200649	5.36469091838024	5.57577250278592	5.70418391282521	5.74337430377414
+"LEKR1"	3.46468557186685	3.67810927848595	3.70603013300827	3.76856746140569	3.74242371518066	3.79529266101241	3.93914734324913	3.53231661936407	3.56967236094219	3.65152358630038	3.60365339612973	3.4719150959137	3.65477870728845	4.05442406685065	3.6133985219827	3.60229257551357	3.55440623833628	3.45534669854986	3.53741376891322	3.64282934201743	3.79515362516233
+"LELP1"	4.97086417458468	4.99677669318271	4.96280867442967	5.09451002617821	4.91708165502444	5.13935590761223	5.40754425050752	4.93438992991558	5.38533502761662	5.21235567551269	4.92912324034964	5.01927668871185	5.05497694948843	5.06347148773014	5.09374426874847	4.73034540270639	4.92958735531573	4.70278308355282	5.18147598486445	4.93062010594444	5.01014317112256
+"LEMD1"	3.95463306270412	4.32550094927028	4.18978982738665	4.2493817728559	4.67023210974159	4.18792212624142	4.42972859117836	4.57512919121534	4.3657794455515	4.60158400241182	4.1350044426513	4.38771443776111	4.37974299152109	4.27766861753507	4.48331838504733	4.72602767975507	4.47682205490565	4.30692160198797	4.23860220225807	4.3873652049515	4.48537611768045
+"LEMD1-AS1"	3.69823962849221	3.88143468029178	3.67975730556172	3.85310942999975	3.65542880103235	3.69470554557516	3.8078199065705	3.73053299532237	3.4915292965329	3.57943836156865	3.42598080769835	3.8635070011498	3.86914938156099	3.7462520064756	3.74282042096516	3.77297575639587	3.61084338300452	3.33437538303796	3.8957375365778	3.69305848859646	3.66588532209645
+"LEMD2"	7.78264833404717	7.87053503354959	7.95870163910757	7.62667118584139	7.80800755850266	8.29128106547985	7.97409287759488	7.78166936494128	7.60276265405775	7.73694842562149	7.93135634319249	7.74060413186551	7.61961820942658	7.78031969339599	7.36811493736494	7.78264833404717	7.76251139378264	7.90035786454703	7.50141904636003	7.8994248512199	7.68750635825968
+"LEMD3"	9.12396555924148	9.29641082584277	9.79259427715753	9.46051717817236	9.51549937898503	9.06191942257187	8.83507028343318	9.27901916689042	9.62637966518692	9.28638797987528	9.06765937862801	9.25281154950655	9.28385838585257	9.0077306633635	9.63353592314889	9.25208744063206	9.40113321971809	9.62382114864878	9.30425852482239	9.28507827577614	9.11332585401583
+"LEO1"	6.89003831868367	6.82211797036805	6.98908364865512	6.83958080439561	7.11627629583809	6.38443257179815	6.64201615656093	6.73644650082248	6.99991404064794	6.83295926746323	6.90479649747813	6.92472748874483	6.63335744664851	6.50486911363902	6.81258619037915	6.95959157205079	6.63870999995286	7.354790355198	6.90295127030387	7.27501344112805	6.96825609896843
+"LEP"	3.87342093969551	4.12359052740168	3.95348564526822	4.50020170478797	3.8634115088549	4.71427125154347	4.20959604958139	4.00601290689918	4.70763794751992	4.15213443591149	4.16785576446261	4.1069308487292	4.07973857987988	4.20475865844413	4.21749257809528	3.99984701494331	4.13556667121249	4.09019515982857	4.13556667121249	3.91977967638055	4.13556667121249
+"LEPR"	7.45725414798408	6.713134353926	6.5793184786918	5.09127346196411	5.90942476473572	6.59354688655055	6.05208458130555	6.97458090000526	5.81517975023027	6.88294778331333	6.46162711088756	5.12537566469793	6.08689121480304	5.78017887553615	6.32044279222302	6.25280251492268	5.58149924278408	6.65720679727028	7.10858839816785	8.43677144606642	5.20763729583304
+"LEPROT"	10.3874612444576	9.89852776074943	9.34251161748199	9.35200436516779	9.1361557978081	8.30520002291084	9.37321553645094	9.90375189747425	8.9700202274152	9.47131039619443	10.122304695712	9.09810188572705	9.05625732664518	8.89959119448342	9.06199319156545	9.93086054149518	9.41182655320193	9.34113526550833	9.39877055379478	9.40013710412883	8.66641457736
+"LEPROTL1"	8.03712291266128	8.07924611322295	7.14814981673014	7.66816088523128	8.07942262835333	6.91861783102646	7.36091526030038	7.77061234971101	7.59001982344253	8.39362048026553	7.84052912929292	7.96532875161648	7.51082506902802	7.33087369507028	7.24596910010557	8.26545464960748	7.81122931712915	8.00563233539351	7.57616936837087	8.22436596072878	8.33767174787135
+"LERFS"	7.24287465896063	6.63346907555894	7.46447319106909	7.43314596382243	7.14844163790859	7.631844423577	6.50347758945579	6.65552157146541	6.79212287747227	6.78220757693601	6.47976100372211	6.67662296289174	6.93923130504113	7.00415908151789	6.7674658692634	6.77737490386689	6.61433303858235	6.38762639270529	6.84602069126443	6.65964638456629	6.91985408895261
+"LETM1"	5.0848388298738	5.12052672196426	5.18261666660361	5.29711032518786	5.00365791429477	5.38099074556024	5.82599896883747	5.33853103959405	5.44561218386934	5.26265897708434	5.26265897708434	4.97418209130835	5.36328539212481	5.38374663892317	5.38612407786335	5.15306647416092	5.26265897708434	5.30912033734858	5.67998660284058	5.0964081522302	5.32102066553137
+"LETM2"	4.72083029964895	4.52320600503646	4.55922869360596	4.83063871079206	4.96761178307124	4.75391176901744	5.10304544887402	5.38660706207943	4.58497560512897	4.57512919121534	5.12746650795198	5.36561860048561	4.41146546540202	5.13066383512525	4.75391176901744	4.80920276004407	4.73580696249974	4.21445382764862	4.80419531992814	4.53614888447149	4.4252700519392
+"LETMD1"	8.81428049963689	9.48880881954167	9.61010213173586	9.0185170669221	9.65840952280607	8.70088303810156	8.80683553054335	9.2383431902168	9.36874825620245	9.5490629744547	9.18559420175971	9.53398325097834	8.76705973249626	8.93990420873072	9.08880441247372	9.51817768816108	9.59079018020894	9.32890177009467	9.26035253243853	9.77330630976753	9.36447293972426
+"LEXM"	4.24782819571266	4.3509033376019	4.16402289593506	4.35103070568085	4.5462143783634	4.63848699829855	4.8840935478055	4.08412943913575	4.16089863856463	4.29938893389525	4.18766057619434	4.02880362106251	4.4808275311605	4.78007749174603	4.33090372355659	4.09224623731087	4.35103070568085	4.21458596894595	4.45337876250584	4.2503261581286	4.2262789321438
+"LFNG"	5.46020331624105	5.61800898459324	6.10120975535104	5.74823608970773	5.7374150328092	6.18973522690927	5.83910108229307	5.83096834310124	5.75798020871146	5.70614355591426	5.2959536581184	5.86857804027558	5.79582196604521	6.12598758477723	5.76307995001991	5.3340424791806	5.76039323959842	5.65204034778797	5.89772343949909	5.80168354829012	5.50439587952295
+"LGALS1"	11.6002038996523	10.6284820560522	10.7306864759508	10.7529954779466	11.0680239084466	10.7201398455571	10.9042449637854	10.7306327069517	10.6806127829612	11.1751912846849	11.0788478026957	10.7460575316449	10.8068232457776	10.6943991278786	11.1347756200153	10.8238133946902	10.5741061850043	10.7841724284538	10.9883974884669	11.301858184802	11.2004061370199
+"LGALS12"	4.82778533461422	5.09122390903668	5.16911146314832	5.09545878603843	5.02568276303626	5.73695552079125	5.95218937784387	5.07134849370676	5.23954076055935	5.10398814570768	4.85190614137742	4.92762474908566	5.28536427743642	5.53308044488602	5.01484557380909	5.07134849370676	5.07134849370676	4.60670791275862	5.10302071045919	5.33691139859507	5.05104601225181
+"LGALS13"	3.35273973330897	3.8999563247851	3.72701181726783	3.76686675449259	4.05149817567719	3.5228677750232	3.75714810291262	3.57705260378704	3.99228418655372	3.7246310796177	3.55711739778027	3.82993984986753	3.87137120672136	3.56172329408374	3.76429919441067	3.65490814973913	3.80909358392553	3.5824833761875	3.77183594810651	3.91977967638055	4.16086754059975
+"LGALS14"	4.11140925861702	4.12229612805469	4.10351360570765	4.44188057003714	4.20153420133902	4.2820234676662	4.12056468334612	4.25900172818087	4.23335738633791	4.18721605820707	3.90835719202369	4.21882295237338	4.32851815886872	4.02857109206802	4.25056450152558	4.45098570805465	4.07927647426388	4.0485509738294	4.53705280031281	4.1008783718687	4.26685971549792
+"LGALS2"	6.8931407970662	6.89480069443868	7.1829295072486	7.14074207785808	6.84624276949801	7.36292931204828	7.7342671789695	6.94969347060863	7.03956193964598	6.87796067833434	6.62029870794191	7.12183002432971	7.2210707769658	7.43544298844485	6.94484448851354	6.74684953260654	6.89929975850274	6.68899157386168	7.00479758690874	7.00366610866603	6.97541807603919
+"LGALS3"	11.5834065189619	10.3728393957543	9.96053584542463	10.249521545059	10.2634434997976	10.0122047192372	10.3416019833569	11.4553416869244	10.3214770622871	10.3023739155128	10.6871794501317	10.5069084758723	9.8765176957678	10.4397016351163	10.1721970093421	9.63452782217644	10.108900957381	9.58456793521614	10.6171256388422	10.5146841482893	10.2840324422024
+"LGALS3BP"	9.28982824755829	8.89218063522676	8.1322505411038	8.45201239376825	8.37756557356184	9.54086234448638	8.44965970439234	8.48076682558483	7.65836038457331	8.34138214884644	9.52057866840576	8.3897964819147	8.17441745471494	8.85430556449393	7.87075696883113	10.0962094841502	8.16675302084105	9.89577937028387	8.16075518984096	8.59271652283724	8.48076682558483
+"LGALS8"	5.42550575241425	5.4205152597258	5.24202534377331	4.7100390538169	6.96805148757346	5.26597941966313	4.43997767611285	4.86283309888361	5.55024003257377	6.99576900503585	4.81939950349007	5.89286249949789	5.00247979927115	3.39432233062743	5.12850596159069	5.44142630156899	6.4528797593828	6.13786986477307	5.44142630156899	6.88417354916164	7.08550581634435
+"LGALS8-AS1"	6.38257691374792	6.37518844055362	6.49420747063517	6.65622337838539	6.54681323781975	6.54809057595236	6.5944391162581	6.34459937729075	6.5431693000768	6.4294382233406	6.22710678640975	6.65696779135475	6.52562905479712	6.48583228849031	6.52085122335414	6.63050526137989	6.62238936097051	6.53036259315506	6.67926811953088	6.45835062349438	6.72947734658545
+"LGALS9"	8.46256346701945	7.61698732441529	7.58137055738004	7.28626567583926	7.14738832808681	7.78648375945958	7.61310555595084	7.76587411017593	7.63963438390144	7.78545354073302	7.82520544400587	7.41036400609228	7.60498494958589	7.94857056347622	7.44417815933084	7.51463149985724	7.71526998884105	7.86906233965959	7.69386142035264	8.03596392771189	8.05402545589055
+"LGALSL"	8.83618243216655	9.27065169775697	9.44496368826801	8.97079268596739	9.35317997551729	8.79910390555446	8.15144980936942	9.0335619559318	9.3324553714137	9.37467872814954	8.67524746758935	9.31192434478957	8.96966230404263	8.88994866144879	9.19989065699885	8.74501453450736	9.13615237055597	9.18565275064311	9.03641776065968	9.29422555307777	9.28934323415464
+"LGI1"	11.0042695622614	10.1961776133907	10.4410302932104	10.5059688106865	10.0868403297738	9.54126324684199	10.2439179508876	10.2894057208941	10.4516160844316	10.1351297985586	10.1030260435494	10.1488023216477	9.8622216351661	9.92333657303971	10.4598795002729	9.63396320709651	10.2209614635964	9.84651946716246	10.4378922357382	10.1070132882441	9.73143033558068
+"LGI2"	6.84616401427156	6.8357320371186	7.07637200547968	6.98591280794779	6.99854009490612	6.90237709266814	7.34297037825193	7.10758688460646	7.10144723740511	7.20053798074531	6.85832241409557	7.06062726980237	7.15608473544169	7.21845484353289	6.9077051308476	6.89742377521472	6.99854009490612	6.60253118602717	6.99722326649729	7.22449683663748	7.23807883032128
+"LGI3"	9.20500262948293	9.52069807468749	9.33582933304526	9.4882976046567	9.61245615216897	9.9361370533537	8.74518519337725	8.96727441473421	9.38827801683737	9.77573791202546	9.87920416227714	9.67677283628719	9.54947559539564	9.33989111237568	8.93332872481491	10.3229789879354	9.77090941707502	10.1793886388249	9.43442939777302	9.81934811469407	9.84181812571887
+"LGI4"	10.6440768282468	9.42831876626713	9.25783045710546	9.8174984183611	8.9842836137547	9.04689944540826	10.4446375525912	10.2306565537162	9.63112791751009	9.25172238421339	9.5916297959395	9.67624003214116	9.39662764492953	9.66207778780807	9.53081655504269	9.4938858191899	9.58031496612207	9.11994033396837	9.75677434376663	9.45165610879389	9.01286667476761
+"LGMN"	7.44378448708683	7.63558436968765	8.21504258718022	7.52889871238802	8.12285182899274	7.67300199346639	6.65618696526826	7.91889970006717	7.59727823511278	8.08917352569149	7.81315039627426	8.14988207910708	7.51786858647348	7.01306389467386	7.25555082855295	7.84615896696585	7.76237762852735	8.13061528323827	7.52246976140287	8.22553690012231	8.33332483228003
+"LGR4"	6.68934404201634	6.7889358630525	6.65435235278577	6.8068817553251	6.7807911487447	5.84941931724838	7.18715912413329	7.47598094788333	6.74118515467209	6.38996846307449	7.1462755509352	6.66237402427022	6.78333676814789	6.39654934481864	6.78510126954887	6.73710573232292	6.73068034199682	7.13077478878136	6.62761020852895	6.42837930864885	6.38811739319991
+"LGR5"	6.48659855365978	6.20582404015985	5.89813453853355	6.21027791523448	6.06972889224208	7.08485953578588	5.35918604759583	5.56276735648174	5.12609492608365	5.43722313679277	7.27098693555865	5.86068701190145	6.04530218834495	6.09237586202358	5.6656895263878	8.08860408609254	5.91478811341432	8.38270192424197	6.0535673029115	5.13801146598787	5.85005484701921
+"LGR6"	5.54745079000326	5.02785576910553	5.2241025429811	5.46336962344026	5.15059177743899	5.99668649830708	5.4754960482	4.94387556848698	5.06020149268547	5.04411927929067	4.96663721307224	5.26336099898909	5.46651582407048	5.33329733941221	5.72819661853945	5.21647706438621	5.35813631457655	4.7281355555216	5.27567806041512	5.26336099898909	5.41382708098808
+"LGSN"	2.99124915038837	3.10404232754912	2.98873393798639	2.93789193746416	3.01429089298307	3.02480347381489	3.15945895321193	2.91956697663603	2.94234411096569	2.85795544543329	2.98492380363222	2.90764206287253	2.91175009795991	3.16420313057166	3.04685411706512	2.91419174836181	3.10984501322247	3.02265081280965	3.04029747753994	2.81817212460236	3.0377964075911
+"LHB"	7.00610916648331	7.23786270206498	7.18792619675365	7.20735707804803	7.10904471930621	7.6818556022182	7.5842902328718	7.31034377569606	7.36478058999834	7.30394006115957	7.02519247445832	7.21443256791259	7.26418046022007	7.65511540901022	7.29598903867181	7.2674901767455	7.10867009521986	6.72288102068119	7.49304662138133	7.2715942430264	7.1577122355805
+"LHCGR"	3.13389083805692	3.2655300216423	3.12646653404324	3.01629296517425	3.19083666701576	3.19083666701576	3.13645256648828	3.21317829719518	3.36073767917989	3.19083666701576	2.99056553795194	3.19083666701576	3.24737021248132	3.03028530400028	3.356722404145	3.45386338082716	2.95954444155927	3.06626549612627	3.09604778611934	3.28343065154398	3.15132839120907
+"LHFPL1"	4.45180297954975	4.55938833684611	3.87326041365276	4.44018615098218	4.10963202127779	3.99321485246642	4.07044478767821	4.6461515078929	3.85425232857938	4.03979539245002	4.19663788908293	3.98351420046579	4.1141232864854	4.62460229619054	3.81280803676254	4.08616168239942	4.11400296299642	3.96608826261897	3.99647292484731	4.03761393613388	3.88449014412222
+"LHFPL2"	8.89440326010346	8.18017638894485	7.76380625465938	8.12996080684083	8.14653494548738	8.37664036770013	8.66238433380783	8.20588613751284	8.44671476821571	8.40615105480819	8.14869459754121	7.26953505502007	8.29271349037251	8.56030054950869	8.41131533167097	8.02711322629975	7.75916513303284	8.14022919550932	8.54189836334203	8.98274764699894	8.62049543550844
+"LHFPL3"	8.20750974055316	8.24351605542714	8.04288207033916	7.55510097117326	7.93824019836918	8.55367937221668	8.5528036523173	8.56565245166766	7.78814846205576	7.49099391445122	8.125576878714	7.47837735959275	8.25816580869111	8.62046542572947	8.15663338833705	8.03398099909111	7.44068330984536	8.30535013005444	7.66181862498262	7.46013830042594	6.53534125967017
+"LHFPL3-AS1"	3.82758943483506	3.75955657882387	3.75336434502624	3.9978758777528	3.75336434502624	3.85064542530459	3.83353097716374	3.66279103466194	3.95626873721563	3.63593160222799	3.82758943483506	3.92358319968922	3.81242061005132	3.89976020268097	3.83353097716374	3.86927757331546	3.97658788613769	3.53424384911477	4.2493817728559	3.63616859874617	3.74996031597209
+"LHFPL3-AS2"	5.36662022428544	5.84742741048098	5.55009306726731	5.96777744796683	5.60877465929419	5.73159114326456	5.69150599537385	5.73971809950586	5.81386649894655	5.56695346069087	5.47651216530771	5.81979832027115	5.66355934694436	5.80585596316019	5.80575509098941	5.79705632767887	5.64688389996066	5.37974398097966	5.66698556257389	5.64270654101274	5.88427488801141
+"LHFPL4"	8.16102609420294	8.82838384854172	9.16157968012061	8.74477981547985	8.84740927704169	8.78434326185221	8.22860427887081	8.76682877732308	9.00759302796025	8.97688050717466	8.28653335092399	8.90879334732039	8.78434326185221	8.54170337813576	8.72273901873811	8.08420680647703	8.95128064718619	8.58550268423892	8.58091253546534	8.92276100281476	8.8474425760053
+"LHFPL5"	4.97362903001017	5.50893214733651	5.43910810096659	5.16346431192426	5.40694881572293	5.44061319479109	5.4328362416526	5.28441436228777	5.14785645014479	5.29024858775836	5.00670075074502	4.96564653142155	5.27901300529129	5.15903215542154	5.28209186415782	5.28209186415782	5.53763907108104	5.03865856161594	5.30736475718941	5.31200907646637	5.3218537028093
+"LHFPL6"	9.62945348169428	9.0327931737549	8.71835046996106	9.25650395433155	9.19992100305756	9.11201161221367	8.71501217259421	9.48113870022063	9.08535216087379	9.26694439199932	9.1414743863616	9.16044594428578	9.39384354725025	9.18294982850852	8.78144385207231	8.48105393950363	9.41986892256323	8.76813146465386	8.95291093184184	9.30499463746321	8.99119598799266
+"LHPP"	9.95925186433281	9.84008569444439	9.49602701123018	9.84408015419683	9.6050891157836	10.3292981041565	10.1267631936685	9.72285480883448	8.80944114929541	9.2989877970814	10.6990125599797	9.58545462830845	9.39976884422421	10.1005734350826	9.46374000181628	10.9897099509389	9.43022074718058	10.6509880547443	10.0612804367607	8.7787830263166	9.85458664480323
+"LHX2"	10.5389470833314	10.0745064371975	9.83469191859933	10.4352566522412	9.84402901903245	8.86282389579176	10.7299661240799	10.6540447333108	10.6987921632426	9.67265587403336	9.43954637983987	9.75736144160445	10.2760876779224	10.3238645213725	10.3314227332195	8.32807503712491	10.0469808051755	9.62899459369293	10.3405183468323	9.63794329348155	9.27834821218835
+"LHX3"	6.02671999907343	6.04150327463393	6.111176783046	6.49569286066371	6.33204228480261	6.11304984773618	6.20877501190469	6.29430090802031	6.07359062459005	6.19211465566038	5.9151108403043	6.07753827172322	6.05812166149471	6.17765707888838	6.0887746867381	6.16716542663255	6.09673880150038	6.08677280172236	6.13221654296116	6.11466257638286	6.15991717842667
+"LHX4"	3.99476911411061	4.12696167931774	3.81257122138199	4.48101624424806	3.98687776113566	4.00655738069621	4.10690514182564	4.06973921166817	3.81779882526534	4.11022870994315	4.29881094658868	4.56634213804733	4.25964472169835	4.10690514182564	4.37466030792187	4.16567585807474	4.1338155390393	4.08559615785461	3.99452860270248	4.10690514182564	4.08705158477774
+"LHX5"	5.24757834468934	5.25307190649458	5.18192117797478	5.25019885475874	5.27160620026273	5.40596597249982	6.12417623956842	5.22429185938442	5.27384662332199	5.40431304905675	5.08961543800521	5.46907836151639	5.65536421327959	5.59840350041061	5.38960713737825	5.29274730601974	5.35133579608278	5.29574226651043	5.35133579608278	5.38886639294492	5.72933572325795
+"LHX6"	7.35892271988388	7.68720236615783	8.65684484586244	7.85435273102677	7.96205233397967	7.62207454215996	7.17294443133655	7.55213687706375	7.55919998587565	8.02994541131458	7.78776419867885	7.98199724707045	7.95869298237426	7.85505486792087	7.89890541392192	7.79318178179597	7.69642856575908	7.38211074835513	7.35922248905238	8.51582982554373	8.11178859124344
+"LHX8"	2.77709383554533	2.69519532778026	2.7003478199124	2.93497625894246	2.87343927722094	2.92646519236035	2.8261421626969	2.86973565397171	2.82868096709072	2.81685955974963	2.75291968351796	2.775522636591	2.84654512799505	2.88906486166545	2.80877023580399	2.80377243437927	2.8418590574181	2.74025273069027	2.89804635193026	2.71796333164622	2.880965365611
+"LHX9"	4.72903001210324	4.72675520413745	5.09093319333495	5.08679681016686	5.00299856792797	5.03439969021205	5.16755667735722	4.79707688529025	5.22952739541501	5.03882531064559	4.79733921154808	5.02317975686682	5.09122390903668	5.22209266910451	4.96879168821113	5.16832902236931	5.23956333888683	5.02725218766226	5.02911786542874	4.82732983527234	5.16936766445865
+"LIAS"	6.82317342117648	6.75907486144631	6.19946539843285	6.45688128651924	6.9766900814633	5.21852300896543	6.07459190148768	6.51716706730791	6.31877271960347	7.10290997099703	6.94887777342397	6.98990405696035	5.89528107010484	5.74478087965005	6.44545202423089	7.13690286444623	6.42656451977982	7.16470765664795	6.71305720864595	7.19320404847969	6.75751125677883
+"LIF"	6.04072879931208	5.91536334384264	6.20015731203269	6.10444854607277	6.06422595234124	6.43689725028358	6.39006740704714	6.37261444929463	6.08089076954474	6.30589628885889	5.88603833943472	6.1897945567072	6.05508058042609	6.12059484398192	6.05508058042609	5.92497941722368	6.29430090802031	5.75533946789461	6.15900332543166	6.12059484398192	6.45189582990968
+"LIF-AS2"	5.05924029336111	5.16169745331515	5.10853969610933	5.32692006831047	5.26427929001776	5.10597230266155	5.34727898825606	5.28532270023505	5.31767183593515	5.32671600761211	5.15706945654118	5.43181563450932	5.26590355278674	5.2863467958302	5.22869472392092	5.2275036996689	5.28662127188089	4.75888074916836	5.45020343669083	5.32008006605885	5.3474442894875
+"LIFR"	9.21415127246535	8.65612699613291	7.11253016248596	8.38786720711121	8.01816796694485	7.42993663288339	8.48473808202385	8.65403056017081	8.34368877961816	8.04075171373778	8.49819181366692	8.06318023632675	7.46222964575903	7.3556008372072	7.83106669769274	8.46927707587643	8.25134875924798	8.87059822440862	8.59380313911465	7.46493599564205	7.27930280737174
+"LIFR-AS1"	4.72927188084995	4.10850879411033	4.37068696825125	3.97940782264784	4.48862976073164	4.38052640095234	4.33584943184209	4.29763125802126	4.22469197653275	4.2947976575029	4.29763125802126	4.22740607676477	4.16247488470658	4.24228190148556	4.16164239774807	4.57788779293752	4.31774833041071	4.41470718905446	4.12480675069385	4.42314352827527	4.16910210131818
+"LIG1"	7.11883987299549	7.20640550145257	7.22810053940433	6.90901310398512	6.93811125598975	7.26463898972084	7.04476416727708	7.19645016278195	6.79313498765703	6.80296351957101	7.43582849113388	7.07673872780391	6.81439323160829	7.10495711502825	6.82049930887006	7.46193281887748	6.92800803168217	7.46199004226186	7.07484406575444	6.82839294957026	7.07484406575444
+"LIG3"	6.92824939314583	7.04644894458442	7.04952590766002	6.84816743273747	6.87980403148404	6.97540131585418	6.63777864716427	6.77090120923917	6.65223633996115	6.4371383559865	7.59641286028409	6.52526694319897	6.75300384767605	6.66144572587682	7.0847954557414	7.50565227566923	6.48199457666455	7.37713233311266	6.68557207892262	6.43035653009328	6.5470079358183
+"LIG4"	6.23470613431833	6.63596915165914	7.00546295228613	6.65544671798619	6.8785645936911	6.4224202164616	5.29846372638787	6.27366060059868	6.42997020635757	6.443834933189	6.25846237204905	6.34216571495436	6.78441479840113	6.23875359978023	6.73581523734194	6.443834933189	6.35843067415178	6.83520218805944	6.44550842850249	6.51122766191793	6.34773096653692
+"LILRB1"	5.08976835186573	4.80368253526773	4.57512919121534	4.31473524994785	4.253592738339	4.68377409024431	4.79816919020391	4.92857516870223	4.69593308338902	4.44021255283149	4.8611297649086	3.89368281313829	4.76250315331993	4.98822293762771	4.72083029964895	4.7559393207632	4.25964472169835	4.83134747491553	4.58037987196497	4.64246245447383	5.29723602832381
+"LIM2"	5.75387169276506	5.5809025566158	6.02581638822199	5.94835216361841	5.62965467382614	6.09446405518099	6.32136533189482	5.59915973414532	5.91595515017755	5.77322999827023	5.59925913620216	5.92981733304793	5.82438392567725	5.83913835153699	5.63643550737006	5.8046063198732	5.94688601183577	5.30743625172094	5.77030008342264	5.69878295246657	5.74826502715122
+"LIMA1"	8.54967071891004	8.27752419600582	8.03778880865091	7.82423857440471	7.87335005725883	7.96356402356815	7.57078667037499	7.90419234089317	7.38997870783218	7.72250961391713	8.35411828558007	7.41058658567253	7.74505951711032	8.16048253275312	7.7350663676881	8.80798845620394	7.22721582492197	8.37133657613642	7.60273530174142	7.83559491711613	7.93791793924651
+"LIMCH1"	8.9332748723915	9.14686263588811	8.61037636023202	8.81152172255814	8.93220746413161	8.73819278204298	8.59179739138612	9.03278416792037	8.48638245229928	8.79585463302393	9.77793634935445	8.98734839087531	8.61497241226891	8.45538447362438	8.69468246651465	9.92001888253777	8.84280831455022	9.82708772841134	8.87387563944377	8.44056713370971	9.09014859296105
+"LIMD1"	5.28396410095423	5.29274730601974	4.95516779666942	5.29274730601974	5.20508015003656	5.87145188635072	5.84570296210673	5.48665133574975	5.30131894517038	4.89078704341945	5.40112250384947	4.78000832901998	6.48603456806628	5.71055578527932	5.85679850356181	4.95811568857057	5.20455493882179	4.97363222090594	5.32841399892038	4.74700372721458	5.1691721174975
+"LIMD1-AS1"	6.40608517030997	6.5353779180593	6.41173074544629	6.70282369688436	6.53202149792983	6.70428434856161	6.76576638589969	6.29538321441335	6.57393603776008	6.53136799345815	6.23284060859318	6.53136799345815	6.70722943499456	6.99945393989493	6.5347088143134	6.57731483381799	6.51070588270858	6.24608706750166	6.57861279629452	6.37340905444666	6.58427020122738
+"LIMD2"	6.37324375970675	6.44149138323154	6.51917094596604	6.55265081016244	6.6257626180066	6.89718837370985	6.88388170087791	6.46917732527772	6.62624216113651	6.63567733808739	6.2838109094714	6.57402187347281	6.58431930220276	6.77267021094113	6.33482032223033	6.03376863607545	6.50714190300436	6.38881275497552	6.63079066824517	6.74386111712969	6.43869892190297
+"LIMK1"	6.06425536978966	6.5785298694598	7.25562302207638	6.46492711133478	8.0274965389068	7.09127711121323	6.35086065401772	6.37717725838876	6.65150469991318	7.87539190077503	6.56613593451319	7.33318978248299	6.8990934458832	6.28534904901584	6.28284746920408	6.67580589411567	7.14082833146542	6.8023441182436	6.61051017512042	7.08747890039935	7.58876569372309
+"LIMK2"	5.53145170572969	4.83877355521821	4.71684089896589	4.93408145746188	4.75799280259008	5.06022382418135	5.32495887783888	6.55650354746843	4.57481259902826	4.90210171130348	5.78742659655648	5.45806307275475	4.634474669179	5.14388064629691	4.53755750840865	4.68601676467702	4.68419235394766	4.83253003256814	4.80419531992814	5.00292574271707	5.26427929001776
+"LIMS1"	8.22690122939225	7.89708082534914	7.16062934597091	7.65388987423041	7.75647486245826	7.7731381581071	7.71185210098771	8.82513480537191	7.5026493106415	7.95452033174567	8.28366016971839	7.8961155077987	7.7955611747477	7.82691952514952	7.19739384780881	7.62484745632386	7.57161081680419	8.04442754362018	7.92623569327841	7.97364594247146	7.46170794118964
+"LIMS2"	8.26182721896058	7.8557743645464	7.7857648939336	7.75397390191338	7.81885525483735	7.8339854116153	8.06431979483074	7.6000411215341	7.79396938581622	7.84560747629938	7.73527712847194	7.58838994501192	8.04338628655228	8.31807450415074	7.62614853749882	7.49603572456083	7.80294805414124	7.72138562004667	7.82697863959424	7.88384033877874	7.74644819129399
+"LIN28A"	3.97326957047936	3.9087534029881	3.94015906915472	4.2195978134476	3.87725976032195	3.97384931673428	3.86811399959817	3.97717313288219	4.23240666334196	3.97040397485994	3.79198784163795	4.01609057682177	4.22872092717826	4.12554839391076	4.02902103000701	3.97384931673428	4.11988683093271	3.55396797412097	4.00967676648148	3.92398239899631	4.15247547799819
+"LIN28B"	3.40292481581019	4.01427305640163	3.78815083513309	3.71481389826846	4.29625334020439	4.46755001870493	3.45312463583608	4.02483347823509	3.69864354178711	3.86479574259695	3.74566303967697	3.84921736914056	4.40414655421535	3.79340624972589	4.68932933206458	3.51542680161546	4.30120739053081	3.88122381823942	3.91854439875166	3.90510625561464	3.61907422694701
+"LIN37"	7.2030743450075	6.85449943154279	7.12681956378096	7.21409691173334	6.79776018391706	7.50279718660554	7.83617600008102	7.00679503954913	7.43882008834783	7.26542616074327	7.08391245986836	7.08931076595222	7.34938832780083	7.45855795560608	7.21144344241682	7.01461995396251	7.27579986824198	6.95590099045759	7.34976283814791	7.22050750667944	7.29292564549583
+"LIN52"	7.54853989803329	7.69485646748125	7.44029460119419	7.5919149614565	7.74484415797744	6.97400427616247	7.90936306576271	7.70673629784049	7.93901194699147	7.90395352274097	7.33693301742795	7.50797267614007	7.69485646748125	7.57979370125308	7.79314418434899	7.76526758779539	7.84014363275772	7.55969126076995	7.75464620006119	7.724746373259	7.81382040893872
+"LIN54"	3.65564569804747	3.72421426249425	4.22946033744001	3.40096093851753	3.91994710684995	3.65889883883469	3.81304310971496	3.4039773919017	3.50110273905388	4.17519538014562	3.95521198695765	3.86731604091035	3.71892199041377	3.58849460622507	3.5940220400786	3.72283427163305	3.60394203839183	4.0211984093926	3.52596454290866	3.98525382419693	3.72421426249425
+"LIN7A"	7.94557906219487	8.23219853431791	8.80255313584051	8.42493622338118	8.75204576574057	8.23828628024673	7.330742242308	8.7116191534324	8.82965161258912	8.64534486517739	7.76026102853797	8.73162858551072	8.27720490032056	8.13484302581025	8.66507130661843	7.70387021167086	8.54128598239513	8.1256295650603	8.50441769201542	8.60787126894172	8.42493622338118
+"LIN7B"	7.12736387814937	7.94998102682287	8.75634861570976	7.61888086615108	8.323054577865	7.85307358155101	7.32948292665327	7.45807441586223	7.85613544420068	8.24019601407685	7.77137264200336	8.06928336145433	7.8262846937633	7.64086362008192	7.51511297458253	7.78422446040572	7.79532388251624	8.16625181352162	7.61645221130961	8.6064226393402	8.01987852102332
+"LIN7C"	7.02810512556193	7.39462936133566	6.26963255846112	7.093353909583	6.79886715956058	5.28472028397017	7.25502430739965	7.33886862026188	7.33886862026188	7.74227291530269	7.26194097202228	7.5474911273454	6.85325029645965	6.24443397539332	7.15265489478064	7.2360286260976	7.46634422980195	7.37011795583607	7.25939902537536	7.11887798860793	7.78800065478618
+"LIN9"	3.57790752681231	3.66368295247014	3.62593289983968	3.81387838090939	3.68990056757875	3.58319686094093	3.36167832277284	3.63189273337211	3.67232843623173	3.61122087377042	3.66785888182369	3.68677898483993	3.60340148047225	3.66954342192774	3.57574166200783	3.61268326272872	3.63987175813356	3.62593289983968	3.74912501449169	3.59222776405588	3.59222776405588
+"LINC-PINT"	9.57510055011277	8.85459065583787	9.43527715477872	9.69053851321037	9.57510055011277	9.83013470595003	9.1405872550738	9.70595664782255	9.76290762568292	9.75157023289582	9.22059150635438	9.57510055011277	9.75450009516223	9.32302582142118	10.1774568207452	9.51263718697409	9.74218230316075	9.72336222880128	9.72606408316299	9.37272855337639	9.37931015464439
+"LINC00028"	6.58791393499304	6.69750601369172	6.86022998560083	6.82632357330451	6.46149910559611	6.90541526200607	7.13571096885424	6.78989586532452	6.76232710363117	6.91490119156953	6.75720275826411	6.82632357330451	6.99999853600323	6.9290356596352	6.79751776236433	6.83809558029771	6.85687633807341	6.67026083512889	6.94127814404689	6.7261903369454	6.84077998819356
+"LINC00029"	4.90014729181581	4.93494373435341	4.83879430358659	4.90192220851821	4.92191952885131	4.86609475877101	5.17755154931995	4.70736384734694	4.8807051821614	4.84221627965717	4.84945106855573	4.86121462466946	5.01326655957558	4.90192220851821	4.90383399589165	4.86609475877101	4.96663849729254	4.86787663311833	4.69197773913609	4.93654463249601	5.04230037496359
+"LINC00032"	5.20696445321673	4.86255113200291	4.91158936055736	4.94936370266715	5.10553081691157	4.9254831456963	4.74307455067364	4.88451082865071	5.03395279068848	5.00732913262539	4.9886685500365	5.12057429431316	4.80419531992814	4.9998641120631	5.1857812109138	5.83352015342882	5.31933029625946	5.00732913262539	4.90760620653711	4.79657029550007	4.82107562695012
+"LINC00051"	3.83353097716374	3.98799308961123	3.63933930407512	4.18996419043014	3.82933242242091	4.22116610496173	4.30267162498664	3.823872273207	4.05220827154556	4.0736463017572	3.82994745341908	3.91064112980881	4.1106647028105	3.95462809069349	4.05036881780211	3.98792416110768	3.86516102778077	3.76145915426798	4.09433385213789	3.92328183738586	4.09002588741986
+"LINC00052"	4.20291384464216	4.39239841300772	4.35196097358716	4.34293957399053	4.54206503348328	4.41016449365541	4.4540956380567	4.34227119376949	4.42344624282851	4.39671813626681	4.26050421073633	4.2755993392866	4.28072109092119	4.59158786339533	4.41016449365541	4.44740708189418	4.62008618759724	4.13814349018533	4.48690351873145	4.4978386217869	4.41016449365541
+"LINC00112"	5.18391081129588	4.98497283958885	4.99872672718487	5.08106580377098	5.01680279142029	4.88585872405774	5.22153845856396	5.26329445892569	5.0814581558443	4.90161937331878	5.07486858545114	5.39330130133993	5.23855847322513	5.24535180795232	5.01728460890796	5.1252400979373	5.25997223285361	5.1252400979373	5.16358153756828	4.97655056118367	5.47810104040624
+"LINC00113"	3.67884275111033	3.70777158248664	3.37794610182404	3.71079362423371	3.6012100645066	3.82929855127585	3.60351896724534	3.67408919005965	3.87055288778026	3.52137652911882	3.32820435791242	3.62381206235528	3.82534993305619	4.11808969819631	3.71724314579447	3.64003259885991	3.51074733097889	3.22042067851753	3.85158266257133	3.59007859277396	3.67884275111033
+"LINC00115"	5.07163781830858	5.36388836845204	5.51397851659601	5.41093517393978	5.42893336833788	6.04439453583459	5.5941733389914	5.46349476801757	5.13168504522292	4.98349505396799	5.14690213412554	5.36561860048561	5.49823259429617	5.41652538082701	5.7820655095769	5.64717375050773	5.71656556366923	5.5822171922062	5.63452604219267	5.05785470765687	5.33358936572871
+"LINC00158"	3.88001324894175	4.16769589705635	4.05300728010919	4.07085959438096	3.92678777513145	4.12590273358475	3.82174045816483	3.7012233163567	3.96779852709763	3.83081943007202	3.87254805219508	3.98944930875617	3.95054867844199	3.94166359985224	3.95255361733573	3.79312938805631	3.89139513717888	4.22743247721456	3.7676989226971	3.83419379060323	3.89750769692117
+"LINC00161"	4.01399036185154	4.09462659889782	4.07464427631827	4.15721183996585	4.22634415755595	4.204444326663	4.24183952153706	4.15700436812171	4.31936371799624	4.14478465797857	3.99777239786561	4.37569800744329	4.15700436812171	4.18580190304037	4.20137280630695	4.15700436812171	4.36392172123208	3.94192726533476	4.15700436812171	4.14728157104978	4.19385595845826
+"LINC00163"	5.02886773806504	5.03052596466186	4.80151592296831	5.31271549071806	5.06285127308481	5.1454193591985	5.26162752409191	4.9795341628672	5.18039822844833	5.06285127308481	4.95242976710949	5.22025635773318	5.07039020146704	5.00749527006059	5.21429221964118	5.1153105641678	5.03666346069894	4.88457250597368	5.09950423133552	5.13143283291817	5.16272105890957
+"LINC00165"	4.66784483447504	4.94601862368784	4.56973515312445	4.67443494372825	4.66784483447504	4.65582381255317	4.52138281669038	4.54587611152408	4.77817511417643	4.52522561340026	4.58991090260346	4.5442564705251	4.7705542458364	4.59131244290804	4.53950263451484	5.45177904732335	4.74189058505902	4.67950380131881	4.7228056755324	4.64694297547346	4.73077600060482
+"LINC00173"	6.85099502637192	7.15713826786123	7.41713250222603	6.46639401551545	7.10469542870797	6.54860098815465	6.40758988184565	6.57213508794392	6.29091907901492	6.87595882761619	7.29982757386878	6.98022237306586	6.46107606068455	6.74147711144103	6.67686715406967	7.18239510505329	6.70814378234621	6.74539642359874	6.86947404566942	6.72917757746943	6.36713161952576
+"LINC00174"	6.38046226856171	6.65979835263597	6.40782964481979	6.5728380978364	6.36021363177645	6.48839769763882	6.47835062740354	6.0420208411045	6.46533029649371	6.27440441578547	6.45975213483901	6.46964488619953	6.32357986127172	6.86981555014139	6.30015887952727	6.59688008606698	6.42648835146459	6.28371986452275	6.4074674887933	6.20332051698666	6.45975213483901
+"LINC00184"	4.62691487809759	4.75624297583959	4.48463434355725	4.88804757308839	4.59299253286389	4.6859602099852	4.73151458329955	4.53552366041602	4.90463523120491	4.93585310223929	4.7149168016261	4.79262202721071	4.75624297583959	4.78014750952596	4.81406473095282	4.7983889893707	4.8124770380217	4.35503408351054	4.88658749734125	4.78856719755402	4.87721122845902
+"LINC00189"	3.0142980240253	3.06349101816592	2.91251825304832	2.82918153312478	2.99450807477561	2.97164324005198	2.98761527559711	2.99968771187735	2.99942219930451	2.98761527559711	2.92510961102375	3.08429588021704	2.96183040036547	3.09953683311356	2.9593644649349	2.98821875877095	2.96565475541871	2.98761527559711	3.08858229378546	3.13234366630114	2.93768061261341
+"LINC00205"	6.41422300712493	6.44700973981644	7.96952002026202	6.0406904981365	7.71268124423338	4.87423346490902	6.3088503261392	6.06848563012932	5.18087502656864	6.06206127507742	5.21290873077298	6.56374395077599	6.0445205715197	5.60037307402319	7.43965596130186	5.88901021058502	6.45443933557502	6.45291696618215	6.69475255672263	7.20408480342829	5.81262512832989
+"LINC00210"	3.34361530055527	3.49422156536131	3.60478188455645	3.43561657898329	3.3123092320395	3.48720344302321	3.47644589164939	3.31844506723015	3.47575189086158	3.43561657898329	3.25141767550259	3.51820720908023	3.59309754647189	3.73106196565294	3.48372436303691	3.40073862628145	3.54763061984467	3.26267207146602	3.39945332377379	3.3286910286865	3.49413995065486
+"LINC00221"	3.41565653273925	3.5413251588801	3.6442449466242	3.50310234788329	3.52692993344338	3.80272866128464	3.86834686509364	3.48910667130647	3.73192911038198	3.41958949483995	3.39604160123918	3.52089776712416	3.60852479617596	3.8131068202926	3.79375098398526	3.66745217066285	3.51926737976331	3.35519963086139	3.52871777939698	3.57173123690731	3.66014272099905
+"LINC00226"	4.24439319241362	4.25375300917722	4.28025792821893	4.38777103861071	4.24092548114763	4.32357276807413	4.8002444914744	4.18001851935861	4.49589177355547	4.34634699370544	4.20598591191332	4.29191816533226	4.44219649105786	4.51644691975017	4.41615894518854	4.253592738339	4.23175304409636	4.28821510604601	4.34634699370544	4.35308469784318	4.35601274283148
+"LINC00240"	3.47115147475991	3.40865499927787	3.25654483974269	3.56947757414114	3.61827376160408	3.42934690256008	3.54789673847127	3.41192702784697	3.4917016107984	3.45030438203426	3.36566922659251	3.56594035565633	3.47115147475991	3.3369456950549	3.54239955622822	3.55702427885938	3.47115147475991	3.48401303533419	3.43627352205807	3.54458353463764	3.60990904879654
+"LINC00261"	4.6693906648611	4.6590852803161	4.76176922853047	4.70078949153404	4.69520075946363	5.08630579090668	4.57950314680062	4.61738986277418	4.90093221044577	4.55086435419411	4.34057268666813	4.64527045691759	4.61034332031785	4.81432846471967	4.6017261649038	4.64449337238163	4.55464218679693	4.63050096982195	4.50883325899268	4.61574705901342	4.83155909274973
+"LINC00265"	5.78651040709535	5.89563839136288	5.73586417311183	5.81959568242278	5.70619080171577	5.46365382472172	5.43604477956549	5.69685276809285	5.56914270961026	5.73586417311183	5.8025708843062	6.10815859385564	5.83687739699934	5.48522088604754	5.68519644295041	5.77288744865796	5.93677191233105	6.03635656605829	5.59210980270596	5.48347585482679	6.07985710418955
+"LINC00269"	6.31160486917892	6.51484011576353	6.53475507329553	6.70980782179468	6.85103343262758	6.52566994575496	7.05321248768206	6.52566994575496	6.51790912776002	6.50589912649963	6.33113390947225	6.51040977778134	6.53475507329553	6.58498209940362	6.38750883584766	6.59847660842998	6.60438234748132	6.39295178820018	6.52090862925659	6.57979435693658	6.47558535645751
+"LINC00276"	3.71194801151358	3.66220321311745	3.74937342360907	3.82719852065062	3.65514617950206	4.11481279972276	3.85735724207958	3.69481367875989	3.96971564386101	3.46730084885203	3.82194192353678	3.71194801151358	3.6848416467566	3.89257975503557	3.81600204269916	3.63903693601238	3.59457820336342	3.66251517859168	4.00668966260266	3.32308193027755	3.66250001657718
+"LINC00290"	3.32915646472361	3.37565846235695	3.86799349037175	3.55226866486559	3.56758477250187	3.70724392068303	3.69876491504483	3.42598080769835	3.54719660428862	3.53563885221081	3.44279054114888	3.53563885221081	3.51341903981395	3.72218307644711	3.65653059714466	3.51877424753375	3.6680431632868	3.61519630353472	3.4766254805453	3.53563885221081	3.3144261843927
+"LINC00293"	4.90375551352518	5.20819964996157	5.39556140974747	5.13474743210026	5.08211228678483	5.39724288797437	5.47372507954574	5.08434163260989	5.15369436454675	5.533027322212	5.21033600770699	5.07750848141477	5.41802596451415	5.38825105298178	5.25313330050824	5.09837474179632	5.24119593656388	5.02690923241567	5.11110048698275	5.02690923241567	5.1953274784358
+"LINC00294"	9.24044875961918	9.61568466968421	9.51090715942141	9.72520283325779	9.80564302980348	9.59744015248498	9.00502901267641	9.41835942917015	9.73719353550733	9.78907778258818	9.06199998419604	9.61975084891728	9.60506663505942	9.43142062872886	9.51706372664812	9.62341646616548	9.78307757023943	9.61568466968421	9.66560815427218	9.72383320888674	9.91479152684851
+"LINC00298"	3.25876387546848	3.28402413165958	3.22569488504146	3.19748700188377	3.29619342056695	3.24230196145342	3.34381202277859	3.24230196145342	3.24230196145342	3.20998562392337	3.17924497353357	3.22185853910589	3.13645256648828	3.24230196145342	3.24230196145342	3.14237738398771	3.18175450427025	3.40225527604059	3.28212212957258	3.27420848537286	3.15858102711185
+"LINC00299"	4.35955161132284	4.51064527829599	4.5218768682551	4.35356772996411	4.55345037093103	4.70380160114168	4.51232148587422	4.22229317209388	4.55962656257592	4.42957074620869	4.42432393523486	4.73035627154899	4.43164828579144	4.65989985054168	4.74668018873098	4.48907760200882	4.41290595926144	4.25694507795319	4.55974308300449	4.49520220933576	4.52354778087198
+"LINC00301"	3.87376927019716	4.09243373063512	4.03416051321621	4.05098794758286	4.2993985475768	3.98469662296089	4.16150616462633	4.05853429375282	4.35274915554333	3.9612572812797	3.66761361295832	4.05049959983287	4.18157571266353	4.38682899318724	3.83548476771819	4.05049959983287	4.05935769054308	3.85025454893545	3.90886195970067	3.86866329675148	4.08793487748719
+"LINC00304"	3.9294142272964	4.6392732552668	4.15751675816785	4.88825156844339	4.19511374523628	4.31805868746163	4.64612155047071	4.15451915766316	4.65931583962555	4.67270310171397	4.44403719361163	4.5846571350566	4.30797658028261	4.44548982010117	4.2573103630645	4.60931799167938	4.79316776653428	4.28163455207879	4.58174311740907	4.59485503602789	4.6893956715976
+"LINC00305"	3.24572027158186	3.41603442714824	3.44456705860217	3.50587976258385	3.57677044527481	3.39989400928044	3.52657148761101	3.34145773913189	3.30439474018852	3.4331031370065	3.5899936712586	3.41603442714824	3.41603442714824	3.27587560953604	3.5940220400786	3.36560010406572	3.47771423487335	3.24895950742399	3.41603442714824	3.56896995084938	3.41603442714824
+"LINC00307"	3.73001881616651	3.97373811839104	3.84081335155935	3.91967347264693	3.83916297507717	3.69305848859646	3.66342380522177	3.6852586460051	3.85233287457254	3.90522892173238	3.64439723542136	3.82282920932523	4.15271750618331	3.73037939089984	3.72843841516772	3.85305078110167	3.80212559070137	3.54412766537018	3.73382022387542	3.80000666508563	3.83741215298025
+"LINC00309"	3.0991236944079	3.18470126788635	3.18924616009221	3.20728892124115	3.33418332406546	3.32105623505135	3.34915766575234	3.4197351309856	3.1967455100709	3.34468165774021	3.02942488822326	3.10445298129119	3.13302870414019	3.31578591236081	3.40754692893238	3.40099355351409	3.19880655902035	3.12464564278089	3.2371083959586	3.24387755398085	3.28030731397667
+"LINC00310"	5.17380903582944	4.21593672939173	4.1527565822064	4.16089863856463	4.33430942993379	4.51036559284207	4.4453948406473	4.24021779370645	4.61552486600255	4.45662600612732	4.14821387647291	4.12379104604908	4.46966040089977	4.66029519042761	4.5185173755326	4.32693977129692	4.31386437659707	4.21472812861081	4.47397390458734	4.37186891530789	4.30437657762142
+"LINC00311"	3.96375565866121	3.89275254449772	3.76793239704003	4.07476288394671	3.97000926892922	4.02612279110009	4.29400382430523	4.15291172601046	4.08495175475922	3.94221602706476	3.82074477386547	4.02612279110009	4.07678167231051	4.34921545494278	4.02612279110009	4.02612279110009	4.17930436385867	4.17930436385867	4.10652366896952	3.80711072163166	3.8537134649968
+"LINC00313"	5.19518106263735	5.25881282642625	5.269275736063	5.34393719758937	5.34305309508364	5.28230037334837	5.61856350030143	5.22103245463022	5.53504777978716	5.31873139334189	5.23369589324593	5.26653500660051	5.41086936008076	5.36070668820387	5.25952831736846	5.24973998910236	5.1716869876303	4.95394955999961	5.64182768455385	5.24580364450743	5.29824249612547
+"LINC00314"	2.87659272708049	3.09115383689709	3.00959318115518	3.15507736463032	2.89655366264609	3.2762741749886	3.0657799500088	2.97149172418466	3.25660969139521	2.95742111134336	2.96728094787772	3.07219596009522	3.2501557599322	3.06873643170285	2.85272822359323	2.83691551219711	3.00676657834328	2.85729467603236	3.14998170192155	2.98400369984491	3.00676657834328
+"LINC00315"	6.56504216006394	6.69788000210891	6.35456760435061	6.81880172454582	6.74488283913811	6.41063079807819	6.60974346576847	6.63053132766366	6.81010080869743	6.68553845464203	6.43507153620289	6.7469800350096	6.69951050635595	6.56396028114209	6.57092222907554	6.66854707719207	6.81688990147849	6.32944152470128	6.66681918865488	6.65130749501637	6.50043810183475
+"LINC00317"	3.90894904745418	3.80178679885111	3.67266461563004	4.03242963103948	4.02180366918314	3.9526432462815	4.2898951922783	4.00368494517054	3.83560646114139	4.00968913188261	3.83353097716374	3.59626303757004	4.24047503764413	4.4608524847798	3.81905336205848	3.76561699585568	3.9526432462815	3.71944685806819	4.03379967311949	3.82749811035469	3.75701677905442
+"LINC00320"	8.28936973403567	7.2184876904318	6.68367916722255	7.87160592892745	7.34820100004649	6.43978180263119	7.12395956215894	7.08272025534551	6.00990179220662	6.25031063413974	7.71494165271205	7.182341801317	6.95586178759611	7.39645328495126	6.9445923495574	9.20385139507484	7.02024603659486	8.7828068416352	7.17857806890497	6.47053819362727	7.44811766052312
+"LINC00323"	3.83353097716374	3.48276866843004	3.55937282611982	3.43889901066393	3.28703769404833	3.9983832857331	3.4021022897109	3.26499456959597	3.42050695893098	3.40992966916615	3.60755779098701	3.22823071911235	3.41619428733619	3.79340624972589	3.65735889165503	5.31730919846428	3.51282304744028	3.86021040582066	3.53741376891322	3.2371083959586	4.04491790565717
+"LINC00324"	5.12909339896272	5.0620023966245	5.20380313629821	5.32692006831047	5.28948084130776	5.40705251099472	5.47542763050103	4.99969733602494	5.02990353370363	5.2291337762729	4.98768215970785	5.08789078542477	5.21015574246211	5.88001284848039	5.23980632826635	5.12329710086415	5.20981235130957	5.16982250673273	5.21015574246211	5.27089086627355	5.02141628272892
+"LINC00326"	4.1443719384966	4.43673933336801	4.24752837790265	4.5985917057376	4.65605850413347	4.04452224593215	4.4931327057373	4.43894931015614	5.1416377749505	5.10910444325347	3.86459675254295	4.40364577831222	4.85944673557177	4.29418410561066	4.9325966964382	4.41581282451657	5.52269681306219	4.31199849596184	4.62681713048223	4.65967317687286	4.30291884282523
+"LINC00327"	5.19391732754107	5.17900930015887	5.25936230797918	5.27290785206898	5.15093578489397	5.13471200689685	5.32827269841174	5.18225387586128	5.25955597787009	5.34175986943804	4.90404050253685	5.2272095405193	5.25034534907283	5.39415588805401	5.24993968880325	5.03828058662455	5.17714720238724	5.03765803876958	5.46780586797942	4.98777306175149	5.26427929001776
+"LINC00330"	5.79090720084922	5.95070511535684	5.68111077823574	6.02964659961099	5.76112491085615	6.06637355675617	5.80228721955688	5.80170037562497	5.86375822682931	5.81002487940266	5.5981347638531	5.74007373106606	5.8573281034939	6.01373792145166	6.18972896624286	6.13922436859426	6.05999406158019	5.65602535491448	5.79746655422771	5.73013080076768	5.96391197098139
+"LINC00334"	3.64412061090917	3.6566361626287	3.37931190464991	3.55121974917697	3.62153247624837	3.72273491791378	3.47069936401618	3.69115975043417	3.63193358802413	3.58055438549476	3.61851897408473	3.76649585251223	3.58959197427659	3.76670924787788	3.7671488537876	3.9005392955783	3.92326283763334	3.57496749419918	3.57483141706719	3.64412061090917	3.55121974917697
+"LINC00342"	7.40458545312609	7.7479998366443	8.21902063311206	7.4438237264306	7.48424880652256	7.49988812038711	6.76986003023114	7.07000804151507	7.42319099570296	7.16982753410665	7.55520590670469	7.21916786105056	7.29488631382284	7.16696580381741	7.43070281395355	7.52997116028319	7.39526391749756	7.76853989504387	7.43470629053012	7.11995353859992	7.40696131802841
+"LINC00343"	3.37268759372467	3.34679229946875	3.38815919666752	3.67019820234608	3.3404377108901	3.47510368522631	3.53540675021387	3.33149601532185	3.49005191844457	3.3733660120082	3.24938956752731	3.29214366437759	3.38815919666752	3.48786651365318	3.33243888086883	3.32254945692725	3.45358857841946	3.25501404442797	3.3131459320874	3.55054898130783	3.23398923274928
+"LINC00348"	2.89898544469501	3.01281455107283	3.26267207146602	3.1379440795203	3.12868882115979	3.04036581204369	2.94071387186498	2.93940952163773	3.0768461069553	3.08207655873278	2.95659294156876	3.13041201122608	3.10670890347881	3.04770136068097	2.9723984034556	3.12239950515513	3.29892244641192	3.00952361467033	3.07852477542044	3.0768461069553	3.10968534548753
+"LINC00354"	4.34751317159948	4.25964472169835	4.48209163861864	4.25814135368975	4.10153785903501	4.13502161029256	4.13866990285495	4.23254121209089	4.15152979405971	4.47028777737827	4.25964472169835	4.49384703181844	4.57896808963136	4.195635360889	4.23836420425099	4.55061994261224	4.21500602575985	4.25964472169835	4.46057441825721	4.21321219207286	4.30697904114595
+"LINC00355"	3.94646823862309	3.90976221973234	3.93222922607119	4.16837837913434	3.97081353413728	4.55280363237611	4.1920262019554	3.81023207208819	4.02902103000701	3.76649585251223	3.96070679733514	4.19623335620644	4.02902103000701	4.33597648344319	3.97608577504207	3.90349011205763	4.16794682907114	4.04910542512395	4.09813487758804	3.99271336503023	4.18211663887619
+"LINC00358"	3.02840063355889	3.0768461069553	3.05290194781259	3.17188502212703	3.24594612593341	3.26161148477855	3.00808307272916	3.16479408173038	2.98295777864899	2.93639935513087	2.91419174836181	2.9007010995899	3.24375030667257	3.00644730322313	3.02471288538393	3.07236780123326	2.98959048130847	2.96989055538123	3.07625904460716	3.03311810574943	3.00799766826074
+"LINC00382"	3.81224218536537	3.85553534187245	3.69393753671178	3.92987010262907	3.58466214680276	3.76365634741858	3.64412061090917	3.78334337189726	3.84365755300511	3.80385198627458	3.58764925483063	3.75010067879749	4.00274197187572	3.71740298749971	3.69376789492253	3.88015283739961	3.75924473472407	3.55969993101081	3.74686144295536	3.65507840782773	3.73288316500186
+"LINC00396"	4.00833642913654	4.06090490935676	4.05462733620647	3.9336814529081	3.91747881625649	4.34775404637192	4.25964472169835	3.94289289391423	3.9459308056312	4.05808664465249	3.9680202164076	4.06239889745532	4.29958162277808	4.40827564418163	4.25822500193556	4.23654521589105	4.19699768658473	3.97163179215981	3.98544605296826	3.84847115883345	4.13534490777177
+"LINC00408"	5.53022479607415	5.10346403223556	5.07853848808013	5.34171480890939	5.11406084827176	5.08983388890211	5.43604477956549	5.44365603066265	5.35097589596061	5.09936248353952	4.73556964274009	4.94742361195915	5.50697147898167	5.5561291014355	5.23288541857218	4.98195334151058	5.30244655467032	4.75218681301385	5.11548301942283	5.05088532722058	4.79515838002309
+"LINC00410"	4.08536053923411	4.15799004073406	4.24303747049457	4.20300449082906	4.03749409968921	4.20343193969525	4.10137436739879	4.01615771219074	4.30293665923056	4.12876160432606	3.87254805219508	4.44645513715623	4.38990759291726	4.43030311753281	4.45568195055405	4.212640262114	4.15799004073406	3.84054160309622	3.86608858556346	4.04044308537054	4.17253839267194
+"LINC00421"	5.05200556725503	5.4823806546159	5.30510976028538	5.72251163125645	5.54217496801705	5.6050525561717	5.76125675317223	5.51152084532736	5.39260779012617	5.29496959469585	5.4667981235699	5.75920783590345	5.63728611602916	5.84260279946594	5.52900570709622	5.67379431215	5.7197151072646	5.22340107871401	5.83127893085894	5.42989268676224	5.40727478318333
+"LINC00424"	6.48659855365978	6.86660361023592	6.49804472660575	6.86310960228109	6.52988638235887	6.69463433470279	6.71611115160058	6.79502320426071	6.91282977026146	6.82629737856457	6.5389430538231	6.85017601156437	6.87162506258495	6.89222143013567	6.95182202163806	6.67595702697279	6.87980403148404	6.36367026335723	6.68247228322849	6.33447616712137	6.91780023899273
+"LINC00427"	5.04627862985491	5.30758407806853	5.05497694948843	4.99845809980318	5.21298618042412	5.28610839545504	5.19545874349948	5.13606539065666	5.23123425273038	5.29325640580322	5.14523965576833	5.09922455562335	5.28991872233026	5.43879200960064	5.45151273074808	5.2775145624484	5.23565815984919	5.23988732182073	5.14377466787346	5.10636652338971	5.24630803326395
+"LINC00437"	2.83818371407311	3.02879679876818	3.06990773041241	2.85458247643086	3.14553082636101	2.87449743396285	2.8481026828753	3.16572022503311	3.01645727333807	3.0636090510043	2.8810552525611	2.90207847021451	2.994517977967	3.26093189677812	2.95926364245383	3.07619591153796	2.91120692275457	3.00691444012238	3.13504051359757	2.9231296500046	2.89596193845273
+"LINC00445"	4.84221627965717	4.84221627965717	4.82797497554128	4.9136829001195	4.66596464301651	5.01120937707281	5.11909061556713	4.77955768355344	5.02911786542874	4.87680775877873	4.55051734032812	4.95009042043728	4.94973560759889	5.00410617895375	4.65265664371161	4.6452920729334	4.94476507456491	4.70357388850962	4.92596005214286	4.68966246362145	4.98072820645459
+"LINC00452"	4.2890483502491	4.24428399171346	4.25118957051439	4.47685463257775	4.28183619678601	3.94135023210819	3.92164350916431	4.02107431637726	4.39846854716791	4.46253648944579	4.34164594175346	4.38574211447141	4.35951819483092	4.22841703695281	4.28811339558514	4.49659122218101	4.34634699370544	4.20291384464216	4.33959457510201	4.28811339558514	4.55541806235423
+"LINC00454"	5.94354003313137	5.93565744903606	5.93809887825764	5.94731493585282	6.00670622707959	6.44624683672264	6.26780063978684	6.01722289522917	5.82541057998963	5.94797501919487	5.72209692395835	5.77440486974611	6.24446355031189	6.53852921738157	6.02221569349379	5.9575731423178	5.8821618168221	5.76575176579476	5.83975801292455	5.91531460838673	5.94354003313137
+"LINC00458"	4.34634699370544	4.4752329519934	4.55488423083802	4.3387782151128	4.31376614714983	4.46113050183027	4.39289425090817	4.04523787427387	4.48964156765776	4.34634699370544	4.22909927569675	4.34634699370544	4.51653433601047	4.59187976363683	4.28811339558514	4.25130468058239	4.32121059833742	3.94691800941587	4.14134804835779	4.30103734710621	4.35617818402965
+"LINC00459"	3.88509171534632	3.92737240680619	3.80139558257451	3.79964348981129	3.94847753638272	4.31756122009021	4.06858809840892	3.87840581532579	4.2838062239035	3.88509171534632	3.63813109730561	3.47590080521214	4.01402992862056	4.43042060773597	3.90822744729656	4.00026514219874	3.75714810291262	3.86550272646842	3.92088947208741	3.80523437799488	3.76581603154287
+"LINC00460"	4.86509784796575	5.16056660403206	5.57367981652338	5.98417180058661	5.85189132602412	5.3352930195786	5.11969525131147	5.01403846662038	5.71662569290481	5.45255697934308	4.87446179924205	5.30433897908091	5.30949900420748	5.19923236013007	5.41751878432211	5.19798191722044	5.40534651599958	4.96103404978687	5.08072527964031	5.76527403233635	5.5174324024397
+"LINC00461"	8.76310012657435	9.35308680063596	9.56378882400489	8.59950579242249	8.99236246921926	7.02454138414398	8.53281327311642	8.9538845359513	8.32908019710712	8.59709986417741	9.25607646008454	8.5968924723856	8.22850297853545	8.3177504649579	8.40960492910805	9.3958194019187	8.03397555538343	8.86279650272783	8.59230191064715	8.79105482304574	8.26404754755217
+"LINC00462"	4.13557720799785	4.04027247913815	4.04308404760302	4.48101624424806	4.17279615455249	4.15208892540975	4.09416393825168	4.08993698247124	4.26104598909991	3.87968995121634	3.98553807065799	4.1839013764665	4.06031030831942	4.47496749117252	4.21176220763216	3.93668319481726	3.97810608305049	4.09416393825168	4.09862358122091	3.86215985436085	3.97690954009439
+"LINC00463"	5.4526690245756	5.3957631720002	5.44114552288061	5.91460570985434	5.54807512392747	5.81166189237212	5.85687346333689	5.60737045519146	5.79008083812803	5.40961641127334	6.56346884149084	5.57472016113125	5.89209364994838	5.6395916404859	6.18647677485346	5.78015568492935	5.49479048758613	5.79913608225107	5.7175790090955	5.29566569997869	5.46646442286754
+"LINC00466"	4.55878163252667	4.4139376971628	4.31910982884616	4.53527555076586	4.4338526546948	4.36162948602987	4.87598852855677	4.50591827540224	4.5581738001142	4.42457005174753	4.40288624450272	4.33704541607143	4.50944937095294	4.41828959678772	4.41451691205101	4.4544782184578	4.4338526546948	4.14306450209311	4.44507668052789	4.3305233397633	4.4338526546948
+"LINC00467"	4.41714163709597	4.68573344585728	5.02659672182086	4.03300044809501	4.44074976240205	4.31429169756532	4.02496690848627	4.00651948646022	4.19787160554224	4.19185396446851	4.56125468349526	4.13138145571827	4.07959308399238	4.29766451085239	3.4645038973009	4.71219214867033	3.68584448040893	4.64845177813768	4.01763793916626	4.02479291974118	3.93208433032994
+"LINC00470"	3.9702947620165	3.91714571997917	4.02225956258761	4.00586408336379	4.25581310494625	4.30559432517597	4.44360825765743	4.00586408336379	4.13535347970314	4.03916359681775	3.70034397628044	4.01909520434501	3.9854093164642	4.38211726877617	3.92968900066551	3.7551991726591	3.97623287057843	3.97368546663118	4.06998846592516	3.99589427156691	3.86261764578271
+"LINC00471"	3.34081239810943	3.74131730522306	3.5773976098603	3.43504045763677	3.59035006425724	3.44230314732593	3.4244157296839	3.30413981714948	3.47139732792739	3.40166340537739	3.323676913725	3.46270894518681	3.11362727124146	3.40024776432021	3.47096306566549	3.33779045955095	3.41431580567631	3.43177525918073	3.62796008442643	3.38107565745457	3.45451673451709
+"LINC00472"	4.45488903929378	4.12096399892974	3.60669411720219	4.07047811192099	4.31523127711477	3.85660046691705	4.03370460317926	4.02902103000701	4.21990315410835	4.0362090934212	4.02902103000701	4.09972764383457	4.02902103000701	3.921018618249	4.02902103000701	3.86123702989435	3.88939082047702	3.89052222429961	4.01733443291073	4.02902103000701	3.57612175074109
+"LINC00474"	3.87388274268707	3.88000776410512	3.83047946245903	3.97211924911123	3.95845543185276	3.71404778585601	3.98507965116816	4.02846015482783	4.0678998418186	3.93742524195077	3.72493667429605	3.99550469525468	3.89573880747655	3.95610314965677	3.88505737794063	3.93668319481726	3.78113302719507	3.80729912784246	3.95230826994315	4.12969255161372	3.93668319481726
+"LINC00477"	3.44385049813879	3.28364912293338	3.07256528422301	3.35757249359908	2.98405063438859	3.28857705243467	3.32720494636663	3.22569488504146	3.22569488504146	3.22569488504146	3.15670305399725	3.11415267129094	3.60533621441199	3.23616734290319	3.21546526526228	3.26622695519373	3.33048939407375	3.282420001001	3.14519691198187	3.15587271704173	3.4830495882408
+"LINC00479"	5.03725076759182	5.01083374440154	5.03431934011824	4.94319078850077	5.30420675122113	5.11357205946959	5.16262603399666	4.73950807336821	5.09325209454801	5.02911786542874	4.94353236858526	5.09238071727262	5.03890118736356	5.31897020808116	5.03695933227457	5.17155762694093	5.03890118736356	4.84188954961016	5.03890118736356	5.01829004343229	5.19979518508228
+"LINC00482"	6.48344524209791	6.41728126426323	6.58905428238708	6.58905428238708	6.13815132282363	6.76818424193215	7.20128355187522	6.19751606071988	6.71562235003654	6.66101691426689	6.33856651327928	6.75526085133036	6.85983259442481	7.01390417106637	6.63991892058992	6.18792027416634	6.46108543569644	6.21646053915279	6.8061574033536	6.33915422206545	6.58905428238708
+"LINC00485"	2.95465013570752	2.82995499672349	2.98291467170196	2.88829330098211	2.88972068595632	3.15909650720497	2.79322142099285	2.79937400614686	2.79322142099285	2.75209413730602	2.78177970555144	2.8237969440455	2.92664134557674	2.92005655553842	2.83885963661242	2.75587229806427	2.88543929869207	2.74906243359783	2.81562734720897	2.83885963661242	2.81069869631207
+"LINC00486"	4.42599989321351	4.3499732177813	4.22772185693659	4.2227124510947	4.42701229041853	4.74261952828736	4.3858499817178	4.3858499817178	4.3858499817178	4.42652173354781	4.20797623500997	4.3858499817178	4.31015002354346	4.75538235671423	4.45825393019595	4.51954378054053	4.55639632770738	4.3858499817178	4.45846038937095	4.27240068142444	4.33566116924723
+"LINC00487"	3.27104566200718	3.44452113132629	3.34682328297098	3.36167753171267	3.13489434008474	3.34942878945439	3.21286037493556	3.34215571292522	3.33042742656509	3.17001969910559	3.08733824843069	3.3319777916027	3.3024339101175	3.3132650175855	3.27732488573845	3.25842406210235	3.36980276308982	3.13990819998765	3.3024339101175	3.14140772599153	3.3132650175855
+"LINC00488"	3.51419246352811	3.60312844572428	3.70947254374278	3.87924491635764	3.93381471183168	3.53732417580811	3.78618188033895	3.78204056874707	3.53086995809114	3.40070123991469	3.31202676235134	3.4509941786935	3.50450564301326	4.08774015781395	3.54977317156733	3.43320287567771	3.4814986029721	3.52030793460411	3.62941957866523	3.73199883290505	3.56321835118427
+"LINC00491"	7.6847516340551	8.11074708300214	7.50743664050606	8.24720437374146	7.80652532869928	7.7930117021099	8.09018373329359	8.05318971576289	8.05961613342768	8.00576389004801	7.72995134309212	8.12879782975387	8.30170737345794	8.27615286985574	8.13274124282988	7.91543630088675	8.19762751602049	7.26913718645192	8.08634642075639	7.70730126887288	8.20902100226539
+"LINC00494"	5.05149841670675	4.92551845146526	5.03695066130428	5.14510208336765	4.99682587031821	5.36102636401727	5.41052005535843	5.16183550270825	5.1395033783449	5.24970099372282	4.72602334082196	5.0885862064636	5.15071621159774	5.45745782381507	4.97127718999995	5.0652497639712	5.1716869876303	4.66647725309457	5.12934593725895	4.88146455614986	5.04472395771561
+"LINC00504"	3.32509010840971	3.59602518429817	3.46700905252675	3.44366611706908	3.33388726703188	3.51375078022377	3.59035006425724	3.64646847182225	3.27686342431018	3.51161630407726	3.51161630407726	3.58020721668009	3.56779595928814	3.69043246852222	3.48401303533419	3.55755677324318	3.53151802262197	3.37529893542131	3.45272730633294	3.56186689674111	3.69223268337694
+"LINC00507"	3.6808938220685	5.22415973900772	6.14946783741023	5.10987774282196	6.10476776212619	3.62160727492543	4.43997767611285	4.84096668882805	5.85756193230079	5.36153991021124	4.2621661711028	5.05933752592904	5.547577653463	4.10253137177991	5.01227422577486	4.7400410983336	5.0844956478342	5.00734635810578	5.22411318787497	5.61180567082904	4.9465075418831
+"LINC00513"	5.06111348423846	5.23399460578432	4.96091685835671	5.59140381272771	5.04848346914586	5.23399460578432	4.99706907115364	5.16858286939402	5.99945056537039	5.43581080429067	5.17260552075032	4.98996361555821	5.53147984400162	5.53574318729548	5.45831635709723	5.29274730601974	5.1204558440913	4.79742673269553	5.07352743305045	5.07794513655815	5.2361707143293
+"LINC00518"	3.50196046040549	3.36900570674601	3.49907232928224	3.75015481173751	3.60741984927582	3.46367015504423	3.58644912597386	3.43063802448307	3.77343217759402	3.4754718750438	3.42736980858027	3.50196046040549	3.46113114773938	3.42673869586072	3.42598080769835	3.60156111008604	3.66835686034578	3.46223865759777	3.59770700072328	3.63786147737509	3.38563733558394
+"LINC00520"	7.8254531361139	8.18560908135512	7.87464397625177	8.41194036915632	8.35120953354478	8.30302419302479	8.14730073403956	7.88733042775484	8.23909402871698	8.18999077520385	7.49947838284493	8.42945312246343	8.34988408063714	8.47382719032871	8.12946844649167	8.18284533245289	8.2993447265708	7.58160847998079	8.06612211585562	8.14560785635146	8.40687402220348
+"LINC00523"	6.94537475708752	6.95593012563616	6.84671329445229	7.19522797491394	6.94302917729323	6.7290285282857	6.78493268479186	6.86945586378456	7.08140190406661	7.19269381033778	6.83657847678666	7.06564228798902	7.06417079407826	6.96456009555763	6.89410184277906	7.22763183679541	7.11951235558406	6.80633735445863	7.09363769538111	6.97527021496855	7.05552850205306
+"LINC00525"	3.34933648362067	3.43431952995139	3.32094362532705	3.74443592515972	3.41847561698014	3.04048422142886	3.2371083959586	3.47200284698878	3.33529657310616	3.34957859487399	3.31565274562939	3.44024302188303	3.44981434780247	3.28933164422247	3.47698275650348	3.66076069256676	3.57013723559693	3.32296384894109	3.38613004288932	3.27452017302463	3.61026935901566
+"LINC00526"	7.28061323151727	7.46827412478292	7.77617695413704	7.11280670773318	7.59543801015849	7.21967920222194	7.21597770651333	7.69889264307641	7.09616668418332	7.42898096503527	7.95489961190519	7.45752880348457	7.08601155870924	7.22423188042715	6.96288697035736	8.15262195086784	7.24646630476623	8.19279705194671	7.26425495585302	7.32698741610301	7.12766326412448
+"LINC00528"	4.21259685041865	4.18888400692358	4.08815148256588	4.25686872514495	4.20154002714559	4.47156063141142	4.49852897839739	4.53882353216162	4.21971147402758	4.20256004143925	4.10388423356982	4.15221614678602	4.26926716303859	4.30313355112643	4.36252070047686	4.17053846826089	4.22535967884553	4.12906777689783	4.39016133663251	3.94772235887527	4.18429536075256
+"LINC00536"	3.54285233601751	3.49907232928224	3.78236146268877	3.7258311845466	3.83753583615245	3.81683188245738	3.90564744113421	3.65591358267524	3.59302092325819	3.36283042676516	3.45765987952367	3.50500136823005	3.75151096472231	3.97123965698554	3.34753069367872	3.52980785349711	3.65591358267524	3.88863536096953	3.64224366839624	3.74967009427201	3.58786670948824
+"LINC00543"	3.4055639980105	3.63380446419854	3.71031846596918	3.70212412734565	3.64764103064763	3.80102811262054	4.16516292472262	3.47612573474909	3.7448507260775	3.60683511117734	3.60683511117734	3.70403303133079	3.78806655638322	4.07095885077379	3.31663032564938	3.40462718489012	3.60683511117734	3.35723504870055	3.51542756567274	3.66733268375381	3.51667442397349
+"LINC00544"	4.45171785160358	4.47304522805169	4.64257718809396	4.56935826648709	4.5718340925848	4.7285819921307	5.08159115330843	4.51195556729042	4.63887194763226	4.820409700654	4.49349799424264	4.65090620116492	4.72083029964895	4.5064318662988	4.60717987751792	4.54023747279259	4.66497391410266	4.49789622268556	4.7096388695463	4.62154328103177	4.65401722567802
+"LINC00545"	4.84513115151311	5.18661606614147	4.94417191422801	5.0124837489386	5.11713819717569	4.98025115284078	5.1716869876303	4.80515640882859	4.88230069107741	5.00412366482655	4.77110342263546	5.01624868431239	5.08976900608918	4.95266591799394	4.95266591799394	4.95266591799394	5.08894472426611	4.5682734050648	5.04655947274303	4.89287529897154	5.04442406934455
+"LINC00550"	2.96710960601068	2.78839870650334	2.87267618026596	3.03819836891241	2.80421125020958	3.14664143682407	3.33030993419386	2.93742403776526	2.92465638686909	2.81038734526324	2.87859240380372	2.87069464139811	2.86371705823909	3.10271875687885	3.19895576615311	2.87961808681212	2.98703776134996	2.95230893690578	2.94906970106365	2.9499677009165	2.74840976021929
+"LINC00551"	2.92943779689175	2.83521517977076	3.29885150631539	2.86114503983006	2.91928741107058	2.93944506057467	3.02481985274384	2.74637441598026	2.88604864955391	2.77336733589138	2.98400369984491	2.93470606898957	2.80598864503259	2.85193782647548	2.91928741107058	2.9978600843886	2.9836575440431	2.94743346283126	3.03753659097589	3.18170153464838	2.85124053788357
+"LINC00555"	4.69516730159977	4.68119340537366	4.83175256712759	4.60425360517476	4.66784483447504	4.64408670757577	4.81608449661632	4.72064893955973	4.57111585241848	4.80589088998748	4.67102361926107	5.0338196904857	5.0039335434568	4.89155754065108	4.74215596439156	4.72879824995786	4.79535871629123	4.41822612849574	4.86181676016978	4.78256214871807	4.89786990275258
+"LINC00556"	3.54428176806897	3.94455582282733	3.83740374808795	3.88451837911147	3.81862390375682	3.72969016615109	3.79657443542184	3.85296278018761	3.89750769692117	3.91971794054525	3.84353013212949	3.84054160309622	3.73965113512754	3.6821299120759	3.96373833994778	3.99209524462579	4.14995389240574	3.67605623992492	3.67359426846266	3.86372520753399	3.8564926891176
+"LINC00557"	4.61552486600255	4.64851239099778	4.43209159642058	4.97256016049828	4.36923348025703	4.53089716167554	4.66602921721751	4.52885027828535	4.9838903843155	4.61552486600255	4.65934272693244	4.67049238368044	4.68152451693502	4.61081798236931	4.58364853037563	4.93779438031075	4.54724108374715	4.4566961884417	4.61284354163675	4.41209433776849	4.67090173458133
+"LINC00558"	2.94906970106365	2.92558758196242	3.22569488504146	3.13209843551695	3.0908660319181	3.0562961983288	2.9930879522558	3.0000510174138	2.98708252151475	3.00808307272916	3.05508760996275	3.00279417941314	2.94906970106365	3.19613740539147	2.98400369984491	3.00279417941314	3.03008963183656	2.91461889489007	3.00279417941314	3.09758306030957	2.92745696966545
+"LINC00559"	4.07561503547908	4.05622541389072	4.4996696914081	4.08946812956269	4.27153123665334	4.36537486107714	4.9879799521559	4.2914337253816	4.1888502517088	4.21174363156842	4.21174363156842	4.11154091742378	4.36537486107714	4.36172321262491	4.05273323131749	4.28688740424417	4.16372416114987	4.16089863856462	4.36824474980603	4.09048668019064	4.12596362681889
+"LINC00560"	3.23705367775909	3.45844329499484	3.45704374376574	3.42598080769835	3.38815919666752	3.39486645428129	3.38861782594976	3.35168999115456	3.3259457081767	3.39168547910959	3.3811392868567	3.38815919666752	3.23875346270944	3.76814718778631	3.13190203140989	3.38352216324099	3.48382949769477	3.39345735714562	3.34042703294362	3.30627270553787	3.38665567838838
+"LINC00561"	3.56636970652059	3.9803750542369	4.28608455289586	4.25455544128859	3.88771555790626	4.40082636520553	4.76690421804833	4.06883916671971	3.9960082603153	3.84232318792524	3.92875429209227	3.96014592482135	4.39888125011367	4.23744012517522	4.17364732484799	4.02468006804332	3.96960726576713	3.79808061171756	4.03007258070194	3.9660072090085	4.03699886317314
+"LINC00563"	4.56187918072963	4.5616228227515	4.39471475747232	4.75117398287343	4.54475703326323	4.61046419147135	4.85803080605223	4.57724095773735	4.61812379835539	4.43882996532442	4.59742749217791	4.57411184404725	4.52125767727966	4.77466270665301	4.57011465191249	4.38322567437989	4.6020617473704	4.49699471419228	4.5089428853856	4.57011465191249	4.451728539964
+"LINC00564"	3.11560882537713	2.91441493810931	2.90548269226976	3.11331648271419	2.91948713102822	2.99846830085332	2.96703823361645	2.88993978482778	2.94956362552461	2.97281011386043	2.8946017239677	2.76252510939685	2.92997600628296	2.97281011386043	3.02600124003803	2.97427250281873	2.93681628686894	2.97801577977917	3.05563245282339	2.94106165524666	3.04815996712588
+"LINC00567"	3.56509146505894	3.675590032505	3.54741608103261	3.51173425213473	3.46860356279087	3.86358941502809	3.83856201281126	3.57698791639446	3.51046632608388	3.63009070441279	3.4520250482919	3.43177525918073	3.68525109407634	3.91895377817171	3.92934666885944	3.59386846887182	3.45908586922889	3.44927333376118	3.64531090531461	3.5039652864094	3.54464815426044
+"LINC00572"	3.90507627795852	4.25944642220391	4.01726080491872	4.15208892540975	4.15208892540975	4.24216268699117	4.15208892540975	4.11857402090316	4.22143527402603	3.99587444538482	4.00041609412677	4.10961082879994	4.18385269120791	4.44913396933536	4.41497713788713	4.37253480609131	4.30291884282523	3.93229855501528	4.18187121540282	4.12627897239922	4.09888425163257
+"LINC00582"	5.82875403312336	5.84234437573741	5.76859187496336	5.96198662937381	5.94317057833665	5.94609028145148	6.12618151529402	5.98719716641878	6.02189018964246	6.12059484398192	5.85827977534819	5.98922097079534	6.31132189334315	6.13396334963586	5.9255174339247	5.77710169740541	5.9811639388397	5.49007611019847	6.03860349940824	5.96008268401116	5.85623432753876
+"LINC00587"	3.41193559234921	3.37498737908775	3.4811851696294	3.51170609424837	3.35635353351255	3.99069776272874	3.35479607950307	3.34924178262231	3.61037897184256	3.57817172814509	3.42207888812023	3.33701081265125	3.53010210782875	3.39200140756528	3.42598080769835	3.36560010406572	3.42598080769835	3.39498669760988	3.42598080769835	3.53348937039277	3.42767110324462
+"LINC00589"	4.69030359894736	5.04770804367559	4.88854346098453	5.09919255457212	4.99148084688462	4.97253690456166	5.21274090315231	4.98165337957661	5.1631125311283	5.05108007990599	4.79109341797918	5.05108007990599	4.88433743623954	5.26090371447935	5.09838991595263	5.21960240996046	5.04354697270142	5.11142546091293	5.0559158030691	4.90951750421288	5.24012406513639
+"LINC00592"	4.9252697670568	5.36724102242157	5.77813219025731	5.40392794061996	5.64967873920979	5.21852300896543	5.35290343264938	5.34043374674533	5.51445482957441	5.28279051258819	5.00909395840997	5.21894691671646	5.4058211162395	5.35290343264938	5.35290343264938	5.47433856892948	5.1206002369985	5.2315240908844	5.62324685189178	5.53619867101029	5.24498250973229
+"LINC00605"	3.88315403830796	3.79115392590546	3.75714810291262	3.78722170987365	3.88843586309126	3.82399157231721	4.1963998224564	3.73124913320051	3.79789751493351	3.57541309999513	3.55637913117189	3.79789751493351	3.94083841638691	4.57233363466819	3.79789751493351	3.79789751493351	3.81209142506108	3.68082599951174	3.71420138216169	3.51626583639511	3.72428449550037
+"LINC00606"	3.04619723608402	3.13368397354352	2.96629612785851	3.13326860454434	3.14952073609939	3.22365589091951	3.43455886277116	3.17726323292844	3.41222410027302	3.23767612914776	3.15015731273763	3.15661021599238	2.92182283212247	3.28998046259474	3.04835571385548	3.33670144983492	3.17985292026269	3.05251165105041	3.09656978711329	3.14155476111953	3.17365475283166
+"LINC00607"	4.52003436977814	4.18288114548266	4.29266291868464	4.34227119376949	4.49102157829886	4.24281051330485	4.29846024516603	4.37190099196897	4.18133070755857	4.43135352681411	4.26759687644317	4.29266291868464	4.35601274283148	4.40827564418163	4.36143001830752	4.37711423160854	4.33721303093474	4.26211776837939	4.25881988031936	4.52064168254696	4.38166055274596
+"LINC00608"	4.83643599746225	4.78057709465034	4.92442610300936	5.02666568128588	4.75294611490749	5.53703563765722	5.84324430367431	4.75294611490749	5.04569358486748	5.083034181965	4.87630125370264	5.08771697782503	4.98114315099456	5.18590799465278	4.96508537650128	4.77686434756924	4.86569772981954	4.7939943459758	5.28123415043679	4.91272753926554	4.90924961281664
+"LINC00612"	3.58801036006098	3.68770822451671	3.53932555628666	3.75582040947928	3.9137670174229	3.72853350042872	3.50942148008794	3.63734615191803	3.65395322832999	3.57680664421481	3.49266164028023	3.73301645294528	3.5897509202373	3.64058197594611	3.45294515632853	3.77216330589925	3.72853350042872	3.52970537206662	3.69756371437292	3.64782125804803	3.6698739849631
+"LINC00615"	3.22594277823224	3.04377015879859	2.99472352576652	3.64785840767538	3.16545764010373	3.24981956591184	3.37574760292404	3.11603850138444	3.194898747345	3.194898747345	3.06509969606624	2.98586326033229	3.31642553332141	3.29555457681531	3.11950823403743	3.287760153254	3.38609966364174	3.10543168443228	3.16367633608087	3.15794210317663	3.287760153254
+"LINC00616"	3.0959515226303	3.1305227461813	3.25349887434391	3.18421242524116	3.15556800714445	3.22413330048828	3.06077320909	3.09548443794846	3.15163966750433	3.00267816174239	3.15331958476381	3.14080771074754	3.20901276928803	3.20404070586227	3.0939979150374	3.42096030842014	3.08432718916359	3.04397704461369	3.13116041797853	3.19699449927364	3.12162326552091
+"LINC00620"	3.94847753638272	3.85023236535568	3.81493744695427	4.1300400317412	3.83214458107171	3.62022605706408	3.94847753638272	3.88630237925607	4.3221071781093	3.79829492538284	3.94847753638272	3.83330891744854	3.94847753638272	4.1139426672595	4.08681037404865	4.08950244132383	3.98328416988021	3.94847753638272	3.94847753638272	3.7488274708541	3.94847753638272
+"LINC00622"	4.98523674724789	5.82044835985698	6.74731606813165	6.19017828771755	6.00989846660498	5.36494341480803	4.34346261602673	5.73758572691372	6.4510428494259	5.09005220178718	5.19679986014244	6.09321850189298	6.32965927563753	5.34020290227475	6.87895131781961	4.42553342785813	6.39446044735094	5.77074407948485	5.82044835985698	6.0024327692009	5.9562391969693
+"LINC00624"	2.99479942266447	2.939757795419	3.12438531463557	2.81133233154141	2.94254954306973	3.04048422142886	2.94105267747493	2.9650171326714	3.06184302487185	2.85611706686407	2.99155008963685	2.95992146996264	2.94906970106365	3.06007823749983	2.88640252126205	2.95992146996264	2.82960462344913	3.09824137265124	2.95992146996264	3.02207260824785	2.92097770661685
+"LINC00626"	3.9526432462815	4.08193599403084	3.83970526537603	4.15351274529027	4.09416393825168	4.08193599403084	4.25964472169835	3.99230579005771	4.34116539425489	3.9307696344117	3.75354523705684	4.03859311077259	4.39893437511516	4.26790319703046	4.28811339558514	3.95564352096379	4.33027155866899	3.88304814863428	4.08583791360896	4.02531677233156	4.13034456120277
+"LINC00628"	5.7469286851059	5.8500540759118	5.48003159080012	5.9758484186963	5.60240966428877	5.82648803805816	5.70592234592018	5.84502811811933	5.97029958785262	6.01410774767165	5.84680436663177	5.85601390944423	5.96341684383308	5.81165536494837	5.87364533337473	5.65448948895407	5.87780583182377	5.85756310778883	5.88952364461937	5.71930973679905	5.98826730867288
+"LINC00629"	4.61035776465416	4.67095012375719	4.36901264931126	4.90275975422506	4.64843415751796	4.64257718809396	4.67709301535517	4.61685177545928	4.80297580873066	4.57985195553012	4.73128921498586	4.45005731378566	4.78149051556839	4.82430815674471	4.99842196299357	4.57062096517956	4.61335648465396	4.36718035314652	4.57092193044689	4.57512919121534	4.69055143465521
+"LINC00630"	3.43614539553304	3.44329248806901	3.29864913101781	3.34572252871883	3.42609618223377	3.31188055188236	3.4591534945657	3.24613996089327	3.38736455950453	3.37255291846407	3.39595099936263	3.61450640251358	3.3246319657681	3.26684143299088	3.08137207970955	3.61571305115897	3.12646885044058	3.4591534945657	3.29864913101781	3.50862982962428	3.53691716176379
+"LINC00632"	5.27037657543022	7.0101554797229	7.55039708739065	7.04127110301193	6.90278153326399	5.65010401063193	5.79137723014272	5.72460574717738	7.1111526187543	6.14019872511372	6.43913788150615	5.90057748325148	7.40980222427056	6.2777596223404	7.22461732288687	6.59039952387314	5.94684446897652	6.96769583749986	6.30972540206563	6.6488913685392	6.87711867653365
+"LINC00636"	4.89016115400414	5.1173900527613	5.11483485495723	5.18723444745421	4.916255966582	5.1729311322565	5.33690521770457	4.96265666998186	4.92376677629415	5.04519716110875	5.2072896017515	5.11483485495723	5.24435016183594	4.96655279422216	5.17691010635532	5.13321188371719	5.12244311810584	5.12244311810584	5.48059342486045	5.05192999318202	5.14339561783659
+"LINC00638"	6.62492839953599	6.27911904812153	6.20890776564784	6.52061355593109	6.05663527142872	6.33681304758635	6.94786252387257	6.22686414780854	6.20292778282483	6.08626557182907	6.24863403373334	6.27911904812153	6.33996187742872	6.64329930168646	6.56099790302891	6.5543467214615	6.3643480768716	6.26888605664608	6.31022578548941	6.34658909404032	6.33996187742872
+"LINC00639"	4.7122427896265	4.60135847340746	4.28563676171234	4.57293976663872	4.55729151812193	4.67569487082649	4.40362186884074	3.9220665837937	4.1531548003514	4.38535317603147	5.20943887131566	4.4639965426867	4.2817397073937	4.34666719081862	4.4752576076541	5.91863873931007	4.70159119070447	4.7616429248973	4.49307834002191	4.17943189502691	4.76681663095225
+"LINC00641"	6.19251783338525	5.70737431326157	5.07207181435755	5.06471352402857	5.26004437761904	4.72421352743916	6.05705369344318	6.16406147839866	5.50312522765556	5.78522320875349	5.51477605221855	5.55618845903231	5.21681274073143	5.68432464099702	5.22154298429835	5.47667834217925	5.8516127253465	5.36633958909289	5.8073408506202	5.62609660337548	6.27081663898811
+"LINC00642"	4.67731987932318	4.96991350325873	4.95391210829513	5.00057433849973	5.21577628792791	4.64212432049871	4.88553996164955	4.75495718119144	4.6380639804375	5.09452623417462	5.07721775313006	4.94809330249329	5.04912212645949	4.74400289016251	4.7935775866257	4.75799280259008	5.0331830956348	5.00031336770163	4.66999304526384	5.22165460349556	4.99695643229299
+"LINC00644"	3.28675047917041	3.26057096969412	3.37529893542131	3.37529893542131	3.36560010406572	3.50865749300696	3.50587546958845	3.37379178716424	3.52947080054899	3.56609961945041	3.2371083959586	3.37529893542131	3.59325245521411	3.34508495599918	3.38524531597142	3.37529893542131	3.4732840120229	3.2191603967576	3.23187787067312	3.37529893542131	3.46772921385789
+"LINC00645"	4.31155849049423	3.75622519217391	3.31094893327775	3.46779585767989	3.48922681914291	3.51124764365988	3.62043549091506	3.64207218684175	3.5635699464225	3.83038310741763	3.72574242574053	3.41983517867312	3.32225759540806	3.65310496606885	3.44173500956607	3.31230621367079	3.495693456562	3.3633588549137	3.34215571292522	3.38238731642354	3.38613004288932
+"LINC00648"	3.27846356058079	3.22637061991056	3.22569488504146	3.26214789004823	3.20722492333442	3.54326819289085	3.38238731642354	3.19574733317786	3.34832725340106	3.1520776666338	2.95469864975506	3.2665826545675	3.20722492333442	3.20722492333442	3.19536934931744	3.35358085341472	3.28726619196979	2.98346693524032	3.05654053782468	3.2135813623152	3.11880941856825
+"LINC00652"	7.05107301545731	7.0059604944301	6.88700264024015	7.07037162489991	7.01970389473848	7.10856046195481	7.61325095433809	6.99159743027492	7.14784938569611	7.0936318649292	6.90331026622083	7.02231221522103	7.13427346463427	7.1984699252429	7.06849114565754	7.02500749470399	7.14795580577037	6.68303099007884	7.29327002560946	7.05107301545731	7.14540109949033
+"LINC00654"	5.36724102242157	5.36724102242157	4.95720583768708	5.47238891594162	5.36724102242157	5.39079598682023	5.21411168554959	5.36724102242157	5.62982202171484	5.52817299629617	5.16557700427408	5.43674115757978	5.53190816297875	5.28160079505932	5.52463081480019	5.26265897708434	5.39145430225969	4.87667132499537	5.45008478583968	5.53487768324139	5.36724102242157
+"LINC00656"	4.31504048315931	4.43231690920115	4.44908138562076	4.57157151364574	4.15022259952153	4.30291884282523	4.56793007186395	4.48320956020932	4.54568073974236	4.34921545494278	4.20392071213719	4.2058168149937	4.19580252239896	4.24127993116817	4.26849611611708	4.29756157848682	4.48481895561316	4.23947389235013	4.39525797610171	4.38619294562472	4.09089730465005
+"LINC00658"	3.9526432462815	4.1217234991588	4.23156490311123	4.15726700618237	4.0340703977569	4.45360377541073	4.38412909736769	4.21891452298819	4.28939682659178	4.16827075636153	3.88231482684795	4.43622587404072	4.26257243982877	4.33918238628087	4.16463795051461	3.95896371126288	4.14863389637246	4.08107655594871	4.20298301160155	4.16827075636153	4.07944190914082
+"LINC00659"	4.39356058547448	4.69593136591775	4.80874194620797	4.77919310269455	4.64423178974708	4.71217315844275	4.95051811794582	4.40937352168123	4.86361138153057	4.61552486600255	4.52742838036092	4.55857159207371	4.65350365369887	4.89451262931149	4.4752576076541	4.44728506382398	4.6021815176899	4.70716295587686	4.78664659733606	4.52276192579734	4.75391176901744
+"LINC00661"	5.47717432898076	5.71909131372322	5.61130158182722	5.67593273779565	5.68350905210366	5.73755271647249	6.25520681685807	5.50040244602839	5.71909131372322	5.54431753972265	5.6444020380092	5.68674828794579	5.77001484075164	5.97011564034421	5.7662511083396	5.84680436663177	5.74345516452227	5.68612216469939	6.07380784277335	5.39576317200021	5.75189905863392
+"LINC00662"	6.45405141458676	6.73714061987472	6.48674701422152	6.37678022169606	7.12306836549113	6.40594539114295	6.27597792679989	6.44505448973582	6.76289669193081	7.20346614286036	6.5316899689102	6.94888299366766	6.62997745882563	6.1691376083054	6.48507818046275	6.95279832814994	6.81439894157119	6.81089997632842	6.66443972595802	7.15893225785294	7.20440965014953
+"LINC00663"	6.43121555148986	6.47162934909368	6.82248712929825	6.16251904418648	6.1794221394816	6.25482302159033	6.08296544981966	6.96454442576093	5.74794859684078	5.53044217694682	6.71228572848949	5.99346619271739	5.40625465857677	6.70448234812973	5.55174479889755	6.65897580686611	5.90297394887481	6.95443800682965	5.97110283618566	6.21266683842765	5.12799293641483
+"LINC00664"	4.27456158619508	4.12658980645528	3.91517135949334	4.22500202276578	4.35445712339552	4.27210554210582	3.99204233907367	4.30234580777347	4.3513259538187	4.14421766505594	3.9823258474308	4.11393456485543	4.34300069356823	4.4113892655081	4.15871293994809	4.34814369907363	4.29145266901305	3.9629216545404	3.94521700021302	4.12335057061315	4.32437316563724
+"LINC00665"	3.80726011513952	3.87172209026678	3.44722401761682	3.80994143950531	3.28517834144325	3.52416301508794	3.46774222358063	3.66125213290621	3.55640298767582	3.74104083156813	3.80336360571653	3.91747881625649	3.33419767591567	3.82012167571379	3.66184117860566	3.87532267389026	3.48630664407418	3.33152635866454	3.85492434389912	3.63516949868653	3.56070263599853
+"LINC00667"	8.56573641744984	8.67881177865973	8.52613870028499	8.63714137736455	8.5096278326614	8.82088157822642	8.03295530952909	8.18888216965411	8.20889464114994	7.64072532376004	8.84026619035894	8.24331600977879	8.21705841229943	8.82146339354898	8.63302235312323	8.60249269305388	9.11381985099842	9.01410862427227	9.07721840877912	7.98018668609513	7.89860237907184
+"LINC00668"	5.93341973281588	6.23044106811208	6.08361367529484	6.24245889956507	6.12123912751654	6.01090991888992	6.08361367529484	5.95853272973655	6.09831797382094	6.0146538848967	5.87122828200766	6.01810416394087	6.08361367529484	6.09140809885614	6.09082463970871	6.21989980696327	6.107397821158	5.58027977115011	6.10375305058874	6.09302536008913	6.17984653206413
+"LINC00671"	5.26805639282549	5.64438831983374	5.43604444359861	5.72879720005465	5.44310752994322	5.68512601641861	6.13742987608658	5.56409922331473	5.80136340903394	5.60483771366816	5.39256889886875	5.49448763381988	5.93204382231844	5.80934260677786	5.76646596197827	5.48288772277654	5.64412268203812	5.12005302761596	5.6355314626734	5.48077916676791	5.65579020963378
+"LINC00682"	3.43807651782337	3.79793986419052	3.76649585251223	3.76649585251223	3.66537434989304	4.12505349546185	4.04508007031214	3.64333122544068	3.68934002188395	3.77757826837161	3.68445632983447	3.6235637272507	3.81412971638693	3.84746626312461	3.77216330589925	3.59729696732843	3.77757826837161	3.49793979823706	3.81559365722073	3.76649585251223	3.59817494781493
+"LINC00687"	4.74775096140106	5.24363744251529	4.82216410556146	5.30752639436452	5.01962221474661	4.91137312229445	5.2549287054252	4.74985197401773	5.11397356511774	5.14270585183911	4.91656206043566	5.16283205431802	5.27970242400753	5.04251154227765	5.13410277544061	5.00085833622707	5.00085833622707	4.83253003256814	5.22022536967386	4.86313256861791	5.00085833622707
+"LINC00689"	5.31306001543089	5.32441829186616	5.72792815526543	5.61304289303137	5.37243052016628	5.64035789799887	5.91719651422161	5.48594270486879	5.53294215327753	5.53294215327753	5.56113562618711	5.49173715635117	5.47619933264173	5.67269250678743	5.76477887616014	5.61781992874554	5.58149924278408	5.36132013808451	5.5426016001824	5.54138937022009	5.50412119738579
+"LINC00690"	3.49589346230011	3.38103415306046	3.37045924114997	3.42558426531056	3.67334438036435	3.56754871994718	3.59035006425724	3.32357724746657	3.51401015632328	3.12290433472711	3.20962653617191	3.53599724521892	3.68088861799758	3.6224332145687	3.63264701713705	3.35039966129573	3.52764581485493	3.23227882653431	3.58657035912302	3.32088930403522	3.48027634671384
+"LINC00691"	3.4814149876866	3.57544381611267	3.6333375775513	3.88860555090598	3.63929741108372	3.74371763390219	3.74505617350102	3.73492542314068	3.67001806949915	3.77294415168821	3.63419144410495	3.63065564372376	3.87862989240907	3.72760069019866	3.7694642286444	3.56363710658956	3.72309565332262	3.74723713627117	3.80619185589469	3.76821633540438	3.70145297559767
+"LINC00692"	3.10271875687885	2.94001072840813	3.06258344500056	3.26422443067715	3.10724236053544	3.27605695764013	3.1059844824073	3.03114074594854	3.08716796226907	3.10271875687885	2.84358745289624	3.18506519649271	3.21133841649324	3.38264315859459	3.12763467749917	2.94171205392054	3.06482217370656	3.04231678700829	3.19377952189911	3.14313378671498	3.10448096412816
+"LINC00698"	4.66784483447504	4.90698358486453	4.88768494577579	4.83303137675765	4.86787663311833	4.85953034795793	4.93531826176952	4.70309299700525	5.04102841441786	4.70122921611768	4.86361138153057	5.04442546010444	4.79289606487937	4.86361138153057	4.65259659961972	4.86361138153057	4.85157498206822	4.39184486930924	4.88078745484367	4.88151443543008	4.88079502782087
+"LINC00700"	3.62064122134556	3.94600799474458	3.90192700469082	4.08515066144269	3.66677520464506	3.82885133137403	3.62710017665698	3.91977967638055	3.71106210162159	3.87212512356712	3.63207891462339	3.77445820190599	3.86841813316021	4.00133667142245	3.82213207277306	3.85261423602192	3.79940593982694	3.65118179641114	3.92790461154472	3.48742572362575	3.83851374890128
+"LINC00702"	3.65618632238909	3.5762394442174	3.58657035912302	3.60825824584131	3.58841686913858	3.87109017882682	3.68809341462329	3.41346123536353	3.71828742188696	3.67520962257496	3.46924752939726	3.58657035912302	3.633091659362	3.55561032194121	3.58514408410633	3.4863093772319	3.60114426298026	3.58448951590075	3.5601618893827	3.64040610083995	3.43051026131516
+"LINC00703"	3.80434855894191	3.99765462955741	4.02305928516869	4.02262778831397	4.16528805441382	4.22418977974962	3.55545656845765	3.76161571965078	3.8805654914959	3.98426335988854	3.74338125369743	4.04807664114074	4.02473278048217	3.79340624972589	4.15402989772363	4.28092579625069	3.93668319481726	3.77320275800235	3.81492039265034	3.91931126792436	4.14484004089714
+"LINC00705"	5.38870836148381	5.96990786514841	5.54121533145593	5.98113940963651	5.81619876027617	5.77872950452485	5.94227937573684	5.85258934778242	5.8704121990033	5.92866195224805	5.8704121990033	5.86338660434779	6.18912482544225	5.8704121990033	6.11052589962289	6.00858619488291	6.16625421708886	5.43894408045792	5.87602836393605	5.65067607671289	5.90755439969902
+"LINC00708"	4.30094903442845	4.4101241164489	4.49497619638741	4.57266357041631	4.50637038383466	4.54629125908178	4.63757905560681	4.34227119376949	4.4344889245956	4.40827564418163	4.38568056965645	4.46095376715041	4.71645707098447	4.47059715091222	4.55616105121645	4.16900966397188	4.50033197132982	4.24583198681679	4.26766573580193	4.2947976575029	4.23851904797668
+"LINC00710"	4.89579822666129	5.4275055795541	5.20865421990049	5.43110134398763	5.85275515370317	5.22025635773318	5.1847508206864	5.05667363175561	5.45124121372987	5.0612252271545	5.15387797280147	5.05588909690746	5.15248641314683	5.13340614451541	5.22819908941024	5.50348868728469	5.49299229177242	4.93048618769551	5.08077698227879	5.67593138489352	5.15954824693267
+"LINC00824"	5.28509951371319	5.39256889886875	5.35498044566211	5.33921168594454	5.45451060355985	5.44267264054005	5.65835947195227	5.29033668306914	5.56101711728342	5.46501997101295	5.39256889886875	5.19895988445682	5.39256889886875	5.25698218085037	5.25481448162564	5.37166223279023	5.53635642547379	5.21645927009205	5.56876082013031	5.31630114544019	5.48521504479319
+"LINC00836"	4.70491705647149	4.69559190370823	4.61738986277418	4.83423953869088	4.68559126821283	4.85268499034862	4.82358513130548	4.61738986277418	4.58147078624522	4.73011105672139	4.90891536730434	4.53585463246397	4.62358540209788	5.15559113106166	4.7632687260508	5.06283240508445	4.69575649291179	4.59107258298924	4.72325049521782	4.4936312960508	4.75185426580804
+"LINC00837"	3.18453351441236	3.20942910298454	3.08019242539542	3.14058036429531	3.18315691982083	3.23046688195372	3.19085995707205	3.35019881083116	3.31622496923165	3.17060261855207	3.01978501771485	3.23749923951132	3.01179683364134	2.98878549417856	3.20178505239229	3.22797821608537	3.08054364552916	3.14295006851538	3.17060261855207	3.17060261855207	3.13860194123171
+"LINC00838"	3.82225268600414	4.01422383752144	3.75143035224726	4.03195009532197	3.95555672036975	4.15821609405869	4.06131548278704	3.93785146097932	4.10554158400565	3.93187739790758	3.88091386508148	3.97022415599409	3.9526432462815	3.97020434718475	3.96618948107037	3.9526432462815	3.9460412481398	3.7198312848183	3.98544605296826	3.92440628136237	3.90513205401938
+"LINC00839"	6.83217709255633	6.76318890953375	7.0131085669391	6.74668819469746	7.31272031620072	6.82730442775766	6.90643716571183	6.37017332102002	7.2797226383436	7.24615773498262	6.05342337676756	6.38340007371235	6.72770713990203	6.9213426077147	7.33898684935479	6.62383842889665	7.07208220684947	6.31419891092748	6.69082153374622	6.93995374303515	7.03521065529549
+"LINC00840"	2.90726764676891	2.98586326033229	2.88591142541067	2.78851357151955	2.90139119525152	2.99352403878978	2.85900442857593	2.88184332166373	3.13197492272332	2.84768597396225	2.91148837919172	2.91005292217204	2.8113718912752	2.83642204549913	2.88591142541067	2.9063548477582	2.7989678781844	2.82372127950086	2.99276009731594	2.89239182204812	2.75970564357719
+"LINC00841"	4.49303726616993	4.48101624424806	4.17418575734138	4.44032013128501	4.48101624424806	4.20264678554916	4.4387977351273	4.48919339369458	4.73634890473293	4.48895247797766	4.48101624424806	4.23394875231845	4.72217983578338	4.57512919121534	4.61210251753748	4.63961512521904	4.78366800414244	4.20291384464216	4.48942484506812	4.24107212401088	4.537699768961
+"LINC00842"	4.60362554476832	4.29378173548586	4.317288963494	4.57858119453868	4.80906501443636	4.38195702000894	4.32277292123221	4.36682849711871	4.23970902986057	4.41831890553538	4.3886628266294	4.49832011112192	4.16089863856463	4.19937931437721	4.26237654245493	4.83573294429972	4.60768773530764	4.47109427700291	4.53188392248809	4.67230187948361	4.68307929263382
+"LINC00844"	10.4510841315064	9.91427604048159	9.5471343758999	10.4291264945829	9.75650457707326	9.81958949260114	10.4424675306762	10.3026047079026	10.0115208173216	9.45080415798404	11.0444725973073	9.69907163079549	9.53842213618201	10.4500211803527	9.68978973510955	11.1406024427868	9.99230401249496	11.1430178149831	10.368676938395	8.6002178307486	9.84549547509806
+"LINC00845"	4.42643315564745	4.20479628536753	4.21986188990371	4.03825123356456	4.84142741288125	4.46329949166502	4.2352089328033	4.35414912898576	4.12671708992558	3.84862433516849	4.17684992451048	4.35855890362381	4.03683577321336	4.46166034850697	3.96386482556579	4.20479628536753	4.23985403447284	4.19741668768187	4.29642470590151	4.20479628536753	4.24481231061394
+"LINC00847"	7.51498686514915	7.38457149095402	7.32536049227345	7.20346614286036	7.40296268250291	7.24442026665489	7.52309262351969	7.34788438141786	7.00114192010537	7.00709561697424	7.50899880063589	7.34761140997827	7.22001107879067	7.47385200970612	7.36731779089008	8.15518575163749	7.35228558856335	8.1546854461775	7.59145201032241	7.36149821144876	6.87558505364827
+"LINC00851"	6.85617007211612	6.83817660885266	6.91115832819451	7.12405652853394	6.90522775121378	7.18081352860317	7.56566046691704	6.81110916462199	6.91597939434365	6.71212148817439	6.81110916462199	7.1102432648379	7.2763608435191	7.38825078023496	7.11095727066161	6.88665555630567	7.14172370502948	6.47324894952879	7.18612057481946	6.42034059882729	7.16472903574631
+"LINC00852"	4.7962753237566	4.67254246962174	4.66309177277099	4.60859768348473	5.15564999126101	4.65427714775823	4.59341429726972	4.43419856395376	5.09218055321782	4.81150467522869	4.36039584708321	4.64735248772984	4.45336326538917	4.41995155256761	4.73884287663255	4.53444982530475	4.4261810419405	4.65427714775823	4.65427714775823	4.66619758597682	4.61179349099661
+"LINC00853"	4.07175514192074	4.23332768009359	4.0345136431503	4.1112004030439	4.27860560609435	4.57631304290692	4.23396218322583	4.1112004030439	4.19604601237399	4.1112004030439	4.16105055710948	3.99579542643261	4.26236676266304	4.41081517616898	3.99724969174925	3.81188076367574	3.78396563996155	3.79789751493351	4.2493817728559	4.11733024450099	4.1112004030439
+"LINC00857"	5.05222244283301	5.12185785486084	5.10172295679808	5.29251961084329	5.07508829750431	4.97407383999726	5.07783492257626	5.1281503542844	4.93670386282751	5.19728777647892	5.02061866410453	5.05108007990599	5.3717321886779	5.82655085566779	5.24149510287271	5.02360451140267	5.08484795604784	4.65740709266134	5.13827440481341	5.26406495378432	5.12814254156045
+"LINC00858"	3.54606931526503	3.46293234370757	3.39918749369838	3.58657035912302	3.78219682635011	3.54729860133717	3.58657035912302	3.46472936857416	3.76541922722879	3.61965428245701	3.54576680597096	3.4939763745948	3.65913056192276	3.62246290923387	3.58129603809895	3.68127721461343	3.61274428610255	3.37529893542131	3.74963320936806	3.72613087112253	3.71278986410076
+"LINC00862"	3.37140697068343	3.44138886616245	3.73366315862214	3.5448582959148	3.42055803080483	3.56028158361604	3.66128155836435	3.3121170479445	3.41222410027302	3.58165612451089	3.45272671039579	3.55840843369002	3.63490040006208	3.59165428417856	3.91259676584584	3.73308313775602	3.63028744827589	3.5871025538406	3.51137444637969	3.43730824582905	3.66297185391062
+"LINC00865"	6.55766966350994	6.76417548111742	6.98330701928841	6.96393346163493	6.89563765649462	6.68458396877338	6.74282680803198	6.98565414877873	7.13654440319821	6.70758732291274	6.35890348855594	7.06678541914327	7.55309944776801	6.58624722331043	6.99641953403883	6.53710086953648	6.99428795913219	6.69624048649936	6.73446992400927	7.11554085140586	7.59622504318311
+"LINC00867"	4.02240030635879	3.89464626573152	3.83947785334992	4.08682335137175	3.70673053439909	4.34188522568634	4.20479628536753	4.20939862194118	4.25538507767018	4.07208248264702	3.71484420654763	3.86069527976447	3.86206038956929	4.18724939437901	3.75521009173887	3.90921492375391	3.88141014815745	3.50291639451879	4.073331813271	4.03121405351342	3.98583378343021
+"LINC00868"	6.26815492174139	6.24689457818724	6.24443397539332	6.45146168575839	6.25388121418597	6.07307401262835	6.29506763432642	6.41293173992062	6.40936958626685	6.40872721787055	6.08331203695221	6.46964488619953	6.56649077891856	6.37481661852529	6.32542472615631	6.44739148416729	6.40678448405662	5.93010851312949	6.40546653776422	6.37086919568318	6.49474439342216
+"LINC00870"	4.34220064993007	4.56468634837058	4.63488483340086	4.73945903094922	4.6540653926872	4.80885705465142	4.78441962189363	4.60432838805109	4.36705632716436	4.40107225992928	4.73320343243165	4.59584198323586	4.44669253943877	4.60432838805109	4.60432838805109	4.68786191356685	4.61551981815373	4.57512919121534	4.36190992042052	4.81217908751777	4.60432838805109
+"LINC00877"	5.01304470267369	4.95280765995608	5.24408323885963	4.6044046084262	5.02020294092007	5.34272441213575	4.58331670148862	4.74071661133529	4.79016609256199	4.72734011679117	4.87943390973914	4.77096574271246	4.84431414565121	4.89748431485176	5.3748123852708	5.39251898353116	4.95771342590708	5.37346159693394	4.82458207083295	4.56685258415575	4.87943390973914
+"LINC00879"	4.12761341826061	4.22418977974962	3.92096407141584	4.17780694522329	4.20775572862529	4.21447324696284	4.36836334546523	4.24573899145197	4.43425184958367	4.44129060851315	4.08038974541467	4.1681144621186	4.33035078829388	4.29926866315298	4.09757427392448	4.536927275268	4.62388965968619	4.00722569908782	4.19818030628423	4.07552047759038	4.33649477135358
+"LINC00880"	5.63738408813833	5.67028098236287	5.60779027779339	5.81892813552626	5.54479698750336	5.63752460316067	5.84324430367431	5.62076303238944	5.50076182085259	5.74757215534074	5.39447159924565	5.66530478135089	5.32692006831047	5.6418380990519	5.78817534666958	5.82439884656666	5.60108387494135	5.56293851974827	5.79680550574465	5.57196520857353	5.76517864688838
+"LINC00881"	4.9713753992581	4.93883607083311	5.25538640704977	5.23223786534841	5.13799125617441	4.7107812686517	5.2956937949616	5.08008387686984	4.9986700193548	5.4441759870949	4.89368158578339	4.97754108239826	4.86914533304928	5.31068988672376	4.904826394931	4.99104454075991	5.02572181462239	4.88197839421763	4.9161019332411	4.80848612806092	5.04003097162902
+"LINC00882"	3.92737838332539	4.08925664049721	4.25549586529828	4.01715394522023	4.39925772775143	4.46200702345329	4.26323325757603	4.15451915766316	3.76325882654305	3.96089851493637	4.06378757844779	4.27467482631322	3.95434393608468	4.32709037640671	4.15451915766316	4.19344942655245	4.1338155390393	4.0168243846081	4.20076948100069	3.86680856889072	4.33404690335916
+"LINC00886"	6.17318996528139	6.24111514294697	6.24443397539332	6.12852434788155	6.03451575295368	5.79556252656672	6.11962284281719	6.07854110773496	6.09333578074286	6.31333576368874	5.86525383816641	6.18995271314017	6.14214476769302	6.55213658629731	6.24769095611778	6.07000391002629	6.36632251305396	5.52750284710962	6.40535469282855	6.20987345163535	6.34464658202804
+"LINC00887"	3.70581046859142	3.47134017256235	3.56642699159963	3.61756767989843	3.2588562825902	3.55626865495415	3.35924875636046	3.44627427226946	3.36779883656537	3.39352229454367	3.25266892732744	3.44773937410003	3.62667642393999	3.4971150160627	3.49810205766087	3.46154968538408	3.37434037292352	3.33090276052922	3.49935565556777	3.45543993057874	3.26688712460555
+"LINC00892"	3.54670055423718	3.67524359527377	3.62589837570552	3.53640524583679	3.56952742167587	3.62589837570552	3.48961956943336	3.4427959588228	4.00961531584737	3.62825618116093	3.61265811101973	3.77851730974921	3.62589837570552	3.87296608003335	3.48559891044587	3.77881649530397	3.62589837570552	3.5940220400786	3.54758227240789	3.70208274234145	3.63257335833664
+"LINC00896"	4.4164372374099	4.54989540601896	4.3444204283311	4.57987584400434	4.73491807200037	4.59490261633938	4.49852897839739	4.57987584400434	4.55971819450025	4.53544787915282	4.26685308090821	4.77866155614541	4.58614756496332	4.68617084729507	4.4749105887438	4.61039324693433	4.65357013631803	4.28506746695534	4.75957918697007	4.67792401546997	4.65687972949111
+"LINC00899"	3.70804230644072	3.15828382342225	3.38772578802073	3.19506678089271	3.19485034635083	3.09224210784115	2.93865061479139	3.27146302623961	2.75411731305342	2.94078227487345	3.20048216551853	3.17060261855207	3.15012403496864	3.00446959119325	3.08618065796128	3.43137480003926	3.01449908281559	3.51796440801764	3.39852722823408	2.92924100126945	2.96153500927658
+"LINC00900"	5.83375594545311	5.20545684273909	5.94136981284898	5.16294232365226	5.4041740185135	4.74115524706345	5.47184746347563	5.09385098293365	4.99024040301101	5.25746484749362	5.36474530998469	5.0734766082095	5.19661657222068	5.34969276016387	5.1137556637915	4.89371530610154	5.23897278654052	4.63716839407146	5.36731854342019	5.39576317200021	5.46401326973477
+"LINC00901"	3.27605695764013	3.3857150021526	2.81641428639624	3.35595840016976	3.27605695764013	3.29537340332543	3.59764560276978	2.99821313934768	3.20181407113713	3.33978544008522	3.06174061322718	3.13973928575418	3.38940170622844	3.5294762318456	3.27605695764013	3.16195257162874	3.36948155154001	3.08493281425141	3.41026273734514	3.22933562642769	3.3024339101175
+"LINC00905"	4.69481623579897	4.87598852855677	4.94035329580169	5.0439999636774	5.04132539075496	4.71317351363847	4.89420204066498	4.96076019116955	4.83753670863611	4.85685450891606	4.87598852855677	4.87598852855677	4.85123644083117	4.95149019306574	5.01937405473896	4.87598852855677	4.91422852990141	4.83638671178401	4.5913662843934	5.00703965771963	4.82239473819368
+"LINC00906"	4.79382634923734	4.93779438031075	4.8967045985659	5.00714072892703	4.75339999301115	5.02559293786087	5.04099773531691	4.79295123657585	4.84006408771033	4.79556240395084	4.58715607633196	4.94742361195915	4.93779438031075	5.24922459722821	5.00925602996937	4.90325428405518	4.95741135176406	4.45130938098305	5.10798172261578	4.91914994878208	5.08995411702418
+"LINC00907"	4.91567093880177	4.98830044030171	4.87814529871636	5.23153847057043	4.77329879576704	5.33208818658858	5.66269128654634	4.95556738530957	5.14785645014479	5.27568201777646	4.90536201369691	4.99852274861213	5.20963231717923	5.25723563963386	5.04333128619004	4.92262637101495	5.16244675873744	5.00120656793647	5.10610390797514	5.05497694948843	5.09836609682628
+"LINC00910"	3.58645530902416	3.66988777314638	3.79340624972589	3.76412666329381	4.02187437710335	3.68759844874048	3.64412061090917	3.64527624622532	3.73289813648499	3.71157711312432	3.51094173506676	3.60923997921215	3.545734012033	3.75403091320116	3.60036181195042	3.83118157444268	3.79340624972589	3.57450866957282	3.44795572433439	3.59257226930618	3.82391003238417
+"LINC00911"	3.95829433360146	3.84054160309622	3.74305509811231	3.8123240532563	4.06652156417081	4.01398529028893	3.87184527991044	3.69025793124941	3.9182459833103	3.80690312465611	3.55689967929328	3.96697648881297	3.88002723356178	3.84054160309622	3.84054160309622	3.73766246974926	3.92216177577978	3.70340685220062	3.67941228339324	3.93607816052714	3.79911340982926
+"LINC00917"	4.08037642686915	4.22418977974962	4.43081071074209	4.31811237507875	4.39526239929381	4.73504271154823	4.6013389918904	4.43997767611285	4.36138446071934	4.52720598118693	4.18418380069937	4.41941873755015	4.51543628671303	4.59606090464819	4.39893437511516	3.95856112419989	4.64545393813278	4.2342438259467	4.60097523220621	4.54706780290712	4.40544157993931
+"LINC00919"	3.76649585251223	3.80941363858838	3.84312756952378	3.98840384014043	3.84754073119712	3.84232318792524	3.88280313477638	3.91048741442641	3.90039648521138	4.01502761575296	3.73788268668465	3.93492028414394	4.10533500647145	3.85457345750122	3.92778835122876	3.8896222460907	3.84054160309622	3.61097605768933	4.05909205213025	3.86772036934807	4.16398808914618
+"LINC00920"	4.61284354163675	4.67741581378734	4.12179331359266	4.32794993781675	4.45306235234113	4.61249286833913	4.89585300027221	4.57512919121534	4.59842009295082	4.67673936712279	5.00542331637005	4.69759291455583	4.51337332054848	4.72816810631058	4.27594594342356	4.97996258589629	4.57512919121534	4.142112696461	4.5341767650415	4.49681869576869	4.57512919121534
+"LINC00921"	4.17266213546933	4.16982717406844	4.56065930054692	4.6551382084588	4.37621600174343	4.43355784453328	4.52313568650165	4.25891510036902	4.58348394313879	4.72959425668181	4.33065167854373	4.50027435686551	4.12348558954814	4.47097876782607	4.31960582434537	4.45423722736455	4.55562152210815	4.23128949190094	4.45774211729109	4.80226383798155	4.34151361134951
+"LINC00922"	4.81273844610615	4.72857248725429	4.62786348974185	4.79638956968708	4.83851391392687	5.02911786542874	5.19121166391688	4.68411191405634	4.83851391392687	4.81988438931453	4.76722654962369	4.6709245004782	4.70599577241219	4.9686521527271	4.93135632103726	5.01951931657432	5.05297533863308	4.81035312185771	4.95708301340498	4.83851391392687	4.90236589498491
+"LINC00923"	4.04517261631169	4.30099970933189	3.97548404334297	3.96643914761338	3.83878591485375	3.93074871980515	4.05701807253253	4.03047641934358	4.08950244132383	4.17281416399888	3.967404958994	4.2330209192495	4.26901184176358	3.78254569307813	3.73019187150742	3.98002831408459	4.15356375310143	3.62373478601782	3.93542798937364	3.9815136712635	3.78254569307813
+"LINC00924"	5.42922277378748	4.70194091636622	4.65624186811531	4.85181972950347	4.83059597395202	4.78080346972271	4.64715750934408	4.715358520815	5.07540176855247	5.52295820203424	4.55332576188101	4.56797757319428	4.61955513855545	5.4117504264236	4.78080346972271	4.89425734645052	4.56613432417153	4.63249070002095	4.78080346972271	4.92631178318413	4.57452722782395
+"LINC00926"	5.43891816408618	5.193961560832	5.40453991913251	5.14716949672092	5.41303686715363	6.09970858913509	5.48379549477634	4.92433202155981	5.00786778628685	5.25048448262729	5.17514715204899	4.93391350123736	5.62735506388359	5.65666067404455	5.37275420487541	5.27851954344949	5.31434699319669	5.81525615491573	4.84954943785963	5.17406838062774	5.26427929001776
+"LINC00927"	4.54751080496412	4.66317122203355	4.74278708805578	4.81090845984352	4.67364695907921	4.34022267413165	5.1716869876303	4.61784490158946	4.79318887976868	4.72980364689569	4.73354023145279	4.86342170118493	4.91510272681127	4.72574804400466	4.68789207044075	4.38749303216595	4.75549278099315	4.44413883755107	4.96301419617571	4.52046251397505	5.00879568245109
+"LINC00928"	4.33276561609132	4.39264898948288	4.24033533765474	4.41828455997137	4.33276561609132	4.42242994140306	4.22485545986688	4.08428899161275	4.45156254196373	4.36072304514519	4.12590318330011	4.39450720278241	4.25751896651092	4.23653977096042	4.32199983345309	4.51360916090436	4.51400391475039	4.12111016678412	4.21377855377689	4.27511457411108	4.57683936626296
+"LINC00929"	4.90135971892249	5.13161936395519	4.90384104361204	5.49071992564706	5.2136276251386	5.19337308578599	5.45269474623135	4.87405875361897	5.09122390903668	4.85573583228878	5.09122390903668	5.34997650895843	4.98042222826889	4.89989179637482	5.33358936572871	5.18382428658006	5.13652584681864	4.82939880504009	5.03224227799164	5.05497694948843	5.14640841803261
+"LINC00930"	5.58443521901795	5.67697251265682	5.33150461976992	6.02664343598254	5.63258617373776	5.97996921240897	5.52761294289383	5.62002022199559	6.31601944212345	5.60353024533969	5.56873890698865	5.68327857644413	6.03307552987989	5.8668976310647	5.99887503345205	5.60706383768937	5.82824195295455	5.4643911790618	5.95293884649902	5.56256354498439	5.77032468699773
+"LINC00934"	4.2666631025096	4.26150726928201	4.29838453023886	4.20456595097782	4.22555908358131	4.5193897179668	3.8996565319658	4.04325096876477	4.06057237604886	3.94233743792011	4.01730565434994	3.91288704877364	4.24251734737744	4.15564901277847	4.2190583390109	4.18043807234445	4.12873861556481	3.96662378207291	4.1406501684265	3.90375144754117	4.18670464245155
+"LINC00937"	5.72465283069423	6.34524775064788	6.24218614513216	6.42266833925463	5.39735767302274	5.96560259328462	6.26568525622313	5.99661083709422	6.30608676088442	6.03130922664756	6.05705369344318	5.87919073610566	6.42058603893164	6.23393994651488	6.53761938579432	5.5416937103325	6.05705369344318	5.1757910564098	6.28760214749253	5.97455258626291	6.05705369344318
+"LINC00938"	5.25824079014598	5.35395440090523	4.88819055993904	5.21391305439011	4.69781284484682	5.09830057202075	4.94489312078227	5.46239494891809	4.84057255243286	4.29607210877738	5.64644444909643	5.62797607781801	4.84120660023199	4.68892101193732	5.09830057202075	5.84532453749152	5.07788492529794	5.77233295207794	5.30097962000209	4.6715961039049	4.56437833114906
+"LINC00939"	4.37365714405847	4.3235585732279	4.22633524072086	4.27940055563199	4.40621062743475	4.19664243881796	4.48882601422502	4.28454149819656	4.32872642852291	4.41644281758322	4.3235585732279	4.63413079348488	4.18792777504475	4.29032074415868	4.10754111817749	4.2947976575029	4.52294278287519	4.24903761982025	4.73975935437084	4.07169224607452	4.57512919121534
+"LINC00942"	5.23955235370785	5.26265897708434	5.21508778091006	5.36674425134409	5.20683448274092	5.31148837083207	5.15495666381071	5.17855572049275	5.36362599527268	5.42741579867889	4.89433164870737	5.14797031241084	5.36362599527268	5.59936205056715	5.41370231115428	5.56458709019212	5.38043649946313	5.12002644345798	5.46049976254501	5.16772156333628	5.28926505232096
+"LINC00943"	5.63047951820335	5.72586139362308	5.87974272841236	5.76478929193998	5.57912047954667	5.67941739589063	6.01638194328456	5.66230433416071	6.01539915297346	5.63282737911643	5.68413371011211	5.73166710151607	5.56610689535992	5.89493634422298	5.80025225398372	5.73939665125096	5.40381342197292	5.32679661818428	5.68474642987101	5.61301563861588	5.78934827085907
+"LINC00944"	3.2585214090095	3.37894173653168	3.3140593805656	3.46793335056647	3.39063502276523	3.59536900374465	3.8765665746607	3.33065142786807	3.26712502598893	3.41110281989728	3.38066700803225	3.38888300750041	3.61890862088598	3.60199201888448	3.69455180520627	3.22220709321915	3.22916190986502	3.38066700803225	3.38066700803225	3.30895762977101	3.48625320621858
+"LINC00951"	6.75353095287137	6.65838674589353	6.7016470134138	7.44378361690692	6.59516969864623	6.75353095287137	7.00444596355033	6.67453090427133	7.59192862496449	6.61721415628888	6.48126009790275	6.42467440737388	7.08601155870924	7.17509459822582	7.21556290641499	6.21101017976352	6.86108674915997	6.19109292264216	6.75353095287137	6.52165491226613	6.7702130686248
+"LINC00954"	3.50341413472326	3.58941311123361	3.63380248408709	3.52248094874222	3.4729704584025	3.68709443191938	3.62969338254219	3.51949844821561	3.6049866265435	3.59002488492423	3.40674557926256	3.55626988873752	3.54964267212592	3.80260878203737	3.53932555628666	3.55626988873752	3.47758765102148	3.507211505577	3.60877832862175	3.53934357991366	3.48977764089049
+"LINC00955"	3.26609419219365	3.08635666967848	3.24466460388767	3.11511892187414	3.10071482180735	3.29731280256555	3.48401303533419	3.27420848537286	3.17160401895691	3.35503941131698	3.27420848537286	3.32943706581519	3.48639660177673	3.51316189652147	3.27262808437407	3.16835160316557	3.34608749995873	3.23631190220058	3.17122547961335	3.23680299747824	3.33758536258612
+"LINC00957"	6.59483914117272	6.80251848548689	6.28984421164057	6.89431451881217	5.82529021334656	5.38725697302666	6.6382896721172	6.67851821467919	6.56632847837282	6.66062612610399	6.76231767252557	6.75983670275676	6.90366391543536	6.85572858587064	6.67375381624895	7.13383150054203	6.9026642420521	6.28612402181163	6.68974503585316	6.73930568339677	6.44637073271933
+"LINC00958"	5.22796523418738	5.44061319479109	5.5142226739678	5.43422455184709	5.44093952966528	5.78029352690403	5.70158935682414	5.83100237942857	5.82887000601136	5.51986050600539	5.60339067319676	5.65569096758666	5.8877758231641	5.6355314626734	5.72665683312501	5.63621872133426	5.80928555435546	5.31207468649552	5.95283136634452	5.6355314626734	5.22262518529336
+"LINC00960"	4.75426731610232	5.0192840921257	4.59349345916939	4.83009465151533	4.69895205803882	4.86048158674311	4.23264379778153	4.8159577378702	4.97996265113183	5.34772039301261	4.62913862068077	5.43405504228199	4.86048158674311	4.51918947622553	4.60724017395168	5.01412136491296	5.28091013494257	4.79690613187639	5.25495893698075	4.86840651409291	4.94539970942762
+"LINC00963"	5.48328402806936	5.12319628980617	4.51251050546213	4.91652834423586	4.80589088998748	4.71503326136462	4.58975636741636	5.29797738883642	5.08868164109096	5.26555215748118	5.2990407195938	5.41098526775965	5.1574444902889	5.04348465567663	5.02770545440362	5.17677070548207	5.02225951062775	4.70293447395379	4.80016686197077	5.103671692089	5.43863465742487
+"LINC00964"	3.57848133386598	3.49452323446941	3.41968830827479	3.3708231122178	3.50929098837993	3.3901444267896	3.33063249411098	3.38076604251618	3.40160317092168	3.40438404891457	3.04970393691958	3.45859725215098	3.37625081253712	3.24332102696903	3.50724269661962	3.40763327862515	3.37752680667404	3.28451696631277	3.48936850969301	3.36953780509255	3.33377034911926
+"LINC00967"	4.47994307545327	4.61552486600255	4.60002956112166	4.65250156456779	4.41942307801679	4.79986923126416	4.60002956112166	4.59354834572383	4.61690635899034	4.563141953353	4.53753768887713	4.67923628416134	4.76006374627087	4.82478399150134	4.70780438812585	4.60002956112166	4.64943751493889	4.58259342022462	4.81463619613888	4.05581269481551	4.52232059997451
+"LINC00968"	4.50926338124399	4.96968570644384	4.93598664335787	5.07918559037946	5.01699150380046	4.90922655557791	4.78543514363931	5.08272710302009	4.97996265113183	4.98572116744361	4.92107205051494	5.40098631358866	4.91610520417754	4.88777994906477	5.26824872032684	5.11115056004118	5.34409963068779	4.85149782600817	5.1535575959468	5.01530323823851	5.12235999478329
+"LINC00970"	5.32393708780937	5.69997267153742	5.41146299776811	5.41312072683922	5.54145682811944	5.64706224103141	5.45956798142259	5.36558816137465	5.66602799900893	5.48721109567171	5.39362116404092	5.52628521032244	5.50076182085259	5.50076182085259	5.49555186605224	5.56320007846077	5.59321363067164	5.27997557459967	5.38275841162081	5.50076182085259	5.41418702478708
+"LINC00973"	3.09782467255632	3.148186745155	3.05945200571543	3.0718706928511	3.02753615084423	3.28706835610161	3.13769718098345	3.17099610988723	3.11697036913246	3.14496221443499	2.98452040779179	2.83446842026844	3.09782467255632	3.06144805603139	3.15942910928455	3.0053983920592	2.9636132870196	3.05251165105041	3.00056473630648	3.34215571292522	2.99408949378924
+"LINC00992"	3.95873044380815	3.8866333149173	3.9665740570772	3.96736747810225	3.72266468181201	4.07792606942969	3.96671386633406	3.81279720238495	3.88108761765639	3.9270286046158	3.80906447567514	3.88108761765639	4.15793526590973	4.18728320940249	3.73369746103912	4.02852218821259	3.88108761765639	3.63365564922593	3.71186418153965	3.53872967992672	3.93204471033375
+"LINC00996"	3.50310234788329	3.50310234788329	3.64700464442874	3.35059736123152	3.94093374381205	3.60739452156917	3.61726609321262	3.49241213622792	3.53918786971286	3.68677898483993	3.43686447550705	3.44636833744319	3.60518839912975	3.56172963993143	3.51008695468599	3.56427911914235	3.50310234788329	3.29521699816685	3.49501034135753	3.34829703104895	3.38939644620359
+"LINC00997"	5.12117531778547	5.20254160184021	5.0161375094205	5.59140381272771	5.44218845884289	5.69803691805074	5.69868077900443	5.45623207992761	5.23030821040278	5.41981080445543	5.31143170533174	5.10504847339056	5.82810289380655	5.96537015910646	5.36500966921354	5.35455634468062	5.48800847881062	5.41222127559555	5.56653621507938	5.2984942675697	5.21940127446916
+"LINC01003"	7.3829341742671	7.89401487130684	7.76973288707746	7.0926686650829	8.01525001602733	7.39570317854322	6.13678153465587	7.84065388318402	7.0426739227759	8.03463190479079	8.39386103914298	7.81592079501126	6.56541669193951	7.17968776731674	7.15319175363745	7.73858329696507	7.20628602148911	8.38823323860848	6.98713050202263	7.31117137502061	7.03099954806049
+"LINC01004"	6.15956690090211	6.0785094666316	6.59703174675791	6.05880519827914	5.8076219621063	5.98053626356665	5.82682792095089	6.05389770450145	5.71947027470906	5.41136251402836	6.27470971402052	5.70840496981445	6.30997109772858	5.83851067699897	6.43346615178312	5.98898360751449	5.95116433996625	6.27265499239775	6.11999702705796	5.58416621032002	5.75868576991583
+"LINC01007"	5.72717907604281	6.84685554673673	7.02035801117812	6.65389282357997	7.36361698375068	6.05105091554714	6.571165631416	6.37017332102002	6.73693770826394	6.78206430457926	5.9301346865139	6.77548142220751	6.48118822035716	6.5079510663388	6.62974947896254	6.21251964798831	6.76948448063923	6.44637694452783	6.88369150361511	7.85040137674516	6.88662960056513
+"LINC01010"	6.10075209866082	6.3279096823707	5.89849340851539	5.97551867620837	6.00732750476095	6.27735146744276	6.1533348523278	6.05387559661967	5.91923598278572	6.34943081427485	6.34435311793546	6.27606493449651	6.09976479919693	6.45900647614347	5.86696711142927	6.48423016484415	6.02263260843666	6.56283336982135	6.13959672563461	5.78828334406416	6.22436321691284
+"LINC01013"	3.70334865963565	3.75286772883272	3.86988947219914	3.84326445503691	3.7352135339654	3.93069436981133	3.83617925072977	3.80649368248435	4.11021253177544	3.84232318792524	3.80178679885111	3.61450640251358	4.02714387774633	3.9795844058214	4.3268907233314	3.68940882322118	3.78041169812686	3.44927333376118	3.83353097716374	3.37144373898686	3.58930387886874
+"LINC01016"	7.01327784514593	7.29353506230469	6.61359232705538	7.34271150524609	7.20220282554567	7.1021519557821	7.35099596107545	7.08201642101069	7.30524287655619	7.17024891553215	7.04972134331042	7.21417365907677	7.39343796040101	7.38040951977784	7.19739384780881	7.29216201588066	7.28514896246255	7.08729022640601	7.3457786439136	6.95720489395007	7.40942218710474
+"LINC01018"	6.73511285173073	6.42172241108291	6.31929539685215	6.43314676104502	7.02999251432425	6.21246649233061	6.37030428086349	6.63013949616293	6.21614159447943	7.01276271106461	6.29673799535687	6.60568015020457	6.58262580982297	6.56305911967275	6.7532948892748	6.33826267816137	7.17294681452685	6.54152818405196	6.85199526719889	6.86939540251396	7.30553311720421
+"LINC01019"	4.75947889373911	4.78552253297796	4.69715266248582	4.73300120670123	4.7730287358595	4.55425270445099	4.48446197749646	4.6253464463021	4.82708722256975	4.67178881870089	4.82414000714207	4.80240896572352	4.85509149183939	4.7102954618336	4.44089730482934	5.02554993696617	4.75377375266172	4.74509167735975	4.64326348548643	4.58210897453685	4.91912212229306
+"LINC01020"	3.15828382342225	3.15428965035471	3.17818554196695	3.15828382342225	3.11965065932492	3.49750466346421	3.23439843430792	2.8808653825879	2.98920501294193	3.2340820740923	3.19974090533624	3.26968787805255	3.09782467255632	3.2371083959586	2.9928748239652	3.04535541397517	3.15828382342225	3.25617112315517	2.97237455432148	3.15828382342225	3.19096822905699
+"LINC01023"	6.32243720546264	6.14019872511372	6.36905202393751	6.12782643062753	5.98696503264657	7.0539265314364	7.27735189660633	6.27228271481868	6.43495389161162	6.46886950588064	6.04308970306299	6.1967842890243	6.47041984704298	6.7222064686206	6.35233461359146	5.92596926573118	6.19023999505779	5.93492751854366	6.45288885642775	6.27228271481868	5.90372249962421
+"LINC01029"	4.44239709752798	4.69356511732243	4.54751080496412	4.54751080496412	4.69188956290423	4.6869912454102	4.67636791955791	4.39281706628529	4.54751080496412	4.43128932008968	4.39304752046354	4.42709045301045	4.61232037330418	4.56141802474081	4.58138455537014	4.56343907567261	4.77124468005693	4.38868458282386	4.54554931518151	4.41536240261954	4.66275768119011
+"LINC01036"	3.02504847048375	2.92401888941424	2.82360872630846	2.81451257808945	3.179615649219	3.13786581576768	2.91928741107058	2.93085083770308	2.99379101019791	2.99962684956954	2.74586402298465	3.12774147526502	2.93216266933074	3.20728833145789	3.22395789270902	2.95327425884971	2.94044291559277	3.06781455433379	2.95699745092926	3.13645256648828	3.0483120495109
+"LINC01049"	4.91793932328235	5.05681860217443	4.86320640003237	5.05506696928791	4.91708165502444	5.04384294345482	5.2758723591065	5.06259368835559	4.84825063457618	4.88548364385296	4.91504122455382	4.88230297097151	5.13017759272419	5.12482278412891	5.17995704222862	5.07993651042929	5.0565703372965	5.00702831351271	5.09583217515619	4.87598852855677	5.14143247536641
+"LINC01056"	6.37710108809436	6.60923586358671	6.63238839942334	6.64482777653698	6.27976777735174	6.58532184984031	6.55395183390247	6.43573236934981	6.6249146179795	6.451574418359	6.36650402392409	6.66025520508618	6.75979982013556	6.69243631276367	6.61272595959571	6.55395183390247	6.61760108656451	6.17582862933531	6.50378898317746	6.4481892110548	6.76956930628673
+"LINC01069"	5.02014392121215	5.16359400639853	5.04580721270928	5.31471752658268	5.10162466344	5.27502014481586	5.24574318661759	4.95362561216739	5.26543111483487	5.19255206043999	4.91129298170881	5.10312418944388	5.16380013057095	5.24117593883266	5.23690864844293	4.89816305658903	5.25823558180118	4.96410048542723	5.12906069912838	4.91898980974859	5.15940610203643
+"LINC01082"	4.61936366142292	4.44798529596979	4.61552486600255	4.57225833085467	4.44171757540931	4.85593268291262	4.87598852855677	4.53703940209623	4.59170965402172	4.89649476515962	4.50497390297316	4.67448441764338	4.96253839706006	4.93461407489866	4.61552486600255	4.39645046738642	4.74312826882003	4.3750424811169	4.71686127203005	4.55019935184365	4.49008176145483
+"LINC01085"	3.15135023228322	3.07883835301033	3.10388967706884	3.18171147768467	3.0806671343575	3.30290828804295	3.35895148076901	3.08205729116247	3.11518988737409	3.20764882545481	2.98400369984491	3.07883835301033	3.33419767591567	3.18474260502902	3.0768461069553	3.11582908547756	3.03088728457287	3.06202186536682	3.13645256648828	3.39731700275996	3.1999146423063
+"LINC01087"	3.10008435115718	2.95194741471128	3.01682182055054	3.11630507981649	3.15767601941881	3.02841739552141	3.24218936195723	3.00650967182718	3.1408300738833	3.00808307272916	3.05048400179128	2.92885866114127	3.214393067404	3.08788443379742	3.06228848562185	3.09943728697917	2.92555105791387	3.00066783273741	3.0579037973092	3.0768461069553	3.07471097979719
+"LINC01088"	7.16185335343875	4.8848559555924	4.8144939063328	5.72252653763415	5.36883595846047	4.59563614156687	4.73880669470385	5.50250042854363	5.0355571922878	6.50998695136726	7.29244416749478	5.36883595846047	4.62844079477411	5.05948099252361	4.66909056291789	7.08152748760808	5.34868848446525	6.27295184482024	7.47070060194828	6.90381210851592	4.87092538394349
+"LINC01089"	7.43980038180376	7.81081309358104	7.67662899561587	7.79152656959353	7.51958272409808	8.5200626009534	8.1006544569344	7.75270031618104	7.72259852163827	7.29894883903568	7.53217812762794	7.47084805884637	7.55558418205174	7.99496515228833	7.84502811124429	7.66215511206313	7.8341467821998	7.89691061410269	7.75754957316347	7.53439680564294	7.21950067972227
+"LINC01091"	3.18532866316726	3.15700234102272	3.53932555628666	3.2371083959586	3.13489434008474	3.41222410027302	3.3297685269837	3.40744047527678	3.12199647998787	3.08324336154742	3.24276980958714	3.1622667268396	3.4796127019882	3.20491081500231	3.3277909091661	3.08300395693939	3.12947734001343	3.20491081500231	3.32058958751864	3.01118246609676	3.20646118003991
+"LINC01093"	3.0959515226303	3.25235345756137	3.22569488504146	3.29766077071878	3.25221537394472	3.26324933390853	3.12215468207851	3.39927094662623	3.58657035912302	3.34489971936075	3.23965483652162	3.35045666623644	3.20901276928803	3.33050045213961	3.33600823378324	3.43561657898329	3.3937467606612	3.13287604603684	3.32484852301692	3.35963758598132	3.313318281562
+"LINC01094"	8.90200908673371	6.76700425227989	6.72631518733455	7.16167837615801	6.04990365554064	5.5941733389914	6.40912837978722	7.51594369222833	6.63786321149544	7.25284487190167	9.05024764384592	7.56990205025351	6.06845364916868	6.55631051771151	7.05641440991763	6.44146539848577	6.6699226675571	6.48992989860018	7.89787143170198	6.94998551056101	6.6492245765998
+"LINC01095"	3.64973015205656	3.67394713942934	3.77007582145055	3.71272516933018	3.86697065446749	4.03589226161909	4.00928623586002	3.71842480384314	3.90298345238769	3.66380125798112	3.51768815721265	3.91747881625649	4.01054147702933	4.20769123641955	3.76458343956978	3.92114072148023	3.76025391870124	3.67589117397323	3.67100972096241	3.65547351641023	3.63734615191803
+"LINC01096"	3.56568992144398	4.01427305640163	3.41014472389504	3.88509171534632	3.99223463088191	4.02615994272701	4.09839640221704	3.88647169713245	3.47086116269561	3.84737736492491	3.68661609812621	3.74130697473966	3.81767969373883	3.9591421337727	3.9913838903977	3.97689063560747	3.98737833791832	3.7836285932945	3.94540971006629	3.81602214936049	3.84886850694295
+"LINC01097"	3.378298073546	3.52986776088597	3.52009440440045	3.80813309929541	3.39703875538485	3.72763491932919	3.45448466466018	3.44018789251791	3.52794444075191	3.42703061248045	3.57767203550187	3.64940708422944	3.6102423725155	3.54272932146025	3.67775130778612	3.41902600537825	3.46889808336832	3.48401303533419	3.65192170178915	3.52009440440045	3.50310234788329
+"LINC01098"	3.37469631858772	3.16837529828278	3.42994769957856	3.1410411427835	3.19449752949274	3.41222410027302	3.28843517787687	3.3204282904474	3.23521843978201	3.20722492333442	3.3052594928518	3.19449752949274	3.20722492333442	3.14478666572625	3.22912475422737	3.38189962740043	3.10179944902107	3.11548397637112	3.28165562445589	2.97187474569518	3.15132839120907
+"LINC01101"	5.04003097162902	5.2272095405193	5.12906069912838	5.39296406376889	5.08152184027094	5.13454835002247	5.15175578167626	5.47271879390731	5.37463388342848	5.22261826412695	4.94311974950512	5.31367058834185	5.37708835365654	5.63728952739126	5.28992058864886	5.32025671569131	5.25219091972277	4.8476002830046	5.13283508897721	5.181317101155	5.35518899654601
+"LINC01102"	6.16094780965964	7.11696722199208	6.93484411568901	6.26673226597493	7.19979540927151	6.28557212405061	5.91675006933013	6.25940889621339	6.7520886632343	6.4768160152625	6.88330296550072	6.52887539225768	6.37730942975437	6.41512260055882	6.19309437811208	7.62391723624091	6.8313064930807	7.29633985502801	6.04445767157359	6.69186951371089	6.86514611500985
+"LINC01103"	3.86109462194894	3.85251743122621	3.61118226858179	3.6306341577007	3.79340624972589	3.62272312060338	3.83248009327355	3.66432078233208	3.91318896102263	3.54781181873775	3.43075567338005	3.61450640251358	3.75712859894432	3.68219986384135	3.74637437101363	3.68183229483327	3.94112059584933	3.60919498047029	3.70800155906772	3.65313187411523	3.77384690557498
+"LINC01104"	4.05183525731919	4.13187967255707	4.00529901185297	4.55311343295628	4.40422664719564	4.34264236598476	4.70964182818653	4.1958032883926	4.27648017828101	3.91184555332756	3.86033313908896	3.9561231428126	4.43114943340465	4.47694995211779	4.15871293994809	4.25952942362643	4.64563261949561	3.92695305423751	4.33198850762995	4.14740677062434	4.12055521300752
+"LINC01107"	4.92018025383214	5.15079689347633	4.62733850081406	5.22209266910451	5.1437908491785	5.25613960207904	5.44931678707248	5.30414423973762	5.33614080766557	4.92018025383214	4.9477612798945	4.77476116041544	5.26198792429953	5.30837315104686	5.26046692827583	5.02159315378452	5.16208705242068	5.1023276161371	5.08204239952602	5.20460848675209	5.02353478448826
+"LINC01111"	4.516394223612	4.48738811464206	4.19065266389101	4.54587253330706	4.55786230512911	4.4169124173942	4.66603449864512	4.53205897265325	4.85290683185775	4.44511294600508	4.38195702000894	4.56468340904595	4.52905480592218	4.49372613503559	4.82401164954239	4.37253480609131	4.46798170948483	4.27870300633036	4.31253301332838	4.45503733336714	4.47811954584928
+"LINC01114"	6.91999892292201	6.50123642085155	6.80190290366883	6.06533096661028	6.25487753571101	5.4249881235467	6.32750118717628	6.66101691426689	6.2039840337308	5.55524875568909	6.54121674895871	6.07650775961619	5.50072001304363	5.98384219578437	5.50184802211006	6.31263264427877	6.31922592116234	6.36768392462204	6.31722392067112	6.73223414461723	5.74177213473236
+"LINC01116"	4.71786674784351	4.99479145221484	5.03814485877845	4.8210839471437	5.37499536681963	5.02911786542874	4.96734832427883	4.6810689093773	4.99558710095083	5.23776127564096	4.53368426515534	4.87598852855677	5.03657937428246	5.24401789638968	4.95771342590708	4.68253126410539	4.8018238726287	4.87768153027123	4.70512509672748	5.23116795044906	5.65777513619118
+"LINC01118"	5.60856618480053	5.7899061833471	5.77308813101916	5.4953187386452	5.7899061833471	6.28265375098516	6.10387696377982	5.80605951009043	5.9603748817894	5.77049430022981	5.48936873990982	5.7899061833471	6.0282023023453	6.26800533186093	5.66613278948618	5.46049976254501	5.7899061833471	5.71198495196383	5.90244340474538	5.78474874828755	5.71765022637685
+"LINC01119"	5.38637288340278	5.60666629498134	5.81660457313842	5.30784029011785	5.77257511535793	4.92522422625816	5.55890411844152	5.33853103959405	5.28517777682296	5.40680235325849	4.95442115751517	5.36561860048561	5.36561860048561	5.58260337121134	5.09795649289059	5.17156311955801	5.22609751653076	5.10742495974295	5.31777245042624	5.38723136989545	5.55466847937809
+"LINC01120"	4.61880991255254	5.0945725489461	5.0281548440838	5.24442251955679	4.93255815542289	4.88054221723268	5.08434163260989	5.14291101522294	5.26311087792032	5.06257783943008	5.08434163260989	4.966473872778	5.10398489590775	5.08434163260989	5.2352597841545	5.08019135023121	5.0966796247907	4.97620174907866	5.43745713677032	4.99174764808167	5.30498947350398
+"LINC01121"	5.74248346719574	5.90447330043799	5.94281157635077	5.83010579241141	5.8692499132607	5.92693552336207	6.17779143514649	5.92170311905152	5.80274981006699	5.94969385277756	5.90304973769929	6.00905158401064	5.91932208195318	5.97535845838892	5.91458615160613	5.90304973769929	5.8933277757852	5.77242684767329	6.05609516100013	5.79691503863392	5.94281157635077
+"LINC01122"	5.04110988294936	5.67526078830161	5.25493693887318	5.22209266910451	5.43179189542971	5.13910248318851	4.84925143288986	5.32354500591307	5.28889190934506	5.2108976162259	4.83851391392687	5.54523450201386	5.10047784725051	5.21805156024113	5.02738632566662	5.25273333592926	5.61108228444975	5.01743994511651	5.24314045143259	5.24787398979052	5.40097288797984
+"LINC01126"	4.68897733131156	4.70221166809977	4.50295281023727	5.02459998478085	4.84368100841525	4.78845724123411	5.14557340900071	4.84368100841525	4.89457118945698	4.77425674212156	4.80828837046268	4.66873900915594	5.05002430105955	5.49392771112475	5.31645825222676	4.83893380198545	5.01587394097384	4.69954360196873	5.20576206727009	4.70040364561931	4.61738986277418
+"LINC01127"	4.13977079928165	3.84725581133274	3.7434869195775	3.85991374373098	3.84746626312461	3.80123348396328	4.22464654526421	4.15497101470034	3.66800737976354	3.84232318792524	3.94339171754366	3.99436148013891	3.73999462896715	4.29507123152858	4.746819890131	3.92515898600721	4.05085425199147	3.78799101112766	3.92252500680286	3.88611781080074	3.83471807724216
+"LINC01128"	7.47962168561325	8.12882374592004	8.62638956202177	7.82083903468403	8.59869564267219	8.13834439689701	7.22483078644058	7.88401985051751	8.52504650418307	8.40598440236139	7.49654749979494	8.25382195017057	8.36386175439621	8.23460065509219	8.05108030963489	7.00028933550632	8.38462304273412	7.94780319639768	8.10447351286875	8.14582532401809	8.11060024220302
+"LINC01133"	3.58497919865179	3.75337122728013	3.70632310137397	3.9861868276928	3.70632310137397	3.99321485246642	3.96096702467152	3.6790877947363	3.70632310137397	3.84138417978104	3.57258156297574	3.6790877947363	3.66838617116164	3.90833872818259	3.90833872818259	3.68253895551081	3.85488799570195	3.58013562584741	3.74606731357087	3.81689891305632	3.75729294083552
+"LINC01134"	7.07671953758724	7.2766843689825	6.91363969008055	7.45979636394014	6.98160805438504	7.04920020205889	7.2529485128021	7.23673407307986	7.32860676651299	7.29515452660574	6.84905555254935	7.32112427462095	7.52607179057723	7.1931791347271	7.36396734142077	7.35639774961858	7.19600706329272	7.10427933332962	7.3522989536938	7.10237088719651	7.2210707769658
+"LINC01135"	4.59217272971137	4.40422664719564	4.40864835839262	4.64910915712719	4.31213305108108	4.97990275063058	5.02526162123877	4.53820598855528	4.61552486600255	4.5544107289089	4.82701222480813	4.56699647325054	4.81642037932953	4.61552486600255	4.54155046766269	4.97177123826686	4.88247752990113	4.68849620597007	4.70918213353496	4.61552486600255	4.61552486600255
+"LINC01138"	8.07373970268045	7.56826587776071	7.57553955614525	7.31501026308293	7.51799867622817	7.28348353142986	7.47736780481234	7.805060608698	7.43874310058434	7.2048863577543	7.48259250016261	7.4762881002265	6.90065318738582	7.69147264501634	7.36645066070885	7.4864624877123	7.37526750703892	7.30798935100916	7.47097681073709	7.49222697101369	7.19618839294924
+"LINC01139"	2.94115032540724	2.94558066338944	2.78006624815714	2.89041539353655	2.88345996132337	2.88874178610668	2.9011612177583	2.91617936828331	2.87927578121634	2.84068306530665	2.88345996132337	2.65447188133565	2.88345996132337	2.90260738400667	2.81385572627945	2.85124053788357	2.80446943679546	2.82285359515403	2.89407174039343	3.1754742565948	2.88345996132337
+"LINC01140"	5.40690702986529	5.35477517516725	5.24346803193729	5.44773702655116	5.55230821927532	5.56942618533192	5.56685416914737	5.68111509596658	5.53597529024025	5.8416654812754	5.31699117881372	5.44763209854168	5.6182367765088	5.820352011561	5.35089176417657	5.62665782763839	5.77436490730193	5.22037593806336	5.56008852537042	5.60244300386434	5.70881492160149
+"LINC01141"	5.03027823679172	5.22719169834974	5.12906069912838	5.40455562968506	5.2707053805312	5.05902422478392	5.19039326429708	5.08388542168074	5.04594014662338	4.94875470618085	4.98246733529272	5.20212042448911	5.25255474757163	5.3422756492432	5.31986697642048	5.47802905653796	5.14480702232866	5.05747619019038	4.97446023917402	4.95060667071465	5.25450451092867
+"LINC01142"	4.55068154391079	4.80793477563014	4.88675934816649	5.00239139407821	5.1875073431371	4.79301501980994	4.74656172135072	4.76017961721545	4.94372544199144	4.9356696908407	4.70352818326257	5.00659836592765	5.09349886222055	5.06237545726102	4.88675934816649	5.09671734490315	5.03561079847191	4.53023078040446	4.90435269860149	4.93424243922896	4.89368400819489
+"LINC01144"	6.69025627013885	6.82374342191453	6.62665588822974	6.90016858648713	6.68324760077683	6.69823472489118	6.6105879267926	6.67330074259067	6.61810204348394	6.68797947358649	6.70052456767945	6.74762421923942	6.67145539687305	6.96405837383612	6.63079310396757	6.78707556177697	6.73191281578977	6.71563745604977	6.70052456767945	6.44323321692279	6.96366955459946
+"LINC01148"	3.47115147475991	3.48068883623839	3.37547044483876	3.46174652659229	3.4128775089935	3.50146772884382	3.58193080743745	3.26568336170907	3.52794444075191	3.44927333376118	3.3441691426027	3.48112681194171	3.44272724155774	3.36241125212245	3.50734314109597	3.37811523210182	3.44927333376118	3.44927333376118	3.18160814788594	3.35801084176427	3.5308181141203
+"LINC01153"	3.41968830827479	3.51102326737357	3.41968830827479	3.30382457820635	3.48802631163358	3.5355457458436	3.59509335216766	3.2155758965756	3.51447718917121	3.41968830827479	3.42598080769835	3.61857615367135	3.3680703834517	3.40972029354181	3.37790013637016	3.19112638930994	3.36177386466716	3.41968830827479	3.56312145733807	3.30627270553787	3.41968830827479
+"LINC01159"	6.49323843382001	6.38667781336304	6.58299746786514	6.63636807590223	6.41579905630721	6.27303500366104	7.43175533211851	6.62611076834227	6.67283060048196	6.2993684726974	6.556924368668	6.12438379927524	6.65557567367966	6.68658620267005	6.70107955840516	6.80800192216258	6.08027158668662	6.61110418753021	7.27084560961389	6.27491531476537	6.59361593165903
+"LINC01165"	4.98189383059877	5.28907266205072	5.02295646102228	5.36972875938674	5.02724438788711	5.25686245006796	5.47542763050103	5.12576401358067	5.14837732734701	5.20776923645089	4.97616064743756	5.15058164026976	5.51188065077028	5.79976601284619	5.12746650795198	5.1504274899153	5.28083926029797	5.23850226785911	5.10406603260986	4.95743765269444	5.32359301470985
+"LINC01169"	3.60379770904027	3.80386516038165	3.84454693802469	3.72089284628816	3.67274796322423	3.71732318614908	4.16804491171184	3.84700225107623	3.7686236235222	3.91765114739006	3.62589837570552	3.74801654496209	3.75756741636962	4.02660449734725	3.87486880065498	3.82888611057904	3.76145915426798	3.61258896079335	3.84690403269644	3.72421426249425	3.95275602891431
+"LINC01180"	4.53950263451484	4.7546232306371	4.53950263451484	4.43646613183227	4.49223114300382	4.50062347698028	4.64986186784496	4.55128206738627	4.61819262788061	4.46823667764927	4.49394022570763	4.36180998437082	4.71827124848719	4.73397409989627	4.53950263451484	4.60534283904012	4.44627583832948	4.28245286690204	4.51420924374359	4.43494446467104	4.52887526149623
+"LINC01186"	4.62823246892622	4.76625196142959	4.44089750488867	4.51346208056137	4.63582302007566	5.12576172835163	4.87598852855677	4.67765093256482	4.63582302007566	4.63582302007566	4.67182517268179	4.6981582182341	4.4637607849827	4.45838871244411	4.74840397331779	4.63582302007566	4.5574866081519	3.85988580424789	4.53582406121436	4.62972933452102	4.75799219336967
+"LINC01187"	4.4971494825333	4.57392324641204	4.561623763127	4.88039203427412	4.80589088998748	4.78517953161338	4.87501395355798	4.32130390882956	4.75952228882514	4.85142810088811	4.35322868078432	4.64423178974708	4.80583880820293	4.68644695680894	4.79922395294052	4.48152975991018	4.64423178974708	4.2638363819877	4.9358805410204	4.65461299767925	4.71728985986572
+"LINC01191"	4.8408147618197	5.15580267674914	5.31241646272228	5.48290165941976	5.08552767182959	5.51900030941114	5.93942895344042	5.23389961059546	5.54171452995782	5.26265897708434	4.91883793311653	5.26265897708434	5.30618203813074	5.7617511100503	5.16165527570379	4.97117181379106	5.15519100660128	4.92696063224489	5.26265897708434	5.32363947411979	5.31794920235042
+"LINC01192"	4.42953181693631	4.36204967971215	4.20894618356787	4.5738650137919	4.21612315365676	4.12362702274435	4.30171263086556	4.23113121508668	4.2947976575029	4.54374003712848	4.27606704410232	4.62776133783697	4.39466041514251	4.48668966130593	4.64188998648243	4.84477663261254	4.42062757861583	4.42062757861583	4.59999199510866	4.32383415898061	4.6792259601956
+"LINC01204"	4.51547358807657	4.34057268666813	4.20708741691588	4.54507196830121	4.89145354546265	4.63212348392342	4.61750753152875	4.26555702804645	4.39992510824336	4.30470313368845	4.2942960790159	4.20114442706406	4.56778094954009	4.36414959901245	4.34634699370544	4.45098570805465	4.50644571742818	3.94604228470787	4.30513622734693	4.27254069676925	4.38156732527601
+"LINC01206"	4.94326586510067	5.02578335651621	5.14292301731264	5.25933259883504	5.14661151731612	5.2639050618696	5.34810385551279	5.08515658750828	4.85350493704059	4.97853448176869	4.79937992454133	4.95054102837915	5.32569769953732	5.35670685521352	4.9379455993073	4.87797054557267	5.04848381150835	5.01859211225969	4.99532194402693	5.04848381150835	5.09352209842013
+"LINC01208"	6.53756659263362	6.67676143677612	6.67908059067493	7.00644023425198	6.9594828797419	7.04501586632463	6.46966501106634	6.56686764868095	6.62079883475234	6.71273211430873	6.22436321691284	6.75425577432765	6.7354324559537	7.02403117858735	6.78268390658349	6.78032239402666	6.71499141110504	6.52598047945233	6.47472870373209	6.70769485398067	6.66254965208781
+"LINC01209"	3.70414001270061	3.76649585251223	4.06162604007249	3.76145915426798	3.77248413366865	3.88457015168215	3.93111740888488	4.02457133805381	3.95415623082349	3.84180162426107	3.81352286785466	4.15382386832876	4.0467502153517	3.87097289253501	3.88457015168215	3.88457015168215	3.97419961523884	3.58203123464707	4.14011483582277	3.80485328400986	3.98444173524339
+"LINC01210"	8.34762727092175	8.72284595624546	8.38747260874056	8.97845557946637	8.59732803493727	8.41652300274139	8.66241889274326	8.62081993395566	8.76615474917207	8.83290936514749	8.57897109525053	8.81628777999225	9.01795325141603	8.70575090175996	8.78105937933685	8.80857279388209	8.94866320048476	8.11793119798468	8.81822127896143	8.57799758042522	8.96889429291982
+"LINC01213"	3.72494040062457	3.60437809198444	3.78860342729061	3.57455512859829	3.9464359721186	3.75970300703096	3.49153589424839	3.83694298908233	3.66036550197923	3.80005852962073	3.80005852962073	3.71420318028161	3.83984144900838	3.96438662022801	3.89664346788929	4.01227617664388	3.85717593184725	3.72688709228982	3.83286133630748	3.82537773538519	3.92738165856938
+"LINC01215"	3.0910948375541	3.0546820219607	2.94421301598745	3.08837895522841	3.12027990276857	3.37078948290349	2.94003653217053	2.91885960629768	3.02520319275514	2.90952141559113	2.92931328414006	2.94473194205905	3.0579037973092	2.87450106180182	2.76846321795878	3.0161399737066	2.95612567478705	2.91928741107058	2.80439258028472	2.98400369984491	3.0289662392491
+"LINC01220"	4.08885042020157	4.05402416871424	3.9991933084982	4.03827039314517	3.81672618739628	4.34926430943794	4.45963041761554	4.01156935499437	3.9769328501407	4.24375201117856	4.33469446241407	3.97102390051981	3.95728902266393	4.20033635848747	4.4097951683809	4.06929723699526	4.24869839422779	3.9124350896137	4.19383745133373	4.12590318330011	4.05450832763327
+"LINC01222"	4.96986512082306	5.32835631178886	5.14879518713853	5.36245217135415	5.25901715142185	5.11227992841204	5.12715135230916	5.2431044715939	5.1884172558852	5.1040285903528	5.00817289568639	5.30306727674817	5.27375035322803	5.42433613186121	5.32835631178886	5.28676428787154	5.29635844043751	5.07531617370925	5.23325671786829	5.22716303231365	5.31247249128717
+"LINC01224"	5.53362595554615	5.38571046063361	5.19905140799002	5.34959546123345	5.35041951429473	5.18786211941961	5.46819819358965	5.47389764126414	5.88548542092889	5.70373820943282	5.47620734446017	5.30645074825523	5.50076182085259	5.549930870791	5.52986222313411	5.55220631350095	5.65888014002701	5.44544929990012	5.50443276920481	5.5829262098017	5.54243656997741
+"LINC01226"	5.29962894984538	5.76672031804414	5.55890411844152	5.95520891806855	5.69388777627671	5.84429002960151	5.75947089257945	5.79614229348889	5.82278943524624	5.76125936971348	5.62388667350417	5.824533060151	5.73204661813955	5.89828076278087	5.77070101111971	5.6065861429102	5.75947089257945	5.4734411329909	5.74606566135664	5.4744292093505	5.70064410620443
+"LINC01227"	4.35080705587814	4.47194046240896	4.5176575347286	4.35232113881799	4.21971147402758	4.41803828790314	4.38974351756128	4.31441923941663	4.35232113881799	4.20970214164428	4.11162115021906	4.2898835627296	4.306116456134	4.34921545494278	4.53952807627847	4.1139311654326	4.50040661607272	4.39179026669907	4.66323165413886	4.47215122184132	4.31827055155061
+"LINC01231"	6.0630818854272	6.20074945031245	6.07908828381113	6.38809991545563	6.31216535016732	6.13428560418294	6.31216535016732	6.37964142341877	6.36521406850224	6.31216535016732	6.05264453895901	6.19288769442679	6.3850449786764	6.1904015424725	6.38750883584766	6.37703518591464	6.49541210750852	5.94785665988246	6.22441330856427	6.34825361536236	6.34026864204751
+"LINC01233"	3.35982733247846	3.45079019354976	3.49343905547759	3.45079019354976	3.61114989829277	3.49033736874151	3.92073322697571	3.40221409915405	3.62471779242545	3.40776751934017	3.35982733247846	3.63743296026168	3.37529893542131	3.50809054900362	3.5772668476532	3.37551793415478	3.66150147916719	3.17689865705046	3.47286835230725	3.33681361012726	3.44097915754664
+"LINC01234"	3.80619593131269	3.94361523272166	4.12942141159127	3.82767361530062	4.09416393825168	4.01817411739847	4.49852897839739	3.981753327862	4.43692607389979	4.18976608588776	3.98762508073682	3.79436052697458	4.62403072783591	4.37508942398702	4.03794479157796	3.6586408707054	3.97994950928035	3.85279618296719	4.01921134714004	3.93205189540323	3.98762508073682
+"LINC01238"	4.09525766561978	4.08193599403084	4.28370476771521	4.39996598861039	4.79958313246533	4.89273547038682	4.37266353175451	4.54751080496412	4.75281970005933	4.61211078559024	4.19404424254931	5.22025635773318	4.30799912245686	4.69516998558164	4.65347713624624	4.63117294865873	4.58788348436252	4.82368390656079	5.10618142612635	5.2187771500697	4.51662340322651
+"LINC01241"	4.31618706325622	4.51063961380131	4.20557249785025	4.60900668320454	4.56867852408667	4.61085515547181	4.92514826208892	4.2670467092132	4.80034306955918	4.46622487049605	4.46057544807629	4.41113360013555	4.5597735452924	4.77968072098804	4.41016449365541	4.46622487049605	4.46622487049605	4.17082076100514	4.41506397579387	4.39891185636155	4.38586510311997
+"LINC01242"	3.24270526343024	3.24971588936272	3.50288211298301	3.34491982968011	3.33889371776966	3.3648347872121	3.39716243458851	3.2540726583301	3.69476949934991	3.36498579094482	3.1759556349287	3.20707180120001	3.24179350804422	3.06205086705406	3.41379224724328	3.27221322534615	3.27980656717041	3.21275044332075	3.42402186702246	3.38238731642354	3.26193040556646
+"LINC01243"	3.78414677298796	3.84574763243733	3.84435389995395	4.02879632054507	3.97196704254093	4.00104412481091	3.96978691414272	3.86702598919476	3.9660072090085	3.80387694143161	3.81147294230133	3.83554650654654	4.07293275930529	3.9660072090085	4.07442962490009	4.0586256128106	3.78632304788932	3.8630791764088	3.99507125775223	3.86362812729695	4.36690295745501
+"LINC01252"	5.21222442300256	5.97368402860331	5.97963515588422	5.5761350036572	6.22902875895416	5.59694805861327	5.26953235472509	5.63050270954871	5.65261689147945	6.03684745628561	5.52519281593313	6.33571552327933	5.93917500552423	5.12901558820132	5.91445080579883	5.67468273901949	5.8518659186811	5.68906270846842	5.76810748063728	5.79229359184301	6.02827941356518
+"LINC01254"	3.42110243142609	3.23006491861085	3.27716488184684	3.41007131741331	3.03845260119883	3.0713991962693	3.09241714278096	3.32327326824601	3.37339763268668	3.33340109061384	3.36820406719186	3.34100231602515	3.45543993057874	3.30599740114918	3.45603643020735	3.19716753906788	3.47007006116229	3.17471034050412	3.48731483660954	3.1738678777357	3.47229491517673
+"LINC01255"	3.60737319861866	3.64577958375521	3.7975267498727	3.71217085647191	3.65443301466008	3.51787932979712	3.93639711065638	3.80096838369972	3.7576446771418	3.74302677978228	3.68441672956013	3.90398017169933	3.72865574164063	3.72306976039335	3.52478219901134	3.84789825015207	3.53429587974969	3.61050559819626	3.68102971060272	3.43893038342318	3.68467236309065
+"LINC01257"	3.48161418467661	3.42723254042747	3.74750515925016	3.54564682451351	3.41978552340161	4.15208892540975	4.02396691836525	3.49092275194623	3.60684050492121	3.74750515925016	3.54259198374674	3.5948999295345	3.54587313456054	3.76307791430381	3.42013897666561	3.32978273521077	3.69156544426036	3.43696041672813	3.62741330140196	3.89789756117308	3.3934477575144
+"LINC01267"	4.66287192223549	4.67427127562482	4.537699768961	4.60957878354687	4.57136373470572	4.51012680606621	4.6106482971917	4.65937690820647	4.58580776962143	4.54563712751125	4.4376543144264	4.57252602044833	4.67659834174972	4.50310467818421	4.72083029964895	4.62220810173342	4.64057289363534	4.38172533641923	4.70668838844255	4.50029428106638	4.57252602044833
+"LINC01270"	4.88078154516735	4.6419203756261	4.84693122606113	4.83300791465108	4.891431597517	4.78191644666955	4.97991416462707	4.89174172327801	5.18733655912474	4.94902200014819	4.863051897752	4.99038598048625	4.91002878408357	4.9015610468844	4.84532670978089	4.88457362079172	4.80337670186572	4.64380913963695	4.7065626276572	4.9957347129764	4.74943507102601
+"LINC01271"	5.29657966446596	5.49970409324719	5.53294215327753	5.85173327012608	5.32670873387422	5.23116570341228	5.62951417623585	5.47159539771355	5.50076182085259	5.49412916675224	5.50617654249129	5.48122826898009	5.65981304948252	5.58125541818055	5.90396249997318	5.49773787098769	5.56861815931097	5.26590355278674	5.58970798913633	5.26246817943267	5.50076182085259
+"LINC01278"	8.20044828534012	7.63884444357415	7.74161953636423	7.60941172030742	7.45211520041914	7.51593933901755	8.19531912787779	7.93783914066963	7.79933761268523	7.2858452594563	7.49044074266464	7.51583730726518	7.33690201278378	7.52244615247995	7.7898063827149	7.24196458170682	7.55013994223828	7.58134359900877	7.81930579919061	7.78526198709909	7.45752880348457
+"LINC01281"	5.59463382168611	5.74003890323782	5.52138940307325	5.88834508343457	6.01213162059981	5.98548814191249	5.89594240942527	5.54388508359983	5.94572479812513	5.77022432898629	5.17756835910544	5.9743436879444	5.75740785451105	5.9232024379091	5.81208333140461	5.45927457240999	5.77022432898629	5.71627128003025	5.69806891667376	5.70249183466306	5.91154788913418
+"LINC01282"	4.53062691155429	4.92792889222185	4.48557371866076	4.39931310298286	4.891431597517	5.09282313919417	4.96994332233353	4.63470052261615	4.49525198034127	4.57389384859351	4.38175551604905	4.5240313234851	4.82698784921981	4.72096721754633	4.75611176311635	4.80084013461882	4.70710663614919	4.65238838590816	4.67741695761854	4.70710663614919	4.84031486826653
+"LINC01289"	3.85839073302546	3.77247568657301	3.76360185212904	4.01427305640163	3.97114236705777	4.15208892540975	4.18607641809856	4.01427305640163	4.10196599082109	4.09058910870553	3.80872830820373	4.08896641102817	3.97030588872725	4.0270866080729	4.23601364996315	4.12794234394971	4.1494406251329	3.97114236705777	4.02354492035342	4.00469379059507	4.07720422253141
+"LINC01293"	3.86440280780177	3.71557972054255	3.84871706313367	4.02520515069391	4.12283302854962	4.19062461744555	3.91977967638055	3.9306944863061	3.92671314848716	3.83439535532124	3.84407971820621	3.90490385165976	3.84232318792524	4.07490003900647	3.99827086765242	3.88581825827614	4.0579092253857	3.91977967638055	3.86796764655693	4.04435421307186	3.76234733380182
+"LINC01301"	3.14345424860578	2.9182564884733	2.98173748181037	3.12027634381266	3.14780800311522	3.09782467255632	3.06660160840615	3.31156786191577	3.28243208992533	3.19413327724406	3.03897390686966	3.15736753526309	3.21155285312441	3.10271875687885	3.42785754118807	3.16890253742977	2.99514895946212	2.94240837521557	3.25358054188689	3.10445188916792	2.91397929714566
+"LINC01304"	4.82839165992013	4.97720968063782	4.82797497554128	5.16022081724685	5.06820626824252	5.2569147031266	5.32274404663052	4.87857586680256	5.10757406944301	4.97539999203644	5.14318141659503	5.0191270234117	5.13108843563573	5.26381206653146	5.19593278529511	5.00231978922397	5.00473085993471	4.74112061486884	5.13515838097277	4.89974178479459	4.98580741208854
+"LINC01305"	3.60683511117734	3.82460514822764	3.87927326562098	3.4955643232013	3.64831448226425	3.47298025610708	3.51755575331391	3.54158986114458	3.47640027582261	3.68880894951182	3.36361527196438	3.60683511117734	3.54928485939119	3.63540821593279	3.71684664838851	3.51890141191836	3.67303296623735	3.53462250941751	3.66708916275057	3.76248351064923	3.69595738391408
+"LINC01310"	5.81286233497014	5.77732743919351	5.69108971465	5.93549093877126	5.75999274188423	5.74505580524625	5.91169548030829	5.77087668458663	6.00819259069672	5.8434790531627	5.7654787084258	5.93775691429451	5.86936509056575	5.68214857110032	5.92143961806279	5.96760923591575	5.98915144030919	5.56279543185169	5.83127893085894	5.64727733934771	5.92357627750188
+"LINC01315"	7.32113086064152	7.25060040253305	7.4658768119866	7.3658212753773	7.21097063337372	8.04485206741959	7.54595975348278	7.36491197273212	7.40350318198223	7.38232082942113	7.29073351815178	7.38828902768039	7.31608101566612	7.55755025821594	7.67658022246072	7.61101553118723	7.30896473361825	7.61052499161299	7.40684032989566	7.05759275974295	7.44131822406826
+"LINC01333"	3.68259597361766	3.82428165452225	3.75714810291262	3.88161263789932	3.85437551959894	3.47298025610708	4.01547852423025	3.66758414410378	3.73313318468721	3.65439216492944	3.7232932844266	3.62160173800501	3.79337131131599	4.08906959953005	3.81686352355156	3.75714810291262	3.76913417987222	3.61690227182675	3.8274449126195	3.39796884828796	3.79733872101943
+"LINC01339"	5.71988486844694	5.92488015109275	5.91223930448802	5.94570517050411	5.94570517050411	6.02656920416137	6.5948413731299	5.8704121990033	5.87458947228734	5.91495235817505	5.81014439194165	5.89187323624978	6.20238968546813	6.42248751149714	6.14736203598666	5.83347147647142	5.83285195155994	5.57647045146289	6.27921888594703	5.86802869984248	6.0231872084236
+"LINC01341"	6.48580892430351	6.36425865919587	6.56632847837282	6.30617302714217	5.98523338869652	6.25885901300784	6.24998769149629	6.17338950592378	6.43799158520466	6.05962834716509	6.15576160218774	5.7637414832805	6.26181985427016	6.53261478386281	6.46654086522946	6.01371571745283	5.94875993304468	6.19641786720475	6.4951537637692	6.05942043910877	6.23922214081504
+"LINC01342"	4.77134854754339	4.88548364385296	4.71928183472796	5.08701354756528	4.77134854754339	5.02911786542874	4.87613612731403	4.81432452558113	4.69533468451391	5.04599580382372	4.89631475132096	4.90050137792391	4.88548364385296	4.86469971325119	4.97138885030616	5.05166091628665	4.88548364385296	4.83384281970478	4.76488645482524	4.54032257524791	5.01592100534725
+"LINC01343"	5.12738169340387	5.30257552919783	5.08772146007006	5.22209266910451	5.07667981628883	5.18102480690286	5.27860835313013	5.13649832244981	5.23752903957901	5.3167805375547	5.16918829083116	5.22051770196785	5.16334455601865	5.27192116127298	5.0856372731059	5.2351873163502	5.33641919652318	5.07011635355753	5.21325449750334	5.21258960289509	5.4737136950259
+"LINC01345"	3.66328906496979	3.59917458686758	3.61631362872792	3.68868529706035	3.8107844183831	3.60782176376834	3.86400087913413	3.60826744370771	3.70379010882777	3.60645954951396	3.63188117042817	3.72421426249425	3.75107721412259	3.84036257949935	3.67052748716132	3.79665151473678	3.872378508745	3.5826234415867	3.68868529706035	3.65053080132986	3.75726650099925
+"LINC01346"	4.6038893611289	4.76691320773781	4.92270228366095	4.76451532580436	4.53365680421269	4.65686263190988	4.71074134365605	4.72083029964895	4.81165598159525	5.0161244558717	4.5450345629659	4.43474375332235	4.85011095311783	4.792041545333	4.75086071790816	4.30452009932753	4.69719283351939	4.65780353456335	4.80419531992814	4.82008199863404	4.95037822831503
+"LINC01350"	4.38374327760243	4.49897300528984	4.78615581380785	4.40751996906581	4.66334651903616	5.21852300896543	5.17558588432531	4.79814767992321	4.72083029964895	4.51915692549048	4.66575655837511	4.748536467806	4.78017565029765	5.01983449164256	4.80482387193667	4.75799280259008	4.68019852876631	4.38868458282386	4.86926751495797	4.72083029964895	4.34064277310952
+"LINC01352"	4.16213711111877	3.90930095440561	4.11874796378093	4.04745535816602	4.072822331963	4.31780207389444	4.28626440568268	4.08065502597627	4.24095565846315	4.18766918187299	3.89860263195689	4.11026155896571	4.11026155896571	4.25572553519147	3.89561410292362	4.0279678512771	4.1338155390393	3.98733402059896	4.04600046773958	4.23875968217875	3.93668224410544
+"LINC01354"	5.33386581199378	4.30637015977275	5.15598346766428	4.92906545240699	4.59760012932617	4.45880011314452	4.89713911942315	5.87157506486777	4.73880839513792	4.95152077183859	6.25156994708674	5.21779155183488	5.59972537948265	5.10821501610294	4.90129972995607	5.00577882229623	4.74845086867429	5.33600085242189	6.06150294535155	5.15793666971972	4.55283232485655
+"LINC01356"	5.79294661737561	5.89222407952221	5.48433550317343	6.17662493807495	5.7457943849501	5.8786394785017	5.80136050872944	5.90021745515993	5.8668976310647	5.79030283390015	6.08795601250902	5.8879588219335	5.98006212112164	5.61863759202393	6.14767352029374	5.78493440248871	5.98195862516118	5.50489750027252	5.94570517050411	5.77342852024956	5.8668976310647
+"LINC01359"	6.02473144268613	6.07126143177496	5.1813478814346	5.59013643540441	5.45429359640451	5.17027912631846	5.38330289153863	5.51002163762123	5.64750892075491	6.239444154683	5.85193255335744	5.68875748502191	5.63241543915338	5.66469386189116	5.59297331951204	6.0528612583233	5.95897888462817	4.9612336730562	5.65575598433099	5.78783793244116	5.81927863661684
+"LINC01360"	4.19509967475589	4.23066550794256	4.55532819030817	4.49677156148606	4.01025476081049	4.43006368414172	4.27870300633036	4.06772594644071	4.27870300633036	4.26255322959781	4.3161620078779	4.27870300633036	4.58273142352716	4.40827564418163	4.55845182427709	4.34010576764018	4.27870300633036	4.17131552889273	4.10345706201234	4.16849294187913	4.27870300633036
+"LINC01361"	3.39116491976844	3.27355306362401	3.59070158149698	3.42760273434373	3.86057581498006	3.30050546852596	3.33495884568815	3.58509697100486	3.50079086362895	3.37796195698126	3.17934726372021	3.48397612932612	3.42598080769835	3.44824472801971	3.32979724850395	3.15828382342225	3.56731070908619	3.31909309687269	3.64913031665408	3.54011827463155	3.39906374885823
+"LINC01362"	3.50620150770385	3.79784571868537	3.49175301701418	3.3441691426027	3.40834415482542	3.62160727492543	3.5171030008822	3.48837865648297	3.74831620084095	3.39636496864973	3.40212995726615	3.4623935178697	3.54571910761043	3.67001268989867	3.45500078903465	3.43561657898329	3.58743265417762	3.4642060381153	3.46700838214418	3.48837865648297	3.33618773603622
+"LINC01364"	3.61839697968606	3.90712056779144	3.91111384447276	3.92817174758153	3.85985390366332	4.41000393543776	3.92817174758153	3.86157789259256	3.93309340623349	4.05625452877766	3.68880760799558	3.92817174758153	4.21842076154781	4.02338341932654	4.18205986644826	3.93011035898641	3.87773057863366	3.74388134926942	3.99808934945289	3.85820018213743	3.91738296514472
+"LINC01365"	5.20150856843706	5.66363249541793	5.62164146477901	5.57573589725062	5.45279184950984	5.26849961362238	5.51458502454064	5.39150324082131	5.75387695098297	5.55890411844152	5.56401361759504	5.53131691764861	5.53319383312358	5.54619506305011	5.64508586291976	5.55953285342732	5.69611087417929	5.13286832481591	5.56876082013031	5.37438968998291	5.43604477956549
+"LINC01366"	4.70669592494363	4.97078882060693	4.70243446802268	5.16323838168153	4.81008284001219	4.93175055084146	4.69986662079466	4.7779225465029	4.71972871176399	4.95932349791953	4.54161741053376	4.98477785569035	5.08958065788399	4.91444184861007	5.150103129034	4.81008284001219	5.00620328569584	4.52445408019255	4.968037114256	4.6918452627439	5.00078355101972
+"LINC01393"	3.40215731762028	3.3233096934744	3.45013573989768	3.15656582138713	3.25527549605363	3.37399203431661	3.5245813404726	3.30413981714948	3.64244440333094	3.17431928442203	3.21577886672833	3.28156418169912	3.25293968104931	3.36577603484845	3.04819525690118	3.43947439953432	3.47298025610708	3.44755533172606	3.42307127914743	3.37728568934554	3.26267207146602
+"LINC01395"	3.79565781323525	3.7398541518877	3.91161097327862	3.77671847773334	3.829915482044	3.63047622051658	3.75714810291262	3.7487813111941	3.74704817890503	3.90125174200116	3.63047622051658	3.78989118314414	3.5360629236909	3.93561234905907	3.69465513845056	3.73860096196246	3.81264244034418	3.68311872454372	3.51835792190037	3.72117552898148	3.93249380370309
+"LINC01398"	4.98347500259315	5.04344637445863	4.96645892295518	5.31210940300008	5.0384287734246	5.01706609761913	5.35419389107804	5.04028627250063	5.27028318490576	5.044068309801	4.95940143834793	4.94742361195915	5.31491535605439	5.43069489684552	5.09094481184215	5.13769732798852	5.12301949831972	4.89192535753886	4.8689882783255	5.20767204950545	5.09094481184215
+"LINC01399"	8.03260943971121	8.25394409285993	8.49289772319955	8.32487638469727	8.66719272632284	8.20797380870209	8.23251780822607	8.43366063528134	8.54886318261835	8.64237510211179	8.18065001489249	8.46315241887243	8.43366063528134	8.01623634698629	8.78106746706198	8.25567151415374	8.37631188684534	8.47220620981481	8.59293192472619	8.53229829983824	8.55930191401488
+"LINC01405"	3.40622330732225	3.30633407705258	3.64396248636025	3.40622330732225	3.22955919576253	3.40223923327329	3.59563893870585	3.31755394578426	3.46711769581869	3.64801765402065	3.38613004288932	3.46205303853504	3.43019253096698	3.28791904555608	3.48087440324402	3.15828382342225	3.14034929831027	3.43532370960377	3.76168794699867	3.32433681619259	3.41863928889709
+"LINC01409"	5.57848074925425	6.05100387416681	6.42451107354193	6.27910486913454	6.31112194316226	5.84632124393599	5.40652247059684	5.7662511083396	6.3013744121795	5.91287432516166	5.51101251279252	6.22068422168819	5.93270551800441	6.15914375769804	6.20387451626019	5.61370481339577	6.32111174594571	6.18342088032634	6.07455433890031	5.98791822084829	5.88436304620053
+"LINC01410"	4.89995228499321	4.60808406704067	4.61514504061287	4.58488019228812	4.42307544899782	4.45634253523027	4.54751080496412	4.52954476397886	4.4324265823241	4.57018250120868	4.57018250120868	4.58612469286823	4.43253859783745	4.35686461034568	4.75124032391149	4.63066879664412	4.51813600719364	4.41938651449584	4.6489186557783	4.82903198878339	4.67453846613767
+"LINC01416"	4.35691929421818	4.41795308891685	4.82928474069201	4.76925129576333	4.64257718809396	4.61579949681416	5.12737869467498	4.65435761823241	4.41176520437769	4.43421242638938	4.33534941352385	4.28997212376058	4.85568810863598	4.95640122864269	4.66381931787839	4.37717923306427	4.66381931787839	4.51301843561752	4.50336821305964	4.5769011297771	4.63876181952566
+"LINC01419"	2.80727337020919	3.0077027433254	2.85564011853502	2.89778107249724	2.96402304108633	2.94759049204734	2.94213622895704	2.99245884840149	3.07190924227875	2.7143876944505	2.84254317508072	2.90708702920007	3.0172604638945	3.15057134416496	2.98244324680226	2.94213622895704	2.78278782621759	2.76846321795878	2.94000313854625	3.12554537029831	2.94213622895704
+"LINC01424"	3.47341622878872	3.47085273212001	3.41968830827479	3.50310234788329	3.617478314283	3.49820384951557	3.61345760125592	3.18612287831128	3.36321019208861	3.46639946389528	3.4963750681684	3.47115147475991	3.25024581557366	4.14689213144341	3.24365205059766	3.62568177703656	3.59222776405588	3.43532430824265	3.29988367840369	3.56793994012604	3.457855447001
+"LINC01425"	6.0372548155584	5.94570517050411	5.94570517050411	5.95291819172104	5.97572742476086	5.79366150781365	6.21463439871116	5.89667639532941	6.14117216891384	6.01551035221844	5.85144978920176	5.96651544137645	5.87818368850864	5.90827942788223	5.84324430367431	5.93956699689438	5.94570517050411	5.97892558937924	6.15707256967919	5.78472329962763	5.94438470338085
+"LINC01426"	3.45192558011663	3.53661767365174	3.32806170799659	3.25857231900179	3.63419534935528	3.70505031009685	3.4091874543792	3.53039354093592	3.55269631198489	3.50520761824204	3.28670684977153	3.38963958859605	3.28881978606701	3.46768468582627	3.35315316691785	3.39731945890974	3.54960729677334	3.22224393680529	3.39731945890974	3.35000769153924	3.32425138218592
+"LINC01428"	4.14191196360689	4.30642877846273	4.2493817728559	4.07045574166625	4.2493817728559	4.35005844796627	4.32215963648643	4.2493817728559	4.34035534310024	4.10613645437598	4.35426061230793	4.10708571211956	4.33241967498989	4.39339018260217	4.02082065465423	4.32638401575433	4.42557510976354	3.88509171534632	4.23071371472708	4.20038078787659	4.42557510976354
+"LINC01431"	4.25310784812113	4.55342573906296	4.41578800867972	4.36426620023061	4.44442652612002	4.44193949433984	4.6213024391772	4.39436922431037	4.14761571634643	4.43843782404434	4.62491096025718	4.43843782404434	4.17999591521752	4.99267268614894	4.62308722580237	4.76815409504085	4.54496068611144	4.94104689236449	4.43843782404434	4.23823202340034	4.25427045709493
+"LINC01432"	3.36923607932745	3.57193346229422	3.89510572318536	3.63941923119422	3.59335792689471	3.60929713941801	3.91977967638055	3.63087996007984	3.89460318014287	3.54606081237067	3.70034397628044	3.82416227546951	3.7910037867233	3.79948091853535	3.70776986983677	3.86731891656012	3.74383546921251	3.61695013232319	3.70288304303867	3.59866019666232	3.73188677688139
+"LINC01442"	3.70632310137397	3.71067444598024	3.62589837570552	3.73385217435128	3.70632310137397	3.74875607137671	3.49569209338211	3.71931094538562	4.16316778531902	3.73234139364715	3.54263321359999	3.99286342686773	3.71602193272956	3.57972788585553	3.96779852709763	3.70632310137397	4.14910327384765	3.41603442714824	3.58847982647212	3.46746690210377	3.68116070819835
+"LINC01448"	3.2657970345605	3.46286292128686	3.35227933959723	3.38815919666752	3.35677060480485	3.35677060480485	3.34905308296711	3.25796775229604	3.50069991946553	3.35677060480485	3.10884361759159	3.39742001868744	3.35677060480485	3.33780614217385	3.38867712872429	3.43255985130968	3.39941469296756	3.27107885934381	3.58614159405391	3.19928707380298	3.24617995829277
+"LINC01449"	3.7432785082642	3.74235217017352	3.64122588602467	3.84722374001808	3.8385325658687	3.71280828868833	3.74235217017352	3.72744929321227	3.97143968834107	3.71586358481183	3.74235217017352	4.04086400724147	3.71491154164153	3.95263575775828	3.81928726904224	3.70494840069307	3.78017714166065	3.59703021553035	3.75943564099437	3.69206529735607	3.93391551819073
+"LINC01465"	3.33683858245134	3.40226796420328	3.40759084667935	3.2625505138491	3.34878301684142	3.50567396589726	3.68021661098206	3.3288385845798	3.64338692638736	3.4426962250225	3.35756211611741	3.51460273610042	3.47238179326792	3.40071759916568	3.35659129417282	3.37037948729311	3.37448449041825	3.24394744209071	3.38800316309536	3.22634275227037	3.40226796420328
+"LINC01467"	4.04870116331438	4.09088161878702	3.8805215273533	4.07605302923454	4.02316908000731	4.35407084142319	4.1586782297544	4.1112004030439	4.01232454678945	4.000593994894	4.07605302923454	4.01560211714394	4.15993865494245	4.12981651342373	4.11652608615134	4.0335790980478	4.14646784814217	4.06988643241697	3.98487142166501	4.07605302923454	3.90012473346543
+"LINC01477"	4.18062195488454	4.42055426287725	4.23369760667586	4.32640516231925	4.08324365526676	4.25424933037555	4.69800997447653	4.25573468755445	4.40444938666886	4.23926835330692	4.1643603409853	4.230227494442	4.26612769101737	4.30020385776065	4.48949547347549	4.28783325174595	4.21749257809528	4.0518553844246	4.20642058918326	4.08193599403084	4.21716234941609
+"LINC01482"	4.73882627982701	4.95079783215412	5.00714464100463	5.01810973622044	5.01247921524113	5.05258782888124	5.21397640872537	5.19087289689378	5.21739182376333	5.14568079168004	4.98327206762936	5.04183232103582	5.13254939416289	5.32086621054104	4.8501008086652	5.20729981334604	5.18914333369354	4.96622524386107	4.97393364070766	4.92989310638568	4.98381014113619
+"LINC01487"	3.51369644726851	3.44759769198343	3.59479232577423	3.51570987694599	3.45857842839162	3.49220471078996	3.36065320342464	3.55969993101081	3.61381558724859	3.63350477212756	3.41416505594849	3.58400056096605	3.55184431388084	3.66281284055776	3.46634806462738	3.42604104678216	3.62604674266582	3.22931397239729	3.51369644726851	3.7006527437715	3.50881836670696
+"LINC01490"	3.62823711023872	3.69810698452427	3.61510671632984	3.74830667266964	3.62160727492543	3.62617181776277	4.08520905003979	3.58683564234555	3.6118674804877	3.72076809849051	3.48445755265569	3.55704640234092	3.74167524032109	3.51245791630884	3.62001441089823	3.46239557817679	3.70090969796979	3.50677046929665	3.7300145389108	3.61510671632984	3.60274469062989
+"LINC01492"	2.98734261227531	3.07805929021747	3.04385858196007	3.01990259396894	2.99025753644094	3.14840392949008	3.11640072984845	2.91643444875461	3.08504641733737	2.7403152394985	2.98516187373217	2.99025753644094	2.97130683657693	3.0364850690689	3.06590072076123	2.95882064816408	2.97130683657693	2.99025753644094	3.08326737680221	2.82019663387892	2.88352096977535
+"LINC01494"	4.20291384464216	4.48818285808373	4.13172911644688	4.33282570392053	4.28913085335777	4.02674758470511	4.23619455801375	4.38304003729804	4.16882575856432	4.19212166527973	4.20291384464216	4.20188313698382	4.20291384464216	4.22555683723956	4.2956439270994	4.2670423780836	4.1857930772495	3.97279301518926	4.20291384464216	4.05206679046958	4.33896803893883
+"LINC01500"	3.53555230591351	3.52891439016377	3.37885551154649	3.3262463600086	3.2549536821651	3.64384875789922	3.2371083959586	3.52488095209822	3.48160321191786	3.43211860790638	3.49079720161981	3.58500809429475	3.5303593159105	3.48401303533419	3.40893680008837	3.59320388820346	3.42620230938402	3.37620325201073	3.41916641986755	3.30700784388687	3.51807713254032
+"LINC01503"	6.73352939040245	6.62875171226049	6.66447974732322	6.51222359376691	6.815385397274	6.40069814040405	6.43961791370105	7.31034377569606	6.63878050755909	7.09458216397847	6.70579919937004	7.0905364823096	6.815385397274	6.93935048692356	7.21966368913443	6.70645717451396	6.70628923771518	6.80448260045068	6.66966528042242	7.45068832529252	7.42791278492474
+"LINC01504"	6.69993116560514	6.98588540948963	6.81294338801741	6.89776721781281	6.8383806229948	7.07708896318518	7.08646973021544	6.63180517501615	6.8383806229948	6.76777604591778	6.42211459525949	6.78445604692841	7.03475823450738	7.11565044135096	6.90569047208531	6.86405578980392	6.85093530285651	6.63915476552361	7.03624643560347	6.66160189207964	6.83430602719016
+"LINC01512"	4.92551263392841	5.42690488153192	4.94151218745997	5.26910572059187	5.08433032651286	5.33358936572871	5.35480402719205	5.15673013686192	5.35908332539359	5.4080391958112	5.04829244176503	5.3032076511969	5.36888666758477	5.06666950725672	5.23173613178931	5.1481118137389	5.45369068203653	4.85050316386305	5.36697488021133	5.25255474757163	5.24910817599677
+"LINC01514"	3.01640725995804	3.2382090497718	3.22569488504146	3.13326860454434	3.08387096078253	2.88345996132337	3.23530651409236	3.03590054544286	3.21464176103731	3.20796792344267	3.16714027457641	3.15132839120907	3.19696507446138	3.1596765449271	3.28951893067179	3.20099509306243	3.21298117002204	3.00467918702807	3.04218199301396	3.26925308065904	3.15132839120907
+"LINC01517"	2.76361463756115	2.9580621180834	2.92464082168712	2.85221593004617	2.82925328789017	2.83993354822155	2.85607200307824	2.82925328789017	2.91730307587093	2.76387677009982	2.81617724937572	2.81641428639624	2.84566983784274	2.79971952572505	2.84670419421546	2.99603742375827	2.76081920748185	2.73638239076039	2.75262850192688	2.94671449969799	2.84020148268978
+"LINC01520"	5.23217562134796	5.08980620466965	4.94353236858526	5.15169715245444	5.06899039138236	4.94758399389774	5.2477221926405	5.10993652330478	5.47250931166244	5.3252603479945	4.90048104342573	5.30018645928734	5.50508391959173	5.30414423973762	5.2089719099731	5.25255288833125	5.15169715245444	4.70506899107314	5.20218553007691	4.84130854271451	5.15169715245444
+"LINC01521"	4.87672872573878	5.30755422386813	4.7267785825919	5.11401753967043	4.95266740500732	4.94411534288006	5.3747898298552	4.84134046625698	5.13449612325385	5.74717194135414	5.34617978079659	5.21108770588355	5.84292807079954	5.3309498605733	4.88597563080393	5.22363817702197	5.20981235130957	4.90078980453878	4.88398418865055	5.10255089325982	4.90844524113947
+"LINC01523"	5.3252603479945	5.05117283967954	5.42105722922452	5.40943631590177	5.1716869876303	5.29601081940368	5.65113164166652	5.11130426842914	5.37383644239021	5.3252603479945	5.02512252562489	5.31511750041734	5.54773552668903	5.47219812589814	5.49453405286864	5.13449612325385	5.36573204703675	5.1239455361423	5.41593999433998	5.35219534269365	5.34324544009426
+"LINC01525"	4.9262378063939	4.86003743880028	4.9262378063939	4.85309193419784	4.94062524862463	4.9646198669365	4.92926258848843	4.75390461266606	4.80034306955918	4.96321995328909	4.81103124568374	4.9262378063939	4.84431414565121	5.11716580186927	5.33482152159189	5.15829988354561	4.80559201154217	4.8167218408434	4.7096388695463	4.96321995328909	5.00213761222998
+"LINC01526"	4.8095832762686	4.82815935132803	4.66738300033954	5.28105866423572	4.82411297194434	4.7939943459758	4.91949689961865	4.7527162100339	4.79326720161799	4.86625357352515	4.86627701088239	4.94742361195915	4.76521437335046	4.72483003639653	4.86658596230961	4.95887311519784	4.7939943459758	4.54795772032258	4.73035955494722	4.63304771101773	4.66065349323035
+"LINC01527"	2.90158261532884	2.68869541808537	2.78212567186119	2.73497525961856	2.75684342144793	2.79895783122856	2.90060744562108	2.70786889486159	2.77002445937554	2.76114649022957	2.845148694313	2.89833123654157	2.72242922769481	2.94153877760741	2.77002445937554	2.77002445937554	2.7373050524156	2.91105863038326	2.87558974129095	2.81180865154293	2.59013476583456
+"LINC01530"	4.255727397313	4.2285922171284	4.12613253339057	4.17710186445535	4.27725856505636	4.31931074374459	4.33460455054908	4.255727397313	4.17055577225192	4.08372299529992	4.10144358038951	4.01940451701362	4.23015044353194	4.5735565362682	4.41479984528997	4.29350698947179	4.50207127764192	4.20876487650836	4.31421979084272	4.43585358996888	4.17070596544241
+"LINC01532"	4.77423848011952	4.68101179195836	5.18952653302071	5.06599865777386	4.94337479230151	5.09122390903668	5.60874170822093	5.06599865777386	5.16416360871815	5.06424405017552	5.16304009926144	5.21559116884968	4.8652217208732	5.13651110638628	4.94771082761988	4.82682041624878	5.12296411580791	4.74914010493284	5.06519206673312	5.12574002078225	5.19985149868379
+"LINC01537"	2.89386794882118	2.99769011146672	2.95993695995129	2.83772377927776	3.00864978011044	3.20939264580156	2.87069464139811	2.94032191558391	2.83589842587197	2.83142184977657	2.79304896167573	2.87069464139811	2.89962690831705	2.74874115772542	2.80877023580399	2.68801431691682	2.91599657918008	3.04463530757657	2.87402849987419	2.8513976467416	2.76325111511182
+"LINC01538"	3.13977556517193	3.01427429020031	3.1671518770399	3.12935839562843	3.0768461069553	3.05496661329685	3.33670144983492	3.0768461069553	3.14652274641843	2.94684418328049	2.94735543802986	3.06586414703369	3.05168797482788	3.14937920537343	3.1084478733871	2.99321047322989	3.1502756771118	2.98370085858162	3.18259115857386	3.08513954752309	3.09755027954475
+"LINC01539"	5.31730919846428	5.51917575094284	5.25863688360316	5.36220371143985	5.49349740259334	5.31730919846428	5.55618597574288	5.23680096925829	5.30362111040563	5.43034546944959	5.16304477986783	5.23857721777073	5.42641887163873	5.34957454218963	5.2998704758649	5.66924473452819	5.20297938332947	5.05497694948843	5.36113406163404	5.11871565117806	5.19965735046312
+"LINC01541"	2.94496617677326	2.88124889670917	2.88579497349121	2.92619872017409	2.82739725663525	3.19396569352716	2.98233366739562	2.83004752289829	3.0475289329656	2.97592694330417	2.9420466847982	2.74965182533164	2.83112113958854	2.93558115124924	3.03216111115436	2.9453465089841	2.78145716689596	2.9101968472675	3.04062846821586	2.96281253317212	2.72280392668315
+"LINC01545"	4.48830687694228	4.5724142147681	4.28637842870484	4.70330590175963	4.65896126592482	4.59573797243409	4.73951265200228	4.43208243781397	4.61280988955532	4.62622683478018	4.62622683478018	4.69167871984801	4.77860680199177	4.9221123354628	4.72083029964895	4.77366140533638	4.65665294784135	4.47208909263652	4.59012464651652	4.48608090966786	4.70961860171207
+"LINC01547"	4.88548364385296	5.02911786542874	4.93916978164432	5.11080116689634	4.87272274296014	5.09654023599705	5.14247568642493	4.88175692707423	4.84097387724576	5.26154951048621	5.01698149998255	5.18347651660519	5.10062816310065	5.02911786542874	5.20788856040983	5.5674284278127	5.02911786542874	4.50595434669789	4.97515238408749	4.98504352950255	5.39809322829227
+"LINC01549"	4.56863785039788	4.31617632162744	4.87871602215888	4.54531012341948	4.43625805402865	4.01588755204983	4.05057533378738	4.15438543933314	3.81831205805135	4.39490538470305	4.62883712916276	4.46959808641726	4.30061088358265	4.47913659477883	4.13722504388343	5.56168895501624	4.6559880218347	4.92154983738378	4.45503733336714	3.96732046260699	4.75718724341018
+"LINC01550"	5.84408955819576	4.98287545951187	4.95424733937828	5.10010276946033	4.62681756666011	4.59778240476632	5.15920265288966	4.95200916727901	5.11533995891774	4.03029752351085	5.08626954408342	4.95921896242798	4.87998024972584	5.17166334603873	4.53206525568117	4.88054543940746	4.83626685807411	4.45092043832444	4.81672017006793	4.42748259584681	4.4719114499287
+"LINC01551"	7.21034021987487	7.06119132065403	7.28435338807361	7.33422686080279	7.15447431614923	7.38627185038399	7.14266864883618	7.14266864883618	7.27570357013052	6.92959605655614	7.0189732103001	7.27218694821019	7.18434975214326	7.20843338665359	7.1806099315241	6.67602682953607	7.1306044118021	6.72540907508622	7.42366780662101	7.04217595205604	7.00661506890233
+"LINC01553"	3.19974090533624	3.17191993125665	3.04091828452849	3.10445188916792	3.11045133234327	2.99328574722775	3.48840181349768	3.02828003398086	3.05122250382863	3.13645256648828	2.93055712717587	3.0146120626549	3.13645256648828	3.32007295623939	3.20247279431822	2.95708886695989	3.09000889706415	3.07221844888819	3.12659020833089	2.96787561598782	3.27733301071377
+"LINC01554"	5.12304786134635	5.3184097407825	5.35937988821561	5.35937988821561	5.04264175116938	5.69919570705559	5.94936446443861	5.3506035527352	5.49027778630884	5.31817741705184	5.31805371400212	5.41861178234416	5.32286533445136	5.55310378025231	5.39868571386841	5.28390939751616	5.34827666815836	5.40760031953376	5.4291422840721	5.12412882071819	5.36724929933849
+"LINC01555"	4.08876010936542	4.19818030628423	4.24033533765474	4.28852898060224	4.208364534428	4.61179756224881	4.57852253956158	4.15345425878811	4.19818030628423	4.05738256867085	3.95067002446149	4.103553499653	4.35702572723179	4.69557717779032	4.38546337403162	4.16974464754257	4.00967676648148	3.73336191066696	4.03771313355036	4.17445267685763	4.19818030628423
+"LINC01558"	4.56160502228326	4.62119936534058	4.60467636823515	4.61284354163675	4.7502628154263	4.61284354163675	5.02911786542874	4.86424555852857	5.04642504921364	4.74734453319319	4.40595057047174	4.43650831930699	4.74370876739118	4.85201821930421	4.89377954388304	4.62577028853643	4.60900981862895	4.25342533558032	4.57283269812646	4.50248430830663	4.37962227427524
+"LINC01560"	4.9934404050778	5.01926007403714	5.12906069912838	5.25878422156571	5.29182658772855	5.63953638445686	5.3472574707752	5.50638111321644	5.2272095405193	4.60383356933739	5.54879530361121	5.02172319141167	5.24231435228672	5.22475983351091	5.46572968802073	5.64234854951754	5.25719017700751	6.09517363127383	5.2272095405193	4.73056102589651	4.67185244993893
+"LINC01561"	7.38537233491248	6.38404494293246	6.42094217150425	7.03249315281541	6.47675378029672	7.40550404245854	7.36006411789522	6.93056829934948	6.80595229839014	6.35937890869948	6.69996004450802	6.47010806980734	6.99932900689513	7.15805198510582	7.31991924692184	6.78544188748287	6.56213530356366	6.86079664383898	6.93249793007217	6.69949731159658	6.49295904378193
+"LINC01563"	5.50582732992055	5.22574411749767	5.1514092061579	5.29746198305285	5.16373505464783	5.47613116077674	5.74960715695208	5.40317960029796	5.43005002841017	5.33200399748766	5.44242270531721	5.42368688596723	5.72244346172707	5.48082582120517	5.405191494177	5.42368688596723	5.47728413348569	5.44406126069139	5.69704266472547	5.19063403521844	5.42795127058922
+"LINC01565"	6.05101811582322	5.99028497319391	5.98473061591138	6.10781507910807	5.86725458040655	5.95605852217052	6.46301381730962	5.94294741512276	6.01445912387193	6.13380688196128	5.90432003691435	6.11180805383857	6.18483970549624	6.36479290569613	6.10383000745432	6.0077724735066	6.00146306905453	5.65550816688052	6.04343920498678	6.00651872808285	6.06753960396118
+"LINC01566"	5.91914770668364	6.10295855430741	5.99514853950246	6.2910555153974	6.0067477198165	6.3754508865856	5.96115556381942	5.85509124938247	6.12822162929902	5.99371186056513	5.95601960916205	6.07021192867988	5.73971809950586	5.94120942134509	6.24433440812681	6.14344364681518	6.11242962274739	5.69350647694755	5.79107925098278	5.80756475074213	6.1432844469945
+"LINC01568"	4.00967676648148	4.26316583874807	3.89084947249809	3.93814851975123	3.69935076922983	3.84770582820539	4.16853015459839	4.20081991216697	4.11421750446917	4.10183993780313	3.86421653823683	3.63629374719449	4.36317963356823	4.24403293087103	4.04487567156683	4.11269222159274	4.04874038285134	3.7274267684932	4.09155012385521	4.03903948567295	3.97686136826546
+"LINC01569"	6.38351026936557	6.52179516232774	6.47326757269992	6.5728380978364	6.52599637388267	6.37090175095643	6.64620100230931	6.21606330474943	6.44642487330629	6.5435699297912	6.47700201713399	6.39895132503548	6.51842173865867	6.95703483007389	6.6735134599483	6.55628737478866	6.65638157257992	6.51842173865867	6.40667311503679	6.52075718326672	6.41103611628712
+"LINC01579"	3.70168969429692	3.5940220400786	3.29524844830386	3.59911770278737	3.5940220400786	3.383479939705	3.74520523320839	3.63245790367264	3.62889999278044	3.4928801904831	3.53274448433573	3.53464842969838	3.8722256262717	3.54708953929916	3.49775996196131	3.70093301940599	3.61225679297601	3.33989842481331	3.5940220400786	3.65948497645593	3.68665604796475
+"LINC01580"	4.72083029964895	4.68253997526135	4.53647637496019	4.66721902416138	4.65915049192384	4.75391176901744	4.65915049192384	4.74068151068349	4.45281616846764	4.61552486600255	4.35098002532465	4.66519093938777	4.84431414565121	4.79737753456721	4.79295713317809	4.52418497830907	4.83851391392687	4.46077565041154	4.5582808697261	4.62500221876435	4.88078496412851
+"LINC01581"	3.2737329178069	3.45059208137394	3.29945416718296	3.52939628772576	3.36723106182972	3.27605695764013	3.48285148946628	3.29678604058221	3.43311646352605	3.38815919666752	3.46999626455884	3.34533123093677	3.42940058711538	3.47009762779833	3.5940220400786	3.44764123297544	3.4100437740804	3.17836350522586	3.39466415280945	3.37186153857874	3.34267492110808
+"LINC01583"	3.0374577733812	2.87115530101186	2.94430117320792	2.95561579326708	2.94430117320792	3.03082375820656	3.19168887803075	2.90489644842725	3.22706420784906	2.93513784712576	2.89882376443871	2.75249970152256	2.90608104429668	2.94430117320792	3.37463243273375	3.03984287383163	2.91811336082205	2.94352961252458	2.93105153609696	3.13224665427763	3.01418251303464
+"LINC01585"	3.62946142799686	3.67870077879562	3.60257907528099	3.67276791598319	3.68094692045612	3.71248971879091	3.7584757531753	3.79631481356404	3.61263596731911	3.70140059034765	3.49005280302713	3.74227700828815	3.78636843301393	3.62822670645506	3.53932555628666	3.62589837570552	3.72908241296667	3.58003353644155	3.63896814873624	3.55036419988127	3.64548819806257
+"LINC01587"	3.67936786161211	3.94031576726387	3.7746937617097	3.98317062404875	3.67590015034612	3.91747881625649	3.98755506340119	3.87619750395753	3.89750769692117	3.8296604268488	3.65063135459491	3.95664975860059	4.00963629888444	3.96158976229932	4.02192542829386	4.06132054508024	3.87619750395753	3.52970537206662	4.02869218240649	3.80786716498889	3.65567518233698
+"LINC01592"	3.43726748472909	3.49907232928224	3.55706765091001	3.81736369266999	3.62379582940333	3.73748602341853	3.56260381396608	3.65785928959129	3.60430680366892	3.57213034347693	3.43229314022867	3.55706765091001	3.54961596995443	3.62556716299734	3.55706765091001	3.50702621711346	3.56300575947193	3.51430403043923	3.44795600684889	3.54011398344976	3.4525067707899
+"LINC01600"	4.71060445126305	4.41970306477232	4.49964994294401	4.56554257671842	4.64069879809462	4.58191325465857	4.67320105118359	4.56093468905754	4.66187301098505	4.48245860466718	4.36268098590597	4.56093468905754	4.55001352372073	4.63541697331132	4.72489585175254	4.48940818447364	4.56326699624405	4.4639965426867	4.47329359504418	4.55403787336739	4.62436443273949
+"LINC01607"	4.95985986208544	4.09000483079191	4.78672948028106	4.73859589814832	4.71154564602456	4.84102712813777	4.61963501357946	4.2493817728559	4.46830577993799	4.57512919121534	4.87226947459471	4.55750730907349	4.62142070330257	4.43254829156282	4.46964838097708	4.78393450182929	4.62701134440812	4.47841573557056	4.37013345215479	4.67599353365376	4.62142070330257
+"LINC01613"	4.65495376634035	4.73525933228158	4.86241021290752	4.82797497554128	4.94253053282225	4.82797497554128	5.01963807156123	4.67886968253538	5.25255474757163	4.69304418595049	4.71183736741288	4.78825317273356	4.78326912745541	4.76487819285733	5.07984130269466	4.67886968253538	5.05084157113175	4.444682678182	4.86412821494264	5.01449928875387	4.82797497554128
+"LINC01614"	3.5515130965295	3.66508228424551	3.53721001312866	3.62484591261858	3.5404401767063	3.56969668133762	3.57801018279626	3.74936724085977	3.3083273946592	3.66278649723363	3.45518316259082	3.62095662870098	3.45433068440183	3.73829976016614	3.79085764086511	3.75357820634288	3.54960729677334	3.58020721668009	3.68721892285429	3.43956527374411	3.53165521496365
+"LINC01616"	5.85306077658448	7.37053316427458	8.04083859727005	7.00376701932697	7.62842269549159	6.83410984235381	5.79355999380035	6.88482628293595	7.71232340697802	7.32162129857719	6.08552240401404	7.25474899631235	5.74017069219152	6.00551920909444	7.28110076056604	6.47961914147778	7.28979604284033	7.41415404048842	7.07873616964217	7.60702322642022	7.01200581449479
+"LINC01619"	3.35982733247846	3.20809212702905	3.37981991409472	3.47115147475991	3.54788085331844	3.12197440344949	3.53399177922239	3.43359552805148	3.8655884461731	3.43359552805148	3.32706372784985	3.36560010406572	3.49536388529043	3.43359552805148	3.33496325049936	3.44617215467376	3.48909668718078	3.42213160645581	3.53999087298565	3.51750302660805	3.26267207146602
+"LINC01622"	4.26233863034121	4.26895626937755	4.24130498225548	4.3197181923278	4.39475563650075	4.05836810122117	4.19867968529302	4.21376253594551	4.09605198540493	4.4826993731901	4.20658200561315	4.23742238050327	4.35406062923389	4.34921545494278	4.32089327871594	4.22270306906766	4.26233863034121	4.16370019781345	4.17917078453318	4.26233863034121	4.26233863034121
+"LINC01635"	3.32510575819344	3.61788517190831	3.41968830827479	3.71571789245109	3.54840489189738	3.58045484870608	3.71612825084216	3.89810497123104	3.69125652947387	3.67884275111033	3.62728201292774	3.7149073203657	3.9706063456082	3.67884275111033	4.01169151692208	3.61118663574451	3.75714810291262	3.33685390415802	3.59310678661383	3.8104421210344	3.71748073491144
+"LINC01638"	4.21786482546963	4.31867884272527	4.15208892540975	3.99230535416479	4.16970536105004	4.16795334578523	4.14253980522424	4.26650634171738	4.67569487082649	4.44191692019818	4.20187510316778	4.31078480120007	4.39342142262793	4.22008221054491	4.52504378541214	4.08215914508169	4.17774787723122	3.91164672427796	4.09628183381474	4.39048151728728	4.17379069845769
+"LINC01644"	6.01373542033415	5.94369590893556	5.76713459456467	5.95854373143207	5.82792827690996	5.76406377594641	6.05378376948016	5.79613815184494	6.16597163993083	5.78909160938862	5.67593138489352	5.82369217435945	5.99678452890411	6.20776342799798	5.93017115471336	5.94353489672439	5.91536334384264	5.58484027494192	5.88040922234465	5.81583056795003	5.83668684106935
+"LINC01647"	4.57865619309078	4.57870797821067	4.67938882661621	4.65516387455	4.57763583193676	4.80735479499675	4.81646225730585	4.72859877146575	4.85641524144807	4.78153428743515	4.38076362467522	4.6978900687913	4.74576444417146	5.03256595106673	4.51629123699856	4.66934085275833	4.53533379152667	4.49760517866528	4.71594027463154	4.6676178841044	4.98222958152504
+"LINC01648"	6.26573910862622	6.51825932807977	5.86481964203813	6.41673771920011	6.22947482125392	6.55660357325316	6.34369828363065	6.29430090802031	6.69540235643363	6.53129504879479	6.33820273200191	6.50365545770722	6.61303100250354	6.56209197607924	6.54851717396388	6.45386685823861	6.49535018717887	6.06716528681146	6.33996187742872	6.3964939327219	6.50714399261818
+"LINC01649"	3.52006070101514	3.39921759203183	3.46137811827439	3.4677666408757	3.43728338109035	3.5019650881102	3.39576837853412	3.47331964810352	3.19765660359146	3.6787769320742	3.20720518110599	3.48360622240201	3.68411826214711	3.69068742859288	3.5806358645303	3.71038932456619	3.51699650558017	3.33845057990764	3.46137811827439	3.41796000671952	3.4332861238276
+"LINC01653"	5.08804316917946	5.21373808136485	5.25098868941081	5.25883575308479	5.11994080150185	5.58136075243967	5.47865232810046	5.49855657741321	5.25255474757163	5.09552718717764	5.11844393590705	5.28640647498796	5.27897667910013	5.63006588910225	5.23045797676844	4.92562167819098	5.4193554662172	4.840611200749	5.17531102246592	5.23045797676844	5.22873997473332
+"LINC01654"	4.13557720799785	4.14757130459052	4.16089863856463	4.23543586854268	4.16089863856463	4.16089863856463	4.32451633869805	4.28776052079947	3.99110066236291	4.13440787360433	4.00294424462906	3.97803502718988	4.43144430479017	4.15727218122314	4.27244085231514	4.05291188055243	4.14914332710854	4.16089863856463	4.38583305227087	4.01519753013101	4.24991832714758
+"LINC01656"	4.06557419315258	4.36748030119291	4.52414077524637	4.52577697602477	4.23026923260328	4.130681106425	4.59858637582129	4.28923047320362	4.28341012743521	4.72134213008942	4.24901770529199	4.58992148969842	4.78333411488717	4.33809658602277	4.4752576076541	4.42794777160747	4.56568488773573	4.42794777160747	4.42794777160747	4.48527149765616	4.64150456401164
+"LINC01657"	3.7723209132386	3.93252002303619	3.68658720307519	3.93339421226749	3.80493779103266	3.66802859393222	4.09782648448785	3.81491995470625	4.00144916993781	3.84283817993849	3.5980603899788	3.73687756951463	4.02661735176312	3.77634446964335	3.92615992494973	3.90115618388165	4.02558441316242	3.50881922000977	3.82600872428361	3.75982768821686	3.95735187667493
+"LINC01664"	6.72875023464383	6.90060074946953	7.18640022311033	6.90060074946953	7.04653413660803	6.91998637375772	7.02188911288233	6.93699033670033	6.90937042900951	7.01714163905033	6.62249009445852	6.90060074946953	7.19740409015662	6.93529226043356	7.02495139681638	6.80128705907523	6.79342575388089	6.67904373274392	6.74842848307216	6.73592872136602	6.9674313052708
+"LINC01667"	6.93848537350783	7.0582144868893	6.68378067352306	7.20605595668274	7.04975694347283	7.1230833875478	7.58120124530852	6.74280686436524	6.98424446219943	6.88748050604335	6.67654712921	6.89016369752737	7.02239276455024	7.21275851227008	6.81431731481822	6.90764581029604	6.9862610547587	6.6770754936155	6.65567183687731	6.99759861664838	6.9599735423871
+"LINC01676"	4.98534113640989	5.53415928454526	5.20999560178582	5.78953166930354	5.67351276639635	5.72994139388495	5.87275755679131	5.13464773728597	5.30097962000209	5.4192976888058	5.06946678300702	5.42696898014204	5.51860160660666	6.11037286159851	5.63312719275455	5.44010460111877	5.26766210204047	5.20999560178582	5.34960821213789	5.18113366835334	5.42696898014204
+"LINC01677"	4.15425504159614	4.26827613016201	4.31220997093208	4.61552486600255	4.31101734326986	4.48955460475561	4.46096260609178	4.15451915766316	4.49008176145483	4.23531738509553	4.4558562801267	4.39652490449826	4.46327487096176	4.5855725160003	4.2454499079007	4.36600243501802	4.62426647408342	4.54378110649983	4.27942361823159	4.26467049525774	4.47376027568959
+"LINC01679"	5.35931809566912	5.22091538349931	5.57801734182328	5.51529599250904	5.35300666769541	5.91760936349719	6.11256979518443	5.30288863846648	5.49358564560302	5.42602639269337	5.21118632836975	5.37672277095685	5.57187490640044	5.93705136937428	5.66688352828693	5.26098227380045	5.46337392444229	5.31757274632503	5.62040046504854	5.40104743828223	5.56927171117328
+"LINC01686"	4.62607888907828	4.7825757427973	4.82797497554128	4.89109717421901	4.59698263270463	4.70988446799162	4.72083029964895	4.84577403601192	4.72006427952906	4.76632115745248	4.46973744941443	4.44591825639427	5.00547327289	5.40922020184996	4.60432838805109	4.55625887248093	4.89173157354095	4.52618347663028	4.75391176901744	4.7817897940753	4.72179717309827
+"LINC01687"	4.06179484792708	4.15208892540975	4.15208892540975	4.4338526546948	4.4182953781805	4.23628243142196	4.15208892540975	4.19550109977633	4.09804435350736	4.14878548871803	4.08193599403084	4.11777750437982	3.99656741883607	4.39513626123328	4.17230919969672	4.05359969928128	4.04339858574805	4.34966861740479	4.21660113073431	4.03263516321605	4.32648136679002
+"LINC01689"	3.35982733247846	3.26676396222869	3.27784795647351	3.36378611068608	3.21234584290487	3.27605695764013	3.50074665518476	3.12530605984967	3.45105562250808	3.25589930813604	3.17387503063323	3.12922237978689	3.10211519128502	3.45232746359219	3.08655457593973	3.4013138378601	3.2994494363504	3.00774004262987	3.17271948675058	3.22389863081568	3.17950544500563
+"LINC01692"	2.9056805537258	2.95230893690578	2.88631205794369	3.05762542022405	2.94906970106365	3.12744457340874	3.03646690365	2.90665888271686	3.19891281411558	3.03345695961746	2.82659238451944	2.96421017287691	2.94906970106365	2.96835150560362	2.94906970106365	2.94906970106365	2.94061455250706	2.76624588432676	2.83063935253635	2.87589826373274	2.85867412350012
+"LINC01694"	3.41603442714824	3.47587909463677	3.40286926580898	3.24942707143796	3.54744196568529	3.55162423730166	3.41424928451665	3.38815919666752	3.42940456533278	3.36793549201558	3.32328642344535	3.18645511995587	3.43020480159797	3.38264751808485	3.56051421471037	3.41424928451665	3.38376781401493	3.44927333376118	3.43242538678891	3.38264751808485	3.32786450666881
+"LINC01697"	5.20248068515802	4.98996149341424	5.04795784071355	4.99169035114226	5.03859800044394	5.13421182757935	5.34243478193211	5.12341631619389	5.09623154447851	5.06205139182681	4.92348867807405	4.92982561938108	5.04015622684749	5.3121795941848	4.79697651872299	4.97249711066401	5.08122428894586	4.68303805452752	4.83663132157993	5.34853842936235	5.00975013780699
+"LINC01700"	6.27660573584823	6.52499295243805	6.70086139147539	6.72405004178215	6.62688741130074	6.800507757746	6.55911190662114	6.85971176698883	6.52053435472656	6.30617237070061	6.29167323049457	6.67399709663191	6.48628993449404	6.5221638843384	6.62337507223376	6.41067914429546	6.56049064590614	6.36836997316306	6.61758261486816	6.28921581842212	6.41009567812055
+"LINC01703"	4.21933121208813	4.29358049782053	4.28567440932751	4.13263549423227	4.01805422422919	4.3478700780788	4.49877956500757	4.30624450544423	4.31148436233804	4.32383405280306	4.30137190624936	4.41670405597149	4.40090045061516	4.40135759356673	4.15587799017981	4.24415190476613	4.36997068511892	4.29920273856071	4.20119905900815	4.26066329626007	4.42817193831754
+"LINC01704"	3.65420474829123	3.53078480348059	3.73111394953606	3.81287249143828	3.84746626312461	4.22973930615485	4.3241258000503	3.56679627312636	4.1932394430265	3.91455568628315	3.66675200985806	3.76649585251223	3.70752840002401	4.03564334812198	3.77216330589925	3.60212455775415	3.75161287853132	3.53895836380593	3.82310211121745	3.65251290732451	3.66096926766998
+"LINC01706"	3.74382798288539	3.9409651507173	4.03440189606545	4.01848039937467	3.97488690809986	4.03725013470271	4.11604378142816	3.88296727709384	3.91159576691487	4.51539730610852	3.9227854880037	3.97488690809986	4.06489161699387	4.07507279086104	3.96779852709763	3.98589701194288	4.00578558106851	3.67853318422229	3.99004439554812	3.79986313527708	4.22254484225993
+"LINC01711"	5.20809444732255	5.41144683082611	5.25148961160443	5.58543656440792	5.41646345561164	5.54364393787806	6.03022886627626	5.35086046758365	5.45117754618955	5.55527098461701	5.30797403500574	5.43902066618844	5.68794239253728	5.54968281926639	5.22295170503605	5.20633136353262	5.56427901936083	4.95113596075243	5.43240922725572	5.46944641100041	5.45463523658271
+"LINC01718"	6.35914715111968	6.53947789121659	6.55468281999552	6.7882488858503	6.41951597595017	6.481279285631	6.80313380468457	6.55954740072584	6.72091099037365	6.58060841787543	6.53481506144973	6.70999650490406	6.81524745338434	6.96382216290098	6.54816977791144	6.42515563655089	6.68080603316971	6.3844793188606	6.61966508566861	6.52901047780827	6.64568824530929
+"LINC01720"	2.99859240773179	3.27898521191707	3.29517153666182	3.39327970424311	3.22978529039019	3.20160669276315	3.29289448928817	3.36102566726066	3.24601751866045	3.14615462082295	3.12356703792167	3.22084135743766	3.39260180627383	3.26512143133017	3.23605614042075	3.03494250516311	3.18404779816901	2.98761527559711	3.14916984546718	3.0768461069553	3.20681662523686
+"LINC01722"	3.5030104716276	3.77799781697509	3.83379131937932	3.81254639369763	3.59035006425724	3.73392538870133	3.83323006864259	3.71804328493211	3.57033160843912	3.64646847182225	3.81889703547128	3.78975874868711	3.63589927771737	3.76923629621902	3.60472993521548	3.9347732243332	3.61168621803431	3.76998843554752	3.82902667715214	3.66448864829558	3.69420358589362
+"LINC01723"	5.82906081208079	6.17102607354078	6.05940730841866	6.36781640049456	6.13091226931776	6.17102607354078	6.33210227311431	6.18800899276653	6.18461274451616	6.17175081600604	6.05940730841866	6.09129614882774	6.21247068355404	6.58438194035681	6.44383306987948	6.15938041516348	6.27855579780499	5.78567894134617	6.33889520039977	5.97268550581399	6.03728250529665
+"LINC01731"	5.82648199461341	6.01536139006559	5.8594767463156	6.05047230661632	5.87901660319011	6.27725132502861	6.01536139006559	5.98737603366594	6.22894975166585	5.82767518346872	5.90626782278056	6.04328510403261	6.08762347294931	6.046724082703	6.15075566800966	6.03453289908257	6.14229503112758	5.82338891308551	6.01536139006559	5.8057843243555	6.10493483068162
+"LINC01732"	6.36544264160919	6.65061847630586	6.51145695032896	6.8017827763424	6.48299439754526	6.53423201367895	6.73369609403356	6.48083299820731	6.78882194061503	6.72640058084533	6.39487517988831	6.74177450814515	6.77099409520746	6.7669743151996	6.62842975955684	6.58437541025904	6.67542920796557	6.21140215000438	6.64172885085624	6.5657032002647	6.62757074907236
+"LINC01734"	3.9758718785051	4.22270164336214	3.92510255885662	4.34147127458604	4.00797340849196	3.88184018866015	4.28374738135068	4.16898284588884	4.43816071818595	3.95911003942734	4.20614534882997	4.16898284588884	4.32372974683446	4.38451027022609	4.16898284588884	4.28632597735401	4.16898284588884	4.25756286789336	4.09508130977747	4.18853663800991	4.16214121317657
+"LINC01735"	3.67685183163164	3.55177851530834	3.73116644235787	3.71922049448894	3.71754688705907	4.39184688991857	4.04452097851928	3.76914064581753	3.71031846596918	3.78045891325836	3.71820184049933	3.70793048110327	3.88770174046432	3.82280232472037	3.87531187056109	3.4751284194285	3.77321273504608	3.53670488635815	3.83132696672228	3.90341232430279	3.65879282723966
+"LINC01737"	5.28282189366477	5.54322475494175	5.50968603084062	5.68443731052719	5.5279995216549	5.41987872708407	5.45176751916041	5.45346584660775	5.52766246752625	5.35613241605433	5.29271740817149	5.76210527383299	5.50120074976405	5.36801181635937	5.71782264837887	5.50968603084062	5.5773514943438	5.49641116309745	5.3536598452017	5.57289323689239	5.78936195627456
+"LINC01741"	5.93172703088567	6.17052665256751	5.96824871888293	6.37609864262923	5.84457345465222	5.97089335499123	6.03226608175874	5.99309633998716	6.44462388154056	6.3816471450221	5.72560938723637	5.99337723802176	6.22615849649744	6.10032985748778	6.32221964561244	6.31790797506455	6.15139331957673	5.7227073868726	6.24976260104665	6.02117356694217	6.23093889611496
+"LINC01743"	6.06566229068473	5.97355752854055	5.92215013472151	6.32153620904278	5.92558819176264	6.37494121584033	6.55142929504014	6.13561731041838	6.20650529240054	6.12272875473113	5.78359530393586	6.09671510224502	6.32437686488728	6.57315055963413	6.07874791998192	5.94155687333721	6.1193694770846	5.98587070905854	6.36580031556415	6.09671510224502	6.09671510224502
+"LINC01750"	4.01554823336936	4.65791048247882	4.98631359818368	4.48630559295404	5.04567258466027	4.12044243759243	4.09973150190061	4.34227119376949	4.52420210569467	4.48360844097655	4.42984545191829	4.70486854228901	4.66758424585805	4.23271630466524	4.45742062859068	4.31662638053332	4.30291884282523	4.69869957813842	4.56611096825238	4.48630559295404	4.74448853971065
+"LINC01751"	5.47307792629595	5.25009610858246	5.3002455859977	5.49418829340837	5.43604477956549	5.35199056744515	5.39576317200021	5.24883358385631	5.64463774332002	5.5643003537059	5.12676538631144	5.43296097805754	5.5941733389914	5.50879959410251	5.5086106301349	5.58981026098024	5.56900480920837	5.20670853714861	5.3002455859977	5.40028486219423	5.5548751506298
+"LINC01753"	4.90408481068813	4.96010855761301	5.04376784625808	5.41585327653831	5.06366306715369	5.64372325546358	5.2757167685927	4.96575744933763	5.13828818287324	4.94186755387306	4.88208070053652	5.13862655427083	5.14600572170408	5.59899686591901	5.27517728259115	5.51403668859576	5.00812857263173	4.98217525080762	5.07334046895382	4.9587875305683	5.10408942337988
+"LINC01756"	5.40898357671446	5.77872950452485	5.75448997243942	5.6622635843867	5.69946285315849	5.75983354373688	5.81940088788267	5.7373195164406	5.82839564885949	5.67066651445128	5.48523692425977	5.76442302604806	5.67783903655617	5.60673510947652	5.84545676147427	5.69325769447516	5.6622635843867	5.61299322653835	5.89559230250605	5.53223151034919	5.74514879870506
+"LINC01770"	5.10126906038054	5.16866174371843	5.2865902210148	5.20130588075095	5.17608459798433	5.33714092052902	4.70588488266364	5.03128880563175	5.02743083049054	5.15777379016469	5.28519285933907	5.13512568023676	4.90308452254382	5.113358667603	4.84816436426684	5.27692266532741	4.98082647372946	4.90386679434425	4.98888843882127	4.7140796860703	5.31367395713417
+"LINC01775"	6.13102902954864	5.88518737932802	6.13420367422345	6.0762808911729	6.00163585670769	6.0791131279796	6.80517149686231	6.17421372004287	6.27367446295647	6.3134304061746	6.17170799057769	6.26717793195085	6.39622212047707	6.35513376632287	6.26150805604573	6.12500178986234	6.24035516067789	6.16178483972316	6.40448481529147	5.81869665805037	6.22470008196753
+"LINC01777"	4.70987262915666	4.98820866102288	5.11598639240416	5.07911029218384	4.68256760882831	5.00464271214721	5.28891484214516	4.84328933113086	5.22544714436324	5.22009625765126	4.76043086560033	5.27941117347017	5.25466832226891	5.31296491489908	4.9562154938029	4.93978077375021	5.03506882520839	4.87573514118699	5.15649658168416	4.84656116904861	5.067573878277
+"LINC01782"	4.19251877718165	4.36242742790978	4.60126326952764	4.35322855227505	4.22818300540514	4.54446635725982	4.34173748991787	4.20987104212294	4.30960292635376	4.30692160198797	4.17136501792353	4.11383030681047	4.31775436376996	4.51951283093699	4.35494137955512	4.43210836317948	4.14555839330344	4.23545004298772	4.34634699370544	4.23511846240408	4.32434995183916
+"LINC01788"	3.31250653498953	3.45729107760766	3.38238731642354	3.42700826508828	3.58347593986625	3.73251038155357	3.38238731642354	3.46086275212762	3.41512525990644	3.46640861713204	3.14571953457666	3.38238731642354	3.19588387028319	3.33454676940363	3.46856906090178	3.37744062641688	3.38238731642354	3.26062451425662	3.40596522443178	3.12626806687691	3.39475866638523
+"LINC01792"	5.5843621182567	6.27644630676056	5.19947777580277	5.81559383037049	5.06798827981839	5.33365985956415	5.07028913994245	5.26590355278674	4.24160719828088	4.79691369433051	7.05741336596542	5.58304011545698	4.75799280259008	5.02707169012337	5.10346529558593	8.06915359062749	5.47794860152944	6.845115596813	5.43636039590311	4.55561131832875	4.91912212229306
+"LINC01797"	3.66921898609584	3.64412061090917	3.62082693169066	3.74095376285209	3.6701875007496	3.60484885312332	3.5888080899567	3.59417863786911	3.8386769992448	3.64646847182225	3.56804362954803	3.55687289453521	3.81511352059169	3.58849460622507	3.64412061090917	3.64412061090917	3.89824422617446	3.54465951908475	3.78582476522524	3.64412061090917	3.81043729661376
+"LINC01798"	5.18391081129588	5.09658956265093	5.16304009926144	5.37843445269722	5.18572128860119	5.04962790995319	5.26041101412056	5.17523318928621	5.28029333382673	5.18572128860119	5.06939143960661	5.18572128860119	5.30840203178407	5.46735153183912	5.27928601595121	5.17654885154992	5.12625495061945	5.03072537550029	5.13947616219405	5.31349769449284	5.15762929415439
+"LINC01799"	3.11714131947169	3.16942888246539	3.37443330704767	3.26998704462456	3.27502374286881	3.3088235673074	3.59530568004406	3.22569488504146	3.34439686056485	3.27502374286881	3.31509112384447	3.3606955708908	3.49907232928224	3.40301086684816	3.16489455702387	3.21939531095061	3.36844833676868	3.16942888246539	3.46179383442055	3.02316904323729	3.50007458578122
+"LINC01800"	4.10860839540638	4.22418977974962	4.19333307720305	4.57457427526394	4.13549519606853	4.27918759677994	4.28712608194732	4.11660018452018	4.28223335058899	4.26219550346125	3.94673343688027	4.16719656255294	4.2727655891514	4.41834438469808	4.39662897218242	4.26547151151123	4.24493473132615	3.79666394615104	4.03771313355036	3.93831098697083	4.18491202607346
+"LINC01806"	4.27506787166942	4.23622771879099	4.52935572669371	4.74575989624927	4.4126047761742	4.36204416682143	4.3478877348871	4.06175424020247	4.32409947777383	4.33394981163914	4.25545230767363	4.33394981163914	4.50371224606453	4.33112615426891	4.53950263451484	4.34268586131626	4.29658613451535	4.25026369305574	4.26980369469812	4.33394981163914	4.24709959842138
+"LINC01808"	2.97243521237054	3.05801278584898	3.23584297489001	3.37548528156608	3.00731589065858	3.27545122814158	3.27565299073416	2.98261089861906	3.20641552222149	3.00486005959046	3.06103971480134	3.0440711855353	3.10592479729976	3.05957023985846	3.16963078527008	2.97808442695748	2.98400369984491	3.00669132336617	3.25152714107005	3.18193478552705	3.10063991734212
+"LINC01809"	4.1450467401542	3.97521665806832	4.06889118233192	3.96233319802419	3.7995834589752	4.24767376013403	4.0412727960807	3.97521665806832	3.8206831859463	3.89508892424043	4.05884022256549	3.99403634798209	4.06022677955182	4.19727726740024	4.01969636858814	3.78828634099557	3.81664136487886	4.1119194909369	3.64091073036222	4.04264829245454	3.99511137660476
+"LINC01812"	3.95171049309098	4.1625515283472	4.16991246567031	4.34227119376949	4.20764077458357	4.62271723338145	4.27968594177089	4.19774732639641	4.1481137791018	4.15782005000353	4.0872072286748	4.43373804358971	4.44580439754017	4.03090341487336	4.08716101503962	4.09508348625847	4.15782005000353	3.91977967638055	4.13509712351344	3.99663175216783	4.00097751515794
+"LINC01815"	3.04155607257431	3.30836677292992	3.1043820620516	3.10937446969377	2.97097945640702	2.84091894558885	2.94043680462551	3.0690095889008	3.15946486157551	3.13319393472145	2.84491659315103	3.09311344579128	2.98600555152757	3.02907092712455	2.95970040166666	3.00090023787856	3.08026577796219	2.96017246337666	3.04089242771176	3.11303404305987	3.04385858196007
+"LINC01816"	5.46967167508567	5.22420819380145	5.38339884391409	5.34810385551279	5.14613305659917	5.37343804586435	5.43473605306398	5.34810385551279	5.42706650004658	5.34810385551279	5.45561161675821	5.46434816776618	5.39576317200021	5.59765158539526	5.09042351469317	5.48271578849854	5.40458120277626	5.18074969781282	4.99618240039275	5.2685945875056	5.55388877118863
+"LINC01821"	4.29338980717802	4.36851930258867	4.72335704166931	4.55736137916442	4.53016825283582	4.37923169359824	4.32351478355936	4.36663876325607	4.48786289458307	4.49638971226358	4.38539616791175	4.58256598078058	4.49119310582226	4.37101569413007	4.40776958031345	4.39839560158923	4.47728870332199	4.09855611336279	4.63147694229997	4.59937248235392	4.37028475501081
+"LINC01828"	3.21374124745754	3.27605695764013	3.29323532214487	3.16651853559824	3.20608645687323	3.43420335068928	3.35752275643712	3.22328918622248	3.25100402166295	3.27605695764013	3.26864648586705	3.1828750115148	3.4546142037271	3.5561686377574	3.29667747672482	3.32646934760746	3.43561657898329	3.18412367808375	3.1346846866335	3.15655443353309	3.30475481764231
+"LINC01831"	3.88924371890748	4.01288364967993	4.13608276286471	3.67452603216452	4.0881599502915	4.37366959765716	4.43140743946899	4.03074692590331	4.21971147402759	3.98096159325841	3.78136886495655	4.04841854545655	4.19576199895831	4.36501616675229	4.05712578013757	4.16834696793861	4.10799420880531	3.88701315236867	4.20250170038224	3.92425646467911	4.03965431795268
+"LINC01833"	6.81224347775147	6.30797055753712	6.27234979347382	6.19533970632118	6.34632927099059	6.29743684399404	6.60958570532346	6.40014051604749	6.52329467443264	6.14019872511372	5.70476305037883	5.89238631022145	6.03863746625897	6.65148123200678	6.02186597975106	5.87051737755007	6.16338232955149	5.55976934822003	6.07816500129708	5.57685995361951	5.99140298408889
+"LINC01834"	6.18639789329534	6.34471952759527	6.16891067462898	6.53164588185868	6.37638646470725	6.44620043156737	6.34556761880098	6.27580092662677	6.4215406125749	6.37597512361054	6.30599942864841	6.37576355848251	6.38920370825806	6.43462373340129	6.35151024534565	6.53243586772441	6.52571702449314	6.12573252684986	6.27603284572114	6.33486472787957	6.37829525789806
+"LINC01838"	5.39310875945871	5.38279261274809	5.14623121082906	5.81020665135919	5.42462578297489	5.43300576023898	5.26305231146742	5.24598446249139	5.65289320591606	5.41136251402836	5.35053021313841	5.44363590890096	5.55951091382998	5.83203569295402	5.43300576023898	5.48673353793633	5.50490553967271	5.05115659274767	5.43300576023898	5.30908183872663	5.51874172473547
+"LINC01842"	4.63712609018908	4.8096321982668	4.79858362505362	4.89839313893544	4.65507135162695	4.90584765035407	5.28936785682621	4.88175692707423	4.81265673058315	4.80589088998748	4.58991090260346	4.84559533015649	5.08323018767906	5.26057333500165	4.58781656803334	4.45982643126189	4.80417664463285	4.57047032591778	4.80417664463285	4.79767126510466	5.07996763878813
+"LINC01843"	5.24234087974568	5.18586372504192	5.16021212922478	5.22746505502489	5.26077605567095	5.40571164264145	5.60756887475065	5.24820139021353	5.07314944428185	5.19375602781767	4.9665305028595	5.18739999897925	5.22746505502489	5.65268726096927	5.09302131793153	5.15341312748274	5.33237345233985	5.19111269770463	5.12906069912838	5.43885826113292	5.35029694462689
+"LINC01844"	4.23561449809244	4.24484321996822	4.76274682427842	4.22580346208932	4.22580346208932	4.05062543544383	4.20479628536753	4.35812463614834	4.55171507465889	3.84906515902484	3.89226667941683	4.22580346208932	4.04665703470982	4.38673655448313	4.04628345757661	4.34057268666813	4.32852228322232	3.97360029843486	4.32747678822555	3.89624835825572	4.10894856945868
+"LINC01845"	3.64906762641824	3.83615682850753	3.78614463593132	3.89306276829638	3.82895210080003	3.71282610623651	4.01832003680319	3.89612612831337	3.87208279014389	3.93805128737022	3.68495940990438	3.90572238507405	3.95107639744656	3.96116167087466	4.02902103000701	3.90887102233318	3.76378319891387	3.62718948541951	4.0520735567403	4.15064390220833	3.87208279014389
+"LINC01847"	5.603433970189	5.93072281946866	5.58877500273711	5.63538484331238	5.58280323760662	5.75388977035453	5.62036964032575	5.52044169209661	5.74524962014388	5.63538484331238	5.35570568130416	5.60602394111443	5.59332536659075	5.65026066803317	5.76210603453895	5.72865849372181	5.7662511083396	5.45124121372987	5.63812483837373	5.51846167136185	5.71294229037515
+"LINC01852"	4.05387342570226	4.16929717097067	4.24033533765474	3.99454767556393	4.38801605000537	4.02349323785939	4.18397068494656	4.14346068908946	4.36408344450089	4.27332286264997	4.24033533765474	4.24416157705329	4.24033533765474	4.16738125905458	3.88098270525149	4.77378723792237	4.59458096683941	4.43815244739043	4.19499890444758	4.34054396337165	4.45597147795325
+"LINC01854"	4.35034604315365	4.37808505450667	4.16290903341522	4.58656865186173	4.20132475811359	4.25447397826269	4.20660691295991	4.43889449940455	4.13041833933023	4.22054530597815	4.34057268666813	4.56597355323367	4.23693658959456	4.51654072031177	4.333900698021	4.38881893539784	4.39986931189391	4.44584753401288	4.4320365461721	4.1463698307403	4.56170191489272
+"LINC01857"	3.25404028047609	3.49900814348439	3.49044216701812	3.52219679379116	3.26852095940194	3.29656612147999	3.70034397628044	3.39466415280945	3.52702448159561	3.20722492333442	3.2380132683756	3.39466415280945	3.65496242444925	3.43684315135274	3.42598080769835	3.41964096305573	3.61315894461275	3.05251165105041	3.39466415280945	3.22449094222398	3.42394452812855
+"LINC01858"	3.67721151114116	3.64483736777439	3.44727777213653	3.7686236235222	3.7796043599304	3.7055478359041	3.87495398230561	3.83353097716374	3.7686236235222	4.03649058393502	3.7686236235222	3.92725826311076	4.20954984641821	3.72331376554873	3.57810204800463	3.59184200695385	3.78096071350717	3.67884275111033	3.94739223749456	3.64143301939911	3.54841865166104
+"LINC01859"	4.18751993050956	4.08193599403084	4.26188642434195	4.00748313909585	4.09409533660969	3.96884469041157	4.46220063625037	4.18738145614333	4.00200263799335	4.17264410578877	3.88690871714819	4.14064342846841	4.16949189971608	4.23232894469196	4.1596049330447	4.02274177358138	4.17522600329829	4.16083718208137	4.09540780032943	4.12590318330011	4.21177598739958
+"LINC01863"	4.29359406781014	4.53017927956101	4.4685836936165	4.51143057752331	4.32049471235246	4.70233467639813	4.62121151118874	4.61738986277418	4.36577078832968	4.52126320276406	4.36491310140467	4.78132342621167	4.52126320276406	4.94677603681819	4.54404961479429	4.45165987666191	4.52126320276406	4.38868458282386	4.7703019131099	4.4975031636977	4.52160126329985
+"LINC01864"	3.40303315104364	3.54430968756418	3.51276747020061	3.58657035912302	3.66813255438767	3.51679587949432	3.71904122505905	3.56026433066999	3.58657035912302	3.64652604061012	3.53033299889337	3.72727598828041	3.62865999243628	3.78119524394861	3.45090027213722	3.46647992876673	3.63489899387117	3.43055236460867	3.51116646506809	3.61610325979897	3.67884275111033
+"LINC01874"	4.10043930671766	4.08493428642403	4.1875483004356	4.43630691761536	3.97521665806832	4.09579224507231	4.49773982969513	4.08360101167191	4.63308218267091	4.03973759897389	4.32376896762705	4.31197967666718	4.39893437511516	4.34921545494278	4.34820288507055	4.31197967666718	4.66242120768952	4.08484092896464	4.46241330216009	4.12353130374694	4.38428765178345
+"LINC01875"	6.55979565448858	6.79388202910105	6.59613623206765	6.83402885920928	6.6235425394806	6.82632357330451	6.50082916441854	6.77290876645159	6.94012957073497	6.74480818178523	6.54541507456145	6.85354074138533	6.94281892132575	6.93183275577015	6.97870718228701	6.7151534708034	6.84085549251671	6.65734934784014	6.80923954895076	6.48878182774364	6.98576006524968
+"LINC01876"	4.77905584191363	4.84510302606938	4.76011016341712	4.91639880169757	5.08592671815191	5.03434826512024	4.86314114692064	4.92300243498012	5.14393578922778	4.91063919427855	4.6966839333199	4.94892619746842	4.91476696379726	4.83993265971284	5.04124361790071	5.04132424420104	4.90989779362154	4.95237032793915	4.72046520671804	4.85790626993279	4.76525815447576
+"LINC01877"	4.84639053016199	4.36543174468676	4.26018537249411	4.27661992744492	4.51333241519681	4.45503733336714	4.23284473602523	4.29280307444667	4.51353201829715	4.38543965427468	4.63058246034037	4.21449949937516	4.52747026270761	4.2059528612289	4.13038632121534	4.95072057158362	4.53451809875167	4.67883239879899	4.07452456473319	4.27967457926167	4.62343804429534
+"LINC01883"	3.58311393249725	3.55286953002092	3.3456203082	3.7788454517959	3.56742355509618	3.4545704957119	3.77579575127561	3.6877575846071	3.64244440333094	3.6540799140137	3.31930168402731	3.6068001253794	3.58657035912302	3.47178090713631	3.5985855354401	3.55998804985371	3.5985855354401	3.61317960628087	3.7300145389108	3.61553741173628	3.63730261290624
+"LINC01898"	5.08835747391066	5.09780896125646	5.09590501589381	5.24173139670587	5.10623477869919	5.28981692876553	5.56664537551693	4.80980877559108	4.89043056447276	5.17516146564391	4.73600429214817	5.0505426774945	5.09590501589381	5.18069554094645	5.09590501589381	5.27957670993589	4.879755604757	5.04677427911067	5.03310102757625	5.16958994221026	5.16211282379105
+"LINC01904"	4.94205871836971	5.03971249979516	5.05380386979304	5.28052542940763	5.43232059836718	5.54617562634955	5.40469082485515	4.96232476745986	4.94965051467027	5.20072076001457	5.00161227942876	5.1883471170864	5.07461101866475	5.54442970319683	5.14826146893158	4.88034610958363	5.40813448716145	5.12746650795198	5.03898190115968	4.83626930817858	5.07707840479438
+"LINC01905"	5.6121205992368	6.04285539774325	5.75494695538263	6.08140927967311	5.79831187144687	6.01357865923707	6.04803125302404	5.76601328436791	6.26264219466548	6.08140927967311	5.85735261599813	5.8704121990033	5.9277479184373	6.09470636228604	6.08623198365182	5.73498005932458	6.14447575633777	5.66912798737434	6.11434061933817	5.99723805482832	6.14534838316141
+"LINC01913"	5.2808466615151	5.38778374631181	5.2471862695051	5.30814410436628	5.33853103959405	5.40557522794616	5.62035649449876	5.28239149777088	5.52679589023293	5.50234204653041	5.15855997227485	5.33602141453495	5.45202265966681	5.47583723313695	5.33853103959405	5.35763170561634	5.3051998187039	5.1805457763234	5.38422001669963	5.3609438723283	5.35521315534748
+"LINC01920"	4.37253480609131	4.32505323563182	4.42789219756974	4.66286588046113	4.52346340262301	4.69774693573898	4.76555625053382	4.47976631488411	4.39228248022564	4.53585511811385	4.52346340262301	4.73262929973499	4.65382402234852	4.58201414185363	4.55019398468198	4.59018535118199	4.42177015626527	4.19519361641835	4.50875412591605	4.46466253241372	4.72569130081395
+"LINC01922"	4.90314219037075	5.15857791436363	5.00722297193353	5.1588401651177	4.69895205803882	5.10608468782868	5.58870940745539	5.28775252340005	5.16501849082853	5.41001355471511	5.20735813116445	5.3624552605677	5.20107765868412	5.04736367119626	5.28437882898049	5.36352667385322	5.16501849082853	4.85203274786942	5.09644371664133	5.08453216377965	5.17298566423732
+"LINC01924"	3.84865476033831	3.9053887707784	3.83527851353043	4.07605302923454	3.91747881625649	3.91747881625649	3.81721407449389	3.94616368855426	4.03767446091187	3.89734391819373	3.58759051967307	4.01323591731498	4.19383843443343	3.87389052681086	3.97631045021802	3.91747881625649	4.02240833830597	3.80877484997061	4.05619611466034	3.94687939999085	3.94847753638272
+"LINC01926"	4.87847135558124	4.98912241401395	4.76321708448907	5.31939256376115	4.83804499935505	4.83830019254969	4.87205891480841	4.95787286017306	4.87614786721167	5.08726084146931	4.88018560093587	5.12169514416872	4.98214061776436	5.12878861225928	4.94847445344413	5.11982946640224	5.08496476174683	4.65238838590816	4.91764235710775	4.98592120682272	5.11352292195085
+"LINC01927"	5.48254799241111	5.33873055349132	5.42931825653153	5.71578902883612	5.32415430414459	5.97447456808445	5.75121398598481	5.61556514466503	5.44344634367234	5.77884810085737	5.54381957723697	5.70966074920803	5.860326843199	5.42677867586698	5.68235197379247	5.63386625939643	5.76736464001596	5.32850455808531	5.70491146600838	5.69507338579339	5.62672961031547
+"LINC01931"	3.93036029449966	4.02844686244112	3.79733085135881	4.13732154048034	4.02844686244112	4.06130786701419	4.14918919958867	3.95195875921803	4.18972981208702	3.90730988756462	3.83353097716374	3.89418061684289	4.1907981165151	4.21131173191619	4.02844686244112	3.99856056565658	3.93037718341871	4.01803000669945	4.08583791360896	3.88181998503035	3.92553751574483
+"LINC01933"	3.24136579083467	2.98260409192081	3.35487340045534	3.48233689527182	3.07733057768996	3.62709117253321	3.55333904078858	3.25647031765012	3.1153046786757	3.29758915620594	3.2371083959586	3.07838238089263	3.29483327044272	3.07549551173383	3.4964770016025	3.36717763127057	3.17142238199706	3.34138443186464	3.18738796415706	3.25642311970676	3.34849257262072
+"LINC01936"	4.59988567840163	4.55628673599804	4.66508053983034	4.61552486600255	4.46968640188996	4.55700134947899	4.88143394837017	4.45676219968756	4.69042819687311	4.63835016680921	4.52354309132118	4.56108873954747	4.82448631272243	4.65029288499483	4.88334573574362	4.65029288499483	4.67798824061651	4.6793320445837	4.68843383983941	4.56247591098546	4.63738607543295
+"LINC01949"	5.8572318944705	5.7384043462742	6.2529194330256	6.07114353573419	5.80237546457654	6.31046896733698	5.87469645213861	6.18111237107117	5.82344194218199	5.55798431265078	6.11524583030787	5.84292457330822	6.32833817694276	6.19840989508873	6.22090497639271	5.38172850820963	6.00637921996272	5.5875020485258	5.82888605221396	5.31158007986677	5.6936386294358
+"LINC01957"	4.08022174867621	4.08022174867621	3.88518854606558	4.08022174867621	4.01795649724613	4.11839007217144	4.35004680668698	4.08022174867621	4.12879784307192	3.97590835668355	3.98737934156582	4.10637772638335	4.18905584492177	4.24403293087103	4.14380836881189	4.0121748754892	4.08022174867621	4.09101616577398	4.06945217179942	4.12878839499438	4.03600099560098
+"LINC01963"	8.59801154660004	8.59308243509797	9.28170123497164	8.59483964355276	9.55933904332327	8.64703340357349	8.46023714133671	8.41471199946651	8.77160291745429	8.9178293109975	8.31531815825343	9.38405204921516	8.18835635161915	8.18714604775229	8.8575526574263	8.44982054941843	8.71361210495117	8.81705915115928	8.33281838264745	9.01291754635512	9.11241905870726
+"LINC01968"	5.73679731833748	6.04209217277254	6.08361367529484	6.10513233044408	5.99151691283919	6.08361367529484	5.92930337443668	6.10956765500006	5.93611929826295	6.08361367529484	6.08361367529484	6.11167493236759	6.21045353527062	6.2243104808487	6.12429689480386	6.19550472162689	6.10796481729608	5.78009932052152	6.07854110773496	6.106145788579	6.06522638004076
+"LINC01970"	3.57589673138017	3.64751675911982	3.62031975850268	3.6709446329114	3.65037006164482	3.24568058535537	3.43009969947369	3.59675286554188	3.43009969947369	3.44759835925762	3.41292924085722	3.59222776405588	3.3843436691389	3.56384998773953	3.69390894706763	3.70619256260215	3.58332609306745	3.59222776405588	3.59222776405588	3.65022898986867	3.59222776405588
+"LINC01974"	3.76941806801184	3.9887376250415	3.76788051477118	3.91977967638055	3.99677021915608	3.78888257927985	3.91977967638055	3.8480727961416	3.98735349298664	3.8874633388505	3.53941386675763	3.99832844555963	3.95118133880183	4.37742842132507	3.95763074632732	4.1380200585504	3.92216177577978	3.95031565988561	4.08042000540061	3.91977967638055	3.75016918005346
+"LINC01977"	3.66289535154076	3.57710140392168	3.69629974485397	3.80945133483383	3.55933779649569	3.60805333260898	3.65067173657386	3.51582780812801	3.60678833218049	3.78544709798736	3.50117372901666	3.66076069256676	3.68811255848691	3.6653519689591	3.67588039679551	3.66076069256676	3.73143328937377	3.47730967410847	3.79223450345717	3.58852895318481	3.66076069256676
+"LINC01981"	3.09626873984144	3.12159322500349	3.18147503442092	3.37585553100765	3.23133600545421	2.9851627804262	3.30622735861566	3.11695253507155	3.46171046733692	3.28923728543045	2.84719069273881	3.09490221500205	3.2123360342483	3.08562713328683	3.14780442277128	3.19055421191836	3.14780442277128	3.01978501771485	3.1338691368104	3.30503195024174	3.14780442277128
+"LINC01986"	3.42028935495317	3.43103212634238	3.43222805423949	3.60097344259552	3.53087471316056	3.56553024601781	3.73972058250347	3.47047472904997	3.56446959354363	3.35173792119535	3.3441691426027	3.61696781225094	3.53647437998244	3.63546564338445	3.56290835212687	3.49248472583893	3.61513935584437	3.15661021599238	3.59190719849517	3.64412061090917	3.47975733199725
+"LINC01988"	6.57660321532152	6.55749779964652	6.77126328638944	6.61008377229971	6.3999391037618	6.69363286271326	6.96735835855365	6.50948802718316	6.6683728510754	6.55749779964652	6.43026811236453	6.57660321532152	6.70750642401595	6.6319800839003	6.64883299737564	6.29376540798204	6.58007288807474	6.30664443747112	6.59112912596968	6.45875966682766	6.61987545933154
+"LINC01990"	3.38655269972894	3.42060737081822	3.26373281625404	3.25672841002224	3.39479614370664	3.2853671540139	3.27111884383015	3.22569488504146	3.2853671540139	3.42598080769835	3.33098961297303	3.14018876841199	3.21566055545705	3.23158004879416	3.3434369613487	3.69064482934087	3.20806207460628	3.4169142212934	3.35121881753845	3.13661218252123	3.22569488504146
+"LINC01992"	4.83851391392687	5.27165630683407	4.61282168969298	4.99567777571252	4.75799280259008	4.95771342590708	4.89766551256675	4.66708105169871	4.97996265113183	4.88548364385296	5.05082202056113	4.89964361857228	4.50309799233733	5.32750398106339	4.97096891687511	5.85836017714234	4.95156878901932	5.17518121758098	4.95771342590708	4.62140192282904	5.62350660025909
+"LINC01996"	6.0402556351199	5.87622018444354	5.8645486989115	5.99751344252209	5.60199016297122	5.88154576985869	6.1810496635403	5.91289445870039	6.04500853501844	5.9745716203462	5.93565744903606	5.68378592412652	6.21889970278174	6.08936156716148	6.09760567669382	5.93062501468951	5.91957785556508	5.7748769653318	6.02864671221527	5.89960573229592	5.96448716297629
+"LINC01998"	4.38195550432831	4.50687471081026	4.12676113044433	4.33844436933875	4.40638127791429	4.2519217843401	4.72083029964895	4.18174527009147	4.41847005809256	4.38808377402408	4.10785459363045	4.3274731944278	4.29100441079746	4.60670585750243	4.23935465152662	4.33844436933875	4.33844436933875	3.96467945517776	4.27922150715293	4.29881814253106	4.42360645071862
+"LINC02002"	3.00094053756321	3.06680535235828	3.08319986501173	3.0768461069553	3.10543631177619	3.0768461069553	3.13421979119779	3.14667672718487	2.91578308500976	2.95436712456358	2.88609512328147	3.00608688573922	3.05773804002115	3.13945592762749	3.12899323845616	3.09943728697917	3.04998886471477	3.09189562866934	3.26795668915309	3.22242832796621	3.0779064632769
+"LINC02003"	4.78484633716963	4.62787845661053	4.62787845661053	4.4338526546948	4.61657824630528	4.67190246582114	4.97648451169563	4.62787845661053	4.99436969066368	4.55150978999916	4.57998302567936	4.61906513016273	4.77572915589554	4.79338667743985	4.53950263451484	4.53447051078325	4.67190246582114	4.45900045072086	4.5639017368531	4.28732300151194	4.62787845661053
+"LINC02008"	4.54751080496412	4.65799469177519	4.42637089954327	4.91100454531016	4.72020818026601	4.74562172082699	4.50094260988838	4.71352187145289	4.91790441435184	4.79267009684831	4.50050017811944	4.94478106751786	4.7437621603396	4.63198173138059	4.79677792269864	4.77576647198726	4.85669056978668	4.61581832119707	4.82649541785303	4.61609032319006	4.77752971238438
+"LINC02011"	2.94898412806193	3.43652353922227	3.24257617323918	3.47067716820692	3.48486060233087	3.72671723653011	3.40318645147722	3.38575549487663	3.35173792119535	3.13823733858116	3.23849913042189	3.19974090533624	3.32748649330288	3.29876296176528	3.21366552059147	3.29876296176528	3.33895357987209	3.1317262942624	3.07845399843464	3.41152560320771	3.33868875854388
+"LINC02016"	3.63057511081452	3.49448116288275	3.43908758626347	3.70753357287856	3.64573221274722	3.71257027112281	3.60683511117734	3.57249301860904	3.82400026659505	3.5337624951172	3.49220558594059	3.50126487574792	3.68780946741471	3.7935406817352	3.75052722592416	3.68408627533517	3.49520045932644	3.36210884575882	3.67675271304869	3.60683511117734	3.75911752832554
+"LINC02019"	5.63606461168313	5.77319539972017	5.46022208161972	5.99623145162556	5.47542763050103	5.66685663351489	5.80614035691717	5.50691483065091	5.70548452744686	5.68143474943783	5.70230056550291	5.61289054291864	5.97970563295468	5.81431591431247	5.72192560584841	5.6904976826801	5.63409338095334	5.70081786927765	5.91118767388379	5.48808203736984	5.76818063569601
+"LINC02023"	4.30923821664179	4.4294223167126	4.2803741222775	4.4338526546948	4.60202883286007	4.59955035842682	4.53978155004272	4.40924112777374	4.45116199221123	4.52711969288445	4.36489393657253	4.19566975966605	4.25269198707689	4.54370764986971	4.56665823082348	4.40782748608982	4.58618461838632	4.4294223167126	4.31944711674189	4.28129962039672	4.40436481835987
+"LINC02026"	4.0198755892279	4.14765199511955	4.02315000925945	4.07664366214924	4.20354646122541	4.14193382758324	4.24117803972197	4.13848633681027	4.11466447012433	4.11188474869902	3.44482604714769	3.9753254769778	4.16109693436981	4.17626550194899	3.95533602509631	4.0198755892279	3.84054160309622	3.61882439365777	3.96173329163897	4.03973138480267	3.84746626312462
+"LINC02028"	3.70888294455536	4.14360242566386	3.76013395221096	3.90073689202687	3.80895011472756	3.60541420382153	3.87374583757838	3.6687271755019	3.90073689202687	4.04477869023977	3.90991583149193	4.05923726344154	3.96813949652831	3.81255305183365	4.02721354613031	3.75398280725682	3.90927039185552	3.73817343203256	3.80398496085852	3.90329673520826	4.02736509872968
+"LINC02029"	4.71670958279437	4.6380406562729	4.5761537666689	4.81163735278176	4.66658506010794	4.60550415194538	4.48478912048563	4.60905867835041	4.69241028685133	4.4426432835393	4.4124439773282	4.55861238086512	4.60550415194538	4.48771492219293	4.68631660129669	4.73892286866892	4.6134102404384	4.38868458282386	4.4282702816823	4.82661606655634	4.60550415194538
+"LINC02032"	3.95093886434931	4.01315725997301	3.95093886434931	3.88221561547879	4.02557194882594	4.45938329925477	3.93403255935497	3.98316271650398	3.9944204973324	4.08193599403084	3.99568712516165	4.08123212207994	3.99492935268207	3.99568712516165	4.0394557908095	3.93655827840327	4.15477542028395	3.86435071061404	3.9112486592603	4.23077547131773	3.91792148573757
+"LINC02035"	6.97550046342856	6.78151966676296	7.73481220953432	6.48736446627437	7.17501033856496	6.6417428108968	6.70184503480271	6.7497977639143	6.68138355060608	6.94481854392199	6.91039485873343	6.84197817604516	6.14801723745287	6.62057329736231	6.6321651227495	6.91835737575998	6.87096972150028	7.3211215770367	6.40819979281345	6.8114095725407	6.70052456767945
+"LINC02036"	4.41034230376889	4.35819486189543	4.28252764118188	4.40342728579559	4.49497619638741	4.39255428096856	4.72082777357464	4.11145877911879	4.16829218561076	4.57362197776972	4.35279205198275	4.4410626275528	4.38868458282386	4.46425112283742	4.21345111878295	4.50105585994876	4.43768970979102	4.32396829404953	4.27660249314656	4.60858223819587	4.29297418396106
+"LINC02042"	3.49708391336371	3.64412061090917	3.70123258842106	3.84232318792524	3.63970291053741	3.60683007079117	3.79052710364921	3.61318320712878	3.61017182340081	3.66145103188773	3.57003651152252	3.7759519024746	3.64412061090917	3.64412061090917	3.71724314579447	3.56631331944297	3.76389096144608	3.37529893542131	3.75402663690736	3.45752169220201	3.8139557032472
+"LINC02043"	5.91235097334408	6.14893618509495	5.96976327029971	6.28763299474171	6.140020108298	6.14893618509495	6.10971679123371	5.99002292163716	5.88561868067105	6.24153016962317	5.98580094868961	6.23716759460518	6.2030763496523	6.40220405043551	6.10770753087399	5.97548847407403	6.2379227388423	5.87892373787893	6.0862646402511	6.23366394236885	6.33996187742872
+"LINC02044"	4.98851000092622	5.28823711204031	5.05014096909398	5.09079933451989	5.03099365768785	5.09122390903668	5.0252938039172	5.10050304169266	5.39409154333778	5.10050304169266	5.05939630214617	5.1384297898096	5.1684946415271	5.1582864069101	5.17897583377368	5.10050304169266	5.28487093859175	4.72450232397677	5.07631693048693	5.05159580772074	5.10629756697515
+"LINC02047"	3.49359682497609	3.47115147475991	3.67774476072518	3.49359682497609	3.50117372901666	3.64060044869596	3.81655835185717	3.41685779990005	3.4142698513857	3.45067059336198	3.23035934483101	3.53070793134736	3.41766225968778	3.56750672331454	3.66691631966092	3.46453277623236	3.57111868933618	3.46004250154957	3.49359682497609	3.51891603074055	3.49359682497609
+"LINC02052"	2.95858194751539	2.99062165430193	3.18732221820056	2.95561579326708	2.78975092114204	2.88127798793653	2.95561579326708	2.94827435322564	2.99154107492455	2.92361511594672	2.8593702642423	2.96903143272886	2.96819052581069	3.15794825315101	3.10120094468909	3.04663017880839	2.92054974572238	2.97156687928846	2.84119197096289	2.97683147605012	3.01538528964233
+"LINC02053"	3.51008542362363	3.47562030042948	3.58787442464327	3.47562030042948	3.76750325329338	3.73458533637338	3.77643946852872	3.55969993101081	3.31927658579157	3.40042737911116	3.50475858721365	3.40374128584361	3.31195035160205	3.99060428360355	3.47562030042948	3.50703141004968	3.46820216945879	3.34461751560649	3.3627849690655	3.45543993057874	3.40042737911116
+"LINC02059"	2.96079777399362	2.92614345861479	2.94906970106365	2.85887083082567	2.8167417688565	3.13678810173251	3.09310513443872	2.94906970106365	2.94906970106365	2.84358745289624	2.94906970106365	2.83896306811223	2.95315517753799	2.95901080596404	2.94596401718843	2.9120169379651	2.98803313023983	2.8261421626969	3.0893940768799	2.94906970106365	2.77726975570204
+"LINC02060"	3.43819918829605	3.3024339101175	3.4120057173606	3.23617503959147	3.50774705045963	3.37156686501397	3.38458309033656	3.40314433864648	3.07819036769761	3.23905703290424	3.05251165105041	3.2831585096281	3.4518677684493	3.30461066730158	3.22616015449218	3.3024339101175	3.25657012164937	3.13253289795337	3.4628328182999	3.24127217281784	3.15913260134919
+"LINC02064"	5.98024863295364	6.14489976527985	6.20415181235415	6.41334961353947	6.30403703819305	6.33826500249025	6.48809235027579	6.04230119529415	6.37252548584476	6.10034870968083	5.9555614761132	6.41103750569713	6.30455537381175	6.53810729014132	6.31695399146274	6.17442781484707	6.20741095418478	5.8046063198732	6.03368322293491	6.43035653009328	6.3824235044607
+"LINC02065"	4.27741526730002	4.34545781705735	4.52491742047192	4.2947555142345	4.52422380659417	4.32131409260243	4.53695094520731	4.31753027832902	4.30817614933775	4.48756807684249	4.12590318330011	4.34086525151014	4.40754691285559	4.78259148888366	4.63905919685945	4.53498836803494	4.41934056536966	4.22838843609742	4.34634699370544	3.83892260994617	4.16910210131818
+"LINC02070"	3.17743357323375	3.19083666701576	3.18732221820056	3.19974090533624	3.18017625384602	3.43559048316505	3.2680399176211	3.18404779816901	3.14054053275981	3.33811967386232	3.00686273033534	3.10445188916792	3.17244348900236	3.18968143754805	3.25821876307101	3.29160914988534	3.2371083959586	3.44927333376118	3.38628909752641	3.22181044712707	3.28291574234189
+"LINC02071"	4.83217483763834	4.89012718125362	5.27182559036591	5.10713234781921	5.0288496356492	5.28139219545173	5.54185791231188	5.04384294345482	5.01854887358116	5.17268548589662	4.83661723084843	5.02631291902107	5.18387256476487	5.3251154393773	4.81512069944697	4.97816617540791	5.13228108529394	4.84263301307684	5.03180048908618	4.80432019917461	5.08494688055358
+"LINC02078"	3.93882394532598	3.91400825726421	4.04552856577459	4.29938893389525	4.08655619083781	4.07482403187725	4.46068882167394	4.21238847664895	4.44149871694996	4.40873332058162	4.21241061662282	4.62772821750187	4.25964472169835	4.31652768609269	4.28651658114755	4.15067957473779	4.25964472169835	4.18367884944914	4.43068115023624	4.04213083705807	4.26431117626192
+"LINC02086"	6.29225432639875	6.50864653153082	6.3445747387859	6.77093698053832	6.56677412436483	6.8266075346231	6.74241402861088	6.38904805786668	6.73833579171416	6.59622211023838	6.33566757158246	6.56677412436483	6.65492783794809	6.8641340676263	6.56677412436483	6.48659855365978	6.52435249626539	6.44823947244128	6.40916109406167	6.69287057605668	6.4701845679525
+"LINC02092"	5.73971809950586	6.11728190228033	6.09902370161592	6.0580826474935	6.01562607295354	6.0580826474935	6.35188783032185	6.0580826474935	5.97467762681966	6.0580826474935	6.30082475669226	6.11880124770444	6.0580826474935	6.30176688026685	6.06259048297169	6.16347184641124	6.02489568304005	6.0580826474935	6.15728926975412	6.00527217491772	6.09020812491613
+"LINC02097"	4.12818654285192	4.15278547414904	4.08877213813578	4.38896331122726	4.29722859935955	4.12710464637525	4.3851955989025	4.40554822132008	4.47446429587954	4.34425803305428	4.20291546222916	4.30199536542775	4.43246093390511	4.37865015474825	4.54394158874952	4.53552366041602	4.32110317655412	4.00905953509204	4.28569436535782	4.24333827649353	4.44635673043018
+"LINC02099"	4.06785239454728	3.97310440376651	4.10246670667321	3.86262319186768	4.15388200933129	4.08541305278096	4.46868219790109	4.039581320563	3.9608039586207	4.40156161833677	3.94343384113616	4.16796430890801	4.20954984641821	4.32841156208121	4.04807154700849	4.01525317075496	4.13494278307281	4.00800782286452	4.35887252763187	4.53606865546245	3.97365662322713
+"LINC02112"	3.59771173593938	4.00275028226957	3.77271906709079	3.90774798479414	4.03979539245002	3.92087909169176	4.06016281509404	3.76954696445417	3.83586897020827	3.87408425924034	3.88442962301034	3.81722888108661	4.22490681546178	3.85000860558865	3.72793303692177	3.83586897020827	3.83586897020827	3.81905248256476	3.8230798216715	3.62472498421121	3.83586897020827
+"LINC02114"	3.24841767116614	3.27734546077107	3.43752699084716	3.34257822504089	3.33711115000391	3.42894759658984	3.33670144983492	3.32283199493684	3.40963115090454	3.38311461411502	3.29960197485889	3.19178286832669	3.33419767591567	3.33419767591567	3.42656144131672	3.25471403445647	3.33419767591567	3.47517791657613	3.33419767591567	3.4035374653499	3.15132839120907
+"LINC02116"	4.4338526546948	4.58037162248345	4.50750659717963	4.45950694943596	4.58037162248345	4.70203933331271	4.64717458136863	4.72909296733783	4.49449881838398	4.60354874764886	4.31051557267624	4.60506414531966	4.54718951276467	4.59120272995145	4.65927871172296	4.72893330406765	4.75841028734237	4.43372241830244	4.52781107236008	4.57202220833942	4.82248158234497
+"LINC02119"	4.5454422414164	4.33937023460369	4.43335134215577	4.624858395722	4.4286749421205	4.59202265923996	4.43561432852859	4.48320956020932	4.50898278775026	4.4339408332151	4.43561432852859	4.33840884272215	4.72083029964895	4.44997984799746	4.41052407548618	4.43561432852859	4.5505036625483	4.21844917311088	4.58869034392963	4.29513094404319	4.39769520499703
+"LINC02123"	4.12719263437476	4.14656616542806	3.95617193377001	4.32335669769645	4.16547427429933	4.16045629294335	4.76968755238661	4.13863052106633	4.44645427131618	4.12590318330011	4.10444947732178	4.18060615775175	4.16787695092586	4.27167177556605	4.20287693815251	4.07664917444957	4.09159506308415	3.91886636572298	4.24289021550599	4.16402238054619	4.0900805732376
+"LINC02126"	3.74566369092345	4.12359052740168	3.76976778686605	4.29037028209352	3.94847753638272	4.07266144787965	3.94133218975629	4.28614332631308	4.1745313932829	3.71152764268079	3.78585614638	3.9228524375854	4.21137188807174	3.78367500664274	4.13997807107657	4.15997364998184	4.02743411364168	3.74669733889877	3.90984037318718	4.18590486438052	4.03871541756774
+"LINC02135"	3.26312156858508	3.25633301573447	3.10068422076087	3.30836677292992	3.21060553016752	3.44102068067543	3.55116026348003	3.10473337080792	3.14897718930036	3.07249231373627	3.1386602876289	3.11231660331157	3.19264427132515	3.37924452128013	3.22736296076595	3.15828382342225	3.32180918616215	3.33036709279279	3.17705319385637	3.14897718930036	3.15208822273736
+"LINC02139"	5.20067701059932	5.22892080426318	5.09909310847631	5.40339180984796	5.19373496652822	5.65834193638254	5.42427669444301	4.98037461028448	5.15489496531672	5.31831916193457	5.18377732630321	5.34412027604881	5.46140543899813	5.66128153398499	5.30138913269425	5.18179576709342	5.21568930263065	5.24847033786164	5.17137985048544	5.22447233357007	5.12057429431316
+"LINC02140"	5.56228941210689	5.42377557197064	5.58957857162484	5.94171251976132	5.57710201887354	5.93900793816728	5.84396635103638	5.84502811811933	5.36003072196146	5.68498345831935	5.35937988821561	5.42937055671832	5.68160809114695	5.79709106378713	5.82807656811817	5.40990262511951	5.42428013752501	5.18134817214542	5.64838820784825	5.50226584017121	5.68006375127735
+"LINC02148"	3.37578241960502	3.01281455107283	3.13879105199763	3.19178447659673	3.19496843854068	3.33457282969253	3.29562426801099	3.40067158497761	3.31199570499267	3.19496843854068	3.04450931401196	3.02513334620265	3.07637980970505	3.53830276258691	3.26901418912466	3.03494250516311	3.40413802442392	3.02249462610705	3.13682614095174	3.19496843854068	3.18158355236656
+"LINC02149"	3.44910779816868	3.65358684627812	3.43929676216556	3.68175878584804	3.4906151993996	3.62984053609141	3.57424567545626	3.39461970558976	3.55651061524855	3.48067140836534	3.33074833263498	3.4767261844199	3.71031846596918	3.79340624972589	3.72845767987249	3.57978250332442	3.46692928438025	3.32307276117852	3.83353097716374	3.69570716527503	3.5410069139396
+"LINC02150"	3.85458791849425	4.10454006746372	4.14227869856223	4.77601787760633	3.86537981250999	4.07792606942969	4.18642574227242	4.03976861520169	4.08126782203933	4.09315643131566	4.0760665089423	3.82863454051184	4.27971079019772	4.10486118415656	4.0760665089423	3.80591288197358	4.07416541398033	3.91820497179429	4.05877173824292	4.15358880477172	4.02122012235724
+"LINC02152"	4.49497619638741	4.71405850223486	4.70073470448349	4.80393008539011	4.60467433693186	4.73827978349727	4.50467127774757	4.71966526473595	4.55268151574381	4.64423178974708	4.59229155162957	4.4584537337916	4.77688720441448	4.79439258962458	4.55976708969504	4.56530428607792	4.64423178974708	4.64423178974708	4.49068079870127	4.5098300666886	4.78676370484301
+"LINC02153"	5.31662111630477	5.38980620596515	5.21937561874576	5.19405757188902	4.95879536928378	5.42349247645181	5.89994189126568	5.14404610082015	5.36266347242453	5.32692006831047	5.25992348532346	5.52871941920897	5.60770592210871	5.40267941752779	5.32692006831047	5.43672580667033	5.42651663377693	5.12669924534362	5.48041919452421	5.25127041623311	5.32692006831047
+"LINC02171"	6.93321478208995	6.89431451881217	6.93872542981538	6.89431451881217	6.82533611831247	6.92751998379699	7.34679544611499	6.90379235437039	6.92943507695572	6.87501500370032	6.67051676328398	6.78455909971804	6.92751998379699	7.21266929389117	6.95863936742587	7.04120703999107	7.03348835148159	6.92751998379699	7.04232251073653	6.47339764211866	7.07894553482334
+"LINC02172"	4.55526572178537	4.37604881495022	4.36448959763263	4.55535431279072	4.51267863074411	5.00532398809779	4.76983676562984	4.33725995193268	4.28739640051046	4.33971053952299	4.25123730458857	4.20040383480541	4.71394844923104	5.30937835630341	4.60432838805109	4.14860150788442	4.24727799544418	4.36602942656311	4.32389950916491	4.32016580059964	4.37253480609131
+"LINC02175"	5.39997161210812	5.74838199585599	5.43503933988031	5.77129140636473	5.30669859880296	5.39308339860353	5.3917928306462	5.64182278346976	5.35290343264938	5.3435252887483	5.88883565204164	5.82648687307589	5.69299488678021	5.44199673667562	5.68374684930996	5.81648163504597	5.63302570812827	5.23184216629312	5.58422189090796	5.19670650895844	5.59796343996995
+"LINC02179"	3.70665523144103	4.0200649521499	3.73159973907029	3.92616376087655	4.05053203472038	4.24423308917993	3.84428524719196	3.82643111872454	4.15309681065722	4.07840728330773	3.70255973765612	4.00478715195981	3.80773099820295	3.89070431558933	3.93889895619294	3.97019206634787	3.93889895619294	3.76367491564366	3.98544605296826	3.87995407364328	4.09632426145334
+"LINC02180"	3.47835702349081	3.24663814040771	3.61732851306085	3.6828205577358	3.59035006425724	3.97445860034593	3.4051855861599	3.54502679145817	3.58201613372544	3.59035006425724	3.66234692960963	3.58910066604523	3.65836062229198	3.80713818537045	3.84968181609728	3.71106509571699	3.46106086609415	3.22228056584971	3.55011846075892	3.64653685278334	3.54324928430482
+"LINC02186"	3.26067488439875	3.39638600628238	3.47772053591063	3.4366435671931	3.23976821832023	3.49152918363089	3.48401303533419	3.49395941588429	3.25056011175515	3.49366281056941	3.4821534748468	3.55613679072336	3.52130357545219	3.52447406497888	3.54831586842297	3.83290265825741	3.60763952440918	3.32070429910186	3.43725700137603	3.58882203107703	3.48401303533419
+"LINC02189"	3.475693371779	3.5544062650311	3.26581926678341	3.30836677292992	3.49942329260189	3.62160727492543	3.58419304462173	3.3902851049151	3.49048102661452	3.55899359896499	3.59253014635192	3.35782561194711	3.41552601939603	3.61421238442424	3.53620651292933	3.64084861253005	3.66397454324644	3.36755348824777	3.61064198043291	3.38027096216329	3.43247133416224
+"LINC02192"	4.49340954210593	4.40713207012123	4.41047717567315	5.11251853694009	5.77273970429975	4.8502166050486	4.50950386426226	4.41383535820148	5.73332595486393	6.55720899061589	4.30193983249782	4.53018151473816	5.18841878946928	4.71590859647849	4.86397331247392	4.7746939546105	4.73542643189634	4.6955754580481	4.97317526163292	5.93565744903606	5.87500598074253
+"LINC02199"	4.72083029964895	4.7031083364873	4.31127989915873	4.4390460763037	4.61284354163675	4.65309094530425	4.31063634729767	4.29447899364912	4.59932946715745	4.54486997716721	4.5446773021208	4.61284354163675	4.49209278483545	4.48791018790865	4.65083010293219	4.7895926393104	4.81541302824516	4.96052148806986	4.52801228462342	4.36441159617216	4.68813537339194
+"LINC02201"	5.74847047410237	5.75530795969598	5.94570517050411	5.94091465983833	5.72493410113802	6.0596312097635	5.95454708595935	5.87590453478257	5.82186342102585	5.99722749204178	5.86375379991836	5.73575652564341	6.08119636234929	6.15994288160858	6.0911427428994	5.76459922218022	5.82580044426667	5.70306024244011	5.70010444036416	5.71162544793258	6.04381485185469
+"LINC02204"	3.78204056874707	3.94440646768247	3.65409695631336	3.84232318792524	4.00139781414938	3.91688161986405	3.76431447108132	3.78204056874707	3.86474738049838	3.90248875807008	3.56420668744919	3.75797027947894	3.62855186846286	3.6034249817665	3.69836381994596	3.75165354623758	3.86474738049838	3.62385013377561	3.80969610096559	3.78204056874707	3.76649585251223
+"LINC02209"	5.18182021562026	5.41669318179291	5.26407954306878	5.44364316387213	5.27183130425559	5.40051247452827	5.28933286301397	5.20108625277875	5.47432672582748	5.22466493799961	5.08420354637134	5.4355724191126	5.24352845337692	5.53069719226743	5.14783201901713	5.38123612868735	5.26766210204047	5.19397965316148	5.25339730093255	5.26766210204047	5.37182764945984
+"LINC02210"	7.73081997888277	7.49647496681272	6.34532760829473	7.67686770686993	6.19969616094049	6.52440452384347	7.61510137185169	7.46305059750285	7.58388564575692	7.25081052250981	7.3851688668303	7.47769538573881	7.29227899056612	7.32781766465232	7.25592769768108	6.99469201665118	8.17700296331323	6.11010525045835	7.66699842485573	7.32584229263485	6.9681352729332
+"LINC02218"	4.9626941672854	5.23907952754975	4.95799004434615	5.22092542090182	5.2480904793837	5.15271834588173	5.20991976500241	5.10218912547412	5.20991976500241	5.17885928143016	5.09530517829962	5.25466044465067	5.27721683510392	5.26497246497961	5.33358936572871	5.17624871696643	5.28045240706332	4.85883568477272	5.50856215918159	5.20991976500241	5.43865359532455
+"LINC02221"	3.44499785680203	3.62647570226006	3.56530284016151	3.59035006425724	3.43979403328343	3.84232318792524	3.91390263911838	3.64353143008767	3.49404618395359	3.4328114938459	3.4194384343379	3.55575118396577	3.59035006425724	3.93010014926061	3.43790757117069	3.41942660767178	3.59035006425724	3.73796643473855	3.6847381676218	3.50496574319793	3.610973223753
+"LINC02223"	4.10582602557167	4.39267410676429	4.4350292976785	4.71879768594383	4.58319568228186	4.32829335351432	4.17991941991986	4.39267410676429	4.31888201911511	4.26523471526363	4.11405908030997	4.30291884282523	4.55722851880854	4.71054988388831	4.53973225047055	4.20880221726132	4.64419136037621	4.26912720918344	4.39267410676429	4.15668828504211	4.65065311270841
+"LINC02225"	3.0959515226303	3.02298153371279	2.91094198808894	3.12786656717574	3.18017625384602	3.34365928259113	3.22900838400567	2.96532262674643	3.01653729551711	3.08026577796219	2.93939871956059	3.14905497769964	3.04526082705471	2.96706934725808	3.37227599271054	3.09943728697917	3.12096078522905	3.18600893841626	3.08026577796219	2.96576489953116	3.04641095947617
+"LINC02226"	5.4658976091477	5.7637414832805	5.23227323371334	5.59140381272771	5.28951937762768	5.19412945838187	5.18298700625704	5.45672351532491	5.5410657486951	5.33720840587101	5.44758382796439	5.47770664206117	5.74899038260745	5.49384165439336	5.53661372085392	5.66352411767022	5.81413954260556	5.29486487610395	5.58247414772742	5.35069464574436	5.70881492160149
+"LINC02232"	3.47084125421967	3.53488831075575	3.53130575178407	3.40602564063481	3.63490582062805	3.53952957700499	3.36975604019699	3.20217262426069	3.83817912264281	3.44875314849157	3.34869060564461	3.47115147475991	3.48386364142779	3.45514010989018	3.33021888108692	3.47115147475991	3.37516721312036	3.24806030721669	3.48299791935582	3.41337835169363	3.45657167272669
+"LINC02239"	6.00680965334309	5.72235098115852	6.06630590866418	5.97878767899926	5.74799218257301	6.14939723671738	6.35345526219793	5.80833934838792	5.86214963188635	6.07470625306892	6.08765862935209	6.30734974273427	6.20596396056399	6.45850215267952	6.25252629228938	5.84223978258929	6.07747992328054	6.23585058040738	6.36603977222542	5.66983334464531	5.96013633280544
+"LINC02241"	3.92435876585621	3.80178679885111	3.70391288517465	3.62564101059612	3.82574158942365	3.82036721268177	3.96454235436839	3.65424019776279	3.56323538709079	3.68035604516277	3.64914453505402	3.58498120820213	3.64643019591817	3.50852381795523	3.75473780440707	3.57829449489596	3.81521856465441	3.75473780440707	3.75473780440707	4.00129815534738	3.85474280259014
+"LINC02243"	4.51300560160304	4.59083069864459	4.56890114713923	4.65915049192384	4.59913019169647	4.33689532306795	4.85874786246597	4.38786046567623	4.33433117081239	4.40967848031151	4.13848240472947	4.26731843460554	4.43948272624787	4.71094240865961	4.68926724009926	4.57593676773282	4.59751740849268	4.33388786584445	4.60268344215766	4.51300560160304	4.50261612082856
+"LINC02245"	4.13557720799785	3.86399588280256	3.93821305867825	4.25614105966982	4.05919433374673	4.14436941875935	4.05919433374673	4.28001907096124	4.0126651849618	3.86678749959682	4.1301794741086	4.05682879448454	4.10209302772727	4.35755106975571	4.05919433374673	4.05919433374673	3.89999296458164	4.03564223986441	4.29938893389525	4.19885984538404	4.10249810027233
+"LINC02249"	4.66784483447504	4.56191702076179	4.66784483447504	4.60848853441306	4.39942391019929	5.0502164862717	5.48365491629965	4.66784483447504	4.84058770087949	4.81815094759458	4.60161412073937	4.66784483447504	4.83792225575597	4.90955152479639	4.45683005256418	4.46186295225006	4.67750837297277	4.35592585416471	4.91118059607541	4.4869194533726	4.56545264620252
+"LINC02250"	3.53704369402752	3.5940220400786	3.53220012122314	3.44075962530755	3.32986188911136	3.41222410027302	3.92697216204957	3.5017688398689	3.72067954813393	3.59257926145003	3.59673173270017	3.38578298578846	3.53220012122314	3.69068742859288	3.40225849152675	3.56468285347082	3.51324942135913	3.5848981401131	3.57333152382321	3.49365454668968	3.53220012122314
+"LINC02254"	3.46009908129486	3.80687084268814	3.68677898483993	3.53018415839962	4.00967676648148	3.58103393322138	3.77277473342814	3.68847842122945	3.68522861980233	3.82514395760602	3.66076069256676	3.68677898483993	3.81646630597622	3.4248150515163	3.84054160309622	3.85932066167244	3.60728637506788	3.39463186034249	3.68677898483993	3.64082666314451	3.68030280764516
+"LINC02260"	4.66539505207393	4.53710875934102	4.63557014338865	4.63035250603262	4.9095868465905	4.51520733819108	4.67569487082649	4.70745704447423	4.67569487082649	4.73288578128125	4.63039755097122	4.76764009535909	4.64006140859627	4.63734430152674	4.80996242076039	4.91662329510114	4.68057813659691	4.48781419019038	4.66124087142173	4.71035818133222	4.86814824411952
+"LINC02264"	3.98810639754965	3.73871030539633	3.51250106164784	3.77840740537392	3.79486931938898	4.14328589252066	3.77840740537392	3.62434380526873	3.66225430884282	3.63841400737183	3.68300597258054	3.53932555628666	3.93501737781604	4.13440800785027	3.84054160309622	3.80039465536731	3.88805222415732	3.52957401530681	3.62766554570803	3.68018411481054	3.83034764349143
+"LINC02269"	3.89631839400553	3.88503474371637	4.09732329724959	4.16177701726524	3.8062089422419	4.01979070190001	4.26644862987637	3.75842255661509	3.98600176190472	3.89854836698828	3.95184347434766	3.98600176190472	4.02714387774633	4.08354479903046	3.8587448379033	4.13343633246092	3.8365298595938	3.86307422353797	4.15101571455502	3.91977967638055	3.82713221909713
+"LINC02270"	4.25443902538683	4.25607750665782	4.52276911144976	4.50026184913429	4.25642290389768	4.34735629733851	4.44525409349085	4.35868931943598	4.27455608846812	4.32356327555781	4.06436993591701	4.38387057169269	4.31953325695676	4.4474579765227	4.28909212195484	4.29161240243444	4.46224563135822	4.16089863856463	4.31127036103871	4.40447876921999	4.32356327555781
+"LINC02272"	3.8107247767797	3.92987414351773	3.97019206634787	3.86775344145166	3.96718924191375	4.02425281365523	4.34298620161623	3.94597264375939	3.99486978083129	4.02224473395233	3.92968006676874	4.00799659691945	4.10343772525947	3.92519314136815	4.57524695763862	4.06141669326064	3.97019206634787	4.0526042128247	4.08080467548608	4.13120150374476	3.92711752701185
+"LINC02273"	5.31020052660323	5.60009359237864	5.31912805372624	5.83773843593239	5.468355994188	5.52212435456028	5.55581822324663	5.62691193433092	5.70479065743609	5.49239207238866	5.49440795730396	5.532173628922	5.78110947260058	5.55310378025231	5.53104380470823	5.57870511522171	5.71473621762619	5.12452155573617	5.45686293889845	5.31612893214559	5.532173628922
+"LINC02274"	3.50961100200558	3.48795993793271	3.40753393551781	3.42989684956105	3.4327212608376	3.52794444075191	3.66973947018238	3.69579215660279	3.52794444075191	3.54694337851663	3.52647153262007	3.43047126328518	3.52794444075191	3.62054845845921	3.66082116669798	3.55439683936212	3.52624344124937	3.37422795692222	3.57137259163212	3.72355457632407	3.59891850198936
+"LINC02282"	3.96672123612218	4.17430800074898	3.7909930234144	4.0172304524171	4.02731940841	4.05587793056188	4.05932008573036	3.96386877109076	4.03291909118219	4.05587793056188	3.98336131777977	4.06419284386227	4.03291909118219	4.05460176357631	4.25611521742122	3.96547622116065	4.03291909118219	3.77632064213953	4.21707797429777	3.84232318792524	4.08909647772524
+"LINC02283"	5.33555114341138	5.75057862433248	5.45733810561441	5.30385306854016	5.14167155840461	5.48984219757911	5.77127192872887	5.12882536280574	5.1044591184802	5.20653787549325	5.46659875751999	5.42368688596723	5.66357323451193	5.67530122841475	5.28299816785037	5.68186579980167	5.34781922017277	5.38587055665117	5.28328176254414	5.0382621728173	5.00249548542664
+"LINC02303"	3.64412061090917	3.46099766987852	3.69160903834017	3.42354434052285	3.44565260611735	3.62160727492543	3.41213151294751	3.37538875180896	3.24722730603808	3.51163723515468	3.47146681089105	3.47115147475991	3.61190146167903	3.64432052419717	3.61878573735776	3.54634036834509	3.52133813233307	3.3364764197878	3.61185945488656	3.22698529568257	3.45552910654587
+"LINC02314"	4.01236799537472	4.37146622352643	4.36297322503795	4.25095358575165	4.36664560315702	4.3858499817178	4.54375425425923	4.12544647060931	4.75960222428183	4.43666013398559	4.32335661313071	4.43622593104179	4.52761835729171	4.57512919121534	4.3858499817178	4.3858499817178	4.65376267161119	4.223518839918	4.5621313884824	4.32715171415706	4.7939943459758
+"LINC02318"	3.17282094366495	3.04385858196007	3.06899729294985	2.95561579326708	3.04385858196007	3.21298117002204	3.18911246908135	3.09459307736235	2.90664083576483	3.01065847432706	2.92874925959018	2.90196062544697	3.14131265949796	3.18152969093949	3.0768461069553	3.04385858196007	2.96687149225493	3.02049240882728	3.11797701116336	3.03913076567624	2.99245884840149
+"LINC02325"	4.11166067699556	4.18884890739908	4.01964780799144	4.12630547608241	4.33148328513743	3.76649585251223	3.95187459609283	4.03979539245002	4.05237672351186	3.96089851493637	4.03979539245002	4.35822560272262	4.0071355949297	3.7576838746678	4.07138880775216	3.95686911587593	4.05740011451448	4.04340696820223	3.96998344096692	4.03979539245002	3.95373695633989
+"LINC02339"	3.1934529840594	3.4229519577057	3.13157583655045	3.3441691426027	3.35531739658762	3.12036317588546	3.36384953533378	3.30350884550606	3.57981560376348	3.32613419772172	3.1514509097779	3.57781703437524	3.51792680109344	3.28060689749132	3.68883755278084	3.38126735642631	3.75886971228615	3.15924690765065	3.75668553780318	3.26517861807479	3.59045783225566
+"LINC02344"	5.23390297358109	5.31618805627722	4.94598681944134	4.92976137981271	4.84758725731907	4.70724624462303	5.30414423973762	5.34938339102068	5.09010522579671	4.90508556073076	5.19258735913729	4.98200908134609	5.16498239543118	5.36570565481518	5.16498239543118	5.31730919846428	5.06574041765001	4.79215032678276	5.09211737012737	5.27941117347017	4.97831226401444
+"LINC02345"	4.00845937944886	4.13775212719819	3.79340624972589	4.21357946261121	4.13775212719819	4.13775212719819	3.8995908909223	4.1453835001455	4.13987989820817	4.26061241853488	3.9957729155534	4.07061579705092	3.94397356507746	4.16466252441185	4.22934152199336	4.27093479606398	4.26322746637059	4.04727437055837	3.95782663380899	3.85587466278808	4.45147802336218
+"LINC02347"	4.36343813612652	4.43997767611285	4.57966578412689	4.27438957962778	5.1683437165092	4.5753746833468	4.56582558713812	4.67087290410474	4.49281755511767	4.59411786952134	4.08752707527644	4.4752576076541	4.749988330714	4.4752576076541	4.4752576076541	3.77216330589925	4.56666253106705	4.21701049216163	4.84340947154348	4.88313127435119	4.44654779740283
+"LINC02349"	3.70632310137397	3.61427909002128	3.3404377108901	3.41033040598349	3.53563885221081	3.52794444075191	3.77613879208394	3.64044503649214	3.46142285044133	3.5845839729855	3.41829536612839	3.50689326096182	3.37087314294859	3.58630429054546	3.72816526371876	3.55924811756614	3.2912352609065	3.28972304505376	3.58365914960485	3.65075973036316	3.49695033066345
+"LINC02352"	8.54004117060474	8.49966414316812	8.54036289502725	8.63083344499027	8.30386735003759	9.01193506093285	9.3045554174578	8.65994326334008	8.71646599150158	8.73838263450435	8.38180852650291	8.60142342203619	8.81397827410539	8.9840442759274	8.64369542058536	8.37118737043481	8.59750410344694	8.22884810388709	8.78881652173456	8.55503261749303	8.65950029930583
+"LINC02353"	3.53728308919586	3.45923057656428	3.40365187154517	3.44198614601862	3.4321242118073	4.00178849073677	3.60997795288221	3.2960367654945	3.59107095802038	3.33759300019822	3.25472206088274	3.38537122455689	3.6087024788752	3.74031564117806	3.53728308919586	3.43700881673295	3.47298025610708	3.45923057656428	3.45166348938268	3.45923057656428	3.31439008278028
+"LINC02355"	5.00245812730201	5.26442206062564	4.72700953020493	5.1321653340603	4.86455354610381	5.13407431136907	5.18612916406831	5.22468921054003	5.17757383161643	4.98158741526757	4.83991770504626	4.71765866824919	4.86407320769581	4.53978178055424	5.00245812730201	4.8102068486475	5.13978096394019	4.65452117456103	5.17178774616531	4.82504084501614	4.93912161031928
+"LINC02363"	3.00515529095448	2.95937798167422	3.05271890986747	3.00513255821824	3.1651498527464	3.02967289608335	3.22091418710812	3.11504202774852	2.90155082147	3.24844453159032	3.00515529095448	3.09577797477946	3.20901276928803	3.21865629129095	3.13574195627652	3.05720583526805	3.10187627573744	2.93733875266625	3.05720583526805	3.05720583526805	2.87731614172707
+"LINC02366"	3.89948950691685	4.04120050230391	4.00002757953898	3.97112727874972	4.16391888907988	4.18028398650266	4.31002217779177	4.1048185364448	4.24720217218719	3.88509171534632	4.05399151343561	4.19917185947777	4.08784751569212	4.18099085109125	4.41016449365541	4.10151814586589	4.15976157642238	3.82768828500831	3.84957024027485	4.18102227705478	3.88730961349252
+"LINC02367"	3.2322353970883	3.47115147475991	3.3404377108901	3.53372356873263	3.5256785873738	3.59225443663552	3.26842475553318	3.42301806971429	3.35173792119535	3.35173792119535	3.16600567394453	3.20224960041817	3.41937542639633	3.34991233892974	3.48401303533419	3.53050927637788	3.36410590926524	3.1295209750894	3.34838652317378	3.28284722793459	3.3404377108901
+"LINC02372"	2.82284051927097	3.10271875687885	3.02074560868212	3.19974090533624	3.1070895550404	3.36714610838669	3.2853671540139	3.2071227225299	3.27491879159826	3.20885304058655	2.9853682415495	3.35584444107272	3.26699491456741	3.19974090533624	3.27366421198566	3.28467910949983	3.44470210944318	2.86630783789307	3.12419079171411	3.18894040506387	3.0638462548267
+"LINC02375"	3.21815796242348	3.23385663898698	3.21986506490088	3.14629267787794	3.29303472729825	3.37937237463753	2.98291364141452	3.13882498511015	3.14694270220639	3.08469507398669	2.95811475603334	3.00186444061147	3.28735233464203	3.05957023985846	3.09087391667269	3.31067281301396	3.10783087502169	2.91961086343833	3.15900617404901	3.13882498511015	3.13882498511015
+"LINC02380"	4.30621456068843	4.4752576076541	4.5368283624615	4.37396530882396	4.44263458371472	4.4172369515502	4.44364296860121	4.4752576076541	4.57549079655512	4.4948729477812	4.70131365825217	4.50125185154089	4.4752576076541	4.44737143401674	4.23497592344207	4.57586314212386	4.4752576076541	4.53406145527815	4.46496478445174	4.67738529325179	4.4752576076541
+"LINC02381"	6.48659855365978	6.23945718849153	5.98919095245793	5.80787137389183	6.05981992668997	5.83914714575763	5.86516172716625	6.07582780201847	6.42874389816065	6.12428987148036	6.04670736749587	5.66374426173067	6.04642720726526	6.54984717277009	5.84324430367431	6.24021527907892	5.790291525277	6.39107228245993	6.35608012986312	6.39900851618953	6.28791389034717
+"LINC02382"	3.28579490700896	3.40226796420328	3.5297710094888	3.58900954438342	3.46924752939726	3.52069224406764	3.96087460035835	3.4394652394042	3.47081752462645	3.46924752939726	3.42833169348121	3.26533264563526	3.25960827470338	3.80899761440063	3.47128238047511	3.43561657898329	3.5226546211345	3.31749097245972	3.37833396589895	3.51092650010953	3.60691536968033
+"LINC02387"	4.10677656982335	4.47767355299411	4.57160091301987	4.42236112495982	4.31561346738191	4.67767032852301	4.51035717699766	4.29938893389525	4.42236112495982	4.32944191215168	4.42236112495982	4.30337240387638	4.51962464854118	4.49721365011948	4.24912764152515	4.37704405531916	4.13487842186624	4.12759599053753	4.71916819901992	4.46209841894235	4.43245008095272
+"LINC02388"	4.30923821664179	4.26635189387647	4.03603309348039	4.11870121695867	4.21971147402758	4.28644982894176	4.41189448836279	4.50224680293216	4.19871528683931	4.15677940060353	3.98370145986134	4.21145523463627	4.3851199449425	4.19394048966346	4.01515730041337	4.24056243674728	4.33065474661648	3.79394750325507	3.88509171534632	3.97329049570933	4.3168352874884
+"LINC02395"	3.48659285003444	3.34406200536941	3.30362989218618	3.15806708651691	3.1619285501614	3.13636311851321	3.33670144983492	3.27605695764013	3.16944539801009	3.27605695764013	3.27420848537286	3.42350577574191	3.31360610655776	3.29249100876447	3.1251663174003	3.21173913681917	3.32660152582733	3.43027146380178	3.24210817013177	3.19114342521164	3.46924752939726
+"LINC02397"	3.86652981199015	3.85921977501044	3.88509171534632	3.88509171534632	3.87489009631106	4.10414257524806	4.23521914951176	3.84126860609037	3.95561335857998	3.94632033821919	3.67123968761788	3.88509171534632	3.93635675853167	4.03437735416304	3.88509171534632	3.90540920890221	4.0297881621104	3.69024443819833	3.71491336998105	3.6468391982094	3.87705052576986
+"LINC02400"	3.76649585251223	4.15347290410266	4.42451502368974	4.31150208994306	4.56532706550734	4.31150208994306	4.61885916131168	4.12953038062207	4.29298632886557	4.59662298096448	4.05903683132266	4.40793101052575	4.42203432621477	4.36591988738293	4.49786409982667	4.16479864315218	4.51519762710896	3.74461771151349	4.27044557488829	4.31150208994306	4.50292678752659
+"LINC02401"	5.76523736024705	5.86772601072978	5.84380311563685	5.98395056836319	5.99940722405608	5.40988692927238	5.842949864283	5.54108284008249	6.08386314311939	5.74996400055285	5.62259646278022	5.50916544153491	5.97033805324969	5.91361160582907	5.75686401271412	6.18394750557437	5.97958455873344	5.79037104304047	5.73543973723703	5.69417880900314	5.98090862037438
+"LINC02402"	3.62476874102419	3.7734041192877	3.71031846596918	3.71678956421425	3.71031846596918	3.81949798855346	3.61045253529119	3.63137108704501	3.8119363647038	3.49277116198447	3.70468185887983	3.71333009354212	3.71704540380652	3.74235217017352	3.65653059714466	3.73820188779484	3.77951387409304	3.6042607701215	3.70576300636052	3.71031846596918	3.69393171104739
+"LINC02405"	4.39925541168712	4.21619512135453	3.75400149611756	4.2493817728559	4.02708527922964	3.99321485246642	4.08760134636187	4.26583102185235	4.41678054264096	4.12391542904892	4.08760134636187	4.29354918598323	4.01323602562304	4.10271728763521	3.99594383605682	4.02125825492675	3.98970404351219	4.00389623347214	4.08760134636187	3.92006469418985	4.22432199226901
+"LINC02419"	3.63417422449674	3.52240580203753	3.62588877472549	3.70794737708968	3.80495810212096	3.67970745592283	3.83818954378614	3.62744622873497	4.02008805330361	3.66124605317356	3.55432767502095	3.65553308259311	3.6843959329589	3.88895780302348	3.67113547711514	3.6163786233278	3.57514112063654	3.3166162747579	3.7300145389108	3.67014378551265	3.63995412521742
+"LINC02421"	3.6053916402324	3.70601950676159	3.64244440333094	3.55734405232939	3.59201008024842	3.76768064756122	3.89060366883711	3.63909642085111	3.64244440333094	3.86566562682046	3.59773855524507	3.65818523536342	3.60751040454968	3.75815136145963	3.44563397346292	3.66834285071064	3.47298025610708	3.64244440333094	3.74879354631754	3.64042757128226	3.85860299151675
+"LINC02424"	3.01766165015657	3.01281455107283	3.00748350311569	2.91197466230761	3.03494250516311	3.17857378190533	2.99312189780386	2.88494531850228	2.96780336421888	2.84358745289624	2.83247617196428	2.92343903303558	2.96819981883019	2.95624561214108	3.07234777157506	2.97427250281873	3.01449908281559	2.95075452863085	2.96780336421888	3.0736820669976	2.97585290381752
+"LINC02426"	3.63734615191803	3.70106719150571	3.63734615191803	3.60756386192496	3.78045765019434	3.89518361746325	3.79788109357451	3.51293804095029	3.95579312177278	3.63734615191803	3.46014987653196	3.54646758260531	3.81242104772408	4.01436075968604	3.73932952614019	3.66071232505082	3.54960729677334	3.46426413229098	3.58908289678864	3.5836008815056	3.67180758375787
+"LINC02431"	4.52110325637786	4.56418328861306	4.24529633315955	4.64340798317053	4.71402709239171	5.06643672437772	5.01108706277348	4.39450026953694	4.39261131175858	4.49055184889543	4.32841635673548	4.33410455377266	4.53247858671609	4.754612295764	4.66620140262582	4.57018250120868	4.54056500626187	4.13512107098895	4.46582984428175	4.54462322775084	4.49418619753774
+"LINC02433"	2.84763088113269	2.96604117681246	2.99215720178914	2.77303693239141	3.10983684173201	2.96080576197956	3.10453199990485	2.85953663731331	2.99908151337046	2.93910467177506	2.88948772551735	3.094527221392	2.86458834661329	2.88906486166545	2.7319495863442	3.01599940949416	2.95894620149217	2.9902498783064	2.98920501294193	3.17060261855207	2.95894620149217
+"LINC02436"	3.04385858196007	3.1385028021157	3.1491034647992	3.19220100501795	3.03484438955258	3.27706943317973	3.29070546788915	3.05144913310951	3.2266879049534	3.01417301371465	3.04917855455865	3.19974090533624	3.15466080272605	3.25108429456646	3.05273929744163	3.17693240977871	3.04120147367701	2.8906268426066	3.25373292834315	3.12487851273299	3.12656880827926
+"LINC02443"	5.39731826213816	5.47077365798402	5.33460227412735	5.52867385499545	5.47389764126414	5.6721588399708	5.62862395431206	5.47389764126414	5.51864870237379	5.49926712971808	5.33018559231674	5.32477401576793	5.47389764126414	5.59140381272771	5.55686115024945	5.51543113093411	5.62931651697224	5.34406964235612	5.37320726050271	5.46010122885723	5.65091330078926
+"LINC02450"	5.81132545677677	5.86365294557959	5.87645814544031	6.21947532670132	5.949912560066	5.95319732257355	6.19656543526631	5.95741634165028	6.19223486207952	6.02096334226194	5.9841263243859	6.03435957481575	6.0518882389905	6.12595336361049	5.68315552745361	6.12872786104136	6.18938436159502	5.9522014018305	6.01839984652521	5.95125846945539	6.18253519508404
+"LINC02458"	4.32066849398951	4.56927268697105	4.24428561973839	4.92245636100338	4.90261464954302	4.42879163110961	4.54751080496412	4.69138443604023	4.4922095324648	4.45482623866224	4.11304022093674	4.46618816710868	4.43390437491178	4.3289141827024	4.40994511105919	4.42382071164303	4.73199741361852	4.39764797542061	4.62778768525227	4.65788236275383	4.57512919121534
+"LINC02465"	3.15132839120907	3.24354055063006	3.13296966157649	2.98920501294193	2.70139246431736	2.98586326033229	2.98013207755041	2.93764920211657	2.97678782831866	2.8605142349832	2.92150102578506	2.97199129468487	2.98586326033229	2.93451668005498	3.003686057624	2.94371472868682	3.00346079107319	2.8788460463112	3.0478948711847	2.97199129468487	2.97368159023115
+"LINC02466"	3.3785721988258	3.47503759671598	3.26803463536302	3.70329060819858	3.56603800443069	3.4451203034607	3.38238731642354	3.44393442681762	3.46924752939726	3.41545287687064	3.55320879575522	3.32512731176564	3.46924752939726	3.57947721991229	3.49828030098628	3.66079409951301	3.47298025610708	3.34376040419576	3.45566401404772	3.41545287687064	3.59222776405588
+"LINC02475"	4.41588988770558	4.20479628536753	4.15443421276885	4.13443105845099	4.15223666891304	4.22579294957553	4.28343310079418	4.42729091097208	4.42236112495982	4.20479628536753	4.05524368310826	3.94568492062549	4.20479628536753	4.20479628536753	4.28811339558514	4.53552366041602	4.21443205665247	4.0461972479071	4.27266300311286	4.12790619587627	4.11278712589641
+"LINC02478"	4.30159730817452	4.68501962518117	4.82207721726455	4.6178267477356	4.38720355014581	4.84261709739324	4.71657574298741	4.4956421331025	4.89038800138838	4.62823275697495	4.80629085816791	4.91512066266508	4.74555129056501	4.67351641331516	4.65542757160138	4.89821109218173	4.68085587212263	4.15557770947581	4.67741581378734	4.73337147150326	4.75199919037515
+"LINC02481"	6.83537354176741	6.95869270123052	6.8780460705723	7.20873850602272	6.72659185672454	6.51659029196149	6.93000346693861	6.91216589138907	7.10899935869376	7.01953259214482	7.02507518963864	6.79758646077907	7.24452818379295	7.25315231570555	7.07573432884842	6.80201234260148	6.97827835711672	6.68429105253498	6.9491744229227	6.55745457450675	6.81360978907228
+"LINC02482"	5.72784330221006	5.54164137960617	5.82191490815175	5.4854059622656	5.63422200756644	5.46868766841025	5.23017885908097	5.46762898966452	5.43353019501631	5.18926241035403	5.68974456045543	4.87831746390455	5.39701615643976	4.34921545494278	5.00835787309411	5.69050004291591	5.1716869876303	5.94272211702697	5.50076182085259	5.40211181914853	5.2992386944742
+"LINC02483"	5.20134853736988	5.23389961059546	4.87995784845444	5.50682393254009	5.0772999220267	5.21852300896543	5.41709533988555	5.04191074194913	5.47691049107723	4.99852173299836	5.04751998812223	5.19440434906874	5.21681274073143	5.54063520178569	5.14784724387462	5.19234537969403	5.22484948677305	4.77905421253408	5.08144702202191	5.07655701510671	5.20873543923478
+"LINC02487"	6.53313592424793	6.81883784997735	6.67449557803908	6.99707332801859	6.69433355629942	6.84795423378298	7.18564402986247	6.74266700588962	6.76503627066389	6.72150836554369	6.65118745678121	6.751147711837	6.95315903904111	7.0516441802581	6.73755688624405	6.91655559632355	6.9262836451059	6.32074310795494	6.73939640692748	6.58524102805502	6.94268453570911
+"LINC02492"	3.62551699357087	3.40883033806115	3.6726818296271	3.71718440609528	3.99113591031349	3.9878122617112	3.70201400938945	3.4180629575159	3.66082500513471	3.7294373587707	3.66082500513471	3.36257435022983	4.0499285169517	4.00866558293927	3.60428585656883	3.69039807219577	3.79856144647421	3.63734615191803	3.62922873305379	3.84232318792524	3.68832160046984
+"LINC02493"	4.33768502213882	4.53740940435267	4.47896876653933	4.67180260962996	4.50826083223681	4.91761035410744	4.72303080224064	4.42805523150312	4.49397672647902	4.36675144325858	4.39681192754597	4.59493258875141	4.49017529927715	4.59209203559683	4.09987146554937	4.68090610038749	4.50364622033405	4.22909260123261	4.37252575029589	4.34156514982289	4.5479801220287
+"LINC02499"	4.30257119820889	4.57409498938674	4.16619783001996	4.90520132847288	4.7259431366238	4.67569487082649	4.42263350189269	4.29938893389525	4.73780036800828	4.54939189658662	4.29938893389525	4.34634699370544	4.7452582626467	4.88777994906477	4.47985126659551	4.37253480609131	4.56927473850312	4.54137198263651	4.54137198263651	4.45534150516922	4.60342389593018
+"LINC02504"	5.2020379198051	5.27079773777645	5.02144871603443	5.47767005470603	5.36883595846047	5.36883595846047	5.36883595846047	5.09495594518181	5.74406517525132	5.46025047882568	5.18774295842317	5.52916667180434	5.59365134592648	5.28731727080252	5.35719029516208	5.21606262689323	5.25779608340381	4.82879016267326	5.39096571044835	5.21371383771249	5.43572175851527
+"LINC02510"	3.59035006425724	3.66398409903226	3.53932555628666	3.67452603216452	3.70632310137397	3.70746397908419	3.75714810291262	3.64088812982248	3.60791001172081	3.63009070441279	3.26220014171446	3.59035006425724	3.40866303812773	3.74235217017352	3.59035006425724	3.35396973487004	3.47724446241389	3.56609406997892	3.71080573169383	3.49302339772104	3.45158467041141
+"LINC02511"	3.59247459832399	3.46269355076947	3.61241707787054	3.49383253413455	3.51320625878588	3.48756126994079	3.64412061090917	3.66100753380594	3.52143236004123	3.53932555628666	3.49069789982767	3.63129537663437	3.60943264987494	4.02217013393993	3.53932555628666	3.23065800033658	3.39810421114475	3.52188026608731	3.6773053461303	3.53130475530783	3.49239121992711
+"LINC02517"	5.50946361029586	6.00670622707959	5.81391525415549	6.06811169860894	5.68771118589038	5.92588581861559	5.75433259203764	5.87766876444553	5.71200635499331	5.8046063198732	5.7899061833471	6.01728222641143	5.88577419817245	6.17007248696622	6.05682017521284	5.7899061833471	5.71656556366923	5.51015736540036	5.73649119563461	5.54198674675073	5.65761868740801
+"LINC02525"	4.51911564553735	4.86003612674941	4.82168376808761	4.71255647120612	4.891431597517	4.45824422248837	4.87239223782796	4.83079661428535	4.96964630379285	4.61934645081948	4.41717492651706	4.72639770247211	4.86768201545763	4.90660428121625	4.66260987492475	4.59166293921191	4.77465959063925	4.64322825620789	4.52425103322405	4.9771483123192	4.7096388695463
+"LINC02530"	3.97570956850806	4.13160736699394	3.90597669468276	3.98077006591341	3.80332789466177	3.90597669468276	3.82142622644698	3.80284370298415	3.74334800294722	3.82515889117886	3.83353097716374	3.95141506933962	4.01157155508619	3.96771153125411	3.7317651117817	4.1338155390393	4.13542226204724	3.75316202582648	3.7564648808374	3.93767145762189	4.04651122663931
+"LINC02532"	4.01236979445915	4.31681805584008	4.39089716100631	4.38868458282386	4.26093189199464	4.77221259017811	4.47391164962039	3.90007113619297	4.33771474336231	4.51915190226434	4.24156229597969	4.37447025812632	4.46735092418747	4.54780220793931	4.4464904048963	4.21512718125042	4.12494397669898	4.39316394933809	4.55974308300449	4.23777849742084	4.48969585608196
+"LINC02533"	3.55741108924632	3.56818532836699	3.52677804646193	3.48054423435363	3.50119363329429	3.76649585251223	3.47742034384043	3.43176097073349	3.7686236235222	3.93133854633775	3.55287928478987	3.36203386280981	3.53431642621922	3.56027955048366	3.56334919780824	3.65258995733951	3.64263022537638	3.59227231377753	3.55912909128144	3.65923928111963	3.52628172657481
+"LINC02535"	4.23035395486987	4.34855026188921	4.23541881723565	4.29696746624246	4.37814102587286	4.32596655297015	4.1701572633591	4.25370912671667	4.6087295876113	4.38815715719268	4.31875637626346	4.53049278621538	4.28244229357641	4.35335391158474	4.4752576076541	4.66495871745743	4.26863083353616	4.1812452232901	4.14110792187219	4.17551674327962	4.54936937350174
+"LINC02544"	4.1129157976824	4.03239893923122	4.1129157976824	4.15690623164067	4.06446987719139	4.06618787922651	3.86048473278958	3.71487332329375	4.44405104725634	4.1129157976824	4.14839094771648	4.1129157976824	4.37363622834871	4.20560332674501	4.23416771531921	4.21504518240755	4.25964472169835	4.00527814701841	4.17608918794709	4.00469379059507	4.05190678021522
+"LINC02546"	3.80024221531218	3.76649585251223	3.89096233881162	4.15953928717846	4.25851136641972	4.18378557695788	4.20323872632278	3.98762508073682	3.98762508073682	4.16362792745379	3.90201110731813	3.98762508073682	4.23553711616124	4.45034846792649	3.98153139518218	3.69922737976504	3.77734086132118	3.89757285821133	4.03771313355036	3.87310897929058	3.97526305503687
+"LINC02549"	4.13833012747315	4.43997767611285	4.34294826229891	4.52441423172288	4.54642300604444	4.44513905779915	3.97521665806832	4.49607786311736	4.59758792444253	4.73638491058578	4.29609989533816	4.63332632223265	4.48428915840454	4.49236299264571	4.36061096447808	4.44513905779915	4.60602786418399	4.21786449840243	4.29390031043023	4.47804396948067	4.44513905779915
+"LINC02551"	2.86017825404244	2.84530242932165	2.78704244875962	3.09436293317502	2.82389151334975	2.9218310328554	2.74695786620399	2.74379236799648	2.9784475815612	2.96136972372851	2.72863488054821	2.87945248138543	2.83283002151551	2.94087924703971	2.84966013688478	2.85124053788357	2.76490312712411	2.84122931641179	2.74379236799648	2.92514784433295	3.00375502654164
+"LINC02555"	2.87325104076505	2.81448278816336	2.94999417101114	2.82277337708982	3.08079155569378	2.94922686732601	3.13310631242211	3.06768044864602	2.94396635741626	2.87549057188381	2.93639757882361	2.90046925045256	3.00667043809524	2.99417158246929	3.04939183172961	2.79314216430446	2.86454719258478	2.89466234633841	2.97011247450019	3.11628918690059	2.90449434426179
+"LINC02560"	5.66894945614583	5.83659327930815	5.55527943384956	5.83091161982478	5.81156845331954	5.5929559172242	5.89191814959777	5.85991428783006	5.97343652929157	5.7287410292039	5.74482050615726	5.92074832912485	5.93290428612281	5.85037860556996	6.03723623862641	5.88496501670005	5.98096167814244	5.6040250487953	5.98917287728351	5.85037860556996	6.10172455145438
+"LINC02562"	3.79340624972589	3.56127468625659	3.62885647466516	3.97525092985259	3.79340624972589	3.57182588580036	3.97521665806832	3.67903812739518	3.83582608083093	3.79340624972589	3.65233707909163	3.7180500321237	3.82822346681814	3.79340624972589	3.79340624972589	3.79507974503937	3.79340624972589	4.14356006814359	3.7104829449421	3.7203355132308	3.84746626312461
+"LINC02566"	3.47679596414822	3.46730084885203	3.30732045899817	3.48740192426202	3.52738160330895	3.40169110911176	3.25018073413259	3.46575048381442	3.46730084885203	3.54903267151182	3.36315426679444	3.64923189274774	3.52910670060601	3.45309929896459	3.48129325141172	3.28496313567838	3.49102719621551	3.25883470558353	3.65212008231621	3.3570907844008	3.33485258572119
+"LINC02573"	4.89710473768312	5.10925875989823	4.83271669546692	5.22209266910451	4.66597531082773	4.96999898875083	5.16569865578114	5.00464271214721	5.31098381541155	5.04438982380234	4.97830327905972	5.16837998014694	5.16569865578114	4.93331985265087	4.99658788791116	5.09956771081928	5.17536194610648	4.87681934619281	5.12824814125233	4.91383016931652	5.04438982380234
+"LINC02574"	7.28384024939281	7.25683536902773	7.38022708145236	7.47582776335515	7.33697612921542	7.72608542453997	7.57834045101874	7.31367633795795	7.47475540290897	7.46986556585551	7.08324293455401	7.41138899185514	7.65030679878995	7.65995460217954	7.45535947577672	7.41138899185514	7.41951017717747	6.96073304653882	7.41598026824749	7.36659088351381	7.35924689320326
+"LINC02575"	5.5145984107527	5.64836801336767	5.09648440552096	5.73612947358924	5.61866486054782	5.55841643551063	5.79951630497804	5.44071512978127	5.47523480620105	5.52709528988894	5.51350831161525	5.46304815059586	5.68476028355397	5.70808936366225	5.52705423540403	5.70042225737554	5.54998933306176	5.30193914877283	5.44602655529145	5.44992904555816	5.72803623506156
+"LINC02577"	3.52841007533396	3.84054160309622	3.71194728341334	3.69388749674861	3.76649585251223	3.78560251256543	3.57965603022441	3.95834522575696	3.8680059138374	3.68677898483993	3.76035979754051	3.72660848465377	3.78945714465832	4.0121088840274	3.65567487298221	3.81097810272006	3.8867509536226	3.52970537206662	3.86148679774256	3.74445490489982	3.82104964555689
+"LINC02579"	5.52343070607889	5.90822474731717	5.5517289363009	5.84641961996627	5.59147757926589	5.81176077917361	5.8745340720913	5.76335497108508	5.66522598828302	5.8863891626611	5.75993511707885	5.73586417311183	5.77001484075164	5.85118373034035	5.94681918439467	5.9385349204873	5.89422557878726	5.50904926519779	5.64941275172152	5.53654346946549	5.89362698153177
+"LINC02580"	4.94752645431009	5.2337059899885	5.07136405043109	5.23987664458525	5.33646920036786	5.0157757572583	5.26139431666456	5.15537233831567	5.00889732606339	5.1872314606845	4.98626046199579	5.51748124094154	5.1872314606845	4.8567790855049	5.18654629955945	5.43584242342526	5.19445894009945	5.09874832639323	5.17531102246592	5.1872314606845	5.30491507496242
+"LINC02582"	3.588394008842	3.75788296080444	3.39876553121434	3.5868394519434	3.46743180976394	3.95344239048774	3.43640248268307	3.29077131636866	3.43476503445546	3.53736950087141	3.62394232029028	3.5553559019374	3.53736950087141	3.82540819576637	3.52572383757303	3.26388212556632	3.46915776626716	3.46262612959616	3.49527701836221	3.41796000671952	3.75224054730913
+"LINC02583"	4.61284354163675	4.51028836028331	4.61458053396919	4.70391447966155	4.61284354163675	4.68310898018016	4.85319459049699	4.61738986277418	4.96419560635995	4.81999297811809	4.41802536673135	4.61284354163675	4.74945207161528	5.04999429262783	4.61797006312876	4.60912034955721	4.51918947622553	4.48991600327001	4.61284354163675	4.53046473690803	4.4995916794415
+"LINC02593"	5.13671694449483	5.08821023531762	4.95601998854185	4.90760485787156	4.78129538833229	5.24979195552414	5.55219012480386	4.81739772361616	5.0744396294108	5.01872001818519	5.09654878953366	4.95754702497295	5.412833570123	5.59119766731179	5.13501321654008	4.87201186863055	5.23079205429304	4.7646024496418	5.04211347962605	4.42300344526239	5.15578139534982
+"LINC02595"	4.52805292367063	4.71721641242413	4.66686894606054	4.8906887599245	4.7447882032231	4.79732619396734	4.71721641242413	4.65944657875949	4.69358804898935	4.70149689363406	4.73099029705105	4.65157776209511	5.09122390903668	4.68090610038749	4.72083029964895	4.64906098650675	4.79732619396734	4.85359115013767	4.83974219472977	4.47008563663856	4.79427368000629
+"LINC02600"	6.50864653153082	6.65875981039354	6.69203148359169	6.83641599281853	6.52392228239207	6.67650778499853	7.09608935253017	6.67453090427133	6.81143802058012	6.82965251040491	6.6853097556377	6.84880630797117	6.74756693359046	6.80646885086419	6.84122912961819	6.19090719485407	6.99514591489342	6.34082917048884	6.83187972866372	6.63912772530551	6.58859019116249
+"LINC02603"	4.04321574980734	4.54430915252807	4.11401328011692	4.28153761994073	4.19096295534337	4.255727397313	4.15522979066873	4.26027710763534	4.23352512774212	4.16325644402003	4.12374738786894	4.25657756673237	4.30291884282523	4.55546754662816	4.07642045413488	4.32813303451435	4.30133291626021	4.01441915312886	4.31620815756034	4.21994607944305	4.4408531602285
+"LINC02604"	6.25532239621689	5.63282737911643	5.53294215327753	5.55890411844152	5.55993678041905	5.6417992613726	5.54645417355449	5.41387845624481	5.02765605570453	5.28558055414396	5.99144858531933	5.47831590142259	5.32412319230576	5.81324589481352	5.01105526468293	5.84727127968436	5.52069697684442	5.92507057927345	5.2199365554733	5.89004030386601	5.55890411844152
+"LINC02606"	5.23934547519683	5.194754953681	5.01927668871184	4.97539505947656	4.84228368642602	4.9622770089461	4.95003907637328	4.68291605854138	4.72232365159284	5.09317356876389	5.02393397944351	5.08289844495014	4.88308459336875	5.16863968578708	4.44105578926717	5.94805976543581	4.81544708816776	5.51631763222018	4.90322492930381	5.02636088099248	4.73567780604178
+"LINC02609"	3.00823452035263	3.25497654633259	3.11753068886719	3.1212621205798	3.27826670699376	3.16322302086641	3.00766047159667	3.1003408534732	3.05049402073423	3.34452767980092	3.17954720962952	3.1586532423957	3.22080611560041	3.07335790461354	3.17060261855207	3.18720029461685	3.01446804937373	3.06533941633479	3.07805689025031	3.25670967862166	3.23075249615052
+"LINC02610"	6.76678766510663	6.78602085923309	6.56632847837282	6.73317593713658	6.64987553743792	7.26862707500322	7.02918620603205	6.64567417979061	6.67940929960304	6.7703543406726	6.96860011833583	6.77575690613431	6.69497547040691	7.06468644416862	6.83707268613234	6.98999613156771	6.6896922669335	7.18045431260826	6.92493494563182	6.9369961295526	6.78014272550577
+"LINC02615"	5.09461651054468	4.86365041234463	4.91148597985672	4.98848013927154	4.81210152839257	4.95697349282243	5.52026585032565	4.85435067003103	4.75496355972558	4.79363367843777	4.96455039029288	4.75963619261352	4.997020658947	5.34810385551279	5.09276355391507	5.44510740018789	4.96659448634046	4.69550976823497	5.21848352341256	4.85383029034754	4.91912212229306
+"LINC02616"	4.6825012110687	4.83397680103094	4.8061366851067	4.90799681659871	4.81723664940678	4.74326402179971	5.01198834958058	4.715358520815	4.75804029175683	4.89771683564319	4.78653814393838	4.74580180492451	5.15292954373738	4.74354741101579	4.89973725513619	4.95173437885534	4.92384058688187	4.60641266012019	4.91833438051769	4.90668291593418	4.86208465156411
+"LINC02619"	2.73003432238741	2.86286491348153	3.01157813470804	2.91928741107058	2.79491472647335	3.05524645203509	2.86286491348153	2.84697099366657	3.08644057231308	2.81538809042236	2.80727337020919	2.72624871941745	2.80269756109856	3.01002776967044	2.82353246641023	2.86286491348153	2.76846321795878	2.80100628703609	2.71533035060368	2.94832911743905	2.88579747809904
+"LINC02620"	3.78147550017079	4.02648340787763	3.83628290404711	3.94847753638272	3.99192097400145	3.80722461232216	3.9785978508355	4.03663310067588	3.99428034070178	3.76735210389503	3.93853643148233	3.68677898483993	4.00588597884045	4.13462743166397	3.94847753638272	4.253592738339	4.04871860747452	3.43096594287108	4.00810215802048	3.83147568483823	3.90762501167155
+"LINC02622"	5.16621734498077	5.30645495506267	5.51278752740764	5.57670247528238	5.19633637114911	5.65261557544098	5.5941733389914	5.10418953259577	5.5314711180327	6.04034610781865	5.5415868812564	5.7072732501114	5.85510388989634	5.63858926031511	5.55723696023698	5.64134654586107	5.70483643750285	5.56041613041257	5.86801420139516	5.40356938748953	5.80835832439304
+"LINC02624"	4.22995600403008	4.3440403540885	4.3347828631501	4.47828857319053	4.46800229659396	4.65782385617865	4.39831722204172	4.24232090573171	4.41624869263212	4.41477914532838	4.34057268666813	4.54760218602601	4.62701592461863	4.60121240168725	4.39003541221814	4.253592738339	4.46669440471946	4.15974389981325	4.37052867323888	4.78255221880348	4.49020912672328
+"LINC02632"	4.03928805159645	3.93979647451753	3.99528303375987	4.10290510489649	3.91479317592166	4.18269959657212	3.9372658849002	3.87638284505819	3.94186218869467	3.86356459210333	4.04821468919165	3.98307059564442	4.07908612793435	3.9012447208041	4.08760134636187	3.97271450676661	4.22683147874905	4.03979539245002	3.98307059564442	3.83996875160518	3.9012447208041
+"LINC02637"	5.70362298263304	5.77872950452485	5.73302052818147	6.0239281807744	5.83080852200765	6.14176278965293	6.50980050542944	6.11161856574262	6.23358039321093	6.13056693472783	5.97523039739916	6.13434898784708	6.3850449786764	6.24007552248808	6.08498428073898	5.85337998407599	6.03314313003854	5.59854857349133	6.2506553926524	5.82617858787682	5.96491582371346
+"LINC02642"	6.00125196252907	5.86937718705459	6.17017739678768	6.10271985819724	5.85564760108013	5.98432311595839	6.4501344114403	5.96088572852541	6.05093404381416	6.06668655214731	6.11336968706389	5.98842608103195	6.11514861656392	5.99063595192794	6.06628399105263	5.99225490610086	6.00771559466866	5.81716046987901	6.15508244500402	5.93037814396129	6.06673501767579
+"LINC02653"	4.38796870849825	4.61882570879966	4.56264832225662	4.8380603263157	4.68828018697499	4.95404628272102	4.89409945978893	4.44648161579762	4.65238838590816	4.67086535861004	4.65238838590816	4.65238838590816	4.65238838590816	4.74322821246859	4.67156346554298	4.51309054885419	4.72083029964895	4.65238838590816	4.6027576295272	4.65238838590816	4.88005752086208
+"LINC02656"	3.54327200683427	3.5550980728797	3.50914407487858	3.5550980728797	3.64810529871281	3.6792721165928	3.48401303533419	3.83817135783869	3.43810183659582	3.53348937039277	3.62589837570552	3.53348937039277	3.62379804874583	3.6643838592499	3.48401303533419	3.63715433199302	3.34576570882145	3.7232731979017	3.53741376891322	3.51847125987119	3.42581225415897
+"LINC02667"	4.647704080535	4.94742361195915	5.05193951021374	5.04056672710255	4.57387356345369	4.95943014296011	5.01929078869269	4.88529685331608	5.02668846124535	5.07671635970849	4.94326316207847	4.94742361195915	5.28813699445729	5.31890849063511	5.22753529207642	4.68886876572633	5.0408529569268	4.33682203856544	4.98117632139757	4.94742361195915	5.03672109804238
+"LINC02670"	3.41603442714824	3.39364782011131	3.17030966917587	3.38874832704412	3.54267889986376	3.30032076265168	3.32444798858825	3.36578703489803	3.30602079105951	3.21758470599846	3.3404377108901	3.31253200337108	3.50328801873728	3.48401303533419	3.37529893542131	3.31884288026732	3.27991423079856	3.3404377108901	3.35200306674087	3.31484822957982	3.4013389198714
+"LINC02673"	6.06425536978966	6.06847436916877	5.80870165833404	5.98737603366594	6.04766484037203	6.32526491172206	6.16625421708886	5.94889567076678	5.94347749257532	5.91185684419502	5.68848342956789	5.8757409845551	6.1078117171077	6.19170217874318	6.13466096022018	6.10501383256997	5.9925118467647	5.72637468388397	5.82028139443433	5.86316900172263	6.03314313003854
+"LINC02683"	4.47240638965254	4.50409823075687	4.06732466741358	4.79149720168472	4.5358584803976	4.75391176901744	5.10561084169965	4.82317594950864	4.69295996055904	4.78163610816114	4.43857226596227	4.57512919121534	4.62190808745155	4.64420934488279	4.47776028540357	4.77936789281025	4.57512919121534	4.54137198263651	4.29567762921512	4.33916569645237	4.37382651662993
+"LINC02685"	6.59792403226712	7.06132180204456	6.82293820283059	6.79865835092142	6.7497464094298	7.05545146960472	7.16900055603767	6.88794787751089	6.92668179504839	6.77945939945158	6.79865835092142	6.89972455135554	7.09760538615222	6.90767812885508	6.77026426323298	6.70789512630625	6.95371336136924	6.59219254372013	7.0159612945012	6.54796294198142	7.01661116399222
+"LINC02693"	6.87413617966985	7.20044534884597	7.40441612172282	7.22543857310561	7.60623527573682	7.06113310040175	6.81668328643556	6.88310975490865	7.54767619262844	7.73700758706182	6.86720280927835	7.52165972869624	7.29660121997345	7.0834293482337	7.19968226550911	7.01163828302781	7.48021781793371	7.44262196741926	7.24020730978486	7.85119233046586	7.35058123323965
+"LINC02709"	5.00225610653967	4.98659791666392	4.95850574843869	4.84810762133329	4.77732311414595	4.70443974719205	5.00829934504793	4.78592788300582	5.16199862399338	5.16304009926144	4.75262755992926	5.08930732802528	5.1860514770224	5.25541418946662	5.0490954222708	4.7425497404844	4.93354303437538	4.78579093080369	4.94474031697618	5.05781155659555	4.90888895551676
+"LINC02712"	4.03063451863312	4.65221641555191	4.29294357435285	4.38053698830567	4.49624051145352	4.04046226966923	4.27242439878565	4.39062594429857	4.27537906807258	4.37253480609131	4.3059590728455	4.00749871007958	4.59564987906423	4.38399872768697	4.15841092452477	5.03518561007227	4.26331932183972	5.08407157006416	4.11455727099985	4.46451290138666	4.55306548820988
+"LINC02716"	7.12682099433001	7.30458168147657	7.23431360514425	7.13177042195669	7.07444092142258	7.00846854267158	7.23431360514425	7.43024425967135	7.49832288048612	7.15712877035274	7.23431360514425	7.44035803215762	7.44217375594975	7.30199378095227	7.3719673491636	7.23431360514425	7.09458216397847	6.89719731823931	7.340752335675	7.21275851227008	7.18861169514745
+"LINC02718"	4.36284403806952	4.5283270056221	4.69586657565486	4.38650106384672	4.45133646284656	4.75391176901744	4.71384873236418	4.14074842762057	4.24619848629735	4.58791550073645	4.34283067234087	4.66252632969214	4.448822926223	4.59404678136959	4.75361043546678	4.12262345508178	4.59893563257593	4.73695453145601	4.64813441193096	4.35149791004569	4.44541859553139
+"LINC02724"	4.66784483447504	4.62324979839953	5.18090141940988	4.62797380437054	4.63435064230784	4.47741799123479	4.4218446607077	4.3980639727648	4.5987654354392	4.60299138902701	4.29154742631128	4.60432838805109	4.31623091043081	4.86392192949631	4.60432838805109	4.60432838805109	4.41833769210894	4.84323600193142	4.60432838805109	4.94318541717361	4.68840320271313
+"LINC02727"	4.52575418376479	4.64359039460007	4.39786271577962	4.60332864277782	4.31746099127684	4.28093414682728	4.83396746235551	4.49831722419338	4.56369718146842	4.67344183917139	4.47503676311916	4.49138634605553	4.35601274283148	4.65456684487171	4.60583658968929	4.41346542206068	4.49894184161301	4.4782851993683	4.35288811711412	4.47652369436884	4.4782851993683
+"LINC02728"	3.44964016298572	3.38278411243041	3.73893789476616	3.70327890840878	3.36560010406572	3.28519458087715	3.46039468797771	3.36552005369902	3.47890505905632	3.52979315781365	3.52979315781365	3.54308407059186	3.87094261672223	3.50435541811524	3.64151702157939	3.29971617590497	3.32660152582733	3.79789751493351	3.62500317597801	3.49236373555931	3.66596558071502
+"LINC02731"	5.57584775217675	5.97793903905404	6.22760089873255	5.73586417311183	6.25567539936882	6.04978797274012	5.75884834699198	5.61921366671353	6.11288383327178	5.94816047766017	5.84725698683707	6.11158705250717	6.12618940606378	5.40758059193328	5.87392215693814	5.90912444020232	5.7255058417649	5.98737603366594	5.96395947435063	6.29002932882682	6.28552169706969
+"LINC02743"	3.96705687266157	3.99285017472922	4.02337290586686	3.9534344439792	4.04380585167221	4.30291884282523	4.29822416787584	3.96705687266157	4.05824439036027	3.79415217560561	3.85111823822934	3.72421426249425	3.96586082704	4.27279389578789	4.07862058374396	4.0480969524523	3.77182683153528	3.72463248686428	3.85109548505738	4.06631918765594	3.69199330058651
+"LINC02749"	3.47701537442808	3.5689499807324	3.54499683827262	3.50117372901666	3.50117372901666	3.90609408535868	3.37600171494268	3.50117372901666	3.50117372901666	3.43452072702735	3.46924752939726	3.77987690860312	3.56405589640987	3.6193908965316	3.50117372901666	3.57891087760507	3.44062268240471	3.62284143984593	3.31977612340653	3.31469219625756	3.46602079321211
+"LINC02753"	5.17061174696327	5.16913854616039	5.32596034412149	5.576306593344	5.33358936572871	5.38273161125547	5.5356354166595	5.44622526198187	5.64896989573367	5.07564577774275	5.07948655890979	5.44992244206689	5.72988081189258	5.452432067126	5.36698718869754	5.06970294443602	5.17998461240077	5.16379173751935	5.55342971043541	5.21322457044126	5.3687046093828
+"LINC02754"	9.29655214905308	9.77637051375036	9.28162384722105	9.20501210541527	8.8228229043278	9.65453203497801	9.93691583126034	9.45490092296031	9.28028492246655	9.29330763541818	9.48382810138385	9.13722908617539	9.44099415217595	9.74395067791066	9.66437809585303	8.3347794662919	9.3793916164208	8.83647030878871	9.75756480196115	8.64164381224054	9.15121331307667
+"LINC02762"	7.3325972824669	7.3329198143584	7.37077194746544	6.92584603868942	7.02863710502962	6.86691294853639	7.51230466230841	7.20929280357962	7.13241874358239	7.10132574834884	7.43343850462038	6.85049657212768	7.09809649106526	7.17854792958793	7.12573448166463	7.03760118748472	6.7174618687056	7.08657457757333	6.79502582026934	7.25246252795586	6.99285289281717
+"LINC02763"	3.38786822176119	3.59344612100397	3.53621064481907	3.53621064481907	3.43378141141658	3.53621064481907	3.74002012294426	3.51706727123414	3.65162952918218	3.53621064481907	3.48727651302707	3.53621064481907	3.49996368527083	3.53111239340616	3.73430784458435	3.58590154626306	3.73141807802998	3.48572263066842	3.53224224408506	3.48090716835313	3.59344612100397
+"LINC02770"	3.47115147475991	3.36763503650697	3.27226362936335	3.66459936296672	3.32744161201506	3.83788914269334	3.75758726855315	3.47298025610708	3.64666797997179	3.36183476009042	3.18278727988686	3.2900598274032	3.72469837631843	3.89482574594806	3.59820086039585	3.47482946703033	3.53966226888974	3.3024339101175	3.39347793547275	3.73251228963526	3.52652834333869
+"LINC02777"	5.98617853652536	5.68569326645525	5.80466272937818	5.60495629091858	5.77242930507654	5.50566207647981	6.03389138386199	5.93665070236407	6.00971599593609	5.49757375816789	6.01089336493377	5.47633164155648	5.93572678509331	5.9621682349768	5.87771663925658	5.82997998664126	5.66883196248681	5.45124121372987	5.56236626046387	5.73737312443795	5.64539483126803
+"LINC02790"	4.17407602037939	4.31713022446912	4.28609006124077	4.2942595967176	4.23132803749037	4.17158081388034	4.32351478355936	4.36908380726544	4.49388413843998	4.2800642468005	4.21692323154305	4.28609006124077	4.34019026171915	4.458480006875	4.26102181909731	4.35043903552073	4.43220870829099	4.06481129863623	4.1406501684265	4.08109111589312	4.40144925578767
+"LINC02796"	3.35319378718008	3.63380446419854	3.55194315820975	3.8421321241696	3.78466716022619	3.67990912659028	3.59694182316764	3.55535138372898	3.58849460622507	3.54099490010247	3.48308331018389	3.65328345890512	3.62764470683046	3.66163161262314	3.53365876190303	3.49613071472771	3.62581595954203	3.25931148333487	3.58849460622507	3.58849460622507	3.71020824035586
+"LINC02798"	3.88509171534632	4.11838093225126	4.53259397337232	3.91421218426725	4.29536538303594	3.84731001096558	4.22847638114043	3.79837514424493	4.25505256325926	4.3988605195465	3.96545158790746	3.99768712373833	4.20647498589068	3.98266055276384	4.53003920552509	4.13586441893943	4.01305531989975	4.57512919121534	4.23750274235519	4.49326889846706	4.4324197672764
+"LINC02800"	4.01506985219726	4.08187373954164	3.90442390814043	4.04512596231104	4.37541990578041	3.82557278515292	3.88027736132649	4.10368961758208	3.90607096511914	4.06309522522463	3.66076069256676	3.78120888188977	4.00316024507621	3.90607096511914	3.65296626900545	3.96558078502129	3.98755814482959	3.5940220400786	3.86065508047214	4.00469379059507	3.93844524440723
+"LINC02805"	4.43863784088424	4.70548325674936	4.70548325674936	4.69883677530983	4.81449186940237	4.97660831958802	5.20099979010445	4.70548325674936	4.79548462888474	4.76774599018508	4.43853102812404	4.48867066104562	4.79460957171703	4.87568822108166	4.74502868343846	4.46849865099384	4.62837402466101	4.19001211701409	4.65357786411345	4.70548325674936	4.70548325674936
+"LINC02806"	6.2695824894001	6.8135542779583	6.46964488619953	6.60424680594401	6.60354051252405	6.85320626652008	6.54253509434717	6.50979900839826	6.67127696381666	6.59361593165903	6.2917627859145	6.62458032257381	6.72016757554242	6.59361593165903	6.72236447122842	6.63120710076994	6.79017683300563	6.18167774205796	6.4197269205106	6.60684298197329	6.74411523989293
+"LINC02809"	6.22681315071869	6.5933099001643	6.63426151059647	6.69578235707252	6.37359193220458	6.85015615174039	6.67314049221527	6.61545127932024	6.674550514632	6.71656019089515	6.443834933189	6.80942137130347	7.0038208925016	6.91355583495161	6.80927260624733	6.42569203402387	6.97587381654494	6.25487149141286	6.64942964815253	6.67314049221527	6.67522042661027
+"LINC02832"	6.42476980751571	6.51352509184996	6.12167814444932	6.63636807590223	6.60746288763053	6.14295943371675	6.26535378998816	6.31306296450355	6.45952113181872	6.45248966054565	6.14497286339424	6.45787927169589	6.42316959745497	6.42316959745497	6.4159466304982	6.72337606130737	6.69543238606444	5.9627291588379	6.33260224207894	6.33715770168759	6.49330617928997
+"LINC02837"	5.72045381753566	5.79292976248197	5.47121863618549	5.93239778130617	5.91283312981595	5.35857024369678	5.61611683729331	5.64039239879055	5.62446222540199	5.73134854571676	5.64684862433174	5.90035577626884	5.75581067642023	5.5889586222303	6.03707473910179	6.0268456023735	5.90952004207084	5.75581067642023	5.75581067642023	5.67593138489352	6.06737544830963
+"LINC02838"	5.66902061386149	6.09811614753028	5.56373908144052	5.9470766342449	5.67103142516881	5.34532219735703	5.66947397115932	5.81383013668551	5.92379282254134	5.67429788988078	5.72560938723637	5.77744842703685	5.8435302052971	5.80987172967344	5.94087952232145	6.00852547400421	5.97070657543442	5.62721793008021	5.91449273713857	5.60038008678565	5.95378078864642
+"LINC02842"	3.55953584629428	3.41120181164068	3.30425150179463	3.59046937794527	3.43130438322901	3.4256897213945	3.5859138924891	3.50117372901666	3.6098701584914	3.54235748178954	3.35565004081233	3.46879797030594	3.50117372901666	3.47647108477724	3.6017174675382	3.71516906719832	3.47195302557666	3.2078892414066	3.41060637364063	3.65766965399954	3.5448582959148
+"LINC02844"	4.255727397313	4.34261259048696	4.33057316673381	4.36705153959445	4.36000978389043	4.10998870678602	4.2947976575029	4.28795174510422	4.29521641561088	4.36356069172904	4.25668046895893	4.63809293174598	4.25286614864178	4.17577944643919	4.13268673540259	4.44392246896665	4.39408890849831	4.28448537216074	4.23805577775976	4.12557422138616	4.2220361352932
+"LINC02846"	6.52326981962753	6.4487405133583	6.80169007558494	6.73874023259385	6.45797034348466	6.97298166974515	7.10408100876984	6.48382942878164	6.63291107424417	6.63815797817763	6.58054344760241	6.73874023259385	6.85822475817274	6.80792463253248	6.82503547269269	6.49385679380176	6.68979825754738	6.6378397951047	6.87589666278975	6.16387100251688	6.89896388723551
+"LINC02848"	4.37253480609131	4.34057268666813	4.34142272755602	4.37253480609131	4.13916403741059	4.63599918532628	4.34503631271005	4.2493817728559	4.40727175826435	4.36441362076897	4.44471798881888	4.48864296159568	4.41708491834141	4.74457373653798	4.15540108037351	4.53661845529609	4.44954883102256	4.57449710786216	4.39910710563497	4.07383809929124	4.41525837866489
+"LINC02850"	2.94454194610231	2.89823623128049	2.9835121588905	2.94449953337584	2.95062715507313	3.10204444577218	2.8203443090589	2.90586636927851	3.12576709070931	2.89979368528997	2.70904331911735	2.78962025059553	2.87569894810593	2.8203443090589	2.84165264149456	2.8511186487693	2.91928741107058	2.97020180973135	2.82436675869456	3.00119591981982	2.76760689091057
+"LINC02853"	3.99054055607934	3.91925948348908	3.89219081089247	3.98422729915034	3.96493894776259	3.81940020127725	3.97521665806832	4.06496869908155	4.17275039142828	3.9303015500322	3.87244738185975	4.1129157976824	4.11953728917926	4.03710737376306	4.25169203036723	4.16910210131818	3.99211227129724	3.84873727098399	3.88509171534632	4.19940867866881	4.34134361133788
+"LINC02860"	4.41779284884672	4.61552486600255	4.2624023926617	4.86887976919126	4.54715473930911	4.76484551645043	4.62155240180778	4.66648233136952	4.64705628669799	4.58498473060969	4.53618667200695	4.8129925933038	4.84431414565121	4.57512919121534	4.78971384781952	4.66385394529506	4.78368345901118	4.18399880608646	4.61445630153325	4.57552230530817	4.83427524469146
+"LINC02861"	2.90002137391208	2.87199608108692	2.87270693646931	2.93215423871202	2.89078223540404	3.15922239019347	3.20881167370594	2.99641304815007	3.17119387010982	3.06603984465892	2.83889455328087	2.94639715913137	3.25309811826045	2.97764726086413	3.123515892186	2.72794574898942	3.02235310895	2.7283201184107	2.87771487785932	2.94505049384767	3.0155569839937
+"LINC02864"	5.24635740661196	5.09270796602947	5.09122390903668	5.37970718953718	5.55347263770584	5.23568873643898	5.34757663975994	5.12412882071819	5.14757130211871	4.94758846498493	4.9716729914744	5.31830101109178	5.07715523964181	5.52176819465172	5.11372538608342	5.22752282555733	5.3844029822088	5.0102833429673	5.12906069912838	5.33198689379508	5.20675536458596
+"LINC02870"	5.83250400067391	6.12726695164928	5.9950918309642	6.17383204578599	6.08305139347679	6.30433683525107	6.33362056542767	5.99742128356139	6.21200872898035	6.0361825576639	5.84680436663177	5.96717363620535	6.04905792156045	6.02715486135144	5.9953347041798	5.71374952040856	5.91123175874311	5.93962890778088	6.1984978366097	6.02853881367461	5.98930605562275
+"LINC02871"	5.27584152106889	5.19599130057888	5.17158587830553	5.18572128860119	5.07352058570851	5.30101115228135	5.21073090553096	5.21650278577494	5.15955933727166	5.31384619963412	4.91394877712645	4.91394877712645	5.29115639572597	5.44743835294906	5.00456931809254	5.21622800436681	4.97272165092487	4.93325390663667	5.08304533550102	5.10960667771552	5.28299263268134
+"LINC02873"	3.96894792132961	4.01427305640163	3.92072457403896	4.28477155036161	4.27615147075195	4.01427305640163	3.86047527598604	3.85364304865986	4.06923724104646	4.03979539245002	3.96452435474938	4.01427305640163	3.96750978840562	4.18234803252526	4.19631670112383	3.92443322988861	4.17509726449309	3.82850818786891	3.86822999067663	3.79584873258991	3.93007232363858
+"LINC02874"	3.98585831376237	3.96942426263803	4.213200894205	3.96779852709763	3.97442574370923	3.84348862176175	3.48359117594259	3.79171391679616	3.82373493549523	3.76766163686807	3.99655944282263	3.97098248904158	3.81904355560496	4.16652432486105	4.11312359128202	3.87276803395446	4.32841042717056	3.8221451981504	3.97909470987837	3.75381733362387	3.98762508073682
+"LINC02875"	6.51931042021666	6.88600151096358	6.41905795339539	6.86942802249643	6.69016865200376	6.74795538253272	6.83417210797332	6.68833959201892	6.75143388220692	6.88180703235561	6.73751773972977	6.8288321227187	6.92945855420299	6.94487850445794	6.73356359154225	6.83719887925747	6.97237250676397	6.48704402852463	6.9105369062315	6.84212581772749	6.95678159557132
+"LINC02877"	3.11934934744145	3.18328289708086	3.05318427590562	3.17857075310688	3.25620676517014	3.56492973692039	3.20538801716688	3.14950666336619	3.16521887890799	3.23905703290424	3.15537841624101	3.33845617202225	3.17311898141343	3.18004366123872	3.18004366123872	3.12356120801101	3.2954560438903	3.02175451328742	3.06057620824393	3.25274480629552	3.19478800029575
+"LINC02880"	3.36351585706027	3.79381676669164	4.01615771219074	3.60352736143096	3.53563885221081	3.66076069256676	3.81304310971496	3.4884982607867	3.66076069256676	3.79423291778327	3.61708577805693	3.66076069256676	3.76282924747739	3.62702688295732	3.72114139619938	3.66076069256676	3.77311098796407	3.45442131973711	3.58657035912302	3.60683511117734	3.59222776405588
+"LINC02882"	4.84210315229661	5.38048953120697	5.12517887437947	5.31545075672855	5.1096812887022	5.70704793295015	5.09385910771465	5.2055552991629	5.3796353245317	5.13134522802379	5.77127192872887	5.29094194276437	5.25255474757163	5.2671850701634	5.25255474757163	5.67680750983807	4.99255566148659	5.23656952448523	5.31256174970171	4.96274234355684	5.15954824693267
+"LINC02885"	5.56578145504517	6.08439492473522	6.12802308521925	6.29079601809376	6.12547840074111	6.09870612996664	6.21144133510697	6.12547840074111	6.2792931130718	6.14019872511372	5.82272015780872	6.0060065726433	5.7862700964882	5.8337079495964	5.88270811534155	6.01737664927057	5.98195862516118	5.46662520451598	6.01737664927057	6.29665879112344	6.02124819359357
+"LINC02889"	3.02532427018736	3.0853036026921	3.19234182172882	3.28751204617444	3.20415691873989	3.41222410027302	3.18320090554177	2.99937951581497	2.94906970106365	2.91401538833512	2.94770227855681	3.02532427018736	3.21519216995079	3.48892095065885	3.0307503023172	3.21519216995079	2.9239460408261	3.11885902149288	2.84147623127183	3.09869752986955	3.09697952783443
+"LINC02891"	5.34899164492615	5.61380955633239	5.53147984400162	5.48598682184951	5.48470094776541	5.54520398707111	5.59683955555574	5.46548019306915	5.39019113783639	5.5639233767836	5.5118813028333	5.58110464228364	5.63696209216902	5.66358383042616	5.64188787861875	5.53147984400162	5.48648303978409	5.61781992874554	5.45041750050223	5.53147984400162	5.47476279601642
+"LINC02893"	4.66784483447504	4.90855252881625	4.84733133423094	4.91991895781004	5.07861981376871	5.18481084197605	5.07190131556554	4.86103999191207	5.00042497346625	5.03974518614055	4.83746329874047	5.22181434992017	5.18646982829157	4.75863633861566	5.17425568463775	4.96011488672656	5.00473869763601	4.62453267802258	5.0435828979663	4.68966246362145	5.05579533608174
+"LINC02899"	3.71120883256895	3.79757797164453	3.80901309111391	3.80178679885111	3.59035006425724	3.85121143321019	4.03370460317926	3.84812408018489	4.11702965775785	3.96089851493637	3.59319378046663	3.97628661858966	3.855586885263	4.07792606942969	3.7915912848697	3.81304310971496	3.88578386122239	3.67884275111033	4.05982968673414	3.5365097033844	3.81304310971496
+"LINC02901"	3.72126509552527	3.63328964899821	3.92530693431979	4.05965357356596	3.59613866551573	3.76649585251223	4.11441238585146	3.69232850407424	3.93828340555589	3.62221731332182	3.62589837570552	4.05769695912046	3.79394166218127	4.01919531940933	3.75714810291262	3.71419132755486	3.46431738976995	3.40810319209792	4.22034994855909	3.6189575634499	3.67884275111033
+"LINC02907"	5.02179157612938	5.54599087086002	5.02546635325493	5.36973656767392	4.91853081959363	5.09526583273193	5.25776322503552	5.22426159456662	4.98304367159957	5.10352483861743	5.27633869825011	5.52123878313443	5.28722611518224	5.03572686209026	5.07132118929217	5.14239539220846	5.26819854464961	5.12479444426185	5.45913083958034	5.14457150075345	5.59092411986234
+"LINC02909"	3.30387071544079	3.35615827843449	3.26267207146602	3.38815919666752	3.3404377108901	3.61683051155074	3.38613004288932	3.38613004288932	3.45025442545068	3.2256044197052	3.39380561434578	3.3020855728092	3.45299128666111	3.47559710580204	3.18710151416629	3.41537647274885	3.44779009650347	3.10659929776498	3.50072399249839	3.30995496019103	3.38613004288932
+"LINC02910"	3.09788004993763	3.20481130136078	2.92158007965627	3.03988472830986	3.11192526528677	2.78687040491104	2.75131833770667	2.92909514542333	3.130125439673	3.06705789480986	3.12094707180925	2.93220761207606	2.92016130517868	2.71817908881151	3.11121551900572	3.34210708000457	3.06343870838345	3.06632100603015	3.08026577796219	3.12329359049861	3.07471097979719
+"LINC02912"	3.13481339167041	3.29242347648255	3.02279344979895	3.26310340522021	3.21827059311651	3.31122614016676	3.44658616286661	3.24954717502689	3.26139458650956	3.21827059311651	3.08340773436867	2.92593389251011	3.25309811826045	3.30047089584257	3.34879696530326	3.3291915166406	3.33006828636368	3.166330354999	3.15016286403367	3.19123826941854	3.42746275536855
+"LINC02913"	5.53364820439896	5.9863047302329	5.87639029225006	5.39085907905889	5.46800444444386	5.16901663551179	5.55934199273449	5.56458709019212	5.45614878109762	5.89406258606599	5.32692006831047	5.55767619149893	5.32692006831047	5.55934199273449	5.54414484367234	5.71424107090808	5.39144109585813	5.45614878109762	5.59632218516386	5.81985710152022	5.64092899545534
+"LINC02915"	3.86626175205083	3.75429974303514	3.72518129578118	3.76145915426798	3.72660240295242	3.57789748358755	3.76145915426798	3.76845751236417	3.73661519946172	3.74413604674674	3.67295180048615	3.72852531384961	3.81346843402655	3.60240941975671	3.81225838378201	3.99968522167995	4.02887805488422	3.67884275111033	4.07955798915913	3.64412061090917	3.90525156580923
+"LINC02918"	6.6364561610793	6.75091393182494	6.96219815675791	7.00238701238386	6.62326918696099	7.36441491100573	7.13079460161735	6.79967981660731	6.85033774279691	6.08155443080011	6.92347093105779	6.5571421782221	7.03912208590629	7.08557828608957	7.1060972370486	6.9044586469217	6.83204464295985	6.80620647061034	6.73647097039478	6.52435258231611	6.75635793858027
+"LINC02924"	3.96900457229589	4.19818030628423	4.40230001904516	4.27166065846618	4.12417919437088	4.75364059193005	5.08286199817748	4.09048401824238	3.90205777638015	4.20887942395992	4.12590318330011	4.14653239982021	4.38513143526507	4.45303620873357	4.00961535193085	4.07836212828156	4.1774639214827	3.99365960954382	4.03636562015482	4.1038851181793	4.24788733680399
+"LINC02925"	5.50460677962795	5.7637414832805	5.60405492490467	5.60997031081954	5.71656556366923	5.56154091777123	5.80784329864424	5.67271646581133	5.66620938758854	5.87087247722668	5.57094800362354	5.72740359795044	5.81694798938486	5.87868894193637	5.68172356338371	5.76797767612735	5.74185963354289	5.4234554638773	5.93399058771675	5.6356860604995	5.84110930971182
+"LINC02929"	4.28898103699525	4.02664245820133	4.30765788529858	4.34227119376949	4.17205923536447	4.28610598957571	4.44030620402268	4.61800894617512	4.44720197109098	4.30923821664179	3.9013393330195	4.26911215307632	4.30923821664179	4.60807556043458	4.5397880060881	4.24452892777478	4.4315661298355	3.92152872764025	4.29843771636942	4.30923821664179	4.48681990470307
+"LINC02933"	4.70154816757019	4.66943338963982	5.02563295211112	4.89533147085978	4.73935092522407	4.76913256191888	4.74747124177722	4.79522463509404	5.19973652481879	4.79756610741725	4.61671180393826	5.06264815832403	4.97439714009685	4.79522463509404	5.48506751125079	4.75561910429471	4.77983852688319	4.92227866420439	4.72314380461032	4.67174604553825	4.75589589255434
+"LINC02934"	4.78057709465034	4.48666678872302	4.56241382718725	4.89006180288394	4.60814762562518	4.45849093048474	4.65203337344276	4.59059833631891	4.5090516952357	4.48517235642483	4.40519826593644	4.66591702886997	4.56241382718725	4.6450597241856	4.52294646085111	4.45373596222686	4.56241382718725	4.42764418536644	4.56241382718725	4.91783304239257	4.56241382718725
+"LINC02941"	5.04261147475233	5.29907122832731	5.55890411844152	5.60993383790919	5.55741427971723	6.11530648712555	6.55583486610373	5.47608336802214	5.60846940605158	5.32533776252972	5.12535168972133	5.32975777210572	6.33312833486339	6.83646577029136	5.72819661853945	4.97825739421766	5.52793512768232	5.10331401390151	6.04196693038108	5.45082375652361	5.87021622346016
+"LINC02944"	7.1100810326869	6.2143853362124	6.3660972320686	6.34261670605637	6.27156729579565	5.94473840031109	7.17189326348289	6.75456421990908	6.77969270334959	6.29423637010893	5.71332327972823	6.10714846066398	6.45484107198593	6.72215921664424	6.34210777845219	5.74172558747383	6.29346057663977	5.87708187068397	6.38733922870506	6.07568319320154	5.66409091427751
+"LINC02955"	3.47499201623857	3.78425238031351	3.82347671610366	3.83878251400019	3.81474210124194	3.74943096551967	3.9242470973841	3.81474210124194	3.88521939850186	3.84232318792524	3.79786358359956	4.08907308793263	3.81474210124194	3.81345751449757	3.85836381233356	3.73226059557156	3.86802682835376	3.78993954030968	3.81474210124194	3.83289101062697	3.78021166400903
+"LINC02960"	4.1651322233828	4.40827564418163	4.40827564418163	4.35355051471409	4.29913588558582	4.43976120480993	4.64617089661733	4.39137212574491	4.2332014097165	4.30469224241966	4.29938893389525	4.22885077443437	4.49497619638741	4.78174133809744	4.41016449365541	4.75799280259008	4.59223505916081	4.40827564418163	4.48090500909344	4.49951943741024	4.39097176109221
+"LINC02961"	4.77909978569502	4.61830007200209	4.82255418563632	4.6747044121815	4.83528333679088	4.82255418563632	4.83165634161587	4.75799280259008	4.94393288475166	4.87552870627771	4.82037777746451	4.82834196343027	4.94799445616185	5.15475693044628	4.93049675639794	5.12543291625504	4.9723178056928	4.56404865685909	4.82255418563632	4.72587059346303	4.70781600344376
+"LINC02977"	5.44216632379867	5.61375698540806	4.96254632963016	6.08735862530345	5.31216853647391	4.17205318795872	4.66055618054443	5.20337661355729	5.36525689638713	5.63928917564103	5.36944107649417	5.82648687307589	5.79976601284619	5.03837422299887	5.56174750113529	5.7637414832805	6.58032671949543	4.83320152081293	5.62066734344472	6.57075119377714	5.53349030257646
+"LINC02981"	5.08150208748009	5.08238041835313	6.30664312438746	5.51254319064417	6.38114882750266	5.78439690448336	5.69013916975582	5.68252365059641	5.24803499967431	5.32915771904715	5.28941707889161	5.78757013370569	5.6628146166868	5.31954292138187	5.39943991525831	5.06302160325369	5.71856526700521	5.55486842131822	5.40453638311186	5.56335528581817	5.57970446638501
+"LINC02984"	5.82628331840643	5.06292769503316	4.85094563513809	4.52283612140804	4.99139560673267	4.63838205024338	4.46498646155582	4.80852447050512	4.42962980554153	4.61458902846269	6.06139268954549	4.64537541526901	4.49497619638741	4.65386182008423	4.50907575090112	5.53280576544547	4.55593852872608	5.37669542935179	4.55934189801254	4.91512066266508	4.39277520761725
+"LINC02986"	3.70632310137397	4.27345060280818	4.29838600034942	3.71386883305159	4.03531369419337	3.90180236129548	3.92683641844489	3.58282659771066	3.79241760223067	3.92669847349284	3.9660072090085	3.92858179691301	3.9660072090085	3.92231796062833	4.04016335310044	3.90595929566817	3.9660072090085	4.11971801018887	3.91506532308894	4.04213083705807	3.9660072090085
+"LINC02987"	6.12269495964615	6.24572429045995	7.18551611193736	6.5364364969279	6.36220410864103	6.7858901392691	6.24674308912172	6.29691059643988	6.64103760504894	6.06964092881218	6.44598950950844	6.33571552327933	6.815385397274	6.62271224338171	6.64999667647211	5.78678777031223	6.12084473091918	6.1205451934725	6.27943377810273	6.24533970727445	6.03314313003854
+"LINC02994"	3.86000305886647	4.1223071834443	3.93432950595023	4.33260004374928	4.12589706031832	4.14243846829005	4.17569248571496	3.83660741310208	4.01843811812448	4.09326052576466	3.86062627967594	3.98849441838776	4.43785946129897	4.23992039988774	4.21749257809528	3.88552449776317	4.10304474730651	4.0490181228974	4.20082505691737	3.85343102378629	4.21388891708673
+"LINC02995"	3.9526432462815	4.24548806727695	4.06019340446639	4.41118501192079	3.94847753638272	4.30291884282523	4.23640830078599	4.08937878326537	4.03325337051308	4.22434559196525	4.13237658719397	4.29429832041559	4.42920164778839	3.92446790518315	4.43714437946545	4.17257171084181	4.01788487208276	4.020427717521	4.40500055839417	4.14517297347118	4.33592801294937
+"LINC02997"	5.48443078817688	5.77872950452485	5.6875960759415	5.70881492160149	5.69053353394212	5.72041705943418	5.95664736669758	5.49787365551905	5.90462141091168	5.63247879925536	5.39552329625542	5.70881492160149	5.70881492160149	6.02334352696867	5.90115910863285	5.7065455450358	5.68062476965508	5.62273573874841	5.63148853954144	5.54093541842224	5.79824201999832
+"LINC03000"	3.36673928833771	3.53016952857353	3.45793012745402	3.85770493422139	3.38062338345353	3.53741376891322	3.92968292581501	3.93791839699787	3.60748215626102	3.48553991857709	3.39561743805876	3.49002590205613	3.85505882290972	3.73967245905864	3.67927109132219	3.17205132397433	3.56071887572409	3.10779607951655	3.53741376891322	3.58421751250659	3.42897620655313
+"LINC03002"	6.303897164781	6.20691951038733	5.96576865783306	6.42076595379169	6.16348216845301	6.87012963922704	6.27736415594726	6.03419139609067	5.8297599420132	6.38996846307449	6.42413535862318	6.31774265897743	5.86456612475186	6.303897164781	5.94613330577243	7.22223002521477	6.4230966767612	7.16292955334678	6.11637434963035	6.26714552338826	6.303897164781
+"LINC03006"	4.60111757404737	4.28462678094752	3.94157258873358	4.00246893562081	4.48856364505935	4.22418977974962	4.33291028078973	4.17703445864388	4.02902103000701	4.03904572966712	4.10751895891543	4.18177143521564	3.95262338357818	4.39275753660256	3.99505080465012	4.51733403900731	4.13876351501967	4.22240534451887	4.01269833052074	4.03502943634107	3.97572981393521
+"LINC03007"	5.48449139696035	5.34084881123583	5.84991799260444	5.81080654953989	5.76944356971496	5.64372325546358	5.87275755679131	5.53434592256427	5.51445410565182	5.81080654953989	5.34944409067244	5.75018768780075	5.72263560752393	5.4899384237026	5.69174796728637	5.65470514844302	5.66459683197019	5.57735362596085	5.81731594709153	6.00509758494636	5.71862458676133
+"LINC03008"	5.62498878652054	5.86621066923479	5.94570517050411	6.17876883732628	5.84917098616015	5.89371978481966	5.93146071510372	5.66286797957168	6.03159687188381	6.15268636424647	6.24656085869907	6.08916308897424	6.3850449786764	6.04490272107776	6.18915182434693	5.82466498996994	6.29430090802031	5.92425211303744	6.27226229855743	5.68950281405479	6.13684002988569
+"LINC03011"	7.40384276550187	7.44410191577283	7.60876350476119	7.48514651343894	7.63862237391344	7.12026846954307	7.374489084527	7.40826605815433	7.25194451342059	7.71286442729753	7.51446523483954	7.39904425858618	7.41166369093342	7.41166369093342	7.35163369430201	7.49495211114579	7.12787321988581	7.86743510378706	7.58846777643204	7.3829341742671	7.27205286163649
+"LINC03013"	8.92822857094881	9.44260880719654	8.79701537297793	8.47018318937784	8.78696916601423	8.30654015038143	7.77028015356718	8.32223752669674	8.12295409651475	8.00401207934515	10.3440120087511	8.07002622276209	7.7350732087167	8.83257726427803	7.64657363989263	11.0162023026032	7.99143493045135	10.2173971417467	7.91946734067482	7.7461079740486	8.3819789435666
+"LINC03018"	4.37253480609131	4.90543004922425	4.63760328552561	4.51766639256622	4.83659801491854	4.66985731301297	4.79226008590576	4.70971389863224	4.59375634210674	4.79906192825226	4.57030693857947	4.4639965426867	4.72667592073591	5.47683935470873	4.74888132562154	4.91518332953241	4.77097851187753	4.7065445431224	4.7096388695463	4.74171457595261	4.67215299225949
+"LINC03020"	3.83666028575918	3.88391403552812	4.00294424462906	3.94525388054519	3.87187824778464	4.25642553763071	3.86626335601727	3.95993423689837	4.2947976575029	3.98065400384598	3.98957929442637	4.00294424462906	4.06130867562639	4.28617546633356	4.15871293994809	3.97184273191482	3.8327630546069	4.04397975228295	3.97184273191482	4.28584363444073	4.03600099560098
+"LINC03024"	3.88509171534632	4.02328643099378	3.71449383629795	4.07605302923454	4.03040026580225	3.93091864851767	4.3210483001742	3.967849449306	4.01276469038658	3.85147432986572	3.80761531802928	3.70293775872318	4.0497870603721	4.41216323933658	4.01276469038658	4.03459594732055	3.92174272837638	3.83614696107924	3.84385535792583	3.8603158237432	4.08484681375168
+"LINC03026"	4.48724563642249	4.97368386001731	5.2959536581184	4.72080091485323	5.23972017979681	4.97809547271182	5.00653749378465	5.00464271214721	4.98834635874966	4.62185215118914	4.57237601966739	4.89964978295899	5.08558057043912	4.98906587123612	5.08087743176926	4.61236747677843	4.78783151646172	4.8207809526663	5.10925520808561	5.5144367950964	4.76276043547086
+"LINC03031"	5.18391081129588	5.4556755464727	5.46823085176744	5.22006642454642	5.47201658521478	5.60946072023285	5.56819569206839	5.50485710133167	5.42194276631723	5.34953520140383	5.22821073230855	5.53713005333519	5.4773192449962	5.80045583374354	5.567620532501	5.43092345874711	5.42942362634279	5.17628260001443	5.31292773278042	5.39034099988543	5.29850645258757
+"LINC03032"	3.55717608497942	3.66460139364954	3.74372384250437	3.62162684851345	3.62834375686502	4.18028514729308	4.27261175722246	3.60712310004745	3.91092203510717	3.79334464978253	3.38198882566508	3.57733998435554	3.77587218162557	4.22710304462646	3.67560387394375	3.60108654043958	3.59185697744154	3.20081046925886	3.57887610709952	3.57126797719043	3.70434657717593
+"LINC03040"	4.67313471508933	4.71907238093972	4.82797497554128	4.93064779570805	4.74584050554008	4.96330094211801	5.19686931626928	4.89874028416106	5.01442206132507	4.86095148849412	4.80589787705067	4.91667694591071	5.08632791925237	5.26116037430958	5.00989310822457	4.85683668236888	4.96425635690672	4.53194996505947	4.84753881758939	4.85333968218358	4.97856786092402
+"LINC03043"	3.7501564146275	3.87540203707524	3.68336590254738	3.5549697860284	3.51387940542679	3.97729649593793	3.84636443646558	3.69481367875989	3.85775298832631	3.5827114397325	3.54376287805096	3.63767474352194	3.5253247285004	3.74235217017352	3.69481367875989	3.90004336006564	3.70398422418708	3.53190358417134	3.80656825232556	3.66017519024311	3.63734615191803
+"LINC03050"	6.00886108858842	6.33486472787957	6.16466355376773	6.58184848364488	6.22735576691988	6.74636872318573	6.86087183476388	6.34690377361127	6.08284507826676	6.40657832885578	5.98474525210789	6.10316281660411	6.62051061252801	6.94314464308857	6.44546466513191	6.33486472787957	6.37808210554491	5.63824204877721	6.27919994840516	6.18354567376722	6.24160598775613
+"LINC03057"	3.97028334474432	4.03712439306994	4.01175087958253	4.15582492375206	3.81375348089746	4.37695186477809	4.43244498914489	3.96892540173219	4.35137527167777	4.2172911234432	3.96340785996789	4.22752406751478	4.10754178797082	4.62863190770336	4.1793402930312	3.97019206634787	4.04607259124915	3.79536138343524	4.52684656142393	3.9660072090085	4.18618448945616
+"LINC03064"	5.58071616357943	5.6957520216842	5.52149968413851	5.61200488350105	5.61263821502074	5.64372325546358	5.69027051266631	5.604592643397	5.64372325546358	5.75172863110474	5.50497531030909	5.87273209820604	5.77257740804791	5.61794778764286	5.80597230482171	5.61781992874554	5.64602385839204	5.53090341944023	5.68623690415338	5.64159393676356	5.64386625297213
+"LINC03066"	3.82216124439399	3.9256524595187	3.80357482616701	3.94748923976614	3.81002423181803	3.89419644329025	3.85616589422353	3.83353097716374	3.90381227852757	3.95063094340242	3.78419922575283	3.74969505751895	3.8412065486202	3.46619951518636	3.79171925215003	3.76611991554453	3.9196710886632	3.83353097716374	3.7989120758178	3.83353097716374	4.12038803447206
+"LINC03068"	6.76447888805107	6.79015666489124	6.56245625359024	7.01865665919438	6.70546144579296	6.64959160935129	6.64381626073176	6.70448234812973	6.87052527905355	6.98388810305806	6.79015666489124	6.86804142600646	6.69377425358009	6.71530445856233	6.9158356450544	7.06274584825079	6.84919196242349	6.61319234249534	6.81143754364317	6.61479492385403	6.97898465718357
+"LINC03072"	5.9205182968212	5.87996031706166	6.36780500815389	5.92215013472151	6.03958886575012	5.25822450574938	5.42689205077118	5.44061319479109	5.59523677210537	6.16526891764255	6.73317899584138	5.54339373684196	5.92215013472151	5.92215013472151	5.92146835245207	6.79015666489124	5.86688148005204	6.45718866223775	5.83127893085894	6.05961223696157	5.88562230096989
+"LINC03074"	3.60740569051683	3.82724214414231	3.37867097165171	3.80178679885111	3.79555030303798	3.71478542569391	3.78539330344719	3.83353097716374	3.78539330344719	3.69539193131181	3.6164988292444	3.72421426249425	3.83476994721104	3.80110496134559	3.61787277252842	3.6987958900822	3.92216177577978	3.78539330344719	3.67359308832711	3.76838196922353	3.81981645685684
+"LINC03076"	3.08606473760955	3.1934847864257	3.00959318115518	3.0579037973092	3.0579037973092	3.32836355936252	3.10175728024409	3.0594385130357	3.08508044593508	3.19175865237946	3.0258156110527	3.02285459755223	2.96601952776406	3.30237842074925	3.00438941869144	3.05607501596203	3.1532127525214	3.0341968749633	2.9412928032694	2.98978732961493	3.04399510910632
+"LINGO1"	8.22352792188955	8.95065444091912	9.63681858076391	9.25779897857624	9.14711653584945	9.45436486701358	9.17181616468998	8.96860364976573	9.29185394292985	9.14552321749838	8.76160783380325	9.04505521551574	9.55250521320523	9.1457658069493	9.27830883861916	8.50084534145859	9.23630966234767	8.6868093922026	8.88231165178582	9.11269440945078	9.04980045573372
+"LINGO1-AS1"	4.776194822711	5.009162235344	4.76422202928015	5.06315070635358	4.92167126839517	5.35895288277171	5.01990706707693	4.93100851602605	4.95591166295632	4.94530743145174	4.83312552358118	4.91814695545177	5.22004269586411	5.08434163260989	4.93100851602605	5.03549008691693	5.02696633306963	4.49950713174227	4.81091665817784	4.69369932300262	4.81225879240469
+"LINGO1-AS2"	6.14505941677971	6.32377932542427	6.23867087184313	6.23003528763718	6.24400544607964	6.24624496249475	6.35075310365755	6.25300081721332	6.30024875244259	6.42069094023965	6.34572720983364	6.443834933189	6.3693537560955	6.565137836488	6.29050081977525	6.20173667946663	6.35970814778787	6.1115642741533	6.38737428114992	6.22713460528569	6.59361593165903
+"LINGO2"	6.5534222785848	7.37070874680937	7.91346723891031	7.31854429215667	7.67091783915468	7.14395624418454	6.7023958248099	7.47848206069443	7.47680905542834	7.32044014262896	7.06124113696352	7.50835472062806	7.35106488748504	7.14204793514497	7.42540413190713	6.42244030353733	7.38397450152058	6.7184821052843	7.34591499362963	7.82900640210215	7.14581117818498
+"LINGO3"	7.08125564533932	7.41910882970235	7.09240372024087	7.423546693143	7.18449977096407	6.95482136747765	7.44062338716213	7.24813521520092	7.45159846513859	7.30122548359148	7.30122548359148	7.35459004800691	7.3385162478594	7.13079999505876	7.24560022418546	7.36554275875059	7.47633700313964	7.06610196413853	7.25542475968217	7.34356325932357	7.48097030773037
+"LINP1"	5.21449791762523	5.31294694437209	5.27636930920092	5.53697054570478	5.45469966310578	5.79288856409645	5.47576496637158	5.08434163260989	5.37115819009734	5.41382320973262	5.29109879796935	5.54640519213017	5.23313207935201	5.4595303688671	5.45309142483643	5.211312981875	5.53026496546051	5.21162510184184	5.27636930920092	5.53216018095028	5.42087711026973
+"LINS1"	5.38464013771638	5.71934173743158	6.37607898061536	5.58245808577861	5.59428871373114	5.33358936572871	5.30024170349703	5.19376895371672	5.00935541545816	5.04915237281602	5.63509403978446	5.00795314325606	5.28443317545583	5.15553222106613	5.43741111609003	5.15433117387963	5.0098710332477	5.75809654167669	5.50363212211636	5.14523862036951	5.28468192166033
+"LIPA"	10.5123937927356	10.5931077782328	9.62293069324127	9.95564688960934	9.82353235690447	10.054515715768	9.41654123133537	9.87735777827802	9.2560300588495	9.79365966386081	11.0248258239448	9.63162127851251	9.46525701485409	9.85153053672291	9.94294116977484	11.5816345187295	9.74848241141878	11.6580794247509	10.2110918865066	9.63319631004043	9.98320593396437
+"LIPC"	4.29743847876748	4.94728993399301	5.05497694948843	4.73150203762978	4.66152489177791	4.82255418563632	4.91320627458843	4.57372786931326	5.06549610052887	4.74510293793392	4.46519149922209	4.5218225803872	4.5862088055184	4.83327650984623	4.83851391392687	4.73511858066679	4.64437348577506	5.053173531603	4.29959741803925	4.65736598102772	4.7717756725827
+"LIPC-AS1"	3.63749630241529	3.69068742859288	3.56644467137737	3.75619679755948	3.54058439495162	3.93978007368773	3.65417379697831	3.59741389841909	3.71708842314105	3.55575663900209	3.58992527580384	3.82019877236475	3.69068742859288	3.69068742859288	3.69068742859288	3.72714048379818	3.57190855420458	3.73385609557449	3.72031864137824	3.70123300913573	3.80588693381165
+"LIPE"	6.64006857258522	6.8192000104922	5.80473941188529	6.23942260979854	6.17806181552438	6.86892284148917	6.59219254372013	6.03928870880186	5.48614606663514	6.76823631876759	7.371858381453	6.92842960557307	5.44194519675507	6.45045647122133	5.80932148184067	8.5957619870505	6.55076974950075	7.63868099234461	6.50252672889155	6.28597498529674	6.39938130846646
+"LIPF"	4.61284354163675	4.81289441148574	4.61284354163675	4.55378569919032	4.72682473774575	4.55518323086922	4.69862354638628	4.57276113764056	4.67569487082649	4.69299653646468	4.57182672529876	4.61284354163675	4.6038791033004	4.6597200436779	4.76297958638047	4.51247774329862	4.61284354163675	4.52817667018368	4.49759666541076	4.59355573115981	4.84882936335893
+"LIPG"	4.31612640896564	4.09634967687387	3.74015991474485	3.98101196187111	4.2876001313119	3.89846126550579	3.72818669016678	3.60377715252156	3.8574019340688	3.70905947593879	4.58536997476499	3.5695127422351	4.25601724290259	3.64306305128218	3.98101196187111	4.07053693635173	3.53187991473091	3.97507909905869	3.586836937303	5.32888010692045	4.56775778739095
+"LIPH"	4.72083029964895	4.95184723366764	4.95020572071499	5.06972758685007	4.7975433491643	5.03774631693565	5.27824099413959	4.96189995530723	5.12797978116187	5.04463957398828	4.75825499606017	5.0375659491818	5.30527305192381	5.16891881394069	5.23360693138168	4.65029288499483	5.1474104515642	4.71704285118346	5.21547307854632	5.16647789759177	4.90641885061774
+"LIPI"	3.32328712286199	3.30836677292992	3.06734766340551	3.10482217013143	3.03358898876592	3.25287622273023	3.21631013869584	3.20485084970286	3.22906450574099	3.069460423937	2.92596307538006	3.17060261855207	3.13455470553028	3.52341874071256	3.13605157112508	3.2054288700394	3.1569704371574	3.10482217013143	3.19304796876825	3.25785811845394	3.15316952717409
+"LIPJ"	3.94311360562925	4.11508539279323	3.66838617116164	3.81817753635658	3.76649585251223	4.11142680944999	3.99852721729416	3.96472739285557	3.8412512702087	3.84153530464677	3.67399166536082	3.83611419810623	4.0705701634821	3.92088694771795	4.29865295260513	3.89358571911225	3.9687846216619	3.60442003255624	3.83754576554562	3.77359204886821	3.76060733967698
+"LIPT1"	7.33948035271429	7.31107540467142	7.26726766975661	7.33103826951898	7.17350369490882	6.98482901944457	7.11931835540001	7.40422168808925	7.20586739620299	6.48948881482271	7.78528870037393	6.70052456767945	6.8054019383177	7.07358717615679	7.11777499082658	7.71524346286996	6.99565082883097	7.54765810607549	7.31191816136469	6.67363101349835	7.02771038350416
+"LIPT2-AS1"	6.47352253374518	6.75251754429682	7.06666761084124	6.93335104625436	7.2823745883209	6.59666809428198	6.82086485154473	6.61620117866378	6.83865511855995	6.85746473341847	6.81882992687467	6.55612457420469	6.77343868713232	6.64577344467069	6.98457767524852	6.76515100795759	6.59237133331748	7.13540907520815	6.76223542633596	6.68676964193542	6.45110106683287
+"LITAF"	9.53207632886942	9.15102293462425	8.04479426864675	8.69341260709551	8.07395552226286	7.35370738040245	8.78751372598259	9.2408731620876	7.77576811134443	8.32217033664631	9.72338927101077	8.76836432786411	8.67230722579461	8.67738708864344	8.42170294456883	10.6049559487049	8.33009025105155	9.52071925440456	8.87322864755904	8.56661672199553	8.59484866998004
+"LIX1"	8.97852408823166	7.87150320279529	7.63167595189382	7.43221452950363	7.3159596876233	4.7390744989645	7.72326506173557	8.25404517473531	6.40432563335375	6.09541647030697	9.02979798555332	7.27218694821019	6.46993237003434	6.61620117866378	6.3213604135518	8.34160634961163	7.12894394741116	7.58913622780794	7.57833059982406	6.9861077708192	7.03126274883941
+"LIX1L"	6.30435607525626	6.82009252386759	5.84270421784982	6.51072310260875	5.98175167422942	5.8990574261972	7.07405668785683	6.26960414042467	6.59330337936692	7.35541440221943	7.77723960643076	6.57677714119386	6.6651831778978	6.11139512336445	6.06706760983859	7.2424358792552	6.95585232822811	6.93987690333635	6.08326519733181	6.77508624961331	6.24624496249475
+"LKAAEAR1"	6.45870464832509	6.86750141252808	7.31251703210839	6.74045972530008	6.89729493961963	6.47078419051315	7.03190406172115	6.71449118147702	6.82804976422348	7.01303590020925	6.8744545953142	6.97458767965399	7.08166433532048	7.08606697405509	6.88929634408732	6.82486936236588	6.86750141252808	6.71308900111746	6.71538717959477	6.86750141252808	6.89054784858351
+"LLGL1"	9.00189449931091	8.41764854647729	9.58621057465999	8.29256889668701	9.18429613252521	9.24360838889109	8.55206820174521	8.6094480496542	8.55138805895701	8.48875746820716	9.36429485044309	8.18045468137814	8.35854547834716	8.52668933224414	8.13141573411948	9.95428564961504	8.39669815875431	10.4484039550832	8.49937436641142	7.97182110455435	8.15088433058176
+"LLGL2"	6.90134008492015	6.83374631095372	6.52736371385855	6.57915621315509	6.39560453418627	7.2625022278826	6.41458795830013	6.51808410075834	6.41441103289857	6.49291812071719	6.86337711503178	6.76685670684192	6.49772544187851	6.89331237900854	6.79212014621664	7.2850093827233	6.43883165619157	7.2199935766646	6.45396132416258	6.34000879986867	6.85135489168786
+"LLPH"	7.09044748565173	7.05998994970315	7.14849681198631	6.98747899681319	7.20545436655392	7.18285848575439	6.86466488040168	6.57509306491829	7.01040338052066	6.65800898311607	7.28636229048433	6.21723754667607	6.86649942093618	7.23918267452993	7.69108546986743	7.54510364453713	6.64830159549793	8.07882291476609	7.01755715541554	6.84300085858323	6.76371676771117
+"LMAN1"	6.66169562882496	6.39494546759591	5.69223761885942	6.1727859073373	6.40101673202158	6.18126704521696	6.32626967197868	6.76212963995885	6.37977378819494	6.23766504625417	6.65078442765966	6.37977378819494	6.32505306286305	5.99546332719319	6.21943387140543	6.89463453581699	6.38088825148993	6.64330298471639	6.47793940018266	6.31100465066618	6.22436321691284
+"LMAN2"	7.79533717169822	7.45369964088683	7.73575032323684	7.36845592607708	7.48583563908204	7.82325453906769	7.88355345441636	7.59316196397038	7.41827483232051	7.63373975438995	7.75396767751036	7.31023327368822	7.49657715543864	7.27114984189964	7.23347580795655	7.6256220007311	7.42255686521961	7.87795143646825	7.43906775214199	7.79292410582045	7.52726677979091
+"LMAN2L"	8.41032540029272	7.73820518949195	7.99190022492999	8.07522523262288	7.72596381268983	7.81412570061859	8.25674300846037	7.97133746497618	7.96843313453648	7.45976530866096	7.92936506745638	7.60173922319755	8.10731135736383	7.92936506745638	8.27424755862032	7.97907885014351	7.75434159095507	7.79952403310116	8.08900243092352	7.93184981920877	7.60307007021334
+"LMBR1"	7.80514537419044	7.80864999170188	6.93906685213838	7.29889241340973	8.30527610241266	6.68769003449279	7.01356187274497	7.78418114379873	7.41175558710745	8.20658764606722	7.49684589517044	8.03213806462952	7.13243593858931	7.11484304601121	7.17762177005666	7.91348012482827	7.78418114379873	8.01453423470901	7.68314026566827	8.24412959318796	8.4817307232998
+"LMBR1L"	8.09464383167515	8.02951820916637	8.21199950433897	8.04338628655228	7.69795279145272	8.40726726213946	8.22830898579866	8.41763539248641	7.98923227654758	7.78454704408258	8.02446697263042	8.00515357952631	8.23843395792759	8.12974874492797	8.02441334303639	8.02951820916637	8.13738847743354	7.5504056570815	8.07890265416991	7.86733509559293	7.87859936826948
+"LMBRD1"	11.2926675128504	11.1434983995846	10.7168500719754	10.7502157865523	10.9863684329096	10.3174018822022	10.6166857311693	11.086553513125	10.8142962907576	10.8865670682083	11.1425597345822	10.8726482226942	10.3873445623262	10.465393685322	10.616009411534	11.6146127258951	10.8130989345647	11.4199073023468	11.0191702175675	10.9674383075784	10.7024785128107
+"LMBRD2"	4.05364059127661	4.74696751163773	3.72690266496886	4.30065323872783	5.00297310258269	3.83532198687682	3.88015463335531	4.54447763946245	4.50027435686551	5.02911786542874	4.12629670412511	4.84170441304354	4.0316818989111	4.00201699104998	4.30721924506157	4.6666421152453	4.5244090483245	4.75531941544926	4.25061097389618	4.79677453012748	5.22560146617445
+"LMCD1"	7.19499463304299	6.6673907042027	6.42448120556053	5.96090142780694	6.4728495342391	6.66237402427022	6.62875171226049	6.47135991316338	6.27034342673027	6.18688704582784	6.58149479971378	6.02701114774777	6.22736886196646	6.8037380589086	6.20993156156794	6.7167790112469	6.14505941677971	6.42250583354306	6.19921534002616	6.46273474763336	5.99880874942329
+"LMF1"	6.80412395008521	7.00789482526239	7.43697596174685	6.20746074708275	7.09508473513436	6.92310401866427	6.59415030088157	6.60141955524593	6.2406451515699	7.0653536807678	7.01189098080557	7.20066876202194	6.71924859588508	6.7320497398796	5.66400275927758	6.92270511316674	6.66861506805117	7.30524610061603	6.24113923116207	6.46433450403275	7.28739903427719
+"LMF2"	9.06752625730084	9.09576429474715	9.07952603391372	8.82151645302237	8.88213715745028	9.0719380328634	9.03668754650267	8.85645178452916	8.69142130684883	8.89666413615165	9.00843636140845	8.80042107419476	8.90900160795316	9.10066699120614	8.66330903867943	9.09561782419938	8.88469383243965	8.88678589169577	8.83682626970718	8.9345985621045	8.88131440821448
+"LMLN"	5.48431385044976	5.92852150722591	5.60648965436462	5.67122185718101	6.00947510814974	4.87215561456904	5.14429762750201	5.53840861047522	5.68974785444352	6.07082430066458	5.80810533885356	6.303897164781	5.31084777153982	5.11051213892402	5.30444744365902	6.04566898624723	5.97971456496542	5.76996873643449	5.76125936971348	6.30649147561701	6.05945600634505
+"LMNA"	8.44655371300115	7.48967641553592	6.88187126221964	7.39027544852539	6.8864740816173	8.47699849392376	7.27051679379595	7.73471213136054	7.02582223068895	7.44225312795125	8.0969453743156	7.77958889717256	7.25146990949824	7.30976783084866	6.98820662130288	8.19045100698045	6.83044018599913	7.92177997962522	7.1790793248665	7.5213645529255	7.32327074116856
+"LMNB1"	6.444868863179	6.1891021879582	5.73971809950586	5.77779591188805	5.67280549926316	6.30997109772858	5.9711892645449	7.01405264664648	5.91958742564535	6.15258416319556	5.83457730627315	5.93565744903606	6.15907891563898	6.32864889075	5.96902177570392	5.47759057338613	6.07432222842138	5.28705629558927	5.74974817993529	6.04288635907266	5.90471894261514
+"LMNB2"	7.86858808003973	7.52920203108043	8.07018412678321	7.67356907190193	7.46957558781762	7.92165397663025	7.87134036162921	7.55940505287252	7.47201638010408	7.36933857941034	7.43972626105157	7.53628807073133	7.6537573132405	7.5765207106432	7.5765207106432	7.04088624795233	7.26701502647914	7.4902297379216	7.39346254956823	7.88491918580426	7.59646238637448
+"LMNTD1"	5.48496568315985	5.72989243875221	5.35352382467094	5.74854918180091	5.30881627621589	5.34000799474518	5.77127192872887	5.60645423440158	5.8684887920823	5.63006588910225	5.64889747120656	5.52889313390718	5.97453423226596	5.72596751705883	5.77723442938256	5.73685957429463	5.73873805790743	4.97031226008596	5.63006588910225	5.45101160982015	5.63006588910225
+"LMO1"	5.59168522139565	5.82648687307589	5.845082846109	5.7899061833471	6.27985771014452	6.11371860120019	5.9721574541798	5.93362978861148	5.74364126854216	5.91790170973755	5.74750323583502	5.67351109623597	5.82648687307589	5.92450746870726	5.5898570891683	5.57059349921829	5.85581919315351	5.82648687307589	5.74279074030407	5.66954863321277	5.82648687307589
+"LMO2"	10.1042448204975	8.95824492866117	8.77517664298414	8.56948586571605	8.772480462013	8.74616168334127	8.53436139741572	9.74360279410461	8.71533930060278	8.87303763324676	9.27328486459635	8.52226155847016	8.99283226095884	8.98029191222715	9.19208336482296	8.18441834849821	8.39213921041342	8.71854460553949	8.78038462481793	8.75339639933996	8.86144438948577
+"LMO3"	6.56777760043105	6.96270269554866	7.70283235969686	6.61969840473883	7.04381467637071	6.90630851793637	6.80711075209694	6.91236359845567	7.16743343488168	6.76557270194572	6.36818520618921	6.98727018565181	6.66200690420672	6.70278041960662	7.18293848634986	6.14712546577177	6.76801823644521	6.71981841043395	6.85720425726282	6.65119194813832	6.5977801398699
+"LMO4"	6.43371677156963	7.87974450967648	8.46167337247517	6.81080703270905	9.04787040974913	6.95672910929255	6.95001709562896	6.94522565384828	7.65804627204643	8.5295800097716	7.18306192787875	8.14171092303372	7.1757578970253	6.96621348898352	7.73321721046348	7.73046336111303	7.63686732318031	8.25303277029253	7.09393516081534	8.52120599537311	8.50725257358371
+"LMO7"	4.64602195031282	5.11480553774376	5.48119242336354	5.15343915620842	5.51561441065222	6.42304024708138	5.07585697606222	5.36817989230258	5.30866119430439	5.01042163971008	5.26472938780197	5.71502902630017	5.17531102246591	5.26461792038678	5.61091188600287	5.16310594585229	5.48675325255416	4.85853359781848	5.35062178125193	5.29626777087859	4.95066706969694
+"LMO7DN"	3.9526432462815	4.12590318330011	4.24050063852647	4.05549168335092	4.42517680617351	4.1765330856353	3.8608275027709	3.95768170924356	3.96779852709763	4.12590318330011	4.13047881903482	4.23963098057019	4.01245500516384	4.04293061416518	4.16677355841928	3.98772625223413	4.27478012513211	4.12590318330011	3.77840740537392	4.32657070337294	4.14961602679518
+"LMOD1"	8.11935396715262	6.42121461551852	6.09119308876686	6.44427889104717	5.82287033003888	6.44547475191765	6.53471156171211	6.66215735616288	6.08842913508553	6.93418422230682	6.2305743021964	6.80271241886102	6.11150856529193	6.60369008395942	5.98957933323297	5.95697088853139	6.07324928368659	5.81031001190192	7.0038208925016	6.75317410864376	6.52584696302073
+"LMOD2"	4.00967676648148	4.01890563313092	4.2166417445193	4.24244927264043	3.98932521950961	4.38195702000894	4.73689216777268	4.2493817728559	4.19839571633925	4.35663955710928	4.07051556711426	4.19978195178461	4.41791799690643	4.60372550849822	4.26337417541558	4.21723344710593	4.27881766772049	4.13866678853564	4.29938893389525	3.9934480661944	4.2493817728559
+"LMOD3"	3.35191714515756	3.43426358477142	3.35643237513661	3.46041681800029	3.18216054895262	3.78438664990145	3.50250645131355	3.21921153474779	3.20658471558834	3.33155313257196	3.41905116241275	3.2035182590147	3.31369169370914	3.60506891272305	3.48401303533419	3.19808090735545	3.43948252445186	3.28534129589584	3.43528216543675	3.19070466315932	3.38203923693376
+"LMTK2"	8.6438513720359	9.13326783676945	9.63828815352407	9.23501892326896	9.6594030030094	9.29955372244136	8.69242761243775	9.07937410369128	9.78579457186736	9.46081095718414	8.6888457684135	9.53566743688731	9.21477106115647	8.90880627773111	9.40176615128267	8.86365686409271	9.67460861350965	9.46398263982154	9.17024482991966	9.73246877762822	9.61957513996103
+"LMTK3"	7.7064776580719	8.09967350445246	8.26200387479627	8.32389591874722	8.1449186159779	8.57888992618527	8.11009879500943	8.07557552828267	7.70020590259701	7.97851363801755	7.6421693175517	8.26347868020047	8.36907702642423	8.07040119033908	7.51116313063647	6.98308895218436	8.18762276452262	7.66707045497755	7.86234402023043	8.08978576793838	7.96548286669448
+"LMX1A"	4.22509972120706	4.64640424006408	4.47983140499746	4.72491066758906	4.59052102850931	4.37045187118594	4.77455860555364	4.75799280259008	4.7882240374173	4.67237930889241	4.29592272967956	4.568945715972	4.78179593604737	4.64458104190804	4.6580352949343	4.30607013181945	4.66955677590071	4.29914547179105	4.6368387613566	4.44208879430992	4.59225416079838
+"LMX1A-AS1"	4.70353407716672	4.9138270751635	4.75011060842167	4.93073743429601	4.70002385997315	4.76968755238661	4.76968755238661	4.79814767992321	4.80034306955918	4.76968755238661	4.6019515429482	4.80372044221209	4.77260247655225	4.69318346635752	4.67282267399512	4.88671029324534	4.83684323513702	4.71732789981286	4.94668793240568	4.68966246362145	4.67819825450945
+"LMX1A-AS2"	5.71255543851643	5.75494976126872	5.39256889886875	5.91414883353704	5.91651253757811	5.73715070605808	6.03664590299612	5.66613004006674	6.0922902763582	5.78608600537495	5.54800574039038	5.76262051022119	6.10267830892313	5.99193179916178	5.8290207320739	5.84902395811245	5.7691380245067	5.48516137254499	5.66110165096993	5.61435869510405	5.8668976310647
+"LMX1B"	5.39892754370658	5.38034116016414	5.59381442044352	5.53050305035713	5.54333225903259	5.67947650826949	5.90201661058994	5.63240169055417	5.34739229970324	5.47199075682392	5.54333225903259	5.48944883103366	5.60480058599911	5.90304396444351	5.8923732728275	5.38034116016414	5.47425918855806	5.4283211458124	5.53731965632892	5.36074645415219	5.5534220476344
+"LNC-LBCS"	3.85323311689814	3.82589501150194	3.65013641471623	4.15869982461557	4.06630709436054	3.69165126563536	3.81304310971496	3.82527915622743	3.89131597613599	3.60683024413741	3.80005852962073	4.03209288346521	3.74575789711181	4.12981651342373	3.7235946565429	3.8767190214926	3.85341574254494	3.13853279055395	3.68241895498756	3.72962005617542	3.66227175476581
+"LNCARSR"	4.89265488004693	5.3162423497214	5.33358423806578	5.58250934545336	5.22997906671773	5.67409022647276	5.32072326835639	5.07555602543749	5.27526633938721	5.20687244264619	4.93936283592883	5.28903082834026	5.633773952497	5.65853065740522	4.90122496205643	5.20595648414693	5.42738660077263	5.05882534784494	5.28711904096682	5.03235162208094	5.1790727617323
+"LNCATV"	3.8632216761123	3.81750567069312	3.87943983482089	4.19367629137602	3.69974123929739	4.27746254722476	3.94428303301005	3.83035810621134	3.40337615601732	3.93068465531112	3.7782115567401	3.89637450098582	3.79834516490319	3.79458143249116	3.7888601876852	3.77216330589925	3.93836448282147	3.86850350089561	3.8632216761123	3.75134307315615	3.97896049021337
+"LNCOC1"	4.08022174867621	4.17805091185629	4.65307737666308	4.36224981533698	4.31213305108108	4.04144925089898	4.56892833223329	3.91833663271241	4.07317333091224	4.17413758173267	4.10823896037319	4.21484447112494	3.97080158374728	4.39018461740286	4.17805091185629	4.27575101962065	4.10661242470814	4.26569949810907	4.02707564153678	4.21980025383519	4.20445048088014
+"LNMICC"	7.01030157356893	7.03997144720361	7.17146169489939	7.0442116462945	7.01701096893658	7.42282642730157	7.57384540663246	7.09433788981688	7.22411507678611	7.063589453602	6.9705235478114	7.06170168393968	7.063589453602	7.26853732683031	7.04538827781424	6.99469201665118	7.06657201536462	6.74881583866491	7.09965714304625	7.13972904510375	6.89982565216697
+"LNP1"	7.66679984533534	8.0484966348516	8.43759345283177	7.75683526358635	8.65243749956341	8.19384880438529	7.69752993562517	7.88581368246682	8.18556718301327	8.40371225540923	7.63148282088961	8.43506942553972	8.08825278450003	8.08286707474638	7.93330522294518	8.07616547566337	8.04390700902641	7.9967977047241	7.90434888392339	8.26603855382412	8.25026300780514
+"LNPEP"	5.17100828391831	5.40375320606092	3.75911925587721	4.78251946276987	5.38380048679003	4.32901616241035	5.12746650795198	5.35788061194946	5.19757040033564	5.30345202232503	5.22757776650129	5.59518762420225	4.83156086211839	4.62142070330257	4.70908799154418	5.62424764252177	5.22757776650129	5.47406130751297	5.31166487993053	5.45275792088969	6.02601569864144
+"LNPK"	5.13192251305719	5.36724102242157	5.76178768115383	4.63952150939576	5.79438728503454	4.52923150421645	4.85826746175914	4.97517538922437	4.89167448750176	5.29580417491616	5.39608248059849	5.22287836100886	4.4615860498538	4.40827564418163	4.34580927113738	5.57468912409245	5.07908070098802	5.40915618605581	5.27665528709348	5.24391555382363	5.070143967475
+"LNX1"	7.72737697297382	8.83761103796942	9.21604387619854	9.08920192325061	9.5909928452552	8.86625203133433	7.70954164139503	8.86117432066391	9.71189563120954	9.4270258084614	7.95705081922506	9.18016117770507	9.27184467924364	8.49116679444503	9.50482597497861	7.79867192398155	9.37555371254022	8.98253574500963	9.1184518275663	9.1794002562104	9.53683186617873
+"LNX2"	6.32403796663537	5.87339771340778	6.8550929797111	5.96680050955219	6.28732535097014	6.12661148035716	5.83096433701112	6.43388016170288	5.9108134942298	5.90240461545122	5.82289121039974	6.03768171301079	6.10341295506794	6.00774156367461	6.33793084518931	5.69196355585393	6.03765644273302	6.02456501576402	6.12156872291985	6.10843138397565	5.93635777186325
+"LONP1"	9.08407006236983	8.95490646405581	9.42867893015525	8.96347228035485	9.26634501265025	9.36058594875442	8.90841321753185	9.27104392546917	9.25481623525224	9.26813783945077	9.22126708830399	9.15047053044103	9.09278498112297	9.12093455538895	9.11067873613749	9.0070602064838	9.21548769095051	9.56020394844923	9.16360516656793	9.54505349822506	9.01948647220473
+"LONP2"	8.83798213015295	8.74860709239586	7.8110763316291	8.2856841841969	8.3492867307179	7.0839023530075	8.29702633901985	8.788338333773	8.50810855294787	8.83281255042731	8.90262578406695	8.81194439237273	8.31769280947917	8.08828747400073	8.3948383204663	8.5641897575152	8.61620642141436	8.33499345331213	8.57745192760819	8.75956792799064	8.56269722810782
+"LONRF2"	7.87493927995055	8.48507718538506	9.19120815173021	9.19171311336079	9.62881038211478	8.96081520924715	8.05969942675727	8.98436806152482	9.83274479153119	9.65541065647394	8.33122436598102	9.61179403554233	9.36064031270842	8.55351564814808	9.59279934962093	7.72604237456888	9.35375961590847	8.66474133980012	8.77290229606856	9.50320322470937	8.5306655857758
+"LONRF3"	6.24624496249475	6.30658738267661	5.5337893987868	6.65066893846991	5.86819711887948	5.74813019342257	6.88192086475263	6.70421254401253	6.63291107424417	6.19842448299408	6.43744148127463	6.0110661538448	6.28816126081896	6.02515044207359	6.20479562638308	6.29195440074461	6.82025704998871	5.33136909767205	6.64300061394131	6.49576276296102	5.73843186413752
+"LORICRIN"	5.24212129133431	5.8142581196371	6.00670622707959	5.40511858314464	5.67838534107596	5.40511858314464	5.43093652726056	5.08656063489863	5.40511858314464	5.35495140029218	4.87178155670733	5.33014630673301	5.07989786454491	5.31741569952219	5.38084989971105	5.37064448281716	5.62608289226586	5.18509414088782	5.51098975784519	5.60482354780879	5.47344292104063
+"LOX"	3.66880032738014	4.12406602501641	4.072379279208	4.2493817728559	3.94847753638272	3.97852126450195	4.11244824372738	4.17484454287784	4.14434066739478	4.47490759695068	4.25476012451385	4.19180889974982	4.20479628536753	4.18718192354867	4.46166663109322	4.46796160080539	4.48327772403971	4.05303972842998	4.2493817728559	4.50326462361494	4.20479628536753
+"LOXHD1"	4.51542378262895	4.78173965279652	4.92317880799715	5.12110812721908	4.7803714879617	5.16758730888481	5.57805727927088	4.77948628863047	4.75609197952247	5.04077086593606	4.7939943459758	4.95123377825065	5.42197810783491	4.95555326307788	4.90032420172678	4.80968467268555	4.81352826965651	4.71390577244259	5.194053117609	4.60104106265183	5.02856735777667
+"LOXL1"	5.80275741711481	5.34139695990964	5.6541273091751	5.14279101020133	5.01722468408271	5.94202562661112	5.7226850789799	5.43567084725643	4.87787699622266	5.5074294117975	5.19010818564526	5.2369337541601	5.12368737172064	5.82697069695293	5.00112879262898	4.5297818635742	4.74989275877343	5.15903408294495	5.41543103696796	5.66252935178621	5.47688332204558
+"LOXL1-AS1"	3.15132839120907	3.12046907014688	3.27981744624266	3.24264315552898	3.05300434917158	3.34280817935806	3.19282243094894	3.14974799021029	3.17060261855207	3.32237494087755	2.98917178515766	3.17169067459626	2.93397129281496	3.24430959807824	3.00514676405395	3.22931397239729	2.9817424546311	2.95343746313436	3.33365113455523	3.17060261855207	3.18838115430762
+"LOXL2"	7.10846319847849	6.02862162190213	5.94043473441153	5.83076963838662	5.57437476288685	6.5728380978364	6.29079601809376	6.66574403209401	6.08545102574724	6.03688002106717	5.96434777963263	5.93507518353506	6.20827427682544	6.38561742414802	6.09004754429149	6.29530993736929	6.13853924298091	6.28503824832078	5.77777723770197	6.19608699812166	6.42939183701061
+"LOXL2-AS1"	6.50957627159156	6.78020393075014	6.32841827050646	6.83567689435654	6.621569312358	6.33545200795953	6.43640483426065	6.55996235612664	6.53726974798409	6.78020393075014	6.46618712425372	6.65572529233987	6.67026672195198	6.51303262111559	6.78953578471793	6.82696834981667	6.95374543912382	6.51065462677516	6.80027789715898	6.52682219664355	6.7142572436501
+"LOXL3"	7.16921440227726	6.64965364568082	6.57362987834192	6.5407244740736	6.19981042212815	6.84795423378298	7.05965515552299	6.70911773503713	6.55668606817504	6.44384584699821	6.55349050304801	6.34148606095092	6.68892904366144	7.01289236700537	6.46342571089415	6.53743206208811	6.3507697155217	6.45398298840843	6.83316800053403	6.54140586445782	6.44115255039799
+"LOXL4"	6.6793530006172	6.443834933189	6.36461805148863	6.56841810123981	6.28004067359146	6.5728380978364	6.78704958814415	6.59344109748282	6.48692938191008	6.69765155017405	6.63934408566327	6.41079728964633	6.67501638020525	6.96569291568307	6.46135980120132	6.70783793057299	6.64054960241279	6.00878418276005	6.52678817159871	6.58727736372009	6.45434545411374
+"LPA"	3.3958645826738	3.5232102653966	3.61636906431978	3.49448451310701	3.40700825144406	3.73116414583327	3.52228977510443	3.47064113998345	3.44820339463559	3.44372681854019	3.5268698827242	3.4604444856157	3.54428805089548	3.79340624972589	3.68109954642063	3.47036243974057	3.58302406486536	3.40855744978867	3.4761646574549	3.46426661677666	3.47485665918176
+"LPAL2"	4.6023130231486	4.5949303945411	4.84153169846554	4.91100454531016	4.67052535664993	4.70431429664522	5.17738292018184	4.47504302218982	4.72098223462898	4.63073777906394	4.46876657629715	4.79815966848748	4.67883294602039	4.8860304871761	4.79260802592672	4.72757856465192	4.68154610745764	4.49671021403306	4.79378982420623	4.37334104981676	4.64678066488587
+"LPAR1"	11.4730203523412	11.0055252238994	10.8361706954672	10.835779351163	10.3416515235481	11.8314987090134	11.6981943866227	10.4195904778394	9.61568466968421	9.86082822368241	11.9338915305146	10.0071507642962	11.0392252463863	11.3351081017396	10.5721631213007	11.9983933881648	10.3396442348379	12.062315314179	10.751749676666	9.268932759928	10.5411114065257
+"LPAR2"	7.06069287383056	6.76865720316106	7.05562703382824	6.92790831848195	6.92268156072096	7.5298481769226	7.41829809564633	6.85900698866585	7.14641881677567	7.10707487909471	6.91358093854933	6.93360774971083	7.25833584588182	7.38637629126935	7.2116473800549	6.86129164526458	7.13046632217548	6.52196835121118	7.20975435677395	6.97756311512986	7.02771038350416
+"LPAR3"	6.33015895807196	6.29964183250647	5.23045797676844	5.05602637335137	5.2801502325736	3.5798703979496	7.20527743248966	5.02566542997954	4.4745629933963	4.95328614536945	5.77716017230646	5.47831590142259	4.47606905577001	5.1387310628571	5.09454670525291	4.253592738339	5.31702606834007	4.41656324210029	5.74108981021584	4.98941874588472	4.70103574398824
+"LPAR4"	4.56791377026227	4.4752576076541	4.70971010111672	4.70608561004063	4.07458353383393	4.35229074225345	4.52910361801185	4.269126328726	4.72351365168109	4.57113593279877	6.06102690622324	4.38648462083814	4.24414867622228	4.54751080496412	4.70656931923023	5.14039894494931	4.29643715255232	4.63596474215321	4.41816945590089	4.40604256519423	4.57705468644931
+"LPAR5"	6.86278696602064	6.443834933189	5.89595372360663	6.09659660625618	5.99122158137407	5.43749273229213	6.68396822465432	5.87939602926744	6.05087684537855	5.77690523696111	6.32342688407304	5.44649447582479	6.44217444246654	6.48772000978994	6.21803811150073	6.42523442264177	5.48476002535264	6.34212690189436	6.07854110773496	6.86575273049857	6.56734538348669
+"LPAR6"	8.58317583618776	7.8402865232921	6.68700355195946	7.05401452388702	7.03062504054951	6.86539561193976	7.23280941587832	7.32171150816312	6.87556715211593	7.03001030395675	7.83484062524534	6.52235640713474	7.68754346758596	7.6798431887119	7.58815716776137	7.93544855248184	6.72187286316167	7.27974446885248	7.40410808748718	7.50520257899144	7.76328082073466
+"LPCAT2"	7.57191582684243	6.64727075876946	6.05244498407165	6.96086170190484	6.84761453748382	6.80820164240476	6.64550481871236	6.43849766754628	6.9340715770754	6.88243175457607	7.31363241452842	5.39288016957847	6.84750959170243	7.25349351581984	6.71039873609301	7.37229185572231	6.07998955753797	8.0085134208717	6.53066396110026	7.10731429031921	7.31496074362314
+"LPCAT3"	7.30930997597795	6.86455668932961	6.82310024294924	6.88163148448946	6.69986388061975	6.7320791262207	7.01784016470959	6.94858736815074	6.62450892735874	7.15945256512089	6.97164214543657	6.94202762924746	6.78382616672743	6.80764639200346	6.84413966465105	7.03021947521997	6.79948613764336	7.00374822135852	7.04999624213194	7.04035311330779	6.86499478732614
+"LPCAT4"	6.22627769049704	6.64847047485487	7.1147292370396	6.71039873609301	6.83378404633686	7.10057692456977	6.71612128931484	6.60316787147631	6.75498002231923	6.90794836657143	6.53481506144973	6.6623701485844	6.8450002486335	6.6087562173936	6.62971016938125	6.23585164370261	6.79387634570757	6.50309154879037	6.74466240073487	6.73967542474882	6.69091205384439
+"LPGAT1"	8.34582360410595	9.12735211615737	9.18553371215171	8.65976293038722	9.28087268244629	8.87410347169789	7.66905738971203	8.57279126306905	8.99623196502861	8.96205407243731	8.95283274844169	8.92046555226792	8.74055259070166	8.53645761036128	9.03904291066365	9.4389035541201	8.91744187863527	9.55065961638811	8.83110036719524	9.09050672063677	9.03514319894485
+"LPIN1"	8.41527649849309	8.01836891923208	7.01148004853758	7.93515078863332	7.76407713184523	7.29770932419995	8.02245109894707	8.36922313386283	7.85484151803959	8.25546185771518	8.20203395974282	8.06172529491757	6.96336854763177	7.21275851227008	7.54202807508457	8.22854437418611	8.23374834256111	7.81752134874711	8.29182692470499	8.17304226548414	8.02820299232406
+"LPIN2"	9.59545022931059	9.13113043584273	9.01329464783195	8.80663022401776	9.30582277136793	8.72619830521111	8.7980705990204	8.81287103615913	9.07629502961167	9.44854772665076	9.15266251413179	9.11057140128409	9.0743751786415	8.80054429906188	9.03208110014817	9.22598972123295	9.16113988200402	9.13297439224224	9.07422517777939	9.54865023546752	9.29463246568015
+"LPIN3"	5.84342343129346	5.90028865033139	5.76034425478681	5.94031725314917	5.85192379783109	5.94385384297364	6.23148494399735	5.90028865033139	6.05365695488174	5.8210331680206	5.60574560516422	5.91583496919586	5.91991539766553	6.26279282605972	6.06857387690948	5.71991100664558	5.91062743585493	5.61781992874554	6.02674762084425	5.79553834898082	5.78241441382628
+"LPL"	8.40761264937937	7.36899547306757	7.20629888182946	7.94275856241286	8.29646530091776	8.1628947455398	7.67315828784154	8.92797094512921	8.31658456650463	7.67213180399088	6.59855072343402	8.70917833973717	7.95347596045765	8.33184712384252	8.11827039823375	6.81121881519655	8.86014578959058	7.70509034798668	8.5463668896828	9.35764075298511	7.24507388787813
+"LPO"	4.58812587204782	4.99610468751141	4.45098570805465	4.66933102572366	4.68571532594213	4.50204920657558	4.79601958539031	4.56587447591511	4.68587540462632	4.58657709099692	4.88474701530291	4.73326961442339	4.41255379835548	4.89796048286459	4.64874010019727	4.79847687728235	4.63605668821498	4.36346265751196	4.7096388695463	4.68571532594213	4.54184875120556
+"LPP"	7.61685632148309	7.5170017955801	5.35334566287211	7.16267894282689	5.52891424645268	6.53217862684575	8.21301179125592	8.20460654150678	7.83914291881426	9.15242604635097	8.09711785631945	7.35827896050669	8.52898144949832	8.37028486345596	7.88660251138665	7.15528695793659	7.90213587106112	5.7702675106635	7.61587211564439	7.83398043748169	6.56646299482265
+"LPP-AS2"	4.50096354776139	4.176442501488	3.88509171534632	3.60343471756572	3.81005949539299	3.90860698568902	4.23790691690211	3.58199480212957	3.65931841343587	3.68470200750145	3.88342344236101	3.59990235183343	3.56483255432679	4.06510872615128	3.75751516008236	3.75395885274593	3.76649585251223	3.57813893239354	3.73302611094194	3.76649585251223	3.75465117502967
+"LPXN"	7.65239882059998	7.72868079201916	7.33280233883271	6.8537105654473	7.41020352866588	7.10110197277995	6.75775468438034	7.11648886521711	7.04087700344426	7.30658172207595	7.71384250164265	6.9635143628371	7.17962141736195	7.3094907422615	6.87324032531181	7.94973694998263	6.72983560316788	7.89383129251339	6.96674745475415	7.38433570318251	7.18337996203877
+"LRAT"	3.79005259363056	3.91848957973589	3.65255632911534	3.84232318792524	3.69729832521938	3.82268437082956	3.86994297936709	3.8628462406432	3.57378083829512	3.72421426249425	4.12584649673171	3.65819601992949	3.87589448005078	3.95773294320323	3.65332647526438	3.81474210124194	3.63366369516925	3.71033067094091	3.78457914060352	3.85878431072605	3.53827293892998
+"LRATD1"	4.49497619638741	5.88921301442214	6.70901037917818	5.40990984776986	6.47384998796798	5.3028822760044	3.80576269454227	5.4501822844899	6.11783416826601	6.29395006226602	4.78574620189479	6.12617274627755	6.10073801168082	5.22871942002435	5.85061613495973	4.41346542206068	6.01172327173601	5.90878615318474	5.61872192764943	6.1994634764812	5.9047051196121
+"LRATD2"	8.61338756784696	7.91300994918028	7.8281864859252	7.90746023416056	7.70756710613711	9.04305838104936	7.57324174835674	8.36779503829639	7.6429701257899	7.34751736909214	8.90172784395369	7.430601880697	8.18632143129038	7.84963294162009	8.04527923751286	8.83596655995938	7.8780172188177	8.92122033794352	7.55797750858829	6.9756010156729	7.15608719880092
+"LRBA"	7.6287707699178	7.78911188796225	7.89034878136831	7.32883665417741	7.74855338068211	7.8234143824894	7.30119784850578	7.41089920068228	7.50525240580638	7.52191948858736	7.57349816408473	7.65156970812094	7.5772601904304	7.43306930693171	7.28762960464186	7.72504271009037	7.65075377158204	7.9282708872062	7.26581427957334	7.72615871469111	7.61194815146463
+"LRCH1"	4.80252655680797	4.83727109318547	5.87638857778102	5.09764469018613	5.76045307347294	5.4910176991111	4.17611032749591	4.85200796284913	5.43499175029836	5.15943616700457	4.86736466746083	5.53305875083799	5.30604195740361	5.03256595106673	5.65236344782903	5.20619864337407	5.42989748929114	5.06880200783086	4.92256804501213	5.48416309192872	5.58724381172983
+"LRCH2"	7.37219280408716	7.22708376696181	7.56325049064296	7.39404346861704	7.30912714638346	6.89154179162606	7.1709674948476	7.75110246583118	7.46434575790488	7.10291197459739	7.48525846409644	7.1239215973858	7.21558711478154	7.18434207493902	7.52535090271032	7.2185887982257	7.06204790862196	7.7580039916196	7.25769724797973	7.27428802140311	7.09574644649566
+"LRCH3"	7.73249366769936	7.72460506454147	7.40180416167737	7.92387668766786	6.97734570514267	7.72737249619992	7.84940612701496	7.68320466079088	7.73831174361537	7.20116856327436	8.05118084446474	7.32353105564749	8.04481332424772	8.04508766796469	7.73829674991056	7.95699931849038	7.62200476112399	7.60775394117702	7.68979634455194	7.42103156198621	7.30866979555041
+"LRFN2"	5.07267976122648	5.77868023935829	6.3037173843631	5.6331486290379	5.85188996550117	6.31554541067624	5.54584380169003	5.56458709019211	5.38322765669529	6.09245222498838	5.58132623156076	6.47154538590911	5.76353911868859	5.40467705065593	5.20694731116038	5.45235167930136	6.0039980883627	5.59898859215902	5.7008702541797	6.53599129135779	6.03314313003854
+"LRFN3"	6.77922384838077	6.95034388770468	7.20745251814828	6.41318270905178	7.22444285661664	7.22558819076457	6.33914162595901	6.38553395177311	6.36790996236321	6.98658887428142	6.56767976374701	6.71302047392217	6.87822983088348	7.30277274230811	5.66402767274966	6.06637637435299	6.5060901755199	6.8269090908245	6.05441810235537	7.00336445978343	6.8559525991837
+"LRFN4"	7.68417594926357	7.73119890473174	7.94998718418859	7.87361502825151	7.54096857261071	8.20040319165624	7.85231260995861	7.58646193251731	7.73784599737901	7.81557066539432	7.75407289052573	7.64698580642831	8.18494065245369	8.16545614876215	7.88252798462778	7.34734315639193	7.49202703892729	7.60083828130562	7.70695418487361	7.68178770389023	7.54436778745283
+"LRFN5"	7.28010850858601	8.47249135050217	8.81700318877086	8.24683022991966	8.81894815066164	8.14941021401347	7.33200398288529	8.48950176520382	8.73658089815796	8.5752657184384	7.77007813956958	8.69300708921973	8.50529267072366	7.91409157888512	8.71793326592867	7.36079797289072	8.78398561706821	8.08090700644203	8.4609823630908	8.63410605472222	8.46337462963332
+"LRFN5-DT"	4.96461719630449	5.19475837357282	5.22853564632952	5.46387192838371	5.41689294611616	5.09122390903668	5.26265897708434	5.24524277315213	5.43940236680096	5.59745440539723	5.30339988437003	5.70778095852934	5.5141955486626	5.08754643192688	5.28453406541893	5.26429408915945	5.43183154130888	5.36499255086067	5.4018007383951	5.77783057614162	5.42394004779063
+"LRG1"	6.57334833419271	6.11642226030947	5.95720459921339	6.32976253432276	5.85275515370317	6.72216679775647	6.46964488619953	6.14516226008193	6.15392051995672	6.36677484433729	5.93716823705874	6.29706161765323	6.40220405043551	6.73614991424113	6.28038252310716	5.91446703847299	6.34927202459095	5.75072131578917	6.50309127794412	6.23523780380326	6.25149749039487
+"LRGUK"	4.08486316975661	4.16478132854073	4.51407062288539	4.00253269607279	4.03056282681848	4.24148217815514	3.82543202902699	4.15451915766316	4.27009457181182	4.34057268666813	4.09041159265704	4.15321799122229	4.16656291336975	4.16748163850931	4.02816601678115	4.06709982939927	4.38799227927205	4.12575158786452	4.27924239454746	4.11055961729153	4.4939900516825
+"LRIF1"	6.41401317595271	7.14542454794495	7.32668930507264	7.53177976780287	7.61384308018695	6.94952577852216	6.82078757837649	7.4422307958837	7.90138000367208	7.15945256512089	7.05418195733424	6.95947743283499	7.52771099244633	7.08649592153512	7.74807834728856	7.02352637718462	7.16581245070841	7.33073962584297	7.40575101991526	6.9371862924407	7.06410293610853
+"LRIG1"	7.89907720335903	7.63042478655857	5.76437747246563	6.82104831411777	6.71851505086422	5.92643926831372	6.95123351594024	8.22380140726688	7.03337944847907	7.41787466470917	7.56039843644365	7.56990205025351	6.43201127649351	6.60410185524274	6.06576028287017	6.84638976374412	7.13221293481972	6.67543265795964	6.8018217390716	7.32344970094317	6.85567104536528
+"LRIG2"	8.33267257709793	8.51027031988489	8.88049157739037	8.45280572229808	8.50624309278489	8.21162708689051	7.76219821887168	7.73772226978632	8.32696784452227	7.81571916895699	8.75688138429678	7.83803180132475	8.48306532618298	8.33682984041724	8.53780570832843	8.80238676329136	8.13734632595133	9.27900111479643	8.16011989563361	8.15173162977043	8.15002042215865
+"LRIG2-DT"	5.82477276983555	5.8113192401213	5.59686111986673	5.81559383037049	5.63257431710317	5.5334587402016	6.16855026520639	5.79038031795688	5.85329955301662	5.69081396143551	5.79485396975435	5.62160916172435	6.14234388621	5.82122843632884	5.8749460468312	6.01810988425979	5.88806256530424	5.65212152991809	5.70459758242779	5.67212006069342	5.71438401428595
+"LRIG3"	3.70632310137397	3.7019029959712	3.48107494015264	3.5448582959148	3.54146087281287	3.6346948987436	3.5230536858606	3.77464740364858	3.36739867206256	3.33927000522315	3.84598461462792	3.41966509383191	3.48317157196409	3.76908955071741	3.37152873793531	3.9213028749035	3.41119183496291	3.9127102126598	3.55794591973297	3.55794591973297	3.37501724430496
+"LRIT1"	3.64412061090917	4.01351073924548	4.25752073115193	3.71782743206406	3.68837195493626	3.93264720595347	4.15427857486079	3.96499713891407	4.13961865172147	4.03979539245002	3.8463863913317	4.04173616399011	4.02812203993962	4.24758065198652	3.89021228194373	4.16112184031514	4.06590377969994	3.95311493299056	4.05075955550047	3.91354054590027	4.14550609689707
+"LRMDA"	7.61209255534492	6.74870311967359	6.55669924623125	6.6865293134021	6.66063853949872	6.62722637679863	7.17986174221998	7.09508529770013	6.91048285478912	6.54921470268168	6.52204078944284	6.63899792002232	6.7761614106139	7.22838876666424	6.51239641797528	6.39509462609526	6.88491732388141	6.16226913427873	6.77818682370715	6.98496276993549	6.57212755948001
+"LRP1"	9.16983117063261	8.79919224261091	8.53890431532001	8.7660706451085	8.51279091453999	8.70031152069645	9.45855879626123	8.90624631974988	8.6129462008238	8.99908916592618	9.0580375087945	8.8512134217833	8.82050523512981	8.85355142432366	8.2616759721238	8.40638602498056	8.81305957000498	8.48805596159415	8.33581625551686	9.21354024939295	8.78299642293683
+"LRP10"	10.1938813425818	8.67010781485985	8.27027933106112	8.61245228067452	8.27985812633826	9.00095696294296	9.18501709933242	9.34812914172566	8.31409109098872	8.48805596159415	9.20857275607668	8.46206622701176	8.36425870036324	8.89871274577968	8.14256221807589	8.70949061604493	8.40031947656582	8.61245228067452	8.6055343026939	8.85463604767697	8.22724425090206
+"LRP12"	4.62925444748031	5.06764699669236	5.25654561754142	5.07132118929217	5.99185252853908	4.44537183618701	4.48969928670198	5.15089529172571	5.3923328895599	5.66174983112259	5.337904516266	5.56812255668394	4.85384747313198	4.61061520142391	5.24002576369135	4.96173809754153	5.61692846869586	5.53054912723822	5.02708208586113	5.36514352333097	6.03100007289318
+"LRP1B"	7.02153989405482	7.44083309951432	7.86270191976159	7.35525108131673	7.23842821032709	6.99538474254553	6.94541867254793	7.65955977393679	7.03241904866521	6.88034807666348	7.42369801598753	7.10268294456741	6.92860824895287	7.17854792958793	7.40311437719064	6.8836228359517	7.19645737591708	7.0839875246391	6.91028895536585	6.9073497249649	7.30319799456926
+"LRP2"	7.67132440504453	7.52281234379055	7.2439122351672	7.94360847541409	7.54708153998432	7.64465907941163	7.33072498650703	7.48371672226348	6.93426257252927	6.46188551146631	8.20427731189656	7.02094457595524	7.63532445639882	7.68087002372222	7.57511755503346	9.4585152213679	7.61670313614809	10.0007464099177	7.54335485484738	6.55043017500553	7.42704683881838
+"LRP2BP"	6.76003836432582	7.3833457110496	7.47810376106327	6.99469201665118	7.08145078642631	6.46155264024478	7.00284848533457	7.59644457822233	6.5547156134054	5.97013454377704	7.49576652373734	7.16178002903582	6.42767922259871	6.61862118296229	6.61141060858972	7.57832499041437	6.65592818593113	7.48104935313556	6.49167230861724	6.78221956385475	6.33603406848149
+"LRP4"	10.8421926369968	9.90482300114445	9.3306315532245	10.2083090574728	9.40840697866379	10.0355385919136	10.904382028528	10.5118506651931	10.1752120501236	9.69267812791619	9.78878156060841	9.41747083944313	10.0682067798659	10.1928742420536	10.01875700676	9.41876666412086	10.1414728279564	10.155509758566	9.79693794707112	9.3157129703513	8.84007945509221
+"LRP5"	6.95399470486056	5.44061319479109	5.57729769651014	5.76142422693202	5.17886763800078	6.17813889047858	7.08806452562355	5.93024814512393	5.58998915888436	5.27263945109445	5.64956055847445	5.61272508951636	6.02166698208233	6.12910209417149	5.79150412540938	5.67597934850356	5.76142422693202	5.76142422693202	5.66713073295374	6.01468522021668	5.23906571662734
+"LRP8"	7.55041749880022	8.22103629336791	9.11145680166844	7.32228772919434	8.31845667799379	7.85631373838553	7.37101016531909	7.33051957057737	7.71794876561945	7.86739456909254	7.88211157516498	7.62480316115645	8.09061360143615	8.06556168859828	7.86105495344471	7.72504271009037	7.93384969586521	7.84946273465735	7.0909004115654	8.54575808578785	7.98956809376286
+"LRPAP1"	7.35009232852872	6.79511408213104	7.03192641566907	6.91950378822081	7.32677877791382	6.43240816554104	6.8226850339081	6.84259227637174	6.76840769674262	7.28587232278438	7.17229890169692	7.4560463279635	6.60777308838608	6.55742278618901	6.32446373488578	7.6150644271306	6.87764192330496	7.2511023870359	6.78494873537991	7.55257479565621	7.55939557120019
+"LRPPRC"	8.60591394391223	9.35586530454051	9.31214050918289	8.85971180575545	9.52733038839738	8.53658319673234	8.43007982114295	9.02761935133217	8.66384667575229	9.35626822341162	9.22817849031574	9.2422274383861	8.66890666495669	8.44427862150583	8.85134344370119	9.52685378142617	9.1125737091458	9.49621078222956	9.13981059087028	9.26960086751836	9.52549455048032
+"LRR1"	5.62844927044881	5.1248110124198	4.8086365343775	4.90285115420434	5.30667119633004	5.17189237653088	5.00778374596781	5.21702293959469	4.94272552014765	5.44908584844578	5.11478458716692	4.73326512069118	5.43889401605498	5.30912483274747	5.07132118929217	5.38005361222434	5.17335931119911	5.40599019352738	5.29206875174041	5.03372764793322	4.98894882815153
+"LRRC1"	7.50972918283852	6.37514771516368	6.24609509146257	6.80547344713118	6.44400598034944	7.58214354577508	5.96820250133099	6.41182364554979	6.14755814544692	5.99587016672318	7.1406162822761	6.22819702843606	6.50662823021661	6.5636789801518	6.66432077461584	7.80515376874172	6.60720122279603	8.31420203310217	6.723359953433	6.12819059740821	6.11878005325259
+"LRRC10B"	7.11163291150714	7.23984964272469	7.79104764343471	7.82539358581364	7.33898024766454	7.67952314328925	7.32178711656616	7.24619630313143	7.82339422601448	7.63036147936992	6.94537607955347	7.33825015897686	8.01855326489331	7.71945241820461	7.4696036358902	7.0059604944301	7.37850544089002	7.46610208363362	7.52024579028993	7.47467119383564	7.27400152814869
+"LRRC14"	6.25779891354713	6.2087924390596	6.46964488619953	6.03812331314353	6.10146596852101	6.74748221520913	6.5716344522219	6.0034674544277	6.28775508359339	6.17483474824185	6.45610554530568	6.09671510224502	5.99220194817221	6.39523767182722	6.36916162244183	6.35364274982177	6.26067198406806	6.34963695259949	6.2087924390596	6.03942192828665	6.15804654857311
+"LRRC15"	4.24233078678654	4.72597999610552	4.71811542564955	4.90451012341858	4.60290476278114	4.45503733336714	4.7071101578894	4.38713552165391	4.73780036800828	4.65736598102772	4.54751080496412	4.72662408125036	4.65736598102772	4.49018282807016	4.39853188627589	4.77572364755417	4.7937834342189	4.64081757452978	4.83584088628797	4.65736598102772	4.537699768961
+"LRRC17"	4.96821089694391	5.33550561083979	5.99431367135658	4.68813851389277	5.30600842218364	5.33358936572871	4.67055843044708	4.57290160039261	4.72680615210984	5.45143483814097	5.72670881034744	4.98539917942814	4.46337785005423	4.90227882025583	4.40120404378274	5.28873201427663	4.65213318066818	5.24292620503883	5.07218924505155	5.79561837923805	4.62796556495835
+"LRRC18"	4.08630710270724	4.2380725444645	3.93650794084675	4.34155209451432	4.21453985253164	4.22375249252093	4.23689656384274	4.14045226533493	4.14314365529084	4.06223220071388	4.10252619308802	4.10149643050658	4.20954984641821	4.13557720799785	4.2123541539151	4.1525081270787	4.36201480035296	3.69878700070704	4.14525240660187	4.13557720799785	3.9170304417408
+"LRRC19"	3.37268749607503	3.3149753506606	3.41968830827479	3.29814544160752	3.12644434168461	3.13542372755554	3.26275006841167	3.26852194865565	3.23340278798963	3.32238582243368	3.26852194865565	3.18114883963956	3.54993233481574	3.18926720340397	3.26852194865565	3.30334820014298	3.26852194865565	3.25566168740945	3.26852194865565	3.21298160269153	3.34382490588102
+"LRRC2"	4.87845692774905	5.82936355391589	6.61690130235004	6.81227110620822	6.69986388061975	4.95192395718312	3.59353647967842	5.15994632598237	7.37635625157472	6.1470285947904	5.71904361065843	6.53368520212546	6.09346607866575	4.40827564418163	6.54628559631139	5.47077826399025	6.46180156115401	6.43035653009328	6.06266247649082	7.0806279970344	6.83293084576044
+"LRRC2-AS1"	3.97435404689783	4.25710449249306	3.93327554334121	4.30619187067601	4.20290708135625	4.15443968435978	4.55010244703785	4.06148907438576	4.71988871332473	4.11074267692667	3.88497613631412	4.22632802031657	4.30291884282524	4.19022265275587	4.27968329447352	3.95850360894363	4.0397291016094	3.95380261846925	4.44682724873158	4.15430637286174	4.25343203689391
+"LRRC20"	7.167306345923	7.78514212032369	8.26643600002982	7.68240106273933	8.41598258354759	7.78980665238633	7.65807599410256	7.73888104443644	7.98163084058901	7.9657323340577	7.50906289377627	7.95394418519476	7.84357547888688	7.67593263970166	7.83101176852789	7.66649144824751	7.77926379852451	7.52984973201939	7.50925165043335	8.32287416022504	8.09931736036937
+"LRRC23"	7.92883786240233	7.17214384845953	7.43209597562388	7.23829116524822	7.23131653058223	7.28784073236488	7.55679221808431	7.51067128868899	7.45185024882656	7.56962270973479	7.76819521323041	7.40512025229848	7.29081728720615	7.64280009212011	7.41118726864319	7.33324839742441	7.01472277869414	7.3450537604169	7.5224033600855	7.45479404119886	7.21195684510267
+"LRRC25"	6.75597609307276	6.92283818362756	6.51444500790982	7.13643886198377	6.52318357670355	6.67283733641271	6.7882932219884	6.66101691426688	6.73999355477295	6.7983821779813	6.41942062511362	6.88169013776552	6.94448722442075	7.01558805711351	6.94168410184844	6.72887279397649	6.77965597301663	6.36518168044999	6.75802918419535	6.96813877418624	7.02066618179356
+"LRRC27"	6.16283161331222	5.79498511421275	5.90377638762511	5.77654746298725	6.1824271465427	5.39256889886875	5.29066347529006	5.9423607371163	5.52121728567443	6.35959451237231	6.093194708166	6.32429583848149	5.44913221420077	5.75999525318287	5.61383215753441	5.53542776415323	5.92653272579171	5.83165303557805	5.79341410281044	6.35883090761348	6.09800469284042
+"LRRC28"	4.44929937005445	4.782400391756	4.634754989958	4.84887114588175	4.782400391756	4.54938440910647	4.45004575359507	4.62601047903492	4.96360415709033	5.42450548923706	4.21341442785795	4.53305991503049	4.80163704080623	4.99563786129468	4.85928241648755	4.35247864590501	5.01470867945192	4.23802468897949	4.70463475233193	4.57957353332431	4.70463475233193
+"LRRC3"	4.35053389410609	4.14836882682057	4.38795615281613	4.00850168536027	3.96118136072502	4.72621064513127	4.6656478005912	4.37690624672775	4.28251141600041	4.30838351765236	4.00872322968945	4.31134544670144	4.26561499023128	4.53711013353385	4.39800287850258	4.10082240163716	4.38868458282386	4.16445420299168	4.40699297796484	4.22335033192676	4.58529911884616
+"LRRC31"	3.00126855883417	3.22078830297066	3.2217875329396	3.17128645316481	3.57157817194895	3.32014379318758	3.31097251152391	3.21427163382798	3.25529980965886	3.42598080769835	3.16551508491802	3.26688740184302	3.16190577507367	3.49625407172267	3.33673870813781	3.26304710819091	3.25309811826045	3.14454068365364	3.2850737075637	3.54113572103213	3.22808003236315
+"LRRC32"	9.15513958481386	7.5287043383579	7.13185768907008	7.67818207698051	7.77262985748186	9.30833262614198	8.37728348924724	8.58981128865507	7.33472959615939	7.6072287690712	7.0339006859013	7.63397365043073	8.01072571647868	8.728258440503	7.62382440376954	7.16520775934502	7.74677512976901	7.09369058607934	7.33492464381575	7.65206420021902	7.98575603294445
+"LRRC34"	7.20204727211002	6.66114552967754	6.54053411327297	5.51039767669833	6.22435673378066	4.61394418186418	5.7340113036343	5.84502811811933	5.69073402211665	5.85628384233271	6.50924530088593	5.88803560994692	5.03094939589007	5.28559707500811	5.44196995890262	5.72596651871287	5.25587194139067	5.40298257617852	5.74778489406667	5.52389233605549	4.69365562587956
+"LRRC36"	5.46159746553497	5.4236540227253	5.58660929666021	5.73586417311183	5.86333328580813	5.46620441746515	5.76730933886321	5.71181475042179	5.43354479440433	5.59188548638013	5.66229110334598	5.72079591099179	5.49523616674482	5.65735100023672	5.81314204797628	5.96776788385172	5.3973348872181	5.62303957920679	5.60156494123123	5.45466405546327	5.63340681692703
+"LRRC37A16P"	4.49394721120759	5.0932959665391	4.73398073490359	5.02042495721315	4.83617153040383	5.21931069684852	4.83617153040383	4.99566693950353	5.2603370286594	4.69849931452508	4.87178155670733	4.87304161262387	4.97439714009685	4.77701187379485	4.63044268339224	4.86303096283778	4.90835423563686	4.70996574857035	4.74992283118702	4.83617153040383	4.82054730607615
+"LRRC37A2"	7.54146486871934	6.94117258915758	6.53002299468967	8.29811170385889	6.85056725113871	7.13994840041972	7.4071642364874	6.48948327927038	6.95519010776776	6.25763689076941	7.50569480424914	7.8450195160716	7.16833647144219	7.32534515796819	7.66426145923832	6.3152199957902	8.30278977944216	6.30886942668416	7.03597124682742	5.6202265576721	6.54371046802709
+"LRRC37A3"	7.54529613700128	7.34947504108193	7.51090757448299	7.43635997184938	7.30830895375438	7.13620760977717	7.38008945936246	7.05957205202911	7.35578334952284	7.12780845953255	7.22691510594213	7.23892698962612	7.41910882970235	7.36192251168657	7.5065731656004	6.80854132657549	7.34809586027097	7.19950641295136	6.91393508470645	7.16524373718686	7.20785812807339
+"LRRC37A5P"	3.27016498783343	3.49102206994669	3.17019442101395	3.38187351361948	3.50419940274114	3.38525104582243	3.2371083959586	3.35062842049319	3.44772793317555	3.46730084885203	3.33845389356284	3.38539928849213	3.58716366166773	3.43944085584253	3.72084948181953	3.48899566439272	3.37022614266397	3.41603442714824	3.26719883358512	3.38375121341812	3.60961069878232
+"LRRC37A7P"	2.97088237376365	3.32620576319181	3.01718200052071	3.24672953281299	2.98299692159337	3.21298117002204	2.97710375891342	2.9726407622015	3.40742002580421	3.22262283703683	3.11937279602096	3.08767803308183	3.27474251267577	3.17239871116036	3.11937279602096	3.26954323459717	3.14986817899164	3.03132321035605	3.13619358114795	3.05797331032908	3.12239946475504
+"LRRC38"	3.12166070870088	3.01928943504542	3.18732221820056	3.39291693316409	3.13264994495545	3.32238816701877	3.65844379749971	3.05875742700273	3.30215176584152	3.18904617699111	3.22182912461566	3.11001957366698	3.18732221820056	3.14295169552447	3.41195255576711	3.45768998910568	3.11005157194012	3.10866896546155	3.25952347425103	3.12608278112359	3.26095227293129
+"LRRC39"	4.50053125193312	4.88285262878654	5.17810131183366	4.55900976009085	5.02280381332078	4.72269631069405	4.61284354163675	4.89137353177281	4.54982090087225	4.55019936210087	4.45625128003073	4.50872948542669	5.09628549979504	4.77238721213804	4.73960120944732	4.90012329802998	4.76289021031948	5.80634781424988	4.97949066839991	4.83038843795083	4.77238721213804
+"LRRC3B"	7.59728657924474	8.30775182510368	8.21041123393379	7.90755774911595	7.93485664438405	6.25997119690135	7.59871087419616	8.90800696004245	7.6701853287974	7.11355785265438	7.6701853287974	7.49988249378176	7.6701853287974	7.55500197588533	7.80923326433857	7.23824224513478	7.34874310490459	7.41430172510672	7.35375064935054	7.92739094697998	7.6701853287974
+"LRRC4"	8.25686355399858	8.72733498038387	8.55640760496025	8.68026577060458	8.99350406832711	8.77155116342242	8.52774222951077	8.54096817719025	9.07206431859679	8.93679614231008	8.26519539063626	8.61057125662661	8.9494472481246	8.74333392147946	8.82847949335819	7.96576066093927	8.96331247547428	8.06329965467611	8.58947211501677	8.90324321084839	9.01930775504087
+"LRRC40"	7.80747326640106	8.46362161014733	8.48296749860024	7.76438252146899	8.65923400623565	7.59159604166087	6.77398691113995	8.05767479350913	7.89787749755631	8.43087318305798	8.42086173688359	8.29921625756555	7.81870197584747	7.42283473891055	7.94539622080043	8.35100693733782	8.12298248181722	8.47604677399338	7.97212600064483	7.89276577787004	8.15161954866875
+"LRRC41"	8.18463313095761	8.10493558806663	7.75987045562881	7.57385455227909	8.12231889264656	7.57135120977177	7.44260831681819	7.88265420091329	7.70704469407464	8.32410845251899	8.29004703869332	8.27586830845944	7.29995525912077	7.37310954873229	7.10433046762479	8.35246433818133	8.07789198293785	8.10242580754611	7.82957389318727	8.37025017430291	8.14277681886608
+"LRRC42"	7.39785175123193	6.69089565137743	7.02755751624812	6.94370282585637	7.07858564540657	6.97913049351465	6.97913049351465	7.3051246611704	6.96642602336982	7.03526304819535	6.98143324359892	6.79431843358438	6.78757228154804	6.97048551998522	7.12832623505436	7.05507339606276	6.77600355489879	7.29304987239073	6.91678244284183	7.15822122505283	6.75684952533166
+"LRRC43"	7.47906138906253	7.2960666184623	6.95996295152553	7.48663608912762	7.28545878254387	7.11546350471587	7.21357149827722	7.26656336225629	7.28545878254387	7.41302924057463	7.22217038234525	7.48663608912762	7.28545878254387	7.23395817726873	7.02509911191487	7.45894725790082	7.53607438804664	6.86686696908812	7.24813867987185	7.34979964702451	7.49304662138133
+"LRRC45"	6.75541055253154	6.74026484809245	7.1482350176952	6.66576122473134	6.67762911360078	6.88729594346707	6.82086485154473	6.83267132038939	6.86231797122865	6.78086337991585	6.6536852844551	6.8581226661828	6.79015666489124	6.82410942724714	6.65797161344524	6.76568580424012	6.75094605373033	6.95935555007505	6.79483968796051	6.85987166708917	6.74609507501943
+"LRRC46"	4.29495135480973	4.40031753823666	4.78672948028106	4.57491095595478	4.50703687419918	4.50703687419918	4.68901718934441	4.4833991939399	4.50144397631377	4.5242996239699	4.33782566599213	4.27357353608679	4.93202369169056	4.88777994906477	4.45883107923027	4.60771889987613	4.64516642320433	4.09177826341498	4.28296240547142	4.51397034630579	4.50703687419918
+"LRRC47"	9.38145317979113	9.68404949774146	10.2994876126631	9.39915416309668	10.1552456566356	9.45207801792977	9.14533722641606	9.57735045462881	9.70650657949149	9.97269548122892	9.79746687917227	9.87680143739771	9.34124691984186	9.29508114678078	9.58301630008006	9.98757815058727	9.64103058940598	10.1487389556882	9.57411407170441	10.1267095132396	9.89038316613864
+"LRRC49"	7.62368756969726	8.03341738140876	8.33019663524304	7.57968296137192	8.46925323577203	7.24140987763903	6.63291365140771	7.68854306860315	7.91167413032722	8.30099717353922	7.94144076734444	8.22640851950121	7.87019300990873	7.28193154751261	8.05457531805581	7.88431846892689	8.09404712420036	8.04442754362018	7.8352604305516	8.37878307944899	8.15690547512161
+"LRRC4B"	7.50612637600513	7.78742983749163	7.47138295371016	7.92635092083475	7.58624631439081	7.73441097862984	7.6736862818532	7.69283280776238	7.8943021097561	8.42922692704284	7.85493664280803	8.52449190172207	7.92479082480393	7.59618693987822	7.31539159703158	7.97130498579429	8.12620087331024	7.58814310160199	7.75962069436915	8.08134669277358	8.29092470677087
+"LRRC4C"	6.35542119566577	6.68319208854147	7.2979566489082	6.90519403044476	6.58389868973644	7.11916495436475	6.47518104066718	6.84129893819257	6.83519470381821	6.51228140829012	6.62875171226049	6.31774265897743	7.26809852241144	6.61024141952502	6.81145523127456	5.37682447631082	6.68120057457604	6.0919755240263	6.28811464894987	6.62875171226049	5.87774615885039
+"LRRC52"	6.47041984704298	6.59558194774117	6.26559720254995	6.79696877046717	6.47041984704298	6.53436296533044	6.62196723624505	6.47041984704298	6.53289550721649	6.41271474018273	6.37324921616409	6.31095810505073	6.48283541406804	6.47041984704298	6.66709514458744	6.56804356205069	6.42454433063542	6.11326788813106	6.3277744920344	6.60440129533624	6.33996187742872
+"LRRC52-AS1"	4.7930773400277	4.87792262938283	4.89153790322787	4.71476715832775	5.04760184180354	5.36157616094724	4.83457244519382	4.87792262938283	4.9327373961381	4.87792262938283	4.8206813085179	4.91081213057086	5.29534274530478	5.41008252092121	5.26566671013008	4.76696870731672	4.70157149023351	4.73219409897979	5.01840958049702	4.4405573319312	4.9033868943095
+"LRRC55"	5.48443078817688	5.7058221408857	5.96057979131461	5.51113001466925	6.12470380848009	6.53743842502036	5.56338246849722	5.68630669955853	5.50408150733343	5.49732373692401	5.67228479385312	5.86318686712226	5.73322090559371	5.66160405531911	5.59525591855858	5.63992441428578	5.31338777714194	5.3993547758462	5.3993547758462	5.42368688596723	5.48336788709412
+"LRRC57"	5.32857658163851	5.51169226192349	6.2165408275112	5.49302382643397	6.53960812570085	5.60947498726425	5.19117192236596	5.45410303760711	5.87228968571107	5.82807979858815	5.43511987162251	5.7009405463012	5.2760419730618	4.88777994906477	5.60757389230229	5.51403668859576	5.67086772256551	6.27285821511356	5.5021195741831	5.87957158063906	6.02263108600732
+"LRRC58"	4.20992446701303	4.15208892540975	3.79693404259093	4.29618538346479	3.9014772973351	3.63653542195424	4.09627433141947	4.29938893389525	4.25573635074129	4.35562121050457	4.96262530704908	3.98622972668026	4.37305918046705	4.22008434939551	4.23383592189382	4.23725996411421	3.86070149479667	4.27870300633036	4.32375470714535	4.06069730671689	3.82143132650714
+"LRRC59"	8.93508163259238	8.65423831555326	8.59200425794813	8.49691430901467	8.93557030894047	8.5768531924145	8.55332620635514	8.6862951211019	8.80375276511796	8.83562294254428	8.38591139033167	8.59980950755847	8.44420297626318	8.57599843271663	8.66409386168005	8.77257767047154	8.56192848763724	8.93898641646362	8.56770776540881	9.23832298384428	8.82962416830295
+"LRRC61"	7.50221717454037	7.03073160592729	7.42035337959008	7.59742488614329	7.27685165264366	7.50780363875122	7.65856461826792	7.33529914685052	7.25536361555758	7.47302598121204	7.15147852053645	7.44969045385057	7.54091741401107	7.38351963005717	7.59738788128906	7.07667585653118	7.36114223290057	6.72651629488958	7.41014986997507	7.14342896836739	7.32734093410177
+"LRRC63"	2.87653902903123	2.84470187885428	2.72426382333604	3.12649944652209	2.86748409504339	3.09382959270964	2.80727337020919	2.81486392135864	2.78403292941271	2.68563579384314	3.21368809264898	2.91251825304832	2.71058170574161	2.97909151793403	2.68620392885553	3.4403254441338	2.98731860429546	2.98761527559711	2.86333087669629	2.94906970106365	2.7903176513239
+"LRRC66"	4.89307950218112	4.81748278592298	5.01637063131954	4.86966419799976	4.34580256748021	4.51156754624872	5.17738905131333	4.20013822249045	5.15995807401043	4.7693417950441	4.50410997045274	4.61356583795939	5.29115639572597	5.16773250362577	5.00514191596548	4.44810309354683	4.85730542867426	4.59876756155805	4.77746684081972	4.70585877689052	4.70163950540671
+"LRRC7"	5.73799802590211	7.54195471988413	7.81904853304666	7.44975390841053	7.72719204073326	6.11848167373252	5.26829169981804	6.96938220475168	7.42958620652347	7.56783153523248	7.08205509140084	8.04183535825117	6.79463074969056	5.91715706190206	7.2761873843599	7.17032315317905	7.51912267076672	7.44003120509439	7.18358056115811	7.60702322642022	7.74761796429303
+"LRRC71"	7.0839875246391	7.16281255123941	7.13504102508693	7.56142226402159	7.28104838965062	7.45622063415647	8.05761684059944	7.19685061376727	7.54638855167322	7.43432092242229	7.08967033638822	7.27415915899067	7.5022815608959	7.68553617071256	7.4334373493817	6.97516746539439	7.49256136703679	7.01650872415226	7.51487319709933	7.21771605142601	7.32151335207009
+"LRRC72"	3.74603928767741	3.73587943305981	3.74711102301893	3.76145915426798	3.64646847182225	3.69305848859646	3.67355142063426	3.59652649878218	3.57553668627189	3.64646847182225	3.48699463449709	3.70963119339887	3.78982948072215	3.78391749489182	3.64019014789444	3.62589837570552	3.57548772549402	3.60908459433379	3.7977875177317	3.62175362223303	3.48638010834948
+"LRRC73"	5.9107214417615	6.55687355857933	7.16589271789373	6.12159196022287	7.35487887168756	6.11712240581483	6.07300480543673	6.32175989751484	6.79580991251378	7.19110907446303	5.82307423177396	6.68254022562432	6.24624496249475	6.43853076355175	6.22371143435927	6.443834933189	6.4024282592017	6.56811589080877	6.05379387102478	7.60153894724287	7.1360030284925
+"LRRC74A"	7.63715178404486	7.56374229594821	7.74791433128087	7.8095340486781	7.51150591083692	8.01525001602733	8.35702812149995	7.63939506975117	7.87802558056996	7.8117429578471	7.61151852643147	7.76243744536644	7.94545038330046	8.22173175049494	7.96117859848585	7.55218613616014	7.74791433128087	7.27862565084456	8.00123809176452	7.70904390359382	7.74791433128087
+"LRRC74B"	3.72376665509754	3.78306673932604	3.88680422500798	4.12279619670425	3.78397754835484	3.98767812405593	4.33879804361439	3.82044634615801	4.06630504726982	3.75062389733806	3.84199636061003	3.70812290663531	4.19219155815651	4.07792606942969	4.14580993110291	3.88603925253082	3.84049662001211	3.58483177749689	3.79106295564242	4.11685266695911	3.84764010145898
+"LRRC75A"	6.61841296157442	7.16281255123941	7.07667551563164	6.37404214541535	6.90618279181765	6.63981681369342	6.9697847952422	7.22337126532421	6.63291107424417	6.70768721650051	6.49437364262341	6.51686367599142	6.25584112791381	6.63291107424417	6.70903255796686	6.43233509799665	6.11983366717404	6.24590803985891	6.29430090802031	6.93940041999011	6.894052972408
+"LRRC75B"	7.98335970563589	7.76940636171253	8.07947554154201	7.78287217937129	7.7423338233639	8.17470570928196	8.18143534392159	7.82151510774376	7.83975542527275	7.78676651542667	7.60420141674769	7.65019550742057	7.98208234897102	8.19721552758682	7.72606404122807	7.48702373911541	7.7803553115248	7.65286749648839	7.70677126101613	7.83179541831943	7.79135779181902
+"LRRC77P"	3.70632310137397	3.80178679885111	3.40828387797357	3.73820188779484	3.76344352586724	3.96140823701409	3.73820188779484	3.84736583182043	3.60624393018191	3.64829918343494	3.53802826177932	3.73820188779484	4.06051002744707	4.18234803252526	3.85689214153028	3.73820188779484	3.81302779598515	3.37462737937582	4.03475003730558	3.68674726058845	3.6921223653524
+"LRRC8A"	11.7289296895722	10.7346496688398	10.710087513946	10.9880220808847	10.4500994921163	10.4118127947101	11.1139371081158	11.2268228084571	10.9061098844823	10.4661694237917	10.7064508071522	10.7331416634613	10.710087513946	10.8810363177338	10.5710525934869	10.1033270569593	10.8232537786196	10.4138589141752	10.5637049171521	10.7297756244646	10.375329314824
+"LRRC8B"	7.79017611580734	8.95988030989935	9.19901170689947	8.41843857383627	9.33652762585403	8.17352924745767	7.11138010635276	8.1992441604401	8.7292676948099	9.09214405332159	8.5650434682583	9.08813709348984	7.87626213403568	7.64629381435686	8.52150522276073	9.27783339256247	8.93084206968874	9.33762941112826	8.83403929870926	9.37379369250785	9.322940142112
+"LRRC8C"	7.7738773166749	7.2373049187917	6.51491711843905	7.03191629759844	7.05228899310175	7.04855115785072	7.21356576789841	7.18302120496894	6.69788000210891	7.06259507433369	7.1622666376622	6.62795441207535	6.71581988664825	7.38084498872028	6.95482136747765	7.21505030460159	6.84118892814918	7.24339164571461	6.57253133191701	7.26556303122919	7.37449499889633
+"LRRC8C-DT"	5.56094328291348	5.67109338638248	5.83409753310538	5.43141547223631	5.54609114469576	5.74160075459881	5.6423784628923	5.64543055529628	5.2615898892662	5.3393270378546	5.76173039470089	5.58082654136138	5.38306210699027	5.70242880778087	5.3111979230875	5.76037370651204	5.4213625782647	6.06793170198914	5.51405589881828	5.53147984400162	5.11082321228711
+"LRRC8D"	9.22996926733444	9.52457190504114	9.40838754323483	9.25223365476715	9.22561461840234	9.61950869674001	8.94209221958802	8.88324382078814	8.90316894748384	9.09133082613746	9.72774881665816	8.83486655659205	9.06522626553295	9.34638639914349	9.3013948063298	10.3568652625459	8.97038914827117	10.3636613627785	9.29729497136034	8.88488202109954	9.01682532254219
+"LRRC8E"	4.20502942836651	4.50728221942776	4.25201172781589	4.39083917428795	4.56503471336394	4.86651355940727	5.30414423973762	4.59039986767547	4.98088951908417	4.62652494043847	4.38530249861032	4.72430499775474	4.71055044901449	4.80563101102464	4.40527704659447	4.27570343499064	4.66702690834173	4.19228625720281	4.82163848072345	4.43675907058434	4.53020846187661
+"LRRCC1"	6.4459324447609	6.4406130060059	6.30000544132773	6.2138914646224	6.27225131441596	6.55243366941271	6.35619222985383	6.27225131441596	5.9108134942298	5.87276589284671	6.57242050060052	5.98268004713136	6.41841300872445	6.61392908124062	6.16081835320109	6.67782535014104	5.97718228477699	6.45121426954421	6.27225131441596	5.87896696782484	6.33859192505135
+"LRRD1"	3.07824239816563	3.25605761943813	3.05516155844005	3.23053651398662	3.11162957272222	3.38872145656503	3.18911246908135	3.12458085760432	3.2896885698521	3.39891912496792	3.09122947663648	3.16157087919897	3.31951336973707	3.18911246908135	3.30752274720639	3.33931321977444	3.12915997860291	3.1211338608954	3.25614759373286	3.1161355755117	3.22569488504146
+"LRRFIP1"	7.58227759351972	7.27080199388877	7.94314209881498	7.48455606754048	7.52286300731435	8.18911669265371	7.18879481965147	8.22856917057205	7.766100320427	7.02155793248313	6.71252462898064	7.62656482641884	7.65106171922351	7.61790590327054	7.76074610362979	6.64345437681611	8.13389046106112	6.99468692833059	7.48176721244349	7.29729993282395	7.16740204488162
+"LRRFIP2"	7.22770664569519	7.7888941106739	6.76686818587145	7.30907177272613	6.36950106362883	6.85194714355299	7.02403423025662	7.3608270159969	7.19124313192507	7.58979633833342	7.96604422579931	7.88751249337688	7.06852142875273	7.33326773669565	7.345670683578	8.17415185208825	7.63206728470066	6.82118459064668	7.44417815933084	7.42822028152333	7.50050195916805
+"LRRIQ1"	3.75377970684807	3.70144484483199	3.49111269338231	3.54655305568211	3.59088988054256	3.73671953600844	3.53741376891322	3.43403688340369	3.62427206887277	3.6749562594703	3.60737391427749	3.68677898483993	3.45632912142021	3.68211736822738	3.69606100393393	3.5940220400786	3.53573585018217	3.52058677550404	3.58963735176595	3.3450108337868	3.59817801148906
+"LRRIQ3"	4.22990765710852	4.42290908465786	4.39897112793282	4.48101624424806	4.34147136819091	4.58007121150206	4.31398254904354	3.99057745196737	4.59292896263699	4.57512919121534	4.40913795528522	4.30848384319568	4.26326297829818	4.65320701960869	4.34147136819091	4.32678462310652	4.29140903005886	4.26630647065487	4.19048811722899	4.34147136819091	4.17577725457153
+"LRRK1"	5.42252866120143	5.66405709004965	5.60068054079083	5.52900725916019	5.3996699643137	5.71122044618594	5.81263819532974	5.46454955634339	5.68864818086173	5.3649975754568	5.24434492643458	5.15704332311604	5.7670243674886	5.73458833531939	5.63761672119542	4.7955155057785	5.44459853082714	5.14389983797504	5.42089481468199	5.53790931983419	5.43381506430578
+"LRRK2"	7.40729999060021	8.22595010154086	7.8799616876428	7.52547548499833	8.12602542512461	8.14456903141091	7.13623488194674	7.94356883915481	7.96573399062661	7.6200027788609	7.28508479515827	7.44213518830348	7.99568191010815	7.32435324811515	7.6200027788609	6.86278257424179	8.1086351451628	7.41428393090215	7.30844499436586	7.95697065394187	7.04029151883567
+"LRRK2-DT"	3.35982733247846	3.54784834389127	4.19101612233497	3.2065728498273	3.75032884580429	3.16241400399732	3.04741726063272	3.36659456672701	3.15741061150076	3.5399327674883	3.50093812968714	3.65338699633051	3.22324208328706	3.17304860420502	3.08772427847794	3.26623807527195	3.27837489266375	3.30176820247735	3.37450641090628	3.83393577083584	3.59307795538354
+"LRRN1"	6.46931767106614	6.62256513013359	6.57102542520017	6.94560817379109	7.02355377722049	6.28825822076253	6.78694566861019	6.48773695659745	7.45528254952429	6.5594970187328	6.78767867266623	5.90840126210225	7.66211456523871	6.24592479215625	7.32634139266785	6.24670318838331	6.78952548167215	6.88274490369578	6.50486911363902	6.6427045054275	6.37938341736108
+"LRRN2"	7.95032554325888	8.10399563012689	8.79486347767001	8.26946833361848	8.32943363541246	8.70869445224265	8.21458012032573	7.90032873518218	8.22632696230927	8.45502822604546	8.21364453013765	8.15417740529151	8.63352446104546	8.29736277115164	8.31252323769277	7.7813111385362	8.18211762307138	8.08374927248206	7.94756827075125	8.60829418223622	8.31059382102285
+"LRRN3"	8.831648824477	9.58972265360684	9.82464137548872	9.46970783909461	9.87506091409299	9.36076931464617	8.80646333404076	9.32196448319423	9.8520482695689	9.96373271461098	9.14067100084091	9.59532651557598	9.64224902459441	9.25648625355561	9.73793877037818	8.92312462040094	9.42037416685677	9.15832457640021	9.55790911000464	9.72945898071528	9.51483477595857
+"LRRN4"	4.90764064765385	5.29739921695187	5.45823000505563	5.52709528988894	5.31472777186624	5.749884134899	5.67017651123618	5.40031508467954	5.50915813198589	5.41915675985051	5.53602942017278	5.43185305257826	5.6325912367634	5.71456507509788	5.47238404453623	5.23018903443077	5.48682163282077	5.43185305257826	5.36550845118205	5.3987645937692	5.36941190677517
+"LRRN4CL"	5.63098518688134	5.49939713753656	5.42210685631753	5.33021333595354	5.41759730121164	5.32836996317987	5.48722457539744	5.41759730121164	5.19945423838553	5.88714979083902	5.42639980632938	5.49387105683697	5.05497694948843	5.43234877206608	5.41759730121164	5.49685287685547	5.33933303227492	5.14968016105142	5.24665253953859	6.75985150338398	5.15651068874466
+"LRRTM1"	6.05195374716796	7.24084577876636	7.83971941705348	7.57635993578092	7.80366764970725	7.29524435132886	6.8535582824175	6.97912367462603	7.77151254993574	7.53596435110092	6.70355780938101	7.25637097281833	7.43728227915506	6.77267021094113	7.30507194169864	6.63450606278045	7.50094404322966	7.36262369709599	7.06956896971768	7.76372878268622	7.58285132423538
+"LRRTM2"	8.57418899154358	9.41904588871445	9.58249902028422	9.74178426419372	9.77732496771985	9.64095872483697	8.6693593325252	9.2390699878422	9.72865979572405	9.19889508935508	9.00099052427527	9.49643544953314	9.73561763057045	9.20528456560494	9.88563851148786	8.95502780695432	9.40066389047097	9.38685680814552	9.51746631384476	9.18316593066227	9.33700212898175
+"LRRTM4"	4.80981810134456	5.91861608901728	6.20621584722403	6.35794722959778	5.93026174739458	5.15257119230145	4.95810660801316	5.78363857703142	6.75581912707182	6.30498237362846	5.31476890058801	6.79906783723595	5.79976601284619	5.0333991317034	6.14310215826765	5.48737761385762	6.08051005405203	5.55473777355887	5.93101870305782	6.61654160546788	5.61252204523047
+"LRRTM4-AS1"	3.88509171534632	3.87779271848992	3.91650689724692	3.97238761939146	4.05863795539584	4.13807812367542	3.83080073374076	4.06858880644766	4.07078419608363	3.64297593261576	3.75659666826094	3.77438212563714	4.23736895735348	3.77898859243789	4.06008222169102	4.23838157131615	3.955177375171	3.80538315875412	4.03771313355036	3.92539508517793	3.59468119852516
+"LRSAM1"	5.61289186804391	5.81444879970882	5.87173263523448	5.29274730601974	6.26708570017613	5.69050004291591	5.58249969592935	5.69473726464786	5.49521812325769	6.24935520283011	5.84602597514015	6.16204160672144	5.09010628519437	5.32605621413	5.3952130644774	5.74001209944139	5.71648234165535	6.40998056924393	5.50215880031347	6.82015519239777	6.51068742167396
+"LRTM1"	5.4577669832684	5.52741415128469	5.60647102520996	6.07044935587014	5.73955604396255	5.7659334380753	5.68229710463679	5.87280938707523	5.87122812440654	5.55890411844152	5.49185924204535	5.85849991510405	5.88617308838357	5.97176710885248	5.74184046488228	5.50817794447123	5.60585246052314	5.15466820452509	5.6944672175176	5.55890411844152	5.7684796713281
+"LRWD1"	7.55039718720146	7.48192265756501	7.86818046716967	7.88918126503168	7.52920222416912	7.96467649267431	8.15514603960155	7.50813642554924	7.90233372727928	7.83656736805452	7.67916769972434	7.97613244781849	7.99775110708133	8.10029232768588	7.71532404028923	7.46571349235087	7.64922889887618	7.61084979437219	7.87480609889472	7.79476503072079	7.85700160040024
+"LSAMP"	9.19430914494652	9.46895477162701	8.89261882386351	9.18187368425401	9.60672496338164	8.04553952301067	9.14564018323824	9.48512571793196	9.56574205963702	10.1233781454242	9.40723027700983	10.013274942453	8.96626010919285	8.48371648735269	9.15897678232887	9.42420611394487	9.80777245252857	9.47317821638024	9.42133106518123	9.83912663749442	9.76646514824391
+"LSAMP-AS1"	5.94663373094238	5.94723516094395	5.87866273820354	6.05955888424204	5.51919901674383	6.02311188042278	5.9295293728717	5.94511485046077	6.20027528213276	6.20193922311878	5.9155069372138	5.9545848804726	6.16080437647972	5.93492315603776	5.94469384197395	5.84655097726801	6.12552208993326	5.39521693251468	5.98568516406118	5.98805805019188	6.06790642914704
+"LSG1"	7.40212632824477	7.11337215829759	7.72522054663799	7.34412019807962	7.32270784481082	6.65227526712928	6.89161925434901	6.75287945949351	7.37612875971081	7.62685700100854	7.42106708910928	7.18564402986247	7.49833080099932	7.20289188196002	7.27340546836674	7.83286269931065	7.12662132096286	7.80984654410771	6.9872322275063	7.54105177796205	7.31811384615841
+"LSM1"	9.5871636967265	9.21802721788948	9.25835519865176	9.33554011870288	9.27494529807035	9.13786069445918	9.56116524640901	9.46852029272085	9.6187699658704	9.34442070530436	9.10178707711238	9.11592714939854	9.56106693898773	9.35706683309265	9.64975999625928	9.19688058039236	9.1128264940322	9.22420378089009	9.46243042801296	9.315442961845	9.34442070530436
+"LSM10"	8.38640213081082	8.01973135125992	8.21410952055808	8.45225940153795	8.48821949206401	8.4176845902392	8.81700318877086	8.35380393392835	8.75570283405972	8.47479100001417	8.03462929809048	8.08815194921091	8.41512003979222	8.47169606031931	8.68487653262783	8.03387247558583	8.15734272389998	8.37325871205785	8.36743611847089	8.57587985913986	8.29397195957372
+"LSM11"	6.11668393088222	6.37188792351289	6.75679247162564	6.41966735020416	7.30165687115691	6.1860833223073	5.65772132542901	6.43889103436931	6.74668880921689	7.18176466349784	5.97775306926344	7.40612311510284	6.16692719556678	6.42175586026936	6.58267811607234	7.24256698292093	6.88378315405766	6.82571806762229	6.6258098770196	7.37053316427458	7.21886757833355
+"LSM12"	5.75015885444372	5.97483040382803	6.2205920532789	5.83485106248329	5.65789100781299	5.15033979535001	5.22025635773318	5.36456745991989	5.69583801760291	5.55982551590789	5.72158335215168	5.50811000934296	5.35660942291034	5.17531102246592	5.66852188209797	5.93079374951725	5.57744146135293	6.18765522186754	5.58284105811021	5.3515416369431	5.60569062845904
+"LSM14B"	6.33486472787957	6.26668700091669	6.05567502137155	6.2638094465346	6.68991709560082	6.76347567990099	6.59486251245356	6.12498781667212	6.27332470209873	6.87338514387964	6.40582113792214	6.40232034169469	6.33486472787957	6.16340902445337	5.94681918439467	6.22414719677462	6.50485715728322	5.81567460162826	6.17957947574882	6.33486472787957	6.4115053792551
+"LSM3"	9.49269123478545	9.10187290011023	9.17331253110671	9.15988507995713	9.22570818102725	8.88722295184516	9.09470549682392	9.22420784157181	9.25836022651415	9.32789660126318	9.32250880379749	9.20301999478122	8.78545826591118	8.91015749380261	9.014935194495	9.49240484696829	8.97551615211131	9.58767674666885	9.25065128673372	9.44670212294361	9.15286639157631
+"LSM4"	8.35978030457748	8.11317774319725	8.37513185893886	7.95631388681364	8.6918821188741	8.22274649053189	8.35810278333342	8.45267747678914	8.36866526709917	8.92064287124295	8.08493367107104	8.61879071339216	7.88659288158526	7.74326300430888	8.2776709582942	8.38285222878945	8.09413124786114	8.43707918543681	8.34931584320795	8.91487395715131	8.57736952346341
+"LSM5"	4.26242905974268	4.64618525175846	5.14114727381594	4.07663412286246	4.41380931764657	3.83522629057259	3.42797984899448	3.91305043244363	3.83999227892194	4.03621999676431	4.7232036612756	3.9660072090085	3.79274747608558	3.9660072090085	3.73743495513311	4.41487556407358	3.55286400404933	4.37777468105269	3.49406891448099	4.06547200127655	3.75273538262316
+"LSM6"	7.83676000051805	7.65109559154241	7.89555951352352	7.73367256050829	7.71539050108974	7.06822566126369	7.75827026117336	8.40996771662263	7.98175907603631	7.35783011683096	7.9054954432713	7.77122911608248	7.66266954337312	7.59175683335985	7.71616011733334	7.51114700405661	7.33033540966526	7.86791326505128	7.84897522369206	7.59005901625765	7.60822945596057
+"LSM7"	8.81763825005936	8.11294089932271	8.74981723800344	8.22670919344589	8.44336361753103	8.25360239219779	8.55851114948196	8.58356689896388	8.35469108034767	8.26615797151648	8.6068243912461	8.38906861241681	7.96258872904572	8.29726179748289	8.46690373824532	8.49498878559367	7.94255037524826	8.87531583361849	8.2348650433756	8.75684774979247	8.30948762280009
+"LSM8"	6.81409076855846	6.48614919397891	6.44017474837602	6.28945777666268	6.72540907508622	6.798867123586	6.50462766490342	6.37226261469523	6.6072696848954	6.44017474837602	6.67070714284566	6.1624767808168	5.42706886748505	6.5793184786918	6.70391443180703	6.78708222241942	6.2030763496523	7.40977341639095	6.60429242178982	6.25837596960209	6.31963415699463
+"LSMEM2"	6.08096439070085	5.85916276473265	5.75232205012291	5.93900793816728	5.76536773258878	6.21699543390393	6.53398995046235	6.00496067049511	5.93900793816728	5.88175505772394	5.93900793816728	5.86077429928412	6.05954774732626	6.30610077505268	6.04378202474307	6.0103931144312	5.58994826377136	5.86454874366612	6.01159861742272	5.69581547598994	5.797103869343
+"LSR"	7.99400830704996	6.03874504327079	5.84977575347147	5.61045209876718	5.72711594876659	7.09742538774156	6.22621291851971	5.66457488856277	5.89954888751815	6.1316164786188	6.20295928930481	5.38382683664292	6.18812544250886	6.83073569018649	5.48085647877121	5.69850747569926	5.91105624272486	5.9721574541798	5.43304303539622	6.27713933557632	5.41814543064165
+"LST1"	7.99641353527295	7.45133313087782	6.9246721069366	7.13555084177797	7.23838852150604	7.06898613073404	7.22906669813046	7.43566421651461	6.69477535938803	7.00964273602545	7.29574765190966	6.94394663309955	7.23532745804625	7.29574765190966	7.07005493336992	7.94405685012101	7.04616239193961	7.6865016540588	7.26189564390494	7.87141566984423	7.76853989504387
+"LTA4H"	10.0204292357206	9.5671063368317	9.57462611147637	9.36018119005936	9.67159625380662	9.25189753609648	9.15947622854277	9.63745273090615	9.7121099199189	9.68282142071356	9.63187312232625	9.4993234060829	9.27245710399153	9.39416953676748	9.64282451723324	9.60452813069069	9.55968076374672	9.68070519248614	9.71254995754713	9.83698028297016	9.44964946158221
+"LTBP1"	8.59324472357563	7.86220972517399	7.54444346405925	7.64059285271936	7.43729579645787	7.65206791806038	7.61679087278656	7.96129096163608	7.79913220216379	7.67213180399088	8.56135676959404	7.68828016194328	7.50829284686181	7.83116685253631	7.570427561983	7.83145485775102	7.4724221427549	7.47166840886398	7.49711158283904	7.94887285038764	7.65169463563933
+"LTBP2"	7.00181276300377	6.91257071854729	6.3770461765398	6.93027587991114	6.63556434613462	7.25326356714764	7.05112120092061	6.96740692810764	6.92347093105779	6.99333232845865	6.65565272524813	6.95107652124947	6.815385397274	7.35554889552347	6.56337664811365	6.51458431790856	6.72028618002854	6.39645316826419	6.97462132687096	8.42492036756801	6.92914116771328
+"LTBP3"	9.76584491658293	9.14927877774038	9.50023757860619	9.13480869552026	8.95896897227025	9.04767752297613	9.24760872514796	9.25600186686095	9.14116879360672	9.02489087288813	10.0428402807794	9.13480869552026	8.66600802715958	8.92754293906133	8.63170645514126	9.31537909444353	9.18260528216185	9.66379722052429	8.9205210513966	9.21472077975356	8.91091085868246
+"LTBP4"	6.69197518370604	6.93249793007217	6.73186551084956	6.94370282585637	6.76203328067255	6.91353392707814	6.84249635926617	6.60513818366101	6.9233641192075	7.03283827392621	7.22001402231707	7.06657254363608	7.04830329481352	6.75474030793052	6.91604672883065	7.06621985517123	7.04681034239319	6.9233641192075	7.22987548786018	7.36428462914643	7.15126343590053
+"LTBR"	8.68811851418156	7.63893849674757	7.44981632651946	7.73386339030214	7.23380536111445	8.02978110871569	8.10677331557453	7.83973190456646	7.45941784924464	7.70037874790837	7.69494319593435	7.59446483125852	7.67213180399088	8.15611273209102	7.7031835236083	7.17569968766103	7.48656094383094	7.35837791017465	7.682870365319	8.05436121216007	7.80960215765341
+"LTF"	6.89670285787181	6.80723142460302	5.23045797676844	5.96479602072455	6.17370016520511	5.86454874366612	5.81675627002168	6.96034866943324	5.49136293854552	6.11937155881346	9.57980160009446	7.14206366352124	5.69991509597935	6.25318560565037	5.45823773617615	5.77835544053993	5.95608304722771	5.44677048813804	5.32511265250822	5.77018044291533	5.41550741438817
+"LTK"	6.99105464247504	7.05156525493993	7.08640916759566	7.22318941796739	6.70492783749914	7.57236102068664	7.98680749461871	6.81714806177325	7.40326730658133	7.28142977177413	6.95786506802804	7.35467329994984	7.42912639064102	7.19990093261569	7.37076371220888	6.73174344006033	7.22318941796739	6.80179362651902	7.58019610472448	7.17666609261559	7.27015271907725
+"LTO1"	4.98212399676409	5.15509699343503	5.12340053328464	4.6224970652837	4.97423067582576	4.76353783891212	4.9288283931948	4.91898176377049	5.34861441162848	5.14522746199036	5.06579339193161	5.15601807372417	4.63665673086381	4.58841119282915	4.93343207995966	5.23837763113692	4.65313446783992	5.00003340961232	4.83673576653911	4.97996265113183	5.09848483047633
+"LTV1"	7.78457569149744	8.06124348183152	7.87568042252363	8.2558790064103	7.98602778532488	8.16038251765708	7.83443446317354	7.9578065338623	8.06124348183152	8.12723834377114	8.03394411742222	7.72182808663825	8.27861769925142	8.18135519184654	8.26315150360637	8.24637380131947	7.69419537020591	8.47069794038001	8.0796443830919	7.83744125129893	8.00832948944299
+"LUARIS"	4.34953107400586	4.48890494643415	4.34798720417096	4.57760160784479	4.41300159532423	4.30525116527221	4.27431985077696	4.33661520147651	4.40409286409867	4.33327517810169	4.28982813039975	4.50484034604493	4.44603037403477	4.6095487033027	4.41016449365541	4.71371125209318	4.62534370479045	4.15452134754416	4.4695534561993	4.55210705669537	4.41016449365541
+"LUC7L"	3.96089642203795	3.95551917881568	4.65835114913354	3.51247913641778	4.36008423890156	4.07792606942969	3.5795831920485	4.03168140387331	3.51835836474339	4.31493445455633	4.38159757836065	4.28071618232542	3.67368736690024	4.12721975100676	3.31736994293401	4.30056147839094	4.07792606942969	4.49619953936429	4.01522602598153	4.30464725721378	4.03600099560098
+"LUC7L2"	7.83461199031605	7.98601223854604	8.11414693375908	7.56893403436886	7.77974409780638	7.51995364757467	7.34209921016029	7.73659758743239	7.57035741324921	7.48404282965637	7.85624126350121	7.68407428788005	7.40922809354623	7.38663378597492	7.54735679178656	8.19007665222498	7.72406827349774	8.17765217110465	7.71166097142372	7.70378114247239	7.55025247141652
+"LUC7L3"	6.66233778310411	7.10610186829693	8.00992948308849	7.21891078435336	7.4705345147218	5.96805878940556	6.50462787057862	6.67453090427133	7.75320179730464	6.62655023303312	7.21786346215713	6.85988616883419	7.20602178184636	6.77367392957485	8.35767132766358	5.97808425266121	6.90607304412452	6.68577267449488	6.7877195184561	6.62372683653188	6.91231596237562
+"LUM"	3.78077073851774	3.69748833089772	3.43177525918073	3.28836973485631	3.39750985837584	3.42485140432757	3.2446796615761	3.10445188916792	3.35236422959708	3.43965045995666	3.79272790052042	3.24523066751393	3.3683197466784	3.43177525918073	3.58497077257807	3.54791170071938	3.34516027212628	3.39943507895878	3.33903580630586	4.00469379059507	3.74055758880721
+"LUNAR1"	3.31295682878643	3.33746815034257	3.39877253771712	3.37976739734386	3.16649119744951	3.47298025610708	3.42457490908567	3.28468575480215	3.41222410027302	3.44509851058244	3.16202952026934	3.33351402043337	3.35345787264442	3.33746815034257	3.37310542359747	3.21594952949676	3.36641487492966	3.23765863646076	3.4967576143187	3.01481171348219	3.3404377108901
+"LURAP1"	6.50864653153082	6.75080226597324	6.6758972907909	6.55007093652626	6.53078076662447	6.61899963734308	6.79433274028294	6.3812469712634	6.44462388154056	6.4602333030397	6.60660919242092	6.44898744710842	6.30997109772858	6.62701078169013	6.48568125797749	6.91982579519833	6.36841281426283	6.70382347147711	6.12950682292468	6.41293312787154	6.44976568637631
+"LURAP1L"	6.52572137753124	6.84351362308902	6.42277549085494	6.71039873609301	7.18238852070077	7.27934234957686	5.85635482049366	6.20080789800152	6.46964488619953	6.71294080940612	7.97597819124343	6.73902151358769	6.73635667444915	6.28434408147313	6.75658869046493	7.94622939847707	7.0298201469791	8.45133526369486	7.09750528272452	6.60308591311825	7.42553604619477
+"LURAP1L-AS1"	4.06571373180943	3.9185576886025	3.49884229259049	3.86324210480935	3.90170734426659	4.00377254988162	4.03370460317926	3.64646847182225	3.83668527995989	3.80047273319868	5.30544060699582	3.72168704152314	3.75763862562122	3.90320687027047	3.65407330876526	4.7755976319223	3.80049244827157	5.63166728873879	4.10819738857106	3.82046693520529	3.90320687027047
+"LUZP1"	7.59556425792831	8.14735700844761	8.96554274816239	8.59017194165425	8.99636606752198	8.90024401522581	7.7106845871478	8.62736414832469	9.17716783939443	9.04519129053578	8.16540476822917	9.00459024648458	8.98782007893185	8.35196747013823	8.9620706937726	7.30171163544395	8.81700318877086	8.20033541051776	8.61770856242855	9.06554791305169	8.99783559904471
+"LUZP2"	5.50128498644575	5.73959922922307	5.84817089111472	5.64177510600962	5.78717760601909	5.36264556448863	5.33261748179012	5.63545506917364	5.54191583199375	5.40516270595462	5.4192675255897	5.84680436663177	5.88063453405416	5.50756251129565	5.67610128255194	5.61781992874554	5.57755490983241	5.29572544441282	5.17970210836638	5.63363736983529	5.48472095850198
+"LUZP4"	5.99417499815066	6.12183403292735	5.8416356337538	6.11896563100158	6.00218375762081	5.89823397989782	5.95808256814736	5.95248373334919	6.0268456023735	6.09695730306022	5.79358694831445	6.0268456023735	6.25170819508009	6.07039354339939	6.16372325677765	6.17349685465489	6.05620512560507	5.64847004767617	6.01029308445655	6.0111539226686	6.10356078326043
+"LVRN"	4.92937389085789	5.08741004652458	5.14055908856192	5.1761284099092	5.15232947159996	5.47585865172139	5.16342689193739	5.08434163260989	5.44962701135785	5.09330607094624	4.87090694161352	5.21682776579224	5.05322366695005	5.19138117346667	5.17162827790755	5.2449264350526	5.24110282708345	4.99348151799894	5.14055908856192	5.07695842022595	5.34462376766146
+"LXN"	6.23891296427176	5.79976601284619	5.34492890822539	5.69754953545937	5.66251039248227	5.44151846463772	5.87126057435353	5.47734591438492	5.9108134942298	5.68558472663566	5.97015336431647	5.83956973971998	5.74988123258855	6.11178008811008	5.50444942399238	5.90942876336171	5.65251523262129	5.2742452275962	5.91031885424729	5.82834686074308	5.92304187117234
+"LY6D"	5.31730919846428	5.68184733039591	5.83820026400582	5.85479633663154	5.63956397343026	6.07638270503774	6.16726029149461	5.57005453882234	5.62716100480049	5.61936790678201	5.67322878294679	5.58687132809248	5.92408379313406	6.12978567686472	5.75080221612014	5.69148760039922	5.73124943905069	5.55346117171408	5.9328590783335	5.68489513200257	5.73124943905069
+"LY6E-DT"	5.93053563556864	6.15376855769166	6.23988928817561	6.43306357793074	6.20335991702878	5.89906894726218	6.38586673202084	6.18498133256804	6.50258484895144	6.33829818913144	6.06154101334233	6.37984665893556	6.6783595316614	6.443834933189	6.63098800203944	5.87600144734716	6.34923041416089	5.70359632454133	6.60081603445601	6.07127687491653	6.34521818527637
+"LY6K"	3.31275543768538	3.28192600789284	3.47518823373934	3.59248214667254	3.3527599705778	3.84734425020992	3.9260576420641	3.16683346820285	3.64244440333094	3.50117372901666	3.50063000546834	3.5106052083308	3.82481842854821	3.79688615937516	3.79017179466402	3.40363149281674	3.49587775018566	3.54742862263484	3.57893223993691	3.52799343461871	3.36040402117004
+"LY75"	4.97358837189028	4.41251038672694	4.15208892540975	3.64031088814106	4.77235609381657	4.37653981612467	3.67330849831123	4.40565033896227	4.08476976127451	5.19074068482292	4.44318820684279	3.64808538520413	3.61654859975201	4.6027124448785	3.64111426850436	4.92197950687498	3.98244518020105	5.03034634987878	4.37988156873431	4.68511284172979	4.31165426240923
+"LY86"	8.66486633903839	7.96211273477026	7.18133000845566	7.37721550019264	7.53886839680676	6.80661510054796	7.25530234508249	7.73738332505637	7.34110356592818	7.53784395565743	7.66281285064427	7.34480498176603	7.37947255728631	7.66716463419438	7.74855338068211	8.21394098673109	7.53492791207098	7.66716463419438	7.93353596734216	8.27403367242248	8.66298678255978
+"LY86-AS1"	4.03506614008169	4.8992636378491	5.58153925313596	4.41669046004817	5.91295393683731	4.60353380118839	3.97521665806832	4.17141904430243	4.61552486600255	4.61552486600255	4.19651624763487	5.45837129916327	4.11535182376993	3.91860251701504	4.55653435277966	4.81279123616733	4.78595206562576	4.72083029964895	4.35844034205001	5.3059904935444	5.08434163260989
+"LY9"	5.77186135088901	5.99931140956357	5.52018732122455	6.03501101926947	6.1064481100475	6.12256621409962	6.23652350156091	5.64789111692226	6.05598971300908	5.93051437383668	5.56660899894096	5.93565744903606	5.98487994618787	6.10345768520873	6.17600810195974	5.40108346796132	6.00251565412733	5.33985662536312	5.831329074911	5.89211087544844	6.05287849163098
+"LY96"	7.78913710285201	5.97894156266017	5.209483942375	5.90419151391496	5.94127905605287	6.66378964219667	5.81826328840501	7.70902345873082	5.71526505182296	6.40167772206184	5.48487940031152	6.17204775465714	6.69824031288152	6.10161582635146	7.07611659586671	5.88931612703862	6.21897722540842	5.77463335638163	6.14440368144286	6.82136011069133	6.90207547707067
+"LYAR"	8.22738283367758	7.81115510373531	7.66054976229171	8.06208284432777	7.32968561516045	8.17125416264105	8.14825238580501	7.98631743760148	7.92858776610267	7.36921911028792	8.20798865314183	7.57462635667831	8.08794753504967	8.0417728037565	8.34369062279711	8.14848866127089	7.05724597965621	7.83353120339158	8.01926885939084	7.56514855019641	7.92858776610267
+"LYG1"	6.15926566894066	5.84666824285425	5.60585494632949	5.888514799526	5.66499603154649	6.4293682218306	6.18070591257209	5.59212459936154	5.96894374485997	5.76125936971348	5.84681915824291	5.46750908339703	5.98304351766738	5.84666824285425	6.05172737033604	5.84666824285425	5.84666824285425	6.29823458488036	5.91894353726739	5.68677043999167	5.65417684933199
+"LYG2"	4.43147087944269	4.45690180622548	4.5073141961928	4.48101624424806	4.37124856249453	4.81331084348836	4.59930559761086	4.47753190619973	4.4346298267661	4.40275769707269	4.26307924044214	4.25877782905988	4.70143019498589	4.97375809666156	4.7827202762649	4.50978737004419	4.53684520637689	4.45617849280442	4.56915453260167	4.49303986395479	4.39893437511516
+"LYL1"	7.60627343871606	6.90615097116854	7.04654118122876	6.97900554416048	6.89335960847017	7.40937039147231	7.38485816763396	7.04654118122876	7.05215584551845	6.76222603558108	6.81006046774064	6.58837591815973	7.1513653541446	7.56374229594821	7.17284617681124	7.01531439663326	6.76893995364987	6.96744923821104	7.08527073448037	7.20724487169667	6.97377596956028
+"LYN"	8.05942468097079	6.4195347171855	6.22579753785879	6.30417951948359	6.48095548975284	5.98900267838027	6.88406572976538	7.34407471490645	6.64231367123273	6.55313263358496	6.68494903154921	6.06244004229605	6.5764419027422	6.7086863627853	6.51714345254515	5.99244991961927	6.25666231329738	6.49973190000593	6.70184503480271	6.8752598751296	6.78043006251922
+"LYNX1"	9.10282941781003	9.79401278255403	9.73855030754151	9.61666085219837	9.95576629057973	9.79376369360479	9.19336457447556	9.31714945256261	9.55615279104215	10.1594586254445	9.50411195945341	9.86362962542408	9.97338366810772	9.49334959882243	9.39324664848604	9.25855108351224	9.95570017447108	9.25298864503075	9.32088659792905	10.2170466937131	10.3132679058516
+"LYPD1"	7.72334213250064	7.67719436883194	7.6675236272572	7.74328565169367	6.93125739909325	6.77883875279333	7.88895403703623	8.28053655985984	7.48199030444401	6.59648468521303	7.22861515796591	7.07441520068109	7.45303777496363	7.69512736574598	7.39422070541446	7.00374834737981	6.79756237100192	7.03144263940195	7.3829341742671	7.78081894733258	6.79459761277956
+"LYPD3"	6.50703983122288	6.3643480768716	6.27308784497335	6.56879955112551	6.54332505369712	6.81409649902107	6.76963145566512	6.46964488619953	6.53859366044589	6.56735942495988	6.39910048973271	6.53859366044589	6.57264033494719	6.86202809400306	6.50290644970305	6.5586402179514	6.56831702559416	6.15882132858097	6.51282592638431	6.42007698009432	6.51617177992197
+"LYPD4"	4.57315502066728	4.56953080596453	4.537699768961	4.74586455283019	4.46166034850697	4.46970377171726	4.65943586434327	4.27144345495945	4.73780036800828	4.55790269514953	4.26445357598328	4.537699768961	4.67762589244472	4.58608754272271	4.56197166856045	4.537699768961	4.537699768961	4.24182212164426	4.44318126287805	4.537699768961	4.56828794783989
+"LYPD5"	5.55490384648204	5.56035088690433	5.48773542305248	5.57044964848864	6.06046497805664	5.65747120710977	5.75163133661352	5.57612568761181	5.84003838852151	5.891715578659	5.49201796187603	5.90001645088873	5.65012463216567	5.67157402612631	5.57398661867629	5.46640992717067	5.73610216180197	5.41938100170682	5.78051746581914	6.35225722440063	6.25973221068969
+"LYPD6"	7.51386638645895	7.06004057205512	7.08449458641206	7.16927230129064	7.11308400372841	6.29916476658441	7.83185250848883	7.29844297883832	7.33166549705875	6.72150836554369	6.79466151139579	6.98246566708256	6.62950707515845	7.46493599564205	7.34486542311069	6.17766027879488	6.94142073219941	6.33318121543417	7.31442781248596	7.55505451297979	6.91692204577425
+"LYPD6B"	4.6619136853664	5.13723155215741	5.25049362922117	5.37684183960858	5.23152942185363	5.20587936434619	5.52215253244774	5.18662912133502	5.55246781145234	5.21417541528016	4.8257254112638	5.24791275467015	5.48263081175449	5.40532348013827	5.13367825200285	5.01386514476308	4.95771342590708	4.80444103410289	5.18757734879028	5.67504978976446	5.18888558895602
+"LYPD8"	5.66325256700989	5.98419514868181	6.55342215122323	6.14576644061963	6.67512451976319	5.83235135537292	5.38196809660204	5.82242739355896	6.35261256536799	6.0088375330385	5.67007821144094	6.07650775961619	5.79599988596072	5.86797980132425	6.21934135569177	5.87873093859474	5.83793218076825	5.9917592587612	5.75245603294144	6.31946411537033	6.57275277259823
+"LYPLA1"	7.9245660806828	7.54510364453713	7.59660913755585	7.6193041589083	8.0247322554267	7.12670599587909	7.19928965233116	7.66940385586546	7.87853837278809	7.78488110525568	7.68687680758034	7.37871536751851	7.97254432117188	7.25479426013818	8.06775746781972	7.31412478683132	7.47512173168567	7.7232120918635	7.8746725050832	7.59325853458956	7.98586277913454
+"LYPLA2"	6.95946445160411	6.96482342510568	7.33693301742795	7.14787283952984	6.96066648918313	7.22461344050924	7.19598891191905	7.00062928606823	7.20364718914575	6.94078366657757	6.78242128830372	6.78175868642838	7.15409415445242	7.35105421464674	7.24533081006047	6.69753075709321	6.88399241756413	6.88329988183019	6.94984189596217	7.01214804347789	6.99212314530543
+"LYPLAL1"	7.99139131852336	7.84452906531771	7.35403212145393	7.14475773338662	7.63117466348488	6.58385752315477	7.0500280944362	7.43156057299328	7.43651322200417	7.69849911318372	8.12875632456269	7.41784178744836	6.26798121970787	7.20678862594377	6.80527608457663	7.97676962701176	7.16807676981549	8.13644718735367	7.50021329992206	7.48871266089228	6.96750264809739
+"LYPLAL1-AS1"	4.4338526546948	4.74515731706712	4.44876779303165	4.52577697602477	4.55185961030085	4.36763373187869	4.52672420425976	4.31454099165469	4.70865584699249	4.5959796776015	4.43507913024912	4.57220924190047	4.54951174938777	4.56342171933921	4.65853424733293	4.73386328310004	4.72563222269607	4.3862235097685	4.44992770056728	4.54951174938777	4.64951674757084
+"LYRM1"	8.61608192817458	8.49297953605687	8.52826758505372	8.34279849860751	8.67788339786087	7.60384830214911	7.46791622710885	8.65122501772306	8.48539054404234	8.60382562137999	8.50510621227922	8.48918133223753	8.3675641702522	7.96364218870278	8.46359996751809	8.79849245971672	8.29864207411593	8.63969023337559	8.59309738502026	8.76981721912758	8.46568853256576
+"LYRM2"	6.67612498161447	6.37979842668686	6.58943758329749	6.43211478027985	6.37183337383374	5.99574083569756	6.01666778241933	6.72736907260964	6.00213049138713	6.85322104599102	7.02829370251195	6.32294142043411	5.83067292196388	6.07436803246207	6.22099540160316	6.72623773923763	5.68395445770918	6.65094360254059	6.36351397131103	6.71921745812519	6.12059484398192
+"LYRM4"	8.13802354460935	8.12902951747873	8.5043574775626	7.80119342410684	8.51285670776479	7.77168704859872	7.79072905973253	8.26473051799902	8.05610689246198	8.44666070923207	7.90545319377884	8.36481989570528	8.09996153800614	7.83635066429024	8.17321251289182	8.28192539110471	8.15091344147449	8.3872722107245	8.33594857259238	8.64326428845495	8.16780721946102
+"LYRM7"	6.4456528036566	7.01356597377141	6.70048192423052	6.85668239284579	6.96288247271099	5.65584936070023	6.48324045724258	6.58390339602407	7.040457690995	6.93571070262407	7.21363365737121	7.07968034875382	6.80313380468457	6.44679529647122	7.21229531254048	7.3599795133677	6.96344165190354	6.89646064693902	7.24252778915389	6.77015475387019	6.99738431338486
+"LYRM9"	6.13095776151106	6.85268705867816	6.35430717119677	5.77572320692904	6.29004634540335	5.45148144401621	5.14316746154299	5.24837138334371	5.59429192562802	6.20958867201295	6.65969665433713	6.67453090427133	5.19775985814023	5.62454653864909	5.52289864244945	6.33365454188353	5.76377858191947	5.87826501879758	6.00990179220662	6.35685830274961	6.42533993727057
+"LYSMD1"	6.37357744583212	6.75107858997927	7.04044750342547	7.0428988357604	6.76588447348382	6.53895991112622	7.18380887608962	7.35592929390203	6.67602655122711	7.60078716724494	7.15437674429376	6.61031613917344	7.11957747574492	6.79997931781236	6.75845574402929	7.09295704926619	6.75107858997927	6.9892499140705	6.39572778895818	6.83820526599684	6.77816056862292
+"LYSMD2"	9.44278866505931	9.89430022748632	10.2300284890125	10.1115112017677	10.2770155940009	9.59449765343994	9.30233454165178	9.90143929429274	10.3110173562801	10.396025122331	9.66356699952083	10.1295273264198	10.2079138805104	9.58230198073071	10.4286606718296	9.5178268083937	10.0674108407097	9.85991398619546	10.1045079851146	10.2275384344269	10.2319274651336
+"LYSMD3"	7.56047057093938	7.30601472096576	7.27068674955727	7.36453656406081	7.46423319736391	7.22774886693629	7.22428712755499	7.54399971811434	7.75808439095242	6.94092741558942	7.336351746041	6.73151512377066	7.38302231264042	7.03995294921371	7.58968393831977	7.22936148135914	7.01821749536208	7.68395638622906	7.35108906218327	7.07637200547968	7.22906493209884
+"LYSMD4"	7.47445915183188	7.62292601437816	7.76853989504387	7.42759007454559	7.42450719590098	7.08449379943379	7.19925545434397	7.21463242137971	6.9527580856511	7.20346614286036	7.32719805194343	7.71494304967928	7.44733062040791	7.37279313182291	7.28675017652485	7.62934532659425	7.40296268250291	7.54078460776702	6.98554102083508	7.45747998032334	7.40296268250291
+"LYST"	7.23534992913629	7.4710842103444	7.33648652729786	7.37177807308791	7.89687395469602	8.18230868209219	6.96157649158406	7.61550333431435	7.67355249741097	7.39363801846957	7.30517408744904	7.44567887495138	7.26659664717829	7.37345749151777	7.62134899737965	6.95738518211178	7.40857017620218	6.99188152755904	7.29531944805644	7.51762381669839	7.40296268250291
+"LYVE1"	7.9389343177705	5.83304925928594	3.89990790828321	6.0915664291458	4.75913012985496	4.5581601053121	6.6567988534239	6.52075657105885	4.49978772343771	6.64146479971814	4.97484889294362	5.15058164026976	6.19103854332675	5.26054471791305	5.7786460891675	4.78904662693991	5.0887504752358	5.21162510184184	6.2149394714186	7.28413707979232	5.65156081518346
+"LYZ"	6.98661486154754	5.20184257696385	3.46137811827439	4.6485214815765	4.57502327151307	4.18588125699325	4.84981974106598	5.1014465013777	4.20459523754999	5.75431292545089	4.85073386768429	4.72793783986205	4.83433933369196	4.61096553486808	4.8299779463218	4.56475118782238	4.75799280259008	5.47184060377531	5.79021354845335	4.65317809004022	5.08491148126524
+"LYZL1"	3.80062423569075	3.85298439634484	3.49907232928224	4.11175265368005	3.85298439634484	3.85298439634484	3.98278936756667	3.85905708033338	3.93643191650261	4.02784643686782	3.77666834404094	3.92740870465389	3.95399762023235	3.83015908975455	3.96289944922708	3.78415624822036	3.81397299132586	3.66842823081139	3.65719321666689	3.95326468683957	4.04617496810197
+"LYZL4"	6.07175710115969	6.32032406766099	6.46864893926987	6.56259660748136	6.1048676506685	6.42807021646116	6.29569284783783	6.4651125584941	6.29816707734239	6.19313644292466	5.99989181661415	6.303897164781	6.44067483123101	6.39807484418497	6.04456065349542	6.27449341308538	6.32032406766099	6.01192559249993	6.37147891317171	6.40382767411492	6.32032406766099
+"LZIC"	7.47947140452471	7.30228215325278	7.30658237432196	7.2465695774809	6.87980403148404	6.25709796965874	7.20904874364672	7.26674952352913	7.206725284691	6.85230598217724	7.81433098335835	6.63019929736996	6.96495395906097	6.72948927460911	7.50603346573271	7.97150401724228	6.9717055587389	7.59254915171477	7.33020884620265	7.05602544255482	6.88632460394948
+"LZTFL1"	4.98472933212286	5.79542988019013	4.80442160627019	5.36245217135415	4.83515083672718	4.85251310818316	5.74629967798778	6.27314510639085	5.76476340310896	5.56035088690433	5.90466011840525	6.0963772129928	5.70899711599685	5.30320465321724	6.30997109772858	5.40926364316293	6.22293340605095	4.68303805452752	5.59255957414985	5.73397078504126	5.02235796464317
+"LZTS1"	6.85024763839314	7.54812316355254	8.17197172022158	7.28793670557373	7.66394840702612	7.42438977311494	7.11232864539483	7.0490086459788	7.39253053603826	6.84736784796163	6.74340093729786	7.0390909511488	7.74074074608261	7.02826310806122	7.10040198869824	6.02842170727997	6.99628666552999	6.95525409926982	6.81756911424719	7.4006204103753	7.12812759893031
+"LZTS2"	8.1546188287831	8.16269685040643	7.93797591852568	8.03440630891719	7.6278425737354	8.57324820497765	8.39323184427052	7.85667362475713	7.53131210964587	7.61776245859957	8.59575216490138	7.90093497850521	8.03089434812812	8.27015701792977	7.90106857424153	8.7710979914265	7.86112407342975	8.78570774421572	7.93177839984258	7.65702851978988	7.73234908705364
+"LZTS3"	10.2802207966943	10.7692132112261	11.1426397593422	10.8729364520704	11.0374902186116	10.9699636410608	10.5691623778889	10.6717903206293	11.1418540589547	10.8491951550538	10.2552188249585	10.5764644972467	11.1350509456614	10.9837011218696	10.8551685626059	9.79729626209818	10.8282169129945	10.4334052356053	10.7615243553125	10.8696351431743	10.6645323674875
+"M1AP"	3.27420848537286	3.39485691468958	3.23976019903582	3.19516641180761	3.27420848537286	3.24231097066731	3.52412083874001	3.36326608003763	3.29530821234396	3.14099569781719	3.05251165105041	3.1664836352543	3.14226755658701	3.31148460476773	3.10437339303483	3.23253373624804	3.23522360917388	3.19301156644686	3.48582569635102	3.3052525162601	3.28378243857843
+"M6PR"	8.17999794539253	7.89451032547399	7.59250275730691	7.77712639938026	7.91935055432067	7.46668253110492	7.53762363122711	7.67373740577276	7.79568692018639	8.27714071205736	8.1399250416408	8.13246944016533	7.48674953828816	7.18988499670526	7.39460523077363	8.2271096571419	7.73162489381733	7.98601223854604	7.79612008222187	8.29661959099005	8.03631417574641
+"MAB21L1"	4.02902103000701	3.76451283903715	4.01655283716388	4.04397728192133	4.07258467288777	3.91691879097962	4.02902103000701	4.2005617643503	4.19802620445476	4.18065678933936	3.9509040066056	3.91854081809421	4.07792606942969	3.84746626312461	4.22642694215947	3.85345499087063	3.746674283765	4.0997927556821	3.71170091612016	4.81778288822629	4.01371847047157
+"MAB21L2"	3.95743756238172	3.78233878417762	3.87918713178096	4.11469855791928	3.99600058310369	3.40225903777047	3.64685099990935	3.96488261744385	4.33344318618765	3.975328723502	3.92539698697829	4.36330870977976	4.22646038940877	3.6859480888923	4.02902103000701	4.29822811818101	4.60602786418399	3.78348306786096	4.13937116657426	3.91553715044394	4.53708885992821
+"MAB21L3"	2.98244471685148	3.0027180444508	3.13529546438942	3.37869029854317	3.0709264773051	3.26109202916269	3.07818854257425	3.18404779816901	3.13645256648828	3.20893370233823	3.37137546941604	3.25437630138491	3.16578518531785	3.16405205302877	3.0556559994729	3.07446170019985	3.12836280657456	3.41183842429501	3.0036618070507	3.01968557908338	3.16578518531785
+"MAB21L4"	5.11687879232617	5.48407865483087	5.48248156073787	5.57399780673742	5.13814083312347	5.5941733389914	5.9721574541798	5.31616833775874	5.59343213764949	5.46001375122537	5.38189672782397	5.76049808699595	5.81533114084453	5.66034916078292	5.48407865483087	5.39709870650174	5.7958849706798	5.33452662602387	5.42524687603376	5.38182816908541	5.63251188060699
+"MACC1"	3.29344296972302	3.66760300738629	3.26267207146602	3.68168054765405	3.48401303533419	3.60924927956446	3.43177525918073	3.39004864133893	3.45766103658505	3.31022023094301	3.35748533166073	3.48401303533419	3.73636477934759	3.51725888582273	3.58141148403077	3.48401303533419	3.5132037875103	3.23044628196817	3.48401303533419	3.22236139067773	3.74239677942142
+"MACF1"	6.98442032760267	6.58956564439859	6.53100037252686	6.57471279809466	5.8685057690708	6.99313510921723	7.12877847897922	7.80461045024926	6.68458396877338	6.17483474824185	6.7859357669713	6.4114312451079	7.14118118084567	7.43547320346416	7.16243481912301	6.07168158001886	6.72800370118402	6.00910519804621	6.68458396877338	5.85455741069793	6.51617177992197
+"MACIR"	8.52585122371015	8.87478064032059	8.86894244594837	8.75345716734902	8.75745830937867	8.45551028694914	8.44150866126194	8.40925187925658	8.93741271600218	8.6663813925411	9.04945606531448	8.54205710996728	8.54957947705756	8.39882018213457	8.8946435969293	9.24966781444918	8.64798828792849	9.18588927666955	8.72520625041857	8.69229930272892	8.60876145551569
+"MACO1"	7.43533696891359	7.49304662138133	7.49304662138133	7.3270348931348	7.93751722409258	7.47378463920051	7.00114192010537	7.49304662138133	7.5101724411134	7.35517081356183	7.49304662138133	7.44272691054018	7.45811711705786	7.24445263853512	8.02187320740656	7.33999019552563	7.48602820380414	8.22609754900291	7.65109559154241	7.48452934973581	7.12098008554743
+"MACROD1"	4.39887872356687	4.23382649491908	4.30574146072471	5.19631727448488	3.77269396531081	4.53371567802001	4.92991983715097	4.53371567802001	4.64179996114355	4.25212867678868	4.61570590375985	4.72303645752512	5.08204871079354	4.82038298800753	5.3171772072324	4.29813091576165	4.1338155390393	4.00287859029529	4.83855798664971	4.09799933757108	4.52515986860372
+"MACROD2"	7.7357057016454	8.59413446219606	9.13214154606521	8.57360186860084	9.19282009590226	8.10862882966434	7.39838728468983	8.64587119299869	8.61512889421656	8.51741805101278	8.0720058424625	8.8962832559874	8.48127650024277	7.96028957077334	8.37225258050626	8.2419305046677	8.61757849366266	8.35558413815884	8.3027161849123	8.75807862270657	8.43450388952872
+"MACROD2-AS1"	4.30916842052219	4.46526507572164	4.26422947947503	4.48307485268372	4.32990780787984	4.41205496650043	4.43838956657819	4.44213186014338	4.59499080828621	4.37282562367694	4.31362217239229	4.48527840983825	4.53730561269855	4.44551890597529	4.46340551523426	4.45367431820808	4.67044145147589	4.30692160198797	4.52040471183814	4.45469134302656	4.65317142850535
+"MACROH2A1"	7.98058257398728	7.95023720524572	7.7773194147594	7.63162318608237	8.58432056513489	7.07145609781933	7.60810211328999	7.74969318661552	7.55993371915232	8.20178553298003	8.19723326186269	8.27892989122741	7.22053686471807	6.82218063047881	7.10864071964889	8.18961949068798	7.92890023878392	8.41727557151543	7.94933847372413	8.37029688194131	8.19455248617123
+"MACROH2A2"	7.40781211139229	8.00981021284646	8.07992786082086	7.89486001412949	8.04338628655228	7.96345064284801	7.58544931998952	7.63621848264599	7.88941366016858	7.80807779342501	7.67897856086568	7.91501167053907	7.83495997358285	7.93287984009817	7.73228982524636	7.90820260273793	7.73211174853894	7.82698236803201	7.74681573589452	7.90310002575293	7.93907580751722
+"MAD2L1"	4.00868552598241	4.52430459516679	5.15253520188511	4.46419271418957	5.23461489718666	4.10435847492846	3.59662520474822	4.74896183747449	4.7317371505274	4.80589088998748	4.39661496636904	5.14441560837407	4.16089863856463	4.00687729357874	4.14976648507873	4.63812690312943	4.57523175592644	4.75016792637157	4.46419271418957	4.83552765390249	4.63117147091625
+"MAD2L1BP"	7.57514788853624	7.3907333692508	7.70170197277344	7.34786779986898	7.89547491641861	7.04407546617218	7.22235688403556	7.37380616364623	7.53624849049879	8.03712842049534	7.39971990746849	7.6695282781472	7.40938589545328	6.99167888522699	7.45557320496943	8.03612761648743	7.45021275891527	7.90513308952466	7.50354830068192	7.7766644645754	8.1045631986521
+"MAD2L2"	8.27529099906886	7.25608685194146	7.31164008765178	7.52678995391825	7.52066443699182	7.51349392058272	7.79170202505917	8.01287798231504	7.50460765955466	7.52192883189803	7.81717506948465	7.56021863586853	7.15012690690844	7.54335863959901	7.49505508140724	7.79952903265877	7.3460638901838	7.85335089002474	7.51987830872998	7.61915704499656	7.48200284353483
+"MADCAM1"	6.95025953578824	7.46324619598677	7.19068251478328	7.51523793827251	7.21391686473285	7.08449379943379	7.25789444570371	6.98581120465729	7.08614689090023	7.3785048777948	7.13300914688952	7.49553459201375	7.43362592966067	7.1597400404742	7.25789444570371	7.15378343550426	7.55115940764732	6.93881895327993	7.17685809031365	7.49165927813743	7.4666813858656
+"MADD"	8.68164447367571	8.85686046552096	9.35569044501028	8.56128738265042	8.9804245618734	8.85881885072039	8.52799791655983	8.79770853441759	9.08093379485128	9.1084604489803	8.55226119548547	9.06830750035834	8.87718858852216	8.44920083309068	8.74961199338539	8.67353856686376	9.06023012186851	8.84198629109962	8.76602817401362	9.24061520322962	9.10902923028511
+"MADD-AS1"	3.72686160182742	3.54387507892352	3.72686160182742	3.69707931183435	3.59834498509334	3.69848345118156	3.72686160182742	3.51859132828903	3.59183531971913	3.79884689261639	3.65527712720592	3.76365516109606	4.03089191992569	4.31910492582358	4.02730991041438	3.73820188779484	3.63114990126936	3.67884275111033	3.83260665344597	3.47813972067617	3.83586048890553
+"MAEA"	9.06935804562797	8.98002100711031	9.28761657531805	8.89499576614954	9.26997602632425	8.67971880201096	8.43303947273968	8.87429758597549	9.1285605917868	9.38194525738635	9.14628393782872	9.20595241006226	8.9549858845732	8.41552856684024	9.11400608348749	9.11400608348749	9.18743432519243	9.18464307444062	8.98402362488766	10.1168184821564	9.4070646815073
+"MAEL"	4.22282563775959	5.43902072274452	5.96668269176176	4.94645689668834	6.13484026257508	4.53076424079037	4.34649942472853	4.74357174189828	4.5912713574237	5.22206500066425	4.76433531958673	5.33239606286507	4.72872266817527	4.82349423893125	4.38359951414279	4.43669615933992	4.83333498976383	4.9428644088039	4.8369099567399	4.98909194143186	4.88082277859998
+"MAF"	9.32526566377771	8.80510836868311	8.67810288794096	8.82383447733728	8.44058792622339	7.99261342129392	9.08160927844159	8.72920522732008	8.87491068130417	8.69632648034511	9.21809724921103	7.8700990976539	9.05544059498689	9.12868525971239	9.03476600493488	8.57382161490375	8.48650854817584	8.50686458958382	8.94795203603383	9.20153266962086	8.63658399841647
+"MAF1"	9.24131781953774	8.606295649293	8.94353553991319	9.02779634479577	8.64676150666496	9.279314682859	9.10641571245994	8.98556276068635	8.89107895277159	8.97392722522183	8.95516707130776	8.8191593765043	9.00738625637904	9.27700843097251	8.90662270527898	8.89136427810085	8.71149352941061	8.92375054164689	8.88188264717122	8.94304350858409	8.80594252365054
+"MAFB"	9.02211576068064	7.97754425796325	8.71618881539856	7.9995166882085	8.1113910972843	7.29914895896762	7.32169840774285	8.30520424967476	7.82441705291729	8.27120571026481	8.11475184205169	8.23717648552261	8.05286778224003	7.84731942404538	8.22517953079675	7.84023315560509	8.20952793867076	7.95972214496535	8.11840920233023	8.587750264039	9.33838765658993
+"MAFF"	7.89788880405248	5.49070512984342	5.986038617109	7.4115885458742	7.10633351726154	11.3135655156456	8.28443338929517	9.10810936211085	7.04798228197632	7.24418562492745	6.93886010017262	7.63637930360235	9.72556790483741	8.11227023412347	9.15678980776054	5.56482805750453	9.04581379825252	7.99778471465723	7.69467835688279	7.41822405521332	7.51880473657057
+"MAFG"	7.72604955381734	7.65772409392	8.1054621606518	7.83121359420197	7.70227038477762	8.41698955915088	8.50142409909704	8.00222316178402	7.78725691479267	7.94043536989197	7.76752990602539	8.02209514301257	8.16236106679291	7.88953214669619	7.92674277780736	7.83189138792595	7.93639352786569	7.5168738053098	8.07828209602815	7.98248098175272	8.01519931380582
+"MAFK"	9.55519427326186	9.11941783334798	9.08036950985318	9.31931569271825	8.39395873468396	10.0685945836244	9.28045231096305	9.36435652510144	8.96111395390129	8.55848301174498	9.20784271589391	8.65363736711254	9.21513234210958	9.54961341152193	9.19606090909042	9.12338689684827	9.02550697797625	9.15978290695154	8.94642172384839	8.9400254079038	9.2306386931271
+"MAG"	8.64462572732192	9.77362029528669	9.18489050452503	8.7175454942338	9.13999325861473	10.1057398690107	7.88523138034473	8.42001501186358	7.43611135440105	8.62433914496274	10.6515824908717	9.30028079222977	7.6500847748561	8.41183717653016	7.2895946368944	11.1251120212615	8.44521023810305	10.7380929129165	8.54661273707166	7.98162799650226	8.71594341606608
+"MAGEA1"	3.82257805743006	3.6672945440936	3.77388153932957	3.82592603990989	3.59001240456128	4.14494875264042	4.15367410458921	3.84327726114406	3.87115415182577	3.84327726114406	3.82257805743006	3.85828633589739	4.02714387774633	3.73911773979263	3.82257805743006	3.99366456063367	3.7331143218234	3.65483832013181	3.96548897253099	3.7518094232017	3.90267170901514
+"MAGEA10"	5.19951109443133	5.22190917890643	5.34284958629072	5.35262294277624	5.16850916206466	5.58433639301605	5.48692503031547	5.31579533705207	5.29677608671678	5.45841299615516	5.14977981590511	5.23803233831923	5.33691139859507	5.44089438799736	5.42827530157083	5.40511858314464	5.3540996810793	5.17384854835003	5.41888523692954	5.1877441735542	5.22036686709761
+"MAGEA11"	3.79569857299011	3.7608440349869	3.88509171534632	3.83570939777574	3.7630095863769	3.82735881706474	4.1392613164405	3.72665765541237	3.78341755397159	3.76606227505206	3.58574562261811	3.56508497600244	3.81399307702424	3.93008661809371	3.78805505121862	3.99451104341909	3.866301022812	3.92860037407142	3.68261633489453	3.71506900582168	3.58943027151663
+"MAGEA4"	3.27362495387961	3.22348801281075	3.20638261323041	3.22569488504146	3.19368575641128	3.22569488504146	3.42234850572132	3.22569488504146	3.24230196145342	3.37893799222404	3.1733531208765	3.02010644155102	3.2271677931733	3.35741776188896	3.17060261855207	3.29461610313352	3.22569488504146	3.25302105435482	3.18722964558422	3.41074677275592	3.20749408793532
+"MAGEA8"	4.36240094923437	4.21593332688779	4.22856374197247	4.14521622543652	4.38768931533359	4.57569537013498	4.43997767611285	4.2493817728559	4.28978587780678	4.28008712155956	4.13410410628613	4.18398315490747	4.16089863856463	4.32908510135392	4.21722900539601	4.2510288298346	4.24047713296696	4.10395125927162	4.20640319458892	4.35157256835614	4.15443927342228
+"MAGEB1"	3.43725700137603	3.44639552142951	3.38227725812317	3.50332181285253	3.45130221672516	3.29277971247893	3.47473161600592	3.42877629542865	3.51996381312734	3.47101199756274	3.43725700137603	3.18951544111069	3.39448847395494	3.29441345280518	3.39270688912592	3.54300354855708	3.32660152582733	3.4225161326513	3.43725700137603	3.49616872232153	3.31437612603281
+"MAGEB18"	2.83039457349418	2.74610948298966	2.86806732383705	2.78603166423899	2.96121546619443	2.77687314993896	2.91928741107058	2.8707836801134	2.86391176464846	2.84358745289624	2.7172949798292	2.97943315020649	2.82274148850686	3.06624422453239	2.84966013688478	2.79504699180219	2.84966013688478	2.89162918204966	2.79809443074414	2.80865901434632	2.81493929777478
+"MAGEB2"	3.68582596986105	3.80178679885111	3.80178679885111	4.19698178766973	4.07792606942969	4.05867931530062	4.14123913104768	3.78189758443228	3.64244440333094	3.98755314494352	3.61982772713606	3.65843431541115	3.88835961826997	4.05170528780192	3.80178679885111	3.87991838437891	3.58622850285909	3.52513331403047	3.80178679885111	3.69301994312022	3.70496750836518
+"MAGEB3"	3.4335547351915	3.25144048150691	3.20965947216033	3.15198201317042	3.26593343349114	3.52824091840443	3.43717468696375	3.09435739370745	3.38337298206244	3.35173792119535	3.29325526993185	3.39842601008385	3.32623432074622	3.39602564803174	3.1637043456945	3.1552675508455	3.24193463450533	3.19700619372845	3.46229408774693	3.20768448483503	3.22923963400818
+"MAGEB4"	3.09460156587797	3.13797475342338	2.91089679702693	2.91538372242751	3.08174583735386	3.23176509747019	2.90975780438062	3.02541289847316	3.02541289847316	3.11336710700814	3.06020911399931	3.10374248206502	3.11446967648038	3.01048746038253	3.07373418475346	3.06607186783462	3.06020911399931	3.11347035836567	3.08542262641291	3.03432897527012	2.88829330098211
+"MAGEB6"	2.82814854085294	2.75965229340433	2.7112736886529	2.7188242318935	2.76452877473162	2.82149303024029	2.80724298932898	2.78687040491104	2.89823623128049	2.64689293540294	2.67684122886539	2.83392987784284	2.68438041702711	2.85723563182758	2.930222888351	2.76101880234163	2.71695280303969	2.76899966827677	2.65910466635385	2.9799395042112	2.77043419610409
+"MAGEC1"	3.88281851015423	4.37359691973092	4.32323484713225	4.21906929971287	4.32634285156745	4.26341049495135	4.28526833697347	4.32323484713225	4.24719616254079	4.16325644402003	4.35056101644561	4.38090134738689	4.32323484713225	4.30842325959489	4.21766956521683	4.36339809561986	4.61512800188401	4.13468549633355	4.40017277833312	4.11924970273043	4.32323484713225
+"MAGEC2"	4.62407063863834	4.62819646106055	4.59563522546819	4.8621949303365	4.58542910055364	4.94152789023732	4.92149711004292	4.65428835937589	4.83624606929215	4.61552486600255	4.51201255193984	4.65428835937589	4.51201255193984	4.71382558190728	4.67242498607057	4.7589270737251	4.72157194173972	4.56114311100221	4.65763011198553	4.68785103648439	4.69394714979749
+"MAGEC3"	4.07702279464386	4.26564756406863	4.37602830593118	4.08182178141744	4.00681654320762	4.21723324591277	4.07751073006208	3.97175196764478	4.21022689808763	4.03979539245002	4.20391110737142	4.40001066573885	3.97528187657477	4.5185241327342	4.16683208495204	4.1338155390393	4.25607903302778	4.13635957643624	4.01109640036267	4.12942942109886	4.0510590930329
+"MAGED1"	10.8195051121396	10.938577600555	11.2565792662713	10.6366399410774	11.4805934620432	10.5428995922225	10.5738054537524	10.7765297532536	10.8812833712235	11.4266840531925	10.8008268985608	11.1986482693642	10.6050593417492	10.3826598594841	10.6108785921796	10.996679554628	11.1430048199846	10.9755535004476	10.5892806254564	11.5042356659347	11.2509226340632
+"MAGED2"	8.6187575246066	8.31787092226153	8.48654026511079	8.56315359740793	8.47208705316713	8.90448751585727	8.37187562111203	8.31039777569707	8.52437953116635	8.65660335297733	8.32890229345501	8.2739359244937	8.60176942657598	8.44453990671134	8.53247929777134	8.41284773291576	8.35592003083604	8.25282532939247	8.36378687030013	8.67885468601606	8.43495841564189
+"MAGEE1"	8.49024059849168	9.86467626191288	10.0964784086022	9.76614461550144	10.4448817677116	9.00639859031204	8.08268851108774	9.60153696443719	10.1109487008351	9.97484269594499	9.2485068755946	9.89499215510006	9.78242575407296	9.04931716293951	9.82113899952836	9.12853823167644	10.2198527050945	9.72406132307562	9.60175413871203	9.83434808251602	9.939746174
+"MAGEE2"	4.91905048660395	5.24832279419308	5.69829928451867	5.92925484800841	5.91690749394008	5.05289468212253	4.77530563386078	5.49093468573953	5.28176883379772	5.73103571438702	4.93893468151982	5.94025518734057	5.66599694511883	4.99699397328648	6.10770753087399	5.19464898649546	5.67055174064581	5.47238404453623	5.62429912034075	5.55890411844152	5.28376138241337
+"MAGEF1"	7.81139093468089	8.09931736036937	8.69929391612895	7.87780595190099	8.48860105287082	7.70487603190008	7.58023089659756	7.83267386966363	8.03028508990059	8.31717080689116	7.78336078070081	8.04005191416417	7.78352030834079	7.7182955369249	7.71592783584758	7.84778618642624	7.96434008113309	8.04140878952602	8.22694841905798	8.16601349429704	8.0287015268726
+"MAGEH1"	8.43395863566589	8.99181547760687	9.21523303238675	9.10180949443798	9.32198875846282	8.46464972471759	8.23333730926982	8.7490904329686	8.8303140402614	9.21294847787186	9.02700416358843	9.0639893010371	8.87365572695088	8.4349353797972	8.90373927161623	9.49546756679016	9.00326088508749	9.39649743098627	8.92303951736484	9.21745328588322	9.00326088508749
+"MAGEL2"	6.3405141617575	7.25663754018357	7.62865778674637	6.82450629332652	7.98253453442316	7.34189387337322	6.65541115612797	6.86337711503178	7.33680673150833	7.68536503516126	6.49241788337089	7.3608038670799	7.29012558701277	6.8021054414052	7.25663754018357	6.7761115095587	7.34802469590157	7.28537942164022	6.93249793007217	7.75651471864003	7.78939210871471
+"MAGI1"	6.90249606676054	7.34204717262735	8.18567554055994	7.53487816259639	8.02550668987033	7.82722594979451	6.66576122473134	7.48123462658997	7.58740036779167	7.35421096229133	7.30810724414621	8.03511439304549	7.81707947855983	7.20569498286469	8.12703408011751	7.65791503815593	8.03748299406025	7.86326410309202	7.65791503815593	7.9543458005198	7.68452989626745
+"MAGI1-IT1"	4.60677169550035	4.72914693710341	4.73780036800828	4.61552486600255	4.50694336770686	4.85934629424851	4.84630004085101	4.60614888224053	4.87245315182026	4.73654412966449	4.8250287364568	4.630905619932	4.92925297293174	5.11971048564704	4.77664999305992	4.79542366580931	4.7090636903173	4.82270445016801	4.77764392708719	4.802516651463	4.74439595607747
+"MAGI2"	8.16295401129555	7.87214017665495	7.7095300954708	7.73022861874185	8.07510541287204	6.87370023853173	8.2318336165502	8.03708868286839	7.90155455487438	7.7530452364096	7.99959093018708	8.04962258588187	7.48596059468905	7.77048641179862	7.25582446410084	7.68132874549753	7.89953911869473	7.94394696217063	7.86442487086409	7.9759416430541	7.70710431889774
+"MAGI2-AS2"	3.80595576491393	3.96251228071596	3.92859291103018	4.16235768129211	3.8950346456447	3.8950346456447	3.76849589135669	3.91035467672718	4.25227565308341	3.65593484812751	3.7244814966927	3.80595576491393	3.98151379499901	3.8950346456447	3.93769677272683	4.01200695063867	3.97738532053742	3.88509171534632	3.8984543166516	3.67950722130745	4.00223633685842
+"MAGI2-AS3"	8.35674087740858	7.85357050015013	7.80863524725735	7.50982748099038	7.7352645311481	7.45313398024735	7.87832127917503	7.78553466911904	7.38466974563915	7.91419243204599	8.3081392852754	7.43489392573056	6.98427257669419	7.59527742538332	7.04098017864777	8.67535630014464	7.62465701175646	8.31876425439002	7.65728497050944	7.70904390359382	7.04040194211703
+"MAGI3"	6.14505941677971	6.4695583992759	6.02246158183602	5.55452376517503	6.80988505218093	5.69620594543782	5.9721574541798	6.48360095294418	6.24624496249475	6.93439301652348	6.2079915076012	7.33494081420569	5.83459287281447	5.71594061834434	5.64662052763067	5.82630360144957	6.90352521951383	5.91577169314521	6.54637425493172	6.92441070171028	7.0369353893816
+"MAGOH"	6.25019191248528	6.02399258067629	6.54507306682	6.44889550083724	6.24171315803831	6.01494210064942	6.00457456699752	6.07854110773496	6.15725251884871	6.41404264116408	6.57264016801757	6.1840272549362	6.24171315803831	5.84146065658413	6.30997109772858	6.24171315803831	6.09426046738511	6.14388339510099	6.35252733041718	6.14999521615969	6.28813053001003
+"MAGOH-DT"	4.69663078877543	4.96369581826243	5.05731258391193	4.68906201018279	4.65026800598168	4.6757341012532	4.82591998693852	4.6757341012532	4.97286964878733	4.45193983043109	4.75357484378109	4.41792873181996	4.85890502876275	4.88777994906477	4.91999699094059	5.13449612325385	4.55974308300449	4.85956709766322	4.54490955807134	4.65736598102772	4.78484331402457
+"MAGOH2P"	6.15946707763428	6.202143603654	6.15978643279133	6.37470366954469	6.0807958603203	5.84497674753883	6.1091305372253	6.03742365698634	6.21298998775687	6.22648981643863	6.5793184786918	6.34802225638273	6.35233534107099	6.19840989508872	6.21703966177669	6.16668655054843	6.04751925484889	6.07136826741481	6.36128163040326	6.07366268533178	6.37622620649227
+"MAGOHB"	5.48443078817688	5.70039779832628	5.64877198144966	5.58626320663795	5.64165546383381	5.55280363639023	5.75997074363068	5.47389764126414	5.35728683023478	5.6866386993834	5.78652790033424	5.4218816812685	5.60236642832418	5.63006588910225	5.64877198144966	5.85075371140174	5.44123117531038	5.90138974913468	5.67599575104224	5.66837783009757	5.84324430367431
+"MAGT1"	7.61473528686381	7.81016365022862	6.47105556290797	7.91001301885569	6.58264604122601	6.76067889538849	7.09982984599135	7.68987435462424	6.98687732530826	7.19548749442265	8.76756586454796	7.52883265128111	7.46887036584108	7.37592002781289	7.36801359300093	8.57310973945857	7.32511664146377	7.46691429778421	7.66483524897999	7.28018158768275	7.42717475621617
+"MAILR"	4.00414332641594	4.63155099076639	4.61544414998247	4.28069708299391	4.63504185016207	4.23342614385691	4.0466540041926	4.30291884282523	4.55919188921708	4.26534356296277	4.87132707787083	4.30291884282523	4.74174496577168	4.34269211378719	3.84104253479741	4.36661349613826	4.44081476513542	4.25395908952454	4.46275943199076	4.30291884282523	4.26145109714177
+"MAIP1"	7.89341088128319	7.95810480478392	8.12882370106714	7.83073966109483	8.14371004404112	7.25040830127311	7.46360703776689	7.89341088128319	7.91801505413638	8.22769534769843	7.83833575498597	7.71055474789898	7.48254360734984	7.59995832655937	7.75956480249488	8.01539223004316	7.68620983937304	8.38270192424197	7.84029770690711	8.19646620795396	7.99307104950777
+"MAJIN"	5.51300962499563	5.6040453831203	5.68998178258863	5.474092194031	5.63282737911643	5.5941733389914	5.71931679163843	5.60225658154794	5.83370078161728	5.45657536781127	5.44089953977278	5.6688919483718	5.77588407522856	5.78917333758345	5.71072514352614	5.72391937830513	5.78980010960682	5.17700789482499	5.56876082013031	5.50863438876027	5.70881492160149
+"MAK"	4.67507076678044	5.00085833622707	4.62193295775487	4.69150362066044	4.18312977088896	4.38856531401332	4.73780036800828	4.74818976513118	4.73780036800828	4.50852255090554	5.07865811906934	4.76764009535909	4.6401524872008	4.74170881176123	5.02360452728429	4.83851391392687	4.81688281683651	4.61072131417915	4.87038232758812	4.27664645359213	4.60888721750279
+"MAK16"	7.36262369709599	7.79639158360159	8.10529234502315	7.34297646644167	7.89022907813588	7.14599086661402	7.18209425153317	7.14062080937619	7.29688498192758	7.76114652367469	7.6442279236882	7.49028278525366	7.10010194423407	7.25777573885809	7.26696020038801	8.15869809321662	7.29992628912578	8.18074948300636	7.38050038869176	8.2764862991521	7.83897125223487
+"MAL"	10.7136049404128	11.0175967335765	10.7013530220909	10.4888784760894	10.4340747088	10.5385287546992	10.2995011985189	10.5166889636238	9.47689961383589	9.64207480912287	11.6589896791608	10.339798846856	9.54154129314372	10.1906507735478	9.54261667620887	12.1115557356276	10.0585975636843	11.9917524324348	10.311082992939	9.32878659598715	9.65989572283582
+"MAL2"	6.2658981993195	8.73205015611182	9.37146512879865	8.62488402308285	9.55784017589989	6.68465605682943	5.96814670405963	8.24615951600689	8.96230643455119	9.20402839833087	7.89041074892662	9.45808633311225	8.10402381348739	6.50219437215912	8.73221254306532	8.5250288882146	9.1214189702608	8.60966544359671	8.9226720275498	9.57953561866437	9.29689650145333
+"MALAT1"	8.95538529699069	8.63748844484025	8.97378814177102	10.17495117694	8.46749241830792	8.92440790968996	9.16733755963979	9.45503655697489	9.41664679620546	9.08153142815526	9.71889243779495	9.49877960032703	10.4624640315635	9.90359334019031	10.0228163486368	8.02385698043008	9.30605497503812	8.34880741484351	9.53789977016827	7.9919613616468	9.12846224102426
+"MALRD1"	4.00967676648148	3.6768757379292	3.815503676257	3.72444291123674	3.71267431488252	3.56145650521108	3.78066850277289	3.69481367875989	3.49986175499503	3.39437433205811	3.65000654859933	3.52210830320585	3.49907232928224	3.95980652892951	3.69675579163922	3.73279322178314	3.57086474613014	3.44309475008424	3.96227853607193	3.40045988585001	3.52210830320585
+"MALSU1"	8.35254447412777	8.17817433444158	8.19311928419441	8.05311016228277	8.55534297147018	7.70807195727076	7.99325259291262	8.46898392367579	8.38883722050589	8.94585568076904	8.34426182385013	8.51761389612134	7.90313683811572	7.66836326002472	8.17158057568116	8.53184309254009	8.20093597636405	8.9327117336047	8.43727128682046	8.79784617641609	8.69287824199909
+"MALT1"	6.92461773569571	6.57087408333826	5.83659465446338	6.21249747058321	6.23443690936073	6.67430527960459	6.54787723233881	7.23571914985752	6.0783712170801	6.22619955772884	6.26738825197448	6.22964010356712	6.49384193813052	6.4668318460862	6.24655586574401	6.17940177401405	6.66169562882496	6.51502572533284	6.31390423587436	6.56894502695997	6.56425675703815
+"MAMDC2"	4.22562664921119	4.89272276297387	4.50326025225915	4.22534838907814	4.66866751901866	4.89414387016056	4.5358337175695	4.62803918541661	4.88783362639295	5.02911786542874	4.3345912312886	4.52534618063534	4.89414387016056	4.3472001544513	4.83596369268952	3.83784252076033	4.63455245823599	4.50921181226702	4.88535165939905	5.08594200211212	4.62803918541661
+"MAMDC4"	6.76567711452421	6.17007248696622	6.25881908436516	6.41857902252177	5.82392345618169	6.15887625066553	6.40787855118129	6.35851184082067	6.25881908436516	5.81598250078319	6.18881543734884	5.85873835377465	6.34999859351289	6.50503783419316	6.3099577324474	6.56759561072243	6.17728445273303	6.47209782042406	6.31946299441872	5.89627454606614	6.2876487983054
+"MAML1"	7.22904276438917	6.90712385042237	6.56898210631821	7.29817320098478	6.27705662678927	7.26296050236058	7.65670469173739	7.00649489947399	7.17664972656744	6.55911301934644	7.08522351164939	6.81194467012287	7.23984904031086	7.47090276472852	7.48040687164655	6.64951367937428	6.41538599398998	6.8783034901802	7.35599268319829	6.4984780141874	6.64045704330822
+"MAML2"	8.83939009702953	7.50132358174853	7.37707126736221	7.23892400406419	7.01082567469127	7.66385801288805	7.96928241581473	7.98149157169528	7.72471797101642	7.02441449034053	7.92784215314485	6.91120090393841	7.83738806306897	7.65611045099127	7.94228948134074	7.48481544458405	7.11542322038001	7.33521237444505	7.50087715062953	7.38654250145317	6.81033028740268
+"MAML3"	6.71498365542297	6.06811918464911	6.10271985819724	5.69013694916692	6.03253349980483	6.34668932041925	5.78448263936752	6.02516199804476	5.68879064264672	5.6134536468014	6.05450175737246	5.40512778314793	5.39403893659535	6.02075501142793	5.23826539839855	5.94164717345256	5.66878002648686	6.35825984805946	5.84242366460417	5.71857021895846	5.11343481635073
+"MAMLD1"	7.52157029256761	8.07197458753201	8.4903501637491	7.99538146581363	8.19026069338267	7.79662013855612	7.6882098196746	8.03421784592165	8.00118071580648	7.79094225756328	7.76664885866415	7.84221691317452	7.99192060601992	7.67540414524555	7.86946471953099	7.4764700710052	7.96746739324932	7.94933095376668	7.62141785607887	8.07096166865161	7.66424957830589
+"MAMSTR"	6.68752049921614	6.9739798046104	6.49976299342618	6.87554209528357	6.56492582513702	5.5941733389914	6.66162372874965	6.67113561680479	6.6972968175205	6.85083329925101	7.14377619986707	6.75491515395486	6.98749121349524	6.72215921664424	6.84799600366447	6.92631791675303	6.80620647061034	6.29312522270979	6.85866718517754	6.75491515395486	6.75938326846102
+"MAN1A1"	8.03037634755564	7.59074079387138	8.2541703734063	8.16555322520671	7.9960811176624	7.35756679090848	6.98912083768064	7.85580557060494	8.57370997427594	8.119550706946	7.50388720002161	7.6395688181672	7.94670716378048	7.47696137910815	8.17504649678237	7.17880482224601	8.2373800321411	7.52188940605093	7.98498390716715	8.32255511715372	8.07271879921527
+"MAN1A2"	6.28638707624573	6.17007248696622	5.76607784230371	5.87061135744817	6.29662864823188	5.42361572901385	5.70638710398264	6.09211775285349	6.11387207035941	5.85277594266816	6.03778406492232	5.45809984058335	5.70620802394523	5.81462980313186	5.73598655790401	6.6458550795393	5.83515868410202	6.50167609971307	5.99626252332468	6.26367547089929	6.33803984068853
+"MAN1B1"	7.87475105761222	7.68298810505623	8.00576093384405	7.27143286958896	7.55333554942337	7.57760920157704	7.10080227171781	7.58566995826625	7.5081771664807	7.76628030504088	7.83924236668286	7.74424393764279	7.13677508502181	7.37200720600555	7.18061913238046	7.96707863281835	7.74456044394793	7.90822275868442	7.55921408046756	7.78334946710007	7.82413568120506
+"MAN1B1-DT"	7.7126521168035	8.18461524634263	7.8934880189305	8.00886604155894	8.17329128218281	7.98341301833424	7.91046310917128	7.86215865095267	7.78692195121585	7.98643834225907	8.21531686528864	7.79469737463649	8.15557203445119	8.06699054988267	7.82282277947098	7.78747376965645	7.88512012412459	7.88138399294635	7.85009600956816	7.97761832744322	7.76090346054847
+"MAN1C1"	8.70206544287394	8.88473125335764	8.86958882052722	9.01076038298897	9.32256875163875	8.61214285713077	8.19091624775125	9.04540515795212	9.62164094718053	9.44028465147013	9.03631356408917	9.31888896352824	9.2540730604484	8.57873682940918	9.05658977858984	8.41835764947491	9.37712243518789	8.8269077562201	9.05767643705738	9.58162686147642	9.38915791120469
+"MAN2A1"	7.66572229003259	7.93967492223605	6.82633779247912	7.25789444570371	7.28111170459663	6.86170793817576	6.32496036021369	7.24817141619618	6.28595624082043	6.79299516453446	9.09645662271813	7.79935413426096	6.22528175453793	6.78025073642688	7.11189176102534	9.13092409581436	7.51839749800193	9.20608611253173	7.60911479944711	6.83236469371306	7.15434878356295
+"MAN2A2"	7.71931713469689	7.62918898604358	7.65541972032167	7.44375575865368	7.37094825325025	8.08417191272668	7.31197944918323	7.37467868952332	7.72824912667125	7.49735161656071	8.125398139172	7.51786646999333	7.35094522311134	7.49020572556596	7.55280756782372	8.36164886132519	7.37641336915119	8.64744303265814	7.52236519727922	7.20022098909547	7.42849529283802
+"MAN2B2"	8.29317367472876	8.08426893793384	7.94251607179984	7.63246210324908	7.98547019073604	7.6064917908668	7.59837173878083	7.99179417135879	7.80124762581524	8.19149971449501	7.95038079949427	7.94251607179984	7.7399103293458	7.85150831261019	7.49447907964569	7.51464364739011	8.09238186661634	7.87991977760943	7.83443446317354	8.16167817654674	7.99296894164092
+"MAN2C1"	8.75968038850769	8.53622472168476	9.10092865984131	8.30065089867233	8.50050224041312	8.75058450955805	8.08881071230748	8.68431438220457	8.32238497139672	8.22367823875548	8.83766633130262	8.23823744789048	8.20345414149632	8.45584588306758	8.12729616315008	8.53332918421546	8.43669222620604	8.74409594983023	8.35826762706952	8.48897730525221	8.32572442062892
+"MANBA"	7.45834406376148	7.63454260739721	7.6687660423576	7.50921136003563	7.32301554267405	7.96163524848635	7.70507054144763	7.78094260395734	7.38581996755802	7.55755612904339	7.55755612904339	7.57925935230383	7.20040436695337	7.45219224175667	7.25429523770631	7.39767603627943	7.56578419890665	7.9748037465859	7.72456052393464	7.52168533616516	7.22248741815046
+"MANEA"	6.87829213876864	6.21819514513954	6.07672696372349	6.21196227698245	6.25757215134582	6.02556040330817	5.45595563723252	6.07854110773496	6.0179478005271	5.75167702053081	6.68968695778583	6.04067575934677	5.90675893725633	5.66128153398499	6.07854110773496	6.66941549032112	5.57488408730302	6.65727371443042	6.22879096496064	5.76335870320579	5.59598790027082
+"MANEAL"	6.98074931726262	7.50901294916311	7.92259917497226	7.35694755958466	7.96196734953714	7.2365353755101	7.22283928132414	7.29166004293088	7.73752637517675	7.84221804868169	7.62785330893889	7.78518278793962	7.4727256586589	7.0663053114787	7.56916172375534	7.57753946954215	7.52845539248031	7.52122539615916	7.17996994464397	8.0632232706054	7.81889191765809
+"MANF"	8.84855190146087	8.6976268133874	8.83517484789624	9.16230606770311	8.76744240972411	9.19758926761554	9.27024826232547	8.95435260004836	8.94206871405174	8.37384879449237	8.74588588417443	8.91749158374478	9.31832311939964	8.53365167180117	9.60898969936532	8.91659924999039	8.54461777010088	8.68930346940546	9.22493518853002	9.33656854653867	9.10072253115769
+"MAOA"	8.29297638884104	7.25410263543759	6.27778928957255	6.99281014572404	6.99281014572404	6.88446328538064	7.2474154783299	8.00914907898043	6.87956147322729	7.15610017060722	6.99281014572404	7.19172576181193	6.82604028681603	6.97270048946148	6.32509912561919	6.07304515316246	7.01971707123167	6.9154178907789	7.02315210265875	6.90381210851592	6.47583630484215
+"MAOB"	11.3064096492201	10.9969022517899	10.7961218470004	10.8009795519786	10.8589108237646	10.334671527097	10.3080252680877	11.3624975170932	10.5865229599564	10.7694484299802	12.0829248862409	11.312868500084	10.5714338497778	10.213101968939	10.7159770301917	10.7462844738877	10.8085992679801	10.4358980460186	11.0198012519611	11.2088464928465	10.6777250287539
+"MAP10"	3.41361441314026	3.46878253326054	3.72402949376546	3.30120835336141	3.59035006425724	3.55379265474403	3.38338662712967	3.36290335099383	3.56616328993353	3.55318138758027	3.09167203950713	3.5571991809668	3.2878792152551	3.35798840845617	3.2647382179917	3.33005733795774	3.26073899870182	3.39810421114475	3.39810421114475	3.54949391531125	3.3024339101175
+"MAP1A"	6.07796277734417	6.50080417973676	6.44007624296794	6.58474069945744	6.59871489500017	6.76900071268706	6.81608962450079	6.36178080604979	6.96717435591848	7.3812868522	6.65639893424336	7.59143452378558	6.94076128418058	6.46654086522946	6.86601017895779	6.5258963533309	6.80279075318432	6.02223614354119	6.63291107424417	6.72513935836348	7.11708400696486
+"MAP1B"	8.70339394688929	9.01479466771405	9.36664370799298	9.37508468740354	10.1292615417084	9.98376183916281	8.89450453266753	9.09818386719952	9.38105655233987	9.64758953027989	9.16278958245779	9.63534584573235	9.77039869960795	9.4425559987264	9.64248397246055	8.73834942263304	9.64232800754105	8.93800032000121	9.1304024432181	9.38421989213613	9.75181864649736
+"MAP1LC3A"	8.08798296783839	8.28087481405331	9.02752802525301	8.23302929392979	8.58077803981898	8.18342600728745	8.0768482785596	8.28746400090033	8.01125490649387	8.53738697313747	8.46768489158952	8.73355781860453	7.97212600064483	7.62634534612582	7.93050503509193	8.57511211859977	8.29158910261211	8.69056160702049	7.98655408277492	9.19722254498761	8.52804916154815
+"MAP1LC3B"	5.30513963620353	4.4188823774731	4.64777612601032	5.15967281853975	4.88391553267477	5.52090887109619	5.00988898506252	4.80238066236948	5.20019502594042	4.46142084155228	4.7939943459758	4.61837550407681	5.08280337807133	5.44405469520117	5.26420577669805	5.10907572769062	4.46953621490391	5.2746044258921	4.71966193443613	5.07565151783125	4.7051257677
+"MAP1LC3C"	5.78996888926856	5.44832549364789	5.51355444854059	5.744798222207	5.47542763050103	5.70407340227194	5.80635286645457	5.50528692233858	5.97599345655266	5.9531571352688	5.50621377661073	5.84863422948403	5.70407340227194	5.70494745739797	5.57280905792927	5.67448715347266	5.86842471128199	5.579947825506	5.93828594995691	6.1803403768177	5.91136105941478
+"MAP1S"	8.56098648392699	8.62609291293589	9.0289780153133	8.658542535658	8.90109668584259	9.05590312881325	8.27866246785207	8.46888593550198	8.79866693729035	9.11800609979266	8.53659477972833	9.02736411041493	8.72869965039402	8.53733461117227	8.05660635013884	8.43849653883125	8.95983767198687	8.88414490394076	8.38140433588159	9.20121455830688	8.85829609785831
+"MAP2"	7.96609434682528	8.42377314918653	7.81459960476976	8.39866659220574	9.63579204449012	7.28193154751261	6.90727473310779	8.4128598127175	9.30575000460209	10.1752007194697	7.88981182491202	9.68315576306216	8.30090470296654	7.39573747727341	8.15114995828921	8.21808130715324	9.37505272060396	8.2867510198569	8.79180297941013	9.64676783241766	10.214467788448
+"MAP2K1"	10.0765479023113	10.5485483143592	10.8550768129703	10.2668867911791	11.0078590314004	10.1372748184365	9.55241554495843	10.7003039029469	10.8492198550523	11.2584574686019	10.1476493589394	11.2508936314664	10.2434122137632	9.7575215178397	10.6410511609199	10.5685048651442	10.9545642935071	10.8622617713175	10.4581949881978	11.0080328068879	11.2590562913779
+"MAP2K2"	7.96251829842973	7.65585792540726	7.46337974406946	7.83450488143942	8.08915236226822	7.86897558449535	8.04949280278391	7.71759391290546	7.89351677316131	8.29184060978255	7.96251829842973	8.29978209092964	7.90300756191708	7.61285761033113	7.8000785002016	8.02650893646495	8.04891874564341	7.97054033771909	8.02876757532841	8.6873710824994	8.38453177458588
+"MAP2K3"	7.43174694093983	7.13374192556716	7.33847014751117	7.58535186444867	7.2554148104834	8.05830592732369	7.55351851452415	7.60721382053542	7.29243802120071	7.49642174261892	7.29679617315935	7.28060660789967	7.9595164808407	7.56091649798827	7.66098308131981	7.0527509490439	7.35272724697644	7.18039704635641	7.28604235548685	7.37053316427458	7.60421028342621
+"MAP2K4"	7.74344177450572	8.27792059838736	8.10093927797782	8.29986968299585	9.25503436658359	8.02266595095597	7.05638144262496	8.41771565420013	8.53254523273933	9.73898734092196	8.0344217382151	9.47126122523733	8.09292739799032	7.38558737367763	8.46601396994997	9.04100043600155	8.86619845262455	8.82058142759888	8.73080822004216	9.63273080704433	9.88837698233677
+"MAP2K5"	7.68856176152173	7.56990205025351	7.93499752851933	7.41017895462367	8.15107397076114	7.51903929457203	7.51632454155189	7.68987435462424	7.78920134950257	8.04758954233754	7.61070481196777	8.10371953031574	7.47669941164519	7.36691535805736	7.64311372920526	8.00723692157947	7.90616360574617	8.12849067793612	7.47812956481473	8.4386270727727	8.12220985532415
+"MAP2K6"	6.77149894269972	6.65148123200678	6.49308589415069	6.54151967952428	6.87859145812206	6.52694550839953	6.77469934994977	7.58674584516069	6.46782011512124	6.9628168892518	6.73471572568785	7.13392816288067	6.26904604511656	6.89643288505128	6.47590308558087	7.11266191365971	6.71987649844889	6.73899188404906	6.91391368637853	6.88763515380088	6.87568884722427
+"MAP2K7"	6.82592615694751	6.97400446957017	6.91489417634574	7.27424800058955	6.54747131337446	7.31872193385517	7.952181616442	7.24148244924001	7.39573000689601	7.21413719698465	7.1658375297692	7.19957264916172	7.58797197950623	7.55582065913532	7.54711830596295	6.77433180663199	7.27747096802468	6.52788977301261	7.30817797525348	6.8774687496268	7.1658375297692
+"MAP3K1"	7.83803390177089	7.3907333692508	7.34453371315876	7.07619268826113	7.00944269742761	7.48923336909235	7.32926391322446	7.17905718071185	6.84720662187291	6.59589076279865	7.2689962439564	6.33202377720849	7.0704543301195	7.34892165469849	7.26125185418773	7.305543287131	6.63320183012897	7.33845408743583	7.06289665492559	7.18180593508241	6.82511230770062
+"MAP3K10"	8.08904811729201	8.20502456824451	8.34714434527857	8.71322445372051	8.34452291390846	8.77006749661189	8.67606354572325	8.37506520973113	8.32692539242287	8.38083459215994	8.09186703935238	8.4170836848354	8.8392697636087	8.65687595816674	8.35322105585699	7.67144570143189	8.39213921041342	7.84397886878474	8.56938624019139	8.3800522022941	8.45603883218727
+"MAP3K11"	8.82785692402337	8.3767544321839	8.13319010808694	8.08314434354743	7.94063564099625	8.66369142967927	8.24637380131947	8.24503701042791	7.64630272644234	7.65324154446067	8.9680225827055	7.93185459610735	8.09718519057398	8.57169218410744	7.93346082450376	9.39135630490659	8.01128101721011	8.7575851693855	8.00625519842236	7.93892561959064	8.07552677349912
+"MAP3K12"	7.99521469556781	8.1307262994146	8.41080509272981	7.9280924306967	8.19274743782484	7.64252570171878	7.54967140228371	7.63174832146371	7.73325124282609	8.28181620841552	7.93642033915012	8.15195360731286	7.75733589901671	7.71546596447933	7.52748187441172	8.01552923005564	7.95242684047642	8.07482263220305	7.65109559154241	8.25834310121542	8.33142715932133
+"MAP3K13"	8.76666500955861	8.35365811716661	8.60777707116239	8.27492227334776	8.67144663757956	7.17332184971239	8.28593870109495	8.74319854754369	8.05273575423213	8.42671219254077	8.28766841667217	8.35760216056952	7.80204484339553	7.79414613097138	8.24406312421181	8.55366966201687	8.09398031593656	8.28766841667217	8.24362976432037	8.20632512707969	8.12620768050871
+"MAP3K14"	6.5462422490033	6.45767980883255	6.48583228849031	6.44840990974702	6.21566951234402	6.74795538253272	6.56113291127105	7.08575791882662	6.68329987445408	6.08969641594304	6.63705848334814	6.27888339315849	6.26385046544829	6.68658620267005	6.27450475202159	6.45006937639731	6.50860694877794	6.32087964936698	6.43599597602643	6.54722632064302	6.49287970275886
+"MAP3K14-AS1"	4.80173285824067	4.92398716687699	4.66309177277098	5.00564977186809	4.49497619638741	4.99985199254348	5.02249025312069	4.98747177242785	4.95499663223002	5.00260743522331	4.64986445802341	5.03682350870088	4.89941386939316	5.07891158755411	4.62931975934753	4.85706363944768	4.95552740455879	4.53603356223862	4.8089923955835	4.80285590452924	5.00076510042865
+"MAP3K19"	4.69381553103575	3.57211680479814	3.81348601079684	3.53320053486861	3.27360699342338	3.69305848859646	3.75448991744463	3.34890706263223	3.53932555628666	3.39706804499339	4.06013568728639	3.53932555628666	3.49907232928224	3.38613004288932	3.63177953738927	3.52538512663231	3.39810421114475	3.33652112254979	3.35194269086202	3.29611494566236	3.54119055305828
+"MAP3K2"	7.72000459847067	7.85999214136163	8.1488890663636	7.87287589707788	7.71618849726204	7.44957862501155	7.61662622965272	7.94696289130157	7.93896745467472	7.50460218498021	8.14663094938144	7.39643465864361	8.01933675284236	7.65606508539179	8.19242558790088	8.009711521696	7.65075377158204	8.47253206323863	7.73661893970327	7.48922807496522	7.44728197580003
+"MAP3K2-DT"	5.77251153470677	6.76743694727951	4.66207010147738	5.8706771466945	6.77893471779153	6.15435149875245	4.41547808957054	6.35049444120738	5.68955002559284	4.6387328511734	7.18522641624778	6.00508237423796	5.52569246856297	5.80649549767716	6.14214476769302	7.01184836130152	6.24959642964886	6.85239754849851	6.33996187742872	5.87158562155245	6.26612591474955
+"MAP3K20"	9.03068971788393	8.1575184795753	7.82811924192772	7.80678836162029	7.72862320027145	7.70594400593948	8.43664146936391	9.01077122551759	7.85382520995459	7.83353120339158	8.57625269636636	8.2066245758745	8.23404164143369	8.57349002497908	8.26223430026136	7.70366703388098	7.82811924192772	7.71465784253669	8.40171831412871	7.9303391535303	7.38860966864172
+"MAP3K20-AS1"	3.5883838724362	3.59120859702016	3.43061145637378	3.53373030341807	3.72845956321461	3.65151953317051	3.56804172444799	3.51894558894042	3.53373030341807	3.49907232928224	3.45660876323313	3.61550016258137	3.59308487581441	3.56804172444799	3.44518457309492	3.53373030341807	3.56345366856634	3.37529893542131	3.42529210834423	3.29473389106639	3.29769055960338
+"MAP3K21"	6.13555414685752	6.57621136950342	7.04858743615693	6.44319773002747	6.85054502872551	6.46266153991448	5.74829160881376	6.39981584755513	6.54897636199746	6.40204623491732	5.97627358467702	6.40868190276626	6.59219236215611	6.20206452105645	6.82632357330451	6.29564687526656	6.44319773002747	6.44319773002747	6.56602583643509	6.52132366396226	6.54145072422503
+"MAP3K3"	7.80739431485602	7.53476733279246	7.6842464131299	7.5590641797012	7.20817082683319	7.92968157855337	7.72142367996658	7.50735091564488	7.53476733279246	7.23724100716568	7.35563764831924	7.13899517333427	7.57999054424517	7.76345556843138	7.57017610389144	7.45612753925535	7.41146193676031	7.69849911318372	7.53476733279246	7.37992795870399	7.14852586613273
+"MAP3K4"	8.73995206878795	8.80689450827805	9.33922697878998	8.72718088597615	8.74169347214595	9.15508585479017	8.39672068632859	8.90547090235867	8.92865681700556	8.40901272356536	8.48139922293425	8.53898910352937	8.62520932575207	8.54149799469515	8.94847872704966	8.44816067134647	8.73185954783365	8.83350565659882	8.72398291912587	8.72298209897758	8.41924106537336
+"MAP3K4-AS1"	5.36082033345385	6.65553891537774	6.92289517530352	5.93165556741647	6.85845900056162	5.5941733389914	4.86495235749226	6.086111679331	6.51163384148571	6.77431020185525	6.5723100007076	6.31792204329596	6.37002904299357	6.30134651030871	6.31080363115199	6.39548522142133	5.87900787546581	7.07706819457719	5.889722102079	6.84389185895501	6.34588612006718
+"MAP3K5"	9.59664488192734	9.18613288988034	9.20518401660119	9.49095350927201	9.17740195092498	8.33288396496922	9.45458288181986	9.59315368641722	9.606928942612	8.81026117644537	9.24221491959389	8.9621994627519	9.52929673499987	9.07500515056772	9.68022120050654	8.79726047116021	9.13089269190125	9.07550383544902	9.28296237867638	8.93430707101707	8.87732198930077
+"MAP3K5-AS1"	5.02876193365933	5.04819706954386	5.05497694948843	5.20588909551691	5.23502634894562	5.30963172308124	5.36809123765363	5.10050304169266	4.98484321952425	5.05097457302167	4.71594899971238	5.06145242106379	4.96129407075733	5.36387509601255	5.15162018565374	5.10050304169266	5.08265855583023	4.7247888700014	5.29260310262426	5.10050304169266	5.14660164650286
+"MAP3K5-AS2"	4.21021990806108	3.79627966747467	3.37639634502466	3.32996608638165	3.29369110802915	3.40994947364597	3.41949112588978	3.37997324742101	3.19025325749226	3.6768661139101	3.53980821604194	3.19746627870919	3.59024119958135	3.48401303533419	3.5940220400786	3.66182964254968	3.48173840870714	3.4738248233923	3.39466415280945	3.63265062315233	4.36477089543154
+"MAP3K6"	7.70213807543089	6.50566113708904	6.73109334979553	6.80239952407988	6.81683445484181	7.28391254597779	7.30537023289071	7.70304013586085	6.87270965988188	6.99242985935192	6.54809057595236	7.22277841411562	7.02771038350416	7.33879911566676	6.75642258967948	5.89203724784631	6.96762508837721	6.53657352204812	6.58740698078792	7.38162790600565	7.00255399964797
+"MAP3K7"	8.0055759658982	8.05118469902533	8.56926218465767	8.08810192302381	8.22727258686291	7.99111520820787	7.42638200968928	7.97267308442307	8.15797927843301	7.96616599686894	8.34947621299856	8.01114871830793	7.63788078070278	7.39677606077754	8.44092634859938	8.69982189327742	8.28190562687784	8.93348330122559	8.27661534220411	7.98483147915052	8.06568227344421
+"MAP3K8"	5.56452765369458	3.87578791413938	3.59603609587982	4.08250021631163	4.132137120432	4.85267942724705	3.84156748915456	5.04384294345482	3.94743831266118	4.01840669953017	3.85465327452181	4.53078757914736	4.32612221313377	4.06816945269293	4.15199454746606	3.36029414756531	4.86695101298779	4.11978737751602	4.17734914454574	4.01168893110898	3.86146653379115
+"MAP3K9"	5.80337704455406	6.555684447586	6.49353535376039	6.78571275404531	7.30587926789335	6.3643480768716	6.2549145165645	6.46772290551177	6.93001965964124	7.508456390271	6.35613542913225	7.52557841809478	6.79140132475691	6.38846723460424	6.69262692357035	6.88291451425806	7.57223232440826	6.49454875059424	6.74143742299571	7.81215882298512	8.05175305860615
+"MAP3K9-DT"	3.59035006425724	3.59990001432931	3.41989829356722	3.95736682108613	3.63163526497873	3.99827166081378	3.92362067391692	3.7015729560862	4.0568144935825	3.5436267912128	3.71724314579447	3.71871605392631	4.10598398600153	4.15182367397811	3.71724314579447	3.67291134318209	3.71724314579447	3.59938627867149	3.7224444588915	3.6836244966801	3.81304310971496
+"MAP4"	8.32920454185194	9.43854323177606	10.3331918885045	9.58698438251017	10.4593929122682	9.13542822634482	8.04327023720449	9.33279058696433	10.274801242059	10.5824209015756	8.97720390610877	10.4810733578251	9.60903805668532	8.60823342314234	10.1196132836787	9.55046897764959	10.3490532510929	9.81288016330643	10.042973185671	10.4283127349826	10.6498558098171
+"MAP4K1"	5.80337704455406	5.78267049500125	5.91399463853319	5.81170565448651	5.9117038495624	5.91956713365459	6.24973502956007	5.59123821788164	5.85990346703292	5.84331627224869	5.74362163136548	5.75621640216199	5.85510388989634	6.36547928114237	5.99129289154841	5.79974734040328	5.73057269847273	5.72534024370611	5.95738145827202	5.82630495449746	5.93111320025441
+"MAP4K2"	6.74960428768805	6.69299651908657	6.91983642262821	6.64905481896939	6.40458426276246	7.22487537896314	6.7762449458187	6.38313292581337	6.61478096653474	6.86929516667726	6.85227270520691	6.72846976391766	7.02558013156352	7.04853750313181	6.79518471525367	6.17388351644803	6.61716562420877	7.09357649614086	6.73704637502727	6.74768371129868	6.59159080805727
+"MAP4K3"	6.81750815533027	7.3788447682198	7.33312463647631	7.09858388500981	7.1924825140579	6.71114927627996	6.24320236011994	7.21376386104526	7.46493599564205	7.1713081571673	7.21733722784153	7.11478244191686	7.29937221332327	6.46744984254089	7.4765777677962	6.8987806271206	7.41376713702362	7.57977573324543	7.15704777499168	6.81382930243464	7.36167453833414
+"MAP4K3-DT"	6.28180698265203	6.56007574624668	7.5051275972009	6.59216276521891	7.33403987662928	6.9898785663183	6.14965006645235	6.99618898578489	7.08859252709264	7.46079294858977	6.49637316726948	7.41509672088572	6.77568346246083	6.77811998346746	6.64699363543199	6.39344540051369	6.53527715540451	6.78436011645794	6.79567133814638	7.25609788588084	6.95092980066918
+"MAP4K4"	9.11685490347523	8.80714142918864	8.33478023434928	8.84857915917996	8.45073121526368	9.56084924044883	9.01317692956505	8.6251597628811	8.01672094567668	7.48468274674927	9.67320424474957	7.84550346617575	9.14445456295195	8.9241237081093	8.8069840337898	9.48654275249277	8.24244677622991	9.70513653108272	8.78801246935448	7.29547473253513	8.67862975333735
+"MAP4K5"	8.75462546040314	8.75136795763913	7.74284698827951	8.34894755346057	8.18475802215375	8.02120000674566	7.7857648939336	8.21213093881892	8.00970006780902	7.92771902212275	9.39272892424535	8.14507827886407	8.34196672398851	8.0035611654838	8.14029735405175	9.46674445450034	8.13770729914227	9.66005088919792	8.3073534991806	7.58913103049928	8.10363282211863
+"MAP6"	9.36788073562439	9.60660553783817	9.89054917272977	9.57021149972191	9.88761600492217	9.30343447692795	9.38299953834011	9.33707399215339	9.89370457334003	9.89336028147471	9.14528058724913	9.58865151454511	9.50498800742843	9.40536760018487	9.56710654110982	9.01017886295251	9.67405476781005	9.40256921146977	9.26594728992789	9.96532645761021	9.81336859127807
+"MAP7"	8.67270877132795	8.93334674417974	7.99573443421439	8.42027639855287	8.5434661482465	8.19648685624697	8.05969942675727	8.35245168240625	7.73060117209981	8.39032156710411	9.55811629133605	8.49323450135879	7.90492227749861	8.08534915774417	7.86834589644993	9.82871151659757	8.40090554287235	9.92773648289863	8.81030177828011	7.83275526502358	8.49922539216974
+"MAP7D1"	9.75823964382408	9.81687637654012	9.82526227753107	9.71333170393941	9.81445608174106	9.93297161956352	9.55004737932967	9.51399538363258	9.59015290585461	9.85205206201975	10.0019528937164	9.91446546553659	9.39472286580913	9.41227418406656	9.26264388513999	10.5503794006997	9.8251475678738	10.5475563159669	9.71922823271626	10.01777521933	9.89180724412422
+"MAP7D2"	7.94783921284959	9.28441271688849	9.70753403013333	8.99540358475651	9.86718106869605	8.97886701320193	8.10547759815774	8.67954597302462	9.43020015155331	9.57669702624924	8.51953936826435	9.47166357097413	9.65822367881853	8.73046839685826	9.77699781614203	8.59613078772524	9.58508384136026	9.14272291650651	8.84908907639415	9.6277543658173	9.75066361200174
+"MAP7D3"	6.36970642633365	6.47104056428241	6.4200172587824	6.77238368146581	6.55456985126898	6.81728532111926	6.82750557669338	6.32640209887912	6.73833579171416	6.46773268112248	6.39107295253934	6.48799113029172	6.56880746234242	6.69287876854068	6.74906606815509	6.44993888720526	6.38412422133299	6.20268800764936	6.63996648137534	6.62404772023476	6.32640209887912
+"MAP9"	7.23427911259165	7.69087215453969	7.74533117044158	8.22724425090206	8.3455451888729	7.83215548630237	6.35519264544608	7.71679271493642	8.43411566820445	8.75543631461075	7.91734813344809	8.27443715591854	8.37412979741214	7.67279441502193	8.74357791841082	7.40964528794579	8.17771793451608	7.65880933905821	8.24346381872637	8.29498304379976	8.56290424990495
+"MAPK1"	8.65516923866249	8.66769486497579	7.45020775384149	8.24808276066479	8.74726877572123	7.2867571311236	8.24069291573887	8.69642821782217	8.44459214500661	9.16524413759023	8.50617262496118	8.8938686355362	7.98229601625459	7.78711193208278	7.8076984613848	8.53630773927907	8.70576598203996	8.41061662031389	8.65423967618688	8.98032522945614	9.14211397897393
+"MAPK10"	8.85294714648384	9.73132941229044	10.2680992478915	9.58861361660096	10.3206417003369	8.94084136593127	8.63148661167684	9.69206866984716	9.98766209282717	10.0950745279565	9.09004069844225	10.2852995827196	9.67069565246089	9.21044904992523	9.90145338464263	9.29554363685949	10.2168521915579	9.71756748782819	10.0706229064411	10.477458910463	10.363350259022
+"MAPK10-AS1"	4.21310652435927	4.34770085797067	4.22559420499665	4.3691161472409	4.44007818263011	4.28265207808882	4.11252333466325	4.10851035561164	4.40569617959844	4.17692116666522	4.02953866280811	4.3222423551651	4.30291884282523	4.42822867582655	4.56145862635693	4.33511087202739	4.28112500870895	4.18696380572281	4.26731843460554	4.12727825100448	4.21749257809528
+"MAPK11"	9.10667241280875	9.03519553879525	9.76794765792107	9.11781091600124	9.21556566190447	9.56506838057454	9.32395956997461	9.33442618758368	9.30001246371053	9.02251688969362	8.56167875359918	9.08590995042379	9.25536621003348	9.5272005333916	9.22501156795109	8.59707139155175	8.94301174156586	8.54815428014897	8.91196262254518	9.0527092087946	8.87668188154335
+"MAPK12"	6.88259869355159	6.83567354560306	7.35388799958148	6.60140112043666	6.73833579171416	7.30117714474057	7.06537836920927	7.00418599211268	6.66707231431045	6.91994706042744	6.63779141659714	6.68189270314663	6.73154072453343	7.17854792958793	6.5208918604478	6.25358118160429	6.52070594960915	6.65755860492096	6.72967441756154	6.79339367536955	6.56314662093634
+"MAPK13"	5.93506142027592	6.38061157674543	6.38750883584766	6.54644324204973	6.58755179097883	6.30604642826232	6.13974968234076	5.96191871984453	6.47168873071294	6.79583844699417	5.54568511866204	6.471966994635	6.5317548386805	6.24467724839965	6.38750883584766	5.93810515191091	6.52237558932101	5.98097090077116	6.25993608053231	7.24713337293984	7.03039376007502
+"MAPK14"	7.39740053962496	6.71570071331888	6.1245612609487	6.44067483123101	7.03751314986731	5.90234618231991	6.64673820596326	7.00932596534912	6.71824969846691	7.16903184016095	6.76758753065032	7.33031864808245	6.18961295657102	6.30765776620538	6.54494212315082	6.90858833780778	6.90312421682422	6.98479330028435	6.80887620579889	7.35134603903552	7.37363603596689
+"MAPK15"	4.64924787201299	4.80817847409101	4.94428207769116	5.12572985385448	5.10562683066955	5.24979648118056	5.32817282975275	4.88175692707423	4.94316398996467	4.82266272675343	4.75616625016561	4.9876323268596	5.15658377041744	5.1824122126939	5.03978526035777	4.78350266155336	5.08201378594159	4.68138363536499	5.00122907647545	4.97548176515552	4.91149550125549
+"MAPK1IP1L"	10.249495004771	9.93508746749109	10.4037085192306	9.94829329025588	10.2209364576932	9.69712328474006	9.63176067677014	10.5242506541238	9.72384620844394	10.2897942676579	10.0948973164268	10.2020130116047	9.41954707140309	9.6867857178963	9.60372598662379	9.94511527114356	9.57116627389911	10.2867010265615	9.71061399895528	9.95474355007551	9.76071684867436
+"MAPK3"	9.81208206700508	9.77181250462179	9.99366910077806	9.62279048344186	9.69410704236832	9.85530295509365	10.0197147905597	9.97119263073623	10.0027985555153	10.0862765533198	9.82387410139786	10.1439983098553	9.70441942110486	9.82001018545398	9.87462793635516	9.75702047351797	9.95280355991283	9.75477093939278	9.80586233388126	9.97737902025919	10.1115763987427
+"MAPK4"	7.79585171411647	7.08676085088106	6.59753603381364	7.76190844108125	7.08243734109765	6.80059820778237	8.15138322199394	8.15138322199394	7.43752058243091	7.64391342780994	7.41051195621493	7.81228683119753	7.18643535298816	7.01119051899227	7.26901552288562	6.69468736046768	7.27931216532146	6.77276543659793	7.87388250635173	7.70408117945058	7.17500224384934
+"MAPK6"	9.7584474955328	10.40290971041	10.4876069546118	10.1139929891953	10.4721210901262	9.85103200010278	9.56124766163509	10.3269178172254	10.5705578329924	10.3269713026156	10.2124748715278	10.4646875236478	10.149328936179	9.74490639765466	10.4352097195671	10.3801943763405	10.3779833414868	10.6268879292956	10.3840936801156	10.2952552430042	10.3142934432071
+"MAPK7"	7.86244668897151	7.16677816516762	7.39033302399721	7.18828671043624	7.13728440865921	7.26499156424868	7.46329864505933	7.27000438354944	7.08867061624406	7.32700173630488	7.21381131712297	6.97302938347632	7.11768797028863	7.56332412911486	6.90115521174637	7.26139697942094	7.06896410140072	7.3744051978422	7.14415664263942	7.42677178815532	7.20575215289529
+"MAPK8"	7.08784216100198	7.6572345422292	7.55795272171616	7.20869721355964	7.62903036732075	6.31721225181559	6.44983107238573	6.97747885994637	7.34113919242596	7.40296268250291	7.43223261977449	7.20761317125635	7.02771038350416	5.9566977713814	7.18810933752685	7.60118194664716	7.37540809251282	7.82368934213997	7.43717531172586	7.50834836519511	7.73829446553951
+"MAPK8IP1"	8.10584315135769	7.83213167452481	7.16633019269857	7.55934458243727	8.03558141066979	7.63479656248879	7.4470117034218	7.99455565388253	7.67662596027903	8.40112534495232	8.31536514082299	8.19769909280285	6.82734649006446	7.22612701792402	7.25428837267517	8.87452211560102	7.92228443868224	8.27620855389551	7.83617219313475	7.98005726280045	8.28749320944676
+"MAPK8IP2"	7.68680055247218	7.97067484616975	8.25779834482815	8.29652230547286	8.71482999542278	8.25428277266384	7.79638731465273	8.03644234090289	8.35589800973592	8.99458741369107	7.7779242228868	9.02975659235325	8.25041970370131	7.89428186709343	7.94255037524825	7.95656296139167	8.63652719336915	7.97240432054458	8.35464367089967	9.05268675743608	9.10927462077998
+"MAPK8IP3"	7.60700420304598	7.77921232417066	7.85891020248924	7.77738913365312	7.898417721282	7.17514505274437	7.73438370253445	7.71990866176892	7.87074611148471	8.48495812397237	8.22789098480375	8.60208496465373	7.71066164972286	7.42734976583381	7.18060357484018	8.43191065344523	8.34199082937226	8.06259445297074	7.79702497367848	8.4052785284815	8.64408731224807
+"MAPK8IP3-AS1"	5.43498008581744	5.94173672601582	6.08725727200313	5.76542395494589	5.64644444909643	5.77890087837032	6.32351406041882	5.91741266188462	5.97869432322653	5.28232678784199	5.3444399476706	5.59065112532756	5.6576798909632	6.03300059662629	5.94484052435141	5.59698501890397	5.40966090525435	5.13104017913013	5.53294215327753	5.64644444909643	5.29677735797781
+"MAPK9"	7.66435763848666	8.09595594434711	8.09595594434711	7.98275689260681	8.74984633364074	7.62115957227759	7.48739139426973	7.91042192454213	8.06578037850689	8.9197475791755	7.61622920262689	8.77872305134797	8.0265139178069	7.55562609091933	7.8756236652626	8.35925724048714	8.45527034712058	8.42396759880563	7.96272231892142	8.87062237537083	9.03051482500971
+"MAPKAP1"	7.73269698300929	6.84734519942478	6.3927340095463	6.88249269721552	7.08698641584251	6.33182760716302	7.58663034829625	7.19894639067077	7.16679564359121	7.35592929390203	6.95703483007389	7.00060552815114	6.7600939223582	6.7850327499745	6.68991709560082	6.54786885120649	6.99108869219835	6.67590644691823	7.20271932557034	7.2695986340987	6.99971160561173
+"MAPKAPK2"	5.82667592683403	5.32204259611348	4.66691046989689	5.53200426912681	5.22740404276287	5.5941733389914	5.8566186957981	6.03368731348658	5.22337649907697	5.6547763619735	6.1286465217318	5.56186981252896	5.67482932018144	5.63533367590649	5.29573760493622	5.28683580683292	5.44656179804802	5.73916672221377	5.79122746217329	5.35711081175247	5.5189226757313
+"MAPKAPK3"	8.46471657937095	8.20208787898129	7.9610793143267	8.07086964209123	7.95759392700662	7.99863968146455	8.68568798114552	8.13692474947709	8.05078952886818	7.87479892314311	8.21435029930937	7.53402618330654	7.83518350620008	8.46022787916297	7.91339183283525	7.73140981890262	7.83004757299254	8.09287357817831	8.00539155117176	7.90888560841995	7.93054726823152
+"MAPKAPK5"	7.38139206064618	7.22538101669297	7.31936062932404	6.98369149755638	7.43305412268287	7.03409810664312	6.97352842920314	7.4133754080227	6.98040619504366	7.4375191314088	7.58772210350165	7.18566326162437	6.80237758122882	7.02019077250619	7.02058920512797	7.76190844108125	6.94964436876826	7.62508575431316	7.11532460916968	7.46142942599428	7.1017655819042
+"MAPKAPK5-AS1"	8.0157809917199	8.17257715076052	8.3539572560486	8.14116524571448	8.32677928708018	7.87264876222228	7.91554235673486	8.25362512473816	8.1334908072198	8.67631450365112	8.33814243902984	8.4809591175334	8.16472761077493	8.00130631154587	8.209251068823	8.53973644652616	8.17286589917722	8.71723454531518	8.37175874341457	8.54563167680799	8.43611723590174
+"MAPKBP1"	8.97893429001016	8.8453687572458	8.90829123422365	9.08656129069639	8.63585814062542	9.44392916896304	8.8975078659227	9.02489275533296	9.13387045949704	8.67385278627409	8.66487479775101	8.44932252689413	9.4004171564574	9.67310952066817	9.09146636490182	8.40901272356536	8.81880389424216	8.55357265206863	8.85377393395219	8.3755480598	8.59230191064715
+"MAPRE1"	8.69737136632227	8.09860064255743	7.04806286431759	7.87916186007607	7.77129158237125	7.58213951915624	8.49513293567881	8.61398306981111	8.06343348023831	8.13742180670546	8.42864742110021	7.8962704731497	8.00950698113316	7.93718170234092	7.74439523994442	7.61156679262371	7.69960449119856	8.0641419776995	8.10681302815782	7.74689522972154	7.62420979107811
+"MAPRE2"	9.831254653362	10.1299912941095	9.39219519212273	9.71576864389825	10.0906508845858	9.68622585853035	9.34939707711389	10.3487348939887	9.52817378416351	10.1215110280284	10.2911902164324	10.3048743362704	9.3640349454141	9.36338930625581	9.62025748172661	10.8130598241351	10.0011375405078	10.552358541022	9.93901619759946	10.2287309538345	10.3608105290031
+"MAPRE3"	7.48479754952508	8.1188518707957	8.24609114058846	8.22748352375875	8.87765597946669	7.84068559199645	7.59784966685041	7.98774279501413	8.11699452990813	9.14969826819076	8.086804821096	9.1922073230271	7.95630391730453	7.51010609900737	7.64755565630038	8.23217432577782	8.6207372075068	8.12992676106077	8.25101598805084	9.32943634759807	9.19595091946918
+"MARCHF1"	6.56381663262709	6.72800370118402	6.6008635610501	5.88720525910203	6.67927545387666	6.43024769278754	5.04016061291079	6.79793447733223	5.79817693093834	5.9841263243859	6.68378500898256	6.76171096364356	5.21360149492831	6.18511136898204	5.73754335423683	6.92400302171134	6.10770753087399	7.62685983311501	6.30991585642436	6.02594328129556	6.51668936799836
+"MARCHF10"	5.78733270539533	5.59817613221597	5.8272960310158	5.96347864888066	5.60412304375742	6.01604238175341	6.11367082491704	5.6347743465058	5.64488005892933	5.90131218674667	5.7662511083396	5.68822424055317	6.00195311355372	6.14095387140319	5.70136408005722	5.64234854951754	5.73402805258064	5.72307949257288	5.84560604868379	5.75026138603775	5.83628662244659
+"MARCHF10-DT"	5.26489788534674	5.29244566164567	5.43604477956549	5.55390701533083	5.43604477956549	5.39220820618137	5.72901971414351	5.5256236461859	5.37205148587786	5.37702921770655	5.19729601751145	5.29933850568287	5.86916661723322	5.86243192942725	5.85007650516251	5.56458709019212	5.55026678177142	5.18246045037699	5.42524687603376	5.54064296564933	5.43604477956549
+"MARCHF11"	5.35967547620895	6.20358084294255	7.20613419793039	6.34334240616311	6.55673833194708	6.44620043156737	5.66924473452819	6.45296995901617	6.59213096989966	6.43717952232635	6.03244634091325	6.59170664424455	6.75655296060091	6.05559804456274	6.76853727661356	6.22153266472605	6.62896364522354	6.43510322107211	6.48975105738546	6.82654127207544	6.59660516962876
+"MARCHF11-DT"	3.93622379828507	4.08677267314293	4.4412236340171	4.2275912204689	3.9738560504504	4.26379389836447	4.61588124119304	4.28680326586847	4.33762454798588	4.28261692767271	4.05274932453179	4.19818030628423	4.24033533765474	4.52724757724952	4.37599545104369	3.94317923049825	4.20947703339652	3.94150562306838	4.61284354163675	4.12705112000121	4.21087621477434
+"MARCHF2"	9.06380463765695	8.58857897831507	8.58303344113648	8.75967080689588	8.84521256679154	8.9101942320202	9.0465848963564	9.01257253511438	8.74292093748073	9.13590815906879	8.83154461797414	8.40326318502973	9.17047693238876	8.48153457371852	8.96211560658639	9.04904063896624	8.47286070659658	8.66908496100885	8.71701671893727	9.47276399402826	9.19192269123428
+"MARCHF3"	7.68711572711674	6.39157900818101	6.57072705890807	6.60140547219813	6.24028232214349	6.59023401673297	6.90775484306801	7.5590018567526	6.51341188189775	5.94477735915686	7.25842910403306	6.44395588820883	6.60140547219813	6.61620117866378	6.53134840174359	6.75433748859828	6.07153311719741	7.21401217125537	6.69695458013929	6.40382767411492	6.61023645762817
+"MARCHF4"	7.12097710432695	7.99457390409074	8.55127421890126	7.74599548289784	8.25114726001318	7.79572095125715	7.65242468865142	7.46759952758601	7.85804122282983	7.93878945684155	7.45800777945973	7.91207991243037	7.71778392183497	7.85202815299259	7.58889148100227	7.38236766567807	7.68600530843455	7.33441213603312	7.5134151182634	8.63123756324485	7.86735639253594
+"MARCHF5"	7.50619761961409	7.52916115829513	7.17554377185407	7.00635225870829	7.73216164293248	6.78776256511113	6.89779352452721	7.39471720034233	7.2693752471912	7.27472002459014	7.03772757253898	7.22796955934293	6.68992923420321	6.79820047065089	7.14593381668863	7.26282348057845	6.89200262600433	7.86125147200606	6.71821090745855	6.82500839207655	7.12891172402323
+"MARCHF6"	9.70824239238007	9.71616970287839	8.98534371188624	9.31150849351553	10.135881539571	8.54618312158665	9.42569345742122	9.63198690916717	9.31722341829438	10.2450635131924	9.91253618037084	10.2308855555883	9.28791331176612	8.80682234858781	8.9939045749743	10.0282375342085	9.94019159641145	9.74480526512937	9.82592163984106	9.86939199358888	10.0931561047536
+"MARCHF6-DT"	6.09796341024745	6.12491731852109	6.36684748168555	6.29567396796315	6.14893618509495	6.14893618509495	6.32116053849402	5.97783567243426	6.14508393472599	6.2153690452405	5.9841263243859	6.25604970022075	6.06814931457656	6.20465820368171	6.24373848738847	5.96041531149474	5.99930956629041	6.20678086363874	6.18840355143109	5.93550029847849	6.30480284381357
+"MARCHF7"	7.98093479892869	7.8477748670773	7.13420333055133	7.53380115323351	7.95312984428827	7.13705824536786	6.88388170087791	7.83231053722261	7.53263381172891	7.81641802026009	7.87930932739094	7.8339870212571	7.09070684173976	7.13100556937539	7.18853864929455	8.03334622139123	7.79717530268491	8.14697934926061	7.89450852310577	7.68904232721024	7.82134044489878
+"MARCHF9"	6.22216526367725	5.92347006155579	6.0196016120118	5.8818602771755	6.00545983131095	6.05158331575335	5.72964509701235	5.56314383083187	5.91388388658824	6.04323929227108	5.61441408955495	5.66463671629226	6.01985787944902	6.04485845694119	6.16215683976914	5.91644914958421	6.08462548424215	5.78130087249806	5.94012709463831	6.25809138828179	5.94012709463831
+"MARCKS"	9.74197503076772	10.1863956616474	9.79481257185545	9.35560372621063	9.70638323622813	8.15957402966671	8.85696418221492	9.65459137432978	9.0055377902185	9.33242249142217	10.1715250131901	9.53070816391308	9.07096933870038	8.85125104291386	8.77786693149996	9.72064908962233	9.12180740102748	9.55411053703918	9.23100722903982	9.68863206776052	8.96168208641324
+"MARCKSL1"	11.4600464159908	12.0187596883038	11.4419959134975	11.5535294382089	11.2726611200731	11.3389235180905	11.6154231126216	11.4980159358775	10.8730667994967	10.9590984527526	12.1525491660051	11.1738201422186	11.1213398649021	11.3008766275058	10.9880992588927	12.544494920527	11.2121159320756	12.3888113674605	11.2869317514982	10.8711814180707	11.2025940444455
+"MARCO"	6.35000094063186	6.66237402427022	6.44185017157435	6.44933804744233	6.32262140301087	6.46964488619953	7.15771428043898	6.42891595717127	6.36586880815629	6.62669841051592	6.16195782408546	6.43541564082367	6.50313458095114	6.34125987170443	6.2359076506992	6.10363935939047	6.24262071888236	6.160986231204	6.67459077973968	6.64698874470467	6.27917437239812
+"MARK1"	7.15957873454802	7.9245660806828	8.31373473217487	7.86663124654029	8.65443188575629	7.49878457461504	6.89992027372827	7.76988598433066	8.10157015270866	8.31195514914593	7.56164920701091	8.29092628055985	7.78794248692631	6.94619932341548	7.90739319867463	7.6193041589083	8.23940040644792	7.73129099535007	7.97747498314792	8.48057317686741	8.28631098118317
+"MARK2"	7.83975397608801	7.91674423412588	8.24389709538841	7.83955284062298	8.33052259629078	8.6562835679094	7.79055709978135	7.65922294134339	7.85366793578779	7.91256327305705	7.80576730140992	7.93565427509424	7.81392804606644	7.79561298596114	7.74216715640146	7.65589715060747	7.91826844412762	8.307933372418	7.74021397482326	8.08853195315166	7.89109753879693
+"MARK3"	7.56349797390216	7.64504761405237	7.69295422200882	7.82407931645898	7.63271863003983	7.45367372870959	7.22508204424767	7.97168269577248	7.62476206400947	7.44558156860504	7.92468336751771	7.54151511258537	7.96609434682528	7.52489620230353	8.15937875468629	7.62476206400947	7.70187499973865	7.49158503440844	7.62476206400947	6.91747077732925	7.60607824076969
+"MARK4"	9.25107339751914	9.272314623809	9.56709523698205	9.25974443492359	9.69744895826449	9.71872393793211	9.29060448721742	9.48905438716973	9.26803993731711	9.31528219679999	9.10160139309206	9.31568809436013	9.49797333960266	9.7213005068191	9.03822219303392	8.58839694028389	9.37763120806292	9.04667522328466	9.06502719150319	9.4965704976496	9.37334925382471
+"MARS1"	7.1900821198138	7.3184203924678	7.54082414067194	7.46701681026677	7.41347820996767	7.54510364453713	6.87267882877299	7.22337126532421	7.31553218741211	6.9294776509614	7.22245151013071	7.0038208925016	8.36551600433261	7.5475019460943	7.83894229865174	6.95156670002427	7.43257119359616	7.72394964268363	7.51602945812261	7.05978399868429	7.24590029136923
+"MARS2"	5.93617669024356	6.07496914426165	5.51525068966336	6.16865025903308	6.51842173865867	6.10351832507095	6.49195141287381	5.83794431564837	6.10898133252429	6.28022849751453	6.3785884017942	5.98458920437073	6.14117216891384	5.81675719443646	6.13289384852538	6.66201835328205	6.11144982486182	6.71635169444	6.13555820142194	6.46276825221449	6.19953385736088
+"MARVELD1"	7.38745463511463	7.53804794344539	7.69659211266811	7.48079152586404	7.38745463511463	7.38745463511463	7.41059325793001	7.32496987845574	7.50041069335224	7.37155502134742	7.27554139022976	7.33785481404334	7.22843786924291	7.36163626363876	7.38745463511463	7.16147454605081	7.39435725308343	7.04195996995516	7.61477630062949	7.42946375391155	7.22040113172475
+"MARVELD3"	5.17805995190707	5.44539462843622	5.45388129272675	5.3576120101974	5.12746650795198	5.46640957992573	5.63931252968392	5.26660840815797	5.51234955894001	5.52879769688637	5.13633190455932	5.28012094409359	5.46651582407048	5.63872246688532	5.44970877265304	5.40525079930553	5.19268463332641	5.22204735251787	5.64269098669033	5.2837477559996	5.40009615625784
+"MAS1"	5.17902724613457	5.1594220692964	4.94108172038562	5.07306042282573	5.04546716290559	5.39256889886875	5.11700863376026	5.19541373550434	5.36843665032223	5.0181497932825	5.12746650795198	5.13447713388447	5.32107940853458	5.30414423973762	5.35912652852296	5.30572525997798	5.06959211468852	4.79614479937186	4.88820052774224	5.12985453316289	5.05132406051486
+"MASP1"	4.38868458282386	4.34853467132815	4.27803863876703	4.31509197461252	4.22580408513543	4.4758439453299	4.6656478005912	4.31551314549295	4.58080265187177	4.50067762359029	4.24432481812032	4.65353257114654	4.41843575491841	4.36960764126851	4.38149644266793	4.31307798360461	4.35838784157808	4.22236789711927	4.5582385239666	4.48212283412024	4.3535316470193
+"MASP2"	6.41718107696321	6.49799577669916	6.56517028350631	6.62694362558905	6.64616246412037	6.58086663487576	6.81656378872522	6.49826821642624	6.57530831470677	6.56517028350631	6.37725906383027	6.44580407084217	6.81892341553385	7.04107526583731	6.77507307806903	6.39988646022796	6.69808924676953	6.22054050509065	6.5304931127907	6.56777760043105	6.40646289541939
+"MAST1"	7.94127578416221	8.3907404469031	8.96836927454317	8.60971719406643	8.73015648316643	9.0391273926509	8.53234414024958	8.47246101912996	8.77385332660244	8.57920360700569	7.97513239735554	8.66750348212194	8.94671772370295	8.54838679531462	8.69093193485751	7.5125095102316	8.83412818796658	8.29594193377342	8.45849745557225	8.74516286660587	8.57114377636427
+"MAST2"	7.99613412953337	8.0781199070017	8.65428629546716	8.08651567869822	8.14713928712134	8.78637301663834	8.54250281847748	8.21215561415803	8.36378315852009	8.03497311809341	7.92229147156992	7.8161951339952	8.30361820136878	8.50021999918144	8.2397250665475	7.67893576950866	8.14759122699175	8.12268832125016	8.11593726138585	8.33987586579424	7.98638096090954
+"MAST3"	9.60738502251271	10.2779354596516	10.682480870434	9.87858670213871	10.3904337782574	9.9897072775894	9.69110054111269	9.94847524786233	10.1352922344973	10.0307194080592	9.77039869960795	10.0436834207079	9.88160621265328	9.65604460276576	9.83540380082839	9.90475687776614	10.2689239787974	10.3388807009065	9.80274260629983	10.4370136270424	10.1417796782388
+"MAST4"	6.26807843278508	6.25804438872722	6.53522765246164	5.98795816182801	5.98141852637574	6.86691294853639	5.85827515305719	6.42012345376931	5.91724645513747	6.03542705294835	5.72560938723637	6.52721368928623	5.93330182416168	6.05650713706401	6.18469136852397	5.10465231562477	6.60424680594401	5.75750294507041	6.10515073346845	6.01135947264462	5.88112027313167
+"MASTL"	4.37253480609131	4.37253480609131	4.93107298317098	4.21519849736989	4.78197520217897	4.44048203364366	3.96803182594722	4.22854108800451	3.899667191018	4.37253480609131	4.24938177285589	4.36521372256146	4.28654177704527	4.43447463735871	4.26079512498695	4.6847558861878	4.260498595687	4.94186812860112	4.30733909000647	4.37253480609131	4.34079363375153
+"MAT1A"	6.37814412159011	6.54996177711249	6.39544772045334	6.85331160211737	6.39039399889134	6.57860231033094	6.60553223191979	6.56777760043105	6.71540681846646	6.61566559328801	6.32670360285424	6.5724126542224	6.66174019515737	6.60105615774835	6.70662225116595	6.56059512810366	6.59715530055255	6.18147351023272	6.84146218437702	6.49278993142731	6.57024490333889
+"MAT2A"	9.08764078238587	8.95536713766221	7.55447653464264	8.51150846650029	8.34797822008109	8.5909614135986	8.42608685537299	8.13941551432658	8.17220324313436	8.87217573291309	9.26617827154508	8.81417077422763	8.22917369101676	7.88994072259652	7.86236232705125	9.45612247432631	8.9934423212736	9.57226325887058	8.787922523297	8.60414671623685	8.73975871127911
+"MAT2B"	10.050807335878	10.2865571865045	10.5334396005831	10.2757453897036	10.8140560026677	9.81190739645684	10.1063986520069	10.1360224280524	10.4608056150773	10.7033442373466	9.91910113499388	10.4212901770129	10.1047026712437	9.84916050766552	10.3123692146555	10.3393529152776	10.560401459668	10.3956612413864	10.4739067891094	10.6186267712513	10.4709524289457
+"MATCAP1"	7.05653635215495	7.64891074003997	8.02453222141447	7.29158793233466	7.50954379884639	7.17200416501279	7.23951447292766	7.25480891572418	7.29962211790151	7.37397906234212	7.49779925673594	7.42811435833141	7.39183632271576	7.47385200970612	7.0737794834116	7.13032709359118	7.37509258764062	7.42090439433528	7.23817073382769	7.47583625508944	7.42938608097201
+"MATCAP2"	5.06856341890281	5.43275474540128	5.64204949440319	5.69045781813681	5.41146756414262	4.97960782077294	4.79199471867977	5.710068621796	5.67593138489352	4.89478676133338	5.59452285268908	5.27312341717809	5.79125209909432	5.19731499325875	6.22528175453793	4.92521098279162	5.36884474303772	5.36106992911004	5.65811011563945	5.04011693505863	5.27902042556784
+"MATK"	7.5810635048506	8.07379178943939	8.46529982986166	8.04127191018954	8.07814179649451	8.17101475713928	8.29058040760621	8.17623907414522	8.56298631888857	8.4732705603264	7.86064296930497	8.44994305363898	8.36811163463589	8.00608198074632	8.359045902271	7.40642745652732	8.36919860600735	8.06257224873341	8.00191171117581	8.56517072107918	8.5511434929358
+"MATN1"	5.17349128920212	5.36452284147443	5.2003597054513	5.29348279291115	5.03287486933459	5.62514431021176	5.11536802504703	5.1554474582407	5.06853838810359	5.38394316703639	5.35358527577264	5.34430508625205	5.34812024876354	5.10057209230793	5.23483093153335	5.60695170349049	5.26766210204047	5.12558957790689	5.52313876748516	5.27941117347017	5.25972717291086
+"MATN1-AS1"	3.93873292931333	4.1439579249569	3.55488745703083	3.63380446419854	4.01620753001319	5.17471675582664	3.57126522594935	4.20246706923262	3.25983900160756	3.88509171534632	4.71635054776898	3.96288926756967	3.68636024610598	3.92249506049134	3.80850981198319	6.20866008511568	4.32234519754102	5.79053175498142	3.93873292931333	3.55228422027301	3.75071920993927
+"MATN2"	7.7235441119681	7.14414460035763	6.63981681369342	6.46822612346611	6.86116518621897	6.92940999406866	6.20006922064183	6.70899495983627	6.80642480691666	6.21745163528229	8.49615157731317	6.89228082896491	6.39838989410617	6.70079119871993	6.7927508520935	7.97149205532905	6.32800648564177	7.84657904040133	6.90861950350606	6.94748068121857	6.6188387135681
+"MATN3"	3.67463470489491	2.81641428639624	2.94671711936206	3.01546480508604	3.0716359353755	3.21062909213462	2.89179630079521	2.95092563438354	2.85249383982302	3.15656834482727	2.92121787392685	2.9328239341866	3.13645256648828	3.0151354821681	2.92975667149311	2.68547340553266	3.37282788447305	3.01435833178393	2.75157646344046	3.04369129547094	3.06484634593459
+"MATN4"	5.6901308217643	5.73971809950586	6.16126789430825	5.78019738852529	5.36997206505141	5.84981469706699	6.06139612996809	5.82497117116449	5.96867851171584	6.06817158494173	5.81088410348871	6.10826278667486	6.14780720213808	6.05446802615663	5.85503551018215	5.61781992874554	5.83204473233937	5.57560068368137	6.14866895537338	5.64162235592264	5.76500536145535
+"MAU2"	6.05215227705036	5.87392215693814	5.55314419042106	5.70233853816509	5.89614741205011	5.57036667141825	5.79940097274598	6.02972714974344	5.70483375153192	6.16795284283175	6.51321249993258	6.22371565374772	5.17728065955668	5.19254696874141	5.03489492964577	6.62386151852624	5.84095312866022	6.70684651897708	6.0268456023735	5.89971545900578	5.81634637248853
+"MAVS"	6.77142216497333	6.50594419144657	5.57478270760227	6.62020347535616	5.09198639016749	4.94189793032367	7.20593024682112	6.67297691098117	6.56531372460629	6.7634602983042	6.87806446195839	6.1663461303406	6.7013009506537	7.10012556440239	6.75692265722874	6.73411265342103	6.79936550437591	6.05052502574135	6.61550071492461	6.45791197689152	6.21606550338361
+"MAX"	8.60117446166467	8.08498704481365	7.15121287874919	8.14858019714216	7.83990408352354	7.78651136601331	8.5747107476173	8.17175714734565	7.90624001885727	8.088757564989	8.26463510365335	8.30009732734935	8.05763673968217	7.88471665358379	7.88352357007762	7.98369616283375	8.07555445892006	7.91360937463763	8.3637020301672	8.20984391825909	8.22219193087749
+"MAZ"	7.35859722724304	7.23951292297344	7.24155368204431	7.74331082791967	7.49323108756969	6.9792472588906	7.61163668211023	7.12345068882964	7.36702798354019	7.95627772429595	7.42333709269577	7.89376552780752	7.37177807308791	7.24183389267161	6.98929498185345	7.79045103367145	7.49014061595005	7.4264973676428	7.6006208131557	7.91223791194697	7.9245660806828
+"MB"	5.45803351627928	5.57132036335082	5.35682902846973	5.54180389325409	5.47542763050103	5.68994064376917	5.65700675571772	5.57695126706345	5.30161983422782	5.50076182085259	5.26869096331971	5.42368688596723	5.53254497671907	5.54989273765916	5.40162422948751	5.55525330534338	5.43151176733593	4.8453519052543	5.24415826939347	5.47542763050103	5.41973083762739
+"MB21D2"	6.74395972073918	7.40688763175269	7.62993756702443	7.32883665417741	7.54460808200628	7.15955350023917	6.93845147497725	7.10882863502013	7.57129157821668	7.58659683629652	6.97960611300357	7.55430716743417	6.98298182294921	6.9236195453752	7.45283755764602	7.55207563070288	7.63490464601017	7.48740054713879	7.45565588319649	7.85628984272504	7.56400811165422
+"MBD1"	5.38181706350015	5.50378339636602	5.95499085867201	5.2039875050638	5.95397483537705	5.97652212446285	5.13411594952388	5.12412882071819	5.54520527768946	5.89990789587478	5.7183454005163	5.3516872306398	5.85539798394513	5.41026819251866	5.38509414118376	6.0077724735066	5.62118128365313	6.32467147996909	5.30924928487503	5.60244300386434	5.55960222346839
+"MBD2"	8.43023321492338	7.59972079322053	7.39416116074798	7.90721357558249	7.77125654292041	7.98296565277672	7.62788378551419	8.0828686214232	7.78496262987625	7.79851850117537	7.92877402398025	7.41027086389927	7.88436892069548	7.9893107472672	8.0595233678283	7.45343643052453	7.54674245838461	7.86707325631607	7.5935069372341	7.65960787030308	7.67857429133304
+"MBD3"	9.81200614412716	9.38833639916411	9.57379519688183	9.74307705007894	9.35627729780024	10.2242263812992	10.0970673857289	9.69889828889935	9.82229878838845	9.48410639451128	9.23682752195362	9.23171373005319	9.87181086162113	10.0068059760118	9.75658287137301	9.06028301420351	9.44696076956252	9.14992932896912	9.67405008232568	9.59310841110185	9.41709360394783
+"MBD4"	7.16554196886939	7.03402697005672	6.70361851146678	6.71603571996875	7.09325376877376	6.36950700171171	6.32324107005785	6.80533810687486	6.78965341656709	7.21906547270105	7.23586680453175	6.88863349668905	6.44637550217492	6.62508307978031	6.50710009900667	7.37685158025361	6.72800370118402	7.54183878910692	7.05449419840024	7.09357249979004	7.36881300211672
+"MBD5"	5.42311795633954	5.89391674265742	6.23654135455924	5.42966404854298	6.38497361206948	5.24529492175951	5.04518827084733	5.39333566634647	5.38542511664791	5.98401989046965	5.11516848494486	5.65185188657599	5.18667533494425	5.28865423553999	5.3404966823798	5.9479285081321	5.4885688998616	5.98833170259178	5.25822131787546	6.23672132141816	6.02780801508688
+"MBD6"	7.25815115455696	6.56575569797706	6.89071162469359	6.1705170762598	6.03477666312414	6.56226369620716	6.11367082491704	6.2642938168815	6.1081151530606	5.92869814977086	7.08206940611194	5.68386064962048	6.21453308937691	6.45284171925469	6.23621665085801	7.00606269378187	5.82771207407708	6.86064946619089	5.81247772995597	6.19059565089493	6.26281756689346
+"MBIP"	6.3620448653349	6.47932759807891	6.46964488619953	6.39475466830793	6.54260598044533	6.25976186413179	6.01548315310393	6.38586673202084	6.3218915493243	6.27514545389191	6.55529467933343	6.34614492921313	6.64191288947727	6.27521981987766	6.43769451741225	6.39334433593714	6.3303136164176	6.7013647242576	6.31058723542605	6.18016358558391	6.26960373762616
+"MBL1P"	4.60849187274548	4.54510810375119	4.40516885689616	4.58449156187098	4.42390736959509	4.51617998953023	4.6656478005912	4.41465320264245	4.56930998345387	4.68971700897819	4.32012644751594	4.54137198263651	4.72083029964895	4.84011613533686	4.4709848388623	4.45793825072339	4.51909334417881	4.3761389138841	4.367997435501	4.54137198263651	4.51909334417881
+"MBL2"	3.1619449148413	3.09592038718451	2.98418971316405	2.93183324518585	3.07643194477747	3.2070999986988	3.06343141151253	3.10759462437397	3.09592038718451	3.17746201962808	3.02435081232721	3.07799017118101	3.2562408534665	3.06498886552201	2.98714643505095	3.03494250516311	3.11312267168612	3.09814782068511	3.14685919250272	3.1523845095458	3.2018181739155
+"MBLAC1"	6.87435499598349	7.00780113459936	7.17565001325876	6.74745112943434	7.02920276641965	6.91720178730145	6.67988462671763	6.82390002428263	6.61922332709256	7.15405356685016	6.89084757649573	7.09592008854572	6.94982140509457	6.69086940535565	6.77664242964314	7.25731734884768	6.80620647061034	7.20151407860607	6.82299015808671	7.29612559951366	7.18122975081431
+"MBLAC2"	7.18149053794711	7.81655211154052	8.30278535795832	7.82611773820594	7.97520180515389	7.63360725952282	7.11118838880765	7.13887453487101	7.76560658344082	7.5857238812094	7.95604145832925	7.39098506851765	7.60263175958143	7.35592929390203	7.41586728808099	7.66312752367316	7.40267080063943	8.24707399127779	7.6769187055546	7.70075640842601	7.47666782277435
+"MBNL1"	7.38266874421285	6.95799045420289	5.39261839516372	7.02853217641794	6.97128746518349	6.19008934785538	7.06959011285261	7.52578509385072	6.91388909536213	7.26788193549672	6.95703483007389	7.56475009796099	6.52596861959227	6.57663995720422	6.28833816868256	6.79189684771818	7.34045529988911	7.02431181914933	7.1550340231134	7.17600711101603	7.3829341742671
+"MBNL1-AS1"	3.87472856867357	3.88710990019167	4.06617508820993	3.79557092960822	4.1873831755828	3.43831057654364	3.87661100939894	3.52340831254753	4.01933625721562	3.8291907182065	3.88136457044963	3.81187441885414	3.75924473472407	3.92522064372917	3.79293572316476	3.75692139708109	3.82351055076668	4.25540642428849	3.66564391906705	4.00469379059507	4.01008602835427
+"MBNL2"	9.33503704326702	9.45546716929357	7.2952599544257	9.33461808367258	9.35750513153036	8.04665011613914	8.54102808815262	9.35013912454643	9.15543522980312	9.59745840237139	9.71332131393359	9.90229492096044	8.99777813082424	8.45758112177628	8.78025951477346	10.3029293407939	9.31682149645749	10.0340628384831	9.37000744386902	9.29261920354716	9.71723280361418
+"MBNL3"	4.74233759354204	4.62627969436305	4.92721581315243	4.47420001469539	4.36407466276587	4.30291884282523	4.32314921398647	4.58967497540684	3.58657035912302	4.02859277685848	4.74948412367766	4.01105825515579	4.26096246513311	4.62402768144464	4.02346485579313	5.45875371061686	4.01444453010139	5.05645808857757	4.5487522280162	4.55511478632444	4.13732238003081
+"MBOAT1"	4.77463669342269	4.58804774042002	4.15644657490366	4.28799754897637	4.37253480609131	4.67385636963385	4.2018759178626	4.31074868274654	4.19222465167621	4.26166749092066	4.91745375084457	4.30944571527933	4.18452722964347	4.27637951698993	4.15611994041875	6.52446989992978	4.19123619790158	5.3349916975755	4.28326142918417	4.60269732613901	4.46432499805964
+"MBOAT2"	8.64597412165244	8.82881335731067	8.45404163179359	8.62202607965044	8.58018787594626	8.33172046754054	8.62741539345138	8.61051893152657	8.20366925240836	8.32581479175104	9.19579919350284	8.44304339548962	7.98685208933153	8.12423883231091	8.19832957514407	9.35504988149484	8.39238125261084	9.14602191105144	8.52321252401352	8.61507384952778	8.22589895708787
+"MBP"	8.35041825631844	8.70171806156477	7.27326856941211	7.55533794350529	7.36550860602173	7.26670228279578	7.15737542710379	7.08857553742656	6.47631738510863	7.29298854230891	9.56053244914506	7.48181223437188	6.58880045009481	7.45518176696328	7.04924574519019	9.59187912046663	7.61530086835322	9.39022780593958	7.91187506320013	6.24595891431723	7.55244164568094
+"MBTD1"	6.74375999342131	6.91513972014999	6.84114382739614	6.61110339999952	6.46080610921482	6.42226262214539	6.22288011657119	6.46614602818889	6.65489407316474	6.64942964815253	7.43189701453125	6.44420950901865	6.48731022276486	6.43947280917498	6.69126730459629	7.03576962115323	6.70922391225427	7.16593081427987	6.84372017005898	6.49298059305511	6.6868836487717
+"MBTPS1"	8.84112407033915	8.75251505345916	9.00831235397488	8.8596436434193	8.72984280977023	8.79194083499891	8.27342447677705	8.63886403549484	9.07451110104495	8.91460795316344	8.63516449191704	8.81187814791751	8.64982737336659	8.55399253872539	8.81459407965992	8.52758806908566	8.82679566312501	8.84372763389359	8.87804018774586	8.98773317362373	8.78003611748507
+"MBTPS1-DT"	5.3040312104732	5.51335869890952	6.24278418589155	5.32870551655617	5.57719862247566	5.98710915570627	5.74665065141937	5.51252614287024	5.57338671447861	5.82143583198253	5.24068152274831	5.51847755094141	5.33223542548616	5.84936006278074	5.67515131776171	5.10901902562478	5.26766210204047	5.88555676228024	5.56876082013031	5.62655598282143	5.44129334549609
+"MBTPS2"	8.16589482238061	8.79275727164762	8.79352119021667	8.08089027479158	8.92790369672275	8.09460772793944	7.772150290862	8.42948215375118	7.90504848013558	8.77341888827622	8.63297725387681	8.27446573295217	7.77013233879935	7.90899949447347	8.10303511202106	9.05927433717861	8.44027282079232	9.1588609160996	7.84543600512644	8.92735252197662	8.59452622039409
+"MC1R"	5.37208037346875	5.13355543436097	5.01849622249689	5.2376166526692	4.49563880802027	4.75943679829375	5.90853447574668	5.10115717025781	5.49083916475385	4.8878575863316	5.05204655490962	4.79083846071503	5.4144303431907	5.56673984023361	5.59726933383261	5.17710473300283	5.02582906513582	4.87582652525677	5.02406563238291	4.75796294465825	4.97422871437493
+"MC2R"	3.73901857006826	4.01655851825609	3.85026597482633	4.07924859436157	4.09744153565911	4.06292275036473	4.10427824083671	4.1062958269523	3.97581647906542	4.07050142435837	3.80713794157501	3.90644336136937	4.43736613904686	4.14498370861215	3.88700470266802	4.22944995018098	4.28247510347008	3.72493333167709	4.13049581946605	4.05972718523769	4.05972718523769
+"MC3R"	4.22325250407967	4.09279931403439	4.19653542196574	4.28678345559485	4.04299258772388	4.30533910041533	4.30140875959425	4.12275302684238	4.1691336454554	4.28679632923299	4.19502707933504	4.22901794961722	4.37940040536598	4.43920728046266	4.15871293994809	4.34057268666813	4.22325250407967	4.12684522996373	4.58584325637598	4.18211067729866	4.45474187617809
+"MC4R"	5.38740303088652	5.83691281108293	6.41040012574295	6.26952922045643	6.91229671338409	6.27225131441596	5.89092732522018	5.92548046705186	6.03141094726165	6.75945382159128	5.53020153808393	6.33254895892718	6.01200246724126	5.76937235867385	6.27351068958063	6.42457251172541	6.61080552389334	6.38758450963946	6.27225131441596	6.95097949013561	6.77554288392062
+"MC5R"	4.98294174761044	5.72243695914308	5.09041155685945	5.44444836047731	5.35739407849665	5.30657947832013	5.37670834417437	5.25978311303934	5.42072505788054	5.46054956310522	5.42590202970216	5.52042023897522	5.32246007971539	5.2870826850711	5.18376079338884	5.38851664746525	5.43208959115182	4.93424586398154	5.35213920566461	5.15239917715336	5.71382808954184
+"MCAM"	8.1913807170635	8.25192712627845	7.83744125129893	7.12595065061774	7.81105498351311	7.90678516191993	6.7596144829672	7.57495511559805	6.88143310897943	7.42450188196839	8.62468032119303	7.55650706641435	7.78794248692631	7.24386728084598	6.83369211252654	8.88250346838568	7.17363061535247	9.33132131661058	6.82131724488871	7.41098389619609	7.8954249708334
+"MCAT"	7.2763659809308	7.33130242342174	7.85717219295472	7.38687659679682	7.64396982026455	7.33800683259569	6.88388170087791	6.92334689910743	7.43043869374176	7.70114623029396	7.34807514667644	7.54386857091895	7.28063415037123	7.13687425142561	7.35709304958836	7.3838267372035	7.39686098388691	7.56016660475435	7.03221225918014	8.20023871940507	7.75833948598042
+"MCC"	8.16818299528275	7.23203253315362	7.25624355818117	7.09025333618952	6.83493075222573	5.90876471285738	7.55034765945634	8.0123720315487	7.19755300962581	6.66844169989116	7.39540212573106	6.86967802292454	6.60099701802191	7.07791413175515	6.88388170087791	6.37323634563644	6.83260248166267	6.63148547890099	6.96211950043448	6.9354830262561	6.48537775998814
+"MCCC1"	8.97363785149401	8.92830574658399	8.88946469697762	8.77118366047724	8.87598070001386	8.76218391956145	8.86630048435455	8.86418940968143	8.78176441026312	8.89755793240769	8.96319945071492	8.9133955046339	8.61249838528036	8.64106962804175	8.64157177901692	8.89232211674493	8.77717658754628	9.27437001980637	8.76636826331278	8.80606358245082	8.70501128428398
+"MCCC2"	3.51224100108136	4.05686309452243	3.1944643330236	3.76649585251223	3.15661021599238	3.56188661495105	3.76649585251223	3.85222113906225	4.04220473291513	4.15084092723466	4.34161921098167	4.00338749868139	3.97668077331946	3.79583213683731	3.63871686151607	3.74888660875868	3.92126635798745	3.08716478837433	4.29519766291052	4.04321984166015	3.42008283980367
+"MCEE"	5.84379191004591	6.35562256870696	5.93446389268396	5.69502971529245	6.43915803331699	5.51477858728315	5.57790287560686	6.29430090802031	5.91771517072082	6.39356473959018	6.54114708195983	6.25796426616805	5.7303074578603	5.60293912924439	5.52015081995782	6.5446436464698	5.75349406375295	7.06154417398908	6.03876756033464	6.4904415577624	6.28609770744351
+"MCEMP1"	7.79446254123622	6.00846097430792	5.91598231802044	6.2882092122787	5.79622515445777	6.24624496249475	6.60341228505576	6.90857154065628	6.39487517988831	6.24624496249475	5.67593138489352	6.5010817744764	6.29034693026252	6.54146808189856	6.45023871324229	5.69050004291591	6.24624496249475	5.98025506991838	6.29756574661933	6.53882563489748	5.92977946351884
+"MCF2"	3.67085144556177	4.01427305640163	4.44462561320932	4.26238554133066	5.70589307598109	3.90515296857304	3.97521665806832	4.33184977520131	4.21971147402758	5.43877258102714	4.00294424462905	5.17900300373254	4.43444210711243	4.07741552792215	4.65666667607302	4.69145301413999	4.639949949133	4.86054215092793	4.1406501684265	5.40108900533316	5.53567017664402
+"MCF2L"	7.54615831361087	7.41910882970235	6.36710866002314	6.85331160211737	6.959796891202	6.86691294853639	7.55134332205244	7.04453212129112	7.32703609293331	7.46176244610698	6.64942964815253	7.50773600113086	7.46435304467096	7.5822647852615	7.155722223597	6.7294545237572	7.3651261113759	6.41835831675987	7.34162450291948	7.25519876631456	7.81716393088528
+"MCF2L-AS1"	4.99582778081552	5.23164517080869	5.48100319276975	5.35042302379948	5.37748508562014	5.79484193869519	5.43479881776044	5.42132505439327	4.74132705335156	5.41136251402836	5.1075047157215	5.40030591256444	5.67800051098395	5.33257581788936	5.41245248698477	5.2698491380217	5.17279995737707	5.3202758121327	5.3761990323277	5.36021471083131	5.43826633533019
+"MCF2L2"	2.97860930389576	3.43934875764886	2.93255315503842	3.66672396762707	3.09052709254644	2.89032245087826	3.06146280568035	3.46147671173914	3.50684463609501	3.49907232928224	3.11768617105162	3.25788379786739	5.09986584536758	3.60852950821517	3.63524880733694	2.88345996132337	3.34021564987782	3.1653506577908	3.3024339101175	2.67669683604206	3.64607991480495
+"MCFD2"	7.48657626695422	7.35848053036246	7.08149528250004	6.80269100666806	7.28589908118514	6.50551088658404	7.46843143587616	7.570277061728	7.37170650281973	7.70444003845329	7.25204742771898	7.51048291672943	6.92877623969514	7.02420693810201	6.90237709266814	6.75605462282732	7.1231319041264	7.12311522300962	7.45322298224708	7.22080834815073	7.08678882627157
+"MCFD2P1"	3.25309811826045	3.49907232928224	3.08026577796219	3.35847609042166	3.25309811826045	3.22672116578308	3.25309811826045	3.29035053356692	3.37143886629666	3.28797414759159	3.06955864554661	3.28002392613657	3.24544503327312	3.24713828472803	3.09203852290422	3.20729340751623	3.25309811826045	3.21552468881473	3.25309811826045	3.21032959083937	3.49441910095528
+"MCHR1"	6.52222042670616	7.39767603627943	8.19246468680481	7.66447117385772	8.04681356027235	7.45227684495192	7.03571221378972	6.70703965281967	7.98849745864463	7.97480700126857	7.25992933112592	7.38463929268848	8.02212796840525	7.43547320346416	8.41504876087938	7.18211359025405	7.53017133967153	7.09721168552787	6.64359121456236	8.50788843417321	8.36113851196214
+"MCHR2"	6.14389479397083	6.77961877972912	6.46196948301007	6.54954290286304	7.36470934363955	6.29534023204888	6.20778786231027	6.39410624264272	6.54392726479525	7.04002883573427	6.42342856120389	7.02099787384775	6.08759143944882	6.45012899116668	6.37429421250998	6.9132475821373	6.78498342013059	6.75666283001332	6.43020962537452	7.03043363595158	6.88747430100326
+"MCHR2-AS1"	4.62502436937573	4.65486935595013	4.64881158825584	4.65558074627809	4.78630741850457	4.7525506766359	4.96700630796393	4.52624046119225	4.98988888649799	4.71222027851169	4.6930274504779	4.54741992427092	4.97439714009685	5.0729766702547	4.90016312104571	4.63172128112008	4.77123584037063	4.55985708524616	4.8525874490848	4.76248287181351	4.87598852855677
+"MCM10"	4.14432966014923	4.382510771288	4.36141918232693	4.4473573365395	4.34903060548133	4.41863261078294	4.4934440637818	4.29880082161106	4.34826404517185	4.43031406870842	4.34039408318172	4.41664533433131	4.62291536662457	4.3528553215642	4.66309177277099	4.41346542206068	4.56720920387701	4.12122021584882	4.57354393066724	4.2947976575029	4.44782501035667
+"MCM2"	6.59298310709603	6.89462810860965	7.05909779462293	6.59296905170946	7.12976077551546	6.5728380978364	5.90853447574668	6.53986064551383	6.46120383600527	6.8485504803115	7.54764170620631	7.0093654496977	6.00670622707959	6.49459854024069	6.29727553125884	7.66645282144735	6.8437102383869	7.08113407457556	6.60139555664504	6.84183389863715	6.72797565743304
+"MCM3"	7.98400234160599	7.32069459781919	7.23527502758923	7.14621108513899	7.6732142996321	7.64156816211744	7.21774300353648	7.24390027628446	7.17049224851412	7.49288601067247	7.43256787340453	7.31171864151375	6.93617304047909	7.32069459781919	6.94264946195074	7.30453016611477	7.20079427300775	7.72411286353203	7.0282755176266	7.60863927859898	7.27421929938236
+"MCM3AP"	6.3590590119889	5.95085889921221	4.64028387857751	5.31207789162739	5.80954070788853	5.44023070521258	5.60822392825435	5.98737603366594	5.41801958913543	5.96228882064831	6.10822935815722	6.02170113536379	5.29093550253081	5.55196847888049	5.11715300569523	6.24925420494082	5.81603138448616	5.78071661883769	5.50078691532885	6.05144937281533	6.44698808816002
+"MCM3AP-AS1"	6.24791621735701	5.91465416563903	5.95203473582193	6.84684719233879	6.07650775961619	7.12439453536691	6.05002350842387	6.03419139609067	5.41101134574036	5.80073346090789	6.11009812236779	5.69517017223599	6.36802168873762	6.60819305011204	6.72472581473334	6.04864997895976	5.49186014986416	6.5155583305847	6.40203825575627	5.60975059300476	5.69055001113998
+"MCM4"	5.45115505939396	5.77872950452485	5.47282225745743	5.62052383583875	5.8692499132607	5.40906365842628	5.9131954463591	6.03451621166064	6.04566898624723	6.30961199479346	5.85968190679734	6.31774265897743	5.38622091852125	6.01362254022313	4.8550086734844	5.95152233757172	5.73138245702447	5.16775972409388	5.42524687603376	6.36106980156857	6.23081014846118
+"MCM5"	7.99519602761616	6.38750883584766	6.14587579996797	6.11811256974361	6.11642471413478	6.62700182653197	6.20250019991324	6.61157043937762	5.48482500361093	6.24761858613187	7.16069440194677	6.03941758520597	5.58027213950487	6.40220405043551	5.45530215981194	7.32110070319678	5.87553680309849	7.26540037915769	5.99231860871029	6.43667535025276	5.90222692452211
+"MCM6"	8.51553657546487	8.39131163290482	8.38431192388256	7.97676961333491	8.53577971669213	8.30006285407872	7.835687591846	8.69578517760674	8.12843133038238	8.41316731129232	8.32946564655596	8.545044278364	7.73898783409996	7.87416008828859	7.49209437504402	8.05096352784274	8.39279164215142	8.43485226767105	8.13707338701085	8.46259095630975	7.92064939765171
+"MCM7"	7.84953031287765	7.61779890325968	7.30523544771616	7.33661818847961	7.30298278643363	9.01624107595805	7.62149916164528	7.40909454813832	7.03870457467131	6.70743111472555	7.95518694075981	6.70213849972248	7.58527721748657	8.03665321742881	7.60443348077435	7.91511874789217	6.84473273596595	8.39446678756392	7.32130873760467	6.94886703741719	7.19352049543422
+"MCM8"	5.79418205094322	5.63282737911643	5.16086173650231	6.00217567797805	5.54063538897985	5.834150985385	5.65800519713002	5.75839125069717	5.76520513616908	5.4467679162656	6.10866521539052	5.53880660763268	5.58067111698102	5.51532889987538	5.63884520913873	5.61878882445035	5.85447963258236	5.78840795894047	5.46929722362787	5.40747340529733	5.62735506388359
+"MCM8-AS1"	3.52522547594871	3.58676393355189	3.66923516698017	3.56707675807332	3.40028278132367	3.68569499492033	3.48994554440745	3.63225798055561	3.88437362432349	3.70579414265283	3.39604074413217	3.39738565170251	3.66683980523422	3.41912011038958	3.36606321016325	3.4180603338824	3.5937620800747	3.47761205366104	3.47939610197634	3.56486224388584	3.60915542715527
+"MCM9"	6.30342946186434	5.99443808784254	5.64924064123145	5.52056450050469	6.19366327341433	5.8086464226101	5.63055841252788	6.07172227524254	5.54668786971887	5.83399475326235	5.93420764464644	5.58415468719744	5.74125479887517	5.70676058388867	5.71089872378944	6.45050433192303	5.8668976310647	6.59125119035336	5.59148877829009	5.84999411262799	5.66205765443302
+"MCMBP"	8.16030138269553	7.41849984082912	7.05432227780781	7.13901580823686	7.31363791916607	7.36746117875858	7.31234926016069	8.08453033312679	7.05118068424692	7.11355785265438	7.65405037790736	6.99219998161876	7.0045437475145	7.20221055543626	7.0245478816755	7.80602312908016	6.84317536960288	7.9192931523308	7.31234926016069	7.3641900170186	7.30914843192197
+"MCMDC2"	3.44822678710231	3.37529893542131	3.17310107511819	3.35907409470283	3.10445188916792	3.34482654508799	3.86834686509364	3.47627255865399	3.65808752986261	3.46340187209912	3.50122348312994	3.47334688657634	3.46924752939726	3.38951419640278	3.77216330589925	3.47211922470658	3.70592585446321	3.53892426574974	3.73468763419764	3.43443031230502	3.46137271832091
+"MCOLN1"	8.34101363263289	8.33479758989543	8.47098988268679	8.05044221446923	8.59124830765621	8.42549136445357	7.82595561905815	7.96215318524813	8.21896758144745	8.42029425791826	8.26583963987249	8.38555434657979	8.04172633831645	7.94255037524826	8.24159307289784	8.57743563993597	8.24305275666518	8.73746923296298	8.13654404383733	8.59939712089519	8.49725566501437
+"MCOLN2"	4.46200859388819	4.44821254870083	4.31388425299658	4.70601335511934	4.82611066833027	4.31388425299658	4.53298312518819	4.61738986277418	4.76491202651264	4.69663078877543	4.51861400207829	4.69272771747162	4.72083029964895	4.43433166863335	4.52061807350277	4.83851391392687	4.62883280222446	4.27870300633036	4.78028648600464	4.71481209043911	4.6323969386492
+"MCOLN3"	3.6425541373815	3.65084577821174	3.67896133338362	3.68227398699377	3.55068423672752	3.63917977685029	3.57359558211013	3.69305848859646	4.16089863856463	3.77045280342426	3.48853139364036	3.58018867161846	3.84232318792524	3.41355947678007	3.97458200416722	3.4821555167448	3.85000207246855	3.58610131540985	3.91685534544404	3.98651664306149	3.68903248322451
+"MCPH1"	5.83200731170045	5.69673804048268	5.7662511083396	4.880424373708	5.30197217352196	5.20371140780816	5.50512335574622	6.18914081917215	4.98878489162315	5.14166277069128	5.71090516098199	5.42391310120377	4.5188471843452	5.54308611753064	4.90026837975666	6.27226893407828	5.23897278654052	5.98855516985524	5.6968858621504	5.41082358263344	5.22882887797862
+"MCPH1-AS1"	6.00927212929357	6.08186311041875	6.48574712734421	5.96777744796683	6.27084746032487	5.80779035590189	6.49302627878025	5.96668269176176	6.11604283304468	5.77944901478886	5.86193052045924	5.8729458878956	6.09286924921568	6.27921956643873	6.28552169706969	6.37775619178889	6.14253278883466	6.5299634002234	6.42476980751571	6.14342665459263	6.14161710753693
+"MCRIP2"	8.61638752737208	8.23995867024584	8.73975107455261	8.83565615286822	8.47678466031419	8.84744941771224	9.83154314482054	8.96265241642153	8.88114007028046	8.52246541314736	8.20028132235659	8.17874193487936	9.22562981659785	9.11423412765229	9.14032373555484	8.30080658822596	8.56550480409804	8.54079337712942	8.71914237630147	8.7204687786042	8.40835349330724
+"MCRS1"	8.64700475999431	8.50780794424637	8.54044660441615	8.23403179353324	8.54268707284709	8.65879234128413	8.17121218892138	8.12134645656047	8.48328563280396	8.53960488068063	8.47846508524578	8.35784586412173	8.15653541095828	8.58511235423395	8.29632758799715	8.79399047276238	8.45682804485982	8.56680219022518	8.25044019743945	8.713075965761	8.41649635344235
+"MCTP1"	5.69661790955223	9.07312201223925	8.77480020009675	8.77981940136514	9.67102099797279	6.54702480635403	9.1782153394425	8.53060180079351	7.459760734725	8.60055515609029	7.79201637471736	8.72927734398879	6.30824499154806	9.41434981188733	9.37375804578179	7.5560718036458	7.08111468748834	6.70382347147711	9.71143168284092	8.5798762393658	8.60853199498725
+"MCTP2"	4.00967676648148	4.36808614872469	4.01615771219074	4.29673487120748	4.03058692456719	4.52789517153062	4.49627113463868	4.30578552584494	4.43408118251619	4.12923338085334	4.20292658048001	4.38088995682382	4.29227031196829	4.52862014511429	4.66309177277099	4.10076451638711	4.60377458965458	4.024653444423	4.39683437542118	4.0913666629196	4.36207372403034
+"MCTS1"	7.79947961799144	7.8502131751048	8.32098303755581	7.61456019355539	8.53743668584491	7.11073136258551	7.39238113856883	7.95694158405349	8.03383807347131	8.62668493674821	7.70015182568492	8.32041180586691	7.43708075474201	7.09377409542282	8.00124554764657	8.51009070245958	8.08932671200852	8.43816959976936	8.10102148801372	8.64912221251135	8.29506113327383
+"MCU"	7.15059598723668	7.3377971040925	7.28193154751261	7.18053661180572	7.54446265195202	7.51930396783116	6.77638832623842	7.28193154751261	7.30189674769471	7.30600891858235	6.98848421116616	7.20071267071637	7.28193154751261	6.97298166974515	7.72333388095929	7.07000839797759	7.4559363796266	7.24859088558008	7.39029725747854	7.50988556496173	7.23925216671226
+"MCUB"	7.0040921707724	6.0703953428797	6.58765169573595	6.1183687632706	6.36621154726479	6.49804472660575	6.01507248981703	6.33758471429404	6.28551124452628	6.70194919649158	6.96936195154851	6.49577516187155	5.94214698557839	6.07924157147413	6.21418810464735	6.79194598423559	6.58488479902741	6.44641410896983	6.07854110773496	6.75189668567648	6.73527965565521
+"MCUR1"	8.44258384523439	8.93114959186961	8.84461288330235	8.74832406273264	9.22459164170172	7.96226646740573	8.68336839345402	8.83481541539361	9.04656436778124	8.76520769786872	8.82997499908084	8.82826820487129	9.09488420290631	8.84226615924113	9.00311890768122	8.49160925942857	8.9714171333695	8.76526291586422	8.76109660970577	8.96735972465971	9.0506221124401
+"MDFI"	6.91207009602872	6.5417003402567	6.56632847837282	6.78473177214146	6.21485619384401	7.32820931917951	7.62494763501673	6.79299458882283	6.71383333731013	6.90153795387041	6.43252034282702	6.70215971649864	6.88678728171805	6.95591620301711	6.79556329739477	6.3951068219601	6.74838308265491	6.50033936994485	6.94550260017348	6.79814172311056	6.56017589667795
+"MDFIC"	8.47806261531913	7.79692335221808	7.67213180399088	7.59706211179464	7.41127723208255	7.54284298534945	7.77325022678312	7.89369978844994	7.09197753954682	7.29688070432502	8.19642729467391	7.31038226864821	6.99050917182604	7.47906897362508	7.43441872739768	7.52582148977146	7.26907757953528	7.41053305543857	7.40627639986437	7.79135779181902	7.0038208925016
+"MDGA1"	6.76047526302284	6.68506380098462	6.81026623177978	7.05421453630902	6.78992176415661	7.52433277594817	7.7342671789695	6.70884718480253	6.80190290366883	6.85268953351849	6.57371623304006	6.63907180917608	6.98483794922936	7.41669839732914	6.86514611500985	6.42875791740159	6.7920285897896	6.40189681346996	6.80190290366883	6.80190290366883	6.80190290366883
+"MDGA2"	3.3053194743021	3.85302319514089	3.77109414119919	3.86040228469477	4.22834117740046	3.759924240407	3.52671338918734	3.89674198933647	4.01115070116287	3.99549697661828	3.60077917462805	4.07810807478621	3.74914040495867	3.30842073634144	4.08760134636187	3.63646263435422	4.17261319423266	3.84028359699053	3.97392028111455	4.04656532213745	3.92434571719005
+"MDH1"	10.9450386193419	12.1922360872755	12.2930577213679	11.9883649641553	13.0106953057553	11.1713405074645	10.8002428655558	11.7418049323888	12.370468532222	13.017425599194	11.6067164750772	12.809340788731	11.8775451487623	11.3085461042907	12.058515219495	12.4682156754654	12.5541071980738	12.4809876474631	12.2400245593202	12.8912419284766	12.9127307617928
+"MDH1B"	6.91229081807013	6.87236874905286	6.54774662016303	5.86494499570445	6.67160748848513	5.35325633952903	5.6739616544164	6.17761833770757	6.19475347369062	6.67926991264782	6.50486911363902	6.48012763722364	5.89302736088301	5.76316774166954	5.6970964261526	6.25597977957664	5.75508747651711	6.01951365030908	5.76386937403679	6.6965709969683	5.796502883357
+"MDH2"	8.31307640114745	8.68459548333272	9.2652174811609	8.6570068899344	9.36997392245979	8.53103579954701	8.26514603273858	8.80315049068864	9.20869554128165	9.38974389810747	8.27615286985574	9.0917318012718	8.80305746829733	8.39891024266633	9.21274786155598	8.7402336579471	9.25098479247342	8.87170410189201	8.7922842779435	9.78388207674339	9.40539953026884
+"MDM1"	6.69737522796018	6.77963476942428	7.05842093273161	6.74026484809245	6.76704402545444	5.49394429447212	6.18122868185281	6.50857035750593	6.62107552081556	5.85037860556996	7.34522113858796	6.75314786701927	6.3758002936236	6.068328961912	6.20603490262655	6.59391060800412	6.47400711366731	7.2353784910501	6.85917586496495	6.33973532242199	6.29870564245035
+"MDM2"	4.82120886553298	4.75354592790377	4.82120886553298	4.82898750928446	4.82226980234706	5.19484641303472	5.26126023954892	4.7269589413906	5.54250732333741	4.55427253373731	4.6305426734861	4.5713701493181	5.08557363325111	5.67971000212978	5.46593844349024	4.57517223987976	4.95771342590708	5.31440206271748	4.64234430895785	4.37253480609131	4.69365809134029
+"MDM4"	7.99804937206595	8.19500474169784	6.37870166043013	7.90214072936519	6.4900692611925	5.67739322367144	7.61621842238988	7.69783749769381	7.31700575032144	7.62841558834753	8.7537491436833	7.45752880348457	7.66224200029278	7.77704878385882	7.50839319456799	8.71330982393861	7.67818207698051	7.40261025040053	7.78943336001732	7.36010975609853	7.78818190839729
+"MDM4P1"	3.38558516379638	3.46565800647165	3.2547017463936	3.10251082594686	3.19845844003064	3.49027448260488	3.17466724473606	3.24578566959665	3.04385858196007	3.2547017463936	3.26012105067056	3.05842093804603	3.62687759158178	3.19613740539147	3.43817541767376	3.37157178396282	3.19845844003064	3.01381532371748	3.2547017463936	3.35067009145303	3.28892850476193
+"MDN1"	8.89359331009404	9.04728512738885	9.29555868335939	8.82780776939212	9.12445433196611	8.91411877227152	8.19365226950749	8.8145392857414	9.03507815981954	8.88052360123315	9.07551146473557	8.92220082365879	8.6108778188597	8.53635372580469	8.67048607262044	9.24010171872465	8.95724981513486	9.55066798467962	8.66740256699027	9.02619879457218	9.09830132381753
+"MDN1-AS1"	3.68607647876375	3.68837306218279	3.99007738846805	3.89847418050525	3.79002751207453	4.23138723423886	4.06417931405688	3.93657650629819	3.94424151040441	3.8995482786621	3.90575104556797	3.96939720369352	3.66838617116164	3.84746626312461	4.02902103000701	3.71053087942166	3.43561657898329	3.66997898219184	4.15090090718998	3.73343850443239	3.74630517147952
+"MDS2"	5.63667490970412	5.90324033621834	5.77830717223897	6.10850930472479	5.69368944879151	5.46932133114788	5.9721574541798	5.85781771688963	6.04935926818246	5.49818068015368	5.78433881887926	5.78091812117131	6.13096521673377	6.02172023989047	5.91762078879229	5.65808293009818	5.79905368360658	5.5225846077042	5.97334513692808	5.95252825265883	5.75339294127615
+"ME1"	6.62230529903402	6.68525168888194	6.83306752438186	6.50486911363902	6.72312148342605	5.50045298568862	6.17717240992401	6.97298166974515	6.39516009265909	6.80019572258559	6.4982094786383	6.50486911363902	6.50864653153082	6.00724859601003	6.5523698594872	6.50486911363902	6.42381277733446	6.58349103775818	6.31729131549992	6.51036324520618	6.13514687012938
+"ME2"	8.17327908187503	7.71522605491816	7.00221041713873	7.34765053102682	7.57512368973593	6.40898858233958	7.1100810326869	7.87559610021206	6.82319934897864	7.49259452593426	7.8360145368566	7.35825237047003	6.78659220055379	6.79954057098426	6.72238600895243	7.91761696544803	6.91864352028518	7.85395962891146	7.58704650554204	7.82459766651975	7.57956787738428
+"ME3"	7.87056408375067	8.69588383237564	9.07665779730541	8.1520283406698	9.09239110122913	8.24345793848987	7.76168554607711	8.33987723752668	8.22398625956898	9.11280499375015	8.21180220167503	8.89416150605265	8.19227565314888	7.8137958910248	8.1192756686697	8.26872087444288	8.76104660152202	8.35406252467903	8.24417869415078	9.35946399943734	8.93383913748049
+"MEA1"	9.95883448849503	9.97290012685353	10.2967593818343	10.0432505426199	10.2557748366804	9.88425440336807	10.1408511771579	10.2324752474306	10.1732311916371	10.3185228207039	9.7569536508247	10.0747733570994	10.0747733570994	10.0700652451165	10.1451410641288	9.93534948471592	9.83445953110873	9.97095915970219	10.1256857865611	10.3511128003063	10.0933220116723
+"MEAF6"	8.31438461224505	9.01300162037089	9.26456864979498	8.75662444737606	9.29721230351122	8.29380221918106	8.17555658299279	8.64456507349418	8.78599935414328	9.33836964928071	8.80963607022503	9.13729667061619	8.78612466999117	8.11685508332291	8.72469157661571	9.01868196400182	9.11464312149115	8.98915549088913	8.92194911884325	9.03199696626992	9.18043926123113
+"MEAK7"	7.24803926195071	6.9899359963281	7.79881128768929	6.85969413541531	7.16684177103868	7.13743642591506	7.09420293909888	7.24311103906863	7.19695143493912	6.95967196635539	6.8080616809712	6.93466649872235	7.15142814245317	7.24256693595752	7.15319175363745	7.15608473544169	6.92587396433729	6.54091963502591	6.86955154444437	7.2839987213692	7.10234962088105
+"MECOM"	7.13478320600734	5.35035039900335	5.27788488357537	5.38863359617496	4.81396920517824	7.01317789506677	5.94304984197383	6.78455909971804	5.40156658885725	5.14930187930976	5.1709573181885	4.8075638082941	6.0386368719259	6.49022258986497	5.79640958008487	4.74215121380861	5.30244655467032	5.08329362198152	5.46294415549973	5.67989316037188	4.9888816379969
+"MECP2"	9.37692007345911	9.56107949828946	9.54108191997721	9.60030091958524	9.67091993471154	9.86811622583212	9.23312443481964	9.33031132312655	9.50106495364236	9.40378592576879	9.34209789965602	9.43534691143856	9.63827187554297	9.37240816915878	9.23146801737651	9.35258013844357	9.47733836013957	9.65861413399851	9.19863545229586	9.4341764164431	9.26086344841101
+"MECR"	7.08016813961795	7.48604782169924	7.47832376682905	7.03740097947101	7.58031831181726	7.02628578578375	7.15727855496487	7.19953762025093	7.40363133145921	7.7756283002202	7.38821168169245	7.6464571256424	7.18894363642089	7.00474089548312	7.28757422295194	7.6410250155875	7.39261002965393	7.43900581590303	7.27606295867711	7.85771264604782	7.82809973638331
+"MED1"	7.82168583440999	7.10844539285979	7.58742414965404	7.22318735345717	7.37348106850352	7.58157355762375	7.03693819478984	6.93152860450118	7.22318735345717	7.0984319275732	7.635319451925	6.81367301407988	7.06664135435735	7.21275851227008	7.29166867940118	7.57819885422962	7.00052697937495	7.84365126085362	6.9543126686059	7.38323277501093	7.20119894883293
+"MED11"	7.92483616001858	7.6355511003441	7.58294050850307	7.76238988094703	7.50817015829326	7.49304662138133	7.57559870455748	7.55987220156455	7.52567481085935	7.63873982952177	7.84343609283865	7.31239215989049	7.48942002163276	7.79414613097138	7.57691248416865	8.18065001489249	7.24890983010188	8.18218519325853	7.86321952074845	7.85531273794808	7.46430066103374
+"MED12"	8.63986637785812	8.0695862167092	8.18679304448609	8.07328058990195	7.83687390411698	8.58118811594346	8.14819995309918	8.0979485969515	7.94756832546813	7.95880397273347	8.29945410492559	7.90085121210277	8.1498706267785	8.51900215230427	7.57063424973038	8.17309537178414	8.03183696527697	8.43198879160283	7.82866867347577	8.04357616649622	7.95502527411701
+"MED12L"	4.99917517707348	5.16001073446456	4.99010146358838	4.91964940906022	5.417701630243	4.55200909356961	4.47927898137744	5.21814315214622	5.55395607707945	5.31694715132228	5.07283221280728	5.1912192442822	4.93539594602007	4.88777994906477	4.91216336032978	4.97660955160278	5.2461878245247	4.97555672744733	4.92753863517614	5.43238418373001	5.11681783488081
+"MED13"	4.97009029159382	4.78438040703629	4.6558187126102	5.00990095951466	4.84999935007246	4.62395390316438	4.92468907559184	5.06870411532004	5.58906549785344	4.7292288093683	4.96832640219476	4.71253134916807	5.19468485042556	4.92091833796232	5.40888564391902	4.92468907559184	4.8291644447608	5.07734927398815	4.85225910778789	4.74013338593837	4.77370002165644
+"MED13L"	6.0455994623075	6.06048214127748	4.60580010050525	5.70230056550291	4.80409323959569	4.79986298880571	5.26430797664776	5.91650110363158	5.88780321651389	5.30737895582715	5.9328496232712	6.06524716964666	5.49049895073484	5.57759113781016	5.80751412107925	6.10271985819724	6.33292207191854	5.26590355278674	6.00650982930273	5.3309572416665	5.45075617786588
+"MED14"	5.62894090250406	5.82287033003888	5.89937959054926	5.00244730761528	5.52216609209139	5.53837620941408	4.97506135915554	5.12025630844569	4.97480189298123	5.27941117347017	6.12630975843295	4.94742361195915	4.60668577105686	5.14637919010444	5.09233226732732	6.22628292577453	4.95811744528023	6.24122159897167	4.67934661435785	5.27941117347017	5.14495816731399
+"MED14OS"	5.73971809950586	5.67525413056436	6.1022470904388	5.81559383037049	5.80527771413188	5.99407320721484	6.29853344791024	6.06082168686546	5.84180711078447	5.86928279536798	5.56117036271248	5.75636938345755	5.93068494628265	6.14562395430181	5.84324430367431	5.61709794801262	5.86489866431166	5.54446876753183	5.93284880863507	5.84765805053549	5.81559383037049
+"MED15"	8.83299037879603	8.77139553050115	9.0928584140492	8.78714517801619	8.91897247540489	9.19757390323604	8.60182480134389	8.89119337119212	8.58211518723683	9.01190989026717	8.81185350133794	8.93226436329967	8.78639583348734	8.9258758402531	8.59479491322924	8.66890666495669	8.91488024870075	8.8697303501316	8.86341452864474	9.13141683422318	8.88934660939792
+"MED15P9"	5.5247027593235	5.56458709019212	5.69884225944239	5.56458709019212	5.47542763050103	5.64372325546358	5.256664807453	5.56458709019212	5.73004294469024	5.58333003925342	5.66748192621065	5.53159956519689	5.87063186722474	5.58112558778024	5.65834360178889	5.56458709019212	5.5285066035481	5.46162266378954	5.55600060585413	5.35209428450699	5.68211407574644
+"MED16"	6.72954030300712	6.3850449786764	6.19123030803101	6.34182760101106	6.14072906976251	6.68458396877338	6.59219254372013	6.23250509315001	6.51676009308902	6.67363557878103	6.26571747477729	6.58979959500103	6.34736040445863	6.49892403627238	6.25037557262037	6.24624648070614	6.3850449786764	6.27216511800748	6.51988972365921	6.40903013358188	6.42764680017838
+"MED17"	4.93455870087351	5.40334153940563	4.72911079743851	5.22817965499423	5.04541320374017	5.5693237587836	4.99029388562601	5.04979732894875	5.15887984150646	4.88548364385296	4.52927667311139	5.40687212980447	5.04541320374017	5.02081926336809	5.31120617002198	5.12477042683011	5.15314976892071	4.66944713921505	4.76887857869666	4.73711309157082	4.89386681693869
+"MED19"	8.53489118410142	8.82085932438822	8.87709027095929	9.03818997546525	9.22437517264551	8.96662608440383	8.3918283341922	8.65175704897572	8.87969297677106	9.15298060372443	8.79469706021665	9.13450645065246	8.70812641665448	8.56552064016907	8.6984821244851	8.62061706893745	8.8591190007431	8.73660188577145	8.90511630043184	9.02509270462038	8.79228459694789
+"MED20"	7.20320853372033	7.03860825521993	7.15354632566362	7.11306167679056	6.99531925729653	6.92993622840536	7.12455776735588	6.78468990096906	7.10010084106319	6.68932618619229	6.93362234386915	6.62761429507791	6.90065318738582	7.00060552815114	6.9257147400813	7.1976753097644	6.5842583175469	7.15419453547602	7.13588095365681	7.10336944334138	6.72349229945387
+"MED21"	6.53884352718252	6.47593070762908	5.73554895381912	6.50358279593407	7.23982737143772	6.02617391839709	6.38978858492821	7.06854398067431	6.74221749089095	7.26127990602086	6.16871482600816	6.92245743587757	6.20930366265326	6.14617113228568	6.64792389815005	6.87436380732662	6.84640568723133	7.16565794610814	7.12048645623999	7.05666018787987	7.0369297424982
+"MED23"	7.5903330192277	7.59085601415579	6.89227280429486	7.30898163574554	7.64204094275401	6.52853820167806	6.94961645801042	7.3611352404501	7.36697046701018	7.4415901552155	7.63019573276868	7.38156398881744	6.66764820314129	6.70808811865692	6.87829818541374	7.81384590702636	7.45972516824947	8.00693322263258	7.28545878254387	7.56259144227521	7.59888264145789
+"MED24"	8.36759747678359	8.31015589447424	8.55816617983409	8.2331924526441	8.2346872677652	8.16761703412232	8.3288079983652	8.43284837357528	8.04288687458547	8.25364675281668	8.24420333245228	8.14863059772181	8.15460348272847	8.14553882500167	8.05999870479499	8.1768566464922	8.15750033788742	8.27825921504951	8.02622060754874	8.30960859175106	7.98265150002018
+"MED25"	9.04371141206212	8.66317598216117	8.99974885427348	8.74240151016327	8.86801791972671	9.56382447921455	8.75824669608825	8.77727742043859	8.61021925046105	8.60080966045082	8.67802145269157	8.27459224881622	8.85276049780517	8.9737490790499	8.46235338486794	8.42698245220535	8.58401592486398	8.84870314880702	8.25478699563723	8.63183228687946	8.42737007759934
+"MED26"	6.57475064795113	6.26717953472227	6.54466292002738	6.27434013769845	6.29398385070736	6.55905554049365	7.167982604847	6.12854340762708	6.10469796401684	6.76952520370632	6.40750658091094	6.23956933736174	6.35688973564378	6.65894421765292	6.22528175453793	6.2266073365025	6.63518831502896	6.61182048321925	6.46962506186627	6.49031431930398	6.39993475747407
+"MED27"	6.69979609792327	6.79790715563682	7.10996113673049	6.84972954903338	7.41586373778073	7.36969294712319	6.81136888963445	6.71385514966302	7.07063165073621	7.14754569543797	6.99792057284918	7.03422632467588	6.80673958230527	6.96340613822089	6.97752344035823	6.86941321337739	7.06124500788832	7.33891084328409	6.53024292889638	7.15367432031124	6.99075386423297
+"MED28"	7.5508385800831	6.72777623061567	6.4557358300317	6.73785200760718	6.82511230770062	6.49293231518293	6.64864448649291	7.55767382388057	6.46410868897509	6.92643020626896	7.19141858538751	6.88458463386852	6.74362500980156	6.1917184935172	6.69811900366377	7.07364958376315	6.46806823727952	6.96837945149106	7.20582925288804	7.08089084030747	6.67381613622651
+"MED29"	8.53548634756224	8.33172025867262	8.17239888117159	7.55801253064249	8.18167995786812	6.9477482458983	7.52485322270574	8.27304702033339	7.37636805577137	7.87110261044183	8.60795871970934	7.98982149193969	7.13961224604374	7.51160355379286	6.88857136048262	8.27649150331444	7.45458446844708	8.08648909307123	7.67408928623884	8.07078816004624	7.71335280817611
+"MED30"	6.99579358511299	6.3106258072437	6.1372921524252	6.58933459239012	6.64248731038553	5.67420920476007	6.21884532438618	6.73497955349496	6.17854020135442	6.22781471480855	7.07102767118484	6.62595354773839	5.81121041436095	6.04055822251842	6.32604405817458	7.39195792744211	6.178898417494	7.19975913402234	6.60399256055215	6.48369967599771	6.09901695677344
+"MED31"	6.52655285541418	7.19640778294912	6.82767756010401	7.09156305493893	7.00964028596348	6.93542298186527	6.62048526605684	7.54159576006522	7.00514752997862	6.31861938902737	7.06769220551436	7.22620799663615	6.93542298186527	6.64700209755696	7.34532055426507	6.874468255942	7.28007806423119	6.84735774073151	7.05674368881681	6.6006233518766	6.55421636810377
+"MED4"	7.3638500897205	7.4580625190396	7.56316559030975	7.42036647934131	7.86357254452612	7.17946010645469	7.05638144262496	7.32598278692488	7.30310578660322	7.39196097603124	7.79710934858289	7.3531113509796	7.10559799620061	6.91829636307195	7.12278310373413	7.65791503815593	7.3529011147628	7.99438327710943	7.35753051318666	7.07637200547968	7.34797386881147
+"MED6"	6.57873285582074	6.73062098460485	6.99203822345198	6.74026484809245	7.17270486187607	6.14233735914348	6.11108014847529	6.89500737241498	6.62773276760555	7.30280701206366	6.82011901811329	6.98675322137748	6.30619009155925	6.23691826323303	6.45043710308358	7.25990977403708	6.60833143057991	7.25545032981557	6.59742344696377	7.13837819551348	7.05128109336022
+"MED7"	7.83491624939482	7.5991507026461	7.61725447114829	7.59855101379135	7.74898360938589	6.76951428200023	6.91495651248815	7.75937413326897	7.56529738420287	8.02467882413753	7.89751141879468	7.76467797312034	7.1969218563126	7.0989389767333	7.41734816001982	7.86301505498286	7.35718686294717	7.9499963662162	7.68520880856018	8.10389498162366	7.79074491845907
+"MED8"	6.87805292457172	6.8858405646184	6.89812416105675	6.7531562259532	7.09229971886089	6.8674970259388	6.75447823241576	6.67862778867126	6.89956814262657	7.28678207368282	6.75878060415813	6.83312918822954	6.8674970259388	6.76781808237197	6.95538615242839	6.78295907357743	6.66847285456922	7.16159730830493	6.67341845940335	7.31610593064566	7.05516323640908
+"MED9"	7.41368370303813	7.3458676785618	7.71428638079602	7.41665961034741	7.63244481632535	7.58997220211957	7.6133465992307	7.780775161387	7.56258812790002	7.55275107898761	7.22364474861654	7.76685456446822	7.34172975830506	7.50652596366789	7.16437894696202	7.17561991971114	7.57421657188477	7.43060679358898	7.54060512897945	7.75803179753219	7.48075254995
+"MEDAG"	5.94240809106532	6.23228331145702	6.08812569198092	6.50309378145372	6.52911462707674	6.64323311018048	6.38999004135018	6.35625720685805	6.35570394394357	6.32032406766099	6.09339481133608	6.2865544230755	6.3850449786764	6.48237746769712	6.32032406766099	6.05432909375027	6.35837921034976	6.03941862121622	6.36351397131103	6.24291133039581	6.47096135881998
+"MEF2A"	7.57832576253409	7.83419292893905	7.08499989662734	7.23006632954565	7.70055588782652	6.61501010424131	6.57396387992549	7.23015311992439	6.64771917801334	7.49637692941062	7.62730214370798	7.74334772645715	7.1901284327092	6.72596598584177	7.10177235624276	7.31774122806214	7.7940600265487	7.78527566860325	7.47867278125752	7.51014321289368	8.03011877856949
+"MEF2C"	7.38827283545281	8.37740327294168	8.2222046194015	8.06038982200351	9.326844976167	7.10266876392525	7.1718140729638	8.29888757106962	8.51066386286234	9.22439783747496	7.60916487709569	9.53749770461381	8.03411555354342	7.41530909410611	7.82757237850876	8.08697318830909	8.98756210250496	7.91613615167017	8.31117309154526	9.52907059727165	9.37697422429977
+"MEF2C-AS1"	4.48390234540848	4.51329258125277	4.57547441124196	4.4338526546948	4.4266113265676	4.53806958771215	4.57976953056014	4.48031985712343	4.71818314333511	4.75656827337095	4.57271464000338	4.54449565261633	4.78556658918825	4.9004285811604	4.40059375596776	4.34812826603484	4.55720102487151	4.31794373460884	4.78219947637363	4.62372488547039	4.54139259676502
+"MEFV"	4.8876366367588	5.0739442063483	4.83939943792323	5.26962780723945	4.90378677338832	5.11293151034083	4.6167714497223	4.83812152350762	5.3973348872181	5.10599803823423	4.98531285569915	5.26687995524128	5.26168648183351	5.19085706735022	5.05721119454214	5.53828969959089	5.24315464746787	4.99000397197409	5.03365399110432	5.17375922838656	5.1988043144403
+"MEG3"	6.66052713663719	6.78331224141729	7.95778280745491	7.15945256512089	8.34783430571551	7.68233633470904	7.07462879722024	7.63704991886562	6.61242322677157	7.95578979119348	6.12100217051358	8.41650759445438	6.59219254372013	6.20677974439177	6.58146609026426	6.40434021280816	7.3116416970347	6.42977827556492	6.69825301729958	8.20575785225306	6.44698808816002
+"MEG8"	5.3003859001479	5.78845576451858	6.08583527015691	5.92121959698409	5.58153945110519	5.47868818038873	5.80704814905133	4.89453221301803	5.7065174547494	5.7535929817766	5.61781904443059	5.02509526709744	6.2676541009754	5.91131848661915	6.10964132577611	4.96889686235471	5.15736000619756	5.49711953281887	5.17956541108319	5.64542272468182	6.13638705414809
+"MEGF10"	8.25311917506657	8.6918454024409	7.60519606728893	8.32604165614694	7.91015070479009	7.1143940873602	7.47673122432661	8.01405460572276	7.28346563273115	7.35375424604975	9.23292606316292	7.56990205025351	7.64285078902995	7.46783027925827	7.54210321389314	9.34031709315606	7.88404713000727	9.04561155783534	7.84759848849623	7.17591205622738	6.88300386212403
+"MEGF11"	6.36017278949439	5.69957582513734	5.54836612188377	6.56074649428317	5.66500135978074	6.8848898387928	6.3638192622118	5.64680970862187	5.86720568334108	5.07824107902903	5.39256889886875	5.10447423073162	6.99149572902317	6.72892132791075	6.33750373808121	5.07413702941416	5.61023183021134	6.42712867050245	5.3513781670376	5.42862189214332	4.97006149054748
+"MEGF6"	6.61661523684451	5.12593684319866	5.39913775677957	5.27722982791359	4.91708165502444	6.27845956459268	5.36005752676799	5.63932890930829	5.32381492785269	5.3252603479945	4.98329357083051	4.79807788799195	5.35349680133507	6.06198949960631	5.27570359118065	5.08868373066714	4.90312194990029	4.70875069173513	4.85620175435846	6.21970364226815	5.35316531312917
+"MEGF8"	6.80829778993097	6.40184325078026	6.92734146397551	6.91002944497304	6.80128705907523	6.43409069791473	7.13536179241454	6.69431984906617	7.04521429308877	7.04956850436636	7.07885457822689	7.05601182124497	6.97209222131613	6.5615672199636	6.44513845602081	6.48659855365978	6.90094022053338	6.86026818716993	6.79983332769328	7.39592844288825	6.96087780306455
+"MEGF9"	7.43444153792653	7.36550925822609	6.93568843390136	7.59896165750495	7.61025106716797	6.2246932447333	7.60102588391464	7.69429498819983	7.73606470647057	7.76664830227274	7.77173331251382	7.58686529863289	7.55427032898324	7.28193154751261	7.48214944155975	7.48465012823046	7.44141951647745	7.54956904117977	7.74514224479951	7.3709129324318	7.06410293610853
+"MEI1"	3.92688747659955	3.92235165172743	4.11677845999509	4.08524934838782	3.90205754653401	3.53119507403135	3.9824573057342	3.65980157093254	3.89750769692117	3.90431507505472	3.73588461633403	3.87804932893568	3.68069588353188	3.9660072090085	3.7561156134253	4.14427844749398	3.8350104343475	3.87620357968284	3.79206929580065	3.85360719257763	3.88032118422313
+"MEIG1"	6.74081148332792	5.72866917498727	5.71015208245474	5.90140311354054	5.95197969797782	5.78403330539038	6.31759047830695	5.85037860556996	5.97745403966399	5.75736525058674	5.74988123258855	5.65629660917381	5.89762340840632	5.99429774216603	5.85037860556996	5.85405659784038	5.81863684140172	5.55164005273765	5.61829608074796	5.92694554385702	5.94124552753488
+"MEIOC"	3.04777606091686	3.14491232329151	2.88983050387837	3.03467099766237	3.18728213524197	3.22263004595571	3.23868871380657	3.06878087501691	3.00063010045295	3.08026577796219	2.94906970106365	2.98232299483299	2.90820354286923	3.2786909779906	3.20312443797704	2.97153591985148	3.08484489896078	3.01978501771485	3.16367633608087	3.10426149321597	2.95165763357927
+"MEIS1"	7.67636243590701	7.38502556168242	7.37293644553373	6.79696877046717	6.90787419908707	7.04141252811938	6.64806030103261	7.24436539579128	6.62862491200182	6.36472038365765	7.59540972383408	6.6488224019217	5.93870072375762	6.82996869881137	6.41968573542497	8.28992774072037	6.72426117168302	8.12745777764554	6.9259235103586	6.19840989508872	6.69439445966004
+"MEIS2"	9.73841377866012	9.61892105512105	9.65826491491732	9.33099644421088	9.46387740837429	8.96810629013343	9.19388301974733	9.70537145960226	9.53613850579077	9.01363027344902	9.465681845904	9.32707751292132	9.15359488034394	9.18423360641463	9.37702788130316	8.98204160650193	9.32477248239087	9.37932102986655	9.30280988594404	8.93942171129321	8.77681909003746
+"MEIS3"	6.14036578152723	6.46985882882193	6.7617322669191	7.05374234936229	6.14291968878153	6.33746587856136	7.03113319162591	6.65549864173801	6.84010516643939	6.35168657128701	6.47903532507857	6.62965231974816	6.92761511640515	6.57392627239769	6.82675420798527	6.09476627934275	6.55760306617614	6.19915798448089	6.63882244271485	6.39503022242818	6.31670475157137
+"MELK"	5.53103000462139	5.25987771007905	5.48611916643171	5.43086581636703	5.33534943538976	5.77761413929415	5.45124121372987	5.28412864206662	5.50906936470474	5.53482096972027	5.1088242085923	5.40821306177611	5.56081855238658	5.55558718931833	5.45124121372987	5.45124121372987	5.39338279386067	5.45124121372987	5.19717084453174	5.24873158271433	5.35346375176431
+"MELTF"	7.4728887767092	7.82859671210324	8.42325710793237	7.5144050922559	7.56843529529389	7.6550685749213	6.95656899842037	7.17041336883766	7.31632895816846	7.50925414146546	7.65109559154241	7.46797172071869	7.64721704437546	7.54574631282981	7.09479229989002	6.91204472284636	7.48105500705287	7.31349746384877	6.99090534452487	7.78346077866961	7.42209720638924
+"MELTF-AS1"	6.9068828673145	6.57249122125455	7.09042007539388	6.79625432819181	6.31902805706021	6.39050902887619	7.29573105183359	7.02651731003389	6.56253265394354	6.39304999772172	6.86058078324636	6.66489125157209	6.79015666489124	6.7386645045635	6.76021843498434	6.27636701663213	6.69788000210891	6.63458550300237	7.01534316914566	6.69788000210891	6.60064758422798
+"MEN1"	8.52171791518355	8.4351668571406	8.62420767123845	8.37610025487018	8.550176998055	8.54179718894925	8.28408555117141	8.21118337090052	8.27903089825817	8.59697026822186	8.17398895826326	8.2065435473256	8.18272857443944	8.40031133935187	8.07889343318692	8.35577511869235	8.35863289037106	8.43392942899461	8.01432940056127	8.63854425117545	8.54154886553077
+"MEOX1"	3.81803310304625	3.862644490111	4.16260754221637	3.88338985316626	3.84682413162955	4.12755419290881	4.1779961637496	3.88856672602838	3.89750769692117	4.19114576759584	3.81328462696331	4.08768168448168	4.08768168448168	4.04769122789107	4.14775154461179	4.08768168448168	4.08768168448168	4.07611638516978	4.36544198630629	4.1170626110856	4.40092433152629
+"MEOX2"	2.78022377306779	3.06460113188857	2.9604849686833	2.90583139966516	2.94124995719376	3.34727075174189	2.89132065910403	2.93945046416997	3.10344925334636	3.00808307272916	2.75749139245492	2.9604849686833	2.99796700517896	2.97885518895064	2.87391214926443	2.92308119920285	3.08982884212872	3.25706409761333	2.94657878453572	3.30059380198628	2.69629267234111
+"MEP1A"	3.96566953584273	3.98580036240487	3.88509171534632	4.07539947761686	3.88871080270216	3.75722150286119	3.89057559677841	3.69865424116593	3.72530951456486	3.99194034987265	3.53798923410859	3.86121881079599	3.83184031930723	4.14340986563905	3.40440688474153	3.88871080270216	3.84395496254195	4.16235470636166	4.06605486009689	3.78253153431762	3.81304310971496
+"MEP1B"	3.835370352357	4.26595829087322	4.04376641566838	4.14133262184255	4.11966472450145	4.752195024959	4.55808843726038	4.56934548370065	4.27844222165733	4.19829362662543	4.13197469272577	4.16750582594535	4.37849231369965	4.31460142775277	4.28778340827174	4.07060275054379	4.21749257809528	3.82628593225152	4.2385047638025	4.05539564125509	4.30043502434077
+"MEPE"	6.01773046413604	6.75801596161652	7.23529019907142	7.08052114879235	8.01748862389549	6.93811125598975	6.47280498061898	6.58641163343112	7.21362558489749	7.65324481125986	6.72957330137639	7.42972590190969	7.53383224831616	7.23529019907142	7.05716369044749	7.12761997152542	7.07584179330495	7.03922897293423	6.70184503480271	8.08261428924572	7.0873269738713
+"MERTK"	9.85480372127496	8.12186648561674	7.84480568058143	8.199636286101	7.90248991885038	6.78262696444687	8.93141204671552	8.4689882840023	8.17914355754776	7.95862067073512	8.01473908640023	7.96602003959478	7.92026503672568	8.1172230448288	8.08504293969494	6.660337880218	8.53807406341615	7.67658961511232	8.33009063240467	7.90257995063781	7.3538034308826
+"MESD"	9.38530784488427	9.13655510156005	9.19266015812511	8.95735947896999	8.91521057855472	8.49007074891409	8.93203170708108	9.06070412756074	8.94464474537009	8.95672882102648	9.34633423170851	8.64813287653973	8.62753199224245	8.87606803336174	8.88402830082244	9.62002572289863	8.58913238312008	9.49201440031313	8.98915777377509	9.13147337942704	8.55946856416329
+"MESP1"	6.30670921713385	6.73262270822632	6.73398882354011	6.9949621834034	6.62461467008262	6.64107325932372	7.01608049380812	6.72622025738191	6.49933275373242	6.97204137045232	6.52936222691509	6.88736769632646	6.88989392397907	7.18988499670526	6.90363353829844	6.63565725696807	6.71491291972291	6.36568378371397	6.85323375889117	6.70579919937004	6.72266573097687
+"MESP2"	6.6322095197928	7.05480953619362	6.66372985891453	7.0404953474205	6.70451545196592	6.74763491907341	6.7214967252737	6.82390002428263	6.79551173279673	6.90561382459158	6.73163121578869	6.96517641588339	6.98078905457371	6.82502401882117	6.95754499798776	6.97489596621783	7.17010838556867	6.56100666566941	6.76826527863109	6.82204046379524	6.92534498206591
+"MEST"	8.6950594257999	9.60983127572594	10.0785084625736	9.70757511294304	9.7781228724559	8.7194912466993	8.58564572619178	9.53853893611892	9.42951425974952	9.83871926524859	9.39880392633745	9.9313715931204	9.77323168448192	8.93891468696033	10.018894588319	8.78434326185221	9.7008259440589	9.18931227301149	9.31076071679673	9.68946368469746	9.71319190395803
+"MET"	5.62032257085951	6.50044978856987	7.43414784995377	6.73936278125261	6.72648490300911	6.29602690688724	5.20093974022484	5.94108160297152	6.79409165540828	6.32974927073708	5.07558227993363	6.9187035830207	6.21888056522116	4.86017734885145	5.94681918439467	6.32974927073708	6.17748213524739	7.01714324611563	7.48433406529653	7.60103767190604	5.44575796244347
+"METAP1"	7.6727566133137	8.04718958301083	8.1467620752532	8.19876738437387	8.30263280668872	7.76464867768377	7.59639618372363	8.07551172233724	8.2870240024856	8.17044069638793	7.82087446966461	8.0634601656195	7.8608262899173	7.53907546706005	8.2324419954742	8.09974029981066	8.07116335182027	8.19824747755157	8.10423515797335	8.33179742661421	8.22417233060126
+"METAP2"	6.17599386461296	6.53431120156188	6.80883216972294	5.9696544917833	7.20750061235049	6.25950548039392	5.85146186054079	5.99991395294225	6.04449354719866	6.03248684164797	6.68898562113764	6.02558404463989	5.95678306536732	5.97046424215896	6.28488417518653	6.10178105662758	5.59567096329939	6.46603260249363	5.87831253942739	6.35864027570026	6.06026690445185
+"METRN"	9.97380862382839	9.81757937947805	9.69689620217287	9.20213880525915	9.08547000092086	8.79459045909864	9.77224597132046	9.64380012381866	9.01074942166225	9.34483951142024	10.2930296435252	9.40667357050518	9.33036124922937	9.52567815718651	9.29728121727283	9.74109770209593	8.92859339089972	9.32209159351478	9.56548244897091	9.34555517934727	9.24764967616703
+"METTL1"	6.81485421992886	6.88199654047391	7.12457990439678	6.89176899826834	6.96566997423074	7.03640117272557	7.00715801430406	6.87960968046803	6.75486917586534	6.94502171057336	6.98893218832908	6.98893218832908	7.06437853640787	7.14336441382432	6.98929498185345	7.08489303907723	6.87151575843978	6.97038748465127	6.87508457898204	7.29649423975755	6.90447990234268
+"METTL13"	8.18047742445446	7.791490258848	8.15417391693321	7.6210980787415	8.0653296759306	7.17093101964477	7.5079986530424	7.51067128868899	7.82246145715067	8.07886527447512	7.65109559154241	7.88164753879098	7.42791278492474	7.5624092244072	7.62642151172994	8.16038251765708	7.66662393467792	7.99534095459108	7.64225707937261	8.32515362624111	7.97814224077293
+"METTL14"	6.17631602027651	6.38960126668784	5.81014789545646	6.74431870603942	5.48380768333092	5.9031340833409	6.8138275810146	6.62776497667893	6.67980030740975	6.49263806068324	6.86591453056915	6.53818212461833	6.9681510276431	6.71983735694969	6.93791372127082	6.53818212461833	6.5900548257363	5.39016766693388	6.88910754040668	6.33409930294803	6.20903542723645
+"METTL14-DT"	3.62102529288766	3.90504568492537	3.84695841743454	3.98216722511031	3.95341193193969	3.85650898983101	4.17904278166103	3.90504568492537	3.96779852709763	3.90504568492537	3.49380594639291	3.88122381823942	4.12618502234636	4.05756886538368	3.95591134802981	3.60490786255576	4.16079995959761	3.64637567750411	3.70593072647207	3.82882303304568	4.16688030896823
+"METTL15"	7.52802347891042	7.44701598812373	7.76546771803067	7.63494185706303	7.82520199786915	7.63354466055456	7.63124066947588	7.83429784019039	7.75288081492564	7.63494185706303	7.46674504964296	7.56582800948199	7.64631139719702	7.53561403005986	7.63286659808861	7.68705688384615	7.41871929603322	7.673059045607	7.81348028031457	7.6442399247414	7.33399445925027
+"METTL16"	6.24624496249475	6.92183588411164	6.30826724620469	6.74940627207332	6.19981042212815	6.01585916485452	7.08517616447657	6.64668965309118	6.73772481414784	7.68562273136495	7.43059028934754	6.55789535340031	7.41398490617687	6.9909797104946	7.16955229642413	6.93700952160938	7.02392173089021	6.41301674785602	6.70221971712045	6.32949947393248	6.28925658923508
+"METTL17"	7.66064525608797	7.20286210846073	7.56922721657109	7.13521013562703	7.20275778996867	7.44542410473737	7.34738530459387	7.08768693393679	7.00277510217469	7.21401252825974	7.34517610135331	6.89777542638619	6.95070727041319	7.07150401831923	7.15490036131837	7.53563505322084	7.08625370280111	7.79993792983482	7.07227498805712	7.05800026846208	7.10094822462439
+"METTL18"	6.58286361680472	6.30572359323184	6.15731862239708	5.94347749257532	6.27774904425618	5.72267398997996	6.06197412600399	6.14706303316993	6.20880659149736	6.1646644096302	6.42820225551618	5.39312843924548	6.21143666167833	6.2279690596017	6.41163773080988	6.57600022814327	5.82287634334091	6.71563745604977	6.46624607473163	6.32845372653251	6.12786536198157
+"METTL21A"	4.74849599009311	5.25000544693843	5.84213649281197	5.16856000218394	5.5941733389914	4.85255938632498	4.72811936317213	3.89392685083917	5.36022331424291	4.98438331045949	4.92685257526989	5.30918070843266	5.48824703361661	5.08807569054809	5.33449504618461	5.46049976254501	4.85464761338653	5.25781942308692	4.32154772741299	5.83783006051385	4.9042291101761
+"METTL21C"	3.12947477601393	3.72852573138408	3.60400301680044	3.70619332309362	4.42427970790748	3.43667832543627	3.32944759656157	3.43667832543627	3.38645443710512	3.23026242755514	3.36686637395318	4.09829494258691	3.34941372863521	3.28902364196031	3.13746109474903	3.39802113457547	3.2522724243441	3.43667832543627	3.03494250516311	3.98647566357695	3.40394038195337
+"METTL21EP"	4.94797446018184	5.37507288429476	5.53859380021318	5.34044199530888	5.35021274033876	5.39541519523038	5.14091363543095	5.08558551445004	5.2805180265828	5.43262260836494	5.16576720320194	5.22735408400377	5.31314457897501	5.24027456674118	5.35513089335057	5.11814714713548	5.20207555212096	5.34810385551279	5.13975907165831	5.32399931464063	5.2992386944742
+"METTL22"	7.15557424746272	7.15557424746272	7.61229928933642	6.71047544334324	7.4322274591482	7.02869057453248	6.93852439910802	7.15557424746272	7.07555752370733	7.44858646522493	6.89632091732988	7.44064286574629	6.85868593563411	6.97383363960905	6.90237709266814	7.15329467229573	7.38102498601254	7.44161170278851	6.94766548891576	7.23131700236018	7.31469645313755
+"METTL23"	8.81293657605065	8.46051354142429	8.32581479175104	8.12466334278854	8.51894225949368	8.3959346619815	8.13104355164305	8.07321272865028	8.19497575445102	8.43914594696581	8.65090273907061	8.19999100411172	7.88948301416358	8.37349922116342	7.98407832217742	8.91344707917472	7.92545625351658	9.08444503600366	8.47765347698393	8.56440043093095	8.13752275362882
+"METTL25"	6.904641988004	6.94016412099216	6.72087727564938	6.76523181717124	6.88178093312438	6.42634981875809	6.38186350878501	6.56504327912094	6.69788000210891	6.59825867337409	6.84916865309388	6.60506058326154	6.28816126081896	6.58325047687216	6.79145919804897	6.96998487294424	6.66169562882496	7.33566168564429	6.62409141358352	6.69788000210891	6.45951492863617
+"METTL25B"	7.77507358286875	7.39484628521438	7.55268860497782	7.45864995655548	7.31954857993386	8.2285326663943	7.72289695046584	7.52771099244633	7.49744382307639	7.44180928469449	7.43913388208171	7.17564366588137	7.55562931650604	7.89917806067138	7.59854118544847	7.74559846697797	7.45651490134923	7.84361604711249	7.63286659808861	7.50480325890548	7.17406930449778
+"METTL26"	8.27383473667089	8.10196298469581	8.84048282788434	8.15999978220157	8.70767084929114	8.45833021964308	8.1862051736918	8.19643576982476	8.49252641995398	8.95481659733135	8.00707207967613	8.69968856969758	7.84865563778888	7.88248243837381	8.4697336082518	8.36348641540761	8.31462417142166	8.57745192760819	8.16415567401345	9.2080741996768	8.53643028110633
+"METTL27"	5.18048703497103	5.40858504617668	5.25873161836704	5.51708471901941	5.40858504617668	4.87653967727992	5.52485072766164	5.26614955449343	5.46621859021125	5.53407217137818	5.49008211731336	5.49640202018605	5.40858504617668	5.30590809359925	5.45064624886331	5.5060547613114	5.35889414473269	5.32573339431881	5.29675028571858	5.31672883888042	5.53147984400162
+"METTL3"	8.71882099685362	8.52801354107311	8.79628518781286	8.09769208079876	8.34845221467319	8.52707660870785	8.01621183118396	8.54106976971664	8.3529292243067	8.19345842428806	8.89843517128738	8.3529292243067	7.66598994242382	8.12486063601532	7.72796207711049	9.19703000454671	8.26966048364739	8.83568071722417	8.3477877708135	8.24057178905987	8.20842140852432
+"METTL4"	5.25126995123669	5.51322754377548	5.45034118900651	5.53485146651554	5.36656564485692	5.05009953147967	5.34810385551279	5.41828901259067	5.7194639630808	5.34904686981757	5.31277178376052	5.0845279624666	5.31920216544979	5.09585388427615	5.62348250154085	6.06120395677207	5.2563419484317	5.91970831733167	5.34735129975823	5.62041343081041	4.92044715539971
+"METTL5"	9.07221887257004	8.97332893496112	8.63137772557616	8.98655689672468	9.23604238047485	8.38748163322521	8.46367383135939	9.07785939246387	9.30720086671302	9.41362845527734	9.0414978607916	9.01787350536988	9.00031030750153	8.71018321848163	9.20025873665122	8.95641028639849	8.90619318808695	9.15133909480993	9.23814600647871	9.17427406543651	9.09887643709661
+"METTL6"	4.44740507732459	4.79296003211024	4.68563065870068	4.60012412276636	4.4290093234723	4.37634218047666	4.50526007428351	4.67859025119498	4.8216631469737	4.81062886245941	4.98200908134609	4.88332909967752	4.23413501144485	4.53545090623502	4.65456773446647	5.03217609862757	4.66330104629612	4.20291384464216	4.8187709501674	5.43073895052955	4.58043700195346
+"METTL7A"	9.75157881635431	9.21168770596002	8.47001568202932	9.78102166793092	7.61329078907917	7.53552106711712	9.46949507496955	9.49312299271667	9.64863791720468	9.01430946705066	9.41623056665778	8.97744484605068	9.73878778287251	9.39638125702406	9.8604181761652	8.92162020711396	9.26867711973193	8.09093527547258	9.61396684280803	8.57845349928862	8.87041970501139
+"METTL7B"	7.79829139999912	6.66035397554603	6.73511495515572	6.99469201665118	7.31385683698436	7.61171460833959	7.84940612701496	6.60291996685701	7.39561931591561	7.5262259102398	7.09022072478269	7.11576516009747	7.66495958646417	7.43143413684974	7.83259644164605	6.18002443685887	7.48123458913298	6.62913221948963	7.09518544393565	7.23723829905588	7.34371594189027
+"METTL8"	6.8135542779583	6.98831244722862	6.75460689106165	6.49429678425769	6.94571994320185	6.77798242148774	6.76923394030797	6.75689625113888	6.71781808108584	6.99011347111785	7.16083080694174	6.54224038038901	6.41490486178601	6.26601642296342	6.5488222717689	7.0634614181334	6.60571591642081	7.43134506222456	6.72702797991977	6.83359429680779	6.61924835075361
+"METTL9"	8.00032252286191	8.48709896623121	8.78893414784733	8.43319233289394	8.65508058035925	8.02266595095597	7.90710795120952	8.60937358251516	8.57876279686399	8.68802377284886	8.19642729467391	8.48709896623121	8.58122362118568	8.4374181471596	8.78219302500262	8.02853600291987	8.54496939966242	8.56422644858997	8.91213284254558	8.57866611287081	8.42999431239934
+"MEX3A"	7.30763648821904	7.31034539085896	7.46394872285499	7.60072017313341	7.31028768519967	8.00962289895825	8.33946259072413	7.42751376852352	7.53937661202068	7.63150577424822	7.2668307480319	7.47230535142241	7.79332621360828	8.01407382113397	7.58586859594763	7.17844235171284	7.45813037828614	7.11365302500123	7.72685040911953	7.54725021871412	7.50716146219649
+"MEX3B"	5.35219575648386	5.68442725323878	5.91745558582961	5.92168863069486	5.96053714466654	5.74528176834544	5.58891938714709	5.60037696200071	5.79608450905793	5.70832463523487	5.47943077272445	5.42407599867783	5.8256655812034	5.59550237828393	5.59014734222153	5.70832463523487	5.71503961305306	5.98387717453982	5.57832891493708	5.83300890427621	5.68252365059641
+"MEX3C"	6.96766367412735	6.48617190260575	6.28002461607718	6.86257841981394	6.26043523387973	6.22800159786788	7.02225220828489	6.58433870852555	6.89426435050226	5.82543509297767	7.077058018045	5.74983715533679	7.07753283236883	6.46654086522946	7.03719089473962	6.52775954309061	6.26065213410191	6.98617585185875	6.55162105814257	5.93469127913709	6.14110554275182
+"MEX3D"	7.25281613405626	7.40872252396538	6.78480720122521	7.36977303182174	6.97704044936712	6.78279662381207	7.30441602099638	6.93136258945739	6.99006951375661	7.03428155227267	8.0037940970756	7.13955588246626	7.1093457484518	6.75953649473424	6.69750189032257	8.31315361115222	7.27227534057397	7.42851414085996	7.15999136892122	7.12483568269425	6.85257744769862
+"MFAP1"	8.88061780835821	8.40910594425183	8.47642127675692	8.15970860287557	8.40095991937445	8.03300431283682	8.39727054050159	8.34789760862494	8.38143543250803	8.55588848519217	8.40095991937445	8.26975403498766	8.25290093008783	8.16853438260469	8.42250731509473	8.54986551261148	8.34554131151261	8.5033719210807	8.20719313664292	8.68327447073608	8.43366063528134
+"MFAP3"	6.72085185820421	5.20819964996157	4.90718520917642	5.92016891872748	5.24369410485584	5.34789821593736	5.55890411844152	6.26814524072038	5.73369078401697	5.61923666262065	5.4911378489212	5.40530027515434	5.46390438598667	5.36405418442712	5.5586930971505	5.6503445754381	5.6038505544098	5.66128153398499	5.46454212472946	5.67588558798708	5.64838085907455
+"MFAP4"	6.3283582670765	6.38640497553313	6.03235828942765	6.35257228824774	5.73339823869406	6.28245359731051	6.74027966119983	6.18147351023272	6.06248148682438	6.76318048055976	6.57598658888269	6.35189774826994	6.44497340614638	6.36544015049415	6.24599276977545	5.78226732527657	5.92313646075738	5.74493343661488	6.28452465683198	7.02197620768159	6.21297466872733
+"MFAP5"	3.99037265072934	4.08193599403084	4.03263375741333	4.34197675726048	4.16915787248745	4.24919237414499	4.78122710574674	4.14492770048416	4.09059200357848	4.19791316565807	4.37073767298548	4.21316552606193	4.08730055651986	4.48507864305557	4.23551593882203	4.19791316565807	4.25413875719422	4.233830833785	3.99037265072934	4.19791316565807	3.89267417598154
+"MFF"	9.98781759422756	9.94945833278603	9.70298256058113	9.74172789119962	10.2104832996806	8.90802747868796	9.51743350769842	9.73595178612541	9.78643948184705	10.3487509993551	10.2336160421732	10.1790821495512	9.6274929249312	9.26456381648174	9.37086181672601	10.1665983808416	9.92457343477463	10.2066838353814	10.0383682166687	10.0798103690137	10.1615780116715
+"MFF-DT"	4.61917669662118	4.80615387652418	4.72737194135386	4.86848623673325	4.97422676316325	5.0587038093736	4.80231255672161	4.60450575279497	5.00566680740462	4.79069075421845	4.71719216812151	4.80419531992814	4.84431414565121	4.9079510664541	4.80231255672161	4.88515775005319	4.83187628709362	4.6128084427383	4.91941174459623	4.90402666793366	4.95030079419682
+"MFGE8"	8.74065342937522	8.01435128661677	8.24773054060122	8.05634829416909	8.02685980211276	7.83982660918826	8.1563030447845	8.18623072530209	8.21923272705714	8.31434862904984	8.1563030447845	8.21043838148123	8.08663366234855	8.1563030447845	7.95650950211948	8.5389178973109	8.09146130722321	7.81581490622084	8.07260991307704	8.26325632668072	8.15342778037918
+"MFN1"	7.47132963605664	7.4645614203588	7.71318998578994	6.47245055568655	7.53788153537696	6.98767192649807	6.60145876070339	6.71508260968814	6.80579064193775	7.13848492244791	7.57999054424517	6.97987634428825	6.24624496249475	6.97504245912153	6.99396955386609	7.82386107936988	7.02382897843192	8.24546859911012	6.66349736990324	7.17664972656744	7.278011734908
+"MFN2"	8.47680605581733	8.2038180633401	7.43324700224789	7.80577035318771	8.00217968937302	8.07190356478856	8.07190356478856	8.15364038844997	7.91357424177085	8.68215438453746	8.13908524991473	8.302932012674	7.57572411882412	7.83894229865174	7.52795173979628	8.21143112774832	8.03893731162523	7.69959750476428	7.95675314633137	8.53066243015485	8.78105954604299
+"MFNG"	7.62797395920787	6.18587380579424	5.95890866070444	6.50224659560884	6.09811418843285	6.96998144573577	6.99753939488983	6.56693998195662	6.20024994490893	6.36488807356671	6.36287325274875	6.02075756259883	6.79910326842201	6.9855026531596	6.72984654364552	6.14198129574611	6.28091077712074	5.84614124997898	6.61564010690277	6.73243048258799	6.47109466841461
+"MFSD1"	9.03417656708964	8.83328458913858	8.48714665824084	8.20024978841413	8.61910700924886	7.82937899615488	7.51954187789991	8.51189006017396	8.35570424776465	8.79483624638432	8.65982236308782	8.23311884914182	7.69950659605974	8.23158485465972	8.28168245359379	8.79835021642259	8.46107361730951	8.85795555444592	8.0210811916946	8.76046309352567	8.68519522701339
+"MFSD10"	8.57192793933297	8.01445318589123	8.43654285686851	8.09453496175479	7.62260921274794	8.36847628320369	8.024970016461	7.99287048675418	7.82004713542511	7.7739322933502	8.06113420562104	7.88445024054578	8.03602255016094	8.16672336265121	7.76569858113838	7.96029759978277	7.84033795862945	8.13328449152636	7.79636034921438	7.83111136687769	7.85345093707221
+"MFSD11"	7.76727566168745	7.87637270571325	7.60080614912562	7.51724885974248	7.62070106067301	7.48012036113223	7.6792357626334	7.63981536197275	7.62523167282733	8.33015179812486	7.82498271881192	7.787152788558	7.75078782703737	7.5391854414982	7.80806258455603	8.04132557893328	7.93800693541631	8.23232590704076	7.52077929267016	7.78111483104755	7.66817313080676
+"MFSD12"	7.58185977067491	7.42528116147193	7.36208574124904	7.61555386271797	7.00024649542953	7.73574954892739	7.56047057093938	7.46594847875165	7.3234002580866	6.78872822573593	7.5247295454083	7.08963269317151	7.699830267698	7.45204643358829	7.66412653626908	7.45204643358829	7.35132848223432	7.54583912648351	7.56891058013105	7.45204643358829	7.32265539055414
+"MFSD13A"	7.40564446002365	7.64121293261632	7.93103767398042	7.39218505447514	7.5478796853528	7.58689551895451	7.49070212908451	7.25105231673484	7.60384830214911	7.07524624973422	7.3907333692508	7.37174800198045	7.45021340663269	7.34682978870802	7.33730976831735	7.3907333692508	7.3339534849501	7.32112427462095	7.20142135674295	7.32622116392623	7.36610074368275
+"MFSD14B"	8.17272851556304	8.32458716469638	8.11630715748452	8.20602785945994	8.15154869609813	8.0041968494437	8.0273413070069	7.98226980956825	8.06707994871774	7.91134577028029	8.45143259160564	7.86553533749887	8.134916803042	8.09330792048771	8.01365591540623	8.25791347504896	7.80767542535949	8.5120378721686	7.93767501494786	7.85646414414275	8.02454953031153
+"MFSD14CP"	7.73821620317466	7.67952314328925	8.31714642222099	8.00929030966648	7.49358866738706	7.6426140450608	7.3889277919848	7.24436539579128	7.69690981094542	7.27511235597531	8.08221886730066	7.38846978177249	8.04229938673848	7.87743122445629	8.2754156589123	7.58175435915011	7.32998025356446	7.6998790349513	7.83073444202706	7.13634499096862	7.47019989909195
+"MFSD2A"	8.19666147452375	7.57542085763995	7.3058891740938	7.66487181950234	7.60371133953187	8.50267603383337	7.82710296655229	7.35592929390203	7.44794627450091	7.93729781957148	7.91107561801091	7.38581029845384	8.02354744655722	8.18644648626105	7.63751962304266	7.4109230637836	8.00474937270826	8.11501352961771	7.37879018419238	7.69017384507686	7.43212163614304
+"MFSD3"	6.25868566755365	6.35749810935798	6.90035855516475	6.1108494504929	6.72556112239163	6.61712474877403	6.24640678917713	6.16224581215029	6.4101073311106	6.9952404516643	6.22423182599757	6.82284599020777	6.3488336356687	6.38919980803588	6.55984205063278	6.2076770250886	6.5627526417739	6.77138660940201	6.48583228849031	6.99069973571694	6.89958662442924
+"MFSD4A"	5.68841713137734	6.70323185702089	6.52637129612557	6.82887676677891	7.36470934363955	5.58287523160354	5.33586134420791	6.54936419766153	7.56790672631937	8.01707049519118	6.58153122234887	7.84235678303334	6.68758619188797	5.69961323273895	7.05173433279362	7.29325569796062	7.49693847365294	7.31146376844088	6.95001843404007	7.59500918677141	8.20328346344674
+"MFSD4B"	6.81244476786773	6.83324859921476	6.36904335307263	7.14753551207823	6.35067281435056	6.84358724107361	6.92758957762391	6.75370528334562	6.99171416459304	6.54842905205547	6.69314081208373	6.61226735643232	6.97562130563659	7.16712106679049	6.98141528663597	6.29079601809376	6.69340799703167	5.90190869559496	6.99937625514497	6.85035120524506	6.49015506401115
+"MFSD5"	8.25261301780256	7.67964606253769	7.80261768077818	7.42796322088897	7.9509039554796	7.84851219529122	7.64126936625143	7.25731434012817	7.65868704943619	7.98354576289091	7.86370977524976	7.47570632364917	7.55447130812488	7.43485575263873	7.47063775738606	8.23649234917302	7.34163332187875	8.17233902837732	7.40338532100257	8.24523246484185	7.84864089442191
+"MFSD6"	5.58557673329965	6.32623834606277	5.71148482327388	6.00459691195257	7.22165550821918	5.94655800212317	5.02508040115992	5.71401154229594	5.85985127114879	7.36609930426285	6.96259133740215	6.83025122673422	5.873332768196	4.97840115288461	5.76194842517629	7.76051411382265	6.94020181458071	7.94171235073384	6.1020791759473	7.01238465764553	7.60831888749557
+"MFSD6L"	5.71493272597486	5.73049894643647	5.55157628532945	5.90799969052069	5.62236524624505	5.96433936169483	6.20881885861993	5.76511129205898	5.98498257630303	5.81166611232463	5.71069361488172	5.69533877172266	5.88427036403248	6.03800388395479	5.97583949658613	5.69458125306146	5.95897888462817	5.60847066114644	5.83127893085894	5.66689331829395	6.06401279182308
+"MFSD8"	6.58968103102727	7.08550581634435	6.38478577226468	6.2457716392685	6.82904831679395	5.97841935442572	5.96816076808848	6.58957098051297	5.99462070789619	6.61938999128434	7.10622800812925	6.68191214052236	5.70341349198382	5.898606741251	6.0869354697013	7.25045562782972	6.39366343117132	7.13542400556576	6.1490710299427	6.5936287639451	6.47062599457447
+"MFSD9"	5.40436781822435	5.30317269925919	5.64500838838533	5.20897720640494	5.50009819450143	5.95547836280673	5.25851256571834	5.19545623495123	5.50108151465086	5.38746020479662	5.37920493614175	5.46773167358444	5.55389973740371	5.39256889886875	5.39256889886875	5.13154971800555	5.4726342811094	5.40555889918772	4.92765743238199	5.61413435918208	5.36724102242157
+"MGA"	7.60702322642022	7.6235280606082	7.77660372558438	7.99860232927377	7.70126440366475	8.12714814952499	7.51373669733651	8.00659181667151	7.92454057608351	7.47599606085068	7.9640951705553	7.50783675485848	7.94379574000009	8.20027206615373	8.25658964345807	7.24154736908896	7.63085266874236	7.38916957927538	7.8127367896067	7.618480059819	7.22875650942833
+"MGARP"	6.61816161266659	5.93799545870581	6.16897512813621	6.4130287455316	6.17397764789272	6.05843054713556	6.64806030103261	6.34645282751723	6.54260798487004	5.82665811206717	5.62259646278022	5.57478929428611	6.77941331118178	6.24440430771409	7.15181067065972	5.80184903432723	6.2117797958924	5.93401462678509	6.22252446899197	6.2108835166559	6.57406075992679
+"MGAT1"	4.04338355153858	3.88951965574417	4.05302156762242	3.89562030559975	3.79340624972589	4.25489071756507	4.28474852817745	3.55969993101081	3.74960964436013	3.87919909259013	3.64251560948605	3.94916093441759	3.56437865927019	3.85210155178898	3.55648425166631	3.98073158955442	3.79232510451469	4.09830795972281	3.83326597565867	3.82390613538906	4.07195539140158
+"MGAT2"	7.75810530794753	7.29049734950012	7.35820030701362	7.46474757476579	7.42883528555064	6.85881289572813	6.73800347616542	6.81110916462199	7.42751376852352	7.27817562446131	7.39506220218925	6.70475435789639	7.30595193392043	6.94315452475284	7.40381197383729	7.21922774144341	6.76645578124086	7.43275549508989	6.96093508674805	7.38929781939504	7.32157527742237
+"MGAT3"	6.24645359066678	6.21132825155223	6.60057194147252	6.72540907508622	6.37851559993442	6.46458421166833	6.92319931207369	6.47663469854312	6.60050697790829	6.40570025813258	6.09847230178778	6.41514183788059	6.80258769912084	6.42316959745497	7.29628689856451	6.15263579531112	6.46027401161319	6.51627856568538	6.87444361533674	6.47012931901493	6.38502827349607
+"MGAT4A"	5.19737855520641	4.86787663311833	4.25027800614147	4.66146752800283	4.85618188332181	4.92659213856862	4.67761901688732	5.44260963814587	5.19595425960845	5.28871472889961	4.81094657678079	5.13834254221831	4.69398655152861	4.9657142570197	4.72513313900436	4.74266848891321	4.67741581378734	4.72243922883724	4.58693029802478	5.1891391753388	5.39742777520592
+"MGAT4C"	5.1097565332077	5.23389961059546	5.86167414781206	5.27305092201808	5.4700835375478	4.80505436217209	5.36280020088961	5.08434163260989	5.12646933060547	4.9827650428041	5.50969421530989	4.67930872219248	4.77441935565455	4.51501410259285	4.9204795149134	5.03441602134141	5.00715591395962	5.06334051280528	4.99532194402693	4.8843602161092	5.08672647127093
+"MGAT4D"	2.88238360933619	3.05251165105041	3.10493952916624	3.15472570692427	2.98866165690348	3.09782467255632	3.30897096902068	3.0944325351274	3.05251165105041	3.1082857868738	2.97223920986634	3.11470179696022	2.93278822791923	3.01603564126521	3.12491559952857	3.01705459794485	3.02766888290579	3.03914591100991	3.32903983690732	2.98849601512675	3.06894570217475
+"MGAT4EP"	3.15335373119927	3.41161618070944	3.34909650416337	3.10025477874059	3.24835129848328	3.73110242416464	3.31024342072561	3.18404779816901	3.24230196145342	3.49907232928224	3.13192476109091	3.32294907297101	3.33419767591567	3.80699179002816	3.42393497583926	3.24276375378355	3.29333285470134	3.37529893542131	3.38242612595864	3.2371083959586	3.2831387374376
+"MGAT5"	9.48706108126148	9.26988532894194	9.62359242760752	9.09226992505515	9.49546891821712	9.87430049447438	8.94367720341153	9.23336166364948	9.27247314717305	9.33231669729141	9.12091579981703	9.40624081474528	9.39663994331554	9.53138073514783	9.56999778834022	9.59768514524819	9.4159816044331	9.66923337360128	9.14262516446096	9.50104200149511	9.5303010784905
+"MGAT5B"	5.49638764804434	5.53869146292371	5.40330608944826	5.78594319069532	5.5941733389914	5.54450087133998	5.84324430367431	5.72227988541818	6.10054164523991	6.16915897528275	5.29028691306979	6.21256667014069	5.74640889311484	5.65837989096627	5.67622970421164	5.42244203056752	6.1487584420936	5.50727462774179	5.82440116735618	6.32632213928103	6.2285746760444
+"MGLL"	10.9129863252033	10.2430773444129	10.5585325777851	10.3356843845822	10.2961282850042	10.6192238921892	10.7577719130866	10.4479847139326	10.3484814448043	10.227429767598	9.9360019363592	10.1868378589719	10.631490270558	10.7279661636688	10.7376616234835	9.28887113428279	9.97038863774143	9.84322177994546	9.92412212123132	10.3349924883953	10.1206917516492
+"MGME1"	7.47247826937153	6.73380006409843	6.97090481669377	6.59625761981593	6.63677528558561	6.57662665952411	6.71955404869417	6.99523061134154	6.66749330873464	6.25516466942712	7.36413425986162	6.25423849628168	6.11041060482988	6.42991224557923	6.53634745258179	6.86320435330479	6.3484177062266	7.31644592333494	6.73917213173947	6.54370138251062	6.04331778705106
+"MGMT"	7.06107782298963	7.34064222997349	7.50916784561755	6.59728231889626	7.41002329303531	7.41646487286978	7.28088657988074	7.39061017499193	6.54545671829474	7.04182251631476	7.63420962274855	7.28127622003182	6.58793370991605	6.84072287378709	6.82494179519612	7.66034624745248	6.84427600649924	6.80620647061034	7.14405539298109	7.57443566456957	6.98685885931707
+"MGP"	7.66287012961782	7.24799372247617	6.88504463552737	7.23799929064437	6.24554015215156	6.76133741683367	6.38301011038432	9.60028014777943	5.6572458392971	7.72268286633655	6.42982305492661	7.73465136721665	6.01974707582771	7.49714015460814	5.97093926843935	5.66636323577809	5.54622927097684	6.40739700957139	8.83356433426897	10.3355334728558	6.93080966451022
+"MGRN1"	9.44956051493341	9.68279245426527	10.0334111261472	9.37699728745193	9.78977647583103	9.83405913165507	9.35828808233727	9.35174213717285	9.2885137894292	9.36054930290145	9.57128011757505	9.4775498322279	9.23978054424298	9.33735033394775	8.86744476791851	9.74285207885603	9.46800065132568	9.88735434283283	9.19921963237312	9.73050181787177	9.42605408124808
+"MGST1"	9.95925186433281	8.75611822570746	7.68984869236347	8.56060054596765	8.12123572194524	5.93900793816728	8.4500581527474	9.82519126186264	8.2138322262787	8.47961253535348	9.39259384677247	8.89006568476851	7.51439572125961	7.30493797449011	7.94421636300866	7.68304611320331	8.19324510082954	8.21763515419112	9.17627281906052	8.26129321017674	7.19760764587001
+"MGST2"	9.21205493507291	8.25186634736866	8.24622894927062	8.52214308020767	8.18654763129159	8.69804118331549	8.91530820254071	8.16125023143166	8.33763836874683	8.4304552254663	8.2120332841778	8.29223726830297	8.70244126481314	8.64329791007031	8.55249242208517	8.21350871000532	8.34629587899841	8.30753661967606	8.53133230882106	8.68177999487282	8.73019618095658
+"MGST3"	11.2048637886785	11.3353117687491	11.1570249902769	11.2172113378547	11.8313903291541	10.74749939743	10.8101447955931	11.0224485052773	11.3161611997474	11.6353035052328	11.1580050045202	11.5229347580861	11.2881710814549	10.9323422402532	11.272383218514	11.4813298818683	11.3016023935103	11.3869939583749	11.4431934101734	11.6476572537668	11.6834942486451
+"MIA2"	5.75476006435149	5.91248364709225	5.58975935777961	5.39603141205167	5.67787726231227	5.82276583989907	5.3829846352423	5.52968717236129	5.29857194884026	5.22881527915291	5.23293794494722	5.49085817475272	5.26528275667487	5.61908337197085	5.62310496652577	5.09484976826641	6.23307526924997	5.9721574541798	5.59902683995227	5.69765445041428	5.45945651233144
+"MIA3"	6.95371336136924	7.6994092955788	7.75707205176812	7.44093219102035	8.2159360357557	7.22827423519489	6.31932204157044	6.89125047695788	7.83799364513971	7.99380583929183	7.00173570825288	7.72084672235109	7.57440880044336	7.0920380200111	7.65517780585964	7.02522122835002	7.66793661774543	7.63425043570484	7.04532503647948	7.78962925628024	7.84584105255414
+"MIAT"	10.2179540117171	11.2050497714063	11.3927210667093	11.0451402941097	10.9480884679807	11.6717602662297	11.0753449630864	11.0345770604676	10.8175841265126	10.4831104356734	10.5867666613961	11.197787624241	11.0660678914027	11.037435961106	11.1339106266949	9.46540879997659	11.0502882331053	10.5200814656269	11.080035874259	10.5936344130296	10.8175357909215
+"MIATNB"	5.07374327250067	5.30858381292411	5.2326173793048	5.43938541893123	5.13917469360198	4.891431597517	4.73968701419771	5.2238486734854	5.3184091769749	5.11410948220504	5.24706629223175	5.23358481990444	5.40067776906181	5.2238486734854	5.10322344057697	5.51403668859576	5.30696667337054	5.30781582423028	4.8540356391735	5.14173736141981	5.10814171535672
+"MIB1"	8.58677756315635	8.67443036515605	8.59969156641875	8.79563197502705	8.86234162780064	8.06262991330162	8.41391144982069	8.8907349180547	9.21728621339071	8.61995096330874	8.66627810811408	8.84949257131792	9.05552786786783	8.84476231370773	9.27221382073776	8.53447791489596	8.92261814361155	8.89859547442147	9.07619569590441	8.5384393382062	8.34186445764014
+"MIB2"	5.98942528043011	6.1127883338436	6.5190871682624	5.99622647819925	6.2018589446203	6.54809057595236	6.42707593608191	6.11479270024948	5.92733571877386	6.20554527860493	6.16050366694276	6.23430585236317	6.36531182967695	6.61778694320692	6.34053027865777	6.05973763130226	6.15611244568303	5.84562524609516	6.02231191587072	5.82762605510861	6.14109849386254
+"MICAL1"	8.18980321775941	8.23721453739921	8.68430132698696	7.90467079231092	7.90548067029375	8.34652936815113	7.78783758600951	8.11375220362133	7.89597012361157	7.62338232870817	7.81790022856691	7.5556054354244	8.17366408591444	8.27810444512749	7.73911264311641	7.56308359895204	7.80800755850266	8.16804609095078	7.99486137752437	7.96224285028358	7.82128152011994
+"MICAL2"	7.84555534164303	8.63920045012463	9.32892285230068	8.7481546739095	9.4535044858634	8.77072342013349	7.65552350362883	8.52697018724382	9.10130395027644	9.30281606849839	7.77137264200336	9.38559031032457	8.88797004136981	8.35350121393145	8.64181581497673	8.26189365903527	9.43721141873318	8.95656678141869	8.54627146297027	9.61334087367966	9.24601988458073
+"MICAL3"	5.94734632941603	6.79918355530712	6.3275321981861	6.4711692230659	5.904431447864	5.6728665259251	6.02789736666907	5.79484862190047	6.05482970724688	5.62183134892392	6.38179415829727	5.30555963899545	6.70184503480271	6.40220405043551	6.39783548622891	6.03843630505466	5.74089704231011	6.02789736666907	5.97325139048016	5.78074594103573	5.76500536145535
+"MICALL1"	6.5737689102557	5.74008530657857	5.46603539153347	5.46657794777028	5.46205331744028	6.73490977868526	5.24788628904205	5.39103804160079	5.29456353635928	5.23917666183981	6.19954136396525	5.3479829995678	5.56135008809395	6.00563295251169	5.23456373326024	6.95993324856772	5.3629926675724	6.94447232833037	4.95106698722839	5.62038860660615	5.80285923736607
+"MICALL2"	3.96893855487286	3.52299050276643	3.37105046318496	3.92866675731037	3.48865621333298	3.71023474516345	4.67152030538712	4.19358578346246	3.95182661618818	3.46881468308915	3.63891516471704	3.31881712762935	4.51096346191545	4.0477503596697	4.34867946410241	3.32926779336258	3.40721903494759	3.5940220400786	3.55286835888967	3.44708022440208	3.63891516471704
+"MICD"	5.89834129612928	5.8169330019238	5.8137852037712	6.3404393044669	6.27162533429127	6.25598314592129	6.30456430930219	5.79484862190047	6.15249026699054	5.89834129612928	5.80645123334346	5.85845567828377	5.92322701433297	6.31480466650466	5.818540926552	5.84305020160301	5.90299512057408	5.80177472798329	5.79122367529332	6.07186956927495	5.85837686546107
+"MICOS10"	7.97430515231016	8.23493339346332	8.92545024808511	8.48521507405333	8.95760333710879	8.47906998034716	7.77604399227121	7.85586408614107	8.60135135729601	8.51406246590548	7.8247585459995	8.32259957421993	8.54642225248904	8.17434158260215	8.76568130123139	8.22557346202748	8.39931862078954	8.33741226510594	8.03943097090083	8.75032639663453	8.51140034932899
+"MICOS13"	9.13543552998954	9.20475261270269	9.72449881082708	9.12245651436467	9.65958545762165	9.21444442967063	8.93972050881661	9.03572476167642	9.11009484396908	9.67408542989733	9.21444442967063	9.49143711742148	8.95048521231109	8.83329927230723	9.01512750153909	9.47854125479825	8.99668573514815	9.69133877713992	9.09588846973027	9.87235655061144	9.46606465387724
+"MICU1"	9.28902162418711	9.63698461895775	9.79033085745782	9.49394595483174	9.88579858665348	9.34897291697458	9.03566690463137	9.48006000113758	9.56352574322582	9.80010966974589	9.34850377981099	9.78110070350494	9.32968987447421	9.17894785745493	9.25696334881505	9.58450045554421	9.78988726726122	9.66314537599738	9.49810157123676	9.81655620812042	9.59266951356902
+"MICU2"	9.47651751872472	9.83327628144895	9.66267603613964	9.58566841716708	9.71508047898392	8.9229918638865	8.77986290724415	9.50821457810015	9.5888579953001	9.59621841949789	9.95143240804825	9.51793515531306	9.45210672232751	9.21707581797163	9.59195482108831	9.95915877728171	9.65543984466468	9.93569581436661	9.60243272110302	9.38486567403737	9.62033323970227
+"MICU3"	7.80739431485602	8.82011254409754	8.9941403456058	9.20288811157334	8.91972176411131	8.28568135976279	7.75163130562525	8.71593206998312	9.24563829596296	8.86376274522589	8.71922114644336	9.2059280031495	9.52657430605429	8.29087114171922	9.4483730144249	8.59240374812575	9.26902083749963	8.74132993620858	9.08163322139187	8.68035174935184	9.49190770527128
+"MID1"	8.20032428596465	7.29017764343727	7.46442259749085	7.43843134954401	7.18676460669997	7.96784385016264	8.27500283470348	7.68739154760452	7.38827501748196	6.61377241405306	7.06769220551436	6.74129504376866	8.20292562251105	7.79215556769829	8.04889914252078	6.74800437823556	7.17302415154243	7.18078206761459	7.23652210019628	6.8726325431012	6.6594537916305
+"MID1IP1"	9.50364889013119	9.64808826714381	9.17339094301691	10.2026375785956	9.72351979396725	11.164632426935	10.0580064260804	9.33621930068186	8.94165240688179	9.53856114153399	10.1113188700551	9.32389901234457	10.3832798554131	10.288716107019	9.83510399606835	10.1453334571577	9.43672678566383	10.9563774453371	9.56069779799854	8.84603559174112	8.86380562187868
+"MID2"	6.67952644482321	6.55767116008395	6.68805439881202	6.43469333741083	7.17336149289356	6.8551468414019	6.63284919237709	6.52141623116222	6.65677901690484	6.91438709392853	6.38522547732056	6.88014815905509	6.43816147101561	6.47100220646293	6.63262547203154	6.82517389270081	6.78169918855507	6.85568628378448	6.68777794781333	7.04169080635198	6.94945326225043
+"MIDEAS"	7.50013559389413	7.47649242576819	7.56773102115341	7.70230653189857	7.57495511559805	7.40678584216179	7.18564402986247	7.51420418968708	7.43012423443048	7.13802228118697	7.50246417937703	7.47324523023964	7.39569454668355	7.09401329823256	7.29873585938857	7.49373001626799	7.44860503322014	7.77827380856226	7.03978448404555	7.37562094960166	7.26758424458766
+"MIDEAS-AS1"	5.64850582593102	6.24624496249475	5.54802695231706	5.08690870548293	5.35319904774444	5.41469645037304	6.05881530113307	6.05501271919036	4.99172540248122	5.47158748984321	6.53303343747362	6.04971197759917	4.90787253597501	4.73844844618705	4.86109255978886	5.79587398814814	4.97639528060673	5.0658480207022	6.05035815498508	6.135948916676	5.10385182147479
+"MIDN"	7.9231498124981	7.58617950403708	8.51529340962395	7.56212518158159	8.37813743525249	9.39796373237194	8.09855330971983	8.78114908047412	7.20383964401274	7.52030815719396	7.66530144145035	8.02638884369902	7.75867061310199	7.67934433408987	7.69750657613351	7.4583103012563	7.88127157311425	8.03976359733584	7.07201540259416	7.68949775510114	7.58262460219162
+"MIEF1"	7.74234052306557	7.61965351117263	7.3709664723543	7.17309129394565	7.67664506508289	7.1812003220016	7.59854118544847	7.59854118544847	7.43737420542785	7.85849097883458	7.58602837501745	7.59854118544847	7.31337044443014	7.36911047553308	7.71957655732813	7.7908956635737	7.44711045569529	7.9241085956354	7.42600428652119	7.77388993453985	7.61169404420293
+"MIEN1"	9.74487413911961	9.51595912868742	9.68209259999639	9.59300230039396	9.61161328360419	9.96193042296766	9.97191655498931	9.70979539402845	9.91292171632175	9.70979539402845	9.48180729310729	9.40936746990351	9.72974707407707	9.87499751833641	9.94984315551825	9.57289028821129	9.47018648351095	9.79481257185545	9.81870360841678	9.82863591023022	9.58113938376142
+"MIER1"	8.2697679177034	8.28786080776542	8.20039754275668	8.55878613957344	8.29901792441482	8.41157533806084	8.29901792441482	8.57956887758653	8.29628883404195	8.08484324019914	8.12980514971768	8.04224848474765	8.57565292207329	8.44496340705344	8.53897311767707	8.08078581343702	8.17636492786754	8.37691657449817	8.55722490933183	7.81960993242177	8.14474250955799
+"MIER2"	7.73156591976199	7.32269779097416	7.67317734335433	7.53107492002532	7.36440507720058	8.31449176766758	7.68537804962018	7.49355541611841	7.45678703154766	7.09287353115746	7.39755654776753	7.2050721414015	7.79646283011708	8.03470957992228	7.3301155915856	7.0660541336828	7.28234632199935	7.51385069531573	7.25220717975895	7.36515051851671	7.50256562513168
+"MIER3"	6.05069172755008	5.7030971137993	6.05069172755008	6.03753052476993	6.23726243868101	6.05069172755008	5.53282784543324	6.14910852328934	6.11891616539495	5.78358329151528	6.3484939304318	5.99125996348002	5.87406427161887	5.39014941968621	6.30595269110183	6.38386839213042	5.95897888462817	7.25163664147625	6.17957947574882	6.10924417841552	5.78018621835229
+"MIF4GD"	7.36262369709599	7.05771112758582	6.44732177230831	6.63038104076084	6.95371336136924	6.82724570875118	6.77535663926948	6.43600760854265	6.3541356752534	7.0901781821776	7.4979566985495	6.63217114968613	6.24501552325123	6.68658620267005	6.13795199772882	7.38912968921701	6.44280087902458	7.30316588433013	6.70184503480271	6.8341030871824	6.60196770489656
+"MIGA1"	6.69169500072987	7.8072070874934	7.33719531099186	7.41392145041462	7.45698436278927	6.17853822132009	6.72233260385165	7.27420202070183	7.45153200838495	8.11994982188577	8.29361544570344	8.11625197353154	6.91681225477585	6.46889753563765	6.92038818915808	9.03191399409433	7.9007607385622	8.45466829366779	7.60455444493894	7.85927741463013	7.20904874364672
+"MIGA2"	8.16204913792824	8.18035420720773	8.51947236212133	8.25554398657425	8.46113248793375	8.71256973393177	8.49513318320373	8.1667419338896	8.57695713956182	8.3884792251413	8.0702383408591	8.10070941564407	8.65163918299334	8.59425855901182	8.48893525656706	8.00619340059111	8.31380206341104	8.25361076114394	8.2107255239082	8.32858331905954	8.29083631023493
+"MIIP"	7.61816813461931	7.52617553032153	7.66600573815119	7.60121478309336	7.25932035815982	7.7873213039943	7.87246764880947	7.57334152484879	7.65152780934477	7.65042600168502	7.6537464024793	7.54824694192761	7.69551945116139	7.64537087765291	7.79413751237395	7.57902767463596	7.54283023907843	7.43784169775207	7.79831156798551	7.475578991378	7.61194815146463
+"MILIP"	6.13276516759314	6.19433659217344	6.35430717119677	6.57176007872522	6.19769933883675	5.93837351243616	6.4501344114403	6.08949887887305	6.36479379618262	6.33406784217855	6.18788767609818	6.33406784217855	6.6341328692733	6.5381856461169	6.47390346935707	6.13843262098016	6.32888704152907	6.11424558377453	6.32603803871835	6.43792260339739	6.44649106375713
+"MILR1"	5.35186110851775	5.23389961059546	4.90070955105534	5.15991697866843	4.99016038246349	5.20911120086261	5.3487329703887	5.20263330204452	5.14597712308043	5.113050970357	5.39363691402018	5.01933011131636	5.18814799290579	5.36221663359767	5.22823855001128	5.18814799290579	4.97416679943203	5.14251991241452	5.32638020967889	5.08960984851249	5.52412691775872
+"MINAR1"	4.94875686287784	5.23852966635855	5.60785149677568	5.28198366259996	5.46694263992659	5.26868570765551	4.95608394738371	5.19483956219444	5.08978719263017	5.29274730601974	5.11663117230171	5.46396809792241	5.13669043048858	5.42472912538353	5.03666229642375	5.07868676067526	5.37354272382452	5.12781458513376	5.06164922929913	5.52977644235015	5.41989040510684
+"MINCR"	5.82817944982391	5.4915103273265	6.24539604450807	5.73050484365034	5.47765166385736	5.43828872966869	6.48305487178759	5.98480500262392	5.77647896983757	5.58681048883311	5.77540410986234	5.73963371950076	5.60918571536277	5.64010486729087	5.31728497265554	5.95504056844257	5.79851700904927	6.0466899976997	5.73963371950076	5.73402039358318	5.2992386944742
+"MINDY1"	8.5112769352948	7.97157870932847	7.61424245919626	8.07157110274389	7.77930714127507	8.44479475388112	7.87010947770875	7.85322026538136	7.83965397786899	8.06369156311166	8.50017351521072	7.78949590059573	8.03407033828458	8.24502557863038	8.11590275139565	8.83823471067263	7.89130808778935	9.09465940377438	7.89971453584361	7.80772828707095	7.93192232132606
+"MINDY2"	7.56518343518351	7.65045981308817	6.93112086227745	7.45053113496417	7.56071219189452	6.16387813994318	7.58720926107814	7.83443446317354	7.50179111060163	7.64011698180338	7.94028542043083	7.44156414442754	7.36854231057176	7.35592929390203	7.61019117900755	8.09037420928018	7.65445316793624	7.6358846244909	7.70854743510084	7.36027252362718	7.59901383660594
+"MINDY2-DT"	5.6272702913689	5.67963794227229	5.63799628823465	5.51651113297985	5.27763850724945	6.14070676187339	4.95650912070188	4.94508075714046	5.06859021238694	5.35413181808782	5.91481798619055	5.3134079121776	5.25255474757163	5.27552260483648	5.25871142838566	6.1174470978596	5.00820565816601	5.71112827900272	5.20895394274772	5.12324378140508	5.25161464892346
+"MINDY3"	6.5113132563821	6.9132475821373	6.39895132503548	6.54776348280082	7.18198772176545	5.99667501702236	5.98007674428517	6.44358378527294	6.30123451371166	7.16903184016095	6.74664628377166	6.99515930997841	6.23519909550181	5.92215013472151	6.25623720461413	7.61061501448199	6.86972268178161	7.26046706821124	6.47709768371287	7.32685520450882	7.0038208925016
+"MINK1"	7.73251934898295	7.09767536835795	7.12024968576774	7.7678587344017	7.66239294249398	7.27294917284852	7.60288765028383	7.56674551594258	7.19485561856738	7.32985185553349	7.18290519332548	7.51788906086899	7.17807361292493	6.92911942099716	6.93811125598975	7.25654246617651	7.22131673467678	7.21553459191859	7.57553821560012	7.37053316427458	7.24260358973773
+"MINPP1"	6.84759915145252	6.76007106736546	6.8637261354177	6.68448069926038	6.83164088352423	6.70579919937004	6.35354991750399	6.566622328069	6.57346541016422	6.58160740760559	6.68448069926038	6.52022031169645	6.8643087718803	6.56856462623113	6.90784839437849	6.71816329940552	6.56095134353808	8.27365488046441	6.66083767922769	6.53820335314459	6.70001076004301
+"MIOS"	8.23287850160572	8.04357487568172	7.76137632232026	7.89657184425738	8.18706406770131	7.34840041036213	7.65923741911641	8.1287539376264	8.12804647575115	8.10724990038968	7.82816238725928	8.03502906407461	7.60398422464006	7.50168104002169	7.73163516757723	8.13715622148271	7.89600478623558	7.99807959583268	8.02834469091433	8.28234458166721	8.00786837767425
+"MIOX"	4.38307778644044	4.41482964878047	4.54919482034049	4.63139139481552	4.58713175055281	4.85825720840622	5.29964290943973	4.30686833779076	4.59556098137723	4.56006374451553	4.38076383000076	4.60650170987708	4.84431414565121	4.59799660666971	4.64293971194285	4.31642522816213	4.64423178974708	4.4126508535015	4.74278328298382	4.63983044966925	4.63528635938146
+"MIPEP"	5.40464883805807	5.23546994714125	5.22592053644453	4.77011718076764	5.18971574364614	5.09302287841221	4.73652202160009	4.82921501657327	5.07450587069028	5.29923248674765	5.48662201060028	5.08911118127655	4.68686503143193	4.99674519051854	4.86782349285225	5.62970195727571	4.84239873459083	5.74964746445555	4.92087326721448	5.54247837989785	5.28019541784782
+"MIPOL1"	3.84203316643673	3.63380446419854	3.57853627777442	3.97521665806832	3.84556242348548	3.62160727492543	3.90558975628343	3.79431407046826	4.33380663006425	3.79168424915451	3.84054160309622	3.78944395953138	3.81400859426248	3.80190843899889	3.96701825719966	3.84472646043559	3.97230757090612	3.84054160309622	3.90049409357466	3.84054160309622	3.75011941932722
+"MIR1-1HG"	7.03106911285298	7.31337700786311	7.19132642333045	7.25052041564776	7.18620995017765	7.63957328781717	7.50117413822986	7.08838201979844	7.27088870941795	7.30746926231935	7.16225664763852	7.3707157464223	7.43798942822101	7.56473805915558	7.34954655667723	7.11480111714168	7.22704443361305	7.05695164124205	7.26350511737133	7.27129780307389	7.50018964520425
+"MIR100HG"	6.73253309867692	7.64952881271001	8.32195376633624	7.19209681097533	8.14370154978093	7.58680895169394	6.86796005022871	7.40373742557083	7.72624489715341	8.11024332453574	7.0699078698442	7.51577556954507	7.65437548919991	7.30091678129041	7.58466602642201	7.01811892350965	7.5273386483443	7.49643997537564	7.59694588271496	8.10940288798125	7.78389576601805
+"MIR101-1"	5.85672746634159	6.01652077994026	6.23933231420258	5.98737603366594	6.35118538850049	6.4103617868953	5.82151633792045	5.72502729100828	5.92514139330518	5.7183878550544	6.52186679055026	6.02613083791104	5.81427036256262	6.29635446335532	5.85328390801509	7.0570916719722	5.89705787345394	6.60251854658138	6.05626331894364	5.72800747281735	5.79649518764111
+"MIR103A2"	5.52560603008581	6.07447242365776	5.85552734731668	5.79237698499876	5.84479045011568	5.29300513669597	5.36843757546719	5.68730587326012	5.59308325613913	5.67106333509768	5.72436961274947	5.72586054501963	5.54852518296184	5.19353823347321	5.54849986368754	5.99104715122984	5.57694663993	5.74955315607748	5.51358449904286	5.89874838007556	5.65905373265737
+"MIR122HG"	7.2388904547087	7.17263586455627	7.3429821659749	7.58791106576307	7.22796126628441	7.8360672402349	7.95691170933866	7.4194029226166	7.55314333567453	7.32675677669216	7.02693111691406	7.39858240729782	7.6690769271228	7.7812308094078	7.29177181871763	6.89142407346852	7.27951675935186	6.87590087148581	7.45371959021778	7.29699073541584	7.35020417762226
+"MIR124-2HG"	5.85854817269321	7.59913227531071	8.10899251945518	7.27811658192668	7.72050803623521	6.73470561573854	6.31665112178873	7.28471153085144	7.56224194552026	7.22280778426351	6.64447172846236	7.87767751834021	7.29730646057925	6.56694225135343	7.72158817504688	6.3850449786764	7.86927295179638	6.92826408751487	7.47082294051918	7.21509010090748	7.31986575277539
+"MIR1245A"	4.82949347746716	4.65784150181301	4.537699768961	4.60911989499366	4.29625812268742	4.45054568201561	4.64716985654535	4.35344682562761	4.30974053823728	4.61992321078716	4.253648913483	4.54137198263651	4.51723048587514	4.43877670399564	4.37874668775178	4.5800547114801	4.50086539285675	4.12982681872504	4.83871215310789	4.3591311616504	4.57145672396517
+"MIR130AHG"	4.00967676648148	3.91937953682002	3.76221162118253	3.70572829334329	3.74497321443667	3.88509171534632	4.15158826327764	4.00368034418195	4.15426958764343	3.90731152774319	3.87542785772128	3.88509171534632	3.70870790252978	4.03827328810491	3.88323215485893	4.21490682378877	3.88509171534632	3.80341111409277	3.970986687357	3.84829815607767	3.8004895704369
+"MIR133A1HG"	3.29281919625941	3.49259472633868	3.45543993057874	3.46822002121371	3.52714349923848	3.47625822556075	3.55956046883555	3.42786699603269	3.43360867364477	3.41966566048059	3.45543993057874	3.6099220760968	3.63135378307215	3.79340624972589	3.41593776993089	3.45543993057874	3.34258671163457	3.39101604364589	3.23001986033186	3.33576891405626	3.50040246998293
+"MIR137HG"	3.04926738017199	2.99903339579652	3.19926052382346	3.22658652330681	3.05520548873392	3.25680789510073	2.96848122732766	3.20464956827627	2.87685001830094	3.20722492333442	2.78673520621093	3.04926738017199	2.89523780334109	2.93596527313216	3.0592137607221	2.92316165099387	3.04477611496438	2.92633984180525	3.2670374172223	3.2038845510062	3.10445188916792
+"MIR17HG"	3.48015442606163	3.56846491218485	3.68241311620706	3.68936854842024	3.56117802933633	3.46913750885564	3.12966353641841	3.52354357339947	3.39252739700983	3.36839328170944	3.28061479347679	3.48015442606163	3.27051517136774	3.46536677122611	3.38269239116116	3.6191733819252	3.51508842484289	3.48339366190376	3.41594428065343	3.51508842484289	3.51507763499261
+"MIR1915HG"	7.59479337786428	6.12847089168474	6.3850449786764	6.35984627080846	6.12847089168474	4.29521476861908	6.82816407042622	6.37035590146036	6.55409957937769	5.46586866529518	6.27366568397863	5.5584182904576	6.69761132646398	6.01539250452244	6.5999965999939	6.00657272092441	6.00127899404849	5.47522793772148	6.33262954394453	6.05911335515184	5.53306197463812
+"MIR194-2HG"	5.54198084817507	5.83989278564331	5.66527197731349	5.65944553115649	5.92959466920298	5.66721709240534	6.06745393468604	5.7958551858243	5.83489135196075	5.31416294443233	5.45185750712949	5.66721709240534	5.84603519291827	6.0041131958007	5.91593622219693	5.67292968400254	5.55988687520807	5.2959536581184	5.66721709240534	5.74830061973907	5.53351509717497
+"MIR2052HG"	5.75073981913942	5.8198486205073	5.77367270419549	5.91624259200538	5.87931475295805	6.15394864123095	6.04461373683213	5.75918292024974	5.92969200409468	5.49896186311841	5.4299584907172	5.83294358331683	5.77579206134428	6.037839277841	5.87811730772844	5.70362747972203	5.74228467058284	5.70359632454133	5.8256356157391	5.67230232853763	5.74093083681306
+"MIR205HG"	4.01413626386506	4.34057268666813	4.31775373373273	4.53067030667852	3.97629130140813	4.28817992480473	4.47882931389556	4.17574262987547	4.42260372235941	4.2947976575029	4.2063017304895	4.4736360571089	4.30114067994012	4.24826263077611	4.155149593928	4.53552366041602	4.31493310118718	4.09144656028409	4.28811339558514	4.19318256284324	4.32169201039959
+"MIR3142HG"	4.59232016031443	5.04983757288791	5.00112102507276	5.10902192077971	5.14326220702728	5.62196324631988	5.5941733389914	4.89223431478639	5.25801353154726	5.29286165087959	4.92381763142307	5.31560318788808	5.32989864175296	5.32402396181062	5.37606948239258	4.89578696287617	5.02557859274936	4.83253003256814	5.24976090619092	5.14035618585526	5.16797457210648
+"MIR3147HG"	6.30035662830259	6.276984677745	6.28758180872781	6.39733738039568	6.33582632417758	6.55303144323468	6.84177589602659	6.28292719068027	6.48915036193097	6.52050027187983	6.34272912999601	6.41514183788059	6.59114140236684	6.7799921368454	6.49606049122244	6.05406807743448	6.45987207452003	6.09863952857606	6.58404107768013	6.29981936815715	6.24624496249475
+"MIR3149"	4.92035812455055	4.54453560256126	4.40827564418163	4.67267070590392	4.7189793348538	5.0347783190102	4.80939207005292	4.84884194014052	5.03446273339232	4.74869060043687	4.67455802283392	4.85699150076373	5.1251225460289	4.91312962792485	5.26031119886685	4.71321606448087	4.64319277203087	4.91323410095985	4.83618863027766	4.66358575051503	4.46135047832478
+"MIR3150BHG"	5.75562269865165	6.0518882389905	5.83109489151347	6.0748508811465	6.11806269472618	6.03797680208941	6.07968480765074	5.93828704695615	6.33225132554143	6.091489025381	5.72021206667438	6.22461932194347	6.1594224914756	6.12345951287606	6.02306112235005	5.95642003886856	6.12087073705124	5.599436532163	6.0518882389905	5.87158562155245	6.15271977718247
+"MIR31HG"	5.65257530692571	5.73469682840594	5.69459009527756	5.84260166923405	5.85930020880206	5.85037860556996	5.69950039957731	5.78050559602777	5.85037860556996	5.85037860556996	5.61558515479417	5.97793759469378	6.12256061257579	5.87147498588379	5.93205920682351	5.84157033033387	5.87083189147268	5.76502119321248	5.84345232309875	6.17356817812289	6.29033730240928
+"MIR34AHG"	6.26717715624235	6.21976314139905	6.22588110658254	5.94866272021249	6.0684358561432	6.08957784635395	6.22253266766274	5.6807689968362	6.0492698256869	6.18703009498232	6.53159137651616	6.01839984652521	6.47036258168326	6.58248156418568	6.59587348573034	6.21976314139905	6.20985857145542	6.21976314139905	6.08105134415333	5.98737603366594	6.72432104238524
+"MIR3663HG"	3.32805483791351	3.00700210056803	3.36446203391564	3.12703714893133	3.12652081518396	3.25040373049104	3.18911246908135	3.1326145007386	3.2036059093893	3.12171342573941	3.07682142510086	3.27005951628574	3.15661021599238	3.28301693897294	3.15004762410257	3.08379405470618	3.23450181812465	3.18355644452482	3.12134775472086	3.15661021599238	2.98933570137422
+"MIR3667HG"	6.15339090667897	6.08087226950355	6.36684748168555	6.46244777372304	6.0175600740613	6.52524358628569	6.80451938649997	6.23711070267044	6.39487517988831	6.71817458330374	6.22440030476443	6.41514183788059	6.53338909306018	6.57367484810607	6.38178891611244	6.05248189102337	6.37380576150703	6.26078562621191	6.53074876580759	6.4130750143135	6.58345083922934
+"MIR3681HG"	4.62246794283613	4.73437084230053	4.5577977631387	4.76906997379556	4.80589088998748	5.52137575025762	5.41970422445911	4.73726279602683	5.03217051738398	4.74267088398313	4.54991527487382	4.84520556885395	4.8717658240261	5.05765677046814	4.95842095154567	4.90691875983066	4.85645203047958	4.52529612476214	4.97192080597164	4.82167094874596	4.8717658240261
+"MIR3682"	9.15664032718958	8.21762038531116	8.41216752211895	8.23935743420312	8.1800090299465	7.16508933050483	8.13847867710983	8.08802640867691	8.12431008453095	7.92818543725606	8.57057892575911	7.98142040061534	7.41155683324252	7.60724898160422	7.68810837027754	8.09809749159192	7.77649636637098	8.00153328066763	7.8207772421581	7.99705890082	7.55080806768645
+"MIR3685"	5.81013376855446	6.41476842940611	6.89821668283071	6.54129288072661	6.44120515571959	5.69460617657068	5.4191962668675	6.16311655121182	5.69153868071485	5.94012709463831	6.16750867078697	6.34959914289701	6.19790891022994	5.67434258261107	6.23834263347193	6.34872279921336	6.34599438748468	6.71026750674883	6.38526109415177	6.19599265346627	6.0024476064161
+"MIR374C"	4.62741798493231	4.66399053852492	4.44934449714543	4.73087425700883	4.51871830484942	4.18252984410557	4.46709248797279	4.62894940354289	5.14196135137789	4.62046408357082	4.38253258931083	4.84713413983384	4.62403072783591	4.91708269845351	4.7161515452278	4.16766503364602	4.58780751943254	3.92821160617926	4.32039890702135	4.36986406934243	4.78493460172541
+"MIR3936HG"	6.04575205755931	6.08819268928413	5.98629303404377	6.26781069348877	6.09470636228604	6.1999495685313	6.2188412762905	6.06671086430939	6.15338545202659	6.12794630509396	6.25941148635567	5.97196099879554	6.11820181099476	5.93069735179312	6.15227354450589	5.9663410627816	6.20821707590014	5.77412071202729	6.16517586804058	6.01551510296191	6.10392580599002
+"MIR3939"	4.66059561265423	4.92878564089696	5.70415404580882	4.43896569529036	5.19441717369769	5.34504903827855	4.40063681373571	4.67205227365848	4.43173572652078	3.96120199736698	5.09771522441116	4.76775001940737	4.40146942902116	4.57512919121534	4.51727736177648	4.70673786794896	4.65690430748062	4.82154095584101	4.80228816585171	4.63380530114869	4.35925923430868
+"MIR3945HG"	4.35746787938745	4.67896916794142	4.49683147342464	4.72475513457398	4.61284354163675	4.94639269117141	4.9177289331899	4.67197886437359	4.49039490481382	4.41972997624851	4.47126382810876	4.40476202051069	4.70580499115766	4.74761825224758	4.48958537707514	4.33359668893779	4.5660268815485	4.27527109123339	4.38930714933253	4.60528871940819	4.39077377757696
+"MIR3976HG"	3.84592427845011	4.07460118712054	4.0043176428295	3.97521665806832	3.76896013492598	3.97436784964571	3.97449984283897	3.92364836097938	4.50899728258097	4.19458545756996	3.59501633405023	3.85661323632788	4.04595849331826	4.35438533334403	4.47260136620496	3.62594050979001	4.22852663310281	3.79061344298342	4.02680057863291	3.95038249249804	4.08609916449946
+"MIR4280HG"	3.4659240289564	3.76544793976413	3.63444629303596	3.5716654536444	3.76796652489828	3.49363360227971	3.76668706771556	3.78757589385441	3.89750769692117	3.72421426249425	3.70034397628044	3.83021774265647	3.56790923007232	3.48979292983585	3.7154902318121	4.04458657771388	3.73254179305425	3.69579608826676	3.87156146395982	3.5395019408476	3.90396177990037
+"MIR4290HG"	3.50310234788329	3.40226796420328	3.66321593686181	3.49977193965819	3.7490115840093	3.73207981806042	3.35142951660031	3.47298025610708	3.37186446879837	3.29668645000215	3.54075619172618	3.45721207318627	3.36819221420478	3.76021854675066	3.90527208519706	3.39307266555495	3.38598318554094	3.31261936434989	3.55754031651625	3.27420848537286	3.50310234788329
+"MIR4300HG"	4.59718632132266	4.72917481892978	4.21899133160189	4.70796501547637	4.53627807062997	4.4679943188629	4.87459219617044	4.87737012364939	4.8654186696607	4.75201389683641	4.41364684860882	4.6404395767235	4.71247736267854	4.6404395767235	4.90638194575985	4.79275864897587	4.67597548742446	4.3010524806569	4.61997428331328	4.49926571381776	4.7096388695463
+"MIR4307HG"	4.255727397313	4.34057268666813	4.28370476771521	4.28701761497615	3.97283003781589	4.47816977181105	4.50388666281917	4.22823142625668	4.24481429111272	4.11248207883309	4.05876064488541	4.2970079212725	4.52152036359482	4.35606266837611	4.69250319206942	4.07867150892266	4.255727397313	4.04850011170331	4.21559208543471	4.20629373294331	4.44513905779915
+"MIR4435-2HG"	6.52813120898041	6.64911266570444	6.3288078210086	6.86514611500985	6.17787263035745	6.63981681369342	6.92943101169899	6.42208849838726	6.55782606479579	6.59878477158312	6.57854595319564	6.77078243384323	6.59219254372013	6.58167182994042	6.63457931039571	6.53974305269763	6.80836768137405	6.32553781348112	6.42724343674634	6.61602056782554	6.66274590863079
+"MIR4453HG"	6.14505941677971	6.09759014763859	6.27491531476537	6.05300570708594	5.89087241111259	6.19182193197749	6.025756403994	6.25223894174926	5.7532884711362	5.82529699530852	6.42268143394139	5.81793654266135	5.61040359037706	5.597977383873	6.24030473746023	6.91002462561329	5.7717435372485	6.78165909746431	5.94982765198151	6.0339167554656	5.56035088690433
+"MIR4458HG"	5.47431072115021	6.2259766091754	5.75175396765662	6.00740680834723	6.24624496249475	6.00990179220662	5.41939932949568	5.91912861020044	5.70470869573999	5.98034460466752	6.20863312812684	6.00457220724118	6.00983965162323	6.22252446899197	6.06102832852076	6.32400333796284	6.16604842959676	6.75124128122309	6.00457456699752	6.09771761296288	5.53727741934312
+"MIR449A"	3.13577898992879	3.51790186966602	3.29962871563439	3.289778436223	3.0788445765683	3.43982437934457	3.25229475958762	3.28190934297026	3.13489566557437	3.22900583361501	3.26267207146602	3.63227839101518	3.26267207146602	3.28881978606701	3.27125460554066	3.25893581041084	3.25574739164073	3.26267207146602	3.40418460694975	3.26267207146602	3.21202509180301
+"MIR4500HG"	4.15951214542218	4.18395160482085	4.48267354299265	4.1129157976824	4.53071550714996	4.35257777701109	4.61284354163675	4.2065619904654	4.52297273096059	4.29093381247717	3.96954976738505	4.26731843460554	4.38547496516156	3.99323239348668	4.21239576098845	3.88592411224285	4.36423801558664	4.03030608774671	4.17725751577977	4.64925109600923	4.21749257809528
+"MIR4527HG"	5.18391081129588	5.04543422398837	4.9993475656176	5.41242109742975	5.16832902236931	5.19010687628115	5.31379708826546	5.16832902236931	5.19973652481879	5.3252603479945	4.94049869186749	5.2400005343398	5.33070060670217	5.16032201417181	4.88146939153965	5.16832902236931	5.13978096394019	4.90981208521978	5.27910912723124	5.31463507945076	5.27984389314976
+"MIR499B"	7.43195683625909	6.31296904491836	6.30086818746872	6.52107453613054	6.00189992501113	6.62240529852806	7.22437594784766	6.38000416956987	6.76979960238429	5.61145451136968	6.98143324359892	5.98186329305425	6.94718828066515	7.25479260826584	6.91713900705786	6.89142407346852	6.06722970893727	6.49948893252144	6.46044799784965	6.03984642699737	6.46262702561821
+"MIR503HG"	5.00178978182555	5.05497694948843	5.05497694948843	5.22778717049978	4.96569955078013	5.15886462603733	5.02911786542874	5.05497694948843	5.25255474757163	4.83345940052392	5.05497694948843	4.92457397983582	5.26349923788006	5.35099041584497	5.22612656015658	5.13014064326792	5.1034419624707	4.91796690909661	4.80444737406399	5.06431462923466	5.18871848788666
+"MIR5188"	3.24286658971585	3.34241028109045	3.32186848158757	3.27198387123035	3.50431537075173	3.67998593806453	3.25134754149271	3.50659727322135	3.4839046650788	3.34594019002043	3.04554054193651	3.33845617202225	3.31735325160851	3.34594019002043	3.51581118899824	3.49400705524985	3.29144686048715	3.1379026446718	3.4918178335181	3.55061190566757	3.41121700484919
+"MIR548N"	4.71683493505374	4.5181945743038	4.67889800484142	4.57105382592285	4.88410778817843	4.75391176901744	4.48109045422356	4.72083029964895	4.70608725596277	4.86098718806143	4.49815894021522	5.45296056372871	4.57892197549829	4.46629452148446	5.20179244782334	4.61284354163675	4.72083029964895	4.99169548668545	4.7158426269722	4.59145773072602	4.99695643229299
+"MIR646HG"	5.57511348413823	5.12306897037482	5.34054450569649	5.20014430525019	5.30463414796986	5.28716180249163	4.9292361736262	5.73934832548545	4.95072164018613	5.12906069912838	5.25381954430821	5.22066413816458	5.79760065277712	5.32947392958564	5.20426834963173	4.98020574890097	5.00731557971679	5.26415096303388	4.95650671394836	4.8761011125377	5.03925095414098
+"MIR670HG"	5.64430796520755	6.13224174478385	5.94795479227127	6.12384321541685	6.04150327463393	6.28878864569956	5.95137281406945	6.04150327463393	5.84080648203297	6.04150327463393	5.97102597737401	5.92175860567387	6.2423299779214	6.07984471426491	6.02954890191417	6.26414797400562	6.09203824212504	6.04150327463393	5.90101842485174	6.04150327463393	6.05137977506246
+"MIR7-3HG"	5.29535900289257	6.12336326756052	7.21381549847327	6.45160616094009	6.70242298335171	5.47918346557155	5.49655652533604	6.09490492613575	6.09856310434799	6.33582364152035	5.45649008658272	5.97445293212557	6.14823467706686	5.53251290734375	5.92258339940651	6.24443397539332	6.18619783200992	6.60424680594401	6.42476980751571	7.57365647361552	5.88811592066716
+"MIR7111"	6.54809057595236	6.62875171226049	6.47807534679457	6.63535821962122	6.24307382931541	6.93178928594912	7.12034826694868	6.65243809023816	6.53698858585606	6.62875171226049	6.64942964815253	6.66482685723527	6.6295850338456	6.60238011436177	6.82722703639443	6.39424277091188	6.74984693723555	6.35697410606161	6.83138762615566	6.5300014285435	6.53428267148438
+"MIR7515HG"	4.39033659790258	4.46458792729487	4.49493856007942	4.48101624424806	4.47882928475566	4.48101624424806	4.90196743943769	4.45434648706809	4.25964408136486	4.48101624424806	4.34729712093559	4.48101624424806	4.39893437511516	4.60025888529436	4.46417377491566	4.7478186088461	4.62856308716064	4.52625326774643	4.30024934253986	4.49196791121969	4.68565883951917
+"MIR9-1HG"	12.3225264224009	12.2118842768644	12.18543501219	11.7689786376833	11.652714526625	10.6819742264483	12.0828653481616	12.3263405217175	11.76007056074	11.4158626781533	11.8082675972853	11.3395648267004	11.6605817465383	11.9018389206021	11.2748181846176	11.824514912875	11.2614728519236	11.6301203241277	11.5368172830049	11.9293331374275	11.384526557234
+"MIR9-3HG"	7.31065031450608	7.74891912700744	7.90738881492182	7.41575229865235	7.39945607640321	7.47114426859972	7.74641146826211	7.07665612434913	7.74033052511734	7.47970319001946	7.29893388008204	7.05431537897466	7.79979070864972	7.70546257257865	7.6361244988896	7.22577848659735	6.92820380916314	7.31777851356008	7.30322561327407	7.63782636494637	7.49479089706456
+"MIR924HG"	3.04385858196007	2.91238216362549	2.92936981107208	2.96635666977636	3.04317668339237	3.16066699789616	3.18395120175729	2.99735077986482	3.03037230570003	2.97592694330417	3.02534641187611	3.07838238089263	3.18273952527875	3.09207095793142	3.17060261855207	2.99225511715606	2.96635666977636	3.03037230570003	3.3024339101175	2.95390387261484	3.03037230570003
+"MIR99AHG"	5.90982427688506	5.79976601284619	5.92771627710949	5.98268665332142	5.48366594007228	5.85655801631669	5.03996859131892	5.60673907754473	5.55858795840185	5.04052363014191	6.06974184733627	5.47831590142259	6.21335340776039	5.15318726690301	5.87508327525775	5.48737761385762	5.58357202508742	5.31521320565085	5.67034715945508	5.073686255871	5.08574814863798
+"MIRLET7IHG"	5.37818553421165	5.32459411028114	5.59324102011745	5.34524992282612	5.44454170149102	5.69050004291591	5.63033857329767	5.04103314780676	5.43221933912634	5.38630060270381	5.52111849421738	5.13791521079189	5.37311770583812	5.51567692906958	5.31486628808662	5.75124342561447	5.33690871494269	5.45617111539987	5.39080371179689	5.12381749165251	5.27581943548013
+"MIS12"	7.27301112339064	7.18923599739027	7.04764217509731	6.99760280697406	7.10106558232311	6.90477086041299	6.75200252157467	6.98596813710612	6.74659924706883	6.89840141405948	7.16441337959469	6.8985746853579	6.48673080337417	6.90761215621399	6.67015367591922	7.58695779674065	6.85197555277325	7.74478590642992	7.0038208925016	6.8715128796197	6.95426747079359
+"MIS18A"	5.23479383467319	5.75973378549581	5.92074180840175	5.62453378789713	5.68234795543628	5.33877738498031	5.17164304831068	5.32588283961817	5.76606690595801	5.80632232107127	6.1650804230639	5.47657042736092	5.18841042394199	5.26685472005569	5.47631352994912	5.95922123901396	5.55164005273765	6.05025315217361	5.40463723474224	5.30918070843266	5.5927933481302
+"MIS18BP1"	5.03680590140637	4.87926010372875	4.54905456264564	4.82433820149641	5.28948084130776	4.57160784749659	4.47451502851017	5.14544451817511	5.04935069893869	5.09122390903668	4.57954298452496	5.07209308596341	4.24039089902342	4.92618229805439	4.65917212303492	5.18006832460228	5.27812549480825	5.11583628446695	5.01147586078321	4.71365991119979	5.181838456293
+"MISFA"	5.33925491444129	5.45505103799	5.53558815764076	5.45124121372987	5.59440009464773	5.70147222563825	5.44441234563391	5.45124121372987	5.34332308010312	5.57017875006083	5.17077704315271	5.37903111423927	5.50306208364638	5.51104618725336	5.33358936572871	5.24084662028821	5.3924196931465	5.05004262980432	5.56876082013031	5.3924196931465	5.41726058416439
+"MISP"	8.02031803425304	8.00963860588769	7.66454775829803	8.30514356457547	7.9069260112415	7.89966051016108	8.693848065043	7.99346210816923	8.20831844098278	8.22280196588853	7.87450672015614	8.1177939128294	8.26252155105178	8.36045557221818	8.1415738525333	7.85394539109723	8.24650524720152	7.66693093435093	8.18106010388037	8.05311506984221	8.0915916946239
+"MITD1"	6.73481302971602	6.89431451881217	6.6528473374998	6.9415752125529	6.63960573218209	6.25355011499291	5.94152404596109	6.76744992263498	6.55718603044048	6.48836473927019	7.25925650768185	6.25106899648582	6.75037933511179	6.28336135838873	6.9817853742385	7.22736225986255	6.16314370503132	7.45183560043001	6.95325343342138	6.18945185683437	6.54729092020653
+"MITF"	7.69435089297013	7.17475010271668	7.17001873131808	7.16069771919597	7.06097077044777	7.50515268335418	7.28919555749559	7.29855559033464	7.10596701115924	6.85746473341847	7.69431320194932	6.71302047392217	7.2664583352685	7.50655584181229	7.75016914261654	8.10084633465279	6.76750618792843	8.03763041254	7.25327158689023	6.57321640440587	7.13331732432078
+"MIX23"	5.86806832775749	5.35680672178215	5.53348064605896	5.8668976310647	5.79300431876229	6.61040076471761	6.11439068518192	5.15888578063306	6.15372714338386	5.3252603479945	6.49027622883783	6.130748444407	5.79351754452451	5.22209266910451	5.48573331221879	5.80485555601437	5.76215324563979	6.89998409832059	5.79194574011799	6.21638297994981	5.26427929001776
+"MIXL1"	5.26181812307085	5.10537933593456	5.56537055326913	5.72665793166127	5.43176004842255	5.61062880884503	5.68859487435635	5.43829587820118	5.5258678839672	5.4992174788491	5.25105612917597	5.45124121372987	5.64602001343566	5.81820346893315	5.62039944338706	5.42406932765372	5.55928592251946	5.37522421249729	5.70449857122859	5.28621288999802	5.49572065670517
+"MKI67"	5.41020853960747	5.37092456296655	5.14381790170351	5.68709173831455	5.11898039074811	4.9814360355185	5.43604477956549	5.37332679245005	5.36082033345385	5.56559825408026	5.34255772060268	5.36082033345385	5.50543066423506	5.69273933194407	5.46211011613714	5.64234854951754	5.14128193368357	5.04081111927522	5.195233425349	5.12220032616902	5.3973348872181
+"MKKS"	8.7985132670044	9.02678198410814	9.48295969034329	8.9716979757083	9.58395817098911	8.73867330279241	8.70015731880352	8.61609358658647	9.27539587146778	9.46004356006948	8.56203560534087	9.26861435297165	8.9397994290588	8.69618587798251	9.28331894537998	9.26289221855045	9.06125191057461	9.34402080631549	9.32710680400054	9.66359910449007	9.37644724605505
+"MKLN1"	5.71070067461374	4.99136691036959	3.79160354422855	5.03671122529302	5.4791278893816	4.15208892540975	4.33399218386396	5.66366522569427	5.09122390903668	5.43014726643004	5.26291893841942	5.47831590142259	4.47248620852839	4.49724758567953	4.1880701594267	4.75752297101456	5.28340954021176	5.51774189774014	5.05726293332465	4.70424652571456	4.90402765414833
+"MKNK1"	8.57952233858278	8.25591937227731	8.83830973398364	8.74195973824941	8.26189979747399	8.80080645251829	8.00657208969061	8.63981641125595	8.55461231985728	7.71044463204653	8.08800225016109	7.87496241442375	8.62671739377713	8.84753004694439	8.70038375709731	7.7364453852178	7.94101117295606	7.92771901343274	8.10025548393936	8.37175960789848	8.05080185488068
+"MKNK1-AS1"	5.61764088324494	5.85033872464146	5.71376740230863	5.74033372751987	5.72431138520103	5.73586417311183	5.90047644910541	5.76814321416383	5.73586417311183	5.73698332958287	5.4943712770979	5.87216630815072	5.73139137121024	5.85391278801092	5.65606758734524	5.66504827977512	5.76689647660461	5.37214205859379	5.65733277513135	5.73586417311183	5.66542055675592
+"MKNK2"	10.8140935520788	9.77412914984232	9.68623817792216	10.8006160019657	9.47196307902786	10.8175976945058	11.2697623987314	10.9769434886741	10.3624724167972	9.29961873434016	9.62687483658607	9.66523533656732	11.307095842833	10.719779133308	10.8911373628557	9.00589772440999	10.0920730288419	9.69130110448609	10.4912491483544	9.74748398504143	9.77525911516105
+"MKRN1"	8.83988194532359	9.67915570334445	9.89073129129471	9.59766647861227	10.1878292793613	9.36981059419094	8.97480548981043	9.6050518372595	9.87783702859975	10.1420839889574	9.34600178327241	10.053724908419	9.83575938943553	9.02334381186506	9.90832711146041	9.57754044622671	10.1957680868454	9.59077466056269	9.71955572625032	9.87940789238216	10.1027705613535
+"MKRN2"	5.83434108327644	5.57352724917448	5.60311123599665	6.39043421613546	5.65936508440363	5.4073199029879	6.38728859886915	6.00218879912732	6.21416341528136	5.59481945672739	5.82287033003888	5.41890503924641	6.10917263355588	6.5238074472156	6.57806359497976	5.84079726058101	5.59483881634401	5.84997754211682	5.53001626910746	5.76568325077814	5.56389982437588
+"MKRN3"	5.79613478038713	5.68750140063359	5.71243354118558	5.94441959650876	5.85278323791095	6.16434423819664	5.9826377703296	5.6155324152196	5.95785008204829	5.72144131137713	5.81355609384891	5.69076006602668	5.92257933122048	6.13835909958337	5.96689553872854	5.75853427732831	5.83208633610615	5.96197769085222	5.85784776259112	5.53147984400162	5.86292252537208
+"MKRN7P"	5.82984905452603	6.01719537716235	5.98846279388535	6.19706670208352	5.73249959516585	6.13801482269234	6.46566431446797	6.01234144789983	6.10870339474443	6.05962834716509	6.01715025055529	6.05962834716509	6.18850512726366	6.31744279416409	6.05962834716509	5.98733615204474	6.21367446506677	6.02225121164004	6.05286555738262	6.05962834716509	6.14333410024571
+"MKS1"	7.00797215998425	7.03534495879009	6.62692229501464	6.96969675435399	6.7362062388643	6.86292439570013	6.89142407346852	6.77349072085059	6.74787425528368	7.05011620842607	6.89142407346852	6.86292439570013	6.70297927665244	6.55086768596424	6.78029106034103	7.0829033925356	6.90864144808651	6.77880300317425	6.95980351683169	6.93999344357139	6.99145621917319
+"MKX"	4.22238153701236	4.65238838590816	5.00013776410149	4.67923213914116	5.09763611302742	4.04605794060937	3.52974137891863	3.82287907477639	5.2143878150568	4.36410179463527	4.41845081237798	4.65238838590816	5.1987806219592	4.09745222325304	6.14117216891384	4.06739093350891	5.23459153718699	4.65238838590816	4.65238838590816	4.75694989541524	5.27212157430597
+"MLANA"	4.30291884282523	4.33608201815414	4.15208892540975	4.54263609626001	4.30291884282523	4.37661840722827	4.58085427008085	4.01615771219074	4.28956468837629	4.17833379169008	4.26056857585613	4.30291884282523	4.61589463905542	4.38023793950829	4.32525784930627	4.30291884282523	4.33075740688729	3.97077718209988	4.16783221714082	4.29820937705267	4.54901417697476
+"MLC1"	10.813911586101	10.2095997717953	9.80166968215368	9.58505941322688	9.27913851055704	7.71322078521404	10.5634176179504	10.1307899247078	9.44916748676849	9.20401967685821	10.401049897404	9.54320791752338	9.28611931785991	9.87356690831894	9.44004611199436	9.48362396016502	9.25125867478622	9.1801791505944	9.72744469867921	9.48652741754572	9.11623607313767
+"MLEC"	9.4116950563875	9.05813716359139	9.16131132470409	9.27496612823934	9.19805967786588	9.58574489331098	9.13411449717974	9.26824995575578	9.31688794986034	9.43796884531593	9.32797992945805	9.27496612823934	9.44684723871633	9.39960593059928	9.43254068984064	8.83694478890411	8.90648746990707	8.65899638627176	9.40287144127183	9.56952996883674	8.87950692964073
+"MLF1"	7.85862588210518	7.3907333692508	7.10084961636116	7.10940834015426	7.47727164513012	5.7943026021336	6.73073652021461	7.24866167216801	6.87582643042543	6.72319358795882	8.0746195341645	6.88063107200149	6.7255735153848	6.64713694986393	6.7399440377763	6.97191741165179	6.58904617061407	6.78957858921208	7.03994470182578	6.58829841974327	6.61492835430631
+"MLF1-DT"	3.00907454046184	2.9087517782335	2.94906970106365	3.02485197705184	2.94906970106365	3.04062331309676	2.91596418016388	2.8023487598562	2.94906970106365	2.89756946649362	2.84999843988217	2.81641428639624	2.98957074492163	3.07634017443451	3.37543802708922	2.74710302219964	2.87490629835575	2.97313077986364	2.88806068359646	2.91901513034718	3.03508159683102
+"MLF2"	10.0461636824423	10.3164341737589	10.5254580804164	10.4663929679143	10.6137302731284	10.6693756080755	10.0897922915273	10.1581581950057	10.6123496661042	10.9176937721267	10.2001400193128	10.5955931119527	10.7327180714232	10.3980477644277	10.3727696852978	10.1060717395575	10.4992370725261	10.3178620007701	10.252334759741	10.6393215485101	10.5075500224644
+"MLH1"	8.90244243258438	9.01275904794706	8.9229918638865	8.6281513216377	8.82864166137639	8.33395226943464	7.93483123408161	8.81116503633442	8.26035757417211	8.73128015826348	9.16244033043099	8.7946171742869	8.2645187500576	8.29736306938654	8.49904636159613	9.38762475859336	8.38352501290249	9.15834252634903	8.60825828905397	9.06073157736139	8.68726316029364
+"MLH3"	6.86753749343443	6.99177566494247	7.30557471563855	7.05070474826228	7.07433580958045	6.72056058792569	6.84216700625707	7.10902998466987	7.00118414113956	6.95562512108361	7.09622276183686	6.70052456767945	6.50711889869055	7.02232697194592	6.97298166974515	7.75243518036946	6.85242545602517	7.77406806867039	6.91742837389259	7.13276079280015	7.17751304682258
+"MLKL"	7.74855338068211	6.03911165058863	5.94802884246152	6.6389713150876	6.38407982606763	7.91047914543381	7.11468710663694	7.76664830227274	6.64646884904252	6.06332276629423	6.42716678958973	6.55288629995011	7.17807361292493	7.07640590444783	6.90237709266814	6.52593965906644	6.72797386690544	6.69788000210891	6.5523672961801	6.6639102442788	6.90348282121452
+"MLLT1"	6.34654874252308	5.93434911830521	6.17007248696622	6.32974627543717	5.88559734613152	6.38822564729715	6.62906001955561	6.24596812125848	6.52439278993003	6.3993551959494	6.1287148612252	6.28277130820908	6.16024926269009	6.17007248696622	5.91423351962887	5.85723011381043	6.14505941677971	5.88063190761579	6.17007248696622	6.30563521106612	6.41648155145054
+"MLLT10"	6.01394580627586	6.18714095004152	6.22775125931714	6.32747540418338	6.40382767411492	6.99809655103363	5.96424704142211	6.43591908487855	6.5380503020749	5.94227396039498	6.42762283363164	6.14893618509495	6.38541318950294	6.25975585486541	6.72107429576033	5.8810585288628	6.08882023632247	6.0164201142078	6.18506518481477	6.14787782154145	5.53845183134689
+"MLLT10P1"	3.73150297726868	3.84054160309622	4.31916926528414	4.07713976618005	4.07895321859211	3.99678915771505	3.9678916439983	3.92819311775031	4.14418733574702	4.06239889745532	3.95691664928792	4.340799527359	4.07783895361868	4.07792606942969	3.96298933327646	3.9362931682772	4.44553806390001	4.05624195560331	4.35751070491512	4.13826902837042	4.00414473417092
+"MLLT11"	10.6746422465237	12.2868549765524	12.4457039064864	12.2483417852718	12.7812649208811	11.7048322074053	10.7396814702151	11.8788687785231	12.3114541479639	12.73837149035	11.5271541472451	12.5942339958873	12.2747958999903	11.615030271119	12.3294743248576	11.9189694259041	12.4839832122143	12.1361870035537	12.2795432675932	12.5709538391938	12.6559153612143
+"MLLT3"	5.83540468889447	6.07447242365776	6.54395627124985	6.15420320846846	6.57655258062318	7.53476733279246	5.83666177687169	6.79974629653748	6.3416570284169	5.70962787184647	6.00710827609299	6.46644643545791	6.18525411831997	5.60401563101981	6.50606467937384	5.50426225139643	6.81795242552773	6.410404470633	6.2638246806094	5.92898406488208	5.6620098643403
+"MLN"	5.19950678349269	5.51798210458706	5.44969832233166	5.70286651085517	5.25562519105769	5.62636018523861	5.65298930845179	5.30397039799533	5.59938914898597	5.62579139853201	5.42682259023973	5.45662298236006	5.45662298236006	5.52590686081514	5.2099176202592	5.49649767613375	5.4058088408018	5.33149520604279	5.38468978974138	5.40654359435339	5.5891752826551
+"MLNR"	3.39114386051477	3.47115147475991	3.41845335935945	3.37467355293707	3.46947786733004	3.43080340589521	3.67918255540972	3.49032864702961	3.647751426595	3.49840087402354	3.29397820761769	3.44789922987659	3.45543993057874	3.62427190476514	3.58707613671052	3.47227409725828	3.46419604254673	3.40050817539073	3.50961596316749	3.61634890282805	3.42598080769835
+"MLPH"	6.82934729556851	6.71884729887173	6.36763416628487	6.81264334831093	6.64044178786607	6.52615004667682	6.40787855118129	6.70645717451396	6.70645717451396	7.03162553660878	6.25435549416768	6.70674654526467	6.84964710167394	6.77339631824431	6.51090820999459	6.70645717451396	6.75791001096528	6.28973178216428	6.65691329800398	7.49654339751297	6.70645717451396
+"MLST8"	8.49546304857251	8.54287117270819	8.78909350891198	8.28470950627544	8.53724648142672	8.66017072341477	8.39056734662481	8.35199628076046	8.40112415525489	8.74953593620455	8.28240007598867	8.49283143932606	8.68100885505409	8.67116482139798	8.62103536889536	8.15525816460328	8.24571341270633	8.61220074420331	8.47282523560836	8.65663484353115	8.6293789030068
+"MLX"	8.29567240385516	7.88064134677342	7.80155546232136	7.82231302020578	8.11612554488337	7.514651015473	7.74819212712859	7.9769297807834	7.87778580584697	8.09663008377483	7.81500734288039	7.69887567378957	7.72666530992184	7.84935845564079	7.77498626166074	7.98279384800606	7.70736547775111	8.23911623073742	7.88064134677342	8.18128919330416	8.11780996082558
+"MLXIP"	8.34177371732341	8.22460602370384	8.33899588143837	8.00771318777778	7.97486774549082	8.45899534191999	7.70778760652037	8.15148878922406	8.17429727317019	7.65869662974102	8.14179708783053	7.6868414264379	8.21397615648977	7.95761678012207	8.17694886909864	7.96465660745413	7.91235572959171	8.20757483895824	7.89446256724421	8.00083930034436	8.00129120030586
+"MLXIPL"	7.80178159854448	8.07433743148376	8.40334248425683	8.20636380902814	8.02673213919713	8.26369343455914	8.67556311400175	8.06207505178687	8.11699452990813	8.19152470482997	7.93814224610805	8.02951820916637	8.22036669881245	8.45269898861673	8.10281892748647	7.70536877205712	7.90817800040924	7.81565119071814	8.20653865956569	8.26486108180226	8.15542522595738
+"MLYCD"	7.03813915709922	7.17593730072737	7.03878781624978	7.21414721982182	6.88554996700004	7.31810325246546	7.76380625465938	7.0809643695804	7.19958800285706	7.29176820628481	7.03878781624978	7.01620975594463	7.25193995229065	7.33555282620568	7.02912871261962	7.14154234931068	7.19284312282449	6.90489216405922	7.18754350614984	6.85267200340913	7.06410293610853
+"MMAA"	5.58998915888436	5.80780271938248	5.17475626775981	5.82900424464786	6.00149154507056	5.27428642912524	5.38393768027193	5.6286659190004	5.73410491964509	5.67112929983349	5.34085947372069	5.82629394716782	5.23349940620714	5.43834121125483	5.08867708490673	5.57115301491571	5.33047907313356	5.66412647820832	5.66682463259115	5.58998915888436	5.64708491124289
+"MMAB"	6.62408477770851	6.67407421575419	6.76270316710687	6.65654042194964	6.55722798330712	7.25313946279084	6.38726146578388	6.61620117866378	6.73025856890982	6.59086569280207	6.63474222570897	6.5523633405392	6.10942898613895	6.79398282320912	6.60151588894976	6.59091445011734	6.32844611679006	7.17670362953244	6.1096642319473	6.31637785916554	6.30665415017078
+"MMACHC"	6.34499363193709	6.53645092404493	6.51090820999459	6.10190913847558	6.61987561681907	6.18188824644756	6.2603560969198	5.73971809950586	6.44852086350919	6.44852086350919	6.53159193450774	6.29220753107961	5.96695901009849	6.32572069278767	6.41337081547208	7.08537357483755	6.43503992856951	6.56705322083808	6.24046125628898	6.69044091302211	6.40712827134851
+"MMADHC"	9.66895058974585	9.573027534439	9.13984250962087	9.53246231599649	9.73334638100434	8.90965338437301	9.21685356802057	9.84614737724277	9.71661818283182	9.98045425803594	9.51614830504273	9.58300663695965	9.36935102849909	9.15511605340944	9.70917759519658	9.80553949971969	9.48320250653545	9.72343211273495	9.61818222701931	9.7241182022862	9.72811280837504
+"MMD"	10.0374246125044	9.74893494918062	10.0274386817977	9.69353836904317	9.8665424700367	9.44372972582221	9.01913017504991	9.76353870868521	9.94992155338014	9.91888350167177	9.5264552055623	9.93742385146434	9.50232205019227	9.508106242265	10.3819209056958	9.69353836904317	9.56389118352155	9.95281150359054	9.94098669390868	10.0536429990901	10.2273379869105
+"MMD2"	6.82058422996424	6.83813178422609	6.87006609668019	7.03975033733853	6.68991709560082	6.6006361819489	7.26949270393328	7.21112756241168	6.49423943161767	6.7341059899257	6.80234632754377	6.52261491234625	6.74731606813165	7.32566494672848	6.69493058282242	6.74240263259416	6.60984509206775	6.7543858464355	6.93030072212136	6.78988532478177	6.8839893142909
+"MME"	6.39208180100551	6.95666827273723	6.83589735173013	7.01576672337673	6.92220314954308	6.69466584842525	6.84701022822476	6.84701022822476	6.77465154531284	6.86378531460458	6.46293920538992	6.92103287570015	6.70984920659342	6.93555684375614	6.71039873609301	7.08446671834268	6.85627934396362	6.7010933242265	6.77842183423913	7.00803813710766	6.89255700822943
+"MMGT1"	9.22866505233386	8.67862674031054	8.7201567708192	8.3784569363217	8.77670734516522	8.34316363751276	8.77229547526202	9.09687014414907	8.5784077029523	8.73087803607435	8.81878735823774	8.79347442998656	8.46179051279796	8.22742365530997	8.35184406460341	9.29226845298649	8.58438730059473	9.21024993499799	8.7456704662346	9.0691661745172	8.65857337704877
+"MMP1"	3.11755388928656	3.12509001906918	3.23065276804427	3.30370836802865	3.36560010406572	3.33328302204852	3.0400827024331	3.39974732244145	3.4580970636081	3.28615078109483	2.95088095793239	3.28493312304615	3.27899656564015	3.33038765675831	3.0768461069553	3.21550988783063	3.31032418266883	3.21383628040076	3.25309811826045	3.5069779095038	3.2654790195316
+"MMP10"	3.07807516202777	3.23905703290424	3.15523279641717	3.27420848537286	3.23905703290424	3.42954220947461	3.39558222889314	3.1526722550564	3.21379542268656	3.18010396735392	3.22091029932756	3.23905703290424	3.40889324700258	3.58849460622507	3.48457546765389	3.46570691079904	3.23905703290424	3.21033821202064	3.15991808207105	3.15639459731038	3.31305325913314
+"MMP11"	6.75918025513418	6.70260295650051	6.95469017672115	6.89242837085766	6.81181206669798	6.88736769632646	7.1215849726512	6.86073332174244	6.91952342472528	6.86393122092889	6.76888909607472	6.88736769632646	7.05860967340711	7.04297516825024	6.9444471261598	6.53821812764407	6.95595733451896	6.78180829382215	7.13972036583198	6.64599429769378	7.04774313165635
+"MMP12"	3.58015036183802	3.40410579983278	3.37867097165171	3.5448582959148	3.33003543389454	3.37456191834758	3.42335081728597	3.30413981714948	3.78892008239525	3.31394912552841	3.35710882023709	3.50100410829198	3.5730490327418	3.68363509520989	3.72499225277038	3.68333561625323	3.57169521328144	3.38938849392402	3.41808244937108	3.52476675934349	3.50310234788329
+"MMP13"	5.2272095405193	5.11147949979089	5.34485958922783	5.35552799940898	5.40898980900115	5.67814757015513	5.31002441574372	5.28437882898049	5.33759193122951	5.2726768839948	5.21202174114261	5.30845239322571	5.44942069865699	5.66128153398499	5.28437882898049	5.41515827726455	5.23392859337463	5.10146870110476	5.4797874038515	5.32759465928621	5.19901305725267
+"MMP14"	7.24342028292683	6.38544874222637	6.52232855334848	6.43283951055393	6.39865970673324	7.15945256512089	6.81083090825184	6.62626846678033	6.73833579171416	6.65908462017389	6.47386196866364	6.57299512150763	6.50755343639569	6.98569766896489	6.48875123588758	6.77516417677166	6.47475540070393	6.17849327411548	6.52638112013534	6.8192172711879	6.18143096473344
+"MMP15"	6.60157703892626	6.81290491762906	7.11015839538265	6.67154860437036	6.8485504803115	7.48145315888003	7.42871048680333	6.67447286031777	6.7549556103777	6.96543989619883	6.50229657254238	6.83516320947519	7.14508681090646	7.21688643886782	6.86355875505987	6.69721810257157	6.73660704989001	6.98532678508303	6.61120627057467	6.81172083157	6.7952618078454
+"MMP16"	5.9855195699726	6.74854451474341	7.38005012508558	6.97525772777845	7.42780269341693	7.63321268195457	6.95898142183319	7.00702910663615	7.09541107665883	7.11185270231785	6.63479016249774	7.26746267284754	6.76669697143272	6.48439313100498	7.3170646302662	5.80591275567385	7.00702910663615	7.1190792274277	7.49439721308579	6.97544045714699	6.54909636486137
+"MMP17"	7.38817313557957	7.56498229212704	8.17899580144409	7.62724690471184	7.67958411007251	7.98083054808779	7.58368191096596	7.49530408883478	7.31664020965523	7.40805733049543	7.41750232234912	7.53816587583411	7.92859994503864	7.59815838893478	7.44909963695731	7.13412862011746	7.50297720250712	7.52945438046085	7.48190053280758	7.83872680434348	7.41991141303164
+"MMP19"	7.06947892249546	7.15280719266092	7.02968003927817	7.40964092263552	7.17020800718842	7.29172402838718	7.34513157810178	7.00144355941972	7.10327504366759	7.10865535066945	7.02507544696864	7.06014182932241	7.38734426121198	7.47713632727634	7.10232145709303	7.14815774097039	7.03685979357384	6.73552789120148	7.18542417263084	7.09184072297714	7.10232145709303
+"MMP2"	6.50170813219169	6.5924974628835	5.99382580137909	6.28713659883494	6.22997774119269	6.62753303012529	6.63565745003212	6.77303641267462	6.27975278281938	6.34814397081101	6.5685828627147	5.99586718080573	6.60777308838608	6.68915292868205	6.18066377501939	6.29079601809376	6.3484177062266	6.12683296716287	6.46016560858088	6.99335689516225	6.76444433539342
+"MMP20"	3.41379211542225	3.50310234788329	3.47213312084156	3.40977795641212	3.46300540552143	4.06116923321443	3.49701155861252	3.50310234788329	3.68301842946085	3.38815919666752	3.20594747052105	3.43069839940513	3.58773005221029	3.48829076034593	3.52286907466578	3.73820188779484	3.3367856621787	3.50310234788329	3.55375959111851	3.52017105774154	3.50310234788329
+"MMP21"	2.70834788392242	2.94916248159991	2.71791339309326	2.93955375070102	2.72513572700106	2.79403883511047	2.71466957469431	2.79105624250227	2.94262276269751	2.73656204416256	2.82237799731147	2.98586326033229	2.81853214912368	2.74611026053873	2.93903865379154	2.94323001163917	2.88779358130988	2.85969648612341	2.85969648612341	2.90767359999384	2.97942445306626
+"MMP24"	6.59652433285684	6.46696683187224	6.79643583506296	6.67720122274525	6.61213499135887	7.36203630931928	7.14099280828713	6.7347782176842	6.72875552100856	6.88043957486965	6.66095560254529	6.71448289046485	6.9231459367245	7.20206711077248	6.58128497926821	6.59042719191275	6.69781112562395	6.5209963747757	7.02823679380972	6.48230979318913	6.68540468549881
+"MMP24OS"	8.24930074189577	8.40619457924922	8.70219242718809	8.23273576833779	8.60469686903658	8.49731183692339	8.10056934593675	8.15243460275309	8.2188980748853	9.06061858757005	8.43182541595283	8.76204636267565	8.05886963333101	8.35191273673755	8.29378172407716	8.41595932698625	8.49223887629542	8.06383051426415	8.27516283061463	8.86328307539604	8.7954066388554
+"MMP25"	7.16436651798105	7.02880277646946	7.06180459079334	7.12528501772673	7.32907717892575	7.75837481360949	7.80032321328468	7.18564402986247	7.14701597579605	7.30770041360117	6.93537343150181	7.18564402986247	7.5023582250083	7.7250005369142	7.26274437653775	6.76951481945242	7.07222956758733	6.65228638819737	7.20346614286036	7.26068314185854	7.18908607436822
+"MMP25-AS1"	6.29185532177168	6.32671708439592	6.3153842081161	6.46569920711708	6.7968893770704	6.55004211245834	6.62763242318455	6.25288274750339	6.05518633590702	6.37327091461586	6.2420143188352	6.15625396883607	6.41748106609724	6.58462161991031	5.91263363419644	6.44309999131443	6.10744540385708	6.60424680594401	5.92146566872576	6.32671708439592	6.37299958103247
+"MMP26"	4.37219477412886	4.65525042603868	4.75110579787091	4.78803351038582	5.04171727658192	5.20003257632823	5.65660074582705	4.66784483447504	5.11724383953887	4.91579866913786	4.77279899502868	4.7228620266275	4.88039264519515	4.65383473581422	4.95539465337189	4.98047012244488	4.83851391392687	4.54137198263651	4.78449068018541	4.77479155313405	4.66194600009964
+"MMP27"	4.48335665421927	4.4338526546948	4.54488726414936	4.65751418716322	4.4338526546948	4.49378202251699	4.54751080496412	4.49873892392767	4.49712377512662	4.22739523997762	4.11198638406765	4.2330209192495	4.41692173561395	4.40870573614578	4.6348796940112	4.4390638842558	4.40944506552888	4.4338526546948	4.15302389419151	4.51833329145217	4.22897075468655
+"MMP3"	3.59212840474048	3.50057875968619	3.76672270867678	3.70588889983416	3.48866247096853	3.82432678042055	3.64646847182225	3.64646847182225	3.74079770689972	3.64010840613862	3.45511341955538	3.58020721668009	3.62019034014805	3.71424472353798	3.54895000442439	3.66394674778899	3.76493218441279	3.33319898674408	3.63380446419854	3.9442746385674	3.46924752939726
+"MMP7"	4.82780927602208	4.96038270552621	4.82979185360268	4.85361849410812	4.69895205803882	4.86170290891008	5.10966512880668	4.92935111940843	4.99039230772091	4.79952093462931	4.50746767683408	4.87598852855677	4.88421123148709	5.13046848842901	5.00747701232336	5.02102626245823	5.07865226205363	4.85065690806057	4.73720760776721	4.79868438430771	4.92260830582006
+"MMP8"	6.83111554073676	3.20437378502826	3.36139087368294	3.50493855492271	3.35320988635845	3.34533872726046	3.432782722979	6.58218577260507	3.26081148347739	3.39291021455187	3.12998866286893	5.70488908146555	3.2799705012864	3.51390364340597	3.42019344839688	3.24603521352027	3.51390364340597	3.37529893542131	3.3851202837938	3.60142489360276	3.2973133542331
+"MMP9"	7.40458545312609	5.17897583377368	4.92681816241079	5.56624073355023	5.67197282277772	5.30163146396495	5.62349643206325	6.44297311777622	5.25345607866233	5.56624073355023	4.97136430351826	6.52574399732107	5.87255197639173	5.99146293949461	5.17833182916991	5.46155862462973	5.67180028071058	5.4261231499906	5.56624073355023	6.03674976780152	5.43304167446317
+"MMRN1"	3.83043572561092	3.08267673004206	3.17587187893203	3.09328373064251	3.14222483055468	3.6701799808995	3.10560252577232	3.14349910894461	3.02609764193924	3.03945179638818	2.93403321288255	3.03174317376493	3.28174345670214	3.47241367613347	3.22510852931342	3.01331972259542	2.89305740596536	2.89417196649118	2.98542733836457	3.57496432319698	3.02077385646106
+"MMRN2"	7.18822636415926	5.06401747218516	4.80344294135095	5.1499540861387	5.1716869876303	7.377172160016	5.16486158035361	5.26391170595146	4.91912212229306	5.42506106669304	5.34398573395902	5.15126646718328	5.98304351766738	6.21049855501288	5.07132118929217	4.68968911978149	5.05285082576313	5.42026805017704	4.78872595404164	5.40321663991451	5.4682599847111
+"MMS19"	8.7327916566099	8.41568068983526	8.80595696819098	8.30307462709099	8.59970296611622	8.68051803306229	8.236385201415	8.48740651036853	8.66524988827022	8.6527208728902	8.52136431266251	8.61783183446491	8.00271446352035	8.16071604422836	8.36293859024314	8.68085101124494	8.68125961386442	8.71578919048285	8.46943008128528	8.76503395684876	8.67927592801735
+"MMUT"	8.23425541120852	8.18954936398936	8.16914578282562	8.07887090777132	8.32946747519805	7.5092836036639	7.76996786706373	8.42569116632044	8.04524003545224	8.2359519037145	8.1149018064335	8.13218496468084	7.16943459325342	7.49155252151172	7.8449339524328	8.42989601193017	8.0906281502092	8.54838679531462	7.42888822720839	8.29146348847785	7.85274942448478
+"MN1"	7.43671999569349	7.30745279905995	7.53754882118189	7.06892930164586	7.00365777283547	6.9577826602673	7.38892210115444	7.11640935096315	7.17313964397507	6.67500968352705	7.16281255123941	7.04067440893312	6.68572607196446	6.71243191064559	6.63904780482872	6.6391506260561	7.28495875818193	7.5916075783657	6.50847341962139	7.71123935130679	6.81893280736473
+"MNAT1"	7.5351204506153	7.87763202398101	7.85357050015013	7.55054943090714	7.90053941316073	7.23565907674487	7.2711809794638	7.80528057206279	7.60703993992993	7.72414506066007	7.59935465038471	7.87607320794827	7.35133003516566	7.25443434691676	7.59854118544847	7.67182435319379	7.67020481525684	7.68320466079088	7.76294109077438	7.94755138968112	7.46310389856727
+"MNDA"	7.1623794413435	5.77668798196875	4.5051253690733	4.16089863856463	5.26270319863102	4.45983281312337	5.46311103908156	6.3791906914509	4.84109048973325	5.53573358629728	5.31106847393139	4.50448648361641	5.48903695907936	5.55844547954839	5.06022460523512	4.76324259782815	4.25365265624223	6.28028485732521	4.8281780801081	6.04677131419273	6.19020080699579
+"MNS1"	5.8319622184048	5.7637414832805	5.89965581386336	5.58359331017614	5.68390852748337	5.48820770726825	5.18296735688731	5.6858699762638	5.48891824362867	5.51974708652289	6.18992572793843	5.78244636949068	5.31579980091329	5.34055343422557	5.58149924278408	5.76978358267115	5.46739296582679	5.58149924278408	5.47009485975494	5.56882093383871	5.459326479092
+"MNT"	5.08240631948641	5.31860560132409	5.27518744485627	5.36245217135415	4.66784483447504	5.43869173419279	5.62996895789958	4.88801355970239	5.29279207896171	5.27305359819595	5.27959940156215	5.57445971473321	5.53147984400162	5.72206597362013	5.32692006831047	5.09064310287857	5.65292370760162	5.41546336194253	5.59742018525872	5.14858418585978	5.50076182085259
+"MNX1"	6.48094215310423	6.59148032307955	6.6419683372302	6.5728380978364	6.5623461254439	6.84649328775113	7.12259577557054	6.56140558576398	6.59148032307955	6.602776695065	6.43984879440773	6.74781572524352	6.66481212582517	7.14765044374994	6.59816963768885	6.51153646595591	6.61042653819732	6.38298380735133	6.7066294541785	6.54515100452522	6.45881967105998
+"MNX1-AS1"	3.91085447209197	3.76047511071037	3.92807672428992	4.08373716152987	3.88449909676262	3.96779852709763	4.04594075777711	4.14507915604025	4.00036348525094	4.04027540544608	3.584700121293	3.96779852709763	4.09107035080809	4.20237234228627	3.96779852709763	3.9542408546657	4.00967676648148	3.63873770952627	3.89033216662295	4.13204848132276	4.01687777192845
+"MOB1A"	8.73677490762786	7.74648270372485	6.88575121995826	7.94310878794281	7.65137483790974	6.90522124612145	7.94886368717567	8.41280956394236	7.87024083983032	7.82273096606968	7.47262111957895	7.4436457812549	8.0634581998447	7.52698412988496	7.76494403050239	7.58867154551139	7.8419397161869	7.58811032962058	7.95689344353054	7.98655408277492	8.09329265922792
+"MOB1B"	8.34960085716228	7.71152428983236	8.3216313517962	8.26031733201525	7.98547019073604	7.30472627575539	7.73891414822535	7.89000568461071	8.59545507778431	7.93936867543186	8.60667632325242	7.85210182720084	7.55850924694318	7.54605071450842	8.30266666913778	7.83653215016512	7.97840497345567	8.06498415641753	8.26301827145113	7.77699684224823	7.92381872277249
+"MOB3A"	8.75217369491803	7.58357654902623	7.60522537965525	7.86655712974773	7.47046421680076	7.60522537965525	8.22245361393997	7.780775161387	7.53001911683364	7.51661633363247	7.70878619596865	7.22926900414383	7.71657168280562	8.06904379418223	7.46203176074831	7.59250275730691	7.36966273847872	7.60522537965525	7.52675997500301	7.8151536928152	7.46844746851179
+"MOB3B"	8.57294892156323	7.7648621253796	7.20639189224855	7.7019249821841	7.28159738514752	7.5096974413172	7.08531021255869	7.65028544265465	7.05224635229932	6.97526243248818	8.39880853692336	7.10810489515251	7.52563728787179	7.24934079071722	7.46642946333897	8.96570900627691	7.45180093937568	8.68874895873084	7.61933524054814	7.22348738510629	6.89115454450142
+"MOB3C"	7.57927227242956	6.62875171226049	6.49155323542829	6.85619630176082	6.482991821367	6.97331123283775	7.45735474346817	7.45701603120454	6.84515817415481	6.66101691426689	6.7865816120577	6.2030763496523	6.84603435928366	7.17382097472274	6.93803017535337	6.51671899353253	6.72340953552036	6.69626995045143	6.84303862501491	6.90788884086783	6.89258094662091
+"MOB4"	9.22988766932024	9.52156749229532	10.0003221554949	9.17000427158549	9.92170730605562	8.90071646534785	9.04360266650499	9.33027308010752	9.30712264657055	9.8163515093985	9.14800932969072	9.56654569583659	8.87399805559313	8.6714363401259	9.51818976937423	9.50830047497841	9.4322563798296	9.4322563798296	9.54956939689095	9.71464087008466	9.54020807734453
+"MOBP"	10.6618121597406	11.1134072985523	10.3929630677732	10.4810462072266	9.75764108023477	10.0647068693158	9.69100636138576	9.04404494719168	8.64178214171922	7.89499356504767	11.6239400246225	9.79644428744577	8.28191767718036	9.59907343145645	9.29532594922953	12.4139598912593	9.30388796480216	11.549083121463	10.0539568685921	8.83067364694744	9.84941394576405
+"MOCOS"	4.421885056156	4.52263142732635	4.49497619638741	4.63747713407945	4.44478626008164	4.44534610991755	4.69827768973062	4.83471739216816	4.29640538348475	4.46207331858506	4.20571499520628	4.37571435195792	4.50308444046344	4.87661740608432	4.55004016095315	4.55096610423135	4.32287422808169	4.24856440753636	4.59582066100321	4.72460223528144	4.55913469212741
+"MOCS1"	4.75801407238453	4.69044254601687	4.39971143935622	4.64745293928754	3.99031314726478	4.30291884282523	4.41309097840409	4.26342914985289	4.25565982929412	4.17300858009964	5.52717591218246	4.0691198999322	4.56437448608637	4.46166034850697	4.46166034850697	5.11065390403449	4.64423178974708	4.46166034850697	4.46166034850697	4.36241036966664	4.61817286107726
+"MOCS2"	9.12659735677993	9.46796218926377	9.50819377128347	9.50883156925739	9.65018397388779	8.50687491107198	8.65486677957175	9.12963772614233	9.36064128298625	9.69242269223553	9.62676316819172	9.38874799557637	9.31560358606377	8.4754688590609	9.33772509098387	9.19101554274216	9.41325767021289	9.40555544552537	9.50525930199336	9.48511431390466	9.55421373962294
+"MOCS2-DT"	4.66393828798453	4.50849543672333	4.76936582348946	4.49597325069683	4.96149156307199	4.1168938311184	4.03220677191591	4.68127242951427	4.17575494533694	4.22704260040979	4.57939906900234	4.32186478565794	4.4752576076541	4.39459988028346	4.430707495404	4.90803590508876	4.38868458282386	4.4752576076541	4.49526033921844	4.62942947278178	4.44579848477371
+"MOCS3"	6.12552208993326	6.08866833249608	6.18120735666903	6.07996992657526	6.17077752498027	5.95699356636592	6.35409828952334	5.85742830885448	6.02019103019014	6.67251186063467	6.00742891571366	5.97588365473506	6.1848766623296	6.26311497517873	5.74624024352792	6.15318048259503	6.12552208993326	6.28278080771725	5.94383440286429	6.72800370118402	6.46731749775333
+"MOGAT1"	5.36005336781069	5.2959536581184	5.61553172951984	5.26273585828445	5.51667670800867	5.28278473224466	5.3170231582237	5.28842849139681	5.42827644746767	5.2959536581184	5.26265897708434	5.01653783769625	5.37474983445794	5.32810933611826	5.52876093348369	5.51984984796923	5.01718282719602	5.07450539640452	5.26055576253697	5.29308177058102	5.33855490927256
+"MOGAT2"	4.84756103848212	4.87924896602915	5.12906069912838	4.97078882060694	4.9181315815433	4.85843018894905	5.50862285908957	4.79814767992321	4.92891058122309	5.03042757019794	4.75428107045545	4.89179829607902	5.13137387436093	5.09092856754918	5.31167038930327	4.76621034063883	4.93289786001285	4.89029877007514	5.15929236040968	4.91223736218471	5.08236836169019
+"MOGAT3"	3.97326934227438	3.72895356023612	4.01782006934984	4.02477550156302	3.92439547544997	4.16809015576323	4.24887899456431	3.97814535924788	4.05901956226008	4.1860287548247	3.79059893273819	3.79242557065088	4.01763098971344	4.22007146988148	3.95916347498566	4.24423283267326	3.96779852709763	3.75887124722436	4.20864739106599	3.94698244396804	3.90015981695206
+"MOGS"	7.20593140388326	7.23833777654682	7.05620246326176	6.73158666157775	7.02659636098965	7.25797911667927	7.1651880983393	6.82390002428263	6.61406975452218	6.9582575388592	7.02353633328171	6.65625760748106	6.5489274465382	7.0652140834438	6.52563205367082	7.15807752783009	7.09307779123672	7.59179068951837	6.68646966211057	7.1685138698803	6.918784135891
+"MOK"	7.92749310025028	7.84415681062454	8.31290392444918	7.60855551986931	7.77672467270215	7.29441059258629	7.50585072895694	7.39255257302502	7.81239413053904	7.67907034272426	7.78917219767524	7.51191895719476	7.5479028193201	7.43906146680955	7.91994773361629	7.24984137043536	7.5838800229605	7.47996256501788	7.51969291432655	7.85434270072644	7.4875081714077
+"MON1A"	7.38067631942271	7.37880031982829	7.55661162867926	7.52154072317909	7.64964132933613	7.71755515538265	7.6458575012779	7.24671008246464	7.80178502330949	7.48406756137533	7.251438859512	7.29838940315278	7.71111634707894	7.55680643069496	7.75531183945674	7.32518060629164	7.47867966272076	7.60349510110092	7.41347820996767	7.70520557070583	7.56653905622083
+"MON1B"	8.49177632288102	8.154244191686	8.15416099574494	7.73812030896771	8.06469241182014	7.88023811903761	7.83789619700703	7.75270031618104	7.94614726335442	7.54753452952843	8.61960385337807	7.59757139264116	7.79189858296371	7.98051901679803	8.07031524542947	8.50741488567252	8.01808547739004	8.68533879236954	8.02017799932599	8.12747560107772	7.91625592625063
+"MON2"	6.16130077394191	6.77690104059367	6.86191288905149	6.55065966601155	6.99356582721413	6.52171263534194	5.75866716629007	6.1398591820618	6.42783578706584	6.76891533487653	6.7082125237055	7.16372156624061	6.40841401763697	6.25314626273078	6.27803022760195	7.08272493074129	6.82845542807034	7.62974810166255	6.57817079924437	6.76891533487653	6.66769387275407
+"MORC1"	2.87874913831559	3.10634358530474	2.87809859050031	2.98920501294193	3.17503584890207	3.32417654854052	3.20935418589601	3.00375245813865	3.29853148498862	2.91654320494802	2.96784477959734	3.13645256648828	3.10814008296862	3.08056754798967	3.12148145260576	3.0538713829904	3.04179478278904	3.05251165105041	2.93328068128985	2.88268814157445	3.05403143809116
+"MORC2"	8.38424228788958	7.85791176029837	8.32638254789605	8.09497666804289	7.86160220635227	8.4666203265327	8.45870369081768	8.2889520227683	8.01816796694485	7.44624263849452	7.79982499638283	7.74743793586098	8.42788716250812	8.46740217508948	8.53349244693729	7.95723713116808	7.79639074066315	8.14708025860684	7.93442900797174	8.01487677812213	7.83324655652366
+"MORC2-AS1"	7.34820056865565	7.49342792072677	7.08499989662734	7.33820724729287	7.71172005351106	7.33820724729287	7.28932994172383	7.09188310236611	7.33128288915037	7.50103282078558	7.3350974353197	7.33820724729287	7.0476727534783	7.26333211814208	6.9334759307436	7.53326530901918	7.31970138807828	7.05953092741335	7.01974199643594	7.46860617730685	7.52488866435916
+"MORC3"	6.45530417566264	6.60386542898836	6.77015475387019	6.76837480644927	6.56057679802722	6.52440452384347	6.55269913830285	6.70534614816104	6.93778852007287	6.51632469929765	6.85493865923686	6.38834568244207	6.98683284412379	6.44618502929305	7.07382453951793	6.91170823189814	6.56001434392342	7.12903778685664	6.81718454483589	6.41132282291266	6.59592060829874
+"MORC4"	6.43797513273306	5.68785253135015	5.63000585658261	5.49368589410279	5.06861402162682	5.69050004291591	5.26835103529312	5.59443226527315	5.01552589127773	5.19798191722044	6.27548104369778	5.14653977033141	5.43141547223631	5.55694905285893	5.47911528588366	6.29148024693632	4.94012157808585	6.56316345266881	5.54891606593087	5.6921959551644	5.37148042765264
+"MORF4L1"	11.2393315714242	11.4053479389566	11.3934780292288	11.6546094897787	11.5219981759298	11.42380904842	11.2686417696164	11.5153493064179	11.768689692664	11.6690319983993	11.5435876180184	11.5362370311785	11.7662159090583	11.3226562260518	11.7419053925231	11.5256498995434	11.6659166021554	11.5221612530487	11.6462408729576	11.3914259019784	11.6870425208271
+"MORF4L2"	4.63539155363056	4.83851391392687	4.34572169422677	4.92870963232358	4.79918146685556	4.69556430476882	4.75887444901035	5.31425492182439	5.03426981301164	4.79333182119143	5.58080321462161	5.43639569034854	5.73576528565421	5.1615433518561	4.69387801543839	4.29466855632231	4.67298946227673	4.08022174867621	5.29284514116907	4.87598852855677	4.71628205913846
+"MORF4L2-AS1"	5.31030421319763	5.28132413208278	5.47689524176883	5.19183875784209	5.28285817090775	5.87855510200194	5.40551158670671	5.1189745958979	4.73417994620112	4.89384435226786	5.72560938723637	5.210298918552	5.25110765486976	5.37797822858193	5.33358936572871	5.57536316193499	5.19676005733522	5.94427544631499	5.32463015640914	5.33483511261296	5.04143752675475
+"MORN1"	4.48648929742658	4.71893394212356	4.82345507569334	4.94936370266715	4.78185429514981	4.50845612127296	4.62400151533486	4.80071642705818	4.81285197415182	4.9182574469194	4.3931662575928	4.81756257361713	5.14839131265337	5.13928612156025	4.9567179303104	4.53079147923565	4.75701152700519	4.56624736613564	4.63484952913986	5.00931628695251	4.83638566633738
+"MORN2"	8.14139013216905	7.53018353714873	7.7761867476942	7.4225298416697	7.9919613616468	7.21414721982182	7.91092400590682	7.69459266497538	7.83329211443627	7.88126158800293	7.75203616246073	7.58634680747618	7.64802535448213	7.52771099244633	7.42599894835445	7.54640704995163	7.41709809438559	7.24589253186316	7.76853989504387	7.92376705280795	7.5088930629994
+"MORN3"	6.49972102379543	6.51090820999459	6.62864647999159	6.34834394150027	6.84334100847786	6.26883450216762	6.42955973830883	6.370087042368	6.42586078023407	6.67965480950883	6.47553186686601	6.8832026307384	6.54367896325785	6.43893005906969	6.51090820999459	6.17477018512144	6.54367896325785	6.47715100141576	6.44543945662133	6.5442434631864	6.59651635170498
+"MORN4"	8.13363239807546	8.55428252819772	8.80099375299151	8.49626002165714	8.66962281669295	8.36549726386782	7.82958028024074	7.90582994271919	8.93889658187666	8.6172280856263	8.05843999642559	8.49907001024158	8.35464367089967	7.95275064499223	8.22242370161956	8.16493843804126	8.771612771528	8.33541767365296	8.47032866582708	8.83888652749816	8.80741529350961
+"MORN5"	6.62786929323864	5.51119763298163	5.88422764518596	5.90715628904589	5.43560573591059	5.58163173368904	6.20793981252791	5.73843186413752	6.06735293591405	5.60982215169021	5.54659481788663	5.68222383524636	5.68828348495626	5.9841263243859	5.73843186413752	5.7289806160217	5.6315726099103	5.77937730354639	5.73843186413752	5.64255700241612	5.91758376288466
+"MOS"	4.1129157976824	3.97501151119851	4.25953776231855	4.11844853731054	4.07630484685012	4.12505958368505	4.32351478355936	4.29925023808985	3.96779852709763	4.12505958368505	4.19606143153183	4.1074340554871	4.1129157976824	4.43152174625849	4.0671498907717	4.41346542206068	4.07376300745112	4.07604571546236	3.98544605296826	4.12505958368505	3.84296625184669
+"MOSMO"	6.62347459239258	6.95249047650541	7.305451479626	7.26873373380649	7.69972048273549	7.08483933455473	6.65352886324039	7.3651261113759	7.73653053014419	7.52901776535774	6.71629636707428	7.48987460682991	7.37247215720779	7.03454357449225	7.74507097054124	7.15906920887387	7.47679140176219	7.42494687676681	7.30348458172432	7.47479212353821	7.76688290922232
+"MOSPD1"	5.66128153398499	5.66128153398499	5.58998915888436	5.54969422735451	6.12710844124306	5.82287033003888	4.92255868362441	5.73684639370522	5.56822022461702	5.86712502310126	5.56458709019212	5.96816369379553	5.25048983317005	5.18752222222022	5.28135324931715	5.55128451535718	5.72987186127651	5.66766960279267	5.69423595866389	5.74569084516534	5.89352476526058
+"MOSPD2"	7.19723586534493	7.61370772714911	6.85919233114598	7.07037295480286	7.00418967959923	6.96497315485339	6.63398765521687	6.74879162329417	6.15780960928259	6.66728481138528	7.90705224116802	6.44363426449531	6.41888921899387	6.78787277694085	6.61488873617949	8.60760346050043	6.57427544056842	8.7817012195697	7.04645196666062	6.62531734229444	6.96693771281099
+"MOSPD3"	7.93891541477484	8.08839353488404	7.97676961333491	7.93315293845904	7.76486772501766	8.21070045567687	8.02722010597802	8.03647445326253	7.97045833726095	8.02478217561881	8.25910718652467	8.0962758280473	7.77451288356304	8.32025292890506	7.80049020453216	7.97013239441416	7.91540661915982	7.86068157792868	7.97676961333491	7.97676961333491	7.96967182561995
+"MOV10"	7.70328749592025	6.56777760043105	6.39705244003485	6.33073233477108	5.89899278307746	6.90686029872128	6.92106883452641	7.06732894001034	6.36152975147284	6.47688536587733	6.64977372293544	6.1472875355506	6.64521507844138	7.04891633230603	6.30748844909057	6.52336666242956	6.27524070232101	6.38385053132075	6.52336666242956	6.71255746208359	6.45193403380067
+"MOV10L1"	6.29847890037851	6.78921530426329	6.41670677150073	6.86514611500985	6.34280854157994	6.93859530631359	6.6148875601597	6.58433870852555	6.64820805452624	6.70133845895769	6.3769562066523	6.66604613123341	6.67251186063467	7.07284953867924	6.86514611500985	6.74205832650569	6.61252651275086	6.39147649874049	6.63915435175863	6.66756294191134	6.59400695819068
+"MOXD1"	7.07472874251833	7.42209671243486	6.36684748168555	6.48736446627437	8.00580880504545	6.25935920638899	6.3941613864335	6.88024378473808	7.04124777446451	7.55979613410564	7.03275021085461	7.0694922819495	6.21706279669603	6.70448234812973	6.64732532704263	7.42224035280086	7.0795563753338	7.86172162048634	7.1631616578426	7.27231910585716	7.46366944589819
+"MPC1"	9.40910393652451	9.97531545987529	9.55466523060793	9.79318744698894	9.87638453215277	9.47839216292729	9.72524887860961	9.68140575103983	9.76278646288853	9.73110683129435	10.3147180513419	9.59566850633775	9.8473916869499	9.61397866073831	9.77257927636822	10.2722997638961	9.54428545976342	10.1545044410268	9.81332637773023	9.69901121866741	9.69215670646954
+"MPC2"	6.67923105339378	7.54510364453713	8.45860096217177	7.47160036405149	8.35149213381072	6.86691294853639	6.18299721355152	7.17455930787354	7.70719416263234	8.39700034330572	7.43290245069345	8.16437559929335	7.39387698558628	6.49596278911519	7.7499694384268	7.30876819343995	7.8872970670452	8.03175461175199	7.6130013087934	8.3589895034396	8.4319503894545
+"MPDU1"	8.14648905158842	7.90563109021704	7.72248343070918	7.66124539505073	8.0138710462503	7.73466070219792	7.58729347453843	7.95079729322533	7.85803239056789	8.40439919341135	7.85966953994863	7.93048006561329	7.70208610727836	7.62632085826204	7.93817244454209	8.36352239202951	7.82040233532997	8.236385201415	7.88354245447234	8.11775776125361	8.08147570356146
+"MPDZ"	9.92488643869914	9.75117572732622	9.87977752140123	9.70173367604062	9.527163116813	9.48780240943536	8.98299506191547	9.72005109147092	9.71829176814948	9.5079820210321	10.0002997750125	9.64459353370889	9.40343004996708	9.38770795831448	9.51164805494948	10.4519851523959	9.46494929627242	10.3383926300934	9.65507308753767	9.52846974039461	9.65507308753767
+"MPEG1"	4.4222150873838	5.53868189046204	4.3496515596571	4.18254781659142	4.72395275016553	4.07092191393395	4.315804846519	3.7590495916155	4.35794210178353	4.64938249224828	4.81325657790872	3.52584036231798	3.96112732521233	4.46166034850697	3.7623872788493	4.66176637327081	4.00967676648148	4.72083029964895	4.27991717702323	5.02724438788711	4.35601274283148
+"MPG"	6.06304175732226	6.32606842293944	6.24584002324979	6.54029072381001	6.13101936164131	6.70111351577084	7.10682016751136	6.37188393544793	6.6142220283832	6.6673090273304	6.34173758661376	6.57751069695459	6.70748013133053	6.70238668218519	6.49983016669182	5.90451495725336	6.42048754610502	6.16075608838517	6.56197236447677	6.14040236207451	6.65810923608792
+"MPHOSPH10"	8.05423610846389	8.14107941022988	8.25135729343435	8.29493536573934	8.39193470707853	8.08216712294868	8.02088657617294	8.18682030952157	8.15620952387041	8.18291931914199	8.31955970895623	7.83526923827699	8.2883479635275	8.21704376520024	8.39338951337664	8.20135014321528	7.82965691117221	8.68968661719403	8.26926662046332	8.37636141206707	8.10364905991732
+"MPHOSPH6"	9.07045693138681	9.41911537106892	9.54399912776986	9.36755792758389	9.48330000098219	9.0266835332065	8.8501315261313	9.25992987539539	9.47401229896207	9.45627737523469	8.98789042393144	9.47493248333436	9.23917621769137	9.12009807835821	9.37741507696353	9.13472482540665	9.5099755715026	9.25733730885733	9.49640424419893	9.39011215247171	9.27904390320667
+"MPHOSPH8"	9.55360861931801	9.76622350894239	8.85711158419766	9.79932728515405	8.85449359529151	7.91281556250418	9.57558651255721	9.47679646130707	9.8949578421317	9.69721487318602	9.80494042475662	9.49036000636455	9.82272074755739	9.73573019667067	9.6549860476607	9.70555500862911	9.86560291840315	8.92391155494489	10.01618303956	9.68414467016111	9.76732952236012
+"MPHOSPH9"	6.33826500249025	6.79526637829792	6.01101172103271	6.28186237313248	6.28366014353787	4.8074196737312	5.92103784193758	6.48594866417211	6.3310766635906	6.75142218769837	6.91727345172556	6.82455352669355	5.93212831202517	5.94870465411763	6.04566898624723	6.69677018609825	6.63970800200996	6.27749706733869	6.45510219856131	6.72202820607472	6.59048574301659
+"MPI"	8.06154453332684	7.92594630092383	8.03207762356906	7.69859102706633	8.23403901532832	7.61527822642502	7.18892253101258	7.46786665447143	7.30517674365604	8.24036815102415	8.10663616206014	7.98601223854604	7.34833580550115	7.72557441309593	7.48079494358508	8.33220016433671	7.70852270285502	8.14626987199848	7.602931867597	8.41382667656756	8.13476795318723
+"MPL"	5.49232662481976	4.84899558744739	4.7878301563138	4.32143436210052	5.12244991499506	3.86942340727031	4.89496712792628	4.77664946720099	4.58922760223541	4.55448166666969	5.52006350044568	4.81607703075206	4.38179537191441	4.73563657601757	4.06659325063175	5.88355842418974	4.80034306955918	5.48835131299046	4.55399103726359	4.41644281758322	4.25134391757734
+"MPLKIP"	7.64041490834998	7.22396742439673	7.65397753873556	7.61649060168189	7.55316622673719	7.43838997690523	7.49987161834458	8.00403435856679	7.56395928072231	7.34222527554127	7.65109559154241	7.40142202323025	7.57152818075731	7.28245290818977	7.73621176394838	7.59213825826925	7.22427955300914	7.94525145639298	7.6770765808961	7.38504311204404	7.14901466625599
+"MPND"	7.51988917169115	7.32894225427879	7.80532751703889	6.88254212009646	7.75703132594551	6.95848820559365	6.77137149056498	6.9132475821373	7.0897450507619	7.59660422927631	7.10936562008851	7.51300958689808	6.83236469371306	7.00525759457028	6.97298166974515	7.14257141618285	7.08925391045472	7.20946363605752	7.06124404241623	8.03360498264015	7.61383886875126
+"MPO"	5.22519265936726	4.60908909789366	4.8629140890175	4.44836795486875	5.00725228529327	4.78558723606512	4.82614822850747	4.69295449268416	4.37359660599533	4.71923715340323	4.46072979068537	4.68507664037873	4.69097973893774	4.96038804316314	4.84299962105857	4.6351314358996	4.56156494850106	4.61489891059273	4.36141539334784	4.802516651463	4.62114381059901
+"MPP1"	8.77296343893423	9.03577694385657	9.26394728175371	8.86936669998065	9.52322625529271	8.85339579436022	8.26993624055928	8.89763615227588	9.22370930004264	9.71854325669242	8.86389181398127	9.55689087927091	8.97181070243507	8.45867581004488	9.05344860344531	9.11313330792156	9.44473020112238	9.22019066852478	8.99283039594608	9.48317679507777	9.73972825832164
+"MPP2"	8.12578248841883	8.34523713522981	8.36461196121866	8.197845793865	8.33993291937634	8.4683725071901	8.2156346738566	8.33436946023869	8.0684273021924	8.46062721028319	8.59848362433216	8.50897865009221	7.88652656740729	8.33436946023869	7.99112098759187	9.15251347128656	8.37731694611722	9.13057214605294	8.19922198369375	8.54081604755397	8.33436946023869
+"MPP3"	6.66991468127555	6.54268251400255	6.7907772780761	6.85270926494033	6.52879600297232	6.76529798793618	6.73774369220079	6.69930140890373	6.83519661546665	6.64255849405832	6.42842778064414	6.56559071173725	6.65557567367966	6.6930499472354	6.83905910751123	6.76744323672594	6.75433299290439	6.29772583318979	6.65995067114863	6.80190290366883	6.66757615755587
+"MPP4"	4.54822717464944	4.61044454626871	4.57412314107526	4.39935323756473	4.33471023074028	4.69232096129146	4.67557388357733	4.32141314596545	4.68294017443363	4.51201709746732	4.50184601809115	4.64677795708316	4.76619967551448	4.78421847897266	4.62846029757726	4.61283731983226	4.5837589123602	4.23845854934835	4.61195993116696	4.46852204901416	4.61738986277418
+"MPP7"	4.24304651505214	4.71995762168684	4.65042362106959	4.79899202846476	5.41759730121164	4.12815718103242	3.79692390441904	4.68213601065601	5.38002995268678	4.84009102542933	4.28814584978008	4.68639494457834	5.33778932411795	4.26033680295621	5.81835594470485	4.05271337444361	4.98800641098068	4.9288283931948	4.54867856038209	4.71995762168684	5.02480222152146
+"MPPE1"	8.54821575069974	8.34188265781986	8.20948317649431	8.09791690325265	8.36625944312587	8.18664780216804	7.98433525425948	8.0157645560304	8.23919542926543	8.35075097973485	8.38755819328791	8.13701128926631	8.069961786635	8.26580528980172	8.02187320740656	8.63094154981132	8.27609828491466	8.33335009386895	8.05776586236061	8.25404854049534	8.20640983197795
+"MPPED1"	7.03990781497773	8.01104805653827	8.90509080253007	8.19104189050651	8.62083867714112	7.99223119431987	7.69043676346076	7.6758938616266	8.66349515395461	8.33414097648106	7.5345824923307	8.29048593947361	8.43737624309772	7.49664074527932	8.27138273982225	7.83378690815169	8.45597515771735	8.21917092102361	7.9994469297083	8.72471550320828	8.64096217149469
+"MPPED2"	6.90103382241154	7.96746739324932	8.13763243849025	7.27834879724011	7.89684365750255	6.78593251204392	6.9167229579373	7.67789923862036	7.55252476020677	7.51417102437266	6.88516999697241	7.20346614286036	7.16357406625359	6.93779240973584	7.29523619391918	7.05431537897466	7.14754627925243	7.55542773525988	7.35130880604695	7.65563115326362	7.12874216788188
+"MPRIP"	7.98030039397363	8.04039078746476	9.21407158985557	8.40862017842663	8.88838013652169	9.67348129327204	8.81193509439805	7.98321678252152	8.30786918892913	7.85164207532565	8.06892090579084	7.94534072154954	7.99752578221758	8.06678368132814	8.11238569614413	7.5346874276886	8.32737726384618	8.84719400991557	8.33799290255066	7.9919613616468	7.8923495937303
+"MPRIP-AS1"	4.54016014688336	4.43924829167167	4.3423902210034	4.70330590175963	4.31596045542562	4.38332954050205	4.6341171948299	4.715358520815	4.6627291438366	4.56189795167959	4.56189795167959	4.49008176145483	4.38332954050205	4.45377144941819	4.37719373708178	4.39956267007666	4.53085815162077	4.57156180930464	4.60719527153487	4.40536536166135	4.45098999012835
+"MPST"	9.01513678660878	8.14440330220279	8.17586768797977	8.44490817138396	7.93045729837376	8.61948656526955	8.6800422323377	8.45503837795074	8.21956772875775	8.11934132937096	8.56236963987681	8.16572047114978	8.15258090001608	8.41571251771198	8.29584720008986	8.55798673200873	8.25698820261763	8.78373414223735	8.63090251355724	8.17232234731297	7.9076275722088
+"MPV17"	8.63314408135015	8.5873093435738	8.48479958400084	8.55347945646701	8.57435901535586	8.36456183148696	8.28509332903605	8.44543562826201	8.23380375826882	8.56917416744449	8.57673239046821	8.34826356155799	8.32032966081158	8.42228711308458	8.30174560486837	8.65107364152765	8.25173235625052	8.70046092978158	8.43530031833056	8.787922523297	8.45770246571471
+"MPV17L2"	7.01918483923329	7.08550581634435	7.08030838092591	7.11306167679056	7.01554962835442	7.16271117552814	7.03030248544913	6.99523061134154	6.87680168319993	6.98797165258924	6.95707850476844	7.01554962835442	7.22142208518987	7.14204793514497	6.84963927916712	6.9664043423685	6.63140477578765	7.10909693020507	6.9664043423685	7.01554962835442	6.97898465718357
+"MPZ"	5.49902090699409	5.44061319479109	6.09683678317715	5.593915600019	5.66134831238368	6.24926532179112	5.20989439097953	5.53755681022578	5.54158196311127	5.39872114335706	5.31048153889218	5.56521204116472	5.56374973188881	5.70508899508898	5.57348848703071	5.38276025650344	5.4151701416095	5.33969746845552	5.42644185123975	5.43189433785098	5.53331927501149
+"MPZL1"	6.89948649610577	6.09079229016906	5.23040589581485	6.19509937985842	5.37507700590503	5.80467273762876	6.25925410841598	6.42316959745497	6.1548373616832	6.65830465495762	5.81642912158696	6.11466257638286	6.40413451551674	5.94102683197968	5.89709973120333	5.16104614543412	6.09079229016906	5.37367647886561	5.87345928326843	6.54670890074539	6.20349142360357
+"MPZL2"	5.23749720877202	3.25454712696951	3.15027690265951	3.55277240383583	3.55160941428619	4.82410647082141	3.17690893215795	4.62786731216698	3.50587192206501	3.68677898483993	3.12440824606916	3.45025853874858	3.68911039812544	3.52297649760133	3.53932555628666	3.16963198878314	3.80031603927237	3.63185812922175	3.77902639263208	3.84359865030125	5.48746041030129
+"MPZL3"	4.79453058809009	4.72858189581551	4.73046655160462	4.28726135540301	4.54751080496412	5.11403233008423	4.74801344259313	4.57512919121534	4.61181653633505	4.44306204378158	4.400084195996	4.53451847266599	4.49589288014103	4.57512919121534	4.43155198520835	4.27569203304662	4.55372514229303	4.54904397244722	4.57512919121534	4.77271658346005	4.57512919121534
+"MR1"	7.46729384202322	5.71656556366923	6.11384610304935	5.28103938789184	6.01113350840317	5.22352047326007	6.34773084822081	5.87829275092912	5.69516445739369	5.81157060025523	6.00670622707959	5.69820986568599	4.98308509569217	4.79374922425004	5.28553685518235	5.52173937649078	5.69050004291591	5.92626221473448	5.49766068453099	6.49540243720379	5.74790116786457
+"MRAP"	4.53165345886915	4.64764496568457	4.53198657411254	4.59177992900246	4.74906088507244	4.88617262313996	5.21737599892198	4.60215462775492	4.87849109165278	4.92829402499435	4.34978525496203	4.62997618017383	4.854647041156	4.85276033185977	4.80202721857496	4.5763255621165	4.76075191446655	4.16089863856463	4.75187696227753	5.08596913813541	4.61301183102905
+"MRAP-AS1"	4.8670244337743	4.848530564351	5.09122390903668	5.0868782442236	5.0868782442236	5.73432786507607	5.25831331227126	5.05768616739485	5.15258248865739	5.19691707016638	4.95163561338874	4.98200908134609	5.11001953080311	5.46803837972315	5.24355593156865	4.91338280597042	5.06901101740374	4.90497184919284	5.01103471560574	5.27506550865709	5.24766121716661
+"MRAP2"	7.14972672722119	8.36489097654591	8.83589681292552	8.55290518777306	9.11853879918092	9.12427702874473	7.79266857266096	8.19238569400954	8.66337283696759	9.10366915006294	7.41750232234912	8.61615147753848	8.21672993485088	7.53227145351552	8.66337283696759	8.69281782183253	8.79673950205991	8.67298856545185	8.81302217714239	9.1307873309208	9.00732020659644
+"MRAS"	11.5185303511177	10.3854822804864	10.6925893111698	11.2951495042595	10.3994601904821	10.2016865398948	11.7548919663437	11.3094659883572	11.5468227431804	10.9326676762981	10.6563770925473	10.5099579130351	11.1196403160315	11.1676034783985	11.3569989831812	9.81773779655313	10.8524718412593	10.2173354376169	11.2205835614009	10.6876456079551	10.3051544528608
+"MRC1"	7.42915639771569	6.43618573107675	5.13793483697285	6.87163394689979	6.17469543016433	5.23920730130085	7.1419946377263	6.77074964622003	6.49804472660575	8.38084825602	5.62386775668699	5.98097198375458	7.2855627930623	6.77269194438216	6.06250269239198	5.67109169153355	6.41009365790159	6.10471632697935	7.30285344304165	9.29822857666207	6.49804472660575
+"MRC2"	8.06148606490956	7.9597143139145	7.95504532442169	7.8283899306077	7.60608904755426	8.3284314562632	8.17149782932971	7.78452336988113	7.88775116284461	8.20104666420668	8.0123548514807	7.32814122850053	8.01709086352616	8.11110671668209	7.71386560626745	8.22473867007743	7.76732651538893	8.00000487767333	7.89712546085268	8.58372525022731	8.01753095571365
+"MRE11"	4.7579795482955	4.6015027607535	4.58141821702853	4.80430279068872	4.49673381227876	3.86506037114192	4.79602730456867	4.88263059996323	4.67324833363904	4.73253834960812	4.9406999995892	4.83214445304137	4.6788186781808	4.74749850586093	5.02297343467722	5.1097729546055	4.801549245191	4.49855533713964	4.83978671397233	4.74605233961256	4.48384750790568
+"MREG"	6.9566590623307	7.36081366396917	7.25515438262581	7.27077978934444	7.54745742596964	7.71755515538265	6.48103213639095	6.88954043886978	7.88329377495854	7.89135754888533	6.89507073639034	7.49764560293513	7.48531495843078	7.45188530665882	8.01814704508146	7.00533484630777	7.65966150204747	7.88543867507034	7.80247895888647	7.71478968593481	7.6216004620914
+"MRFAP1"	12.450046775427	12.5142519258824	12.6023832065863	12.5158976860727	12.4605781093434	12.2928214642519	12.1528855017211	12.5968449148288	12.6540672729366	12.6122140827829	12.686030476213	12.6142566134767	12.3187927807948	12.2887728072607	12.3674707995667	12.5729403172513	12.5324573204067	12.7325343362846	12.5375825059093	12.4952081864337	12.583830513759
+"MRFAP1L1"	10.0530906939163	9.97920572030101	10.1679343665808	9.94015484073146	10.1812540335063	9.54747804513127	9.61278220248786	9.99700180319053	9.98017721241973	10.3081467600334	10.1438768715352	10.1864816972435	9.58381459964365	9.64257853375519	9.87676565273658	10.1736838845931	9.96864406258802	10.2552563608554	10.0215173000464	10.282481713858	10.1656828033682
+"MRFAP1P1"	6.44173130484025	6.48000860447068	7.04357985392605	6.43739359616655	6.55614368191586	6.9336474201667	6.78218246384105	6.65907444780522	6.32637204157114	6.26192610120763	6.47593148176309	6.64062093150165	6.27515454486243	6.57171375739975	6.51588843427872	6.4097084560954	6.35140081995939	6.61982858948481	6.39778037220619	6.55687355857933	6.26484262020609
+"MRGBP"	6.82934729556851	6.84637475699306	7.07177728198778	6.94849930845211	7.05224635229932	7.07773322191111	6.94906254052603	6.76047270833161	6.7592031082218	6.51768977672725	6.86489499551553	6.60485169594666	7.14151743505315	7.16002273946204	7.03707768894683	6.64161481228973	6.64668965309118	6.84438671697066	6.61108632839374	6.51331608202988	6.83934371469627
+"MRGPRE"	5.16654946094168	4.93885683018534	5.42812665206448	5.18572128860119	5.03471631715343	5.60882109588862	5.73223930475731	4.972753244229	5.56897052186392	5.28514532377577	5.05204655490962	5.26666151968058	5.54825138752371	5.43965478986841	5.29349169421995	4.94305715698653	5.48429040913787	5.17577490805108	5.22041306430879	5.52726478223977	5.18572128860119
+"MRGPRF"	6.81499669824517	5.62930876021355	5.71378385688884	5.78009443835567	5.57719862247566	6.66259592719256	5.87496120669105	5.73727152761035	5.88126665593547	7.12091498172538	5.62699567968915	5.81732351685909	6.3850449786764	6.45684846422429	6.04996239140621	5.20174101663272	5.4496186384321	5.46352841372023	6.0721327371452	7.33858456460593	5.79097442569101
+"MRGPRF-AS1"	6.32363630933795	6.51391647260077	6.26911648205563	6.35625502737306	6.49579011193151	6.45849583795381	6.35319902862588	6.40544372962641	6.52103398224401	6.40220405043551	6.16366176806125	6.51772634401197	6.40220405043551	6.30030276028677	6.5092576893222	6.48841500153587	6.56313165200732	6.02336717096729	6.37582690053327	6.45718866223775	6.28375289687268
+"MRGPRG-AS1"	6.90895183971942	7.17651640882744	6.99431585258483	7.2574106989704	6.97978983005254	6.872248228888	7.153500613645	7.00159798564386	7.30048970555011	7.153500613645	7.09085122176729	7.28287495351957	7.28193154751261	6.99645476911706	7.181949891636	7.36554275875059	7.25494916361351	6.86912756420575	7.11816021823446	6.9722333025224	7.28057175319131
+"MRGPRX2"	4.48138518884256	4.64749209601288	4.1895469909909	4.59021928508812	4.13867446343685	4.41577544910229	4.27623081058523	4.47405365450743	4.52066798656646	4.45503733336714	4.30832324796513	4.47162342225402	4.29334465514289	4.43542575777468	4.47824743679236	4.48624132846646	4.58858104376784	4.57512919121534	4.29938893389525	4.16325644402003	4.76467355464343
+"MRGPRX3"	3.47115147475991	3.55403763475554	3.40091665450627	3.43440409214948	3.54960729677334	3.83804897881636	3.55554540533526	3.59524404809119	3.69844458766451	3.50235427915766	3.49999357318863	3.63216008815726	3.6801432594181	3.57001414576795	3.69842504224389	3.53626452399496	3.54960729677334	3.31640235468002	3.55119703411816	3.73347918627631	3.70805989399333
+"MRGPRX4"	5.2091641361169	5.35437792670686	5.18429868620575	5.44161329885649	5.40604052268596	5.29013459286344	5.43266427541274	5.23788460965048	5.42960731162907	5.29435377071894	5.46292885730791	5.36561860048561	5.39576317200021	5.51878924781902	5.36561860048561	5.51403668859576	5.43857267908576	5.31766753204814	5.18970297871887	5.34009755633512	5.45587824700938
+"MRI1"	8.37484021595478	8.84767814156698	9.2037180670229	8.29431058817682	8.3354167837297	7.60816181714807	8.59558717736331	8.06996204934344	7.67327434347157	8.37094259369401	8.80500451788827	8.58746034989704	8.11107632283728	8.03337373191912	8.33612537660176	9.41106512361013	7.92449149702914	8.74281106858871	8.28870753444503	8.1696478689742	8.09833373053522
+"MRLN"	4.15577409536326	4.25964472169835	3.74358241265263	4.06465452086674	4.21971147402758	3.80471415334901	4.05076900475536	3.94778339636982	4.00771003614094	3.96855350867963	4.07784658034149	3.96881790088315	3.75669807880898	3.98082443188411	3.98082443188411	3.89552669484437	4.09098640361252	3.84054160309622	3.66382187088025	4.26340990495086	3.98082443188411
+"MRM3"	7.42122471180896	7.26505839601901	7.95460469143813	7.37253381624419	7.59462323021165	7.63421241396149	7.14726891475991	7.42350619690779	7.6216393045454	7.8160304701417	7.1371591367925	7.46873141498207	7.54047747849835	7.42720580861561	7.58090880436437	7.34837641847411	7.39563574416149	7.50911430283234	7.40693398484944	7.82071396777581	7.5646882004002
+"MRO"	8.45043019724469	7.42422135244247	6.45786878149441	7.06714686029154	6.56610642314787	4.95943014296011	8.06318680124544	8.49445587688673	7.12043682237208	7.17362717740949	7.36016299116606	7.07836601369312	6.65049042450682	6.47897036702473	6.29773659817829	6.44361862131898	7.04029151883567	5.82815187767736	7.70141509260186	7.09131038981082	6.18241970740759
+"MROCKI"	4.28127049937336	4.77698810290624	4.36725725315966	3.66199581157064	4.08408695963844	3.54457971583371	3.66071732396211	3.77317033349108	4.11004484677045	3.80546240837026	4.30247913444629	3.91423602976637	3.88509171534632	3.98718204008282	3.8697563025492	4.04817821032315	3.77098532388035	3.98718204008282	3.87373273978945	4.35452967875986	3.94206365222067
+"MROH1"	8.54967071891004	8.59507695836579	9.01833204229698	8.42577981357356	8.54136738010378	8.8973339350791	8.81723042651852	8.6815849968821	8.58900716830004	8.51102377118637	8.29933398753281	8.02057023713719	8.82136890024952	8.77341524480255	8.41513685080363	7.65582398826843	8.49520641905054	8.13282293058831	8.3798907027886	8.48994670905019	8.32408561624055
+"MROH2A"	4.18222367710485	4.34804865212561	4.70620758583487	4.25329936424787	4.35451007039678	4.30941386375841	4.57741619957883	4.29201708965511	4.5081831966615	4.37785200035737	4.20954984641821	4.1129157976824	4.35344116478423	4.20610369362875	4.60518732235134	4.33866489482711	4.64060444171189	4.39031472498163	4.35344116478423	4.35344116478423	4.11389859760311
+"MROH2B"	3.65257541412344	3.84054160309622	4.43715833519867	4.0746997203773	4.04933106821072	4.1923084352774	4.24306103192469	3.82789241118577	3.88150226100447	3.99446704907849	3.69358192904936	3.9541510359893	4.12805693330151	4.43781294083153	3.93672852220052	4.30690469766342	3.98501038698118	3.90639894294919	3.80326158473211	4.3876288909509	4.04608497390157
+"MROH9"	2.94906970106365	3.09389330980852	3.18732221820056	3.02162451446854	3.2681504405479	3.37814953991671	3.52000686232568	3.15207833669479	3.34791176962524	3.19680529604652	3.07138358376833	3.18032288318952	3.38723978620774	3.18732221820056	3.37417730112691	3.13306756695893	3.17395647816006	2.86865996940095	3.2547017463936	3.23456634135229	3.16058309651496
+"MRPL1"	7.72187092425696	8.05250587823375	8.60188191408723	7.8584787336023	8.47131503894939	7.58543460235571	6.87419935167283	7.77015792392499	7.87362821159696	8.40455980957713	7.90631979910309	8.13987478224018	7.78746554293818	7.48517419404028	8.03947486559095	8.0217299813399	7.70268003611753	8.15921731007221	7.89652883423041	8.39366497998345	7.9837634777771
+"MRPL10"	8.37875027077989	8.5103267262791	8.66604551319383	8.47305405514694	8.57652176731143	8.37182689718331	8.2908141404825	8.36439426927062	8.66005083601826	8.73674762420914	8.40779954698098	8.5933097245258	8.47305405514694	8.26285238169774	8.53190712544321	8.64005754335482	8.39789241793663	8.83310092723339	8.2905280183433	8.73428981453819	8.29568561499578
+"MRPL11"	7.73943904578825	7.69750657613351	8.02061958601867	7.62861962494342	7.95245606310751	7.49948331035409	7.64747926902593	7.6580037043251	7.70246334558767	7.93090318831331	7.6740291770243	7.87274220194745	7.68343169640794	7.63861458334155	7.70353251953786	7.88796704816788	7.59258418519159	8.06147212312719	7.68156985465683	8.16743494140733	7.73829446553951
+"MRPL13"	7.47203341286592	6.88359419585251	6.55239707691075	6.70743619870482	7.21001135223108	6.15462988706572	6.51823557887079	7.24117439556504	6.74516270505721	7.07170095219243	7.04654118122876	6.81159660390867	6.47041984704298	6.32648744239406	6.66796736755977	7.05404890301327	6.6308328899224	7.22481949834205	7.09823668659021	7.1501279603226	6.83022777739109
+"MRPL14"	8.21652536665263	8.01106728916802	8.25539472221498	8.14164142840587	8.30229237377738	8.37951831185989	8.11203933822589	8.30633790393872	8.18303978201581	8.48730073794412	7.99549989311606	8.16291764372597	8.15434468697403	8.22611529690248	8.17002306375709	8.25778805789562	8.09658534853171	8.51876066818122	8.05851717025774	8.41378168568205	8.25486254383937
+"MRPL15"	8.2860644677576	8.81547912834477	8.8033821138348	8.62086907967632	9.45582901753784	7.95561120302297	8.27597824024356	8.91931284155549	8.89555774771529	9.36442973938511	8.44146342423849	9.14616437288413	8.34959790171069	7.22398607988608	8.70782607002046	8.96978097805109	8.82418647878616	8.88607013312358	8.81547912834477	9.43094653579773	9.17896882974341
+"MRPL16"	8.94397572084372	8.51917502682399	8.65449136479669	8.33681107077301	8.73246503328192	7.85653771001699	8.24735667861891	8.51341891267187	8.78309320498241	8.68716988327237	8.33165094429237	8.49894056732119	8.22681210487922	8.34643531083573	8.2285936612264	8.40058395110154	8.25809775478885	8.65639612997894	8.53525654250627	8.94991401648793	8.52539873254152
+"MRPL17"	7.82467961622362	7.66763061792904	7.98187642363918	7.5847511285252	8.14280969673533	7.72270184427754	7.51939140522229	7.72715411645482	7.64119949327532	8.12931093391567	7.56881498912013	7.81505200924706	7.6309505135913	7.39645328495126	7.72222968960732	7.75155896858393	7.73352518605871	8.43531544456993	7.77827380856226	8.29938638668311	8.03891695643988
+"MRPL18"	9.45142075144414	9.29616549611151	9.38475928488285	9.77061052677335	9.66358398880504	8.99537395773156	9.55389851869045	9.58090914636285	9.84600250198591	9.59201929522165	9.48804367353804	9.61191432065296	9.6934556491856	9.36753398719294	9.63277946256012	9.51059055651929	9.55213188102592	9.55460540379723	9.80720387371177	9.81878207014483	9.57338827294365
+"MRPL19"	6.9731914161212	7.12013706705056	6.83543997634126	7.17094008616001	7.22874582527623	6.70579919937004	6.85584294163941	7.40546978436481	7.35785699796191	7.16466566238119	7.47455037912856	6.99866612438518	7.39552340381471	6.82329379791351	7.83022495657821	7.35013248814816	6.83766528338757	7.62523167282733	7.27018701739652	7.23212889228546	7.03713934039204
+"MRPL2"	7.77585770267031	7.86202399388504	8.21523610395932	7.76190844108125	8.06488101695341	7.91304324499264	7.68080163215437	7.4008813451425	7.62129799097192	8.10623992155347	7.81268245653866	8.15377378618641	7.87255208865527	7.97030738066938	7.45009786434889	7.51941881534718	7.57252012928194	7.9169926938612	7.69549837692514	8.09660215302274	8.12648403422975
+"MRPL20"	9.55324748372991	9.42252221097462	9.78260873406417	9.52147723065273	9.65822240363535	8.90843888709671	8.65458395698628	9.45611458066257	9.59824462298104	9.45269801501124	9.55005847686039	9.34554198238786	9.32314775633036	9.00049407008274	9.5804047047788	9.40916848192587	9.19978397461773	9.67144052133085	9.43625529208041	9.45269801501124	9.51382749835842
+"MRPL20-AS1"	7.89008188866429	8.00926466741344	8.02777870159922	7.80268045119599	7.77314144719153	7.91613889814881	7.71979466353128	7.59573966909603	7.79631111952332	7.83235087252631	8.07206775997092	7.73546963942918	7.81039796394698	8.21411030432229	7.80511601112725	8.06135971768195	7.57007270143848	7.98958736615931	7.81005317417393	7.96078698339996	7.92020788728698
+"MRPL21"	8.36800901377071	8.4122428824516	8.8243614369379	8.31721896169543	8.92327490820036	8.36346367458546	8.05454862205826	7.8877719248216	8.64354932937209	9.0866774384184	8.4122428824516	8.62815765127916	8.24298184822478	7.8028914398294	8.07222598143796	8.29594790343464	8.22669820370217	8.23511865557747	8.17216550514806	9.30894195283743	8.74118841320951
+"MRPL22"	7.59800129968893	7.48970124923305	7.84318307236239	7.3578908027706	7.95755216752404	7.62975670221054	7.55295463138514	7.57415629278825	7.65442343619131	7.839397283775	7.61668117434257	7.62845880587089	7.4644235777703	7.34970184625085	7.57918212940627	7.79824888068574	7.38641919004539	8.08192808105176	7.477175601802	7.32541105227272	7.44020168567553
+"MRPL24"	8.69682324032896	8.60047820906243	8.59039035609382	8.47525826597192	8.75473565426083	8.56156209243142	8.30645271138017	8.59039035609382	8.31342104027136	8.62656793364748	8.66263543336803	8.76633128780834	8.54662254389394	8.48933085776314	8.28995248531389	8.9011751418603	8.26190781347363	8.83851737560505	8.55470167617256	8.74132708322414	8.59726255733932
+"MRPL27"	8.93042786427378	9.05121211444504	9.39110942904939	9.09165322866212	9.17628920048268	8.79538134785297	9.11144944704595	9.21474702188032	9.25915567216147	9.3252929314486	8.9395446476053	9.06474889586924	9.08360042793231	8.78788179669185	9.20232776264204	9.17696009532651	8.88896274108807	9.40880867914484	9.2309001555195	9.55768692122241	9.12536776559711
+"MRPL28"	8.21571439872228	8.21128045278819	8.59763545397326	8.25156772080755	8.15856185686128	8.25156772080755	8.0789818307012	8.17388825926761	8.22308420132785	8.46236568042511	8.25892024068538	8.36681886615825	8.20053708527834	7.97801178515321	8.33990516299038	8.13909533913001	8.20117943665361	8.25156772080755	8.15054740354989	8.41671266225094	8.31174957127036
+"MRPL3"	9.44707740589533	9.73132941229044	9.45099118470052	9.53997980738854	9.84718825681291	8.56723616073053	8.88253384998189	9.6062131827252	9.50466656680084	9.95309527353633	9.60252643303823	9.78279168259336	9.44940751164305	9.0344557630785	9.55525336569039	9.88464740132199	9.59961432539529	9.62502415656293	9.83113474279351	10.0945680412624	9.88993563485365
+"MRPL30"	5.47154504692875	6.15386172544524	5.46385106061921	5.91344211319847	5.64633337142598	4.73471904508759	5.53288030995196	5.69344717625131	5.38048295082104	6.13288446552782	6.17018445408709	5.99387901682504	5.20910775928809	5.39415588805401	5.25662161561611	6.71090529101933	5.85404345822749	5.50252165040488	5.93275857758913	6.29318596702738	6.17133388565509
+"MRPL32"	7.97604829006468	8.32124763288724	8.52975934915034	8.25914978693093	8.62538329894432	7.74680506372537	7.29939655460519	8.18370575782082	8.40210260096691	8.46890822404266	8.14941403799928	8.27667418482025	8.28808850280965	7.6693833754616	8.31390315874994	8.12099258479301	8.14256567598161	8.58970170457345	8.17104428257334	8.38643280651366	8.44859604659187
+"MRPL33"	8.82131520413668	8.66469102928685	8.41993445253472	8.92008361824091	8.96305135543212	8.25879047902362	8.79256231124055	8.95489399768999	9.02337529258492	9.15732912903006	8.71737098593717	9.03113950744457	9.00564171661569	8.54448172902835	9.0560774331548	8.7862651793084	8.90235830269514	8.98987531552089	9.1304024432181	8.9601549332269	9.01004562093656
+"MRPL34"	8.37796002974495	8.33119996687381	8.66159390386654	8.48798830693135	8.85752628961851	8.53554079931852	8.60738872355297	8.56274720520309	8.96351545339703	9.18412195850085	8.56612510480346	8.67991098661749	8.98275662270691	8.5962775468718	8.98056510576631	8.69254717439439	8.53418770397825	8.91724481145345	8.67873193580328	9.00526597769956	8.850492307358
+"MRPL35"	8.1424432805911	8.26484685569497	8.08392069059047	8.32945006363145	8.46246610280321	7.75853074404478	8.34411166336217	8.32006899469785	8.44096394668554	8.62755653281316	8.1560538005012	8.49823689475829	7.92176677944323	7.90692736225383	8.27001042066785	8.46532945969984	8.2851892873903	8.29560269111146	8.51534849654331	8.78047429824624	8.54031645992875
+"MRPL36"	8.95449108598589	8.89885492151825	8.84781555651984	8.829662048827	8.98899614655121	8.57899156243728	8.79138171054977	8.97659250193039	9.00331304497154	9.13950424105299	8.72810929661217	8.78755811285634	8.89128026067191	8.80683966629563	9.19753039544671	9.03161055108876	8.65516923866249	9.09889784206294	8.93773977556871	9.25307433795649	8.8052371888433
+"MRPL37"	8.30764550030904	7.92639031235209	8.20219031624969	7.62341411964116	8.33392808373427	7.54847912155941	7.51253336548046	8.07557552828267	7.69849079232507	8.36232696759046	7.91889970006717	8.2421912898484	7.44892218789708	7.46136111242377	7.56841577721435	7.96427425279291	7.96899162495931	8.2374178175489	7.80466698302983	8.54269919971578	8.4268510026844
+"MRPL39"	7.69497169687167	7.53809780178152	7.09986517779064	7.38830753550842	7.69485646748125	6.66253698683798	7.34264996081923	7.5414325475936	7.88905778403401	7.9452464045612	7.52991360250311	7.55132841690971	7.33234049774022	7.14549069848134	7.78088944154017	7.8480767717867	7.40194755571433	8.08547333037047	7.55792075641965	7.95070508878656	7.73434841846328
+"MRPL4"	7.5610004109631	7.28203474707071	7.42151270054317	7.14787283952984	7.75546085839539	7.3305449316845	7.46305906399018	7.43878087150784	7.46151316315495	7.85524031864871	7.41750232234912	7.55290673287634	7.45953879132509	7.10583347515948	7.32162436515757	7.39833189483267	7.35764263868216	7.83353120339158	7.25635489542044	7.99326792235012	7.85787240174002
+"MRPL40"	8.47478957158883	8.15230211122869	8.44752181356011	8.08389604939916	8.41699819140837	8.19102880948482	8.08771318628588	8.09180653526356	8.24951788811347	8.41231881269807	8.30855255826994	8.21388614196152	8.02312265141843	8.11749291267714	8.04303718124548	8.41964481018642	7.78608013387742	8.47853040318735	8.21058188047267	8.51882198622553	8.05275406601719
+"MRPL41"	8.827936777339	8.90455393827498	9.13226387688956	9.18720425055763	8.62538329894432	9.16477868948001	9.41147350474304	9.26418389532081	9.05616661505426	8.88640863877511	8.84700191446269	8.85903604557543	8.95844335497603	8.98816101901104	9.07406237224142	8.05958197728822	8.88046244234311	8.60392975631145	9.04630558930258	8.95689522211197	8.90363212606992
+"MRPL42"	5.53598092691246	6.04079133081383	6.53216882127593	6.00350528268036	6.66083239689583	5.98929422032607	4.99837672787551	5.81294768936899	6.40985974820409	6.27742917363061	6.20524889203623	6.03799745425716	6.2030763496523	5.87966972692792	6.39503559440337	5.97696316773715	6.24774023843103	6.58299349930584	5.79337918426528	5.93835228848952	6.46397225365389
+"MRPL42P1"	3.13334205007267	3.44456946566386	3.36522683288908	3.55998218180674	3.37722178894722	3.49815664087374	3.55543021962834	3.18404779816901	3.52794444075191	3.42508402481361	3.1864714227746	3.3024339101175	3.44889330091771	3.46659611223316	3.37722178894722	3.32004885993402	3.54960729677334	3.18780031608889	3.5021560829911	3.16968127401849	3.33574867205222
+"MRPL43"	6.86867049268278	5.67710382535199	6.04281280813245	5.64006754294076	5.7252955109218	6.67617756343375	6.11367082491704	5.7662511083396	5.99278045084553	6.49576276296102	5.96342095170104	5.45485422862715	6.16852643269635	5.85769092346587	5.60414587454898	6.20866008511568	5.78586926008155	5.96342095170104	6.2025028007883	6.64942964815253	5.50426990493419
+"MRPL44"	6.8368630059174	6.94202762924746	6.98937791791466	6.97892330019148	7.24556843286762	6.24285954484227	7.08897467755164	7.28648365348415	7.17784739843229	7.5319419654498	7.06968110999079	7.24617661621821	6.41842812842284	6.45694837022745	6.8191650567121	7.5739326972707	7.09608935253017	7.57994098901115	7.09985367430922	7.73676683357965	7.22269624232148
+"MRPL47"	8.8568651499363	8.65806152197652	8.7420119346663	8.64452969196585	9.00483956042667	8.37061499165799	8.5122326408637	8.73910004201017	8.83286157433057	9.09035854652399	8.71000746617602	8.72972244547882	8.56118987829959	8.3627260877219	8.9102251604648	8.91770195817734	8.56252080472521	9.073894345399	8.95089448556053	9.04791957676698	8.83473644879047
+"MRPL48"	8.16371026228749	8.2420097096152	8.23242073897011	8.1514356268495	8.36979869059913	8.45386119507639	8.23820646193717	8.15846602244785	7.90261782294452	8.25314149737879	8.42968772707701	8.09530368970189	8.12252429037731	8.27465791285823	8.32231453262132	8.88775938031521	8.1443888771047	9.09705506056855	8.22838809893677	8.36087498921572	8.15653541095828
+"MRPL49"	9.37185960494838	9.46896484582733	9.31869693608407	9.39488401209748	9.6010174447662	9.41071672256793	9.32978980026043	9.46144309489297	9.66710435380183	9.76687376798363	9.3383408139666	9.46896484582733	9.54933901848578	9.4082519450103	9.50175459542589	9.41545290308552	9.35769276504	9.58504075046105	9.40883196335217	9.65596678657632	9.5126534540018
+"MRPL50"	4.44801906077302	4.76557254049501	4.36448959763263	4.49258617279686	4.5032877154425	3.99416464009801	4.55404524134085	4.53707665543779	4.2947976575029	4.61007568549301	4.54025077779218	4.2993728316805	4.68563123665276	3.97886652398517	4.54879916714828	4.7258437245684	4.46266547789436	4.7939943459758	4.62667340162733	4.33222658868309	4.54063212194147
+"MRPL51"	8.12464531570571	8.05409351951731	7.92021577955199	8.03119655759881	8.06355647035179	7.7870547552331	8.33144723082247	8.17257715076052	8.26687780391987	8.20342182871961	7.95151627201349	8.20498969109688	8.03712291266128	7.89533944320457	8.22517953079675	8.18793786049049	7.96346858499782	8.13323481512146	8.1408475049961	8.18595233541876	8.15400972859362
+"MRPL52"	8.07021768187822	7.46745569257422	8.17076945959579	7.66756306820531	8.01872602242011	8.15679090846283	7.89664710543623	7.71183195646803	7.51294701568819	8.00646058472421	8.12971047499446	7.87225664327969	7.89664710543623	7.7036652936579	7.81870008795437	7.88702298257045	7.71372492199147	8.3489487881991	7.93538472209145	8.15191292990278	7.92188345185205
+"MRPL54"	8.14844030948135	8.18844247764667	8.52449985255184	7.99492270285815	8.40993449384205	7.8698364912501	7.92574298495881	8.20744135285235	8.11331266663946	8.57152008189803	8.30673925774155	8.5073216199891	7.76382469039085	7.65159574813101	8.21357207468974	8.38397512661125	8.07571128234185	8.57578833604114	8.08931007083957	8.69625596898979	8.21455057702855
+"MRPL55"	7.79104764343471	8.06258445555192	8.70003021048359	7.7983721932226	8.2674454763305	8.00309878286727	7.56679547982082	7.7049560006596	7.86173281710602	8.23009814700811	8.09227315341597	8.04623964114172	7.77255854063813	7.78278018499734	7.74215391739078	7.88045160929741	7.93987429714181	8.26280672895757	7.94042406068773	8.44489252165938	8.07684153841382
+"MRPL57"	9.9626294727543	9.94281544174169	10.3255265006355	9.73521147421082	10.0509662642672	8.97449117852396	9.52667329370967	9.95759463598232	9.95164881092638	10.2695730381959	9.99503522930033	9.98231851768559	9.70478045387758	9.65945435606502	9.81410311538951	10.0256380700627	9.64683659108344	10.1123082798188	10.0669527276465	10.2909759721728	9.96648381688957
+"MRPL58"	7.35555127033299	7.09458216397847	7.54289494633838	7.00580290951622	7.30470591751249	6.93491155398493	6.852447963887	6.95052271919277	7.13432149113691	7.32067098243603	7.33426172056116	6.92780742641731	6.93438651287222	7.09257012678747	7.10782265574222	7.50379063635717	6.83236469371306	7.65211701885134	7.13277680059956	7.39032393475074	7.06003141759392
+"MRPL9"	7.6914955340101	7.70033177786584	7.89211617171552	7.59025095701931	7.89369978844994	7.45239581071986	7.68386907149788	7.84426746284609	7.72407125040949	8.23729611907134	8.04363308685505	8.01468708746063	7.81711372358412	7.75267477693737	7.80923326433857	7.96169179617032	7.89211617171552	8.15115389926203	7.99052109211613	8.0742052740198	7.94415089834162
+"MRPS10"	7.2223601777933	7.30799969971295	6.70571739792959	7.1258109481602	7.64189667388601	6.49804472660575	7.26696743148074	7.4393535977579	7.65107057308833	7.79843960004652	7.72211703138978	7.71443458817651	7.10168248448762	7.01471157790198	7.2176847320827	7.52241739517646	7.20775846641571	7.42046243024262	7.30947020227735	7.72006760849508	7.85018340546866
+"MRPS11"	8.91155972020378	8.62332371264219	8.69926996465309	8.41576659296455	8.62189984278046	8.15563702522593	8.38231930495615	8.53214780603108	8.73603960406078	8.95877935221741	8.70949418521302	8.82094099998113	8.30678532598806	8.43160180798253	8.73271077892607	9.01578362298221	8.60425717727852	8.84789678219576	8.77784162652274	9.16605269816061	8.79187025999708
+"MRPS11P1"	3.76649585251223	3.52504546678837	3.67610957793037	3.82665401013733	3.5372569209568	3.88407417985774	3.82550922417775	4.01896323447675	3.97762928045684	3.79335309475275	3.70846362487639	3.86128473340865	3.97925830153132	3.87821971627797	3.77496939714928	3.7585480183941	3.66117627499857	3.50350584816298	3.65065806879921	3.656285788061	3.68340757255625
+"MRPS14"	8.12848154739601	7.65109559154241	7.82365465600028	7.40989312471708	7.57612634443091	6.59910799917375	7.25253413748804	7.80745702045903	7.40891561456642	7.48481507534378	7.99447513241352	7.37217052230322	7.36542605983332	7.3352800363134	7.35533024347067	7.77944145082375	7.26859251431396	8.08143586766357	7.51398840814733	7.45357484307362	7.47947171259369
+"MRPS15"	7.14206852002585	7.21136846668994	7.11096030957699	7.04956147761882	7.48424880652256	6.89113937540048	7.02823679380972	7.28751398967667	7.30167215303845	7.93120871274188	7.12404907714719	7.24489520886911	7.27594756737299	6.88897322203585	7.62365163054444	7.4442212085403	7.14614881771692	7.48991227359381	7.50827860341881	7.66658026155439	7.4738915902465
+"MRPS18A"	7.7346413942429	7.6153250757538	7.60747654108499	7.44378361690692	7.85806339706387	7.20160046509388	7.33616181123243	7.64727972198161	7.52777806021957	7.92468113574996	7.60747654108499	7.8069634607632	7.538585346642	7.4856362786268	7.37262326641396	7.97950243407246	7.56867448284036	7.71794042694253	7.33640347968834	8.08898940092345	7.78909335376526
+"MRPS18C"	8.59336864642277	8.62253583140782	8.15436689667371	8.45515880860846	8.82299872932991	8.06740119846661	8.61141008692216	8.30198301332293	8.71377573836858	9.02078426185336	8.51720803269279	8.61837284724149	8.26886829611684	8.34888455516107	8.48348168446648	8.92921243803372	8.44173292025476	8.92480755256421	8.68715119460623	9.01813083408846	8.67561566392852
+"MRPS2"	7.86664347546245	7.56910270744825	8.05117745769227	7.36914140752622	7.74646257895825	7.60522389038155	7.7736614652341	7.68870928753392	7.78809567167488	7.82713683722797	7.64899134463291	7.61641042919173	7.34246149556601	7.50957785057051	7.52845539248031	7.74255154432918	7.57007331244827	7.99465742001226	7.58878380105127	7.94339691196456	7.68527729105535
+"MRPS21"	9.08971637922759	9.54607246652063	9.64189076352663	9.21187825136297	9.63413067089016	9.13978313514423	9.14995841390992	9.29887154105466	9.62498065440345	9.76443584090718	9.30831482661178	9.54320858276942	9.55351297441893	9.31257562804061	9.58692162344135	9.1884423953265	9.53116254884092	9.59881352704323	9.72535666802258	9.47171481233374	9.6664884996622
+"MRPS22"	5.12302438686495	5.15374650093999	5.22332019182012	5.307419630656	5.0175414935346	5.30182563095983	6.02215214157703	4.99446091164443	5.02911786542874	5.00442792859868	4.71974340905526	5.11029687900612	5.34098737317768	5.2370429001399	5.04448517731177	4.92983778488838	5.10557146739409	5.66347644502255	5.340334372013	4.99766335553992	5.15927249267933
+"MRPS23"	7.29811475745632	7.16008728644115	7.48348123760534	6.85979939327306	7.83841660118478	6.80780370852003	7.04844593911531	7.01379020209247	7.11702873522218	7.77477108152889	7.31208020555865	7.30316082357095	6.6333159771662	6.63021400244331	7.25635102786081	7.70796507964835	6.94584339613059	7.80616455376566	7.25851297532349	7.82869604252174	7.42247079128099
+"MRPS25"	6.49303486220637	6.73178814501935	7.06359521493009	6.42193670531532	7.05267843879449	6.01976961700667	6.23510696141892	6.6961441380367	6.63291107424417	6.95217298612475	6.68251682863828	6.9334111697005	6.32897378983415	6.25752080837252	6.10433923561394	6.79610026369243	6.66857956695289	6.67251186063467	6.33049204912157	7.126398227743	6.79943794651241
+"MRPS26"	8.55886139049722	8.7579262432391	9.0925612989567	8.59818396117211	8.82914515776929	8.65573554561006	8.55053469732642	8.55108255686119	8.72989870305789	8.90998206524179	8.62726911460445	8.71305553688506	8.89227701502186	8.70131212197331	8.50356751654842	8.65653185804433	8.49361807647893	8.93356538435073	8.6993222855958	8.83271429791865	8.74694839098595
+"MRPS27"	8.39850574593764	8.35443378247537	8.60540322355604	8.16274815323543	8.74100598942813	7.9422995132378	7.88831132396377	8.27395021762336	8.56819805851813	8.60620467364009	8.38254076709655	8.72160433832645	7.65519112645325	7.94098191955909	8.24679123734556	8.73124086332211	8.62131805890377	8.54123399962891	8.46471657937095	8.87337172846718	8.6683806160874
+"MRPS30"	6.97397498882852	7.66697160705702	7.44635553669112	7.57671655636869	8.37540868112976	7.07245496879972	6.66417315927281	7.92935052679843	7.67751107606251	8.32581479175104	7.56107444087834	8.13490205522188	7.07464935613706	6.90818339891369	7.19705204297285	7.87250756652367	8.01727192212114	8.05583204371229	7.44300602437505	8.20661499394793	8.05737950092033
+"MRPS30-DT"	5.99879555836791	7.00052782725674	7.37104939036591	6.97743664416171	7.22142466957326	6.27560716687855	6.08595902575007	6.79738372017042	7.18573098311493	6.45248966054565	7.07256832777678	6.95185981403567	7.07484406575444	6.46654086522946	7.28142526653384	6.56612091551557	7.25267011099802	6.91126078094343	7.32289201638065	7.10782594677898	6.82233204094761
+"MRPS31"	8.31031597778158	8.27753537123454	8.73633152650822	8.10436691592242	8.95046958680418	8.15181906566236	7.75082428140524	7.96139778027288	8.35902091274909	8.66928320932006	8.48407439627233	8.14719381464614	8.23278335521054	8.39944152019724	8.15436689667371	8.27037953145843	7.95829638164897	8.80377529984827	8.2252286890581	8.5904347707949	8.50068363426431
+"MRPS33"	8.54753811714876	8.82468456200406	8.85848301197747	8.69162121741524	9.08646005625643	8.18733087573034	8.28389758242453	8.76667306325995	8.95104584762343	9.25639462433038	8.93489202249016	8.8075279560358	8.52115703743644	8.39655799181602	8.7217473517594	8.96407157274423	8.58720043938987	9.06019776526122	8.85352904661275	9.25357590157312	9.07381833991587
+"MRPS34"	8.38335702203761	8.00366763178322	8.42392035778139	8.03023634219762	8.17368492369753	8.26364731966974	8.21776426899533	7.89614342113786	8.11581285606404	8.51528637375925	8.18096633017638	8.25331327531305	8.13421073710997	8.00851230825313	8.23205047070794	8.29119805928895	8.06775229442486	8.43805230131654	8.25491865486411	8.49236010786857	8.21534987620061
+"MRPS35"	8.75720717397553	8.88828780952841	9.24205445096992	8.72181954186144	9.32108939039949	8.62396846399398	8.49149502489558	8.91354063288055	9.05968289069912	9.13487344919014	8.71546404101981	9.02645811110161	8.72259152460339	8.63982084038567	9.04570265630975	9.29518319653615	8.94261858496245	9.17331736226806	9.02954423942948	9.27565706028524	9.05450409679483
+"MRPS5"	5.76584175801452	5.63755546528161	6.11588022568784	6.24780792991828	6.09771937761786	5.48844356406569	5.9776549252088	6.13096203337886	6.1599978315313	5.6954835523539	6.106662909418	6.11448857443678	6.19382736325781	5.99087199086192	6.44146605886478	6.04566898624723	6.08230390274653	6.48464696882479	6.31688145576524	5.80704814905133	5.40318856893085
+"MRPS6"	9.76179881880103	9.1025068306834	9.32028964150867	9.89237139636254	9.57314778704367	9.84453499957628	10.1455766415091	9.65163596530829	10.2911902598084	9.95593550177892	9.42204719136632	9.21225418217652	10.895196286565	9.68774283068813	10.4254146381298	8.95825015306379	9.39336267912678	9.39921963778798	10.0169250793096	9.39512073081023	9.25751451012394
+"MRPS7"	8.48413640808473	8.08699006004052	8.19900118471642	8.30808190375835	8.44666771166207	7.91744911041651	8.16171228620374	8.20868713475587	8.25260228614793	8.56486903836354	8.17164552850735	8.40946676762272	7.95526808408642	7.9767523595186	8.14991039572324	8.40585737294572	8.11505456271206	8.4846128401007	8.19530448597073	8.91247999354848	8.47155041551844
+"MRPS9"	7.85564818766461	7.86355319390116	8.3716331360071	7.62282930352942	8.48638380073933	7.57239008013416	7.57853564209445	7.47896325566477	7.71244695612506	8.1768566464922	8.23813616785205	8.03293818737658	7.57862118470634	7.24315210564212	7.59526668736841	8.43979554630257	7.73022861874185	8.52989515840207	7.9090690327298	8.43847878739455	7.9749476064309
+"MRRF"	4.77147695952704	4.82917844269618	4.83327004346828	4.57934420628736	4.782400391756	5.13916993832556	5.23714692903682	4.85557182908691	4.81218268174907	4.75554993575993	4.41994517961982	4.78646079566871	4.76596895166525	5.05795821976207	4.71277311757021	4.5391344801383	4.78639240014241	4.46149519291565	4.66120741142956	4.80181271372619	4.61738986277418
+"MRS2"	5.68062456334338	6.0102840089399	6.19217211316176	5.62372002322322	6.45953926052776	5.93716057462693	5.41696736534364	5.95032947689691	5.91530645446084	6.0058615243965	6.35454665861268	6.13920285390058	5.72601093615867	5.67986601676834	6.0115600931331	6.07452386087754	6.42377000403036	6.42556428005307	5.67946446562891	5.96799480646276	6.21704980399309
+"MRTFA"	7.88373261875448	7.83563290314776	8.32306806489182	8.06814584813774	8.07221382048423	8.29271119493725	8.07221382048423	8.11605750765399	8.2634454954988	8.13434449137126	7.65109559154241	8.2062646712554	8.14642843794334	8.21713861736955	7.78835871467709	7.41768450304935	8.26493377917465	7.96196734953714	7.91336984933698	8.41703402855723	8.17305327765031
+"MRTFA-AS1"	4.29698761988074	4.38195702000894	4.2407682196087	4.40905684165985	4.18320519784921	4.4775071960509	4.6278917699442	4.38195702000894	4.64285954609129	4.355394309188	4.38195702000894	4.54285642449046	4.84223858709373	4.40910692336387	4.40629147591383	4.19085096250476	4.49860257178111	4.02970269376989	4.36438787412164	4.78044712787136	4.46165594047162
+"MRTFB"	10.2969052142036	10.7530285757379	11.1443700012166	10.7879119834897	11.003955515538	10.6079908578897	9.45876090275243	10.6969826944146	11.1755204160444	10.762988421102	10.0005123289701	10.8069531989853	10.7022799163055	10.2292451279416	10.9061077943694	9.6572010827066	10.9197765182003	10.5356284818799	10.8362211367105	10.7082270044503	10.661642943369
+"MRTO4"	6.46886950588064	7.28119292048939	6.22528175453793	6.96683687193671	5.31669443864276	6.17964743185643	6.59696896562953	6.87037695146076	6.93151084310671	7.27923193196119	6.68686390499487	6.7873742541322	7.13680924480042	6.55580107229275	6.9088818084324	6.9004450135834	6.10770753087399	5.61405380472312	6.84170697245549	7.6809283637508	6.57643544979403
+"MS4A1"	4.09307307888811	4.4752576076541	4.35120051877736	4.41570490047421	4.34634699370544	4.20068653435543	3.87143465913041	4.45907922048693	4.48219946119027	4.07838053455852	4.02649133265177	4.28994673712506	4.14228944079557	4.24407641294278	4.44931278395346	4.61284354163675	4.85177031125059	4.12631198550104	4.28909911994733	4.25503070397171	4.49008176145483
+"MS4A12"	3.88509171534632	3.55440383305727	3.95392678047742	3.96576860523474	3.91691945182317	3.69592752397862	4.29648059798943	3.52950902018564	3.93355667046482	3.84258310022048	3.50206805540659	3.93704651730363	3.94714398034058	3.90882538535162	3.84258310022048	3.81660801769582	3.598276216396	3.89777749685874	3.81926030054892	3.68292235888559	3.78620545352069
+"MS4A14"	6.15970317344701	5.49408380226736	5.07632268723525	5.547314686638	4.91842383491341	6.42643227091993	6.53893940638667	5.8445851555625	5.30097962000209	5.08363880745962	5.54877609118196	5.15058164026976	5.85526403829236	6.46654086522946	6.18946491790126	5.55681764922946	5.66486901752876	5.30477675620776	5.83008592010617	5.26313144069505	5.62735506388359
+"MS4A15"	3.92582442326396	4.03979539245002	3.9497404931785	4.03979539245002	3.87528968882296	3.69614261424767	4.03534757256091	3.98968021173235	4.29114122453019	4.15254251156657	3.9526432462815	4.15451915766316	4.09329937696619	4.08201055951188	4.11802755962311	4.17051531590235	4.08908977591122	3.82987728905805	4.15513921698133	4.02831337582968	4.27400958919989
+"MS4A2"	3.42370999860471	3.38339207577456	3.80375884659608	3.47758166822557	3.40717720715251	3.75063791747677	3.68955555955047	3.46767716627908	3.76308540352257	3.46767716627908	3.24611923306372	3.27812171269408	3.60229988872781	3.42569416325098	3.43579452864566	3.40970330068191	3.3677906786598	3.41603442714824	3.53004580464638	3.37795402116086	3.50472992937762
+"MS4A4A"	7.1355138111464	5.02959195690641	3.3404377108901	4.03109132330603	4.42953635670375	4.39843059833328	4.09519399317163	7.08876372114202	3.38450198055516	5.90676918487945	4.72688227013639	4.60306536330487	4.24231390577803	4.12981651342373	4.38404334933929	3.81153526146448	4.91403949311671	4.10738986451866	4.85225910778789	6.49928901360494	6.58314965719016
+"MS4A5"	5.20406918280687	5.16252930617099	5.06982072202992	5.53522412910146	5.57719862247566	5.57445174504675	5.82021076617523	5.42225002281781	5.33691139859507	5.04216009936496	4.94353236858526	5.34175589602749	5.33691139859507	5.44102846806493	5.34436307955064	5.33691139859507	5.33691139859507	4.95943014296011	5.20679242121434	5.40127900643858	5.33358936572871
+"MS4A6A"	9.92547883481269	8.05285600381426	6.12455391576263	7.62574884577558	7.46520164007416	7.12141727129237	7.7022159053383	9.09101982220646	7.40133808450103	7.78843514163041	7.56466475733897	7.54743936971295	7.84675608941656	7.51611387839376	8.07613394555603	7.71602359387832	7.86639879016982	7.3682584226587	8.30097969904495	8.77289555953776	9.15325325296565
+"MS4A6E"	3.56095467164859	3.76649585251223	3.63549420578406	3.67580656434755	3.56920570810759	3.73841299300288	3.6739538566669	3.76649585251223	3.82635073462739	3.91977967638055	3.40085493854744	3.7728165052548	3.84829097772486	4.03925311475631	4.05637807544135	3.8336819412155	3.75714810291262	3.43561423386012	4.06877048680531	3.62446781885689	4.00124931398371
+"MS4A7"	6.2490401487487	5.44090528701564	3.41325784445103	4.92881608619721	4.01598173086747	4.23126300750885	5.17737490757991	5.56607369297957	4.65835711243978	5.57767336925739	5.26214700506053	4.57512919121534	5.27483882107705	5.7662511083396	5.72665090055552	5.33837072276606	5.56333137068441	4.54137198263651	5.27483882107705	5.54710162279865	5.61990407141532
+"MS4A8"	5.75701824767996	5.78534468330384	6.03770279585522	5.81555340432246	5.79119196846822	5.73843186413752	5.76060840286913	5.73843186413752	5.72797821053851	5.90809806999082	5.43189489660194	5.62842032692635	5.71820300341066	5.6819626366003	5.79102861753622	5.77733407231088	5.56554917469963	5.45983326422503	5.69028519660491	6.0411805841169	5.73843186413752
+"MSANTD1"	4.76580404249081	4.97626529005428	5.31653797459137	5.27682900200571	4.97486216889666	5.12746650795198	5.16678851902018	4.9233379059055	5.18193378994229	5.3624463667477	5.12746650795198	5.1067693459439	5.0727457826201	5.16220211263481	4.88541944641418	5.32813494571777	5.30595840698617	5.1893224696193	5.12746650795198	5.09924108320735	5.12746650795198
+"MSANTD2"	6.9317206901854	6.8735095202104	6.95802386067481	7.17109042685428	6.9634307580194	7.03066330350664	6.9634307580194	6.77921337475533	6.93545439875067	5.82567362469534	7.12706988339454	5.9822070502559	7.11835577377308	6.8539056390786	7.43527372299336	6.75734388360305	6.42151493335151	7.35270960683908	6.79305908675212	6.37606175274301	6.52529181932887
+"MSANTD2-AS1"	5.7332741282018	5.54870246138086	5.98838229419434	5.60766633020286	5.61954957991671	5.44061319479109	6.27827062467264	6.49555079607449	5.3702670059444	5.53360185205413	6.67654712921	5.4803860695823	5.56500351447541	5.5861844540144	5.45448212773288	5.78408037065794	5.47655983018374	6.03456564189713	5.59988146717725	5.67593138489352	5.87650665115506
+"MSANTD3"	7.59472103002304	7.5892956809123	7.4647150007612	7.30817797525348	7.85546655719962	7.19038477970083	7.10846715560438	7.46194623293678	7.41049731669985	8.12504531228718	7.42932262352074	7.57059010070272	7.29690646109196	7.11670215460977	7.52170621844937	7.59323739701004	7.41146193676031	7.7272539550957	7.31401910532471	7.81543250029693	7.88576882450955
+"MSANTD4"	6.89865724329627	6.8110516257745	5.89336624188216	6.62755534389474	6.75845928672909	6.21699543390393	6.95374903563777	7.4076955040515	6.87849585757213	6.68092682091566	6.71955404869417	6.63093713439073	6.13787087342707	6.50050162522018	6.76835472466197	6.64351213030472	6.41755486876755	7.19371066846292	6.76380873645874	6.73536272108893	6.59361593165903
+"MSANTD7"	6.09812648214641	6.23956456395878	6.22680337917658	5.68985581629468	6.3118723205856	6.12020180921755	5.56397740408024	6.14547470417665	5.63672990233208	6.27563557339975	6.13753209649787	6.03941758520597	5.44247986777516	5.43110267221686	5.44218697707342	6.97995993226883	5.98238163525702	6.58932398232333	5.89545080421827	6.14166118070583	6.1452862767628
+"MSC"	5.39737095600596	5.55343784726447	5.79096231939574	5.81559383037049	5.54528749682733	6.44481627842579	6.61033425476278	5.60411971954151	5.87983283979593	5.92905558493398	5.72600958608444	5.66933008087133	6.20065947488838	6.43998430987398	5.68951851956227	5.57428433136111	5.83060180809063	5.5941733389914	5.83060180809063	5.97410945722132	6.06907297440674
+"MSC-AS1"	4.41386274491213	4.45221385135206	4.77372452784099	4.69541772130532	5.1874170298338	4.75799280259008	4.2644035204203	4.61161887937938	4.92694713121735	5.13256953188624	4.2493817728559	4.42764418536644	4.97439714009685	4.83948185569747	4.92156477730308	4.4912014878071	5.00272322967448	4.89236830472618	4.52970302411285	5.1236698191837	5.07023781626709
+"MSH2"	6.88338558920225	7.4063553533966	7.41975419512151	6.81408846928379	7.90169559823422	6.61899963734308	6.29079601809376	7.00345178569508	6.94484361326752	7.41750493297574	7.10466932757252	7.39563754127559	6.42595310487054	6.3593364505816	6.61702910995696	7.48748365698901	7.23872807620712	7.81630329092059	7.12467085289657	7.45948861804492	7.56954043887327
+"MSH3"	6.51559453635256	6.80002814057484	6.53121935351863	6.40623097533564	6.66372985891453	6.15463763797775	6.34409522406047	6.50906945985878	6.45666808563315	6.68068357570083	6.56531125625041	6.53617296946624	6.20915780381041	6.47971667302763	6.30997109772858	6.95167074407188	6.66647329232767	6.88344293810327	6.55468281999552	6.75465586343758	6.61215808545609
+"MSH4"	3.5940220400786	4.03388936003075	3.52095396335478	3.63942822091603	3.64186377428496	3.47132987196069	3.42115617455469	3.42598080769835	3.89750769692117	3.43932748451407	3.28217514548277	3.5245399811819	3.99411665142835	3.47295876707774	3.81099007848892	3.66916581275435	3.82398101465687	3.59769298843082	3.5940220400786	3.57065159798244	3.5940220400786
+"MSH6"	7.68075756292053	7.08291519970856	6.10271985819724	6.72805406090693	7.16895452278035	7.06457812153954	6.75643173221009	7.13029543743248	6.24640443432334	7.00649489947399	7.49953340145976	6.85158551207459	6.27891800974129	6.60293949851162	6.4159466304982	8.01072881498684	6.6073385210084	8.32206222393788	6.90624117585201	7.15304816620712	6.99592873579016
+"MSI1"	5.90169007455728	5.66408462057462	5.81603521986029	5.85442073452397	5.59351988993185	5.87845040335034	6.56235544159939	5.89393017319119	6.21447792917623	5.95678828935473	5.78616279483369	5.8704121990033	5.93453513626568	5.88781740906089	6.07012180164921	5.57577545861964	5.74063918568159	5.8704121990033	6.10903544252738	5.82728563933286	5.95222189618608
+"MSI2"	6.27329154398191	5.7637414832805	8.12370256046455	6.35845430656086	8.77213834681242	7.7231300525624	6.64806030103261	6.31312785753113	5.98067389310108	5.59795273580143	5.9093433974845	5.80455444093474	5.83247529545707	5.62614507593781	5.69090866438883	5.98737603366594	6.12680921590072	8.54436165737983	5.92179389658137	5.81609695336573	5.76701138244986
+"MSL1"	10.336197352017	10.4921454435755	10.4255720211283	9.45814915395882	10.3052919212653	9.32103687552995	9.36804990789462	9.641934571889	10.0847088062711	10.4505269454637	10.3647645606927	10.245989202127	9.28369477444644	9.67276673611045	9.58325811998978	10.1374259687871	10.1749979030729	10.1036705055498	9.80887458890939	10.4532043010162	10.3211860080578
+"MSL2"	8.69368373051565	8.55121926104255	8.36863708793647	8.95764721004376	8.2406492579338	8.6710688524297	8.81221297745162	8.52917552166272	8.85720043683939	8.51966968418321	8.85159207763209	8.26126430206674	8.70447351958152	8.50593032204103	8.90685744396654	9.02036414610618	8.4134523299024	8.8678900900262	8.65516923866249	8.55428875505392	8.39945364867947
+"MSL3"	5.52560477454462	5.45527170394069	6.06630590866418	4.97584709681047	5.4895145434992	5.77866039254485	5.41581152767027	5.84928269073308	5.59180262960463	5.26265897708434	5.51537212454555	5.56552619777531	5.5941733389914	5.17703150642535	5.52560477454462	5.43187583560933	5.95022529509332	5.68306409608709	5.58270645960281	5.36104198017103	5.32351042215006
+"MSLN"	5.12246816251869	5.19258735913729	4.95195577029998	5.23243812394633	5.06036693535597	5.25380668030185	5.34810385551279	5.11734853661813	5.29931694332257	5.19258735913729	5.15062645885068	5.27760879100789	5.46272412410277	5.06975975449608	5.0934514539966	5.03577128864527	5.28169497628184	5.21101661876959	5.31154014567378	5.28167359869688	5.19258735913729
+"MSMB"	3.31180819984149	3.2540557059053	3.58329804421852	3.60510580902848	3.51847145926712	3.94844201292089	3.8556669494023	3.46780484840099	3.46378077990968	3.57348078042789	3.66307744736685	3.58329804421852	3.46909944265313	3.53741376891322	3.53741376891322	3.40365881152524	3.43713802859469	3.49239939381913	3.84195388344746	3.44457136180282	3.50473895808707
+"MSMO1"	8.51951369466685	9.60705137004201	9.40018093253959	9.37671951345408	9.27303275744041	9.91370349293125	8.52555206605255	9.42266527518828	8.81723862804531	9.28850953975174	9.88827672278548	9.75273176440947	9.42730955593339	8.90916220832169	9.76271046217333	9.29758099769909	9.11883243592295	9.71409244356895	9.36623149070159	9.32938638826709	9.34616174203799
+"MSN"	10.4160897394401	9.3874219407246	8.80375872507904	9.11917836806099	8.9601121943151	9.38610296113778	9.61673461134189	9.80962243538678	8.49244998227919	8.9343971803041	9.90466091810523	9.18849765659641	9.31408453261201	9.44346081962575	8.87818912279966	9.20958431217115	8.94368602898678	8.92807818471291	9.1826890709937	9.31124229775151	9.57125627539078
+"MSR1"	6.32225591342545	4.85322259592326	3.71031846596918	4.01427604366712	3.96135772701805	5.06749716075868	4.78479639737864	6.14331936966498	4.29152353440798	4.6110789426031	4.88500213175945	4.35785877280476	4.77380838470036	4.92368720296423	5.60244300386434	4.24807795089077	4.879755604757	4.4867914737973	5.23134677374653	5.10537481102045	5.43382856407838
+"MSRA-DT"	5.66083020930594	5.58414427983175	5.18211185366212	5.57247535087045	5.58525869291895	5.07911504594882	4.99743166208197	4.99878624596163	5.50466525565642	5.28498960464879	5.58084813982079	5.24715840990818	5.55863134625268	5.66904473259066	5.79262593907875	5.71526505182296	5.26641765098884	5.51452804561286	5.48468442105095	5.48468442105095	5.55055630252504
+"MSRB2"	6.21701249494333	6.1130942190623	6.33592498631103	6.25606371836393	5.58938863973217	6.05209894496298	6.21884127629051	6.23025781950477	6.00188370209981	6.47487585497214	6.23342571627036	6.21884127629051	6.37175939588895	6.14157158595818	6.29579067236258	6.21701249494333	6.041081529239	5.50076182085259	6.23542909083214	6.49560870044598	6.31672618971818
+"MSRB3"	8.89007845039068	7.76826541162698	7.55871727239465	7.68575801884735	7.52224494788475	7.0684490930231	8.55461231985728	8.17891401572676	7.78495033495651	7.29128346010644	7.94158291019459	7.13011941621464	7.57208759420818	7.7846228870214	7.95163240799759	6.77795600522749	7.42240476509273	7.45538363551583	7.782494556717	7.63974477149027	7.35665117419023
+"MSRB3-AS1"	4.3101452296412	4.25037592019747	4.21654395041099	4.40378771173094	4.31591800122846	4.41802316698728	4.32830515060013	4.1811752472321	4.10065190156264	4.16535534189027	3.9875021828045	4.18582479130721	4.56639397610931	4.94353236858526	4.23774408889525	4.27523481389148	4.3098537314941	4.01604812826913	4.39621218143111	4.18742629312134	4.25856386965417
+"MSS51"	5.83659455461414	5.63253059980234	5.92342272082736	5.53273886998913	5.68252365059641	5.97652212446285	5.57563293020697	6.2789838891002	5.74313397884489	5.25231680252727	5.445776646242	5.83748463028245	5.85500317059053	5.60398100890084	5.95229039724109	5.37682447631082	5.7332662823029	5.68004328997885	5.58062520716643	5.6545712205523	5.41025636888835
+"MST1R"	5.84798549469595	5.89708195618327	6.02648547112744	6.20299953901376	5.84158942423868	6.0597373018115	6.32510978925902	5.80742750985351	5.95179561652929	6.01837685898642	5.93851579459652	5.98357692152626	6.11910127703702	6.33651681945478	6.00763823688038	5.93117398469806	5.96772814234038	5.92689597122578	6.10207886732834	5.85144693145155	5.93798723296964
+"MSTN"	3.13528897097521	2.95073438732964	3.17277122762159	2.94003793904501	3.05251165105041	3.0998216131833	3.00037834062071	3.00798516659737	2.99591390436253	3.10132369348563	3.21605551029735	3.02182867185223	3.13645256648828	3.02120797423619	3.44888416233153	3.16750839441501	2.84015914493884	3.48401303533419	3.05251165105041	3.01930461030873	2.91515127382418
+"MSX1"	9.30009413067693	8.03764590032459	7.58808317479117	8.13243547197665	7.49172852372943	8.31309937424251	8.53451286830195	7.89185396850966	8.90502735089051	7.93611304589446	8.29237217249764	7.18135112790203	8.62520932575207	7.98142891336507	8.77770921025818	6.63512957577151	7.3651261113759	7.22602355635569	8.14093003124236	8.50380195053816	7.12098008554743
+"MSX2"	5.71575770695391	5.25666515291883	5.13210315039286	5.07953105293236	5.10955330718912	5.15506552223399	5.03489249419767	5.43291881037832	5.71437120086518	5.63282737911643	5.17564203581567	5.29150576588411	5.07417306092217	5.3744484163578	4.98085313655035	5.09849901529471	5.33189440256599	4.64571989702966	4.9984459079851	5.43101965272591	5.14056260396138
+"MT-ND5"	13.7206923742655	13.7314624689869	13.7499862413628	13.9331500801476	13.5229628189542	13.6918531570424	13.9353491696511	13.7501094199759	13.776026031507	13.6343895814059	13.7695482625956	13.7135810672702	13.9125736339564	13.9116083485638	13.8235383701873	13.197625368748	13.8051508899323	13.4983829464287	13.8187931416986	13.4594227909658	13.7467048946346
+"MT1E"	13.122065105152	12.3284260152035	11.9831973273368	12.2885789934779	12.0094678468634	12.8187817567117	13.3521890634394	12.5095264553352	13.2122584527957	12.8206360820197	11.8868964577122	12.4659323527819	12.2349239139529	13.0853891771143	13.0166905768361	11.7583449902139	12.4517922089006	12.4509553649334	13.1792213987764	11.8015877218337	11.1199333921295
+"MT1F"	12.8322371482668	11.4896177400821	11.6953345369582	11.6317258922856	11.3388717007314	12.5029280141974	12.9654820016902	11.9261450931868	13.1202012426123	12.5972780730937	11.4166468808597	11.1401887486143	11.646443329047	12.7923458274706	12.7084909640628	10.8747860172863	12.0035367926161	11.7039168986936	12.9456542342182	11.2173522667923	9.8266338634774
+"MT1G"	12.462570562924	11.6574700584738	11.5964395957947	11.9046704669659	11.1918737137894	12.2763579547611	12.9905300488503	12.332699400757	13.0064184341937	12.5411722328896	11.1707317419711	11.771578665839	11.9038918705294	12.8198366551143	12.7054261385362	10.9600753356399	11.939216145784	11.6412977377745	12.833393782781	11.4531379344164	10.6685745035488
+"MT1H"	12.4239064686318	11.5603027733747	11.53122196716	11.724961354252	11.1671429428996	11.9909367667886	12.4805619987549	12.1242405784984	12.6355179217978	12.2627516476694	11.20456552616	11.7103354731853	11.7748483513736	12.2334640938835	12.3451266942258	10.974115860364	11.8029944031343	11.6987280936794	12.4492690526406	11.2016877445474	10.6929385229815
+"MT1M"	11.3151257511451	9.45230287221819	9.60896953084631	10.4922768797511	9.57252025926999	10.8514760121886	11.4103350263225	11.185419129517	11.4631443931881	10.7272392507101	9.46557308726014	10.9891443592341	10.3952074038428	11.2660154585415	11.1235953794687	8.96096258967981	10.5393260226268	10.2139250678537	11.3512533534933	9.62973423608955	8.30048544906352
+"MT1X"	11.9626079275637	10.6743306613496	10.719638516231	11.3751870345207	10.5856844611525	11.377523737468	12.0174694437611	11.9975371290057	12.0555239336514	11.6363324117217	10.551566642255	11.4217813106675	11.2381240110491	11.9224711527013	11.8693169603243	10.1653920893582	11.5424537303001	11.224726196756	11.9592969741655	10.8829387935268	10.4018543055731
+"MT2A"	13.4241203763818	12.4187059756375	12.2489194705522	12.7959506957412	12.2479434452644	13.219104034443	13.6920141795788	13.1249742200093	13.4360879679145	13.0964290428416	12.2203438020958	12.7821901994495	12.7076207471759	13.2801759267864	13.2861642304054	11.9365941437384	12.8402227183725	12.5977517407868	13.3271697616246	12.3313463701386	11.9913873439066
+"MTA1"	8.78241382160359	8.85501148605337	8.85000375917854	8.82817784003176	8.42815464174712	8.62346843899545	8.31312672044767	8.48827132413706	8.47760938305509	8.67824054322355	9.28415286024678	8.72221144362918	8.88702160377344	8.51673301288304	8.26126903556349	8.75065756376316	8.94904302775292	9.04458770454736	8.70178145512697	8.53377790533356	8.69035198036751
+"MTA2"	5.01837039335228	4.60055858987176	4.97974611820306	4.74575989624927	5.00674557112953	5.04506255706547	5.22196848342453	4.586449822336	5.01953610753824	4.96111693049997	4.81707563788054	4.94215309596	5.19279043964369	5.13557685647448	4.79231266574708	4.68942073937303	4.64522906286944	5.04736687739942	4.85225910778789	4.88264742257975	5.08411816920618
+"MTA3"	8.44567859359135	8.9418599921317	9.46815631201619	8.94492770687426	9.24465702166175	9.05915718337476	8.5397225338434	8.75460856556856	9.14455245157416	9.14994979612796	8.57276850864887	9.16364344316495	9.07102367581951	8.79273273785509	9.12872056195241	8.52791457440172	8.99052690703173	8.8345051087392	8.88672252541619	9.18063346544572	9.09428835044152
+"MTAP"	6.58676442931621	6.45793671467956	6.32997530736321	6.31931206257839	6.4834639407844	5.99394138880518	5.87047521436994	6.06329889925712	6.36684748168555	6.33161560585607	6.27704341394632	6.02310858478397	6.44651762221549	6.32744989424277	6.22445221976119	6.42395720359788	6.42906973830434	6.91096585486178	6.43262752449594	6.33161560585607	6.13220226398546
+"MTARC1"	8.20592711812114	7.98139832753716	8.00110747779564	8.03974131042745	7.7754888554338	7.37660837145161	7.79680772071634	7.85031379154211	7.88169359127281	7.69243698414368	7.90521319459689	7.67908903044479	7.86787018156247	7.56631818346634	7.9728665469394	7.74473935192394	7.88560152786253	7.67346464602014	7.90535744911999	7.98655408277492	7.99519602761616
+"MTARC2"	8.23757187825261	8.09629483407	8.23925435729252	7.66919247345315	8.36169222977191	6.61899963734308	7.67229255224316	8.4124787222914	8.00371311209115	8.31091407756283	8.0188040266897	8.17600804825765	7.68607363693611	7.45062511078789	7.54801430519534	7.72649874937062	8.111291806412	7.93695432827121	7.84188136899871	8.13427125089877	7.78340050195231
+"MTBP"	3.56875054358547	3.95448887365942	3.84710163679941	3.64986454752471	3.88895765303312	3.60306983856703	3.62509088534382	3.80845554995989	3.7686236235222	3.71456287621485	3.86163588619992	3.94042236157905	3.66838617116164	4.11328374309867	3.72931985767608	4.3861672830527	3.74006341776269	3.75749904601235	3.49192291226137	3.72233022112403	3.59222776405588
+"MTCH1"	12.228133477752	12.3341472674604	12.6013998152075	12.1724809853647	12.6014757887427	12.1605584256707	11.9865835140338	12.2910607556142	12.212606804975	12.6258360412256	12.229535973052	12.4254631091209	12.1502042520828	11.8712994951013	12.3187798155504	12.4648800840354	12.425621010129	12.5896061726203	12.298241482133	12.6363887215826	12.5817054814474
+"MTCL1"	7.70960217575001	8.843268783662	9.07262225933593	8.59769079603011	9.27806426139399	8.38987052466234	8.00514162646346	8.64530349467342	8.92355789699427	8.52880059255067	8.09108009112565	8.66148898789992	8.85369164112206	8.22066159704776	9.08388082453073	8.13013722991007	8.95042547871665	8.69022620958384	8.40905442129456	8.93982776519329	8.77865235438883
+"MTCO2P34"	3.70997767311523	3.74462072795817	3.79016185117507	4.14663410459525	3.87334401448959	4.13238094361254	4.19251217313979	3.71893962106731	4.07834319142818	3.78880701632141	3.59183868725713	4.01159695751898	4.01796009996191	4.25461369738024	3.98050265575177	3.69834232215837	3.72780856978194	3.44927333376118	3.73382365095639	4.00469379059507	3.76581612310846
+"MTCP1"	3.90290710219132	3.90262514372383	3.94897503537477	3.9227485793575	3.85817449041806	4.2196539140627	4.33867366019059	3.80538761852832	4.02806125684424	3.82379981569342	3.72007433623836	4.01535263497609	3.96811852990057	4.40348140896042	4.31411939743275	4.04789919176194	3.98108096573726	3.87638653665706	3.96811852990057	4.10307555520084	4.05467944597135
+"MTDH"	8.22876032753732	8.20307011668522	7.87525138440564	7.98447934997056	8.08712065485919	7.58911604502575	7.37019148267759	8.29258111670629	7.80405666235428	8.0052239845212	8.74806228761925	8.09877514931419	7.73513444780851	7.36220442972606	8.07266594759556	8.95407558828664	7.9872246136156	8.76185341285394	8.01596194950779	7.88517152415143	7.83633562415842
+"MTERF2"	7.67044665983084	7.59637896813453	8.07602716066631	7.38059568434205	7.61042011168928	6.77877059347542	7.33172375629955	7.80325647720888	7.5685083486761	7.50891231132017	7.60420141674769	7.65785897003197	7.12583831685523	7.30768999543098	7.28365928545904	7.65143733053403	7.49583745786748	8.05969942675727	7.63267950149288	7.7788677801284	7.45752880348457
+"MTERF3"	7.39913592947381	7.41437447819101	7.59012310357829	7.56119826240848	7.5906110618757	6.90523164426263	7.11285529741227	7.08802606543949	7.34974628350789	7.39460337120321	7.51598373951509	7.06152428157622	7.56301588687483	7.281317245802	7.6940832306826	7.70568395700531	7.3970337705315	7.83029702867013	7.43073966279092	7.35566161238553	7.41437447819101
+"MTERF4"	6.86278696602064	6.81333665912458	7.03747747520902	6.81166203902798	7.37304047294347	6.77655025892764	6.58626278041429	6.88860703677955	6.66622028631834	6.98943870023539	7.25217025050174	7.0264445777533	6.7648429122954	6.43825295061489	6.68925424923074	6.88902368415424	6.76929535984906	7.47730910009635	7.09019675522457	7.041722482264	6.85835810337506
+"MTF1"	8.6396121972418	7.75752074623997	8.03122111451293	7.89001316038223	7.90032873518218	7.87498891142824	7.94868105927551	7.75455719348116	7.97041411652805	7.57817715217258	8.06442690207767	7.2377707558853	7.55500259484524	8.00677059226787	7.92343139839902	8.42684285691735	7.46552405343019	8.4377431880999	7.60799619940851	7.71858158859501	7.79220566301182
+"MTF2"	5.22800381571735	5.56776126141109	5.40976036770261	4.69238409941762	5.77440417178797	4.35010364989527	4.17175096876844	5.1974264753058	4.91325700580169	5.36121283916995	5.78828911915852	5.84092278973509	4.3955342071098	4.43446111541647	4.48989153218023	5.93117398469806	5.71656556366923	6.08548574294751	5.26309316019072	5.40472446891455	5.38030687841865
+"MTFMT"	5.67780217767877	6.02956791824471	5.81819360441274	5.32141956290522	5.88872321950331	5.01955548674677	5.39576317200021	5.3513509013699	5.87412491027756	6.34365084850328	5.65391084396166	5.62360710767187	5.53462688036497	5.54708841380895	5.41261955193607	5.34215669887097	5.58900385950799	5.97958735280683	5.6415557812234	6.012226946897	6.05411696604347
+"MTFR1"	6.33104858165886	6.78222262299552	5.57372645287147	5.75687768154344	6.48900261560135	6.48743847788868	5.32633512851843	6.29852668457385	5.69648991771211	5.97587164101929	7.21665700533062	5.9795336341333	5.8760936115369	6.27571490134536	5.99631560850759	7.12268993477748	5.94042327830252	7.43532925300739	6.51669095729519	6.13043238146735	5.84604937717382
+"MTFR1L"	8.55713158329656	8.34284280700568	8.32262177244589	8.29372852169383	8.24093227100636	8.01525001602733	8.29372852169383	8.40394666563741	8.45582049545763	8.19771559935894	8.24240954364965	8.20702486432048	8.12727228624748	8.0198878446325	8.33461221302951	8.18964545296473	8.33881668627956	8.34178426731461	8.0623009796097	8.4834479674207	8.0989324022255
+"MTFR2"	3.94625345264599	3.5940220400786	3.817722862374	3.67964779935932	3.93348730416957	4.0762821258197	3.70673502143451	3.88051259434774	3.88509171534632	3.69146232834963	3.98139559564998	3.79485100398318	3.88981953163015	3.89589221561869	4.10769856441825	3.88209299534653	3.88509171534632	4.02436972045249	3.72071757761501	3.88509171534632	3.77165946353457
+"MTG1"	7.24547231402151	6.38208310636285	6.8783165438413	6.6199546324543	6.38957421280081	8.15280553777555	7.0767956387754	6.15813394260211	6.59148032307955	6.10271985819724	6.89760043497754	5.90470847748922	6.32736238103097	7.17403604680782	6.64633818662911	7.04368011286608	6.09903707207928	7.6825672278982	6.58003672720706	6.34709554288684	6.41272476421522
+"MTG2"	6.66090197914278	6.91551504013239	6.80190040614624	6.69002172095182	6.72121285666677	6.53076503704444	6.83649349895438	6.92480740954211	6.99271301280145	6.8922310864595	7.45548193917746	6.87922562352997	6.43900650007025	6.71390856892539	6.67159998835644	7.12512407796652	6.77910060168259	7.08484476547508	6.43935051667923	7.00996937868507	6.83302898281946
+"MTHFD1"	8.00939634900932	8.09989378005884	8.22197944263683	7.73195994422113	8.32777871096871	8.01678038133241	8.03541170625486	8.05350662784549	8.0262975859296	8.10988407151986	7.98105150456278	7.98434317678866	7.76541350473936	7.89864571435186	7.52692815845217	7.90988502045933	8.03541170625486	8.42048730348401	7.80194538620334	8.39907561223893	7.80957353662779
+"MTHFD1L"	7.45225195431281	7.65904833774001	7.60467235265089	6.86100730814185	7.77948834372555	6.66921170309759	6.62436085414774	7.20243737737949	7.20563817327616	7.72290788165593	7.22804463525438	7.44379191188922	7.19656979053926	6.97501226062758	7.19739384780881	7.09974467890377	7.26399061128724	7.37550636704778	6.98944759499937	7.7631739274823	8.07813167241887
+"MTHFD2"	8.09939964479822	6.33615325270074	5.96039240684311	6.64805645893727	6.63727819303161	7.3305449316845	6.31785144480434	8.17804314591019	6.32073257466963	6.24624496249475	6.52066819169955	6.93916107019241	7.53728764839018	6.72035305416366	7.84813592500099	6.37750871526721	6.12016313041873	7.30431067071717	7.30817797525348	7.08118508701399	7.50972918283852
+"MTHFD2L"	6.44928958444204	5.94647688318864	5.85010298597163	6.44859851508057	6.18483590337984	5.71208717316195	5.98301533740139	6.80893228446855	6.75703619988515	5.91351167622747	6.11672612612741	5.79084707350995	6.5258963533309	6.40220405043551	6.40043735781125	6.08361367529484	5.84121706007354	6.65703159099149	6.27974044584852	5.82073886312922	5.79908024827804
+"MTHFR"	5.6413777465356	6.05269463063991	5.80723568100741	6.0929975379039	5.71665819717831	5.99873453625075	6.50397291343357	5.98641161252382	6.1785657550621	6.08253236288399	5.90476192974053	5.9603224071692	6.13211576814945	6.20632521404177	6.13677682574804	6.06565720514322	6.10843244671175	5.60061843113692	5.86525757129033	5.74887566256739	6.2030763496523
+"MTHFSD"	6.03038044075857	6.81469334297424	5.90716792956401	5.92921693998578	5.91785975402538	5.74915329675915	5.84324430367431	6.00067475669277	5.42876435495226	6.00702701183118	6.30172920454924	5.85402871155541	5.39576317200021	5.47599300523316	5.60299019409015	6.3472018083463	5.70713953523168	5.79483325213026	5.95353614736442	6.20154325418991	5.80653393976283
+"MTIF2"	8.60637298229414	8.14042538633319	8.13037464896083	8.04338628655228	8.46946404887639	8.05772091326022	8.29895259816312	8.29412723391445	8.50899013430803	8.45053482995375	8.05760329593674	8.00052677313814	8.31150580651226	8.29412723391445	8.74336385855108	8.24555862927518	7.99088152599298	8.46032160961947	8.33482548086263	8.41683515817872	8.29412723391445
+"MTIF3"	7.34729294426066	7.22188255947048	7.41581371933691	7.41347357874876	7.53405809552941	7.23928180768349	7.42871048680333	7.36152727352455	7.63242487997963	7.57811669728355	7.43117312799619	7.25474899631235	7.46754270005657	7.30697283732522	7.42701361186487	7.3550678695668	7.14149908234273	7.65822749112597	7.53672659102897	7.39438382044073	7.18215511818671
+"MTLN"	8.16038251765708	7.75534476265602	8.8500572756073	8.0241671455398	8.46199162165761	7.73469394216747	8.12653570572701	7.93695432827121	8.14077336379443	8.43336485464734	7.55765505837764	8.14663011802409	8.43771996545949	7.66087082636811	8.51093201334551	7.84733426528501	8.08006837355007	8.45945668690619	8.42466072209985	8.91520717429122	8.38705250838015
+"MTM1"	6.2328133693144	5.63550614097008	5.70007939175325	5.88961537243954	5.67866388602898	4.88711207795783	5.62621245173317	6.16146975577049	5.70129177915654	5.52851991694511	5.93596731008769	5.72663189663655	5.39226908314931	5.51198043581497	5.65614276773443	5.67617253851764	5.76238661673767	6.12131923190698	5.56213408455968	5.45164150368531	5.23388839249449
+"MTMR1"	7.02036782858904	6.81775608190951	5.81781934268673	6.40226513947102	7.1808750535137	5.39182507691474	6.17567254401753	7.21549262859233	6.41632095242422	7.21275851227008	6.84218770334627	6.87082193963726	6.08681404437843	5.48983095739652	5.6692303101447	6.72540907508622	6.72827267944964	6.81477528236767	6.5247316988394	7.14208948667537	7.41066066861815
+"MTMR10"	9.86678104058794	9.49171212826318	9.03715382704385	9.22127741932868	8.90337352209934	9.46524151230556	9.37410013253682	9.1638186313302	8.98567797678131	9.06135556162773	9.72308381375088	8.63863503113647	9.05942538449527	9.24762660542356	9.3669522446241	10.1305018577652	8.99766675279625	10.2741645881885	9.20217099363279	8.49422169774432	8.63437169564985
+"MTMR11"	8.03656172227566	7.12323335056544	7.12258242068346	7.24030543728606	7.0400426881981	7.94299265793509	7.12442545620585	7.6324205237616	6.80328216046786	7.15945256512089	7.27380206674477	7.07715345247864	7.08219147211432	7.30956107971694	7.36517141307965	7.05431537897466	7.11007996393105	7.07329638216426	7.21747398564116	7.15945256512089	7.10200943902078
+"MTMR12"	6.21578058657944	6.15652960210546	5.83576270693098	5.89066947817115	5.89349223203189	5.90333320458932	6.19090719485407	6.14904938621664	6.32011735143387	6.68525168888194	6.19085553311187	6.22104829993117	5.45480702112637	5.93839051852132	6.01689955872793	6.33859836478024	6.22724953384564	5.58584629237531	6.07744841371961	6.31809207840023	6.45534840083199
+"MTMR14"	8.13790673139313	8.05517509763447	8.18904460984984	7.76918832724955	8.04605640387097	8.52015668459559	8.3421832536967	8.03877743400625	7.86039877730203	8.08843456167951	7.98318031445092	7.80155546232136	8.03877743400625	8.43004338706812	7.46992466451445	8.0717562586912	7.86869922376381	8.19437765424487	7.81596750818933	8.07655879262836	7.87211072258372
+"MTMR2"	8.18490566598244	8.3133839970158	8.41390941182228	8.42903218554297	8.69151383252812	8.82368999342234	7.50978416612195	8.07202641666131	8.82730690989517	8.75204263510694	8.53317910292414	8.42115370609305	8.8413314845927	8.26778471244497	8.94509007852819	9.2694056999824	8.80757527796522	9.39997353062884	8.46500647854579	8.75088763481383	8.97964958720066
+"MTMR3"	6.89820947528434	6.47451904313357	5.58493218789827	6.11888124320348	6.05823133563318	5.99533680698017	6.71955404869417	7.06858174172801	6.19546612250565	6.45265783723863	7.06063866600706	5.78751068912244	6.1684407325924	6.29655251989662	5.9871543665849	6.12608689066153	6.3465338834439	5.98737603366594	6.42869107042897	6.37762847937247	6.19947271609433
+"MTMR4"	8.34337112660096	9.02805450208948	8.98593248465277	8.99225845007222	9.0965116763525	8.28146167668873	8.2722515760938	8.36266702749373	8.88280728550294	9.07230117201173	8.92185653493563	9.04728317212164	8.82504518548128	8.11757509495809	9.05900346709837	9.20218088077681	9.25633803197031	9.26502290015358	8.95456880409833	9.2437314426286	9.32046571844598
+"MTMR6"	8.49867883791006	8.82399320392535	9.19266015812511	8.79612547702839	8.96308226799948	8.43487267594686	7.9787292436097	8.39349348116622	8.74675014434022	8.8119839398843	8.85028038605205	8.88780250261164	8.65164454923551	8.17210086668461	8.98360207706427	9.00484336917392	8.76279132072966	9.16148517178775	8.8597888711997	8.87799069835762	8.91078602218887
+"MTMR7"	5.87858092014663	6.50898377051002	6.17624605216413	5.96777744796683	7.1730252862832	5.95421998355951	5.70449799387849	5.7969835772228	6.05057233569252	7.03634851802929	6.14531560694468	6.83863061372547	6.16095411590593	5.72768820217546	5.9253675043767	7.24651714102019	6.63399185042999	7.11983238806492	6.22528175453793	6.97232415208647	7.05697836144508
+"MTMR8"	6.18420186322999	6.27580215003386	6.33632851578673	6.55966603769289	6.60653266838265	6.76284915264737	6.62262106621092	6.26975552461382	6.41755486876755	6.38088698778703	6.14631037972222	6.53730818480806	6.419651500579	6.57155031968412	6.27476525298196	6.41755486876755	6.52201674672682	5.89708195618327	6.41755486876755	6.40327268062433	6.57314579020628
+"MTND1P33"	3.6545798399471	3.97794691249074	3.79195940637158	4.13345647165954	3.91588313375615	4.50241455308181	4.45594188725356	3.91437961547701	4.16484630347877	3.96214301857136	3.82092408130752	3.63413735020475	4.0580916644244	4.40827564418163	4.08760134636187	3.85142840499877	3.81836408318708	3.79789751493351	3.77108956202453	3.63213025002689	3.91437961547701
+"MTNR1A"	3.91252590069245	3.93833365796938	4.07906671325593	4.03366546590463	3.93961593623838	4.05223501172926	4.08071377023464	4.00452717912046	4.12153252802287	3.94260055380339	3.78823365730846	3.87831982428369	4.00452717912046	4.0121177302699	4.01193577133699	3.80786034381941	4.06865156168183	4.00469379059507	4.088626306962	3.90889882075325	3.96000761116939
+"MTNR1B"	5.51381985047455	5.70097490684149	5.71479560496946	5.8668976310647	5.59940969680293	5.78646711693994	5.77127192872887	5.79484862190047	5.500087009266	5.67454237796503	5.54979247998554	5.71479560496946	5.92685382996921	5.81281620060083	5.73138588912947	5.43814212014882	5.65616523097832	5.40808364585226	5.71479560496946	5.72188398597168	5.7422795547029
+"MTO1"	4.46048746294385	4.48513752391559	4.5313213946974	4.60683556047973	4.53509799872844	4.74408557218249	4.57755548226945	4.5900437996658	4.97175794910551	4.20479628536753	4.12480033555318	4.31219488841583	5.15177159935252	4.61057373327093	5.07833466544118	4.22809090419301	4.20012895153778	4.91730194830353	4.48589561450298	4.24451454210938	4.62647150764578
+"MTOR"	6.83435182544313	6.88211400198295	6.98673739966118	6.67121087900181	7.25699560616096	6.83435182544313	6.90478052385527	6.70848731657925	6.86199640446388	6.8485504803115	6.57181965148207	6.78107406810261	6.67121087900181	6.72018200660128	6.81349700116101	6.69065528196063	6.87980403148404	7.22337126532421	6.71824969846691	7.10671821271471	6.83435182544313
+"MTPAP"	7.5438288259012	7.7189011719417	8.09931736036937	7.95880145137481	8.26852611796624	7.63369024485305	7.1092491972471	7.91298335658275	7.91271743089937	8.20819745614357	8.02113605128573	8.47479862955961	7.48348123760534	7.45371271169183	7.7898063827149	8.04390693797047	8.05705555169451	7.91789509774708	7.68520880856018	8.29596096278631	7.68053032113019
+"MTPN"	11.4735720435435	11.6184857039797	11.8113903464794	11.6356851139156	11.6428543507642	11.0485234759223	10.9365096743362	11.5930382083956	11.7046171697959	11.6714417128442	11.5930382083956	11.7999855653276	11.5101963058871	10.9645208876875	11.6833645644731	11.3284498542491	11.6902237106921	11.4196632939974	11.8382535417227	11.467223021057	11.56898820394
+"MTR"	7.28769828131752	7.47335781396185	7.92418764291294	6.36800340019552	7.51220646102702	6.98768787927452	6.54923405806168	7.26753261796774	6.61199328951794	6.88148562133363	7.41750232234912	7.22326264893882	6.16512910781162	6.78115367681259	6.46941802539481	7.22972012899204	7.06431175182402	7.55648015112175	6.6515068550842	7.1722746117131	6.93325653773262
+"MTRES1"	7.70202626837394	7.74931458340604	8.02945960320877	7.86889028127878	7.83459848485435	7.11094003771119	7.64252570171878	7.50556490433362	7.98618055018496	7.80707134116594	7.90865111436248	7.57026716247407	7.87521813739455	7.6930984646268	8.03390843636525	7.52312899746663	7.58342467491777	7.98446180864043	7.73014503546915	7.73046914706518	7.74599548289784
+"MTREX"	8.29147297830557	8.31073617341741	8.11717406558801	8.09341570111789	8.38225870939366	7.80055777830617	7.2069494694219	7.89686523296851	8.11717406558801	8.26119505872559	8.57185018064248	8.21910795514738	7.89860237907183	7.65689643099681	8.21189414243752	8.45109242847168	8.04777097343147	8.68037722062515	7.94663817468424	8.17265731500388	8.01471884484022
+"MTRF1"	6.57956939023112	6.31263174334781	6.38675044447522	6.43842690470854	6.53077283542089	6.00090266555267	6.21884127629051	6.37017332102002	6.28425449156427	6.39896939102019	6.06148415498457	6.20253046319753	6.74188355773101	6.2164724495094	6.68603770870019	6.02586703912525	6.43826903268518	6.98442032760267	6.5743391801263	6.30079141471831	6.53221960388369
+"MTRF1L"	8.30588096315844	7.37770932754313	7.75541456074273	7.92835587288349	7.76190844108125	8.44265026200518	8.3634978896949	7.85402258006465	7.85402258006465	7.9692232923796	7.47237803316678	7.44964438448918	8.13381205902242	8.15099408929263	8.02834208749402	7.64800891593761	7.77658010963059	7.97372321509679	7.85402258006465	7.83012527692719	7.76701329238033
+"MTRFR"	6.87384613997289	7.03349035956331	7.33300357985029	7.09956084694508	7.0839875246391	6.95166635058008	6.93100651541721	7.24351887876936	7.2083614191834	7.0839875246391	7.1333591025882	7.1124378187162	7.03706960899431	6.71607531936827	7.15811536687113	6.919824600142	7.1553923117566	7.36262369709599	7.08060641918922	7.2657897648638	6.90409894047966
+"MTRR"	8.41362430729527	8.53616421876329	8.7729238179828	8.76079658252512	8.71791265845559	9.21027539653292	7.90984346383117	8.71301455860919	8.91308876957409	8.55574616108187	8.93352125470923	8.34089577353357	8.59416641316888	8.85932537521803	9.05103810072647	9.21710702877944	8.88435102341008	9.77556269331296	8.4994906626353	8.53527125113081	8.26993359056183
+"MTSS1"	5.75907586546852	6.30209157927818	5.51792850226181	5.39383282280569	5.66816676926757	5.83668321722699	5.91912524675354	5.53849859837853	5.2572318822518	5.65242277388171	6.76320642140415	5.70724661199256	5.61590686037556	5.92215013472151	5.60900736048668	6.34301583461094	5.58149924278408	5.76104768318881	5.76689454657739	5.53449165988703	5.57263273924867
+"MTSS2"	10.8694720569248	9.98754073998087	10.538230285019	10.6434217860218	10.0148702910557	11.1951855324869	11.5902932284854	10.3038119074761	10.0688924991875	9.7904872272761	10.4307679378124	9.87651260416866	11.0588913147843	11.421875137737	10.4137167692284	9.95854369871231	9.9437930857518	10.0906912445092	10.4149298204347	9.65795658655862	9.79635860973783
+"MTTP"	4.53154667326461	3.60263354965148	3.69987842549754	3.59299777836654	3.70632310137397	3.75924473472407	3.97482797498435	3.88650165872549	3.88650165872549	3.77750161941933	4.02880268656133	3.60548211646779	3.68668453192433	3.85770439926107	3.5940220400786	4.05049959983287	3.59087090010706	3.67689405983135	3.75924473472407	3.78734036139464	3.6169967445757
+"MTURN"	12.0904524273757	11.9697316354524	12.0124701061767	11.8878540696441	11.6167279306584	12.3298332167908	12.1548652406065	11.8556721742174	11.9647598050129	11.6897903084216	12.1715006801439	11.8357779002458	11.9447348609032	12.1398167159737	12.1564674423579	12.1338260286476	12.0152666674104	12.4167859854015	12.1379965932693	11.1359280599063	12.1581417548291
+"MTUS1"	10.0092477059084	9.86664303358758	8.31497318989062	9.32265219369026	9.15011948504707	9.15738277930615	9.12808118225695	9.09577659796142	8.50483250155068	8.63632581333844	9.94072466480502	8.64598066563403	8.86605003823661	9.18050561082438	8.60509316954761	10.7758048764885	9.27429153023497	10.6504423763264	9.36497912309019	8.53488657060673	8.75570283405972
+"MTUS2"	4.90793408902231	5.61509893878305	6.40630395300296	5.73108995296266	6.2772810355005	5.8883098762418	5.30164815093281	5.54925871455023	6.38553082236236	6.23192290980484	5.11029416137493	6.45875159467448	5.68252365059641	5.16675430241068	6.06073825839813	5.33677460427459	6.37123980277566	5.52098813120945	5.57347813713871	6.68458396877338	6.39129452830027
+"MTUS2-AS1"	4.89309644354054	5.25974258107232	5.02601136430687	5.07125740827239	4.90224656258686	5.26918346167964	5.42912277929771	5.02748448864415	5.42618627828228	5.20358571008715	5.02763639039052	5.38422572392078	5.34328859326163	5.27683956509777	5.11889664166525	4.88537208909194	5.23341125240222	5.05497694948843	5.37515867660781	4.93098962088661	5.2624862600253
+"MTX2"	7.93331790666246	8.67528719096898	8.90504786630175	8.38647047172338	9.07166000235345	8.15335866327484	7.35067087171137	8.21672491470922	8.4005909628358	8.95467934428248	8.32773707103004	8.74373301146922	8.39693821692566	7.94482006855932	8.23865092143979	8.94153171474416	8.64544356640707	9.05859437689517	8.35608294913932	8.92940119665809	8.81828344269305
+"MTX3"	8.37499431048982	8.69493149647379	8.84426274062291	8.5663823861065	9.0252332812761	8.20237539176672	8.48383299664542	8.53404464151327	8.84804587286824	8.62839309303173	8.50178738491799	8.716146427881	8.21862880802675	8.17210086668461	8.71686387418968	8.71248671139147	8.86563224671389	8.6714363401259	8.60380420100704	8.85678074557035	8.75080250971786
+"MUC1"	7.18981699187318	7.07266116510273	7.23527502758923	7.34362833595569	7.00344129450664	7.80074063117639	7.83413838346249	7.18788959842635	7.43897964428648	7.23713266847092	7.26578842409237	7.38129091408119	7.53656155641499	7.53952281094898	7.31034377569606	6.95482136747765	7.11227170375203	6.74030855058049	7.37428797714925	7.26767202098269	7.26578842409237
+"MUC12"	5.16914842724392	5.4205152597258	5.76839012120067	5.49737157154831	5.73705405518887	5.60354272229097	5.72457942634202	5.45771901778539	5.97233992305194	5.68948945631426	5.38431045353837	5.37884643401374	5.96729397127914	5.72118213573695	5.71342075770098	5.32706618858458	5.55114865421274	5.30531584848738	5.60288860840899	5.67632066828672	5.73964749157526
+"MUC12-AS1"	6.40220405043551	6.78992710573117	7.284800972047	7.16307148811467	6.78568010886356	7.10578046645965	7.09930384715445	6.77386861927298	7.08845782700558	7.05002339564559	6.63263769898183	6.99877218330919	7.25204742771898	7.13752103284175	7.18073361990113	6.68639962907945	7.1591859422535	6.87593042360692	7.27614490682516	7.19698084408578	6.87231293605433
+"MUC13"	5.37521883716954	5.53877296903047	5.79114734971711	5.763212003288	5.60138802905312	5.97857589546692	6.42955973830883	5.59378405597542	5.87605143187684	5.76420806475913	5.55058218685796	5.73067751197008	6.04231448497041	5.75396695739368	5.74170799546055	5.53562020111772	5.84978295491405	5.28778636759347	6.005580775832	5.80160964443861	5.84786690008403
+"MUC15"	3.25566871946149	3.37529893542131	3.38964475757622	3.2371083959586	3.13941991724506	3.24227597768972	3.58143371578463	3.58157839369582	3.61357907101618	3.22675150341054	3.21982591069889	3.50537506767332	3.47342799500974	3.49986062745405	3.43461784275932	3.4925238434573	3.40993464523388	3.25589419810141	3.43725700137603	3.40780510832314	3.39810421114475
+"MUC19"	4.69587733274895	4.6145197090654	4.75004636031314	5.01922423261025	4.69712724986918	4.76857846354021	4.59131117522772	4.75004636031314	4.93305080844259	4.65915049192384	4.42165731886	4.63523587959102	4.75589889013184	5.22080615681464	4.77115672742556	4.59638552903187	5.09508524728708	4.69804698972901	4.75004636031314	4.91883323598193	4.68850087720032
+"MUC20"	5.46610036039157	6.88388170087791	7.17574000707624	5.81904592511846	6.60138030735796	6.08130488130983	5.65271939391678	5.81286480315927	5.5499219894028	6.1776017614323	5.84680436663177	6.52837469873546	5.53147984400162	6.09803102020539	5.96242222778674	5.72454258961581	5.6650690843818	6.38336991556636	6.14124399748309	6.23901350472751	5.91668118465268
+"MUC20-OT1"	8.54517983968115	9.09074832246212	7.55536642738593	8.79970824924281	7.53821900343649	8.12779612912135	8.71701964763915	9.22755569943621	8.37072239531964	7.38015204979355	8.73820006733697	8.63782230521219	9.1761884024535	8.80243601948381	8.83138106621075	8.76345017441585	8.09669907811039	7.70789636088205	9.16701379548711	7.49994213573952	8.16418484701039
+"MUC3A"	6.8528041886475	6.85842947299806	6.83798736007944	6.90997016545962	6.77936662727238	7.31983486011401	7.52842480214899	6.88028848988246	7.02881468232852	6.86747039044943	6.67934461939598	6.79941459506088	7.15223485822301	7.27313609664386	6.84190560563075	6.80744188147862	6.8888065442265	6.55426716523883	7.03896318834027	6.99489856159868	6.86747039044943
+"MUC4"	4.17675083785234	4.43997767611285	4.58976258451708	4.50808986107542	4.31213305108108	4.45503733336714	4.80804132938188	4.35319158471192	4.48629054728658	4.73540675244426	4.51233638225357	4.49605890264	4.59365115658767	4.92855055259855	4.67238735727338	4.30687758131493	4.65365099646024	4.34081245467204	4.53344249512872	4.88554668927592	4.65295977043237
+"MUC5B"	5.11166831164778	4.87534744000175	5.54030500921839	5.44896212598144	5.13906122092688	5.49365355470548	5.70164320636453	4.84750798173379	5.16697147187703	5.23267146107558	5.36107830755243	5.30063323813824	5.89349450279177	5.41841042229604	5.4300650078833	4.88170263765159	5.24894911610557	4.85741774547401	5.20614696977312	4.68742378167537	5.23931390630481
+"MUC7"	3.53484783851314	3.49907232928224	3.41756777571844	3.40336193041944	3.61934400877151	3.41222410027302	3.70034397628044	3.55969993101081	3.7194754226031	3.54089594093244	3.49907232928224	3.49907232928224	3.49088067083877	3.57998782294441	3.48482070151855	3.37724076382661	3.45207051858835	3.55969993101081	3.46723732449654	3.40336193041944	3.46144687706053
+"MUCL1"	5.19921987652498	5.57220082223958	4.97921976734571	5.77562414556278	5.45115903826806	5.29012533030316	5.1716869876303	5.33223365416267	5.71526505182296	5.69935157954724	5.35574507716183	5.54448894469411	5.68739618410631	5.54448894469411	5.84392391925889	5.64689969658641	5.57509068168929	5.10875296376582	5.6355314626734	5.60174171012403	5.50697187134207
+"MUL1"	8.07980056581414	8.1330267200471	8.32588689598734	8.33631177767055	8.14222081703021	8.48288114260556	8.15847266088404	8.06071760919139	8.24594467226854	8.47099959883808	8.17149458111313	8.21477998171007	8.18001446764233	8.19156533959361	8.11797558705367	8.43528445916539	8.23529262501925	8.31864454156867	8.0511497772733	8.42941955262554	8.14381378301336
+"MUS81"	8.50289412458413	8.44664689140366	8.45163942262477	8.55688667381732	8.19583441274552	8.66397857812605	8.74251162991985	8.56402171511365	8.40248933386746	8.31193003108321	8.46223276094616	8.39183574322634	8.37610025487018	8.67898570302702	8.41586892621302	8.46025242591461	8.31312705906955	8.65545044547308	8.38834931534832	8.46025242591461	8.32641250309029
+"MUSK"	3.8103682965292	3.86692039195005	3.78492245686031	3.80343888276754	3.92931431520005	4.31742490023699	4.33136149615884	3.75508298406731	4.21971147402758	4.05847075611899	3.89432806467505	4.03137861132388	4.1009336664642	4.47264607792203	4.12055017653101	3.87730955332014	3.86214172579051	3.96761336170497	4.38021377613141	4.01728700334611	4.06866260396554
+"MVB12A"	7.3099866637413	6.94057195463011	6.6923700072882	6.27038438245982	6.68364520941949	6.93811125598975	6.2780074592634	6.35484035433857	5.83934752419669	6.68987777873057	7.13130747560549	6.5975819127419	6.15042385283949	6.78222999319844	5.72699354191941	7.16813251961756	5.81924528323694	6.94624645537589	6.66258621438898	6.69496842332375	6.010122056756
+"MVB12B"	8.33270818167757	8.15773873418163	8.14189400395079	7.76810725888443	7.68522040320994	8.37477281780344	7.85257158661526	7.55730044072286	7.14641881677567	7.57492282788877	8.92426864720774	7.64178942950868	7.32360442979051	7.9556948155965	7.54142553928722	9.29031556408232	7.67116140293731	9.15519894320506	7.7816737699536	7.6572075263743	7.64619507647485
+"MVD"	7.08610703950485	7.19458260653053	7.15488665191705	7.15945256512089	7.0462247605397	7.46950947491637	7.36671930757856	7.12467808017114	7.11297009728859	7.29197057339489	7.27410682133031	7.28534333685823	7.1364548951349	7.03979181263943	7.02102281645662	7.31882480711413	7.17162383816842	7.35678317712218	7.19458260653053	7.36056350359689	7.32762773199013
+"MVK"	5.79692098650821	6.02157572737164	5.89937959054926	6.085004827908	6.16608588115836	6.67023288471924	6.5033973931854	5.84085162767602	5.77491302171031	6.26005532382094	6.08401433153327	6.27047256506841	5.94026213663396	6.3555133783343	5.91423351962887	5.94026213663396	5.90300719218997	6.3270718583505	6.02292069300999	6.08361367529484	5.87586449478778
+"MVP"	8.34653001695513	7.15801321226821	6.89119016573082	7.13781603219635	6.8100355749712	7.68512605434882	7.28549949196761	7.78931317905945	6.49423943161767	7.21896334400421	7.60565897003934	7.19840888705542	6.97770937306796	7.26872737055406	6.5843541640611	7.65530196308749	6.82318418869524	7.93098787656566	6.89544365502683	7.69603634977564	7.40593878569243
+"MVP-DT"	7.85913121364521	7.82757737267488	8.07692984500787	8.14343147344693	7.72007943013747	8.47984774026442	8.94926943868196	7.96435419508488	8.13668013211415	8.16011579701043	7.82325453906769	8.03034843671285	8.37573187153487	8.56390052388546	8.22902712538117	7.63864237810576	7.96338507404594	7.52794769237173	8.22142221742244	7.8937390749287	7.93279255663259
+"MX1"	8.3222324996069	8.14881028388903	8.17899164336945	7.47377068362602	8.21261821259544	8.24496702148755	7.72718952344873	8.33425944125667	8.11877929522262	8.39982996043826	8.42227987373842	8.13453411809299	7.7841675163753	8.12851617869561	7.58786802201582	7.67753014609556	8.10362287028658	8.23496274198005	7.55384900741469	8.20827038564681	8.71736351604601
+"MX2"	6.30958986446307	6.65145312647707	5.83113132788236	6.01733118827349	6.56089470573592	6.76336637136193	5.8353155079894	6.68894851626082	5.96339949659686	6.16712530570275	6.05436396998938	6.42734000100792	5.93453513626568	6.07775265963645	5.86832828678833	6.40250591325545	6.2775742785139	6.50446227043244	6.24864950337967	6.4124376172251	6.59728753213631
+"MXD1"	7.7019714585995	7.74759470039753	7.87149512800365	7.95112191197391	7.72760788972467	7.90543191566754	8.07354136140124	8.1428873520004	7.9619980425057	7.16531066497167	7.71363996466847	7.54841036459884	8.24942745423935	7.45883609263872	8.22094229149424	7.65791503815593	7.8817942337836	7.78663866641647	7.83414016420527	7.70068753500408	7.42219056770177
+"MXD3"	6.98442032760267	6.88388170087791	6.75406337296903	6.93956914062569	6.88435855790427	6.8590439530908	7.22783867519672	6.78455909971804	6.66660487603988	6.88075723069777	6.84517868293389	6.90925218805527	6.89077411027615	7.28390788437739	6.85990915724539	7.20799059782013	6.86110148747941	6.85568628378448	6.96825371233455	6.7126535418196	7.12813918828643
+"MXD4"	8.90289054578027	8.60461840871012	8.52562951985068	8.82808466883585	8.10364263673566	8.99852003060295	9.01392034563986	8.59891648920909	8.53267540430329	8.25988411811713	8.53230513320623	8.43467874724678	8.8698260806082	9.05704240465014	8.69714809229414	8.1657010737748	8.55826188315585	8.17852353531807	8.80883595935413	8.4902938672488	8.34638008141362
+"MXI1"	12.0072052658191	11.5698674647488	11.3435546698113	11.7869937504651	11.4393006035123	11.9855595727829	11.889171368199	11.7162421111964	11.8071848579699	11.5418348373464	11.6643775162673	11.3723586883498	11.8940629743108	12.1207700454153	11.7844072524592	11.8248594379009	11.4930990366704	11.8350160220884	11.7286596415732	11.235551662254	11.2568675495901
+"MXRA5"	4.83851391392687	5.02911786542874	5.06291960693053	4.56340474859208	5.0424050222535	5.51228899735801	4.83368048885434	4.66507953039882	4.66186561373549	4.79214064750684	4.5768554943633	4.63158058164794	4.97458656159307	5.43300576023898	4.87508544181364	4.54567763933847	5.08471374331238	4.41864405695172	4.39727378261293	4.97071654054872	5.0848766612637
+"MXRA7"	5.5933973053664	5.72477718907568	5.83445078156794	5.84330720622513	6.42716678958973	5.69050004291591	4.78830612368159	5.53270658139005	5.84661262595569	5.7841750498673	5.13315624689664	5.73452786747271	5.78882345894634	4.98545707663807	6.39328386162867	4.68699047368189	5.79704213357448	5.81559196303924	5.1679550903515	6.54475532939117	6.14771324949706
+"MXRA8"	8.41964930702259	7.37056476408263	7.39205679322629	7.29923543212076	7.14088036166451	7.42060305173774	7.82513949619671	7.34816029885209	7.2210707769658	7.55452192220026	7.37119184575694	7.1549976812999	6.98960279326124	7.73241728077299	7.22305014118684	7.16100243725212	7.18753044329375	6.78588570743211	7.38695290817291	8.1525603802849	7.22257230727528
+"MYADM"	7.69869099852399	7.48811816548092	8.09206752651671	7.35033369104169	8.20870108055134	8.01272107632397	7.23101289602488	7.09869760911714	7.23573090892828	7.80175252627686	7.88777908534429	7.68862133132426	7.28286204298358	7.06593422928746	7.09798656028787	8.36647624546467	7.69149159281708	8.02426192740872	7.03139127896933	7.99036090532354	7.74533810131961
+"MYADML2"	4.93779438031075	5.23368727021882	5.54327909823915	5.28950467451196	5.06069829640392	5.28749124483448	5.25203979595066	5.08883464085387	5.22773535596132	5.38563701213578	5.3880333246853	5.50721665138494	5.53866828470421	5.47238404453623	5.57541637091085	4.94812971132241	5.13846215278967	5.06399178667177	5.4478334629532	5.11593815046133	5.47127739050664
+"MYB"	4.00207601116553	4.08603902736303	4.28370476771521	4.00768623721077	4.00768623721077	3.84817109609783	3.90618242428151	4.24355809735925	4.2947976575029	4.00768623721077	3.85475689286696	4.00373210730157	3.8795727585191	4.09502582984041	4.08760134636187	4.32186633797825	4.00383701936538	4.23668176976904	3.91520622074933	4.09477427653891	3.94468258880457
+"MYBBP1A"	6.12059484398192	6.54366182589346	6.44539859701473	6.34763517871204	6.27855980012815	6.5728380978364	6.08115589150771	6.19763799205121	6.34763517871204	6.96695359974875	6.60197600524461	6.67469241886846	6.26176237461257	5.87458025429408	5.64508586291976	6.3091570454719	6.65215244400461	6.28488976045091	6.18945574245362	6.51659402876585	6.95078640610884
+"MYBL1"	5.8222502239468	5.69808405540128	5.68072867884344	5.59235507810299	6.30922377240064	6.1025172737713	5.80670057545377	5.55717581702088	5.60260804243231	5.13477268438014	6.31241692469015	5.39565791562556	5.87921285657132	5.60259950256548	5.82039900976229	6.76309476637898	5.60525575485078	6.75399530271511	5.7430425297057	5.60680677701276	5.12534513735805
+"MYBL2"	6.55155388562729	6.79975752587311	6.64174004279914	6.75369649905545	6.48447821608674	6.6225110926443	6.69327456742741	6.71824969846691	6.77342961589074	6.92621746569598	6.67283457055495	6.83269343169227	7.03793913366577	6.84439886327018	6.75369649905545	6.59391747631355	6.76571301555573	6.51053771184757	7.04016140058196	6.69056962200687	6.78813373587447
+"MYBPC1"	10.6222571733054	9.26012108573305	9.38602153085705	10.030093904956	8.57747128361301	7.90850172516941	10.7434749352887	10.209317800107	9.39625625016736	9.03371181912599	9.41836751495287	8.94747119740387	9.22045163125867	9.58553902444837	9.63121702720954	8.90081677602537	9.16076375826903	9.21165689098519	10.1881016897909	9.22332162317457	8.4991712538826
+"MYBPC2"	4.61284354163675	4.51952535576027	4.415409192555	4.89469425817899	4.68537485353253	5.0874465206384	4.52902558369352	4.66612182624841	4.62565178221783	4.8144663802344	4.50170747594294	4.76605827002338	4.82742701593254	4.84153487730305	4.66451547622482	4.51085943340953	4.55481564796388	4.41326779630885	4.64805553460759	5.32721058581047	4.39893437511516
+"MYBPC3"	6.78206430457926	7.02409260981845	7.04427995942781	7.24342303115762	6.91604426356821	7.52538074850225	7.37011795583607	6.97298166974515	7.04680337180987	7.19415491857921	7.01242001716201	7.25504611056492	7.36637638710709	7.51384857112402	7.15319175363745	7.17518253263262	7.30697989515755	6.84735774073151	7.18389258610891	7.27820780635709	7.17540618129369
+"MYBPH"	5.59132144822327	5.42876158938215	5.74587834185125	5.63483969285548	5.6542935414849	6.09048501262211	5.87251348804246	5.64687800223492	5.99672077218681	5.72073109873717	5.28074198410681	5.76370548912676	5.94311610423953	6.17558478629291	5.68830933844585	5.56213108045096	5.62104892914783	5.49185301298042	5.76301976193187	5.77180687020384	5.86779401197348
+"MYC"	8.1259178406156	6.68183453790201	6.26114438686656	6.4657009537248	7.07637200547968	7.00591084201966	6.68458396877338	8.17737346631415	6.87688433805547	6.83062890228256	6.4974628850516	7.29468104570719	6.94221310442541	6.99521778122736	6.48982474057509	6.52766686924936	7.02508639410333	6.92491753011903	6.25380049697056	7.27394629422197	7.68164047950455
+"MYCBP"	6.74795538253272	6.7836928679596	6.67491636663078	6.82630485626838	6.90481378895486	6.9881400283555	7.21557816853683	6.79720731128251	6.83341928440763	6.83301966231791	6.70384372575578	7.10522314640005	6.9136240199452	6.88446328538064	6.83548612117292	6.8628904976914	6.91797711302286	6.61774666910141	6.94067340724914	6.71674635862016	6.95007987613478
+"MYCBP2"	9.48411591838591	9.98732897084226	9.97902551988716	10.0613510987774	10.6163791204311	9.88125205737515	8.98328080881071	9.80448665189403	10.1805531622656	10.4807600990453	9.61944989800345	10.4909742710905	9.94627533706117	9.77346186958538	9.75572031163208	9.71032186027498	10.2440595783127	9.83928841866175	9.71685361876845	10.707012070583	10.6008094750722
+"MYCBPAP"	5.31730919846428	5.46931621365701	5.54175860438952	5.3928944701252	5.47853042191285	5.86207029972768	5.70926218518344	5.44942964590309	5.61766978690306	5.41577914368767	5.39659964937921	5.50133064290966	5.46931621365701	5.63158762826872	5.22611723099003	5.53504391476445	5.4174392329739	5.14619686523215	5.25706918226548	5.04671298778952	5.35984882799195
+"MYCL"	5.27078475882974	5.36724102242157	5.23125539093895	5.72384719358792	5.64748904959596	5.36386666189036	5.60259722667509	5.15775840899566	5.64079330275486	5.14281359303174	5.36724102242157	5.16846034124227	5.57648055872195	5.8668976310647	5.37682447631082	5.47196022731195	5.70298864150436	5.10986297806449	5.32076309162564	5.25255474757163	5.35275003181567
+"MYCN"	6.38424757742139	6.99856016369299	7.19148512688109	6.82634465247444	7.12934604490615	7.97850550865913	6.8032056518683	6.31810629674897	6.26393654584123	6.60985305110403	6.88798362445042	6.95144425940699	6.67150726608921	6.86454529419953	6.39637132331709	7.44332268992761	6.85798534494426	7.58065309220029	6.61861307798011	6.81485974952916	6.52091113197789
+"MYCNOS"	3.69601828286153	3.86045892979461	3.71545810081017	3.89985273026352	3.79340624972589	3.84232318792524	3.69601828286153	3.53519407477006	3.44605813918033	3.55774446022573	3.59354318245263	3.66258937435405	3.89047513575351	4.17673235179637	3.54521056437917	3.54870669736226	3.63380446419854	3.69601828286153	3.64627898847263	3.76097673149756	3.6812527769246
+"MYCNUT"	4.7356607101698	4.88053006508943	4.93964021916054	4.97600494345489	4.88987947885548	5.16047712992636	5.16978732630013	4.82041781381136	4.73718599304622	4.69663078877543	4.5710397528646	4.71794059206876	4.90011222488941	5.01872547699844	4.98046576956354	4.78930701968753	4.83682459656695	4.70085173354235	4.83348987334987	4.71545392318528	4.87598852855677
+"MYCT1"	5.38358865400157	4.8698033166149	4.7038980065151	5.2018170851221	4.84307917762605	5.73715070605808	5.7684499192138	5.02328592186084	5.07237804119117	4.90301861342118	4.97075314316239	5.09613473278915	5.39954119340662	5.34810385551279	5.1485003078455	4.75799280259008	5.16094472681604	4.89550325299867	5.25392182040331	4.99151080251107	4.91912212229306
+"MYD88"	9.18927883709316	7.76817670234536	7.18921909860055	7.62731793548938	7.68614382444956	7.61920090419041	7.98943867349727	8.50153639317784	7.46547133164435	7.64521591398621	7.69087647924319	7.43737136743554	7.64822874309783	8.01577319668191	7.5039964030395	7.56916655617124	7.18586935251789	7.62523167282733	7.41271362375321	8.20220732691397	8.16244837484628
+"MYDGF"	7.89757453146161	7.48559449490018	7.55132534910351	7.44498026693911	7.5888525192078	7.65963722141159	7.39248481272926	7.54557467348678	7.59806817731489	7.77889955346652	7.55043878148859	7.72338623358509	7.51325361431595	7.32584229263485	7.60526024226857	7.6193041589083	7.37766531969081	7.67797856089114	7.49304662138133	8.0271127978998	7.90477895046836
+"MYEF2"	7.79167915687352	8.10614089389278	8.63093939290496	7.95683391848542	8.6042600659819	8.0940837089937	7.52218032838403	7.88175647144549	8.21448161395509	7.79879958852045	8.3905454483632	8.19650549055795	7.98061853116122	7.8562155851004	8.47262770269019	7.62207495982964	8.12009381159123	8.20886149023245	8.27486850919776	7.85848746967339	7.89479305408407
+"MYEOV"	5.26666582417191	5.37634447298872	5.51475238423701	5.21559155991842	5.25985795695152	5.17635100343864	5.80704814905133	5.38443397125714	5.39183250019474	5.47831590142259	5.35045006350188	5.47831590142259	5.53904931763249	5.55629652064498	5.50489849756952	5.26143582937476	5.25392615642149	5.5956544447814	5.51748853682454	5.20417378587523	5.49359985954064
+"MYF5"	3.63620390475536	3.62131297989048	3.55615737327422	3.53349859404656	3.66682098782871	4.25318467349077	4.13464364536187	3.66770406577899	3.73682146522394	3.71615245808942	3.61558109841024	3.76739698827659	3.75924473472407	4.00030243255708	3.75907447007405	3.57923608626774	3.60608413335446	3.54035136541677	3.77217476489851	3.70632310137397	3.63555446714561
+"MYF6"	4.88450276143389	4.93956363198741	5.30056384921815	5.04310963398869	5.03232580986206	4.91051314490413	4.96946550168814	4.91770366537316	4.94584872121057	5.0866604406938	4.79493466410793	4.83851391392687	5.01700212952585	5.21183342820628	5.27257322090778	5.01798952509703	4.97319203211733	4.94219792202887	5.00415598540347	4.91665579738391	5.3719459167811
+"MYH1"	3.2823346637224	3.0749325614471	3.27121091032469	3.42495579938437	3.13211193205891	3.39214576225121	3.22395789270902	3.22309492682006	3.41222410027302	3.25675743600848	3.21674201212151	3.3471979414033	3.185800537115	3.27619566886248	3.16590965957958	3.18850083960345	2.99438859623876	3.22395789270902	3.18914228972464	3.13292213458435	3.18404779816901
+"MYH10"	6.64188210616937	6.95423865156012	8.00992948308849	7.20587760116188	8.54614464632673	7.19293924831283	6.35002084874331	7.40161104051464	7.73753124431213	7.72031038320867	7.0382813501253	7.83968258126233	7.12748118826818	6.96869361931802	7.04296008604501	6.07659708280057	7.48325835015294	7.11463996296232	6.96214899372679	8.12722506628914	7.51453679074041
+"MYH13"	5.76515302741401	5.43307041220467	5.84454041304647	5.63643701939194	5.33376489905077	5.69050004291591	6.04683660533369	5.47389764126414	5.34900023844697	5.75514858977255	5.56966689964562	5.62749821827794	5.88237949853772	5.8701714820724	5.59071131232774	5.440754470643	5.6886624140403	5.63489085730896	5.96539970222594	5.48734457658932	5.8591285538268
+"MYH14"	7.9573215242282	7.73228926397267	7.46881462838722	7.52076019000413	7.37995347854213	7.78841904811518	8.067597038929	7.58568097921804	7.09678943062228	7.39391736084251	7.68374470811065	7.4633782062915	7.54641998581208	7.60843206422898	6.87881365555875	8.11733860131045	7.58178466082014	7.66107479290925	7.13435266683945	7.39796236477754	7.45689053052263
+"MYH15"	5.24548983642616	5.22543922158258	5.21200288823999	4.91100454531016	5.04839712224974	4.83279077809735	5.00184246782439	5.03757252326406	4.65804688750669	5.01663526688083	5.32602504430757	4.90163975367975	5.16585101060756	4.62239488616091	4.90122496205643	5.49233436533105	4.80357007465734	4.9288283931948	4.88002113741868	5.02617692372927	4.95943014296011
+"MYH16"	4.08022174867621	3.59081877950248	3.78030268969801	3.67513175108205	3.50467333596072	3.68454711824993	3.75627234129542	3.75047788981304	4.03612038983546	3.7788097540021	3.60620010360092	3.7752735516184	3.86290058067021	3.75047788981304	3.59870556748756	3.83055895084496	3.81130910119927	3.59801651981892	3.71589695695033	3.77303787375812	3.91992483943418
+"MYH2"	3.53563885221081	3.57574760983054	3.57936149705535	3.71442257546242	3.48016609747717	3.7120768891152	3.6614862801184	3.30598405281458	3.57936149705535	3.4412319480502	3.62126991169378	3.5833915156564	3.88509171534632	3.65042411030224	3.65060463045095	3.4145563577369	3.48309941893807	3.54311453750711	3.83570969918923	3.63554828558145	3.55005567495969
+"MYH3"	5.09127204259959	4.62610810036215	4.82797497554128	4.26952756587422	4.47439344926622	5.69086932045785	5.236463216537	4.30388785972704	4.67569487082649	4.58608083605604	4.87858232031062	4.30665128065254	4.84092847646772	4.80897296983722	4.44328171883955	4.7509787666755	4.57958116368458	5.30980777381295	4.60312728018397	4.49852897839739	4.81765073835134
+"MYH4"	3.24445582916095	3.29085161541005	3.45747710394173	3.43323499233203	3.23133600545421	3.77775684605799	3.49614012871216	3.29735618031058	3.37866667003213	3.35173792119535	3.2418511844013	3.62546816133031	3.48553096605424	3.2852032551208	3.21439160988664	3.28911601148188	3.53590369466349	3.17729400009982	3.35173792119535	3.37994450859216	3.42539065711514
+"MYH6"	4.95428119445718	4.76765052849102	5.04729137689322	4.82296738588575	4.49902475724765	5.05589485909352	4.84528230737907	4.71631584336756	4.78871604873579	4.80793477563014	4.72772875306684	4.83251698745381	4.88901295790455	4.83851391392687	4.80793477563014	4.86564861142663	4.87267136617495	4.74421889069538	4.95102735899763	4.69158277710011	4.71498761518294
+"MYH7"	5.48115630282462	5.51698186140246	5.60721907924348	5.67128571330647	5.54520762444557	5.96848698768392	5.39197352463363	5.5476988096874	5.55369199278198	5.87469794009267	5.5941733389914	5.53499459492924	5.63570302581782	5.68955613209638	5.46312220982854	5.42393510549948	5.62508828562821	5.69699115005851	5.79736615194368	5.55797718436842	5.44966323967245
+"MYH7B"	5.175751545453	5.87582163886948	5.81182298770922	5.8668976310647	5.5206603558867	4.80129519586615	5.34044077557123	5.44402016011521	5.23590406754275	5.20064077588751	6.04493963672903	5.41918175638862	5.54705600845692	5.55977599083808	5.23045797676844	6.7828036132299	5.47878211650285	6.89304017937497	5.55785174373603	5.32095426995406	5.22701772836488
+"MYH8"	3.86996936391756	3.792754593817	3.96779852709763	4.22610452565411	3.96550089273164	4.11655349859031	4.01707812137707	3.98327829693848	4.16089863856463	4.01221056385742	3.89651793050498	3.99550469525468	4.4847665324277	4.05726559001035	3.96929539269243	3.78531299655717	3.96779852709763	3.93666394630368	4.11419984256447	3.94000455810082	3.95507113325595
+"MYH9"	9.64447180056405	8.76280951897198	8.36750629823214	8.91290764339039	8.78884616458194	9.50948341577481	8.99680193226658	8.90131636847091	8.73090613197434	8.82399320392535	8.93670822018257	8.85592571159994	8.96607757785768	8.97760939946324	8.35076470269954	8.75269518640011	8.99206618092146	8.79685825785875	8.55344297202525	9.42654451826961	9.64297685448007
+"MYL1"	4.13835951323694	4.46784437979794	4.30515755189231	4.29938893389525	4.41771161500959	4.29938893389525	4.47735114404532	4.14787122140613	4.29938893389525	4.12034716989374	4.08193599403084	4.28557411049674	4.24459681761074	4.52993798442848	4.4962948945581	4.52982985873038	4.0847729962929	4.13073590921369	4.38168686565884	4.11353568512373	4.28632458566624
+"MYL10"	7.75810530794753	7.79631111952332	7.88056654293558	7.90443014122443	7.71643771441324	8.50716446399087	8.78757926419862	7.88296938915541	8.04338628655228	8.0146972215595	7.61072505041417	8.0473563771087	8.13194684879483	8.37020089579745	7.94294183039987	7.6298045598629	7.91587178318542	7.40154125932673	8.0796443830919	7.90706412633946	7.85683409563114
+"MYL11"	5.47381717278616	5.86579722075144	6.02687179978463	6.03541473717512	5.90537764264469	6.11161518692041	6.19090719485407	5.80629011481468	6.07034222979902	6.06651085740133	5.71754620891837	5.97088395103351	5.79433862899432	6.0798860365314	6.0227902660088	5.86906081623244	5.98195862516118	5.95579368302179	6.19216623825162	5.67997304892679	6.05665807838548
+"MYL12A"	5.65812926939686	5.75686806872524	5.085650942019	5.19019839629884	5.04740994028981	5.66692148015836	5.22902567040058	5.47106676405537	5.33467460116759	4.51837798736026	5.19019839629884	5.19019839629884	5.20194817716479	5.46307961853613	5.21981325218093	4.95400080065969	4.90486407019532	4.89224280590029	5.04050145148163	5.05406590642363	5.26234952705594
+"MYL12B"	10.4811742098686	10.443702414458	10.5245907134167	10.5562087747679	10.5600401624107	10.2600530558971	10.0892614444028	10.3494398048603	10.5024590653593	10.857726622359	10.3673439177562	10.5762853062046	10.6663345739761	10.4777209668291	10.5410430056203	10.4242159471166	10.4776050091537	10.2352476087171	10.7273881963205	10.703731607222	10.7503133320992
+"MYL2"	3.93092610895396	3.78166442796878	3.81059979580346	4.07485367262107	3.70694134459009	4.03565463320744	4.38461941010558	4.0472103515747	4.20032901179346	4.00469379059507	3.99023853349428	4.06768386796434	4.55012589111493	4.36234699811956	4.14935519407228	3.77619262368	4.12511806262851	3.95957820443422	4.00469379059507	3.748051870002	4.14681025649114
+"MYL3"	6.71147565466844	6.63946081719842	6.45328673722128	6.75947165546081	6.26270636315475	6.03170723190937	6.75747354802479	6.55561631591559	6.44462388154056	6.58279022915444	6.98952457602636	6.82265928847361	6.57715936656345	6.5948529614191	6.37149312678576	6.50191806021426	6.50804613110899	6.32746827976312	6.70334296519504	6.5328470991947	6.70683277337955
+"MYL4"	6.16193280085075	6.04566898624723	5.85401524169654	6.07951867903983	5.77773288166146	5.73819235947307	5.8842534932557	5.98705917133595	6.04566898624723	6.04566898624723	6.22491343121527	6.13868176139217	6.1378715691742	5.68784878343325	5.97572441337597	6.3206057868145	6.10218086751528	6.07012054584929	6.00883973796953	6.05450457449151	6.14214476769302
+"MYL5"	6.87108967896025	7.28985573372093	7.65500149303942	6.64942964815253	7.4518871326895	7.02488745937584	6.6597928233788	6.78455909971804	6.72744143377626	6.80835710950438	7.29339192185126	6.86783695356021	6.74731606813165	7.00190330798896	6.62323175430609	7.15651526081816	6.38340007371235	6.81009872426089	6.52698116574447	6.94631644379962	7.6637010406648
+"MYL6"	7.66402356278014	7.46953244528646	7.84223911570746	7.78032107459569	7.50913314513889	8.15316075660139	8.17400300477277	7.86686489947772	7.86816752853035	7.56281204345321	7.65757483031493	7.88473812603448	8.0502613824627	8.03982142673716	7.72968323810794	7.392121202016	7.78811616788762	7.5946513882225	7.93109120354771	7.53439680564294	7.71642851312144
+"MYL6B"	10.0401645942231	9.9626294727543	10.4071412487715	10.0408754392748	10.1293827507722	9.61955142694396	9.77517884116264	9.95756558757448	10.2335978901335	10.4500049131056	9.84881157887763	10.2423372344693	10.1826100622591	9.96474332382367	10.2202500831245	9.64862559721565	9.86826677321348	9.85784243737462	10.0435297488449	10.3462038884703	10.1312289747643
+"MYL7"	5.68754290458227	5.77344394076782	5.86507145519836	5.85842851036471	5.56939962549898	6.04512605594702	6.23883831580905	5.63237115371262	6.15559541926551	5.97288875577332	5.80842208742185	5.94758380079674	5.99826512520246	6.17007248696622	5.90282502968145	5.60048484706202	5.73971809950586	5.88527503247587	6.03185650368556	5.65611085174612	5.83325407135107
+"MYL9"	8.44873340622322	7.39541956099027	6.54719370757527	7.1700809446037	6.72057403823515	7.44682885344112	7.25557559687575	7.24979999979676	6.49293802657812	7.42751376852352	7.0959378940788	6.69929993525391	7.063589453602	7.88905530216631	5.90481329951734	5.8359486416331	6.66169562882496	6.58612529430356	7.74480349860414	8.01114461288085	7.19966007769656
+"MYLIP"	8.66176972350307	8.69599521197027	8.4809591175334	8.52659716836352	8.57425891450934	9.33719210437247	8.17215335472152	8.22319647651334	8.36514580444987	7.94079082465597	9.00229645273761	7.72433714358711	8.67318420689081	8.46076587028958	8.65293117661739	9.45849262712597	8.18140126281508	9.31775878880349	8.27812441002098	8.28636213361604	7.99500879228937
+"MYLK"	9.97890410774369	9.68977470209557	8.71243813039825	9.50187163559176	9.14373284164249	9.15918583419486	9.47712227649477	9.58830974238469	8.80292072841855	8.57280085943237	10.1132914028484	9.1513168929831	9.31857913768114	9.61659938631884	8.8944036408785	10.5920467760298	9.20165003791367	10.2796482278742	9.58665749883053	8.69111701864622	9.00244992964376
+"MYLK-AS1"	6.50864653153082	6.47802843206203	6.49804472660575	6.47616417726191	6.32062278990674	6.47706080162955	6.35163103296939	6.40000319381561	6.55624421781095	6.49576276296102	6.46957255857566	6.58362259943909	6.52864440560047	6.43053686401659	6.4159466304982	6.54536046252636	6.59557048525166	6.31392564181975	6.54367896325785	6.55492217174191	6.49576276296102
+"MYLK2"	7.29990835679524	7.57896692137443	7.59176107778945	7.68838301136059	7.42804796217749	7.62828172063278	7.84116424562297	7.46026219561286	7.62973721030492	7.57020075522409	7.49107934532418	7.67882970113856	7.7630479748248	7.58402094267816	7.40381567298174	7.38577919556448	7.56238107823366	7.23755299509616	7.6494454558684	7.49904930452578	7.39937888807255
+"MYLK3"	5.81620511937061	5.85495992361572	5.80782457024539	5.93192279048913	5.49394707737097	5.57074045922772	6.21884127629051	5.68252365059641	5.98516496177564	5.85037860556996	5.71648190304803	6.018192226493	5.99165376695163	5.58173538846438	5.98221684761713	5.71833232796113	5.74212748981127	5.43932596497022	5.90570965462121	5.81620511937061	6.01247557556002
+"MYLK4"	4.90273805080279	5.40143460979115	5.22007169566392	4.9236684559074	5.37374158101716	5.12929037724664	5.14469517470267	4.85179041609968	5.18916153354807	5.56760818880777	4.43132181104301	5.18892753771051	5.14699326272699	5.05814048117025	5.10251089177853	4.89010498280373	5.58269107984951	5.09975781143543	5.25474070558274	5.65291141012026	5.16862902537635
+"MYMX"	5.50157935446318	5.71656556366923	5.52568997003976	5.59600834686402	5.55890411844152	5.72861450110766	5.64934184513335	5.52540122114913	5.54881850722209	5.61945837250918	5.46378692240932	5.70309961577221	5.74643112509042	5.75267116006485	5.47368048576699	5.64380689921884	5.70696802736162	5.51484910202677	5.46049976254501	5.76985136707965	5.61869756503215
+"MYNN"	7.40216496155827	7.36455012502479	6.96068980541968	7.14280847010375	7.32410778103126	7.0589494384397	7.16627660821673	7.86231549045488	6.990741156844	7.13999703045608	7.24531362156167	7.15502420377466	7.18894363642089	6.86057476553323	7.2376037356677	7.72438117699775	7.19766363057358	7.75384109252157	7.28273461396871	7.41847576115117	7.02771038350416
+"MYO10"	11.0208177289206	10.6481977116713	10.3460983323509	10.3480019558138	9.90354180937209	9.89776192163546	11.0607839365196	10.2111298356114	10.0734065131066	9.77139500472774	10.7189945426463	9.47910328507813	10.0768290142996	10.8443708635827	10.272333169243	10.4044801098488	9.89957932095187	10.3352053518493	10.0922522700744	9.82359659045734	9.6765555914638
+"MYO15A"	5.761380209295	6.20878713983138	6.55468281999552	6.0072123246051	6.34729641126142	5.86372188261521	5.96526965824055	6.04528887491233	5.75884384532713	6.1355320806518	5.75684840483855	6.05424082893725	6.30357316171545	6.10706431642336	6.04495213078222	6.08361367529484	6.3059483313404	6.10132632814885	5.99651388861206	5.97581536752643	6.38348941441908
+"MYO15B"	7.53681053259901	7.6954068814477	7.30999734773604	6.82621759757996	6.87161395331001	7.38700862576139	7.11543626043879	7.0661550405022	6.77061538990998	6.54950544412372	7.7062370832468	6.61988175723992	6.4888182756578	7.75689665513872	6.58711516440807	7.75118802866773	7.02240213472361	7.47457701880067	6.64342966139156	7.05651609677773	6.892648098042
+"MYO16"	5.57281160899659	5.99176646349436	6.31977396607706	6.19162591786131	6.48703539973527	5.2111307665161	5.82216982689248	5.70928012859261	5.6170884557289	6.46759611971628	5.91519658322987	6.36211589978469	6.40407068188468	5.68339164689673	6.02157640843929	6.33033559222812	6.16608514510223	6.13015336650925	5.83127893085894	7.03081281804411	6.36213276123305
+"MYO18A"	9.69951548763865	9.35946301482004	9.33359500914485	9.1692764089597	9.0774601318863	9.97937561782107	9.40414302290383	9.15048816628212	8.72338173634754	8.89225932316763	9.81664743324816	8.88521741034038	9.12496733891571	9.5053024289503	8.77240261201706	9.93666457458645	9.14533286474729	9.99069968574064	8.98446494694276	9.01656005123417	9.23068089563509
+"MYO18B"	4.55734163843414	4.6175143895724	4.78267635349937	4.91100454531016	4.6119533762597	5.07684626170834	4.72399430592754	4.61738986277418	4.73921125794052	4.70913585250106	4.16522162260845	4.78199747156563	4.73062502055988	4.9808350504839	4.4546006697525	4.76630649193951	4.96304076647215	4.24086241547216	4.75799280259008	4.537699768961	4.49008176145483
+"MYO19"	6.16358554545827	6.11718311512739	6.66153967654249	6.02698326859183	6.07974819792292	6.195912178203	6.36389037848938	6.13188817053392	6.23205902160174	6.08053114673977	6.30691856040896	6.20624391938904	6.46102577877163	6.51965433617116	6.30315782903318	6.16016142692154	6.2775742785139	6.3826506094736	6.40382767411492	6.11190145415126	6.37845446668022
+"MYO1A"	5.06836451910565	5.01336599883109	5.14851751393358	5.52709528988894	5.00724097741304	5.03137527304964	5.32296763373824	5.02842565608537	5.24586060959843	4.98508090674354	4.74454760316521	4.98200908134609	5.02409314008682	5.12906069912838	5.1195907301544	4.94579203221473	5.02842565608537	4.97705093530031	5.0143010128996	4.7328297921003	4.85946467925159
+"MYO1B"	8.31605100605017	8.02543576184846	7.27519541348986	7.37716029893575	7.91818983508725	7.43956023418642	7.69710152823992	7.70410252032178	7.66553435233133	7.77884344009568	7.54235577635805	7.43454543930179	7.87069268470222	8.11417689527063	7.29052000009945	7.31616067992825	7.71541311311513	7.24295503327587	7.47940474843162	8.2607776050896	8.10458983699234
+"MYO1C"	9.1066811667276	8.90905254818918	8.51627925972032	9.23978358562323	8.37772138685995	8.90461793615766	9.40237807303904	9.05747551604924	9.25207653914384	8.88784692497662	9.05245528621549	8.76041881675854	9.39943474794457	9.3238891198239	9.47481460650305	8.67249267709814	9.06756500230301	8.43676997773964	9.12594561818212	8.37480778233309	8.98930858744566
+"MYO1D"	6.44831343736986	6.8135542779583	6.4043150679868	6.06255261393582	6.13922436859426	7.31522971833068	5.80417772054564	5.79922438828903	5.08897186774705	5.6411965026979	7.47424186713839	5.71411033410415	5.61271010562193	6.26601642296342	5.86997627258333	8.61891826973566	5.87911364697317	8.2699566370609	5.99542099571731	5.78666681464621	5.87817863346752
+"MYO1E"	7.16824803347439	6.65441760821852	6.30989979633898	6.46964488619953	6.2636838285417	7.0012747621761	6.4501344114403	6.30992623366801	5.91868490294417	6.37597512361054	7.2712210535173	6.23103024247803	6.41540849752207	6.56672978533122	6.14350705777907	8.09698430545452	6.26494735770583	7.65132952871705	6.3434753049034	6.14126498135396	6.2959989023086
+"MYO1F"	8.34263427370816	7.12048645623999	6.79983407789096	6.89734601553492	7.12048645623999	6.99358365716382	7.34920368242437	7.25005745032575	6.74486133382973	6.72362371697805	7.08954679982854	6.74090822742634	7.02883657254428	7.54495625107702	7.22251043586947	7.35380491505799	6.71314762434947	7.46258612705859	6.93384052883959	7.69903600023781	7.46258612705859
+"MYO1G"	5.94078182505358	5.77727891415096	5.38850797412545	5.9505438284292	5.69763944923444	5.84170858826896	6.09743834883561	6.16768677544216	5.79608450905793	5.7545716647336	5.85037860556996	5.93963254047392	5.8737039372195	6.18410492016245	5.83106317845762	5.84974647260672	5.75531839397256	5.40546583847602	5.84336797963747	5.85037860556996	6.36017278949439
+"MYO1H"	4.05330514593424	4.15437354495645	4.47927800380242	4.12809468703092	4.23700711321379	4.0976628471637	3.80565877744136	4.32267705052549	4.19126962099261	4.01245195331391	4.27979668681179	4.07814388677888	4.39876768676974	4.12981651342373	4.24067781236044	4.24848000007695	4.34634699370544	4.22049744250971	4.19126962099261	4.25518540354393	4.19126962099261
+"MYO3A"	4.42644377222826	4.52112445598797	4.1658331525177	4.51302654846099	4.5252594548018	4.49719109412297	4.77626889540868	4.65372123788808	4.54751080496412	4.20365027116324	4.34558197142643	4.46166034850697	4.39256522044512	4.52704992693945	4.5223413541788	4.30911811278704	4.33488084236617	4.20031055777983	4.46166034850697	4.46166034850697	4.39893437511516
+"MYO3B"	3.07035413457774	3.15721757625093	3.20155021147629	3.55437904911171	3.23133600545421	3.55720490981113	3.38238731642354	3.41048243283371	3.45357953004047	3.22954815950061	3.23133600545421	3.43177525918073	3.19368216161132	3.36426570564722	3.34524232622311	3.15828382342225	3.06775384064427	3.04750851055649	3.09991106385214	3.34215571292522	3.19368216161132
+"MYO5A"	6.32597630658459	6.73306830558553	7.52286300731435	6.45484107198593	8.33351222412212	6.74795538253272	5.99147362062986	6.48221173356326	7.2841592171237	7.75274345885927	6.22138613548654	7.59747741534073	6.49002937546255	6.42947679651793	7.03456493892029	6.91624257988827	7.26929390405373	7.51284404715682	6.99091621329748	7.38887356221383	7.92297854070907
+"MYO5B"	5.53073230976407	6.21411959316363	6.41574939898194	6.10271985819724	6.33996187742872	5.92236657970303	5.40351413135252	5.78369472260934	6.09648987964099	6.60753589334084	5.91356555258437	6.32985129928185	6.18475112101398	6.03940455396513	5.94390867754408	6.10990713096645	6.07390558758074	5.80339676398627	5.91536334384264	7.06196134498198	6.2149432726872
+"MYO5C"	7.800014986502	7.8791830856771	7.84851219529122	6.92661531428605	7.5186107432715	7.45826561804545	6.94966575471054	7.32883665417741	6.89358659590433	7.24672346417282	8.42964521382682	7.4719401488751	7.13399031314038	7.37053316427458	6.63134849674751	7.49170574570502	7.40797938160428	7.25604587357752	7.10498564883844	7.46796437940434	7.01246740998604
+"MYO6"	8.87931023987538	8.88277131384712	7.57139237461295	8.05428218301279	8.29024750137892	7.78887473582906	8.18603072914576	8.622074215494	7.85625060800561	7.97468357981275	9.20134543672776	8.25173278373844	7.62285455049277	7.80753086975584	7.55908411311095	9.15181732377191	7.99893070391839	9.07091091665523	7.85030441350685	7.67214852537723	7.81343447368713
+"MYO7A"	7.54018439801736	6.51898597677698	6.41188294194331	6.27943274070341	6.46639119476806	6.28859781083105	6.30463474033406	6.68964964381499	6.21221360584423	6.14175454459237	6.17746508088781	6.3490401113414	6.61129950311815	6.51164727299079	6.37431481687456	6.16075712110354	6.38457583831811	6.13191018496245	6.11391865570383	6.92462930627512	6.47909886695958
+"MYO7B"	6.70153290588264	6.61726449561623	6.87481111533203	6.88222269632183	6.62875171226049	7.25397187492262	7.50187441327103	6.82766404149633	6.96946979883424	7.02731221196015	6.73971753101943	6.95572711968696	7.09216663972489	7.44949933055801	6.95145622045869	6.72321633799663	6.85133714999256	6.49926241227945	7.08931618957739	6.87236007253257	6.86561518585409
+"MYO9A"	9.11017103134388	8.93124073569459	9.39990871637366	9.16294614883859	9.425378619582	9.55200240964248	9.00090557537365	9.43027909202809	9.33621882764875	8.8795289598302	8.76940960684115	9.19840159267111	9.27816514400292	8.9737490790499	9.53418921055143	8.60223551024884	9.11109814893566	9.13514324961565	9.12883060121933	9.0850656725644	9.16294614883859
+"MYO9B"	8.30818924366181	8.09104677913529	7.76000416332466	7.83666600268898	7.5933139240261	8.42269239862378	7.77535081239862	7.82402374367609	7.42854467535879	7.54573425917152	8.61875373327665	7.47622260681689	7.61509641925582	7.94226753578368	7.66444764264823	9.10507783103606	7.82264976930466	8.88130072670532	7.89072133041515	7.47075703324573	7.80883757318871
+"MYOC"	4.45407239260978	4.69412273306968	4.63878944121281	4.74575989624927	4.70107182909352	4.74921518431512	4.92669528689696	4.56167709175071	4.73150203762978	4.73150203762978	4.57538658745638	4.75995365758402	4.94175458084501	4.70837009627162	4.61231519328411	4.91349841697304	4.90194828536514	4.33212601252248	4.69738399795638	4.74895495710064	4.83851391392687
+"MYOCD"	4.72088342755937	4.7898943332654	4.73230141460925	4.59850858469253	4.39948292881108	4.20757447724224	4.33944150559518	4.91370254956704	4.92698512608942	4.44914832547996	4.54822232733928	4.70842032182785	4.82720244442835	4.57512919121534	4.54455303681802	4.63411970443823	4.75390515222559	4.57512919121534	4.57512919121534	4.42800168828073	4.57512919121534
+"MYOCD-AS1"	3.83161003059802	4.08193599403084	3.94397666041169	4.07605302923454	3.91747881625649	4.10370119094607	4.20078938329865	4.0147714235997	3.95292270237684	4.03979539245002	3.83353097716374	3.96159005776927	4.01311154860354	4.08862993138578	3.99213298300252	4.01455104324401	3.96779852709763	3.88407564568769	3.99555265400941	3.9769709641489	3.9124351152856
+"MYOD1"	6.60529457767762	6.81890964632045	6.92188794444994	6.84063933146337	6.7825861413877	6.97637561490505	7.07988919504863	6.59730934962184	6.8383806229948	6.72180084119379	6.63705848334814	6.86406004256582	7.02837847560105	7.24055564861308	6.58707972984267	6.6779820023581	6.74412134872898	6.45471665905999	6.7260431805396	6.58534446388817	6.66681873362665
+"MYOF"	7.83142139537052	5.70613740322954	4.99466750541548	5.52663823249873	5.71070547204214	6.64702033591972	6.08682790985791	6.66352974521254	5.3973348872181	6.22321142949949	5.92622420990301	5.38076321827127	5.95678306536732	6.7550611244438	4.95771342590708	5.10050304169266	5.60525575485078	5.45318995871393	5.46049976254501	6.94933671434918	6.47861561900935
+"MYOG"	6.79738173415481	7.02486955399105	7.17754852969195	7.42631605673944	6.91767754500354	7.76316813744479	8.20956241353015	7.1352247838892	7.3803449805033	7.32116667527788	6.94537607955347	7.37026834083433	7.37182454461237	7.59179068951837	7.22777325437647	6.918194768648	7.24535987568783	6.88159830077608	7.48746112111435	7.23020823361781	7.09881415496437
+"MYOM1"	7.23547955535002	6.26244235959397	6.45818337504146	6.10718943644137	6.16338232955149	6.11149195142604	6.47280447000484	6.39728538645257	5.99849112901734	5.91536334384264	6.4429903946484	6.06257506916587	6.10291008365343	6.52135805487734	6.05004046521987	6.25406144075365	5.92310358627102	6.16338232955149	6.16338232955149	6.06699064110467	6.03314313003854
+"MYOM3"	5.14375639169135	5.16749006169664	4.95180553754811	5.48236650288434	5.1716869876303	5.06253879615385	5.67212470295979	5.17610394623631	5.42294575789796	5.19145380166844	5.15569046308267	5.26528723192213	5.4363067733443	5.41679393423694	5.13820300887286	5.29941041793538	5.20486689421078	4.99089076611829	5.42163696784743	4.82931627432747	5.17610394623631
+"MYORG"	7.29149859910448	7.14374105991268	6.73456708370182	7.23917122183635	7.02821992192578	6.07138326952622	7.53014437686327	7.15122933048054	6.8383806229948	6.76713529947966	6.84893097435226	6.75974855544117	6.81982414430924	6.9479722114943	6.50286928054157	6.60746169948214	6.80190521581493	6.73793124770005	6.79887716445453	6.87311739112342	6.42685069102731
+"MYOT"	3.22834565855613	3.3404377108901	3.3404377108901	3.4005958685152	3.05922685602506	3.60363802444572	3.26300438047166	3.16858615199023	3.33445102411526	3.3404377108901	3.3404377108901	3.376213220121	3.54136740744896	3.34685372097652	3.64524447840285	3.38258647787855	3.28839121687506	3.50941081968637	3.3404377108901	3.08551990728818	3.57955500703308
+"MYOZ1"	6.43276298809095	6.59497327652455	6.44806696880283	6.56799133501156	6.60697152989813	6.52440452384347	6.77015475387019	6.42546509113817	6.36814713392721	6.43445412665903	6.30465797799199	6.38340007371235	6.61340307359221	6.86943954796753	6.47615468659368	6.5703055978872	6.3643480768716	6.26021185889392	6.48544868581523	6.39271666404882	6.27228937215926
+"MYOZ2"	3.60392231368166	4.01059083371543	3.69719117072197	3.2371083959586	4.05830870573768	4.03715472867622	3.59114898674218	3.57039236878463	3.4361161564841	3.53377048817379	3.72914897584077	3.58020721668009	3.60711549545776	3.44268480620725	3.78979486806246	3.64219919234794	3.77634514561787	3.56845390419429	3.62282703963893	3.70532956691476	3.49805252895759
+"MYOZ3"	5.32470693424564	5.55822858982127	5.76719589283882	5.61529831395407	6.14606592646834	5.75167598000559	5.27009849314652	5.26154836656434	5.65044694965756	5.78264696105668	5.33136483386713	5.51811161101138	5.93940466750836	5.50559266018169	5.61781992874554	5.61781992874554	5.51233794354382	5.15041771035981	5.5390914229125	5.73971809950586	6.01644192808205
+"MYPN"	5.84647753804664	5.9049233232551	5.91423351962887	5.91423351962887	6.03105185904622	6.14536393385435	5.90682900959982	5.9121037615385	5.95385558837554	5.98687990379484	5.8551881530729	5.91423351962887	6.19891068850513	6.07039354339939	5.99000859570418	5.8046063198732	6.03164172283721	5.67397350663633	5.86554268774159	5.86498613180711	5.82736540905265
+"MYPOP"	8.17492046970392	8.50668604273607	8.84237062074274	8.5695336560066	8.9350909321638	8.45055860252255	8.59987256434355	8.2762963874595	8.68691683139189	9.04145096329816	8.11302980542606	8.77033807786066	8.72809206623229	8.53386769269217	8.49740143931236	8.27736637689649	8.80814772558907	8.67680943598154	8.58499216517462	9.13243376361007	8.99243935438724
+"MYRF"	9.8708254132145	10.2118947662007	9.88054038537398	9.68299350193616	9.68007031424303	10.9286653773593	9.01614015156356	9.24113649045738	7.92880130862349	9.06623381729627	11.1323979739186	9.27184478229912	8.99132106291934	9.44376303809185	8.70643415339739	11.7250546544833	9.35263499968488	11.5045037203783	9.03847854121612	8.58644187349363	9.43384599055943
+"MYRF-AS1"	7.04029151883567	7.23187444793772	7.08327955971825	7.18848535774083	7.15310068034336	7.54352353376836	7.60831815566395	7.20008967240599	7.37137938760521	7.1572394534626	6.95246629460556	7.13222682058982	7.36985168290544	7.55287560511756	7.15310068034336	7.04177038320575	7.14014236938483	6.87614527553378	7.10388891472775	6.91123337227746	7.17175593885378
+"MYRFL"	4.32909307980746	4.72296964036356	4.73270926661765	4.78835573840182	4.69895205803882	5.03218316448542	4.87471718153351	4.60468904150416	4.80034306955918	4.77310494140486	4.19737546785233	4.69895205803882	4.95484824451703	5.11318261068953	4.86483667031845	4.57018250120868	4.55974308300449	4.53112541580327	4.57786595356163	4.72671622067971	4.57357926806726
+"MYRIP"	7.7836405301328	8.18815652683816	8.35030342002187	8.03428751243148	8.45551845508732	7.83802233028722	7.11978163818494	7.91405186249734	8.31710868281997	8.3750267891195	8.11897281376755	8.17124734726471	8.36393036961081	8.43321813638056	8.08245928350366	7.22926332131852	8.28261688107363	8.1137200364952	7.88365656693932	8.23225335769085	8.15564189371545
+"MYSM1"	5.59547183944604	6.00932231207079	4.98167622715026	5.05042316871237	6.24039475773401	5.1607497501121	5.20492532201197	5.53054117119387	5.32174701703913	5.99939843821698	5.442089966432	6.04045488885948	5.2381016762541	4.84043744201147	5.21729100743138	6.37022668254929	6.12661505619131	6.55667767496822	5.38403846908401	6.09771761296288	6.19922545336149
+"MYT1L"	4.4501704201983	6.63334428924608	7.00563543443668	6.44066391729709	8.23146214733208	5.28019422854622	4.2436151655943	6.67739375606806	6.95031409685476	8.14711488412681	5.49507329791033	8.2780783749882	5.36756253593495	4.78805834148068	6.07817441915171	7.36554275875059	7.65876164174487	6.83021354099665	6.8735950533641	8.01084401267454	8.50299815954817
+"MYZAP"	6.30242098852136	6.40133455896517	6.04609330368277	6.05703891666499	6.12108201148036	6.48892150468533	6.16766232598841	6.57995381280098	5.99869798919869	6.22090637377797	6.76005257972071	6.45875159467448	6.19129685971928	6.50328304508271	6.40089243644869	6.17928678601717	6.2602058214595	6.03492796290277	6.31325464352413	6.33586091911767	6.3663956931971
+"MZB1"	6.1233868500606	6.20139102416358	6.24443397539332	6.26038409733006	6.12365372771233	6.46344033812412	6.869476305427	6.1843768296176	6.33681173589218	6.28894615760025	6.21037636258091	6.22304542405614	6.54604205385105	6.63439105078567	6.31695371457679	6.01047336171681	6.35708277205652	5.91145183738477	6.47052145371112	6.20829779418089	6.02635968413063
+"MZF1"	6.85713502546228	7.27764435992165	7.05895986834075	7.17452610215735	6.99520123805482	6.76746751722669	6.90739006515122	6.73025556596589	7.00493597810616	7.06871843105261	7.16815944759769	7.14632578817566	7.10800734650151	6.799466544159	6.9057383363481	7.44846267608944	7.06092903399868	7.05895986834075	7.05895986834075	7.05895986834075	7.08483743546117
+"MZF1-AS1"	3.73903151078819	3.76013318786535	3.895671885618	3.87774722263377	3.62175828737983	3.60656460238704	3.98918018384864	3.89442052434232	3.61974055924882	3.76649585251223	3.51838666037409	3.69461683792636	3.84337817914205	3.8375741768003	3.78377171960906	3.96959768411978	3.70486453319588	3.77608427388673	3.7004171143429	3.80507134536502	3.80262013199134
+"MZT1"	8.52451385860566	9.44048527368282	9.83951338714866	9.19474718427854	9.90718685489845	9.1709762448654	8.68659038687786	9.33762104857108	9.69358058606608	9.79274278246429	9.1045080239392	9.76313054613559	9.18488238991846	8.81803877231298	9.59590598686065	9.22095508873593	9.46101567061147	9.60632245643798	9.41653737038827	9.53985839262203	9.497312465331
+"MZT2A"	9.49150764398031	9.84800197567773	10.146740285517	9.71903523830341	10.2156974968417	9.85313788966039	10.1034703563587	9.63199144709061	10.0589660218404	9.86338065840381	9.559696892389	9.91458992538166	9.76045291979703	9.67333276901681	9.72258100421536	9.64834228249724	9.7727959375077	9.67205434608434	9.8396869233738	9.72581604726633	9.74195875151613
+"N4BP1"	7.9459933646281	7.96142329921225	8.13678412580883	7.6883956672033	7.83432573091915	8.37926329288682	7.53434086980128	7.563038691505	7.75713980823318	7.69508003810927	7.78064920400701	7.58060873321753	7.59972182409641	8.11065249891739	7.42608912547733	7.76666097863429	7.65290966324943	7.86650862332752	7.30214277882356	7.8387966682968	7.71624899585601
+"N4BP2"	4.97502954645795	6.40638598085371	6.6528473374998	6.53557025842919	6.08410041513521	5.8796701453088	6.01935672098685	6.30835193669912	6.35245950777531	5.81756006748225	6.02698464365386	6.24398399220255	6.26922563027495	6.53012153427654	6.69165520024736	6.02982499101511	6.42971091625076	5.41709549830174	6.5462610564184	6.17602850574316	6.53012153427654
+"N4BP2L1"	8.75165566111945	9.15049925048576	9.11324680342696	8.87610169208027	9.31688794986034	8.50311537868686	8.03814257149724	9.26665050264366	9.176590794625	9.13973930754164	8.58354989110051	9.22554570179662	8.52354442490425	8.27168640324665	8.58771111117036	8.74377774000759	9.02399741938012	8.8583796582006	9.04042593186928	8.71143897971617	8.8238587085495
+"N4BP2L2"	5.46514818364095	5.67593138489352	4.89877316606612	5.96777744796683	3.7556539521004	4.38195702000894	5.57237014877247	5.8385148206714	5.58743429200421	5.29988200548461	6.2831982001059	5.72372351179839	5.75058349884973	5.58348524169466	5.94849759296618	5.78497390868159	6.10207004923635	4.1345058971491	5.77800263801445	5.23005983748488	4.90073178137409
+"N4BP3"	5.70059577425539	5.78818101775056	6.02759953068171	6.06900189510542	6.11999783901107	5.96737890496738	6.14117216891384	5.71524057657399	6.13779665600667	6.11262752102671	5.97909548163085	6.05856968615625	6.28816126081896	6.02860622031821	6.15638262620986	5.78493440248871	6.22179787217292	5.78103362565927	6.09655344787056	6.23985214988811	6.21192187906733
+"N6AMT1"	5.98041122051392	5.88061790997736	5.28232594504618	5.58837568539092	5.35133579608278	5.57761192802896	5.59487299405829	5.7662511083396	5.41672937146822	5.70399613556225	6.08573335698306	5.67146134274646	5.25411798840626	5.33686289244458	5.70230056550291	6.36519381563781	5.40225925857228	6.19840989508872	5.70230056550291	5.77025806799906	5.70230056550291
+"NAA10"	7.99675579195586	7.71101258033345	8.07617339364115	7.89395794726918	7.64252570171878	8.041364802163	7.74568582523277	7.7713836158061	7.58106728190472	7.59834814628891	7.9446227048882	7.71192077373629	7.89260297479954	7.82654724024041	7.65603167249729	7.6382902572409	7.5519194012172	7.89017211630757	7.66180367438523	7.94850379781393	7.7771136689969
+"NAA11"	4.13854401084632	4.51295411560396	4.15572323382349	4.52482299420357	4.48799687398183	4.24306268944957	4.22451243356094	4.19565845336074	4.22451243356094	4.19170267691297	4.23127376791218	4.26397979989708	4.35309734060323	4.08655729484861	4.16465755144577	4.22451243356094	4.54105710126696	3.96779852709763	4.04388075951227	4.12972355266451	4.07215268803277
+"NAA15"	5.11770446418351	4.81348328173293	4.82992613748557	5.18938854517276	5.68219711467953	4.22711918931242	5.14804157389944	5.30172657723951	5.52728309681901	5.27387650817447	5.18754373454729	4.85230253421098	5.22336535776443	5.11643980746764	5.53327949280441	5.03692548916921	5.33070747526965	5.54973328398475	5.25495162416766	5.29240441115322	5.3973348872181
+"NAA16"	5.6375007122569	5.82166206799198	5.64994382141259	6.18807141108285	6.32388461496574	6.49990007425673	5.85235240057072	6.12059484398192	5.79132575404957	6.40160934456409	5.87714010972165	6.25034288593096	6.77643519189656	5.76854802684574	6.42479911318403	6.04314607500016	6.08047011654408	6.28397404048688	5.88485484288694	6.05986199832114	5.74749143509712
+"NAA20"	8.98914555975615	8.90131636847091	8.65136702681027	8.55531644001795	9.19478299301995	7.82664304013763	8.20490953091652	8.63886660120403	8.71393080998279	9.18675935898764	8.80089257906271	8.87990277484963	8.39024293467946	8.23649700955263	8.71910090638969	8.86058870156121	8.63725707373918	9.09063273529859	8.96125428442946	9.15303778689728	8.96520166504539
+"NAA25"	6.63798912428667	7.06871607304194	7.40903868339332	7.07105784911968	7.26763257040712	8.097916159489	6.36251482953535	7.68587789506692	6.43079681022231	6.76451394851319	7.58893626845945	7.70641492276403	6.70436849641418	6.56969717233428	7.27782296683797	7.35039463111382	7.39605475731466	7.99834244659966	7.21079581693079	6.61111244372741	6.40737408202911
+"NAA30"	8.17718619704828	8.06966409820908	8.80105248490196	8.04881658783094	8.62773369325472	7.78407447179541	8.03359811801464	8.22980973690762	8.54959740059286	8.45929707338147	7.94543925252401	8.37090977776464	7.80055921123237	7.72060908130421	8.57335474652068	8.36626783030133	8.35797383922231	8.40125066616574	8.3072828874635	8.66279913238473	8.52161336920207
+"NAA35"	8.11783657812976	8.36056783013588	8.2190139760038	8.22034355799572	8.70689770906977	7.92064566625213	7.82578920744628	7.95302302999684	8.31881785392209	8.32790147309905	8.594106254738	8.27273718105634	7.67672633300842	7.83920975559057	8.14663011802409	8.14059068620952	7.98790783079467	8.39491901065877	8.12287904337437	8.39421955935064	8.14465445004244
+"NAA38"	9.11392974375315	9.01743692347708	9.46673128631859	8.97377972103486	9.42338942453044	9.20014179716398	8.88970373779101	9.11599063156156	9.36675188232163	9.55875064918749	9.13845546328329	9.2162263887515	9.26112573161566	9.19664015807365	9.43406386154269	9.05658977858984	8.87618212275023	9.33619955589382	9.27068322323846	9.47541399009323	9.24121027981962
+"NAA40"	5.64828376103756	5.87952122042837	6.48167029162256	5.83887680492183	5.97718645442027	5.91703782835877	5.07995046535608	5.47389764126414	6.00990179220662	5.77838409559434	5.95827655240561	5.23644131876783	5.80290807130708	5.84775379264868	5.29009204548021	5.73908361065202	5.65709392385467	6.28827673365435	5.38989205335575	5.71975500695828	5.63670810132485
+"NAA50"	7.42123985982284	7.48193655530696	6.49804472660575	7.16709867823142	7.49093944620792	6.51412662003539	7.18912114659041	7.682870365319	6.98787396361302	7.70991277398896	7.50623787883857	7.3888632447314	7.26495465046633	6.77301576075161	7.0245478816755	7.36753028397548	7.02987693317823	7.6005746515247	7.66438588924664	7.54792918053846	7.50708079560379
+"NAA60"	7.67459692025045	7.19960588651334	7.56024697855452	7.32004161542598	7.28533607966271	7.76372520426257	7.58113658285158	7.32099479274885	7.2874227325605	7.30855409438685	7.1641200967536	7.15303887979251	7.36841551354858	7.64818563376478	7.25519876631456	7.35130880604695	7.12475233925992	7.40340057316339	7.2056577247203	7.48949329127815	7.15512105260625
+"NAA80"	6.98594198807938	7.49342792072677	7.67000239572366	6.60529722314409	7.76284736749503	7.47000860406089	6.98713050202263	7.045848210811	6.99276551359597	7.4910639229123	7.4188152239667	7.37196263146543	6.96689211158243	7.19476085207048	7.13444300459886	7.17794921242025	7.43174730178009	7.6797349140506	6.84159033511083	7.61015235319345	7.27218694821019
+"NAAA"	7.22147013870938	7.01608049380812	7.17235945678503	6.86284614468516	7.30414913228296	7.22852860720307	6.65069140812651	7.25438271279553	6.97003523403004	7.50103282078558	7.20010159172456	7.69916042539788	7.45294815358117	6.85955410875598	7.1048734793627	6.5551882254599	7.0219494408218	7.1281926143605	7.34530591783289	7.48267361999912	7.19388058841969
+"NAALADL1"	7.32212783038427	7.09700238310847	7.11801389072526	7.25360580628091	6.96398045893124	7.77234066894959	7.71947419801583	7.23345006031344	7.15910842671641	7.29117221017076	6.9634005619023	7.30647644203643	7.275399671768	7.52358350278287	7.17367464371502	7.14738832808681	7.16807676981549	6.92882056328615	7.2810511298028	7.35185990862665	7.26702305760637
+"NAALADL2"	3.41603442714824	3.3404377108901	3.52456714772682	3.31388678932194	3.34645774252023	3.43650869584355	3.50101887708565	3.42598080769835	3.23203548853904	3.34315338358271	3.64152128958448	3.50607445928343	3.33419767591567	3.46293550191659	3.32110196824631	3.73576841407168	3.35181740499045	3.67730260745442	3.47289173432116	3.2378135935453	3.37856958224143
+"NAALADL2-AS3"	3.24192467728368	2.81641428639624	2.98228070136061	3.09277765197846	3.20722492333442	3.18040468103026	3.07390885949075	3.0725964630396	3.09277765197846	3.10784034454538	3.0045717624006	3.12047531320808	3.16008792605111	3.16591465837653	3.1390227783856	3.07118282135568	3.18175450427025	3.05060128140035	3.12832416025294	3.19460584385177	3.01421856584701
+"NAB1"	4.24381209187643	4.11856708409512	3.40549272305807	3.55426269099481	4.3203695887774	3.17109103438444	3.43177525918073	4.0166553622369	3.68919670847593	3.8314446986243	4.60230277593452	4.06676366387623	3.82728331354453	3.58849460622507	3.72403524211947	3.86444581648566	3.91659939017236	4.606659298167	4.00978652666082	3.74157095581034	4.26600126082825
+"NAB2"	6.69091267147082	6.65148123200678	6.51492310504944	6.67590296137813	7.15221705120901	6.62418579101232	7.05418993257284	6.77431217144018	6.81904067814388	7.00870722377545	6.37469658193422	7.0514688759394	6.88618081286276	6.72491572024153	6.86514611500985	6.6203705184863	6.87980403148404	6.67721242711322	6.77075188961223	7.14864856437085	7.38330859244957
+"NABP1"	5.77001484075164	5.06492848172634	5.10865773383023	5.04684561983636	5.17111325534916	5.02677134507634	4.89551958747279	5.78005157003297	5.09122390903668	5.13217467418242	5.02305779072063	5.05402128679388	5.19194286652159	5.08061091597538	5.00864902823947	5.12906069912838	4.97802631684016	5.4626811802919	5.32726088782221	5.39117667037353	5.83256556758872
+"NABP2"	7.64972645337595	7.54766830928051	7.59880147908965	7.7770641352905	7.77542629729974	7.31983486011401	7.9120275488661	7.43328304829964	7.97488149279277	8.0507098186252	7.72678771780824	7.67468418072809	7.86804434634097	7.82734367051429	7.99102532158299	7.63342424912162	7.63812207134464	7.62043146920235	7.74426959461508	7.85293369142279	7.64289203353702
+"NACA"	7.56924332494461	7.49246307569815	7.75527382335436	7.28337075303626	7.29319768561787	7.66229230063718	7.0428988357604	7.51066425148591	6.95335143694073	6.49152183627821	7.54841036459884	7.33029359035669	7.56067452666577	7.04890803230039	7.29155802849206	7.36755809996035	7.46596468683371	7.80320879664137	7.25983488972768	7.11554085140586	7.25159667403806
+"NACA2"	3.62294612896319	3.5614935725353	3.89122138481533	4.05281898383715	3.79064538436745	4.11377724781016	3.99206760151294	3.69481367875989	3.70993707045957	3.66433353848359	3.89634518624675	3.68663359365822	4.0613410744395	4.18826651527695	4.1794500575076	3.63279670207716	3.838072342778	3.81127450664364	3.89426292734709	3.71668160642164	3.74012267954424
+"NACA4P"	10.6770118539595	10.8437233633453	10.9049556413095	10.9451462594163	10.6638598501534	10.7478185081545	10.8867130575805	10.8437233633453	10.9980843420033	10.5981468349064	10.9874313142601	10.7551536852136	10.8641263286434	10.9638350733603	11.0729663013642	10.6038376423876	10.7686576429459	10.8075651154258	10.9876133862156	10.7875995361958	10.8367314961298
+"NACAD"	9.31128238444606	9.56939877234855	9.46999209410913	9.02737783428111	9.30775894338584	10.1071425977126	8.91582663399948	8.96253897606466	8.25012203801901	9.26825366079185	10.0586443159886	9.19453603057745	8.75505867437394	9.13895449661434	8.86938262629394	10.615666442669	9.08203856543305	10.5337716752128	8.94256185440783	9.31278305518681	9.11503683233017
+"NACC1"	7.30944936888913	7.15646584275211	7.41459309860156	7.45577067785649	7.08146230954987	8.11131591612819	8.24748740801624	7.3651261113759	7.46490478471128	7.62677780294651	7.27788582435229	7.47117543416234	7.57118740128574	7.98547019073604	7.43483617583873	7.1360776175861	7.39318753911416	7.10951490676516	7.65965415436969	7.52657421251934	7.57750888990334
+"NACC2"	8.73673599659585	7.07738973369125	6.30692180277013	7.41677791655783	6.64527426315675	7.0110306842391	8.22328714532893	7.83481382307853	7.27701824539186	7.28137023638655	7.03783648685628	7.12457625334221	6.94195279613246	7.45475246386569	7.06467865484822	6.78928304128685	7.34696363820201	6.9078259677158	7.43233186534606	6.65051149759035	7.05224635229932
+"NADK"	9.07697375953647	8.42842668764994	8.75809936010988	8.52740331584661	8.46704816789339	8.84214051980221	8.72404740612914	8.57356419377074	8.66182026861665	8.45259973582008	8.46322775475886	8.17389921175964	8.77173113637112	8.94211152494554	8.73903148284235	8.3308089352547	8.33733377363436	8.75298322117819	8.36923375912735	8.55592811909799	8.44803132059448
+"NADK2"	8.82166498001341	8.70507749008363	7.67349760164784	8.19989303349383	8.03591251590661	6.52440452384347	8.17801396204117	8.71502763017862	8.31242608878009	8.55372601892227	9.31286551742589	8.54899191971174	7.79127932968517	7.6008022978831	7.85854285489163	8.35713906408601	8.30815013557652	8.52122145556539	8.70435368341856	8.17360116578746	7.83563793051857
+"NADK2-AS1"	3.72758903764128	3.79340624972589	3.87844418352188	3.73047508359611	3.64764222886948	4.24668321202919	3.93434929031896	3.76653582161368	3.82817508329778	3.78531397511595	3.7019588133453	3.70133679681194	3.86912126087183	4.07792606942969	3.71388318454777	3.62589837570552	3.79340624972589	3.40893160770052	3.77840740537392	3.72758903764128	3.79340624972589
+"NADSYN1"	8.13340320920375	7.36246297252871	7.71537560504263	7.16516765338539	7.35509030512634	8.03764590032459	7.37183357386744	7.44466748066385	6.77893973162015	7.05320939543576	7.38471486984504	7.14209684851778	6.74286529513792	7.50713243947735	6.88254599277454	8.05393153536339	7.19645737591708	8.46031230882022	7.37426053005087	7.27737342891809	7.67316249140171
+"NAE1"	9.43964312793826	9.39487175634475	9.3233221232657	9.2027917112428	9.34779307554544	8.60152823124001	8.65314786710927	9.08371324530929	9.26166159636865	9.43681646089334	9.50933071441957	9.29343096973936	8.63225861572086	8.85538222759791	9.12766342967572	9.28055380717927	9.28395771915671	9.44805054302319	9.32997196804603	9.0605083188325	9.38669687109731
+"NAF1"	4.61476840307311	5.00052611118336	4.8836240621334	4.85397928326999	5.28688728186158	4.45503733336714	4.43997767611285	4.68601877763456	4.53355232456508	4.58927322474506	5.10769700779225	4.60461769914249	4.84431414565121	4.86624662206839	4.6642365794394	4.61311396258768	4.73251854322497	5.26590355278674	4.60073306131653	4.89448646124549	4.73780036800828
+"NAGA"	8.83172059114066	7.70345173180377	7.43587002483136	7.25078262290228	7.60842303341004	7.44364051035686	7.65109559154241	7.54399971811434	7.19733087506968	7.69249660550604	7.58323388610917	7.26182821275623	7.31161986102998	7.33083442661976	7.10728493741489	7.50755921056018	7.42136376341925	7.58255601858853	7.50755921056018	8.12993476566744	7.79626497843695
+"NAGK"	9.75035833721683	9.49013370281218	9.51753204352139	9.25262480664344	9.48183618924347	9.24086245314937	9.06996089312054	9.37525963085927	9.17765250169761	9.41968380826948	9.91760334894669	9.24345099274669	8.9914540154331	9.03715247032251	9.35583294992929	9.87266493415182	9.21923348547409	9.8417414236058	9.45364068159684	9.6641789858287	9.56174121363727
+"NAGLU"	6.78206430457926	6.66237402427022	6.68858566078218	6.35931049849005	6.57197985729258	7.08488295035264	6.73104212498143	6.25351351114581	6.17549547243919	7.01891992199685	7.2570934268325	6.53976818452113	6.51450551625718	6.86926536569357	6.67269281109488	7.18112432820938	6.66237402427022	7.50926845561087	6.34026113867569	6.61760108656451	6.33374253131825
+"NAGPA"	8.45945668690619	8.92881730916122	9.20340986973636	8.52720070267871	9.0014924338636	8.72780519233753	8.3017920189234	8.79883640283868	8.99722732400245	9.13990573967184	8.3682213333687	8.81014403859064	8.84093092716895	8.82864473017799	8.74259387693501	7.9813484227158	8.77216768151948	8.65405860282598	8.55661734126079	9.25655330354181	8.82809785320268
+"NAGS"	6.84141092932372	5.20198287065836	5.54434744429921	5.38324124854953	5.50076182085259	7.43707305115136	5.98050124303818	5.76464047792829	5.51798667729751	5.68231642168311	5.30258383808075	5.65836608464666	6.57432106264572	6.31128234157718	5.58001325204542	5.42073261133263	5.79362137595844	5.2959536581184	5.68784812830663	6.20087270234157	5.88372981986355
+"NAIF1"	6.47155209030143	6.2623668313868	6.37252932302218	6.38167880070544	6.39051037962968	6.32806427966622	6.48773145395823	6.21386003474888	6.45711497468715	6.28995019917846	6.32569878128786	6.27910528478164	6.26690882677525	6.39611252169564	6.21736999268372	6.49708686510266	6.08366376864348	6.53129349625138	6.30009836419827	6.37572359615363	6.23465276152741
+"NAIP"	5.46420665008462	4.56718759048619	3.78995994878023	4.61004982226382	4.12391718589229	3.71997688270628	4.72083029964895	4.43997767611285	4.26937449510773	4.36853945785158	4.630281115569	4.42042049489213	4.63454928500943	3.97029529410661	4.75744505197977	4.93876878282176	4.61351354404504	4.9967056596222	4.57394681026477	3.90552237963912	4.30099496126029
+"NALCN"	8.93471331252876	9.39642761116163	10.0059672350735	9.23702674467747	9.66504047356869	9.23833148109906	8.45492875390195	9.16284026806637	9.3950693849515	9.26112809699767	9.42365116622735	9.5325612047773	9.03408531631807	8.75396911894097	9.18980249611261	9.82056864753233	9.5201161769962	9.93580584205897	9.38749488710545	9.70099723812219	9.27543606226305
+"NALCN-AS1"	4.90894179293705	4.97057765466493	5.2663114764609	5.31596417879642	5.17811166403938	5.32167044810199	5.41003997426528	4.97461943483669	5.16261027198654	5.09122390903668	4.89302046294542	5.20754803059039	5.24356941055708	5.57466259009983	5.13903525684942	5.13449612325385	5.08957578415895	4.73562105175187	5.08133114777671	5.02776451399033	5.13449612325385
+"NALF1"	7.01639606026613	7.9881089297078	8.27204509557517	7.93951835109853	8.24183333426375	7.48602761966022	7.03020493296533	7.99277893091523	8.29307882343848	8.07226111314401	7.42166220949079	8.04051894851274	7.85881603036969	7.58698369378853	8.23203668436287	6.84735774073151	8.17424290786581	7.47448840960077	7.90721357558249	7.7272751411162	7.90721357558249
+"NALF1-IT1"	3.31958343031243	3.25817578015455	3.25806665805325	3.26502209026643	3.47062953580404	3.56475233207861	3.28593631958773	3.34383392133135	3.09109773471898	3.11564521271753	3.17775748853705	3.31595732477774	3.2224794752364	3.2896790460535	3.30937724672622	3.29876296176528	3.18175450427025	3.37702545913475	3.33904529572797	3.45093135936719	3.30937724672622
+"NALF2"	7.17635252041465	7.32327484528972	7.60538105658318	7.63668290511018	7.45468932305181	7.8546658085442	7.74182920200705	7.35948092533288	7.62735875908073	7.42815556284215	7.26518419412744	7.43135519301261	7.74327136804587	7.69254044204166	7.79768811211011	7.10596391827376	7.65195184070729	7.27534010314678	7.5394806694611	7.69896631846076	7.42276948649362
+"NALT1"	5.23072588404866	5.39096571044835	5.17956352455735	5.70750606593993	5.25557267504851	5.1824579968143	5.72818651145339	5.22930966950771	5.34447984175735	5.23859703187306	5.41645343151585	5.4163164796017	5.44627823140082	5.43300576023898	5.39663316383536	5.58737479890597	5.41787610766201	5.130407254659	5.39096571044835	5.26192970037289	5.42551825736712
+"NAMPT"	9.07822704570832	7.44771872443374	7.66571252437305	6.86609895661849	7.71603750002398	9.11287264167485	6.83617974100138	9.41041384069363	7.00583793652475	7.89224655311612	7.46843143587616	8.46617253076959	7.11464426213369	7.63762252024124	7.34457020186764	7.56628185126118	8.37425773453101	7.42704863101247	8.20703856982898	8.89084872984681	7.32755795021731
+"NANOG"	6.80414613109636	6.82798593872995	6.7400919273487	7.05275287199805	6.60354051252405	7.19286442587668	6.76114527240705	6.68739319157137	7.03853409843598	6.97037262197985	6.76573901066657	7.12175442644703	7.10137829253381	7.12902080723517	6.89320815983707	6.87413872666384	6.80288750368122	6.68774010764408	6.96312793957681	6.61238480560597	6.85701976016404
+"NANOS1"	7.41867624917056	6.15455307248207	6.32796032640739	6.32487383077541	6.35315868452355	5.55684492224876	6.97719333852996	7.02125061013852	6.63101386502493	6.47893657594141	7.25845427106614	5.61334896802616	6.48330936806092	6.40702262717069	6.934094514467	5.77724263845717	5.7662511083396	5.86816233065248	6.58925727424338	6.29597757260141	5.66992776632334
+"NANOS2"	4.61791704379045	4.75899035365623	4.68327630062856	4.73134655089998	4.57929891293247	5.16901290084731	5.30172906772809	4.66620191089837	4.5126046793919	4.76968755238661	4.57007282414108	4.82190319282189	4.86681418218211	4.89694725459051	5.19410332624943	4.75927614561108	4.62060763266061	4.34090487400433	4.9469065448019	4.89071868737691	4.69576672654789
+"NANP"	6.92925772497752	6.95913978252207	6.7953321052185	6.68031835398134	6.97462132687096	6.65792074871037	6.53839661717478	6.78455909971804	6.74787450395226	6.78155671187923	6.77465621191043	6.72396513419176	6.60279955660998	6.52647499077489	6.76343605281891	6.82390002428263	6.49638077210342	6.98890295003693	6.64802237254004	7.13826670039681	6.78455909971804
+"NANS"	7.12860987948377	7.10952965455452	7.41852102857631	6.98848699367706	7.32791770845405	7.30600891858235	6.74080015730917	7.08387492714566	7.03676611107485	7.62474844548201	7.02483556129441	7.43136251275459	7.20113366842797	6.6650138802542	7.19789151215939	6.85715775882832	7.00748219214546	7.08703264753283	7.01988470450128	7.70380514468329	7.54604516529717
+"NAP1L1"	7.41866039466655	8.29927419541281	8.90216890496552	8.30169492238428	8.90252703515845	8.01525001602733	7.23527957205682	7.94681637846153	8.18900838619529	8.88899977107989	8.38808734382815	8.59276765062978	8.41774016928417	7.60065705419692	8.78827980908624	8.31447007788125	8.80198344218045	8.70955965981916	8.48750243736157	8.50593764776189	8.70094243902882
+"NAP1L2"	8.71578781621868	10.4675145659959	10.6770242765237	10.6112166024046	10.9455409106054	9.41736314138107	8.60349519053328	9.98875038281797	10.6787078866338	10.9178965452013	9.73546160012439	10.8304032360235	10.8289707641236	9.65414028172447	10.5814639165153	10.0135516133148	11.0405422538551	10.3313247413231	10.6311226616129	10.6868030750649	10.9436390305548
+"NAP1L3"	9.84803802932707	11.4646191796895	11.4022312274022	11.4139065230896	11.3738937905824	10.5121095390297	9.5416243594364	11.0568925087293	11.4167708771042	11.4639065293356	10.7667078690679	11.4886501228272	11.2784021302118	10.689336965135	11.300601199481	10.9883988000051	11.4276116767149	11.033067044688	11.3199378538625	11.2538400393654	11.4775893980513
+"NAP1L4"	6.65311566207279	6.25353002647482	6.29079601809376	6.5542652577888	5.95314017640504	6.55755017317996	6.33826500249025	6.7302195643235	6.2801276904793	6.01843948756499	6.52994458298828	6.33826500249025	6.32331456229653	6.36695546564618	6.33826500249025	6.43390415103784	6.38701841086874	6.62746733919521	6.49993170756621	6.17495518047358	6.14806213221546
+"NAP1L5"	8.91079407701928	10.6637717199953	11.0809554578308	10.3049743817125	11.3882897117221	8.7254981032533	8.18924753824142	9.85767082377445	10.3277466180295	11.2754716544087	9.97955471650748	11.0943710324971	10.2084160234856	9.16162589449567	9.97256184080892	10.7619257189427	10.8526477921442	10.4150491223489	10.320807448089	11.2420446395913	11.2434554289866
+"NAPA-AS1"	6.04658843912344	5.96356490351341	6.02725823266193	5.8636186956362	5.69265309606718	6.28989979133039	6.44979308157184	5.93188262872166	6.19541358154511	5.99856110586661	5.86519930483471	5.88424457942068	6.18938772791457	6.27534377208724	5.94819554802641	6.12522183379488	5.88560106711113	5.72932910424691	6.22528175453793	5.91778987434819	5.9280023160346
+"NAPB"	10.3431533630007	11.9955821883421	12.5896191417496	11.9050403465488	12.6020029139342	11.7590798165713	10.7809470424322	11.7881576066475	12.1933148837535	12.3402773539887	11.2749917566566	12.2880081462216	11.917153227877	11.3801219322345	12.0931023885092	11.706627278914	12.3084338020783	11.9160824945501	12.0705701858093	12.4463103940377	12.3185109132455
+"NAPG"	7.69973722708624	8.21406819065676	8.39011108420151	8.4803460611226	8.98685679696045	8.18342736106497	7.57307419839564	7.98960119660564	8.69682324032896	9.04895766473456	8.38187836572354	8.61473235441744	8.69666997583264	7.61755592392126	8.92395925170958	8.36766744047691	8.80887439119337	8.79420363105865	8.34833369718037	8.69197228863329	8.85448803605859
+"NAPSA"	7.22697772211986	7.29468215300785	7.08830025551661	7.45477046824382	7.08145641081463	7.50214696410161	7.53103507938632	7.31887652718958	7.34626975657929	7.17321036733628	7.21115723359455	7.26972807207326	7.37832003269082	7.6793785645881	7.31321253276036	7.10252786142452	7.19645737591708	7.13041616411532	7.58484711473855	7.31321253276036	7.1588725597501
+"NARF"	6.53933786352423	6.41720366729153	6.76208327399663	6.95868399249175	6.43533166906818	6.59907865958788	6.64179212222529	6.22019858819515	6.94871677620149	6.45330395577988	6.36054526763763	6.49225981807135	7.1070940845787	6.80369136056217	7.49604396517385	6.9664043423685	6.79832707170066	6.85127361846962	6.7684206854237	6.66740752077171	6.91229410763103
+"NARS1"	10.6464219803011	11.1061597220416	11.2144652167615	11.0147484817987	11.2768952702351	10.9354587202044	10.5129891541733	10.9844726087888	11.1478713651918	11.2417549481358	10.9140776958373	11.1627994755042	11.1202727034585	10.8413445083791	11.1915157627461	11.0071750558481	11.166243926709	11.1096111096049	10.9538034837795	11.203383244661	11.2823136814164
+"NARS2"	7.51248505482078	7.37079807198297	7.64640435075046	7.48628215205757	8.01767747131128	7.33285804207701	7.33514387040163	7.58093647962483	7.8075831571437	7.95280488278268	7.56976927317292	7.65251582020611	7.34371594189027	7.12956175559611	7.85569431039617	7.59314185715649	7.38493334132832	7.99465742001226	7.72552743259189	7.79589111826376	7.78633080546359
+"NASP"	7.99910303586576	8.07060613519934	8.28071911242627	8.65156013714121	7.74503510079938	8.03294314204328	7.18297905780928	8.11936685027593	7.59575042775492	7.7204389055124	9.17345915520673	8.03237573902276	8.07549331553464	8.09129211960866	7.74951228253206	8.40389276733313	7.79772924100905	9.11848989621724	8.3711293071542	7.61930790959702	8.01524904347008
+"NAT1"	4.77319226085933	4.28822133188769	4.12203690630932	4.23435622881117	4.28634785434606	4.27147076130958	4.18793185965374	4.26439611541665	4.15302651869124	4.24076394957192	4.18590587485479	3.97887879566977	4.70455299651775	4.28822133188769	4.60432838805109	4.62774249560052	4.08015518996011	4.51110797344769	4.12931090899012	4.59160609547277	4.537699768961
+"NAT10"	8.5480587914484	8.38132926403797	8.42725573655361	7.93524521022512	8.34285947303455	7.91003403736808	8.13568766331713	8.26414474176235	8.06903058739831	8.35086099941393	8.41642302909794	8.51906499955172	7.84297360725231	8.10538406789185	7.98230520370006	8.30596973283837	8.32675539682017	8.47722464714588	7.98306796561412	8.498398675355	8.44391307793044
+"NAT14"	8.30486585715511	8.40901272356536	9.010338236302	8.41422537329577	8.55381220041462	8.7337212423286	8.58176915046553	8.33389035860755	8.2580870758362	8.50038752794067	8.18713393564038	8.55406408820772	8.33750998382384	8.4041129334554	8.48672913468179	8.07615380621015	8.33881233675194	8.09859007043417	8.41365380593965	8.99727155187719	8.36332812814361
+"NAT16"	6.8284194788714	7.19548874473003	6.95607343073295	7.15945256512089	6.77491728819284	6.82607985389725	7.3461186579122	7.09971842758797	7.23573090892828	7.12048645623999	7.1007731380791	7.20346614286036	7.46396478160013	7.44614925460347	7.31034377569606	6.92218217631886	7.20242452425224	6.83702682909597	7.14051496447579	6.6126219472541	7.18079016207826
+"NAT2"	5.37301962006202	5.25641828376812	5.03784599663953	5.01977795176338	5.08762015866213	5.28531281214063	5.38175306516733	5.09480733578155	4.91912212229306	5.02152045194567	4.83875076655525	4.8871214449727	5.17998136830474	5.366449710554	4.83851391392687	5.06107293564119	4.89098758483807	4.74200169841169	4.88822209291674	4.91664368511646	5.04608809261229
+"NAT8L"	8.85252054766426	8.83300331613813	9.19266015812511	9.17862080240545	9.26713590925558	9.30639795863287	9.01413244602606	8.87938318151925	9.24440980637895	9.33398761795756	8.58987908915178	9.14262901156573	9.46654745368772	9.10830935406659	9.21670829261145	8.34794658336421	9.20368922279704	8.86477471685249	9.12196676232864	9.31398402452384	9.55944980361719
+"NAT9"	7.94693365362212	7.97166318616415	8.28168245359379	7.9906102924215	7.76587388050929	8.04564455056425	8.07741676565711	7.92411623830507	7.87448895128284	7.57231876070068	7.93277248817244	7.74440942272884	7.95751705423342	8.28428392450903	7.98762105176213	7.93560199465406	7.75025376894509	8.03020899260463	7.90355534845815	7.93277248817244	7.85323948253878
+"NATD1"	7.4109616003255	6.6521230154931	6.71236548598638	6.68332414697088	6.64852815951958	6.81547007661451	7.2293301301076	6.89698110785932	6.80555437861752	6.258452765119	6.16942631374549	6.03941758520597	6.45538219159561	7.04761147783894	6.75563585116523	6.39615605014964	6.26026431743763	6.60256233272464	6.42098970580596	6.36181671086366	6.37165303107641
+"NAV1"	8.71306546810382	8.50157878176453	8.94783077714348	8.6741301939527	8.66349515395461	9.7011932736886	8.9507806932456	8.67143845827421	8.29706540661882	7.81742308811314	8.93302379510017	8.21663572960213	9.03867049024931	9.29102029158	8.44039619612066	8.49502585356091	8.19081093615061	8.89469196862941	8.54210197494311	8.28685154028794	8.08230336658296
+"NAV2"	9.08444503600366	9.17490697815574	9.20314257259914	8.52117029560396	8.88972949859235	8.84266887825726	8.53628482187519	8.98436806152482	8.69564021294236	8.38516978279212	9.49400192553041	9.09331925590863	9.48695957933668	8.75343083052631	9.1202182559163	9.08399231807531	8.88465878819605	9.03641549750743	8.46132981455329	8.52843149492429	8.96050516197577
+"NAV2-AS2"	4.02659187094956	4.10729674244471	4.28460367806829	4.43474174087411	4.3885570810479	4.13584257643037	4.04805740426137	4.20479628536753	4.40298158329236	4.24983576687636	4.25964472169835	4.54408613856271	4.47956390013576	4.25964472169835	4.38855533564701	4.43643053832033	4.3924869338909	3.98736820048482	4.35653834735268	4.54928878357315	4.21749257809528
+"NAV2-AS4"	6.24624496249475	6.55682527670209	6.34193691131523	6.59230899574271	6.68676549394799	6.35349562937768	6.4031680970291	6.46964488619953	6.46964488619953	6.36789887647922	6.20982234629679	6.50242032739173	6.5258963533309	6.69129481805324	6.67326525610502	6.47823949256589	6.83504002680252	5.91130405802436	6.33533529318011	6.3184317747434	6.51314410226873
+"NAV2-AS5"	4.04460820684595	4.21313114737637	4.27985592165063	4.38162872595715	4.16089863856463	4.05006159519836	4.40882786763348	4.43997767611285	4.45476251762063	4.05753483628048	4.00763919761422	3.96040274951561	4.21910938978902	4.36845885905637	4.15207342951438	4.28095422971909	4.1661997976895	4.04990337179892	4.29938893389525	3.84286533291247	4.20460784626556
+"NAV2-AS6"	5.01727785958158	5.3608807809159	6.60531594007264	5.28285961492474	6.30688080652435	5.35880762562386	4.92486992847198	5.33629071555706	5.13789173299159	5.4900051119149	4.89714004821819	5.9743436879444	5.09543859998749	5.19783818305414	5.12746650795198	5.12385354304492	5.20981235130957	5.57053518254388	5.11997086436284	5.80971112174197	5.73032228151481
+"NAV2-IT1"	4.31533717636342	4.27971847615766	4.53066174167404	4.27971847615766	4.21971147402758	4.29295874084346	4.38744748346599	4.3841173879709	4.21365366468115	4.29963752175399	4.27971847615766	4.44557767488714	4.57705752792314	4.27971847615766	4.18043800977378	4.28011322903781	4.38868458282386	3.97749451343779	4.18687140943624	4.35373901965128	4.15539950139675
+"NAV3"	7.70185523839061	8.51362758945023	8.03089963467366	7.54788264034307	8.39468298168883	6.60263699527343	6.76736944397856	7.84880577200843	7.67316283445278	7.92423688849938	8.56208502882164	8.22596176229785	6.81972864257966	6.58314277115492	7.15245529469519	8.19913943678324	8.25336992729481	8.3919099740692	7.86822752974614	8.22701398601644	8.07044059536208
+"NAXD"	10.3419184235874	10.110251611443	10.3410032564552	9.82024845315397	10.2002394886382	9.75195638690415	9.61686711205664	10.162878525907	10.0472828976244	10.1976072044723	10.1465461561344	10.0868253630862	9.69963379166516	9.73571208877487	9.8710600313616	10.1033270569593	10.3220016686022	10.2847536223045	10.2278199781633	10.3533773965732	9.94085353976886
+"NAXE"	9.67431763743852	9.36329723809276	9.68883389776615	9.21293343139175	9.68431676176217	9.49191089409712	9.02906482786514	9.15915960253832	9.10178678064781	9.75535748717443	9.47643514716266	9.44916400856458	9.12217767440398	9.19576805644244	9.45186149745538	9.43696325324244	9.17643363892602	9.69569464893246	9.21231060704041	9.53050610426196	9.40359213682656
+"NBAS"	3.81032853451493	4.27694803284616	4.10133963150762	3.74687712406331	4.1018197862044	4.16002539903866	3.99036016663383	3.90439079715223	3.82944268469043	3.68677898483993	4.18823299836317	4.54208394860769	4.12791185937956	4.21733413632239	4.10274485492738	4.12791185937956	4.29084994222052	4.71849130456079	4.26452528142141	3.97171133275246	4.2010759057064
+"NBDY"	5.21420299971543	5.18106981572682	5.74320200855767	5.60003398027251	5.36333151090469	5.4515004428328	4.76904036517469	5.43201757385802	5.26119869311235	5.33516882757607	4.84747767640872	4.87711125623798	5.63835768383258	5.26590355278674	5.91377852234996	4.80956988636619	5.26485754238612	5.33587523048651	5.21509570824423	5.17968992172256	5.12057429431316
+"NBEA"	8.02970122633078	8.80307453995286	9.466651268415	8.80380232647988	9.47668560492017	7.99013765869049	7.60747956187686	8.80774131574331	9.38288487784965	9.48176537509835	8.1996186898687	9.4409161295711	8.5763646799348	7.96627711437434	9.32067822788399	8.91075220660326	9.48809493727492	8.8925848103394	8.8877492882042	9.35076477114312	9.51436978346271
+"NBEAL1"	6.11652501295325	6.19882388629411	6.1516210836743	6.15176396757184	5.92760480491829	5.89255217988105	5.57871552537416	6.13750075823899	6.00278019153469	5.41888682044422	6.2662439828343	5.65228810410983	6.20426478729406	5.97622857795688	6.00248209743571	6.64737513990755	5.41641666086166	6.62085321605808	5.98079250294734	5.73717389393751	5.82957480915837
+"NBEAL2"	7.75562368843921	6.45718866223775	6.56120916763031	6.42147016238642	6.09604699851191	7.14417109692428	6.85098243028897	6.51394186136973	6.55555914815657	6.46770083157021	6.52119865458217	6.63490605123826	6.7450605119914	6.84949958819285	6.48483296558283	6.17745393221969	6.69702738792645	6.67290964022689	6.53775825289221	6.62440072458255	6.71228836081759
+"NBN"	8.95010434486233	8.95126693074825	8.90227933672191	8.69272058059295	8.95234933962622	8.15046310550369	8.05323377090468	8.30631688250985	8.75092681581864	9.01709059349911	9.10670132465793	8.74749863465542	8.3832746459783	8.62268435407351	8.58109020279251	8.81478925980893	8.81567902583745	9.20348520116048	8.72076780744685	8.89114624124669	8.67426610352371
+"NBPF1"	5.99525405206366	6.34140877267627	6.18644225707052	6.90534713689497	6.60942713740314	7.21414721982182	7.22976005068256	6.79609824887965	6.47642277499308	6.35329002917797	7.15271608381276	6.11466257638286	6.25115095505063	6.9432981043332	6.98929498185345	7.96068828433637	5.29462608142908	7.22850424598577	6.57385584593714	6.30341860234109	6.75314541407718
+"NBPF3"	5.98241749095108	6.0088375330385	5.67183571583055	6.13674006006965	5.75850796086142	5.94556770028259	6.27055895997491	5.86761293442724	6.26178196434216	5.90541034880857	6.0268456023735	6.03941758520597	6.51596516819818	6.18350655218475	5.91423351962887	5.9479285081321	6.09203317121366	5.8046063198732	5.97325139048016	5.88336607760358	5.98395302563172
+"NBPF4"	4.47741730179328	4.54139580033688	4.41037162686615	4.67712762759283	4.4710938447793	4.47741730179328	4.58626399291244	4.37300040874145	4.56660094082313	4.57347239369048	4.29938893389525	4.43568312355834	4.49497619638741	4.48302220213536	4.38785633911972	4.49658881081026	4.47741730179328	4.22973698573012	4.47741730179328	4.38115522367599	4.34712260959715
+"NBPF9"	5.63282737911643	5.51372645595439	4.48843924853157	5.18531720263384	4.96314660520791	4.79999677439816	4.55128506681876	5.06520073143196	4.99421997532882	5.29128143727737	5.2039718155691	5.12012651991916	4.5062465155485	4.77295906823537	4.88485051149871	5.43937141241325	5.46632013266093	5.06217439055041	5.17881334578248	5.49130611521873	5.2992386944742
+"NBR1"	9.42965128986636	9.04339854838363	7.96964038649141	8.79946885430739	8.66349515395461	7.94132114750434	8.82776662151566	9.0396756791696	8.56851771690896	8.79753053147033	9.27178410493124	8.830904116614	8.21782686752669	8.42846584983009	8.15895379431529	9.27736065676934	8.74575757836919	9.06779200265624	8.72502185681152	8.682204029583	8.76247322334685
+"NBR2"	8.1349465952049	7.66912456787856	7.67679942805174	7.80074834547057	6.88357378183053	7.49992756800431	7.43042719399477	7.27638676755043	7.88403095183344	6.98471921567719	7.81888141927748	6.9812318130263	7.56019811727654	7.29669877136735	7.70698602664785	8.10260477237959	7.89341088128319	8.1160139693953	7.5515256763072	7.14292932836308	7.24028181676197
+"NCALD"	7.84458687705808	9.75169539215975	10.4320240165753	9.14806837453663	10.3208130517895	8.69602952822154	8.25552884564428	9.22090427688669	9.19137837990643	9.91683817700928	8.66615951550932	10.4732310413161	8.61618062173905	8.30891503289665	9.21862143271311	9.7411701512902	9.6320659757438	9.49848649013722	9.69204223038835	10.7614644221277	9.92206956555309
+"NCAM1"	9.66283686506233	9.47117932375667	7.7857648939336	9.17862080240545	8.84773886648172	9.41640835990607	9.4718819641092	9.33527638523702	8.53820039754342	9.15112614791186	10.1156234825852	9.17089772829011	9.04333437308509	8.93075729419112	8.36625760298824	10.845605884855	9.17964160444889	10.1902600875053	9.17991741964665	8.56250081580332	8.54134165798239
+"NCAM2"	6.16878947432656	5.63282737911643	5.27074197403818	5.80146222518462	5.46560511980155	4.72842285679162	5.5131191830556	6.36374593318756	5.45727118926974	5.06789711513197	5.54622081801338	5.2795905768511	5.01512142800869	5.17531102246592	5.26900498170574	6.43213100343319	5.42667870085898	6.33280462315493	5.86551792679659	5.35131979453459	5.70462896941119
+"NCAN"	10.6829800293507	11.3714630715252	10.9684052962585	10.5749265817885	10.4664954688361	9.46924740149603	10.8818277090651	10.6565256338773	10.5455561782257	10.807166624252	10.2660638032071	10.4482114545676	10.6207625384259	10.8894184119106	10.6614675528625	10.5339170560169	10.7148536551485	10.846293628545	10.004205001471	10.5735978390418	10.5400304172324
+"NCAPD2"	7.00558546582108	6.52690670229627	6.31330224864975	6.55528595255456	6.39487517988831	6.85902396996598	6.41077999776813	6.4706144566101	6.10049711945873	6.60438048113279	6.87893861604648	6.47539816721481	6.26083767657985	6.77660091094159	6.29501613013106	7.35115198362628	6.64053989772017	7.25204742771898	6.46472622906473	6.63563398406128	6.52786563019544
+"NCAPD3"	6.97103072446433	7.06020095483902	6.95941906418178	7.03204598413191	7.02265548265673	7.24033835832611	6.90152141455317	6.91314959113895	6.91724223158428	6.87530286277009	7.09474702110899	6.72767347190539	7.13001445859369	7.07917077957369	7.07966118119643	7.23530545192194	6.99145621917319	7.43507627291899	6.86771137076955	6.85814019367689	6.9926238599106
+"NCAPG"	3.83625411900961	3.72020930160329	3.91151381941408	3.82526409666637	3.43798358268898	4.17542749133973	4.29279729948989	3.82252558447207	3.88205706265837	3.3435734640331	3.69828176450916	3.78588788108718	3.85460200473058	4.15055550572886	4.03298160914109	3.51239644532871	3.88509171534632	3.77757227089082	4.1406501684265	3.52740967785892	3.89750769692117
+"NCAPG2"	6.21473477895094	6.02157572737164	5.94330574586912	5.69403989077833	6.07016588047692	6.12150318412554	5.42195938720778	5.66625561931087	5.7741464695919	5.94330574586912	6.21473477895094	5.99549716286324	5.28730750799283	5.77002695458235	5.84324430367431	6.31530794079356	5.95529778024292	6.16379078739656	5.58687150701706	5.87158562155245	5.77722207890067
+"NCAPH"	5.5141960302072	5.57967283143796	5.45013199372173	5.69577627309588	5.63816111258165	5.75925488200353	5.28727443023228	5.26590355278674	5.33974880953077	5.47084908004749	5.38613655137679	5.5596664407277	5.48961883489014	5.28727443023228	5.33358936572871	6.11777946170146	5.5535807582628	5.5141960302072	5.28204165146915	5.46606326309741	5.65678636191872
+"NCAPH2"	7.67202530457796	7.79804248575542	8.11625197353154	8.02620671916636	7.96733533296169	8.36447414086813	8.85470485411138	7.81673973720391	8.06302868451387	8.09875278672421	8.02620671916636	8.06093925549	7.88326486931701	8.32913869818369	7.93513578114156	8.0347691553122	8.02620671916636	7.98995975961811	8.29893459800663	8.15803963980332	7.89735591712781
+"NCBP1"	7.68153115187357	7.0459039253244	6.40976844843904	6.88521068642829	6.72058415993405	5.8627925323411	7.13805862292035	7.18627742525696	6.65384972378846	6.60612215624534	7.16700816740259	6.47688820825653	6.17616431341981	6.09470636228604	6.68991709560082	7.32470809792118	6.86922729344355	7.00883021858318	7.18850493635226	7.22784034819041	6.84496929924392
+"NCBP2"	7.53915375867861	7.41910882970235	7.06107908066761	7.14229684308945	7.43467923313574	6.63981681369342	7.60047125883011	7.31373422255066	7.37660491037596	7.58114167739731	7.53941879806606	7.40090511899213	7.0641261927649	7.22043650890959	6.97617338038727	7.03355943342585	7.08748197386473	7.178567387723	7.38371685871432	7.48989570894615	7.43611558333456
+"NCBP3"	7.36655733970835	7.22120358319621	7.00548818186342	6.73886577459251	6.74283291742948	7.43201232813718	7.14277296463632	6.89355768390334	6.44588568499128	6.07671089371112	7.75014139460207	6.41248744687349	6.91647437311498	7.11228763186752	7.01558840398785	7.83987424507449	6.84502180216427	8.18891339810044	7.07824602857934	6.45913289807588	6.6554154740421
+"NCDN"	7.72611273176818	8.25572214329431	8.37849082854508	8.51475925044966	9.28453533346211	8.10952546203491	7.63026380270272	8.42015223414123	9.1317502264351	9.87037414701768	8.25828470835754	9.83224337032555	8.57639661557375	7.78950625347102	8.35452028200118	8.48387093777646	9.41800843121903	8.49702082357888	8.61245228067452	9.78360816753832	10.0006453727418
+"NCEH1"	6.71498365542297	7.86503822580085	8.46851800779685	8.43619550009133	8.92080327953404	7.47460293498136	6.87381913882291	8.01258329639887	8.69773544301845	8.58970393930364	7.38092422976008	8.46291810958142	8.7777771363676	7.32077986774993	8.87202886148548	7.0392894155968	8.76678711080367	8.19257713333672	8.37659754455619	7.88706525124144	8.74189967557792
+"NCF2"	6.52813120898041	5.7400764286835	4.56042883007288	4.84690656356634	5.23897278654052	5.30584192778641	5.53027105884084	5.65920322354534	5.15021591769607	5.96228722742972	5.45580754837862	5.22357945108762	5.4819592368789	5.6879978987596	5.03692733029979	5.31500464898221	5.34552230595248	5.51553771968277	5.48954621860371	6.39059276764682	5.64632364189915
+"NCK1"	5.17154284254633	4.82689616529114	4.55447385770941	4.36927850904274	4.50110735176522	4.35625727433192	4.97996265113183	4.59455728562329	4.63040537669167	4.66628951438477	4.29301060380745	4.31819112186724	4.35206924093417	4.56252313535325	4.8639326805791	4.47180756842415	4.35716490364294	4.93514762543147	4.4270825055143	5.02724438788711	4.56996766235483
+"NCK1-DT"	6.25968294086916	6.08140985975408	5.53672937415126	5.71843135830668	5.64929819750042	5.57084571307307	5.72907886691063	5.50945622707871	5.95673482090774	5.85656852501775	5.87560589939496	5.32576070368368	6.15529934489561	5.9809997144514	5.49442196762244	6.13922436859426	5.62395833673384	6.17263857266653	5.23932002482283	5.44783874854952	5.36707862546658
+"NCK2"	9.49929109344328	9.27252165493702	9.34826442210752	9.65227675007701	9.55540634960151	9.38389171440093	9.73709827651363	9.48496558392152	9.85427329177446	9.72115145275583	8.86270117536595	9.32206722639086	9.950252353414	9.68058164157507	9.80993543400017	8.77590471436136	9.48618357728287	9.19118865167574	9.54322507966873	9.75857682403185	9.67265933536318
+"NCKAP1"	9.56914388806299	9.71147988914397	9.99764723509553	10.3754765547406	10.1422429497324	9.46752097746782	9.65547189611816	9.78183806908701	10.347242126671	10.1523509121992	9.73501750336895	9.96476225038224	10.1904815891789	9.61306077457747	10.3444083832505	9.79210347260639	10.2387121849233	9.99211145778822	10.2288323160827	9.48026614558904	10.2352209920013
+"NCKAP1L"	6.57944039626195	5.6545712205523	4.84653745131342	4.94463080375082	5.51698186140246	5.12591139970687	5.75591665257109	5.81112400417761	5.39202491342664	5.46129203291351	5.47307638120735	5.00729314653307	5.13947793607143	5.50816853495466	5.52744276229766	5.78681242334157	5.23820244797713	5.59959744094505	5.40954972119843	6.14274663959274	5.86771791232337
+"NCKAP5-AS1"	4.83462527176682	4.97187049812732	4.5068261395954	4.96779632523501	4.59365968517215	4.61759874588811	4.94133211376277	4.60423300584761	4.78975591025607	4.85250326654207	4.83462527176682	4.87385935214599	5.10098002192527	4.88777994906477	4.90849770912482	5.18804794266032	5.29297599197696	4.48734343954937	4.74278841452831	4.56958022936175	5.12518737852102
+"NCKAP5L"	4.99189706658802	4.75883523731536	4.66309177277099	5.25933259883504	4.77604121459932	4.64940849860529	5.01090038249838	5.25653043736293	5.15420778489285	4.95771342590708	5.40383066355429	4.94293251531735	5.1592387014154	5.15570879248542	4.90927420334004	5.14183661503692	4.82608942345815	4.60896364116844	4.97823325882147	4.72676403216008	4.88948335339568
+"NCKIPSD"	8.81089048587272	8.81171543806781	9.3086779862153	8.75907471836315	9.38033440950752	9.14027782859992	8.78844329504623	9.05193917356605	9.27473398325181	9.40466498080862	8.51375767991473	9.17889896773748	9.06917845227323	9.13193391753882	9.12724738654306	8.93628219625605	9.29988349212649	9.20053383490972	8.85828957190694	9.4668369767755	9.31119356480088
+"NCL"	4.38065833113247	4.74799530095952	4.4702664278012	4.75290648855569	4.74922836418045	4.38594015591578	5.12011253688723	4.69663078877543	4.73702646356264	4.69663078877543	4.63153012503805	4.68342090694214	4.87012602248867	4.98785172169797	4.75703742983545	4.77233348848048	4.59675920521419	4.54914578292652	4.66710434053454	4.69663078877543	4.65920136652109
+"NCLN"	7.00807955017777	6.64233927106035	7.03124210630508	6.58349288550014	6.83927263822948	6.68482835695874	6.97345346871267	6.33222623867521	6.59947953170952	6.80313380468457	6.63564067418642	6.75246052360767	6.65557567367966	6.62800718551204	6.22999684764309	6.850396167064	6.6755233104474	6.86439602780568	6.42476980751571	6.89546907740355	6.78026995812382
+"NCOA1"	9.14776095892597	8.66664748182891	8.31678030320293	8.87838173364175	9.04297186551995	8.07161119779143	8.66615285107292	8.99236039004717	8.99982536140606	9.15760299606153	9.06625207396889	9.01265811492902	8.96057134410685	8.50867263633713	8.61044212890202	8.73281498414842	8.91315160689866	8.68392659948692	8.87838173364175	8.94073234897991	9.02967578347813
+"NCOA2"	5.75737447940321	5.43621016324223	4.00802443063573	4.63902719336933	5.58865333621736	3.96124553439951	4.52068711352917	5.35380334568962	4.69081825524194	5.03709425570129	4.92954916207754	5.03196052563999	4.18196144739932	4.01534130288759	3.87220170974506	5.65310972341283	5.2622753647044	5.79415602087158	4.7096388695463	5.25512944254965	5.59745270649817
+"NCOA3"	6.59357228396935	6.56962231654818	5.73004024559728	6.4437047382729	6.10691325337495	6.62498489853316	6.31070928146984	6.46496800941944	6.37771501438446	6.56151406751819	6.34654362668323	6.49287896558547	6.66196975657529	6.36194874893728	6.46654086522946	6.70645717451396	6.60009923518068	6.45673088349375	6.60134030420853	6.51725589122483	6.69879377300754
+"NCOA4"	11.1732548388968	11.146869500566	10.7998719341459	10.9425060430406	11.0099673194774	10.7875383597775	10.7120980965583	10.9508869954507	10.9582876966311	11.1027405725493	11.1686007211968	10.8670715886142	10.9558903402154	10.9290658769652	11.084875847426	11.3106918984054	11.0265882274448	11.2944327633275	11.0534974743489	11.0148140959945	11.0539044095836
+"NCOA5"	8.15247376922788	7.71755577152443	7.96923431020945	8.28176441984955	7.57817376428233	7.05522499484185	7.87115908387906	6.87454432148369	8.0702104565326	7.60402425003839	7.86245388417171	7.11157212449927	7.81191770271189	7.56653244262528	7.83706485069845	8.11699452990813	7.58340611548359	7.81755503411455	7.40296268250291	8.19787450842494	7.56954043887327
+"NCOA6"	9.41908045898796	9.37525963085927	9.29681332054046	9.39038685872268	9.06647722530701	9.28387421030629	8.96063176451849	9.12978939799899	9.34923503304028	9.04284864592215	9.52208329143065	9.24332922757652	9.27231079226062	9.11886030319176	9.30431828246943	9.77461228886373	9.3798897447154	9.75185027848664	9.30101946162407	9.10280413652947	9.17803774059745
+"NCOA7"	10.1173453617729	10.6885757490216	11.0060361797407	10.7746744552158	11.2582659996014	10.606224685268	9.26782874760293	10.5439711510784	10.9741973708573	11.1717632004548	10.2951092523174	10.9131518517715	10.7855364725107	10.0658146179035	11.0670281084402	10.979140947389	11.1794315499928	11.3164655920177	10.9275148988365	10.9481591146703	11.3106910239677
+"NCOR1"	7.13124155721776	7.74792866752166	7.72656541717815	7.59409760854437	7.85955749310105	8.28327520540352	7.32893874858393	8.58593210475521	7.81565119071814	6.82375656426224	8.26935612115189	8.16038347239491	7.56884037905215	7.2144684500503	7.82503328970322	6.96768596958553	8.32717180225749	7.74696325701094	7.57410947515846	7.00536421353845	6.93362750507477
+"NCOR2"	5.28721836637121	5.2873482547163	5.92215013472151	5.45351051527671	5.21026655401373	6.10975446260507	6.11367082491704	5.44741240509704	5.69198900838261	5.10583514534596	5.33658692710674	5.27071110912732	5.67584371106856	5.75934767758004	5.49890161832156	5.29826284437974	5.18888523428699	5.32071300037905	5.33087990295346	5.30964350756237	5.20099369319217
+"NCR2"	7.06122201365199	7.18239589343809	7.23527502758923	7.3373938242976	6.97034973588344	6.94582260846617	7.38583387120201	7.18318369477692	7.36036650974358	7.31442658195147	7.2210707769658	7.21445306434818	7.36914238573387	7.53772812911877	7.25519876631456	7.15218310950199	7.22529390341652	6.99754448115797	7.1232974368219	7.11554085140586	7.3431083398888
+"NCS1"	7.75374498478683	7.95194042854	8.09397814130358	8.16521153449019	9.01058750307045	7.63577575346625	7.98485071162179	8.1840215979655	8.76615474917207	8.71221448359377	7.8639832746297	8.94901947574509	8.17087839258085	7.44469094255903	8.17978264829972	7.58479245893843	8.53613491052334	7.61017762665368	8.36734651457944	8.67682832931827	8.71737445506306
+"NCSTN"	8.2780132659993	8.16892048758358	8.26332046546958	8.07968670095823	8.04906897222749	8.22770267658109	8.16109072996093	8.17692363001585	7.7832914693605	8.1159782643707	8.38887713366425	8.03614748598506	7.94600010686202	8.19614539759645	7.82597636036044	8.42569116632044	8.08460245333632	8.66594944064767	7.86573168295713	8.00432172488057	8.00693017121055
+"NDC1"	4.74247503912953	4.28187517114273	3.80921268660061	3.95612775278329	4.67034029561393	4.00676873452212	4.17212138121989	4.17393863156177	4.0015436374303	4.44014323856369	4.72893422168186	4.40570684626003	3.85801376302944	4.00613491382264	4.02902103000701	4.98320181773608	4.33129714295332	5.31584305100977	4.26648906293189	4.24763639438778	4.60027508971339
+"NDC80"	3.25338558296594	3.12717636383124	3.34036919254904	3.2371083959586	3.29681621554848	3.41222410027302	3.63706000968266	3.20618838109272	3.42388030486335	3.36632559955329	3.1969516619501	3.32364959290054	3.24773697071766	3.50476637000143	3.29078824681911	3.03650693567185	3.26298266317428	3.36098780742421	3.40774872074208	3.32364959290054	3.28777101598824
+"NDEL1"	9.12926176053291	9.53147868923395	9.93759749015976	9.57815871984834	10.0596591379223	9.59236549971202	9.08341876361189	9.53516436574971	9.88188300342661	9.88919470172003	9.20302891740806	9.73874600166512	9.7511395532861	9.20381252671042	9.69301457350619	9.2806898789102	9.84614331949209	9.76924958749539	9.48908302818745	9.93341111466614	9.89616416903968
+"NDFIP1"	8.87660540895218	9.21483156829359	8.4161292352472	8.98816101901104	9.77578753828259	7.95087893107596	8.37610025487018	9.13209072898222	8.58560481638965	10.0723522298492	9.29137888841891	9.97363925739643	8.55340517721875	7.8326273777316	8.04722821185049	9.81256915766274	9.46273193341449	9.57771011396176	9.20213880525915	10.0925655193153	10.0611228376032
+"NDFIP2"	8.52684289666617	10.218886732118	10.4384774623183	9.96865382807184	10.6996971908064	9.71282938363286	8.42152932829085	9.72461135143719	10.2338552249406	10.4134420540078	9.74709661673756	10.5210872029351	9.49400837570009	9.06015591004316	9.80257185030344	10.3919827290106	10.3165039128631	10.3143143086099	10.2217933668636	10.5527355527198	10.425080168456
+"NDN"	8.58321591533799	9.15265759853808	9.55421790294581	8.87002835829415	9.51157651230223	8.39741319382775	7.90881259391946	8.80347175859812	8.65087192909328	9.36255576801824	9.01599889237106	9.10105376750054	8.4958422214632	8.30958650287342	8.47057825644561	9.51669126615388	9.14112941228484	9.29434214297151	8.53273454638875	9.16116755256324	9.01599889237106
+"NDNF"	5.81525198730229	5.59709187605046	5.68386064962048	5.58587883154178	5.47101107719004	5.13166020566983	5.60523327742551	5.7817007774415	5.50076182085259	6.08996334330149	6.04252802602215	5.67442565356453	6.0881551176334	5.53398183648324	5.66101789006102	5.69100465912729	5.65123181324805	5.12301168119604	5.97170474709526	6.78043671056081	5.68386064962048
+"NDOR1"	6.3069872975551	6.073021975786	6.41514183788059	6.36518168044999	6.16308891941804	6.58515819131112	6.63445247761637	6.30875393675381	6.234913897054	6.32247455116431	6.13193937150715	6.27643016606109	6.36980131400518	6.61944236930413	6.3360046946435	6.3125456703035	6.25706746734673	6.1444593948057	6.36351397131103	6.14130437819736	6.22846376683254
+"NDP"	8.25945654807562	8.57868151676018	8.19346350047126	8.5165919298663	8.1784196764682	7.19783091781358	8.46581731308624	9.04492827446046	8.21081979654956	7.77230075294655	8.48550871236541	7.75875975538353	8.18433731660771	8.13909376686076	8.76027465028667	8.42103859846978	7.89230512079155	8.42369190136436	8.39031485740718	8.27615286985574	7.59261332854129
+"NDRG2"	13.3300700740799	13.0809440009292	12.9490299676229	12.9677010903531	12.4572914971731	12.1853730952025	13.123031017147	13.329623483584	12.7574730314729	12.4325841392924	13.0666249923747	12.5769916307107	12.7798779310627	12.7655815908767	12.5463716693583	12.9714933321509	12.5211194739835	12.7345275751809	12.8719861844122	12.5356875919513	12.3662081215567
+"NDRG3"	8.10356968585932	8.93696949751453	8.95553378815251	8.77609368589895	9.31959345573321	5.73507257186595	8.30992291004048	8.67834897853063	9.01611309456122	10.44412433149	9.13077222999263	9.88992685323509	9.00476283281833	8.25405511902687	8.57588795267864	9.62722334599467	9.67328342640301	9.49107915976979	8.93861371901123	10.0416656037334	10.2456593279055
+"NDRG4"	10.8032263679795	11.7939643194872	11.6214849790401	11.5868866961174	12.2389017176012	11.1036238581634	10.6490228832365	11.431481921637	11.6878307162674	12.2451158879555	11.3354597363342	12.1630943831036	11.7968763044664	10.9003395155717	11.4748920102128	11.3349417277192	11.9817253388819	11.3898284048134	11.3670909828414	12.4161693538712	12.3684268430967
+"NDST1"	6.67923105339378	6.63975642825587	6.06524995329203	6.31366610743094	6.53036259315506	6.73243687776935	6.33553287737891	6.59947485247624	6.21539064554541	6.67205342727548	6.96284886480331	6.62730249974351	6.29126980280092	6.46196950328684	6.1291941743892	7.07541362275792	6.39959797663069	6.49621070773106	6.17957947574882	6.71844063992327	6.53036259315506
+"NDST3"	4.70672396016432	5.86954024587355	6.82404481260478	5.6845133238411	6.86844212282906	5.45197834100968	4.9370863364937	5.84502811811933	6.46081594415767	5.80495157018023	4.89414694970396	5.48951142866162	6.00670622707959	5.71916081138479	5.81061692251126	5.1941670509093	5.75320824827578	5.26840153462782	5.72061960595847	6.52603433967779	5.52488230438754
+"NDST4"	4.31852740933545	4.41856569782487	5.06373939428893	4.34227119376949	4.39748519612299	5.08580739994987	4.34834173473912	4.61641953428837	4.47898974968679	4.49061077184666	4.26414001820698	4.31788965147377	4.67188942475067	4.63035482024925	4.68156507408878	4.42712497788007	4.18840571082807	4.21475903640453	4.59360847462831	4.62133041751285	4.72083171868537
+"NDUFA1"	10.7153428500234	10.9086782674751	10.9968677749145	10.869696244611	11.1514497349263	10.3702426767531	11.0109233748879	10.8939819913678	11.0665248076964	11.1932064211953	10.8071925674515	10.9896110753349	10.8797734343671	10.5601562024424	10.8973590690377	10.9572736634507	10.899013639888	11.0769323142327	11.0911441099973	11.233937134151	11.0028735274301
+"NDUFA10"	5.8435389016188	6.98919471931458	7.07977436645027	6.52383797815482	7.35763719140039	6.01822456429218	5.22110759682047	6.09383934442382	6.80188470390346	7.20346614286036	6.66372985891453	7.44370255492217	5.85473427900014	5.90101090994992	5.88506453506439	7.17796450822488	7.33814654554033	6.92063837119347	6.68458396877338	7.4995327781396	7.40284743450526
+"NDUFA12"	10.4005070549786	10.5299669310209	10.3966825654858	10.6567811405731	11.0359132916069	10.5720567887711	10.4615212207985	10.6236848953678	10.8879505360599	10.965895646343	10.243827340729	10.7528038723687	10.8082216486611	10.4698198533615	10.782640365732	10.5217933677503	10.7978189751044	10.6753238369166	10.7512861229172	11.008632987542	11.0068646363907
+"NDUFA2"	9.93399758211782	9.88370724435502	10.267055515951	9.69417151163677	10.3047687287617	9.70038252317164	9.75138270179801	9.65847745253923	10.0574074730043	10.2516823202979	9.9915305141315	10.0030021940749	9.6509174789928	9.56119972111367	9.85486322896905	9.94839529802897	9.79762371666069	10.0530737300549	10.0244279901009	10.3675378204299	10.0223762977221
+"NDUFA4"	11.0715143475648	11.6478240018107	11.6172744909322	11.7507586621012	11.9678363075606	10.8344263309395	11.2542766595828	11.5666685898898	11.9277714102773	12.1530720682535	11.7403548351368	12.1309553839313	11.9527031401837	11.2682622898834	11.922754708655	11.7566552173427	11.922952282711	11.7471360174077	11.8648082594059	11.9516694291721	12.2605923530568
+"NDUFA4L2"	8.66738672801301	7.43573973896761	7.3129237609631	7.13437348990503	7.41013949084452	8.43826242822928	8.03970361112266	7.3526020834707	7.46408920101982	7.90176578891646	7.36414102395573	7.39514916885277	7.71977422197174	7.98887216423391	7.31908885374186	6.97446565786374	7.38719974014467	7.07438028862601	7.36304106768531	8.43405795545022	7.53269472890015
+"NDUFA5"	8.80476538541517	9.79674486047467	10.0202278437883	10.0288671541941	10.1652736245728	8.65950174042115	9.02598145260371	9.623661019047	10.0378405258576	10.2341571811573	9.65450039470626	10.073573634493	9.97018318053699	9.01654629070321	10.1494356454453	9.6392311205151	10.0316567963538	9.66577584065763	9.86404097403261	9.62910751374599	10.1786394462232
+"NDUFA7"	6.60197674585032	6.60479901490986	6.8482711479775	6.87360489636848	6.73443732152639	6.81092188122408	6.78424849399377	6.52482053212682	6.91906600227241	6.64525172875399	6.52066819169955	6.34246987216421	6.66605312280662	6.90833120571843	6.70510917253725	6.82426076411716	6.65715516800217	6.66512549307459	6.44114967975863	6.63956181756717	6.57121047342275
+"NDUFA8"	9.3387259322525	9.61179713355722	9.96340176306329	9.72123070026292	10.2030964730177	9.23220512360763	9.56353517177769	9.71042997120521	10.1451335890626	10.1133414954197	9.24522974229439	9.74824508851495	9.7792036369823	9.29769456992951	10.0123670377177	9.60063227903497	9.70686287973508	9.93313761030946	9.76139349893871	10.1634247013806	10.0015241762121
+"NDUFA9"	9.04184486583086	9.10092865984131	9.30313489387961	8.85274900744226	9.21225068309043	8.78188592753555	8.60876145551569	9.13727182488384	9.21012003604303	9.47506806711673	9.00193871152492	9.47519561966268	8.91245365976634	8.56770684094238	9.10092865984131	9.3126847575984	9.2399293340285	9.25020009656502	8.96305135543212	9.66043133094626	9.39183058210078
+"NDUFAB1"	10.5133866940752	10.7456794632518	11.1251265986582	10.57064759694	11.3781305545043	10.1207879682451	10.0954411326127	10.6593218338039	11.0663202064917	11.4556654420918	10.5370724469917	11.1295183648607	10.4824642062787	10.2421668080147	10.8999720281052	10.9130359556081	10.8670627843205	11.011000305108	10.9443730594967	11.3745066568192	11.3538934544866
+"NDUFAF1"	8.17263640750978	8.46262557737057	8.32691195947976	8.19783236373295	8.68232735933947	7.70693026345791	7.81397306285409	8.27522269727716	8.49095438527677	8.65240074436207	8.21670589293435	8.41924537617148	7.75810530794753	7.92048187678696	8.17852210628614	8.59874400521065	8.17792124819612	8.66563886700423	8.08657836495917	8.74731577892196	8.20435815115507
+"NDUFAF3"	9.06790143180694	9.11363461366066	8.94915283998992	8.65128092046196	9.12569869714743	8.73007505786664	8.45155761360814	8.88092727901049	8.59074367496685	9.23288657594915	9.38641415919759	8.99701493894871	8.65850713132256	8.71426652729246	8.71007059622382	9.46339121197782	8.71831762251062	9.48074828946361	9.01642562372693	9.37717994828715	9.25644382479719
+"NDUFAF4"	8.26806783824228	9.33321269042847	9.31094409925723	9.36342722146588	9.48902078753094	8.57888992618527	8.43669841075716	8.8230301855061	9.57460405552268	9.85940834220261	8.51894897830217	9.36184808071718	9.51378665628832	9.01619246372695	9.89832765029193	8.89850498305247	9.32370180501361	9.0721481360627	9.68691550691089	9.47512982162269	9.43850756637995
+"NDUFAF5"	7.13181164810601	7.52066773283162	7.41071255556399	7.17094008616001	7.98688841222204	6.88756411688611	6.99795262355013	7.52037861856005	7.63709923300074	8.24416563175933	7.40215910310504	8.06126235583446	7.0038208925016	6.71952875964328	7.5756628020472	7.84013054329569	7.8006712015455	7.7473335443511	7.6891586640248	8.31909854458596	7.8622657839375
+"NDUFAF6"	6.66525577089896	6.72438683979918	6.81058002970508	6.53295634296972	7.17284581146475	5.76058629272526	6.30629318005562	6.38586673202084	6.77893973162015	7.14283757056097	6.69142430081787	6.74029424406342	6.01171312926447	6.27046629285154	6.97156597698976	6.99440041283738	6.22436321691284	7.12283104129744	6.76961474461591	7.32452043661243	7.10945484958207
+"NDUFAF7"	5.12479106497452	5.30823576214647	5.08883446091959	5.62873518141587	4.99532194402693	5.28749290973139	5.22002934792103	5.33626159050248	5.46237008786269	5.17430863185862	5.65779235684141	5.32692006831047	5.84677884613799	5.17531102246592	5.85014519052985	4.84699620682766	5.32692006831047	4.9624261813019	5.41848089966355	4.69320243975113	5.2824005003594
+"NDUFAF8"	4.74714270721496	5.0325457021186	5.28155675567386	5.10245287258411	4.84485471468409	5.79930557886715	5.8227708020176	4.7758217166263	4.87182918089277	5.14156282135246	4.81339582968419	5.15849955909588	5.23639520465938	5.63063065557516	5.05366710735116	4.90700631680525	5.09604565882112	5.00370678945039	5.30097962000209	5.26778136841805	5.06030072898105
+"NDUFB1"	10.4149893354062	10.8129111312294	10.9762069912563	10.8837233812906	11.0327607784802	10.5334855675739	10.2962393174306	10.3945818427491	11.0077567808056	11.0554318511869	10.6819963247947	10.7681880810481	10.969661308064	10.6126011440434	10.9317112557362	10.75350053927	10.7270881221823	10.9115926812103	10.8184695792372	10.8295913921599	10.9464594311996
+"NDUFB11"	9.75465524089067	9.37173811435231	9.85168478234756	9.53845964824572	9.95076944756684	9.76421329458447	9.90001954534582	9.64006362709323	9.74376729493985	9.92840898855861	9.25527409764532	9.5311833421189	9.58727059188681	9.4005875795673	9.89833681574485	9.61462455625733	9.50613658938604	9.84207289964986	9.59401874283787	9.88467577825516	9.70006668640976
+"NDUFB2"	10.9319469208153	11.0580441954227	11.1441702325978	11.0368823339963	11.2878583142957	10.7137003728104	11.2425928798206	11.1530623895669	11.2922262179857	11.4300746349447	10.8224543248219	11.0866438763295	10.9622472747901	10.8348870045767	11.3029026377199	11.10417070078	10.8708208541982	11.4266922785933	11.2428172499206	11.4657352526296	11.2647685524514
+"NDUFB2-AS1"	6.05041410041383	6.0964601905383	6.29841870893877	6.14893618509495	6.34806589599761	6.24875777794396	6.43323526466955	6.04033220104963	5.90998545159916	6.10271985819724	6.16801284369189	6.14893618509495	6.2092919234834	6.26402183267277	5.98723916645214	6.11389989438042	6.16631978922205	6.39134560766101	5.92646775376006	6.15048494168215	6.03599389870203
+"NDUFB3"	9.8719146550322	10.039379185364	9.89920363193564	9.95181251086442	10.0902434997825	9.4679337872132	9.86667834004485	9.88661848583452	10.071917423173	10.3499208723311	9.93257841242263	9.97776567748243	10.0564857860172	9.64789766497826	10.1608453499658	10.1617994328946	9.88651128993155	10.2917940317801	10.1728336976016	10.3002012883087	10.2071590451383
+"NDUFB3P5"	5.67233441449014	5.60805083172469	5.66252337848703	5.54138814644391	5.405019739449	6.18525411831997	5.92609560349112	5.5927933481302	5.9108134942298	5.84677605460528	5.76361454408378	5.70917923417616	5.42602259470346	5.69966650863249	5.65876154852149	5.5927933481302	5.63553146267341	5.78313289023699	5.90000655589231	5.69430340945538	5.7422134723002
+"NDUFB4"	5.16468448252525	5.25411724463148	5.16468448252525	4.99248902595712	5.2639891624665	5.22485723366351	5.34897004717328	5.74010691055679	4.9914545389488	4.91240177619654	5.0457217197571	5.83179679700734	5.05008045731991	5.00388726260759	5.08911315746295	5.35874226431459	5.73971809950586	5.71321316817494	5.31453897527559	4.88362768603642	4.91912212229306
+"NDUFB5"	10.1529564974558	10.3560896074184	10.4056101400395	10.1635433712555	10.6642750703596	9.25509012184921	10.0761428509542	10.4692604029302	10.5214041932526	10.5533457494996	10.2284825059327	10.3862179774361	9.9370143232096	9.75081475167662	10.3751495353042	10.7057130889005	10.3780605620235	10.3782081172852	10.4469460326097	10.6475517073266	10.461926507483
+"NDUFB6"	9.22997792754466	9.35599373600712	9.32787863747756	9.35200436516779	9.61925922051284	8.82823147334248	8.79444779871526	9.25501774514468	9.42213988685345	9.7280253132364	9.40255510996494	9.58647567460035	9.27233319145726	8.85785194699288	9.32275647898334	9.66867899472476	9.29440854691995	9.78386768775919	9.39566875660902	9.48746954761005	9.57132770848554
+"NDUFB7"	8.00191171117581	7.96764963636004	8.42588926606389	7.91900400290711	8.46639521756541	8.05640096653877	7.89629735276579	7.8159241620385	7.91416789543922	8.28203248082586	8.15280436940097	8.10081309386273	8.03270741773428	7.64801101544385	8.1541530260831	8.09167736096041	7.78064863707004	8.42956856913069	7.85760756292613	8.32770851730809	7.86048495736551
+"NDUFB8"	10.7932561681614	11.3442045688719	11.4970126960776	11.4288425214075	11.557653115591	11.3769900199091	11.4086463552755	11.174766060957	11.7011865276838	11.4496238875673	11.0636560026541	11.1960435367964	11.6298869871151	11.4086463552755	11.6496010990244	11.1930106775038	11.4147220969766	11.356375087132	11.303757062992	11.3374735079387	11.4671482971229
+"NDUFB9"	11.2410057777965	11.6132131443453	11.5081238994544	11.5389770879688	11.7736746469317	11.1355841683253	11.1825040734642	11.3008462981383	11.6202308353512	11.7612859618186	11.4426157884169	11.5065810413549	11.8548791689864	11.7147036325994	11.7223737200038	11.7154744018569	11.4888278448063	11.4873737951609	11.5154767722505	11.5495164305642	11.7525318372442
+"NDUFC1"	5.71191535158705	5.69614266998925	6.00957518177129	5.90312094470853	6.45299909111266	5.35952848062057	5.79432593583217	5.71079443229763	5.8209686776105	6.08361367529484	6.21233441844261	6.25329215891928	5.81725646613532	5.74045630771534	5.4494068164798	6.24748485994986	5.59811726797832	6.54955964106778	5.49084800338431	6.59705863466499	6.22436321691284
+"NDUFC2"	7.50813087629116	7.84223911570746	7.7248969108908	8.01552596929213	7.89784317495271	7.34576915983039	7.11874014470289	7.74997351456039	8.04480977941913	7.93709318531559	7.79853624894332	7.99340807242291	8.02638850297226	7.32401103848999	8.03124652001682	7.9222385389644	7.9520637014393	7.71697521512868	7.63798569959895	7.83672926953617	7.84925340585351
+"NDUFS2"	9.81159262498771	9.82549857607039	10.0666735724404	9.81424891837875	10.2360519458562	10.0171884009942	9.27403180545831	10.0171884009942	9.8497850322042	10.5778968217637	9.98666872236134	10.3245486972467	9.62438797122259	9.64254108252367	9.8380087392824	10.2133327718815	10.2554356322335	10.5238511146338	9.94976616787449	10.5165289357677	10.3273105823498
+"NDUFS3"	9.7204821519954	10.1641473935402	10.2686326936416	9.9252136929998	10.4483281642362	9.55688266309838	9.78237748612451	9.95200298342166	10.3258476928072	10.5893951540103	10.0082037258374	10.389356229473	9.76313846754238	9.45749115063506	9.9878045435658	10.1472777064243	10.0892675586277	10.2694349166959	10.0733081195825	10.5285995460374	10.4128357301807
+"NDUFS4"	8.47660741355927	8.79125967086548	8.51002068529458	8.3800901112932	9.16827223851672	8.02080606910148	8.30616231074568	8.80680944566903	8.62205552429278	9.27565866308597	8.79113471323199	9.28070810705768	8.28300640599489	8.18760464724795	8.58826358780957	9.17696009532651	8.72729301873949	9.0085791460065	8.78977479908756	9.00506915568153	9.09387085434611
+"NDUFS5"	11.4444131999705	11.7207016293725	12.0653702709624	11.7025432251598	12.0121203559883	11.6803302609121	11.7301485366746	11.6642153433103	11.9782208582387	11.9146437667727	11.4318220582023	11.750999606266	11.651984665289	11.3093096258808	11.878097293666	11.7508851129119	11.8145925774876	11.8991973659936	11.9627232451517	12.0068139025997	11.8536581486489
+"NDUFS6"	9.15235952433014	8.99827187003732	9.24971355202466	8.8688445643929	8.97051819198827	8.77934860147323	8.64454845979952	8.91611046731649	9.10328973439311	9.2188996243012	9.18341601456654	9.1428520378259	8.87551672504555	8.59676555994889	9.25126792080593	9.43813086620783	8.87502445058396	9.4019270882514	9.01483904086204	9.39171703823301	8.95597029529871
+"NDUFS7"	8.94586815844749	9.37647596982823	9.35353075214037	9.02040171942815	9.45673506421219	9.03823362960785	9.1764914022867	8.96425650288956	9.18815811730691	9.46963142787167	9.56784824040529	9.1885356041456	9.10642879799038	8.85066381461115	9.02191463987631	9.95680105641703	9.17363293515079	10.0742770563864	9.05891023415991	9.49553385173171	9.24015485385624
+"NDUFS8"	8.95171883832868	9.0912963945484	9.60786933047546	9.12934295524348	9.34990025697329	9.03510750290831	8.94610206473899	9.09250206484742	9.1958175908668	9.61453643533485	9.066232747842	9.16256226734135	9.36872255159862	9.13492250553351	9.3049437797698	8.99489401778861	9.05215010392281	9.29370465573405	9.19616206756028	9.57742074309264	9.23938187788932
+"NDUFV1"	9.89344449272503	10.0813330608038	10.5471069930587	9.86800696387468	10.522162876949	9.85354882304986	9.790917773457	9.99532512191053	9.96993774139591	10.5230422720776	10.2915716463115	10.3948601216729	9.75898033431274	9.69061859221223	9.59614646717886	10.3866037927801	10.080876156452	10.4876069546118	9.93925294259847	10.431304995494	10.3318916309287
+"NDUFV1-DT"	6.48659855365978	6.75333677297809	6.27214265314396	6.85321550397699	6.76390872694658	6.39230299924557	6.62790588075002	6.64882850225209	6.55937649627705	6.70730423639906	6.5377557223102	6.62790588075002	6.71087844988495	6.67413341337797	6.78584010209815	6.46476841855673	6.56853357287675	6.26957799472227	6.56197236447677	6.71281999496454	6.65455832881837
+"NDUFV2-AS1"	5.70641417241567	5.80809445075871	6.14132058833613	6.14505941677971	5.87616092280752	5.86802381858089	6.230565046007	5.65974836021237	6.09658804674673	5.92264477967746	5.92052565604993	5.64468566764545	6.33228420602052	5.95236830550127	6.49400239784017	5.43211950166634	5.89178330645102	5.73383040995176	5.92052565604993	5.94376457573449	6.14455068916449
+"NDUFV3"	5.62559030355293	5.10402540334083	5.75589305224319	5.42758513844318	5.43604477956549	5.76822356034417	5.53733921147738	5.29878030568073	4.95824685944724	5.40527365321354	5.38064378890556	5.48873721045935	5.24817787910029	5.46406128492425	5.45091078167467	5.11041285028902	4.88138999437958	5.78342395160219	5.3852367123879	5.43346810323948	5.36724102242157
+"NEAT1"	9.3311110941913	8.45138274339078	6.35065359319144	7.94204357308041	7.79531894600233	7.68001888831035	8.3535369223365	9.82398346848467	8.46272603934234	8.27962160954884	8.89736477542511	9.409599576383	6.165468282746	7.17782928607998	6.82714705480323	8.23338472174976	9.36493477140082	8.23338472174976	8.90973249837824	7.31193584470561	7.48424880652256
+"NEB"	5.68364672521045	5.11806420923815	5.65912034656975	5.22199014338196	5.62259646278022	5.48107471406156	5.43604477956549	5.52229657783505	6.02062461724729	5.82380509716452	5.33402807882039	5.18633784314586	5.79761015998986	5.43769733364052	6.19152429729952	5.70573659568024	6.23956982302612	5.77806732824415	5.36144651171959	5.29284051131686	6.19627735900357
+"NEBL"	8.65516923866249	8.54489608906976	6.3922704179326	7.7462184790751	7.71317505396655	6.55114346027166	8.22153607564464	8.86788827319995	8.27726521979434	8.35768960504826	8.3682213333687	8.02991129152019	7.60631829126407	7.75503305686843	7.61639683804769	6.95905505644927	8.04373854606289	7.22718483451813	8.57267829373056	7.74254993094745	7.5117593923063
+"NEBL-AS1"	5.4683372769143	5.43706826533998	5.9491347789089	5.25225006178335	5.6173176454433	5.47519894231965	4.78580526876712	5.11993475599011	5.44046029126662	5.42791092068811	5.47839570013201	5.74102994640173	5.17531102246592	5.57046356076335	5.01303678247859	5.17224885619681	5.24275305996479	5.43706826533998	5.38271892585821	5.33427014570865	5.51349999577101
+"NECAB1"	6.06425536978967	7.83744125129893	7.1373326396628	7.79158515267962	8.82587868121068	6.46280024502445	5.73233804296584	7.31979576770199	7.97168932703652	9.31345711459086	7.73234672505477	9.04551996146088	7.52252629424199	6.3640242040967	8.05535470697733	9.10517965238361	8.66108976644795	8.82279079896483	8.31689342054754	8.67514753251592	9.50075164938383
+"NECAB2"	7.79453123923178	8.28168245359379	9.24666858653642	8.51369083162264	8.50531804888148	7.96614026531579	7.89079146136111	8.4050784032334	8.45964169156348	8.48422416536484	8.17590674388113	8.28168245359379	8.47091020516697	8.24850300968136	8.09242175992147	7.62836511469472	8.26207573957587	7.84170813732564	8.18714676781068	8.87006659444572	8.25435628428043
+"NECAB3"	8.03503223088764	8.2061884052694	8.02227026490272	7.90729707400213	8.31009953981844	7.97264342510865	7.89986466076554	7.95029194754123	8.03856424778248	8.41991630917375	8.02521125568079	8.29419293177866	8.1158612254365	7.78773181456997	7.89572052029293	8.17418553586754	8.21264019360963	7.94335416032158	8.05548291942675	8.46593496782263	8.62593142827373
+"NECAP1"	8.49002116682729	9.57092205064567	10.0313446812748	9.53989850342077	10.2344355521281	8.64510012257575	7.91274189618179	9.38273133239854	9.65892537773331	10.3654373301108	9.18178452802437	10.2400197062875	9.40198759644129	8.62892224554811	9.62198899897889	9.76147147454742	9.86355864238211	9.78320439861	9.59274383058868	10.2615984458371	10.348802347599
+"NECTIN1"	5.19113216245545	5.66373430495175	5.78614968428952	5.74118939162705	5.96227550746083	6.16385012510078	6.25809940349273	5.51693248000241	5.51182177678222	5.74118939162705	5.89922069503808	5.72388221936271	5.95429746536953	6.17329394486351	5.29254510114146	6.29380759631819	5.64944375308054	5.79880601375228	5.73843186413752	5.50336286249164	5.74118939162705
+"NECTIN2"	7.43441591857866	5.24051620951971	5.17442759645835	5.81634337956395	5.18955793070685	5.31332490146653	5.4398828760128	6.0580826474935	5.08983251972887	5.61887431038894	5.51388587681754	5.32662188669289	5.52191619928119	5.75066582111426	5.34891707361043	5.09825077857197	5.37625748003648	5.30626345968269	5.32790697175683	5.76771040539352	5.93915159206649
+"NECTIN3"	5.50944002051734	5.8640825437565	6.32926250300393	6.19368785484073	6.82939544107561	5.68215590928895	5.20039726893089	5.98138410537924	6.86529957516977	6.5591296365838	6.64131730352278	5.99281596632121	6.31437385497465	5.51335565778268	6.53555580588306	6.45797034348466	6.63787791030644	6.96449425868158	6.13949202013544	6.83368516269725	6.47808058061165
+"NECTIN3-AS1"	5.89220361135521	5.71625868602632	5.77154710896846	5.72201013121806	5.88293581608253	5.96239077062471	5.82900224315222	5.71799567835876	5.77995738144888	5.83676378561481	5.42573537257354	5.78107168441013	5.77734102900746	5.8773979548408	5.56035088690433	5.81759223260878	5.35869375169462	6.08618308917596	5.35829001837333	5.7452686961965	5.60032576158873
+"NECTIN4"	6.36022404032154	6.88874543600063	6.67773865425171	6.78912766141502	6.43361924548038	6.79124726548498	7.15795167212107	6.56689094944804	6.85958217127865	6.78206430457926	6.55184318898226	6.78473121626952	6.88540505477443	6.78038457998767	6.84235940301544	6.68239150096814	6.62818821339735	6.69267905068881	7.01165644156668	6.87379814996512	6.82741796858856
+"NEDD1"	6.69846948500942	6.31550349692598	6.04302034509994	6.20344796144911	6.1269506909528	5.85137156756103	6.06715911789473	6.33486472787957	5.93446279318254	6.1269506909528	6.97535609378887	5.82247846840539	5.76585250754436	6.33987102165374	6.04742762577468	6.83318586542695	5.95293839440848	6.90353778198843	6.00118249936754	6.02748391739152	5.78963855093356
+"NEDD4"	6.22055930149287	5.54733897040745	5.38094205697035	5.89248866247942	5.49752851962044	6.04054277790277	6.14117216891384	5.90385339198904	5.42426455315576	5.16891172601488	5.46521695790873	5.32083368326832	6.0518882389905	6.10864030735345	5.8133420467377	5.04215193624898	5.44571471935483	5.48390734697583	5.52719881844875	5.65035185168416	5.06743919819847
+"NEDD4L"	7.93891541477484	8.8471510976363	9.17279994479539	8.8931430804555	9.26939849911042	8.22492102263824	8.19115766977947	8.40211554010442	9.27801978486443	9.0075905048942	8.11183840344262	9.13570925828417	9.0787738952858	8.2639126645281	9.1886628352226	8.091879969957	9.26935288901472	8.69923697882749	8.68712643153309	8.89340911398805	9.06264091321958
+"NEDD9"	8.08294189872248	6.70645717451396	6.42242539772914	6.55803352267201	7.01339467172396	7.44217088852559	6.90633164816305	7.1892871996332	6.90633164816305	6.8779538718467	5.99045165602026	6.46107546225344	7.05606058878455	7.2171467594862	7.12094880915189	5.94841696866941	7.31532717844462	7.05733916942788	6.71719692882899	7.17047550982729	7.04129806713429
+"NEFH"	9.35331465846973	9.10136359364457	9.50945859943051	9.73900406562166	11.0353651892256	9.62885553988081	8.86398724375752	8.39554218324727	10.3487123694752	11.0524714100348	9.83126630342129	10.2842819224568	11.4924335079014	9.61822807235885	11.1198170650691	9.0022342781846	11.1182849757619	10.1566246376806	9.3589398924824	10.480939828624	11.6221265538493
+"NEFL"	6.83389246127762	8.46890038306681	8.78190428204467	8.68902094701705	9.0831398277399	7.79560353647891	6.79788204223513	8.00599342957972	8.92245825481956	9.27014272643662	7.98382313681219	9.14552321749838	8.81624135980964	7.34939607949381	9.06447968447004	8.20339245621542	9.0866572397081	8.4815608512873	9.04611114315306	8.69980021356919	9.26556511688038
+"NEFM"	9.72704666874638	10.6094262667194	10.9220589394774	10.8241700928729	11.6519508764889	10.1056983854272	9.12224196012876	10.2705233948573	11.362286408211	11.9274980652936	10.6225683350445	11.6716010631853	11.331285756857	9.9003263897644	11.4951933382057	10.4460752770127	11.8638888717809	11.0000231067585	10.871433296643	11.4119505665857	12.2873000123996
+"NEGR1"	6.35008819229301	8.41036335700322	8.8524047353186	8.17102893090561	8.80017745200914	7.10660449061096	5.94219189974764	8.30231514913508	8.70116360226672	8.66741512933756	7.65447848552748	8.73920500765325	8.2544175145324	6.32739485565168	8.73709059402773	7.8384621977554	8.81700318877085	8.16338224167735	8.59032375340023	8.39778763702417	8.53432425360757
+"NEGR1-IT1"	4.59407239273089	4.71721641242413	4.58621125852494	4.45929357293174	4.6185010178298	4.70844818459027	4.42470612427416	4.64376866421087	4.89514602667204	4.60409070174784	4.25827083291055	4.94220924089832	4.64774900241762	4.40629114744104	4.41838222904273	4.46657435621387	4.68733113285433	4.54722087878515	4.50643129871752	4.74973379613398	4.537699768961
+"NEIL1"	7.81486055886029	7.55134332205244	7.89684153499785	7.59521887998345	7.45444845665842	8.19853016519516	7.61143103530084	7.69570860344918	7.91979214119109	7.57754958062951	7.39856840300714	7.50411717696674	7.89744682500174	8.09623494040849	7.71972176090558	6.95920823820117	7.54689920597216	7.36091157733824	7.53103867868816	7.42760991769956	7.53463013970303
+"NEIL3"	3.70632310137397	3.94598654180453	3.9254091677419	4.04150708958553	3.96804514214926	4.08445563701875	3.93071184249515	3.84109229623964	4.26819470725028	3.96800725103297	3.74626149308227	3.96505045100109	3.95437651389316	3.93815521683993	3.97165129332866	4.0283372003416	3.87043268745869	3.64901973328812	4.0048928092011	3.85277640616494	4.09648804725901
+"NEK1"	8.8758046969221	8.15266696294744	8.59532470431281	7.94528223599649	8.1473743022377	7.37461603233277	7.89394740881554	7.9906910265955	7.79023855075127	7.6189946880146	8.36383147771322	7.83446256622604	7.68568931514923	7.58995847024561	7.71043358692549	8.03518355787606	7.92620099088897	8.30155334681869	7.90396049988168	8.12448765171208	7.9371555710073
+"NEK10"	4.99764811900993	5.15397958848446	5.32317899133957	5.30097962000209	5.37933244973528	5.78855562517454	5.66924473452819	5.04384294345482	5.47233566997306	5.6027497259123	5.13125774996989	5.42990857552484	5.28271037117953	5.59826353508974	5.34243119194567	4.93137330045293	5.42987294949068	5.15727104341338	5.55684512997098	5.76051225811454	5.28610686179456
+"NEK11"	7.80880139934708	7.18260958972053	7.24510538973948	7.03246237814013	7.51640971488316	6.8048219570666	6.74387552324306	7.22519729232101	7.78434659084519	7.3138765704724	7.5734128839426	7.34047264203562	6.84273224740705	6.73466207870972	7.29598903867181	7.28545878254387	7.13860620762798	7.06668885283016	6.99392695820672	7.55460851934751	7.31337044443014
+"NEK2"	3.46391124063922	3.88509171534632	3.96434231273102	3.94838005419428	4.51236740310986	3.78912337028689	3.69494275600728	3.90064590244421	3.9391019552346	3.87497464810542	3.54127067137852	3.72381998812703	3.9210826378604	3.68292119508617	3.98447099721734	3.77852957926384	3.88509171534632	3.96068843160447	3.89781815562372	4.25315536861536	4.01878836508048
+"NEK3"	7.81353835778342	8.00079274838397	7.64252570171878	6.96619078597114	7.18312531948857	7.1843905819925	6.34215032468484	6.70609561250652	5.8897936062481	6.39837905737433	8.35160265855892	6.66180057342515	6.12059484398192	7.19260193651422	6.13821266355699	8.61304959957482	6.78402729683339	8.56444503105474	6.87581801451365	6.44780436922699	7.21243034029706
+"NEK4"	7.72715008884419	7.44815163848912	7.50629860487462	7.60670994302426	7.6703960216743	6.64296363621868	7.00114192010537	7.73396774320789	7.63488407173959	7.09288847632682	7.59957158644949	7.12005199573212	7.27616075804546	7.36858101557558	7.78027859985423	7.25443436506372	7.36365479145616	7.69117476509492	7.37090040078631	7.12051387202488	7.14974549517044
+"NEK5"	5.90684903737673	4.94830768130666	4.56098618435578	3.95832527221699	4.33540393178633	4.81089839369764	4.59625540490566	4.2157519734161	4.49008176145483	4.28407062529274	4.81010559609175	4.0323639951135	4.3696643912772	5.36141851649586	4.27121036404653	4.68090610038749	4.92020754420207	5.21972658174491	4.71910932679604	4.2825855544521	3.9145813257252
+"NEK6"	8.77967706330476	8.29962798899527	7.96250230645148	8.05883568515274	8.10840763043965	6.78727655665843	8.54057258031441	9.63222994185247	8.38376210363174	8.27610364028505	8.57993074668968	8.55871823415187	7.87966621100682	7.9208854658365	8.06201646705316	7.4034023238374	7.7796922222816	7.70639488484941	8.18515933497244	8.34340256461706	8.20331195442732
+"NEK7"	9.71609241376112	9.29788780435678	9.12302865126206	9.283963694858	8.86815463431498	10.1091536402675	9.75197480972892	9.51139992122447	9.12625203978031	8.73599461210029	9.68592750776977	8.4272276309702	9.421976287431	9.61418513554176	9.42415511928171	9.38488145211213	8.94663301278266	9.54939054897308	9.29087735927332	8.40166473370652	8.91905896894772
+"NEK8"	6.85983259442481	6.90877089213866	6.60257946751184	6.98486878410683	6.73756762687422	6.82632357330451	7.1100810326869	6.72801635281699	7.01714163905033	6.78206430457926	7.03610998575172	6.84369188288184	7.01877352558028	7.13361556006526	6.99904305259788	6.69384345884127	7.11554085140586	6.35430717119677	6.83050216068704	6.7329909630153	7.0217885703244
+"NEK9"	8.13633401136125	7.82863052704268	7.29073351815178	7.69481162713742	7.49074063047295	7.4543825286031	7.88805726841796	7.61291305566294	7.59250275730691	7.64371980059133	7.90091872294878	7.69481162713742	7.49848449637086	7.73832154263837	7.12702172208974	8.15684616592431	7.80458725587736	7.90925671664935	7.82015594915324	7.56567026631358	7.69879373122186
+"NELFA"	8.4761140783219	8.44935701864061	8.46923239758707	8.72974277642102	8.34845844061395	8.57360654451911	8.73125372646713	8.50943688893481	8.63286830907912	8.14208583329725	8.53238258142757	8.23843453751784	8.91795299219109	8.82893811088746	8.63097793350453	8.37113867434017	8.52948448556766	8.57279988492339	8.41058537679288	8.13901472935177	8.2591986727329
+"NELFB"	9.22416590180235	8.64423931687967	9.17603889958876	8.97918938571955	8.82412682149154	9.11759714966789	9.08499397087343	8.81106532237865	8.9469169163537	8.65382209971123	8.76406691359544	8.85829609785831	8.76956730547473	8.9741108820733	8.72178153152857	8.65692924135794	8.87056015370773	8.68761342542257	8.84461288330235	8.87229925578772	8.75031019991609
+"NELFCD"	9.43024183436734	9.36841587521973	9.47860055478328	9.22550911553657	9.1859524698913	9.30441740147983	9.50027356051006	9.48394192040134	9.19120312711488	9.15116205693493	9.36068275001411	9.07199622905707	9.0593724726232	9.42532455537448	9.30709607817206	9.55081716268125	9.00816980754922	9.59200670015031	9.242638736442	9.12536776559711	8.90684123243421
+"NELL1"	6.38100316679566	7.82189333789271	8.41719130548305	7.56017765964656	8.41302221294038	7.1083002403907	6.28723512705762	7.58791213769993	8.00777635818401	8.3769255089096	6.89950277173478	8.65961464086729	7.15801891213712	6.69081534998009	7.89406321339769	7.73168678570691	8.15917067327293	7.89856574905654	7.82189333789271	8.14708358411543	8.18939252162834
+"NELL2"	9.62761597805623	11.1352856805489	11.576727823191	11.2503380347703	11.9281452021708	11.187428444968	9.71054077227249	11.1626170693317	11.6870014997218	11.9084664022281	10.4136352341193	11.8679387749473	10.9337693057926	10.3173677108901	11.3204813289207	10.6114977883961	11.7768369980863	11.2203567487813	11.3945809131946	11.9009526485776	11.5354691482809
+"NEMF"	8.98791154023651	9.19935673537545	8.88987467692735	8.95454515493763	8.9014305153811	8.07712953213078	7.89117186828544	8.98228928672085	8.98281677621437	8.96142089220279	9.23596185186255	9.08570998899418	8.77321983580977	8.49406205279744	9.01881330414085	9.55389238905028	9.23048804022446	9.33928469201769	9.03597509514452	8.86102556590712	9.09263550001097
+"NEMP1"	7.03359201034241	6.63441623560056	7.08742109671308	6.29576610255994	6.71855885106595	6.70046458157102	6.83035235488128	7.00319975673732	6.47583463415681	6.11018407446302	6.94180474893337	6.57105088282192	6.29753465285907	6.53534785713318	6.8275842794268	6.75710171956138	6.31589303051896	6.97407498152612	6.62074187279176	6.58110906478831	6.06978614148535
+"NEMP2"	5.54044428233797	5.46961336052656	5.53147984400162	5.50405468981128	5.50778840646479	6.00841118873784	5.88906665145269	5.53147984400162	5.51665506167089	5.50818124307553	5.4968628427207	5.45403995906108	5.53147984400162	6.0538541753483	5.47695292102636	5.40958167324129	5.50198697851615	5.52091216315901	5.59152775734195	5.56796115760305	5.63662357371405
+"NENF"	9.58336295333006	9.61406036533304	9.81258452362953	9.13561386236787	9.35201076524629	9.55043063126372	9.56624545812795	9.44889961540287	9.12446735593834	9.15591790375151	9.75377011260379	9.15743437221325	8.9148737908747	9.30954380177612	9.21773343735006	10.2595813819571	8.8198300648959	9.97397941050199	9.09337678692158	9.24031161703579	9.16040170169791
+"NEO1"	9.37052721510782	8.80783721095419	7.99923193319657	8.71857061586772	8.54723380936564	8.88411466303902	8.99837991355838	8.93858384107097	8.63066705327701	8.62204567997443	9.31480273304592	8.61263352060532	8.78051399620217	8.35968122187015	8.43075930492226	9.66365175851149	8.79203831076067	9.2735885402897	8.71573789309275	8.50771606595378	8.29088882071424
+"NEPRO"	6.46886950588064	6.60276599850686	5.80914902447191	5.52889248955565	6.07219606144386	5.30931586981137	6.09728579687376	6.28028615827756	5.79459220453643	6.39799364244565	6.36809041804333	6.60511822105891	5.46175238109977	5.92606152611764	5.7439449373157	6.73617781667311	6.26839024017328	7.03422895810091	6.30204719572951	6.22223788308945	6.22223788308945
+"NES"	9.452574252377	8.46482182368006	8.08000648754472	8.41753109371734	8.2216326149986	9.60307580512366	8.86727523341787	8.44137338841029	8.32716605152699	8.0160464063007	8.6147494928806	8.10764065715752	8.57226497794384	8.99165034566848	8.09720168797736	8.35007402492228	8.14507913040862	8.45736396921194	7.76419927758309	8.43734360700119	8.68668867964935
+"NET1"	9.05206835957087	9.29180653976439	8.12483111259524	8.12537405522412	8.44489880631103	8.77072342013349	9.13802930108575	8.09429076772849	7.4251229077153	8.53731386264201	9.45487423640209	7.9370020740968	8.81557681212686	9.21760240671083	7.86124253967083	8.58095462748278	8.74638405571498	9.05103131350817	8.80638490573511	8.72720228116512	8.00777124671881
+"NETO1"	5.36600571933817	6.09229983828575	6.53925976240058	5.79313308553567	6.93072778614945	5.71375948800601	4.68233482820031	5.61586629206364	6.06756692239269	7.12244735147565	5.67318788182109	6.55012397759537	5.66633210125712	5.43475182706545	5.81610296005065	6.10271985819724	6.40671553236622	6.15328654637349	5.7609958604146	6.77297124668548	7.06665558962202
+"NETO1-DT"	4.90964307473148	5.31698957040293	5.66401912587856	5.48978029694862	5.84288707845715	5.02911786542874	5.36936449357694	5.35987183027718	5.47027981493768	5.62323545324199	5.20137728726165	5.55128994537629	5.62931352983277	5.20092310391909	5.66283611482759	5.1746841654869	5.75412733681144	5.11067267925792	5.26102754703113	5.37817420673181	5.60502717317461
+"NETO2"	5.19590150383329	5.96988663142707	6.11573587831337	6.01256559787903	6.73317899584138	5.89580469143041	5.41591896631804	5.98297384756828	6.75814606993319	6.85564935547974	5.01548915703411	6.1681660401562	6.31245300502756	5.4707717810341	6.31763359706041	6.02683409121389	6.32179896072005	6.05375076917363	6.1103186503146	7.13245606105182	6.77064829441367
+"NEU2"	6.60975702886153	6.30550014766675	6.66804263176354	6.36163515779266	6.4727057422517	7.05706782736732	7.18970848816046	6.47803733981698	6.63487563084139	6.78377414848207	6.78767694016609	6.58649196936414	6.71694416838411	6.95002617296218	6.76793406195857	6.57140507522664	6.60254036692412	6.42914491400112	6.72436346927595	6.59533913572752	6.75751125677883
+"NEU3"	5.53357923838965	5.56035088690433	5.19298251059612	5.49694828147743	5.48493625463527	5.39427741074054	5.12887080995915	5.52709528988894	5.72499318250856	5.49845562220584	5.51721878946041	5.52045802530255	5.60959078959733	5.19570993947521	5.5101591403607	5.51349559738087	5.58880561113884	4.96586469661801	5.56876082013031	5.76957268287902	5.75367188354479
+"NEURL1"	6.21340764528527	6.7498716276438	6.78578118493057	6.99025057812347	6.90186336715506	6.84795423378298	7.02823679380972	6.75802446186607	6.98876731716774	7.3555837163186	6.48876404680538	7.44712681756719	6.68415301176379	6.671567011112	6.83622621898237	6.69721810257157	7.02597922805617	6.67068119624667	7.22598893000765	7.36740011591035	7.47870995396969
+"NEURL1B"	8.93502048916326	9.12499439326593	9.12914799372736	9.42162690843725	8.89495138584444	8.73702403480079	8.72963626990977	8.97448211651636	9.39161476026311	8.55772598077234	8.66817495358349	9.03246542632122	9.21088900385871	8.37856813849551	8.839498278821	8.62995574981484	8.68207876520001	8.8726128743113	9.10041151280778	9.46733232917297	8.52865525960076
+"NEURL2"	6.16844200662212	5.63594788326913	5.62798938099295	5.36165793159356	5.47542763050103	5.37489819627936	5.97496013597228	5.68252365059641	5.67376996493976	5.92841287876955	5.62331665290851	5.58250253825505	5.86180988467436	5.73425252593471	5.49709604066295	5.59313822516223	5.73971809950586	5.71015950941352	5.81184603553652	5.4504389564563	5.65689300014861
+"NEURL3"	6.84568960538584	7.09558713127764	6.87571480420087	7.34221430216433	6.96149460940231	7.30522773816173	7.27485110041379	7.02910266288092	7.23191221259145	7.11517452730519	6.97632895804535	7.09558713127764	7.30516377159437	7.01289236700537	7.19778142475456	6.95093942591753	7.18032094133345	6.75444817375821	7.2964261357508	6.9970272839919	7.09960516782253
+"NEUROD1"	5.20761722096194	6.39078373431005	6.68961649746845	6.60038915943667	6.81445319815843	5.40581979797801	4.66799463744632	5.90052199161013	7.59577467880144	6.67515198611239	5.47171412902978	6.02048994819025	6.29583203248751	5.23619478076243	6.33826500249025	4.9470936017087	6.40201052397964	6.0580826474935	6.43586545953385	7.00320283174257	6.18811989610556
+"NEUROD2"	8.29625234017939	9.05920543815814	9.25981095253291	9.68335333501096	8.94174466396177	9.39568132366193	8.88582127354749	8.41439156230208	9.31039525859621	9.30926043071208	8.61191507415279	9.01609045923846	9.7370832820437	9.28053774785511	9.33853367825334	8.32675391020278	9.24309680900856	8.63905532725643	9.06604156695793	9.20890799823404	9.28370199942031
+"NEUROD4"	4.86886908698736	4.97551054310033	4.8730603418377	4.94936370266715	4.93808816435704	4.97236122688116	5.65130414367996	4.73780224170015	4.81000405920216	5.03040397406016	4.65795712271126	4.84620767667191	5.08985275116547	5.63006588910225	4.93808816435704	5.00526497812798	4.90410610357866	4.62943073219911	4.89429634124808	4.8535068650649	4.96398221974389
+"NEUROD6"	6.66270600977031	8.10221729946113	8.42549803679369	7.99514176609761	8.80392003314677	7.65474546850171	7.73132311648312	7.17661834503677	7.8191483778305	8.25980332393828	7.22672365023678	7.92893767352594	8.07113355571909	7.56222889745095	7.70588828841414	7.96603184166068	7.93576920245129	7.46385775651247	7.84970398120889	8.87906905819032	8.56247300565504
+"NEUROG1"	5.49547999606928	5.43825317683109	5.42781904367502	5.50076182085259	5.27068365610671	5.43386675323153	5.34844632302698	5.08649552531821	5.60234859645977	5.62020856250034	5.42210685631753	5.61478830481592	5.80941695895092	5.54854829715606	5.44847170077767	5.40244593406386	5.64940804994512	5.07973153054872	5.59885335125381	5.4201027030292	5.5729427382135
+"NEUROG2"	3.3934431172763	3.507411048669	3.52772120970951	3.72392177884264	3.65855256813184	3.4877552628743	3.98687737094395	3.43847398432737	3.7115878853887	3.82425301471831	3.42920557219288	3.53582055418501	3.8065016082102	3.4431177483878	3.59072407223091	3.59788256578746	3.62777397154966	3.60761376281364	3.64489473894232	3.60761376281364	3.88730374889265
+"NEUROG3"	4.95463750812243	4.6869633080398	5.10167451057913	5.07176191925502	4.80775126444691	5.39301319604291	5.11657356015759	4.93655814113817	5.08915126915516	5.19080190681157	4.94353236858526	5.31998648624013	5.2433296141043	5.39186361376507	5.07508829750431	4.86147298373986	5.17144920091875	4.82786387425736	5.31319114127256	5.06997701566574	5.01808416881245
+"NEXMIF"	7.1100810326869	8.14467913031909	8.98350847430282	8.29167906864294	8.7544195243563	7.80263258870425	6.78001549259953	8.12848788638112	8.33685057788745	8.24989950362412	7.8686398663505	8.26121451687957	8.28412445849187	7.53589342280614	8.26980593192514	7.33139977923814	8.09426527040923	8.05969942675727	7.98655408277492	8.18321412134879	8.01751448067959
+"NEXN"	6.33824804669068	5.47737101484367	5.35937988821561	6.1134405376474	5.84154161107227	6.05139000308828	5.22025635773318	5.76937952949778	5.80026108711277	5.58435872996778	5.21607014610489	5.70452979965219	6.26328219878547	5.83248475931933	6.24012581939457	5.23076356219938	5.82437053650861	5.34810385551279	5.9974353512165	5.79294658400427	5.86959727511759
+"NEXN-AS1"	3.41603442714824	3.22960882824066	2.97808769295121	3.16007301290659	3.04446119567356	3.15432239686411	3.12777441113548	3.14349910894461	3.22636959239853	3.12169209327103	3.07176035674732	3.11036998826132	3.16541912464629	2.90810076498793	3.15132839120907	3.22264640031898	3.18185533604881	3.21970668840604	3.31584828012709	3.10445188916792	2.93214788449794
+"NF1"	6.60495275352204	6.48506556423064	6.78016813119143	6.19202599591479	7.78270299000419	6.95380572676792	6.34031785552459	6.31096909842289	5.7780251862392	6.29624402039681	6.1592085873782	6.22496429438615	5.56923799229449	5.77345747626196	5.65273394513442	6.55098342921348	6.39976519623215	7.94520119289921	6.08792221144133	6.27766195007309	6.34450413514777
+"NF2"	9.14352313971218	8.90621187226841	9.17077496361024	9.23693996813184	9.11368548469717	9.44353443067335	9.56633267897159	9.02329777974036	9.59483866153453	9.15526277683676	8.57749424229677	8.96090770920099	9.70840960715679	9.4559473537822	9.57941050354678	8.30219347839274	9.20182317798568	8.86951773944361	9.04163347584359	9.12676978605209	9.27483578451966
+"NFAM1"	5.95568285574055	5.65609532821534	5.683005725429	5.7637414832805	5.47404690793481	6.18150451284022	6.14623529229034	5.9670823412179	6.05452902474729	5.93071894845615	5.79832486851376	5.87275755679131	6.09093757233572	6.24894838798252	6.06047609007455	5.62561176047337	5.89464750356239	5.55164005273765	5.93375601612008	5.81892611855501	5.83807701208583
+"NFASC"	8.6230378416827	7.93392762811624	8.09454988174254	8.52972445446316	7.84624138312825	9.71080110009573	8.43061164508474	8.41485895234835	7.66706511517662	7.306220224555	8.71750405209345	8.0609942705398	8.38142590025491	8.5630280830868	8.7267758076709	8.61995171114692	8.32095166453706	9.02066628536505	8.54744228708234	6.96259877889903	7.86421567528616
+"NFAT5"	7.80236441751684	7.88174273271659	8.17172644225683	8.26538060324316	8.29001204848676	8.59715082090401	7.60172779763256	8.16297544516881	8.66349515395461	8.298893510508	7.95712080656834	8.56354500613016	8.56790004999376	8.22581306443518	8.79114707521473	6.92106607327922	8.09379314850056	7.44512783604158	8.17176211569472	8.0560854442996	7.49168888923146
+"NFATC1"	8.45215658852976	6.73689580874685	6.69756583371771	6.88589608994599	6.7291057044863	7.28280295060187	7.57767034676937	7.32883665417741	6.76534151132965	6.49030017985749	6.80206598399705	6.5462429909755	6.33444706359699	7.10623176104598	6.77725159668725	7.33340596304952	6.66701611877946	7.66139664888706	6.71071194008253	6.80190290366883	6.68525168888194
+"NFATC2"	8.07186744560464	6.35604603463953	5.73551030176319	6.35591233877049	5.99568947316391	6.21699543390393	6.93195531572808	6.71106975723615	6.33427100596339	6.00924773005399	6.19003655055024	5.73207065490615	6.40962504423987	6.94314464308857	6.7947747207863	6.28082070324346	5.7795215403919	6.06433746856414	6.33091781039898	6.30563521106612	6.55201921476841
+"NFATC2IP"	7.29564300996907	7.4749394196245	7.33201999585432	7.02706719923718	7.30470591751249	6.77466830431164	6.91692280973915	7.01357960191055	7.32306013950501	7.63068936184706	7.75488250575672	7.8791830856771	6.98833247505703	7.03685511898906	6.74124289048268	7.72901943734629	7.4006705115158	7.55534884432409	7.2042600960442	7.72718614704828	7.56153943157088
+"NFATC3"	8.52986208125947	7.99185840678865	7.42191592015877	7.95482559991609	7.28694110674257	7.94922594315361	8.2970970535168	8.03151519252035	7.7966924951877	7.49606132377701	8.39479511917097	7.32148373908776	7.69987407164069	8.1275960516048	7.92139946642665	8.4510225897821	7.49632683482584	8.49630656548123	7.96950295037816	7.58180956922342	7.59551937835608
+"NFE2"	4.92924216120093	3.97521665806832	4.18962808717441	4.42530043558498	4.12514050812653	4.28310523711176	4.08760134636187	4.24910407143	3.87340813197294	4.27269059454369	3.90131712251373	4.23333566506624	4.23378404034752	4.03123721953745	3.85643806361361	4.0099942757108	4.10281516405621	4.0370456845544	4.15397702356854	4.61103539446569	4.01370754691167
+"NFE2L1"	10.5876852413901	10.0532728230181	10.166708777499	10.1030060593433	10.2215814482878	10.4410101268167	10.2202855097839	10.0983815114568	9.94435695755703	10.5999537311332	10.303344914996	10.4240222784271	10.1828027450197	10.0964722345424	9.90417617711029	9.99459414200853	10.2219358497606	10.0139974709179	10.3599811765128	10.6574515229477	10.4447352327441
+"NFE2L1-DT"	6.83310830005187	6.54652183381591	6.44752048531112	6.75369649905545	6.29507805945727	6.5793184786918	6.85979385824222	6.6003534076663	6.94871677620149	6.46988948899906	6.2917240088472	6.64523717420311	6.84867959083529	6.74787456066043	6.63304390134888	6.58147214565638	6.5793184786918	6.22017949602666	6.71824969846691	6.36183517830793	6.5793184786918
+"NFE2L2"	10.8002498416941	9.92035010740999	9.31624435819676	10.0356257715158	9.5142952872779	9.33868106109799	10.1147539568722	10.4090514231768	9.94306374015173	9.49246180101495	10.2355368487414	9.33403407330013	9.96832835518328	9.72581341511809	10.1720877152592	10.1724946854794	9.66354540781424	10.1683994530784	10.0795204005076	9.36560840934459	9.46148857147891
+"NFE2L3"	4.05879445660153	4.12111016678412	3.97773410485772	3.97470437421354	4.30397208459166	4.27894586491451	4.27262054176329	4.12111016678412	4.12111016678412	4.12111016678412	4.2189393299642	4.06763228525979	4.12111016678412	4.3266764266269	3.92517165384596	4.40493942334347	3.97923432358978	4.504057790941	4.19119410257431	3.94497041468032	4.06457435732221
+"NFE4"	3.53764688471893	3.71474687698373	3.51288945869451	3.58390683357351	3.52093466715319	3.84232318792524	3.83753229667194	3.74784226871752	3.72872324552583	3.71789128876904	3.56200173549066	3.61711170827523	3.89065526534098	3.82930596144937	3.90092498753763	3.72811463768954	3.71031846596918	3.69013716185727	3.71789128876904	3.73043891949996	3.89750769692117
+"NFIA"	7.44219382508012	7.2102081094921	5.09750858317541	6.69788000210891	5.2947284991392	4.6469419770638	6.00888974024981	6.76027005274093	6.14443675173428	6.18399500454235	7.8113740482564	5.8813655270489	5.51234009136035	5.81706407749443	4.94502136368214	6.25204620688906	6.57314518242769	5.71948765640407	5.91421496258465	5.47028355548943	5.27922613473846
+"NFIA-AS2"	4.9455368739284	4.87590664922768	4.74814365926914	5.11221143751114	4.82046045765556	5.50076182085259	5.04094830783483	4.86712622304525	4.99696154073098	4.96530284883724	4.74794778681442	4.91677445608523	5.05497694948843	5.50063664760256	4.82805155204904	5.11153050313656	4.96709416692637	4.57512919121534	4.96530284883724	5.02206395497348	4.83217670837911
+"NFIB"	5.80337704455406	5.43195058838797	6.31828333732586	5.71125560316458	5.5010335394142	5.74737770803518	5.30136275221529	5.56458709019212	5.75094069923501	5.26693357672081	6.18619783200992	5.63282737911643	5.8043092782163	5.72169126462962	6.05541219953498	5.26461200162992	5.59518678758843	5.84324430367431	5.25136502463303	5.05836608484961	5.29546701102412
+"NFIC"	11.1260476950972	10.7910563402746	10.7439590668524	10.9981449054481	10.452247538852	11.1144852167613	11.5086100053714	10.8903423515566	10.9072351171753	10.6024265365114	10.9377836324076	10.6120012376358	11.6644856166075	11.5068196445255	10.8151709616159	10.5299429044087	10.7936971152471	10.7090014265558	10.5840643548974	10.4024121384189	10.8841131268299
+"NFIL3"	7.84257351076895	7.29014414104541	7.22750292277962	7.6611507500616	8.05372231607937	8.0584264706442	7.24537022372856	9.87850561166449	7.90540797114752	7.90176578891646	7.25369679549903	8.43364368378416	7.91590552422901	7.4128121833543	8.36738946462508	7.0566256349551	8.63932517467569	8.12193567893917	8.01632301951227	8.14919959679169	8.02656541637453
+"NFIX"	7.81346917920181	7.806437465097	7.61047287836777	8.14687252143649	8.48604178156659	8.39775022952525	7.90591063271331	7.89198933702908	7.77796284338338	8.47460785322095	8.66151461892809	8.67695916138305	7.97360579376857	7.6655145881033	7.62758099550876	7.99827940935937	7.95001452996679	8.21738112136459	8.06069127977448	8.46653088071109	7.75752082582267
+"NFKB1"	8.03779833228279	7.41323749779422	7.30456514766078	7.45803769368388	7.52891649103366	7.83923553162228	7.46571349235087	7.53413584550056	7.29520812788928	7.26199334797041	7.50938188128365	7.11581733231397	7.46571349235087	7.51223812934216	7.46571349235087	7.69329055871657	7.37780775350708	7.83965935535149	7.41430668510797	7.54662858978791	7.38381795636107
+"NFKB2"	7.48999259323526	6.48906429405549	6.14008375264484	6.86514611500985	6.09467502345376	7.32928666875213	7.21670120457543	7.72962801345873	6.93442547310048	6.87045915428262	6.85291161224695	6.96332459215531	7.16800235342523	6.86246672971204	6.80836149999684	6.49137517010959	6.85291161224695	6.53036259315506	6.74919036042447	6.93156433722917	7.0038208925016
+"NFKBIA"	11.2772425986528	10.0410402921393	9.34435163451237	10.7132473655302	10.1799001897532	12.3002774154136	11.0185521954722	10.9305140056681	10.7451063590526	10.5573783802824	10.1414497710225	10.4765191374723	11.0691341565789	11.3832756259113	10.960006361834	9.45738096912921	10.7954788274062	10.8840297847586	10.5322523987696	10.4039512582711	10.2572232538462
+"NFKBID"	6.52112058304793	6.750062932993	6.32624617392862	6.52574363239396	6.28477290397727	6.9360096201667	6.91495651248815	6.40382767411492	6.54992541841146	6.55295006559439	6.16482223367044	6.24201229633897	6.93630744777081	6.65998863956944	6.73159652590011	6.37183257312037	6.59981706459974	5.9868512741017	6.43359030482809	6.65539510998427	6.44698808816002
+"NFKBIE"	6.54769734679641	6.36010382942698	6.67598015793485	6.07323290280002	6.61939187090505	6.35301369200359	6.34750744064917	6.26645579480734	6.23365774076798	6.42387111983487	6.14796780806433	6.17082461992944	6.55344239606014	6.26897778788281	6.25200425798255	6.48447840618447	6.21078099612984	6.34750744064917	6.14074733931717	6.97220609889615	6.55970769024052
+"NFKBIZ"	7.56990205025351	6.46317475065294	5.97978834263683	6.4344479610479	6.70527155553778	7.445385373726	6.74006919838964	8.3213641452303	6.74539642359874	6.14480955247902	6.35077672251387	6.68418266273851	7.61648331148614	6.81529498015543	6.93081413610241	6.08691524633371	7.21942052735065	6.74539642359874	6.02820293179921	6.80850080728923	6.91685262238728
+"NFRKB"	6.80879234157712	6.83417210797332	6.38031937076614	6.95390961216189	6.90237709266814	6.99308273988923	6.67685141528845	6.78795232520611	7.02168377350201	7.3486241497614	6.79251744914718	6.52770831033877	6.79838180443305	6.94619791440144	6.72358028307575	6.7482338044926	6.61472341606751	7.08132915213422	6.718150349702	6.9611753134328	6.55562367409156
+"NFS1"	7.12357427316342	6.87908788651987	5.98623233060537	6.42076595379169	7.09551914798206	5.92283280726612	6.95627878888471	7.05431537897466	6.69695756981473	7.25501358146557	6.78258758174678	7.07150063456606	5.73971809950586	6.40335583390527	6.41789473351042	7.22792495950062	6.79596511058679	6.4765880321172	6.82293634301924	7.39895337799484	7.16472903574631
+"NFU1"	8.34480424877087	8.15401567669867	8.28382135236446	7.87164965543906	8.58664652116141	7.46687486870991	7.3070439420614	8.02629159398671	8.14223069753693	8.67261533894819	8.40272015912717	8.26802470866893	7.66013036290265	7.54171432352099	7.80409009819851	8.47543338046949	7.90622651920986	8.49527499240113	8.06173652555525	8.3996593782754	8.41845927964756
+"NFX1"	6.04205683981004	6.53432691599386	5.95172463561432	6.64239140769629	5.53474163128123	6.1864489314783	6.01631578808269	6.50682447263596	6.28659703698759	5.95410754013989	6.70863026911572	6.07389801308897	6.61834035617042	6.62264195626872	6.62345271200691	6.15569693836323	6.37002308354771	6.04762254773209	6.32638435930942	5.71255968852555	6.27574610112483
+"NFXL1"	6.80109682849331	6.43762533237012	6.41871084472779	6.35448396698459	6.78691085375184	6.56181777060498	6.32974663677607	6.27771137245889	6.50766282329083	6.52530662434342	6.38184590673699	6.28612238240912	6.0416245613217	6.18264065853181	6.47916670770523	6.46292940652671	6.0763543783303	7.25974613434588	6.61121477739068	6.42047929691066	6.2030763496523
+"NFYA"	6.73253309867692	6.06462248033785	5.32692006831047	5.62730863884581	6.00457456699752	6.10669755032419	6.41585954404865	6.09953041154976	5.82590792291696	5.69300356534926	6.27491531476537	6.0580826474935	6.03486846672158	5.96452297612415	5.49843908524753	6.18058205739159	5.93677191233105	6.09602086904742	5.90758863511532	6.00457456699752	6.07313199835778
+"NFYB"	6.34809492778355	6.78828802804955	6.90793548704246	6.48820754051123	6.88794787751089	6.61084006999325	6.2553789943633	6.53667636489122	6.41940962616	6.71204161889019	6.80067095148751	6.6471437689082	6.41940962616	6.33571552327933	6.85740183785804	6.71192296891724	6.44316225610432	7.18369752673161	6.56657447932861	6.27079998019382	6.85031465932694
+"NFYC"	6.81538134947902	6.85917775231913	6.24443397539332	6.79396052009066	7.19499739920404	6.42224036726558	6.5377878821716	6.74563645873577	6.75277807328977	7.21428465973415	6.86750141252808	7.18200971987129	6.65338992889382	6.2547106537811	6.58932932244742	7.14286637676417	6.97398830768406	7.04459763204041	6.7613075485524	7.13961393336285	7.25889271837003
+"NFYC-AS1"	5.9841263243859	6.48474668681351	5.71600051109641	5.9290133555082	5.95464262035235	5.41773963354657	5.71101084907017	5.75508414225556	5.91398048599145	6.01803890096265	6.42433384196272	5.84397141900476	5.82015105804562	5.74624788838417	6.11532059733114	6.71606907335494	6.06175914341569	6.04604684039946	6.15824137651718	5.93294412263818	5.97332377018791
+"NGB"	7.65212056576441	8.78745616639173	8.66463571882693	8.24462643488052	8.45878803244851	7.71556778237157	7.94808723707737	8.81547912834477	9.08617350981264	8.56088760765362	7.56640279527841	8.50278493978864	8.36738946462508	8.29127550351864	8.48093489713972	7.1202005922886	8.16306759136658	8.16199128266301	8.6251131131234	8.50687543294688	7.66471314769026
+"NGDN"	8.74731746228447	8.77606994466946	8.65256258596967	8.646968847724	8.96692418115369	8.72086349517782	8.54634319853917	8.70536456010696	8.68546549232577	8.92803700160363	9.00936823558183	8.84007535748014	8.47232565332468	8.49868210954375	8.55734372986163	9.18765977779732	8.68584470158351	9.40529596653809	8.72049714923299	8.85191683224527	8.63487639266533
+"NGEF"	5.87995212359983	6.83100851692798	6.44873518161484	6.29079601809376	7.41550546754753	5.81207364205796	5.84289490178227	6.77679775827813	6.87146495635303	8.12564622686097	6.32889491394042	8.4737963987968	6.18942658838296	5.93510653960105	6.30486732815458	6.98550500839079	7.67145798250897	6.67867500798588	6.58933812143075	8.13665107190915	8.58885657561949
+"NGF"	6.18332377256875	6.12406423585733	6.49097104838971	6.34564304694342	6.14821920277294	6.82795411458709	6.97352842920314	6.17705843886166	6.31511902196348	6.49863482374694	6.14257905887367	6.35132081548873	6.5683969691376	6.81994241587385	6.37620286306383	5.99909526180669	6.18853641961363	6.05803152621196	6.47354226331624	6.46437103624305	6.25838056416522
+"NGFR"	5.93927367055835	5.48722003326464	5.19986865269715	6.07924529163529	5.47542763050103	8.2334205405792	6.38586673202084	5.40885343611468	5.33536248798925	5.85037860556996	5.53731103591558	5.70588743680611	5.7895225773528	6.10079882666831	5.59575989447405	5.833706777904	5.42136761710231	6.13488292411669	6.02983781868127	5.70230056550291	5.5006372845901
+"NGLY1"	7.76601721979927	7.64512691574847	8.01212061068219	7.55183698951265	7.86522639764839	7.45941585117622	7.09475637153073	7.66596075791183	7.62028336184166	7.78736654869642	7.50041218111405	7.65927706503323	7.53082755119053	7.48772163358318	7.71679618927123	7.97206661676799	7.86223159813649	8.07581908543861	7.72403408439465	7.90633586657892	7.67481584926732
+"NHEJ1"	6.38257691374792	6.31363640994041	6.57159137969925	6.78421537377262	6.6956991194741	7.09220030296596	7.21386429985337	6.31601944212345	6.76110809228828	6.76046641020498	6.32889491394042	6.47076837021892	6.90351816612126	6.89568787287557	6.92028449837631	6.18941816765946	6.48451413696358	6.44034878187835	6.64050557309748	6.7907772780761	6.64050557309748
+"NHERF1"	8.86376274522589	9.07118300581191	8.61065174884079	8.69251229385661	8.59087117195254	8.27044241568711	8.9495691740569	9.50194119863557	8.40630049839357	8.55021888981264	8.70261265547194	8.92639213716207	8.78360082181443	8.64668636464031	8.50565285972287	8.90531211873459	8.20626628656089	8.91617865600083	8.26681843067632	8.75241968853166	8.25943580666252
+"NHERF2"	6.89771392143554	6.27407253794921	6.25256561523732	6.4318238070864	6.06594946287012	6.68792514840908	6.17746380727305	6.04711607224068	5.88081961254495	6.26343182798246	6.20523367593563	6.25612567819478	6.59219254372013	6.25256561523732	6.25256561523732	6.0835001946414	6.01924410846756	6.02967118051929	6.41453400675884	6.34497876059907	6.19152054631787
+"NHERF4"	5.89344088932124	5.98853996129492	5.79367665831011	6.09427287895756	6.05911335515184	5.89744323661215	5.95111140820317	5.9793297277418	5.88434514527427	5.75321474301803	5.79674387889098	5.94044137118874	5.74843145587633	5.88823378755233	5.91227249932059	6.1336818131801	6.09507650804703	5.47115097179603	5.95747998313654	5.72160584175977	6.06555010777312
+"NHIP"	4.71758412886393	5.17665553698208	4.73951356044124	4.53897323616888	5.10594946783439	5.38082687139094	5.39825131962306	4.63358069201961	4.2947976575029	4.65708655628746	4.71721641242413	4.35026694713253	4.55593482087137	4.99122918454416	4.66784483447504	4.81057387316823	4.39299851198358	4.66624355978597	4.76325893358307	4.56375780108504	4.31036341548176
+"NHLH1"	6.28087155752056	6.50576287741035	6.57146041287874	6.75340031319704	6.45964944682841	6.77154569298129	6.83767663794315	6.43542765168704	6.69788000210891	6.59366263855539	6.18511865215272	6.61479048068856	6.86803300848578	6.79084322055539	6.71169130167924	6.21265889126878	6.70492842014515	6.19840989508872	6.58003672720706	6.61615637999297	6.64455498345426
+"NHLH2"	5.39892754370658	5.16019259046344	5.44414338817077	5.79529915922677	5.7756372624065	8.03493941940194	5.71172448002321	5.4558934878257	5.83055886027513	4.91061169309991	6.10770753087399	4.83392581531186	6.5258963533309	6.05543394780544	7.39215896321106	6.65438376811555	6.73418054935872	6.88329988183019	5.26265897708434	5.21615254827303	5.93978068484338
+"NHLRC2"	6.53262470517642	6.46793814776489	6.736425090917	6.24984030199525	6.33562049093541	6.01344079805454	5.76471530247255	6.56299706881274	6.4014312151664	5.85437184756263	6.66045738606086	6.26944307533773	6.23181963726573	6.09196540210776	6.39988663192855	6.48668950511583	6.23176811828946	6.62740810006935	6.27225131441596	5.78147967873942	5.98427767373352
+"NHLRC3"	5.89708195618327	6.36428411029486	5.38256429175257	5.75879373729353	6.02744317649132	5.32798979263067	5.15750327727216	5.41169058920054	5.46325340901619	5.68944338125912	6.84304769109257	5.84968108230798	5.38166446546651	5.55603951508618	5.35685739676814	6.8967193813724	5.81913911830047	6.4790854621623	5.62858418078807	5.73426055697903	6.10641147200843
+"NHLRC4"	7.30250552010207	7.35084324523236	7.33880559518296	7.65516058105846	7.39414134601714	7.23524913833588	7.4795564208906	7.46026219561286	7.38827501748196	7.42808864339881	7.24252799677799	7.48341908320414	7.5406878438572	7.5835136018227	7.45277090893593	7.45449169925491	7.45277090893593	7.18484538188717	7.54966828264797	7.45604112509886	7.55290839556445
+"NHP2"	10.1424495600426	9.98703924627518	10.1956036857194	9.9052222546038	10.2452770005787	9.83900666971567	9.92172515338383	10.0569205623476	10.1277768630535	10.2555978697093	10.0366317195547	10.0569205623476	9.82987193204739	9.92261453563884	9.98347740902252	10.2204405826528	9.90126232180089	10.1414327099694	9.97474540850719	10.5597471041853	10.2412403939097
+"NHP2P2"	7.80963090179788	7.57764512986236	7.72727214182688	7.56634522513408	7.97496327788535	7.50623537882309	7.7106845871478	7.66774632832548	7.7106845871478	8.01637178291712	7.84373017770093	7.93322614906769	7.6877812511214	7.53813065151048	7.5705984305457	8.04428087568997	7.63816532855781	7.7106845871478	7.65708429859684	8.25392994646638	7.9606107232628
+"NHS"	7.04992763267549	6.80637266182252	7.29073351815178	6.82450629332652	6.73892979180098	5.98800226063511	6.3674692240995	6.92665451407538	7.06147787823003	6.37272518712672	6.22298941318835	6.30976818156641	6.85467648082619	6.9670384670818	7.1470141630719	5.52067314979212	6.43057498369951	6.30976818156641	6.42915783162428	6.91556367920328	6.78827713648635
+"NHSL1"	8.40942127105343	7.39644299479397	7.44083237869484	7.37666585737562	7.13277680059956	6.43184127861799	7.56917873683245	7.62894789443136	7.46031345877645	6.94598914058012	7.82751097724092	6.64258726494102	6.99795349162545	7.49801424510795	7.23746371115557	6.60825788987387	6.91224168779941	7.15886876114411	7.03168568626174	6.92347093105779	6.44822673618313
+"NHSL2"	6.42885546425046	6.02059724412509	7.0384173987383	6.33755919609906	6.62857898545227	5.86170737038686	5.58568503943369	5.98737603366594	7.03011481480267	6.38430778133198	5.88211186332928	6.18278877779237	5.60169557736536	6.04150327463393	5.98195862516118	5.33513255688411	5.92898990852311	6.11791318746217	6.20517659320434	7.09119833263567	6.2030763496523
+"NIBAN1"	7.91063377948235	5.98737603366594	4.74975143728819	5.10987774282196	5.77001484075164	6.12499223465392	5.69459524919584	7.18328253911291	5.15734865141111	6.14124222031898	5.57128568199821	5.42915507735523	5.77001484075164	6.5793184786918	5.33805935860663	5.30776366045374	5.42851545137743	5.7662511083396	5.63657604582473	7.29161076883364	7.0373735146399
+"NIBAN2"	9.14406197542578	7.81921196830195	7.89029900208835	8.0253655255623	7.5648664332304	8.70248842993125	8.85353218045556	8.37079208647757	7.99745648453696	8.1039345881322	8.01053383091309	7.88391184932349	8.155128320335	8.46452211012993	7.95919360219681	7.46754653522462	7.88064134677343	7.2062249283206	8.16747120546298	8.3900481683055	7.98047293506437
+"NIBAN3"	4.86568716500856	5.08556118134796	4.74886325343316	5.00254636005089	4.59840519115265	4.98344017714848	5.55890411844152	4.9292016309178	4.97996265113183	5.02492687031377	5.12259376514527	4.98455010434325	5.39101443870103	5.37470426723402	5.32320841238247	4.93367314846648	5.02766884430383	4.78337917483185	5.20958872487317	4.60956998043952	4.88110016379034
+"NID1"	6.50939858508087	5.06307482316395	4.74682686539721	4.82445423721276	4.81607368808754	5.633131629833	5.12642680115308	5.60297412843159	4.58718350200038	6.16951128176085	4.78655732157708	5.30119277402489	5.07435334647395	5.17531102246592	4.39796637378296	4.49791071649358	5.79714394631361	4.9514258081072	5.20551627091903	6.7703811514487	5.08991876412413
+"NID2"	5.24639530991567	5.90295788119959	4.95863923004649	4.74575989624927	4.65373647916108	4.96042081487551	4.73863573959144	5.16813610557426	4.57232283989008	5.26265897708434	5.62259646278022	4.83234660151561	4.64584240782086	4.57513587325515	4.75022871154229	6.28642664931958	4.76505425569345	5.1805457763234	5.00318934229659	6.14231686595321	4.9156590745346
+"NIF3L1"	8.37631989037756	8.6193374689343	8.68575791225191	8.35689645963962	8.87529435391112	8.01130341413596	7.54697442859386	8.30813148959177	8.3896910882253	8.85789076871762	8.54553974884889	8.72599086830844	8.15892912447929	8.01975709251968	8.3244373438091	9.06917845227323	8.5300567339171	8.94485594773779	8.59140586170552	8.67537569655258	8.63099232907814
+"NIFK"	7.92096949196296	7.8037725146156	7.83113539302396	7.43191893917164	7.75724182389262	7.03004967369802	7.29590143534545	7.5509673162527	7.48718347998153	7.70444003845329	7.92788874637598	7.63461323833838	7.52225631384677	7.21077959293326	7.54542821104825	8.50305275693576	7.37276043257472	8.05772078055743	7.57384937996138	7.89251369444013	7.63739143509378
+"NIFK-AS1"	8.12835944421162	7.91837815864384	7.90352731491961	7.76853989504387	7.51857944127975	8.57290584521942	7.76142265283524	7.32658958373253	7.06717999913554	6.93634044485214	8.34305786571985	7.07051902917239	7.68446005401313	8.05852284649835	7.80326128655513	8.45494035992287	6.97516746539439	8.63612886908412	7.39903849084975	7.27187947426862	7.37231694943166
+"NIM1K"	8.5534971481154	8.5401159146172	8.68935382049868	8.70794364456848	8.66495978291632	8.89259016031276	8.30836686617154	8.79539375163193	9.01875356196165	8.63837185792701	8.29710622990341	8.58684298155726	8.77586874300695	8.40551508718896	9.25588174792837	8.00589984095539	8.63837185792701	8.64765173986487	8.80014931297045	8.63837185792701	8.41959395257443
+"NIN"	6.38257691374792	5.92185137493592	5.67743482396972	5.75473834049877	6.42615197695968	6.01187456535204	5.90853447574668	6.10760802700775	5.81512681321574	6.00670622707959	6.32505247975325	6.18619783200992	5.4800361326037	5.57528814216666	5.79064388595482	6.69439979540613	6.00670622707959	7.0543546423512	5.62986116515531	6.2620475619709	6.24215260038988
+"NINJ1"	8.52660582299272	7.90999723128344	7.63197670610276	7.49781203156551	7.87626213403568	7.96438640736558	8.09164872335008	7.7320602339039	7.87626213403568	7.68887475206398	7.76076276900245	7.60490738676515	8.00247463262738	8.05568560989487	7.99876865497469	7.86017041085119	7.7028196623804	7.88219236642102	7.98069943138306	7.89716216926521	7.98116419133804
+"NINJ2"	8.37335924455056	7.9856885494545	7.75766166445222	7.5114296285718	7.88839854916429	7.85240107013146	6.84894367764215	7.42177518224203	6.73530109725849	7.59325964763346	9.20453837501382	7.5114296285718	6.80966641799732	7.15072885277022	6.48582315547927	10.0937292742797	7.3729451497106	10.1128453307133	7.52482763136429	7.1555872674159	7.34371594189027
+"NINJ2-AS1"	6.54809057595236	5.77699174796405	5.9915150246182	5.18397423204319	5.77127192872887	5.68252365059641	5.46473052670165	5.7662511083396	5.02915317072452	5.42820076627828	5.98841211923282	5.95299896876036	4.88194977056893	5.83342779447447	5.90341649265392	6.30718881759578	5.19770142669582	5.68252365059641	5.42820076627828	5.49577966913606	5.59039614929294
+"NINL"	8.38965058301503	7.44648517211451	8.08192808105176	7.71026858490582	7.70307081251393	8.23738286676494	8.1710803700847	7.84377061734632	7.34572308852848	7.46520028096831	7.71352044529271	7.14463355694493	7.55621924110274	7.66163595925628	7.51739352227658	7.87951321614783	7.33826417755289	7.89946581535078	7.66073625496735	7.45826866093917	7.46610208363362
+"NIP7"	5.84567048463131	6.06354085889186	5.91810045869595	5.59984944243087	5.93934993115409	5.44375230231121	5.25510432348074	5.30414423973762	5.99233779276427	5.87005771960626	6.02802745623204	5.53781846847914	6.06783795379867	5.8668976310647	6.05811745663592	6.05459200774508	5.39268303587703	6.32483754909036	5.79814762438115	5.78489408454978	5.87005771960626
+"NIPA1"	5.56559902698814	5.43832384019671	4.71123583603001	5.44275742238531	5.49773731740027	5.30166947510286	5.32176167960598	5.12891264527518	4.81486428594945	5.53749628517743	5.80250619280165	5.1191849552572	5.21519658344991	5.17531102246592	4.57436018344878	5.87595722409681	5.21817609192726	6.59374003201282	4.95130347813139	5.12704503688483	5.65741621923963
+"NIPA2"	7.13497798605798	7.05358733337147	7.22478547105464	6.77550421479485	7.05265989169473	7.20596012634787	6.85579288207234	6.97303623455707	6.83102647830162	6.82609845665343	6.96667813324621	6.8634256459392	6.67602893953655	7.14692478419403	6.97024705240839	6.97303623455707	6.89036391187224	7.20160046509388	6.76620034395421	7.1081470021709	6.95544040272932
+"NIPAL1"	3.57394597287145	3.63901481762298	3.15048032043031	3.58874782445925	2.98761527559711	3.17709458220748	3.41594777407209	3.42299431652841	3.63123312877915	3.47298025610708	3.58335567820046	3.45756282223844	3.47298025610708	3.53741376891322	3.61859546593782	3.37803287141644	3.53121379255105	3.28562374175248	3.68086435102406	3.35681822168458	3.5198378717895
+"NIPAL2"	7.47905138318611	8.63939629261858	8.71070652338584	8.71943032563844	9.03322558907538	8.56716163943039	7.98165481068882	8.69824690566429	9.27626155567635	8.91201871515936	7.42652173001188	9.12021819988574	8.94001075646939	8.23616223926094	8.97607014305948	7.31874116324422	9.42606755611939	8.43069001419301	8.66454758193249	8.72286109760752	9.00990364071471
+"NIPAL3"	8.44287327416721	8.0558320437123	7.88966970243188	8.28758190012127	8.4473968778238	8.60349780056934	8.19903560797604	8.14774129482391	8.08859234788721	8.18512267044122	8.47266733213037	8.20436816164312	7.74603206507924	7.82821894076388	7.97340435200703	9.26158923999613	8.16265568605727	9.07238880342163	8.26895836857701	8.29829769224171	8.11133528436206
+"NIPAL4"	6.54506019429659	6.78889820134075	6.42716678958973	6.52196068583158	6.43396684373365	6.41353852228335	6.18756692633548	6.09766101691176	6.09430233949554	6.2863840296327	6.83363737580423	6.39895132503548	6.09108921026429	6.3593364505816	5.65309204598968	7.8923413939211	6.2233060806987	6.9331463663102	6.41214732455934	5.96290803296492	6.39895132503548
+"NIPBL"	7.70501248157986	6.90237709266814	8.06174275814787	7.31276010094155	8.15225171624197	8.6083311516628	7.36567826023782	7.95147096752928	7.3221137690434	7.18327677597655	7.5247295454083	7.62445707284586	7.53672825018904	8.27494519924185	7.18875170136015	7.0117187679754	6.97362778341956	7.70322488665195	7.42273498002087	7.48749560215137	6.47361023934169
+"NIPSNAP1"	7.79171594571183	7.78420298488732	8.17162442531873	7.79565491315577	8.62092955677598	7.43577247931691	7.79077279558051	7.67295005005395	7.65321826558023	8.45963196022863	7.78748928138893	8.49589776674008	7.29062657968878	7.53772812911877	7.48947448331121	8.03384541827146	7.80568775022078	7.82513232909301	7.78607617995443	8.80500582267976	8.36109452847753
+"NIPSNAP2"	8.57823414353346	9.07611316743217	8.94532237962951	8.72130110678678	9.17606433388778	8.18154356330658	8.56755247858763	9.12996858680048	8.86774457790371	8.96832589379879	8.90117268273948	8.89519596613126	8.69645286371166	8.28429864330298	8.69714839072742	8.59902287707332	8.72478216463156	8.87773108387366	8.67484802079717	8.72462639046518	8.79226793353156
+"NIPSNAP3A"	7.93286705986752	8.13671771453485	7.74184925583213	7.91599505431227	7.96108894332609	6.78534670567025	7.06157326222981	8.01006657920714	7.28206711217415	7.76127528137043	8.52866233405329	7.7130230267218	7.6226074854536	7.35592929390203	8.02210001002133	8.35537139336087	7.46441687921912	8.09433991739687	7.80300824848746	7.46547215419416	7.58422746347039
+"NIPSNAP3B"	5.43995310932787	5.98355483945357	6.43954797232724	6.2361048656214	6.89791322241648	5.6474936242566	4.71219993275905	6.3951931628567	6.50930048985596	6.37597512361054	5.81954223756233	6.49566518191868	6.07272879456624	5.37994826992967	6.42265074125075	5.9044072273008	6.78566347173911	6.38094085004525	6.43863245209684	6.41103898590949	6.56900834921487
+"NISCH"	11.0610003552001	10.8547618592498	11.5175669544735	10.9961828503423	11.1658311278069	11.0896594483458	10.8508891298563	11.2188384435251	11.2466169969991	11.1949234631031	10.5840493339448	11.153637957674	10.5362506587471	10.8131562103111	10.9631832499788	10.7540176967843	11.2486766751161	10.960360614065	11.092465350848	11.378427202556	11.2004061370199
+"NIT1"	8.66949488028132	8.62412470127357	8.8663867151607	8.5101798753918	8.82855462721676	8.14445033809758	8.34525109173704	8.57128962227337	8.24037129302211	8.74024248759778	8.53659477972833	8.58488595023201	8.07953639926107	8.37179630612065	8.1514323002277	8.62796395849358	8.23130792140632	8.52699582884086	8.47051353311037	8.96882152316327	8.72895754604502
+"NIT2"	7.73884502445705	7.97817454011536	8.30054397960401	7.21732787265137	8.35569180811218	7.70021902642531	6.89950277173478	7.45204643358829	7.62502277606127	8.45263627947098	7.78957027475562	7.7847655257154	7.40111329476932	7.15188932246945	7.25438554197574	8.05929281238029	7.34427987619998	7.87155002447387	7.74543153962209	8.10618944526157	7.94269900188847
+"NKAIN1"	7.18415722282398	6.7431441130274	7.32910785994466	7.24046235869517	7.37132108063637	7.82127392343624	7.3845719387369	7.23345006031344	6.68201921674853	6.66101691426689	7.42706811546721	7.2625240380249	6.64783096779379	7.12960980694875	6.73030630223258	8.7048493131797	7.12434053883738	8.39173727807684	7.36124913906535	7.26009293904086	7.10958365941667
+"NKAIN2"	5.97565742990581	6.51587924752708	7.66413296187683	6.69089887208495	7.43249765616331	6.20277333008893	6.23070065863802	6.66101691426689	5.72457175307052	5.65453851939638	7.08954679982854	6.34866958739864	6.12512185505956	4.73762250986199	5.43126963155518	6.40383775603729	6.5672676063306	6.49316704616044	6.14311410797076	6.46486939648427	6.36851136203379
+"NKAIN3"	8.85758287190676	9.70283503573539	9.71838252685401	9.27755408472594	8.98466907323418	7.42787437714405	9.73178153698965	9.4853501413682	9.05968289069912	8.42687388293611	9.34936658048256	8.35429902541995	8.70648990994372	9.21895277376001	8.55576415912143	8.52870282615359	8.42166567243485	8.8999694677354	8.93174051831962	8.66112121998529	8.15080583253726
+"NKAIN4"	7.34001225219561	7.67838268176508	8.13975017382712	7.41467081887514	7.72926572306487	6.8937920163302	6.89477086051465	8.13959928820918	6.89257464901741	6.71848664566407	8.51029318607496	7.56990205025351	7.53776424209479	6.94416596907252	6.59011527054125	7.56970241523009	6.25675737920201	7.69984288740619	6.61091609408329	8.07573367922963	7.4038481308048
+"NKAP"	6.01024712499609	5.63282737911643	6.13363543757317	5.80744206889808	6.53682663813388	5.06614390639446	5.7502797983137	5.72916941771693	5.79608450905793	5.220198746668	6.1820455554868	6.30391471110009	5.65120509569908	5.62279513693913	5.66815512316705	6.0978574494207	5.53312359620568	6.1632364917605	5.85230196500995	6.17882716403983	4.21274866074806
+"NKAPD1"	7.20518422744398	7.2497558117531	7.06803715948445	6.94590592309704	7.25914297543518	6.3900484733064	6.96458691190148	6.91578383132084	6.80049795843902	7.17456590550268	7.38348564833319	6.99794801307981	6.95315903904111	6.6965953352759	6.78570398435616	7.48358961749956	6.89548977264675	7.68542493423737	7.06033674968575	7.26705819225757	7.24531475302574
+"NKAPL"	6.82323027769362	6.68331643807402	6.98107234474838	7.06263164862099	6.98990901867363	7.49304662138133	7.59024745511594	6.78244570717233	7.2738482319521	6.83904016858826	6.86313402416742	6.96892059466579	7.3637799755144	7.50295679135587	7.44074384106634	6.18657518241668	6.93357987743214	6.61858228056826	7.30553234973789	6.93658666555753	6.64050557309748
+"NKD1"	7.44911363937719	6.61545024766692	6.66746932209296	6.40826790486799	6.09465952007992	7.00243805220055	7.05688242157413	6.48736322827648	6.59690554398911	6.29699440903169	6.71860203069569	6.17595998153929	6.46558428704117	6.80802061785783	6.82177467815962	7.24299422851484	6.49344760478368	7.32112427462095	6.54792606026002	6.34578061697509	6.36017278949439
+"NKG7"	4.64679848240009	4.78895047495302	4.17867246450404	4.41571739724917	4.33989006183616	4.68671784005094	4.18109610196061	4.40446848661765	4.34346698140793	4.48683310534689	4.10369864859172	4.32139858176475	4.32776172420768	4.20158164103659	3.96390288616312	4.34346698140793	4.12367782734289	4.1584284796966	4.42693499264766	4.67718957404648	4.77595984129175
+"NKILA"	4.69638562490433	4.56262077203535	4.86986392122983	4.57836212336837	4.89109906127047	5.09462575098705	5.07523225660496	4.7679436681586	5.10609156706091	4.97548409945444	4.54981863954324	4.71097757433365	4.80419531992814	5.06999907790106	4.67111614104598	4.45098570805465	4.82429771380456	4.55285950420911	4.85588202420569	4.87565599231024	4.54224109666541
+"NKIRAS1"	8.02630710803592	8.68417052573374	9.34092340245859	8.82254022393206	9.19031013325542	7.93235503798377	7.90132067022402	8.81544818627163	8.95043529233484	9.23921531034015	8.43025172622088	9.00543847513455	8.56761723346536	7.95214830899979	9.08962430967428	8.80473286390014	8.86148962938976	8.90088526833819	8.98559966670346	9.14029765346801	9.21585801147968
+"NKIRAS2"	7.27642557340171	6.86337711503178	6.95992172405848	6.79313851513001	6.86337711503178	7.16296737148303	7.05451560733621	6.90558482699324	6.57917444832928	6.76884346910909	6.86337711503178	6.67277316352991	6.99091621329748	7.16712106679049	6.86337711503178	6.8563153401061	6.5510735573887	6.94871677620149	6.47422509367824	6.87355164928669	6.8523450679888
+"NKPD1"	6.0891261518666	6.16954112858459	6.2405740052793	6.59478385164246	6.2165830176055	6.33153637862844	6.46964488619953	6.34626342939915	6.72695825818281	6.46886950588064	6.24501500112627	6.44671558226529	6.49883692887228	6.443834933189	6.33064474602408	6.53497762287217	6.54367896325785	6.22905568322338	6.40749404563534	6.42778815082875	6.50588746023496
+"NKTR"	6.65847801945672	6.431537558398	5.30692751405389	6.70088667776617	4.88076549323071	5.43588289249075	6.31601944212345	6.46964488619953	6.49512804029682	5.73586417311183	6.77685517799689	6.58998167370531	6.60638929820167	6.44399378235978	7.137396171646	6.45189610618936	6.77702036171748	5.3945863922814	6.71637234734406	6.00921945918328	6.22150747065087
+"NKX1-1"	5.85909397177863	6.2776880298049	6.0617181474024	6.43966486903725	6.31342890754218	6.2174340634999	6.36108005741685	6.04448105424876	5.98908323810927	6.25264365853812	5.88022701329516	6.23716759460518	6.13611368071338	6.443834933189	6.22271785574229	6.22962564943705	6.17629737036536	6.03476023673566	6.09283337834209	6.29731307566797	6.54650889672218
+"NKX1-2"	3.54712975587756	3.69066548188766	3.69339706517443	3.67436823424289	3.71433653270835	3.83906073799128	3.54870177839558	3.44034338631882	4.46111211947494	3.57439874062713	3.66558965443937	3.47115147475991	4.2322843493365	3.90592247123626	4.2443922612334	3.79221283767756	3.88885336710292	3.54017060099452	3.68102971060272	3.62905884635414	3.68102971060272
+"NKX2-1"	6.75432500767489	6.443834933189	6.75868275088514	7.09625992284982	6.43466761118588	6.57635272052641	7.07935767796803	6.9489889900427	6.71934471597951	6.82018942840821	6.89851672967067	7.0038208925016	6.91817178811923	6.65148123200678	6.869134321879	6.7013839927134	6.69845046803034	6.94468837557683	7.06818117951337	6.29595985891353	6.82503870800804
+"NKX2-1-AS1"	4.51695871575818	4.74501259223477	4.93062468379957	5.04602058756936	4.5619813814473	5.44480728892824	5.31615411065916	4.7838153197811	4.96591984781552	4.85329261896177	4.59667698214398	4.83311350351004	5.24689806926992	5.30883464441207	4.83055568904302	4.63637960548854	4.94914479241808	4.7939943459758	4.62445875566506	4.67878336671754	4.96304058894315
+"NKX2-2"	8.41652761264614	8.30869045617865	8.10655450431852	8.30390464637985	7.66851401313358	8.23844253836337	8.18039769029403	8.12131365147058	7.61922322355187	7.32303231319973	9.31764719916323	7.94056087096075	7.80194270249882	7.72007643719462	7.71255238392291	9.60952786249545	7.92605807365616	8.87077905472933	7.88104034224026	7.24209816791887	7.32314370496149
+"NKX2-3"	3.43554420299364	3.24417184772802	3.28127510379081	3.38117364125366	3.26333708789701	3.54127067137852	3.21085613979989	3.29633779635773	3.49252124047775	3.28127510379081	3.09277765197846	3.33722360201033	3.25078439869225	3.43554420299364	3.24183606821338	3.13436580160339	3.15171979719795	3.09837170259281	3.15826597615838	3.370789752101	3.4397277010108
+"NKX2-5"	5.97478284564013	6.23461726713386	6.22871038687	6.26011604661424	6.15233418482251	6.72237959626803	6.77222881200412	6.15418235492391	6.23305315700852	6.20357106398795	6.06977412144266	6.13330869312056	6.40220405043551	6.68658620267005	6.2603249379931	5.98245914937699	6.22871038687	6.22871038687	6.19849020762664	6.20768116198955	6.23803123509064
+"NKX2-8"	6.28274371998477	6.40969598037971	6.65860388769779	6.62527626256002	6.3962867528005	6.5894518280577	6.8115701335314	6.31601944212345	6.72088234161124	6.45563689618307	6.61202481195305	6.6637290971708	6.79694634925709	6.63448746031402	6.60701235713627	6.17152893580862	6.55898764531348	6.44975809471603	6.82911155111543	6.53639252097092	6.87307955915603
+"NKX3-1"	6.05752402847894	5.69226627518098	5.53587106467565	5.8356362146984	5.94333992759278	5.92343856286276	6.04281855749733	5.89708195618327	5.99250693606037	6.03002570856533	5.77127192872887	5.55662885927676	6.32046546387465	6.01730275446235	6.36224297714111	5.72132229238655	5.79978253363404	5.76120014099356	5.75659710640108	6.05903342113274	6.20813420068847
+"NKX3-2"	3.94855759734725	3.96224652422721	3.80092003503927	4.38171954256839	4.14121228788191	4.42666778763518	3.91666131342561	4.19401096816964	4.18990178647435	4.04180096275227	3.7731659081275	4.07792606942969	4.09595319249839	4.07792606942969	3.93965164659567	3.93849104605188	4.02902103000701	3.82779537859853	4.18164244821105	3.96599416316222	4.39949700818741
+"NKX6-1"	5.39892754370658	5.47626382647482	5.79099247736123	5.39586090645652	5.26541917385173	5.69794416427636	5.76002151365892	5.30783665339434	5.61540315675137	5.49266297195333	5.36642980236929	5.55501203901483	5.57905629923762	5.41057769389287	5.33907960023705	5.42894115795519	5.59057301207927	5.17200765571292	5.48542327079899	5.60603666545616	5.58513322802145
+"NKX6-3"	5.3839499713412	5.61052981062893	5.55460359629663	5.90788822876849	5.68331217942003	5.52246715443038	6.19657319185361	5.63124749469705	5.72099279402074	5.85810742062344	5.30342886000442	5.9737861169017	5.82860010039634	5.9841263243859	5.84878282178075	5.5672525325685	5.74102105143201	5.68288003624118	5.74811574461158	6.00856330416606	5.83688101492116
+"NLE1"	6.6005664167175	6.75014476022467	7.08116271110732	6.48584024305516	6.88384004297541	6.30997109772858	5.93438803453349	6.18506092895821	6.4060907922435	6.80707833016388	6.71661444611648	6.69912145472465	6.39451675793716	6.18535469026291	6.3736278806369	7.10098832271691	6.42780447251287	6.91896783085867	6.52440452384347	7.10289149374998	6.80879504721691
+"NLGN1"	5.3233067232888	5.61142773042137	6.03903480389987	5.89108049911679	6.4093789111776	6.39560211848762	5.08572396173527	6.29628714229672	6.24233823747693	5.73586417311183	5.5968254389216	6.1891494381482	5.82780527195494	5.64402332711667	6.47165872397092	6.06385436711463	6.247759432925	6.38595649664939	6.05214415926786	5.9817452907767	5.29754813994301
+"NLGN3"	5.67442294770062	6.22488447197296	6.05679567415083	5.45527233287556	6.02668364477462	5.92517983184537	5.36197504932031	5.48124969607539	5.4834093724048	5.94179303527734	6.0968082004288	5.72928712236289	5.4621035609204	5.66164425157094	5.36906457583973	6.39573198403854	5.47747982435138	6.83008217045798	5.26265897708434	5.26373528258184	5.7009298394654
+"NLGN4X"	8.68579576371266	8.86423258648323	9.50891651343683	9.08475978429083	9.2064013784018	8.83440024173982	8.44762113379647	9.27735697780668	9.37831136011099	8.87902099669301	8.57786369531286	9.08496649481527	9.18530820273731	8.47543792283907	9.56431289212284	8.07453856640367	8.94939011476569	8.64774025860689	8.64645084409995	8.94536766017544	8.71000746617602
+"NLGN4Y"	3.9526432462815	4.0902949677083	6.73183428722998	4.01239714175881	5.75236522676132	4.20193004476259	3.87815380143801	3.95733852548766	3.98804952911238	4.12294559462088	3.85212458324221	6.8702898716647	3.72039574935581	3.68867779385724	7.09976448965497	6.44836437477452	7.13427243572678	6.54060961234099	6.42458708347831	6.95716444987037	6.68648065644502
+"NLK"	7.43637791261346	8.43459790675909	8.16771004506541	8.36509934923012	9.30555668269077	7.38585082642793	6.84218336027205	7.87454032377641	8.66816247556794	9.23002277035264	8.31507791422424	9.52725677504018	8.01477772346134	7.56885414445823	7.95900675234988	8.66180923171756	9.05281581921782	8.81547912834477	8.57041548495064	9.35335868122508	9.3516889445049
+"NLN"	7.16884375455129	6.64585513209721	6.27104057910604	6.48623597184817	6.75178884946938	6.30295329160714	5.8233725362321	6.90660841780434	6.26012784231734	6.5952491473806	7.26192854409439	6.83118138598645	6.04747020288528	6.1365502147043	6.11425157366799	7.18469989736373	6.37088415528339	7.86582693487227	6.58984696044662	6.72197944416175	6.46731749775333
+"NLRC3"	3.9526432462815	3.92185716732299	3.92185716732299	4.22976752659777	3.91747881625649	4.09218820112411	3.88939744636587	3.84088864990934	3.58170719605408	3.96089851493637	4.00599636215713	3.67320139924815	4.01799875904404	4.26366359675204	3.98658764942384	4.12781987258046	4.07209525924195	3.96861248466867	4.02631690340858	3.86247091097029	4.08022174867621
+"NLRC4"	5.15048711987338	4.61552486600255	4.50776502526855	4.48101624424806	4.13294933911549	4.3889565099752	4.67514467055332	4.63059818109161	4.38191767350123	4.53468573975675	4.17755561017262	4.25739801317025	4.75799280259008	4.50581200652176	5.01573968611469	4.38225422842107	4.4486612818968	4.44758190446412	4.65833807351166	4.66020471408104	4.80295635760524
+"NLRC5"	7.42320847029397	6.34173431957177	6.13080136269267	6.03995576336571	6.13701507486291	7.14603980204616	6.24443397539332	6.73103665330129	6.29040730996718	6.21354987722689	6.33931234938987	6.18376766798367	6.22528175453793	6.56086099130426	6.22528175453793	6.59604232057197	6.20779385027286	6.49938698723524	6.14630952278117	6.48583228849031	6.9030047453574
+"NLRP1"	5.74883264495408	4.84509900736245	4.39588943315297	5.02506730249216	4.78180441467064	4.53817559331239	5.13165865042253	5.39066825970066	4.67713849520828	4.94014052741933	4.9871498586539	5.02137038904013	4.81004323322964	5.28333593286153	4.88000347125128	5.07280752363339	5.26341147513526	5.05317707733968	5.26118600765698	4.9849320283746	4.75817050719899
+"NLRP11"	3.85769237739905	4.06480151786033	3.93754828064483	4.33124765995341	3.93811741132878	4.03057506683694	4.10437565102678	4.21369932718302	3.78825028652462	3.99194224869817	3.92091702232448	3.91029473517803	3.83749160461199	3.90882538535162	4.08860729447279	4.08950244132383	4.09133122267101	3.76120447513098	4.36353292149328	3.87732353104967	4.03057506683694
+"NLRP12"	6.47624103659808	6.16133055649465	6.34485176337308	6.4687760904476	6.36333175175811	6.88466850803618	7.07037597653197	6.42018283378599	6.42914854721973	6.50940082941766	6.29678310475521	6.35708645557942	6.46684138055727	6.4159466304982	6.4159466304982	6.31849617770091	6.45499542288739	5.94173908077837	6.50516356219084	6.47839411333257	6.42921592833556
+"NLRP13"	4.59690089887677	4.61552486600255	4.40691521363295	4.87049723760019	4.57513878607054	4.70600243452595	4.68964321663575	4.61738986277418	4.80034306955918	4.89135166357125	4.5906559634673	4.61069018245934	4.45904810120845	4.55534674856361	4.7872338567654	4.93917214307192	4.63262256668333	4.65707266374247	4.70783478148189	4.44825466978425	4.55423262508418
+"NLRP14"	4.66066366223664	4.6879997085899	4.49994507977189	4.59355604364804	4.4338526546948	4.61443362749837	4.75062528418254	4.52794282963174	4.81678824547232	4.73150203762978	4.63460672352573	4.63460672352573	4.67630153116091	4.47946609503653	4.67652597249171	4.77119600882659	4.75799280259008	4.3226500245445	4.52577262728017	4.4453110394364	4.64107781619763
+"NLRP2B"	5.22606383108749	5.32875288968075	5.47146217759822	5.12440251906651	5.46713308907316	5.22025635773318	5.11863063882253	4.94019173133645	5.2456262834702	5.17555050964731	4.93598422773523	5.13478692556489	5.37213263123366	5.3355697125347	5.22025635773318	5.03302337201539	5.27240562178868	4.96468344664496	5.24447578032165	5.22025635773318	5.53863019783885
+"NLRP3"	3.30627270553787	3.62468728288585	3.53741376891322	3.59847468879216	3.56878454453893	3.39874313672406	3.40810195917957	3.6043315802145	3.64244440333094	3.43930897975566	3.39342485170638	3.48303601113092	3.66838617116164	3.63054236817791	3.53741376891322	3.75827355457021	3.69296484462465	3.35182244632962	3.64681523697613	3.61312379097601	3.39874313672406
+"NLRP4"	4.00967676648148	4.31639812111079	4.45902893134563	4.38868458282386	4.29820457604944	4.56048482830781	4.81771160702949	4.0382805342866	4.2947976575029	4.52849050943619	3.95874622030137	4.17540592672844	4.20954984641821	4.7726301181932	4.2453816191754	4.25567433403127	4.28332213689332	3.94470339782887	4.23293733837867	4.36299547082876	4.60538698256127
+"NLRP5"	4.38512952016807	4.63268389365942	4.56256333931858	4.70330590175963	4.64926389152436	4.60932502850409	4.75742205007957	4.90797310419576	4.83576600055314	4.77815257146831	4.38195702000894	4.66055837030994	4.76280265321738	4.75743726564267	4.60256903534281	4.69833412090125	4.67200383532367	4.29007072043695	4.67965082675214	4.72025310747892	4.39595115966107
+"NLRP6"	4.30923821664179	4.25976054335055	4.17084136860834	4.45503733336714	4.36067642995281	4.54268591961991	4.72203454343056	4.16853115346091	4.60343079847125	4.45503733336714	4.26899702314424	4.49451146173641	4.50368854122072	4.83460877536599	4.75541462597863	4.48448073871624	4.71401300376882	4.41578580922794	4.65228166210216	4.21624825700811	4.61482443233807
+"NLRP8"	5.55025816469002	5.5998168388451	5.54420628056047	5.83510351713541	5.61378740241888	5.63310417758047	5.68189638629327	5.68252365059641	5.49363345658325	5.47170054238057	5.63917814653913	5.55414428234001	5.62561280434752	5.67849435524731	5.45632167142588	5.98751040093731	5.65530867939445	5.48568439061734	5.61355807932158	5.48442384257391	5.53147984400162
+"NLRP9"	3.61259133468913	4.09303108472232	3.86134782227879	4.43839163169767	4.08950244132383	3.75948352096889	4.13807181142671	4.08950244132383	4.23055773277222	4.13164304290465	3.93918584273366	4.0816900079299	4.21060568743844	4.17952356229754	4.13714248821535	4.26725307278085	4.31544255984292	3.84054160309622	3.90408523097924	4.13807181142671	4.41905813391369
+"NLRX1"	6.31219779469712	5.98195862516118	6.20120165032317	5.92055148846812	6.14186068113037	6.02696144459688	6.08235819876122	5.7033304903914	5.50932521742615	6.09216279260895	6.2095334128938	5.96824482484959	5.82648687307589	6.10683142130537	5.80462157052641	5.99704667880806	5.64369245667129	5.82072489773881	5.79913354359735	6.24397331797535	5.9535698553211
+"NMBR"	3.94587181465688	3.9313336113424	3.86099213114652	4.10175413803305	4.13334923815102	4.12672622301119	4.09112570177816	4.08606103086582	3.83586897020827	4.08126247842821	3.82710172154377	4.06101533681308	4.05334162390588	4.21585542243261	3.92956823004496	4.05334162390588	4.10034107231462	3.96779852709763	4.42968169223414	3.8863627295489	3.93695573785992
+"NMD3"	7.74298934249603	7.61781022967471	6.91035994263473	6.89776272457124	7.52492691842735	6.30908069419133	6.99571162069199	7.69535599906456	6.93061255272707	7.43079419221189	7.81883323803457	7.35114122824285	6.51832562242013	6.48354736997016	6.55760306617614	7.74586798107986	7.29341814195407	7.62857410365348	7.43156948720214	7.38073524408038	7.15611754216481
+"NME3"	8.93489781451904	8.6290318981331	8.76891862899302	8.52628151713928	8.40009231346684	8.75658181501683	8.87923729454344	8.40800181393691	8.67033371966951	8.53730178223372	8.70275595722316	8.32890387898792	8.4997446965425	8.61756829536831	8.70850495366105	8.66851305703498	8.34749027829768	8.91148781667917	8.62922041932552	8.67074670823149	8.50758551336066
+"NME4"	9.2534563693764	8.64202757111257	9.0297573642392	8.70448430386553	8.66309858386546	9.46485045986615	9.2380407195712	8.76484632328282	8.61926852824496	8.76890486326941	8.80456098578154	8.69868333068506	9.11585128044321	9.3699428921699	8.79620810757106	8.15217576101304	8.39721491431556	8.67396158743138	8.90318298189631	8.86180798936402	8.4228277516725
+"NME5"	7.9490789773705	8.35658330420496	8.52185913225397	7.80940487148356	8.81861238442556	7.05526827160883	6.592553679449	7.8561465175443	8.12440800422236	8.78387207736423	8.0720058424625	8.63727602995072	7.87327172998117	7.15749239012093	7.73045874130158	7.84747033101919	7.98663325086485	8.10559672737286	7.61519997850178	8.27123989287146	8.27129380556276
+"NME6"	6.2826665480703	6.09070307867822	6.01232320345135	6.17986729196746	6.05673115364612	5.52014163534205	6.17577582768086	5.65550873242859	6.08464215889693	6.25162080206359	6.26855783580081	5.57535221806346	6.01042841330303	6.40005553431872	6.26655198023843	6.24443397539332	5.62188884304032	6.09347041944366	5.86758628862529	6.14825662369348	5.76790422520527
+"NME7"	9.6084979672727	10.8820098909488	11.3561849833861	11.6189354703151	11.8573846785313	11.8734502249828	10.1656812211852	11.0170997686294	11.7176986004776	12.0788871127552	11.6438178988718	11.8951837146258	12.2586187478073	10.6201766108574	11.8157309850267	11.8780221839957	11.94215016286	10.2393049835481	11.1040791392086	11.6334218621674	11.556336481805
+"NME8"	4.28979820586605	3.91977967638055	3.4777721189889	3.92508406222345	3.79340624972589	4.05232222159753	4.15208892540975	3.7487433478624	3.80042191451096	3.74829777728068	3.63185361654086	3.84140461671502	3.87705691695112	4.14077080445266	3.84001556734347	4.12876956445389	3.88509171534632	4.35719150046677	3.99640034399719	4.01456855727697	3.89750769692117
+"NME9"	4.8266225218798	4.6697812684868	4.26360515725482	4.54743441381416	4.46968862314216	4.54743441381416	4.4761073251116	4.21702159824837	4.8473662114612	4.35608778861425	4.42912478208326	4.61560849534091	4.74481884402177	4.42785931776581	5.16321131175248	4.72083029964895	4.71131002359951	4.29273951466716	4.64156263861503	4.3872435926821	4.57528906921144
+"NMI"	7.72110497258867	6.51779968812521	6.3085822890664	6.69005107723042	6.00670622707959	6.41355558215991	6.62084897752074	7.63791582128031	6.22824691885674	6.30430322020018	6.87454432148369	6.203097893041	6.52141623116222	6.64074214767098	6.49064355867247	6.49953567795953	5.98827071129782	6.56426392540784	6.64307749022164	6.47578511930005	6.78462585666422
+"NMNAT1"	6.27081047627506	5.87285414783101	5.76824354540353	6.32874123635071	5.59210763476239	5.23297537057576	6.03746763100817	5.97761193102234	6.17880503457238	6.08261690117155	6.29646204203898	5.66128153398499	6.08991911369247	6.43327202691761	6.17031633326064	6.21755886485071	5.96259158604583	5.82667547729494	6.0268456023735	6.03746763100817	5.79466775505561
+"NMNAT2"	5.44853705608351	6.41329625119951	6.04566898624723	6.20674999091205	7.63379758237639	5.02911786542874	4.78805385142573	6.12562909695429	6.25897993276546	8.27524149079751	5.5614544009552	8.26007974125046	6.01307695936442	5.34441070622936	5.48110600066964	7.39545902277154	7.50254900206502	6.25897993276546	6.39150831719335	8.38742506909526	8.67684889704727
+"NMNAT3"	6.78283958590181	6.90237709266814	7.10393080130032	7.25789444570371	6.78010900326653	7.60761913533693	7.65916977174062	6.87341541506643	7.4411662509423	7.2678919230795	7.07266233105685	7.07020227107505	7.28193154751261	7.47930961291643	7.20902891459869	6.81318456528205	7.07053793134911	6.61144649195008	7.26416484525954	7.20106006000081	7.04565813042622
+"NMRK1"	4.36913451510684	4.51431621101319	5.01927668871185	4.26280063300365	5.43859408122158	4.19835529654734	3.32812758083026	4.39267410676429	4.00944585292668	3.88562532918375	4.31695438203234	4.48883178150586	3.62589837570552	3.89285320509387	3.65683711083592	4.5117470373164	4.60918677318706	4.4639965426867	4.03771313355036	4.15728478766841	3.86382711673101
+"NMRK2"	5.35182138487595	5.28876262940009	5.60002694853562	5.64222131907205	5.34897286701055	5.6386005391553	6.05592207292841	5.24675846645211	5.5416937103325	5.69840146547487	5.03552931153716	5.51570225399067	5.46694550869085	5.58968360095595	5.24702633025344	5.22070833359528	5.55342545414268	5.12373520111502	5.73824281021163	5.6438716151046	5.40226399471818
+"NMT1"	9.15447639688163	8.38226582056336	8.16327585101988	8.18011236510023	8.19756382754937	7.8388428202238	8.54673435566578	8.9341282353856	8.18053162298176	8.65585838465658	8.68289662862137	8.79938598086846	7.96983562625439	7.74534832552336	8.36583695814655	8.60714378812671	8.55889237942819	8.48821156749471	8.74201940012919	8.89155616647344	8.72972244547882
+"NMT2"	6.34395182547859	6.87004046254447	7.42951071051713	7.44378361690692	6.8509128094262	6.89436144518889	6.82425984827984	7.156800183494	7.29997885491321	5.87275755679131	6.28064940762994	6.33571552327933	7.71096380513325	6.84705691641672	7.72498643204326	5.98737603366594	7.44013146958723	6.69849982785643	7.11631952192942	6.22619955772884	6.93798770178591
+"NMU"	4.82832784762484	5.0599192036941	6.20493927426698	5.2272095405193	5.66522380150533	5.1175558799456	5.34551850900263	5.24751777628062	4.73677700050116	5.3252603479945	4.9177162098031	5.39880502041273	5.16926798647155	4.98764329446691	4.83201455170068	5.54228388738632	5.21308965139102	5.34290144945767	5.07882210145712	5.6365514174025	5.2272095405193
+"NMUR1"	5.03577646279192	4.84482733542912	5.13545600852356	5.25421941169881	4.8685688090824	5.33508344535607	5.46908538223311	5.0727557787471	4.86347289869384	5.1564329719686	4.8263862156744	5.15058164026976	5.24547707531743	5.40681198275995	5.28437882898049	5.07132118929217	5.19657730282201	5.32868697483531	5.14822336977823	5.12906069912838	5.36545435701893
+"NMUR2"	5.84779766469537	5.83248299652661	5.70768807309159	5.92593845384916	5.67828568655162	6.23509647065245	5.83793273051264	5.76500536145535	5.75660181712174	6.02263260843666	5.48317960257236	5.46108439839272	5.97548629793016	6.17131263945304	5.65006590751539	5.914695730979	5.76500536145535	5.66330048850039	5.67461059957541	5.76348750172559	5.84820831273733
+"NNAT"	7.64424375706763	8.53067355928695	8.59532470431281	8.83975151168574	8.35072145313813	8.45642659331488	8.02945519039821	8.03013255643935	8.60700059550994	9.09214405332159	8.16143450859933	8.56810068501935	8.63843887152614	8.27945202413101	8.47807355429921	8.30983025935385	8.33961339675769	7.43282458030165	8.52647463802791	9.40050589679714	8.55516178140789
+"NNMT"	5.79001076965182	5.67593138489352	5.96413065994864	5.56192887369222	5.93167315762479	6.11431978600634	5.50507730992238	6.14516817377078	5.75144565983666	6.44659382898926	5.47831590142259	5.89638845715477	5.36413316870453	5.92021850238877	5.39482285772441	5.56431512608988	5.11693336093462	5.72919627224883	5.94913024957562	6.9252080427597	5.86259218017128
+"NNT"	7.94937343698222	8.17252869054069	7.34030898673065	7.58768681961654	8.61136086506978	6.91081348611007	7.88341887138731	8.00875279642225	8.19196596062386	8.59095392682696	7.64489333812569	8.45358978202599	7.60508083638261	7.01289236700537	7.65063517090708	7.85014680186325	8.43819886513932	8.24246157229158	8.12286773724633	8.5732827407705	8.62346923508997
+"NNT-AS1"	7.73249160511467	8.08624963627217	8.03027270708712	8.57594812787886	8.34041004038731	7.66944219228483	7.85216783721479	7.94902204368744	8.07179153818059	7.67213180399088	8.39064861976467	7.90493907754811	8.58637049561165	7.69142542264417	8.65266196545078	8.04728713157353	8.09629614506659	8.19841355202418	8.54610538882524	7.91856733195968	7.92154670027396
+"NOA1"	8.14793187098905	8.14390488872943	7.89169471407935	8.00733879869424	8.38516978279212	7.57381253660959	7.81883592358553	8.13129750202992	8.18493968077705	8.25377011148071	8.25364749655846	8.18112133649588	7.84294037128472	7.68786339562276	8.03811729921685	8.58485797631447	8.14153021526283	8.53372019214053	8.08467086415557	8.25974814722716	8.27172611681081
+"NOC2L"	5.08961543800521	4.93956363198741	4.73599828476071	5.43141547223631	4.64109020562818	4.92888328738544	5.36487651800638	5.04251274523243	5.45124121372987	4.79023379069679	5.30661829227999	4.80547240382576	5.59821299385309	5.36597648832287	5.37512101218241	5.25791986510666	4.86867674075379	4.82951338516418	5.1521134940377	5.17085063776043	5.11328316043556
+"NOC3L"	7.86771111959133	7.59583580722258	7.44969045385057	7.03931340610754	7.14162895164963	7.12988896592335	7.50281964914903	7.18691346091494	6.98364070297779	7.24519783326014	7.72179202532697	6.9917065235579	6.97275129296623	7.52379766328418	6.96212849813137	7.76326233467819	6.92465946867933	8.12303568362291	7.49028275877759	7.45204643358829	7.30428081498184
+"NOCT"	5.60252269018938	5.56705871721691	5.6545712205523	5.85552871602017	5.61365293098007	5.34929140445601	6.33483024159006	5.5889952886268	5.768214222086	5.60525575485078	5.48825723674233	5.50294300452798	5.83548664402615	5.73302568353329	5.74950596245135	5.70755668572622	5.80744862888309	5.40295813708184	5.84222769656379	5.42893819564102	5.6545712205523
+"NOD1"	6.27613526771997	5.69235831308706	5.60639859288201	5.72350142518995	5.75486476985509	5.546218240714	6.55491605510614	6.30600369524118	5.66259508331876	5.7611022699857	5.79560484661264	5.65230058378379	5.59397560926504	6.05876080221335	5.39722606666708	5.70574757230039	5.72827942726919	5.73536519880705	5.90258700362798	5.93565744903606	5.82044835985698
+"NOD2"	5.550495731283	4.0064681544436	4.09166774319482	4.07605302923454	3.82367490364404	4.34534959265968	3.96124105657099	4.29073357053759	4.08950244132383	3.96998205195133	3.7208038388722	4.07792606942969	3.78786650943548	4.01793260512626	3.97805880849207	3.99427526873562	4.24715322690762	3.85837591860402	4.01611074152348	4.30768589206202	4.33498615083905
+"NODAL"	5.54099966494429	5.66978367413556	5.83925757329412	5.70863217560793	5.61365293098007	5.76180371413106	5.82294006795998	5.54859967428661	5.76511012924736	5.75826300809608	5.59348428696169	5.59225193894299	5.86045654503201	5.86737364482981	5.6851964429504	5.55476591756855	5.88224032968976	5.49683916661829	5.47047397494695	5.67393616885889	5.94439042126258
+"NOG"	4.67960541596718	4.76797414477092	4.86287846854176	4.6118702858166	4.42800480142302	3.99321485246642	4.49852897839739	4.2493817728559	4.55786586578682	4.54751080496412	4.52668555672672	4.25270507945285	4.99193908341674	4.94214441174715	4.85327143761216	4.48183673567735	4.58626719534669	4.92161695427026	4.43274696160929	4.54100770514213	4.21947506720584
+"NOL10"	5.24845806765576	5.41601837496304	6.10271985819724	5.2087671354317	5.72574568197329	5.83985669173174	4.96603784982724	5.04723476875324	5.2472194461483	5.18861910663291	5.27265338188948	5.12444712375966	5.23424165453865	5.18796956494391	5.13763604834276	4.80365300950344	5.03074164839259	6.32941854255867	5.02569276384877	5.4294909301109	5.33041049414729
+"NOL11"	7.850321115351	7.77947409987242	7.94510530438793	8.0160464063007	7.8390103524616	7.50254900206502	7.4015597554455	7.67574190827049	7.81574427694024	7.54032372215927	7.89877503519153	7.48231750287051	7.81769161584566	7.60163765668574	8.08031514126288	8.17295284458738	7.35149852706468	8.48816882843691	7.99427116372288	7.88466908922043	7.66063381660838
+"NOL12"	7.49933614942303	7.54510364453713	7.73912492813553	7.72965207436327	7.22412178971354	7.56483122423134	7.80855697516304	7.60720794140199	7.39832942487794	7.15319140106916	7.53565023211008	7.16712106679049	7.57683947361829	7.81852409692091	7.58404597048248	7.54621655553225	7.51820494191073	7.66517840884213	7.77690340461589	7.39985192920762	7.51344488933537
+"NOL3"	7.33731443593777	6.68297613001	6.5500698661259	6.67626435404658	6.55732357357799	7.0308804877099	7.58132245387895	6.90247317644969	5.9180578060454	5.97386497284869	7.28416134950341	6.38226381254898	6.92313616316517	7.40513951713241	6.53330487862035	7.13032709359118	6.52577505171506	7.48679691061223	6.84372715403596	5.81621497758979	6.45942222030531
+"NOL4"	6.43352697656658	7.66352272197797	8.19900118471642	7.69625772489389	8.05521089418804	7.22435519992831	7.17239868890006	7.9044577935413	7.9929074486284	6.92945007592497	7.26187532408141	7.68472951734167	8.00097601972202	7.3259591691065	7.9856577724282	6.41721490287461	7.64296917375681	7.33494780846475	7.97177371441127	7.64296917375681	7.18350742128449
+"NOL4L"	5.23670029624632	5.02911786542874	5.37689720072179	5.92177250484035	4.94945339679743	5.94277408270758	5.31253116521682	5.30414423973762	5.87402253763651	5.17827490988811	4.84919237203954	4.87973787272432	6.22528175453793	5.58735367780303	6.52317127720311	5.62848617095165	5.05957411120785	5.78517576834606	5.45252984620391	5.35768538654654	4.94512595119261
+"NOL6"	5.27197499694408	5.25255474757163	5.06636408986411	5.02956569964732	5.02765834057596	5.47747729307224	5.02688437528152	5.06574929041767	5.11651900138197	6.02263260843666	5.43036850898958	5.57440282304128	5.33581662337821	5.68510897526673	4.84234269840723	5.40511858314464	5.16015657566011	5.04606818758302	4.9842711404456	5.33691139859507	5.72923925640951
+"NOL7"	9.25978328689503	8.83200514970958	8.55809002393257	8.79175645460869	8.73765421869745	8.33224808490738	8.46869886986888	9.18871984613007	8.79860290155395	8.73765421869745	9.02580948353339	8.61015835477456	8.61609021562312	8.69185114153731	8.67183305250623	9.3820710747881	8.55472820367853	9.03217737452129	8.92793713989446	8.73765421869745	8.67601067580869
+"NOL9"	6.38573507170229	6.85927110088378	6.42716678958973	6.52318434486747	6.45741635694455	5.75834858654224	6.19754819344635	6.22384351569224	6.87688433805547	7.32455150259948	7.20625222046621	6.70217596653661	6.626462274174	6.31396917280702	6.77675468695851	6.7430491258284	6.46809371241148	6.21977483161504	6.22384351569224	7.19405514752838	6.87190603932464
+"NOLC1"	8.58250786646533	8.1935930967467	7.79333092305535	7.9364895400647	8.51569393502645	7.86415966390066	7.9996027065852	8.1224098709002	7.85505486792087	8.41688035411962	8.1707089408912	8.19220731329383	7.98218661482747	7.7524498242944	7.41790411692979	8.33610110033954	8.16005138771773	8.52824797500566	7.98582513576297	8.49479198279858	8.62950026799263
+"NOM1"	6.73055034025751	6.68576438113547	6.01032880176043	6.67199820186695	6.53639035746042	5.944433539601	5.86361606022122	6.75814606993319	6.70847828018697	6.73188430829812	6.62249009445852	6.60509687861759	6.25555063344896	6.38457306793853	6.55614368191586	6.2674401284126	6.39675444777248	5.98737603366594	6.60259034720662	6.80868690590389	6.71563745604977
+"NOP14"	7.49833435942842	7.27835781385408	7.59605885792217	7.35530074270218	7.40377987173333	7.70091762970515	7.68795103064333	7.56899821105819	7.51880453266024	7.35668974792514	7.32226139439686	7.19425282889669	7.55616564677215	7.49849989465815	7.5493687493282	7.18928656160751	7.43626673708063	7.35818224526778	7.46232010282072	7.50706871657474	7.40133394201669
+"NOP14-AS1"	5.67314201430734	5.13242394683762	5.22976979758213	4.61552486600255	4.98217408961194	5.41354651130684	5.64708762296244	5.4201182243288	5.30086153343445	5.10644220401918	5.4388101763892	5.05548625835447	5.21191987635968	5.1307059448025	4.86172590028892	5.10703617284131	5.24830801954062	5.34385878883821	5.13242394683762	4.89700935764039	4.91266470560713
+"NOP16"	6.23141775825483	5.81108430286647	6.26065213410191	6.03834008081719	6.31671616108787	5.8920668116148	6.19293168717222	5.96668269176176	6.14505941677971	6.54165129786108	5.63015593472161	6.32966683709882	6.15838343234889	6.11311349648866	6.35741342626697	5.95670914186113	5.79411245104731	6.22633316886575	6.12607331930821	6.68031439647919	6.60795028614844
+"NOP53"	8.71811341717215	8.36624835637265	8.60086460504577	8.24410972998202	8.43816649270024	9.09521859498324	8.58145115398265	8.35077007452067	8.70690387620322	8.59149692046242	8.76063232058618	8.5874445013286	8.26665603345835	8.53890262375763	8.25253723163466	8.45301210494959	8.47817218099031	8.53419955072334	8.70371606092288	8.62823627054595	8.44060484575374
+"NOP58"	9.36199957506263	9.5279112354944	9.86513572759917	9.73567470913579	9.61025414926869	9.56712649657014	9.16735816398904	9.99941405740283	9.60994593375315	9.19039616719084	9.4081910651719	9.35354844343301	9.77143297392329	9.29837936306522	10.0245478129588	9.24652476835253	9.29072899706881	9.47815600006069	9.47476059017354	9.28849852891945	9.45934656548173
+"NOPCHAP1"	5.84558024064682	6.65417539385158	6.72393002791445	6.3466260988202	6.99182287819123	6.22198765483051	6.47215391015584	6.23741820239776	6.53624130894241	6.77247689491874	6.3153785641146	6.78667558127277	6.16338232955149	6.02790953206288	6.47039584748767	6.71579918771245	6.48812997227037	6.41159776717235	6.36930194119181	7.04114852026787	6.63858396020547
+"NORAD"	11.3983903638834	11.7708706543516	11.9144878922611	11.9885747130724	11.6738320988958	11.3454129003499	11.38259497837	11.6190982925685	11.8661367671454	11.7486362995921	11.7800539119487	11.7803262159585	11.8075586385969	11.4302253600908	11.8959201544433	11.5774845087196	11.874474845384	11.6133119584669	11.8261154344857	11.5650821681106	11.8869814124071
+"NOS1"	5.92553634732532	6.59177655717489	5.86304199233501	5.94711758870514	5.98706295646748	5.8183855247725	5.4979422248196	6.02933972804833	5.70903393223268	5.97330684354981	6.55817453221893	6.29342345347154	6.62483495417513	6.69605241510394	5.93822875252845	6.35257981725541	6.27228425580049	5.62284541818583	5.92553634732532	6.52919126417825	6.68525168888194
+"NOS1AP"	8.30301297693557	8.85302444737292	9.26848316385521	9.00597569152997	9.12852753876809	9.64719218881161	8.61124220050082	8.80599384770737	9.05931580054571	8.90716168076637	8.55383326328665	9.3245051763456	9.03684308315229	8.87089497602353	8.88809343042177	8.2821239060727	9.23523110339072	8.60505081263902	8.80398977144471	9.01362664891374	8.94688228018097
+"NOS2"	5.96058518535486	6.10997681375897	6.19076335521078	6.00312379450852	6.44413205206702	6.18822646103856	6.6515517306632	5.99154845640086	6.17923385996788	6.15569437883863	6.03005025506461	6.15375428813064	6.02789736666907	6.2570535636181	6.16022740642282	5.96928548691478	6.23544854160023	6.29764944658848	6.10271985819724	6.27465708772177	6.15569437883863
+"NOS3"	8.4538280614017	5.9039256498765	5.23045797676844	6.48977222572925	5.75341768102932	6.93811125598975	6.39877993114166	6.71447179504303	6.11656548803995	6.19090719485407	5.88437487258272	6.51487348184805	6.08439156690522	6.82390002428263	5.88601156382396	5.62527698006543	6.17949127104977	6.16189792368062	6.02486294988344	6.3484177062266	6.42526280605593
+"NOSIP"	8.37258079217339	7.94166508196524	8.98327549402487	8.10051580376268	8.36334372964292	8.65221860025742	8.21973748665214	8.14953675897693	8.30218038495388	8.23611227257736	8.18930241644627	8.09216360271335	7.95874898333894	8.07661308893314	8.18913464702181	8.40702085274765	8.01472335639521	8.84492458242035	8.23611227257736	8.35790871706428	8.15601729378009
+"NOTCH1"	8.17899164336945	7.74892191134726	7.41691980721438	7.58722468804503	7.11581214357192	8.21473795290948	8.14571108006322	7.37397838830388	7.17138224298363	7.35171754907339	8.36683425579488	7.1660217618143	7.64237758607362	7.94710369541224	7.35299069610454	8.02496259908431	7.34181485248643	7.99465742001226	7.43979156694636	7.37008303674704	7.23903676839588
+"NOTCH2"	9.59713345037101	9.11981515122681	8.10125853962016	9.02264285534708	8.85782255395971	7.12791600874366	9.55218400252795	9.17381821338672	9.02987690026004	9.04796222750675	9.31825720726898	8.72295533199292	8.30529524929708	8.42088770567819	8.03972402291662	8.25220293101902	9.1148394970931	8.59109903913061	9.07619569590441	8.7907452214645	7.94813176240808
+"NOTCH3"	9.45925563422717	7.6394140248755	7.57345749677497	7.09938019823919	7.77841199866719	9.16063908925438	8.50772801170263	7.14251302841105	7.0500096753766	7.1866278121232	7.81445864619908	6.69814627610847	8.12320491986669	9.00691614761167	6.79679435478731	6.72387332569207	7.64031023555893	7.19364430745277	6.88293046987288	7.60082645022564	7.96008954805997
+"NOTUM"	7.34989637129052	7.50879995332983	7.54399971811434	7.65704257283014	7.4127671646689	7.76791710109941	8.10365662372429	7.41208796989475	7.75476932244074	7.54683330983212	7.39452653757964	7.60920002677472	7.80664784025275	7.70920690791593	7.56705358411909	7.38024243841444	7.45167185634571	7.17387310915061	7.69025734479698	7.45066822010319	7.73161103243053
+"NOVA1"	8.7201949907363	9.70130276493073	10.0256280837666	9.66119517231815	10.0676346482499	9.20128864701855	8.41780526510416	9.22459072270181	9.6411338621177	9.77282740964868	9.23693922288796	9.54945004103402	9.73895616148941	8.95794622295594	9.45504617415058	9.63529718926961	9.82096613128857	9.65225703015883	9.65520357134633	9.87814701552762	9.85541640589477
+"NOVA2"	8.83529734324437	8.85866719452866	9.25293084470461	9.36202950582932	9.02310458307415	9.30205444342246	9.37154643511842	9.24858523147745	9.12984954934975	8.787922523297	8.78478193088763	9.28367784237348	9.19550942545767	8.9949954679595	8.91709590264848	8.25007111822662	9.30117152193433	8.7561147567731	8.97258410065617	9.09507757748843	8.84683822150512
+"NOX1"	5.82327046735493	5.97181930557122	5.74637901901613	6.18902521443021	5.94622456789728	6.20238972710821	6.23964298949791	5.75154770048883	6.19590518113944	5.98602091318992	5.93998826856768	5.99491693611972	6.16660992574322	6.10791719961874	5.99506200984152	5.96603663398084	6.08876757183223	5.50632650877746	5.7662511083396	5.98304351766738	6.12700651216784
+"NOX3"	3.9526432462815	3.92893040278644	3.85833396182613	3.88509171534632	3.90032623786384	3.87598223730257	3.91143824935515	3.83080225573264	4.1691068419141	3.8784003597785	3.9526432462815	4.5117511661151	3.93668319481726	4.08005693482378	4.01067547391735	4.1021523210682	4.04175086342605	3.85496192559574	3.64344454313988	3.9526432462815	3.98276533805771
+"NOX4"	3.66199928681442	3.34696093106019	3.65478293943223	3.56937850663073	3.64243068866269	3.82135610253149	3.39156169985418	3.78131243309231	3.18111914258401	3.58430564217231	3.50117372901666	3.6120914631475	3.32528643157028	3.26877424899009	3.58001006776749	3.89895688490788	3.50531103712131	3.44927333376118	3.58657035912302	3.81016512753651	3.71352859332597
+"NOXA1"	7.85971401988559	7.9843738242841	8.41819820669131	7.84789506578285	7.92739094697998	8.12713821117569	7.71934156741454	7.84851339648758	7.65959396982295	7.94442883010561	8.00219460915334	7.95395485608376	7.90413301328553	8.08071830642234	7.58455242185643	7.65229388462513	7.80343253134819	7.75484235650348	7.98072864284603	7.92811511533907	7.96950684490891
+"NOXRED1"	4.39414840578443	4.74028811573393	4.51141758671544	4.80396751549731	4.54767573352871	4.42589697119934	4.86012448658087	4.48320956020932	4.84377192512665	4.7190203461047	4.22780541952504	4.41958990138171	4.58986955984789	4.77042719599356	4.47055419334377	4.98125658046268	4.65476623027566	4.59481108689904	4.40245915462845	4.42696070206896	4.54767573352871
+"NPAP1"	4.64798832542261	4.88418107069395	4.65198369001782	4.91935558999852	4.77347221228314	4.76164580325056	5.18571499192965	5.01224501091212	5.16005557859745	5.02360121807948	4.82498696336072	5.21134579977913	4.8783484188659	4.57963818530848	4.78122429055198	4.91981938149483	5.06592553465763	4.75007065122859	5.05990348270038	4.72671622067971	5.1191513439923
+"NPAS1"	6.41989267483105	6.34931912803653	6.67989639903323	6.56987472709721	6.40532446933088	6.86274752182447	7.0740898748591	6.25975585486541	6.67376730281873	6.63844200873766	6.34869260269951	6.70052456767945	6.65557567367966	6.7295819437036	6.43571487990023	6.18889948786878	6.43135756124968	6.48123231716228	6.55905532902029	6.63373743615881	6.64054421264589
+"NPAS2"	7.18155353374224	7.26681083751079	7.97896955120854	7.59747563822255	7.42872300712716	7.57320846789718	7.37027410139901	7.20936769443006	7.6276708575111	7.18532992163339	7.16789481233257	7.06523884143794	8.20564687935029	7.41093117186246	7.53128597090356	6.59241786972425	7.18057254555926	6.97385996179912	7.18156456461427	7.20945700324068	7.23601355765494
+"NPAS3"	9.16529849745955	8.26621927550429	8.58097462131246	8.24208327376296	8.26668202206064	7.87560263331081	8.81301199635001	8.84862229556613	8.29980816521006	7.48650327399084	9.16912662037126	8.24486952140556	7.75994937540604	8.35324840448447	7.66916197362107	8.66890666495669	8.24962209080659	8.298673304971	8.05704005773148	8.0080101250655	7.43076363836583
+"NPAS4"	3.8328285960746	3.90984336854813	3.92510255885662	3.74866074363188	3.83132907007073	4.51475764628695	4.01706493697047	7.21456242524574	3.90984336854813	3.90239884154655	3.74520192762505	5.34699415397943	4.19508456512399	3.84899810796752	3.68608704087965	3.93295145753588	5.93677191233105	3.44927333376118	3.88666814350392	3.93563667061578	3.60245892855222
+"NPAT"	7.74083102545251	7.54462241612548	7.69370608082445	7.23618664625759	7.52669788761404	7.33838907376855	6.92949896357406	7.31181146311976	7.13081736787554	7.34955659237883	7.67310307383885	7.04676769145299	6.92629794042088	7.43033307922983	6.94989313267726	7.8791830856771	7.34892143334387	7.90064790237003	7.23982737143772	7.4638283102758	7.33448613978625
+"NPB"	7.40834006106921	7.72314966040829	8.01873364580315	7.94895910867927	7.84016321903666	8.02075591401102	7.7342671789695	7.72998973575888	7.77561941656366	7.85073332810923	7.71215462631233	7.96012405614417	7.79183983258658	7.70310241747472	7.52805450460559	8.12144185994157	7.67109774360012	7.59712265092893	7.42628097253221	7.87995564695669	7.77332570520194
+"NPBWR1"	5.28650944393543	5.38868970678135	5.35382848225013	5.64657138893046	5.32449352110223	5.91331598464374	6.04709537453929	5.33853103959405	5.5940239453308	5.33006977955806	5.36348993793919	5.24654503740943	5.51246310064227	5.71352429932158	5.32808996481481	4.96572175929205	5.22820221942972	5.15410985728417	5.38868970678135	5.30754558376746	5.61758356929177
+"NPC1"	9.90539186140211	9.63111193343643	9.21440782955967	9.399253092119	9.39303186641698	10.5915697496201	9.57475880020782	9.67649777893161	8.58608379398941	8.82536360401393	10.4888205521711	9.18055412588558	9.34504913041553	9.74484412197025	9.09915616359942	10.8718248486381	9.42713923397625	10.9566571677352	9.18695533366827	8.58180912886703	8.79991812118918
+"NPC1L1"	4.88164684547456	5.34306715153512	5.30405574651614	5.50076182085259	5.18107894282735	5.1491779381744	5.51159484471982	5.34306715153512	5.5078151395856	5.34267022098995	4.88884642211813	5.37989929949337	5.70748052923561	5.29910753575994	5.87389563569506	5.21229986558345	5.49186014986416	5.00894780163988	5.74434055126836	5.30745236948201	5.40636483533704
+"NPC2"	10.5561505405493	9.81699126659245	9.18905158482371	9.61141852735037	9.35315849227481	9.72818113919821	9.69960182952143	10.0653171896697	9.01651408017889	9.71177676260685	10.5314620882196	9.39763678845693	9.4688108823188	9.53168634965316	9.50052202454906	10.4122738703897	9.24009635338131	10.1990945901679	9.92680222092865	9.62400359757897	9.50193796815672
+"NPEPPS"	10.2181142405791	10.010293302253	9.32736022483346	10.1504895935693	9.63142132870974	9.31304045252475	9.83787328153383	10.2592493337408	10.6592145746885	10.732936944334	10.209634877351	10.5244664566542	10.1173418325708	9.80290582337821	10.4860546932703	10.1397460424643	10.4313838103495	9.38531417231889	10.3665089121927	10.6533444385746	10.5376040462321
+"NPFFR1"	6.89501180878346	7.10504335545183	6.96429438617374	7.20911424176108	6.90660589614552	7.3358723923502	7.73373488198542	7.2529485128021	7.29248748641523	7.2210707769658	6.71969701706084	7.16009692173976	7.26281839735854	7.37763297469362	7.19077965253047	6.61262947082615	7.0817497170834	6.66087440174591	7.28219422062072	7.08743976673423	7.05113095818421
+"NPFFR2"	4.45668596542007	4.87756494930392	4.80759687731156	4.65674173143097	4.82519512208505	5.14541280995339	4.73874634580635	4.83370326412359	4.75616547688772	4.54721496533635	4.31325598799554	4.86490734683398	4.60591011222423	4.93897865173994	4.88123914190373	4.57705454055859	4.6422696188479	4.99046372893495	4.65674173143097	4.73874634580635	4.46728170502575
+"NPHP1"	6.17346529887238	4.69148671104518	5.10862618100787	4.40392256649792	4.73480418515003	4.24307649905563	4.64303579358682	4.92300243498012	4.91912212229306	5.20570394976198	5.26968219373205	5.03223818591313	4.75799280259008	4.79956572406054	5.02324220225044	4.3540831995617	4.71279023668838	4.78777616731691	4.6768584580954	5.00640235513713	4.6751175325675
+"NPHP3"	7.94928061363789	8.45336072180553	8.49484052079929	8.02656164440395	7.83167131264637	7.81436470943122	7.04529492888996	8.48172671279566	7.43566994488673	7.53096207948249	8.56852229735376	7.72165796914794	7.4526461248726	7.38678073075825	7.52444738414117	8.33781722013722	8.2213269558093	8.82247003867549	8.17993951765032	7.28296746805656	7.72119107698213
+"NPHP3-AS1"	4.33939156149226	4.41026788395267	4.01615771219074	4.34634699370544	4.30577826335367	4.23784732086271	4.19102164272268	4.53021888320841	4.77940616486278	4.33626891720224	4.27176907824527	4.35165301854092	4.40914557118229	4.31155430038888	4.48926240226712	4.34634699370544	4.61007256769925	3.99404558469956	4.34634699370544	4.2493817728559	4.48686130169984
+"NPHP4"	6.2991442221625	6.53565986124853	6.38166895218099	6.60678088149769	6.3816792099052	6.82307273898623	7.3976486807556	6.43994129898451	6.64351432757748	6.69549214710031	6.33813244368873	6.45334257788342	6.79015666489124	6.67048998446635	6.40267912479569	6.55729601647339	6.5962968217919	6.25578900759169	6.49384294440876	6.48214867029194	6.41766931952513
+"NPHS1"	5.06539774054326	4.87322816986347	4.94353236858526	5.12609301865704	5.23804700777763	5.80845875034788	5.3779045066485	5.14964080450076	5.25530608576098	5.29220489162538	4.9510554327168	5.26273618038745	5.40904869078839	5.15335600315862	5.3721846896916	5.08026184717417	5.15126635969053	4.82949277981095	5.61547388224822	5.23203303126327	5.06888045090281
+"NPHS2"	5.71152146692386	5.85642463265174	5.61341178557328	6.05042615601429	5.73843186413752	5.61971370298347	5.60067594525294	5.59598932575775	5.33059656253812	5.89506312052352	5.533944524898	5.50808196072473	5.96415207880171	6.06265735187855	5.87387942281102	6.05646254490953	5.77776868605721	5.72689545023068	5.73843186413752	5.74029455611368	5.73843186413752
+"NPIPB13"	7.55061064149506	7.36000511541254	6.45640655648192	7.80968467307328	6.7165042430342	6.33545879877753	7.79452293868543	7.83400005319446	7.71811293250012	7.93872752661776	7.65973052308475	7.84171160268139	7.58875069266596	7.74759470039753	7.69391501646035	7.16997498381225	7.76448948799907	5.80756031030606	7.61868918704337	7.18422759931506	7.20904874364672
+"NPL"	8.72584065851289	7.46493789268716	5.99197649389357	6.90981144414298	6.327791677024	4.32574406029545	7.94275389016718	7.03797497181058	6.67453090427133	6.47200888827559	7.57999054424517	6.44375411055926	5.78415838498096	6.72203783241794	6.52414998950091	7.04829828516365	6.81088216768463	6.77636680379006	7.53247486956231	6.89205041606253	6.8440192394882
+"NPLOC4"	9.00344083428578	8.73700633453129	9.17048613753284	8.6452270542798	9.10118523813703	9.49586724859069	9.25187619738928	8.90368511930001	8.98352699852253	8.96882765969019	8.7098783818726	8.83632683957526	8.71292334904578	8.93417824474695	8.87770083262262	8.88577290660585	8.9576725990728	9.39225673377604	8.61541406419295	8.96363657655112	8.98288735857161
+"NPM1"	8.24965723772297	7.98820463800149	8.20489120299913	7.39815009490782	8.30397311737482	7.98820463800149	7.62057798321158	7.77517878900164	7.88495312569587	8.09007363447878	7.90362643558496	8.1386710650354	7.50529721194116	7.65396756970021	7.5768486941308	8.31347456018031	8.08243507894148	8.00821681091678	7.86125116057772	8.1753663243869	8.03916601581707
+"NPM1P22"	8.19618575529924	8.29945410492559	7.97790793877333	8.21097875266867	8.10749951292932	7.80694042608784	8.14924359627157	8.1602778043676	8.04868667746636	8.25988411811713	8.26584251206283	8.29632012142816	7.92220479645235	8.09754677238743	7.93999635936674	8.21184051298532	8.17112531583292	8.30913822086119	8.30344109289641	8.04513129337174	8.32441434096318
+"NPM2"	8.59071865167689	8.87258378253463	9.03147786414451	8.99145964437886	9.08093867655966	9.34388665764732	9.00027906585134	8.87331631718449	9.10654779146077	9.3103501383517	8.63700914277021	9.03139707414464	9.23572543009956	9.14798043550043	9.07630703617597	8.3590413573637	8.91179323411221	8.53682524101046	8.87993491084816	9.14990868076541	9.1354453374998
+"NPM3"	5.72220599306286	6.2591077255736	7.15420455884512	6.2091333170123	6.98578445466785	6.70138416794691	6.34180535667084	6.37017332102002	6.4798153259968	6.93171201897787	6.29303088711865	6.3257254708111	6.26690882677525	6.40173619293854	6.44056211157529	6.23988176899682	6.23484363614198	6.77697051048542	6.32872228820727	6.50394103119077	6.44358878030937
+"NPNT"	6.37923438392375	5.88608591593994	5.21658872732673	5.34093395476032	5.31085921744476	4.89612529857274	4.95111334929685	5.45421170088471	4.72086768367359	5.19073320406723	6.05395950727166	6.26598047859214	4.9340351843263	4.9836321388246	5.54324548589586	5.54989807298403	5.18620046948637	5.66666316667226	5.52480584426329	6.08359689268851	5.30261528918563
+"NPPA"	6.9336493137263	7.12567469813804	7.22838578765415	7.28173672701293	6.97975445476192	7.29194280221766	7.62647201339956	7.10880610102532	7.3101508168295	7.26754996150022	7.02507544696864	7.25461146136906	7.29336367154408	7.5310211715935	7.18424231081484	7.02395813171104	7.14775722448494	6.74803753169048	7.30644849605538	7.16700614668393	7.17664972656744
+"NPPB"	5.3224921206681	5.39576317200021	5.487609069057	5.382426962156	5.09494769044891	5.45366240283071	5.57363504085915	5.41879834265932	5.77302637198558	5.41136251402836	5.41879834265932	5.52686606305945	5.57255280150967	5.59140381272771	5.23505584357856	5.3978916765808	5.32904307872027	5.45159414969701	5.32502145583021	5.14606937622196	5.64613019487862
+"NPPC"	4.2449420133671	4.36615529369513	4.58226043090293	4.70361941861947	4.54013864053283	4.48293542709319	4.79991777924613	4.45531758109327	4.35414642288683	4.61315147117661	4.42824334950541	4.72082564387	4.85280609712848	4.62142070330257	4.34634699370544	4.75799280259008	4.54013864053283	4.72274219003028	4.55672645507447	4.91482296267297	4.91912212229306
+"NPR1"	7.71879563784422	7.67169721468766	7.67294526928712	7.76816410284377	7.46364601578218	8.28830752656338	8.53159096927923	7.67272616873797	7.88468001058473	7.72431840177192	7.66537938503927	7.7556362345897	7.94960967785718	8.2165915251766	7.93330522294518	7.5786604683472	7.80702636488405	7.48463243789447	8.07548960308505	7.50444199067423	7.85494972915567
+"NPR2"	8.14210161863097	7.44177455195716	7.6887765801201	7.58558640027121	7.46075790151139	7.53612763496303	8.21458012032573	7.77327147128285	7.73299003710003	7.75509751245121	7.46843143587616	7.56262048019338	7.78858818581885	7.75434081957666	7.77834994851224	6.94609020063129	7.595461610274	7.55084021047743	7.44776025194791	7.97461246606344	7.63947686143868
+"NPR3"	3.85985520734599	4.03499506400428	4.24006300034458	4.20055793040226	4.11697140621336	3.57431929524404	3.97521665806832	4.05154571183582	4.63223481775321	4.03600099560098	4.03600099560098	4.03796471937987	4.02219339678245	4.12755794890373	4.42783092753539	4.00724007987598	4.15459685843507	3.61764335646428	3.59981840635185	4.18024418086951	4.03600099560098
+"NPRL2"	6.55538386135104	6.64585139666262	7.06759863517435	6.83626307276185	6.67809529321988	7.15213054386294	6.92446046111061	6.8383806229948	6.77269146048948	6.66010613423229	6.57249447933506	6.59092626144754	6.78329207659887	7.09849042489085	6.86514611500985	6.66559983366934	6.60424680594401	6.7492331620295	6.86981448492171	6.67556931032811	6.80831703115317
+"NPRL3"	7.48432817808119	7.26505839601901	7.66089915911181	7.27295999564898	7.64205926142615	7.46983680530057	7.25086688530397	7.22826629856004	7.44161023245795	7.49132170045305	7.31601113271309	7.19098239904187	7.62592954340838	7.54570720565016	7.63111076843667	7.05371787952397	7.46221145272148	7.44990722521619	6.89038961704212	7.58352626160395	7.33063523038913
+"NPSR1-AS1"	4.5051523676488	4.36079620212261	4.36235045039555	4.672212016262	4.70727662775718	4.71408517095841	4.5581241237254	4.56520517029773	4.97076186950587	4.88031252524333	4.43129051070181	4.4639965426867	4.72170628853534	4.56520517029773	4.66275594712787	4.59159061555498	4.26286552577701	4.27282268840332	4.56520517029773	4.35954960978649	4.62548639715972
+"NPTN"	10.6609295798633	11.6812698830757	11.7791355226484	11.6480469735142	11.8346565586629	11.1708745942088	10.1670376005366	11.3753563878836	11.9675663014502	11.7835200878128	11.1908477835147	11.8142567947015	11.6872429531483	10.9714525494855	11.8054526699507	11.057913975528	11.9629190037805	11.5240327946762	11.6096478530158	11.670202158666	11.9314264776801
+"NPTN-IT1"	8.62101335332638	9.30956116842258	9.28402558129579	9.22413970215379	8.93996227322741	9.02047103969684	8.68092967260224	8.95228971245263	8.97538958375186	8.41307873402075	8.74734556640115	8.93517831216787	9.16659844550669	8.61524866790683	9.26104589140744	8.06777676289883	8.98937670178604	8.62112825593898	9.00572103039581	8.54828506838743	8.65366575710369
+"NPTX1"	9.40434704782758	10.3472793225192	10.6824975510909	10.2212150093468	10.5617655590971	10.578558175292	9.44058272897452	9.92778702171233	10.4486491854086	10.7409249853607	9.76647827822014	10.8079705226722	10.1070698805475	9.91613567991953	10.0572448991315	10.0667719999732	10.6675831235025	10.189641885759	10.1348713745375	10.7366323665799	10.8483970603852
+"NPTX2"	8.73376847151793	8.00383865226456	9.38143380688522	10.0742454236443	9.22206212373432	11.2118286677055	8.61582041942881	8.55892184235689	8.72083470228171	9.20542684437144	6.10649513944983	8.81843309408452	9.43507031796117	9.14663290391037	9.02634274944342	7.90295723913856	9.33572351265569	8.93194880427036	9.02634274944342	9.68675001345423	8.21793400278719
+"NPTXR"	8.32263504979048	9.28673689180478	9.75188392629735	9.34180658670409	9.52405875691012	9.06680207376892	8.72465818953736	8.99284369454882	9.21207780534741	9.15071891496357	8.48232107546013	9.2137387688704	9.22447588247964	8.63284523664395	8.54838679531462	8.13397481127761	9.31194712713715	8.86410516670926	8.77274581947998	9.68058734431358	9.09542835294617
+"NPVF"	3.54484941246509	3.71429301394814	3.44388239427674	3.50918834416858	3.90274509235842	3.99321485246642	3.66942716802545	3.60326816828455	3.69743195201628	3.75777869557618	3.62110990168503	3.50740566954269	3.66838617116164	3.78426728093787	3.57978341124635	3.67752492687596	3.6400610842101	3.49373021022852	3.53741376891322	3.61027879421703	3.71821472750353
+"NPY"	7.58006346817936	8.83956041468447	9.02219301277469	8.78775899611916	8.6200021337892	7.7722740743762	7.27957815354453	8.36720514213493	7.8352943034744	8.54553489427188	8.18065001489249	7.89388887929102	8.56008201019728	8.49283782606908	8.28523699680466	9.67822307484462	9.14385483036449	8.7891654052052	8.96305135543212	8.53440122602082	9.52240878110567
+"NPY1R"	7.13613392233151	7.52024579028993	7.89163320109649	7.34319161378266	7.44407020888993	7.27636339260583	6.5056234683612	7.7861755815007	7.83618755508365	6.94068845292319	7.12149104821273	7.50808672487132	7.48921066667988	6.90983379992843	7.73797269600291	6.45797034348466	7.32415306547878	7.19364430745277	7.67336954979545	7.15348955651057	6.93177675876533
+"NPY2R"	2.82711865156876	3.20039609954386	4.01615771219074	3.28975377154756	3.72741363137877	2.90806499152621	3.01039622748811	3.42598080769835	4.04358614182208	3.45755092730829	3.00537561431133	3.11833008726633	3.42670979771162	3.20372234560812	3.76257062615567	6.68113254258669	3.41271679885477	6.56620177979083	3.38991623844298	3.56839561528733	3.49766298145069
+"NPY5R"	4.51111552126348	5.22723836086343	5.35527791452544	4.78835573840182	5.7598419907146	4.24361776617487	4.55093116146622	4.72996409416978	5.01492732359864	5.12906069912838	4.41994517961982	5.26156840519944	4.8099069435722	4.72476126584193	4.57729605415089	5.13428380193329	4.68903959803537	5.39027643765943	5.09361267169369	5.56478747706913	5.53815531978041
+"NPY6R"	5.38819099552645	5.44643626601174	5.16196542105156	5.72038135465696	5.43483837425082	5.4086320816894	5.55326671434166	5.39578154667589	5.49787519459953	5.56761177139601	5.07230871225165	5.66128153398499	5.62085436302256	5.80810876344393	5.52990165027572	5.56163974276204	5.63862473594548	5.20526232009845	5.2680158081187	5.40129423223859	5.51196071544645
+"NQO1"	10.7968925804136	8.80511698948086	8.11511078802523	8.64009115594727	8.51404916303034	8.25621180427803	10.5406647095851	9.7973195477512	9.30545550276183	9.26004609324876	9.27236021132335	8.15703121774516	8.82662070488565	8.47736744030982	10.3804449765322	8.40864762896473	8.7211439305394	8.33306989981459	9.74271641699031	8.93052786410089	7.86106271404908
+"NQO2"	8.61027750424464	8.35692670250074	8.80565685428488	8.16445885912276	8.94205604270859	7.67667805206299	8.43007982114295	8.37548547969793	8.4211878350443	9.33307710819995	8.1482414915083	8.45548893733368	8.16602574572373	7.79414613097138	8.10878728852711	8.49149589816829	8.65874337330252	8.69693859231766	8.01381369886167	9.06707759901088	8.44116942845984
+"NQO2-AS1"	3.75915863323606	4.45890684722957	4.26605436892247	4.18789361774273	4.19402608230748	4.37432609453921	4.07888935474486	4.00440812105169	4.19818030628423	4.20220437477553	4.22553217220438	4.3690273396236	4.32581326374002	4.41958420934424	3.90527208519706	4.11540298635943	4.12291866686987	4.1154358339641	4.45220009489848	4.19818030628423	4.03080084145001
+"NR0B1"	5.5782628032566	5.60312186085237	5.71248130497885	5.80997382127028	5.44861173026455	6.22429402004455	6.16196376413611	5.47881322808553	5.61095489561423	5.63446162755742	5.64342083687699	5.49630552662536	5.981766591475	5.98547510884457	5.97786662627253	5.74148070255308	5.30755628086592	5.88824885070856	5.65034710725655	5.391481999257	5.43216856745536
+"NR0B2"	6.05578851004635	6.21115274777698	6.24779307091067	6.48736446627437	6.25697473561663	6.55307117698545	6.55873368028844	6.48702680004949	6.36916204485707	6.48508637493469	6.38031605387577	6.45268017600227	6.55906097447666	6.86964222541223	6.61090299834727	6.18768280573964	6.37774242812068	5.87043147582344	6.59787768265175	6.21628476785594	6.57780201819439
+"NR1D1"	10.6115219146559	10.9236508488944	10.8642354560567	11.1153710464869	10.8395393307147	11.1349696191904	11.3603995648337	11.3766824583999	10.720771345316	10.6392120834826	10.5887927141157	10.9641369117099	11.3668063342995	11.1953314924787	10.72267265968	10.3890355008855	11.098124132731	10.4650669629431	10.8723397895393	10.8300403100251	10.392402725937
+"NR1D2"	8.2257645694039	8.27011371292996	8.21461268413656	8.97525137032861	8.85814806276233	8.25539472221498	8.46829100095193	8.65506745575563	9.61200840769449	8.52172629627562	8.42081701916079	8.77454966913489	8.59569136963405	8.14491995112956	10.104132616632	8.22123322298405	9.23275989001533	9.05111674234207	9.34934703259587	8.83110036719524	8.42908357122537
+"NR1H2"	8.03293722776371	7.98595917501338	8.04329829852709	7.91805480512508	8.05649414279626	8.1972718163156	8.1351909695008	8.15379888252533	8.06467193430505	8.02449332998405	8.02647635604722	8.078787756428	7.87934179711173	8.17851504316605	7.75744779071915	7.74940171380858	7.98392171357511	8.13570979972225	7.95750354758962	8.21580119797713	7.92001743396599
+"NR1H3"	7.14738832808681	6.2145412987237	6.02719420452731	6.02219751431907	6.13810461532266	5.98651775993134	6.77717577696813	6.46631828258367	6.36741102300552	6.10408875651955	6.30139281976074	5.50816853495466	5.64166883881036	6.3593364505816	5.94109664942435	6.47562395091535	6.0071557047531	6.25344788717377	6.0648809404125	6.74665706092099	5.84324430367431
+"NR1H4"	3.83353097716374	3.99139368819598	3.67824304191024	3.83353097716374	3.68995565271965	3.91747881625649	4.15208892540975	3.87661100939894	3.71599273623106	3.84898477626945	3.76094781353142	3.84898477626945	3.66838617116164	3.50084633303862	3.78462593774105	3.93668319481726	3.8977219207519	3.35785457061091	3.92839359235647	3.83353097716374	3.86386060099024
+"NR1I2"	6.45150913905128	6.36093992236299	6.47745217241585	6.64843226436097	6.36857982708965	6.52680995293056	6.66007869608279	6.39165450949955	6.63465035967173	6.47428842775992	6.47428842775992	6.47428842775992	6.60556846888038	6.83964579302683	6.58147214565638	6.49440338651628	6.452232833144	5.98170088397173	6.40212905097944	6.44722813320474	6.47086354095839
+"NR1I3"	3.90106956119262	3.78757517811225	3.62894975467752	3.83841096508889	3.72652675020949	3.96514728128592	3.92524871708976	3.83841096508889	3.81082935301071	3.83665593605443	3.7520619805625	3.75984494005014	3.82891794744714	3.91986086824572	3.99834633215204	3.89045688468862	3.95765847303769	3.5940220400786	3.83841096508889	3.63476036829277	3.9505223806522
+"NR2C1"	8.01118521004737	8.23667058937583	8.43677081572823	7.81034317390604	7.8697694861436	7.67388839515383	7.12462075611796	8.13211729057638	7.52948634444204	8.03460114011843	8.1714641968898	7.82291817546559	7.67445414076842	7.61523398042227	7.72589859883882	8.06252893323889	7.86462485076879	8.48041397010737	7.68746598235942	7.85548688613421	7.68298956582102
+"NR2C2"	9.31914827826182	9.53235323256411	9.52293812351604	9.40667357050518	9.45674291378041	9.2087022133283	8.90378564626779	9.29314512075628	9.69587326926292	9.25448071669086	9.48995163731159	9.28644428273158	9.44430509483275	9.08216272396887	9.67923427426033	9.29458975997851	9.62875561204848	9.55125256910587	9.46129705927492	9.25281494785572	9.35338628865919
+"NR2C2AP"	7.10111270526792	7.21136846668994	7.36296895824552	6.92158468254837	7.16712106679049	7.23284816861088	7.29113286776236	7.16712106679049	7.10964059490629	7.0607974495529	7.02831056647303	7.21183196404563	7.04029151883567	7.10981642547815	6.71282986562685	7.27662198405038	6.9333476182119	7.30894999838365	7.26814140246517	7.27129780307389	7.16290616858784
+"NR2E1"	9.53047715248991	8.81534430302773	8.6357570747934	8.84977248502016	8.25468223039983	6.40798797789735	9.64560245070679	9.54697289570759	9.40133535564585	8.45076158642433	8.75140722475122	8.34016384461281	8.86819449713985	8.88860486410221	8.79590489915151	7.59250275730691	8.58872713109695	8.05714282555422	8.83252363988192	8.61344916141775	8.01661323815742
+"NR2E3"	5.30462971625935	5.3539827430929	5.71282181350644	5.59779318553337	5.478162709931	5.77872950452485	5.97324228463365	5.3459687405566	5.99617854536427	5.53060373443099	5.4922982423346	5.52500960046098	5.82681057473634	6.00415392905641	5.35437280731927	5.4159538585408	5.33691139859507	5.48458922708058	5.48638087395052	5.52709528988894	5.56547531122224
+"NR2F1"	9.86204561381587	9.72792137883749	9.6757933824449	9.88860761444207	9.45663761800962	8.45496086205296	9.80276299132581	9.61334331468886	9.78082029806272	9.43884207958496	9.67058036905843	9.37805157601756	9.80785458772846	9.39388920007318	9.58591671330741	8.66314183015138	9.49725108799777	9.27553185591701	9.77620831367778	9.36600209719644	9.10649187017162
+"NR2F1-AS1"	4.53882001990607	4.85979069011657	5.35937988821561	4.71480079494326	5.40647870480182	4.45503733336714	4.46509018986039	4.75427687638337	4.57072897569375	5.00248405130032	4.74132965092161	5.05108007990599	4.22217126948997	4.29509944521424	4.27279205024688	4.72043940251724	4.74132965092161	4.74132965092161	4.74132965092161	5.62732114106994	4.93851975319218
+"NR2F2"	7.4386360810918	5.98209858290315	6.38433902847079	6.26050525818972	6.25373254165238	6.65924960923207	5.86394058851504	6.56485542098483	6.6878276120494	6.71551567257934	6.37612607773065	6.27409846928574	7.46805207797058	7.06543943299648	6.49937176495232	5.13906892242501	6.48295906518486	5.78617945977011	6.16778675523539	6.95758766550207	6.41517522071258
+"NR2F2-AS1"	4.84109407446498	4.61774305397776	4.84278115287502	4.73780036800828	4.72166475647591	4.73780036800828	4.80167042986929	4.71832605892095	5.0869161531927	4.85754301565271	4.57446866319719	4.85930508438767	4.65769845719238	5.05328483752527	4.87275279770298	4.72165059127573	4.73780036800828	4.36740675862055	4.61284354163675	4.86122450915613	4.66784483447504
+"NR2F6"	8.40070995549694	8.11361211476157	8.64575237483651	8.36509934923012	8.29263560407594	8.6403339336719	8.94152583272555	8.38052720414925	8.80015853883898	8.40498894971349	7.98884944727171	8.06883085161323	8.58122362118568	8.6815448480662	8.60269212587788	7.75729595344134	8.27245248741735	8.17794178255289	8.54102808815262	8.58215069177435	8.32655108877876
+"NR3C1"	7.53478825320024	7.96307419497682	7.16119611482402	7.48592095047023	7.8861387423344	7.16309466159115	7.18795910346016	7.41535285676826	7.37837266433889	7.94660260631797	8.06893854861875	7.7422206720866	7.34043152969599	6.94982482469048	7.49458929236155	8.10939099992474	7.7608245387562	8.09643366365898	7.85199368496705	7.86601471592455	8.1099266786632
+"NR3C2"	9.02456922266007	9.22802324315141	9.50175459542589	9.17366551456221	9.51559990964383	8.59857651871111	9.02823836081411	9.27954196853179	9.78040304361717	9.12825803902184	9.11248062576839	9.29727650065859	9.32870419070091	8.75633844355596	9.53402134775328	8.86259201961606	9.49366020906346	9.10206649326228	9.2426241764328	9.26346661738653	9.08924449146893
+"NR4A1"	7.71024119713586	8.53622472168476	7.34774696979666	7.22543857310561	7.4235175230006	8.21313116024981	7.71864314782731	7.77357205063675	7.16024967729343	7.42686270746228	7.80401680738008	7.48079152586404	7.82840141504036	7.60532737425707	7.04029151883567	7.20285310348621	7.77970527379851	7.45941332515752	7.42165546651645	7.5857238812094	7.48582013190154
+"NR4A2"	6.24049556073536	7.11425894135782	6.46890014520674	5.62052383583875	6.51087770037492	7.1855530076494	4.81623732293565	6.51116720057295	4.80340132205866	5.99419194481994	6.81523583055014	6.26640807933339	5.98003131583363	5.8668976310647	6.48574614301927	5.91222666474499	7.3192430602758	6.53300207094259	6.26640807933339	5.09894235156525	6.34820122434397
+"NR4A3"	4.47919107983026	4.78057709465034	4.39652194897707	4.57359541964286	4.38504884427229	4.57060560019547	4.38685714233986	4.94431731070904	4.77242334022003	4.5802641277285	4.38955570387256	4.70072399731868	4.41705943923034	4.28243365262792	4.57060560019547	4.29879613873759	5.84934019445014	4.41395110064669	5.41521309411294	4.59165934487437	4.48906758025879
+"NR5A1"	4.79517222988152	4.83630426993659	5.01289357874322	5.0163292902761	4.56227485092197	4.90364172453643	5.37961571461622	4.87145951404401	4.91512066266508	4.91512066266508	4.90110077570156	4.96039795771475	5.04127918433506	5.02796797697123	5.12791945016528	4.76271075694874	4.78119967026543	4.62247216050109	5.27084725171574	4.83851391392687	4.89498292287752
+"NR5A2"	3.90018987036236	3.96174036609341	3.84663124461079	3.92619622228356	3.781724348749	3.45968858490238	4.15208892540975	3.78204056874707	4.18264574181237	3.77453975184953	3.9526432462815	4.08111169745733	4.10461931745501	4.15916638185811	3.90610776186404	4.24020629353978	4.05223981174797	3.82964913112466	4.05905548920073	3.94474092596137	4.04890647338075
+"NR6A1"	6.82131579447099	6.76850963036265	6.95476316370914	6.87136081414868	6.77175105314487	7.25352149182865	6.70536969609876	7.04745939430237	6.77708487957163	6.73382460431576	6.67479220249844	6.75718908483928	7.07526555088521	7.27739547851963	7.14411333031015	6.50385798438287	6.87289604296797	6.63602681569707	6.76624993376233	6.38019771597967	6.84494601843808
+"NRAP"	3.73798072543921	3.75837926784648	3.54764118333243	3.60791118264633	3.49692752935838	3.84545659740599	3.96282640555615	3.60927111127848	3.77083825870155	3.59226084137841	3.76238258598948	3.75755650952845	4.25011351326462	3.80595933362516	3.7603348534653	3.72421426249425	3.90012434288687	3.34575755739185	3.59747534977918	3.57065159798244	3.72421426249425
+"NRARP"	7.66039869349498	7.58896488891369	7.68634479175647	7.46336205068535	7.47930566342709	7.97840061352899	8.11228520506839	8.22037590515682	7.62082333906667	7.43511146601811	7.60420141674769	7.80371245815446	7.64630272644234	7.74022357713998	7.64515529492982	7.50598941794529	7.90151160378033	7.26657046920161	7.76127528137043	7.64630272644234	7.62221872614663
+"NRAS"	7.94326833935696	7.31306663230764	6.61781020819946	6.99662201576844	7.0701948252174	6.44656714421495	7.3255346212018	7.71241781711169	6.67810497175145	6.79819156014458	7.20246503794095	6.97756949859158	6.29479849784643	6.58249731753292	6.43915752908491	7.79662013855612	6.75177091239801	7.43516257131241	7.06770500571765	6.78531918144574	6.8747389208227
+"NRAV"	5.89708195618327	5.90301696465056	6.00300239711271	5.84148146121396	5.90110184264147	5.62682054608406	5.25013522761444	5.65859722592425	5.72507656099526	5.89869318384477	5.79976601284619	6.11466257638286	5.78030032817641	5.53447260949339	5.73310965180213	5.6672412784313	5.61921311153195	5.45124121372987	5.73668167237202	6.04912680933768	5.79114734971711
+"NRBF2"	7.19659421454232	6.79384687210398	6.86514611500985	6.69863293365816	7.65331135313538	6.71843250066398	6.4905706447247	7.04501907899722	7.23049568547714	7.4826258225929	7.02241557399192	7.24280346784491	6.6628292388957	6.35655772542979	7.07382453951793	7.56644244114141	7.07487570810112	7.68981037399954	6.73593374049558	7.67228264516334	7.54260900574268
+"NRBP1"	8.27578107459587	8.14264851580343	8.35778833852535	8.0053919839418	8.46668998056434	8.21426597226296	8.19554200740188	8.14482020841007	8.23164403926496	8.68153155146794	8.28081746089646	8.57313775215513	8.27903089825817	8.14354952557698	8.11390235291064	8.2680954089783	8.27903089825817	8.33947710730867	8.21877095291152	8.71525749152723	8.55862633222565
+"NRCAM"	8.79168260142628	9.1782430400296	8.00765590643829	8.52871752028045	9.32494434198636	7.23270973336745	8.3270141226007	9.15652283147597	8.69283433452972	9.24022519343242	8.79623079329561	9.23076823327838	8.2684162390997	7.71657564661805	8.01260998837855	8.6180583012375	9.03180890844422	8.78553657589915	8.75178730140271	9.21720037681242	9.37551874465399
+"NRDC"	8.41632605994385	8.57208869109029	8.23037735446416	8.77322745277225	7.97813254213608	8.74404600607738	8.53912965153178	8.73668706458011	8.64164381224054	8.11133634760615	8.80818171536538	8.68019007788314	8.72729301873949	8.70485242158527	8.77559122567957	8.37734616521139	8.67941510630587	8.23772537316648	8.52208951787423	8.17299987219377	8.4020611896415
+"NRDE2"	6.06630590866418	6.17798715163223	6.17106403832107	5.85763706692043	5.99070919240604	6.11362716913092	5.80516621097367	6.06630590866418	5.97179743619037	6.32974927073708	6.48485900561364	5.9980608596991	5.73468327324905	6.02840297182948	5.89852722776397	6.21607911964371	6.06630590866418	6.68872150325641	5.82894957844686	5.98918098273151	5.97871033200383
+"NRF1"	5.95737601210499	7.01608049380812	7.69053963123982	6.89323836332181	7.55638230311722	6.94257546587361	6.58026937314763	6.53747818456494	6.35522474056024	6.35943487732823	6.46070039017456	7.34410139267443	7.23368919822019	7.11851024828355	7.25141753772592	6.62462215843292	6.88183783753133	7.14330986083637	6.6919153279387	5.83263656485134	7.01000282952026
+"NRG1"	5.24743763417127	6.08666823356037	6.54073036784031	5.59353940189126	6.86455668932961	5.50304908464543	4.94386825613137	5.71011156651643	5.44206878230376	6.74766142686473	5.68829220414312	6.72018220396737	5.93962358761274	5.26567577567476	6.31479297778278	5.64373062573487	6.17867494194279	6.42066229645946	5.70756551575543	6.15928313838426	6.21303382585711
+"NRG1-IT1"	4.37253480609131	4.13907016990757	4.29634802254051	4.32987772619311	4.35552835582927	4.1078686600343	4.17207872098304	3.96991283018756	4.2947976575029	4.48819824830567	4.18476848145725	4.60483177347008	4.4951176988106	4.25850102004086	4.12162536745963	4.39398688191965	4.39922114721484	4.22327848878944	4.29843311083592	4.24124303056231	4.63489218667405
+"NRG2"	7.31735612463333	7.34117608090147	7.65220789836386	7.73626194110147	7.15544791555662	7.53177092373657	7.49296010781065	7.30569468291387	7.49298413589887	7.11669170553149	7.35304954224184	6.84638304515313	7.78091752895895	7.61923205475691	7.74474378860995	6.7249370319001	7.13270780109215	7.07637200547968	7.18750100175299	7.10888180917229	7.25708236772952
+"NRG3"	7.56613672386296	7.99068700594311	8.30380867229709	7.49011229630054	8.63025026114328	6.80926991854684	7.14598680970694	8.05165737051608	8.00174649540986	8.20265534862872	7.86613904053926	7.8791830856771	7.56364619907699	6.82079425919147	7.89823356321342	7.70455992250647	7.91224279220145	7.95364285044424	7.63286659808861	8.29748677032344	7.90808825602819
+"NRG4"	3.30627270553787	3.45579589068673	3.6325528265451	3.87378143906394	4.05222079130679	3.85434798092279	3.67830933733901	3.6180877370066	3.61609584884818	4.01052598367161	3.49845232768527	3.93461511965916	3.71031846596918	3.49966057194973	3.65164784108262	3.80549733406237	3.75180129687255	3.77586287599207	3.84675528837922	3.95496801352629	3.86918800877677
+"NRGN"	11.5219266123474	12.7603351026706	13.0321592960473	12.4854887469313	13.0341949939846	12.4031605613772	12.1458980943324	12.2778260979966	12.5756674824037	12.8861107578029	12.102960726858	13.1469758691605	12.5878214276384	11.9325521312542	12.3109795953683	12.0891812569088	13.0001788974301	12.4687171956091	12.5392070011933	13.1522197898997	12.8837148196502
+"NRIP1"	7.62298172693494	7.85229740685324	8.23227893942254	8.40298680923946	8.67318585817646	8.0034268236359	7.92890879545688	8.44641626347437	8.58339485662626	7.87720604295329	8.24764030800612	8.12490081102396	8.15632545044297	7.75895781345466	9.00724732489865	7.5821002682784	8.21455003669874	7.79720814167174	8.33211928066656	8.14522826958481	8.19414786867175
+"NRIP3"	7.64260237704502	8.85223369741405	9.45749115063506	9.01097805673098	9.90368140389762	8.65310243521975	7.82360749386687	8.60969772927688	9.16377685032847	9.46904955623291	8.75801494217806	9.81637762425371	9.04065916142621	8.15702942142245	9.50411979839299	8.57275485414254	9.22781580583267	8.48630686653766	8.86906824102985	9.80056348346062	9.77693643832757
+"NRK"	3.27084764371428	3.27998855990132	3.31167695638038	3.25242674907815	3.25044467841613	3.54408699448512	3.40982138755513	3.29881482276167	3.47123416162378	3.3421666773088	3.12894815952237	3.40680750695045	3.49234374269898	3.36193972378722	3.27234450930908	3.17054402535721	3.44757797334999	3.2807340629636	3.53741376891322	3.34255008698469	3.3024339101175
+"NRN1"	9.20698558659098	10.8909926634134	11.276640805367	10.5922890409085	11.6395122152835	10.183702038464	9.86270813403173	10.1401140174729	11.0297063312365	11.471025043432	9.68742835093486	11.2604549075542	10.8008470819476	10.1779071388847	10.665433557263	10.5039629033417	11.1495105734154	10.315803433895	10.803671082442	11.349616601145	11.4985868565245
+"NRP1"	6.91226169498612	6.93529994796091	6.63594553243581	6.52141623116222	6.82251566176547	6.67119052577437	6.59349651920503	7.82664659878012	6.90740643772945	6.8119943718073	6.74667647055699	6.64225716892874	6.98491072691075	6.33452282929551	6.82642266135914	5.74448747045861	6.74667647055699	6.37806466915266	6.55295215656943	7.25435701017868	7.37707552790594
+"NRP2"	5.22659349513259	4.46430348036921	4.83673219757572	4.53950263451484	4.5732543849153	4.95114320976279	4.39784985776453	4.74483166404279	4.59805580240312	4.48949547347549	4.53950263451484	4.20950483122575	4.05700146341945	4.46166034850697	4.17869539645709	3.98788836143853	4.34634699370544	4.41058511220832	4.7096388695463	5.02491946200921	4.10152103137053
+"NRROS"	7.08741703685777	6.74584422929929	6.29711796053592	6.31548496049403	6.08462548424215	6.31548496049403	6.5586879777604	6.0486227502369	6.32278124210252	6.39530994877852	6.35469508883973	6.09413431311162	6.37931022983356	6.52982013263183	6.00483583599095	6.43254306838699	6.22436321691284	5.93051071321293	6.36529881175082	6.60487694771348	6.58100942063629
+"NRSN1"	7.3339892105156	9.16360516656793	9.74864349988104	9.23882418574068	9.92047400856147	8.28200768451316	8.11220126562126	8.68242997290695	9.52643470435214	9.52518863430727	8.12806148887548	9.36335876575383	9.09899173840352	8.14954529183965	8.94515445633801	8.87682520694526	9.63744491904824	8.77149275993557	9.25175576570302	10.1619550887374	9.76366021826183
+"NRSN2"	8.39069304213378	8.90577926764296	9.09335520067885	8.68643959249856	9.21336008864595	8.80000383919995	8.63398382448514	8.49930082505923	8.71824431897295	8.96465169710235	8.55992730313891	9.0854258296229	8.89851329815457	8.61853861661024	8.33179742661421	8.30357030270548	8.82957619050251	8.71482168054262	8.40854156653989	9.28519615379327	8.89815438040176
+"NRSN2-AS1"	4.42546902728966	4.04607259124915	4.10318388598706	4.28757628141927	4.02902103000701	4.02902103000701	4.02902103000701	4.15451915766316	4.15900091595938	3.80814837665935	4.09253926930174	3.72335659112008	3.79234270494106	4.01615771219074	3.92793057995856	3.70455252205027	3.93955729440035	4.37316895265388	4.02902103000701	4.23494315207548	3.96883766971945
+"NRXN1"	6.73597130158107	7.97884329916089	7.25635543908332	7.69916042539788	8.68318319390978	6.17515128494106	6.4653550058804	7.61614966011699	7.87737698956813	8.78594619224569	6.9908285747477	8.75283912084464	7.32662993910451	6.2663962042994	7.31438059634033	7.79946207264849	8.52179917958168	7.86201037845383	8.08547300555716	8.55427745272834	8.8915901903096
+"NRXN2"	9.19447489309827	9.62402686537219	10.33298594831	9.99038281907202	10.2868094957532	10.4231466176784	9.67355994010943	9.75176217437176	9.92265994772215	10.0353403744642	9.53112687530733	9.94203375026921	10.0540071475045	9.86467172262616	9.50153706551399	8.85961387793368	9.80318001100214	9.50280046049075	9.58929347889611	10.0206473933567	9.32040340303947
+"NRXN3"	6.35874596825857	7.84438876503862	8.02676720779898	7.67386445845579	8.46802896397476	7.32836500614529	6.17356209351947	7.58447742734343	7.74135812177173	8.43112390369711	7.50829956605822	8.59192505285407	7.67715455003938	7.18988499670526	6.93136682034362	8.0123349567011	8.22284126726974	8.06053431121937	7.22588380545906	8.8296616496907	8.65300404134
+"NSA2"	9.67901968603661	9.23338439370171	9.08316020832659	9.55713420475834	9.81731089440524	9.09685833785428	9.4771204064877	9.44919461972068	9.73902740307311	9.40848964489632	9.22770710232399	9.74004841033877	8.94770168873293	9.59540751073113	9.68379203859206	9.38070925971062	9.23931659818981	9.44959326085061	9.73742892683764	9.45063241981615	9.85967946231993
+"NSD1"	5.38898631586148	5.15414382255548	5.47265495575604	5.42751504455869	5.11893978370583	4.94114417023418	5.10751428306417	4.69009036944037	5.3146825039708	4.28693830427063	5.30300942643306	4.52515957215476	5.48787248735811	4.88777994906477	5.09097540024296	4.87363488465148	4.7484703912963	5.28991950556493	5.13852467444543	4.46024822194843	5.19783244327617
+"NSD2"	7.15074240160669	7.7205087120213	8.47910475301702	7.47771031279938	8.18747640306869	7.72830790700499	6.77606669282016	7.8127658370257	7.61146120360642	7.68520880856018	7.41879837329056	8.06594566185919	7.52483738041534	7.39524550466135	7.67785617688228	7.69601787450281	8.04962258588187	8.06007803333815	7.53193382929302	7.97173121860438	7.82310873228564
+"NSD3"	10.156490806523	10.179052897478	10.497731213589	10.6820816208748	10.5469998972506	11.0107371445772	10.3967851956095	10.6631490005218	10.5154569469116	10.1363537577202	10.3473644963446	10.4091849226553	10.5946167511645	10.8000667056663	10.6851129480402	9.55240691958975	10.3751550968855	10.0602399709053	10.6146307155105	10.2561563209108	9.99180042739209
+"NSFL1C"	8.46001042306615	8.25120448649818	8.82792681995666	8.08864705957455	8.45754150328616	8.577849355751	7.99587660626722	8.32595343076955	8.30403247620011	8.49244998227919	8.52917198605693	8.43236273761979	7.48546115060494	7.79406570116156	7.99364328916092	8.74417806648676	7.97872261606508	8.45091532594785	8.14804643776421	8.69845612589625	8.18258857738412
+"NSG1"	7.06519758783939	8.13097979529048	7.99146824658234	7.71493972407318	9.17628811058619	7.1358723022654	7.468582977248	7.81084072484746	8.10186095732794	9.422053733685	7.54688586548599	9.37256748012678	7.98030309111068	6.99822441085169	8.1413880568386	8.46471657937095	8.8185815590297	8.08075121223673	8.17571346947874	9.96195560909088	9.81731603019373
+"NSG2"	7.8482140949179	9.34897222577516	9.70388058548712	9.47440524125348	9.81664374007896	8.81205098365956	8.34278148763832	8.88970391277924	9.54442433910111	9.63094878612873	8.94882699660578	9.68981178745386	9.34749345078982	8.39548365022556	9.05718527660431	8.87030025819995	9.48869139790626	9.12425203423242	9.33375969997455	10.0777190579278	9.5198537132091
+"NSL1"	6.49799262289841	5.68221141353274	6.29676927882417	5.57597605134036	6.05911335515184	5.69216521853167	5.31739865334904	5.35765504530327	5.33646062776433	5.76849020943401	5.97287804338654	5.68558487041938	5.42319550854559	5.57756633934303	5.71600892577145	6.89570793934873	5.43647777895471	6.18147351023272	5.70491146600838	5.67006841018194	5.70491146600838
+"NSMAF"	6.69386291739452	6.64688626703787	7.23527346355773	6.38047372089384	6.49656888572612	7.08609396356087	6.22347556593118	7.07034667472636	6.25378848798042	6.29284491157604	6.443834933189	6.97208191634545	6.45494616994564	6.50188396906966	6.49656888572612	6.27172492200497	6.87151187895633	6.68257895229849	6.41157777147841	6.41109597295658	6.10389859196941
+"NSMCE1"	8.96011099290884	8.7262940177642	8.95010072689196	8.49400134776479	8.5856734230812	8.48403230814029	8.42048730348401	8.8535644820968	8.03502906407461	8.33222292652948	8.9477839791912	8.56548188185241	8.09971537435995	8.29820378158841	8.35470100063082	9.0473817418764	8.10156977742754	8.79494296804232	8.47979504004593	8.8381665670144	8.25943580666252
+"NSMCE1-DT"	4.91108640810977	5.23587678547601	5.2856394144618	5.55869223405295	5.04454362330565	5.44415529485375	5.34092143385918	5.2856394144618	5.52461563818246	5.3328248257967	5.33744746570921	5.24420465750793	5.2923787712492	5.39415588805401	5.20599994954527	5.14098854023854	5.26531000486848	5.1289907364801	5.42926552370712	5.27078638764958	5.29266614604147
+"NSMCE2"	7.68721017609055	7.48870019347992	7.4365718595616	7.52959187100141	8.13164474554614	7.79662013855612	7.5767555011942	7.65212056576441	7.79875808509345	7.76719139176988	7.51724885974248	7.66994868035116	7.39814932179121	7.71070834012603	7.65212056576441	7.80916442756306	7.6725561727956	7.84984798758405	7.78693231465316	7.98250475994861	7.63099665613351
+"NSMCE4A"	5.55890411844152	5.95268631795659	6.10701296762062	5.88024237150375	5.88024237150375	5.63022723156323	5.39117137315783	6.12798069955945	5.29512419107328	6.29430090802031	6.59064010421758	6.03752021695548	5.13293639960195	5.26394069236129	5.14769338106318	6.31250635305593	5.97836492896146	7.28358803593743	5.87894911271447	5.60244300386434	5.59012156272098
+"NSMF"	10.7476408320827	11.0142162457854	11.1864762321471	11.0947750170454	10.785250140538	10.7451096470846	10.915086710243	10.8675993765788	11.0703271153908	10.8042896383933	10.9241196701964	10.7825472563774	11.0576897100761	10.8742359362401	10.7910428519961	10.0691644123693	10.8262506735128	10.4241112530597	10.96338230902	10.9687850644367	10.7315603504068
+"NSRP1"	7.889148042216	7.74822369891737	7.32664931508455	7.36845592607708	7.46001629085174	7.63968709126081	7.66706719775017	7.73783006040495	7.34712518072425	7.46454709010307	8.07626059768917	7.24922739473179	7.6977989847886	7.73249160511467	7.58608145937753	7.68353887881912	7.41640075006621	8.03111013378566	7.58170166717093	7.39388547593583	7.50465922892865
+"NSUN2"	8.49297917373273	8.57872788757648	8.33223202832942	8.09919268460845	8.1861948406573	8.18522104009893	7.62880788197536	7.88119501717085	7.88478054377493	7.72490961861518	8.66428580394207	7.71316540545902	7.8054190222698	7.79935217689539	8.01459485438492	8.05959711108529	7.48840801841608	8.71639135208142	7.96015786282488	7.9754712486084	8.0914599356629
+"NSUN3"	7.44555777973663	7.32537641969168	7.3717212415638	7.258951422012	7.40002208858004	7.38671143384155	6.91966975700455	7.39196097603124	7.00465942383836	7.32796844901842	7.24445764812277	7.34900626343571	7.06520644585697	7.16712106679049	6.95482136747765	7.7736362660319	7.14766041543138	7.63301550909342	7.25122555274416	7.53050380794954	7.26665678172001
+"NSUN4"	6.54963117682696	6.6690983907779	6.17815405561377	6.68196024411195	6.53948595063059	6.74093071920612	6.55149082017187	6.44067483123101	6.4673532138735	6.90628020866928	6.20871110844452	6.38340007371235	6.35930252749535	6.23244623218349	6.42450481028763	6.735687869676	6.67783914033071	6.38079009487088	6.2990308318906	6.86348688726689	6.78455909971804
+"NSUN6"	7.68513675720596	7.51349392058272	7.51719442194493	7.83830586438824	7.22730625176832	7.30267084864818	7.59021858250466	7.55557485522253	7.39955118615926	7.06446558780316	7.70601791118053	7.43859901056429	7.21443858749367	7.8902503578085	7.74048949624301	7.61685924761864	7.13822650435853	7.17057507716539	7.21867788813787	7.05224635229932	7.24633463939188
+"NSUN7"	3.99825174081247	3.49907232928224	3.61077663312933	3.50310234788329	3.46808048741819	3.76471108010143	3.54435424304352	3.24910326472278	3.38844480990895	3.70085275387949	3.53471847175857	3.54435424304352	3.48403659948154	3.54619055441485	3.48197084529332	3.59349196159479	3.651734373606	3.63844303612685	3.48310066950709	3.45543993057874	3.39912049436061
+"NT5C"	6.60809850732528	6.59336716202643	6.82999210339405	6.70977501847895	6.39686174829911	7.15721149338262	7.44090227396488	6.54946065268605	6.8646540027062	6.89226707285938	6.74598674118961	6.73530412059443	6.88240396549423	7.30512595189645	6.86002945998749	6.58547676453574	6.67690943146696	6.42257298617936	6.73446992400927	6.7492331620295	6.70364110215366
+"NT5C1A"	5.62206502988059	5.8704121990033	5.86269459315425	6.02807838694524	5.69694818972953	6.04647326189478	5.8704121990033	5.73072007864594	6.02516761638598	5.84918119396958	5.89090006645208	5.85712734687107	5.69914924118281	5.99179154076828	5.72819661853945	6.15569693836323	5.88480611765975	5.79941313035127	6.0064046978355	5.88322527010204	5.92362530125233
+"NT5C1B"	2.97142803925388	2.97326112207611	3.03494250516311	2.95561579326708	3.29583134793856	3.06952507345432	2.99502147432698	3.03494250516311	3.10486010703447	2.81038734526324	2.96218944851232	2.99076872140114	3.0509957591848	3.09330235495667	3.42262616498732	3.05894236457421	3.06472479515618	2.77130002122415	3.20901276928803	2.97328701563991	3.3497611396835
+"NT5C2"	8.67591995771905	7.6308621449233	7.69278202818039	8.03429848662221	7.4983294890608	7.17072372274301	8.626114276224	8.04188016921457	8.32051513628413	7.92304126424628	7.87052001677711	7.41453064252368	8.20438066099261	7.98144753794155	8.05138122152292	7.69680252360913	7.92321424065397	7.649831089782	8.18494609491262	7.42092916222354	7.56689614778689
+"NT5C3B"	9.49451685325272	9.37120109026434	9.92865669946411	9.43840046749458	9.71753596874272	9.50902260282324	9.52114000297843	9.58960345997343	9.73002260403875	9.79381895414799	9.22454929123433	9.67769451232366	9.59780142193732	9.56126548049539	9.82649980444674	9.42934313947415	9.49852902578581	9.55967027862833	9.63523421774075	9.79404210749364	9.84384790252982
+"NT5DC1"	7.28435766104008	7.46067594800316	7.43086747705189	6.54063576004798	8.0197008421525	7.42434295609571	5.77522219746713	6.61050879245751	6.45276844228589	7.12549819243122	8.17437567905967	7.17537289113455	6.15882063785284	6.29752932339352	6.90237709266814	8.26681084903925	7.17764375891567	8.48380069429998	6.94816053035147	7.06520241798534	7.504772797
+"NT5DC2"	8.22815275003365	6.95419941382421	7.08193471998289	7.22505502104524	6.97396538778064	7.68190004762614	7.74818110292744	7.34751736909214	7.51641495500319	7.21390886548512	7.35908466564189	7.10253882407783	7.32155382349049	7.64189529238893	7.74031839953096	7.00223058083401	7.05115610234432	7.32992825339626	7.43105240627571	7.53383762381301	6.98418430265267
+"NT5DC3"	7.56154383707227	8.20010508419606	8.83489663091408	8.53870021296255	9.00476984156016	8.36474336445794	7.82942846813667	8.21621131167936	8.94224673193573	8.96596993684765	7.5576382719937	8.49987026286433	8.45693266139784	7.85650556708467	8.36019461688834	7.93180404707891	8.78935104066912	8.01811593805863	8.41968504055254	8.97222232418442	8.57906957526911
+"NT5DC4"	4.37290136166831	4.67685857832296	4.54642133854447	4.52577697602477	4.42765381306264	4.55087607999947	4.76968755238661	4.60568131769791	4.42350463329479	4.47439663110984	4.39321665452003	4.24159343714066	4.8792715911834	4.54450955117103	4.69024704657223	4.33365707436772	4.53236496885482	4.30952969237531	4.34925149518303	4.4027164627756	4.40997274417699
+"NT5E"	7.22485530572137	7.46963452072555	7.37859427735828	7.05794463064356	7.29385300833389	6.13897069846922	7.53497287494846	7.35124362878122	6.98681833008214	7.03193403317066	7.7214716459677	6.54367896325785	7.08808364579146	6.75828721083181	7.19173028823933	6.937901677772	7.02775012959201	7.62362888036652	6.92697091324011	7.33611316520743	6.39798864628569
+"NT5M"	6.97773390929545	6.95869270123052	7.24884084220685	7.06630304709246	7.10684752179161	7.11977666014369	7.24127344409257	7.0376794812935	6.97180014468904	7.0376794812935	6.86935272071423	7.05512893716173	7.17135972711618	7.363905463519	7.05638144262496	6.7115258808544	6.97556621007072	6.85171011983354	7.042377749206	7.16185335343875	7.29523340457141
+"NTAQ1"	7.65712522939286	7.82173707173643	7.87005913666432	7.47956048806538	7.98070408896073	7.43842891304339	7.07622680196727	8.12092762384921	7.51138740319193	7.97126227617515	7.98522675965459	8.05103693648627	7.50217010610125	7.01650917304154	7.70171508276102	8.22632696230927	7.82173707173643	8.29810551260869	7.61437114709206	7.9577455424995	7.80888386187004
+"NTF3"	6.01894329068885	5.94565073529534	5.99955366910049	6.04940936312695	6.04150327463393	6.26341028847048	6.36532205523347	5.89773663990051	5.92208972106937	6.09920963408114	5.88039397314014	6.0240972282417	6.17484963365248	6.04150327463393	5.99728726616042	6.04150327463393	5.95379950880572	6.04150327463393	6.05550950882331	6.04150327463393	6.07871852754962
+"NTHL1"	6.50358747679218	6.61394312176003	7.05957487779621	6.66708258146106	7.02229247565609	7.02316120734911	6.85093300526979	6.44611097090925	6.65359582394453	6.8009150792959	6.8380395159563	6.83328522989378	6.64520970620678	6.76565529263668	6.86897451129644	6.82390002428263	6.41147207818634	6.98987386861374	6.63285523273064	7.10813928605517	6.84077998819356
+"NTM"	8.24257603928983	8.83848310710688	9.06001347277935	9.07058463419603	9.20174267880759	9.02137278057255	8.25134228661924	8.96360189058957	9.05315781489959	8.64372022176845	8.89651817252291	8.88696769182771	9.04776316800085	8.6924292808194	8.9311776871537	8.53095198099722	8.74835958974043	8.62541721773901	8.68337008343057	8.70784478353018	8.56338037467225
+"NTMT1"	5.70156367567605	5.41120758741126	5.50076182085259	5.61029253873564	5.33952058854218	5.84344589292701	6.037622382578	5.34455851732179	5.54148035137663	5.34646930544926	5.53704597861808	5.30371034040852	5.73589813265059	5.83114063619517	5.32451590763066	5.48737761385762	5.45609357634558	5.50076182085259	5.36869482874934	5.33118956330588	5.3973348872181
+"NTN1"	6.22711827620539	5.49624424765333	5.67618114361695	5.62673311174542	5.37399626943341	5.36698586283466	6.11962876603779	5.73882994323859	5.01960319794618	5.30002412182649	5.94728544228489	5.27941117347017	5.33990148621694	5.79525687624122	5.2794569094268	5.54827439704446	5.31096450023693	5.51049860690729	5.27172088815544	5.68575622180644	5.22253072722894
+"NTN3"	5.25802894673612	5.30339733992226	5.42211775827116	5.40247752030566	5.21064887786574	5.88271047445599	6.09977225695821	5.41299196307812	5.50076182085259	5.54761645552091	5.30097792221674	5.5882511415297	5.86900348742886	5.72314857690806	5.47770825185245	5.36418669366473	5.53261267161676	5.48616340040903	5.51471346170014	5.4126518683416	5.50991852318179
+"NTN4"	5.37231838858545	6.16962447301701	6.93759896233079	6.19294552248534	6.81821096704836	6.57902115745781	5.61820425026317	6.14283738579198	6.28816126081896	6.57391985050314	5.45076712631025	6.29543175440337	7.05514798459855	6.31601944212345	6.42681647298448	5.83181181245418	6.31601944212345	6.49947486481016	5.78521977986982	6.58794940432853	6.84077998819356
+"NTN5"	6.66047136391386	6.30456707857851	6.45711528390675	6.08393259582117	6.21000611142015	6.33826500249025	6.90537083680042	6.07456786391073	6.12393305843295	5.8959541113588	6.29167323049457	6.0858085093072	6.20909263007553	6.53398598763154	6.06874261976231	6.3820297364875	6.10770753087399	6.24917705376426	6.27940380592481	6.17761901050999	6.07057246533933
+"NTNG1"	6.37051080352458	7.36045600152597	7.71886013343325	7.27816174941622	7.84174521375054	6.84795423378298	6.66574753686853	7.32244746855435	7.37694539902682	7.27494823136198	6.85199669553587	7.3393964640293	7.22050811961594	6.68743020926265	7.18348328666276	6.51391893645199	7.51912267076672	6.92063837119347	7.06434546800249	7.90256768386335	7.26876361622567
+"NTNG2"	7.879411961324	7.67023775478392	8.00178017331578	7.39498430846845	7.32945567361129	7.63321268195457	7.66684290795985	7.5638541791905	7.20162240161768	7.29117221017076	7.72906185049614	7.48538877453826	7.44201481580964	7.74685862731994	7.09119523792522	7.34328525206846	7.07280429229135	7.34445546159295	7.10478183802481	7.08182907166073	7.43082098014702
+"NTPCR"	8.16211588732454	8.41670671987158	8.61333203864103	8.06387540500767	8.65428159946671	7.84001035109461	7.91931230626224	8.37195881828525	8.10564793053979	8.61713650481458	8.47174489101146	8.43154332964137	7.98587674568525	7.55524925536405	8.04361295804732	8.83600976579763	8.11940249527588	8.95775451026384	8.36277334064628	8.68328859923598	8.41013643538108
+"NTRK1"	4.00974571494989	4.02214075329373	4.59793130382024	4.20988717260945	4.01495437302752	4.25553089907268	4.62697838576561	3.90955477238097	4.02902103000701	4.20658999363441	4.14627500373311	4.21967885964128	3.94003304282461	4.43766468832263	3.85550494950354	4.1389270560052	3.97263451257544	4.11341143383215	4.14464228038579	4.34425204063709	3.99353676147736
+"NTRK2"	11.146736442483	10.9940639427061	10.180026949863	10.9112360475209	10.8593760035844	8.21434883129388	10.8785090132965	11.082890007208	10.5459126948877	10.5783390688113	11.3451024312356	10.7293294847937	10.0299044578469	9.71226965162677	9.59529923299858	10.0570975865147	10.6751051017175	10.2605310064387	11.1109691131444	10.4561129859298	9.40626863553993
+"NTRK3"	9.06983809614986	9.63603606399359	10.2147215894203	9.88098560168661	9.94012740421554	9.88426011341945	9.12329515182569	9.39825736293208	10.2252295776828	9.43933397945104	9.06158853791073	9.42237482612151	9.67814413483399	9.58826445200716	9.78229407283314	8.16698074057812	9.65394501953054	9.30542430619318	9.80563135253676	9.66399246906408	9.3336131845956
+"NTRK3-AS1"	5.00714434205275	4.99169548668545	5.12906069912838	4.99169548668545	5.07511846406285	5.35928390992209	5.47542763050103	4.81574013806449	5.09226233770498	5.16751827733599	4.85137906616671	4.86609001515601	5.26524080659935	5.42687047524907	4.97432355979255	4.79983373178615	4.99169548668545	4.78493404264425	5.0620639592168	4.63505992870157	4.94334155364167
+"NTS"	3.7048264098443	3.94455582282733	3.86686031999298	3.94809751054681	3.94809751054681	4.02947413238961	3.97907060438891	4.00556503738867	4.03272519211802	3.80005852962073	4.90550010776618	3.98184162114624	3.94809751054681	4.14898804365312	4.00583824098364	4.04170588454789	4.03771872689135	3.64970936223263	3.7310797966026	3.84232318792524	3.98474162903922
+"NTSR1"	6.00543352272712	6.16606423613369	6.32389919761383	6.16606423613369	6.29919207093042	6.52958765060638	6.04163523542992	6.01120060031422	6.1675392874012	6.19184725442968	5.84729060911192	6.14793621160008	5.79976601284619	6.03793301705503	5.7131960409016	6.47269160902489	6.16676642643455	6.19848309085573	6.22239767903475	6.3881164216299	6.10582408514351
+"NTSR2"	8.8592508826187	9.30863012477608	8.89799621134193	8.66389452782043	8.74515111123505	6.36338703213365	8.90453959710634	9.67091461752679	7.90526133494459	7.86203584508179	9.77667807822206	8.81631968133994	7.62611521338294	7.97455130893186	7.33820724729287	8.697384913586	8.27568607260298	8.64476152720343	8.11971397140437	9.04791957676698	7.4733273474367
+"NUAK1"	9.87914893292388	10.5896526715236	11.3622942180355	10.5896526715236	10.9828333575045	11.0298501411022	10.0660333352193	10.1745039392639	10.7603614352726	10.5896526715236	10.1561752073865	10.5867042045773	10.5432647938621	10.3559870030314	10.8277524428234	10.2091378886139	10.5681600809342	10.6069910230463	10.5896526715236	10.9660262094739	10.6179914269635
+"NUAK2"	5.7288259047551	5.62490040615672	5.50170443506577	5.63401726145357	5.70619080171577	6.22479760764518	5.49940886114076	6.50908830866212	5.78706691689468	5.52469411060285	5.73236218936832	6.0991744990464	5.25015708394356	6.02547549955412	5.75978476106305	6.06455793178095	5.77422431492112	6.09814100105003	5.67550752791358	6.0432443613423	5.64643324302842
+"NUB1"	6.33826500249025	6.58319125800156	6.4522557202803	6.45403730510933	6.49299848776421	6.89586327597339	6.81651040255162	6.68360748491262	6.28303754415202	6.51581680220092	6.53695670356629	6.50781841678212	6.74813909638965	6.49589645697681	5.91730404157128	6.33826500249025	6.32555813678523	6.18576777097602	6.65067314665118	6.40155569527576	6.07752419170842
+"NUBP1"	6.86036576879405	6.51736630947134	6.22528175453793	6.39403681939312	6.5913720294713	6.71818615618954	6.38951002850314	6.44874886557191	6.34346530761589	6.55051228241519	6.68414613903848	6.40348141699521	6.54728010354533	6.49088664589869	6.50490350056362	6.53258488895748	6.28308028713035	7.02834595318257	6.53258488895748	6.74418630951455	6.70143301622332
+"NUBPL"	6.33847019685948	6.30989906014488	6.06588794949833	6.22015447176895	6.28620762260805	5.5991127775311	5.85227275218682	6.27150325440043	6.04566898624723	6.62100050662367	6.96184154124302	6.55407296738955	6.00670622707959	6.0124442153541	6.11921007752074	6.97516746539439	6.40602786463772	6.624294190739	6.36076895344133	6.43639052450776	6.02112078477534
+"NUCB1"	8.33170272040109	8.00771689298839	7.87433865562866	7.81147816763511	7.87422031020155	7.34405113430196	7.86979259866267	8.30199067187768	7.5326573754919	8.26050360484496	8.35866339290072	8.39683480400423	7.70461204780476	7.69813795375818	7.39379538771986	8.26195423187479	7.88316776888114	8.08426171311122	7.87123566633145	8.65345988714984	8.46767678852461
+"NUCB2"	7.61806439451435	6.98894090173437	7.3025327881115	6.79201572185027	7.2441296733823	7.04682918469721	7.04682918469721	7.22541517949604	6.7885183554007	7.2194744294773	7.48953294970214	7.28901756569334	7.03089738996624	6.74123038570483	6.66508074482812	6.66015719996057	6.82196588377047	7.48463243789447	7.33908645175132	7.29042061747039	6.74529604827915
+"NUCKS1"	10.0582494977901	9.99420413013217	9.60918631325139	9.31185541717857	9.86683835102472	8.77934860147323	9.60960234788891	9.88231611131573	9.18908417538395	9.84635713677871	10.2448654026057	10.0589775392356	8.8247024966119	8.88797183558125	8.84593687928241	10.4396476165099	9.68861196793965	10.1350119718863	9.63668412545336	9.7809793512157	9.6669819219991
+"NUDC"	9.58447769420097	9.36516772421067	9.81562181482891	9.51121305835226	9.79634288466023	9.62351416388911	9.67736479891007	9.61461551775732	9.69100636138576	9.71115982067381	9.5261746574839	9.73686719124462	9.65907239135997	9.41803085226856	9.67583686705491	9.48785134991401	9.53711205162337	9.822383852651	9.62560702822199	9.95978134160999	9.65481498268831
+"NUDCD1"	3.84563830729299	3.92412409119281	4.52171956938023	3.98452548724669	4.71750411126028	4.41059981276402	4.05986494896124	3.91977967638055	4.39590627366366	4.00455596082179	3.62589837570552	4.27518244542461	3.95586782052482	3.59881924114919	4.3594863164732	4.08760134636187	3.96336566413116	4.11004945747402	4.24319460971357	4.45279436459779	3.91625145018206
+"NUDCD2"	8.4240919760611	8.12857829062153	7.85812740918641	7.9919613616468	8.10927896248848	7.55833806948391	7.80653242081593	8.19787526031913	8.11695044471639	7.97567083041831	8.55753270870197	7.85564818766461	7.81465125246021	7.7535961254719	8.02187320740656	8.86556835462357	7.69755617321935	9.12241820660777	8.05795422112333	7.81203088513954	7.73632902730907
+"NUDCD3"	5.26136722597185	5.69262529631595	5.54162192344259	5.63808401498462	5.73829203614892	5.22437622769877	5.40393524553514	5.31187613669485	5.26297569700331	5.62472294203228	5.66236681869068	6.23400894925285	5.93799696161267	5.64435944892283	5.51403668859576	5.3766945620727	5.52518857431394	5.47009631899295	5.69699231817565	5.62538425424644	5.57122150175726
+"NUDT1"	6.66169562882496	6.26343747889409	6.35533149725518	6.18957561696657	6.26131293845248	6.48835402555592	6.60155580824539	6.14667687162165	6.2469545927094	6.17483474824185	6.34982857957935	6.13434898784708	5.71092632887148	6.18632590768654	5.88776050386117	6.7767861692269	5.93352641077188	6.50984605845258	6.35690996683722	6.25946270321598	5.96448716297629
+"NUDT10"	6.99066085843412	7.74722992565909	7.74722992565909	7.71104874658864	8.11515750602373	7.73772309137878	6.63513467967457	7.67986630725559	7.48286668100768	8.12850026532268	7.28638556500781	8.25319387565	7.41980776902714	7.46493599564205	7.57983677084667	7.58246225573214	8.10422401275379	7.9515312047457	7.87083261098344	8.15153945421603	8.16861717260999
+"NUDT11"	7.66662936750155	8.80760671601113	9.73084439475085	9.28449549803092	9.65161206335848	8.79208823186155	7.7928285760876	8.77994024371375	9.68576068488254	9.60588321665751	8.2290278388409	9.50284279122665	9.0898335722362	8.40513251008433	9.04327043702846	8.44824846994619	9.65881744762082	8.92063861482314	9.34588474770654	9.61585085989318	9.33602168871854
+"NUDT12"	5.1328636490133	5.20622221424625	5.43654314323188	5.45862673339546	5.5381414672481	4.91521677067897	5.02652662009025	4.96849439245441	4.95473768502908	5.12738720381489	6.08765862935209	4.807116199502	5.0415859140383	5.06265957494156	5.12906069912838	6.06187250357228	4.9802688129514	6.08866833249608	5.09654126391983	4.47769651221651	4.84494749487356
+"NUDT13"	4.82219323412421	4.58255244407389	3.88617121984153	4.205763902489	4.21883366391971	4.15008268879992	3.94518459150704	3.95052148162151	4.06038628547915	4.18234803252526	4.66732365500411	3.90186237714082	4.0820841433568	4.22321849690654	3.96106110619876	5.00085833622707	3.77971574681538	4.48669990473529	3.78405619730733	4.13226005453255	4.08786365180653
+"NUDT14"	7.44553576938023	7.54112693659274	8.29835296906075	7.83353120339158	8.0559862399631	8.07625037146009	7.55543404807051	7.68491035695959	7.65825516579003	7.96809358067462	7.21017142709217	8.00819642517398	7.85505486792087	7.6790794723177	7.81109000262509	8.06678531244476	7.70825634469194	7.88462989016064	7.62880943979919	8.57137445357892	8.16232556413296
+"NUDT15"	5.78337534826536	5.886990516074	6.18471406357003	5.63195159778103	6.05868009914968	5.47731027066441	5.38856744237904	5.96668269176175	6.00365177447367	5.89337094770049	5.77729039841957	5.87628416966988	5.97817306891821	5.73929897562258	6.3884302395561	5.64234854951754	5.86708779632949	6.15330230363245	5.83579757866634	5.97115127392247	5.7475817927884
+"NUDT16"	9.03069497214387	8.71022348284475	8.56462648778522	8.71193083926794	8.6726627843177	9.35896713069107	9.09810609771329	8.78722630000181	8.31119258484225	8.5733357595212	8.70158607263956	8.60146234607339	8.59869564267219	9.13322295265504	8.47480305452816	9.00997369217249	8.57004842047946	9.1858390110308	8.61859107939271	8.62897576512588	8.71256651877966
+"NUDT16-DT"	4.80818895849508	4.94046386517514	4.67515830131757	4.74367398473816	4.63440399738773	4.73306751374579	4.78200238113769	4.90629240478345	4.91147911674905	4.92250266903729	4.80220507713635	4.48612820970643	4.80220507713635	4.92607673240674	4.83199316985921	4.81379404789217	5.07774443961883	4.34921545494278	4.80220507713635	4.69168790186976	5.0015965005647
+"NUDT16L2P"	6.00034198909371	5.52039201850845	5.53294215327753	6.12355292427533	5.64912582762758	5.49124773265704	5.94500422145303	5.86456343579879	6.00990179220662	5.70881492160149	5.73684520378849	5.9743436879444	5.62735152979509	5.69605813478651	6.11044735015791	5.84669164877495	6.10251473282557	5.51373531810253	5.90690055782641	5.85037860556996	5.70037731469831
+"NUDT17"	7.43705983446531	7.40063564947778	7.42105901352182	7.292051907717	7.25159667403806	7.45371881104213	7.48359417099542	7.19885625098033	7.55339187625466	7.11414401497298	7.16431119782544	7.17664972656744	7.35504609697062	7.55238882872505	7.34004565933904	7.01224128956011	6.91724260898555	6.9346449654175	7.14662169493838	7.03236435571183	7.23654050625439
+"NUDT18"	6.34206803821092	6.63471029760316	6.75465511050774	6.35448194325248	6.86512421632919	6.45942251717696	6.21884127629051	6.25270893298133	6.37389122320981	6.75852857280144	6.49580062163094	6.59154399216281	6.53811974788637	6.50624387299005	6.30792784846663	6.38793909802983	6.34496526244818	6.71982066197759	6.22157133965004	6.80342976161147	6.62374853232933
+"NUDT19"	7.41180632076781	7.39450134959034	7.57493365209131	7.25958017287873	7.30602542161716	6.7997906951609	7.17611375408733	6.94752014326859	7.26826528570144	7.23800815729517	7.55984807878031	6.9782403551526	7.54287342140996	7.15924423574236	7.49304662138133	7.33003562977777	7.2797226383436	7.57469468646753	7.02161057808799	7.18458066255611	7.26413172715094
+"NUDT2"	6.92928535535694	6.65248910436974	7.38462303089731	6.74678344882483	6.87050617901333	6.12682325780697	6.73640415250671	6.49576828767617	6.85126603927912	6.81477528236767	7.14082520445121	6.87688433805547	6.24624496249475	5.7892156560455	6.33329000333339	7.41806150768899	6.70298507330127	7.12344570177212	6.91168308212337	7.16977904985356	6.73532823272181
+"NUDT22"	8.38503962766784	8.23844184316006	8.43795616965238	8.29153114043308	8.35264590778289	8.35086099941393	8.19406823876404	8.05892677907651	8.08846080171717	8.41848959140507	8.19220421352128	8.22069247207597	8.40661515061627	8.55481109984249	8.32546835151121	8.23929453488679	8.01536870403491	8.44296885225611	8.18655725715937	8.53950724223105	8.44042611410491
+"NUDT3"	11.2813834347272	11.533935211834	11.5891964894344	11.5874707240369	11.4930360344904	11.7490148113367	11.5215533050757	11.6050513138685	11.7131199774995	11.6217494902169	11.358434913205	11.466045145581	11.6659386770764	11.7418301998121	11.730030652268	10.935748783234	11.646214704788	11.2694920789974	11.4375266704106	11.3937531539541	11.5584173152997
+"NUDT4"	3.80896750888697	4.48383781786433	4.46204479618855	4.22943629980296	4.50777029003249	4.18586762790094	4.54360771335539	4.13815979529214	5.08549668789252	5.20336445960824	4.54360771335539	4.76385347337767	5.39576317200021	4.27105802720784	5.49346194443715	4.45495878861003	5.51261693090767	4.13997242646666	4.61284354163675	4.7477100814372	4.29849283234473
+"NUDT5"	8.60965993631079	8.09217120339157	7.83795607992243	8.09675299098797	8.02523295710721	8.05986253719805	7.91634254983271	7.77794981674596	8.04444064167918	8.05423827983495	8.26029674650204	7.81165091735092	8.29903430599965	8.00619340059111	8.25380366259585	8.65012106233427	7.92648387718949	8.50079054777598	8.19908205634751	8.37401690028172	8.05055801437978
+"NUDT6"	6.52139470299486	6.33758558063368	6.13548905469575	5.96777744796683	6.50053869751266	5.74027710584579	5.74242967924949	6.10331974567562	6.14429876785063	6.7421643170995	6.64680247593073	5.95378137672337	5.78129764421951	5.79183881334672	5.63993072643066	6.73213414282325	6.26939492595727	6.60789339083283	6.54367896325785	6.10930331258612	6.09546391780988
+"NUDT7"	6.58791393499304	6.36484516703948	6.8717882975923	5.73652954762427	6.71772528027749	5.66812888195274	6.02917431684124	6.12059484398192	5.89304357107092	6.30111021757046	6.31015216053647	6.05299646278598	5.6784444864759	5.56356499958136	5.8156119964525	6.83855780101594	6.2251382327642	6.40836003707566	6.38590988048155	6.85844886643607	5.9453497513462
+"NUDT9"	8.79825553008935	8.65569959219724	8.51608916762081	8.89872783326163	9.03761172339616	8.2872731752214	8.34995637794243	8.65837525972754	8.86390372094964	8.79967284156094	8.76305824043269	8.84181814078068	8.87909686549375	8.36281125427225	8.94843365483605	8.99150310263885	8.80580654143985	9.09604097946818	8.81364812806634	9.08057859316223	8.88820087533069
+"NUDT9P1"	4.5263942590429	4.79974040530713	5.27590658235869	4.43579702220818	5.1739811742235	4.80419531992814	4.5136256886507	4.88175692707423	4.86361138153057	4.70393823292749	4.62717966040302	5.01798884658015	4.54149893288255	4.83851391392687	4.8867571398749	4.71435399180948	4.92264623735671	4.87265603666898	4.90315292840776	4.93679829254173	4.3488589819042
+"NUF2"	3.11069869770667	3.29080413271651	3.10723156550194	3.10723156550194	3.10445188916792	3.11714246528323	3.06156443526105	3.12649001440909	3.11041552744589	3.0768461069553	3.18899530780909	3.03249661205101	3.07178763351392	3.03134188585592	2.99191438746996	3.15254911232261	3.12809306202837	3.28309980438841	3.00395218801831	3.12649001440909	3.15132839120907
+"NUFIP1"	6.96825360289124	7.54478620633791	7.27142312958219	7.51265514193822	7.51582282201671	7.22519496825998	6.48296429783098	6.9837300368738	7.34511031779342	7.21070069039242	7.52225162317349	6.88815153766301	7.48874927205158	7.09427362506496	7.17718542085955	7.70180264704951	7.10297912822151	7.38909493360749	7.2185341311338	7.22796126628441	7.16401025930563
+"NUFIP2"	8.13554485648147	7.77201225993937	7.36581179474454	8.28757062380526	7.82722724277931	7.53754826441704	7.80972693935069	8.61557119553287	8.13675688886499	8.13776292986515	8.22436582055728	8.29508635411677	8.55349574824258	7.6039004698057	8.70279911139341	8.37961115270764	8.12275938798475	8.38467325385451	8.16927584787791	8.18285764764874	8.13776292986515
+"NUMA1"	6.50630106444522	6.63505510687339	6.22350645635583	6.27225131441596	6.13357284317844	6.01034398685799	5.7574456668666	6.37917157726274	5.77789843759655	6.32541367085544	7.14901707149335	6.85556560910592	5.73971809950586	6.40134635813452	6.13854382817957	7.0817192623044	6.50835823443161	7.50876138319026	6.58762044762776	6.26642288646851	6.10705677093885
+"NUMB"	4.73485741432337	4.32068782897417	4.45102815776402	4.4990785248659	4.50868799420191	4.0947121677871	4.95658681629747	4.6158771750145	4.44546044383371	4.48815833244297	4.52652393969385	4.13324618900927	4.67182517268179	4.84701922241936	4.86195609145708	4.20905244854756	4.44546044383371	4.26448338550726	4.42826021974375	3.79137514496655	3.8864703690736
+"NUMBL"	7.5789481517204	7.85295887088805	7.76689778136164	7.83857145784376	7.88082832974769	7.69990771081409	7.80173787216346	7.70675501438585	7.66451990848458	7.69876672206017	7.57729694138568	7.81451362111114	7.8262846937633	8.15652153532995	7.65117793377452	7.15459373840472	7.62802922884502	7.53810821748498	7.47538291862699	7.70325105690894	7.65281540627652
+"NUP107"	8.12697141384195	7.81598685508636	7.94840295627319	7.03526490820954	7.68502377566083	7.701336981947	7.14957835387518	7.67178159823187	7.28130433746056	7.330653803979	7.95855025783167	7.07887511165813	6.71488116450534	7.21943747918069	6.87000780421863	8.13651942291666	7.17476639826967	8.15096935075881	7.47062582710603	7.39032393475074	7.12995049994994
+"NUP107-DT"	4.78324188943372	4.85115919782101	4.78691388908681	4.5523323328739	4.65129850408145	5.22827597923998	4.88097073046287	4.77000173649485	4.81851565551861	4.65043455904463	4.74430390115526	4.73056229287252	4.84542312246707	4.83548053540498	4.7780489402885	4.75926635015061	4.78691388908681	4.84737173175617	4.89409464331199	4.57512919121534	4.80082175462958
+"NUP133"	5.36082033345385	5.41140331222657	4.64492769646161	5.13489601997719	5.23942267993282	4.30126499110215	4.90691948659878	5.10958678961426	4.72772361118288	5.1697978852789	5.67437136216925	5.55610866778702	4.63325202068796	4.77069323037558	4.67192441633462	5.90860205307899	5.10248696887122	5.59289179049441	4.92816440004472	5.38978668178381	5.41955585531439
+"NUP133-DT"	5.39818723862427	5.51698186140246	5.67304333447191	5.55324284484772	5.42658854415399	5.74275565381399	5.50384419231757	5.50621303105827	5.36503922227062	5.33192926712524	5.22694164851798	5.3505167805776	5.56599096463647	5.77230554882848	5.41048112123181	5.15207080763914	5.50384419231757	5.44757899607879	5.1215000455785	5.2705306741417	5.51970723746155
+"NUP153"	8.71000746617602	8.62182710440056	8.69846153640637	8.67681820111629	8.62943505646625	7.93794002275929	8.18643934904345	8.52901488873774	8.47286070659658	8.28692473896015	8.86332027440611	8.44974928568752	8.63224802369965	8.26656291246401	8.52377260337139	8.81137947657418	8.46879438975616	9.03006324169556	8.35259111834766	8.33690320043213	8.60379313323568
+"NUP153-AS1"	4.50027435686551	4.37893650326245	4.41376955184005	4.30590993920816	4.35078603608834	4.41743618009739	4.58146168324429	4.42043971865223	4.61770996845762	4.61552486600255	4.38640791226774	4.27034061786087	4.63115795472427	4.64128476664347	4.18321208022379	4.52818948057969	4.50027435686551	4.5851199661956	4.37450616528025	4.6442680749523	4.54282204710313
+"NUP155"	6.74795538253272	6.90869315909127	6.39895132503548	6.41889159110083	6.43618710335448	5.7153674659279	6.56009857163801	6.62490641296099	6.59602749626872	6.94118975783161	6.81294338801741	7.14419449448687	6.49100262180394	6.45435133969044	6.88025291478752	7.26291450816839	6.60424680594401	6.63493450253064	6.74928129737991	6.98938986720668	6.78093031362765
+"NUP160"	5.42111734873911	4.79481451683808	4.78045072551138	4.83851391392687	4.69334585369801	4.666175149098	4.92240179593131	5.03768891274488	4.95967458996184	4.35576364954066	5.6167533674964	4.61552486600255	5.01055728926335	5.09194970410068	4.83851391392687	5.24223619005789	4.8827712889815	5.80632790020059	4.75525740716531	4.59782257405571	4.67099650497302
+"NUP188"	6.32186445727425	6.16219355166975	5.62075498452209	6.25220629867328	5.7963381376276	6.31322414504163	6.6722572383128	6.1238782579538	6.14857557228012	6.13019821442121	6.27750776217749	5.91557488073951	6.28414784071143	6.54699832460715	6.38750883584766	6.02761378430223	6.02632334300067	5.64820185140097	6.30924801779033	5.79099153915054	5.90029244085147
+"NUP205"	7.67877740713891	7.38300432473778	7.36937488218657	7.05713079482211	7.40886206242531	7.09536037518267	7.22559344928658	7.64000163550867	7.23974020296768	7.20125505359106	7.48655326890958	7.28095454965759	6.86288988661815	7.24751812815543	7.00649489947399	7.43587002483136	7.17247055296161	7.73281459930701	7.10285326999159	7.32237627509844	7.12234855509859
+"NUP210"	6.91584149899386	7.15144629921409	6.9100299460312	6.64008526528883	6.67059587902625	6.40569491895401	6.49371956861382	6.7009307525008	6.51842173865867	6.56705322083808	7.18144957638052	6.86439644806259	6.57966220420738	6.60897079827962	6.55760306617614	7.54510364453713	6.74557273927933	7.30154077459072	6.7955581698139	6.94982862491583	6.85462482902614
+"NUP210L"	3.73073301002541	3.92221213801607	3.75668307364877	4.20479628536753	4.16394629327828	3.82087429141493	4.48326114088165	3.96779852709763	3.97203331982896	4.06090979059571	3.97203331982896	3.84741195662633	4.08870086860239	4.08216086216101	4.09778693450407	3.88526454625893	4.13588884240232	3.84054160309622	4.10792800522614	3.65105881015138	3.79875976200115
+"NUP210P1"	5.05709523555228	5.23392141235299	4.87550714197353	5.06487387930376	4.93399346475441	5.19445810700247	5.32890817686741	4.9700434123429	5.24649810104569	5.03604306327537	4.86322061857734	5.00886989677537	5.06959211468852	5.2160514347007	5.19821491434553	4.84249854912816	5.06959211468852	4.86587111372043	5.20591683644638	5.17941388661431	5.11602006313237
+"NUP214"	6.81623744614015	6.18000321492388	7.13834134516826	6.52141623116222	6.47683074367385	6.4988829560714	6.80313380468457	6.08633829652275	6.34642579687923	6.27156845092155	6.60993255941728	6.42325066975327	6.3790363973864	6.4106518477598	6.32999338328055	6.78984334846571	6.37492148280619	6.81105022997315	6.00204899721712	6.64456926439763	6.05014896669318
+"NUP35"	6.8135542779583	6.81030554318374	6.63428801702807	6.75728506053861	6.73332661979597	6.27298444529439	5.60173415215985	6.43789119440093	6.69658962532434	6.41457342815966	6.92276056491953	6.66237402427022	6.40414783500955	6.03120668930313	6.71802834503198	7.15208897189982	6.38572131945454	7.27530388153486	6.61102904542571	6.73958627857995	6.51386778620028
+"NUP37"	7.50178631961349	6.93586780054685	6.36155263496265	6.79497304961097	6.70661435550665	5.83309522279912	6.46741966411915	6.63309129439352	6.11148785554081	6.74539642359874	7.27352524706096	6.47891950628748	5.86843072042109	6.69983604912062	6.25204294766638	7.27032644013602	5.91536334384264	7.3447120582823	6.60607974386258	6.90162393046746	6.16567765957948
+"NUP42"	7.43778174029354	7.56822545584032	7.64325466499746	7.0907400935602	7.44261695822041	6.86665884928782	6.95823486860395	6.82219171874295	7.5247295454083	7.45122741146298	7.05969016072893	7.05025238339775	7.19191577539457	7.09626229612251	7.24332618479336	7.34540954957602	7.16360754260182	7.46831319888572	7.20668890677059	7.53934458820535	7.28031598380354
+"NUP43"	4.46831642921625	4.52175748711118	4.11911279226876	3.95500253993519	3.9662919495982	3.75912143369708	4.14838854359765	4.38027374074432	4.83692997756467	4.91912212229306	5.01222314395175	4.23608465972745	4.08945931051462	4.62142070330257	4.60432838805109	4.78381957435568	4.88270607880733	4.25862998709243	4.50643129871752	4.29382165387612	4.05694010304352
+"NUP50"	4.97657099813579	4.65238838590816	4.86986392122983	4.94936370266715	4.80523473450703	5.39256889886875	5.80849534868422	4.81573676429571	5.13815608708428	5.14320757339587	4.30863185058095	4.93206621205752	5.24167878453111	5.32102165700877	5.03626363184808	4.57041330286314	4.83430393450557	4.6996748419754	5.00848925348602	4.98664022813871	5.01428411291448
+"NUP50-DT"	5.97729567172435	6.32435821932328	6.16439482079316	6.24614946199332	6.11367082491704	6.07249189216989	6.00697239121767	6.17960951300585	6.17102607354078	6.27610864118907	6.14158956122482	6.1621114384254	6.26746532779648	6.17960951300585	6.15631698694303	6.2170132824863	6.27610864118907	5.94545740205617	6.12588144894996	6.27789389162072	6.37845446668022
+"NUP54"	8.307933372418	7.97157870932847	8.39877191879404	7.66840212614251	7.85683409563114	7.38693387884486	7.0353882535319	7.55544640284364	7.6363500161903	7.91321097618744	8.1540706478972	7.42583134221212	7.52305125015231	7.61484963478364	7.80641099813534	8.25431903198504	7.27090636291912	8.38828030150112	7.82073601486526	7.68194537192306	7.90371303293258
+"NUP58"	7.83287140852796	7.98563129432433	8.73936733373962	8.33102585882589	8.66674368227435	8.06971874025677	7.96139556413149	8.46037492781538	8.69230232159365	8.36092203721237	7.79662013855612	8.29048593947361	8.37434221482191	7.70348094203444	8.86678692277465	7.86510691065193	8.55905308474232	7.98912514745546	8.43430213471271	8.24299713872844	8.20642529143751
+"NUP62"	7.2526122972806	6.71026627654852	6.34601404219955	6.82954538331584	6.66011574517793	6.28450461225255	6.99665207245361	6.86089452427774	6.6234212232488	6.92685624342348	7.16518025505698	7.15238049256317	6.76678630906734	6.5320648037167	6.23191030572072	7.25098038768322	6.65659057246948	7.05224635229932	6.85975676448879	7.48954199077001	7.09540673572265
+"NUP62CL"	3.37051101198126	3.509202828761	3.59035006425724	3.76696026676588	3.63880104402804	4.41928671242804	3.81304310971496	3.51983518334572	3.83334511610092	3.62322734637198	3.42598080769835	3.68354816057489	3.513699128374	3.93838478677342	3.42065710400849	3.56521135326746	3.54184518013468	3.66153479245252	3.74822857311722	3.68777229192218	3.4632993738838
+"NUP85"	7.95248682934035	7.8089351848997	8.09895270008934	7.2384586636984	7.73904270714573	7.37730463964268	7.15739484055707	7.90087445199286	7.33913132238299	7.88318693176675	8.04886104982629	7.77676324482957	6.94228202779246	7.60528070643572	7.17362950833876	8.32391207203207	7.56056039128516	8.27396766183987	7.75238174399866	7.88271943896704	7.84350637216732
+"NUP88"	7.51475986567659	7.00504801209367	7.23767354922076	6.82544684530544	7.07489570210592	6.84604072958101	6.69694602419615	7.22581622528069	6.9442513784464	6.98912609912534	7.1613403424192	6.59785334144919	6.34615106520846	6.56474453557593	6.78953578471793	7.34159202788306	6.67455411233299	7.38211074835513	7.12252771255921	7.28406826351765	6.89757729467178
+"NUP93"	5.58092016034774	7.51128483898199	7.74042184350998	6.58857658161143	7.50410317892238	6.24624496249475	4.9288283931948	6.38846655542236	6.39487517988831	7.18611586451469	6.9698631482616	7.29478889852403	7.0954975437671	5.96970263218105	6.22528175453793	7.25885916404987	6.74753199401317	6.82650503114237	6.05820299901756	7.21331153724365	7.25168310818483
+"NUP93-DT"	5.60366797118523	5.86838587373586	6.5793184786918	5.98867335451741	6.08046765210468	6.1733637120028	5.81181166526696	6.20172668949693	6.04541930936756	5.13273066055268	5.9410739993942	5.74726030546096	6.22359528283705	6.12546494900978	6.28552169706969	5.36242240733628	5.86200043343263	5.52936236278816	5.89477565612256	5.76758375848631	5.53727664837168
+"NUP98"	7.01236032690963	6.20885597331493	6.75012457913344	6.24895449084834	6.45629934046264	6.70944415567941	5.77060790332514	6.2137355620899	6.32546849261898	6.42655398136066	6.50386071625572	5.84680436663177	5.74611374363421	6.16494818929894	6.3674239928453	7.24537495328396	5.92805334273984	7.01416449564869	6.28624444827181	6.38440316320463	6.24624496249475
+"NUS1"	8.42755392324465	8.60468082071565	8.46119552652159	8.46778910113986	8.91821373202519	8.30755445820876	8.22011996224001	8.31226245965292	8.52153020437364	8.82258547951793	8.28549345225424	8.63067415168671	8.15074544711782	8.14600778533437	8.51564861305638	8.49721096138723	8.57341354396501	8.6012255104198	8.7538880315817	8.89422487183416	8.87620461322827
+"NUTF2"	8.1300322258975	8.29663478080151	8.51369589091286	8.26631814289895	8.33340275026486	8.21348071110175	8.39919770985251	8.15787304140329	8.2955074592663	8.21301361943521	8.35883503969025	8.45338113143855	8.42836629224724	8.28893403692252	8.57964860704953	8.19078647723909	8.40990479536387	8.14069594019584	8.3561634393574	8.33817221796701	8.34681934474874
+"NUTM2A-AS1"	4.48936205998722	4.97818277078762	4.7903263074414	4.64058393207036	5.264864910515	4.81110669000912	4.29749653509382	4.92686177442606	4.67569487082649	4.61252526873135	5.2959536581184	5.63026693377549	4.32200848143098	4.20785458686747	4.31482505833317	5.02118944267117	4.94833914622571	5.17524147625632	4.63275520898804	4.91512066266508	4.63687842428296
+"NUTM2B-AS1"	6.71953626741744	6.92688539044163	6.55763910024012	6.5900548257363	6.91505503006421	6.50840027858158	6.86035253260836	7.66690559613417	7.20332699103193	6.78799599617843	6.7620428060189	6.99687107673089	7.01744210120672	6.68871899435324	6.87326143969523	6.68062498990558	6.87980403148404	6.57314685638625	6.54524357783297	6.91037947770949	6.90261447305306
+"NVL"	7.09558713127764	7.24296674207203	7.50626306038748	6.72052119686281	7.03097103950492	7.05940764674364	6.68832153720737	6.65678676400375	6.69554803810625	6.68525168888194	7.1955135574022	6.66684580098436	6.46983142417484	6.94653557382899	6.6078960619974	7.47890944284305	6.38118565761455	7.42564617975378	6.76814516027172	7.12756568395118	6.89546907740355
+"NWD2"	5.5484671529823	6.5937954426093	7.71849451387148	6.81794495175394	7.23577905626419	5.75261477580115	4.46061647220092	6.64096918551144	6.88353875243515	6.65324362335358	5.58784799410143	6.58581406143256	6.48803267569423	5.28170598797589	7.29365349703252	5.759127097958	6.72800370118402	6.52607949518798	6.83764465978932	7.07633669388011	6.50082294718485
+"NXF3"	5.06205139182681	5.05891353681854	5.09034447820557	5.23552373932718	5.11889431024557	5.30088815308783	5.75635939276718	5.13673678549694	5.0933476381591	4.94357438075115	4.61652375006986	4.96069222349169	4.75396831859577	5.43300576023898	4.95304817289944	5.02228955317533	4.54162006227517	4.8842631244902	5.12906069912838	5.27622203736415	4.98874924473153
+"NXN"	9.37872204067589	7.78854812838405	7.96905077676396	8.2441645091438	7.87479943750379	8.36679265367604	8.67938510257112	8.41361402989248	8.18825152188271	8.06969780407162	8.0710142126797	7.54750961249034	8.41638238946269	8.97359393591355	8.38188993456605	7.38615014414036	8.19097224412079	7.67213180399088	7.72147528861951	8.56950149108952	7.84708118414336
+"NXPE1"	5.11135604994629	5.2096629881131	5.22476082277058	5.34648381127942	5.00561867284426	5.66982869314735	5.26265897708434	5.07468816896578	5.14099536389179	5.19620469390342	4.77537487768906	5.05059681528864	5.22000223749056	5.26590355278674	5.1968901807198	5.4398699799124	5.14954879535575	5.00202875803862	5.11148740528902	5.02144230441493	5.08968185944052
+"NXPE3"	7.85726768717292	7.82173707173643	5.35361031190578	7.79135779181902	6.25913404222787	6.02706204253251	7.07102983768272	7.67583220712803	7.88990591982441	8.0221796754143	8.40612669321223	8.02388615735649	7.83611996769806	7.36717414471024	7.87384472373926	8.39364953273529	8.05030807805941	7.02765941387623	7.94523351816073	7.54817014420308	8.12276440035267
+"NXPE4"	4.59365090371391	4.78057709465034	4.57113860995712	4.85134425114254	4.72423247387559	4.89469499162772	4.97398993184734	4.68959546984845	4.94110271783445	4.78057709465034	4.54258642446521	4.78057709465034	5.25255474757163	4.73711844282883	5.01179202770565	4.83720449904148	4.78865385119107	4.6042479500989	4.65118712430432	4.92159535767622	4.82024777720176
+"NXPH1"	5.49430277868714	6.81364386678137	7.60013962146117	6.71726876881644	7.55509135509715	5.88539059213408	5.79045667432308	6.76887067270613	6.61569984390786	7.20621164010804	6.63756797656979	7.10161436952227	7.35639475388109	6.17007248696622	6.47623410704698	6.76887067270613	6.84335401630347	6.9313690690726	6.56776564370996	7.49717064281852	7.28843120300763
+"NXPH2"	4.06653859453943	5.80101892905265	6.96429384346829	5.97458913275575	6.18984993812595	5.30326128094257	4.74232196092967	4.98056580297815	5.44317369735355	6.30161360497568	5.42210685631753	6.08358731641222	5.65582389237603	5.42914540944426	6.22370936132381	5.73948075908403	5.71154905146855	5.70826348461612	5.6939986835082	7.04852611040508	6.40196401031816
+"NXPH3"	7.60702322642022	8.00780757152443	7.62280251867412	7.79948337481606	7.91611631151187	7.7664807945682	8.29227220471706	7.58791151138723	7.99524279082724	7.65212056576441	7.78473313928427	7.69955509438164	7.90665016185161	7.970000716072	7.80923326433857	7.73854035315696	7.85123867897838	7.47638258159777	7.82220672422064	7.68486878811327	7.76680964487768
+"NXPH4"	5.5742694462679	5.99841499269217	5.9927356569159	5.84707342456907	5.78076541072905	6.65842601270835	6.24363231482102	5.84502811811933	5.86634943442833	5.77207068012922	5.84390351499833	5.82648687307589	6.05060616368794	6.21236670990951	5.98726345932366	5.95838096170595	5.95022957235327	5.76051400883325	6.13183872191535	6.12270250110497	5.85338708587198
+"NXT1"	7.9355834982161	7.59410564691356	7.62389573975721	7.40587949438865	7.53685541724982	7.8731772645778	7.633969504012	8.15491213357297	7.58713197447911	7.38351009606377	7.51205083217913	7.57148259624918	7.70372819908654	7.73008667543822	7.66605605089778	7.6255795928465	7.26031782992131	7.94951504677374	7.49631704551116	7.74277479501879	7.59828952637283
+"NXT2"	6.71811173535196	6.83451245702902	5.36394680892014	6.03213047875337	6.51836418773851	5.47775261942154	6.44212450183273	6.77141303064289	6.28142218991678	6.0762023774417	6.73782182291892	5.98128436440516	5.85510388989634	6.10531305249572	5.6733063526494	6.40987747982599	6.06831731376729	6.58708625307083	6.20145464421676	5.74798527083354	5.63713215240865
+"NYAP1"	5.00275811830458	5.39522805429302	7.58114830486107	5.99525589939082	8.02040755645002	7.60523127539103	6.00852785781034	5.49877205924618	6.54220541910782	5.35777865130728	5.01885950859697	6.0360263511916	5.48105142157395	5.44354516699639	5.3484641016212	5.68654920178879	5.32146487713718	7.03054650078226	5.76924842350483	5.61899203419582	5.43145555977394
+"NYAP2"	4.74436806729007	5.14873718901971	5.42149838043533	4.90203425523201	5.10384536367682	4.28210903800812	4.95559086160874	4.62841484500927	5.27733297623208	5.20592853671041	4.7251630319141	5.2401451300165	5.09122390903668	4.94771371950551	5.00551954157796	4.54347027990599	4.96852380284953	4.28664962582033	5.0682026546181	5.3125657862797	4.97916904473061
+"NYNRIN"	7.75210832037256	6.68684148345917	6.78342725958458	6.92677788302301	6.61234038167216	7.11176175287816	7.0428988357604	6.82502603245477	6.65143896395953	6.4603398805232	6.51143752408804	6.46489903459762	7.2002929602355	7.12058132610596	7.02840283470495	6.15026771363066	6.63493298987544	6.46489903459762	6.59151325746479	7.05224635229932	6.81110916462199
+"NYX"	6.17617240033423	6.60284523040054	6.75526842335544	6.76902370981742	6.56560888601199	7.19752700213922	7.51499706921893	6.53648330803011	6.91323602690237	6.85929858487172	6.59361593165903	6.84344837616117	6.98634930551976	7.18601250538597	6.77015475387019	6.43869985774293	6.78175541462183	6.52139189098326	6.97258068461529	6.48144898599342	6.774583240591
+"OAF"	9.48406429731314	9.13308991522447	8.97059587617407	9.14083767545618	9.00858759751759	8.41973996438838	10.0424555291073	9.22450562586667	9.19125060261149	8.99353286967385	8.81714677897547	8.84522489325959	8.85711491292648	9.59507574259985	9.03835399861069	8.39992176309183	9.03775982836679	8.76393576399355	9.28299224122463	8.96456610403276	8.49141115272897
+"OARD1"	8.70272345021298	8.38444213512195	8.22441431625188	7.93292524678335	8.2569092836572	8.03318051254703	8.08049446668508	7.73103919077799	7.84493091904269	8.17475858711335	8.49588608284373	7.99852651536153	7.6529007999754	8.01403875683248	7.99920802501717	8.77106749506968	7.54289494633838	8.56482078731711	8.31424862007632	8.18709568745038	7.9700495099681
+"OAS1"	6.16511055119182	6.39102231255271	5.98629303404377	6.03526894864741	6.07431685460214	6.68593923401759	6.47752610131781	6.08013652436103	6.16037107742263	6.17483474824185	5.98983540614296	5.8045385181619	6.18182304885265	6.72651665665295	5.96035593995304	5.98232833464584	5.90489571930958	6.12059484398192	5.9169212622346	6.19840989508872	6.28643006763855
+"OAS2"	7.10407905097842	5.89408488561464	5.12886105187727	5.46505059800445	5.68079960636646	6.75149796613513	5.42693869995793	6.17479861980655	5.35290343264938	5.30435497672022	5.69262303067392	5.2248089957295	5.56035088690433	6.3593364505816	5.60719676594397	5.78168020763818	5.40454761984269	5.7674436135461	5.49219144725177	5.69809779309197	6.26171637317228
+"OAS3"	6.74851718946453	6.93587172745345	6.25650027014779	6.64647537343952	6.71629096052144	6.9743920694295	6.75364978777992	7.20930249589732	6.72215108385464	6.49789414165265	7.10454008583615	6.23583028841018	6.82302019631565	7.32159422635684	6.47982738126948	6.34218302470041	6.66246758774363	7.14341265449154	6.4623515154796	6.72800370118402	6.90664284055263
+"OASL"	6.71734215214263	6.7932570645231	6.67679417196961	6.86957599152369	6.70207468485677	7.21978681567457	7.17942761691772	6.71773798097083	6.88959522245989	6.72581419450156	6.7882629061339	6.55079615366614	7.2210707769658	7.34457500453237	6.9001531426592	6.59434663339194	6.73512635174466	6.50666065670635	6.91302247141474	6.82329350035695	6.80840265930455
+"OAT"	10.7534049480784	11.3667987297327	11.045678263578	11.1438654086775	11.4586382324843	10.6279919812886	10.2208760059277	11.1833968739991	11.372540991615	11.5085475546667	11.3158227224794	11.3503954668092	11.2408278039123	10.6480405105795	11.2097815290617	11.236662424622	11.2461577561504	11.4402420457645	11.0338937371338	11.1679519987758	11.3934741259755
+"OAZ1"	11.026832056675	10.5979908709164	10.7159934860738	10.7926349685745	11.0835427025809	10.5940121587936	10.6552106309367	10.8391786707872	11.0260103267844	11.3190841409354	10.7456250641581	11.1119878698667	10.9218226691388	10.3865382300992	10.9883878388952	10.883594195851	11.1167037683441	10.9528333226619	10.9218226691388	11.2913112842223	11.3317388419763
+"OAZ2"	10.2618043952566	9.90110361238751	9.37144383649681	9.85450691820644	9.82835171672692	9.34364012157785	10.0586443159886	9.8593828826511	9.91308945525597	10.3707111938026	10.1498383992312	10.1338517027511	9.58011693938765	9.57459057510986	9.68751136384075	10.3124935500867	9.92522172255838	9.46421238704557	9.99151487955956	10.3739785471494	10.2113239841147
+"OAZ3"	4.73709941181895	4.71013144106895	4.74540635076315	4.8787332099699	4.74902533805054	5.26939201255579	5.22062484492495	4.79059008912685	5.12504835756071	5.09554783971867	4.63881776680137	4.81554908844896	4.95852154581099	5.10413402884894	4.70524349833272	4.83851391392687	5.05805469102864	4.61563806104787	4.89403869095155	5.00643548508718	4.82865238786167
+"OBI1"	7.02271364881654	7.57340910637584	7.89564218989484	7.0170859821799	7.75009832423302	6.89326141851836	6.66077861911364	7.13328447940727	7.48961038474228	7.33309394270249	7.23299345755831	7.45930749487691	7.2073719987692	6.85359963892654	7.55980164950579	7.25886922484777	7.57974040914505	7.45121367034591	7.59319973006295	7.29527255442271	7.38211074835513
+"OBP2A"	6.65704005979458	6.8383806229948	6.8383806229948	6.86793166079567	6.81543940164929	7.09261784265488	6.91408058116913	6.66998285788354	6.80337476195995	6.95592852327784	6.75080123535749	6.91650307639651	7.08952005896897	7.10460047299542	6.97879686994346	6.82390002428263	6.80233542728855	6.70455648128442	6.87424995983706	6.80356340590255	6.81811396500252
+"OBSCN"	5.6907371552087	6.04302772343766	6.14019872511372	6.10218473899609	5.90031870714658	6.35376635578946	6.19090719485407	5.88110679953527	6.12504707264776	5.8046063198732	5.87991023482327	5.93565744903606	5.93636756895084	6.11684523617185	5.99837987927612	5.8460799976069	5.83623084504625	5.53261574624155	5.75932814998563	5.75555637988568	5.89750924781814
+"OBSCN-AS1"	4.53950263451484	4.51625993024453	4.94154301804617	4.69673260687554	4.73108192413018	4.84250026615342	4.54954354018966	4.50712835522676	4.69652885361278	4.4840353333134	4.2493817728559	4.18609343400794	4.58000367837283	4.58867168445325	4.55970625904441	4.29894003999346	4.53950263451484	4.42035981441532	4.5648988666054	4.69760729071732	4.53950263451484
+"OBSL1"	8.2121999672584	7.83894742822467	8.25267972104042	7.61629917521186	8.1142393478337	7.40582503163097	7.79228783712112	7.7100857455151	7.61405369788543	8.43732826749114	8.21379723738057	8.3847882900604	7.27319209449223	7.50787600299449	6.96073661852031	7.46357235481616	7.85475811652112	7.86612277285767	7.51123625703881	8.55242014875775	8.09435475930313
+"OCA2"	6.07072501490491	7.09533689326287	7.23441874247603	7.21144439673451	7.41830579964071	6.95091844064446	6.88623887504363	7.09426731100909	6.95909412195172	7.1931069585325	6.60847731322271	7.08686487398243	6.92629794042088	7.03506595492722	7.02830462057597	6.86790274363197	7.41227735486887	6.83524091553077	7.01591373407183	7.36170756385284	7.03506595492722
+"OCEL1"	8.2074730321347	7.94290315975552	8.10756045743272	7.88717543840143	8.14023526825886	8.56467084696184	8.4174782515155	7.78753053568327	7.97233450569736	8.41764861972445	8.1183836938035	8.31096926469359	8.10756045743272	8.11451785422802	8.12543863967586	7.93373061992714	8.15137767238755	8.14612096685481	8.05891824717073	8.4204412754079	8.10756045743272
+"OCIAD1"	10.2443075143658	10.6218863371034	9.90620801267095	10.1612511027615	10.9297348554056	9.38689388696923	9.90327504743841	10.3460983323509	10.2810033561985	11.0167011668456	10.3528034567461	10.9065311766728	9.76684452391911	9.77308029653739	9.72271110028759	10.8618327139367	10.4971348178223	10.7522133731516	10.3544647701166	11.0454359162602	10.9461629869924
+"OCIAD2"	7.77921593660264	8.45884361691878	8.77056612036376	8.37029890912459	8.96613220723402	8.49331069816257	7.92760679488714	7.86980220054993	9.10817254790441	8.86117806279973	7.74964068788897	8.5350340062308	8.75633844355596	8.44669497666001	8.39098472517836	8.45383937602473	8.60149512925592	8.44818315640761	8.58066359273339	9.04266889523014	8.79448569503822
+"OCLN"	8.49637081750156	7.65837926459938	7.62184880483739	6.86797792107661	7.15728033565334	7.61095139104659	7.44789834688682	7.18307245471999	7.23748517498664	6.60777308838608	7.89256108308104	6.72438087256043	7.21397025038214	7.81605206752408	7.38720828261401	7.50972918283852	6.99585943352673	8.14657633095085	7.19223571362352	7.22025194478619	6.57785860288327
+"OCRL"	7.74389865966776	7.52505078242774	7.36388412994125	7.33631493232774	8.26283577998441	7.3154569912267	7.49073813983098	7.6488859429471	7.67532394491069	8.33327193718488	7.44758457306053	8.20727965464744	7.34371594189027	7.35765839387022	7.21825726703695	7.84606651600105	8.04354994435467	7.90721357558249	7.58816255574729	8.52158242048356	8.3915256134226
+"ODAD1"	4.92056712284894	4.90608192813074	4.62345415863126	4.74292645707567	4.36973310300814	4.852487425683	5.34043064295861	4.71774841229012	4.42353747494682	4.76957921755595	4.35794301886427	4.76826531251719	4.92208581152548	5.17298202538176	4.59118254868527	4.60811124426292	4.75799280259008	4.57512919121534	4.74086343864526	4.69365323909273	4.86961678962783
+"ODAD2"	3.77665525022692	3.80788293532567	3.7750950175574	3.54206437721789	3.59215085659538	3.44849521235716	3.76952773392259	3.55969993101081	3.66291042880836	3.60683511117734	3.69841112427333	3.61450640251358	3.66803503032749	3.62171093589813	3.42158461767395	3.6684634520445	3.65199946557025	3.45559878866885	3.51992797309711	3.88300786918151	3.64244440333094
+"ODAD3"	8.11700128769484	6.92233857439194	7.06744768550104	7.62693041826647	7.02052297004093	7.52772692753473	7.90443909302098	7.46418724468939	7.26501841304813	7.07118953820009	7.22915101318585	6.91441395241181	7.76811893589645	7.88736112206761	7.60442701489891	6.91900877442296	7.0321867219358	6.92964740333108	7.41347820996767	7.23878025115296	6.96905173931131
+"ODAD4"	4.79598148508634	4.67134102530752	5.17023130474896	4.68885785152724	4.54751080496412	4.85087472920568	4.74582330956129	4.46987022645282	4.62417814948097	4.7309474848405	4.74932567159789	4.69439369629525	4.61764871880252	5.11723492599969	4.73795476068204	4.35854357612921	4.67829787080842	4.79496184038025	4.88912357498256	4.89154494060076	4.65451652495916
+"ODAM"	3.90517977281902	3.85479455640134	3.86390850684193	3.9526432462815	3.88509171534632	4.02598825356548	3.91977967638055	3.96779852709763	3.81565303020482	3.99053541416978	4.09118982390967	4.11476443962404	4.26316412478612	3.80799604716786	4.31677185582619	4.1338155390393	3.99404819924081	3.72170443622887	3.78366250218358	3.65914917748268	4.11483597303037
+"ODAPH"	3.73661295501284	3.67237602561991	3.71483894703237	3.85103819647502	3.76649585251223	4.75391176901744	4.07386490100963	3.70920972179385	3.55686649524713	3.76649585251223	3.91827105758735	3.55385096710693	3.76397361693967	4.1237387389842	3.73501931688311	4.06028133870419	3.7774811730226	4.0408384713085	3.63142359944607	3.47386784259522	3.5418767988515
+"ODC1"	8.88503007511617	8.81435225389309	8.85260800086664	8.51778541381606	8.88111416668771	8.25594970273791	8.83875419769923	9.42587227799982	8.54913797591529	8.56879370583923	8.97130459158137	8.81367775605444	8.24628672118518	8.12792357682844	8.63417149307748	8.8022313497482	8.35751104088399	8.66098997943631	8.85763511544264	9.16227111342355	8.51957236992305
+"ODC1-DT"	4.55672039753176	4.65757236599927	4.68090610038749	4.73465251354609	4.5623102375534	4.73816373643182	4.82401536405408	4.56922538326143	4.98831322861852	4.85373758176745	4.56173676064618	4.62340997251266	4.89199511581286	4.98773306785252	4.7873850807414	4.42576046851484	4.60602786418399	4.65238838590816	4.90675116286017	4.55864597710304	4.72638443844628
+"ODF1"	5.22826879435032	5.55890411844152	5.46721865282109	5.55890411844152	5.60458358271503	5.08603650336822	5.67119317227074	5.35570285503052	5.77666508308453	5.71360779554522	5.50734338025894	5.63046216169579	5.71553054222064	5.78552772964242	5.46493198959698	5.60458358271503	5.55890411844152	5.2815564081877	5.51619364508368	5.50515655083631	5.74826507009376
+"ODF2"	6.84963790438595	6.5181642408146	6.7605452813829	6.30654987899589	6.55157178959463	6.7882932219884	6.21473230142624	6.16687235787011	6.29165128913758	6.07058923502452	6.34061862008366	6.22068422168819	6.49086978839425	6.3852433152478	6.0757545979347	6.52938638164952	6.68791948317856	6.9164578042209	6.35309111243577	6.64271802430641	6.61407795511122
+"ODF2L"	4.48910127840957	4.77482376193629	5.24351668303356	4.51662404246964	5.12599250027823	4.46135969691631	3.2371083959586	4.67582697446863	4.7771634396826	4.384559759684	4.48639461117474	4.720654147856	4.53246362399596	4.13835107688159	4.61067201388869	4.64739042636088	5.01410999526436	5.25398000581121	4.83004590093917	4.67763200673497	4.64739042636088
+"ODF3"	5.94686224946747	6.3359052162657	6.24501017560617	6.6106750899479	6.15177065306027	6.25071989523564	6.77015475387019	6.52126018787325	6.3105107744313	6.43101238775217	6.14235027716947	6.41442408218836	6.48549060050651	6.60925492713166	6.63517150342456	6.11020957270376	6.50917285271401	5.84846660941511	6.28016050467493	5.98694546981863	6.33996187742872
+"ODF3B"	4.6159026059861	3.90882538535162	4.02316511440536	4.0234104027737	3.74985423299707	4.76789967830945	4.45554205605657	4.86902852269665	3.98664633625621	4.01419747918198	3.92163233520227	4.08887475091721	4.02697928973596	4.15423111124977	3.85452951238822	3.64279740019437	4.01962342668587	4.13782288617022	4.02316511440536	4.14392685756273	4.01586352292583
+"ODF3L1"	4.19306676769115	4.18574557731237	4.13644544533493	3.82528517298118	4.09821218457332	3.97075564370526	4.35096894914014	4.12724454296322	4.03198295905609	3.88261774312937	3.77755949139807	4.03198295905609	4.00755745670322	4.42313004364584	4.03198295905609	4.05981372891726	3.99266974020252	3.68590314815486	4.08583791360896	4.00583259323415	3.84137900755421
+"ODF3L2"	6.33947246333487	6.3643480768716	6.43551248345468	6.56347346253506	6.2782631434876	6.70565850121203	7.22953173262592	6.55760306617614	6.72468632320464	6.59748782090203	6.53481506144973	6.55760306617614	6.63003842318009	6.85558809879757	6.68991709560082	6.54291527055346	6.41765487816873	6.24518379928262	6.85242347906204	6.39392963546054	6.43686043019923
+"ODF4"	5.98736561039323	6.02489054978027	5.92423324785884	6.06787508637386	6.10598737765801	6.0849524486835	6.14478229444359	5.89708195618327	5.82621099009122	5.93070492408942	5.87445780897076	6.07083380970169	6.22887482197823	6.19102116989226	5.82128416220121	5.89786187453762	6.22361006374582	5.65487783227327	6.03036063524701	5.78219303258015	5.84542570841943
+"ODR4"	7.79992112102668	8.03690978399117	7.50835070586739	7.58410437402103	7.56572475387363	7.60075669957815	7.20100450589457	8.0247778066068	7.56572475387363	7.58363772262296	8.47266733213037	7.80155546232136	7.17158166953044	7.34257412883703	7.55015021889621	8.20693203469568	7.59230236249928	8.16134269353849	7.68520880856018	7.61537955052155	7.46093066535909
+"OFCC1"	4.45407017613084	4.69732330594689	4.62924176091716	4.87178155670733	4.62527883572487	4.73398743018626	4.70931057721607	4.77012122690654	4.95838434217606	4.89131803726482	4.62622683478018	5.09452834532338	4.76502556419778	4.61574304685954	5.26382084542131	4.66361368512173	4.91987191861155	4.82153403734953	4.89058316324509	4.78646456672775	4.93432442234647
+"OFD1"	9.76964990011484	8.90515577875652	9.21757478428626	8.74773776030169	8.7331167846027	9.24073916136127	8.87017467247959	9.1712741262082	8.51021306411165	8.39340933750124	9.79380549185863	8.65667388278753	8.61174999394303	9.04445568440602	8.81817583606087	9.24737103119621	8.67601718747655	9.30195395819575	9.1282932600919	8.17587851339038	8.6550155112645
+"OGA"	8.92558739736168	9.24783182423777	9.47346314337143	9.22022399424011	9.19711468668189	8.9353064082933	8.72371616085987	9.71458535174834	9.31688794986034	9.01708029972593	9.26115065468592	9.95279240382319	8.82802112414519	8.31226245965292	9.15416597891299	9.09233657348738	9.94372778648332	9.17698302236593	9.61795964461312	8.87979464201924	8.97403652804689
+"OGDH"	7.01601195190396	7.01314257468405	5.32647651798111	6.25552592814942	6.19981042212815	5.6882657118118	6.33869718752656	6.70831194685412	6.3674379150006	7.28389159163802	7.14151885126779	7.17867522015226	6.13794530604993	6.16663025779006	5.93606967093065	6.62832864007146	6.75433299290439	6.44106215761334	6.48362662430859	7.00937303739054	6.99139440284464
+"OGDHL"	9.03265299747042	9.54201969815772	9.98764891295523	9.57735045462881	9.92715208325304	9.63101490860948	9.32626800415922	9.56457263022407	9.70018196580482	10.0263219145249	9.09580035811209	9.81807899131901	9.72185858744131	9.30227241118363	9.39985534882624	9.10649775495669	9.75056580848457	9.27456154952604	9.46037284187042	10.0919859405549	9.99767656236132
+"OGFOD1"	7.03217978064361	7.45793542096022	7.39359616184896	7.52159693102941	7.81558249730968	7.10251157951556	6.77345382986864	7.15011199317211	7.30186476853009	7.88454025082877	7.49324917761757	7.70641492276403	7.29072120839255	6.64351988089186	7.12716798696095	7.94756832546813	7.44188857186729	7.86814456123221	6.97462132687096	7.75742286890614	7.78668086121424
+"OGFOD3"	6.16023283524283	6.39092431999122	6.88550978245565	5.00140458613973	6.17651431493776	5.51042479267705	5.47759556031165	6.06162506846357	5.13360156806132	6.02871238354988	7.04771940928103	5.78296960150709	4.79993002698823	5.25499974051483	4.86986943799165	7.11490152688499	5.51312562186749	6.81944649575257	5.41511569282643	6.10447588513253	5.67112075086912
+"OGFR"	7.9755991629157	7.98139832753716	8.1800731305248	8.20484070139373	7.94953681985081	8.72153227962776	9.00077981173965	8.24330843028547	8.29421121490936	8.24330843028547	8.00760145646664	8.15404453917621	8.3889905656246	8.5064191687767	8.12676067847682	7.80914900896931	8.13266829483456	7.83363468005428	8.23597373408163	8.1378763582999	8.2458198201452
+"OGFRL1"	7.43908510289735	7.50412711203332	5.98977789662577	6.9758736039719	6.9345688960205	5.96240498834064	7.05063492893051	7.28469002301067	7.34145923588929	7.57362309109713	8.15104458255074	7.30590753839247	6.85858524055773	6.59645849546553	7.09914124748316	6.65273725432464	6.92659492953383	6.92604445479374	7.84157387753775	6.93409614846828	7.09025382960964
+"OGFRP1"	5.92435989470371	6.01942069949035	6.23279651958419	6.20866008511568	6.09974009347866	6.0138621914134	6.37685656831351	6.15429363370834	6.16076344631097	6.1587507690002	5.93087492176659	6.31464307982269	6.1109044863705	6.4922631826965	6.43604327067972	6.15293032113873	6.10617780499235	6.04248993783635	6.30037852999976	6.22619955772884	6.1587507690002
+"OGG1"	7.94276053543071	7.06131111959618	7.37490780396704	7.21414721982182	7.07637200547968	7.51238062104767	6.88784019984815	7.12566494681159	6.50229321337319	6.62052546049032	7.67745292602673	6.79758646077907	6.75066406034361	7.16150764195988	6.86814719263126	7.55772452437292	6.37334671601164	7.66601944005167	6.94816053035147	6.88383127326625	6.44432613691609
+"OGT"	8.12132992704358	8.33349947501875	8.38208429943166	7.99912586599365	8.14087930274851	7.37287643587237	7.55925330337242	8.24944943119133	7.99578302138951	7.97513239735554	8.17520195840823	8.39215278285619	7.58351512727626	6.81117459703549	7.57797107661383	8.64685992670663	8.64311715059109	8.56118379607507	8.2656767020156	8.17590674388113	8.38304309613138
+"OIP5"	4.75611286078416	4.49272813807263	4.66309177277099	4.20368328484903	4.40235626380116	4.35252946781944	4.43851451172057	4.24560318115576	4.7979684354574	4.46510975182141	4.58625373176345	4.5737876167818	4.46510975182141	4.37378224661023	4.19903879679327	4.58997183505078	4.42008129625871	4.54647478697874	4.62840418783132	4.2901337529486	4.27361168968878
+"OIP5-AS1"	6.6797835723324	7.05923869153326	6.87487127085495	7.14787283952984	6.79248555003306	6.18884747506239	6.90441198837645	7.36087398232954	7.22755320600871	7.88787457418282	7.29913925834303	7.69608832808369	7.25468869987751	6.81634248345851	6.91237773279999	7.30829927425491	7.61386185332849	6.66881099166304	7.22222238332907	7.49583526617679	7.86042745237356
+"OIT3"	3.80180581263629	3.42958159031945	3.66838617116164	3.97950443410769	3.73699271160937	3.86345859144925	4.09394169340736	3.62734135665136	3.66339314013512	3.66598322616651	3.63033324368939	3.46457531584311	3.82942253840574	3.80196627800755	4.02315217469257	3.71654928926184	3.71654928926184	3.42346205352151	3.76488477420541	3.87688131063282	3.66099640793843
+"OLA1"	7.08230980802116	8.17326180419206	7.90892018688812	6.8129136246849	8.43544468697961	7.39865526236834	6.93491475669438	7.44669955829068	7.51620318454694	7.82809973638331	6.99399973457251	7.68143202378734	7.45342434994745	6.56926527532763	7.1088428168549	7.75392642663089	8.18882782371435	7.95956317752615	7.09458216397847	8.24640381703122	7.53309435810323
+"OLAH"	3.95247304491604	3.49166933500385	3.59956049291368	3.8600753411079	3.64426331598721	3.73428099832341	4.28765398985199	3.98028717687229	3.98927314417269	4.11606357817289	3.68811009502219	3.4622698763447	4.06307033982118	4.58555990959519	4.25225260187777	3.27809810791585	3.73081532784141	3.44927333376118	3.92449975882518	4.14802569759607	3.59486779513481
+"OLFM1"	10.4532493795208	11.9134260146697	12.1308449459124	11.9468655620193	12.2410809117795	11.0616328892732	11.1944345670649	11.60961748266	12.2975714258888	12.1097006333855	11.0973533486485	12.0502814830767	11.9709684662224	11.2421486891528	11.9265076167858	11.1119845351111	12.1055765330167	11.4610683703297	11.8856119832013	12.1952036416217	12.1959526087642
+"OLFM2"	8.04451986926299	8.56524905824604	8.28477178451066	8.6038606188707	8.22254704677516	7.58785836366172	8.53250344808636	8.27153999905507	8.2879163891934	8.75128678450233	7.95717117726291	8.27304702033339	8.56995380932257	7.89711989962568	8.00851325281068	7.66438217731897	8.21919813125666	8.21632143189964	7.87512823047837	8.52355155729401	8.08993373417173
+"OLFM3"	5.81147323852964	8.29945410492559	8.8894863547987	8.00803448171607	9.1742633445541	7.25721744606747	6.07570215171165	7.9451826925931	8.57742953531732	8.63894056031623	7.00917634308823	8.48513193445006	8.30554682568067	6.61187449693947	8.08103380142633	7.67166006799587	8.57888992618527	8.33054613249862	8.09177211660219	9.05285817328402	8.42364635921718
+"OLFM4"	7.14175550291514	3.58220753611972	3.98775432142059	4.0234104027737	4.37912233124705	3.4297010356812	3.50247286465918	5.91472189501155	3.83586897020827	3.98082084931399	3.40259625460328	4.14914877329575	3.48784175395673	3.42550808847754	3.73016749147104	3.3073322620365	4.1214426051387	3.67325365190583	3.68281459146108	4.6450453634276	3.50867443162972
+"OLFML1"	4.33853211489139	4.25964472169835	3.94482629719122	3.89681091408163	3.82130278403556	3.93253167388761	4.13441108445289	3.92061119275385	4.08314723086437	3.9560486142398	3.91864055508159	3.78996727244339	3.88509171534632	4.23180327964304	3.87761085532077	3.91912583557494	3.97707703822273	4.01183451386024	4.07060837941468	4.38276966493516	3.88499484474461
+"OLFML2A"	7.37373990601773	5.97650204038822	6.06630590866418	5.8452375018008	6.11263037172072	6.37789693601221	6.20343435695805	5.85255688403159	5.94624651357189	7.35160249191367	6.16721046927294	5.91536334384264	5.83335316668404	6.55906097447666	5.73167063608009	5.74820830504702	5.97044702684617	5.82395937047072	6.47491085272342	8.11383574912594	6.02882919426461
+"OLFML2B"	6.74394909440353	6.2247918237952	6.10328326552245	5.64835126735582	5.58551978851914	5.89823397989782	5.98252203248638	6.24071543658881	5.69772886974299	6.09996885182485	5.53060169715334	6.07650775961619	5.98252203248638	5.89918749918468	5.69587643849376	5.5422571176577	6.57359002817804	5.77685784117865	6.05970731674416	6.70118616393572	5.8668976310647
+"OLIG1"	11.3968187441727	11.3988876711792	10.9798716642663	11.4180236207637	10.9004784030126	11.7830652370927	11.3348219043791	11.2377378743165	11.0690978390532	10.537825218419	11.639082813902	10.3042562846637	11.4624932994977	11.7532829962303	11.338580631126	11.9057657585818	10.8593814899972	11.7196276731682	10.9146232634379	10.2365910431815	10.4314570718587
+"OLIG2"	8.64164381224054	8.85761382170592	8.59797616181535	8.71679961369812	8.31122782192429	9.17346137609594	8.74502557760743	8.10950080613919	7.93165588374722	8.03552489935421	9.18146516910217	8.09974394710876	8.64104998985868	8.70533054588401	8.51375859476349	9.50083750496734	8.13727364104784	9.85575132526953	8.10567549662685	7.8829482347461	6.92086587250977
+"OLIG3"	3.45135554478258	3.47065361176983	3.58387896601217	3.63380446419854	3.65662294310723	3.53862371743042	3.79172841354411	3.47390742865609	3.50792957686704	3.63109069941122	3.18552175497474	3.470848719944	3.71306755341625	3.53862371743042	3.53862371743042	3.54323935764332	3.5705180105702	3.3141039249493	3.57196191338901	3.62803436769065	3.53560013507354
+"OLMALINC"	5.72605357748527	6.0738016834464	5.54332095573063	6.08306023226154	6.31789323776429	8.20756892859792	6.182171561693	6.5196424258998	5.81147622177832	5.07363932089687	6.28756879876953	6.04414512704921	5.86012101185693	5.96392809046176	6.14117216891384	6.42716678958973	6.28107124344396	7.68297979540346	5.98671439249692	4.96532412610556	5.53673044373445
+"OLR1"	6.17713184235422	6.56124759602038	4.52852255677407	4.74575989624927	5.68264073213417	4.93463934897112	4.75434520415554	5.30414423973762	5.14281425319419	5.40634409764724	7.00073115012069	4.64735165517977	5.46260897386019	5.49429993201926	5.56168348347524	6.00493881881042	5.52537505437075	6.38627062085194	5.79976601284619	5.44219492507865	6.18287679200944
+"OMA1"	6.8547594037164	6.75569168119379	6.77015475387019	6.74005745195936	6.31931682014811	6.32102039325793	6.89254348158868	6.59515813589076	6.398168170098	5.66486742731162	7.43384561087178	5.95792978800869	6.68240858933253	6.67525679556777	7.06572645528826	7.54194433952206	6.37108507057268	7.23336610513584	6.77949665355176	6.23296335420637	6.04530306954179
+"OMP"	4.38588374399115	4.21448738066655	4.33543434453115	4.51153680084662	4.22314081157142	4.33362571985946	4.43152468792851	4.22314081157142	3.95196904264361	4.42328384920839	4.00600597159538	4.17188161880126	4.43110425154994	4.22314081157142	3.7773674592	4.11448922576134	4.31822122572351	4.16089863856463	4.53392563068316	4.02987625780919	4.15312825843955
+"ONECUT1"	4.41578972881156	4.49691887968614	4.58241742857558	4.61284354163675	4.74952451745238	4.82136226536345	4.61284354163675	4.63255900229116	4.48056842749791	4.76506395107011	4.61507956747298	4.66815606258922	4.55772649402508	4.61284354163675	4.66309177277099	4.39133668112866	4.61284354163675	4.61284354163675	4.59723464680515	4.54679051302208	4.63193285418585
+"ONECUT2"	5.71200012663466	6.19204516852784	6.4161169603178	5.75543071817342	6.52151672907575	6.31054702961905	5.75543071817342	6.10936786425017	6.56571700171116	5.52375162729876	5.23089344075255	5.34183771874722	6.72504658741458	5.60368098412268	6.6610785849638	5.34910650343962	6.68791948317856	6.04675445078655	5.65086580639724	6.22857869291588	6.00373470967219
+"ONECUT3"	5.15011226731113	5.19909282584059	5.30664784369556	5.47415268951427	4.99757292112875	5.15421464215208	5.68542444203892	5.24246616296729	5.72175445497639	5.42961935601719	5.23657922551566	5.55232266626397	5.72174817332138	5.38227597301832	5.36205605172067	5.23657922551566	5.58549529943039	5.20775055685285	5.6038505544098	4.94334342364356	5.50076182085259
+"OOEP"	4.891431597517	4.8323570626494	4.68698012126834	4.89642889170603	4.891431597517	4.98569907426068	4.93700273137412	4.82698606850312	4.7985923276224	4.99169548668545	4.76461054543957	4.87215655892321	4.891431597517	4.891431597517	4.98119077902673	4.90482740526837	4.82042405110554	4.76267465949547	4.96776612473256	4.77483616948152	5.04003097162902
+"OPA1"	8.58193113490448	9.65779722190511	9.64072850181114	9.24074988345139	9.78884480962583	8.46707012458021	8.15643341146072	9.21860961058763	9.27449564708939	9.5323023958911	8.97832146569612	9.50039232942377	9.13082057614914	8.60169265498043	9.06122696346184	9.27901669440127	9.57239602492873	9.37956354790301	9.07745649547263	9.53852416314965	9.84215139166429
+"OPA3"	5.20061265136449	5.70283278023215	5.45453019720149	5.33540068294834	5.72886288500904	5.05198815240593	5.08052538773411	5.17460147871473	5.25169034277568	5.82767518346872	5.24411226216504	5.44670341485171	5.28253062531986	5.28868262104785	5.14070468354449	5.43120026254857	5.5666324022273	5.54987438618283	5.16528071059445	5.63866023993615	5.27298008025048
+"OPALIN"	9.79805734000833	10.6573429373866	9.781330706671	8.86118473298143	9.95107185639444	8.07557552828267	8.1642193928955	8.8303459480698	8.07138954657617	8.0688171845694	10.6997327266135	9.53337127134169	7.66306274934665	8.49124704515205	7.54024898858219	11.0606503626323	8.59569476190382	11.0368743423855	8.39747629653222	8.55255899934049	9.50071181774073
+"OPCML"	9.28751639013383	10.3507177703399	11.0138033788431	10.3910199497342	10.9150491844989	10.1046318164334	9.12547606198189	10.498429809495	10.7001766386525	10.8256989830758	9.7706818772202	10.8791234225733	10.4334472546203	9.79395542090007	10.7553696098382	9.91248080987851	10.8785701971095	10.4979967794545	10.5006673287714	10.79461604917	10.7449992745861
+"OPLAH"	6.27732839734858	6.45246316800144	6.63921756312378	5.93102948155537	6.02868204511639	6.38095552798563	6.08083754140675	5.74195801491598	5.56210069545275	6.34335017104122	6.68360815535405	5.99162631825187	5.95020456119018	5.89592973161603	5.8084087923337	6.22542137893702	5.88473727469831	6.62465379106427	5.6921217024521	5.99506088387241	5.92216340901987
+"OPN1SW"	4.4338526546948	4.78259060554834	4.42929239633646	4.61552486600255	4.44093805471376	4.6508673948343	4.6656478005912	4.4977559201233	4.50597915623007	4.75424996308387	4.34237624282744	4.54137198263651	4.73424024025458	4.49442140415226	4.7855962705458	4.60835137815855	4.27437477257309	4.12943379303545	4.70125168588039	4.42796720981222	4.59148512308532
+"OPN3"	5.74309737443115	6.68513630275525	7.21136846668994	6.38951116499335	7.57546231623573	6.61850304338392	5.41100190096049	6.40317378945491	7.25551119742802	7.01714163905033	5.55891854263775	6.94156526411573	6.90003463582754	6.13617024932794	7.0245478816755	6.04160701141628	7.53464487861156	6.93696927334553	6.8107448548313	7.0766243645845	7.06821765368445
+"OPN5"	4.44646448110309	4.63258090345214	4.50418618350705	4.69405610577188	4.83792089274314	4.60185390320584	5.00348341215023	4.2929532867135	4.47786338792157	4.50369833012254	4.39697844395057	4.45601823040064	4.61665182340812	4.77236269259444	4.39721177438534	4.60054902774695	4.59517889379214	4.24033533765474	4.57710463660644	4.44646448110309	4.63669723803946
+"OPRD1"	6.67415379244196	7.30419195654287	7.36458414446679	7.41088352499446	7.29643442497393	7.2906699021635	7.41957788304219	6.85670490073382	7.6243070491428	7.29643442497393	6.60000986403166	7.22887751667864	7.69056159588805	7.3339923861987	7.68265654951814	6.52071946359949	7.3305449316845	6.81810420297988	7.04353052153807	7.43493074269002	7.39619473693949
+"OPRK1"	5.38509693383307	5.66974236840456	6.04614775285465	6.0589995980474	7.02994177579238	6.13195008376462	5.11748307898052	5.78551716213627	6.02323240400679	6.64806030103261	5.58579043168874	6.18046337288841	6.1274763940316	5.91872062324436	6.0589995980474	5.87013882615501	6.27398274590207	6.19554126411437	5.68794121137557	6.63670207737652	6.89854208782528
+"OPRM1"	4.66784483447504	4.80725710742735	4.87578762450507	4.84803349759329	5.19265721318172	4.97012408031475	4.81087099465216	4.68078695226765	4.6916000942231	5.22212415792451	4.24329475153733	4.96612446509495	4.7788422533825	5.08434163260989	4.76800707961446	5.20673219154641	4.94243601522319	4.51951982269849	4.70288423663997	5.03277285581307	5.00491492689831
+"OPRPN"	4.18718585775972	4.32623918046236	4.40839251061636	4.32887153866431	4.69895205803882	4.52620684097403	4.78755501590947	4.41621109783834	4.41621109783834	4.41621109783834	4.1795327727724	4.26472907090438	4.38852057306228	4.72885746633524	4.62716177576819	4.32384694694386	4.57818174099306	4.0435122136456	4.45729307459701	4.39297910162621	4.20672784509159
+"OPTC"	5.59701218334461	5.72266230185744	5.89477565612256	5.89477565612256	5.88687593497952	6.29289672952765	6.19597138805685	5.72870526736853	6.1387970888599	6.01672334755314	5.5941733389914	5.89477565612256	5.94683718640567	6.03214086856549	6.10858584447438	5.89236396986088	5.87297159784477	5.68000527961173	6.0887066489201	5.91219502148981	5.86251031239722
+"OPTN"	9.78663881216083	10.1198991663248	10.1963675605379	9.81150879460129	10.6690210263133	9.64123497944283	8.88003499427555	9.93873068701784	10.5402031701067	10.6745798801851	9.94878908226	10.1198991663248	9.92421485010248	9.79916259997727	10.0646875176259	10.3053661717922	10.3183539978017	10.1198991663248	10.079867015443	10.2068355309699	10.5497486734682
+"OR10A5"	4.65634935147238	4.92834091170706	4.99532194402693	5.25662945857959	4.94421933349116	5.20730028868508	5.33658868950869	4.99532194402693	4.80034306955918	4.80319631455342	4.55963733559705	4.97078636106574	5.10820395159723	5.26904197744885	5.00161444345049	4.97373784689689	5.02566436773806	4.63164728269165	5.05855465588035	5.3018091363063	5.16786139980802
+"OR10D1P"	5.89708195618327	5.8759216345092	5.94048687914144	6.15439763616212	5.71613522618604	5.92086140245256	6.24880346027706	5.80296711750383	6.00990179220662	5.66210812600282	5.58902363577953	5.65079529166046	5.61291179495176	6.35421595066857	5.70902087432576	5.6675819582558	5.85252925509601	5.46200563123036	5.66799227441036	5.65566816396981	5.99369200960531
+"OR10D3"	5.75438911489269	6.05038700311568	5.83489135196075	6.02607315626618	5.87271591057175	6.19906266726835	5.82933127067425	5.88512857436375	6.27588891937478	5.94012709463831	5.86514006387237	5.96216732905241	5.98652288088741	6.53818581295002	6.06717648027425	5.94308506241812	5.9802748961909	5.55098526649363	5.83522988919731	5.81866268277747	6.04998703933316
+"OR10H1"	5.74146092020219	5.54667344051762	5.65984576203902	5.77091457818047	5.53171507427874	5.80160700922809	6.02789736666907	5.81152988927264	5.74797611510302	5.85907838216247	5.67447754684156	5.83434570038099	5.95678306536732	5.88457003259405	5.84158042920348	5.6556482533344	5.79490201803577	5.59533060977242	5.9895237779152	5.16575750010596	5.83365631513263
+"OR10H2"	3.46568878819488	3.71512915640449	3.66838617116164	3.50781886406168	3.56296069684829	3.80863597019155	3.6281846678457	3.7003566586567	3.7908101199597	3.75555625736094	3.4509466559869	3.7194194416657	3.66838617116164	3.53273814744316	3.66838617116164	3.60097510954244	3.65205336878639	3.3404377108901	3.68045462021987	3.74896399165805	3.74971521245181
+"OR10H3"	5.17011378816077	5.05469490379766	4.99811464893278	5.25039345969848	5.07500196905463	5.16128264866088	5.38514078421027	5.4618585134764	5.42337281180241	5.25039345969848	4.92771257164045	5.17011378816077	5.57335517871004	5.16005415982719	5.37988342281761	5.14529560859311	5.29305265606356	4.95884236445906	5.17011378816077	4.92079136322313	5.2272095405193
+"OR1A1"	3.94062930306647	4.3486692718904	4.28850797500222	4.22938863677649	4.253592738339	4.25964472169835	4.40119157505693	4.24997005125558	4.52741299000736	4.26758095542795	3.96910321152518	4.29651480391839	4.25854164254679	4.69864536396056	4.36781181100977	4.16929657681309	4.38931257152391	3.96501731079439	4.26183168119074	4.14475705375965	4.25964472169835
+"OR1A2"	3.31615132031907	3.57847808451308	3.60851047941856	3.87385677242543	3.81268506616447	3.69667590472928	3.48401303533419	3.58021507684552	3.66145065364802	3.57847808451308	3.56392225045316	3.51890493125775	3.56625118512928	3.53741376891322	3.62357828843331	3.47882002591801	3.57847808451308	3.65695410192156	3.60922193819767	3.63902913112503	3.47080096827928
+"OR1C1"	5.23409496489919	5.37260377969207	5.23687055639096	5.37529416657106	5.14999350676224	5.02694108015566	5.51513805930254	5.14454159790452	5.26427929001776	5.44703968287728	5.05513455306524	5.21209693806809	5.5941733389914	5.6332137567979	5.20379787870093	5.5416937103325	5.32617621846265	4.83072282272109	5.25404435044886	5.2373698009343	5.26427929001776
+"OR1D2"	5.68086428661844	5.91650110363158	5.78575845443039	5.91650110363158	6.14196783781533	5.88953643084546	6.11564114813373	6.05020520051466	5.77801080830096	5.94615275392528	5.51428262269924	5.91650110363158	5.93394846760525	5.9924780332097	6.07854110773496	5.7844095917819	6.16540763574164	5.7712103858903	6.01958851443597	5.66487456431659	6.02062111962407
+"OR1E1"	4.81293126200568	4.59079742770787	4.47379418956914	4.50248669824741	4.68595618584861	4.83050311010758	5.13816202239686	4.68608437637621	4.75827769298754	4.54424973862114	4.50629531787492	4.61186615427837	4.69644860748508	4.73574261879006	4.67998319926276	4.53990403781888	4.65245895334156	4.56932415288862	4.55974308300449	4.54098971231686	4.75899411613312
+"OR1E3"	6.074224467579	6.3430474649117	6.46990353285808	6.3067535498404	6.35365171097375	6.65459478722523	6.41562225478099	6.33388932548427	6.50565962893169	6.39333750622854	6.26859169499304	6.40327030396366	6.4885826490405	6.72820884000517	6.35220026658576	6.58259756693961	6.42537931692213	6.08639306669191	6.38759757716181	6.37762847937247	6.41380026043353
+"OR1F1"	6.19711029361805	6.41775927762323	6.28579325423786	6.68207667420925	6.3636551330492	6.24624496249475	6.38177009658342	6.34230353778693	6.76621196111658	6.65481423474089	6.2971129948506	6.51166132831683	6.77704935295	6.31431675674026	6.64853898272098	6.60153775752723	6.61781849601246	6.35015737298151	6.63291107424417	6.48762661749956	6.9553586770702
+"OR1F2P"	4.96984312592502	5.34058337441642	5.27435221983023	5.62052383583875	5.30397242358414	5.33875987086234	5.48943338820392	5.33649750047777	5.19973652481879	5.43335021099779	5.25188996672447	5.33691139859507	5.38423053639208	5.37734825996529	5.12186026975914	5.48724710405426	5.35999304273486	5.08961543800521	5.48943338820392	5.26069897635845	5.36529553487386
+"OR1G1"	5.33763827768701	5.10959688931018	5.06625120700688	5.19131622261369	5.29176508276099	4.81883617654642	5.16480593738875	5.30994899823772	5.40397292859802	5.23106823154206	4.93076285858744	5.18967844326439	5.3134348142348	5.12906069912838	5.12746650795198	5.15649854511125	5.42384956501263	4.81051425318301	5.42524687603376	5.02784845573763	5.11625356334015
+"OR1I1"	6.86472586519401	7.06559608516625	6.93642955029445	7.12441576951499	6.91056414780235	6.89654731752302	7.25364030623132	6.952459381118	7.06468017932671	6.98240975954877	6.91039485873343	7.05076370145086	7.14512006713176	7.24474654612569	6.92121325093183	6.9132475821373	7.07779689670987	6.69228449008936	7.1153861314781	7.09411838808096	7.15096094303672
+"OR1J2"	5.6244711383316	5.69651035159398	5.32692006831047	5.91133733847069	5.58557937099616	5.59014733361945	5.3013724006139	5.63047556163661	5.68960461214472	5.64353693603801	5.65030946955958	5.61083128319861	5.60926928277034	5.68920921437515	5.83921829830236	6.04219854629134	5.69236236934616	5.38571694314302	5.81497242920727	5.57890020442975	5.71903787848196
+"OR1J4"	3.98557639315438	4.12359052740168	3.83572190040404	4.10713968239426	4.02953634999152	4.15442251729769	4.42771953417506	4.07593705339138	4.39554147948177	4.11548940563419	4.11883108367714	4.07748741842898	4.29032537389	4.23872039289687	4.0663377119451	4.17837203416943	4.21749257809528	4.15442251729769	4.3204807545261	4.10812911489952	4.20953316906035
+"OR1Q1"	5.1940355952826	5.28949506649509	5.07522911236409	5.61132544801609	5.17496220671041	4.92192933639258	5.15056459007418	5.27120270327157	5.41614379064625	5.36572114120981	5.24392394627746	5.27705015865542	5.30918070843266	5.13001917840282	5.32187700116041	5.24410818500038	5.36662953131361	4.95366679072619	5.3733991732442	5.33554871221971	5.52152739313795
+"OR1R1P"	5.22632545516587	4.86238596792735	5.02406424196804	5.18686225699197	4.76768945853939	5.48192157857059	5.66924473452819	5.40673789049228	5.22315136483055	5.36546741199374	5.26265897708434	5.03151207761994	5.28777638200046	5.65860759722803	5.13881979417651	5.00085833622707	5.16263904860095	4.98706253209876	5.40531634210782	5.06661064259287	5.22011698583751
+"OR2B2"	3.55073697931721	3.53275943009417	3.60300554356191	3.81154375046306	3.7297404504168	3.24256573278633	3.37407286775749	3.47875654295626	3.84327283157706	3.57065159798244	3.42598080769835	3.50432664762765	3.78898313260258	3.61903937174415	3.67874334939593	3.47366088024749	4.15169689594157	3.34307875766903	3.4203788085349	3.57065159798244	3.55192798028717
+"OR2B6"	4.1033914253878	4.19818030628423	4.0630198781375	4.25589912290998	4.12432857081134	4.15208892540975	4.15643820856991	3.94447816193001	4.04873785636967	4.1295279015682	4.04628013071894	4.13636488542147	4.00860254449138	4.14798609867321	4.28349073613675	4.15897013040691	4.1033914253878	3.83717558774828	3.88176552913272	4.28408614684166	4.36196675354524
+"OR2C1"	5.88078326304804	6.29079601809376	5.90006652087533	6.04046004681891	6.00724391178078	6.37308480035205	6.31308728237601	5.9643447417849	6.22351498718631	6.10912029271686	5.82283020471391	6.19350593128331	6.0482848756021	6.07039354339939	6.09912941223262	5.90368879772588	6.22400539746322	5.3896928031518	5.95663495204578	5.87409310563332	5.87996402284204
+"OR2I1P"	5.04684240625934	5.1852393763142	4.84288472231324	4.94936370266715	5.04567258466027	4.89405228965021	4.98673119328951	4.99556221663788	4.95425054868268	4.78539180792438	4.62033053912187	4.938392828393	4.96360881402868	5.0570540127554	4.97424458184381	5.17352266148004	4.75799280259008	4.54922059608364	5.09177851025613	5.13573682712458	5.13072529719938
+"OR2K2"	4.6696203366266	4.61864638071344	4.47804890390673	4.57018250120868	4.68090610038749	4.91454775428271	4.83774863523309	4.8594397622628	4.62077415172341	4.56009995523138	4.4700961064007	4.53597321594875	4.67325301540017	4.84530455350447	4.60243008297901	4.82459766287869	4.77838347020126	4.47012993246117	4.7096388695463	4.49852897839739	4.64114426173601
+"OR2L13"	5.08774896782594	6.27542435555796	6.07086367633543	5.01190823518279	6.71359263821436	5.89590432042731	4.61284354163675	4.04606029831644	5.26020914690277	5.91034758598647	6.82210267438288	5.17660205938693	5.35389570937903	5.44052786267442	5.01196850346025	4.60931063016269	5.2573162889742	6.20873428033177	4.50132387215049	4.50396311501195	5.34700648647568
+"OR2L2"	4.1576977466202	4.59014406439919	3.98388732870395	4.29883321488596	4.05545422207475	3.78407819219341	4.06872908981792	3.96143029171444	4.35794210178353	4.20316296227768	4.90649072600363	4.37873372815714	4.26384348663325	4.01615771219074	4.12422770090963	4.1327428544953	4.62099830988634	3.77993945728216	4.19022386389557	3.64430783922737	4.27740584878068
+"OR2M4"	3.58137890335835	3.68019543860555	3.7725814524874	3.84232318792524	3.83706098792751	3.64547999647376	3.73319739489742	3.64751427200209	3.77066966511396	3.81173398071382	3.80021452296487	3.84054160309622	3.73066852469768	3.77066966511396	3.42598080769835	3.79086544109264	3.80773972554742	3.62308978541855	3.67401713802142	3.80814427974386	3.88734462716958
+"OR2S2"	4.60186494791806	4.74799530095952	4.70724588893863	4.882370992239	4.89925110967501	4.6973817876694	4.79901980893011	4.74799530095952	5.03960022734985	4.86474740170787	4.71721641242413	4.74799530095952	4.79524010379588	4.54555539513937	4.69268278000705	5.1487959755332	4.83851391392687	4.57121481467162	4.8424742088714	4.62662975139238	5.00496796661064
+"OR2W3"	3.84165914137273	4.50943269365604	4.31664396850346	4.0234104027737	4.54751080496412	4.62835637195682	4.14189300541982	4.03845256854504	4.14116951676042	4.76968755238661	3.83353097716374	4.2194739424053	4.24745391601139	4.11435757755651	4.19212034648244	4.14333231137367	4.00900077620012	4.24033533765474	4.45503733336714	4.76764009535909	4.253592738339
+"OR3A1"	4.64357930077524	4.38222025996784	4.51512964291824	4.36373384143822	4.4603808303797	5.16402960052329	4.98248228891694	4.5783607269399	4.85142698024455	4.93682131950854	4.51293261049153	4.64476235645753	4.76311525547015	4.67339817894082	4.80901484791239	4.65029288499483	4.75022794236222	4.36716814574222	4.8386287019256	4.70275767808531	4.47531338252148
+"OR3A2"	5.122914317673	4.96248743687386	5.09763948962359	4.91100454531016	5.01417197304159	5.17078194548371	5.55060273470844	4.87614714879203	5.00422940097102	5.19994888869945	4.96796649961061	5.02137038904013	4.91446628469146	5.4247043765059	4.88295257693229	4.74460364726179	5.21327015063665	5.07321198613353	4.92808141055756	4.91532107578028	5.27750633576222
+"OR3A3"	5.59782672721593	5.6853249851863	5.70836185363501	5.76779137759927	5.61127923460231	5.96620025175791	6.23557644413287	5.70618745270622	6.04566898624723	5.82415659407083	5.70962502033117	5.86232194354683	5.95733739532035	5.92215013472151	5.79942601292243	5.55954486838905	5.87358300851423	5.45124121372987	5.86219836836549	5.78183058105332	5.81079059109859
+"OR4A1P"	3.69698758281711	4.08193599403084	3.92510255885662	3.97521665806832	4.15527381204429	4.44029901402875	4.2190927915265	3.71592873720071	3.89750769692117	4.0524152763725	4.00294424462906	3.89741034575438	4.20358163599163	4.17999228524048	4.36154705212287	4.02417418398344	4.22762393402216	3.96825542992955	3.98520368103548	3.82926798729911	4.20911437561977
+"OR4D1"	5.4308597123473	5.57213624886784	5.15122888696231	5.67855961462717	5.57213624886784	5.65262257591673	5.73971809950586	5.79149614307229	5.70314809327678	5.52406781196385	5.46100360033921	5.62974513180752	5.58078142848286	5.46728312854887	5.71091248155268	5.50526590685975	5.62348373887339	5.36665428177435	5.57213624886784	5.57213624886784	5.57213624886784
+"OR4D2"	4.63292009930047	4.25381293506545	4.22941819366098	4.61552486600255	4.64257718809396	4.94965155734614	4.59030506298127	4.46642048877327	4.61840807729671	4.58368977744776	4.25927740881195	4.47704512420204	4.72621843473621	4.73762444539848	4.63016917732847	4.72256791120856	4.62761308217238	4.18080505731237	4.36479052765545	4.49930801457408	4.67371425939925
+"OR51A10P"	4.19249181936083	4.5123918073869	4.39481163030682	4.57018250120868	4.62984353160072	4.02918345120972	4.43997767611285	4.2535819055028	4.67648117963856	4.46206455610694	4.40827564418163	4.73456606263223	4.14677248349047	4.42218286395832	4.40234378729527	4.83851391392687	4.60602786418399	4.04544445829727	4.18405345961916	4.34491159422965	4.60266867315479
+"OR51A1P"	4.36486431576764	4.55233547391283	4.32351478355936	4.75996375730669	4.57240483069637	4.20266501961504	4.6656478005912	4.39428493708573	4.68528507048319	4.5331111297232	4.5958193713451	4.65927294127259	4.58377437083036	4.39344187556812	4.78065430990622	4.80016560526581	4.77756847937115	4.53512316297677	4.63636100289723	4.50012770771226	4.599842412873
+"OR51B2"	4.55166265783803	4.88551269336552	4.69504890519159	4.96108472800416	4.77432699523736	5.01058849654063	4.71837306237111	4.72724563843499	4.78907035993588	4.73019436633666	4.70881462130649	4.58661493529716	4.57725326590865	5.08425322797716	4.88550139813916	4.72268325331509	4.83300802669535	4.55680250240232	4.63788467513102	4.802516651463	4.73730203133337
+"OR51B4"	4.67349612227148	4.71044491366481	4.62989548819963	4.80055400824913	4.670615216726	4.88319415777646	4.73014337993962	4.67185163136765	5.30097962000209	4.81263536134737	4.80055400824913	4.77636033550031	4.91173301337189	5.36671346480782	5.03398520427217	4.83837489149352	5.11609501780407	4.8186360667927	4.66455382417177	4.72854732187615	4.84062465544085
+"OR51B5"	4.42067444061439	4.56065126769266	4.47406200192068	4.75558556727991	4.97384951807054	4.57639323138841	4.34611838948697	4.34227119376949	4.87623831624901	4.76968755238661	4.58723735167105	4.78440716453988	4.59140981687591	4.33132245674788	4.60432838805109	5.02256841061906	4.83600405247559	4.36772082932957	4.42250126373809	4.36339463508812	4.59570427097577
+"OR51B6"	4.36862183686088	4.67620542264146	4.35327479396129	4.57018250120868	4.75913984119481	4.27853374993535	4.44261715213256	4.5609801566681	4.65595863792808	4.62334338327095	4.23594111258689	4.63230259259052	4.56227641271566	4.59594559530437	4.69806224522002	4.66106074881894	4.7917628651342	4.42138101075143	4.57018250120868	4.41644281758322	4.36235884470848
+"OR51E1"	4.648684532112	4.94830954098717	4.42552451267529	4.87343660663252	4.86917554258324	4.85591092980573	4.66951746455498	4.50301150703372	4.6973606674644	4.76968755238661	4.51342379358495	4.81208433395701	4.53815137663058	4.90688597459845	4.51141557379639	4.99495802508453	4.58686602609522	4.40233489565786	4.62217524036455	4.76968755238661	4.72251807769936
+"OR51E2"	4.33217808216384	4.15871293994809	4.22418977974962	4.15920894601459	4.36690022236501	4.39352923142851	4.00193131765939	4.3932546879952	4.31290097079337	4.03979539245002	4.03329566232063	4.41994567883439	4.0596020648455	4.19107711104926	4.36776510419371	4.47896469728357	4.55591983733873	4.1445503148331	3.99049138137218	4.24044039814449	4.12925236600157
+"OR51I1"	6.35801727633373	6.6193473730095	6.10161242577826	6.43806872010549	6.16664797717242	6.37005547102079	6.51166132831683	6.34348649239127	6.54220541910782	6.53874454837927	6.53542222645294	6.37482420497917	6.44517144430975	6.24443397539332	6.49497016140533	6.55109024069761	6.47431103557314	6.05301189422247	6.39976039317235	6.35995203245809	6.50679154977892
+"OR51I2"	4.66784483447504	4.83851391392687	4.70726434776364	4.7789386523747	4.782400391756	4.71089850386554	4.87985162096996	4.80368725901654	4.88432121658829	4.98580237052436	4.67655622693553	4.64706320778972	4.90736412981109	5.2219894881129	4.84990900573367	4.9354275891094	4.89796696588481	4.42095810996007	4.75961433005938	4.674930582507	4.782400391756
+"OR51J1"	4.97040649581516	5.18159099469555	5.19124287736017	5.1116174329575	5.2297882291809	5.44061319479109	5.28109426067994	5.19347182415159	5.19973652481879	5.09526964067651	4.87661605967171	5.09514546959648	5.13956651999484	4.98516335387029	5.4356727410432	5.33880828035596	5.04001146543428	5.03190361528319	4.94617578230193	5.1612151962456	5.11065276959152
+"OR51M1"	4.55288136215928	4.66392428132883	4.53593459144016	4.70867645895479	4.76952689263162	4.78450863957645	4.61284354163675	4.65810577924748	4.3792837451319	4.84758683685233	4.25644087405068	4.57119128225018	4.6397800278092	4.84552170451463	4.78447994247241	4.80151565144506	4.71858137588821	4.50405825581324	4.30475949109041	4.40428299381154	4.76515895175749
+"OR52A1"	5.05522687570877	5.32493525478426	5.01507040847168	5.32493525478426	5.40173199014685	5.39939334963796	5.50824537768225	5.24437422840686	5.25405127779622	5.32493525478426	5.29337929437873	5.36417831344186	5.431337929467	5.51933806467345	5.30912496248867	5.3088550014802	5.33691139859507	5.08073249627183	5.42920626938493	5.25255474757163	5.36724102242157
+"OR52D1"	4.96152550711651	5.23429867785122	5.15357625021385	5.14601553105054	4.94545988818027	4.70184480992303	5.1071110531149	5.23045797676844	5.63545454660594	5.23045797676844	5.23045797676844	5.46136933049336	5.17531102246592	5.06796435590455	5.23045797676844	5.33937887912675	5.36883595846047	5.08961543800521	5.25391538219318	5.06081292725608	5.2712614964082
+"OR5AK4P"	5.00634632501431	5.0447672640683	5.10856102948484	5.32711029855355	5.12235210340483	4.99956214240672	5.19059660381415	4.97997956012073	5.11702433874	4.99169548668545	5.05000786159656	5.09696592140675	5.25255474757163	5.10856102948484	5.31351634299622	5.04717714288534	5.22615375302347	4.81524962307991	5.06517188214699	4.96458811215804	5.19561643753309
+"OR5I1"	4.53554700484059	4.22418977974962	4.35949369436796	4.22927500351347	4.57725023298415	4.60677906543358	4.08760134636187	4.34140260787438	4.72036916844952	4.18348903688091	4.4025863809716	4.18751905548196	4.42261859539351	4.67880749556636	4.47437994486201	4.42261859539351	4.58063304500686	4.33652755053729	4.46282411297259	4.52673989552391	4.42261859539351
+"OR5J2"	3.3878969185609	3.39466415280945	3.18973656801031	3.30030414591743	3.44855561192298	3.22459854704168	3.24463034245096	3.51327490039182	3.63378880749435	3.38190132438258	3.39322639197516	3.47115147475991	3.61887959655682	3.38613004288932	3.67839554293125	3.40460732850772	3.39466415280945	3.31173041364545	3.43107134881157	3.36855784584253	3.4514161045588
+"OR5K1"	3.11451761692397	3.12912485670068	2.9731490739479	2.98816811519717	3.0708728047029	3.16848370752023	2.83912225292268	3.2136715162196	3.03036524383967	2.93648475959929	2.73793627311904	3.15497431643892	3.0596745522001	2.88316177676709	3.00808307272916	2.97427250281873	3.03857845569984	3.08764052405307	3.10560154012702	3.01076439709496	2.94226466031997
+"OR5L2"	4.91564402309367	5.08710692059188	4.82026041863779	4.87413859296877	5.07757932399444	4.46197349741763	4.66808205236847	5.12293689587634	5.25255474757163	5.15712567969564	5.02321912230236	4.87026888395895	5.29735986563457	4.76990742177961	4.97107261534863	5.24307319819688	5.32603295731475	4.73483674428023	4.99169548668545	4.82325790008863	5.00330276189097
+"OR7A10"	3.30506569158218	3.43297326144055	3.37867097165171	3.38999596647246	3.69425227098269	3.96519623201863	4.03370460317926	3.48739382036358	3.72473203022568	3.66352474052227	3.21415446959274	3.47741534834406	3.54971706410786	3.49813585000369	3.6084356043351	3.41251777540124	3.60704421893831	3.20344795890702	3.46747020063467	3.61040669960772	3.26617162862984
+"OR7A17"	4.29410475845439	4.34057268666813	4.35738917431164	4.42926818889751	4.4982591093832	4.2413227078278	4.53015166744075	4.34057268666813	4.3465603978934	4.50404500630733	4.15072184140788	4.42109379800492	4.25964472169835	4.27763422335955	4.22126406768311	4.22807307071684	4.17205554038395	4.08910878972356	4.59762221252976	4.21767172395746	4.35919987196241
+"OR7A5"	6.75451165271272	6.47113041104144	5.94769518608502	6.91570587006308	6.35940558796246	9.9382759204545	6.53880304017543	6.11938783847682	6.67829134658374	7.78477083735996	5.74390324427158	6.37388880877907	7.7092663754367	8.36505068499109	8.32040192979187	7.04436482651054	6.68000645682707	7.46325983313318	7.35513615228357	6.35919719053682	6.66004650108789
+"OR7C1"	4.7423133119219	4.49939157098981	4.45878013161596	4.88322350970521	4.53827201134797	5.36920570821032	4.98392702936221	4.46369652597408	4.94880843348288	4.76362256801969	4.56348872865254	4.61552486600255	4.98911593666694	4.9764268197341	4.98308577956972	4.73791062959779	4.79320489311436	4.75799280259008	4.84460807795284	4.83851391392687	4.72593646134236
+"OR7C2"	5.62641913328053	5.68579964598857	5.89937959054926	6.03721834584843	5.69534051512681	5.78456889355283	5.92116061989068	5.78618136778749	6.04566898624723	5.94354858325945	5.77583869509303	5.67024807305341	5.87754455737748	6.04528838592327	5.94246954323771	5.98737603366594	5.93677191233105	5.41455225147848	5.96788560474613	5.65998797926203	5.76442518417589
+"OR7D2"	3.31275543768538	3.42669144476289	3.95355613544536	3.34562254749399	4.67401429145662	5.30121651685617	3.23330529913096	3.58599478845622	3.58517689870124	3.48290969491496	3.29891503887123	3.68830150982984	3.32902841359289	3.41789349549401	3.28726937557285	3.51111874349389	3.51565908198761	3.37529893542131	3.4396410227311	3.49691984600916	3.50117372901666
+"OR7E111P"	6.28309798832698	6.23727240162952	6.17637754734667	6.28752832630918	6.44620043156737	6.35475324597406	6.52406954747629	6.24161437288289	6.20955750916461	6.26591962382225	6.18619783200992	6.17194678035556	6.32784624913932	6.47095967211746	6.1738501709083	6.36946795839619	6.38121662584512	6.03613479644187	6.00446499445232	6.28489467525418	6.1545759435653
+"OR7E12P"	6.74714146154691	6.60310662750414	6.45818368688866	6.5126529829958	6.46731749775333	6.39114108020166	6.29044523041191	6.76811479090711	6.5476067086188	6.26842649482654	6.68384031328522	6.39315464177328	6.38302055516395	6.49025318162366	6.47394151229167	7.03605887199254	6.45719900475449	6.34097552602813	6.38940616115466	6.41739812231938	6.46731749775333
+"OR7E24"	3.73064083518848	3.87661100939894	3.74397974141716	3.7960857840962	3.77582491236958	3.89703731211166	4.08760134636187	3.78204056874707	3.90580945391536	3.68677898483993	3.6177777882929	3.70380692986391	3.71988500423312	3.90882538535162	3.78204056874707	3.90739973550767	3.88681255664506	3.642679187414	3.66699081612402	3.80189412579497	3.78204056874707
+"OR7E2P"	2.97715371579245	3.05974875374746	3.06648670389582	2.97352907700897	2.92510818290609	3.31620869357684	3.12196224223828	3.02882873259301	3.02414940918937	3.06804940686592	2.83074792322186	3.11662025230101	2.98586326033229	3.21621520480578	3.05208048903529	2.90548220382196	3.05099086519144	3.04493826592943	3.23691074290951	3.06327696698675	3.07209545429193
+"OR8B2"	3.14288504417112	3.24635427006131	3.39624292772668	3.26211598728736	3.33667878598704	3.33685082994809	3.3024339101175	3.18404779816901	3.3439055599235	3.39399759973905	3.3024339101175	3.36155306899688	3.42148051175449	3.3024339101175	3.05163390606303	3.30717111816375	3.3024339101175	3.13885725484006	3.24305731544943	3.45543993057874	3.16384137687588
+"OR8B8"	5.42474190324045	5.3961078645772	5.13850231660253	5.47649869535171	5.22924290140819	5.39256889886875	5.50503337966759	5.4006713599387	5.30908208107204	5.39233602567882	5.33763547652986	5.33599955102083	5.77932127093072	5.64827207866902	5.23417669718129	5.58581993790377	5.4747973882642	5.06313717334597	5.40049945008648	5.08961543800521	5.48271876492092
+"OR8D1"	4.65849853787725	4.891431597517	4.99103585112422	4.89310520494687	4.83851391392687	5.20773400381865	4.87598852855677	4.89417837801282	4.72218561696914	4.73274522388488	5.36071975723014	4.96797564757402	4.891431597517	4.65713272211707	4.75912247086059	5.24923258512757	5.08071543884339	4.61238748602247	4.7378229313821	4.86053019734725	5.08434163260989
+"OR8D2"	4.6574031053864	4.60643901147192	4.49128210878704	4.70203623606436	4.60643901147192	4.42349163925268	4.61552486600255	4.50038085389129	4.73780036800828	4.59240839293589	4.52319132132704	4.59528769754859	4.88144292923539	4.62142070330257	4.57912329353822	4.74797070401887	4.61552486600255	4.46334812050842	4.67057729351237	4.64611783430116	4.61552486600255
+"OR8G1"	3.94687710637738	3.96445866384662	4.03191210545886	4.43652923946093	4.17906708487545	4.28140131453696	4.53767955653476	4.17094272387425	4.14641935668644	4.16325644402003	4.24263352185847	4.05392104249854	3.84936598036874	3.98826202482476	4.31941046777572	4.20004172612017	4.37611236303661	3.95859504276114	4.07387824645873	3.95258611262957	4.16325644402003
+"OR9A1P"	3.53544012383853	3.41430242815538	3.44912333317935	3.64731149554374	3.33850175941517	3.39949578292982	3.32833723142132	3.32949051065572	3.19781966584849	3.24443043378251	3.1816548465772	3.45406168154521	3.41591233288238	3.42470218240073	3.19879221816294	3.43668214074185	3.36954222834768	3.4062008013698	3.38613004288932	3.26025772586719	3.3404377108901
+"ORAI1"	7.62065854453169	7.12916184380337	6.88524496408066	7.16251027138907	6.79569531440393	8.01066660497967	7.19598891191905	7.34808152323055	7.05027005491149	7.05350529089219	7.15590376402835	7.19509649113669	7.230523453818	7.54097910861214	6.84301541977881	7.26550052071423	6.79137732381533	7.39391881592722	6.96206474476152	7.45969609772514	7.13316810905188
+"ORAI2"	9.81499202543769	10.0589658808059	9.45398620172699	10.4513253774997	9.32261737600937	9.67535041196522	10.1005959623958	10.1220734855876	10.3125407953254	10.1509378238154	10.017060293293	9.93838767390947	10.6966129614371	10.5280414087028	10.6093029354904	9.3139285439918	10.0134626145735	8.89356145443714	9.98149017279354	9.63439001425973	10.0134626145735
+"ORC1"	3.99634841625463	3.92870805158033	4.15432086803988	4.07890410498639	3.852434295955	3.88623412039359	4.04307665523919	4.04456201241809	4.11193774734079	3.87488878569699	4.01951030088973	3.81045356158193	4.22009676809976	3.90128069606744	3.89156628026002	3.88755323547258	4.10387869855019	3.9220615701408	4.13406974299394	3.9660072090085	4.01477108140565
+"ORC2"	6.37973845557625	6.44374832828884	6.37852242934442	6.1792965443195	6.65835342733553	6.52273897644276	5.81991184216285	5.96668269176176	6.1761111718371	6.50940082941766	6.94468948249418	6.51288694245129	5.94667006224355	6.09638096586562	6.05424023673693	7.11136687033843	6.4972844645876	7.3600308060425	6.24624496249475	6.37590645353355	6.69027742742496
+"ORC3"	7.32961625126023	7.26753302882723	7.50050485427147	6.87416852221584	7.643395563666	6.63981681369342	6.64062229458245	7.17839241995867	6.94654933136624	7.40297480925947	7.34529444906189	7.25212233153442	6.49118793684738	6.66037719566885	6.7459202924771	7.39838176461912	6.82745749647751	7.60327037618693	7.19651424062178	7.40959086106384	7.15515781224692
+"ORC4"	6.92508206855389	6.78306801786368	6.76745094351855	7.13894816216788	7.29013088028195	6.74518268071693	6.80220424522344	6.96770090008032	7.03381388464344	7.32931418615281	6.59257483674431	7.16628314505363	6.55735289224928	7.01289236700537	7.19803825076537	7.32171607727027	6.929317743637	7.30584296249822	7.20045773535398	7.46493599564205	7.31562071425949
+"ORC5"	4.60852878813655	4.92355650481706	4.84214923769822	4.93716013536315	5.97494320526026	4.70329437560804	4.60543942161297	4.45954114271837	4.94742361195915	5.64968349243673	4.94742361195915	5.37836769921208	4.78929496071269	4.73641920946305	4.59690791219225	5.11614117660156	4.94742361195915	5.48553130493787	4.94742361195915	5.50513334210442	5.66221703990501
+"ORC6"	7.2418847728078	7.82801665584936	7.96023493611855	7.90135727552723	7.50721426418033	7.71252032233967	7.38636903663766	7.88282424214541	8.03542866954223	7.90109685809971	7.76754640295665	7.81086761447273	7.94778719570891	7.44385330636298	8.12241838330899	7.46774574686191	7.94797010357027	7.68087055425659	7.73983686324776	7.75301881803266	7.75301881803266
+"ORM1"	4.66939358523565	4.51573372204396	4.62567220844384	4.72868243044737	4.61284354163675	6.08046168860191	4.90432869285163	4.48317566388224	4.4844115510397	4.61284354163675	4.31896224096173	4.61284354163675	4.52862006456966	4.68090610038749	4.74924094096892	4.44011030704892	4.64423178974708	4.47282730856786	4.77002672875257	4.62739520692814	4.53168480806534
+"ORM2"	4.13557720799785	3.88611927666198	4.08609572492652	4.21622801069518	3.94427180066759	4.4144381095621	4.23932240524768	4.06871850152983	3.95128371035273	4.17798943313938	3.77656596718813	3.80997932790129	4.17180233770345	3.84240189121991	3.96779852709763	3.99980319847547	4.0733820099071	3.98982928488619	3.98544605296826	3.9540031383352	4.03600099560098
+"ORMDL1"	6.46026275497851	6.2264985171554	7.04714253848519	6.10721662255276	7.33398983580263	6.50448628315101	5.92732724316096	6.21326126336571	6.92019026560919	6.28798736451045	7.31527672769171	6.05468779207737	5.96091624879803	5.87139439542022	6.14915142746361	6.42716678958973	6.64301323200053	7.5614832720766	7.2283933863398	6.97331584382215	6.26849715662124
+"ORMDL2"	7.99071114060675	7.01704996420067	6.9389513048239	6.98630657690951	7.09663396951331	7.40153694938656	6.49322250233539	7.07673894313928	6.59148032307955	7.15125987118476	7.31605786214907	7.03435278684691	6.31383660025982	6.87918040453092	6.79903225726712	7.87862134240996	6.55978305326866	7.63899181863072	6.97462132687096	7.37621951526137	7.07579683728881
+"ORMDL3"	6.81887065785267	6.65478141430396	5.76670063529145	6.51692215593317	6.17302065098156	6.25605898037973	6.85325838196282	6.68683201940412	6.52806884878358	6.94599090213186	7.18711008925267	6.79171461331668	6.08957140636881	6.3408708537188	5.95258661830863	6.55468281999552	6.576935129614	4.90533025952517	6.50029762430414	6.91883908725342	6.21600653578283
+"OS9"	9.40990896507301	8.93619382398245	9.11932767178928	8.97208626634453	9.07530448546129	8.98492398643126	8.98815628222693	8.91651540389292	8.70511680514831	9.21715365540716	9.11480850219553	9.15072992238068	8.89097974753512	8.91589764809342	8.56330534374875	9.1338301136653	9.1030003600336	9.19863609706899	8.92963066253759	9.25750071654358	9.2091885493256
+"OSBP"	8.22551040374189	8.43385194794217	7.7193151579271	8.03455171577796	8.40481104332427	7.60380288558315	7.94981112358338	8.08336406663664	8.03772843400237	8.37237349733648	8.17032482103734	8.27219448160641	8.04103331235551	7.83234508881523	7.78473712154481	8.51217667932784	8.20759911544967	8.43480271659786	7.87341734083368	8.42843782036576	8.48321537329304
+"OSBP2"	6.34123883904407	6.90025581014877	7.41836995678456	7.46105595628844	6.65885032849969	6.93457352369816	6.52210588788614	6.97432604770493	7.02640051248281	6.20293999559027	7.15439631243484	6.55781636302019	7.16582341070497	7.21275851227008	7.61019117900755	6.13855169712106	6.54719451899252	6.93383237421225	6.99529042411508	6.40042408107662	6.36017278949439
+"OSBPL10"	6.50690684409203	7.34326038429503	7.80177533395501	7.08946270515039	7.90351847765263	7.4780031019985	5.78384996107525	7.00649489947399	7.14428833909389	7.10473899728603	6.17467787217586	7.5216182117709	7.24211131032029	6.84829715507372	7.26795300988872	6.48269995328982	7.36589921364704	6.86931230153596	6.91093259091517	7.51577681629485	7.38504466816708
+"OSBPL11"	9.30072932695703	8.22839004208831	8.0048745871245	8.57040828298353	8.33012318909832	7.67952314328925	8.86572358666426	9.13199418631219	8.45859099721755	8.19859205700037	8.79182763892658	8.80358682934079	8.04806175246655	8.36083568545041	8.27601229160818	8.17548054549896	8.47018781736163	8.85803863172398	8.27421319947233	8.29700925409207	7.88448748476923
+"OSBPL1A"	10.0887744200942	10.4688354109087	10.7240875304533	10.2602807647968	11.0815936742628	10.3260887844292	9.99734964477247	10.5078963821871	10.5821182594683	10.532977438238	10.4154517537628	10.5272135765852	10.6112077901845	10.2188132569456	10.4400994304796	10.6523810019468	10.8119415672216	11.2072835212064	10.8215058485737	10.5741985244902	10.5146971013613
+"OSBPL2"	5.66831137053974	5.48396256195805	5.50052434582367	5.70441820345258	5.25011001370544	5.31189786962879	6.21753140972912	5.66447895447208	5.9477127608628	5.54315250660697	5.70230056550291	5.53715223744997	6.07421727273807	6.20367469497316	5.92860098537604	5.20244168165554	5.58784535814579	5.2681588191414	5.58282461157597	5.63375223329371	5.53240235974417
+"OSBPL3"	7.53971426218924	8.00929645413726	8.33945311057889	7.4935927883118	8.29443004948434	7.72241937638318	7.37277256275431	7.54399971811434	7.8347354241393	7.72241937638318	7.53297816272358	7.53609072630861	7.9477639542242	7.55292458816857	7.74620689546605	7.41542553271445	8.02797255099558	7.53598859118611	7.72241937638318	8.40685583226296	7.98270642161959
+"OSBPL5"	7.42751376852352	7.35546273737551	7.62419174983375	7.44667495770267	7.01771989846507	7.68306247912043	7.61860520048755	7.22846036838545	7.37010544429935	7.44667495770267	7.53184381482244	7.5029941360022	7.54974168430942	7.46620014015159	7.20669156309974	7.23102647995973	7.47135425118227	7.49644623765511	7.47150877809512	6.92960806539795	7.62336909123617
+"OSBPL6"	7.00102994505369	7.38895938544032	7.55973143334302	7.2902133023066	7.80637950136227	6.96586551502867	7.22061663150702	7.09809649106526	7.48255851896356	7.28505768403564	7.02355652790056	7.59143452378558	7.68951861613028	6.7999623840272	7.76838257185138	6.74875214165611	7.69980569101079	7.41450689376057	7.27844170495234	7.50184946983328	7.68440420685057
+"OSBPL7"	7.96814942208088	7.75265586674523	8.08784559464743	7.79759713471741	7.56560702720738	8.22411393277511	8.10612562891303	7.73074116282375	7.65919269671513	7.34858722005032	7.88674999814959	7.3523244691853	7.87734977205894	8.01744013740233	7.69451742368535	7.8791830856771	7.66258843315285	8.21911458100809	7.78001079703114	7.49507252148516	7.76265993118989
+"OSBPL8"	7.87636583010806	8.10731135736383	8.80180021381488	8.31896717829441	8.88076704722923	8.79485727736686	7.59697824184964	8.16307460645348	8.65593498813472	8.78163529752536	8.24248432880624	8.78950129977332	8.23294145637756	7.99630929244027	8.67444689676607	7.92597920523429	8.11492178405673	8.03132583805504	8.2821239060727	8.82680553753484	8.16777514287953
+"OSBPL9"	9.39505640402778	9.26744901127819	9.11436912007718	8.89789552695938	8.90190002440138	8.95144132034801	8.41394667905195	9.13124024925953	8.35757890713345	8.83071032623254	9.65953085047296	8.95769610256738	8.61174999394303	8.80568683018684	8.67071176913789	9.66837846279154	8.97007943433662	9.54344241744362	9.13279197958299	8.75626358537029	8.82523372206292
+"OSER1"	7.93565991718241	7.58193956743783	7.35584655417933	7.46154691558261	7.69997538766232	7.59273179921532	7.50791390250245	8.36989476174159	7.47606889373863	7.73356567359568	7.73604057025109	7.86118888237871	7.09191782507262	7.02366096153133	7.32854143683167	7.93161790237891	7.66317597608498	7.97924578026476	7.8096056518044	7.82732055133604	7.60715644112458
+"OSER1-DT"	7.0989236036946	6.59727337463421	6.51273623425876	6.91782124168399	6.42608782894771	5.74225131502109	6.52290458943127	6.77549984293996	6.9457433694911	6.85611579576945	7.02507544696864	6.71736123761362	6.74144881858196	6.55906097447666	6.87757041685645	7.31086895244347	6.56275476602632	6.49482261945032	6.78012772238422	6.94982862491583	6.86710989375267
+"OSGEPL1"	7.44660878500752	7.47422717125874	6.98533457094088	6.89816485111583	7.39137774140709	6.73811223163281	7.15316644507686	6.95930979068905	7.06239330906033	7.30666550539973	7.49195201327509	7.2210707769658	6.63963444767485	7.39645328495126	7.04091036326636	7.80032294209984	6.93121904549317	7.95276311717126	7.41978688704322	7.11450809411044	7.08278905814859
+"OSGIN1"	7.1769107993792	6.96276279766063	7.05741336596542	7.15945256512089	6.91018282116011	8.15185274688826	8.11844530415368	7.52416267237493	7.09837610582242	7.2642383348104	7.02303411566519	7.08573568532911	7.38694252039968	7.54262884329835	7.25642856937048	6.91362637648362	7.22559340071064	7.19618184448979	7.46584439503509	7.07848476070354	6.85844743423045
+"OSGIN2"	8.95828781625059	8.27351970120119	7.07275400665275	7.25605606148834	7.96476809105984	5.84384664398992	7.63946582826615	7.87103886978847	7.75475730386026	8.0873564289003	8.70372090086171	7.89569802743409	6.9664043423685	6.86811649432132	7.67122167169317	7.99002671531064	7.82827197180214	7.92154961544609	8.26520450275706	8.05257964475711	7.75918812926117
+"OSM"	5.2272095405193	5.21472115975512	5.19921393081212	5.22389499028002	5.13536393666519	5.98905871970241	5.78733784744983	5.23764506520398	5.22389499028002	5.22389499028002	5.00341469346868	5.37727331902719	5.29757824271928	5.23562782583364	5.20291621042944	4.82294248778974	5.15427902701395	4.92403252116162	5.12877817677267	5.25387330344919	5.11083457029762
+"OSMR"	6.39323987638549	5.1452802567376	4.77501994394868	5.05759728672112	5.31082218779319	5.4857723882809	5.7083525355049	8.43185509674117	5.01642400677561	5.18549273724463	5.27582673252868	6.76944530048909	5.33671066948908	5.51803773200624	5.16349127997605	5.24717254496974	6.23325746455748	5.00229528527727	5.34810385551279	5.37517765343006	4.99738981235318
+"OSR1"	4.01702837838674	4.05617201928408	4.26909568708061	4.20164409619132	4.08193599403084	4.11086936588386	4.15390836897628	4.08753376690376	4.02902103000701	5.10268448122935	3.84695789692547	3.95664975860059	3.84232318792524	4.07691517364157	3.96090556020095	3.9353887417317	3.97194559928696	3.95039984691224	4.50643129871752	6.68458396877338	3.87602960504719
+"OSR2"	4.09902620253397	4.03856645795188	4.00490438590475	4.15609229265382	3.91747881625649	4.30823815093845	4.51162223855553	4.1112004030439	4.0480019502012	4.08910883436228	3.90434906850192	3.92458997428505	3.9715353612711	4.30318879011652	4.05184689828646	3.79307629992022	4.08952699119045	3.629570395387	3.89297952836794	4.05005558019733	4.11454838552374
+"OST4"	9.90775695595387	9.22092418014814	9.13146699600892	9.15988676345695	9.10043202911981	8.76598354689012	9.54472456652498	9.75895498212316	9.19959101391876	9.19606090909042	9.38549392823679	9.14434243556514	9.09805268765182	9.10380339474932	9.25152737250608	9.35184528361772	8.85680490857872	9.53962412184631	9.53838058216841	9.557058826374	9.12634726895917
+"OSTC"	8.56798377604201	8.28230317028	7.64997170140794	8.22433496911184	8.24229591120592	7.81072503880671	7.86686488040982	8.33945315584163	8.19472415872536	8.39318516430466	8.32481502581646	7.95787826575548	8.10891533651145	7.88293878516931	8.22883446243972	8.6047138148008	8.002444690823	8.33495369581061	8.38344187555085	8.50925876931706	8.47486773658218
+"OSTCP1"	3.39082786485554	3.39996878104259	3.27205344170306	3.3764508068547	3.33531421145258	3.34197345941481	3.39082786485554	3.3999992448789	3.41222410027302	3.41763566271398	3.37589521679737	3.39996878104259	3.5527142538261	3.38657517914172	3.69752324626272	3.42599191902182	3.43479039760377	3.31124616881141	3.41268625495811	3.17793638044369	3.46056208825044
+"OSTF1"	7.58822506920986	7.53023737706257	7.6003377569537	7.38402344966607	7.68250549821938	6.24624496249475	6.36593222864463	7.74525962378513	7.37355432442395	7.89742354180891	7.37943948126849	7.75847826574189	7.50386076595079	7.57881082545104	7.75362002678068	7.71115293680017	7.66875734118566	7.88777074669936	7.55792075641965	7.78322341576258	7.75252143779754
+"OSTM1"	6.09874231699268	5.39958756012866	5.58865803069763	5.76244449022452	5.8475454652288	5.72247312696195	5.42241547352793	5.41295090868159	5.5522508346955	5.79274837937574	5.56686480384179	5.23724382049902	5.45071978944886	5.44267429896357	5.72548162121496	6.07421593835198	5.14900944162228	6.17912851752499	5.60524388791233	5.73583414349847	5.48937599670888
+"OSTM1-AS1"	4.38773227821901	3.95186425680071	4.04955444047726	4.13843818206636	3.98171572786164	4.26274450300654	5.06080696213362	4.29485825076351	3.9945701578414	4.19387698613287	3.72608910495537	4.17626962192788	4.1045981099574	4.2917131194046	3.9569817394761	3.9164897951021	4.17205554038395	4.1045981099574	4.21813635924819	3.99291616220694	3.95920225794452
+"OTC"	3.99541177370259	3.90882538535162	3.87658355139635	3.84232318792524	4.05400104780708	4.53552366041602	4.1200707146921	3.80928742155202	3.6293388865441	3.82783295486216	3.39615870288001	3.82415473417074	3.88597367313769	3.99830690699729	4.00020183440247	4.08639528956687	4.17658406646038	3.52970537206662	3.77817208927165	3.80675227655347	3.93637923802407
+"OTOGL"	3.94156994263649	5.00425833705402	5.48153373394532	4.39053825086182	5.10857988245025	4.39126872414727	3.69013840283911	4.48571724727356	4.30364169509547	4.30805849541956	3.89040030486395	4.31173070909507	4.00519817810162	4.07710587542181	4.04271589306378	4.02395146479757	4.25964472169835	4.50834261862755	4.58847963995108	5.1363150978208	4.13666448703973
+"OTOR"	4.53731029105918	4.97078882060694	4.97078882060694	4.99972413242884	4.77874901736457	5.39384319491798	5.38030455292308	4.9030125688912	5.0168426001847	4.98381134484115	4.81135391374593	4.93698434496391	5.1399261676718	5.52974856736814	4.97962843312662	4.81414890844684	4.95705518431472	4.57512919121534	4.97078882060694	4.57100241125542	5.06556451631489
+"OTOS"	6.19569229240239	5.65683002055204	5.64207334806396	5.74484790987696	6.01654205232492	5.89644396607325	6.21470281763894	5.98737603366594	5.70174847684546	6.11838735180386	6.25975585486541	5.9011116137229	6.2387986932659	6.88609824355869	6.11371865113513	5.17877192769895	5.78923775325168	5.85945136183585	5.1945699360848	5.3803909264204	5.46383889526009
+"OTP"	5.16326821302782	5.09489966218494	5.01927668871185	5.21862327786073	5.00299616227995	5.41963745202363	5.35625647345802	5.1611850128625	5.34678714529671	5.2097687878453	4.95493645561904	5.02180033738461	5.16389857886295	5.40951572840471	5.19745987748221	4.98609121624134	5.1684351940195	4.93187025071337	5.29091546287913	5.09006068568483	5.00755758112369
+"OTUB1"	8.6553381993109	8.46496995115706	8.6984437085838	8.45401957146747	9.21225068309043	8.29395124765801	8.01541192692405	8.50940717025873	8.58102799977538	9.46417513419221	8.66738672801301	9.34954646782393	8.35282997571432	8.07573911010981	8.15216686164531	9.11774086929687	9.01342124205863	9.18428508879034	8.51908784705005	9.45860549954047	9.43890854733108
+"OTUD1"	8.99545876363376	8.73156285002904	8.98782737849388	8.62289218676947	8.88837752809165	8.77711576702517	8.73698354234106	8.82953747591352	9.08115838462685	8.7237325343703	8.82316096040556	8.52902042492262	8.68870871297987	8.65019157107433	8.93653437269912	8.93343102212085	8.80626790990622	9.16121463573973	8.88673135603068	9.08009045921753	8.74973633485339
+"OTUD3"	7.45870089145003	7.66876345995268	8.39006460318216	7.58296840431301	8.22495960742643	7.79905078875871	7.01211228715507	7.87306298633682	7.76938564201922	7.83840591524848	7.30904468563028	7.95215014843221	7.63669835134576	7.36451033587423	7.77881173183696	7.57219702444916	7.97145617885276	8.09179052295444	7.2896968302668	7.80471236240455	8.03141323180092
+"OTUD4"	5.94176049538847	5.95253049792004	5.24238126126116	5.81895133403109	5.72432517287856	5.50471068929922	4.91388111092797	5.80280155729854	5.80280155729854	6.00822117895494	5.89069572632063	6.41143515017209	5.62370759874691	5.80613963396255	5.68519644295041	5.87136553290698	5.93199762182797	5.22816426614074	5.88600834414623	6.14505941677971	5.58005342083574
+"OTUD6B"	6.34784329566416	6.443834933189	6.90945939972604	6.65241811129046	6.66605133777045	6.39428240773941	6.21884127629051	6.74312216364356	6.47371908689708	6.03269174909336	6.81206312310293	6.4476472412479	6.31015741905259	6.09782820478697	7.15474363454145	6.9924858641858	6.43260047998197	7.37132643101234	6.63047162664987	6.18496600436019	6.41278146695363
+"OTUD6B-AS1"	5.55298446367058	6.1437447558249	6.006371692457	6.08361367529484	6.41166960350251	5.20566358264607	5.21540774484546	5.80610599069578	6.16477993618596	6.15000421185178	6.19286226368595	6.07854110773496	6.28815928048533	5.32256910897855	6.26602186990689	6.07854110773496	6.30777971152844	6.29743602643893	6.07854110773496	5.73336873945443	6.15519598053209
+"OTUD7A"	8.15883877435306	7.9839896456598	7.22083227056225	8.18820695976354	7.88323380480193	7.93266104633307	7.97599757760923	8.18853231966312	8.05031289433423	8.15867462903966	8.11754029242398	8.53292711910805	7.90492227749861	7.54260404918961	7.43758559453123	8.98465464039747	8.46596931166906	8.81236827539679	7.82149966722699	8.14153021526283	8.58252758525997
+"OTUD7B"	8.92059501655296	7.90013391377649	7.58608145937753	7.55067370376049	7.4578464169211	8.13250057287756	8.11509847057472	8.10381943275898	7.27208571780947	7.55773296539786	8.18779560536504	7.20247525616967	7.19229486208523	7.93300177889644	7.48329275823357	8.50036200916676	7.45057296020625	8.28420017095927	7.50946463148275	7.30683408042542	7.38505597445008
+"OTULIN"	7.38708109532257	6.63981681369342	6.95226508494765	6.82450629332652	6.66348425180271	7.43069059910799	6.96845541666424	6.80841858259438	6.79675296668183	6.29510270491173	6.94598793910699	6.00925737873374	6.41863316322144	6.93385732525685	7.0909190636252	6.55063304008962	6.26430816939141	7.22282342390864	6.30650013213655	6.41248185622864	6.52599293280221
+"OTULINL"	5.41917334325947	5.51698186140246	5.20376563188594	5.30183432264714	5.32154773110262	5.45044211001144	6.22314741436119	5.25146964695141	5.56446748516161	5.53272911751517	5.64828495731746	5.02409053030022	5.36083353580645	5.83248475931933	5.40137139032011	5.51139934243611	5.33691139859507	5.31034431604433	5.86219836836549	5.95805922160675	5.67852082574777
+"OTX1"	6.80028047181589	6.57458026680125	6.35634114424877	6.68520003315281	6.6699790919858	6.54211016707801	7.05832218979927	6.7061813249579	7.06717999913554	6.63182797427119	6.63320870743611	6.63182797427119	6.54786304098983	6.64684527898888	6.41657134373969	6.41671769173549	6.55074543846403	6.20386788873247	6.81209787880906	6.69405217394279	6.50121268256961
+"OTX2"	3.26267207146602	3.1258380403856	3.26267207146602	3.26244893847034	3.18855556740152	3.38360692339254	3.31950213582129	3.15957951099953	3.33193339055916	3.31766279368095	3.03639897441404	3.296344057065	3.53659319267233	3.58852555964598	3.32190375079409	3.23644881645037	3.25241444517047	2.93877790751706	3.26048876415577	3.25886163050583	3.38613004288932
+"OTX2-AS1"	3.32667209420961	3.41119892828073	3.07333856402342	3.52368498581929	3.23188321331319	3.47061728074588	3.38726540141746	3.35641351371774	3.35173792119535	3.38726540141746	3.16667316560508	3.38726540141746	3.32029731553835	3.54599141648344	3.33987049530239	3.48089441960499	3.41825951150593	3.43942372824192	3.22307476888665	3.38726540141746	3.63734615191803
+"OVAAL"	4.89216465245515	4.95687744122186	5.24566655680691	4.94229494002556	4.95279034708839	5.09423801756495	5.33759638908513	4.99507781262316	5.23082436563734	5.0006195288889	4.98200908134609	4.96854182877502	5.17321092878337	5.11747966503678	5.33543424288136	5.22109259255128	5.12149954586014	4.81621059395469	4.875163797995	5.09658787394833	5.09733193015031
+"OVCH1-AS1"	5.44762498836004	5.45022560515946	5.61271788512504	5.72646989866483	5.68519644295041	5.78572392306274	6.18351577374355	5.58368638162523	5.53794888940405	5.77501455260862	5.49781357752577	5.64833518150683	5.92404281188343	6.11401914995218	5.65558271114476	5.7185638101718	5.67735869398197	5.50824087550962	5.77580495916579	5.47505275088982	5.50408261396113
+"OVGP1"	7.42581873222296	7.83985321285385	7.84402768609192	7.47153140004334	7.84691839836058	7.92673540775636	7.35411868149371	7.5700983137529	7.69080123297021	7.76537386698487	7.4545420039355	7.72504271009037	7.74572008852536	7.92864943130014	7.84420993921363	7.44575094964701	7.84234100991529	7.60419942777382	7.33214073743472	7.6428975601027	7.83116420270309
+"OVOL1"	5.10328045892259	5.06764699669236	4.70464419257885	5.22209266910451	4.97416972951747	4.96280797035531	5.07908176240649	5.19443593160273	5.22906966634569	5.25864314250522	4.98301929236535	4.92889924336367	5.20643267657611	5.03024322721191	4.96076566484726	5.23300664157006	5.19573385294138	5.06764699669236	5.26444341892177	4.87658459293619	5.08317198039477
+"OVOL1-AS1"	6.08261116273735	5.99485995415846	6.05776687432175	6.40393617642971	5.95940155891637	6.21699543390393	6.21884127629051	5.86214581919679	6.13967250646986	6.03232015178711	5.90975352970093	6.07211083564456	6.24957559516374	6.45127425351189	6.13573833072211	5.95160032548959	6.12237885471574	5.85766226042791	6.15926893060771	5.91108465151859	6.09458372634018
+"OVOL2"	4.93185002333579	5.53440270314954	5.6531896758529	5.26788393565441	5.70457364861031	5.28569975050254	4.95587786003357	5.32039099655781	5.09482484719519	5.39198562036581	4.93876058703881	5.24008372031151	5.41714945324172	5.06190618356	5.40210724574576	5.15716373192079	5.46611892089414	4.8554256918105	5.42524687603376	5.29470806294562	5.34979158029217
+"OVOL3"	5.43236773958041	5.68816542621278	5.58464093367809	5.77001484075164	5.77690705439047	5.9028778869074	6.28226792555491	5.6540832585857	5.9562076022655	5.8212806596539	5.61080948462049	5.77001484075164	5.85424821924328	5.86756575504101	5.72497498384698	5.81776956880779	5.86588990979177	5.6492028339589	5.55401627391042	5.73905598444369	5.72130208771372
+"OXA1L"	9.15743371227635	9.38083805457469	9.06546466218195	8.72114882830269	9.27518689398682	8.94037356789444	8.71017428334013	9.04934885683896	8.93283295572626	9.3995707470046	9.20714548827742	9.29154627350147	8.80319064144772	9.03630247252476	8.81841386711166	9.24205445096992	9.24553017976347	9.24698371056375	9.18768062266248	9.47410225644057	9.46347505216709
+"OXA1L-DT"	7.1357657822323	7.23573196898286	6.79998708678168	7.61937608224606	6.47891707348748	7.29126264914552	7.53402618330654	7.34751736909214	7.39468613022446	6.91438709392853	7.64562947016082	7.0901238174005	7.53310001538589	7.39645328495126	7.67899727909154	7.08454538764843	7.1938337650847	6.88329988183019	7.29892844320579	6.78831095202813	7.09759496815981
+"OXCT1"	9.03681475883303	9.83553376997888	10.1300269650416	9.64516576532655	10.1823838325309	9.15760299606153	9.04714059274976	9.68671561480725	9.76053212509323	10.1475342571354	9.34534271704525	10.2097723535227	9.20489318192178	8.89467411956571	9.76053212509323	9.55710917574142	9.94375015178664	9.7797607285977	9.91841273505955	10.3297879498334	10.0942808425403
+"OXER1"	8.01024189481928	8.3129893393354	8.00407105126971	8.39602316161173	8.07559192249543	7.9931693591235	7.8544925103012	8.06180867465184	8.32934235722452	8.29253274022218	8.23107302521686	8.40331365577919	8.23185997179093	8.1275960516048	8.26120873506898	8.27858849818449	8.40388443213887	7.96450151504561	8.32799241568927	8.10654888040354	8.46804778777775
+"OXGR1"	3.87771211766067	3.80775842160085	3.86169352990934	3.79964761043167	4.53073554416459	4.48368697493466	3.86834686509364	4.19741668768187	3.94151074363476	4.06739359267981	4.09779089456351	3.9712131360232	4.08022174867621	3.88131027585594	3.65010506754391	4.41346542206068	4.30291884282523	4.03241579476436	4.19641218348798	4.64976156102741	4.62359961348025
+"OXLD1"	7.75257221900732	7.55678940436232	8.08699744984428	7.15456500152924	7.55970463955972	7.67596249754601	7.39419623214998	7.36630310905082	7.37930727732276	7.75667077884814	7.53346918229569	7.39076955216488	7.32564626248762	7.51038439624917	7.46328528222288	7.59564147985528	7.30864337176614	8.17426444032393	7.14703789368526	7.86717683074051	7.4981442621065
+"OXNAD1"	6.70370061776079	6.90663491991725	6.89546907740355	6.65930618652734	7.33246420957015	6.65083919318225	6.73112810565022	7.04993343743667	6.65611017109097	7.06222416962766	6.79625351250668	7.00074825520251	6.97778146807215	6.82788537274079	6.83079237616704	7.02311194426964	7.00572766833373	7.0839875246391	6.90663491991725	7.12486179642969	7.25499424578927
+"OXR1"	7.2512708341491	7.79631111952332	7.33204560374264	7.7335785454784	8.93854837790563	6.37847193994825	6.4797222673615	7.46084233189628	7.86656583168682	9.10557588301734	7.29178725376202	8.75288279896959	7.22743952486701	6.63135950670416	7.61019117900755	8.50416277731832	8.622074215494	8.34989182557188	8.11000039589458	9.0140375381198	9.01004562093656
+"OXSM"	7.07028955161873	7.15031220380511	7.43587002483136	7.00702910663615	7.33158114946696	6.80316300316799	6.96831374763671	6.6444937148947	7.07028955161873	7.39645328495126	7.06079719722774	6.88016287057849	6.76471152690916	7.00163100914208	6.98378142016422	7.28192647917246	6.8713956478334	7.28547101892379	7.2001244350528	7.42031253732692	7.07028955161873
+"OXSR1"	8.60670520791347	8.31031597778158	8.44481299102625	8.13318647977663	8.68388296094521	8.48007933600603	8.18643934904345	8.46062721028319	8.24908600517688	8.45565119427702	8.36420690681015	8.17291148071978	7.81612474729675	8.31616894267446	8.10696379574782	8.7690263298385	8.54894435018351	8.83908994515916	8.22157251348223	8.57119954809518	8.51664908241443
+"OXT"	6.00683764657011	6.22922256788874	6.19306925750399	6.40207946916061	6.05135133426304	6.59442647387918	6.64806030103261	6.26429512655911	6.32459180731177	6.27369240959758	6.06070089929328	6.39895132503548	6.62754727653471	6.46435094400873	6.4478827575714	6.27486162322754	6.32459180731177	6.09544614340606	6.29118041943073	6.25030714683513	6.54385360009533
+"OXTR"	6.60251481680688	5.72453017791414	6.89754879674219	6.90639154552744	6.31261586877112	7.30088777427754	6.60251481680688	6.98152284606846	6.8706189057146	6.08361802538119	6.02615502780542	7.59747741534073	6.65650708439265	6.86975820743725	7.00352871011757	5.72482351996887	6.4972844645876	6.04286798991985	7.14609685469681	6.60251481680688	5.8385336478661
+"P2RX1"	6.64848842770643	6.88612129763236	6.49312853906105	6.67973000924455	6.58011654277596	6.7085882760953	6.54446395328934	6.58189695619223	6.69688117967331	6.74539642359874	6.55521555463056	6.69548456208445	6.76094068716299	7.04438562579541	6.55790608128504	6.98919270178765	6.67385820263704	6.66846721805043	6.65217233162391	6.71260633262048	6.66409273228908
+"P2RX2"	4.19355679960016	4.1301312556115	4.15228990485658	4.3357358085861	4.44979116336986	4.80393936407455	4.66488962045384	4.34283238616227	4.37087468538365	4.20298974043417	4.17394911654139	4.17632461567385	4.36253391962004	4.99169548668545	4.15629209787315	4.39557588635496	3.87298828714204	4.12845699921972	4.36659843669511	4.48891872367763	4.35133114189755
+"P2RX3"	4.26183135182455	4.20382915741896	4.69380758901706	4.49282558935954	4.1970507287089	4.48069228001517	4.75462357152464	4.55307270004249	4.53781031447419	4.35773412726432	4.31170015687185	4.4617961832198	4.30573344504419	4.73595742152138	4.34634699370544	4.3157147722663	4.49534759399181	4.45127555082876	4.73965447781628	4.33844436933875	4.57512919121534
+"P2RX4"	8.2451531569738	7.69806379823172	7.32762407271895	7.08039705748376	7.44417815933084	7.34396468234003	6.88277521250273	7.42118038628827	7.22197780997438	7.51794043266718	7.75431178596487	7.26468851219133	6.88055542745631	7.4992430924318	7.2439665980448	7.90109696193983	7.27796232473326	7.59179068951837	7.36304106768531	7.51419079963612	7.44456061344538
+"P2RX5"	6.96541188618961	7.54910228969555	8.01098422289985	7.57783465509348	7.99587426607531	7.36445662150525	7.3077444247307	7.04072648081992	7.92291342808684	7.57033510470948	6.92832866562255	7.50374992172517	7.66234519249653	7.048936356856	7.51762381669839	7.30314310471509	7.43626121318491	7.34604286386697	7.45322298224708	8.38987274724527	7.48026181231566
+"P2RX6"	5.54637243675169	5.73795849961571	5.8896172612695	5.77176287815778	5.77765311086614	5.56799922628406	5.66487215776834	5.55626050355792	5.86772568956566	6.19184725442968	5.77127192872887	6.11605505231798	5.77176287815778	5.77525316475793	5.75743883714143	6.08599730169997	5.82610609559004	5.69311162858908	5.37608428627703	6.32761500293428	6.0425794602509
+"P2RX7"	9.41007577603847	8.89287669283913	9.0033479574554	9.58407919191559	8.73474914572653	9.62350792583202	9.40727019314011	9.01162394175921	9.37696550912843	8.2286492106594	9.29468672673396	8.06076047052548	9.03612043531168	9.83091567405389	9.80903718251914	10.021527498289	9.03218892465761	10.528571586917	9.78666587517498	7.9931620965438	8.88009590421333
+"P2RY1"	6.29079601809376	6.37297316222641	6.6528473374998	6.11068822600963	5.88887964904134	4.22980510552477	6.98688692353768	6.13969233716086	5.71526505182296	4.87010641123445	6.90985111431802	5.30471020187208	5.28864888681155	5.79394081086189	5.43354037851597	6.65041431300651	5.37278965128332	6.19829256730491	6.03631324391237	5.84736048212794	4.73556154380723
+"P2RY10"	3.58186970448765	3.45366380359431	3.29520771899525	3.28333924823543	3.17181222008554	3.13978540703956	3.39058634495164	3.27111298181121	3.55401034130832	3.40839278126263	3.24597175761307	3.1360858661366	3.21343403707309	3.33326854632516	3.65653059714466	3.29662165728094	3.38985745817023	3.13790896490491	3.51387502943003	3.23805687458015	3.47009785471865
+"P2RY12"	6.46144710668575	7.62177375530546	6.197656875252	5.97189918607628	6.98333483069079	5.13738635387658	6.57537820649541	5.36713166528446	6.6908631259281	6.63778164636154	7.64824688634766	3.62693205411117	7.02771038350416	6.8626748663122	6.52090831160026	7.43225965508162	4.17645201451794	7.96378346602277	5.33581501039556	6.84893187184183	7.4759676540588
+"P2RY13"	7.36075011987878	7.42239678628198	6.16338232955149	5.20760181337558	6.25081786587446	4.65214713729978	6.32916215123976	6.16338232955149	5.89739309910813	6.1612872715196	6.60721390436341	4.84077000200647	5.71031646665418	6.89160437946737	5.6318277261597	7.13614418412589	4.84640520559547	7.07100017571992	5.53127938652732	6.69062971010404	6.06126835772012
+"P2RY14"	7.68721017609056	6.88395720992906	6.14302500900112	6.72429528104664	6.26562957102713	6.28102985549375	7.33588043357978	6.20460448433119	6.28729253034892	6.00670622707959	6.39487517988831	5.45809885312011	6.99091621329748	8.07759287073006	6.38750883584766	5.61269468582926	5.61228503005879	6.12587094932217	5.6343381979034	6.11466257638286	5.16581214662104
+"P2RY2"	5.39146197451249	4.99729363303895	5.04719717315696	5.07508829750431	5.07508829750431	5.33361507742305	5.25230151723459	5.69590263625062	4.97386305662913	5.29021354962977	4.87178155670733	4.99503957683826	5.17233803606166	5.10000304440032	5.1744978938507	4.79424028086988	5.04765023046619	4.85109562914244	5.07508829750431	4.99136736316275	5.07105745697592
+"P2RY4"	4.36369988459538	4.40847239661587	4.26669370390609	4.57986644715741	4.32309902414803	4.30073532272518	4.14605197096502	4.29407463847566	4.35794210178353	4.32409279476516	4.33431625252392	4.31440080840451	4.03531206053032	4.40827564418163	4.36663858455797	4.31321171661411	4.24867385865428	4.19482652717255	4.51918427919907	4.33431625252392	4.49903740265402
+"P2RY6"	5.58436158355837	5.6957520216842	5.17252600604381	5.43660923685555	5.29754608460805	5.64372325546358	5.48446962211695	6.1835874341844	5.29002764544294	5.49015153287984	5.64093460701202	5.48629746718528	5.59154724757406	5.73651623701627	5.48219978435537	5.593642276206	5.39588766888957	5.38319462309408	5.41040630161566	5.42329920091581	5.86752517044057
+"P3H1"	7.8443090041516	7.50748970024595	7.70613187478986	7.29600535031696	7.3804930566601	7.68844937791168	7.5585211326614	7.60250275207562	7.33310356126543	7.45646650777822	7.43932069790313	7.39806168383125	7.42299183449109	7.80371862892697	7.54447082716658	7.35130105825628	7.32662381335795	7.55844862330001	7.54629280678694	7.36872598003089	7.36989793448484
+"P3H2"	5.88167517188067	6.22571184225155	6.34274918866578	6.35283714140811	6.20957623071919	6.83384943407934	7.11728936309272	6.25547500976641	6.07854110773496	6.08790641651857	5.87182588913414	6.54073810546288	6.49835681824522	6.84237244971921	6.06720699826247	6.15138354321049	6.24657333877798	6.08801339199386	6.40382767411492	6.35474429094805	6.08499477570669
+"P3H3"	6.03032666299163	6.24386119879365	6.93196442792637	6.33245707631641	6.09691529743593	6.76095164787743	6.78603578455148	6.65951614061978	6.44462388154056	6.33913484829778	6.4135340452746	6.50258647104788	6.60024720655407	6.65544860306558	6.3643480768716	5.91356717860227	6.37480695455813	6.19019803932009	6.63425706217243	6.55718212728707	6.38160431644738
+"P3H4"	6.63261539409357	6.32129899218774	7.09039257701685	6.33498504477811	6.17673493343869	6.91401503464275	6.77015475387019	6.5446267149051	6.56046598339701	6.46998410689366	6.35754133196081	6.35324986531112	6.5447191344131	6.82577843716069	6.76393825425487	6.04474792704838	6.26401366096204	6.55153123998903	6.51721173326668	6.3484177062266	6.31443142906859
+"P4HA1"	8.20926974193154	7.95506812712423	7.81719228473997	8.70229433166155	7.90278109536281	7.56889143002267	9.130521528302	8.65633087633419	8.22770096614711	7.81565119071814	8.21851452132016	7.54814928430059	8.69401544470868	8.09399531339142	9.04308412342777	8.76833045379865	8.06637842963772	8.30438424789766	8.62574216143011	8.39813333348448	8.053197695142
+"P4HA2"	7.59797955489324	7.16365612508902	7.51482629524311	7.93515667799391	7.32069459781919	7.78887473582906	7.92773992187621	8.55346039605405	7.79776250770748	7.33756640837009	7.33664740456703	7.56228911186412	8.4802071476655	7.71553395329753	8.28914396790477	7.11816517552923	7.8673868065602	7.04253474614621	7.95980482040959	7.78655257735507	7.69371977210654
+"P4HA3"	6.61956426806531	6.60246061475125	6.85457749142026	6.5900548257363	6.4950413668226	6.93811125598975	6.85046557445931	6.63159200157504	6.44678603175016	6.56202790123092	6.31649887432054	6.71552513967856	6.77030608918242	7.12567679875042	6.53729014241285	6.78608400024011	6.48567522417239	6.41279292383032	6.47213614911502	6.66963396033944	6.52895572748575
+"P4HA3-AS1"	4.255727397313	4.34072652660262	4.32490964506985	4.43317021248575	4.385631862983	4.12680373092607	4.58779775377849	4.385631862983	4.35794210178353	4.56127710731978	4.3157687288828	4.58384362386929	4.41592860422877	4.59496762164551	4.28811339558514	4.16899830137421	4.5887611366358	4.18121154813946	4.70334168444429	4.34859677380294	4.49226283295859
+"P4HB"	8.92179746186931	7.9177733650002	6.8695241283701	7.80768560891833	7.89588498322837	7.85253128855039	8.10570296960611	7.94899569691858	7.6060015384574	8.42787867216522	8.40844121788451	8.3347794662919	7.780775161387	7.52445277878533	7.4737935432589	8.2494474352938	7.9177733650002	7.78561122173259	7.86338814691957	8.63829940275215	8.343988747777
+"P4HTM"	9.55254844257731	10.0113781715646	10.2926243873519	9.72229377920447	10.395816870242	10.0708887344451	9.26765218514602	9.92131107541016	10.0132484051362	10.2885602376765	9.78678373118117	10.2506440437358	9.74534565707408	9.57695461338196	9.73430863432002	9.72412937774509	10.1528601897287	10.3057587378549	9.9484517518282	10.5427860895168	10.2840833203307
+"PA2G4"	7.54363155484774	7.46889315459554	7.55255404141175	7.50077977484382	7.80008266080745	7.25297884372611	7.17189326348289	7.42751376852352	6.99733545643765	7.57053100132856	7.61846680625757	7.75713817164862	7.44387568054975	7.18208641557105	7.15418381141116	7.94695547703571	7.5398678224357	7.97813254213608	7.55042582121232	7.77093648403222	7.80424864438953
+"PA2G4P2"	4.90552058326257	4.65937046099858	4.80451795650808	4.84224938078205	5.00683521551803	5.23266087148775	4.92733782153295	5.12112759444394	4.80034306955918	4.61804435565582	5.02791164348572	4.64940862274164	4.51443088701805	4.80946464651474	4.80451795650808	4.68090610038749	4.7095930629535	4.7784378145075	4.66124087142173	4.74576994127925	4.74468441780283
+"PAAF1"	8.13284747039531	8.32923647748747	7.54984390020106	7.91095661408727	7.33121165022386	7.25807169126254	7.53323673445089	7.74135641278499	7.54017595054099	7.68883209374575	8.6728819663852	7.73423405921654	7.39028126133717	7.85570816512818	7.4507133800955	8.76231548712652	7.60490738676515	7.73225019370489	8.2821239060727	7.44014872368586	7.73119890473174
+"PABIR1"	7.75124798599267	7.77811326462784	7.82932945448174	7.54392726733593	8.1503029648848	7.3862734328064	7.66474675766496	7.72560752821177	7.83195099818112	8.13529620904377	7.4726091229263	7.5651495267127	7.48396749953483	7.52357069153951	7.59828113187835	7.98026552588193	7.58871555833108	8.12727060924112	7.70246244704594	8.16584987342761	7.786633805263
+"PABIR2"	6.10013139855347	5.59781336979839	5.10483910049769	5.73586417311183	5.46487026484316	5.97621403222415	5.52578342676612	5.44061319479109	5.24366878470752	5.43658020014045	5.80455865730397	5.32498907709372	5.16323668000574	5.44426150976769	4.90005828905686	6.22944701504701	5.55973291708874	6.30386183790887	5.50028854633657	5.42491958642765	5.34226512630879
+"PABIR3"	4.84439084688433	5.10584312635835	5.22881046499508	4.87968179322321	4.97078882060694	4.45503733336714	4.35558235649791	5.14691180805356	4.87968179322321	4.50684257159061	5.17565610692315	4.69878599455607	4.74628116553375	4.4183327052622	4.30837127538828	5.23965284222862	4.90297672074239	5.1452017183519	4.89341447179371	5.17821192445103	4.77061726366371
+"PABPC1"	5.28811456442003	5.2486356823197	5.99147023150462	5.59577104905048	6.12594749918695	6.09286935949221	5.26265897708434	5.72250821103738	5.22718455960188	5.23416225253413	5.44418972616747	5.50043303253043	5.38308076891755	5.05234512816062	5.33358936572871	5.35630479494608	5.42818826199436	6.28505266964484	5.55908330555849	5.53342055752566	5.41258181237878
+"PABPC1L"	6.46886950588064	5.67250917683941	5.95691805322982	5.60730747401636	5.44874549672667	6.3643480768716	5.32401921545334	5.71011156651643	5.3576853660336	5.49657244293154	5.43206293526948	4.98200908134609	5.21818178601664	5.92448650462419	5.39993917102755	5.30961555364437	5.18314388558228	5.69799398706691	5.60671554140584	5.49657244293154	5.46635496223245
+"PABPC1L2B"	6.10331828938702	7.11731822593925	7.66631267387309	7.24605396715388	7.84699108922758	6.58137794245017	5.97549521209135	6.89801011457172	7.59101587861781	7.60966206654455	6.443834933189	7.5617089090148	7.40602960011631	6.74626776796679	6.97064045924355	7.02400619420588	7.66395433235987	7.0934232581404	7.08405280369126	7.87253089029897	7.79939833531152
+"PABPC4"	8.84573093961962	8.58749372727164	8.54527379129503	8.24056946848141	8.33264551961816	8.2051076284817	8.58014162574294	8.62620922591658	8.59115577549323	8.47175025550102	8.59306937002259	8.27229532997245	8.35464367089967	8.45312485573566	8.64907063756665	8.55549519245984	8.6293789030068	8.75982929903375	8.60199731551125	8.61340472073194	8.46207922743174
+"PABPC4L"	3.78673988348343	3.81518572782132	4.02615060225279	3.59035006425724	3.8566003800222	3.86672348105423	3.71979470084257	3.94861800690322	3.87084896271104	3.72891928484757	3.77047938712934	3.68484467487063	3.64327152137968	3.74668829261006	3.68328106922799	3.88028657056602	3.63390971410896	3.45015762604982	3.71385659228065	3.96432456586207	3.51490196235466
+"PABPC5"	3.29812879490803	3.32464527497572	3.29759298015175	3.19974090533624	3.34344191967055	3.15661021599238	3.00808307272916	3.26675460992032	3.18404779816901	3.06545193533492	3.32548066082818	3.09747497875015	2.87859240380372	3.03561058286	3.2728515223063	3.24261422782343	3.01100071068679	3.15217146254209	3.36108000538627	2.98505997164701	2.86058333258099
+"PABPN1"	9.19746577490324	9.2144157011834	9.313976600006	9.35953603881368	9.03884795704747	9.33585069130268	8.37612507820494	9.11252765909138	9.06841086587106	8.97764358699781	9.40717101572438	9.05074360217233	9.35939709772155	9.18517336936114	9.12380463538506	9.42055950370502	9.11264746657981	9.24161700267702	9.20592501248048	9.00618498764727	8.96623024820417
+"PABPN1P1"	6.2517056221656	6.24990067815062	6.76150204857669	6.50562538675028	6.34347417527038	7.15304792141308	6.73640415250671	6.49922074304247	6.36766601971709	6.49922074304247	6.44612280671985	6.49911581985272	6.69755323073831	6.83955648507275	6.29615132120348	6.12241571347696	6.53125122045627	6.78580488134113	6.52079732873349	6.48396066462964	6.49345234452501
+"PACC1"	8.5883031924288	8.966568009175	8.83441513263638	8.47543965894274	8.53807406341615	8.67733777285246	8.06375666841972	8.3039051650806	7.64399682855802	7.93637912030621	9.23016922406934	8.09844402374202	7.88355345441636	8.17675239530415	8.24307270822506	10.4707048670296	8.21839484242666	10.2166905908032	8.19837776854227	7.98995144107238	8.04110584637125
+"PACRG"	6.90518980826805	6.41322767153654	6.9188868246367	6.32337388061963	6.83248616496226	6.50091455289286	5.49377754684928	6.62664071797985	6.14897309446969	6.8809702564005	6.6750283123938	6.57211625616677	5.91122232660985	6.08979668342931	5.92412283866625	6.27822566720591	6.35073766901708	6.52285194243286	6.07964904119253	6.75970241113507	6.21903986084726
+"PACRG-AS1"	4.61552486600255	4.77734072034761	4.49497619638741	4.57535646290634	4.58251464161383	4.6834720935549	4.61552486600255	4.44276203109364	4.533844264749	4.51628288822137	4.83383554491681	4.67133274611467	4.50280994443396	4.70705624523381	4.61552486600255	5.18629827829692	4.76449168325182	5.1805457763234	4.28819701133908	4.74767273068362	4.31493691037842
+"PACRG-AS2"	3.04385858196007	3.10271875687885	3.14604070085155	3.30942823105721	3.28703769404833	3.61057503318333	3.46656553455318	3.20657139808607	3.15571034874216	3.24300442038026	3.08883599524483	3.13184209069708	3.27831713109284	3.27079506695988	3.3941707799994	3.24885007767841	3.2371083959586	3.10220094544752	3.3024339101175	3.27420848537286	3.11907547079112
+"PACRG-AS3"	7.12115189278254	6.21037662736945	6.4463415414928	6.5900548257363	6.10650357160917	7.29055903583127	6.87797097987605	6.21077254600882	6.52379342331683	5.72229985014481	6.77638911076235	5.88120427056332	6.01303935679967	7.51010609900737	6.81571104721278	7.85571315737922	7.18748405065333	7.17271263096513	6.88490946728507	5.59104233631107	6.5900548257363
+"PACRGL"	6.99679875466555	7.12512704622617	6.81982006558068	6.72987707249792	7.22196140320201	5.99458123436876	6.46895545730603	6.88429005157321	6.93193539437146	7.0738172241243	7.43348950708541	7.14366546072259	6.47758701821026	6.13887002374113	5.62730982019383	7.565902515534	6.86573294082081	7.57271829246847	6.70837295708775	7.2255703012181	7.08550581634435
+"PACS1"	7.54105177796205	7.2024917923093	7.45791382782377	7.34848924359715	7.06538584337665	8.0364906005454	7.69982655494363	7.45945729103405	7.38686557587327	7.00871583306186	6.91164782662596	7.11371226441263	7.59930858017698	7.63425043570484	7.39476339649604	7.08830440602918	7.3305449316845	7.09713289155306	7.31983486011401	7.04300565058507	7.22434285234624
+"PACS2"	8.97723085890117	8.57263080491999	8.68016007146155	8.52447022283035	8.28301499568675	9.30517822809628	8.54102808815262	8.59677320652614	8.17257715076052	7.9579854181683	9.34788564129555	8.20468044903205	8.1545541837051	8.77379253208958	8.43327696179742	9.62750111739101	8.18963206987965	9.29766240203089	8.57906686539056	8.10513492622598	8.41897610754227
+"PACSIN1"	6.38227156744015	6.81133601246906	7.09809649106526	6.83742002303365	7.29248748641523	6.89563112571521	7.09809649106526	6.7654016811319	6.42537557321724	7.72638602493265	7.06961765824077	7.86437546996293	7.09809649106526	6.47757555644077	6.72179652681429	6.90295045432648	7.70807114624706	6.86463169122538	7.38235526256789	7.62001410719549	7.88509608671547
+"PACSIN2"	8.94577453778483	8.16539049202376	7.65646427883785	8.40412780307522	8.15988176207518	8.08991554304524	8.34423248603142	8.59940431137599	8.08770663387624	8.51145801737952	8.33271354094094	8.5347898377578	8.33770736405483	8.4901751574855	8.10023807973993	8.73599642234015	8.3771826260048	7.98925309170699	8.22219514298256	8.60064364459335	8.6942793657594
+"PACSIN3"	6.17414675809557	5.95823337828153	6.08274909667172	5.99882798404898	5.62393194096086	6.14526484044927	6.28941264296116	5.83190279256987	5.60108622596949	5.98039116636198	6.49118793684738	5.80089199563117	5.65124139932113	6.17876406278169	5.69492559245489	6.67683113014121	5.79995575434159	6.23319386267554	6.0382792129995	5.83127893085894	5.5941733389914
+"PAEP"	4.02564783079039	4.262417415189	4.05544616149335	4.34114482307897	4.11095426425999	4.50257533120823	4.31418161604108	4.010014465462	4.31426796253389	4.08858816628591	4.15867975541926	3.96550086066031	4.53955649989532	4.04902754501564	4.01841853222468	3.9763096848433	4.244997015786	4.00469379059507	4.29938893389525	3.96392878357214	4.16435561638608
+"PAF1"	8.39921595814621	7.98452187577249	8.57860883553573	7.97191997887972	8.18038503062523	8.49015911951889	8.09304108320019	8.03294726717418	7.88669649139917	8.11052819334295	8.25201848353325	8.14807135998042	7.95865723043221	7.85119590842293	8.03471626715225	8.32002223105342	7.97577662275274	8.65976293038722	7.74204663572292	8.23942262725527	8.09304108320019
+"PAFAH1B1"	8.7417099262197	9.35066506382365	7.94296665653945	8.70705356622594	9.38174448676502	7.6163913133729	8.10914654968271	9.22572507176788	8.34492990871998	9.80832442960302	9.33440579379689	9.69563781490329	8.40575815657012	7.91406571608329	8.15690540089787	9.93009094436414	9.4535761206809	9.54205446187314	9.14161791853757	9.39172283062165	10.090938838758
+"PAFAH1B2"	10.7084255668461	10.6392880286119	10.6564694375909	10.6365805218573	10.8059667342979	10.8659480421097	10.2337864557243	10.6019433644324	10.617673413708	10.9397793892967	10.7676710461962	10.9075459007671	10.4779774425547	10.434997337415	10.8722367669546	11.238294646156	10.802386670005	10.9688768690624	10.8552481743644	10.8730950050297	10.9050008773331
+"PAFAH1B2P2"	3.5540303915726	3.58813914029292	3.56652727070884	3.5732964287311	4.1269892737676	3.81774786427535	3.60477559366263	3.50217207793829	3.58548102111997	3.55471714337836	3.66260723578615	3.51145468088556	3.69410068073436	3.46174381711907	3.53785496653883	3.60803722027578	3.60307871872416	3.39039140842091	3.60307871872416	3.80017736339496	3.57891110301433
+"PAFAH1B3"	7.77077827668529	7.73504538422876	8.18223327417244	7.66693511381314	8.06654368794588	8.10590295586341	7.61698170559184	7.88625431918089	8.0612889443953	8.31633023829648	8.05997345655409	8.01506463927069	8.09572911535929	7.95313759049781	8.00918383957802	7.57315248043515	7.78791193825366	8.06631824050655	7.65197879245344	8.2206923524746	7.98841542400099
+"PAFAH2"	6.16432641772012	5.98457036184755	5.28590202937045	5.88263755924559	5.59380860022848	5.49886015380068	6.49224159805755	5.68599872842468	5.7473098074122	5.88843493721419	5.82287033003888	5.42069879157816	5.86714797285426	5.99081084419572	5.8046063198732	6.48737977943864	5.66880377128197	6.23304072421136	5.8668976310647	5.82697124166963	5.47625664937839
+"PAG1"	6.77435567881044	6.72095501913345	5.90468425324687	6.51347702337321	6.60054270539923	6.24195230580756	6.24443397539332	7.10954161544209	6.56734122672459	6.6181201794187	6.69058235251189	6.78455909971804	6.78582546469292	6.42451793178237	6.3643480768716	6.98892500882232	6.83070615210053	6.82900692829411	6.79484206243909	6.84276142310856	7.10958365941667
+"PAGE1"	4.31752258608838	4.54601887622279	4.64613061398237	4.71539629189165	4.41067532242378	4.43210105629054	4.74272569024402	4.48719581280948	4.73329323183008	4.79189667657402	4.64505051619716	4.64610907626727	4.75799280259008	4.78496167918024	4.53967453207246	4.49030317191883	4.54774025937486	4.42839265700411	4.66397590860435	4.61279370685662	4.76967751156322
+"PAGE4"	5.27314594955778	5.27314594955778	5.15497501124851	5.27470503449142	5.17492552279996	5.38717338692858	4.89782678794	5.3176725977535	5.32524514769745	5.20466572009577	5.09948483560251	5.33906006064002	5.40635713074153	5.47889850817701	5.36581110542383	5.12916508379091	5.22116800122856	5.06816891355057	5.30683619338629	5.33691139859507	5.14605893445156
+"PAGE5"	5.25461522499524	5.34649325451785	5.10413611087981	5.43449897785438	5.42866392966893	5.54387084600586	5.93041008747863	5.49900802006036	5.45124121372987	5.58242292263579	5.17668129312367	5.40410213745753	5.53147984400162	4.88615932441546	5.33042682937228	5.15235506706732	5.41071631660329	5.39415588805401	5.39096571044835	5.24336273804705	5.49768209222246
+"PAGR1"	6.49643433618749	6.33191703703273	6.85480683901098	6.41427423887361	6.5827591458602	7.07434096245699	6.47337869887694	6.20575630378437	6.73145716959471	6.46145577270901	6.68122302337158	6.30113502630828	6.62819970361027	6.83315621916047	6.30069792922929	6.38759155686096	6.20715612568794	6.59728978850515	6.14693726179918	5.93565744903606	6.24624496249475
+"PAH"	6.20964528581006	6.21498918310657	6.22086056569556	5.34432658666329	6.32107264953987	5.18665933172269	5.33776219201901	5.88390930230485	5.25255474757163	5.63330318939734	6.56935499820534	5.62006385295772	5.98540377746459	5.03501113297035	5.47566276065101	5.60307740428631	5.66528442836445	5.48198569145475	5.60038651104255	5.93191033092219	5.17955789789917
+"PAICS"	8.94810693397371	9.24348270032146	9.16611560725517	9.1410589474237	9.22037825611116	8.27702776506847	9.11518224600181	9.39122753328166	9.16611560725517	9.12641113002913	9.42119072304001	9.16865830928203	9.16611560725517	8.96832653423011	9.0957695399162	9.36175853763967	9.0153190993333	9.18422138902288	9.20798435311246	9.21410264762424	8.99337445092046
+"PAIP2"	10.3861013937887	10.3957007016422	9.75317921454249	10.2719223987741	10.5925578204103	9.45538872040289	10.0844399546112	10.5015797523226	10.1856870222106	10.8031770043789	10.5415278393263	10.533567699157	9.9140328167117	9.81272194402545	9.98932055682589	10.8317723343834	10.2632559039481	10.798075877025	10.5408075206791	10.6592506275563	10.6263447602871
+"PAIP2B"	10.0731650344153	9.5454360062134	9.26289221855045	9.68423463780389	9.00102149557081	10.2146876596098	10.5479419772115	9.53466754071754	8.67287268697722	8.22857707671981	9.82314042417788	8.87772722634832	9.31298715807102	10.1075273232164	9.28764932179057	10.0502650889692	9.26311182152331	10.2465376122568	9.77588738953361	8.19289479556776	9.44345435020665
+"PAK1"	5.15283814926832	6.0303684976108	6.06425657775857	5.56264047135338	7.46115225818516	5.05143928506334	4.72083029964895	5.65352726906253	5.96091262550206	7.32849245890723	5.50526579972341	7.28853805487333	5.48631039013089	4.79475120386122	5.21952896493316	6.5500329160027	6.8659027619674	6.714321483327	5.98772527153161	8.0247778066068	7.71856327836561
+"PAK2"	8.04250843829996	7.66701406437057	7.45565340399202	7.22796553233027	7.27404899181019	7.24742609632617	7.28847716285513	7.24233883871447	7.03506270600902	7.29117221017076	7.98004308674886	7.45372681769096	6.8322433230359	6.87663592969239	6.70376876847586	8.39070707793579	7.23046408405187	8.08254548109467	7.28693113315441	7.47980005479427	7.29758485405113
+"PAK3"	6.6907656346782	8.80430651923851	9.75831273143121	9.01518807684711	9.41716218273262	8.01552129135768	6.50995165361385	8.63639319197012	9.11574081767875	9.06903154609835	8.2699854192688	9.23055984413809	8.70985541216359	7.69101885509288	9.12632292011673	8.14995437792363	9.07937410369128	8.56169929634091	8.81792345679051	9.1960017600274	9.11200553003986
+"PAK4"	8.51585626755303	8.46015900507755	8.58903798490431	8.65930002654292	8.44637482333034	8.92955726998819	9.05571147485386	8.440554138037	8.47829407263734	8.42727798952311	8.45478511996521	8.48766154085141	8.69620242379611	8.97477780880506	8.50973611272273	8.47217190357639	8.37372038166941	8.42699417264921	8.31740612258472	8.52279791553252	8.27806116715212
+"PAK5"	6.76724729101675	7.66042535413409	7.92663115832148	7.55112667278336	7.73689664556117	7.36128907032859	7.18248741276275	7.47824239986812	7.89391075632938	7.22858334688161	7.1881231761322	7.50073104232962	7.89860237907183	7.53313614059314	8.2748497682832	6.40932453841169	7.41435051572056	7.42310803770775	7.48173254693565	7.3476826535525	7.35115155711679
+"PAK6-AS1"	4.1427539059477	4.13350468250879	4.41007774259325	4.14811380926961	4.10201841422077	4.0821107171584	4.43507311831883	4.10201841422077	3.82187680072865	4.15006244621525	4.08280539669816	4.19787095355937	3.9266695951697	4.26413324771268	4.09406646166556	3.91835763646294	3.99337435489042	3.55286164149636	4.07468174939188	4.15689962516332	4.21749257809528
+"PALB2"	7.02122066314664	6.82185569605643	7.32069459781919	6.8017954901238	6.87516929943854	6.57484755816431	6.75953244876945	6.35824515651254	6.93401253204269	6.83044889067191	6.92347093105779	6.39996885369009	6.62895288276244	6.82559304278329	6.82559304278329	6.9423770894076	6.24041771944069	7.39516607884144	6.85869577954989	6.83560598470379	6.80501571785137
+"PALD1"	9.17340824988716	7.95810480478392	7.9646369187563	7.79864687985545	7.84118778310609	8.54618312158665	8.47780205651832	7.97702543232046	7.89254381248969	7.71037017489299	7.84397140248293	7.21767674647374	8.02829056212069	8.65094921527161	7.80032321328468	7.80186336019748	7.47583908983886	8.04565928830423	7.87451127124121	8.19585129927933	8.00479240443224
+"PALLD"	10.4939921698334	9.05383027350317	8.84187116832229	9.25953350061111	8.74117937853371	7.88223869320835	9.79364287701711	10.3562593387019	8.88450591617708	8.5803946200783	9.6127897919024	8.98816101901104	8.9000987565621	8.94119675351956	8.9311776871537	8.11091481581142	8.853222285594	8.9269589405975	9.67382714596546	8.67304162510703	8.50253825807939
+"PALM"	10.8593091331632	10.5028509658274	10.5668531528871	10.7568852446552	10.2167517139186	10.4613561367711	10.9848809992828	10.6603093759185	10.7237778310062	10.434982359757	10.3378296425088	10.4407387563654	10.4789313976849	10.7613188551618	10.3637335318266	9.84272988084954	10.5561469302943	9.83381239832357	10.7232576932418	10.5231363178078	10.4240972618414
+"PALM2AKAP2"	8.70514762845142	7.82855003730023	8.11395924211656	7.75705127570003	8.66307487660156	8.68503120484067	6.97290908112905	8.21567633616397	7.54805474146077	7.96462917092784	8.02108002801461	8.3833405027274	7.74961494165962	7.47385200970612	7.81360538668216	7.78691510331782	8.06714499481483	8.52309975274169	7.50293217478502	8.04998822344808	8.35834012586954
+"PALMD"	7.98736646773797	6.71518831487829	6.29958101908576	6.23331437828054	6.74380813508758	6.74911173505308	6.73567635685342	7.07637200547968	6.31116881658762	6.53219510523137	6.99812199351741	6.23671287955589	6.86487317276986	7.28038744907823	6.62219700747283	6.40217843007224	6.0755540363065	6.81137631502775	6.54550236929291	7.1374826829295	6.88620358065917
+"PALS1"	7.69822461638582	7.58889268000623	6.47016779457129	7.40426723540697	7.59268161531897	7.34864698895393	7.55626249698379	7.83954403808193	7.06094461676614	7.43611989661494	7.81717506948465	7.36380277217423	7.10618061671727	7.23678734748899	7.21282667582351	8.0637287572653	7.31672154432526	8.22706107792682	7.60647779835953	6.98496276993549	7.46056034520064
+"PALS2"	6.22677227893464	4.76423474625727	5.05497694948843	5.04638599563283	5.46032623621925	4.434431868606	4.9288283931948	5.96709065955338	5.38850105178324	5.78003080624045	5.0417444077129	5.20051652384553	5.17531102246592	5.22209266910451	5.30879494111161	4.45098570805465	4.93700838554009	5.05497694948843	5.64469751794575	5.58795467125213	5.28395813824888
+"PAM"	9.42471866588436	9.50779329186769	9.8709507110434	9.55951010979714	9.73552608134321	8.80148540098093	8.34092556202412	9.55951010979714	9.66915738541333	9.84211955653023	9.33156964288432	9.57792027371468	9.63317934613925	9.16803649836462	9.39606926171432	8.9304913203883	9.87543261983569	9.14306775290339	9.56005770566923	10.1413300549911	9.82124126406781
+"PAMR1"	9.39304183744647	8.9753878647238	8.94243506750491	7.9965416675541	8.4878104941264	7.83009330682102	8.71971473588763	8.8916582226134	8.32111786479084	8.31412165521682	9.15561792219354	8.05626207360487	7.71029034935378	8.30088947046216	7.91165304895639	8.4227270455489	8.41861718051953	7.92936506745638	8.2947376291246	8.53243158503265	7.9509039554796
+"PAN2"	8.69216810314246	8.02440858544289	8.12411515426491	8.26306745094655	7.78948772912143	8.68735542657325	8.31343727280093	7.74913513362887	8.01401056645964	7.53343049332004	8.23616720309117	7.62544190666469	7.95246660412144	8.5080039719891	8.1697170848757	8.5800205494479	8.05011162728122	8.68872181488855	8.41638487463808	7.76785101738142	7.69980861206404
+"PAN3"	9.08444503600366	8.97409740158725	9.08213351616849	8.79130235294319	8.67810185745352	8.74973033670486	8.28576549103437	8.61273940605193	8.52289268912187	8.48805596159415	9.29582717523604	8.54752262842494	8.59426826330597	8.69887751802009	8.68017169752162	9.27437063711922	8.62829159674171	9.11545667645079	8.73283604227002	8.44765933265917	8.48384816904952
+"PAN3-AS1"	5.47235081411089	5.71541452206651	5.72788747723792	5.26884029075923	5.5941733389914	5.52989838610779	5.32658685418936	5.31117980865311	5.63679490846632	5.03412895991435	5.95737332683654	5.27793395816457	5.38080708283891	5.39415588805401	5.30468811583355	5.61980349519058	5.19719154705844	6.01010238024619	5.38080708283891	5.50149854570157	5.17857989045171
+"PANK1"	5.57644108688377	5.82810727937226	6.61509944422893	6.30798265467537	6.60634607702891	5.89535975096743	6.2278502271466	5.98426858900218	6.70526536564781	6.66998693098197	5.66726064789398	6.35327148360608	6.8359044520584	6.00787988315149	7.1060972370486	5.96026867037751	6.55654369684493	6.360983410742	6.47307970482166	6.76009697915684	6.91078699154411
+"PANK2"	8.63864787343961	8.84349633314358	9.38608787822374	8.76004584862863	9.23107016926269	8.63061776950706	8.44318304725317	8.5910553876816	9.01587888311902	9.16036709627872	8.76556451155548	8.81187153274466	9.05535475208933	8.61646812478026	9.16638287480072	8.66589400974441	8.85253541196955	9.11459149297862	8.77161625488	9.18792564944821	8.97304162298981
+"PANK2-AS1"	5.85780233595487	6.12669126722391	5.526229345852	6.30845828127119	5.46250920600421	5.37225679062756	6.04002324349003	5.81212180629323	6.21887791141997	5.73462661750658	6.20169400299664	5.78917254056074	6.34773944560635	6.40554093534916	6.25796161345581	6.23964367053485	5.85101382936444	5.72566226337485	6.40282774678941	5.71424535703184	5.94822607410663
+"PANK3"	7.05431537897466	6.99449778376093	6.81957702767132	6.95122465553779	7.69735821124794	7.01300213738134	6.50209194939697	7.19272175885842	7.14590846737999	7.22674393267293	7.01912860003728	7.47615463723792	7.09263769103233	6.60519871665759	6.77951080315846	7.06720371026539	7.15177415719641	7.57999054424517	7.00009242077221	7.5257544583092	7.17141101718548
+"PANTR1"	8.80360390571638	8.42740833245046	8.3994103109783	8.73512697809848	8.25268686166178	8.90265557658534	9.18161999474493	8.73478916012479	9.16404592283651	8.25542315869206	8.44196158094248	8.2838343523808	9.01543908323052	8.73348584960809	9.37195873780971	8.70951866859058	8.65044652762612	8.7568286697207	9.0391603537647	8.35338388207964	8.50820610475003
+"PANX1"	5.48521485874801	5.63451282722678	5.85518293306114	5.59494910173304	5.91536334384264	5.7718725249394	5.17791214276422	5.57111483743875	6.01951027302078	6.22994412903367	5.6691298285077	6.22649760944832	5.92400109066826	5.2671575677365	6.15146380816539	5.86219836836549	5.6087960652361	6.22635928077503	5.86219836836549	6.54839630189319	6.58683092660077
+"PANX2"	7.67453481526493	8.08469690069922	8.14202528037456	8.11545104106979	8.3624800802579	8.35159936729882	8.02207414302498	7.8678707601619	8.14128691248968	8.53844019231987	7.80997319879757	8.28979625705207	8.56208401431681	8.0614044907478	8.32318196270574	7.41307518069449	8.34082306054797	7.62896451037252	8.32446274088121	8.31477049159153	8.83922305457815
+"PANX3"	3.41058572585233	3.42894404616269	3.31990669364448	3.37429047714455	3.42055803080483	3.59806663422466	3.73399760340098	3.42002796936573	3.19813711071655	3.49872835864869	3.45115733203724	3.43492647768056	3.66805221066995	3.9923562866636	3.32110196824631	3.3135295114409	3.33147477236103	3.45115733203724	3.37429047714455	3.40930048765258	3.57027474870438
+"PAOX"	6.60692855998978	6.52254351408278	6.59724973752142	6.19802922278719	6.50794813498045	6.62362901772326	5.78524028625841	6.10237142073461	6.21863762110966	6.3679364134693	6.55664192885385	6.29013032314256	5.95297149462611	6.37167306368685	6.07672048020329	6.8120330707862	6.22192393294022	7.7386973238007	6.01606512912022	6.46499526525418	6.21348282215045
+"PAPLN"	8.7595849794242	6.99675303549495	7.62801607677696	6.97569194791182	6.74282660227778	5.26400503885461	7.57633802068061	7.65672829470328	6.80005458067239	6.57063266126331	7.40944284171757	6.93822136049139	6.01135269926062	6.5793184786918	6.62666752626276	6.40050048408924	7.2728858193321	6.76742874676169	6.97462132687096	6.79471519191868	6.07779047206482
+"PAPLN-AS1"	5.67365712381139	5.66665130619763	5.51521583996968	5.69743804760299	5.8692499132607	5.7662511083396	5.7662511083396	5.77421374230349	5.7662511083396	5.78144560525078	5.6396517068915	5.68413217453231	5.91951027852287	5.99037746141473	5.72529669758781	5.76283138619413	5.91951027852287	5.26133916256186	5.81196711375878	5.74640079266311	5.91737204847509
+"PAPOLA"	10.6586563656253	9.67397053780491	9.78789830441774	10.3062024857877	9.45983531262312	9.98597951876739	10.7725669026135	10.3175862772512	10.2668939867865	9.28487383333273	9.72681813211975	9.24504787614494	10.4668353077028	10.2147991094923	10.9371268216253	9.79859488532829	9.7587886032949	10.1240969660137	10.4288677107807	9.80721436280447	9.65833030064025
+"PAPOLA-DT"	4.28541194649511	4.40507131041883	4.34617846051301	4.30236919660636	4.50298234921753	4.39353508361521	4.56557448014672	4.29115299989593	4.43907156512154	4.46950389503321	4.41429075412282	4.34464038784043	4.61907716531796	4.52777098338619	4.41905688347331	4.37253480609131	4.28125882949395	4.51217374656769	4.41429075412282	4.32549509246423	4.59025547956267
+"PAPOLB"	3.71010742259849	3.5157254955785	3.63418836662919	3.5610066836156	3.58657035912302	3.73702615928854	3.70034397628044	3.61845254796997	3.79314581705427	3.30876330356484	3.31004217326611	3.54927981900502	3.66671135428045	3.64486695175319	3.73791140183532	3.58657035912302	3.61571058467446	3.32266360852273	3.35181747935594	3.46706435558193	3.58830735145546
+"PAPOLG"	6.81781552240492	6.88346947538083	6.9793665167807	7.07104532720372	6.78982568731717	6.48031556155173	6.17302117812332	7.05431537897466	7.25524796760881	6.53503526034808	6.84914648052151	6.85595378300582	7.280187224377	6.51637366551177	7.1685543840208	6.83814005450173	7.09480427941692	7.07114210821033	7.05271971729375	6.67871941135924	7.0825937153413
+"PAPPA"	5.23993408440651	5.06107077825544	5.44156272037718	5.60412835661492	5.1696726074671	5.66490269476438	6.08397849941798	5.28096446692815	5.49436613658374	5.46049976254501	5.52714815326313	5.4911060605972	5.98627823841348	5.83040038864214	5.6350467625785	5.35182045179339	5.47659287060656	5.33170837628897	5.58745507518598	5.0302215249403	5.43604477956549
+"PAPPA2"	5.57444771678173	5.73971809950586	5.87569481272512	5.9951068270877	5.80458837816612	5.42635602554218	5.91672588222086	5.71098316175924	6.00990179220662	5.94425937558353	5.62454617225219	5.93173236662448	5.95554195589732	5.85926589350857	5.73845025203549	5.88451339006132	6.11297152940727	5.45124121372987	5.67361713271461	5.75418703831401	5.94620541816283
+"PAPSS1"	10.372802840643	10.6381284265638	10.8647146671742	10.664389226979	11.0087281125793	11.0580478497037	9.71591497496633	10.385631578019	10.688320645303	10.770731520453	10.6718649720963	10.664389226979	10.4088474002632	10.458638009969	10.664389226979	10.9495619943599	10.6315324683122	11.0572974549791	10.6966627103418	10.5610891556383	10.4623851897583
+"PAPSS2"	9.45449955188946	7.32986771421894	7.43997792861634	7.67713982923549	7.66573099296988	8.87964315393272	7.73670938975517	7.79251512714224	7.17064260457466	7.80672785227293	7.0020825621613	7.51038205923495	8.36012181943821	8.37916575897745	7.35053801928879	6.56217328599494	7.56831730932381	7.43413106522776	7.53748129436027	7.86665546021923	7.47436831189592
+"PAQR3"	7.13257821085554	7.48769782194161	7.58363997781035	7.93218104619257	7.81230049427467	7.56836006596397	6.65163431533962	7.72973452892446	7.80825706959042	7.43460823985976	7.443214241686	7.03608799784243	7.73281768737389	6.96252297261784	8.28755039317046	7.51636011388206	7.34878228884311	7.71764076704752	7.64614347173907	6.82877920770209	7.2435831510626
+"PAQR4"	8.66687478571328	8.85557390398092	8.72274597694628	8.47450636267303	8.52323444630417	9.18820177376537	8.48166002787589	8.35304030725934	8.23484532042433	8.31787092226153	9.33355004965302	8.47398417185685	8.3236596331044	8.49017114834113	8.32993156207443	9.76488173335252	8.57569301852375	9.5397905766154	8.52120599966815	8.43107538357703	8.51270127586717
+"PAQR5"	3.49846803841315	3.30080261327547	3.3553736390834	3.30450949759227	3.16221090373798	3.59626591244569	4.08148806776797	3.39718900084334	3.79174292779583	3.55300538126265	3.2101053067896	3.37798760935643	3.76544434660292	3.67711340255908	3.46626640837823	3.13326860454434	3.70714634784826	3.41611073263385	3.43764047127727	3.57645757308877	3.56483902049515
+"PAQR6"	11.1439665963598	11.4301753842946	11.3678230597087	11.1674737057067	10.6983418264912	10.6954426895901	11.1442161224857	11.116242101647	10.3921706331802	10.2123272067404	11.79321897922	10.6955857695796	10.6960340079875	11.1402148291194	10.3463952128921	12.077580767428	10.4593696053131	11.5255761547648	10.9215843501622	10.3451627633925	11.4717699882331
+"PAQR7"	6.09128285365787	6.110621284336	6.45640655648192	6.1361997547545	6.04627031334969	6.37219432480843	6.28779177264842	6.1361997547545	6.03093685584645	6.01603915603037	6.06189428556861	6.15573536755346	6.12625307163307	6.2812151102832	6.25296301303528	6.1361997547545	5.89842023016934	6.16329239447911	6.11954144119623	6.21195057086018	6.12073354500722
+"PAQR8"	10.3713855524403	10.2878507138098	9.22359147121663	9.9946985663811	9.38370586855384	9.09043532879951	10.2562159036421	9.62874534957498	9.39736243448403	9.41754592216611	10.1074047742262	9.40480430936147	8.72854532431501	9.47464402139118	9.49305292982509	10.7813538976297	9.83071317143239	10.784524535782	10.2542187396006	9.43259777798514	9.46717135572101
+"PAQR9"	4.03324312522304	4.55642659436312	4.88352855169377	4.61115568667219	5.1716869876303	4.59207063164378	4.49866294778765	4.53582545072878	4.6773882628942	4.73554607404578	4.31249366105288	4.51311474834723	4.69652101596061	4.34127719860189	4.98083155622475	4.45535819534091	4.54832026887847	4.6526319431709	4.34634699370544	4.81384829858806	4.96940135579324
+"PARD3"	9.20122157145978	7.16071152134291	7.50934068001224	7.84217948916242	6.99309794779468	7.47114426859972	8.53622472168476	8.63283772097546	7.76145850136324	7.05006945724992	7.44137109000068	7.27113656523441	7.72802581311331	8.11627202286364	8.03410445905581	6.80598875232205	7.5172198967385	7.50470324585089	7.73465480946883	7.72471797101642	6.61901038390953
+"PARD3-DT"	3.72075897904412	3.65603849102718	3.62435009454812	3.48385260439443	3.59751075466375	3.34215571292522	3.86163458292835	3.58552361011565	3.38171359597837	3.64081838369096	3.33996959734228	3.46171414884444	3.46107284345689	3.57796026752741	3.32203056168097	3.55956654234031	3.29006647125807	3.77083024934859	3.64916253851932	3.63933694973401	3.51517053555368
+"PARD3B"	8.05792191956339	6.66361214761722	6.81204953741935	6.72889921063412	6.58102138232873	6.3905595187772	7.52122993300206	7.24613751343294	6.54138361488595	6.43311018201911	7.29134709724501	6.2191488982664	6.65637546874383	7.34234079677198	6.78953578471793	6.91628478769895	6.41156891181149	6.81660057870538	6.56197236447677	6.66135988046287	6.30207413163751
+"PARD6A"	8.12360848478376	8.27144131354519	8.58870014942203	8.26955224511414	8.33138890831983	8.43973775424892	8.39347837807559	8.12290433701154	8.51827500638555	8.45847094783818	8.14394748659802	8.40090554287235	8.64311812034038	8.57678845779884	8.69462499622197	8.22082018385542	8.25126798391949	8.19519324639568	8.48535673140026	8.66651146544788	8.55658387700595
+"PARD6B"	3.80914819837234	3.43561657898329	3.62890770016441	3.6736595428497	3.70356137269092	3.34876834997407	3.50254023795397	3.26656645600769	3.41655519405284	3.28855983218507	3.52228409612908	3.27169441448598	3.72062969905709	3.46788151603843	3.62736573359549	3.45443074377382	3.50117372901666	3.85510759877011	3.61978092418598	3.34527470263476	3.45925810290102
+"PARD6G"	4.89173463347289	5.00222837993256	5.16875506138533	4.90780255712904	4.99303800103532	5.2045797667406	5.89397024199791	5.15698842520724	5.36198823223611	4.95069169940493	5.14762809209655	5.10383044231329	5.50076182085259	5.20895228489071	5.45998203604331	4.91908168224524	5.3086851442925	5.14926179017207	5.18622090103241	5.04631367108923	5.32262086814451
+"PARD6G-AS1"	5.55092345390058	5.87269381617234	5.46966763318747	6.10177463461674	5.82287033003888	5.44061319479109	5.51096849852386	5.6956886421029	5.99566600723692	5.92310767905227	5.49525977820794	5.79877169286569	6.18654423472071	5.85912847685215	5.82287033003888	5.92715085408437	6.05779260003825	5.37839788252688	5.90452237776036	5.82287033003888	5.84205020257485
+"PARG"	6.89431451881217	6.98627032265439	7.29750796546184	7.04949159832465	7.17481905422871	6.8460154079776	6.68736373977599	6.94339721682076	7.06717999913554	7.15768879401515	6.93326533953962	7.0104225874389	6.91819206824092	7.06717999913554	7.02922577794754	7.22169750705032	7.32753414824478	7.3091630478768	6.96597137152451	7.44614925460347	7.27737891737435
+"PARK7"	11.8286584105693	11.5619795521628	11.7815116751732	11.5913462294605	11.7832767370066	11.4699369144964	11.6768413016785	11.6867040541188	11.8884587384472	11.9313196853031	11.5968585164909	11.635268178506	11.6768413016785	11.6768413016785	11.7797704662972	11.6491840633034	11.4620704214444	11.7222314385896	11.7116629898358	11.987452305575	11.5934393319565
+"PARM1"	6.59417417114362	8.44356095966845	9.41525124537063	8.36655903211215	8.46572301525485	6.98826930766894	6.51010876614682	8.29605549157044	8.80317251229382	8.89757588067371	7.36593678340931	9.29380394578921	7.87144885748301	6.74574797429681	8.1189132934057	8.15793334618804	8.94197914558844	8.36238815402765	8.64748043154225	9.76934087347102	8.83261583578338
+"PARM1-AS1"	4.74306053591912	5.05885230286697	4.86558540741376	4.9049467151078	5.19443554351243	4.66396787648306	4.95932369425081	5.01814521483418	5.16130409575204	4.86369048026763	4.83851391392687	4.84754123261654	4.69065845663023	5.00890116169918	4.87768985981457	5.30143279189318	5.02959669980291	4.56314710196487	4.93493749480793	4.92152585212415	4.86039565950878
+"PARP1"	9.06713701611486	9.10386682586742	9.00644285843228	9.00208455407692	9.0358511649524	8.82858083412461	9.17254995472362	9.0326500659884	8.87988027760221	8.9981838445344	9.44036709613136	8.89903322455623	8.95830551585573	8.98460031227859	9.01417953487323	9.57266451766252	8.9895335068495	9.5973602236282	9.04115436704178	9.10310833671798	8.97101362606277
+"PARP10"	7.70738877429586	7.41879986949661	7.43182192605932	7.41115745795484	7.13708936717519	7.7244974503698	7.92399729654685	7.4233292669895	7.33676645475933	7.06677129192313	7.584669837776	7.15359132156455	7.43394319232702	7.70871365493073	7.37922505096943	7.4611111249011	7.10983123877158	7.61143453950606	7.41038425293629	7.29069295694396	7.27155069422463
+"PARP11"	6.18026397973414	5.91842249480163	6.39450024441863	6.51667365370134	5.89708195618327	6.65814008561867	6.09230579975753	6.45344779397232	6.50759416153416	5.8688591317799	6.04670736749587	5.77114119049504	6.74364099910543	7.15233616438659	6.88388170087791	5.5927933481302	5.57527393362563	5.69802078526266	6.41841936355742	5.85483160232669	5.50322532799427
+"PARP11-AS1"	5.49900282334945	5.58344816475102	6.04999626883888	5.86492007524246	5.80410799296908	6.0925496750121	5.95758322485637	5.79366825225243	5.8309201120179	5.82767518346872	5.52944172867282	5.82767518346872	6.06370660566577	5.93664538877816	6.03885401570752	5.6235606557276	5.86060902388709	5.48260246072856	5.89446953805907	5.71104273593596	5.66332913036167
+"PARP12"	7.52128687738523	6.56916867574866	6.43970817544079	6.04580264292317	6.38389896668084	7.05471449147573	6.49598498469434	6.68483119545479	5.96794229169307	6.42561368099274	6.97416310591905	5.83141912865133	6.05739431619901	6.80442272659577	6.32676677495867	6.74483761271542	6.03156868380456	7.37390830075551	6.22528175453793	6.63997541650193	6.47338785785611
+"PARP14"	8.99143512330973	7.76954217032171	7.38226973419171	7.39020492946103	7.25547380102936	8.21530007423182	7.82976876081538	8.44541618867013	7.18106898844979	7.11061856770218	7.54225419248323	7.00250707052755	7.47856793625364	8.05391227693281	7.26003045160086	7.34149349636047	7.18637545646055	7.69839754731534	7.16903184016095	7.7031360958079	7.73513949187963
+"PARP15"	3.28746345427581	3.0768461069553	3.52796148260385	2.96690639230696	3.25225396164358	3.21298117002204	3.359356080595	3.26070265579946	3.24304977889459	3.16743887494968	2.9782241561375	3.26230872112325	3.31792694852906	3.29165868642425	3.12893596941077	3.04182141566739	3.04543060447808	3.27915245569858	3.3372921659172	3.44240776860461	3.2662229114427
+"PARP16"	7.50292779854522	7.50205881478108	7.50292779854522	7.24708137443869	7.50292779854522	7.73068273133537	7.62181291831933	7.65692575905247	7.40900983993266	7.41117712756932	7.68612992993927	7.60932778953553	7.59999640749478	7.62181291831933	7.5964252322882	7.50292779854522	7.46554229780075	7.50292779854522	7.40228127582013	7.37950553174495	7.43214387472229
+"PARP3"	6.90729642901989	7.19731004627831	7.04778062217858	6.95779554464612	7.1175138573733	6.67874563893534	7.04590902396659	6.85276455894109	6.3573934318468	7.30244278071743	6.97152727348176	6.92627852975818	6.96725085273104	7.13408704119436	6.77664053660877	7.12205607168312	6.79387634570757	7.14010106234666	6.86946185065212	6.78206430457926	6.91367115273142
+"PARP6"	7.78747118861797	7.71951218007259	7.53036192393417	7.48803248520495	7.16763816548864	7.31983486011401	7.57627724524993	7.26756190373201	7.12214193350319	7.05317694733986	8.62939942103012	7.19420509976202	7.03750011927901	7.70244885846624	7.36444364432697	8.30757905595126	7.22039060761297	8.14305550880768	7.58943473279703	7.07598613353578	6.745298311568
+"PARP8"	6.70655665509147	7.52315436561647	8.11608675615907	7.57588606934516	7.66130793590797	6.998416439853	6.55466044200845	7.06488938074234	7.42502444689398	7.29184659109968	6.7727047444929	7.44969045385057	7.37498124108648	7.04029151883567	7.07382453951793	7.07630592395661	7.57585516291137	7.21158990751094	7.21553459191859	7.63176548692526	7.36616805304169
+"PARP9"	8.55609128538337	7.58317826808192	6.84301830669751	7.40121805623009	7.13596112228464	7.89860237907183	7.61352402184069	8.44303505160283	7.15040407321717	7.35981576165906	8.00642761762303	7.44297070078866	7.50742334201987	7.7444184805759	7.22464115287858	7.49495211114579	7.00983089245677	7.96166392088419	7.2872094465149	7.50742334201987	7.8050516399375
+"PARPBP"	3.40710154962111	3.31442957000973	3.41868002880048	3.19974090533624	3.41444625592117	3.4921179441779	3.73340106278356	3.26023651373308	3.30877400280229	3.30991434003068	3.24767279134735	3.04498278485153	3.28934434026713	3.31598702401921	3.0484803434182	3.46323910225918	3.17231064832628	3.71944685806819	3.38590462589057	3.31598702401921	3.37418846045653
+"PARS2"	6.56777760043105	6.47684328630466	6.47749183073657	6.36102952290857	6.64831412171552	6.42437215084564	6.60891968745209	6.02254022481436	6.46964488619953	6.23224070979911	6.48447676121654	5.83531887938048	6.36102952290857	6.47743935970551	6.12858117481216	6.59559107318429	6.19448620034442	6.46493576523408	6.34235596150658	6.51506887629342	6.19260348801983
+"PART1"	6.52813120898041	7.36233345630115	8.44907560840621	7.51683711124339	8.22053823848378	7.28348298823103	6.81597932868526	7.05571596362496	7.89919876722973	7.89386794455009	6.71459035912273	8.0830427850722	7.44733062040791	6.70116042726408	8.19235297296679	7.29957650116137	8.14851491218777	7.43507627291899	7.85134656025497	8.6305393982942	8.18083491907727
+"PARTICL"	6.64188210616937	6.83770611195119	7.21808814772425	6.99144666845894	7.23436865708209	6.95797412850095	6.88074194248522	6.78178269765137	7.08171449529841	7.24124816985422	6.94800308929425	7.18016222697435	7.02771038350416	6.95018712342114	6.99671634194712	6.74356298711901	6.95907853844613	7.14966337007815	6.96503854473262	6.99795783530529	6.96842628804574
+"PARVA"	7.73389326824692	7.08550581634435	6.73669835959826	7.11948325181031	7.11855246536121	6.67403960047468	7.44001972492736	7.52771099244633	7.36702843919239	7.55308549262855	6.77742762847343	6.90703256566235	7.23039468790034	7.20743097512729	6.75708642546491	6.31727527377317	7.08851426105111	6.34829938838439	7.16598304627313	7.43186973789034	7.03821788462353
+"PARVB"	7.33096713163088	6.38797454867091	6.59452885923594	6.33443329704889	6.81008603461803	7.62557302980172	6.73849819778029	6.05954899534639	6.41452645817376	6.90361919699932	6.15644539799526	6.95427373999169	6.35961718406133	6.8786590023246	6.593085971992	6.43499892176565	6.72557161819348	6.37248446581064	6.26296966014899	7.25107991733854	6.79873213112095
+"PARVG"	7.3596413247136	6.43894517034184	5.87974272841236	6.43315898439031	6.00105560454712	6.20303318679304	6.43294172161908	6.63568766014331	6.24299429473832	6.38170202627808	6.32889491394042	6.14645704220952	6.28550491951217	6.90930301051898	6.84057862502067	6.53648216005877	6.23321728940978	6.1549119376075	6.75189014627361	6.95494189265261	6.98402231910902
+"PASD1"	4.44458620878633	4.56209243604813	4.52383940038212	4.61552486600255	4.30665211091086	4.54226915495759	4.57545655550588	4.46691356795493	4.57263155668783	4.37133546730136	4.24464562841233	4.4384960110072	4.5006570817532	4.83177176022992	4.26950968789447	4.5779201327484	4.39008349688004	4.29014502872938	4.49228129741952	4.51474200461976	4.40635390484247
+"PASK"	7.30557471563855	7.43204486539744	7.69563537729563	7.5204491980999	7.20978288416792	7.56483122423134	7.21304996025443	7.28709565697027	7.58684949267764	7.02985829694756	6.78208832655485	6.963568608936	7.7904377455985	7.76151182633284	7.88556207133387	6.51933633892081	7.14992133490172	7.1110083195757	7.29173765892494	7.01714163905033	7.18538659625918
+"PATE1"	4.89843555732478	4.80793477563014	4.50260429220157	5.03315377930209	4.62510704956652	4.76761353285676	4.7805310894259	4.66341436458977	4.98613299968667	4.88217766213315	4.94958827970687	4.89856024058555	5.08209523014032	4.83859116333077	5.04905427940976	4.63393995641037	4.64333092864971	4.59111987589673	5.00471912472431	4.6758436347384	4.94360268930797
+"PATE2"	4.79456672524402	4.89065156625526	4.93244255352613	4.99950468644332	5.10654988895869	5.0332724527725	4.99553742876089	4.71171928574103	4.72817540243047	5.02542372554544	4.83572143656328	5.14023519190731	5.01927668871185	4.93161374504541	5.03877893692944	5.09371337620075	4.81989085533639	4.67496230018145	5.01322704915187	5.02655258322487	5.02080662760613
+"PATJ"	4.72083029964895	4.89130318223135	5.0725608921053	4.57018250120868	4.8153666667419	4.4005168704516	4.59824655202246	5.02568439006414	4.65318208724042	5.35613241605432	5.05640377087201	4.57682325383479	5.22498607599591	4.39526419268856	4.48323523571175	4.57616056308765	4.47347307482398	5.08439565939294	5.01289905974348	5.17441783640055	4.18898037765028
+"PATL1"	8.08728188736708	7.93927146430328	7.40174440554334	7.42631605673944	7.90798014539563	7.69437694396641	7.88257923184334	7.75662147473707	7.36669700071953	7.50080677204089	7.84970398120889	7.57671239599402	7.60990954366682	7.65373038588082	7.12249715623604	8.35525757112102	7.84444972213292	8.05963953516635	7.76745395558668	7.77206467369686	7.91178528339783
+"PATL2"	5.03181822965538	4.87131240831317	5.17343642076276	4.98169884537846	4.94545988818027	5.23337918493769	5.14695011323841	4.66924229673123	4.92507171996702	4.96538223298471	4.86218067510907	4.86612683741736	4.9755375291605	5.07090398558498	4.77692615881607	4.91013920984382	4.93959626950135	4.5053898248416	4.97946417045872	4.66077553134221	5.09071840063594
+"PATZ1"	7.92343882025602	7.57499546893035	8.15792064563797	7.30943552355137	7.61973876761459	7.623836505537	7.90028799651733	7.83006571709839	7.43867848179414	7.37618186743567	8.11433650155854	7.45590865147508	7.41255423088018	7.56431490656557	7.2049814717246	8.17753113805684	7.24845364215115	8.44868834627186	7.1945777717358	7.65143733053403	7.08366834889369
+"PAWR"	7.33077023161557	6.3484177062266	6.18147351023272	6.25474762785383	5.44377875408089	6.23628675095933	5.99710037440526	6.80125459971822	5.75999274188423	6.79468053656057	7.27616385773236	6.13434898784708	6.02966309476701	6.219315017706	6.07854110773496	6.39624715225475	5.15320322837779	5.83892443821939	6.11721241900659	6.65707181797628	5.86437927148866
+"PAX1"	4.87746943897084	4.90111075667034	4.82797497554128	5.02926793582949	5.07449973564905	5.14054191789671	5.22643059114753	4.61738986277418	4.83851391392687	4.76968755238661	4.54634576775666	5.12965275558856	4.86277947417934	4.73180707193092	4.64431546885158	4.79744951137995	4.83851391392687	4.74696426887258	5.00159797587245	4.80122841419504	4.90678311338322
+"PAX2"	5.07135138584575	5.20819964996157	5.19524737759322	5.37716907954685	5.10443174834205	5.18450430947437	5.17687113763502	5.22139909886247	5.5612799982253	5.2881610580079	5.28896318996899	5.33369824393228	5.67647986798165	5.32306025249061	5.29045736321971	5.49300514669025	5.31302725959109	5.29045736321971	5.4899314587412	5.05410502142094	5.35667411736158
+"PAX3"	4.10753393943709	4.2700191152842	4.3655658665655	4.561081013202	4.46374288869966	4.80266373912795	4.8598437635519	4.51874418153795	4.58869971507119	4.48363988589895	4.31489588974962	4.4952047004087	4.891431597517	4.74313600026058	4.35093817262787	4.55301172125537	4.48359124573339	4.34505669081917	4.50646486183543	4.44592492592385	4.8059348319456
+"PAX4"	5.75696719154964	5.71656556366923	5.73062032018008	6.05862705528104	5.58955519582963	5.84164800685493	6.20723994311398	5.77456775807482	5.89890681984685	5.87275755679131	5.56205293010341	5.88619549445643	5.95962064853523	6.06232893616733	5.72336896844624	5.74440812928911	5.7657631039906	5.4576392394046	5.91963922902537	5.78037045111206	5.91707503867281
+"PAX5"	6.35012240812863	6.34988430179864	6.54043202024777	6.50562538675028	6.33901576415245	6.94965010583686	6.94481875946845	6.50562538675028	6.63560527270265	6.53015081132458	6.24926155072114	6.63444250462348	6.70180387221783	6.80782574031959	6.49269842127777	6.14744267062141	6.39973699402231	6.20953842663371	6.64401025452842	6.45528514129421	6.39895934115484
+"PAX6"	7.36924802331788	6.52609365704281	6.29747944707701	6.59229511946528	6.2112977794407	4.72189245429373	6.78755373263775	7.15997414899073	6.84354617109058	5.93296659637626	7.05741336596542	5.62462988098707	6.42936577053898	6.06371132009383	6.63238112057979	6.0414945543521	6.17525728018634	6.01399713809459	6.3953136670158	5.58375193532448	5.08802752455546
+"PAX7"	4.48946574694453	5.07495783101216	5.29223556822246	4.7619481712689	5.19258735913729	4.60956577975778	4.67212088931571	4.67455112156912	5.17181054604292	5.37104463988474	4.2405045100673	4.91940366755642	5.05234216449856	4.56683897778512	4.93019645756138	4.58767368567298	5.45950381869418	4.70085398428466	4.84139037235947	6.07392600184121	4.95957083636646
+"PAX8"	6.25321787537104	6.30584481225142	6.43875337218941	6.80998076888051	6.32725339826901	6.61465656809259	6.79207297744403	6.34532190300057	6.67115913901803	6.40975451254829	6.20371301094941	6.35094485766535	6.56801038656517	6.67445251913767	6.370448998851	6.13796732803448	6.58565572563992	5.93677191233105	6.63291107424417	6.7907772780761	6.5680621291005
+"PAX8-AS1"	7.31557711749351	6.41226137178476	7.02761638221257	7.63494185706303	7.07637200547968	7.63855469978903	7.22272251930876	5.96098083054152	7.47132292621441	6.0023008716952	5.7729030532017	6.88353279011975	6.7457502902698	6.97766079758044	6.12902206292177	6.78859276118217	7.65110187515407	7.25810479437311	7.74225560830507	8.0939041412847	6.48347755922589
+"PAX9"	4.49497619638741	4.77256831600071	4.50232419895535	4.85992294497672	4.96930400552407	4.83465950267236	5.25872694307273	4.69459388975384	4.92055705364057	4.57512919121534	4.4639965426867	4.9636164763771	4.75069160127539	5.01813176129189	4.7415017933828	4.72316439157136	4.80548155529648	4.32199316534946	4.85992294497672	4.96116690674148	4.80419531992814
+"PAXBP1"	8.91991077122828	8.73854061894543	8.56323297579884	8.49368389085092	8.51703725767207	8.53100416118503	8.22957028315317	8.86636657646684	8.60367053702828	8.33028775204726	9.04329465410994	8.55077100046599	8.29357961237471	8.34143229551535	8.8024837352132	9.28673689180478	8.66088266077301	9.52006671707057	8.5513899795997	8.51704545517279	8.52843149492429
+"PAXBP1-AS1"	6.77939692225878	6.46015382441782	6.19816045234532	5.3505353695194	6.25856890174706	5.83917458566393	5.13554635189495	5.35705432089004	5.45124121372987	5.83917458566393	6.76800831905037	5.83917458566393	4.86215704715973	5.95702421484992	5.07524633613956	7.05560105616624	5.33264239649171	6.55891376176402	5.509548999339	5.63068456469913	5.83917458566393
+"PAXIP1"	6.87755962565781	7.04675414120222	7.18398913107618	6.68694642482785	6.81747004339958	6.54607612137012	6.67423729855167	6.60339399377278	6.77034905862092	6.77034905862092	6.96864440864226	6.3775604326207	6.83456409987211	6.74510156206816	6.90906549786244	7.08604690129263	6.4051966891172	7.52211571537942	6.65123999612731	6.78938011078295	6.79900829937012
+"PAXIP1-AS2"	6.42124263343898	6.02364427017177	5.17642692414311	5.40905471206867	5.1536653677227	5.15421464215208	5.80704814905133	5.89708195618327	5.84576918457509	5.69517966364961	5.83095606495021	5.16528120512505	5.50573534635048	5.5390077417521	5.20762652407655	5.62607096527342	5.53645596953123	5.37963899378618	6.05012646128657	5.68120195723525	5.3378496414067
+"PAXIP1-DT"	6.94622189483803	7.26355381599449	7.67891053483165	6.96033274288609	7.29304816936104	7.23842109147137	6.72552480019794	7.10958365941667	6.92160677281807	7.19552029575456	7.60952184584576	7.55529025659929	6.83258143005752	7.08949440752419	7.28181509451982	7.35895055000296	7.12839307838671	8.00743056355917	7.01661116399222	6.8745061725166	7.02181423171617
+"PAXX"	8.29295917751464	7.82173707173643	8.12337721777	8.0459382859019	7.75553111548045	8.35443512044735	8.40493132566097	7.99822741119584	7.95023522792609	7.95205401077074	8.11073678960385	7.80773177378464	7.8584743509727	8.28715883932543	8.25885506977295	7.90238408144243	7.73550173922626	8.21182060585498	8.0459382859019	7.94374174607503	7.93561141634455
+"PBDC1"	6.37474763262543	6.13432242286141	5.67116385559534	6.14505941677971	6.46077154347458	6.74432175681626	5.88816652137332	6.40774135995378	5.93957096939208	6.37597512361054	6.11547316798043	6.15526848535109	6.06290051764987	5.75137967351152	5.9170515540856	6.07125846694508	5.9170515540856	6.63714374748381	5.79470495805607	6.68276912209717	6.28827035306175
+"PBK"	3.25309811826045	3.34257283804821	3.16971581817917	3.29339124156832	3.35619770248069	3.41186861586042	3.21298117002204	3.08022200938268	3.20398121898405	3.02909287256571	3.16486927386631	3.39942577841352	2.9454067539823	3.35626004241546	3.17646753840746	3.1950651421871	3.17064358090362	3.26767765381398	3.39371008376044	3.1976832211905	3.3404377108901
+"PBLD"	6.54809057595236	7.57097123144614	7.07243109810545	6.42631188523382	7.14738832808681	6.27606316224661	5.58883752410668	6.79896504752848	6.202143603654	6.86704767045893	7.67080849837464	7.08118232396814	6.3674311953566	6.53885540217101	5.87208900575587	7.36342796406821	5.99975456836887	7.24068524962812	5.88250610625565	6.33063763608795	6.16057712888053
+"PBOV1"	3.57050125985997	3.64441074840968	3.79042102883192	3.72401428533105	3.63049605258345	3.76649585251223	4.03759305189129	3.83053627642839	3.89750769692117	3.56897057859798	3.32290680063748	3.53472749067464	3.66864787985345	3.80742732562206	3.77256997114753	3.6004737983267	3.47915564082879	3.54349903644986	3.98544605296826	3.49108882000965	3.82256806556078
+"PBRM1"	3.70632310137397	3.7002813057925	3.39230116756421	3.73657367556409	3.85108781028114	3.46133942416006	3.65492731406008	3.58346467524781	3.58657035912302	3.76269404705014	4.16028034356327	3.69712815082149	3.68232004695013	3.38613004288932	3.47368261899769	3.95051132020405	3.7002813057925	4.58121485093562	3.60783303823722	3.64354729535241	4.13251378294161
+"PBX1"	7.41577839459654	7.38103692152387	6.8861678631787	7.10611330733553	7.34514492816479	7.26353706163633	7.4251443905493	7.54846789424743	7.19146014553403	7.44096161350854	7.50263224483544	7.81351505264177	7.01661116399222	7.08210874031706	6.7858061674146	7.42154332228345	7.41827564922382	7.23755299509616	7.2787257929725	7.64851563856537	7.45373679457917
+"PBX3"	8.48750334621334	7.98079996778227	7.98858694640774	8.3487533002982	7.86834589644993	8.56924192622668	8.68342306273818	8.53508151013915	8.25867001633046	7.94171235073384	8.36821067612766	7.92736315835358	8.26936361494547	8.56957870994785	8.49680252832951	8.68742220081065	8.35149420959205	8.49216534345751	8.50223690545424	8.47843074921108	7.8701566616611
+"PBX3-DT"	3.24191663449661	3.47115147475991	3.26267207146602	3.80233022415458	3.8318069882345	3.41353121350216	3.81726098354227	3.5631474229726	3.53932555628666	3.42845548537094	3.38088445875949	3.50996605714218	3.6610529142759	4.05566480899529	3.45940828848724	3.56442393147333	3.67722147859684	3.44927333376118	3.47570850298661	3.56526859151201	3.53932555628666
+"PBX4"	5.90954403071747	5.8848187691787	5.89044734183642	6.00559723911694	5.97727060874542	5.87374859016562	5.98538250418385	6.12059484398192	5.86490947442574	5.9743436879444	6.04294426113354	6.04769829156624	6.1708919434816	5.88554537568877	6.01166564572053	5.6449176360431	5.99172816818688	5.37522421249729	6.29810149943117	5.95114548358543	5.62383793423865
+"PBXIP1"	10.3621063045431	8.77334577737977	8.00367289398702	8.87747456438138	7.87553638297996	7.58604456405121	10.0025193320179	9.4402534239932	9.01245203234374	8.82792338430814	9.15760299606153	8.73383617254161	8.45582072538318	8.8445734607054	8.31103928833707	8.10281150528946	8.93377037862564	7.41265710941418	9.0003060755574	8.83041712677161	7.9245660806828
+"PC"	9.66697955748971	9.06290376959689	9.16217574102945	9.0438902909614	9.19964689637997	9.27980142978415	9.84072620319522	9.47701730179349	9.30388593492272	9.11433009063192	9.23594828642097	9.04778977530317	9.21681192807909	9.34812215137598	9.09072827384122	8.96447651982912	9.2271352472513	9.27943235080665	9.26562062789408	9.38752179730447	9.01558145610053
+"PCARE"	5.23084664461819	5.38138312561749	5.18666029894659	5.46049976254501	5.18468516187201	5.37149559037084	5.1716869876303	5.14596157499561	5.14785645014479	5.22060392582966	4.8976858682093	5.24145146285977	5.36082033345385	5.58355973482561	5.41859503726568	5.17753264492845	5.1716869876303	4.90444988860671	5.15668814327833	4.87598852855677	5.08434163260989
+"PCAT1"	3.54551004849667	3.52189700376871	3.56065180801382	3.5448582959148	3.39411927238743	3.51706366410997	3.4817063856619	3.30413981714948	3.35032266702167	3.75829726158492	3.46757611662509	3.66897754616868	3.33054195150184	3.52189700376871	3.33607103925798	3.55857131440912	3.52189700376871	3.63204356373401	3.49050875565838	3.50696185884996	3.54234042611624
+"PCAT18"	3.72910252575102	3.6185754615656	3.7453191070799	3.92854454558661	4.13191743841274	3.37431389928045	3.76629339012747	3.75579141535967	3.85635944975244	3.66626004556949	3.69422457304918	3.66363453734422	3.6220312326237	3.72910252575102	3.83666387716885	3.69007503714787	3.79340624972589	3.72910252575102	3.88808536689997	3.50180804779792	3.66832612566949
+"PCAT19"	6.43598054075326	5.68722826047092	5.2884940928425	6.29856294083384	5.71254457405905	6.8086599002106	6.83417210797332	6.279947298616	6.20373460984037	5.58435872996778	5.65961830528806	5.61889817474781	6.55326726262647	6.27405792729314	6.42839630447061	5.45790233739605	6.08417238673358	5.52335236090834	6.3349675621831	5.55357395507149	5.6336251886364
+"PCAT4"	5.63796816863235	5.91536334384264	5.56986134662449	5.99630010964263	5.65751684028869	5.73624892135348	5.51731349720794	5.72658793401717	5.83767669457453	5.81008152289747	5.8558565520627	5.94485116471829	5.89420215275155	5.68671303287624	5.95798888619379	5.99981974496079	6.12556779363094	5.31120507763701	5.81008152289747	5.55741470245263	5.91421824050973
+"PCAT6"	6.1398480943792	6.20752957486688	6.56976455637974	5.67222315549607	6.25855678205031	5.62258581405632	6.09344494258073	6.29001038191814	5.45096502834455	6.16633433028094	6.12552208993326	5.77803694304035	5.68815272001767	6.32830867672188	5.6573784051326	5.7637414832805	6.07309955646361	6.02007114338236	6.04502064775377	6.09233032505211	5.68252365059641
+"PCAT7"	5.31255134614662	5.63282737911643	5.50944797891229	5.64015412357133	5.51698186140246	5.54450087133998	5.56307097217508	5.39911315998547	5.62124593185234	5.52439233317554	5.48388033359641	5.73388943210328	5.49381184216231	5.4048898090685	5.33931256024163	5.74063060427865	5.89329010165574	5.22055823988162	5.49279575019673	5.49626924151122	5.44747247739765
+"PCBD1"	8.05389132332236	7.7351620384123	7.87884308168685	7.90426761425237	7.86232481369232	7.3133413388445	8.21140176131123	8.27002825520215	7.85308323005346	7.87884308168685	7.75166693273469	7.83826591886866	8.0588071270861	7.73234578454175	8.04322456772908	7.5658683799932	7.76193614942706	7.88756912932874	8.17305327765031	8.17679294653038	7.50930032695704
+"PCBD2"	6.10355302753899	6.16664435259792	6.75245298825805	6.03837270463874	6.35405167572269	5.7169533591052	6.10955562308994	6.10172455145438	6.03837270463874	5.7352291965492	6.55714305693332	5.88066189422637	5.62407364001183	5.84653797811587	5.77607125625818	6.27525743302648	6.01485616059051	6.57755619569186	5.6038505544098	6.03680098942085	5.57040355031133
+"PCBP1"	9.79044040124801	9.72713259377669	8.95432784513722	9.57734997171045	9.71569987126145	9.13227062544097	9.24922821410603	9.68656484146578	9.40491863802651	9.91482135914137	9.78888424154882	9.67361433815768	9.69526434057582	9.22452592253738	9.52414230283559	10.0419233415961	9.631939218626	10.0070692235135	9.70498502943572	9.82535937240214	9.75653492952726
+"PCBP1-AS1"	5.99803545562622	5.84248608975121	5.87951223756655	6.29120293152144	5.84698623882595	6.65512723626896	6.33879713161162	5.88820058551586	6.23080736231996	5.65859722592425	6.35508592933833	5.59622980048999	6.11955865999371	6.51261755634217	6.41624440949518	6.443834933189	5.7662511083396	6.59251611014847	5.86219836836549	6.0268456023735	5.51989664021227
+"PCBP2"	7.12187172369972	6.7350766869037	6.70868504721997	6.8160364846464	6.45335431587642	7.44072790274044	6.96554028144079	6.72625040992249	6.77948961036919	6.10305912372694	6.81361516865523	6.5109753595796	6.87090948127637	7.26043977106197	6.76096914153605	6.24451723935895	6.47126697237529	7.15549890341409	6.48589872990049	6.56777760043105	6.49361147258883
+"PCBP3"	7.2337629661853	7.08476848624315	7.52597008225868	6.98701324972035	7.13716195734147	7.39770793852808	7.14855432713385	7.17189326348289	7.01841272613802	7.42457462276397	7.00928103771827	7.18809040968022	6.96529399929872	7.25743515920313	6.75544215381197	7.40700815195068	7.50926573979008	7.18516822616902	6.9495992104708	7.40674017120925	7.33502554545685
+"PCBP4"	9.36018119005936	9.80562846035826	9.67522281375576	9.3959561572053	9.05739864146577	9.95212610721568	9.42127625043084	9.27230031039602	8.90216896663263	9.36018119005936	9.89509520468166	9.43888378420124	9.28952681028849	9.71987683295051	9.29537240202701	10.4163408552583	9.23918334551059	9.95090514193811	9.21441560291207	9.32440864658106	9.26289221855045
+"PCCA"	4.04585351565111	3.61378727481611	3.8982108410994	3.77206684023959	4.13191715981448	4.10500676260082	3.85374579774345	3.9008570279141	3.54514357839558	3.76449171778694	4.18157332712417	3.87783646637525	3.8982108410994	4.00042990494726	4.2338385607701	4.02176575646331	3.79925141927725	3.8982108410994	3.88509171534632	3.91806439814731	3.3734534152517
+"PCCA-DT"	5.87415708463687	5.30504901665275	5.11911165434865	5.6956087993542	5.16827009466077	5.70974749566383	6.47465726812956	5.75559763442977	5.79060027401114	6.16461107696146	5.70974749566383	4.97822770165668	6.03979508481354	6.04481384881641	5.99570839065738	5.36643519037766	5.57302684975668	5.08177776568696	5.8185122628268	5.94911191219815	5.33358936572871
+"PCCB"	8.40417989322146	8.86160471847647	8.43357697354199	8.18230648231339	8.82548615797182	8.02112530021261	8.56215798976189	8.58926968715079	8.13811488007951	8.6067139669742	8.72425912296675	8.64679499476454	7.63081389884939	7.99718704262321	8.00524319644339	9.26901586812684	8.33086658422001	9.22142508596685	8.23949474124732	8.88035256813386	8.31828879666697
+"PCDH1"	6.02582576471575	6.17208202091135	6.60596025480197	6.53563839143727	6.95836302808643	6.98710385663926	6.88282585493985	6.18147351023272	6.40275650660759	6.5738532920583	6.05476532155592	6.28265418817892	6.68123741533814	6.70565363834587	6.50514552818329	6.16524864766094	6.41716278233551	6.43283098621459	6.34481199337902	6.65666764188396	6.37852105632497
+"PCDH10"	4.64183261544265	5.44595023274139	5.90740613977198	5.32324230847711	5.91780440196762	4.60362400082783	4.75295529362389	5.18074515005538	5.62679667587405	5.60525575485078	5.69046387496913	5.55055891539814	5.06876518250037	4.76264398815386	5.78459171559442	5.71767830799965	5.58460635228913	5.75453648117995	5.4063203035461	5.32065508798345	5.66308306199734
+"PCDH10-DT"	5.10342736124258	5.52047426469611	5.3563959993843	5.19820904152771	5.11972975257003	4.7996233919732	5.17790277068962	4.85876160292176	5.02911786542874	4.85647748027914	5.76641753590059	5.15058164026976	4.96282736326825	5.12272261556748	5.25477906006031	6.37640878729994	5.02110800969958	5.52257061662046	5.24838520952017	5.25904389785815	5.16139082783077
+"PCDH12"	6.09309670852094	6.15376855769166	5.81072428505669	6.02014640183151	5.66631819003123	5.89973347444964	6.1705924551362	5.67672649976789	5.85972094598171	6.14579332394641	5.78900107733175	5.81372867041291	6.19612266901644	6.07039354339939	6.0629534776839	6.00303767886295	5.77666501969723	5.66146037716199	5.81799544111561	6.60305193273097	6.30680373021691
+"PCDH15"	3.77634620848993	3.73927351913405	3.49501273592671	3.43099710000305	3.85475561216968	3.85202515316636	3.61594758785323	3.62171946809722	3.44094003030143	3.35455137093728	3.40018869169959	3.39931609765331	3.49501273592671	3.69068742859288	3.46387815513276	3.24253719126459	3.3852068831257	3.49501273592671	3.50508259830275	3.2564263215942	3.56617055503139
+"PCDH17"	9.6865907410088	9.49922558450982	9.6307292776353	9.32459222918891	9.86201947672966	9.788650568529	9.57800536740308	9.61414216171527	9.63146466223378	9.78499666807863	9.75154452174449	9.41118817181825	8.98816101901104	8.84124192235512	9.38502806003826	9.85393504153126	9.71895810521237	10.0137123802758	9.32419680837116	9.57058667738011	9.67549318948016
+"PCDH18"	7.6692402719888	6.90805031096702	7.23118572213803	6.78364960224541	6.55219695500927	7.43571438873836	6.71186684790613	7.66225416664734	7.24998147315445	6.99810248877084	7.15819919961081	7.21061185000253	7.37557514336761	7.7875429593951	7.10571556804554	6.75687616389373	7.17361503138841	6.66833043795256	6.94816053035147	7.58536776422188	7.29292564549583
+"PCDH19"	7.27772378254761	8.21349254356555	9.12472086143824	8.36361698488613	8.74258063919625	7.5641940606872	7.50536372497493	8.02906358145873	8.4613616134007	8.43703437398877	7.81325070423849	8.36446147215058	8.35407777528799	7.68384707974692	8.49394718823182	7.77944033103533	8.37706318335599	7.94171235073383	8.15762681209555	9.06585826789758	8.2754058595672
+"PCDH7"	4.77345728605076	5.41013485303516	5.32692006831047	5.2719592272531	6.68506186355362	5.32692006831047	4.5889002328896	5.12029283895936	5.65878868103989	6.5750188638884	5.13213981805986	6.32585672274535	4.92121877623531	4.80937786306142	4.89742861863683	5.29627695792157	5.96004818779477	5.43563416822334	5.16063390217718	5.86256785198889	6.37537773102433
+"PCDH8"	5.67842528213514	8.32806879933484	9.69755743266719	9.10273490082856	9.54580370934615	6.58614841850167	6.64678393407288	7.51739922056226	9.82383811921384	9.14870296608339	7.36194345000474	8.08914170978108	9.27762770657524	6.56701782933213	8.64320817555749	6.95532588378399	9.33423374057528	8.45104002838429	8.09526140865629	9.73428708190366	9.57716441262481
+"PCDH9"	7.02292416451992	7.10589067587947	7.01088150342112	7.28897383259795	7.0428988357604	5.70121784353624	6.48272120709482	7.13896073646895	7.2797226383436	7.46972244225249	7.90103257787371	7.65017138550771	6.88251503464659	6.58248341296938	6.96384212991351	7.74500788656361	7.02256865935069	7.02292416451992	6.66581021245559	6.50724021429254	6.77641879042278
+"PCDHGA1"	6.43162908642127	5.9424778339025	5.32692006831047	5.92965359635819	5.5771711436803	5.62763011211047	6.20026855548764	6.22374257006726	5.71526505182296	5.85520677878453	5.97626958508225	6.18619783200992	5.85510388989634	5.61761071706027	5.53494400320543	5.25491636871432	6.08189044601082	5.27449318539444	6.10026878406871	5.79216819867707	5.77697974642083
+"PCDHGA10"	7.27016617038141	6.93382735346176	6.53094584021483	6.86104401272916	6.57914017047703	6.28768225042703	7.22934685285136	7.19018507065103	6.71983081251392	6.54888805709354	6.94922582226942	6.93901015341946	6.54314771022924	6.57445306526433	6.77015475387019	6.32208048889472	6.60699433521243	6.24927865177439	6.68929855512161	6.76303138408747	6.40054209415761
+"PCDHGA11"	5.29014457074632	5.13346317023539	4.88084815750689	4.79991996821155	4.74298782609897	5.2558700608494	5.85691827849076	4.75522712391694	4.91912212229306	5.01442976109717	5.07045906963623	4.81761481826759	4.7556168972658	5.19017497418023	4.76269399970074	4.71436029192871	4.80713613388444	4.89134179346699	4.97232244145048	4.91868674731074	4.80713613388444
+"PCDHGA8"	5.10992753577924	5.10492708109286	5.01927668871185	5.38157807057626	4.6042215794409	5.09947174259013	5.5071260084526	5.29877533685795	5.3554030225411	5.06205139182681	5.34056407310339	4.93728325793055	5.37616198243032	5.16109917403026	5.43550636397739	5.09627444511285	5.05581349812835	4.61485811345337	5.21978188214362	4.74282902396315	5.18090963281048
+"PCDHGA9"	6.01762482746778	6.26628673666864	5.78185206647709	5.90230072636816	6.25312436794569	6.1920827042247	6.63219471644391	6.05315587224875	5.99662570849912	6.25598430903206	6.2180271009474	6.09054299683414	6.05804279991766	6.24443397539332	5.74440970560619	6.06625065268428	6.12015615354535	6.04150327463393	6.08401615539255	6.16506617454232	6.08315768032559
+"PCDHGB5"	6.16095534677633	6.21596297878742	5.96668269176176	6.34589737520279	5.96704543015409	6.26128461271892	6.18917802416126	6.02604535778479	6.16193507857156	6.10885384168066	6.17676664677488	6.14966618200186	6.16482954559073	6.53672937648176	6.15259427305722	6.02422467058564	6.08462548424215	5.75273831246859	6.17462006717126	6.25099576576617	5.98490263057257
+"PCDHGB6"	4.71537492025246	4.35753457299077	4.10853920278992	4.3358514996118	4.00134505718679	4.08757676544394	4.24219201138597	4.40497596887519	4.55435193296846	4.42451166043287	4.55765386058563	4.44214795696253	4.29571618773351	4.26439434895578	4.06749578657094	4.30497680781746	4.53189395664945	4.55078688119973	4.3518749643903	4.20373905572182	4.25964472169835
+"PCDHGB7"	6.46737683671225	6.40452859045953	5.20946115970493	6.07271433925013	5.86365751378077	5.15328583435714	6.31347646627705	6.41958582015974	5.63899214711613	5.99583121426125	6.62866540050058	5.90614123605171	5.5656370236181	5.39000281644719	5.12959231072644	6.13438645819326	6.28151206150285	5.81256467621199	5.7637691344185	6.14595578054966	5.37727020507544
+"PCDHGC3"	8.22792747403781	8.72382636331535	6.66285344856384	8.03433430950654	7.7716187036506	5.82954432950744	8.66231507570764	8.55701078070906	7.87919620612196	8.34140594645364	8.74348372240524	8.39316129248573	7.53808973009877	7.37876041237272	6.9745753009413	7.87960396079807	8.15414898940914	7.42579660290967	7.88263773404884	8.05305908821276	7.04105164489295
+"PCDHGC4"	5.59699545007391	5.59699545007391	5.36456363447525	5.53231912637131	5.61329389858506	5.78759940157578	5.59855367647745	5.33853103959405	5.3181779457041	5.69319771191213	5.43030670882883	5.99065889994915	5.71267382577087	5.59699545007391	5.47238404453623	5.69141508238646	5.57215268192929	5.32242230159726	5.49704361515228	6.09460045242483	5.89772478251022
+"PCDHGC5"	4.77039989823095	5.12890216627434	4.79405609157962	5.10109447246217	5.7269102501163	4.891431597517	5.13546117741212	4.67881843730564	4.98156775818745	5.52568810181709	5.08961543800521	5.76511960559526	5.29821600815375	5.12890216627434	4.52317922225706	5.33431607374974	5.16982452185974	4.9248378149072	4.74140273814355	5.65285884774957	5.8561274067234
+"PCED1A"	8.38804664765562	7.98491067037596	8.19461410137643	7.91778675505662	7.94016584374273	8.28717665239563	8.09058064755664	7.83324272686349	7.79358510987119	7.86060613871068	8.47798979355736	7.82802086630103	8.01139458676246	8.29167404125665	8.19098623369313	8.33164801574087	7.81066850355274	8.57084811371003	8.12494462302908	7.98946445701515	7.99935944419046
+"PCED1B"	5.90303273531632	5.91536334384264	5.78049978807093	6.01516078320874	5.88669173449022	5.83695780290238	5.9721574541798	5.85746164556836	5.89202262792143	5.94465795920303	6.07731136360814	5.81795757475612	5.73525078358403	6.19840989508872	5.86132937238818	6.10677522506615	5.80929157367125	5.90715988108909	5.67491687558056	6.10477900207021	5.94124552753488
+"PCF11"	8.0605186431056	8.4163900302591	8.40734848688888	8.22589376231538	8.49259799298868	9.01668362651657	7.8584737035954	8.86728676485341	8.16489942651429	8.28888675961293	8.45781389459754	8.99359016247614	8.16235292025161	8.22173175049494	8.18185323431987	8.40090554287235	8.75534724159587	8.36518742394034	8.40077194463083	8.08042799048399	8.06570559147825
+"PCF11-AS1"	6.93811125598975	6.91323817996581	6.93510716859989	7.18107053338101	6.48635771608744	6.16826012023528	6.75825115590084	6.72381879448517	6.81592357120649	6.55592597417362	7.0577990071779	6.81985522644839	6.36634693550781	7.00657563078837	7.01749259680964	6.9559555961448	6.19915417786347	6.60424680594401	6.85334182769453	6.5308916484481	6.5588440784922
+"PCGF1"	7.8606269126219	7.93940413581425	8.03487804042248	8.16317033269661	8.2160242887413	7.70606801697634	8.0509823939117	7.9615379928868	8.46190593390741	8.21788539191711	7.90996314254541	7.95801464144956	8.17737892910851	8.07584861969383	8.41466076429227	7.89543201754539	8.12798008360313	8.29359845010718	8.35373819174552	8.341337181753	8.25286164768323
+"PCGF3"	5.58645434932302	5.43155147131045	5.34935008985201	5.5084255672478	5.30637691202401	5.83091153839899	5.50159669915183	6.22422965881486	5.57591780761891	5.37065681770572	5.28853014467153	5.84680436663177	5.62803742063293	5.72596662423697	4.99193752319349	5.92323430787143	6.03830075880099	5.43155898450451	5.89294318860523	5.78866394107385	5.74014015798205
+"PCGF3-AS1"	7.1067071850045	7.2927393307387	7.62226222880605	7.51965125964479	7.01658541880885	6.477282637784	6.78899227721879	6.95289573081565	7.3361665089537	6.68495605923967	7.27525166483578	6.94579401737016	7.31337044443014	6.6485321092312	7.88692544365697	7.50734775176753	7.01955626044186	7.19824223722393	7.54942515754963	7.16650938914913	7.15473033016821
+"PCGF5"	5.95480417242879	5.49107868218632	4.59745053004712	5.19095310030492	5.29551480431257	4.2676358081187	5.29420430708499	6.10470863109343	5.49952197836216	5.62182271074976	5.82468672627704	5.12405143914665	5.23062579365885	5.27970971884679	5.18597248859995	5.53589859488709	5.4531212749623	5.77510653461808	5.39096571044835	4.85430755713003	5.50076182085259
+"PCID2"	7.19261755516863	7.11107116251638	7.72335387596665	7.17948732979047	7.31989881187774	7.3737377430895	6.91236992527743	7.15395342239062	7.54263736957871	7.13355488203991	7.20299994955822	7.14034814668805	7.2325367102459	7.00333745843787	7.29691410336221	7.42537546109525	7.2173823484406	7.58392691688481	7.40222425575849	7.42720709462368	7.36646336574091
+"PCIF1"	5.94610617051084	6.10720940664587	5.80042453658091	5.70317403511702	6.38442212113931	6.04981717946903	6.38440660336614	6.11873227958583	5.82117946248485	6.56211240772915	6.52802856258829	6.43213557222	5.65846305922337	6.08763768365726	5.46100578958714	6.60010276143172	6.08159057545087	6.60122664907938	5.95951869502359	6.63393756635097	6.18707154356303
+"PCK1"	4.27813473260364	4.853117558534	4.23168756989702	4.48101624424806	4.35617683750223	6.88741620680416	5.64322960872007	4.37604373542321	4.79252425132615	5.03005335884397	4.12457920856919	4.75782854236568	5.36082033345385	7.20648043345007	5.14269803705496	4.29777663538353	7.39029111410131	4.3028722980923	5.90275842605366	4.87761268195804	4.46509425338307
+"PCLAF"	5.86422566381756	5.1135520987669	5.18852624629503	5.66877411328787	5.48880225097251	6.05075738292912	5.12863313616008	5.24364768642011	5.5416937103325	5.4286200221182	5.36284484222673	4.83851391392687	5.36284484222673	5.66681021626678	5.56177479007344	5.57502898372005	5.27525566091233	5.90391561996534	4.95163460012587	4.88630908596697	4.99047199019405
+"PCLO"	5.77805472651482	7.89943157344895	7.96571713263124	7.83950120142338	8.29364770159237	7.18611586451469	5.65733866483567	7.37152475270735	7.71441563681875	7.85851054027923	7.09029830345028	7.8075503283	8.08307988277801	7.27742613745383	8.10856215943934	6.51863196500125	7.79201842273123	6.98988886857528	7.90605355179998	7.79958108026962	7.683374451593
+"PCM1"	7.23407715280223	7.53808989312719	8.08192808105176	7.01025135520615	7.74166380725444	6.58814932717482	6.42708815201786	7.16506245185122	7.71127484767897	7.46611209361575	7.77137264200336	7.4890334896273	7.2288699935416	6.48182838398524	7.15319175363745	7.68838730575399	7.52262801234345	7.68395136904571	7.04061683092856	7.15604246274842	7.44684165118571
+"PCMT1"	9.14930992699839	9.64775257728278	9.2964847972342	9.37886068429697	10.2252981650588	8.38416439979457	8.75013618017625	9.3452575951843	9.50734193047585	10.5393706481241	9.47279376351134	10.2179846972118	8.97252468273249	8.21594157339995	9.32831594516654	10.4423453970269	9.77233884381427	10.1045443695634	9.82779147287381	10.4521945069407	10.4695189730435
+"PCMTD1"	9.00475700098014	8.52592055884154	8.69417187499497	8.94125743129903	8.44147057626004	8.21105599558691	8.61708723943202	8.91051178293937	9.02658042954818	8.58028774839284	8.79012737438725	8.307933372418	8.77621813493881	8.90930246722725	9.1264434348718	8.38950023689209	8.72195308369311	8.79011908348378	9.2278598321144	8.4011309750024	8.50041190593235
+"PCMTD1-DT"	5.78954078049637	5.6957520216842	5.59408544777695	5.22666000574941	5.990352466283	5.5356330350343	5.16932572009992	5.42055579999312	5.46387354427352	5.69773783743347	5.53731103591558	5.66578847068376	5.01987015014639	5.30414423973762	5.00293879867514	5.98577203190183	5.35947467943897	5.89708195618327	5.59713534787034	5.9721574541798	5.39290696210695
+"PCMTD2"	9.69411818149161	9.38236667944468	9.22324519360009	9.12959912174097	9.06022016953107	8.65993278653904	8.97041042334979	9.28970367643206	9.2384193487003	9.01462823712233	9.56105243648092	8.95716861069435	8.70142618520639	8.97254176157986	9.09400746902671	9.84721670465213	9.34570204646633	9.72319002699375	9.4996315235851	8.97387602629325	9.02055997319581
+"PCNA"	8.39363757775264	8.26315765976754	7.81816015540282	8.09038564587485	8.20164559686746	7.97409225114293	7.68284960896954	7.89369978844994	8.24908600517688	8.10446694063634	8.64301926028399	7.8960986807457	7.99222307488413	7.73150699791666	8.04509707941867	8.5798938149651	7.6307609220402	8.81321622558269	8.00817216687721	7.92669544463167	8.00005963229131
+"PCNAP3"	2.8418815771573	3.02715493846153	2.88181290434466	2.92121307426781	2.96044971977131	3.03367893337566	2.96044971977131	2.78563978076568	3.17653641465286	3.10445188916792	2.86948685870002	2.83051476265334	3.11535116401544	2.95889935473371	2.87283689794281	3.06121187256036	2.82172310425553	3.06563224384306	3.01901406077344	2.96044971977131	2.9900071994213
+"PCNP"	9.53626862604047	9.83702998793951	9.18862082818643	9.8009238177838	10.1478240148478	8.82823147334248	9.39552823029219	9.69266767475631	9.6923443904611	10.1696941019345	10.0235826066197	10.0563933398797	9.60197418198118	9.23691867769498	9.35691187224105	10.1183964875319	9.95462716750328	10.0388498232052	9.90890212752027	9.80270508103715	10.1715623325005
+"PCNT"	5.43849504848828	5.50172345189707	5.8185234072478	5.88225817141076	5.21420890175128	5.67593138489352	5.37947595020673	5.43301225756441	5.74621449770117	5.77977849915972	5.56458709019212	6.13132597997376	5.93377182860045	5.96389864558926	5.51403668859576	5.32018988708908	5.88669811383552	5.61065199846285	5.82779088942046	5.61461353629003	5.44901534552305
+"PCNX1"	6.12959134362201	6.20609161367277	6.24728123016465	5.87917308229068	7.04987072770453	6.17642589059154	5.7833188943845	5.73358191811278	6.55824519881953	6.85342587496686	6.26653780683728	6.36057735758347	5.97823243650429	5.98044542391753	6.22178914707718	6.39722285675977	7.02989178127412	7.34878228884311	6.50339902345331	7.27145287798776	6.50469757521509
+"PCNX2"	6.29356816903453	6.70224406455204	6.45668984962829	6.3484177062266	7.17750359089776	6.60815984577104	6.50017512511994	6.47444995975659	6.46909698038797	7.52350303448718	5.98492396588056	7.06543247562333	6.32167653240055	6.30392648269328	6.16987178664961	6.54279912603704	7.05613271253385	6.36597476651531	6.56009074703629	7.77812123550326	7.6282434380155
+"PCNX4"	6.65642647770059	6.66551108103638	6.92947962536745	6.61373625878232	6.58069553563029	6.21699543390393	5.97662161585173	6.55236515898372	6.48125180379977	6.22043029843355	7.24897044537323	6.16398842900593	6.47041984704298	6.3593364505816	6.46886329765352	6.48659855365978	6.24439332696416	7.06052926315447	6.47041984704298	6.27401912298946	6.29096365345446
+"PCOLCE"	6.36017278949439	6.0730242794169	5.97324590447124	6.12355292427533	5.98152525037064	6.47136538661537	6.50123018119003	6.25584438054742	6.37819324671726	6.80561224475978	6.19610303658672	6.12760352936592	6.44959518242787	6.5925638516483	6.38748485157895	5.77544893364266	6.13980661120471	5.9320046498542	6.53692805824004	7.8898093030738	6.15291313293667
+"PCOLCE-AS1"	7.14337379565052	7.24706650260865	6.95722994191601	7.21294643822224	7.08471002621833	7.13081736787554	7.24408711331961	7.07971485060232	7.04473827695164	7.11480716022814	6.98060916842747	7.08072382849104	7.21973947950882	7.21275851227008	7.30217948140604	7.34371594189027	7.29298458242547	6.7255845386676	7.15270902549605	7.04156275427179	7.29732456180399
+"PCOLCE2"	4.03525595752418	3.89371565341606	4.22436527720521	3.71442257546242	3.73425107147365	4.12344324678087	3.96564234880028	4.10097702625654	3.69879148767374	3.96779852709763	4.15813605168797	3.79285044787821	4.02714387774633	3.74235217017352	3.67014748442142	4.23666277972361	3.71096314378054	4.30692160198797	3.96550256795391	4.55285504977713	3.75128016173281
+"PCOTH"	5.28415064921042	5.25720841551864	5.20697520324601	5.28903536912522	5.51796186337229	5.2111557508432	4.71920773838051	5.07207181435755	4.92243235151323	5.29274730601974	5.00855734844831	5.15492179294664	5.21681274073143	5.47238404453623	5.33324496282597	5.48737761385762	5.0146545345982	5.17702426895093	5.48682053890325	5.21681274073143	5.17702555262313
+"PCP2"	6.77251786751122	6.69788000210891	6.77643519189656	6.47036073048689	6.49981000791875	6.92890651065613	7.08056197564183	6.72158675556575	6.37815909269826	6.9971437257541	6.73317899584138	6.82086485154473	6.81427427738781	7.1359452001836	6.69970032173966	6.73049819352502	6.77643519189656	6.80435479338598	6.9268695033158	6.77560153599262	6.56735979133269
+"PCP4L1"	5.27078475882974	6.73046509511396	7.2617066883177	6.78617155382825	7.42247852633436	6.25543849129888	6.16496208223767	6.48218227297563	6.75295372297726	7.12254036548086	6.32948294766015	6.99990553827838	7.31528518683429	6.53836228715611	6.89542202898857	6.42952182839336	6.78704958814415	6.80620647061034	6.42748846544888	7.39369773583032	7.15512105260625
+"PCSK1"	5.48346458252759	8.94350953296679	8.99600569052336	8.6486348139298	9.71087875020406	7.70871554286297	6.2515858474422	8.36591774046901	8.78333708403955	9.00041910867568	7.15875128974607	9.01288051822214	9.02988250893929	7.3432005908164	8.75742826751931	8.62888281032554	9.6935395025461	8.49663517760576	8.84878093544344	9.92102906997292	9.09793100515724
+"PCSK1N"	9.64901714526486	10.8902327299657	11.3914579208019	10.720278083055	11.2591182296509	10.9257327191557	10.1543342464768	10.8829046660624	11.067992767632	11.3469321869302	10.6367919400867	11.4565964366037	11.100857416627	10.2736007082494	10.6064457240048	10.4182042399376	11.3543435272405	10.8058739278919	10.9257327191557	11.522746446269	11.4675117507574
+"PCSK2"	7.9650014453	9.31634925406139	9.58862517913967	9.3461896103114	9.73643030447233	9.03990421705758	7.88438887646582	8.52687353081384	9.99878969498665	9.68180403383141	8.36717237330339	9.11734810566797	9.78308240254668	8.60087505739876	9.66463758145723	8.4983766005228	9.69125568038169	9.24451651068239	8.73157741718542	9.14236583698603	9.84855332597753
+"PCSK4"	7.09611906228244	7.027183781052	7.06666761084124	7.027183781052	7.00895845395302	7.21464805839769	7.50196552750873	6.95848891418995	7.24467575810992	7.027183781052	6.97769724495802	6.95315903904111	7.1545832010496	7.37105943754072	7.02124124531248	6.82036618897149	7.027183781052	6.70531908240936	7.08411893321066	6.95743767996694	6.97898465718357
+"PCSK5"	6.72788236765033	6.38165821636966	6.94873968520901	6.5933591903986	6.29200294095465	7.38890369366321	7.0428988357604	6.93112391595139	6.44011574704281	5.73083050903046	6.83780616779527	6.74423347431347	6.74527453307496	6.71538419052824	6.93207519041706	6.12947197901316	6.38913200959477	6.30511319429544	6.56546746128281	6.22008000856985	6.32032406766099
+"PCSK6"	8.4686973409575	8.97545273374507	8.32282184820262	8.38582528863369	8.59230191064715	9.27408489591781	7.93639352786569	8.15437609076773	7.50997963163103	8.00137560540562	9.79929477595304	7.99018157700905	7.84804921557017	8.45867581004488	7.88872477297543	10.7862451770036	8.24677477822236	10.7705822776945	8.76552345071799	7.53917387948229	8.3121302883075
+"PCSK7"	6.94469157148023	7.21926671719001	6.89617254142734	7.22279397108613	6.43357427229112	6.56330869418084	7.40133808450103	7.02380293081695	7.22498922506538	6.77631351988445	7.42665252325082	6.75724295475173	7.20347752342945	7.00600959282152	7.43379917980499	7.42268382722556	7.17590394381614	7.14738832808681	6.96367003423906	6.32622913184819	7.07814185689237
+"PCSK9"	5.93473813646917	5.64710714041066	5.92584989774589	6.09336451926329	5.63517668630886	6.21699543390393	6.24588817783793	5.93473813646917	6.07854110773496	5.95302306424589	5.79264570295427	5.93473813646917	6.09780107215642	6.14414010421282	5.87300284437125	5.94423012504652	5.87415795014237	5.51838068567806	6.0518882389905	5.72209343643771	6.10998552158874
+"PCTP"	7.29053952377382	6.86044834146347	6.94313572402867	7.03360708897243	7.29153825207303	6.94227598632349	7.32926391322446	7.02920895362196	6.85312509808751	6.81870617258108	6.41425198949861	6.77031396573932	6.98707510151581	7.15015211865581	6.96064837350235	6.55847863618857	6.74904598796318	6.9506852649548	6.72080359075403	7.28347957409158	6.86899086319729
+"PCYOX1"	7.35049953642545	7.08502739152006	7.30758249346209	7.35760580914717	7.85311983730168	6.27432654800273	7.30991142777343	7.37176280693615	7.58238908433645	7.9918896426092	7.75637741311021	7.90470732403024	7.30470591751249	6.67647252969959	7.65364184255571	7.37199707538466	7.48407654425197	7.78773901572674	7.55553860971949	7.76105377863116	7.61062428573953
+"PCYOX1L"	7.90749013451022	8.56625857214453	9.19840159267111	7.48879783591928	8.84127081104712	7.56355242321689	7.02197341991872	7.91263632617617	7.61908369014514	8.47651623562961	8.18178676377128	8.4955472045916	7.4617154130449	7.5098581722331	7.11749143440232	8.48265058765532	8.08459976443644	8.3612138332917	7.86755322686988	8.87170410189201	8.56408615878317
+"PCYT1A"	7.89172621892131	7.46707248867344	7.02592540579209	7.2025236241989	7.41115581844543	6.88120968964536	7.04393898875445	7.30230568542401	7.06062055118532	7.74833341812988	7.65166106180563	7.59443785927325	6.85983259442481	7.38348478696857	6.65923511079559	7.7472174457626	7.26541488284738	7.36596122668256	7.21811078480844	7.57768073826964	7.48424955470287
+"PCYT1B"	6.21869335637838	5.06252380597563	4.92777153119575	4.83253003256814	4.51480864172346	5.00996194833428	4.91745260905599	4.82567155002217	4.88689405293154	5.27014837553808	5.21468318994245	4.97078882060694	4.53493720933289	4.91160827443286	4.91272952407444	5.44158344358574	4.68532290851336	5.04477638404422	5.08771697782503	5.2014674583348	5.1058928314775
+"PCYT2"	6.73253309867692	7.03613438285553	7.19526132224528	7.25497742550305	7.08355168805205	7.70088538271493	7.98319554521013	6.94871677620149	7.23159411184451	7.27686026005867	6.94912702238685	7.16712106679049	7.31837241789293	7.56851707785106	7.15820511284064	6.57498923782242	7.08393705820326	6.6123896163232	7.47512827008512	7.19553431399787	7.17436132764448
+"PDAP1"	8.80440111261616	8.34087845716967	8.16311320996649	8.16445885912276	8.01541933408519	8.02319108720036	8.32964936778258	8.24156491223624	8.27646480766862	8.96108272533564	8.63177442320105	8.62691072820018	8.12801377145719	8.13523668503473	8.22732225628668	8.59576639632767	8.37584491816622	7.90518687256834	8.34087845716967	8.63627086899388	8.5256979958244
+"PDC"	3.33778199557582	3.38410987436903	3.42664480783871	3.38815919666752	3.42664480783871	3.62681142678791	3.32317336392031	3.36517533179043	3.4477445348098	3.50833784201766	3.25853546865186	3.72011092208138	3.39428315832448	3.52967960130351	3.4598464724896	3.30962105527547	3.51772522858375	3.30212355774799	3.33824823015545	3.60683511117734	3.5419671519308
+"PDCD10"	9.38341349928578	9.4303194272018	9.05346302966679	9.26937170079105	9.52135414898184	8.85835114912405	8.96699430565895	9.47468942355642	9.38093806506143	9.28530626109332	9.49374892451127	9.20772649259077	8.91678806014511	8.65114808704928	9.23714942649723	9.71957426917298	9.24751929862018	9.61710767005366	9.46532213250158	9.23807031732733	9.28239017232677
+"PDCD11"	7.31215015843214	7.122749058128	7.37865524108369	6.97058368011381	7.27844379601058	7.01330759353595	6.84074755076692	7.06636996946879	7.12934604490615	7.24458360008877	7.14449299994709	7.11675335526528	6.88516626145467	7.06914410434084	6.87879066360299	7.38916502208282	7.09070607843328	7.23730761116012	6.76234128976351	7.29785590479741	7.56156197054719
+"PDCD1LG2"	4.74258032048872	4.97996265113183	4.76427159909002	5.03914936644968	4.88103818255809	5.47427121190166	5.5505309772065	5.17591853283311	5.1096514242074	4.99169548668545	4.91930298988925	4.78046211193513	5.05621984611969	5.31561464594557	4.95771342590708	4.72083029964895	5.0885636556186	4.699659913347	4.95769653128116	4.70627938350616	4.88149205397651
+"PDCD2"	6.82288288302296	7.06354506991346	7.76588709830562	6.56874871425042	7.14602672950929	6.88446328538064	6.85786824193247	6.90054331765695	6.94656932898857	7.28541423612117	6.90905858124651	7.08306210382592	6.72375730632499	6.29857521911691	7.00692607391733	6.99353114141366	6.69160916112054	7.61928245931198	6.88753258076213	7.38682526395351	7.05224635229932
+"PDCD2L"	7.1970947349468	7.49189404214639	7.53277913489825	7.47944138415052	7.85856602672356	7.18611586451469	6.98618076925131	7.33810128935891	7.43904067255672	7.95367776793339	7.37401981722786	7.53075260743132	7.28193154751261	7.02664068458921	7.24038808638905	7.57927227242956	7.16064493447205	7.86037722058618	7.38826468542264	7.74407407896198	7.49195968196729
+"PDCD4"	7.92524437918411	7.21411124169839	6.27702537979061	7.11992830215881	7.01245170053699	6.64990842291833	6.85673326768694	6.90619596832455	6.61499672447754	7.42879597386344	7.76752091303791	7.14344749661175	6.93803542212202	6.40220405043551	6.34937481958884	7.85088797337377	7.28479268781694	7.58891858858552	7.16683724705421	7.22851225914196	7.29266217025484
+"PDCD4-AS1"	4.79218839224826	4.74872438653889	4.88606556971049	4.56623198522397	4.6874336260733	4.87113127715291	5.03706398337846	4.72785757697258	4.66533044353817	4.58172825218448	4.50643129871752	4.39921131877728	4.86824760713764	4.792041545333	4.93327491401893	4.57018250120868	4.7872906843536	4.87266038413016	4.69316121339934	4.65736598102772	4.5846521041711
+"PDCD5"	6.53076982820548	7.20083666340713	7.7857648939336	6.43809034746276	7.35431607341737	6.9521997859886	5.22025635773318	7.82085696355378	6.14117216891384	6.73482030293124	7.08664719900689	7.37177807308791	6.09146539869102	6.29457389000878	6.54420707316882	6.83490086945477	7.45136960149276	7.39801612085935	6.72604558316325	6.8489920924146	6.62911762537978
+"PDCD6IP"	9.2095313206258	8.83986378990505	8.26484723449467	8.48153583964727	8.64551832519139	8.36530836435102	7.9992291879311	8.82438585181689	8.11350457875546	8.54728537920635	9.02805450208948	8.53746876821353	8.5130117484467	8.36513710178759	8.19784406951813	9.21055677282485	8.48191656563714	9.21866479832677	8.33833864010065	8.63407907044364	8.88429177819832
+"PDCD7"	7.91358946968934	8.19367508520208	8.22330377278187	8.38722059683231	8.07608045805596	7.71015994612989	8.15904268155574	8.20974674557455	8.60700059550994	8.19277658490524	8.52712444801121	8.12192651911299	8.52721910669601	8.24058480360729	8.84663157168622	7.97319533017572	8.27215840527206	8.11281612153818	8.33294237128093	7.96594393094396	8.16066299448916
+"PDCL"	5.94978243009595	5.52140241183197	4.65864622999646	5.41436382533146	4.82708182179674	5.27428642912524	5.78101715581929	5.62873473867109	5.51929028903596	5.64773738242131	5.63481640275209	5.73586417311183	5.66461679487241	5.62873473867109	5.84311583861041	6.00085784271096	5.93195538107629	5.09659006181454	5.72815848412785	5.89477565612256	5.59079891532178
+"PDCL2"	2.9742223142189	2.88829330098211	3.19482268189659	2.89719753930259	2.88968109302235	2.86789033568396	2.93304156179445	2.87795796997045	2.89823623128049	2.75161241237033	2.83123221174167	2.77583901485898	2.91419174836181	2.88906486166545	3.18146966930054	2.88291644559791	2.84948314873169	2.86215058234565	2.9682401791538	3.00211349055215	2.86056306292
+"PDCL3P2"	4.89099750039022	5.32481994927944	6.58635456933661	4.93068237809132	5.07508829750431	5.16821503749139	4.75847681424487	4.69731645203243	5.0440180393941	4.60781219775252	5.08562238739401	5.22025635773318	5.14563538831094	5.04165986674607	5.10115623881414	4.61697504729413	4.73322204130301	5.04003097162902	5.04003097162902	5.19706696829719	4.87855664096666
+"PDE11A"	5.03982310462071	5.52794050663808	5.2774201591475	4.71661121657468	5.28401345304171	5.76367214304244	5.08380815180706	5.0265120296124	4.95887733142397	5.12906069912838	5.28436210658142	5.05743475952404	4.60069519078946	5.59539090557773	5.03867636851403	6.4159466304982	5.17897583377368	6.30729174343361	4.80283803306568	4.69221885491061	5.05852574615125
+"PDE11A-AS1"	3.74551708805363	3.64837559185321	3.55228271927689	3.81189335080668	3.84688599501395	3.62862715730708	3.90031815238391	3.61551605025931	3.74436068998662	3.61604497233004	3.55972229321881	3.75312377918632	3.63534073349715	3.66815434670617	3.62769981678683	3.90763352029799	3.83296164398965	3.42533627000638	3.68102971060272	3.74622542668756	3.96874271641238
+"PDE12"	4.5820463926265	4.71721641242413	3.88509171534632	4.3303711593993	4.46317108399982	4.11326387620653	4.05069013693367	4.18371952199961	4.54751080496412	4.61436996725843	4.50826182765945	4.42177102575448	4.34621074092562	4.2562623395167	4.45501687624302	4.65029288499483	4.46873691342865	5.30467660128527	4.47536827327293	4.25713746982781	4.66501393014411
+"PDE1A"	5.36685370072348	6.79130744674878	6.05990542118257	5.77870303713318	7.72573064840477	5.32846504608563	4.59396439846009	6.39055256451273	6.20124553685468	7.48254802058135	7.61460527138476	7.45712278604809	5.42018704497831	5.03798118350386	6.34219337941962	7.61536802172453	6.6308328899224	7.06566539645208	6.72554445193095	7.51161277972883	7.76880418169388
+"PDE1B"	7.22630821807523	7.39954418062055	7.66909396302093	7.41873754624075	7.78943709156587	7.7901574110468	7.44348190629513	7.22809476166882	7.93232204302498	8.088757564989	7.15270902549605	8.06230400543358	7.55970893535275	7.59691627884551	7.35299069610454	7.37708098647431	7.81473609023646	7.39427068912364	7.4471379880756	8.2357859393634	8.3714916603147
+"PDE1C"	8.20343609640292	8.01044145254716	7.87234897319584	7.90418835213358	8.02856969036045	8.67093075981774	7.6094467010445	8.02536742637613	7.37116398443521	7.45385170671636	8.96153684976446	7.64316977942549	7.85601052273809	8.18490566598244	7.98850122466212	9.76995392882193	8.05163633817509	9.68470597517456	8.05337535970045	7.31125166693177	7.48834416618452
+"PDE2A"	9.74266483294957	10.4707798572835	10.7955226742834	10.3962626113378	10.5050646437142	10.4409765154391	9.8869339680503	10.1746823548506	10.5867115149095	10.3719160567218	9.93707652290954	10.3404383063392	10.5028563661451	10.5066442365267	10.3835091826334	9.67376949971849	10.4524163036136	10.1891223882459	10.2031479176995	10.5800189064908	10.4471129975145
+"PDE3A"	6.65233272893976	5.73971809950586	5.39918858855603	5.30130851449137	5.41207136805589	4.59727088076507	6.04444794931974	6.10172455145438	5.38054920103081	5.44191216112962	5.68591910159154	5.55942991569127	4.76178058853226	5.63581681251337	4.51117998432984	5.43307781824471	5.90387814189697	5.4880554591573	5.46157976069164	5.78020092072538	5.60405045786226
+"PDE3B"	6.31184691619897	6.37994266742309	6.21759949122111	6.3238616136671	6.24070180187401	5.63166704416782	6.38931468970694	6.18914106369142	6.37435442098987	6.09727244370065	5.67860299249429	5.91063734633878	5.95609126888173	6.28533845316071	6.17997783602783	5.85871243441097	6.50654107627675	6.18249397104416	6.37614604112138	6.13115628867297	6.2030763496523
+"PDE4A"	6.70646403006138	7.53787427386263	8.06381324031957	7.42424278298382	8.01246505729593	7.86469605999449	7.28285187346608	7.07398759390116	7.20317916423354	7.92133112287048	7.05936267277253	8.20304541920151	7.72290481878492	7.27746799820301	7.09161996784119	6.85746473341847	8.06499666238564	7.31692633293076	7.23267667522018	7.68904232721024	8.08465581538049
+"PDE4B"	9.17084928045093	9.17743477816317	7.9263714923099	8.55549593411562	8.79241242185262	8.42773491263586	8.70118294131916	9.81526369953827	8.05208214360255	8.43230764613272	9.22820153856697	8.89571464397052	8.51325803827733	8.33447486376624	8.4204488802077	9.51514867498794	8.91389496180529	9.50615582964157	8.57079273596863	8.52843149492429	8.58503876554576
+"PDE4D"	4.15123263085238	4.31127041390348	3.98108613622769	4.23830055158743	4.55247527168354	3.68031881371874	4.38648387970641	5.71980273907734	4.26994332925722	4.92064899628815	4.12432576921153	5.15058164026976	4.19063813428288	3.84029572696216	4.17262689332025	4.48319616540789	4.98020845373238	4.53672294594714	4.51360560907806	4.76193385675335	5.1467656602406
+"PDE5A"	6.56533161769245	5.57055235674819	5.20019271324071	5.42681129091705	5.20162556036334	5.42635940090398	5.59749975570606	5.4867118672529	5.21103063252094	5.23905299468502	5.16140731496263	5.01300562105534	4.97439714009685	5.79976601284619	5.16498712116989	4.99780667645158	4.78667799045618	4.93091290073836	5.32048972875906	5.84904290824982	5.05972271924553
+"PDE6A"	5.19141595383383	5.27772693916867	5.3497907863832	5.35724092885459	5.29854996580325	5.87853913367043	5.38674301267948	5.23389961059546	5.47586665592254	5.27580321238764	5.05924400118169	5.40159924148334	5.64876084389326	5.43300576023898	5.33691139859507	4.97893966867804	5.31975537611043	5.06420816918721	5.58660491333301	5.23145927672888	5.36483952072303
+"PDE6B"	6.01352470005808	7.15904683149739	6.23480148997792	6.18010414337813	6.00637955396504	5.54155626538347	6.20237947010789	6.10293055704408	5.86170194564615	6.37552554628479	7.55757417041091	6.40484023537338	5.9037178146546	6.00771260688577	6.23480148997792	7.5098915451348	6.45173178567008	6.85568628378448	6.32570454358913	6.21299225019803	6.4079503628452
+"PDE6B-AS1"	6.06458684220434	6.03570782919793	6.50702466492557	6.08361367529484	6.05911335515184	6.15591032732234	5.81353452298079	6.21459768396789	6.03531295079304	5.85606226507481	6.10022030443457	6.06458684220434	6.01160646816012	6.37959673681407	6.08450588780067	6.06458684220434	6.04387411691803	6.15912074511882	6.04509673264475	6.0543749955812	5.91258432294866
+"PDE6C"	2.99245884840149	2.69558054635257	2.83579699170991	2.90684862274783	2.97900504153703	2.95869324482118	3.01257195656735	2.90684862274783	2.91532870869812	2.93107357481404	2.86214277466196	2.82725271374674	2.83515613561949	3.00644045232528	2.95601236691163	2.85207947366725	2.91432948277338	2.77492382665258	2.71630345413646	2.77900879850162	2.90684862274783
+"PDE6D"	8.94674917866025	8.78699454771582	8.28653101729714	8.24747169770541	8.58134760522536	7.92555445350333	8.12603782353751	8.59619313622774	8.47888436243316	8.36447414086813	9.05903068338423	8.19225140265338	8.3121127993022	8.37328672122251	8.53944295801726	8.78187683290362	8.21630953255681	8.60197152668675	8.72866319363013	8.40962260257511	8.4089387225683
+"PDE6G"	6.46288367131247	6.63236101460473	6.59219254372013	6.83645975578359	6.62633347182949	6.78469980750076	6.77117123709226	6.51652681743487	6.73371191712821	6.91417375692522	6.58459612493135	6.75070511478977	6.86597638784662	6.86597906943831	6.64906362011344	6.76888810972532	6.91552570639217	6.37373827582634	6.52439867036149	6.63446933941324	6.76498620579125
+"PDE6H"	3.63846320597631	3.7075404634092	3.91501080974863	3.46565475763574	3.78295286756402	3.73258866665677	3.61104191292449	3.34496439531245	3.58296083785086	3.58657035912302	3.58657035912302	3.45847759356401	3.53932555628666	3.64130102004001	3.4945684456923	3.58396080766412	3.7522785100692	3.44294460478196	3.33649830799236	3.68992110825343	3.58657035912302
+"PDE7A"	5.49030957623086	5.7539033299314	5.10014005275404	5.67606689579663	5.63163951987921	5.4164424590557	4.82015734189226	5.52088856560492	5.12307766843874	5.54296270088076	6.15295550613937	5.68386064962048	5.28281667198201	5.43454636927501	5.22102687546744	6.33987880076176	5.82745741620902	6.04150327463393	5.70088474112553	5.94236638258899	5.70881492160149
+"PDE7B"	7.85810700021383	7.72568896715581	8.14533807949345	7.23720447547794	7.82974303218407	6.63923939143434	7.4144111223831	7.35723285943618	7.39163173783408	7.27153526677373	7.29093679251761	7.19769397397151	6.77643519189656	7.27788202323138	7.19555379317226	6.69778912489045	7.46644838870808	7.13326071734161	7.50239945015154	7.61265034176549	6.78461405538958
+"PDE7B-AS1"	3.49408706327172	3.59995530532366	3.74974519284439	3.60513864079697	3.32735482636861	4.21252504599289	3.69201167364618	3.5934060249768	3.58762181457724	3.73510682042615	3.33635307475435	3.80994433476749	3.65495382559822	3.93885451252541	3.68459354267549	3.45477528671371	3.37747020730609	3.52970537206662	3.55522323284336	3.58762181457724	3.55847706830292
+"PDE8A"	8.88925146553959	9.14550116317602	8.98436806152482	8.31696350217817	8.56910406947972	8.9435711171146	7.9726058326423	8.41329291377473	7.45358255996388	7.70914667553055	9.95616266810639	7.95979121472672	7.94435465525856	8.34719803888142	7.92861101809839	9.97865202919801	8.20995853124873	10.1465795784622	8.08259487067612	7.60609448483278	8.53718336417524
+"PDE8B"	5.55395603333278	5.87919382802136	5.84629216963572	5.78265399070803	6.36946272877588	5.52495127062334	5.23143701435814	5.58553011523331	6.64939276749378	5.73849858087223	5.20664929296521	6.02835671245696	5.70511950755959	5.14044059603874	5.80017838859735	5.66379179917654	5.83999895818788	5.56484832881266	5.12387594525565	6.18052695927032	5.94817268807637
+"PDE9A"	8.44375212619613	7.77157572844764	7.59924993000889	7.45360205212024	7.32063848381592	8.24034649146003	8.33854807492787	7.54329604200224	7.32069459781919	7.27458443536884	7.78472961032955	7.20386990094073	7.08414520669187	7.74022357713998	7.99635420862708	7.80327929767464	7.3152562412082	8.03832799618633	7.66493135969803	7.36429245547196	7.13559412233531
+"PDE9A-AS1"	3.90007422713939	3.72346855400185	3.69404663058102	3.81103737280396	3.6092612456743	3.80323266303893	4.12283586184919	3.83824571170899	3.96825361295516	3.65094397414645	3.65210416752338	3.6578532980876	3.83748837035325	3.79795083825562	3.62903699316699	3.74605973402572	3.92928957201143	3.88189893657897	3.90400289676338	3.69642942005988	3.78540703392929
+"PDGFA"	5.84338946569616	5.58057669641289	6.7786942998934	6.39910340981719	6.08251397517304	6.3743140417416	5.74247888881249	5.90286516672055	5.83332857553321	5.70881492160149	5.8871140899156	5.88322211674887	5.73971809950586	6.08074325602872	5.56035088690433	6.17452933331623	5.84609505839768	6.64654152293289	6.07176582749715	5.8912779006062	5.69679553452764
+"PDGFB"	7.82121352063566	7.73400679789406	7.88000187743509	7.93309879768578	7.72340393127312	8.21636051278416	8.16532961973316	7.67349824610812	8.07154646288014	7.87002306473695	7.6359600584444	7.73400679789406	8.10590851180996	8.26595843265987	7.80618981999334	7.24436539579128	7.61386554731012	7.71601116953564	7.82656643601526	7.96249904823133	8.02539735589769
+"PDGFC"	7.00291292846452	6.85287683212711	5.77824293089867	6.18902521443021	6.52135700008713	6.04639666160223	6.8886300204006	6.82390002428263	6.2150435458609	6.72146612239365	6.52662409641144	6.63425114805506	6.34555562937343	6.34504452128099	5.62854802188832	6.22269664846408	6.52759512419132	6.39593223393925	6.41415062720162	6.7492331620295	6.04510746398324
+"PDGFD"	4.63528395591297	5.76683554887774	6.38258323167972	5.43796493715495	5.8692499132607	4.75391176901744	4.80959959302197	5.46863130162062	5.51404718626763	6.0568110271016	5.81786993485078	5.55701060048862	5.31079793055243	5.17044499288957	5.41451144707873	5.6810829242196	5.35706732332611	5.68959334544197	6.05826629908967	7.33772779062153	5.55332321868599
+"PDGFRA"	8.71007195327003	8.2443776965595	8.25256623348036	8.25507382253823	7.85806944656514	8.6317667806691	8.88082311315982	8.92739969189709	8.32281274766434	7.88009498965529	7.72180191548796	6.75912405558358	8.66381455297584	8.63650704047082	8.55357591774259	8.03208810157602	7.4167967608894	8.57346690706792	7.83311934414331	7.86922762651084	6.49546513179211
+"PDGFRB"	9.49287520875379	8.23449011976109	8.38732020417567	8.29709400770941	8.09836002052341	8.87471902408509	9.03658380482321	8.40339075216942	8.43257785562223	8.37242884476613	8.19605895012856	8.25943580666252	8.59016435426978	8.93160082235331	8.32767390985587	7.67785039705768	8.46348964787583	7.88523203834293	8.19163216259436	8.38414202137598	8.28079914318702
+"PDGFRL"	6.76447888805107	5.84801451337728	6.2462234759858	6.1483606005026	5.93447516842095	6.35113983393012	6.11513452991874	6.24262071888236	6.37273588515913	6.15284046340585	6.51366711153546	6.05110146743894	6.20637753337519	6.25258941084266	6.03669712159109	6.32386278234536	6.16708187228972	6.67433794795436	6.35849602391709	6.57019793506053	5.85430831514567
+"PDHA1"	7.78223042001823	8.15581979912925	8.36551314479234	8.28344646167872	8.53171189574426	7.8308057760875	7.55651478019343	7.95450887278054	8.06228078785644	8.37058398381827	8.09253779949759	8.11701736822844	8.52643501069956	7.77181022269627	8.47948059335298	8.14173422921945	8.37039343618664	8.48256362553848	8.35299061462875	8.45098738680808	8.38113574062308
+"PDHA2"	4.36255205160324	4.58646227496921	4.54845847419661	4.62567127587995	4.52572667562793	4.36855489491261	4.32960633323108	4.35559250325987	4.48313296003771	4.33219782927254	4.32960633323108	4.45559137015533	4.7576974785239	4.47396159042267	4.48313296003771	4.70000454811092	4.56547819337956	4.48542863928423	4.45503733336714	4.48313296003771	4.50487680147358
+"PDHB"	8.39703600962262	8.84309563402038	8.19412755361849	8.39148268267932	8.89926626126944	7.96867738907194	7.94568483112231	8.33120513110507	8.49623527973103	9.06568307669843	8.74871823976627	8.85894507542031	8.19848470667502	7.95426743327068	8.18608556686651	9.11758057216714	8.61390077144455	9.30141003352142	8.54963473314799	9.03488606742163	8.9248452212346
+"PDHX"	8.54970465326033	9.00673817936911	9.26813853893292	9.22354576667101	9.54184598072229	8.48183429080947	8.37061930868089	9.43546664824277	9.47496899765095	9.28313642702517	8.82481762644102	9.18895816182018	9.04584135062949	8.73253015846404	9.37388851323092	9.13124750713436	9.31096549017803	9.29184433934106	9.2576110443726	9.33978420726888	9.34052474646974
+"PDIA2"	7.62861027162498	8.29944327253309	8.54016502775877	7.98050414608491	7.87063265454283	8.28839996717317	7.73855034113451	8.16702212643219	7.90771789539172	7.63820336322529	8.26097548260924	7.62659099667437	8.10516395048341	7.84731942404538	7.68567124021473	8.92478101619019	7.99484157307347	8.31172203362113	8.24095263125928	7.63231957860472	7.99484157307347
+"PDIA3"	9.63681811787239	9.33223031442782	8.80294991503604	9.47602504211891	8.8158134623776	9.29552244841178	9.09008526189212	9.59868426175702	8.92210555914981	9.34204449494729	9.95013369124093	9.51700463054687	9.44225833981182	8.84927391607238	9.18841950262755	9.68329966870717	9.11644175367389	7.74715751431896	9.18489050452503	9.89771067463606	9.32974097836904
+"PDIA4"	7.34956018212449	6.88518252449981	7.04781532991111	7.21852061840071	6.80572575170105	7.51445545049578	7.59522733630874	7.27068972716352	6.98442032760267	6.4584189692718	7.40065569664576	7.12246041334745	7.22461140700792	7.08985896036661	7.21072971389626	7.90756908287471	6.84250600596817	7.36778958973493	7.49632384581221	7.21971857958008	7.38037349022011
+"PDIA5"	5.73706581218218	5.70560997163015	5.96870111190222	5.60955193036598	5.87054752614479	6.06933927755355	5.45097144086707	5.89198343594555	5.70650622519081	6.03029721395565	5.74084064441778	5.90445747251824	5.73706581218218	5.40769415934942	5.77830112069214	5.73706581218218	5.62693524612794	5.64986694339122	5.58960959113265	5.97738926045783	5.84324430367431
+"PDIA6"	9.14101004222762	8.52841808329448	8.00945856023544	8.76183928420291	8.33172403555248	8.17497894596341	8.73395246512542	9.03834791652833	8.33862401840413	8.47298141819935	8.77927763916305	8.585645942459	8.80005555403704	7.95183872050698	8.67080557810367	8.81450102552304	8.21792767348002	8.59643476501834	8.87287175780209	9.07912008859643	8.73520026517361
+"PDIK1L"	6.57421478783643	6.82726514146847	7.24085302893521	6.90102836397517	7.23008448007099	6.32302791507268	6.23635436929479	6.73879177076066	6.75200273526752	6.73322359252115	6.85560891378653	6.66237402427022	6.78879240453538	6.55906097447666	7.07382453951793	6.832001081415	6.70975238898952	7.05947500095645	6.62514680669724	6.7707840294365	6.72332531695317
+"PDILT"	3.97521665806832	3.8977223205168	4.01615771219074	4.22393898140241	3.92581194023416	3.69305848859646	4.26365433129671	4.03026486573378	4.08378026080858	3.89764412171146	4.13419690965923	4.24508743182898	3.88962365618409	4.06662144433881	4.05455882573645	3.62578252582415	4.05740786470855	3.83125922518675	4.2493817728559	3.73028145315556	3.90533066756293
+"PDK1"	6.75734306973627	6.91650428354376	7.33013973671247	6.39885238838007	7.06973921445535	7.03023741313043	5.84324430367431	6.73266634202345	6.35369962209419	7.02623442838951	6.55330891612676	6.86369505026171	6.27608141897774	6.1415258921697	6.65148557744556	7.20183796243003	7.46881383128217	6.81294338801741	6.39109759253963	7.15367432031124	7.13179741689416
+"PDK2"	7.95965533031851	7.76647606206574	7.7857648939336	7.84343609283865	8.34814275971066	7.61265034176549	7.73599333924949	7.76186361039942	7.9751610270724	8.45284538674645	7.50705016842043	8.39380654295282	7.54285351175321	7.46944224505719	7.46528949264348	7.91168535657895	8.11554514449934	7.90850683565508	7.83384418041352	8.56269489571426	8.26890868128745
+"PDK3"	7.09378521418718	6.88373159817676	7.35186850151898	6.91470560521329	8.52290516041928	6.5976500661558	6.1494221107669	7.34138948838532	7.2567610556441	7.8987041534425	6.58408711975387	7.93572101345842	6.95776994443557	6.62249879374014	7.13815155875253	7.45074588496431	8.12696160209422	7.0944408238362	7.26878723164685	7.72711279272565	7.76930735187379
+"PDK4"	10.1305784344229	8.03240747264272	6.20406847721818	8.71592490139615	7.4386447224559	7.60062243447284	8.90909084266014	8.57294892156323	7.9376930504592	9.00644342704385	8.29915844421308	7.9189824038828	8.14001856535884	8.44187661459798	7.29086799150818	8.9117297349022	8.7109392683179	9.14382668532074	8.77766433471533	7.1455441044737	7.46610208363362
+"PDLIM1"	8.39890282137769	6.15839780780995	5.42210685631753	6.21404769784161	6.76035594407665	8.52318683007173	5.52672175596618	7.86416877875436	5.80204914650871	8.0714348897533	5.45594313045172	7.54453793107931	7.0485544374989	6.71119105682954	6.3033121944819	6.04328377603178	6.13265766329431	5.87802905190962	6.7954318143194	9.39004720330643	7.86422401586242
+"PDLIM2"	8.99302475342261	7.78869404163106	7.66193519095728	7.98130858806325	7.52789877118877	7.63566373428157	8.05969942675727	8.44402013378406	8.13723424191051	8.40910818104996	8.14810503256532	7.44082035234398	8.07506611361455	7.91260725476208	7.99558565036577	7.85048051070972	7.90140107986325	7.14582836917565	8.02889721958121	8.43191550083534	8.04275783565998
+"PDLIM3"	8.77172785487765	8.33945311057889	7.81574042081153	7.81574042081153	7.81574042081153	7.02005343546552	8.15125580586756	8.6725806006749	7.50115463918564	7.58633378311803	8.94583693600548	7.89171984774522	7.28690561664093	7.3434219680489	7.19448269330347	7.75949713487107	7.58003254954045	7.99943003602586	8.06913794442161	7.80586006433634	7.27218694821019
+"PDLIM4"	8.10993376541842	6.59429675604342	6.19090719485407	6.13007637115638	6.15624484834551	6.49804472660575	6.90758569780296	7.86034983070616	6.3631807279492	7.12245996088349	7.1658967141971	7.7570179260119	6.18108633842551	6.65454788921013	6.21386775972229	6.29255436943437	6.79998711198617	6.52885270291542	6.2800287523977	7.09651731799849	7.10042469357541
+"PDLIM5"	7.21643175495343	7.0889091058701	5.31773047001762	6.09400792894793	6.02981636264235	4.91551185682215	6.82493857119156	7.48616594406945	6.64444697698001	6.67278503467323	6.52499072361313	6.48659855365978	6.157001292245	6.32606208819807	5.61056548379241	5.89819801373176	6.32606208819807	6.38872477923342	6.59544100808826	6.4445485232928	5.76500536145535
+"PDLIM7"	6.74015973255815	5.53822469535732	5.72989085577758	5.79860181347121	5.7899061833471	6.22040523410846	6.10246244267029	5.57565076331989	5.70502222819722	6.01016546644991	5.43606210466897	5.77296871032066	5.89271710349991	6.1175239728088	5.7662511083396	5.56424423834503	5.33691139859507	5.5316770526582	5.89289842592129	6.1698262077848	6.07585654835987
+"PDP1"	9.39647343274407	10.9188942406096	11.0332029109167	10.9779873862779	11.1206555779204	10.2663622547064	8.98139359970068	10.4387898700547	11.2360774287201	11.3594207312355	10.1501062185003	11.3779462327278	11.0739368722606	9.95721399950286	10.9781476549966	10.3711609861562	11.4299090331185	10.4485521848261	11.1568393715361	11.2844567122295	11.2358930435419
+"PDP2"	5.83489135196075	6.65578058107319	5.26590355278674	6.47078431720927	5.48930526214474	5.05721203199298	6.49009370125288	6.61572751012712	7.2062195912623	7.06400114006709	6.82035988215799	6.07188784381405	6.84304780746363	6.51778040487006	7.09655819528046	6.49853687229156	7.07280429229135	5.45976295195183	6.40940698642308	6.8851280435471	5.71364492571556
+"PDPK1"	8.7967024813922	9.02159188426011	9.35079039949183	9.41746228872782	9.25694566688538	9.07453239767987	8.56288186148332	9.14095662314619	9.69638688169191	9.32794056590091	9.01795281238744	9.25461571597519	9.36095919201778	9.17929795847112	9.16111127142807	8.43642621133121	9.35101728823017	9.00041971120596	9.1546991386577	9.29083887148256	9.15760862012218
+"PDPN"	6.09999254824531	6.64319616377818	5.2828033243152	5.91488995930298	5.81586655008905	5.40026581297958	6.08457010828436	6.05568282241638	5.8515126302075	6.51820592574859	7.03735410365239	6.23440393301226	6.04539671450225	5.45622624069172	5.91423351962887	6.21287834297363	6.10532938175957	5.65096801817671	5.96529257485885	6.43808925377984	6.19280758449314
+"PDRG1"	8.19578302670884	7.89427742927587	8.28091371429491	7.9965416675541	8.08678769574483	7.89682434101156	8.12930668822577	8.10647253865401	8.1115402202109	7.99573443421439	8.1115402202109	8.1115402202109	8.05809919725204	8.08569057726581	8.27197647651609	8.38489846875841	8.05239317758521	8.09730252007835	8.25044019743945	8.29547584603784	8.14983857043923
+"PDS5A"	3.48052037201037	3.8202457324126	3.88509171534632	3.68466429300706	4.17352938857471	3.47436968814652	2.99664467833507	3.93977065015339	3.71959460242345	3.88509171534632	4.3860070557865	4.14949628159222	3.88509171534632	3.79863066752377	3.76687454783138	4.18014783401602	3.91829718033115	4.08340444585271	3.98206326974778	3.87365399665308	3.81904650279893
+"PDS5B"	6.29692435925744	6.28551653447874	6.6070466437766	6.47384900093891	6.88359678047654	7.57850474506495	5.75308334352936	6.98970423157227	6.44462388154056	6.14019872511372	6.17532764471561	7.0750593454085	6.53150419638269	6.1628390706909	6.60854439374368	6.03754399965733	6.83615363558716	6.98909281146391	6.54367896325785	5.97114460201612	6.14935518965144
+"PDSS1"	6.6063734802997	6.64928413451785	6.70208695486567	6.21911221987392	6.68991709560082	5.78192304929829	6.00457456699752	6.28630563307046	6.21274400082307	6.21485990836616	6.71955404869417	6.28730419522416	6.05233230583873	5.97802910290771	6.04202666004851	6.31887198498378	6.13666253308884	6.70423695750933	6.18481155437133	6.79270792070714	6.34427397081544
+"PDSS2"	5.34868853969289	5.31263375672199	5.21863031268147	4.82695884937312	4.92186374072183	4.72427807570677	4.81518326160883	5.28785761027521	5.02911786542874	5.01675754648892	5.32414545156089	4.95376678697493	4.75872279428051	5.00542408581269	4.66923759534309	5.45676350196692	4.68935407894979	5.01953508259719	4.95005655982766	4.92278481868475	4.59377281893612
+"PDX1"	5.04003097162902	4.99830926390459	5.23045797676844	5.05621374061117	5.18593031253293	5.61853843593826	5.95510000782449	5.08434163260989	5.20341931589408	5.3810883863506	4.95590903407134	5.20322686075282	5.36790934700669	5.69966650863249	5.19258735913729	4.94116663126147	5.22168211041577	4.7059142499359	5.22025635773318	5.23920916977759	5.18572044475517
+"PDXDC1"	4.18228075730747	4.05134694543791	3.85089480928589	4.22944434686073	4.13097992356162	4.26874698781142	4.32831433195721	4.31782623264224	4.10934226706568	4.0890007892808	3.83693543209766	3.92685835535264	4.16330835766193	4.24057944320747	4.05134694543791	4.2947976575029	4.1457494630678	3.63858732164414	4.15691222735332	4.01455338616926	3.91753020393085
+"PDXK"	8.69355481642062	8.31104474724526	8.4134523299024	7.75721868032343	8.68059852621572	8.05732225406086	7.93354924676056	9.03460687163063	7.95052657036464	9.13815344178511	8.20159406356786	8.65322846768451	7.77439705573787	8.09965683173598	7.83894229865173	8.14941473439478	8.41218880481741	8.20587222071596	8.15574786328423	8.780239270789	8.90417356562158
+"PDXP-DT"	6.40759104664204	6.7175587536738	6.72817234178853	6.68317760796737	6.56872055448706	6.83677588602266	7.3108338256795	6.57917091430507	6.84651631654585	6.72394117967414	6.52413933287233	6.79800866693685	7.09966409850005	6.98333217848691	6.81122049886537	6.50251893040022	6.83236469371306	6.51735164118681	6.91579540719043	6.80190290366883	6.65003698770699
+"PDYN"	5.31730919846428	6.01324482487772	6.32076386984526	6.4336873434382	6.22798967425432	6.30537780350112	5.69759570099258	6.65773160354698	6.2755561543205	6.53649821952544	5.87118193002287	6.33491388555357	6.19066229108395	6.04150327463393	6.36163833984662	5.5927933481302	6.31339114243632	6.22436321691284	6.22798967425432	5.99879826056093	6.22436321691284
+"PDZD11"	9.6561146238162	9.7002405803905	9.64549618660545	9.3891745200831	9.6144389890697	9.2191664785354	9.37557927634021	9.55013478476071	9.43838993783766	9.62419278444955	9.35725238391651	9.52589718290075	9.53297074709574	9.52586177540127	9.45809952238836	9.45338453376807	9.26018377400825	9.31561212464726	9.57394546493037	9.75684760339225	9.39035233178178
+"PDZD2"	6.79080518506478	6.71037174677281	7.39359616184896	7.08805476840972	7.07974135869396	8.23174983103431	6.70416427039386	6.88420169395311	7.15868895964373	6.55290320518158	6.02729029597378	7.32076741661832	7.2386685057402	7.04639150156726	7.00702548975788	5.96906142312973	7.40716481758146	6.838989124766	6.90424518427234	6.33481267304514	5.97933148172686
+"PDZD4"	9.73365830404377	10.0689783790043	10.3661939831359	10.1720304559042	9.97996126033014	10.3215690361456	10.5624904026843	10.19574167147	10.5702280060739	10.058354634617	9.55855931621653	10.1547908028077	10.2249779463281	10.2228496188112	10.1590297417857	9.03018318944665	10.0859773723999	9.3858207877949	10.2154478341883	10.2132520679541	9.95462066600529
+"PDZD7"	6.44462388154056	6.7416981390243	7.26223943251742	6.81099461154067	7.10683688819729	7.12956594829121	7.17623731995457	6.31964807052576	7.07910597853649	7.3812868522	6.53139861950034	7.01130166473549	7.20113366842797	7.32796066166593	7.04928380981801	6.82927396260893	7.35065323385192	6.82444126561005	6.84236148762656	6.98496276993549	7.14465256620396
+"PDZD8"	6.98624909995972	7.39289834580716	7.39081370347071	7.19994350994565	7.89333092346928	7.33949001645534	7.26966485329409	7.07085342149655	7.78897984516875	7.7083577615121	7.48348123760534	7.08062878098063	7.44471996350284	7.32231365885292	7.9080051602141	8.24637380131947	7.41288117867571	8.40010036235973	7.37543073013821	7.74812596416632	7.57352029954134
+"PDZK1IP1"	4.66334443842023	4.36997768511179	4.6482495602086	4.64340122715758	4.58635868254766	5.35385264207798	5.02759912069155	4.42138837076412	4.87224558161336	4.88548364385296	4.65633381248775	4.42764418536644	4.65543834992721	4.5134902639169	4.86229342224333	4.58931180539419	4.93450445246188	4.46014898724205	4.66334443842023	4.65314190806522	4.81481653810406
+"PDZRN3"	7.61685632148309	7.66893882487685	8.25188850076139	8.02976714938081	8.00157768266586	7.02840613321195	7.37800906413248	7.93709431955727	8.11869707620158	7.84799361032052	7.66550198080494	7.80504681562816	8.12273909881976	7.64604084764587	8.43931656998917	6.82828198824286	7.79083834694799	7.6085403102143	7.87240955587737	7.96552059106167	7.60826193925373
+"PDZRN4"	8.05285158353374	6.95686366238987	7.53760698585024	6.74890232200143	7.32531146880696	7.21414721982182	6.4203647841177	7.2202260662066	6.46450280395481	6.55468281999552	6.90651939700411	7.45139214334258	6.65382520417245	6.89268659375757	6.84840473462726	6.8552663804676	6.8552663804676	6.8552663804676	6.80961918541404	6.72527756953868	6.5381880762845
+"PEA15"	11.3980609653532	11.42896405133	11.2385789931598	11.5950485137613	11.2721473187988	11.3322197366688	11.2929811180602	11.608160130879	11.4364708423027	11.6399448272279	11.5746330550844	11.5026149459372	11.2910153143431	11.3437542147491	11.2592059792292	11.527962347836	11.3607110778591	11.2563209909275	11.7026158774177	11.6268173526584	11.5367859563149
+"PEAK1"	10.4724992152671	10.0679278334016	10.158528655522	10.0289340501597	10.1193046495049	10.4078523897954	10.3211296924822	10.3795085909668	10.3044086564146	9.90497108279877	9.90272828683762	9.91621662259906	9.96339497690284	10.313857645555	10.0495559926507	10.2544117014855	10.1193046495049	10.3900637201777	10.1193046495049	10.0533526404763	9.74469871819459
+"PEAR1"	8.45727866855354	6.97859943644084	6.62354923099146	7.14215664745124	6.49173506671548	7.91360822466194	7.60155963627524	7.15003078515725	6.76160952265733	7.06123171638013	6.85993666007726	6.78766022095907	7.26929882573494	7.58271609187183	6.73253309867692	6.59772307248763	7.01417006255801	6.70382649437301	6.67225154204877	7.34808531880923	7.14775678475668
+"PEBP1"	12.1044571437174	12.4217385855093	12.5204280929898	12.3681375561428	12.9671587280343	12.12982062917	11.9346327667428	12.1873392353096	12.1618913527821	12.8625186264618	12.5663273662419	12.8449889940457	12.1483274334252	11.7288470705622	11.8991407120637	12.7207159194416	12.5525441528496	12.6179275912603	12.4410457387564	12.8254852038492	12.6104236522167
+"PEBP4"	6.34750454074376	6.33049819326866	6.45640655648192	6.00203938255084	6.30650907830185	6.65421188104334	6.10148957791706	5.96634177170871	6.18020750101324	6.03536982153683	6.67625416903036	6.181054863345	6.60258067518842	5.66365049158666	6.38315991502848	6.16341725844473	5.75413559570136	6.443834933189	6.27292447581744	6.4379929602843	6.22805369211246
+"PECAM1"	9.7953741692629	7.44728761562527	6.26065213410191	7.8470074786399	7.29139806234689	9.01460082202373	7.87547046179488	8.43445055464112	7.22425749665669	7.8556043670736	7.36102799492933	8.07021768187822	8.11517408549214	8.24624195754858	7.58786802201582	6.95158419331898	8.0034363443991	7.32112427462095	7.50666384426916	7.80413107454452	8.20314691296669
+"PECR"	7.44348080085999	7.60950019187231	7.36773322592019	7.84126311249865	6.91228283603141	7.10597281423149	7.74855338068211	7.66535645256617	7.721973642613	7.36580113170857	8.04338628655228	7.52238301470999	7.96609434682528	7.56954043887327	7.94649584409059	7.42100622707734	7.68961570878422	7.32019381419417	7.66536027710658	7.10908611461644	7.43716142704344
+"PEDS1"	8.62210535615723	8.58188827054491	8.47730118057205	8.68730126855789	8.4360429166125	9.30185524436785	8.14928699877899	8.20151542046793	7.99451405479443	8.33414097648106	9.06308792256024	8.49853052529741	8.34067975506033	8.47730118057205	8.07328174443331	9.39816646075457	8.41300523488474	9.40438905026034	8.53680418349129	8.0684273021924	8.42258322860629
+"PEF1"	9.43638705817823	9.18683755120613	9.3768655849531	8.87868092736486	9.33229358617495	9.21098456318826	8.81351237316719	9.23038634088561	9.21594426326666	9.49291951064954	9.30840136173489	9.52963777348199	8.82357586239188	8.63267129322769	9.19992100305756	9.61342058129937	9.15591790375151	9.50224911713315	9.08569880517931	9.65166067016235	9.3935293946268
+"PEG10"	7.51624184851106	8.05022587196789	7.87000884430905	7.71918820605455	8.41138472679432	7.0727461001838	7.44969045385057	7.92813774115046	7.95437781581198	9.10682628887216	8.1830344632248	8.92442460138241	7.698825477919	7.44614925460347	7.56306334114978	8.60340722498919	8.47503103951003	8.60188191408723	8.23380740190871	8.60637016070722	9.27879609077408
+"PEG3"	7.49333571647079	8.87848524338076	9.51760734905906	9.10131964894294	10.1182698072815	8.28635435499418	7.29924491645553	8.63716452804468	9.23229226013297	9.7548599243209	8.78121273604881	10.0351640342165	9.13151822272994	8.02369377693361	8.86450013901162	8.88869505226161	9.45924897153578	9.48798036416644	8.64215012271389	9.62217909215351	9.80175673232311
+"PELATON"	5.65283581951207	5.61048871625263	5.42371429375255	5.64041983793723	5.40966951998063	5.77872950452485	5.92052810620969	5.79182930645798	5.71726980135545	5.6051664066486	5.25421574487067	5.40456001533865	5.93453513626568	5.88514463601463	5.82997215076881	5.46350507052823	5.38762855343241	5.23723153847947	5.57801968151677	5.49113360635403	5.54010355933677
+"PELI1"	7.51194117489595	6.69331020828221	6.77984671813624	6.21949169989295	6.46114543586737	7.85969575842647	6.16320005184268	7.0839293239771	6.00852515833992	5.94830482239382	6.67149042263945	6.74339574872313	6.18642541264107	6.65859274034437	6.32098805077573	6.58360971872885	6.82494856568634	6.93033035735702	6.76398343644321	6.17905733116827	6.28037400661702
+"PELI2"	7.96185850798967	7.62532162814195	7.17046001664124	7.2196788469096	7.32217793633755	7.14496332710353	7.77061619697042	7.75110279731998	7.51844022004359	7.09922041576377	7.7080585971092	7.01403722949959	7.10055781576541	7.48672367110045	7.64531698532419	7.54749666369857	7.44496692063254	7.82329077929467	7.5282183694953	7.25609788588084	6.48200032099051
+"PELI3"	7.98736646773797	8.33924270980166	8.84223856643984	8.44093145189279	8.95049469232878	8.69086973500481	7.82663778772717	7.93330826568513	8.60135135729601	8.86235888331058	8.0272257316679	8.70380723194197	8.79035085312672	8.40272958703765	8.54923150949032	8.00137560540562	8.66224343280585	8.49040036428163	8.31596431645871	8.81011967006479	8.84706400084475
+"PELO"	7.41964307822562	6.94202762924746	6.73152980839489	6.69658478132318	7.37636340236731	7.14827434729608	6.77958059320703	7.0520983920607	6.8383806229948	7.59152806043867	7.2257289703256	7.10634916248974	6.77643519189656	6.57343378896508	6.9418602492045	7.31210281799014	7.01384845837432	7.68668015142456	6.66596889334273	7.45204643358829	7.30929457921148
+"PELP1"	5.78824360218335	6.11693404732426	6.18236592302983	6.11555883928542	6.20918110589849	6.03008581831505	5.6140356691869	6.2030763496523	6.47573349311198	6.25388251304877	6.15030909675886	6.12435666263808	6.31484664993813	5.99218250571364	6.10770753087399	5.72692575357986	6.29673113204322	5.88931726379137	5.83585969931446	6.50135996234266	6.42080176106689
+"PELP1-DT"	3.64412061090917	3.59137864032819	3.57482893676399	3.57772804206479	3.61212274579645	3.50267462133052	3.71492156763055	3.52702506733571	3.64626401734637	3.75362500627143	3.54127067137852	3.48021599362865	3.4525881050626	3.70051115897506	3.47624259673552	3.65123038993292	3.58020721668009	3.60357010523048	3.6121533679348	3.46346048948591	3.65125391017767
+"PEMT"	7.86162350341456	7.82160553479898	7.27785469349382	7.61686655705926	7.74685944002957	7.30289696480606	7.94441101073765	7.92555233927127	7.66786713098081	7.90721357558249	7.92222557397645	7.94059102885239	7.67213180399088	7.64801190884653	7.48139490021237	7.97379257465073	7.64923874342897	7.74343304190543	7.44156112631751	7.96328851883489	7.63223672230306
+"PENK"	4.98089788565477	5.9823262643362	7.27800223013247	5.98737603366594	6.3335204741525	5.41140139464967	4.98160699197236	5.4693801866499	5.69185390824031	6.61239132486741	6.38558967593907	6.41885513293421	5.76601570892156	5.31423540623499	5.36214868793191	6.36508694297503	6.05010011765742	6.18627752477395	5.79300973928334	7.48264642618234	6.97849490786615
+"PEPD"	9.23900280356715	8.79991812118918	8.56747892178662	8.68190229321134	8.89178214005688	8.6919509102757	8.73525958945509	8.77924961846782	8.60781119117516	8.87597729081063	9.21291254654935	8.62225979235474	8.73269020691564	8.87008995961692	8.57323223095038	9.26698685404069	8.6542841558386	9.43764064835751	8.54549792081942	8.88429267716144	8.79991812118918
+"PER1"	9.2745176827976	8.71930078939685	8.30054397960401	8.82509208778	8.67732172278368	9.47502207307086	9.04724523553594	9.23203579669571	8.51458994548671	8.80194439917628	8.42240584177571	9.21354242783964	8.94916196941729	9.06086793628124	8.72019677401527	8.13191166738915	9.48200392575256	9.26067202168622	8.97470526357285	8.68997044833139	8.54362560704827
+"PER2"	8.69258035253655	8.8466879565098	8.77839366665143	8.4054883490201	8.41297889792442	7.50633718779408	8.18349659208814	8.61812550836234	8.11634918837467	7.77473887964919	8.36825935354839	7.80210670399085	8.11129364934596	8.23568930073978	8.5461918657316	8.26937983290314	8.48679102873243	8.01980842123397	8.09931736036937	8.69044416737611	8.08088325089386
+"PER3"	4.81593716917983	5.73971809950586	5.78444075594884	4.36639627078161	5.47744298918679	5.82287033003888	4.95007362549773	6.60700545919022	4.71950694237828	5.51147813219699	5.75492310248652	6.62703540617883	3.99524432269851	4.71076018602294	4.73072610307953	6.0077724735066	5.79362137595844	5.57474274473844	5.48442627203455	5.06932916835006	4.08359463430351
+"PERM1"	7.05194410244232	7.01608049380812	7.09191039127453	7.12479271658009	7.030650411839	7.58534892851311	7.79952834520833	7.13081736787554	7.13619746068565	7.21545777746137	7.01396893632534	7.06897958894607	7.11056906158229	7.59993549835716	6.84735774073151	6.88358498847401	6.95976607375231	6.83143367498888	7.34900197171124	6.97544045714699	7.09108188119401
+"PERP"	7.67854342029193	5.57500823945681	5.23931630825707	6.26663413632172	5.591916913544	6.7425845143693	6.11367082491704	6.94506195771741	6.27977889744898	7.00855152962908	6.41950546115119	6.18619783200992	7.4021100721893	6.20820906125141	6.20064745839081	5.28678529265356	6.56004518586553	5.76323039852308	6.36755238449843	6.81627484461705	5.98720242656686
+"PES1"	7.54219541068635	7.31058926641945	7.68742060816978	7.34613285482837	7.24769097424555	7.33913423131755	7.41750232234912	7.28876683959554	7.51162230808816	7.64698736397285	7.53438144958086	7.41750232234912	7.22138024564501	7.40746709620476	7.38943108202018	7.5243672960996	7.37626471530114	7.45992430689175	7.35325789905	7.57495511559805	7.44206931555038
+"PET117"	6.83321731878097	7.03690301611917	7.3507573744889	6.72818099630086	7.43646782481736	7.02720512350019	7.25555838760277	7.01221285643386	7.13019025616182	7.23800815729517	6.76153021513426	6.97017432796624	6.90928937713827	6.98724900603624	7.04727592114738	7.06449657522182	7.15635460453235	7.28872489165532	7.15359932291062	6.89541457814441	7.06516034263491
+"PEX1"	6.42123614784591	6.81430643730165	6.44054749243543	6.29079601809376	6.77024468239049	5.98148455320635	5.73646554322212	6.34340944337015	6.07096515055814	6.7596049564625	6.94537607955347	6.62187061643582	5.72365175036959	6.40414197424452	5.8793892286618	7.32593572533656	6.47893905742844	7.77901855504987	6.34739169114921	6.73474424718063	6.40440283685927
+"PEX10"	7.09005988016037	6.67608483037481	6.61100405975796	6.77058875629564	6.78006584443239	6.6232164978734	6.5987863640556	6.61330174353802	6.4644263900626	6.90662273769286	7.19504728003074	6.80444023996957	6.72351087360803	6.71707216812765	6.46933736407639	6.84735774073151	6.08462548424215	6.24443397539332	6.54729766935057	6.84121650482512	6.76109081590225
+"PEX11A"	7.04029151883567	6.38750883584766	6.09396843094576	6.26443420710498	6.06463506215588	5.57646770595081	6.33767082915325	6.12316126415003	6.25441926736318	6.2940575536881	6.63741904187923	6.2493452223926	6.12021922402362	5.96604574336734	5.84722348395342	6.37805525798239	6.12316126415003	5.86831472118423	6.22528175453793	6.46523591902295	5.59216830667379
+"PEX11B"	8.79319739247721	9.28667264404293	9.643351883548	9.03625480477126	9.75474249397378	8.55765202079094	8.10533515305513	8.80495357886217	9.26969759198474	9.73141451246411	9.0312462881613	9.47327182971272	8.92335646561862	8.46289984918922	8.92164664453132	9.55116512088253	9.46071335197714	9.60626073580567	9.26969759198474	9.75267314797841	9.56187469445684
+"PEX11G"	6.95057701337114	6.98713050202263	7.08778669116666	7.02555414137949	6.80679028804721	7.01661116399222	7.27691246027502	6.97012255580449	7.00933658624793	7.10280367578773	6.99930066271151	7.04582219746189	6.94494790068845	7.1368409348952	6.88388170087791	7.19220645042068	6.89088141753792	6.98634281529066	6.99712105443263	7.1661557730136	6.99828187345654
+"PEX12"	7.93927503087692	7.53809780178152	7.61623129171179	7.77552718049338	7.78908998839607	6.96879272646578	7.60902086057287	7.63244226877417	7.75397268386436	7.52413424414175	7.77552718049338	7.41187214628768	7.47302895702998	7.39512980863444	8.04877661059125	8.23450871404148	7.28134539778787	8.10731135736383	7.68906966273484	7.45459622580833	7.34972161008619
+"PEX13"	5.79351534159652	5.50811035743253	5.73929542034985	5.07808781383059	5.6769793771639	5.12028440502379	5.15373962275779	6.24043575835265	5.28939967371975	5.33570433765359	5.68140473461356	5.55890411844152	5.2519113740907	5.54574066387478	5.23267492910253	5.64921292196457	4.89069915637001	5.68231276316229	5.46064373632617	5.26276432991096	5.01247821771634
+"PEX14"	7.9439996794626	8.03450113317194	8.43659990796409	7.8295640734445	8.35041812227846	8.18614965744857	7.86333922150254	7.90825526328647	7.91035818032352	8.39044219405205	7.99506337158333	8.348095629256	7.7353352656159	7.65920812574107	7.61852792939296	8.12184244950226	8.23911623073742	8.10460368131562	7.64449783479247	8.54880367283284	8.12212656853008
+"PEX16"	7.82449024037829	7.94183539815323	7.99948046845281	7.60278843948626	7.8341093775652	7.79010793522366	7.53090578725878	7.52031937572418	7.54937609345325	8.11278164800454	8.11783506303096	7.92793015201695	7.46049191167657	7.57223174110938	7.45383156817721	8.0496969848478	7.82745993805683	8.29204269444394	7.58328908322033	8.04104070675799	7.89757988339136
+"PEX19"	8.42746914293518	8.36669558845684	8.72835397159174	8.17505387405146	8.78701717385566	8.19913586008916	7.65770634532694	8.34449721778218	8.24861517041155	8.65155237062527	8.17318717646146	8.27604401504141	8.20233013322061	7.92528714516013	8.05660635013884	8.34595274292216	8.2867510198569	8.44418117840516	8.1075465812225	8.71786055352745	8.31451115318237
+"PEX2"	8.87220387544629	8.53593027827739	8.00555085684933	8.25576862183491	8.27160485090843	7.42411540508629	8.31713115631712	8.65516923866249	8.27160485090843	8.3535914223519	8.73529068853231	7.94763112985552	8.21483319753802	8.17419259204538	8.26933106101522	8.85933297668107	8.01554188315312	8.65821865576824	8.38348079524614	8.17751624088866	7.8637984381765
+"PEX26"	7.73883818012564	7.69133302867116	7.98630004326705	7.82633564114934	8.29320276244519	7.98220892284497	7.24408302181542	7.74885740631643	7.71506242813714	8.45193464793117	7.64648345015882	7.87773327888864	8.00458058459857	7.77670825786755	7.80049365764792	7.42427878975339	7.74218276103004	7.46396808980302	7.71078031819102	7.77764779213383	7.77670825786755
+"PEX3"	8.0173665559066	8.18444974678823	7.81836881453576	7.46299041873065	8.37743911634429	7.31940923048082	7.07591684158624	7.67586754726865	7.62228639824545	8.09801941814924	8.20470654205981	7.75220318637967	7.02505713662418	7.11204859501199	7.0070301403536	8.38963821734359	7.53726112341626	8.48490375458715	7.67903031882017	8.16577096306801	8.06780670883854
+"PEX5L"	7.5250488226839	7.67196265304664	9.3241733011494	8.6355458427557	9.0283324439604	8.42233328911035	6.69102430609373	7.63172878925592	7.84493091904269	9.38483996903197	8.86038638043688	8.94231226322869	8.24377452436881	7.78991467314681	7.86191426079565	8.09429988865287	8.71762690523592	9.43136802991367	8.65293591414127	9.02784802704365	8.36696434091408
+"PEX5L-AS2"	3.493377835447	3.52362530251222	3.2087861264359	3.45281152746718	3.36560010406572	3.50676272162112	3.50694282688751	3.47020071028159	3.51691731657625	3.53970605161682	3.34232703473808	3.33837290482888	3.69169056595339	3.52886915235374	3.493377835447	3.57270454734304	3.77738640725869	3.21882805755235	3.34997537069586	3.45097521609584	3.61678565662174
+"PEX6"	7.73455405915223	7.67068857256714	7.73636277095728	7.46257133602969	7.41347820996767	7.16542581049695	6.49195141287381	7.67345923708661	7.46493599564205	6.83578627523151	6.22050703083036	7.7622974085152	6.41371122739702	6.199262536986	7.07911930771303	7.54277542061764	6.75031745491275	8.06078399546394	7.5753465235937	7.76654680495965	7.83445050538796
+"PEX7"	4.78057709465034	4.95838112444689	4.88592643449748	4.1671861281156	5.31085921744476	4.70179108629367	4.73339285272547	4.78107456978728	4.61716850452028	5.11936631842527	5.44387355551472	5.10503034483533	4.32288446569935	4.63623256954938	4.32044955259681	5.19300121051954	4.74087371275103	5.31066998033809	5.03622936439436	4.86579656765144	4.512275883002
+"PF4V1"	2.83139517393935	2.80680633766153	2.91251825304832	2.98863654828918	2.87764030034649	3.18718192804636	2.90277901133627	2.91853020142727	2.81901438197538	3.05756579373569	2.90742259033955	2.93527723351047	2.94931181231697	2.71662543740994	2.95900533550382	2.87764030034649	2.78959071468158	2.790566907794	2.87254463763772	3.01528420371771	2.75031895689572
+"PFAS"	7.18539760353725	7.36303104815306	7.60526024226857	6.80822929499401	7.54996531719749	7.16561078813745	6.92182313170618	6.84567832078825	7.09737032159588	6.97849856241831	7.37195431738552	7.16561078813745	7.02963545001435	6.9435058041003	7.08501462544098	7.19317492897073	7.05224635229932	7.40812187692115	6.74616606955129	7.44223901812062	7.20736520013448
+"PFDN1"	9.05012419403019	9.17223859030222	9.18113259425065	9.04037096451532	9.32997919370572	9.08054890629695	9.18563043705464	8.9443145991682	9.25707172664874	9.36281879007712	9.08127844948036	9.19296042963797	9.25148245445445	9.13350159313648	9.13725081096937	9.21196084287442	9.21978077287845	9.18563043705464	9.30052152567701	9.33904180925215	9.37000150788894
+"PFDN2"	9.15232902427294	9.69711843954176	10.1618188292232	9.68609431136903	10.1192746170133	10.0251040539762	9.5717190000388	9.63514399936997	9.68637343668455	9.64981924266894	9.57027770777035	9.5752165562426	9.71264582893549	9.63188671002186	9.78925761229178	9.73953828778818	9.53723714323762	10.1951866064342	9.69101835424676	9.68637343668455	9.58634114609818
+"PFDN4"	8.01388317407867	8.28174574882709	8.37919854908905	8.19744705139345	9.0510325507327	7.88208255041249	7.58673890644277	8.10990935414821	8.23717018793582	8.68921632207826	8.21419580601571	8.5327899386229	8.19384519317358	7.69904909486154	8.26105420169617	8.3013204069749	8.44073974220613	8.60007228985266	8.39940017815543	8.40658534936571	8.63779155940836
+"PFKFB1"	5.96864283149824	6.06299799663782	6.10499535193912	6.30206290765292	6.14505941677971	6.35728422373076	5.9721574541798	5.86163742167341	6.00990179220662	6.04537319572395	6.0516288421258	6.16284202670666	6.32772957418799	6.21286848823712	6.00933236546807	6.28012936612073	6.39686742527261	6.14505941677971	6.27308605069201	6.14814360157963	6.30022239085211
+"PFKFB2"	7.18611586451469	8.17958263486512	7.95966302783089	7.06192958681459	7.52771099244633	6.90651998294663	5.84933799328021	7.30122548359148	7.01714163905033	7.40015830847083	8.62566976174402	7.61603891795145	6.73093689954922	7.35702293078986	7.25485024146616	8.35987771539129	7.28913523212867	8.45313381385571	7.27902294782091	7.39821517222414	6.91415094761453
+"PFKFB3"	10.0266163916983	9.86427126823704	9.92624146305121	9.79668003055659	9.81241183630601	10.2321708904955	9.81385096827746	11.2014635733443	9.91968947542513	9.55828958123123	10.507959145613	10.2591899981301	10.2955848989087	9.85120775329096	10.3199975869751	9.84033797159533	10.2430175352623	10.016869288748	9.8245799944756	9.65627815643463	10.2113016812989
+"PFKFB4"	7.52442865227374	6.99680898324212	6.87673078916827	6.95106408198711	7.01388134034883	6.86434322403081	7.1710982049082	6.82446109514619	6.64232183008755	6.90686075530904	7.36597302727192	6.62458032257381	6.79714547949703	7.02334199207586	6.83242891153403	7.42031253732692	6.90240787902327	7.27972349217292	6.71088851677372	7.14632378636979	6.92392617937623
+"PFKL"	5.17495302933134	5.19412855805182	5.13484097534227	5.48220607620653	5.40941754477898	5.4996851473006	5.45573620503326	5.21906392635942	5.44829937818355	5.306433095416	4.79839797288313	5.24418279726165	5.0218664402425	5.53276817166569	4.9402110250076	5.06902183469301	5.08536666461042	4.69602121058505	5.18279314198772	5.08893414944924	5.15579469106804
+"PFKM"	10.3003050768692	10.5483918115324	10.7157678403184	10.3955108568212	11.1034479699194	9.92006394027796	10.6800956849618	10.5919446345443	10.7899434290831	11.0536895535757	10.0825568435299	10.8127247983088	10.5127313364143	10.1489506515231	10.382148958956	10.2432211855473	10.7845770208012	10.322417950763	10.3310414922752	11.2289631701886	10.8965995429372
+"PFKP"	9.65406060523156	9.84563933228162	10.0912545544739	10.47804662126	10.8456868486614	10.7124664605777	9.72447846476529	9.74511919336934	10.6614191265899	11.0783455321925	9.68467048472651	10.4353214918538	10.8005784367208	10.2552756341908	10.4981192207529	9.55632543280839	10.6850742398999	10.0411614486506	10.0705256064457	10.6426911787245	10.8325935067216
+"PFKP-DT"	6.31515691350251	6.55959049591265	6.75724659458291	6.61969840473883	6.81801384223069	6.58726668115121	6.91082106333059	6.74899004056719	6.83034882892385	6.61969840473883	6.25602054948224	6.40187585811287	6.88029495143814	6.61969840473883	6.9297488491397	6.18611557293146	6.78516114772014	6.01605000572309	6.69608127898995	6.87155755016747	6.84927562669841
+"PFN1"	10.9269149355207	9.88680003916762	10.0432066088917	10.0173801539186	10.1522203140788	10.5579285874451	10.1901929889717	10.1644357922616	9.76765261541069	10.2089385155239	10.4612237487849	10.2288524416342	10.1217574291397	9.73798139388858	10.0168611837886	10.5714875899351	9.82929752958083	10.649088295112	9.94131187429055	10.6895116768131	10.4781016494565
+"PFN2"	11.4305832301272	12.2313658951139	12.4682534550558	11.9706408023452	12.4333942373505	11.3442105808306	11.488596418959	11.9010475808931	12.1843562109386	12.4726099703129	11.927590163133	12.3947791871642	11.8315359559328	11.3567848149919	11.9157656852073	12.0903507762494	12.2765693399939	12.0785105175455	12.1397874241674	12.4097248703247	12.4663687799873
+"PFN4"	4.82252742175085	4.70699712492996	4.82797497554128	4.99922310163479	4.81415708290875	5.22565537425848	4.91931252383191	4.94616250384521	4.85812165593594	4.83927518584653	4.84812843445716	4.77950352195174	4.72873168755771	4.99922310163479	4.82797497554128	5.23790467253587	4.831084089854	4.61817456637857	4.88346246039705	4.79477148965381	4.62158072634282
+"PGAM2"	6.19840989508872	6.02363139566864	6.10288199305333	6.19840989508872	5.6969372655653	6.0534168998045	6.88687927628064	6.64300711737805	5.75305576359402	5.89536668966458	7.68687680758034	6.3880346903081	6.16656134684715	6.19109589150697	6.18722083948544	6.45535699067779	5.74745822824503	6.56705322083808	6.62157578656238	5.66719738462344	5.68252365059641
+"PGAM5"	5.69525493667322	5.82287033003888	6.00625553458803	6.04417918620482	5.73848362449313	6.18525411831997	5.9439608278156	5.79484862190047	5.85456260224203	6.03527694731628	5.6287984999584	6.12172155795406	6.16365537820715	6.13480691989071	5.62697578989966	5.84575288908715	5.74823977089287	5.51930474130113	6.2028958781697	5.67498508142543	6.18261337127035
+"PGAP1"	6.37826938641559	7.18611586451469	7.93888468286133	6.94757159295797	7.13888009910853	6.66505115359485	6.40113577300275	7.17713575503137	6.78059654584147	6.60654983312134	6.941659567787	6.96937136181794	7.05178386048281	6.70289216562739	6.94332433892018	7.05284175058091	7.03342217236176	6.94827825457263	7.1023037127675	7.44254628045531	6.71889789361008
+"PGAP2"	7.37681807927228	7.27239831881036	7.58957343718447	7.18419390131956	7.17407926114136	7.23935723523361	7.0548412909864	7.14140193698088	6.99116642423293	6.86957943827339	7.56603075150066	6.98829014287685	6.96558395864087	7.28188624944084	6.96126114403339	7.88351392734425	6.98501402870669	7.87105564095146	6.92538683000877	6.89762528022382	6.92264792883316
+"PGAP3"	7.73307942164533	8.11668131798394	8.4921603663305	7.77179767315316	7.99264691310951	7.85239825836729	7.55042580688188	7.90499803141083	7.67398055916857	7.66291605659248	7.95946689490221	7.817735365756	7.66567266801736	7.66671986397135	7.46725785007772	7.87847164365437	7.76299405028954	7.80817553869686	7.66377134733657	7.86176348295851	7.63990194868586
+"PGAP4"	7.91747962065277	8.6113585887105	9.58489739465553	8.82580714953529	9.6781600370079	8.95657813968879	7.74870515838368	8.35500409035309	9.00618861244513	9.58658323045117	8.70991122954939	9.46968087678328	8.73518526964384	8.20233306789083	8.99615146574536	8.98731048303951	9.4804182602005	9.34475350535439	9.03736612269095	9.68170530609345	9.62949843857315
+"PGAP6"	8.10599787254758	7.46326718285807	7.47496165148491	7.40782688578371	7.51615196732694	8.05629546930911	7.79490115967756	7.30598746439516	7.81243534274741	7.80170470062143	7.71636491248758	7.5547761164337	7.76975859764675	7.67472178283587	7.59854118544847	7.93161790237891	7.42239305472049	7.65093269654021	7.54369125355061	7.73333777373127	7.71907606839821
+"PGBD1"	5.53909281699127	5.6957520216842	6.0618570562801	5.67427211085264	6.09147841801626	5.66754454803772	5.09863063774374	5.2375781554892	5.55522498190656	5.94473801995262	5.73217435838222	5.50700866280281	5.46588595993551	5.29988233096392	5.71919212774022	6.05016193889574	5.6957520216842	6.20002595185387	5.58972974031158	5.80626915136645	5.76084368782211
+"PGBD2"	5.28141277776852	5.45124121372987	5.70727016116062	5.32721934595637	5.24458599102153	5.19266039886084	5.5941733389914	5.02915999754322	5.51832122313651	5.41527207379593	5.28232159530624	5.47465666701647	5.55108524379872	4.88777994906477	5.76469200158012	5.50218108522032	5.13292837047413	5.90917068171243	5.70491146600838	5.65081641950087	5.6374037811727
+"PGBD4"	5.15218229867283	5.36026473621228	5.81385925142884	5.4713057665068	5.59343304355649	5.33358936572871	5.15293852914864	5.01308409240626	5.83489135196075	5.61880162828917	5.12924180356751	5.50816853495466	5.5750178847328	5.66128153398499	5.55111796293959	5.36179653052672	5.11216327048167	5.24931334352941	5.6270042725607	5.89928115639	5.41054970353991
+"PGBD5"	8.41948440509288	8.49015911951889	9.07992497435813	8.80758687464065	8.91518630407859	8.6148394296365	8.58776016979534	8.47834269799321	9.37105728616865	8.70138002300123	8.0720058424625	8.50327271513066	8.84586626599695	8.80344752348552	8.83786911175318	7.68214233710811	8.56872923949015	8.53842526865657	8.68640674434466	8.8353178393399	8.67093075981774
+"PGC"	6.02611150013243	6.17007953120584	5.99727496792784	6.22533431638881	6.08462548424215	6.24091672689098	6.66150793290407	6.14832598468199	6.34001119194825	6.03776587227132	6.00279807459076	6.00740841844785	6.52966412228657	6.63931015535116	6.16338232955149	6.22710846478532	6.30025608597982	5.81964855867785	6.19172803156284	6.10793547399193	6.15118384995375
+"PGD"	9.5368363016279	8.27138810339767	8.29428759833695	8.35174120980152	8.68477006402244	8.39039096460332	8.77108776335229	8.89165764369731	8.43110344122503	9.15150533025277	8.68477006402244	9.00907405052816	8.32939582645693	8.24532847533983	8.28770663782672	8.75654426880936	8.68477006402244	8.74956423871589	8.73913098125958	9.15941583052692	9.04433749894305
+"PGF"	9.00645863897618	9.13808021972041	9.00166213334532	9.59291227657043	8.52724077613508	9.03651742137038	9.46720927150372	9.28244073662166	9.43475179176912	8.77960539344282	9.36463893198624	8.97986020994278	9.56585494794213	9.51704652374749	9.73114124147895	8.68061136713463	9.18224532761968	8.43120033210866	9.2420118121216	8.63003340653693	9.09823541687777
+"PGGHG"	7.40248793495967	6.65832450884879	6.84496929924392	6.80607301956509	6.34686761795727	7.74502461003016	7.10575814143487	7.23426277224963	6.87688433805547	7.08052925589884	7.06769220551436	6.86238751654857	7.12841524793175	7.35900007212638	6.82480860543315	6.72326497295999	6.86441774229023	6.80946699569132	7.24663386420221	6.66237402427022	6.77433661593505
+"PGGT1B"	6.30823870342848	5.78460277654161	6.3654771421692	5.86454874366612	5.76451729773588	5.42431612443244	5.88260581663861	5.86128301813767	5.74217669258569	6.11295593033681	6.75878060415813	5.61086933637876	5.55655909991884	5.63693880121779	5.75375916077959	6.49259363011988	5.39012428448999	6.0287446666757	5.85316872495846	6.11246077909054	5.84389592429122
+"PGK1"	9.92772992089857	9.83006233640684	8.53640976257175	9.92336215822837	10.6765470714443	8.80386003263363	9.69116101138173	10.1474188575738	9.78798043800194	11.0945530513385	9.74734118021171	10.8247160220881	9.7378247053418	9.03252181509331	9.69721190648625	10.484241529867	10.3159868628887	10.2550457382258	9.92333657303971	11.0474614529756	11.009446925069
+"PGK2"	4.668950957683	5.0610205743035	5.02577737223321	4.93668750649347	5.02417215177139	5.20465155584656	5.55890411844152	5.00879683974357	5.0987859834324	5.1024703665068	4.81143630436386	5.14373106651306	5.23505577449348	5.32237611852644	4.98882072806484	5.1743645617581	5.0987859834324	4.85270142934119	5.10609682384828	5.14165040112207	5.08737247251526
+"PGLS"	6.94655645552575	6.81037813477936	5.71979835978546	7.09875557714424	6.27225131441596	5.8969472264101	7.44955426325297	6.43815938523032	6.83394982031886	6.55192621270275	7.14117038214895	6.59540365874751	7.063589453602	7.2476712171379	7.2545767085628	6.87980403148404	6.52783305190587	6.29292546097992	6.98660064143095	6.62258563832198	6.54746991189494
+"PGLYRP1"	5.7786908248117	5.76137091101384	5.43638728465026	5.80084003889492	5.49008152550075	5.86077014037793	6.10496956899209	5.64855269365064	5.7965238468184	5.76320725182984	5.59351686969699	5.76137091101384	5.92383996950206	5.95970666849547	5.58932753567736	5.84209162825941	5.70615033286719	5.70386725956733	5.68822503881778	5.45124121372987	5.60632868301781
+"PGLYRP2"	4.26510101925838	4.16457764082635	4.50365524683177	4.15933844949669	4.39616480443065	4.85214820122956	4.71132883485587	4.22728567704904	4.48537443423387	4.10226260302498	4.11016443219478	4.30004385780474	4.17394975019083	4.50937999608161	4.02902103000701	4.37253480609131	4.14497257114791	4.36914299945801	4.68288462912059	4.02915120273871	4.21749257809528
+"PGLYRP3"	3.79340624972589	3.7002484325645	3.79340624972589	4.20609449850019	3.79340624972589	3.83741968178885	4.33134994837832	3.78204056874707	3.92503774426733	3.76649585251223	3.77862986303455	3.74597116244434	3.90262495879354	3.74235217017352	3.8120743078547	3.69834232215837	3.70582720076156	3.73510965709572	3.64332854984492	3.85318395626564	3.93803181381408
+"PGLYRP4"	5.75362796818445	6.42955973830882	5.86891778924553	6.43823395284805	6.27915335613466	6.22368473309633	6.48297963163203	6.2265161060605	6.00605001109985	6.2522687126559	6.21149639923007	6.36320890617584	6.25991031516092	6.46660921727225	6.37099792613531	6.54699698573516	6.38869416015127	5.81514459869198	6.20877084482558	6.12130380521163	6.26671032007606
+"PGM1"	10.4431569879464	10.2595367423879	9.91204508134925	9.82587710447938	10.0813964714315	9.17283128667209	10.4423174652395	10.4131555402854	9.98177985120634	10.1427448509623	10.0468077960621	9.80977801969225	9.65801534508343	9.74655593219175	9.85251582365716	9.8088208284219	9.81437458885189	9.92743153114933	9.86940291982632	10.0757325325571	9.64471039136434
+"PGM2"	7.10699187605305	5.30299663966109	5.83140929780411	5.7875689246763	5.35786177166528	5.24567789843075	5.53461088138021	6.32850485910563	5.61311604916819	5.39549132165313	5.63836766839146	5.45124121372987	5.43141547223631	5.34810385551279	5.56035088690433	5.43434711306115	5.37552319334013	5.34734242633565	5.47658832369262	5.7390751564002	5.77400412784992
+"PGM2L1"	8.47805572815036	10.2940928701184	10.6323271641281	10.3539438140985	10.5705928693484	8.74878100372153	7.64174420454018	9.72752573699587	10.2895644860176	10.3448564517107	9.84021256387901	10.5776391131833	9.97856633725571	8.7536979724716	10.2152195715231	9.36283396462655	10.3678284567736	9.88257487940237	10.5828097786955	10.2939020801234	10.1583478206456
+"PGM3"	6.13301678731962	6.34691240170791	5.91302019053726	5.76928657043282	6.12030126138497	5.64920149588026	5.2831713958819	6.29430090802031	5.76830792853439	5.94347749257532	6.46289671800142	6.10149658629317	5.59746068844486	5.37501828937736	5.64508586291976	6.49489546444779	5.86538474929239	6.50899934752039	5.95183227176443	5.94347749257532	5.80393832295619
+"PGM5"	6.50174964458	6.23729227655441	5.65859722592425	5.51141685141722	5.5941733389914	6.07126479486017	5.96450453673021	5.60599852538864	5.03537371903523	5.65859722592425	6.59361593165903	5.22986973094656	5.67780274555261	6.21177285158411	5.53230941985313	5.56170314770769	5.48602877117504	5.6850364015856	5.90153950827932	6.37177466253083	5.36724102242157
+"PGP"	9.11443912552276	9.53747576986482	10.0984123141367	9.699412268455	10.1404745375615	10.1996200461778	9.326427614687	9.41721362363631	10.0394945063588	10.1604442496203	9.33257331625951	9.90446306471404	10.0436587206359	9.79975407242692	9.86124412714338	9.30080140726206	9.9000499296059	9.81661253926912	9.7203768826041	10.0813196655848	10.0052303250144
+"PGPEP1"	7.06192136012993	6.85915931190312	5.97185301336054	6.78206430457926	6.30997109772858	6.21699543390393	6.91495651248815	6.79071832534321	6.84484197900017	7.06167125241587	6.76999874337968	6.71709181580962	6.93522718443046	6.86070743874964	6.66173641893536	6.78206430457926	6.77570312140487	5.67103993306747	6.83426602099796	6.76609976532219	6.79943794651241
+"PGR"	6.42476980751571	5.54354659154619	5.46651582407048	5.30529743919364	5.2789722960116	6.0008899771714	5.45145365640569	5.6216699841629	5.27903840057633	5.37867191981713	5.37288529659007	5.33070566881945	5.46651582407048	6.00378636843787	5.40146246196832	5.51403668859576	5.23773362656058	5.11140181840207	5.19333388713487	5.91423351962887	4.92790071341521
+"PGRMC1"	8.77417139742885	9.39658104681606	8.43777125278706	8.98696443210961	9.56182762076361	9.0592488516491	8.03968777891287	8.8837722399447	8.63715725360848	10.0830598358189	9.51124853757925	9.71146274092409	9.08452219549336	8.40939497003174	8.47782608876636	10.2150781139073	9.11439304346565	10.1382996533316	9.05542814970462	9.79608846132964	9.62717902260104
+"PGRMC2"	8.22856628102999	8.40199669056885	8.65124452374189	8.41794896894954	8.78355073070363	7.954231891026	7.90004695985677	8.37559482388202	8.59393668999403	8.77621973286629	8.50617881583608	8.56394595043026	8.26673305265264	7.90692736225383	8.31513247772435	8.49244998227919	8.52439158081229	8.58319080512724	8.43683260249846	8.64341208070464	8.52843149492429
+"PGS1"	6.81433398349944	6.38101302628548	6.60715164070051	6.4053701118802	6.2519218191112	6.79934310000535	6.20498069889333	6.45317605368681	6.23702598644481	6.63558817651136	6.75567446084189	6.41514183788059	6.22004470217034	6.03566089664516	6.38798607351681	6.72365341764511	6.64715212422141	6.51094222534013	6.60292028749333	6.38715220838702	6.23299574710281
+"PHACTR1"	7.80739431485602	8.72424215360713	8.48672423949234	8.77265816024225	9.08482463837088	8.62469983136775	8.1939592199457	8.95865539018951	9.39250888655068	8.98772387164067	8.4878721139859	9.32681305876066	9.05245528621549	8.6431961079475	8.85792207923812	7.56034931618572	9.11762094640758	7.47388427128885	9.10981609538023	9.25205738932051	8.51248015263603
+"PHACTR2"	4.40192381982756	4.44078150231082	4.44131839538101	4.82213090134772	4.98492281280652	4.18934712354945	4.21675620095938	4.5335274504883	5.17026537517788	6.34335017104122	4.72557547050087	4.72557547050087	4.71996698058336	4.28493198737106	4.54509553011861	6.49706381315567	6.67752035195814	4.83892357800822	4.72557547050087	5.47801988290167	4.4109280309225
+"PHACTR2-AS1"	3.36836135616197	3.68336205871668	3.62589837570552	3.68394230301522	3.48266337405364	3.48112086974302	3.57972162800236	3.59035006425724	3.64244440333094	3.44755866080465	3.46265946699375	3.59753808854481	3.64629239118827	3.62912949069664	3.7337025476972	3.59562478109934	3.67427989597117	3.4118128027715	3.59962192820903	3.35965447594704	3.61630404396246
+"PHACTR3"	9.93332574523363	9.39731376570123	9.19858029051973	9.44354828672275	9.26795853461152	9.5423988741392	9.48232330490569	9.69603106181474	9.14802410597377	9.04588565419757	9.55111837321316	9.2999927541222	9.23917490116497	9.33848060629286	9.24148156482683	9.47558259012087	9.36313183504901	9.69736373787931	9.53344113354112	8.98911367098252	9.0062103541399
+"PHACTR4"	8.14548074733043	7.95262892233244	7.49093462872651	7.7517573326506	7.09901862042941	7.01280579528438	7.81120236667198	7.90613804286019	7.55678947684343	7.41166369093342	8.25256625244146	7.15059627431121	7.35927769842923	8.05424112577101	7.33115546321314	8.28264014623287	7.41951017717747	8.26211157921353	7.58758182299442	7.49950376808046	7.47658606398313
+"PHAF1"	7.69921889350395	7.90100014477568	8.27751647371237	7.98493731966201	8.05035445981211	8.11220742651339	7.12233260390766	7.48987047895658	7.86891839886053	7.90120615388791	7.82948840562769	7.90100014477568	7.62644699661053	7.61267489813925	7.80209070983945	8.09018691155717	7.95855483281617	8.45278926377917	7.6414938855843	7.93871317532551	7.95727576948908
+"PHAX"	6.47192865559601	6.50174836473906	6.47467633644302	6.70349640483607	6.67054087485884	5.40013841229479	5.89646062491904	6.5424358679348	6.59878724095419	6.69072052051057	6.86549943891313	6.3685343919393	6.89153755307031	6.47370357229841	7.07533976259824	6.77737490386689	6.32609370924673	6.52792542161374	6.68612686857203	6.37614378154244	6.67486305041572
+"PHB1"	8.61159936398232	8.00856459016179	8.2869193365301	8.0544791252471	8.16073866770702	8.26815285029346	8.51425757032191	8.26815285029346	8.26119435110538	8.33881668627956	8.187063857004	8.22883879423064	8.10951463649807	7.89167622226901	8.35185254553093	8.43619651195452	8.00154077369711	8.81415238194383	8.26815285029346	8.92977634690212	8.21639718334769
+"PHB1P19"	6.32695154398785	6.01310688676559	7.04534429181047	6.37779138939162	6.22913856344197	6.24624496249475	6.29079601809376	6.21793015010146	5.76254906668525	5.66135731860277	6.54809057595236	6.01963322743034	5.80480532108998	6.11241990152458	6.10472548564975	6.34241938365084	5.91325627806303	6.61887061048801	6.12847089168474	6.18498288756052	6.15103968395831
+"PHB2"	10.6583617645439	10.4747434428039	10.4970843203874	10.2333970165689	10.6787225831611	10.5709453048579	10.3759427806199	10.3584258524224	10.2958781527054	10.6173705903918	10.5141505453555	10.4989147672012	10.2468485637193	10.3603129746175	10.1149917793014	10.6234695201677	10.4200644821191	10.4977480500893	10.4110532778987	10.5688361065585	10.4850306711945
+"PHC1"	8.32210671407565	7.95396944786845	8.41595981475582	7.85575781898078	7.73899180860837	7.6590198973109	7.95450887278054	7.97267308442307	7.85886183995085	7.45830871315106	7.98601223854604	7.48637454221569	7.82323442469234	7.85575781898078	7.85575781898078	7.64944692430398	7.81629964184775	7.97403988692155	7.77827380856226	7.69344080883424	7.48898819668833
+"PHC2"	9.9931313764007	9.58544458028051	9.53391208549108	9.55459438832317	9.52553620971492	10.0735631798742	9.66131799638613	9.89839559078044	9.47743861917153	9.57278488489242	9.57871537802794	9.58479687816125	9.25941711905782	9.92826155656757	9.37061274640231	9.97840290929425	9.65677627420929	9.903259436807	9.45286484546645	9.62657189424276	9.75354535968041
+"PHC2-AS1"	5.09852638285138	5.34844031818799	5.16304009926144	5.43592948949959	5.20496157442053	5.18108053984575	5.19898244932701	5.22777164154838	5.3973348872181	5.56675901213277	5.19898244932701	5.49534230773543	5.58576598212383	5.20217692015959	5.51134628497809	5.1387097681492	5.57592914152955	5.47810711142354	5.69010871481644	5.11064062937749	5.36937915349225
+"PHC3"	6.49136219892789	6.94580478412428	6.07611067216536	6.4180638999876	6.15409073982213	5.884068313546	6.587035449081	6.95692436993611	6.53182688707558	6.647004635592	6.91730736548265	7.18759054167583	6.30101988197096	6.09827079991206	6.58124776013559	6.9795395059315	7.07280429229135	6.34728319712385	6.70035689011715	6.45716503986131	6.55004446065637
+"PHETA1"	7.21719400865055	6.97680464159968	7.0978831747747	7.25492115170679	6.98068233446963	7.68839602213146	7.8305044885829	7.01257042744732	7.43593367735938	7.11541897349448	6.89559781885172	7.2210707769658	7.47664956583336	7.67067695993821	7.38276529976216	6.86696319154784	7.04069456104297	6.77973047750913	7.25159667403806	7.22943393853573	7.03707099189609
+"PHETA2"	6.8135542779583	6.05118915500689	6.28364486157105	6.2421235357764	5.92074881620198	6.61140050796144	6.5525898911813	6.09465944081275	6.23432355612568	6.20958867201295	5.95709910184222	6.08939088040193	6.58257335456387	6.82893056796482	6.2315899478546	6.02488411843623	6.44079480289785	5.9721574541798	6.38340007371235	6.29079601809376	6.50318240181267
+"PHEX"	7.24715044231119	5.41762575235725	5.4725441492985	5.41142060760588	5.5250787578752	5.24746159236581	6.24022692999542	6.25975585486541	5.72219700346607	5.24063376134991	6.6959010851664	5.47487345982719	5.12778771517193	5.4854266068441	5.54857160217107	5.85598366209157	5.1154787208076	5.34810385551279	5.79385149400856	5.28629906606541	5.19492782362781
+"PHEX-AS1"	5.34083434336704	5.39266852236687	5.78138996463038	5.07214181335127	5.53837100051337	4.98516953542272	5.26697872919708	5.20558265643697	5.2959536581184	5.01222911010067	5.2959536581184	5.40071444229464	5.29756212914986	5.19803370679864	5.31744107241017	5.18487150701753	5.28420458668869	4.81670345019478	5.18460513517932	5.2959536581184	5.29766784642656
+"PHF10"	8.10653758032366	7.70728431109266	7.38745463511463	7.90446966666242	7.39215773032369	8.32971556100084	8.31175490003509	8.38454475029342	7.81699212870701	7.58535934905973	7.7043562049058	7.41910882970235	8.22714747493703	8.14755892547381	8.18028588676664	7.98761078626325	7.85433404428356	7.95093649227682	7.80905090201014	7.85433404428356	7.68064792319694
+"PHF11"	9.68312266027988	9.19402367109523	9.27314379694621	8.88737955947263	9.04771223955415	9.47555551088929	8.67389934333626	9.20179256671339	8.87388376518266	8.95989064570182	9.50391461410613	8.92285032090277	8.45787477993654	9.15910519463597	8.63765835825494	9.44542170838137	8.60888529580229	9.18260378248301	9.00964438387175	8.79572309430159	8.85207427542572
+"PHF12"	7.79578700801401	7.849378173131	8.14238778490475	7.72379692441531	7.88613639147434	7.6435662285784	7.38333094524663	7.33266242901504	7.19223571362352	7.48516076559967	8.06612211585562	7.35281788026852	7.68074564425235	7.5575387768401	7.21618676528199	7.82872411373221	7.6684794016411	8.43565639739573	7.15704777499168	7.44727359575857	7.379857819223
+"PHF13"	8.58171766771557	8.18017638894484	8.81579746071961	8.26224005603279	8.55727595849687	8.72446216394361	8.00695114305548	8.59239627637005	8.2247442861302	8.26345776539372	8.35636441003142	8.37380564105811	7.9541506221053	8.13997874947721	8.22554000260469	8.60223551024884	8.28953381477911	8.81746009312261	8.05758446732709	8.36753379494132	8.08192808105176
+"PHF14"	3.42056953229353	3.63509343987893	4.22901660140875	3.37768001125446	4.47360450341443	3.22089597829385	2.81300160836195	2.92947970487465	3.25370861011786	4.13920979417742	3.83487478621082	3.68677898483993	3.44656643136189	3.14639237916652	3.64005639241888	3.58662002621608	3.54687376581567	4.18637251324604	3.50975317132338	4.12738326955879	4.03879343030735
+"PHF19"	8.33803316238489	7.83044058103624	7.46948940622288	7.89842100373916	7.55502587791501	8.24496662064225	8.21404796789594	7.94036450909949	7.76475422607908	7.53469725991467	7.9571792077356	7.70264920856307	7.67616710077268	8.22898552202191	7.75710671470524	8.31557060786089	7.83303722757677	8.58888770592831	8.01812575144543	7.40206335375935	7.59407427690219
+"PHF2"	8.81584920284609	8.8547435017151	8.75955976861699	8.69682324032896	8.5679561083207	8.69484441972528	8.80638973043418	8.62869917658887	8.47961253535348	8.42657755739422	8.97320240322429	8.34727934651167	8.64113143243688	8.73358345321062	8.56707418489559	9.09662391340416	8.6646817086231	9.10265529798706	8.55274449581864	8.26694989911588	8.42210327292252
+"PHF20"	8.62775581908373	8.49753192201568	9.14788651547674	8.34262465584773	8.92108104502411	8.22260058546964	8.36268125330813	8.84893069293554	8.87642222350321	8.57494221983947	8.91059723282626	8.78228320778075	8.32259957421993	8.28219611748059	8.7389171359998	8.72290971450752	8.83912420958647	9.02196728027852	8.74455079055112	8.77427470473128	8.59701291710286
+"PHF20L1"	7.41715183660706	7.8364251864102	8.30622437089072	7.44765626886425	8.1115402202109	6.54809057595236	6.80164690749399	7.53146887585416	7.72603682968761	7.55067989833939	7.95344057254602	7.92896915555441	6.8698613821173	6.79672944984705	7.2705543170629	8.05828258976291	7.60456815671689	8.12144050459914	7.67673281860976	7.92021883577402	7.83563793051857
+"PHF21A"	8.97930926493138	8.56489806072744	8.57349002497908	8.52553796059205	8.18486914931738	9.00305422826862	8.96466963956387	8.92800766402734	8.67054092918458	8.1524365882423	8.49683066070831	8.25791916785255	8.61815730543754	8.70456308655629	8.90268548892404	8.41648487799055	8.50252468518524	8.81760943896509	8.56571474914738	8.29124370492823	8.16040651519752
+"PHF21B"	6.58091701099825	5.39010112105908	6.0138199316409	5.9317358899474	5.39060306792964	5.48650942242754	6.41859038400711	6.65725376187918	5.72457847369389	5.06863921680985	5.63988197779923	5.34738413665507	5.68519644295041	5.96946857294836	5.68519644295041	5.16577196139858	5.79362137595844	5.57799857238469	5.93554368571928	4.87827319282492	4.66761053269883
+"PHF23"	8.10356968585932	7.32571627287706	7.16456711872901	7.61559098647527	7.95391800067847	7.32809752909474	7.64590578486627	7.35756917863834	7.78397800131247	8.10106958455253	7.45879064199319	7.49289060859253	7.49139597580943	7.42786268132235	7.65194304889782	7.71026786494577	7.52966330069879	7.65689417386088	7.56571705917144	8.24739973472006	8.13874963749414
+"PHF24"	8.1611419760745	8.92869115948908	9.36841587521973	8.84609158754966	9.50123681266854	9.08537305390436	8.40980844765652	8.78276705884586	9.34860242791376	9.16421978560877	8.34092013881151	9.36261824119931	8.85388927317176	8.45033125616983	8.82409326591884	8.35799913455353	9.38945535662472	8.66131289751933	8.6330174239423	9.54654087713057	9.36420070590475
+"PHF3"	6.11822422689878	6.12557858918457	5.85230378642601	6.34433120599306	5.85455689652152	5.75613983690779	6.30790305733695	6.75674352555746	6.50586663827632	6.13170014120957	6.31408042942754	6.31774265897743	5.9991428189449	6.63260265082295	6.10770753087399	6.18282510500569	5.95400214569664	6.08194761916617	6.4082264709203	6.14078423514314	5.46194256989732
+"PHF5A"	8.52492222456248	8.4882950011013	8.55429155036305	8.4192923066556	8.46997824599354	8.53177643106213	8.27554707144337	8.42690120715432	8.42765147357109	8.2926467455949	8.65090273907061	8.16081418825727	8.21940036849184	8.58964220463037	8.77546109203775	8.61375380397854	8.05394508616088	8.92642089030734	8.46079686817819	8.09624683170341	7.96392696694084
+"PHF6"	7.95680910468665	7.92864708610573	8.26968870990794	8.45167041259024	8.4007702274866	8.13657551657536	7.5247295454083	8.06648620115543	8.5185246938942	8.03052263242806	8.19685012994625	8.05682383790874	8.44778112867264	7.99793429172816	8.77271199036866	8.3308321138326	8.08535715306409	8.38731594287463	8.18655725715937	7.74367872468084	8.19038397235953
+"PHF7"	5.07063052593274	5.22387765688632	5.3902561961004	5.34484776251144	5.0750338108874	5.43203143693125	5.67277610332642	5.10015409862453	5.22551229005833	5.37119293157221	5.07439999366099	5.35372406196328	5.49326624523019	5.73458833531939	5.18743741702699	5.10105927022979	5.25933259883504	5.14019217873917	5.54653987677582	5.03856630576774	5.43970921760408
+"PHF8"	7.13766377095846	7.0665901805273	7.18816779606828	7.13766377095846	6.85299725252247	7.44804108082043	7.19000573805606	7.01722314480783	7.13766377095846	6.73911201510731	7.27945923789801	7.0038208925016	7.16469820775715	6.80241022662295	6.97809786790602	7.39503328738949	7.23478932277586	7.58007497343733	6.90411072957628	7.00704717313043	6.97735148667333
+"PHGDH"	10.000413682551	9.77173770400495	9.34768763564058	8.89469196862941	9.18370423613434	9.68746873563592	9.76179881880103	9.51372229642457	9.12991148032902	9.19639796683132	10.3735291964092	9.29146661494612	8.87343103970368	9.36534272168254	9.23658684393009	10.1255556454661	9.03799389997258	9.94060914092944	9.4585252265414	9.1749530101613	8.47990251281553
+"PHIP"	6.42383818252825	6.55782969065867	6.23696424216786	5.81851185092633	6.29187582919333	5.63642959770801	5.87275755679131	6.75010254568895	6.30848971448756	6.11486032749086	6.63705848334814	6.42998854936643	6.29525370841167	5.6900296138608	5.82114014482045	6.79799402092496	6.25772103413814	6.82451604759435	6.43629332490256	6.36991564208937	6.51621166815714
+"PHKA1"	7.37068420732408	6.65148123200678	6.84162642473434	6.73317899584138	6.50937603509196	6.85886167706388	7.65785479163107	7.11300636905261	6.73317899584138	6.28022849751453	6.5641531929749	6.31437854957831	6.67026086071304	7.16518663644503	7.03054428281526	6.47971124827018	6.70390517549844	6.67649289764383	6.6012981821423	6.7564626962625	6.220643354178
+"PHKA1-AS1"	3.83253311902995	3.83227427824021	4.15208892540975	4.27796981192471	4.20207847270427	4.73603488769958	4.03467628534419	4.07068775498996	4.32355622636424	4.15507501354377	3.94009024942836	4.10871280286879	4.34819049366704	4.63707232909114	4.12240171046199	3.89863316751437	4.10270752492101	4.18861634911045	4.30269747151493	4.15638377124036	4.15638377124036
+"PHKA2"	8.840001288974	8.35354267855773	8.36106923135691	8.15810543027801	8.13624868404009	8.33172573439984	8.29458519288547	8.01405460572276	8.04493066536752	7.98345428126453	8.45998995354314	8.03485081683558	7.87246847170005	8.21245825510725	7.86571506593305	8.50727336512351	8.04390700902641	8.39585506849856	8.32054357362337	8.09497867844252	7.95694310904122
+"PHKB"	6.77424000632577	6.65365821333002	7.18611586451469	6.12665499883691	6.44620043156737	5.66320549051392	5.88370386014125	6.5932608638709	6.08960886666944	6.21604335493106	6.31464923409834	6.33531806047244	5.79082537371615	5.74403397922012	6.38493769570262	6.59027422420961	6.37424492388106	6.77877136421111	6.41911409753781	6.97619973297182	6.49076308425205
+"PHKG1"	8.05697102798593	7.05539103661236	6.89458250411177	7.25895622995988	6.66126192530605	6.60136111498897	7.09608935253017	7.60104298402146	6.71404124640658	6.94129658467172	8.10974318691891	7.44368519794798	7.02538369810096	6.84472013997128	6.34723829006081	6.98770703833688	6.63514396118406	6.31256632744119	7.08154479067779	7.2668304507387	6.97444860858369
+"PHKG2"	4.96435538825911	5.04862880915427	5.32306330171809	5.61487362380396	5.14750779256488	5.69653843607202	5.78146485982425	5.12412882071819	5.5476051830697	5.24357024663664	5.16914022016659	5.28009990744942	5.65724316811554	5.71605040296007	5.7662511083396	4.87936380402192	5.384966012184	5.24234502728975	5.29751105684873	5.23466402347151	5.12837435047335
+"PHLDA1-DT"	3.53563885221081	3.55830303354867	3.99501225408443	3.47115147475991	3.88509171534632	4.06416704965133	3.38225434117479	3.46918522960614	3.46495699865504	3.48424488686043	3.53563885221081	3.58289186982649	3.57972420118324	3.70943162209509	3.50446516114739	3.40878261215568	3.43436298564926	3.28956617765524	3.53563885221081	3.55363895899401	3.3615685880859
+"PHLDA3"	8.29424186901774	8.30581301803402	8.31187945859234	8.51070769700056	8.3652286706793	9.14612237426076	8.61136867572573	8.44102160879085	8.22845576541895	8.27439437500309	8.68693848035607	8.42666442999054	8.49197416012896	8.64883958450941	8.33362548621868	8.65265468867963	8.41182776701702	9.0048840587137	8.36813612195333	8.40658534936571	8.3230286841227
+"PHLDB1"	8.81847846453928	8.89696587685366	8.7491277137479	8.52414586885055	8.25806457834382	9.0413755164045	8.08588873316209	8.53667683694102	7.55733916480216	8.2722052329597	9.57815504473704	8.72882603921543	7.8141085805181	8.78697461336356	8.02560488113839	9.55505950403339	8.49015911951889	9.75470032213098	8.80552818092959	7.9618943372962	8.61576121695933
+"PHLDB2"	6.39062488257076	6.24336217795043	6.03131400572185	5.24855345577188	5.75233960438774	5.60344917582506	5.08052538773411	6.93367860884704	4.66846867066809	6.125736222219	5.83773891594168	5.81823369500044	5.67052758414146	5.8811741016291	5.33330654172518	5.10594989127265	5.98342372043962	5.45025734402331	6.17741130986971	7.47075703324573	5.78599344375788
+"PHLDB3"	6.85173199368729	5.82320137115365	6.62178235478346	5.97753048666733	6.19292347272235	6.64589127045819	6.40908724550121	6.59010771266948	5.95847060877255	6.05447877762003	6.14796780806433	6.14221801493668	5.87974272841236	6.49333208782021	5.57009744057578	5.89482584616545	6.14796780806433	6.01144684083039	5.80641495302727	6.44324000541503	5.90932724474771
+"PHLPP1"	10.0201868229221	9.84095091056285	9.5685947298329	9.57924006263238	9.47218815927481	10.0618668396345	9.68572971644383	9.44527389508737	8.81352384309376	8.88533945181149	10.5045495834791	8.91277988658404	9.42487764072228	9.64524055078058	9.28380766403926	10.7093885487543	9.27493225244778	10.7339195774696	9.28998618971164	8.93906515285088	8.62647669681982
+"PHLPP2"	8.65275478244793	8.91546255313621	9.10780707064793	8.85844213107224	9.07111651888031	8.54610020577237	8.46878203382469	8.67168601246154	9.15660068737122	8.92471004684174	8.36144996720939	8.96395635772815	8.73165407810894	8.59572368186368	8.88827116573833	8.62630503227973	9.157770743525	9.00849807058843	8.93973709543351	9.16775724490685	9.06615218113334
+"PHOSPHO1"	4.98093695807708	4.97760443964344	5.22600630899144	5.08511755003522	4.99228543091333	5.15421464215208	5.26265897708434	5.04878916783872	5.0398142227767	5.30094526489343	4.94175945088323	5.30764945162073	5.39667340270878	5.35256380483407	5.15421464215208	4.88090282352608	5.34248292679018	5.18201340781856	5.124474127512	5.45124121372987	5.49622528305497
+"PHOSPHO2"	6.1091928006396	6.1091928006396	6.05994896728219	6.17903957183254	6.11470131922185	5.33358936572871	5.57893277957216	5.47395090621817	6.36684748168555	5.9841263243859	5.9841263243859	6.19132885099147	5.31848094013184	5.47662659319651	6.10437598712806	6.32971888448023	5.69310262537656	5.92009385988066	5.6355314626734	6.32857586378796	6.03606656250341
+"PHOX2A"	5.93125718101043	5.82287033003888	6.02007042864002	6.2423797010182	5.82827782789518	6.05791479833662	6.65903119489384	5.71011156651643	5.93865058965092	6.12320636864339	6.10770753087399	6.2052267128263	6.25412824944687	6.13437172094886	6.16310465749285	6.13437172094886	6.11137054430359	5.78617945977011	6.07794512458699	5.83905200995217	5.95755989142129
+"PHOX2B"	4.78082432176166	4.81197796504746	4.38953384817041	4.70681987541169	4.62987041952578	4.59185932380493	4.95257032394125	4.75968535565394	4.77925082925641	4.78367038618959	4.51176850388797	4.72567846692943	4.8171384044487	4.90783299778059	4.65772263054407	4.69566731959168	4.7301358916866	4.56915752479498	4.63552056207491	4.72671622067971	4.78566345909375
+"PHPT1"	7.71912696334812	7.48730519052256	7.95114728566376	7.5857238812094	7.48466403105162	7.82867023027505	8.15606346551466	7.76401750558474	7.71312624946574	7.6119392614131	7.72453420015201	7.43507627291899	7.56845356144227	7.6130013087934	7.72407552623846	7.53105777200954	7.27924912547691	7.62793937487633	7.61521844098219	7.54841598614087	7.41754240295695
+"PHTF1"	7.06277577684002	7.60137407699639	7.10370222675336	7.1158914335836	7.29290004248905	6.34148989180196	5.80032019114728	6.58433870852555	7.09561373042661	7.66813148793638	6.93566088054838	7.70641492276403	6.88522030519795	6.36339716341912	7.05376854550199	7.03603482756245	7.32229011217235	6.77681314069241	7.06400379110006	7.65699097651143	7.73560093748411
+"PHTF2"	4.6904627541472	4.78057709465034	4.45575213078922	4.7402022658577	4.9470519616688	4.297255875007	4.21243673798494	5.29902025927227	4.76389995855336	5.05852978111665	4.91937081913161	5.84856054488472	4.67462186596461	4.35002210255404	4.41978372788303	5.19500070144198	5.21934541732779	5.01726407358592	4.6588025396105	5.06621307485216	4.75122471119271
+"PHYH"	8.28930702800954	8.77354724029461	8.55809017836986	8.16002295137232	8.93519546283408	7.67044665983084	8.62786527755456	8.55809017836986	8.59816818980717	8.88622767534715	8.68721428065954	8.51687470154193	8.55521738200802	8.2416053691624	8.59600903336293	8.3920490144983	8.47357244705268	8.95517954791137	8.5436583244517	8.61204470450001	8.30544081671288
+"PHYHD1"	9.28904491800118	8.1091313438559	8.02052216666609	8.22792260180033	7.86422401586242	8.15683416446549	7.88444970195949	7.87214728820918	8.12870937834931	8.62433914496274	8.97046591252043	8.60775740628239	7.83399422229516	8.44285224528076	8.07353678947628	7.63724988200896	8.11749101354752	7.86828201872704	8.44173433253754	7.70809432920376	7.74937572812113
+"PHYHIP"	9.66025654776767	10.4354997055352	11.1161803816028	10.4008351488742	10.889266610149	10.6801759789276	10.1646075697237	10.3517610534092	10.6884151276886	10.655285988335	9.80387045210608	10.845612671253	10.5181316983547	9.9895140260855	10.2017179471583	9.47188114847527	10.767496987641	10.2929265297272	10.2883224949336	10.7833496191382	10.492063061855
+"PHYHIPL"	10.8551185950162	11.1505612451386	10.5606343739376	11.1746857367981	10.9706948630054	10.8589806398194	10.5647920751864	10.9268756211673	10.7816209477502	10.8495768220002	11.1277174852688	10.9592995490596	10.9879512937702	10.6722623579199	11.0424026697997	11.2409227199991	10.9342219071093	11.1580298868401	11.1829953851271	10.9101724020508	10.7457404834144
+"PHYKPL"	8.32830590511424	7.70871554286297	7.59507742622534	7.42468262082502	7.21291390898212	7.46292564580987	7.35810492696811	7.6193644990942	7.09084912621354	7.52252657733859	7.96251829842973	7.30557471563855	7.30452016479934	7.75186998574987	7.22533337710718	7.83582386723299	7.28682323886732	7.59803991626244	7.80675282254955	7.42361296471888	7.52840645533324
+"PI15"	4.92429094364095	4.25964472169835	4.55835696362465	4.43186639329049	4.49938155376389	4.18945685495238	3.73333767101765	7.80303877620895	4.78877588572052	4.69663078877543	4.20573671689231	5.76123657941012	4.18015976311125	4.15773337227984	4.35799786890055	4.27950245439983	4.66718988379469	4.74191147467613	5.23966588526917	4.46166720334248	4.95943014296011
+"PI16"	8.16038251765708	7.87441833907149	7.98576596365854	8.02714451555745	7.68163075448344	8.20088639519038	8.02891264804006	7.80776128361516	7.93200675689948	7.90434888392339	8.1241529391073	7.94391840168563	7.90434888392339	8.15041408455484	7.77252656986202	8.18492877156683	7.89674144937128	7.67536079097415	7.85470139958065	7.90434888392339	7.73411179765859
+"PI3"	4.81556976354109	5.04780942317507	5.15876774906517	5.09122390903668	5.00453380741762	5.32109200363587	5.73321488056566	4.94263687897272	5.47487404726755	5.28951573168079	5.15876774906517	4.87438587240375	5.03574586730701	5.43300576023898	5.23045797676844	5.0028175937681	5.12699308931059	4.8205284716302	5.3660023829805	4.967880606317	5.17146253930842
+"PI4K2A"	5.36070023367538	5.32655626498636	5.21745349081357	5.42240880432495	5.19258735913729	5.42240880432495	5.31129645761194	5.52152523776695	5.93136870834301	5.31742801945821	5.41879146955882	5.16202384647672	5.58125125841132	5.40468683339658	6.05534322405382	5.06736825031407	5.58587072773023	5.05873414298967	5.41044343150959	6.19836156460133	5.67547159205929
+"PI4K2B"	6.70290759526632	6.35268740777212	6.32341834486928	5.95450346718003	6.18438552089703	6.22158114807813	6.42955973830882	6.32341834486928	6.26148182577324	6.59361593165903	6.67545323193369	6.29501851199391	6.2397306659228	6.2179080962924	6.10083519348246	6.59589067403904	6.047094227386	6.72887615716879	6.58969332705681	6.14818488082837	6.12563109525635
+"PI4KB"	9.12781919024552	8.75324746776481	8.77024169838113	8.46200091618875	8.94005798396289	8.90376268750273	8.75619605803745	8.77949067686293	8.67115215681016	8.9315998311119	8.93869723577668	8.89418969151475	8.32178777657673	8.39810443817638	8.4002713960815	9.11609507483711	8.67172443620957	9.13932884375684	8.6395431114064	8.9786900090214	8.79138202986688
+"PIANP"	6.16482069531808	6.74487305812449	6.91780346551017	7.01357977593212	7.13337865486169	6.82100392231751	6.5387218867848	6.58536677665545	6.86118457162343	7.39688961274433	6.48276164397196	7.62921417932628	6.91438709392853	6.63953846642977	6.14330309354801	6.98741877953489	7.28787373661038	6.59219254372013	6.6995997607639	7.44614925460347	7.43519458120671
+"PIAS1"	8.35902331699336	8.47227501356539	8.62901195159928	8.32493031146197	9.11448308085087	7.79663394166606	7.59852355178632	8.88147991010869	9.12313746021988	9.12489554134384	8.25674300846037	9.24869919881456	8.08369728120066	7.67617875923686	8.51532777514419	8.51017065933889	8.78143361881962	8.46144019454003	8.61104867050483	9.00446763401028	8.59656754552562
+"PIAS2"	4.38680093804999	5.18973553149076	5.9762840905082	4.27041063730647	5.80233188360727	4.81941569328022	4.16374692672918	4.73585845541394	4.7282951128257	5.31168012661367	4.77715073330633	5.23077257823085	4.33397879770364	4.22430731718611	4.39527893095042	4.45098570805465	4.7806492335218	4.89759753304801	4.8007411786364	5.59082095464667	4.83711755052777
+"PIAS3"	7.517290323811	7.43493648035456	7.79270732242217	7.20216822796373	7.56377106800711	7.70335714124438	7.31974983558325	7.44622557453199	7.14641881677567	7.26883216488626	7.62406525822222	7.22602342303528	7.26618399635395	7.28748597170947	7.13815155875253	7.29288116181355	7.24143090054687	7.7839179741207	6.8162723126608	7.32751702885585	7.31990159416473
+"PIAS4"	7.37219280408716	7.07129944486271	7.09355988215642	7.19317492897073	6.81269072938529	7.37533840065181	7.21843201560669	7.2529029040093	7.01859926918643	6.40886614132808	7.24616372370412	6.91215169408684	7.08975769067068	7.29080731260279	7.43584387432103	7.33228778082676	6.94146879783934	7.44111935147624	6.96754274794622	6.89122858435423	6.78192565463552
+"PIBF1"	5.68703483333215	5.49867792826969	5.69446597104296	5.8170919504948	5.87518513909321	5.42794315034561	5.12746650795198	5.62933991438846	5.61003892399244	5.64534388384814	5.55675675075615	5.8046063198732	5.54606399690101	5.2926261347509	5.76293415231045	5.52195110120195	5.49649042917702	5.95392332243306	5.58028832364379	5.65453394224058	5.56035088690433
+"PICALM"	9.34795588227782	9.20295187562656	7.06924186914875	8.78502217846593	8.6956995432049	8.27246243896937	8.42004845782022	8.82359687505747	8.27944991283334	8.93973709543351	9.32890492745431	8.62144178445728	8.55100970722089	8.29401619984274	8.11451785422802	9.90197944460141	8.67381764057038	9.41379241092655	8.72338836245235	8.65221644817785	8.79371343508227
+"PICART1"	5.41082565984526	5.84802134854072	5.35937988821561	5.7637414832805	5.73082384604566	5.88318822492825	5.72426125415584	5.79117906545713	5.95090440191009	5.85037860556996	5.59431810773896	5.72778149302959	5.81976178313278	5.80418714018554	5.66568093780098	5.69820436094524	5.84712898213204	5.4311805496503	6.18605875179769	5.73776257239958	6.03663700804988
+"PICK1"	8.04338628655228	7.94755983952504	8.2753374383164	8.30049037906972	8.05713274556203	9.03162100027571	8.22265196452185	8.13604595370651	8.27204030164621	8.20105100188599	7.96154985700236	8.16237369656678	8.36471009680167	8.63206916797655	8.28916883635859	8.07491170583624	8.25831441816171	8.46126311998492	8.17634522719647	8.17634522719647	8.25293235162346
+"PICSAR"	4.28741750454622	4.45806123058456	4.23894984158145	4.61552486600255	4.32150576753398	4.1025995218825	4.44378517586388	4.37399566201264	4.59850145624615	4.42828630715545	4.29073897325086	4.33801516146189	4.5318410473527	4.23827600574347	4.37977368489701	4.84343332601549	4.3219491679976	4.32862415062872	4.47999158095433	4.33844436933875	4.37399566201264
+"PID1"	7.68721017609055	7.48921005209467	8.14721841542766	7.78383406650575	8.13269690582457	7.39460248073598	7.7254231636564	7.83692047214397	7.90831462492784	7.95615928500792	7.32972936805901	7.74915660086353	7.89120859140406	7.09257012678747	7.86791215355756	7.58678694168018	7.90550034410129	7.7581094808403	7.72580551315795	8.47754320571314	7.88046587907725
+"PIDD1"	7.18611586451469	7.07858327744619	7.54951092250652	7.12203628128886	6.90680620338407	8.10360406729997	7.36982389943392	6.98446137704197	6.95048063778961	6.85413464041188	7.40944284171757	6.52952226966546	7.21578552289728	7.4863286972897	6.97176703085985	7.31738805815582	7.01421110491625	7.78744348705279	7.21601268779627	6.43857260483958	6.85413464041188
+"PIERCE1"	6.34475556001448	6.4409609526349	6.81228862785913	6.63636807590223	6.70514659614306	6.84405677916513	6.58878899562669	6.28224336352606	6.55387890485633	6.82163637745874	6.33186824690655	6.46132831063774	6.68103890065204	6.81072322172048	6.60478404614857	6.51297518984807	6.59571760645032	6.12636579254565	6.6432756781248	6.88678728171805	6.74890054932232
+"PIERCE2"	6.14505941677971	5.51698186140246	5.52125300884733	5.59724846650422	6.06288188055497	5.50502593235271	5.81955682975527	5.1332557094189	5.97869432322653	5.96819106756718	5.52356874362018	5.23765512237436	5.31031264278001	5.6536186479724	5.50087773913091	5.22595554200673	5.29930589749004	5.56980918293239	5.81955629789808	5.79253508960859	5.38957022161989
+"PIEZO2"	8.23975140176176	8.01083121345284	7.5693034225848	8.32410090081778	7.82332433372608	9.77307004025699	7.87710906749617	7.8212619045102	6.93580815847313	6.73061109144485	8.60225368525242	6.49757692295279	8.12538356566613	8.9281765529904	8.02262177342498	9.49645690169338	7.54519456306579	9.79895232198521	7.84535739503154	6.72457349763031	7.61083049805962
+"PIF1"	3.88694370955351	3.9264519853602	4.238118379554	4.07605302923454	3.9127426054347	4.35080461324031	4.25376175690204	3.71394506052461	3.9779197552041	4.03979539245002	4.13270928875098	4.22359457777251	4.26042092613362	4.07605302923454	4.29270310831293	4.12173249350804	4.08760134636187	3.68792425525022	4.03585968940857	3.77947390030451	4.43925609300285
+"PIFO"	7.379509808788	6.72388152024306	6.37481285500584	6.47669464896094	6.60354051252405	6.08361367529484	6.230922681771	6.78455909971804	6.35113427817394	6.51228248063576	7.90201938407716	6.98001344276076	5.85973718624064	6.22979563276114	5.94681918439467	6.54146808189856	6.15791000080917	5.98737603366594	6.8147926634958	6.83663924257027	6.41497192410233
+"PIGA"	6.36017278949439	6.17000983180205	6.34441528700406	6.00341845259892	6.1274938245776	6.28085658492164	6.13301666786596	7.18815158750729	5.78172836073037	5.54564225052641	6.62381864799495	6.15002590186547	5.79976601284619	5.76993591947803	6.15084262815399	6.75539243580955	6.11455485153701	7.0493813956261	5.88448340762066	5.77570446399743	5.95751499772172
+"PIGB"	5.32040833218734	5.62983766857835	5.47754423723061	5.18572128860119	5.58342781016225	4.93391061047856	4.5817524081814	5.26590355278674	4.96006430656518	5.49045721196104	5.64202171195594	5.38158689228002	5.18642903541326	4.61763006737286	4.83851391392687	5.60409517373632	5.17190761637578	5.26590355278674	5.6038505544098	5.6545712205523	5.43604477956549
+"PIGC"	8.10227359194125	8.06793729873502	8.38271753993603	8.24499871659756	8.35081910849252	8.14055675788306	7.63292687807671	8.00779681341115	7.99115843804975	8.15281577251577	8.15522679358384	8.19043374488113	8.09216854694061	8.09429852487188	8.19883668783117	8.4809591175334	8.0420498673282	8.24624446121385	8.04731543449171	8.23868140672764	8.0141819400515
+"PIGF"	8.0433370311698	7.56591921665938	7.12989562147088	7.46348475264258	7.36425940163244	6.98263070481634	7.64252570171878	7.71130369833843	7.46348475264258	7.16903184016095	7.57158186676369	7.12084865616468	7.16527312664602	7.10389349172081	7.45259846750782	8.2669140487256	6.86839589054169	7.86191638528258	7.58607395082077	7.63057095521958	7.23219699944065
+"PIGG"	9.16766874241516	9.01793914249419	8.98412872679095	8.5767577304841	8.8217570294608	8.776830808907	8.00458925583692	8.8005505086094	8.57696221763995	8.57906957526911	8.94914581843548	8.44062659625612	8.24419392766409	8.41534768589125	8.19947085231647	9.07340560523093	8.82495888980564	9.04410076557967	8.60197032125274	8.63147344027682	8.43182337821882
+"PIGH"	6.96750721779675	6.68728611699604	6.92801895049203	6.69497286273883	7.11999682786017	6.86844009011262	6.85093300526979	7.09142309846369	6.98442032760267	7.19343969242291	6.78580488134113	6.83236469371306	6.81449633362646	6.48387236390721	6.91854037202001	6.98740832057824	6.7466078074101	7.09531744084714	6.747290065559	7.09303012344927	6.72419949828677
+"PIGK"	8.07566288488245	8.27925204743243	7.9194779305803	7.76852987222207	8.31009953981844	8.00514574015887	7.21617725770535	7.86110259055441	7.66909712586355	7.92302569747944	8.5750035646752	7.83139674184228	7.58822506920986	7.641377187318	7.791431028266	9.18485175765105	7.92302569747944	9.17302444069744	7.96546045351026	7.73965351203197	7.76086531609804
+"PIGL"	6.05833710168284	6.22924519222748	6.29754992566103	6.21256322036509	6.60347633368853	6.3630859480803	5.66924473452819	6.16629064233492	5.64967210249535	6.57124712353941	6.43058843519623	6.40823873566818	6.07650775961619	6.18218137273871	5.44005194941135	6.69474902310273	6.29032249537209	6.59595459318086	6.00457456699752	6.56060399320641	5.83481361529857
+"PIGM"	6.50145101848859	6.37487836332952	6.46773774351651	6.50048411158117	6.76805959539319	6.57542026214076	6.24729591498414	6.00755344230969	6.77320791674371	6.32508029608678	6.45129785545733	5.90377633145654	5.9649248616876	6.36832685405423	6.49541068703948	6.9132475821373	6.2605245853053	7.76568947212319	6.26569648163575	6.55864175320398	6.33869244554377
+"PIGN"	6.58043426731759	6.68919091953249	6.15205032288567	6.22792367644344	6.32998147058564	6.28644831312865	6.03195284003972	6.51202216636932	6.06420106855584	6.41970934657219	6.65221153618436	6.2683986573006	5.72279467358174	5.63884171542983	5.77597165019688	7.28198932701436	6.294398168019	6.93268568438569	6.30774200723758	6.22619955772884	6.43342059785211
+"PIGO"	7.47095404777469	7.25503847847481	6.80190290366883	6.76082522682624	6.71629096052144	6.7959641036238	7.0192327379149	6.86527916270849	6.64186692937991	7.28116017570207	7.60080994576035	7.08144267775777	6.60338580314014	6.89259195838656	6.56579194657109	7.89367223142603	6.7865107186886	7.64221380728354	6.83446653312088	7.347099175532	6.90113798713659
+"PIGP"	8.91870639142594	9.03578777288455	8.80124086016537	8.85714980051837	8.97019722943073	8.17352924745767	8.36180567843294	8.78979223216339	8.7106900018455	8.8551327272969	9.18202172919287	8.78461830169844	8.2833604374169	8.49404970254609	8.53399392417495	9.66841009624577	8.81672507494662	9.27668171355911	9.0259474410108	8.95575197642277	8.7423520957374
+"PIGQ"	7.67263822218993	6.94668444661986	7.42041123857481	7.11759794184239	6.95537774007271	7.63513410812897	7.18564402986247	7.02955055757068	6.96750264809739	7.13819168680174	7.07097557535637	7.09694677298678	7.04761098112973	7.1407681757101	6.784671097915	6.73522573311497	6.87097261358879	7.05687484883371	6.87836244690888	7.11554085140586	7.09303139222236
+"PIGR"	4.60319991065413	4.89685511829533	4.6037704771947	4.94293846371477	4.77793757079727	5.01733853999662	4.95544982326188	4.70401896271548	4.85686962331808	4.4644183627305	4.96562540404829	4.66564855749107	4.94695757727785	5.13167501206094	4.71944610822803	4.75799280259008	4.60507468299164	4.37548833026527	4.7235882313155	4.65383677654331	4.90283474217116
+"PIGT"	7.95446510027172	7.91406571608329	7.48430861874081	8.1438060609911	7.66346199130896	7.96330079462098	8.12268261052441	7.91406571608329	7.74042822628561	7.99220915882925	7.91406571608329	7.78031951326046	8.08977034664997	8.10293059305088	8.35393512012416	7.62628647178578	7.95746089120563	7.50014515411383	8.03300339521306	7.74473022260564	7.81975480278927
+"PIGU"	8.058061062174	7.85888634679964	8.25541756016786	7.41723900523381	7.80401680738008	8.00837701472265	7.54706189066796	7.60431134416837	7.28756391092165	7.48956113742683	8.30353802215639	7.732993109565	7.22920724574136	7.54772537092806	7.37844055577795	8.81471649395071	7.53400260899814	8.58948022734054	7.49397976980881	7.732993109565	7.74125479799552
+"PIGV"	8.38263837349653	8.07049946073787	8.00645885014722	8.29256889668701	8.09145517947282	7.81002356487753	8.05232854812097	8.1158289676423	8.22250517811748	8.17470407806969	8.41499908237614	7.85782191168342	7.67043079001101	8.00034297886736	7.80032321328468	8.38119787419185	8.05998361269102	8.13336554219257	8.14688529283241	8.1542104330127	7.82866828190437
+"PIGX"	7.75346006315365	7.67760943954041	7.23067287511327	7.37863362143802	8.08498804877887	6.64239674602104	7.57373649734151	7.70114361028256	7.86891558765623	8.34268753177983	7.8845423815334	8.02451399364903	7.3918303952387	6.93822794841142	7.31577719547949	7.7434592622848	7.82809973638331	7.89844634750389	7.61782503121941	8.19211120124152	8.00593123604342
+"PIGZ"	8.23564037370941	8.08699006004052	8.40911704789579	7.78688458382013	8.34982264149594	7.78356665168599	7.45423995957771	8.3505986129228	8.05513292019978	8.4546861889671	7.65113609785787	8.17973611409967	7.54184101832042	7.11562087042736	7.51548008110732	7.6508028876597	8.05742651671708	7.94860313407368	7.6198021368192	8.27383643899926	8.0814927685561
+"PIH1D1"	9.32886648478334	8.81866175349876	9.36588980684391	8.8449980002346	9.35956138049874	9.15990050623638	8.92921704918781	8.75366295060269	8.99588411600972	9.30819481796757	9.04177066860709	8.98816101901104	8.76851966111122	8.94338276354672	8.87114190551079	9.15123249905046	8.86896971647723	9.36831193187231	8.93581449083129	9.53271665398814	9.1249394688182
+"PIH1D2"	4.18297819792723	3.37529893542131	3.47023634916937	3.38908911367312	3.36639224422538	3.17443470322052	3.34798059731428	3.38697317261078	3.05884405376506	3.41897384993114	3.37529893542131	3.37134480551211	3.26493535255974	3.62497641182234	3.07561457722797	3.33598373917025	3.47637292417744	3.01978501771485	3.34798059731428	3.51962967940145	3.3404377108901
+"PIK3AP1"	8.5567142349927	7.14162152544589	6.57922567133449	7.04946713132858	6.86022539165593	6.32581923079564	6.80313380468457	8.03083733156825	6.95614187865148	7.02290442050763	6.69904989979788	6.51228590031998	6.97790048315148	7.35592929390203	7.39174094665279	7.04946713132858	6.74122803170438	7.04536665176889	6.96544555495945	7.77516716492844	8.10891751248243
+"PIK3C2A"	9.19691898146634	8.95908174915038	7.37881592657383	7.731290583619	8.5426870728471	7.18146854751484	8.64470740476565	9.07508412631223	7.90552084436483	8.40935260068737	8.69968488523291	8.23877134364713	7.64229307652305	7.864156548917	7.57239734526269	8.77085099562791	8.3869412806453	8.65533812186396	8.195917666998	8.42189019101457	7.94143004407162
+"PIK3C2B"	9.39233894508586	9.3665437481982	9.03510586677055	9.00155964655223	9.07630865903703	9.50541914799801	8.31520559932646	8.94993720899177	8.64950425630371	8.64772945600898	9.67982593995574	9.01432088471676	8.79625171886032	8.85669482127678	9.00278414976063	10.0861885600732	9.17927841916061	9.90619171313041	8.62875024304583	8.92158270023017	9.03035713126691
+"PIK3C2G"	4.43590438993439	4.20556491988687	4.25286117118522	4.34227119376949	4.3581278867375	4.36863972954813	4.30987292966634	4.4279414834263	4.41221180430276	4.20479628536753	4.1859210924101	4.30121697444603	4.27707547768466	4.36689892846485	4.03927827495058	4.373400556441	4.39466423422396	4.28363740314077	4.42816512177112	4.5851375299964	4.34227119376949
+"PIK3C3"	7.13497798605798	7.40646272755689	7.39043245481505	6.93013222786902	7.89702517455945	6.46731931003091	6.44208202848513	6.9020810652705	7.18590949297019	7.43914439583935	7.27417578439451	7.67851746044424	6.47041984704298	6.52517273501155	7.25114577948025	7.55472513538314	7.25114577948025	7.70445752676668	6.84365859264311	7.69245393466374	7.5949922305062
+"PIK3CA"	6.97399136809933	6.61200802243773	7.21384389600843	6.59563188451736	7.21937519416551	6.68559415183037	6.79858219039161	7.0897091556084	7.20008040643142	7.201798284177	6.53314067212774	7.20649801706426	6.69087246301175	6.44840227425143	7.18375514659856	6.6513005647708	7.32251940201898	7.30638139812575	6.85856190749012	7.1012318132638	7.220192853125
+"PIK3CA-DT"	2.78804351693767	2.91090926509784	2.95392568407491	3.03096605686362	2.94906970106365	2.87008120358701	2.93109447901157	2.81987157066835	3.22047590747487	2.9363661586575	2.94906970106365	2.98518684953635	3.16596457969635	3.12286247094792	3.07181821377559	2.93887101413598	2.94906970106365	2.88829330098211	2.92089579208391	2.69758433197687	2.94906970106365
+"PIK3CB"	8.41948440509288	8.74453006821138	9.19900207973446	8.68518737147973	9.12206465366753	8.99251040609454	8.26726121465973	8.6924760507697	9.24180522258703	9.10621236829247	8.43051720984303	9.07070609373998	8.83820854770749	8.54244357980922	9.27901669440127	8.67715390175339	9.03555209808428	9.01494850728806	8.98450369614339	9.17222792591086	9.07946080815935
+"PIK3CD"	8.69624991427715	7.86414845174215	8.2663690276234	7.94601192091894	7.71506746488543	7.8974102502271	7.86985843162548	7.97668059920255	8.09193906676523	7.56529215402889	7.37302190858925	7.12205458285045	7.85076255185	8.33832322687204	8.10725193585992	7.38208155230859	7.75778124616387	7.69605514288303	7.74407407896198	7.991483514927	7.83563793051857
+"PIK3CD-AS1"	7.26243831291392	7.4420915135641	7.48749314141912	7.86097434171005	7.57255576564917	7.8508778617593	8.34802825695068	7.52845539248031	7.69628123395358	7.41226772233574	7.21318026318146	7.54841036459884	7.67237728781439	8.00763295905343	7.56247728156087	7.36296836104742	7.45322298224708	7.15808064120419	7.60800781148973	7.33692377767193	7.56544098183214
+"PIK3CD-AS2"	3.6618176068316	3.84054160309622	3.65095188131651	3.87120086168074	3.57817916673775	3.60132433106698	3.74904718722248	3.73646065074109	3.86103182163058	3.72969149271884	3.66076069256676	3.81169945493555	3.76649585251223	3.76894576908268	3.63630363009658	3.77333732321654	3.94177114301495	3.58228180440209	3.76649585251223	3.68152654094068	3.78971345792378
+"PIK3CG"	6.31917159647406	5.26265897708434	4.80157097663416	5.22615454934919	5.17486205304395	5.14934057397934	4.82614822850747	5.21115202410346	5.42856207767777	5.51063516489489	5.2992386944742	4.78299631292261	4.90522596818052	5.37251494958046	6.14117216891384	5.40511858314464	5.17916338388147	5.47542763050103	5.1219315123652	5.90456986574987	5.77453956597987
+"PIK3IP1"	8.69317789993286	8.53837308993864	7.69992794548809	8.19802734511338	8.2916521078647	7.88088087700592	7.94994375593533	8.48470914680229	8.15016929863954	8.48121679384459	8.68163872551131	8.49490228908846	7.78963031027076	7.86792679226256	7.79429797887775	8.80496455363326	8.55439425502733	8.20092196900692	8.24667820941774	8.33520496923382	8.07927733315178
+"PIK3IP1-DT"	4.62100931957779	4.56732062588232	4.73216436015139	4.47077415339402	4.83637044028692	5.35079479054093	4.36323756376653	4.62100931957779	4.36207205533314	4.51476420745883	4.4172609655554	4.46571034377963	4.63776065176251	4.62937691680534	4.34958208437284	4.77024322331739	4.59867186211725	4.38868458282386	4.5487725291787	4.55974308300449	4.44513905779915
+"PIK3R1"	10.3099629565384	10.9137428925438	11.2960756377867	11.2256677107281	11.7167150998305	11.0297124929408	10.6974891973873	10.5082328679845	11.3254878828382	11.3674597391897	10.8561701202691	11.4270129959111	10.8804968218067	10.7844304529508	10.8745562391869	10.7183547319227	11.2979155250366	10.9761087824875	11.4209534361375	11.6160067916001	11.2516237452699
+"PIK3R3"	8.68415749767069	8.04314508710149	8.20739286189236	8.09140812353604	8.43569926775526	9.12973091253515	7.85555784643606	8.73367101439596	8.01251690603133	8.13337347402981	7.76959131872107	8.50695427142422	8.51730604887628	8.6123133872	8.41738047454468	7.56907268195731	8.5400709369505	7.85709003504197	7.92051932914332	8.33917441556169	8.47229020510518
+"PIK3R4"	8.11967892398425	8.21886167632561	8.04329760681876	7.92281675222111	8.48292356944924	7.85477992534368	7.69302080867113	8.08699006004052	8.05516809604711	8.32098494767445	8.138497942308	8.23155740126293	7.74309500786834	7.79410331239039	7.83894229865173	8.16067003030653	8.16644300872051	8.51711857434726	7.86548650437477	8.10691675534541	8.09365640978151
+"PIK3R5"	6.49541591069982	6.24635976646486	5.84628558474888	6.37520382722866	5.91412333760697	6.67124183819007	6.52339410970177	6.01737533437542	6.37328312237285	6.049622885074	6.07217265245964	5.84285186388132	6.26305015694383	6.56161734479192	6.38070281045577	6.0977747481915	6.10799445694376	5.93072200749915	6.58329120963826	6.22619955772884	6.55215490993806
+"PIK3R6"	4.75799280259008	4.91596536664148	4.47452431526124	4.74575989624927	4.59319440241696	4.81266610243531	4.88490256192533	4.80845341870674	4.88900464699902	4.65927780115141	4.72683314131499	4.58517947627864	5.06456245042999	5.04226493258803	4.9599792954743	4.59319440241696	4.85611536004779	4.98084070258899	4.6720076162892	4.76365296843382	4.94438194014316
+"PIKFYVE"	6.7071214992731	6.49682562255087	6.07430937241349	6.6804771269975	6.65489407316474	6.81532340877027	6.68334820498382	7.69136554664685	6.5079304803853	6.70433775092355	6.52382657855135	7.38040350682313	6.51582110655983	6.39155081567959	6.54706762561398	6.43403693456332	7.14270427537969	6.56705322083808	6.73938265825121	6.5270163190549	6.68157549224087
+"PILRA"	7.08612960530774	6.64154687882916	6.50021328217893	6.73566740131204	6.76313106635651	6.08507139583151	6.67182212740883	6.66634710137961	6.33352513326352	6.84604330548062	6.6505419851487	6.25969634047552	6.3679598156148	6.43310572897971	6.3342665118382	6.71318303735684	6.95010925380324	6.40787855118129	6.88601125591624	6.7907772780761	6.62603420408414
+"PIM1"	8.09259991593215	7.19312949791789	7.30700215372994	7.48079152586404	7.36992510939334	7.8375610724336	7.48665145159065	7.93249872728467	7.50430773134052	7.26182342348638	7.11679647386784	7.56086827745235	7.53825827329002	7.48079152586404	7.55099611602047	7.0368998541114	7.61965351117263	7.13907752659512	7.22093305927487	7.45537864721769	7.79416739082507
+"PIMREG"	4.99556323978688	5.16685616835791	5.20817050706681	5.2131812920347	5.05615654699474	5.61521381844623	5.435717693161	5.17088023684922	5.16685616835791	5.06966637242894	4.92746883897309	5.27941117347017	5.42264449599772	5.30413856087012	5.36306010517195	4.9029495600695	5.06959211468852	4.94984872547779	5.23544066837231	5.13124687620431	5.10815579314323
+"PIN1"	8.7025966386863	9.01782263853717	9.63051370887441	9.08840144616529	9.65229699225372	9.10003937278498	9.01463224070313	8.84415924470812	9.51068741405856	9.5816580606388	8.86347131553362	9.42162296925413	9.1396887995235	8.52188325871628	9.18171737134406	8.98447664128745	9.3009554614734	9.26666654689905	9.04102902650759	9.77967594314233	9.68946325586101
+"PIN1P1"	6.09514274766547	6.27580215003386	7.0357010153036	6.54219737026273	6.83710335692347	6.77614829772558	6.58495319353515	6.59361593165903	6.80284540829871	6.55378456695367	6.30154443211529	7.12940074464758	6.77114016929614	6.75687616389373	6.76818933258552	6.12524276238247	6.79229056240078	6.17670924614263	6.70771555259718	6.59361593165903	6.46380834737053
+"PIN4"	5.63587884498546	5.8574750608798	5.43080498526299	5.56035088690433	5.7899061833471	5.43325907043228	5.76045338167678	5.56035088690433	5.75665195815821	5.56035088690433	5.56035088690433	5.45124121372987	5.42203219947695	5.4947782912503	5.46640229292837	6.25064376255878	5.56035088690433	5.59450004433138	5.5106281843838	5.3143368252759	5.5106281843838
+"PINK1"	10.3794654354948	10.0189270462226	10.066109383092	10.0033948788563	10.6183987335874	10.3275205951064	10.285856894087	10.2249529713045	10.2249529713045	10.7384381915968	10.0252402486323	10.6193707382419	10.123511806253	9.96113519950728	9.89690339496809	10.0379474908305	10.3189854444937	9.95877064789879	10.1900180938692	10.7393976362909	10.6775344123224
+"PINLYP"	6.79438718029183	6.45792580080675	6.55347899820474	6.42076595379169	6.39840530910057	6.86203545051312	6.80313380468457	6.59665107692886	6.30960871130958	6.66090765657905	6.63796716147373	6.32680737518464	6.55180014858018	6.87519122728188	6.54367896325785	6.26793424068877	6.24262071888236	6.23938475608369	6.72816593654809	6.72800370118402	6.2778773453352
+"PIP"	6.31469532807983	6.49072042789755	6.51188593922508	6.6692905710638	6.47288553214472	6.32799695455792	6.36921181754707	6.45797034348466	6.46308817569024	6.45797034348466	6.34695554640212	6.40302708094765	6.61897074101592	6.66144970229876	6.34249719419573	6.45797034348466	6.48549978422439	6.2431791436698	6.44443606625009	6.31469045209798	6.51118344573368
+"PIP4K2A"	6.66493205125866	6.41722727152677	6.22504702586146	6.8765308754448	6.44086584411434	6.96456688277569	6.65742935102401	6.94970333510109	6.0540159101985	5.90720742569588	7.32397421356357	6.84197817604516	6.25597482757266	6.56062190058285	6.63659464313615	8.13440577023968	6.56805130544001	7.87716199046146	6.71282640253995	5.85530942450775	6.23105768858648
+"PIP4K2B"	6.66169562882496	6.86313943060823	6.52349435756754	6.93197133816262	6.45348139220286	6.50623438019482	6.81810660067063	6.83406790962281	6.94852276655259	6.88078834767339	6.73777711280671	6.97298166974515	7.00644988302566	7.31330024345324	7.1685543840208	6.92852548557024	6.98523143198231	6.47349620525387	6.92039491991705	6.6736457604071	7.02447575321869
+"PIP4K2C"	9.00326656191048	9.001337319001	9.46526432760147	9.0014924338636	9.58595801996366	9.29706426117603	8.62797985782494	9.31572253389176	9.62223737051222	9.51664308822667	8.94742927402122	9.56461483491084	9.27276761902345	8.79215761034197	9.40770091046001	9.19071435002354	9.5457277167074	9.61656008463624	9.08317897293074	9.51753800541404	9.59246173354141
+"PIP4P2"	6.87042038409885	7.30168856454023	7.0491372379866	7.27985730760626	7.55305392505686	6.36049866626623	6.57156172931805	7.3651261113759	7.20355585030871	7.44929741623546	7.27985730760626	7.25802605067229	6.89946316995948	6.8169228882118	7.43696581201691	7.59402371342882	7.41713508654131	7.33210970286015	7.26663982122574	7.26567328786206	7.50469499354569
+"PIP5K1A"	6.6000107576567	7.00340771664826	5.74626760871476	6.75638369777905	6.70681228121056	6.26770599300333	6.21720581901907	6.78455909971804	6.68661554339115	7.36429245547196	6.87187578352891	7.29813779528629	6.53550237493776	6.33076068707694	6.17737638818469	7.20160046509388	6.94468177788286	5.55418862335537	6.67058307433769	7.03236214480906	6.90245399911014
+"PIP5K1B"	7.54796600868392	7.93835537630742	8.46893515160226	8.52868955746969	8.79485333809148	6.72072505143616	6.73174051684271	7.84888466950298	8.91212124184243	9.03734508200166	7.19935924753877	8.28429917405666	8.28434884464075	7.61468243593585	8.32863640610838	7.71003635303379	8.87390229859613	8.18177226004071	8.50160155337876	9.24187665718624	8.8483171190032
+"PIP5K1C"	9.98070420376618	9.68467586566305	10.0931367334788	10.0805117603589	9.89975241243479	10.3986893739408	9.85914824418604	9.87058341358181	10.027512987357	9.90900931735591	9.25153384221671	9.7264358685087	10.3649750932653	10.0953009072929	10.106271928478	9.10375456541134	10.0563387662376	9.73982118273967	9.88117160511158	10.1671868447274	9.9433610265236
+"PIP5KL1"	6.1980417400415	6.40558572736352	6.51801262091525	6.43138706715489	6.68520658858549	7.05155085348026	6.48583228849031	6.2030763496523	6.38240535485582	6.46886950588064	6.117875107904	6.54696742255313	6.75976134983618	7.02553603590238	6.31865983336643	6.61363186018447	6.18685850769375	6.48583228849031	6.48583228849031	6.63236413726276	6.62328259540715
+"PIPOX"	7.12196683775377	7.35592929390203	7.04029151883567	6.94524719987532	6.783669780503	6.01598042062184	7.46005663620612	7.11652725629357	6.86315904429573	6.67932102734942	7.83744125129893	6.96783586941416	6.47748687603105	6.63950033393807	7.30822391613268	7.32486087112207	6.75712817924096	7.00876480170567	6.9481851237056	6.90780716368295	6.72946705334304
+"PIR"	9.24233137571299	7.48059124254337	7.56773102115341	7.49929966645395	7.48301321272527	7.2241946937468	7.49900605205114	7.83397132398623	7.11453592067823	7.30709889502869	8.65565846957207	7.29914867357367	7.37626523495802	6.77992701862735	7.62658135819243	7.74052868608394	7.35831546789915	7.90838858732878	8.36109428338878	6.72897107285435	6.28552169706969
+"PIRT"	6.33874944223687	6.10173088815947	5.76075088449886	6.40944493402043	5.53483893816006	6.08539074151718	5.46819749437983	6.06682303031113	5.76354377783466	5.86129304484245	7.57223828784556	6.12734917544655	5.44230256728137	6.09470636228604	5.88338015296979	6.80418391969391	5.75050554428353	5.77944878395898	6.21137344274606	5.98603911023468	5.96741202567351
+"PISD"	8.70518808816538	8.79099008552027	9.18233413746107	8.78279788587964	9.05313940370031	8.68473246769292	8.5110436071182	8.72306571318928	8.80276690048403	9.16398260640202	8.59550631790779	9.0806925475855	8.80276690048403	8.62031939103278	8.68417954624005	8.58290045442452	8.81974244686104	8.84789678219576	8.66286679983734	9.01526243634936	9.09012861059603
+"PITHD1"	5.77900464084183	5.75427197581944	5.29889935510987	5.36060063960373	6.58147876516092	5.24200477676964	5.45867663212511	5.35211993365635	5.5048172942733	6.73925927376415	6.30314547427139	6.56322590208244	5.23032521952347	4.92894869254956	5.04232215094408	6.17271870275232	5.80856270576606	6.90237709266814	5.72207836381056	7.11859629449617	6.70271846477671
+"PITPNA"	8.96069415903547	8.5456622627965	8.32489184500894	8.23523819192271	8.87419513859187	7.81614546955594	8.02726061376491	8.72332238410358	8.39148861256778	8.96702012445493	8.43407600714504	8.81844373300303	8.17583375273117	7.92378773516863	8.13205105298884	8.50629879167534	8.36346652329113	8.44378857226154	8.33626817786639	9.11890444620884	9.14260895788771
+"PITPNA-AS1"	6.43981476887679	6.38438449778592	6.537583293321	6.53574906992559	6.27048334446282	6.61899963734308	6.68635741342019	6.42899800045668	6.65489407316474	6.48659855365978	6.48549919515818	6.23585050161578	6.50138999667018	6.37743917533813	6.81418670513213	6.63360313764443	6.21401031890967	6.70980610756986	6.61374744571028	6.0883497943136	6.27592754632489
+"PITPNB"	7.77504503147606	7.15270997053991	7.02981487324759	7.17094008616001	6.48533595888279	7.2622343540418	7.18238442488319	6.901002413737	6.97482059762453	6.23500653768525	7.45813193425496	6.1366795490596	6.97455888337194	7.26469286596878	6.93532452280479	7.10691463287701	6.4619945217799	7.00988796205711	6.87871625163941	6.56492695548639	6.99098145395363
+"PITPNC1"	8.77933466453573	8.76290214190113	8.06189665492452	8.26201543985782	8.30771657668618	5.76567518731408	8.51320046898037	9.39665567104816	7.76217835206026	7.61548363159425	8.99995820913739	8.16134269353849	7.57964450156879	7.46644400583389	7.81296498190993	7.66830858011686	7.89095011592024	7.72883650090178	8.67771798743056	8.25328499000356	7.63624884893779
+"PITPNM1"	8.41824062853613	8.3253865098611	8.38619681256257	8.38827390261932	8.38256638869236	8.53927176352643	8.4581262906731	8.33671350167938	8.76432616580601	8.57811836571801	7.92347043676604	8.472589161149	8.70621847255208	8.63847918712477	8.65410386257886	7.80882094165819	8.4710998493031	7.8430483889965	8.44643427705798	8.74948192680337	8.67102794846762
+"PITPNM2"	8.12906915946471	8.03240747264272	8.34264025154988	8.2546534085571	8.49953773541596	7.8308622769355	7.82871483539776	8.17960652711203	8.29050411266295	8.40099629100538	7.88347687845721	8.67055865831882	7.9949577824334	7.52771099244633	7.86498016559098	7.66080019213121	8.4408605726277	7.90784732406493	8.07328174443331	8.56520727456538	8.54258899938772
+"PITPNM3"	7.86317515166455	8.34685739039812	9.21047698154035	8.44076143584552	8.85911846928437	8.24858823790026	8.32679144358598	8.42291132650901	8.90962575043666	8.43366063528134	7.82605211419757	8.37852173527656	8.72122491374351	8.09336063812852	8.64748043154225	7.28100096007929	8.71436639520867	8.23529612298387	8.33626817786638	8.72372512491657	8.48333447273615
+"PITRM1"	9.09066259141094	9.09944995390795	9.04724440153992	8.66741115879097	9.33265040571683	8.64456507349418	8.64924916800918	9.23010109129833	8.90389341323607	9.31053937369749	8.53605304518681	9.18637851744498	8.96057134410685	8.9518003724229	8.9017925634309	9.15591790375151	9.02521708940292	9.35497818725749	8.89769064368951	8.98505200980245	9.20714548827742
+"PITRM1-AS1"	5.07871624516209	5.26265897708434	5.01439912038624	5.32229253909157	5.25268275746579	5.12088616050492	5.71265609197132	5.28866343758129	5.34324030170366	4.9929826196786	5.16304009926144	5.15196224013462	5.1872314606845	5.39234404677764	5.02320483981916	5.33277622119897	5.26006592402042	5.11163474442636	5.10584281072526	5.17124173838265	5.32597886646518
+"PITX1"	4.65715345239591	4.76203103333996	4.98308742501529	4.94330971165644	4.74676832583448	4.89143159751699	5.49687548676204	4.78994255233728	4.86361138153057	5.0103606019292	4.67593436314952	4.79507524722214	4.90725772599976	5.43282562978258	5.12692725633976	4.58689691005629	4.79223734791385	4.81518901827823	4.86763545002188	4.79930511105324	4.86763545002188
+"PITX1-AS1"	6.41824261591796	6.59361593165903	6.32032406766099	6.74759316211202	6.60347068439834	6.52146757152975	6.84135481818615	6.48812997227037	6.55302189021287	6.64439332884006	6.6197369182124	6.67099776450634	6.70809469945282	6.6276782277906	6.69115036700196	6.77126465494306	6.72730096614328	6.36085985619193	6.62245320658661	6.6140539464618	6.60720087682895
+"PITX2"	2.92656585185602	3.06365264139042	2.89033588669849	2.81093820930202	3.09551924057856	3.29451209599981	3.02523944542016	2.99461272504302	3.01281455107283	2.98233298785451	2.87295702827196	2.86219571888349	3.03379311667385	3.19613740539147	2.89780323476211	2.80069094193028	3.14894961413957	3.0236089681706	2.92257383970969	3.02606418818379	2.91321399944008
+"PITX3"	7.05230770180208	6.9863590095275	7.12736946181383	7.2062717376144	7.06548045771516	7.83373921895968	7.69551945116139	7.16517487946723	7.20903374735807	7.25756803068014	6.92737688219318	7.09610078911077	7.47089141574403	7.38682831359768	6.99257015172548	6.93469274094887	7.00655772008632	6.81327301744389	7.11273612155237	7.07493961972567	7.09759496815981
+"PIWIL2"	5.01906547784491	5.2190118183791	5.31730919846428	4.98331513556519	5.2488646560702	5.48753488432114	5.26453842240398	5.16323706080034	5.22025465367338	5.11600652387888	5.12901350164294	5.40325319405714	5.58669614308076	5.47400344272864	5.33109726406246	5.60579326433513	5.34805167950461	5.7662511083396	5.23561939873145	5.68487023184051	5.24785920731789
+"PIWIL4"	5.00046427806215	4.98485078341119	5.16709660375504	5.02675733318384	5.16513288728306	5.46775864758073	5.12746650795198	5.1092266904873	4.96248963119289	4.84401313714497	5.11216667753321	5.03473780020146	5.04003097162902	5.07401303240739	5.15363873501411	5.39962674418622	4.76532908464313	5.38928617530155	5.04003097162902	4.72671622067971	4.78482566544844
+"PJA1"	9.58108628574836	9.75885148441303	10.2186221341333	9.69845567778217	10.2699221839997	9.2785667438411	9.15621215105435	9.85397599187213	9.86707682349953	10.0207379969894	9.46242561196726	9.96172140948286	9.47282969175362	9.28909281640646	9.55744311762242	9.91425033276398	9.83365277493191	10.0847299972776	9.60547636974128	10.1281599548632	9.88630425844862
+"PJA2"	10.0710496041572	10.8572702570469	10.8299902339212	10.7603440588513	11.078164867441	9.97326197056971	9.99660162387901	10.7049224039521	10.9258584795724	11.0621786016546	10.8577287004758	11.2023701774511	10.7263450270707	10.2290511554843	10.9145466615775	10.9084329552105	11.1395857154076	10.8556748855888	11.0622466054505	10.8778775225557	11.1284585767692
+"PJVK"	6.53483870686225	6.81686940456061	7.21828805629156	6.1058203358972	6.82251361673833	6.60923337006929	5.99147546980049	6.27419063344521	5.83489135196075	6.29430090802031	6.65610957853719	6.37499845575993	6.24624496249475	6.40220405043551	6.4128117992794	6.71267346652173	6.20238476493463	6.97371898138681	5.72617892803835	6.24949018682498	6.34916687397949
+"PKD1"	7.09505966031893	7.33061000594312	7.33137353597014	7.32883665417741	7.47474865638601	6.75642468838114	7.01059301687781	7.39514978391305	7.35323907267475	7.98031055360345	7.4014561772698	8.01869786998454	7.20681697126236	6.98227018646011	7.1187820766007	7.43331986814256	7.85362476091698	7.39881499063794	7.51099193479614	7.60958495127471	7.85026880439552
+"PKD1L1"	4.48376628838858	4.63773190312197	4.90718520917642	4.7992862361391	4.64692859288562	4.80967831470941	4.51639712671449	4.60722970598508	4.83386929858359	4.89421462491304	4.78214217547527	4.89397921986374	4.59710936469187	4.69917252194732	4.61932281067299	4.7096388695463	4.98823989664183	4.42764418536644	4.51735988730681	4.57873410624457	4.84107020397766
+"PKD1L1-AS1"	3.91890108185108	4.28843030769086	4.26939436196003	4.05814708118653	4.21971147402758	4.50293774223097	4.4541317422925	4.20479628536753	4.28377665833091	4.14194696267958	4.00566784568016	4.32683164059562	4.4265613624219	4.40696217616301	4.20479628536753	4.05255072777733	4.25936136850731	3.96890403959242	4.29120153492527	4.20479628536753	4.20479628536753
+"PKD2"	8.51268563213292	8.41856472972671	8.24052787795839	8.10125900347469	8.10727345502143	8.09028789406912	7.98990909910089	8.11526130346387	8.02400699425186	7.83492935815712	8.42043631512416	7.68596954551295	8.02978110871569	8.14020249212071	8.19491279026798	8.80805947580502	8.06690114382059	8.86417416678126	8.37289573183422	7.97368785298995	8.13952296980757
+"PKD2L1"	6.9972511818275	7.20346614286036	7.34780259266215	7.2680178353919	7.19223571362352	7.28286545587391	7.17813006373966	7.01556404274452	7.13081736787554	7.04794097751553	7.19879741686453	7.31879901401157	7.25769817530816	7.20136152889142	7.17451196767107	7.1843801307192	7.33792818846128	7.15077237731553	7.15699389560257	7.41823311696464	7.27855068786619
+"PKD2L2"	3.87370202974244	3.84054160309622	3.86343587684993	3.92212118065629	4.12981245700671	3.94820562886977	3.94820562886977	4.19835535254943	3.93934068007147	3.87370202974244	4.00294424462906	3.99029526218303	4.01193411131486	4.37937497321068	3.94820562886977	4.21314006702707	3.85538905838711	3.80615163260053	4.15384353088375	3.95489227519456	3.88650697663838
+"PKDCC"	8.00497773988753	8.40058221792434	8.72611719005604	8.32456847137728	8.12393796903909	8.10974551941208	8.61249601452202	8.12368728912605	8.41349443389127	8.26943942766165	8.06228064449259	8.23704883049745	8.63388238758769	8.43715414124344	8.6223411648615	7.97017989179661	8.38352501290249	7.9700953874274	8.40636632768176	8.43248429893096	8.32558244237102
+"PKDREJ"	5.7976783290898	5.87392215693814	5.75919913730783	5.77362585891363	5.90949554561233	6.11933019398781	5.72883224672732	5.8228935573193	5.94899612333631	5.92209957439913	5.57160966004563	5.57228383039084	5.87485490293644	5.8424873432722	5.75839217183444	5.8725904966449	5.75532603619744	5.60291631243509	5.62850128634286	5.70230056550291	5.56732764449758
+"PKHD1"	4.9270916016003	5.15714773743239	4.97099817874485	5.5173741116914	5.13173419687141	5.17183113923327	5.13173419687141	5.32537414661463	5.14509452376235	5.0201166758915	4.92347880458829	5.03708253133409	5.15714773743239	4.8183018214314	5.18141395848203	5.18141395848203	5.22278823191063	4.78142161343523	5.12363830004486	5.2187341277745	5.30297962112397
+"PKHD1L1"	3.25309811826045	3.21167239952217	3.46860102093517	3.29943571536201	3.50175012534434	3.17531051399573	3.59035006425724	3.36052117760833	3.12403130550881	3.27605695764013	3.2632579642298	3.34605953603879	3.39446688793646	3.51234401309118	3.33507729384861	3.01049228825632	3.29293690829894	3.2212369911915	3.42086885721127	3.53348937039277	3.17426678028347
+"PKIA"	8.42206456655168	8.20815221524379	9.50875905817303	8.3974588468041	9.00511794700913	7.92187797284622	7.67858240323842	8.64659960257835	9.11800104683429	8.97800501917227	8.28447813611697	8.82657649144218	7.96876906435472	8.07635417329398	8.4044243078769	8.14922007702207	8.66603432732589	8.47267792367757	8.75383503947725	8.81758119680075	8.54003526247543
+"PKIA-AS1"	2.84137782095931	2.72474617350357	3.08252664063896	2.98725076900819	3.05322501533738	3.34166669738041	3.07369281246943	3.01760073316968	2.81486392135864	3.04153668304444	2.72887058370579	3.13114934319435	2.73943044636976	2.89566896748462	2.9414256504714	2.94906970106365	2.9569537872477	3.00567797222903	2.94906970106365	2.75316526912724	2.88829330098211
+"PKIB"	4.56323088006517	4.3467840763796	4.87551830754682	4.74575989624927	5.31302092358884	4.05768764774723	3.7960893225337	4.76261180606325	4.18336570206004	4.88387823118873	4.71721641242413	4.54282791476702	4.41094517221786	3.89602170553851	4.09069887890965	4.5831203060793	4.50007084642283	4.75894991048599	4.58456320755001	5.4718144909721	4.5071151301769
+"PKIG"	9.89319398111359	9.47400800121704	9.72968272262854	9.56649743630888	9.53796205911676	9.47633211198439	9.2235812642006	9.69102742385801	9.99963400480117	9.49353415817452	9.29271875369513	9.56050938305306	9.3368433254612	9.28451266626367	9.60147349083961	8.79459045909864	9.33335483817608	9.10701049118526	9.64481152528609	9.51456756615554	9.45595502942562
+"PKM"	11.2410162367956	11.1731117023413	11.4093815516312	11.2262247495533	11.8355735897052	11.3794808797664	11.1495485590961	11.2694582271753	11.0701570016407	11.848450903075	11.2873637558107	11.9135859461362	11.1173873412395	10.6668009426225	10.92790007389	11.2435551021893	11.6157915627837	11.2264068970371	11.085272383225	12.181515349588	11.9629530668248
+"PKMYT1"	6.74795538253272	7.11721120558222	6.93493785810984	7.40028739143692	6.93227385776043	7.16655731673428	7.12206510211174	6.95432345136478	7.17068266876619	7.06628219667102	7.0401274052108	7.08914603194866	7.27263131536736	7.3651261113759	7.02404589607922	6.97516746539439	7.26486812377876	6.88713201220263	7.10555825407318	6.94998814772627	7.08569410546435
+"PKN1"	8.47053402204028	7.72681848758111	8.06129204698334	8.01956131752387	7.77711491844713	8.36078670902792	8.19082625679664	8.02004927341455	7.90956121907755	8.11798401092602	8.07435123877106	7.64046133096628	8.00262592659101	8.11124757061011	7.88814074051757	7.85853370715428	7.7303270488319	7.99984422905753	7.89371328613965	7.92843086332823	7.84129803746081
+"PKN2"	9.29040538533536	9.0140375381198	9.19912785591439	9.25725727081205	8.81837346794761	8.54639953053342	9.39916016441738	9.6444480785948	9.08876705570589	8.51040334794015	9.34548541363621	8.82997920636739	9.22575840071661	9.48992337345326	9.44690099848035	8.86927152311581	8.89543704838196	8.9176939717719	9.32566733445193	8.65936431860744	8.63785455454754
+"PKN3"	6.89989505540515	5.67097736903218	5.61365293098007	6.10508249518104	5.53403296658322	6.39405854366102	6.31308625752561	6.27779633597404	5.82553421931063	5.96228722742972	5.68113856491953	5.84232489800233	6.49321274339666	6.62950189436146	6.13181503626372	5.70665324119486	6.17791054201438	5.90600621119252	5.99723786385802	5.98749328074133	6.03221823521965
+"PKNOX1"	7.25879319648161	6.95219037252296	7.22594587137854	7.3530317497716	6.55540313471456	7.26521924415005	7.50659581527938	7.30567209132458	7.07045345694416	6.95193987663085	7.28694682985663	6.91950378822081	7.45966997719803	7.47393393050609	7.54725571537727	7.0213983781624	7.01697136957868	7.13179741689416	7.25832848262038	6.88442830532369	6.95852385906635
+"PKNOX2"	7.6047632455705	8.6897636973546	8.77707646971976	8.33466100784784	8.88246500999764	7.75806505830987	7.64780840607798	8.17543218421631	8.42486661363561	8.45420548348185	7.99159801028527	8.70817557550889	8.45373037209109	7.88771327156146	8.14772819597358	7.61796986596463	8.48720566207678	8.17602165613424	8.15353152523613	8.71975418064465	8.55053095330345
+"PKP1"	5.22550725220278	5.86759557266449	5.62272093414459	5.86297578680015	5.64405678566064	5.4825768474502	5.72596300802664	5.30414423973762	5.71798004633554	5.59140938797611	5.72981991049194	5.73920369100519	5.88287850654466	5.89959951485577	5.70685972386747	6.00691318742189	5.57511064027023	5.41967667982789	5.49098314923092	5.60650924583294	5.61405496362118
+"PKP2"	3.69476035642536	3.44660131219648	3.84612619716419	3.35192882567302	3.55292324839832	3.48088271142141	3.55292324839832	3.53981214135055	3.46482226533065	4.49971324168419	3.44457762519392	3.39325568236961	3.58657035912302	3.45065030918246	3.42674739229932	3.335827700104	3.54304381818989	3.51480446880397	3.86964871217297	6.14959067164142	3.82229384010429
+"PKP3"	4.80419531992814	4.66453287445117	4.92230357872858	4.81267602587552	4.63477321185306	4.92992563435771	5.01219341347398	4.77255706875272	4.82116538828747	4.58963701434127	4.50331019989901	5.20066005978213	4.80419531992814	5.37365422897433	4.80419531992814	4.34011912398385	4.80419531992814	4.43258047522196	4.74460589170092	4.68000901235516	4.90343328620104
+"PKP4"	9.96510656864916	9.98912633219531	9.65548411875809	10.091897604823	9.56510297692604	11.4141717821065	10.6707201058973	9.21020631897914	9.07003685535966	9.34633690080852	9.9897606589144	9.47624856778441	9.77407557520561	10.2625749231495	9.74499692461273	10.7050395306662	9.68610374729427	10.7456794632518	10.058773144561	9.06235979799489	10.0897624036897
+"PKP4-AS1"	3.69810737569689	3.83597756331066	3.58930309615151	3.81778639769742	4.02636083786519	3.76123453586656	3.97521665806832	3.96779852709763	3.81258508460039	3.68540706280359	3.56470607593785	3.81258508460039	3.81444464508778	3.79340624972589	3.7120260819843	3.83896067758989	3.97415588615036	3.70279489444487	3.79628371867689	3.85460026857351	3.8219328342
+"PLA1A"	9.12500574738683	5.23283396855403	4.93148327327413	7.02258495545548	5.84826381619655	8.55399246854721	5.61068875695119	8.52964477497328	6.06073109504662	6.71068834791201	5.45633830040946	6.42822279144258	7.3620159730041	6.48583228849031	6.80259047766336	5.53483271381769	6.54893898071009	6.23844081162233	5.87873403081901	6.91495651248815	6.46972525802095
+"PLA2G12A"	8.4689882840023	8.510391205268	8.61253319897829	8.46179678473178	8.35490931582469	8.0242583845562	8.47130746954798	8.43366063528134	8.53649539165061	8.34495259441799	8.75550702908891	8.32032775369544	8.55132372536775	8.57726363719409	8.78605619048276	8.51083544524766	8.27862462800955	8.51290567970891	8.4689882840023	8.06361298710307	8.23288956291065
+"PLA2G12B"	3.80871411108125	4.1656746664979	4.04924390284518	3.87857476296128	4.08519066639575	4.02795139668476	4.47121587596614	3.79803045877942	4.08950244132383	4.00469379059507	3.66447092581272	4.13249720305705	4.05838955539764	4.21788946139883	4.00469379059507	4.34983230535017	4.01207338828073	3.6461140699128	3.89416672640965	3.95788133612212	3.98762508073682
+"PLA2G15"	6.89944924106839	6.40220405043551	6.99491784307204	6.15778611813872	6.60424073966358	6.87693579074453	6.88609499130897	6.73607012395469	6.7942151913996	6.44333457709435	6.47843438127013	6.41812635859061	6.4891983825559	6.57751001264444	6.47584904549178	6.22308749961717	6.47663780679347	6.62914200496427	6.53403172181633	6.99491784307204	6.54486460453202
+"PLA2G1B"	3.22146181257484	3.29730587271867	3.56707965832926	3.41841202910571	3.5446112898864	3.61514414265668	3.5446112898864	3.41622310972562	3.53203712490615	3.32532497822803	3.42598080769835	3.15755898896973	3.64431234231849	3.42598080769835	3.46308089711261	3.23663830852026	3.43840082799846	3.17253658465233	3.34210336698394	3.35947503029182	3.39847978972228
+"PLA2G2A"	6.52198775925523	6.32156426162278	6.23768861959502	6.41721001665385	6.2601380228433	6.52440452384347	6.46210688910102	6.48812997227037	6.41956430148607	6.39655527104882	6.17761980451354	6.25885768035196	6.35672334461114	6.28749350283525	6.52037600567421	6.15571618523664	6.38445311818916	6.05839083703178	6.27289744093512	7.20215044768136	6.32678661793451
+"PLA2G2C"	6.3986232961736	6.55994603875522	6.51610204406204	6.17302848253398	6.61419604273274	6.00388718148485	5.78051057479122	6.6442318147758	6.55676336871155	6.53746541190286	6.42716678958973	6.57310590033816	6.4724893915745	6.26844857094251	6.38111575059098	6.44195521508953	6.47137413022693	6.29688004546898	6.14740596578285	6.37256447039141	6.54672205099877
+"PLA2G2D"	6.17979358709194	6.24060247956937	5.93113339733177	6.51879125647543	6.50882651058554	6.35155705256822	6.55883805653479	6.18807014832651	6.27725255958412	6.2423840643984	6.09102894307762	6.3962270099292	6.42598219557444	6.4162185886639	6.51510876745401	6.443834933189	6.46727223253425	5.80214208285613	6.22528175453793	6.27624410372885	6.4995953142003
+"PLA2G2E"	5.5858532621846	5.62810699506023	5.54418815115774	5.91752755759189	5.64196953689606	5.76785713883026	5.9104852144922	5.48242029894882	5.79106200261361	5.60525575485078	5.63893810252824	5.71676736634867	5.88599015642755	5.61619558837826	5.75646586372374	5.44041109234842	5.66184080466967	5.53838283324638	5.75641838184702	5.61935969251883	5.66184080466967
+"PLA2G2F"	4.62704972232218	4.80793477563014	4.67093679038635	5.09792093275237	4.76458662682696	4.62119179061118	4.76458662682696	4.76211080072926	4.86361138153057	5.07823349381457	4.51709322566921	4.64599076399287	4.82742611683371	4.88056280905364	4.78611875636547	5.00758512317588	4.79679310812878	4.80680763794347	4.67638551417923	4.76458662682696	5.04003097162902
+"PLA2G3"	4.93779438031075	5.20332146637372	5.2008500189897	5.26598639853463	5.45574556316573	5.17158433695925	5.30651413154139	5.14715510138361	5.49856720067097	5.41492445042291	5.00586397605916	5.36561860048561	5.47626283988036	5.5090920516553	5.47238404453623	5.08168353496649	5.29101946759857	4.8522517769079	5.238284473408	4.99505130555574	5.43212472080552
+"PLA2G4A"	6.35364246478037	4.7096388695463	4.39845682176369	4.29938893389525	5.29431251977101	4.57374717692521	3.85354001108703	5.13580142220161	4.49008176145483	4.6934428111963	4.43001065098669	4.5324952951404	4.62403072783591	4.04435972037158	4.77504985151062	4.95433153116162	4.51887421333597	5.16755947638196	5.02592105380786	5.05876694794441	4.96263588703882
+"PLA2G4C"	5.77001484075164	6.44699363474221	6.17015302293038	6.42080899237121	5.99017439493023	7.3305449316845	5.79488226565741	6.41897176250004	5.43516300189581	5.39894910648161	6.76147494751369	5.93162232531618	6.09268446853913	5.99042563929381	5.93874634890688	6.24999045906105	5.83535651491719	6.68257895229849	6.45780992426802	5.12760650230286	5.72519454318877
+"PLA2G4E-AS1"	3.3968060616982	3.38995314830969	3.57780496400408	3.31910919263144	3.35626214701409	3.50031808884375	3.86966707779746	3.3950918673891	3.53574209011332	3.45989738208855	3.24796402981884	3.33677174602847	3.6379802138734	3.43252772950475	3.52785102802846	3.29298040344977	3.36075441016834	3.20741186766243	3.70436918115673	3.45543993057874	3.46924752939726
+"PLA2G4F"	6.8763205248108	7.03744281913337	6.95625888645815	7.07026085359125	6.85080618884173	7.36519726836921	7.85689245764673	6.99920248897232	7.1881916518796	7.14589499110561	6.65132479396865	7.06420073763602	7.32202249265092	7.4822147135663	7.1060972370486	6.83938479213997	7.10551314196471	6.50713674819984	7.3660879297111	7.11663299610468	6.90718606363351
+"PLA2G5"	7.21607986974097	6.27417983167123	6.38295503664033	6.11654125992964	5.70706211375416	4.41924606730978	7.35928579222876	6.08980669084203	5.73795327038247	4.73389628632926	6.45078467823061	5.7637414832805	5.60483469219251	6.18639521824043	6.14028590922706	5.95158476760858	5.85321894452766	5.35618143711208	6.04642005298681	6.14472896922836	6.10520634947726
+"PLA2G6"	6.53743254664615	6.7594148594212	6.80852349684934	6.58058617512208	6.87629984242593	6.8203034929706	6.68458396877338	6.64048011685992	6.21025439482495	6.66364470494805	7.11946259428576	6.63705848334814	6.42176445967349	6.68956608711531	6.28429679685827	7.0384405817258	6.80709896535035	7.28534815757224	6.45606765549444	6.86408900630821	6.51289085041505
+"PLA2G7"	4.75700270845778	4.50388927328792	4.66202759399006	4.59899423131543	5.11045008171338	4.45882599822565	4.26984619448661	4.30504069868845	4.61552486600255	4.78323468152935	4.50198532792528	4.64302104825646	4.61988145981586	5.01791973920813	4.5167508338622	4.71920388409823	4.54952196974049	4.87327940162423	4.88601338305985	4.84038886315864	5.35675077047662
+"PLA2R1"	4.66629611432589	4.55028287216358	4.86762859281912	4.35363629766828	4.62070462879954	4.8944517133622	4.41602441612898	4.55116330739538	4.43000255013557	4.76909010811545	3.9526432462815	4.43510670543268	4.64512041779865	4.57928106241082	4.55663806981342	4.024984740627	4.30732019773303	4.55663806981342	4.50968001000323	4.99719815537448	4.52390012633052
+"PLAA"	5.76778610677631	6.22239021235597	6.02909261700226	5.28979180320321	6.02553603108961	5.26492367286507	5.02911786542874	5.24084091137593	5.30069086690568	6.02504158303991	5.90793424685441	5.69520645726903	5.33031536618149	5.30414423973762	5.12894403759659	5.84863781231748	5.50945797285139	5.84119559436625	5.33893716885995	6.04962802341383	5.8668976310647
+"PLAAT1"	5.75034487930971	6.33299054397695	6.89994504414651	6.17865623745139	6.98111807368559	6.15672797730459	5.90100621071917	5.72986585591708	6.11541088819044	6.87151462193284	6.16081489357514	6.28781432027837	6.59219254372013	5.90725096113199	6.34077416760144	6.13498388528523	5.86251424677954	6.65437544027908	5.87663204717939	6.94543294576131	6.23210225787832
+"PLAAT2"	5.04363170183474	5.19583710790868	5.16556758612446	5.14973410188634	5.05767691718387	5.47482481915924	5.16118084164632	4.90621001914807	5.26930727429763	5.0534788161846	5.11806762432719	5.25839497296083	5.45666091010505	5.23156127910111	5.27398160524753	5.21632161286175	5.00818234167627	5.1641047497192	5.23983228893233	5.01095558597143	5.18888558895602
+"PLAAT3"	10.4004832429709	10.135370343991	9.82469433679832	9.96152479507493	9.71494011164554	10.163597473104	9.82809316797054	9.89168590535399	9.08480111545409	9.62232453910803	11.0597088355403	9.88194618361658	9.1638454089372	9.71842103133222	9.4402652659203	11.4729511874787	9.51690269438664	11.2234810143199	9.9821195226027	9.40809288378337	9.25223075300212
+"PLAAT4"	10.1777221933866	8.06557668770767	7.84813861151153	8.05666509943972	7.77909111166795	7.3539050946482	7.93657993533956	9.18960047297679	7.60384830214911	7.70933019967314	9.37730367995419	8.53622472168476	7.59324923237651	7.463670838194	7.82622200512889	8.32066593156401	7.42629749622757	8.5747098797955	8.25395239317407	8.17131860861457	8.05666509943972
+"PLAAT5"	6.83691599584643	6.88223776858118	6.748424859181	6.6128115129957	6.83677911477959	6.12707610058577	6.28883445102602	6.77985076679576	6.73121445107197	6.8564515562068	7.10535012271922	6.92408345396285	6.4707196674382	6.19840989508872	6.46654086522946	6.89742708807193	6.67658122497442	6.7498716276438	6.92970957217769	6.7498716276438	6.73886593581842
+"PLAC1"	4.92680525589471	4.95881725749097	4.93514702595444	5.22209266910451	5.10576610065993	5.02736378278032	4.7248030910554	5.14767139291004	5.25590121447567	5.2244546388297	5.23935518685026	5.08331228099985	5.11698332903583	5.30414423973762	5.40245121564957	5.08460828590464	5.15818832596218	5.00126904606532	4.9876419799726	4.83851391392687	5.20572345707651
+"PLAC4"	4.98164579606888	5.10149618276203	5.18917693866173	5.08235751316638	5.03982049550369	5.83236878012515	5.27265342660222	5.24627418338451	5.25255474757163	5.20493361640301	5.08645301104949	5.24964952859965	5.36702721734312	5.47711214557874	5.33358936572871	5.00617333951177	5.09272108361873	4.9470604461074	5.24380319051666	5.18917693866173	5.13999008101882
+"PLAC8"	8.11186073464439	5.12593684319866	4.72908065726913	5.98737603366594	5.94216035724735	5.4889747643284	5.17869270296127	7.04479651912598	5.36933903165746	6.23829462851559	4.8895786993928	5.73976911175307	6.55092081491042	5.40211078334263	5.68833092030692	4.61284354163675	5.64934836814385	5.71366589611439	5.63317342577824	7.22247694021933	6.90914701190558
+"PLAC8L1"	5.57536840050725	5.60624944612842	5.90789416069157	5.8845018350121	5.81235654193978	5.73264349857089	5.73963653656651	5.6189491695015	5.82271277097956	5.37670845675021	5.47143052989893	5.62277919412181	5.68252365059641	5.69577685897904	5.94748957210648	5.96574969912339	5.741346291915	5.88906128576498	5.56505225379663	5.44435383561849	5.7104903755412
+"PLAC9"	6.96565752209909	6.20164518906769	6.06630590866418	5.6692646575273	5.43049927939195	6.02671317816497	5.74331805373381	5.73667901470225	5.81657172834669	5.69526791223405	6.13531937522049	5.84680436663177	6.02441738286926	5.82120203674717	6.00690087032759	5.7426882034265	5.79561730967329	5.42462436943615	5.80088785490563	6.0928409513902	5.84680436663177
+"PLAG1"	5.50885223474614	5.18815147070845	5.56206373085824	5.20965992393105	5.14615916532041	4.80327189434274	4.93863448461738	5.366541489748	5.04641985957104	4.54462462626392	5.26532760042747	4.78540981837576	4.95536744384778	5.18437405281665	4.99392271843972	5.86974246229882	4.82107993112908	5.36672867792941	5.12412882071819	4.88680601579639	4.97843850374602
+"PLAGL1"	7.21659392995818	6.98472439309991	6.84506963993353	6.93405252511152	7.02772851040946	5.93997834659421	6.05602578490818	6.47540998719159	6.77952143712851	6.85746473341847	6.71955404869417	6.96200273904554	6.89880939395211	6.55906097447666	7.06134526563593	6.33595660498235	7.27946126401561	6.84427588802116	6.65269205235423	7.1012201751703	6.77697104175107
+"PLAGL2"	5.83955491092962	5.48700567329006	4.97718584388349	5.72390649713272	5.1480371938625	5.573081119688	5.63776552694246	5.62480614218132	5.50664876278465	5.12872212762702	5.40662172421989	5.25565042169086	5.70384228102043	5.32133009590556	5.33358936572871	5.68937440301532	5.47382210435495	5.13209439903497	5.32254941860928	5.45124121372987	5.61643411790492
+"PLAT"	8.90388705281288	7.69087215453969	6.69927062739183	6.64498754240982	7.0492719899524	8.23893864437604	6.87565360742901	7.04019881352728	6.69280851098022	6.69743774043241	7.97629371091914	6.98924996082707	8.02908190246342	8.0457153350314	6.09535942373189	7.21891953411522	6.58120928425143	6.98924996082707	5.58476861312049	7.27129780307389	6.82588007107093
+"PLAU"	6.12580233526058	6.08866833249608	6.07997213745524	6.1010891081532	5.80356616231799	6.6370714515171	6.71072637242015	5.96200904625018	6.14987970633033	6.26423005459452	6.28282034841507	6.20774623455149	6.31054425290308	6.54479353933719	6.45009968390857	6.25222844717871	6.17349663915552	5.8046063198732	6.66890167519	6.38871975663767	6.28841744767326
+"PLAUR"	7.53068629078535	6.72125571948153	6.41249656908269	6.96554960293885	6.74283525585718	8.23906858814586	7.23819155805535	7.41009536135298	6.91124599651339	7.03090830179319	6.8322044618065	7.04494693174483	6.89616643479893	7.19410167865788	7.12675859684048	6.71890435940965	7.6063633101353	6.57318704541216	7.3407546741027	7.08316510556567	7.51700500158058
+"PLB1"	6.46700093572509	6.40083788969067	6.44375206131067	6.57079031843103	6.35010296551006	6.33766291086136	6.66561447964908	6.61090369322914	6.5424522842098	6.54968666777683	6.54853444320959	6.54968666777683	6.58006218238282	6.57342033778213	6.64509375098169	6.79989884275345	6.65458134967486	6.43336614214593	6.84496929924392	6.47048995945032	6.68733086385633
+"PLBD1"	7.72118859366949	6.09439154137047	5.07250088383784	5.96169453664157	6.00673843996858	5.86440168919542	6.24767536523879	6.89642524892776	6.15046676245542	6.37685832109372	6.36260307603338	6.16812742106113	6.032183677231	6.49346994663761	6.14951317588086	6.1356233139821	6.25005746463803	6.35274167043114	6.40382767411492	7.14364461846849	6.44314739108516
+"PLBD2"	8.89647252295351	8.50488869516199	8.50953268491997	8.51645618075582	8.5344133537799	8.89763202409459	8.15680902955279	8.2349709599692	7.99948548187474	8.63463205614586	8.6404938610962	8.69152311721892	8.62261579166624	8.50382832471962	7.96470216011174	8.64273481521106	8.72216943537194	8.17590674388113	7.85306294203617	9.12460234954377	8.77492874590618
+"PLCB1"	6.59640654199987	7.31198852831344	6.62279967560962	7.1395385001019	8.28124086599281	6.83281958052156	6.82041432172241	7.08768199281676	7.19824995585462	7.82044517514544	6.50567213673911	7.87457820717645	6.99091621329748	6.97298166974515	6.69712952332582	7.36823411567264	7.80293657105205	6.89273129555185	7.26379415667567	8.19455248617123	8.20355160918879
+"PLCB2"	8.07555443098272	7.9688713253301	7.81498859824363	7.86900679383176	7.82514354554132	8.2216640633941	8.12833376590062	8.0247778066068	7.73378314823404	7.91959566143729	7.67624064911394	7.84495647560271	7.82197121219751	8.1209291670001	7.87524242834861	8.11812979263964	7.84557597813518	7.76601609470312	7.91283976729908	8.23234740965152	8.16019834900989
+"PLCB3"	7.34557335455713	7.12048645623999	7.14513880339667	7.24708137443869	6.88963654775884	7.19570421990249	7.58536621439201	7.14788826910635	7.2586822452773	7.20397532673124	7.35130212623213	7.27264956639004	7.58822506920986	7.44362968543207	7.24017496036985	7.13927160488038	7.20262026282327	7.08124084447257	7.33004762876668	6.89230054810825	7.21100116500191
+"PLCB4"	6.70555504347876	7.12257147915531	7.61902245313103	6.90129015718326	7.93188256985042	8.2667752629473	6.46124253963598	7.47007971413088	7.50895296794067	7.5632798695735	6.79150174251677	7.46380663454713	7.25648421448376	7.25581795454451	7.74037598034744	6.09369549509223	7.40296268250291	7.54068286154127	7.64040917063233	7.40553958488221	7.54208495291926
+"PLCD1"	9.38715776307961	9.07687772855328	8.83119023899489	9.12544704759265	8.89461275123247	9.00218369319578	9.53484646032518	9.48304704492341	9.06523961084791	9.07657747477007	9.61408616692983	9.31516668713265	9.04503342412195	9.27948338029002	8.85579388735694	8.96830924335141	9.07687772855328	8.69632648034511	9.15900108825512	9.10153194506358	8.71798115647572
+"PLCD3"	7.98575592776697	7.74972805994598	7.21059551046631	7.68065910594805	6.73159853474907	5.57712217802773	7.69022490179475	7.67191293644821	6.88207758654483	7.7295813986884	8.937188207001	7.88325635977304	7.29276655113555	7.25810626972054	6.92063837119347	7.49794849389139	7.4008278726801	7.27307554569634	7.73189022311654	7.85098906481452	7.37050860255156
+"PLCD4"	5.94879960390879	5.93604668582971	6.02232548173097	6.01096729112887	6.00263915823666	6.56129588516898	6.15027351336118	5.87266492172337	6.12828542676399	6.08205851044047	5.37413021076987	5.70492274301271	6.5396026622584	6.69425206282014	6.76095343547027	5.78441811786656	5.93538194398532	5.83673415914737	6.03029692797099	6.04326884487044	6.16338232955149
+"PLCE1"	7.66253914054366	6.37341989676706	6.01848669207902	6.66725866675461	6.24950935173564	6.50715129006688	6.68458396877338	7.39377292653463	6.67123169636382	6.80087025873776	7.2539119304851	7.09302935090911	6.50620396690852	6.78806016342171	6.2663807947166	5.94817434120688	6.38505017972283	6.20581295203044	6.30561348893259	6.75925359469434	6.98823796223249
+"PLCE1-AS2"	5.19405464548593	5.4831019252161	5.44969832233166	5.86860961912286	5.57734561160079	5.49808791009291	5.96601591213489	5.59386894518948	5.24460871218179	5.49486095646782	5.22871547353726	5.3385305721989	5.82472841863412	5.56708246240945	5.44969832233166	5.41754443979999	5.61332179502309	4.92877958974496	5.27471274583729	5.19089027377956	5.44969832233166
+"PLCG1"	9.11348871806218	8.57258807317056	8.63566759659082	8.72549303968363	8.49474023837728	8.93004036380253	9.39498468377571	8.73857734300846	8.76772898806903	8.47821912243781	8.64147954810005	8.37666057101574	8.80014931297045	9.10262548974382	8.82524464295677	8.6437858767907	8.69475782251998	8.78660556878221	8.68946088128533	8.57868933388476	8.3407217419545
+"PLCG1-AS1"	4.67274927489084	4.77016994788227	5.13089700283929	4.33832554697482	4.45475208436719	4.56932165426298	4.73993445242622	4.56932165426298	4.42236112495982	4.27031746226937	4.56932165426298	4.62793745198526	4.49513132081924	4.97218541101404	4.84845674828889	4.41166330957951	4.80034306955918	4.68491898525943	4.30322511450567	4.16531881341699	4.11812654182263
+"PLCG2"	4.16214301233173	3.97521665806832	3.6604447405041	3.9571848662146	3.82118075863067	3.85358337338938	4.19951050295409	4.07487213120788	3.72039549925059	4.03805361863305	4.01303826909915	3.98343265753649	4.2512218930625	3.97521665806832	3.9464058068404	3.79716719595692	3.97521665806832	3.83940635692727	4.17199971402051	3.96944477782434	4.16747329273862
+"PLCH1"	7.44872174293006	8.11503663857635	8.5614473717764	8.52559957711625	8.34711818797908	7.60724422322975	7.51589179709155	7.96993913229301	8.40858800186347	8.27791643414988	7.59922373650868	7.66345742712414	8.57810423887255	7.72013367222594	8.68037426965135	7.90032873518218	8.54732283700473	8.13840526828238	7.44674753152939	8.39653569082753	8.12156880683143
+"PLCH1-AS1"	4.72486908062166	4.98937325613054	4.72256297668969	4.79687927277644	5.13800254619257	4.85912655559379	5.26577045111322	4.84432908535951	4.96836170959468	4.9448717166805	4.79529399157987	5.16649647089525	4.98236031820985	4.84495739538867	4.99243939745749	5.09483284294622	5.02911786542874	4.6245188451624	4.79944432949029	4.95840557352494	5.13306166169533
+"PLCL1"	7.74207266541953	7.67738282771881	6.88146714678546	7.64225900301335	7.67816764961981	8.03566749175707	6.95789826556035	7.55578689595153	7.46716287097082	7.25506803261141	8.15964094725013	7.34315300121466	6.98688130027085	7.3567287413535	7.56571819606931	9.00310002377872	7.74885676178466	9.15560898001582	7.72430775610755	7.13926546023604	7.41790675013203
+"PLCXD2"	6.38153560558372	7.21824330123819	7.98205286255104	7.85238968242951	8.02262250471315	7.5077941664562	6.00663735522629	7.71183195646803	8.39172251843923	8.12316390011887	7.20264359920469	8.02909908046554	8.27613719985945	7.4272973203372	8.65289281560963	7.34754059036485	8.37557060827121	7.72233778804	7.99904176271475	8.02059813334463	8.16796807577362
+"PLCXD3"	5.45828853194624	6.83631008073874	7.70411578929214	6.75208714765352	7.49511994509306	6.68439342207316	5.58400036908701	6.53827508318361	6.8383806229948	7.18175783441474	7.24366913889992	7.59548454988951	7.0763043979509	6.81533434214401	6.73253309867692	6.98101265747791	7.27246263634155	6.88554041761118	6.93851787970693	7.78108752577479	7.12098008554743
+"PLCZ1"	3.52130887538741	3.57573390607403	3.63646440319942	3.61089675788354	3.57243185019907	3.84925062342181	3.72387084251992	3.64840593302855	3.64244440333094	3.68677898483993	3.50621582257627	3.65001149051254	3.64244440333094	3.77861682623231	3.67452523052933	3.86788405282383	3.38579688953633	3.64244440333094	3.63380446419854	3.75528634499714	3.5573352321478
+"PLD1"	4.88867588614593	5.70057897223618	3.97751919832902	4.19066711221914	4.52705844128479	5.13520467438282	4.37597149971331	4.52152852237445	3.46924752939726	4.34979149686845	6.09004024489074	4.20230649101955	4.0961043827312	4.20682850864751	4.00015411538881	7.19500945611236	4.34634699370544	7.39480580929963	4.69249195164297	4.8236333514697	4.13715949673152
+"PLD2"	8.25584429098414	8.10731135736383	8.01441873492536	8.07623771500568	7.79977566777468	8.17390711479562	8.4370844373509	8.35812042470014	8.00343225318595	7.91520779200416	8.30596852391845	8.04775928273269	8.03554402340224	8.23618746749934	7.86834589644993	7.86873559733102	7.88660199040767	7.76330684851333	8.12712571821067	8.01753740785992	8.10232540371435
+"PLD3"	9.02612005025658	9.72044211343169	10.2010687359095	9.59789948147576	10.5265429939045	10.303878652011	9.16610015217915	9.60578223542083	9.92197047302208	10.4480552437307	9.42907077046636	10.4173262781347	9.68123385817439	9.21380770602875	9.18094068395202	9.52193842008024	10.1078563741965	9.93233260440659	9.45872201326635	10.7454129384738	10.4031843546547
+"PLD4"	5.48345339109171	6.23215096981965	5.95757351007034	5.62992318525166	5.73968375109048	5.78453735472705	6.59704234796142	5.61868683181669	5.93379426111934	5.87928859412773	6.35206090526006	5.67628774517507	6.20646077594991	6.3458716562436	5.69979435394871	5.86291970255998	5.73217721478469	6.17366868162331	5.59894463636478	6.0847174314242	6.21081821015497
+"PLD5"	6.63709690421287	6.9132475821373	6.71196490644381	6.97882132251313	6.94859144483728	7.34716482571799	7.16410279026005	6.96197692802172	7.02447710879728	6.76174314704349	6.86473510120664	6.47103703084342	7.06702244143411	7.06828223981282	6.80927260624733	7.42026706268755	6.58983184306247	7.78914414062215	6.60774330472604	6.91495651248815	6.67251186063467
+"PLD6"	7.36474848387455	7.64870236050265	8.24860518278137	7.80816966503999	7.46181211831695	7.25394419381684	7.64732182559444	7.53124777635152	7.76668904107104	7.41443172645226	7.62336424763279	7.34027884308622	7.85508310449441	7.17854792958793	8.15396868765179	7.59924993000889	7.59924993000889	7.71126647949856	7.4540344907272	7.83244769799884	7.4148837094945
+"PLEC"	9.4769333761175	8.14565749702156	7.57155785949219	7.97007562869718	7.73238091592661	7.49736778337459	8.5476511864988	8.35889338124184	8.05298132055708	8.14976440432295	8.60281117718039	8.2639126645281	7.69393018416504	7.91493261144576	6.95313745306307	7.54031055958596	8.26845132022353	7.7432935174139	7.71479224160554	8.081674515277	8.09216259412392
+"PLEK"	7.48312603389045	6.98083717362175	6.3337493315296	6.64942964815253	6.78746549787468	5.91231003539732	7.00114192010537	6.85703936654534	6.56056417954676	6.92456077400553	6.71129415807107	6.1991485978066	6.5764419027422	6.72909768310383	6.64766658754041	6.69721810257157	6.21063277617341	6.71129415807107	6.53250101181267	6.98085533597846	7.26081133117537
+"PLEK2"	6.14239245446495	5.98737603366594	5.7615219304044	5.98737603366594	6.10172455145438	6.09527952799506	6.07102401181757	5.93439056849202	5.8059784280558	5.99109269953589	5.79040928123835	5.98737603366594	6.22528175453793	6.03773061192941	5.98737603366594	6.2408154039652	6.11084675456258	5.86928506616428	6.12550558267109	5.74901057805726	5.87929678004893
+"PLEKHA1"	9.36725577641114	10.1113610353447	10.1433282470714	10.1829917178576	10.3747240478482	10.5195309695011	9.06131560016057	9.95617517952953	10.3414803640873	10.0949635478892	9.74000178474551	10.4574961432622	9.93414548468641	9.64413541641065	10.3573666910201	9.96202065789128	10.2618796949166	10.1875528226386	10.3218248064388	9.92845566890708	10.0621241535196
+"PLEKHA2"	6.29079601809376	6.53009835673497	5.26590355278674	6.95823555802879	5.49378429521139	4.15522498746433	5.89212072590672	6.52895373924792	8.08371228084892	7.70414870871476	7.01896166770678	7.36387544680352	7.09475500805834	6.55687286115392	7.48018353284922	6.0023424781701	7.12659906870235	5.03729569008322	6.66846527075555	7.29729993282395	6.84077998819356
+"PLEKHA3"	8.6501703536851	8.93728665788292	9.16849602460374	9.23855464353629	9.20516817819883	9.07558963311117	8.74315631185882	9.21470661481268	9.37115395459354	9.04771972190532	8.61368046044261	8.79890097874772	9.43888462772894	9.11258730651232	9.67741366707402	8.84789678219576	9.19207301068396	9.05739675088888	9.33772398431667	9.07690264704455	8.94191723098671
+"PLEKHA4"	6.54020709101771	6.17659787947673	6.27347281870428	6.30368355574516	5.93831627266582	6.86169440003981	6.57211625616677	6.42130394341184	6.18817070763374	6.40135995315525	6.19588658331485	6.39656192115288	6.51286776690837	6.57383749548144	6.15897923610961	5.80904545135993	6.1019795057105	6.04678657217168	6.48612354225022	6.39356475804677	6.25424139956959
+"PLEKHA5"	8.43047296601816	8.61691820783441	9.08545708710924	8.75954439790053	8.64696638449172	8.76356827506218	7.58120788882535	9.40123317650288	9.08774821154316	8.43374605597724	8.40252237944347	9.95005576443886	8.61691820783441	8.36793823127335	9.02609185098395	7.97648485581544	9.05591617752282	8.37440678189104	8.69748216398186	8.49118237160109	8.19288838888243
+"PLEKHA6"	8.32680507778596	8.89409759080127	9.18489050452503	9.01097805673098	9.04680261868828	9.04720165777735	9.56621905817136	8.84976365087303	9.36058641712628	8.78004447569755	8.65271823723785	8.83375060064601	9.34049460493737	9.26381493209272	9.50343357237469	7.83658372533783	9.20376701875239	8.66678774609953	9.03320026940784	8.75216057137226	8.73647078634225
+"PLEKHA7"	7.32840926855866	6.00129344322803	5.93464919754569	5.90017716520233	5.79799322406075	5.81319071877416	6.57414835014569	6.20897021993778	6.05189892051873	5.57555895644242	6.89950277173478	5.93860678897675	5.23527432505733	6.04046935549919	5.70596014636713	6.57336850331163	6.17642790658713	6.15414076683915	6.37637578583189	5.81469459291494	5.33588758920697
+"PLEKHA8"	7.92161430369619	7.7898063827149	8.13602667966975	7.9469417606233	7.89836715110969	7.71272126209771	7.7495519905144	8.18204004378225	8.29735845927008	7.18876826338923	7.88218489567943	7.56375422902796	8.24680750276523	7.91270968770583	8.50303666137972	7.52360991236492	8.13976189497618	7.78811936829576	8.12549437075116	7.57155190227006	7.5275931184528
+"PLEKHB1"	12.4158251307067	12.0367572331133	11.7109631964125	12.1078140444004	11.4698977780359	11.9714655824884	12.3939098347238	12.1925515669009	11.7327757092333	11.5286371574739	12.5372683820456	11.7397054241976	12.0761843611592	12.2134031206911	11.848681215662	12.5268849361028	11.6689111695944	12.5801407360401	12.1118102578669	11.328706258771	11.7055527519456
+"PLEKHB2"	8.60585869374878	8.73626577031908	9.00350164151778	8.70161645554452	9.65535140313581	7.94879106374141	8.39841548123394	8.15641013898661	9.13201620551171	9.345619983523	9.40650266295997	9.46878593444891	8.70170959446973	8.29269666808036	9.03611327050206	9.20326345749105	9.10754757026719	9.38581041368857	8.80283726789732	9.7378997622996	9.45494828885231
+"PLEKHF1"	7.35760761821901	6.88772831896482	6.72193005508882	7.01714163905033	6.8993782270099	7.67489831940719	7.26425436612674	7.23063359229862	6.55011574897516	6.80313380468457	7.16270405122707	6.7428719199199	7.16245589380555	7.39286047609834	6.94969793785105	7.01778698655295	6.92467896337423	7.3020963795491	6.76030681612733	6.86450101786753	6.93138584698336
+"PLEKHF2"	7.22383092312653	6.77386437997139	5.70862308527074	6.83160599005409	7.09508473513436	6.17620414338152	7.08862177982488	7.61449517865212	7.02261145601034	6.43574146250691	7.03904839744444	6.74859441373745	6.58184447196627	6.23179840345365	6.61551862727053	6.49486196581938	6.51206801639342	7.12343209967052	6.93045971826894	6.61760108656451	6.47494972388999
+"PLEKHG1"	7.87610030758638	7.22704443361305	6.81860864872599	7.08345844009898	7.06991869052074	7.07914739667506	7.0825306242803	7.12963096527639	7.06901676044016	6.7518228191957	6.9951292650786	6.83982936686955	6.64302959674424	7.01535662535237	6.63968856373052	7.40404589769208	6.83623498750249	7.04367195138841	6.6177258988495	7.04979098729107	6.73198644911398
+"PLEKHG2"	6.42148667821566	5.31305848249448	5.36829803490777	5.39576317200021	5.39576317200021	6.31039493338129	5.55418610784459	5.7662511083396	5.57072101441723	5.58996111416434	4.84610829247211	5.47203692762553	5.28223919724222	5.99098184509679	5.49330316095636	5.03272976642458	5.17194725590049	4.96919585467531	5.21770696727578	5.39576317200021	5.53382552751843
+"PLEKHG3"	7.42299053034007	8.19547250346301	7.67823103452388	6.90639154552744	7.38645495323554	7.5247295454083	6.68278286110232	7.01487584382894	6.33961635660139	6.74170369689312	8.53773995361761	7.09458216397847	6.96082725153902	7.95150013544577	6.26395180272303	9.2508351117347	7.17001835339168	8.78210294506145	7.00928172456346	6.5561915416517	7.03774750977445
+"PLEKHG4"	5.69520474446307	5.90236247592193	5.86985491631568	5.73954927391109	5.8226387468236	5.73537329785547	5.66924473452819	5.44378067700604	5.71526505182296	5.74367610228981	5.82287033003888	5.61226127972902	5.77654023698337	6.01036675145017	5.41483463106846	6.30311305743308	5.67852491914985	6.22190732441137	5.71319614065346	5.59124816796076	5.62165116400172
+"PLEKHG4B"	4.17529210248986	4.27111848199917	4.30202626977006	4.42727456003039	4.13811522873034	4.50131668391888	4.97996265113183	4.22068664813478	4.43496092381374	4.73388248622156	4.5375452475856	4.43496092381374	4.80657576851991	4.25753938572843	4.60432838805109	4.26571584064163	4.61373047357387	4.20291384464216	4.67378366767489	4.43496092381374	4.76122850746475
+"PLEKHG5"	6.92142358056718	7.37619733069662	7.83559846057857	7.35740946920059	7.69861966472878	7.51377557163969	6.80233994467814	7.2378121407784	7.34751736909214	8.06141808424415	7.14867036940453	8.01807739973226	7.54854430163935	7.43823127260748	7.00891411829898	6.96862696670893	7.64843318232649	7.40332911015299	7.08883808050352	7.76384559748832	7.69790114498422
+"PLEKHG6"	5.37396229012095	5.50863410710891	5.46218168233154	5.65998282880487	5.58317773789006	5.61244001009017	6.00457456699752	5.37519205137895	5.47877493587102	5.53617828948133	5.18465230678142	5.4877351906568	5.77858365294462	5.83248475931933	5.42694775529487	5.2673427934437	5.49186014986416	5.3512446716392	5.50486163459243	5.56008047290899	5.50863410710891
+"PLEKHG7"	3.20071046872282	3.39996327800576	3.47878785054211	3.3666938321657	3.37844292983641	3.33950412713983	3.47878785054211	3.42159340163265	3.52794444075191	3.69456679045124	3.3275041245182	3.55045936251259	3.47878785054211	3.5821171654736	3.64144220913559	3.62807996162126	3.67216776847921	3.29419110563392	3.43400069074853	3.51588793995637	3.56767426719492
+"PLEKHH1"	9.23090005766804	9.71616497229217	9.05287146691074	8.83898095428987	8.77785558990313	9.18789473164167	8.02527926018476	8.26573303151797	7.4874469703305	8.00404695169197	10.5492363900073	8.50888692887584	7.35819785786859	8.71083106081361	8.08881727445742	10.8250014763185	8.74821337062331	10.8515115784325	8.98083101847734	7.82668551277613	9.02343320116326
+"PLEKHH2"	6.00543506268546	5.84140526650609	5.59882006071472	5.29086518697505	5.33178929007598	6.74590157113788	6.21937082919981	6.20487624096161	5.79608450905793	5.48815798683751	5.8668976310647	5.71662728232225	6.02151178098848	6.03115153596284	6.4245334612273	5.60882485544981	5.93482849474096	5.05497694948843	6.13518807131654	5.60694707104892	4.5231016645583
+"PLEKHH3"	4.93779438031075	4.36577273356284	4.44288349057479	4.58831259765405	4.25059144214448	4.89838014061039	5.34229731191906	4.51831918178238	4.49907027910088	4.61018112220182	4.78859852031094	4.58831259765405	4.65375754656177	4.70934497966699	4.58831259765405	4.37915817089889	4.47846724279312	4.27784891056237	4.59852520434568	4.74599444222007	4.58831259765405
+"PLEKHM2"	10.0242906822393	10.1508430234588	9.91471460027803	10.0884398013334	9.85191839526514	10.519876234876	10.5892989143772	10.3434240203782	10.1841745085698	9.91333811260741	9.50475666261197	9.88752221301365	10.6724752784278	10.7338578146107	10.3624946729916	9.10493725944942	9.940081238603	9.43547624346084	10.1895811093591	9.90386060346092	9.88061398966859
+"PLEKHM3"	7.9502956047786	8.63465023598204	8.95300854877911	9.2175779798446	8.85176814108901	8.26941944214284	7.50634163829856	8.57389037070066	9.28810260042417	8.74917164002209	8.53110972464725	8.93148454475597	9.09652677020991	8.26634631924797	9.1927130976505	8.53473204818503	9.10100943692342	8.85429380892804	8.7062293255984	8.71805789945133	8.71802370581316
+"PLEKHN1"	7.33948035271429	7.56166824055115	7.67905334031011	7.59251825264181	7.32302149903287	7.8820571637137	8.05875764921791	7.49574705539105	7.77506854721266	7.60229545554892	7.5658890758208	7.5347960240398	7.80254470151813	7.82767042831942	7.75898837709009	7.33038154650461	7.63715543739872	7.55747657117083	7.93960387426248	7.37058716198498	7.46283599696667
+"PLEKHO1"	8.90011839830353	8.31039920926374	8.7832791892207	8.49231074011084	8.36169597548947	8.5358323775312	8.45764222884995	8.82153533381895	8.64362951859478	8.57796371817735	8.14181490549517	8.49137791930809	8.49231074011084	8.38517546772475	8.80356399184098	7.73909322536483	8.34430275782488	8.10958133879813	8.60379173733328	8.62154142424385	8.61350507019099
+"PLEKHO2"	8.69575768974821	7.85868927472141	7.79871852803382	7.75747672186388	7.55567342864276	8.05043278117008	8.22711796607457	8.82743053788717	7.76901788761883	7.66936770095084	7.93805590588357	7.96582797605363	7.50229104877164	7.97813254213608	7.55735602550774	7.59924993000889	7.78265892081931	7.54562218375385	7.70000174102628	7.95029971927534	7.62054725445244
+"PLEKHS1"	3.25309811826045	3.36521819918553	3.3573949947654	3.47150706962803	3.10445188916792	3.64931760976242	3.57512954289659	3.42522595115661	3.5007710566918	3.53741376891322	3.42729387881806	3.31822673449065	3.52591329555641	3.71308078667682	3.50550226871079	3.40987752177153	3.4099598285507	3.5940220400786	3.44476412551888	3.59436572964288	3.3404377108901
+"PLG"	4.24089318931763	4.34709743842909	4.34709743842909	4.32821937864186	4.37707433902194	4.49853815513027	4.47243191570422	4.21131602960019	4.35526696153496	4.29850615778706	4.34661471028769	4.24253098427056	4.59405618994402	4.45113826607577	4.28744035479019	4.40508623353455	4.19676334196194	4.27976929381427	4.59686836729455	4.33844436933875	4.490342756909
+"PLGRKT"	7.00242584796194	7.25443539444749	6.66372985891453	6.45187681202599	6.86963469278663	5.9959946782483	6.66962197904374	6.87454432148369	6.60773103125895	6.66962197904374	7.29082821283188	6.71774917808532	6.19549461594206	6.19306471370117	6.21471315634892	7.3613631433491	6.33859325158796	6.76700301970689	6.70184503480271	7.10908611461644	6.38930169090455
+"PLIN1"	8.62711445334568	6.92088498184724	7.21136846668994	6.93794369599605	6.78678538506689	6.54133052700278	7.3077444247307	7.17189326348289	6.65443294663998	6.85240233321982	8.04858347283034	6.91128441303085	6.58820384705883	6.45057815736652	6.79698700410216	7.914645965227	7.11762809172716	7.2681553409355	7.60312331815906	7.10971046758037	6.69637198637535
+"PLIN2"	8.71490565858257	7.00177342427267	6.69757677694774	7.34899009586711	6.86658095514032	7.76197192771304	7.9992291879311	7.58919009934068	7.09381792120172	7.55005426587485	7.26192854409439	7.19473907144672	7.06934350640182	7.61790590327054	7.59348239619547	7.39032393475074	7.5669878338225	7.62523167282733	7.40296268250291	7.09222268793449	7.53404898915355
+"PLIN3"	9.45291227378803	8.86738016837984	8.25502111154734	9.14464933712176	8.30470720114538	8.63388238758769	8.81797536930312	9.06281707543883	8.62237915418936	8.77235643049712	9.76951545238444	8.87735504807223	8.69013009573859	9.07447414810779	8.71414500750136	9.84738617240711	8.74821337062331	9.88895279528838	8.91862869191321	8.3595426624624	8.57358338675773
+"PLIN4"	7.01867285577467	6.89816609640961	6.98422105314579	7.24524023400899	6.72534454827284	7.25205907442397	8.03772279939503	7.03072129538978	7.08561257344152	6.93184116241045	7.10079786584822	6.80310682722259	7.13262558301501	7.66378327807743	7.0560542717382	6.58147214565638	7.30922439280586	6.46624224998915	7.27565397758924	6.85023307943992	6.838928867952
+"PLIN5"	5.91803815511471	5.98058549330421	5.91375097853928	6.47333426149882	5.5845565811721	6.12669624268758	6.34476857823354	6.0580826474935	6.43430433111513	5.99678632090316	6.05322224230262	6.02311597514223	6.41427321579372	6.24443397539332	6.41932378676923	6.08361367529484	6.08462548424215	5.60306336695294	6.05456894186071	5.30924610399132	6.01605790178716
+"PLK1"	5.85629004392639	5.6290179646455	5.98902407011924	6.03048190116595	5.62486919016637	6.06067599626197	6.27335945387749	5.70881038838309	6.07517566413581	5.86175747625759	5.41342884369403	5.85244293722759	5.85629004392639	6.04546127569444	5.81597868123565	5.61427864793243	5.76228595590703	6.04009804978376	5.92804389287511	5.47542763050103	5.9579973436336
+"PLK2"	7.71791337679779	9.25427370565347	9.93762220108671	8.93106621422044	9.7043259611582	8.11776222308508	7.27348863001513	8.73292671400925	9.26753072552043	9.24605606508957	8.58045035683474	9.5559412337328	8.89472383701277	7.50586535550404	8.75185828964993	8.56475285991288	9.22632322188094	9.18335517317578	9.02033583318791	9.44438676891709	9.14674631635408
+"PLK3"	6.8579534287999	6.78331224141729	6.72856022801351	6.90421591712788	6.85033774279691	7.12532838317709	7.03427188216364	6.8344247846135	6.55945690331941	6.62454154677904	6.87735399369883	6.87879189766548	6.86012623268508	7.06666761084124	6.6250229900841	6.70107964348115	6.66479817680173	6.70079972018745	6.81505785057677	7.07637200547968	6.85178451125971
+"PLK4"	5.95568285574055	6.38581051441529	6.16510662973293	5.92217437556916	6.51057927885581	6.12055631381249	5.95677318170368	6.22723644640624	6.05754664695439	6.36096362721865	6.25406388453065	6.33571552327933	5.91915086378956	5.90676586224539	5.89218933556139	6.38196981333251	6.24509155572983	6.09956185303192	6.09049763368682	6.19144566589266	6.03205244452001
+"PLK5"	6.63331455074359	6.89546907740355	6.88304766085054	6.96610702914392	6.8485504803115	7.18611586451469	7.25246309228706	6.80859090481236	6.98994331278907	7.16838166327248	6.84112870356522	6.80988505218093	7.58391081584187	7.1652056407793	7.09435481478561	6.70171314654143	6.87462869037707	6.55541343581233	6.8574967503832	6.75245365802654	6.88418392737716
+"PLLP"	9.63640441311193	10.4165654163393	9.90400322978344	9.34329079350514	9.58925113442541	10.4605423995171	8.91400636820934	9.23503746856825	8.02794555230427	8.95711979619612	10.8595507479581	9.42792983394324	8.31705484650095	9.64995633164418	8.1850764474451	11.4631625459081	9.07159601024662	11.2120704781547	9.10375396445408	8.86929953300789	8.74256690205061
+"PLLPP1"	5.08434163260989	5.08434163260989	5.07097948474711	5.08434163260989	4.94545445265619	5.27407985467321	5.32959527682592	5.11408254198063	5.01485061951131	5.04048355819921	5.08434163260989	5.13402986293962	4.97192181212753	5.3457211821943	4.95771342590708	5.45084581742909	5.03290269948887	5.12470280903672	5.13367742446694	4.99363435265761	5.08434163260989
+"PLN"	6.31969818986096	6.37101965509536	5.32692006831047	5.96777744796683	4.81404966727502	5.68980096077837	5.59263521384822	6.41805195705374	5.26829674004873	5.50038190248204	5.34185973356943	5.47542763050103	4.78854323661289	6.3457385437978	4.53950263451484	4.92874081326635	4.76410486695143	5.16819014850556	6.71297529188795	5.64025892792471	4.85842846239421
+"PLOD1"	8.43263938260616	7.43727546907953	7.67309745085132	8.20618711519602	7.44246686510343	8.33188411450823	8.47287531514536	7.93646575787579	7.66401108137579	7.84955176398144	7.73995866470415	7.57455412707066	8.26592312265582	8.29903950572101	7.86884134601222	7.76192023541513	7.81592217270441	7.99286061571908	7.92623351894079	7.90996113799395	7.93299318238383
+"PLOD2"	8.95986644901732	8.32380944034566	8.0349736845227	8.48672435563237	7.9453837145179	7.73311656342561	8.76355204207193	8.73082414984011	8.09326976664355	7.85086484305448	8.40098704590303	8.12462561566363	8.84824816106809	8.06626994155329	8.53640976257175	8.40285885036318	8.50846749892147	8.13423122767532	8.08650466328168	7.9871857443349	8.19404905585282
+"PLOD3"	8.55839233496177	8.40839935517836	8.20177232380301	8.58265786712288	7.83286696174754	9.03397012662145	8.87191661610746	8.34468616618115	8.0986225273459	7.71592594773905	8.86143491762937	7.92761312024671	8.49079130299758	8.48960993719314	8.61562985477217	9.26668379917937	8.09505011464399	8.86938523748153	8.59709986417741	8.00916437983107	8.04546804970861
+"PLP1"	12.6470314358348	13.0218919286899	12.3243888560621	12.9891612856624	12.5305260325094	12.5755406924608	12.4683184209795	12.5458121084316	12.1402128597775	12.3414703601614	13.3408437765675	12.6158741897	12.6264767932601	12.8491633409928	12.5686068316703	13.3915122421873	12.6804342134577	13.1265397132705	12.7577650616945	11.8986756712858	12.6003457854176
+"PLP2"	8.48359354518459	6.59375321821007	6.51090820999459	6.77397224028992	6.55946353853362	6.49722471364664	6.71196010375556	7.28919396804605	6.54117063971577	6.77708293796845	7.05741336596542	7.04013394502159	6.64056422583562	6.95624208212888	6.69046863383598	6.60216497551687	6.67704280569631	6.6028364866955	6.39699016854849	7.53330066625464	6.79887863900226
+"PLPBP"	8.04697492847029	7.7998962180222	7.49449969751203	7.63494185706303	7.86215865095267	7.09319315048028	7.12438074542095	7.94872706256237	7.6402407327394	7.98547019073604	7.82690106620903	7.78513340550112	7.72553761610841	7.18135125745171	7.3651261113759	7.76853989504387	7.49934489482765	8.05853106168037	8.08554630438951	8.08839536426294	7.73652128832822
+"PLPP1"	10.4137540498645	9.70748360317668	9.03338442595544	9.53844432137826	9.71320311765471	9.91023481548029	9.60566721270015	9.971334260277	9.6174931723199	9.98205337693288	10.0669063193916	9.76972512719333	10.0248225667423	9.86257304285293	9.74945188365846	10.4391023095354	9.64764176378443	10.0926393930559	9.75233664433478	9.87725699262504	9.49567708635599
+"PLPP2"	8.33602361945842	8.40125664592729	7.76646847911184	8.08305897913161	7.49933664416482	9.4151205157477	7.91080161389216	7.50732114345925	6.56489500228941	7.75976709939942	9.45724861957797	7.55580051375474	7.59478826567398	7.73268656873931	7.87045404822727	10.0909430536982	7.59000898091751	9.66385415765628	7.75263332412219	6.87597914064874	6.86078270648435
+"PLPP3"	11.0895341393141	10.7092971478624	10.198040596941	10.4611017597064	10.0848810103364	8.60365900542699	10.8521934505911	10.8763454755151	10.3947326749271	9.95510073515748	10.6280821817581	9.83829898666837	9.74178455848332	9.85579416888699	9.62162932541318	10.2829920290396	10.0669443086699	10.1261070304792	10.1773784944252	9.90397533652831	9.38870966478449
+"PLPP4"	8.39846447814031	7.49750394752735	7.55484688062112	8.1763817733663	7.29948600028837	8.09378561084882	8.49356012729633	8.76456753403461	7.24353882976861	7.16123099663916	8.28342104539698	7.62855255802416	7.85594427283944	7.82386107936988	8.07044135934178	8.54678043322479	7.69668154781104	8.04395716081106	7.91238090585153	7.64432236310865	6.77760912083025
+"PLPP5"	8.32786069341728	7.65473891006582	7.74270506544617	7.4887086926107	7.34852401141229	7.12988947001537	7.35188168681088	7.88430976889947	7.69053963123982	7.62577368350137	7.86118122673133	7.54557158875307	7.2351899081383	7.20206711077248	7.33178221287578	7.18515351449894	7.62280617151117	7.6381216896248	7.65024372804845	7.47782144025416	7.21606105205408
+"PLPP6"	6.71737955569714	6.89570552123069	7.41109070830655	6.08145926148935	7.37061498131473	6.68458396877338	5.84324430367431	6.30688893043398	6.49079187478848	7.03785067949775	6.55332469449771	6.58328987563053	6.08316255508224	6.48562584549649	6.17120697187791	6.68178082482694	6.46444083551032	7.33674802892711	6.49310915540249	7.0491766869795	6.64737656671017
+"PLPP7"	8.05889318587518	8.06945064834639	8.30796113424676	8.0160464063007	8.4854914155483	8.05939302368654	7.6297129345588	8.04886731643026	8.4102477747062	8.13164447904384	7.93016184749459	8.33297242381108	8.08530706189619	8.10530373005084	8.19574823714455	8.03701232239373	8.31282182591275	8.32557789229049	7.80874439022903	8.27457197370489	8.30990717682606
+"PLPPR2"	8.90876837520142	8.78470615376077	8.96653910934034	9.04569104205521	8.82420632976557	9.16540095908673	9.00511816509968	8.95172728523193	8.96937062071807	9.07899306427539	8.75810474680132	9.09319448196809	8.99964708939524	8.79273273785509	8.95462955863127	8.586184924696	9.03269812056	8.5316528196469	8.94932422303548	9.11850888147378	8.98436806152482
+"PLPPR3"	6.5665183547244	6.7142756796893	7.42390698820312	7.34946679023422	6.7745008788395	6.96009020592307	7.00485736100302	6.94499410861374	7.13711739279651	7.18233530209997	6.90286462329419	7.13029421172974	7.14412169881344	6.87866238493303	6.83153348403285	6.46045982930614	6.97516746539439	6.64372616178743	7.1364959879501	6.93787447879415	7.11013619071238
+"PLPPR4"	7.84560371216718	9.28100046008574	9.97284381943315	9.56385814174975	9.50298599810494	8.65573512590574	7.89822273193859	8.87994760128636	9.5994946111921	9.1612589722944	8.64742491870195	9.37652471835318	8.88702160377344	8.26210139162117	9.36104102346418	8.30347363064492	9.413943031559	9.08452277144293	9.13631371387442	9.82160241362627	9.21888789285129
+"PLPPR5"	5.88399291422746	7.22332326973853	7.78121765851956	6.9334357615402	7.40220398315261	6.46491024601187	6.01391257224677	6.58246389222752	7.31839937633023	6.93078074474509	6.20105862167514	6.97627718964725	7.04145158997909	6.69944242919857	7.54455525363379	6.10557036229311	7.12787321988581	6.75074063209032	7.06503302389701	7.39048204792389	7.27011860630658
+"PLPPR5-AS1"	3.17084964791787	3.31753897125943	3.71173048959184	3.33185034747289	3.42055803080483	3.63768473900785	3.1816495967798	3.10926351289091	3.32233788566874	3.51391184056095	3.24586745928895	3.3441691426027	3.5611332232645	3.32489491525971	3.25041263100593	3.3441691426027	3.36177386466716	3.3441691426027	3.12977014167128	3.6068888205957	3.417872368877
+"PLRG1"	8.1349465952049	7.88145347542982	8.44285903501803	7.63077247601683	8.06411187081834	7.20562070372022	7.8993036159921	7.74312824883845	7.82620209354473	7.87304224188598	8.33385792083479	7.74951534198031	7.15185722077819	7.74169297229098	6.46803133896606	8.55917541847263	7.66369224920132	8.57074665372782	7.7560459805576	8.00889504171439	7.87304224188598
+"PLS1"	5.84400214927439	6.05705369344318	6.13079110711816	6.29315799294363	6.43288768452194	6.32872800069304	5.77127192872887	5.82287033003888	6.57403562432159	6.45070135477738	5.0280626602559	5.91000436043038	6.52628610639368	5.82062967156729	6.9777060719685	5.83502394831236	6.54257254324218	6.22306542168971	6.27225131441596	6.55445533716378	6.52881431634362
+"PLS3"	9.64846748602825	9.90813205696435	9.64915897985366	9.6809508690097	9.59575729506514	9.20887269096632	8.59363972901004	9.84012599824415	9.39868281503173	9.45674212984689	10.244336820911	9.43374721624925	9.40193489118689	9.20488678186265	9.47168466191729	10.3450217450116	9.16512922631972	10.1702805592065	9.48179315876874	9.4886975124543	9.46876304559677
+"PLSCR1"	9.46218547859805	7.98668369284999	6.77015475387019	7.88118866983867	7.97508973762335	8.43467842212448	7.64442418243954	10.1097764671467	7.62111175887794	7.81447966371535	8.4014758535016	8.69393515332323	8.05166104890016	8.00619340059111	7.75470578839671	7.53929024601681	8.4707038603267	7.7738009801462	7.64062638705629	8.05729016158285	8.72297571898433
+"PLSCR2"	3.71935386683817	3.51376374761037	3.57175906923815	3.7873982582611	3.73227017589984	3.93080378258552	3.88658231633508	3.49934618497808	3.50438626946261	3.61937356566806	3.70034397628044	3.7058384414827	3.6121224478799	3.86833819816818	3.5701208589503	3.76172737876909	3.95547746882728	3.49741384405418	3.53500867791129	3.60683511117734	3.99953897994064
+"PLSCR4"	10.6471499683509	9.51157651230223	9.31619773824062	9.71920195410127	8.97249409191048	8.65725326000514	9.83221687812554	10.3544813412013	9.66447460941237	8.90013980659331	10.7572102368388	9.87469806643782	8.93548200530785	9.39826972453796	9.34605972817616	9.21146636392551	9.26111335832292	8.76048010351979	9.75709095774998	8.97264625879596	9.16644235416216
+"PLTP"	10.6439071196494	9.55105189500109	9.19790696747034	9.20247186290043	9.05146011083388	8.33543647157411	9.62283874039634	9.81016063567572	8.88867947497171	9.65780608696003	10.2815211916117	9.50203885857814	8.83590781647803	8.95767740265293	8.46824305493574	9.18653286918392	8.99396657090672	9.09614891753277	9.18653286918392	9.79060592901713	8.65268966813361
+"PLVAP"	6.6455162821569	6.65188947277673	6.7907772780761	6.63291107424417	6.66500095960649	6.73048568228511	7.01608049380812	6.56777760043105	6.7372863152666	6.61181097609421	6.49024398155171	6.57882615791374	6.91434571368138	6.87934796315598	6.7267299132495	6.55061736655556	6.59177403526857	6.59594651378109	6.50723253630847	6.47173447850565	6.56256697624115
+"PLXDC1"	7.83566782549832	7.32657829520282	7.1431968192158	6.44208982906821	7.41041389592197	7.38818698891497	7.15557097330407	7.03623276691279	6.93766864432848	7.04316949538872	6.85706043596229	6.68620908956862	7.20168022930389	7.67615770800306	6.75093957166946	6.43816219636676	6.92742236598098	6.45158310064387	6.48540809679594	7.35046712516762	6.82609347020498
+"PLXDC2"	6.35356625098835	6.3643480768716	4.64359897884756	5.52119057546454	5.7852207419645	5.2125296746704	4.8392343617698	6.32119341492735	5.24804876776024	6.26237010623936	6.85284268096926	6.08868971442925	5.14318332605412	5.4229598470844	5.25268471753714	6.61545234973884	5.69372647897899	6.73895163486981	5.97979444415937	5.97152370868322	5.57652649135289
+"PLXNA1"	9.49823165218635	9.98717058098242	10.3172691592402	9.98547071324525	9.66036101765862	9.80731933161072	9.9834096012205	9.55831553340136	9.92042516468043	9.35458056156749	9.32871348313203	9.0639893010371	10.037910679998	9.90932824314011	9.91405452029718	8.69105860443208	9.6928640176814	9.35458503829905	9.60144136335586	9.90004575159855	9.47013060146608
+"PLXNA2"	6.68677207230305	6.07696175277621	6.01291718476453	7.00573707661648	6.45815748665144	6.5147568227723	6.34018820894289	6.03419139609067	7.34273608699237	6.80016044197056	5.97324896346769	6.68017469301276	7.06548793026445	6.89981266696956	6.58802106199256	6.08748899214487	6.55150813134519	5.56129696570693	6.29820868117428	7.28722156825433	7.12050014502677
+"PLXNA3"	7.35043284174419	6.18714095004152	6.53869196298699	6.35081548615196	6.3850449786764	6.02633901538788	6.33557151944313	6.37017332102002	6.161868491395	6.02369494771491	6.83833740093176	6.37116188730799	6.1683472206666	5.87380441051092	5.6446937757693	7.1568991111583	6.40960909111059	6.70341205656905	6.57365792919818	6.63346425252043	6.6105879267926
+"PLXNA4"	7.38311288258861	7.91805894163616	8.42805961741049	8.23273576833779	8.2036715080278	8.27749162308682	7.73906927348778	7.82280009526735	8.58596366237737	8.17851747258833	7.63786219205867	8.24975098773401	8.77229547526202	8.17851747258833	8.25053270461257	7.20160046509388	8.56571474914738	7.841701381358	7.96779216116343	8.43061901423845	8.45094557738399
+"PLXNB1"	10.5835710738519	9.90523701877446	9.26339932084541	9.51940511226728	9.2005843327502	9.84484353597431	10.2602784313267	9.76711117596047	9.26189737971679	9.48564950061556	10.3302761430174	9.14108478052801	9.23695872489586	9.74873900740064	9.08652706269228	10.4261213789848	9.54202442972548	10.1112057624481	9.56091629451027	9.0626682144585	8.89053126705896
+"PLXNB2"	10.6388761111144	9.77643950295738	9.74501511014264	9.59569341804025	9.29388090819094	9.88456825315149	10.1498027865714	9.61717105018175	9.55074909355416	9.4403560516618	10.0798103690137	9.36007665170104	9.41619860643871	10.0098365021684	9.34879069671663	9.35938055620272	9.51402927205945	9.23982028057479	9.6337853955677	9.61821579357941	9.37579715532411
+"PLXNC1"	6.58791393499304	6.76888965208301	6.29562976879852	6.1681660401562	7.12215173364081	5.18687539619413	5.72605278209944	6.54433909499949	6.51691630211688	7.08724532420468	6.36351397131103	6.88509318123314	6.00256494938285	5.84058510261501	5.87392215693814	6.95482136747765	6.8290960433722	6.38781946329297	6.39845727906602	8.1946135530053	7.10459704012459
+"PLXND1"	8.45945668690619	8.08033943819234	8.20377782627978	7.88632363246441	7.61482262863484	8.56454441433288	8.31461382662471	8.08090965891914	8.02550694076014	7.60731807154264	8.45328834583519	8.01679394268216	8.05008616091171	8.21579015684254	7.96911332589302	8.23903058300377	7.90737718422053	8.12932915341451	8.17509506032522	8.09556909633128	8.08033943819234
+"PM20D1"	4.52785323169694	4.56902333595267	4.47694291067926	4.58104435787454	4.49298002313839	4.79844440024805	4.7373423017312	4.71741797640065	4.71255769096037	4.48201717902562	4.54434900128123	4.55021335427418	4.49895776153888	4.91529989679461	4.72811163107497	4.63554511180128	4.77113800731524	4.29779305865143	4.46659023462658	4.65536846339673	4.58104435787454
+"PM20D2"	7.13995803486152	6.79859505744662	7.13668770031538	7.20138792868659	6.78072235657057	6.85983259442481	6.94931762961515	6.98496276993549	7.13419746561806	6.10271985819724	6.94814040750099	6.28985933024883	7.18027756157418	7.2655784051314	7.0977820618658	6.53380974553805	6.45441777161854	6.96936180099629	6.85983259442481	6.08605166537195	6.64219183179938
+"PMAIP1"	6.55325190321215	6.15238397042283	5.06235426304151	5.16348742199858	5.26427322969215	6.10696519538464	5.57824401012488	5.59389344763918	4.95772878452923	4.94048766247152	7.22041448267306	4.78735832559955	5.84312696983961	5.30552568509679	5.48320755786294	4.84074686212217	5.06027150090905	5.7759185407089	5.04146483795515	5.09860125772728	4.7939943459758
+"PMCH"	4.5069101858446	4.29831901001425	4.47499357730633	4.38868458282386	4.28811339558514	4.302202487726	4.37346600333772	4.20479628536753	4.90725827918214	4.2452061486888	4.38544534698172	4.42254925968532	4.54170066492851	4.18234803252526	4.47643650756086	4.40908102266452	4.52287082691991	4.24033533765474	4.3623511137875	4.65025323400877	4.59337020727824
+"PMEL"	5.62704884326583	5.83848924790529	5.45377558872376	5.78244636949068	5.58595745072176	6.19878874971758	5.950268039472	5.78244636949068	5.99890996512327	5.78244636949068	5.71448437958879	5.78244636949068	5.66141523450038	5.64528534785934	5.9402443898728	5.55944788831479	5.97839322442511	5.5158462648316	5.78244636949068	5.97127437650615	5.81497420253575
+"PMEPA1"	7.19370297631387	7.3046814508347	7.67481956310194	7.49437331762734	7.57148862922968	8.16584605402161	7.27986315612025	7.73088808836781	7.31518528582333	7.46438929503436	7.2712512445732	7.5639707318311	7.24993605185715	7.41669839732914	7.50064079608376	7.62106065806703	7.66791069302735	7.94199120452391	7.44517973953917	8.15678557917518	7.76853989504387
+"PMF1"	7.91523280292986	7.64815924712852	7.77103493952869	7.20358204355077	7.63871336137582	8.03161075631243	7.21457712097126	7.40133808450103	7.2571127000847	7.78837225187083	7.81800924589479	7.58325657073603	6.92629794042088	7.46004661141588	6.92399554537605	7.99899710300028	7.26761413745851	8.08633401839247	7.20677313951606	7.54583912648351	7.23255523819373
+"PMFBP1"	5.99947943635974	5.71929811472015	5.24885447933904	5.52298185806546	5.32277774001394	5.6824312117547	5.58688522745153	5.71011156651643	5.44170520884158	5.48748023800681	5.25481984921087	5.44285442283403	5.90739189760262	5.96663064511887	5.86773785098763	5.73548445589071	5.67291984732978	5.26116017522823	5.58688522745153	5.42581497785178	5.6311958884324
+"PML"	7.4313250687202	7.19012928767253	7.09525408940846	7.03505953670832	7.27873999972218	7.93153235868072	7.44890316073018	8.01154945251526	6.84549191248193	7.33294189087826	6.81755680871369	7.42857970770483	7.08689882729716	7.6684135594351	6.81079021736356	7.12055336906628	7.16949579823546	7.00916395939473	7.10058944177299	7.3849078010608	6.98819567044031
+"PMM1"	8.81967830043491	8.33346112858593	8.81471499225289	8.29470306329203	8.57823389590857	7.80249144737425	8.40537012899946	8.48782626302748	8.49320840477259	8.70624364519172	8.51948507186586	8.54691805356454	7.91648325288259	7.93718828567859	8.20515087196909	8.55748936021273	8.27711427994882	8.51078648894806	8.61983532059475	8.9978884665125	8.43289474659199
+"PMM2"	5.57550912953106	5.42328603516278	5.81072428505669	5.18045898929194	5.41599352716947	5.8362985803627	5.56927735103779	5.17925884077117	5.00442569937153	5.54408307192356	5.2201486464211	5.27779124338783	4.72083029964895	5.61550488366574	5.23142840460311	5.49696393778186	5.21711550131117	5.4283211458124	5.28330213885579	5.63674441590313	5.52736519695733
+"PMP2"	10.1885334103678	10.7529614662589	10.0209329523864	10.2394241371976	10.0005466407323	9.42757292511488	10.4546707620523	10.8171535580458	9.66627713904216	9.97622120220889	11.6415427638469	10.543564981573	10.5861753486665	10.2813324808985	10.3993607608965	10.9887228377791	9.90469566390351	10.5909952727288	10.435788836076	10.0623847081164	10.6300103396193
+"PMP22"	11.7673593854222	11.5201871467536	10.9423095240727	10.8339413625374	10.6839825437741	10.9447420941757	10.7999689809604	11.2576173218918	10.029420077181	10.4848244610925	11.903613847885	10.9199142320154	10.0686369290606	10.4351001471469	10.0993470927217	12.4358553568259	10.5747875245988	11.9782651368672	10.8907264293682	10.5378551785551	10.31667962283
+"PMPCA"	8.371685679646	8.10509051248382	8.67732172278368	7.90833055190182	8.29350296782297	8.47266733213037	8.34411166336217	8.4447726179548	8.30942090504534	8.37909492715054	8.15347947019419	8.20268678303442	7.79627502038909	8.22986933423468	8.14244975442953	8.23282381886989	8.27194401199652	8.40268430857414	8.01332636852607	8.69528046953296	8.31669904534205
+"PMPCB"	9.29407704400036	9.35502843386268	9.72298013324902	9.30280973618663	9.76263591966275	9.37606199240371	9.0963521024993	9.54637496101933	9.73825920167548	9.9120430579229	9.30451502756113	9.67361433815768	9.46418519629765	9.2087574488213	9.5689720274966	9.61024203794097	9.70305009666329	9.85549963279006	9.52833243557046	9.70243056241715	9.84781265512104
+"PMS1"	8.29123945361633	8.65554875236153	8.96501963451399	8.46425637685538	8.65145601873214	7.96097876834128	7.76351202918673	8.32305185686258	8.33514217344491	8.31918245581411	8.49081254794994	8.36498126163159	8.05976898487213	8.07282501170488	8.16073475491727	8.69018515847442	8.19455248617123	8.84244543204854	8.46214234567311	8.54393142012211	8.45497681757137
+"PMVK"	8.73452989257512	8.46047460709572	8.82640291544237	8.54020591651218	8.41217644433905	8.53092210361188	8.92201051100007	8.77686136731929	8.54429643597778	8.59202381012767	8.66555812787307	8.60788129416174	8.59568486145393	8.424961941837	8.54838679531462	8.64571277512516	7.98892283799176	8.46796701496985	8.50660057392267	8.75789913353101	8.15491703090339
+"PNCK"	7.52364699938584	7.96846599834817	8.77911258532563	8.06476754176775	8.11582051812757	7.73731038741854	7.57537044360098	8.06972051846707	8.30175309172354	8.46062721028319	7.62697043448654	8.53910383659223	8.22043463613374	7.44224414334803	7.81534568362364	7.47808060595567	8.531916617862	8.12847837729909	8.26213287459166	8.8260716361397	8.37102202888583
+"PNISR"	9.03384043337996	9.09668302026605	9.39855319725793	9.61098825844469	8.79084813291543	9.24692474106694	9.16129520774004	9.89681603406762	9.45036597765674	8.6374108821956	9.52278019222084	9.1244641949455	9.66830492388689	9.6365756040052	9.87148706909087	8.36587268814222	9.27049414950417	8.97525137032861	9.73383274194535	8.51843992370882	8.88437962795104
+"PNISR-AS1"	5.00635736794182	4.9726035482025	5.7713364171037	5.39576317200021	5.12746650795198	6.04981717946903	5.06078722756495	5.50491497079237	5.06506088444665	4.75436516861569	5.48171666915637	5.33053826716752	4.83332781314947	5.52020408673032	4.95115227746851	5.00757258381239	4.54739656390699	5.47542763050103	5.04443842885787	4.67712296517992	4.62960928430655
+"PNKD"	8.86676052878237	9.5341862557455	9.58443717790888	9.08608925871617	9.93887011787885	9.27757269757897	8.6669967726281	9.2074941442053	9.51837238818932	9.82190104565888	8.78753165849928	9.7279308603126	9.80657979500446	9.22323190617376	9.07959874290069	8.73346116252966	10.0351352144334	9.20462150782858	8.84296781140471	9.9368572319259	10.1444583688377
+"PNKP"	7.16005207581552	7.23302638872155	7.66439757251681	6.79696877046717	7.19127627553845	7.3907333692508	6.89726726700246	7.00144785595862	6.72511780525625	7.38909493360749	7.1024921527398	7.27736929238974	7.01978432944469	6.72945554319217	6.89185698769669	7.09519174948079	6.89161514379824	7.47519203323411	6.9097695544559	7.59084640015286	7.14962027770839
+"PNLDC1"	4.74470475568662	5.28977744379865	5.53304098385678	5.08058225968667	5.26427929001776	4.53756227443941	4.86953305285918	4.74620887756832	5.21518113552323	4.84653903283263	4.87878875033846	5.12822358147072	5.07180407858672	5.26691907124144	5.07397383051949	4.45959215883425	4.95943014296011	4.92214847524051	4.95943014296011	5.19560857315842	4.93894227551133
+"PNLIP"	4.17698519650234	4.1538493879488	3.96603463975429	4.11884282526182	4.17698519650234	4.24356104576406	4.76968755238661	4.20479628536753	4.13931905268865	4.17313457059446	3.99936724243074	4.13760898092315	4.20676748649541	4.91570526970776	4.18984675707662	4.23070967485184	4.06817573443613	3.96850579320845	4.35110123389411	4.09655742204418	4.21664398692394
+"PNLIPRP3"	3.44309075575829	3.20899371163258	3.13213504164353	3.57815183416536	3.27398083339038	3.2304768589267	3.44119386023575	3.39879405051302	3.39962212643281	3.37695167502556	3.40683514764974	3.53532685575686	3.33623085218417	3.38613004288932	3.34634761876937	3.46691590210666	3.35014397147125	3.26267207146602	3.68102971060272	3.34430157895509	3.518821431203
+"PNMA2"	6.86586331404334	7.57183519330238	7.47117530213756	8.17721851751766	7.97071690075967	6.68458396877338	7.05138264747041	7.31365320203839	8.06853478493929	8.69570239371318	7.43348454006694	8.48706903878366	8.09899994245287	6.80001343491151	7.43620812557919	7.5167250456233	8.15470249682687	7.69057576404804	7.49159281761107	8.73046507155719	8.49412825233798
+"PNMA3"	8.47871814076846	9.76250034842892	10.2263632604216	9.17862080240545	9.97476291578158	9.39923219290845	8.24316045719259	8.96610810246681	9.29441599643216	9.80045256873914	9.04353559753556	9.80089426548144	9.53951580335168	9.15749647745149	8.77378220778687	8.69861935748672	9.61314295828185	9.22160606495266	8.87848173124477	10.1318545058673	9.67126534572446
+"PNMA6A"	8.7374150657907	9.92220411087119	10.3908672985602	9.60465430221348	10.2088551395964	9.92355481848839	9.17626139642182	9.55815155676425	9.90159240389305	10.2557437412631	9.32155177392864	10.0415114277594	9.85469422794079	9.7044906511657	9.73832308829223	9.29411929309994	10.0423877562319	9.81095365659706	9.36108137290469	10.1254827290622	10.1341450578501
+"PNMA8A"	9.35263499968488	10.6527344770625	11.2135738416205	10.7122212947868	11.1406501483064	9.83101525492773	9.07899677368646	10.5494965149799	10.8761561708573	11.3415126736597	10.2957960924094	11.1874442329493	10.3204887670267	9.67368884857117	10.7074465837575	10.2883240578926	10.9766530620231	10.7074465837575	10.7074465837575	11.046446120156	11.1018095112818
+"PNMA8B"	8.52984146519598	9.37175750701897	10.1096131450615	8.92901868247748	9.92883552307745	9.2000546332871	8.11697374205893	8.89756742743096	9.05228608370093	9.70276046771821	8.84710767273923	9.8259384886972	9.07899306427539	8.55403013298774	8.55171219121696	8.97524368132139	9.46230721735621	9.14634271407548	8.67657811717366	10.0574843408628	9.74758598564507
+"PNMT"	7.6451838987777	7.23527502758923	7.58016397606155	7.2797226383436	7.2123023256393	7.27244658716747	7.41615206585765	7.55937834506203	7.43078681368296	7.48578272031427	7.10349485945466	7.56990205025351	7.23089897353878	7.1994889232973	7.23551020841305	7.11057823454536	7.05224635229932	7.09094137005893	7.46716576820236	7.50748944654717	7.38754021090088
+"PNN"	7.46983794534914	7.17854792958793	7.61860520048755	6.95049671335087	7.06793680926393	7.11187843274783	7.28352643630393	7.20388989616906	6.90528099305218	6.98137611925022	7.79135779181902	7.35785042918277	7.063589453602	6.77062064886275	7.05867482386179	6.99367551593864	7.206725284691	7.9321922191442	7.30337141222867	6.87046939611388	7.10048945390778
+"PNO1"	7.33269620735915	7.5744891388533	6.80419374706174	7.67625954791786	7.1932798841332	6.49804472660575	7.17841026434455	7.59442025995815	7.57743014114377	7.68192927359931	7.48471961942818	7.42751376852352	7.06754271951811	6.96230398373509	7.44938479324228	7.85093419542352	7.10410672120335	7.82764156997837	7.31122911019273	7.73145927691498	7.87784999298409
+"PNOC"	4.99625161045471	5.60242992738893	6.42342554878881	5.44617214276103	5.57804372794605	5.23153328669946	5.47283929392306	5.56458709019212	5.60242992738893	5.74771501031458	5.58400035002319	5.59908817477929	5.65724316811554	5.7954047310647	5.51230406155727	5.81130582180244	5.529761262729	5.33380544663543	5.53505042427833	6.76094485783168	5.79727271261601
+"PNPLA1"	3.22489396127253	3.09464042591316	3.26134882545502	3.24442980435951	3.20964173317958	3.69305848859646	3.6849522046418	3.26587367300934	3.30042176578684	3.12243414691458	3.06582957468523	3.14322117674848	3.19488993694265	3.55004864592013	3.13217649401821	3.11676838000344	3.41682614792125	3.12464564278089	3.46627999903879	3.21827844132861	3.37284729369089
+"PNPLA2"	7.98989379256013	7.68847327606771	7.93835537630742	7.84343609283865	7.64030879843554	8.49424896049339	8.63232507944963	7.90112188895777	8.08730754798492	8.00137560540562	7.77324840601645	7.98566623244666	8.13976959825199	8.08312783771865	7.90248554816905	7.72601718253019	8.12073395776908	7.82812153318636	8.14591546633668	8.06088623292246	7.98566623244666
+"PNPLA3"	5.37663758718464	6.45921777389676	6.29687459769478	6.22572472901453	6.3208557937759	6.92007119124133	5.7631875299508	6.19996886493318	5.81303506670741	6.97138407515169	5.90930697492839	6.18914438157628	6.27958682902895	6.05505292293971	6.25796161345581	5.87851503447479	6.13664098628828	5.69177539785642	6.13331593904907	6.26997618611741	6.19996886493318
+"PNPLA4"	7.97485016725594	7.72309681933092	7.55242779405813	7.18254828183797	7.62940648471871	6.43417022392924	7.32686435124844	7.93574924493172	7.23573090892828	7.37421948193236	7.94878552673835	6.98052422213838	6.80722996674334	7.07133468230562	6.29809051041379	7.14378453466265	6.82025704998871	6.89667167126601	7.16456500972364	7.44314457412919	6.83271994542522
+"PNPLA5"	5.36082033345385	5.55801341552958	5.54726981130495	5.78710909423085	5.50219699555192	5.96998067097394	5.81313277139924	5.75945406539	5.79517801908208	5.72727019840854	5.33091594919492	5.78056208534992	5.77241241646101	5.74000567878656	5.89009603073893	5.38040248528889	5.38976917070144	5.42353876362485	5.72386792283167	5.7115934571114	5.73799256601744
+"PNPLA6"	9.81568132257441	9.38917331182378	9.80590724126455	9.64148013260278	9.62140900606525	10.4414535162179	9.73082750680634	9.48176945658782	9.73902740307311	9.90378824502951	9.42062213731848	9.53834027089307	9.93367800596985	10.0512604199617	9.59152623438887	9.31026613996698	9.68613748527395	9.81340420292424	9.51645577396086	9.79039907728625	9.60273317084149
+"PNPLA7"	6.32881730974237	6.53463798836	7.10587002354195	6.52711368916456	6.27303167136157	6.94013597336368	6.47565907270615	6.32881730974237	6.07799664432588	6.11783202193547	6.32889491394042	6.26245759641462	6.00290917336205	6.91431321709716	6.01096729112887	6.35452396769795	6.1706386570335	6.32881730974237	6.16743044289895	6.01300303768941	6.0980622998615
+"PNPLA8"	10.010363464115	9.69424415245664	9.46460536931771	9.90916143663393	9.61418107792434	8.78238101366533	9.80184349280066	10.3229121955001	9.98984241119406	9.55914837432998	9.75236467642012	9.75342116614201	9.66018880246378	9.46006205585872	9.8925856042305	9.35326535865786	9.62161560664184	9.53515715671155	9.92181372877814	9.40602273337494	9.58202687484225
+"PNPO"	8.64926602074511	9.07109563345122	9.33401308187781	8.54874528513451	9.30194560701025	8.5955298046971	8.29649543640606	8.51551652198947	8.51797460483094	9.25456305537199	8.92610459265291	9.24312665539332	8.72318059396296	8.42679402562112	8.25656560102776	8.81543090103676	8.69582954925407	8.92278013903716	8.52470849293744	9.45495032747283	9.0276494299951
+"PNPT1"	8.52079956454621	8.84783216426182	8.34703108429143	9.2493707130848	8.62035858012097	8.99691380972434	8.66239755564799	8.7451816284721	9.08386515659813	8.37672044624786	8.87323990619501	8.45983576521818	9.17117649637257	8.93895623385363	9.2977015626278	9.37705683057489	8.75774415663013	9.62177362886999	9.28802503191185	8.42597095593912	8.61680716406976
+"PNRC1"	10.2427489268638	9.72553262648997	9.24386857315491	10.0231884604579	9.78457201848848	9.69743621956822	10.3242852293474	10.6399491200323	9.93223737138734	9.96495865970399	9.95638425451762	10.0103674195023	9.9333964911103	10.1677598876097	9.69655899610819	9.77859932648706	10.2793689479221	9.87982250388224	10.1723149342844	9.90553505651702	9.73720833087248
+"PNRC2"	10.4125182653688	10.1060798615394	9.92441233158587	10.4181847097625	10.0199467932094	10.1248016404394	10.4068811931011	10.6865977632816	10.6951885505197	9.90272699372264	10.2527176161197	10.111073154191	10.6456622601033	10.3161269358286	10.6620803639164	10.063022127193	10.2325424712123	10.1939073695354	10.5506762500742	9.93234781128231	9.96835364038028
+"POC1A"	4.62823631512073	4.74201132260267	4.73219229823914	4.58743443495695	4.48093139580676	4.94824886687839	5.16457173996752	4.59510371890911	4.81822325222356	4.66641250220908	4.5233779610153	4.76860502927718	4.81410000169222	4.9600038425124	4.66122384011596	4.92563823879279	4.80177767319179	4.65238838590816	4.7096388695463	4.66122384011596	4.4650522879987
+"POC1B"	6.68037224462861	6.73971082952358	6.32023334958974	6.38293890414532	6.39275198676517	5.89941005541324	6.16625421708886	6.71824969846691	5.85560637302249	5.93463750068981	7.37691449865852	6.36100390794743	6.09655131931173	5.9657371321325	6.34127358915261	7.93240340366778	6.19733089980554	7.06457811233427	6.32023334958974	5.88350770488622	6.18953123327449
+"POC1B-AS1"	6.10927194626076	6.26402522001572	6.25120403432174	6.09160363600231	6.31006862335777	6.67466953628032	6.37462252851335	6.24108238161509	6.21800676222831	6.24421929536604	6.22172492985354	6.26982747389084	6.51051097092318	6.59375269913959	6.435118866644	6.21661517634166	6.31429396779173	6.03452220559934	6.4401315395692	6.39564821700967	6.18241970740759
+"POC5"	6.9594117770842	7.01608049380812	7.16338570565861	6.54260255317475	6.76545145678292	7.0437772219655	6.370549214016	6.53835529913697	5.9527506508211	6.74662691373401	6.89297897590327	6.50621454130511	6.18145542379888	7.01079765957509	6.07854110773496	7.58472247641549	6.51577719038019	7.36396187908293	6.92543417536037	6.66237402427022	6.5999307490401
+"PODN"	7.7212910304562	6.60452277608461	6.613782469745	6.84163315322081	6.80449822986469	7.39857838267338	7.19598891191905	7.22337126532421	6.80556525222057	7.06666761084124	6.69058235251189	6.62458032257381	6.98690536940526	7.30956623510237	6.87599315663834	6.60666110427942	6.70935932640274	6.51495746605665	6.79562966947851	7.66876168295552	6.70594516858974
+"PODXL"	9.85294769952784	8.27964942591884	8.24412682263356	8.20046870414622	8.35686119150044	9.25985514314854	9.2074595988797	8.58268848252987	8.20856640116927	7.90649301265657	8.55154068659852	8.18307483584947	8.86781140067787	9.01746339279036	8.34161624540658	7.88165547327558	8.9153286009435	8.28442047732834	8.05098567734366	8.76539262023183	8.57451953506263
+"PODXL2"	6.93503749436902	7.44693053264994	8.15312762609129	7.10399184127466	7.6796063256791	7.78821667655753	7.61899518802462	7.28032697705875	7.42974023272298	7.55803662914797	7.26345682905788	7.57789348644385	7.55745308896125	7.40596713415202	7.38631164834351	6.93306024651446	7.4391965551469	7.64777616219562	7.20479391519904	7.85786055393893	7.75590001892497
+"POF1B"	4.24950183103233	4.25371648015181	4.63808580320621	4.4871105328867	4.53867623902734	4.93337790446819	5.39462089472606	4.08357953685772	4.30182430630329	4.54113932205507	4.29796754381027	4.3005053514132	4.54137198263651	4.87962974101395	4.38447039813536	4.45747932010134	4.37032679770623	4.03568410592656	4.41297742011653	4.45257749801008	4.47595405410917
+"POFUT1"	4.82215931354104	4.99671637395076	4.7966751948852	4.75621062126646	4.67805206177964	4.86390000695699	4.64471767063531	4.72186852869816	4.78508273273613	4.73150203762978	4.75111495855769	4.83734550866431	4.79238096507057	4.83573822471812	4.53950263451484	4.59383974181914	4.69275487096751	4.65238838590816	4.69439529336025	4.70794477387333	4.95943014296011
+"POFUT2"	4.8395285104699	5.02034181841174	5.04243256996912	5.22645331763898	4.98598081378156	5.45537652346296	5.3191165964228	4.99578192853579	5.4915397489938	5.291971770436	5.22569806721634	5.13257778979056	5.44052413626479	4.99059754922234	5.02267145332947	4.77583328977587	5.3973348872181	4.7939943459758	5.12746650795198	5.33028411503309	5.01829624522379
+"POGK"	6.8467239851134	7.01793337964774	6.62788894933774	7.31112905894122	7.18228267854843	8.03348115587955	7.2210707769658	7.18076523670184	6.97563648690759	6.21340485445594	7.25554298877052	6.71266690210358	7.40808377187681	7.57061331379498	7.61534794454914	7.04870003864674	6.95334788584755	7.42751376852352	7.13927334901104	6.55221122949919	6.87466698644955
+"POGLUT1"	7.53357178485938	7.35506942296467	7.58266187140015	7.35462155249537	7.34159664382557	7.54948428493964	6.9820561453255	7.09581513956265	7.86134592361075	7.42472668296484	7.57343810070404	6.86683512780544	7.28193154751261	7.18988499670526	7.56830725791556	8.01225717001022	7.39137040594729	7.56931361695929	7.71886013343325	7.29489329321226	7.59045495681997
+"POGLUT2"	5.50081858037814	5.37670791361914	5.24616725318272	5.84721130179735	5.39576317200021	5.54442815439309	5.56139808321189	5.47820406385514	5.50421060630478	5.11174337779304	5.70184680853479	5.30918070843266	5.65374151473527	5.51939918703435	5.53160341504781	5.35035478036152	5.55602530417121	5.8387486235195	5.53742851076808	5.20541314038202	5.15942993871624
+"POGLUT3"	6.96860011833583	6.05495639227918	6.27956318574327	6.14184007462966	6.1469962458493	6.32832315412588	6.35420892002116	6.60141955524593	6.03921218953126	6.05252831195178	6.89462184791854	6.27845956459268	6.36506575490374	6.522117869428	6.17890524663497	6.46663488549278	6.14886972339094	6.17229661779857	6.10635576292979	6.00243582821676	6.04075574083538
+"POGZ"	7.29770311131421	7.30470591751249	7.00475522501376	7.80647396035203	6.24398395780245	7.0376794812935	7.62811478360758	7.48860035940622	7.61910355660211	6.87510155515354	7.67908311157562	6.83957596548224	7.71944220940931	7.38815051814159	8.0708924790725	6.98892340493297	7.32238187367762	6.59484436876948	7.60930828968506	6.49790290160459	7.12858932292895
+"POLA1"	8.01192935119881	7.28985573372093	7.34988932526162	7.25668202001119	7.25668202001119	7.66144780184135	7.56403860701376	7.55744310805021	6.84529048898218	6.75738955063812	7.4442311661283	6.80988505218093	7.06232478404265	7.45273485505561	7.04053254872951	7.56590285125162	7.06656433271317	7.77487784812323	7.013737752772	7.0972008133738	6.59555480538377
+"POLA2"	6.62343453858704	6.40220405043551	6.36612768978915	6.41947862170849	6.74368911697776	6.76815241147694	6.24770198589554	6.51431860976621	6.25975585486541	6.70878654004592	6.51316638519897	6.59716826366417	6.3514058389774	6.72256835294262	6.1167489734848	6.43348823992903	6.59699577813905	6.59219254372013	6.4449145010452	6.50814884184642	6.41290863809992
+"POLB"	8.44454518568999	8.76413818371222	8.88718685893746	8.64137499044542	8.87537369436571	8.33881668627956	8.13517780547359	8.55093409298103	9.08601997461455	8.89633315128335	8.56956031476585	8.67806438561754	8.65753160088323	8.41526460211944	8.82565857195522	8.68390575905364	8.69263113709233	8.82271705597788	8.77675603418568	8.9314398026429	8.83904262888867
+"POLD2"	8.21650693126321	7.84348901348311	8.11549032699474	7.72267210017244	7.84660359256357	8.19574420872935	8.3442782323844	7.97566396302113	7.66939485833129	7.80066308915201	8.2821493632412	7.76815303979623	7.17807361292493	7.93801983987579	7.74647501839201	8.19057250514237	7.78647651433808	8.17590674388113	7.80809602291425	8.04982062306099	7.70414914041986
+"POLD3"	7.99825574697307	7.92172048889898	8.07786567096515	7.81294358268078	7.90292558579029	7.90292558579029	7.55178505611592	7.90664109213263	7.71232340697802	7.68950450723836	7.81960993242177	7.73032305638137	7.69489295301315	7.57708081244761	7.59186121779892	8.09590903357113	7.55065098438659	8.28938843706445	7.79507438106111	7.99678216217663	7.68436534133784
+"POLDIP2"	8.62661577512257	8.39071640952467	8.61433556457544	8.24052420767216	8.57806875418126	8.43723258372762	8.49256934723807	8.37651374541058	8.43723258372762	8.75871948824907	8.43345357864123	8.63404035659348	8.24159000746594	8.10662978259207	8.19351417234094	8.43581661657666	8.3858103842413	8.26825835826326	8.38025798702674	8.84861683795812	8.70304533309266
+"POLDIP3"	6.27317314333233	6.46560599808412	6.60676760169167	6.5603742675909	6.3115577487852	6.30997109772858	6.46893351972076	6.47758199163962	6.2908613610741	6.39594001367675	6.35235579764743	6.50706080327115	6.50175554798222	6.3673238483182	6.40606660999096	6.60675038232069	6.34078349554245	6.39487517988831	6.37267269030307	6.09771761296288	6.62666752626276
+"POLE"	6.76610942000569	7.28985573372093	7.06382100810887	6.86933365174362	7.05049238887175	7.29561474743782	7.3416373661881	6.95650769625994	7.41145132851539	7.0180824967961	6.80067095148751	7.02885188388877	7.31157843539296	7.36761552603257	6.68840664632277	6.93108657357764	7.01980626228851	6.90826243085638	7.05974140743184	6.85060561111574	7.03898920193031
+"POLE2"	4.95463689177143	5.23694478678155	4.69118093707035	4.75032967500842	5.26630750597302	4.8384894003814	4.54968757787896	4.84274228177267	5.04459271720615	5.14518201962256	5.03332738992063	5.0742851303973	4.82742225069019	4.68090610038749	4.6802456140507	5.43218818373544	5.13935652169868	5.01114600101135	4.68798052631054	4.91512066266508	4.82165410275693
+"POLE3"	8.06381324031957	7.99983214961	8.10072502509118	7.85477595851561	8.06605789801173	6.42411630804104	7.32445116698917	7.65177898859526	8.05169537612504	8.5091208580458	8.29867477218166	8.14914072243593	7.88513242645563	7.57502647666857	7.7583326030346	8.54681456238682	8.0189469490357	8.22568361621702	8.09860978576327	8.3461634670306	8.28079914318702
+"POLE4"	7.5930082801091	7.44346291553934	7.5690926916455	7.57375874947905	7.97506629446704	7.80292064853079	7.99054329256346	7.89822197444296	7.5863055343701	7.8441004821169	7.4824314519939	7.60038742386205	7.06035116752079	7.39631069689058	7.84009024121632	7.57315248043515	7.29730685231551	8.39452606521959	7.57773953433552	7.84924629392617	7.7734001432304
+"POLG-DT"	4.93779438031075	4.84530485851075	4.93779438031075	5.12244836848082	4.86787663311833	5.05570623336274	4.96584986088232	4.83337089059881	4.80271386423964	4.95771342590708	4.5466109432207	4.92885954483739	5.05662753822773	5.22209266910451	4.86852311827846	4.77446090283249	4.91007984678749	4.78367176291443	5.18218330532104	4.79937736872319	4.93779438031075
+"POLG2"	7.10585964282686	7.08638990676561	6.9800167482339	6.85567092844708	6.93311845124691	6.92922298722491	7.03159302653981	6.84508829801506	7.00949879189387	7.04087796179258	7.05452171602068	6.6890682115695	6.79015666489124	6.86441941723745	7.11963243272846	7.25759703686684	6.71822235818876	7.33690471880721	6.98097278825654	6.99415322081466	6.61986502388524
+"POLH"	5.36917192790126	5.11206335230165	4.95930042337641	5.40048169480747	5.11034940018671	4.77999339395426	4.86999567586558	5.47794207730475	5.31067421354409	5.53412166913547	5.26242343636614	5.54867015170946	5.067248392732	4.7096924153352	5.28160420659102	5.62578348444431	5.48942786309122	5.02911786542874	5.39096571044835	5.33563817804549	5.28317889885522
+"POLH-AS1"	4.14545890684675	4.224783630893	4.58821625340531	4.33387719817803	4.00661982313831	4.79379236154527	4.9288283931948	4.28787371443573	4.35794210178353	4.18488058523851	4.12088288216794	4.29778695306658	4.36743152160455	4.53699180065381	4.31160177646508	4.34057268666813	4.31424033818896	4.24728510845311	4.64198846436408	4.43909123610175	4.37402710967374
+"POLI"	7.24798556561319	6.94955790803304	6.30171026047758	5.7637414832805	5.94867757593084	5.98267156365314	6.24991882370953	6.52505514747779	5.33028491227397	6.05832941143622	6.64060574602115	5.4548107129172	5.55924221626586	6.05252907324701	5.48328269978096	6.57050926620265	5.92144811998799	6.73325740771989	5.99897574447592	6.24533970727445	5.63898062732274
+"POLK"	3.99125659496236	4.81161162048684	3.71380284646471	4.3333993766948	3.54770062159368	3.84725585977935	4.19214645263424	5.04187246486879	3.9620999566466	4.22120474435919	4.79443229879601	4.44513905779915	4.44513905779915	4.46605588348548	4.52449544521531	4.81744209375195	4.73224382113467	3.58853516527842	4.64892712539131	4.20629268886613	3.68000448063924
+"POLL"	7.08049348773794	6.99749128487144	7.25400538959784	7.08417429241861	6.93241118267193	7.13383035674005	7.01735586714027	6.92403677627436	7.03667832242283	7.09555174288059	7.07891498113306	7.11603324306301	7.00885244412689	7.15685846781559	6.96630289838843	7.13062567129118	7.15464990447107	6.94577040041014	7.25090643565975	7.0355864409104	7.14832451317683
+"POLN"	5.86507523913223	5.94313186814012	6.12910627613439	6.23076860683233	5.79511169696345	6.2334736454403	6.24443397539332	5.85017891033578	6.17962798198719	5.94012709463831	5.8704121990033	5.99831844792091	6.27941981468592	6.23009396963752	6.07854110773496	5.96337902669055	6.09752985448177	6.01154015945733	6.11207492059084	5.99113670344378	6.16954266736711
+"POLQ"	5.59699545007391	5.71656556366923	5.65070375439263	5.72407470566078	5.8156438921164	5.78727785557303	5.72980197719629	5.49268931799718	5.91223428906545	5.56019114198731	5.66211726530977	5.6785120871124	5.67810698761162	5.89840028531723	5.72820180748141	5.5901275289597	5.91664873051417	5.33787538696319	5.59475238076778	5.7077402134461	5.66379264419589
+"POLR1A"	5.95793427590986	5.89285546243528	5.89221080800601	5.59391397811124	5.72268353494138	5.07590897878073	5.61731051428342	5.44976228726662	5.4532112427242	6.07442564425929	6.43769438289427	5.92992054970271	5.56300974647043	5.55310378025231	5.42854943810197	6.21191107170283	5.91536334384264	5.83742753589894	5.69728859217777	6.48216382137427	5.88807328352561
+"POLR1B"	7.51105446866027	7.73610957384111	7.28556183671968	7.92748279226405	7.05225784737748	7.41263918445505	7.79097706952252	7.62629003146391	7.73957329863555	7.17916985143651	7.72429110658413	7.41910882970235	8.23664940820334	7.94016633741137	8.22938594346502	7.31541403656254	7.60988094643098	7.36220063036782	7.8171833019253	7.08928259038944	7.54229928445351
+"POLR1C"	7.06769220551436	7.2291149382241	7.59715121443161	7.2950102396683	7.49294122927508	7.28619954672528	7.0957077198925	6.96327025598658	7.36792716869288	7.40120642762747	7.09538625418862	7.05487590562196	7.48155521133526	7.07595652677808	7.54733558479642	7.25069474395748	6.88250164687042	7.58000913880881	7.26416484525954	7.49025960705058	7.16327285475379
+"POLR1D"	8.97592826697533	8.481088436311	8.40444916968398	7.91120669264913	8.62186487177686	8.42187648422653	8.9928336226342	8.93430988004869	8.61548062399145	8.35733752439372	8.37399819357335	8.24788992042252	7.9417690671472	8.20128993130173	8.02432292798476	8.37647829216163	8.36090062856534	8.55580699512316	8.42569116632044	8.55919611536319	8.1498013647157
+"POLR1E"	6.6589599681402	6.80653163996328	6.86621745692847	6.63636807590223	6.93811125598975	6.62485995820248	6.77520296231559	7.04703143799281	6.61091986099303	6.7456164733246	6.92876484605684	6.78988349806399	6.47910491100047	6.50733875175045	6.6729584056198	6.60297860891652	6.76369779178436	6.7456164733246	6.83680787992663	6.967772687964	6.65573382507258
+"POLR1F"	6.64188210616937	6.85689877561265	7.02157533621915	6.49979487539121	6.89546907740355	6.18525411831997	6.36325241251286	6.31874699102173	6.30042279415718	6.40386693271869	6.54809057595236	6.09458857905662	6.29324943862948	6.57733126633752	6.48640435857329	7.00066158097968	6.24158416444015	7.14525165856923	6.48808186199623	6.70669464707859	6.21855332340214
+"POLR1G"	6.85981399557224	7.03061478831833	6.92826232127933	7.17733048378623	7.00030977373543	6.29989843773717	6.96180120558735	6.41567054833985	7.13625051664998	6.88781622897249	7.13837191097573	6.80582363212567	7.30082417648693	6.87404149665144	6.98463341573343	7.22886268410525	6.85242685592762	7.13179741689416	6.86343784560362	7.08368376278203	7.03351790627275
+"POLR2B"	8.57617675972339	8.87184312685144	9.04741582790302	8.95633820875298	9.44393794344233	8.51930377257528	7.90996121078691	8.72968450225203	9.02383527894416	9.05749065186919	8.91005925106615	8.93143559006996	8.81739790678352	8.4622974805093	9.12772494906877	8.92228401005899	9.03578991572447	9.31817999969175	8.80936673528733	8.7825783818612	9.02573796682626
+"POLR2C"	9.51050299222247	9.60816111435254	9.38870850488721	9.21367269511194	9.75553696140951	8.83029675052104	9.02805450208948	9.30091896322316	9.48207961237528	9.94304986853883	9.52851257131253	9.62815286981361	9.22981224618748	9.13301356103279	9.31727131646167	9.91642213521197	9.45746114294398	9.77683471303916	9.4504812151145	9.72805503059816	9.55084055024147
+"POLR2D"	7.69551945116139	7.63873876265416	8.24470138621893	7.87134033575126	8.03411317870523	7.96196734953714	7.5247295454083	6.97711999306467	7.86070390619292	7.33841265924202	7.84704961879689	6.98597427590201	7.85074522164816	7.78669855057273	7.84851219529122	7.68192386806803	7.39312542611292	8.16804609095078	7.69551945116139	7.5983553039097	7.3829341742671
+"POLR2E"	9.23496630295742	8.94574040555889	9.06841086587106	8.6985883581913	9.55665392601891	8.64037899345152	8.73664026168019	9.0579550523115	9.13268808491502	9.53867389748631	9.06348949503052	9.4911794262184	8.61489691153246	8.52378033553004	8.9378946616771	9.08798411317443	9.14041972916847	9.13415386773861	8.83110036719524	9.58935049862179	9.60910564229697
+"POLR2F"	7.64905862826087	7.70066594248429	7.84149060500505	7.26153958830796	8.04370788110532	8.1052912672347	7.72601648896549	7.6677168434643	7.57095934542275	7.63041557355878	8.14055675788306	7.76762751459479	7.3079522377576	7.55208883719269	7.51993743823735	8.79353391424513	7.87104343858403	8.33434312682259	7.75950623674916	7.59712265092893	7.80896460626446
+"POLR2G"	9.97957359989634	9.89125484470038	9.86373224222328	9.32168095365014	9.75606785023999	9.61876064772236	9.43102045326197	9.75608991826729	9.26781326494806	9.62759583606095	9.90371642887583	9.5914003449593	9.12500618993271	9.45932136143378	9.2315774557769	10.5823757446209	9.2710430526519	10.4024857174297	9.53753730788729	9.86206734112332	9.12334569383832
+"POLR2H"	8.73658785158479	8.3215262407368	8.80431256165198	8.52384244938217	8.47654043438907	9.05940075818643	8.52266241985882	8.50920108510512	8.63523837551527	8.58677339950428	8.21900184633472	8.22567712914934	8.65013206590841	8.76788641709913	9.01653967394305	8.39824445652091	8.3840664689839	8.4780525148399	8.56515900830762	8.56451647565774	8.47491151040884
+"POLR2I"	10.099601622639	9.98399306093512	10.0487818005592	9.86874990840962	9.98624297832479	10.1053378090908	10.1528138618703	9.84433397695991	9.95710006530966	10.0050090130419	10.3503601059698	9.87214340184995	9.8615395475508	10.1081590350721	9.76684022130236	10.3331329161994	9.76349592308997	10.2750755015163	9.90185741897742	10.0042792740359	9.80012889053917
+"POLR2J4"	5.82103361769412	5.5034810321772	5.50720084692522	5.61063902425246	5.58872132491306	5.63741784115176	5.6607602217948	5.37204676736061	5.8062571817775	5.59140782964162	5.67409226484678	5.46331445789473	5.63684013749562	5.73796184676607	5.51601286309993	5.60312928047987	5.49186014986416	5.60000981048274	5.67226739200161	5.61063902425246	5.72990355587524
+"POLR2K"	8.45945668690619	8.87515620540596	8.76631787506556	8.88823911166393	9.14030296272364	7.95476506025047	8.26529090975952	8.61277263992552	8.99525795235612	9.27230072016287	8.81655139430775	9.17791100548923	8.72641259303931	8.17177870130825	8.72759636454487	9.0169996008245	8.91018789459487	9.0457708142607	9.11606112004447	9.09497297380205	9.25226754293213
+"POLR2L"	10.3927603868766	9.45643785710113	9.65710073343807	9.53095939014694	9.53371887178474	9.61278678841258	9.90568069805873	9.77499609848982	9.61896182313973	9.78150973659307	9.641757969894	9.47410001333936	9.75453650211456	9.70813117965532	9.84009583724769	9.52702711466976	9.27514104801124	9.641757969894	9.87209307635093	10.0058292062579	9.55852352641037
+"POLR2M"	8.90731227622587	8.63195548142577	8.54148397652046	8.38565140233474	8.47588215109089	8.88027086246972	8.26293826971288	8.61822828677315	8.02560610790231	8.3882246690778	9.03890690598475	8.21755490833489	8.33895983178324	8.63950019324814	8.76502867374751	9.4946973397645	8.56346928412289	9.49230709455031	8.85719050593136	8.16903233416004	8.60961815184671
+"POLR3A"	7.41665602430791	7.73668489972164	8.28897481513187	7.28353670258725	8.06946502077337	7.54510364453713	7.28668929683444	7.55801783906306	7.87344468426842	7.85817787190929	7.63360474226645	8.1870020267162	7.29595781829588	7.07712687841121	7.69137543782078	7.74707567424919	7.99548200164338	7.77044885147173	7.56190645372378	8.25176537705607	7.88276387821137
+"POLR3B"	7.46062564642708	7.62570096468054	7.75456572978211	7.07891498113306	7.71627128943948	7.29573448513289	6.76456343837717	6.91573541206478	7.30448977784987	7.46935148985039	7.40903868339332	7.18822266780439	7.10049959609334	7.16501568309646	7.38322138861583	7.67079592626738	7.40903868339332	7.88117598605682	7.29509373278377	7.75199458624008	7.41943710410394
+"POLR3C"	6.75264163367848	6.75264163367848	6.91315310581395	6.1404661377392	7.00916395939473	6.52692200025951	6.23919937062038	6.35529550639571	5.91337667261186	7.12767499170179	6.7407354159477	6.79000212812481	5.91078847014729	6.36666118737453	5.95288058710731	7.16861658463227	6.49743504070612	7.26595139368947	5.92812825101958	7.12245996088349	6.79943794651241
+"POLR3D"	6.311554528707	6.443834933189	6.48503683473808	6.18902521443021	6.26701198926787	6.39932059762257	6.53760955063231	6.40382767411492	6.31209186649884	6.42354082799559	6.19223283957012	6.38821038507726	6.57243885918354	6.68772535185145	6.33826500249025	6.61089734235019	6.10703738184765	6.66999186978385	6.35980183904906	6.84304221203252	6.66891839405235
+"POLR3E"	6.99792057284918	7.15749495573702	6.27491531476537	7.24354780038247	6.38149371665684	6.63891089584049	7.22733540338107	7.55698541491509	7.19670408143957	7.11008701432667	7.45987202794964	7.36578886382742	7.14299704433332	7.33024695488001	7.14302038721268	7.22900815258329	7.3116416970347	6.46939597307797	7.16903184016095	7.0628397531972	7.10006581107524
+"POLR3F"	6.64302563568472	6.98774246011023	7.14544865350116	6.70430308346296	7.05366668737405	6.29336742046601	6.14529394346706	6.50595815219776	6.61033196006275	7.1961752990477	6.73981547289697	6.75797016334037	6.41724028845672	6.21855105360756	6.70945581343206	7.20524646459464	6.70590449691771	7.01666611452819	6.83247002377734	6.9643175045099	7.11890467065053
+"POLR3G"	5.95913648079523	6.18645382426938	6.73330043815603	5.91184685103049	6.46322729410286	5.97652212446285	5.69461485017144	6.10223034720229	6.32420019574404	6.28531836119751	6.51149886512851	6.0649615241396	6.29108380725409	6.0251436449997	6.48599681662174	6.28230636360797	6.05573417860318	7.10356417941426	6.15672342316142	6.07887684004853	6.10172455145438
+"POLR3H"	8.29387465332248	7.47381260987772	7.67213180399088	7.84563706206169	7.56957673182198	7.72455993033062	7.98886066737448	7.46083297935452	7.71989141837667	7.70193652158088	8.07863189992423	7.65568681459947	7.67213180399088	8.08963584746663	7.55720052356396	7.61836361403171	7.50254900206502	7.71595800124209	7.73236991298593	7.29430367555985	7.54436778745283
+"POLR3K"	7.1522953040742	7.29277791883711	7.8299400152403	7.27934257755449	8.13087439912038	7.26080882535771	7.27893445674898	7.41809317369192	7.54767619262844	8.00043886713862	7.10104150756575	7.88100020856772	7.15608473544169	7.02184653059379	7.35608205881031	7.92969344744664	7.45875139894725	8.14797379457582	7.56242026178881	8.32303134959965	7.88542930917434
+"POLRMT"	8.367893200572	8.57511211859977	8.88773241638899	8.44065860429722	8.65377610956972	9.04250610933772	8.48670606905748	8.23360706331516	8.42242748465141	8.68891558033686	8.58634123254107	8.44485657398637	8.6629507120206	8.84681932657949	8.27730605000643	8.71246615106456	8.51344685358906	8.69980056183647	8.30469005340501	8.74248770559352	8.45673613742481
+"POM121"	5.7769069350199	6.14618417717566	5.79874844374087	5.9416091615147	5.68814679667231	5.9167849025738	5.84324430367431	5.80104388820495	5.8704121990033	6.09897301819211	6.12072843744368	6.14893618509495	6.09023836419668	6.04494905635218	5.92546551294287	6.00187521427662	6.18619783200992	5.88892373357298	5.92373796290503	6.01280055938788	6.12768824516013
+"POM121L12"	7.77230783985013	8.07659381831432	7.73022861874185	8.3405060470263	8.04009629817958	8.02388645835654	8.1642193928955	7.93657856060706	8.22900632244478	8.23018092636918	7.96856489029656	8.30380867229709	8.1379168038001	8.22173175049494	8.07659381831432	8.15828377611906	8.21726572104809	7.59124439101498	8.21883942642108	7.99102303321751	8.12040235734571
+"POM121L15P"	4.07978369361025	4.60384209114799	4.27240173768675	4.44893760367661	4.2806488052262	3.92688920551127	4.44938806536763	4.33253235308185	4.45968571968311	4.28811339558514	4.1736943036626	4.31542489327932	4.25169695617697	4.18234803252526	4.28811339558514	4.35813668803514	4.44029084692122	4.22876804493644	4.40187645130486	4.11407390685008	4.15847721475998
+"POM121L2"	5.29682101058175	5.38196553889955	5.0162379624669	5.42934105646869	5.36186106284686	5.21607913557061	5.61453809272683	5.26203185497187	5.17438363935271	5.27941117347017	5.18911256056877	5.20813246544887	5.45969555705274	5.49921923696515	5.21933985878634	5.32767905978695	5.16654020688386	5.14102427045528	5.30097962000209	5.25221562513244	5.48035821866113
+"POM121L4P"	6.5614888734038	6.37514771516368	6.52257859737199	6.51895702877569	5.96275156321367	6.70745835104917	6.78704958814415	6.32455743566668	6.43618841328561	6.48334651723505	6.16795194403794	6.41514183788059	6.68429755700432	6.74586182423456	6.41627127005988	6.33166386406791	6.53139728815769	6.38969453817159	6.52324491389097	6.32436132748289	6.53774635768911
+"POMC"	5.92553634732532	6.04321988553255	6.31114673078931	6.11310548758339	6.00968669019865	6.48439049981774	6.56723589727736	6.02784675309262	6.24998871807456	6.3795970265234	6.04574325039259	6.33709023680242	6.17102607354078	6.47256729753443	6.25013089084357	5.88841176980934	6.31059258220637	6.21020587457815	6.25401411888336	6.17102607354078	6.10885367068725
+"POMGNT1"	7.40178637754948	7.32008286878479	6.42313271749524	6.95015538839132	7.38417936681485	7.00435609054062	7.2604674552231	7.05039241905616	6.87688433805547	7.48004585356056	7.60667593039833	7.30461071303367	6.87739197378714	7.04182155585552	6.54850799109261	8.24388981927281	7.05766034532696	7.85560668450816	7.10997089191009	7.75624455104491	7.29273856641739
+"POMGNT2"	8.51703725767207	8.27470621932167	8.33618922198491	8.53646582267868	9.02917140458112	8.12067524756619	8.25966712797353	8.09387061990763	8.7909474941303	9.12229242792723	8.23881301811467	8.65973645392632	8.47381605379647	8.41584192833007	8.35606199176671	8.24758842901531	8.59060993976539	8.67360582747907	8.22676305818092	9.13661343052783	8.75180808778201
+"POMK"	8.30744144940084	8.79327505556524	9.30751118596435	8.91791299631441	9.52610680433223	9.01405006002524	8.1524365882423	8.81179766085581	9.32509658535121	9.16454903055997	8.59351717071133	8.96620297922427	8.83537060703695	8.36884492029957	9.00025997352556	9.00496471531052	9.23874621514995	9.26491933581345	8.74998186530833	9.25007823954304	9.25963616649992
+"POMP"	7.23130798112415	7.40377429597986	7.18596012737246	7.49911139867063	7.58957814334929	6.62969837910911	6.56159742933153	7.174433438042	7.25913462623409	7.11355785265438	7.60561961862268	7.01777025680119	7.02372531170255	6.63421167958141	7.63776088682542	7.42642866238981	6.98801559234816	7.33611497307877	7.18625113495273	6.88058479342198	7.25378401883274
+"POMT1"	7.82301644165252	7.65900320018529	8.27177745516211	7.44030179199418	7.52768579166326	8.00824005568116	7.79228783712112	7.6200027788609	7.57110637556874	7.55302134027966	7.68339368526041	7.52071159302642	7.68023715975359	7.71007787772982	7.6200027788609	7.50511113609541	7.47752661089824	7.82930849743116	7.4133703897481	7.6200027788609	7.33832892800601
+"POMT2"	8.74195549907777	8.24524220978641	8.38899483981868	7.97673587145109	7.9330241398586	8.27550216270891	8.21140052868116	8.22811528042317	7.86931252527305	7.85274172335139	8.39227985554426	7.69946522804914	7.8917423918122	8.30767854095251	8.06051531101131	8.73344919629699	8.04955429775889	8.82591260248118	8.00624526268401	7.85802742274254	7.88725673692343
+"PON1"	4.49497619638741	4.27144026998549	4.58743079093576	4.23725977582528	4.45904811726376	4.17653689216479	4.12685834448819	4.2726244771262	4.34162404368679	4.29726470923804	4.21585659747806	4.17889802523877	3.93072432573409	4.29938893389525	3.82139885596786	4.44709981008308	4.19298765743183	4.20291384464216	4.21802154776775	4.15160885677775	4.05375530562881
+"PON2"	11.4150070381931	11.0167116927627	9.91524745620848	10.7655271003462	10.4105840224917	9.78195559690264	11.1169048521272	11.2289787887863	10.9542873223936	10.5542949961435	11.1129088615748	10.5137409277635	10.2651348020427	10.369230248815	10.1598769541284	10.4534019788941	10.5446374758301	10.5521273118756	10.8819638268506	10.3460304833811	9.63446609301094
+"PON3"	7.61539830947079	6.20395811195393	6.55609353907069	6.20270523873853	5.97250059668003	5.97250059668003	6.33877597517204	6.00615477058916	5.9108134942298	6.03998847355489	6.52066819169955	5.61993633857127	5.51431185053169	6.30929770521907	5.63846628265805	6.02142541531011	5.81369898983165	5.78637506866132	5.63928292547371	5.6545712205523	5.50315221517474
+"POP1"	6.42142536207018	6.70726703618132	6.89546907740355	6.42076595379169	6.56137607539492	5.83018889251105	6.63215474710028	6.18150561338621	5.90120838815622	6.41257189288114	6.58231118360326	6.33975974871606	6.54349480610127	6.61869849890624	6.2765015740463	6.41755486876755	6.16502620519868	6.43035653009328	6.14423271706663	6.62736259047128	6.41653559274081
+"POP4"	8.56002263769101	8.45339922524527	8.5383617639298	8.0940162784608	8.81958263744697	7.84302295530186	7.84090316563419	8.17012551861507	8.16105394852068	8.6126805134763	8.42068779952884	8.56571474914738	7.77398244870709	7.71192652829853	8.20578574685252	8.86664915444115	8.05776793237153	8.79321179184841	8.36689372414997	8.92114657522811	8.56737942647848
+"POP5"	8.91805732056877	8.36865648663935	8.67136407885953	8.34959790171069	8.50435278236536	8.0256148357163	8.45203282528662	8.31275489594193	8.2526273908383	8.49005500827247	8.48821435215308	8.01321504765399	8.25257425644788	8.45564862797472	8.26193454487661	8.56785256275804	7.83443446317354	8.59188031821355	8.16153887774089	8.3826586344331	8.11545061956432
+"POP7"	7.99022777135067	8.10791270642123	8.75328521823367	7.78063793892026	8.68520434536385	8.02799312432006	7.69658084359398	7.90060050378678	8.19929978549289	8.67333593213817	7.99716411382123	8.37391291454135	7.63426550796347	7.52524267054978	7.96597075180177	8.33909374706513	8.18444223412489	8.48043614765551	8.05195426563457	8.81113078421041	8.39699530709255
+"POPDC2"	4.97651245225975	4.97477545992731	5.12906069912838	5.02502605259116	4.85526945638622	4.96379873724033	5.25159403556602	4.81849801586431	4.85025280321402	5.08147077002485	4.91259642836375	4.95627134287357	5.03963735328531	4.98953289557748	4.97651245225975	4.97651245225975	4.81130130518409	4.84024454485954	5.02502605259116	4.82671332208477	4.75678605054773
+"POPDC3"	6.50864653153082	7.14189418172127	7.14044787281867	7.50495995438512	7.80447903210401	7.52144863656574	6.8975663248321	6.8383806229948	7.67634495417388	7.80434831328448	6.95170560096804	7.27024400499524	7.49704841822552	7.08016023680208	8.02007467227205	7.7617621130297	7.4911137630912	7.63934492718433	7.4911137630912	7.82665955468619	7.65765098658369
+"POR"	8.24887156845908	7.86594741726066	8.0909747501636	7.79943153547986	7.93878412573382	7.97928133269397	7.92869988593308	7.98460308326521	7.78214480744326	8.13053771444191	8.04887995764778	8.03234735843778	7.7570896447788	7.8031855062909	7.57084461758005	7.87825914107541	7.80800755850266	7.96503890593301	7.55880245437734	8.1490245672442	7.9310550233661
+"PORCN"	8.03945088070104	8.16469828560872	8.55110346390279	8.15849413183226	8.55205976381398	8.24949995084126	8.17898938446313	7.99964204635786	8.26200156731636	8.48079847631921	8.10538849698901	8.39683480400423	8.11278164800454	7.95341582574972	8.08865061011573	8.0526186983893	8.20727572673077	8.07430165418978	8.04060709785042	8.66102851714554	8.29596096278631
+"POSTN"	4.83174451777532	6.17485699976391	5.08692801651386	4.63418887294767	5.59337781888022	4.593316170274	4.09689188189325	5.23389961059546	4.76447504504457	5.44466015610734	4.80243362495227	5.59009326638581	4.72693068344029	4.77400713358879	5.02131959742617	4.65029288499483	4.80634995896646	5.15267531629017	5.00685181062047	6.08935743118239	4.72615496108212
+"POT1"	6.92960838768563	6.86455668932961	6.50264953183311	6.12252047917639	7.05438857873003	6.28907182869057	6.27887386771791	6.81200644816693	6.17561206123843	6.72313362374837	7.28648732004357	6.70897079659592	5.65724316811554	6.41601677167493	6.0806158167065	7.44538874600561	6.451330183914	7.62016377353399	6.67623715110554	6.60495275352204	6.42479438254733
+"POTEKP"	5.59924646870645	5.76038610993199	5.93282294691714	6.04908470093768	6.10016799058321	5.44061319479109	5.72124022731784	5.8943322300677	5.68474073359354	6.0084410963634	6.37140096216796	6.31494058292896	5.68252365059641	5.67559501102643	5.71969830933095	5.91536334384264	5.98550053397272	6.13000657123333	5.96818983769389	5.62171102186582	6.22085854956963
+"POTEM"	5.31136169128813	5.77872950452485	5.6025641910544	5.71575700310959	5.66128153398499	5.66128153398499	5.7397857677647	5.63461177680503	5.69328221130536	5.63367575177237	5.77119740264464	5.66056182121053	5.79343034258139	5.66128153398499	5.51997851378705	5.66128153398499	5.5932662518724	5.50743043112591	5.7658424141051	5.77197205130832	5.54928849321856
+"POU1F1"	2.74502269747021	2.98230445138608	2.99661942920116	3.05446349107296	2.82989735155048	2.9132105670124	2.91928741107058	2.76573091146911	3.04385858196007	2.86168681971099	2.90713788302386	2.89381000211347	2.84862097955193	2.9132105670124	3.0694004111328	2.88651440201314	2.77890300993799	2.6894525789183	3.04839351687259	2.95184373110973	2.91804390667114
+"POU2AF1"	5.04931887767068	4.61940231820396	4.48621964933817	4.55913934888588	4.35258895745189	4.72505641059919	4.59358848341099	4.34227119376949	4.70091760372596	4.18036923049548	4.38491945835022	4.22272016219762	4.48347232747653	4.87657949769437	4.77650942560095	4.83395396843132	4.38842638077479	5.23327514138108	4.47670215997859	4.08193599403084	4.69398320293784
+"POU2AF2"	6.73253309867692	6.97251032745444	6.87571480420087	6.96364670240889	6.74074353041346	6.70482930893407	6.86435998644418	6.78455909971804	7.01394543195681	6.81477528236767	6.76252394100024	6.99121729418968	6.99674453599049	6.90061813325745	7.00827977115858	6.80292385515181	7.0962142401042	6.11011345479661	6.93315136155278	6.77104624648744	6.97701508309989
+"POU2AF3"	7.67442159458884	6.52255055732443	6.61690130235004	6.73886611912828	6.65861599135075	5.92189532495074	6.57262079726352	6.98135032593125	6.93906383452287	6.33613440306993	6.9901547517452	6.16870101144494	6.3143860382783	6.46964488619953	6.39563118323567	6.33474860224881	6.44698808816002	5.87869533402836	6.60415456453049	6.03814950603056	5.42014669354647
+"POU2F1"	8.21435090186542	8.47724217705224	8.80549531939991	7.84423921006338	8.03199591943178	8.18679304448609	8.16611115789695	8.03805772122296	7.78735298183399	7.89811046409773	8.41045019791173	8.12572788711072	7.79315997489837	7.99124856463022	7.90559725103088	8.34537572249008	8.03611434671695	8.50336971916809	7.95400160028879	7.96568502492136	7.63472967575625
+"POU2F2"	7.04403233374613	7.19438124586538	7.18397347887581	7.28909911076853	7.06157292056183	7.63841167005899	8.01497221945955	6.99555084654696	7.34751736909214	7.21275851227008	6.99881221833067	7.23341532770084	7.30793991271703	7.3961294450532	6.98707184054753	6.86650152182197	7.17465408721912	6.79703758299257	7.50840611636298	7.44614925460347	7.24978240812892
+"POU2F2-AS1"	4.66461757481559	4.63671429231344	4.66528637776437	4.72445775333405	4.67945020089316	4.76502502982858	4.99142616566512	4.74579560368101	4.41094732253709	4.76968755238661	4.66720401324187	4.62434327723624	4.88664636557121	4.51918947622553	4.88161178128753	5.00039460393922	4.81835066891339	4.46152143055106	4.51090673304776	4.5594332875432	4.59565357476437
+"POU2F2-AS2"	6.54725901924764	6.6476269009037	6.56812351735981	6.58513646117309	6.59990273510293	6.4738175022379	6.94662307203699	6.48812997227037	6.56399176550588	6.45338145168265	6.32172739252909	6.29414537892676	6.79015666489124	6.92911942099716	6.55760306617614	6.55760306617614	6.60716705212463	6.39310681360151	6.4922734922069	6.42258068581054	6.6428031189028
+"POU2F3"	6.0088375330385	6.38941628853179	6.20085042022655	6.72925883165135	6.36110944375475	6.36266149187669	6.38586673202084	6.1342862452511	6.10870339474443	6.3484177062266	6.07974455690597	6.29835337550985	6.4533409288413	6.60323121106833	6.52115840399591	6.43622517835414	6.4735956402817	5.95829273960795	6.1568863257566	6.42900502835745	6.39436890779978
+"POU3F1"	6.04046004681891	6.19686176944678	6.19996829563176	6.48959665205583	6.30456444366617	6.31201805786795	6.19394062669075	5.92665771034816	6.3329464870016	6.20140527351873	5.99690293918553	5.97411275632147	6.66755431896769	6.71905492988619	6.36476212035082	5.47376540848198	6.17057266237041	5.84785557763199	6.0268456023735	6.33212287580456	6.4171115017421
+"POU3F2"	7.68281203736723	7.67174483453814	7.35716659055355	7.7340835734705	7.49569365285736	7.88953431104485	8.26512333132863	7.3705564596737	7.89135534676307	7.27886203203152	8.07496680394068	7.71851899559236	8.44991755659894	7.9073272227039	7.98218149879826	7.16520775934502	7.68906169976033	7.68906169976033	7.86539847156607	7.36778124107535	7.00675788021593
+"POU3F3"	8.95258366142208	9.00132515731112	9.00048339193744	9.36071168255395	8.89076161673674	8.98734391816132	9.57932747231471	8.99399612555685	9.44513122187479	8.57359967153253	9.57176423886735	8.60706136928884	9.4964380429885	8.96392533932867	9.30931514020263	9.32741506313932	9.1289215538137	9.5485938460737	9.05590688395559	8.49013666548832	8.73595419170278
+"POU3F4"	4.99169548668545	5.03857718102259	4.8275432991866	5.23221224549997	4.82907934169072	4.94246811561445	4.99169548668545	4.92300243498012	5.09122390903668	4.99169548668545	5.00875338979422	4.87598852855677	5.147900334655	5.19329431303028	5.11353647723432	4.75609872946499	5.10539322889204	4.86750311249413	5.07005715443095	4.6275280982367	4.88450939301155
+"POU4F1"	3.68576530385032	3.5051790354505	3.7919567694653	3.65893191121959	3.49796255659996	3.56521899194304	4.31737693895957	3.52655491286175	3.75772003334962	3.83424890828192	3.66076069256676	3.52556651740767	3.68685276574191	3.66430238028624	3.654076430649	3.7528719731886	3.66076069256676	3.49021434657718	3.9597901315085	3.6236906321333	3.64169732434935
+"POU4F2"	3.6520823936076	3.65579974321261	3.36544760050842	4.05978267356757	3.59222776405588	3.65938787694681	3.48317306114685	3.62795101878693	3.3180673095457	3.5668920410536	3.59222776405588	3.58020721668009	3.5869354919754	3.55482399457543	3.97248105933265	3.818400033415	3.53204655001507	3.59222776405588	3.43687099358762	3.48279877436315	3.56123365396742
+"POU4F3"	4.00967676648148	3.9413609166461	4.38397149200714	4.07605302923454	3.77232795707806	4.07262982474096	4.37098950461838	4.16652543164652	4.02180625410317	4.04837908676662	4.08203691059327	4.30795064686583	4.22431271802932	4.08203691059327	4.32215061121286	4.07025963996931	4.01002387523302	3.73715102579936	4.29256453865499	3.9147122192291	4.39995604878146
+"POU5F2"	4.53337652446048	4.66111607523468	4.51182396415553	4.84234371083429	4.42585272229439	4.56181508421551	4.54751080496412	4.69636537878519	4.51344830064852	4.75943196202341	4.5014144050373	4.80419531992814	4.627209754546	5.17559838077553	4.9973876191876	4.66309746915352	4.74553616549834	4.65044724043415	4.66111607523468	4.72345397086754	4.7096388695463
+"POU6F1"	7.97029220801248	8.02857069811691	8.50692944641912	8.24410972998202	8.30321691015579	8.43830979278356	8.1238423498589	7.80607932140434	8.71124128919136	8.11613255157756	7.95756829233209	8.06501456909074	8.57363190661643	8.00822136318107	8.50817378388284	7.56478027957082	8.35964519553247	7.60349510110092	8.05506814762077	8.23544789247565	8.26869268217973
+"POU6F2"	4.77165068623948	5.09122390903668	5.73902421763619	5.07996733566875	5.44436338062267	5.43678822777876	4.6079882357012	5.0926388667389	4.85178625726552	5.05437934912129	4.67783299494093	5.4398252756494	4.79676299830723	5.28733516401852	4.84339179427281	4.68090610038749	5.00252740410148	4.81302641324805	5.04003097162902	5.35456252665897	4.70549267267282
+"POU6F2-AS2"	3.1566908441445	3.17964968352419	3.11742281404613	3.14070112184265	3.073306359047	3.40619847229908	3.00808307272916	3.08764052405307	3.1934899190182	3.08764052405307	2.90628938610153	2.90349689447056	3.01194056587873	2.92608817405151	3.25196837796004	2.9524518690477	3.15235681282739	3.1001129318592	3.20843036279518	3.06341557198685	3.02060539940156
+"PP2D1"	3.09168799177948	3.1826446331587	2.96522176653342	3.02471288538393	3.08564756598808	2.9369441903139	3.43476626123753	3.18404779816901	3.14909305634675	3.0768461069553	2.97710345229507	2.87934264005103	3.04890560253793	3.06105612305288	2.95134470689273	3.08402183044768	3.0361830105036	2.80714079068399	3.16367633608087	2.86552738758982	3.07586771059024
+"PPA1"	11.5414946576181	11.0452053647987	10.9793515698634	11.5263857856208	11.5602226705191	11.8583542956885	11.0589721994259	11.5835122728119	11.6085692418916	11.796907805088	11.0083048247783	11.497574253976	11.5815918410362	11.2877205305326	11.7704760492529	11.6118586367152	11.3809529164656	11.7760829980684	11.4168761368027	11.4392651609605	11.7055527519456
+"PPA2"	7.1915111717343	7.3688448700871	6.49903728068739	6.83691180464653	7.61977203728538	6.1677423230132	6.53106060365683	7.31027530029705	7.19105543440499	7.95003175650124	7.28192686691297	7.51557288117619	6.69476015483055	6.56486386921061	7.06640620103707	7.61926099390472	7.18880914799465	7.54056121395191	7.10630772802713	7.56904918463734	7.34371594189027
+"PPAN"	7.44540498766867	7.33748656137684	7.74115503285591	7.54326329760508	7.44935401328539	7.91329880478883	8.4010757465151	7.45245299888278	7.47080432530323	7.52192883189803	7.28615090785715	7.34597090895428	7.49744344592134	7.7326704951855	7.4505896237968	7.32346203579452	7.32260534317004	7.2686443121835	7.4785503338872	7.58471173365702	7.46916168857802
+"PPARA"	8.2352967798091	7.35012640512591	7.29907682284935	7.45279046367274	6.68824625700644	7.32740139410567	8.18109789390578	7.8528292088307	7.37981115913775	6.98297830671466	7.54124565966877	6.63151588909488	7.28135539461582	7.73898489311336	7.36642566834827	7.18680866021898	7.13696711060943	7.77827380856226	7.24117295504112	7.09995103474415	6.63331168161368
+"PPARD"	8.63646691170164	8.60141418655567	8.5394877512263	8.64062824764806	8.50791540594368	8.70126835173956	8.61403757864727	8.56910103742565	8.72453133197973	8.12610003265119	8.59508715516357	8.24058647465239	8.85878218093071	8.82166941996038	8.72793525472412	8.08539513406433	8.59049982750183	8.28938378599852	8.37688823993509	8.21263539031727	8.60966018379219
+"PPARG"	5.12412882071819	5.08071433485658	5.28210127250343	5.19933512553945	5.27172981242474	5.26519704809888	5.42301670491083	5.11994751217011	5.18698014990793	5.28457215529838	4.76168750097297	4.93207146715601	5.02732924890515	5.08641447029678	5.12412882071819	4.83021075409308	4.95771342590708	5.01155963594694	5.21422700776418	5.50058535567173	5.49574013804713
+"PPARGC1A"	6.86278696602064	7.44002725631546	7.87123417598753	7.4274090487866	8.09068936619446	7.16402814108173	6.9138007882063	7.23482129389826	7.73953810391673	7.80011640269142	7.15664555540539	8.15653541095828	7.75889733089929	7.16549426749796	7.60818791636748	7.14035775619551	7.86751735576808	7.51832746041089	7.45309030948591	7.86097711353987	7.57665276375347
+"PPARGC1B"	7.48889264598766	7.71428753661285	8.22924552079397	7.70347032327095	8.14714207214372	7.56177281754539	6.8606906354881	6.76754383779862	7.97331106856722	7.62349081305279	6.9786153937846	7.01649802294564	7.86310587244153	7.49223693328715	7.81960993242177	7.03280482670273	7.72405173216291	7.40017151039206	7.62349081305279	7.99684557760922	7.96695703778212
+"PPAT"	6.90534284475846	7.08550581634435	7.35309729468969	7.05534878064744	7.31644488951622	6.92039723423282	7.27130586149702	7.31612182609619	7.31657856908142	7.14753834252161	6.9390337684915	7.36387544680352	7.10745593852542	6.91474399727323	7.11746973364906	7.14753834252161	7.20395543712084	7.28410237576051	7.36436926500832	7.01235449408166	6.94132674796489
+"PPBP"	6.43422016657398	4.73341268390279	4.20980261110618	4.55350116330406	4.57358316421941	4.98621528319736	5.54315939437303	5.79484862190047	4.58012482136715	5.43961102902315	4.14353370262933	4.71173264149164	4.7184675604818	5.34473127535224	5.56211443117218	4.04397701458456	5.02853908227449	5.20547548975563	5.29464376701844	5.51850695799879	4.89449328430468
+"PPCDC"	5.93929095929822	5.8184769049407	6.00193596388365	6.03137583543866	5.83891141924856	5.98954706786184	5.77909725605103	5.63232419465234	5.69201563326794	5.9458276349413	6.23651005379179	5.82648687307589	5.62255691613733	6.04373479627748	5.64264259447669	6.42796746240351	5.55658960429423	6.06375869400624	6.03555248805921	5.89373222037527	5.50076182085259
+"PPCS"	7.90948309368957	8.01266780660761	7.87981425271561	7.3466003596379	8.0131194509171	7.10014272565853	7.29641116668381	7.63350969111847	7.53624849049879	8.03856215996514	8.38463477526402	7.81150828890445	7.2863466405043	7.35998099125752	7.2358370684506	8.06046304491688	7.5044618967859	8.06976729390448	7.80247895888647	7.92196887541788	7.99922011055818
+"PPDPF"	8.35733109893041	7.97676961333491	8.3335146348468	7.6430449664384	8.13022106303387	8.11859456757265	8.21330140442569	8.13124327985652	7.43919546906727	8.01462162782598	8.321616599217	8.4991154284948	7.50681378473535	7.63695681395217	7.01058164342545	8.68390185431886	7.78400268437078	8.00042659436576	7.86510826791694	8.22784563951818	7.89948302949196
+"PPDPFL"	4.40813259669541	4.06166005879437	3.94149298583238	4.47792072305221	4.28811339558514	4.35554554119924	4.19438827633484	4.15898467167837	4.2498539841618	4.21302253095307	4.29093772229235	4.09986480555449	4.14737370039478	3.90480121563491	4.10831279055637	4.41346542206068	4.4752576076541	3.95021163749491	4.36611819088642	5.03189748458321	3.76649585251223
+"PPEF1"	4.92786412324604	5.76939531188764	6.41688868540109	4.98970380958666	6.35624837299791	5.28399300199705	4.83284934125685	4.86644650651991	4.94106606164057	5.57636520813343	4.52119893340961	4.92786360415471	4.96884338478945	4.62142070330257	4.83851391392687	6.10075490982814	5.33691139859507	5.17096890148219	5.21580400283016	6.77896007658892	5.70509528043655
+"PPEF2"	3.05665498394158	3.01556629506288	2.90909700959694	3.11908627607815	3.04501591013991	3.14600333491827	3.05347653633788	3.20495908017762	3.16028576898839	3.00689164374254	3.18980159272936	3.16749879020531	3.17244348900236	3.30819559575917	3.29785763126068	3.23101817809114	3.20442496263434	2.96673768447946	3.14119885559847	2.90516538937466	3.11908627607815
+"PPFIA1"	6.97921914867138	6.7932570645231	7.05532359158089	6.32913228937998	6.25659079261773	6.69627339027583	6.32497450214855	6.61490196250455	6.05697513488693	5.82252297175026	7.32840926855866	6.49205098916788	6.35044969390426	6.46545935193074	6.45272157342021	6.81294338801741	5.87093820606161	7.38415802200523	6.17774749710539	6.29255738933083	6.18230019154743
+"PPFIA2"	7.84029287294669	8.87157953171843	9.31716168253964	8.33219257125833	9.16144509293149	7.79794757390643	7.1348292590633	8.31683433932701	8.8720236513393	8.58006836492004	8.45386503598672	8.84983376020296	8.04951057032432	7.63774309828013	8.35193090407579	8.75653517073172	8.69582954925407	8.64495830212909	8.54649025379826	8.79241545039116	8.65054743050598
+"PPFIA3"	8.01568964143459	8.18244185348926	8.90319070649709	8.15694553808431	8.38804524699236	8.70869445224265	8.66350957515456	8.17257715076052	8.28893617284402	8.12169798099952	7.79820647460343	8.04051894851274	8.4848580581465	8.44318833813715	8.31154218190872	7.18338103585492	8.21192950795843	8.16016248210316	8.11453014411112	8.4039510769611	8.1433003050675
+"PPFIA4"	7.96224368701159	8.91788167760204	9.150427720927	8.48614133563487	8.79594491902367	8.66575863506479	8.1886761537931	8.64134569197774	8.88983247815751	8.92969192534563	7.88803815619487	8.90524340379257	8.95458036690188	8.26722652665545	8.94627121286017	7.77028853976821	8.79565009986115	8.56255051292715	8.7006831524025	8.71477815815802	8.81747789497286
+"PPFIBP1"	6.89431451881217	7.620209857106	8.4809591175334	7.30732552577279	8.29009813127049	7.98477936629138	6.78194589724825	8.66581318537508	7.74191753869161	6.93231127304795	7.85355514022087	8.03023717072864	7.28817279696081	7.58821284158814	7.75911550263816	6.15408615458179	7.74661366827305	7.64343013665009	7.34335005533848	7.49660393934494	6.7707840294365
+"PPFIBP2"	7.83213415251846	7.56917873683245	7.51105130877698	7.50984807302251	7.4216961996477	8.78982824108787	7.81397306285408	7.53671586233372	6.88411508638956	6.63995876568982	8.35158127835191	6.03941758520597	7.78186876208831	7.8470630933634	7.89136143787389	8.5876143880253	7.21213837638883	8.70777872882144	7.35915323189885	6.86305752065364	6.58045199673499
+"PPHLN1"	5.12765676164863	5.12245097070481	4.98200908134609	5.48264410282685	4.12959456561474	5.27404580854206	5.73871702605814	5.0667041998626	5.46081284589288	5.21884862395238	5.23855202776641	5.04593054072238	5.4327198993479	4.95020450018967	5.17824993718378	5.00347079578331	5.13163364961379	4.40668271747661	5.41233513964153	4.92930663540063	5.21518911074854
+"PPIA"	9.10390824497756	10.0101650277589	10.0948275095431	9.38633220395337	10.0189944592148	9.57299774019674	8.32304561166568	9.62641553352065	9.60342252927653	10.0909409287854	9.73453227289525	9.97865730403717	9.37117007915798	9.2218298840056	9.51299389144144	9.51541137125181	9.62129991105085	9.88681366810874	9.08317897293074	10.0618254396958	9.84174068232044
+"PPIAP21"	5.6787657515095	6.13805595777722	6.24443397539332	5.96777744796683	6.03294522594404	5.81876074600988	5.40350770569103	6.01059093079894	5.94113855780133	6.11172629493961	5.97211052602282	6.11466257638286	6.00670622707959	5.30725824296089	6.08699542187171	6.11172629493961	6.00537419578406	6.05831549141423	5.9259545748984	6.19445872263064	6.22622198220201
+"PPIB"	9.49652634017137	9.07687339973088	9.12475257679526	9.15664032718958	9.06149531999576	9.01481497162829	9.03938785630506	9.2186755832704	8.8834539263739	8.93947556708172	9.6089727530784	9.02662474597385	8.92492317980316	8.60138998528264	9.05408676956453	9.52274504477843	8.61621822899457	9.65431120323383	9.03651210659261	9.57073191555679	8.77526785074358
+"PPIC"	6.93811125598975	5.69566373112109	5.31029743803994	6.09919961864219	5.65706370061406	5.74941160898833	6.12728655050405	6.28505124644159	5.75999274188423	5.69069698488692	5.94131904892751	5.50756447504921	5.98883706788257	6.32371534844525	6.05926072124489	5.60660632950157	5.42075907960518	5.57888309821237	5.62139864321898	6.28258795498103	5.20295901656666
+"PPID"	7.19973237152849	7.70639860054634	7.41142099872278	7.97380553706611	7.72826740145272	5.03493223553327	7.92134170021244	7.66752058762884	8.21705557770208	8.53019831898516	8.10858977600993	8.1768715916144	8.43311093029506	7.65995460217954	8.62678791440689	8.21294888021281	8.2596853883509	8.3556991079328	8.30053664679162	8.35674087740858	8.57766714066964
+"PPIE"	8.09630815469382	8.09630815469382	8.28562058451181	7.77285298924527	8.39174848289335	8.03656899667271	7.90382588995675	8.0147049802917	7.83910948122906	8.41288194070743	8.13234403634888	8.35609762423071	7.74334743570051	7.72005518046632	7.91425491640988	8.78137976817462	7.98637809814415	8.50473687286776	8.00154380817636	8.46218301448152	8.13379432222696
+"PPIF"	8.75414330584269	8.62119798974675	7.48112055266477	8.20197778485522	8.42840180959894	7.68340696446061	8.26189979747399	8.85927127431339	7.87077208335084	8.79459045909864	9.19284834109469	8.80689865710981	7.5550745437501	7.41384226908303	7.85223805906461	9.48532406895703	8.43536186222988	9.05914225232358	8.54183775094437	8.79006011702651	8.58210918732165
+"PPIG"	7.04639590730684	6.76341468178367	7.22367352415086	6.96077706020124	7.37020733651976	7.0987926751014	6.43661400946088	7.28003300323236	7.17430731699381	7.02802225938574	7.17474844651075	6.92912764865003	7.12698366946742	6.92367697078698	7.26907253982794	6.69789553985417	6.79683626839342	7.3118654062844	7.01592613230347	7.01033811769526	6.80993817799473
+"PPIH"	7.95406190371839	7.99088152599298	8.19665210753752	7.78732557003874	8.10934219834105	7.86918166085867	7.29967690202667	7.8909132592298	7.97145146110807	8.32217033664631	7.87483622035771	8.23940924105166	7.4379262054992	7.8326273777316	7.49897434172557	8.18369356491041	7.90014398728364	8.09278161420591	8.0796443830919	8.23423220255311	8.02428822275199
+"PPIHP2"	3.79140546053038	3.7712765336246	3.80390233966662	3.97521665806832	3.83141783935284	4.05517264842185	4.06400894534099	3.64981929895532	3.98549607012017	3.61977928036359	3.52309415983578	3.71013435523414	3.65953599399016	3.81471620188116	3.96889527909857	3.59497564365909	3.89432880142765	3.62776647737869	3.95101230976046	3.80005852962073	3.89905426500588
+"PPIL1"	7.96209181601801	7.55666854122001	7.72263180575348	7.72263180575348	7.84223911570746	7.03960053871989	7.09908171192928	7.35727511603171	7.96151716048293	7.91030935640463	7.85902901465396	7.66358087162437	7.84778664538749	7.36241267440762	8.03472070531126	7.79627333429031	7.28100536714457	7.65109559154241	7.60140336849849	7.87250923067743	7.6847432104605
+"PPIL2"	6.39268155095085	6.4220488525634	6.3631188087846	6.41620103003187	6.59958952762844	5.94744195964931	6.25065377185388	6.29430090802031	6.35511475815238	6.66309546517625	6.22357131942705	6.63369703483045	6.39465975982425	6.24776344343504	6.08177402166422	6.49323124311675	6.47228695339817	6.48128125976016	6.23753115743314	6.88114121804722	6.47539002017536
+"PPIL3"	8.5236641678504	9.65779722190511	9.34843681521593	9.07058463419603	9.50453565289928	8.96862772338693	8.69177373399756	9.25303111618372	8.70002025450874	9.50565254370926	9.50449024656668	8.98405498771405	9.19110141362705	9.11878013571794	9.03423107004395	8.91399225088254	8.68328215479221	9.43364787506959	9.33783540547709	9.32244644262831	9.23517740995695
+"PPIL4"	6.14907655385931	6.08151908255844	6.0442814992368	6.01530109768155	6.14893618509495	5.41950626453505	5.5179062446636	6.52616688954805	5.66459022516475	5.60031561451084	6.4384706497444	5.80838433805973	5.78463763025912	5.21084780520648	5.74424492917152	6.28540640037319	5.66046883829282	6.64405229235931	6.43764225042538	5.46017949918724	5.6880473332776
+"PPIL6"	5.02011511203251	5.07374513696926	5.21681588111744	5.39827023485094	4.91708165502444	5.59158414941047	5.72751046775566	5.21380208789777	5.21681588111744	5.44912354031138	5.09960690544575	5.21681588111744	5.32944719978151	5.47002104672887	5.42287983771231	4.99932570524098	5.24999714827442	4.96422361085968	5.4282076011692	5.07466745424539	5.18141857054139
+"PPIP5K1"	6.95762107425217	6.94573669453828	6.81593237229005	6.78350345536153	7.19223571362352	6.4604268934255	6.35191254351383	6.6652103630359	7.10010084106319	7.57440098551577	6.86468542500116	7.3191955405373	6.41609011385535	6.43242159863092	6.73161741281956	7.21222663092973	7.17394620824907	6.61809748496672	6.71824969846691	7.65670804390196	7.57974251349405
+"PPIP5K2"	6.98991399835507	7.49542486853115	7.49227248023589	7.20473106261133	7.8296105295157	6.12337587386944	6.25336894139826	6.78017155565318	6.98588881731653	7.20346614286036	7.38067831917652	6.88333564706477	7.26966287193579	6.47027053453118	7.26525022396495	7.50602307677073	7.22176572907565	7.64046133096628	6.97176211425474	7.37291677705155	7.45204877068672
+"PPL"	7.04029151883567	7.82813030751041	8.38359263659595	7.51325841829856	8.31338930445367	7.35582379285236	7.17822131640627	7.37277093421501	7.73051705580236	7.71564540517677	6.93463526237863	7.83131333896653	7.51010609900737	7.46674721319035	7.36397670347903	7.04347382495853	7.96719993963585	7.64050454000223	7.38703720644941	8.18415925923388	7.91142754989119
+"PPM1A"	8.18687769412774	8.1518312487181	7.49450520414094	7.90545554553834	8.34124171534536	7.52922298964665	8.11228520506839	8.36101730769074	7.82318666634775	8.4188145762146	8.02794344903518	8.39683480400423	7.35177232666974	7.43126643103933	7.72777030773313	8.50952908504989	8.39623623644918	8.67473882255403	8.37436182311891	8.44533554505698	8.55553429882393
+"PPM1B"	8.33365320129096	8.43302937990147	8.42730627176482	8.71950734094027	8.5198046073664	8.15425810756424	7.65236610159461	8.54263146449536	8.55927410283962	8.20378392958069	8.91837336766389	8.48901232256588	8.75119197513977	8.13242176343767	8.6187575246066	8.59639006231888	8.69625148036677	9.14700402785206	8.46043218899307	7.63136126044238	8.36018563672289
+"PPM1B-DT"	6.89401223479205	6.9852403229779	7.24214878451148	7.33889252932062	7.18564402986247	7.63855461514423	7.77827380856226	7.08793079179297	7.22323131218584	7.19631672077927	6.99575234649757	7.14430697760877	7.26766145236488	7.60260948411912	7.38042056020551	6.97272509837832	7.07280429229135	6.91920423509713	7.32968302483613	7.20238352908824	7.2302463507425
+"PPM1D"	6.97357992117134	6.59361593165903	6.22455210668222	6.71894989591503	6.49077987269706	6.69593380492858	6.65700401019584	6.93241556163919	6.56354978459743	6.16065565038634	7.32011583467933	6.32031639172123	6.86230579841496	6.46264592456062	6.79122464767632	7.55839765647795	6.38901834759814	7.80799095864744	6.40382767411492	6.43891225455533	6.36103177123484
+"PPM1E"	6.02938304004054	6.43333731759275	6.57039184357246	6.70586416460322	7.675347326309	5.97652212446285	4.73528686889738	6.71099574010952	6.80932807079481	7.75185984990841	5.91757965741827	7.7301035861158	6.20551445534807	5.94387951579772	6.46841313604061	7.04368011286608	7.25828922288888	7.21445426500487	6.84098140157452	7.87357702484326	8.07557552828267
+"PPM1F"	4.95917546806783	4.80380351841069	4.59520516735851	5.4700983401085	4.40882583998169	4.72708484978702	5.86800523170531	5.55604217274786	5.51529866469669	5.02052856341919	4.87415403619724	4.65915049192384	5.52773270349037	5.33492175427719	5.72511709135923	4.69678369840286	4.99169548668545	4.45066948897201	5.11717534839358	4.61579080767239	4.92074179778006
+"PPM1F-AS1"	5.82790668955752	5.93397056896336	6.29147854473106	5.63887049111639	6.17743334325412	5.73928072918074	5.40296164844861	5.94805763663915	5.39622317910101	5.78304800424911	5.69326240964098	5.80532244476184	5.87622248275463	5.73114948619573	5.37140219536446	5.34227338199514	5.78304800424911	5.70359632454133	5.76668288172931	6.16799229683036	5.92288087708825
+"PPM1G"	8.53327268721279	8.08886625120718	8.34300826131077	8.24629021763579	8.39709735110135	8.65343896688461	8.18672251607309	8.12762363037559	8.21131043756028	8.44867542630215	8.21800569991402	8.32602888502765	8.35375711174047	8.32324319122125	8.2616759721238	8.15711980265831	8.19455248617123	8.22812615916693	8.11913551074749	8.60824352584124	8.32752322311634
+"PPM1H"	7.78276691707736	8.74140734263895	9.18257890487193	8.74252579351464	9.09085016342421	8.46967322466263	7.12288953324682	8.12920483748721	8.92998342313056	8.95417513916936	8.72057271114215	8.85295724146477	8.89677030515866	8.04235038590638	8.69114021652929	8.93510387609271	9.11023488115066	9.32086805940406	8.35572441495657	9.15098830568108	9.0725188997471
+"PPM1K"	10.3790498572102	10.0879557480231	9.62738280903888	10.5712530518461	9.53616831185764	8.24476419249547	10.2296690356454	10.4852676173223	10.826619169262	10.7016766533921	10.3271644012482	10.4407048555197	10.8392184306375	9.97869591865511	10.847078750361	10.0138130819242	10.8615548772323	9.41963118649327	10.8450261121012	9.96857275266677	10.0855756712324
+"PPM1K-DT"	5.00126411764229	3.4210961531431	4.13355694390545	3.79994599722494	3.59554332077531	4.10318289069734	3.87410080709833	3.33386103742019	3.28149176199125	3.34477011091428	3.83353097716374	3.67884275111033	3.84859720507852	4.11876101116635	3.72664870502218	3.44095495771285	3.63776077435167	3.63912094830261	3.67884275111033	3.86978207558407	3.67884275111033
+"PPM1L"	8.88298617479498	9.5033805031281	9.79851087090429	8.99888349705981	9.81151677467104	8.56101530456266	8.34120639934588	9.52857438537221	9.52533700083991	9.40102164909831	9.30740399690177	9.80744235303678	8.88011006120527	7.63799986709671	9.46990868719037	9.24997113182057	9.59520655501459	9.56434330551656	9.51162357191281	9.49068624871975	9.33554944685965
+"PPM1L-DT"	4.16763061644325	4.04045108488441	4.40345284357579	3.6631851567327	4.29624567941525	3.91747881625649	3.64597803482615	3.74849301400439	3.50046951019733	3.83485208175011	4.28485930976445	4.12182885152545	3.57211413239045	3.69488887343256	3.48401303533419	4.68090610038749	3.63380446419854	4.61329931281974	3.85770535803792	4.06698409371815	3.70514605701931
+"PPM1M"	7.78502230989096	7.33612386345086	7.53369326507318	7.58679682717344	7.33303992110934	7.5193256879162	7.44969045385057	7.56255632844329	7.23685662861451	7.23864543653403	7.21747331594167	7.20569537179613	7.1252049263374	7.32741749260612	7.15561032569324	7.12331970844351	7.1586917141843	6.85162833253246	7.57693812648376	7.67944321722858	7.36450291227409
+"PPM1N"	6.53194845451593	6.07150182210945	5.89938662085947	6.18902521443021	5.88801529215511	6.49807327977165	6.59209506718014	6.19592163889899	6.16070227930493	6.12059484398192	5.97563395794685	5.92981147250891	6.27474506892149	6.38046209598809	6.44785090095351	5.85228668865013	6.12815719680407	5.61894847789282	6.26005121231955	5.86333475083978	6.0694382421982
+"PPME1"	9.19296684896306	9.84857401130189	10.110781399601	9.63829991920534	10.1546482522785	9.99840150797989	9.1879891430013	9.757994229731	9.77829309021971	9.92084006174954	9.42294860409813	10.0049022287119	9.8468216139964	9.53811965358095	9.46753934362904	9.69137021925902	10.0509188398214	9.65601929101015	9.55147108528172	10.2351770457817	9.97681430312325
+"PPOX"	4.66691407810392	4.63035414051559	5.09283459418858	4.26162600349339	5.04728326981218	4.29671632177519	4.29411025671743	4.60261283334913	3.91116315335808	4.06138718397867	5.05204655490962	4.3874606668697	3.88553906760304	4.30099961904715	3.97652191422605	5.26685844675102	4.08760134636187	4.97281950837498	4.43708957618396	4.15670217047807	4.18718026674297
+"PPP1CA"	9.1729445044049	8.72174670470871	9.17909493923194	8.68012800265053	9.00695396457832	9.17070073158918	8.80061843540173	8.52315771241614	8.68602676794282	8.99150266169099	8.92261721731251	8.76488698709914	8.70388222392767	8.91901137039314	8.75655527904334	8.90051386127526	8.6725861667576	9.07126466543113	8.65675769237311	9.2951816636051	8.98999873956249
+"PPP1CB"	8.21163372994516	8.60011263214431	8.76528664256002	9.51246055150692	8.78070759830195	7.93872890024998	8.25279016100357	8.70455662482621	8.75912484413684	8.72532627598803	8.99934619032681	8.5796727979189	8.86702894136308	8.41549400127407	8.70013060949921	8.7106366489505	8.70013060949921	8.78070759830195	8.78849493932629	8.20982064430564	8.92100899729867
+"PPP1CB-DT"	5.96805546422945	6.10061683121504	5.90084178440337	6.49324683096658	6.14923764908736	6.23247092396269	6.42260910295183	6.2399556013798	6.14117216891384	6.21933541896695	6.18081248072393	6.04875099015083	6.14214476769302	6.36730383401062	6.06161095059178	6.44629656973862	6.2158329304059	5.92323118434172	6.22264045399422	6.17957947574882	6.07457660829329
+"PPP1CC"	10.563841803161	10.282203716382	9.89278875101682	10.588805018204	10.3281066921761	10.1477095920158	10.5561925583026	10.6080521552948	10.7360812881502	10.4514176841941	10.3798103913278	10.2239732708712	10.5446630125014	10.5108462170721	10.9470611836875	10.2391830987769	10.3232951529992	10.4958006965255	10.5876861602589	10.2112122049829	10.2840324422024
+"PPP1R12A"	7.24199418150026	7.46526442773331	8.08199751465739	7.87285612939716	8.31830144073444	7.55151716865401	7.37011795583607	7.75403892101964	8.02450002487118	7.51462142885958	7.51210089929435	7.83486545447393	7.98002480039454	7.51912267076672	8.17692070434079	6.86871812077229	7.32068123807146	7.86436995495553	7.86436995495553	7.44614925460347	7.24005267490225
+"PPP1R12B"	6.92347093105779	7.04622355373836	5.80881722020935	6.92136344580709	6.34573195355064	5.60633537978072	6.46791925815712	7.10264766251427	6.96336066989322	7.25609788588084	7.50466499062648	7.94255037524826	6.7897113537932	6.78870226162563	6.74716180805475	7.74919214713835	7.13121430271504	6.53036259315506	7.06793334036041	7.14295770840955	7.21922774144341
+"PPP1R12C"	5.74350135886747	5.77884292085632	5.83611060569997	5.98163806760335	5.71632074703909	5.98599082541943	6.41416473332317	5.85588260292714	6.12394783849496	6.26358141328395	5.74468100820222	6.03306724365425	5.95324918109606	6.01766259716905	6.08692289647812	5.89491570600259	5.93677191233105	5.4834702467407	6.10271985819724	5.71411345171696	5.86315065265508
+"PPP1R13B"	7.57897866072002	7.57091681677267	8.42653874488639	7.78727942211187	7.91406571608329	7.93173669653935	7.81832720480041	7.61947299174692	8.06093976429776	7.5327179722568	7.35378285753048	7.56072028118061	7.8686398663505	7.86262613523706	7.9475639813926	6.90331120192409	7.73271271427576	7.5892671189473	7.54866723888645	7.73516336088817	7.76107111678016
+"PPP1R13L"	6.92897876497831	6.48506556423064	6.44272678108337	6.54810350144546	6.60741958979323	7.14423168785048	7.34235207380567	6.50057903294879	6.35866878959571	6.39464426984484	8.02200242911703	6.42146087143692	6.68985360863011	7.05418038474213	6.60342893590379	6.76564929672572	6.44698808816002	6.64523999313175	6.54992720593577	6.56888133526809	6.6105879267926
+"PPP1R14A"	8.72034236354488	9.23414459985336	8.83347054733013	7.93094324237891	8.39904960314136	9.18426789366552	7.39935121636997	7.45648602353526	6.55834326364195	7.90856958635365	10.2034720210885	8.19985258441757	6.61082615125798	7.93571141104786	7.23838235458141	10.3969659404455	7.70442969559266	10.5157139443232	8.12070158967149	7.60946937908637	8.37653495215946
+"PPP1R14C"	5.89780967004522	7.26765901847616	8.21365440739267	7.05762499194946	7.9573926678641	7.03499768575863	6.47597576804566	6.89604579840717	7.37467868952332	7.74805558026938	6.30925970259982	7.50680144781091	6.88714548498524	6.63740309640353	7.026904085215	7.1697595540229	7.40229081606471	7.1069371877204	7.04137967132284	7.69195207310481	7.62567383474818
+"PPP1R14D"	5.81045040878039	5.9721574541798	5.87974272841236	6.22231119504411	6.03318710517606	5.82469243645956	6.23732720743014	5.96118582928058	6.09268614669488	5.9904189429086	5.96118582928058	5.94664618943437	6.0223093709732	6.14586722620077	6.14442617776202	5.5416937103325	6.00382011105566	5.68448041168849	5.87447954315895	5.81251652712134	6.10909565605137
+"PPP1R15A"	6.90237709266814	6.7635675308963	7.32678508785581	6.39472042327206	6.7961571022494	7.96196734953714	6.55814713518348	7.39196097603124	6.52087574600253	7.34624170149051	6.67424062080377	7.08740559503747	6.82913352944768	6.86010342878085	6.41055283148785	6.83516231470817	7.02397758690145	6.50779966881988	6.68162317539445	7.17360530237496	6.98765650347814
+"PPP1R15B"	8.39355600508575	8.45147414559452	8.00539155117176	8.48861485611479	8.38072655444802	8.34369890694983	8.40909886030312	8.76725005433146	8.59719105120942	8.32583062972702	8.55428370521904	8.10289518544927	8.60752907921349	8.10448606954393	8.85179086277021	8.66227893453882	8.46457872805827	8.7784591056126	8.53724454155435	8.24738978250653	8.43499577322999
+"PPP1R16A"	8.41154358762655	8.02647807095644	8.11625197353154	7.93349341413663	7.91987572415936	8.0286282363507	8.472845970694	8.24944643642155	8.2511275235995	8.08250688540774	7.80563047531951	7.94439585840411	7.86356175889606	8.13349547706456	8.28271475726245	7.34371594189027	8.0658406523104	7.52512724417959	8.18200719997023	8.14447974867074	7.79461765637029
+"PPP1R16B"	9.46964803845569	9.56039628362286	9.86826639456504	9.90053612856908	9.72949143026711	10.0620663025899	10.0475613936975	9.65081546879861	10.1870205506779	9.32724367726199	9.4148662491712	9.41669205612324	10.0931588553115	9.95467899832698	10.3030438261088	9.4182156238191	9.69850806820849	9.87052307435014	9.704274169098	9.46062803841038	9.72835045155845
+"PPP1R17"	5.23094156547371	5.52269681306219	5.44969832233166	5.52269681306219	6.05175643858224	5.82097428095802	5.48949405475742	5.4381738114602	5.55063765169182	5.76125936971348	5.29709502402676	5.45317581666532	5.52269681306219	5.59140381272771	5.60833813054308	6.01594385164701	5.47110533359126	5.14873718901971	5.44467876760213	5.7662511083396	5.66559043620161
+"PPP1R1A"	8.47583137552662	8.19838827910475	8.28168245359379	7.79214278389066	8.1480315079134	8.17074430154619	8.62604353548103	8.16859511479934	8.22500752389106	8.30695336270405	8.33416954664589	8.38674579060168	8.07520387783803	8.16468543586783	8.20133710659536	7.47269217146923	7.67536195904088	8.49800338597121	8.03545299756635	7.70724867601644	7.81565272653055
+"PPP1R1B"	11.5418938780629	10.8942027481828	10.9692757339183	11.1307491689188	10.8048653001333	10.8522665391912	11.7159683071833	11.5375638766051	10.9772641739819	11.0417985129897	10.7440257039315	11.0383441309297	10.8206312468504	11.2189507344229	10.5938848264327	10.0096581634189	10.9572518806682	10.1629960427349	11.278199467762	11.0637022757656	10.2248130018762
+"PPP1R1C"	6.18518648819292	5.55057949220786	5.62766785765013	5.55144864865489	5.69653176215066	6.00289241985685	5.95922130354898	5.7662511083396	5.88084517288335	5.485169928465	5.67239453195326	5.38193640302858	5.62242024562014	6.07745131044928	5.42751130411312	5.74265156920915	5.49045224592158	6.21101619538662	5.97185541973005	5.74915220697729	5.55144864865489
+"PPP1R2"	8.10930295466328	8.38354315144119	7.91449121322568	7.86525302304267	8.65123487532069	7.16188782377049	7.1463499340919	8.48692676936587	8.01812665677225	8.74127461895584	8.35022958879456	8.58408526463529	7.61949918252593	6.96092848742062	7.74257784249115	8.5653323745609	8.25282596641239	8.45269182978972	8.22160638584548	8.39016306652423	8.69956898781703
+"PPP1R21"	8.30024786884633	8.58433747353823	8.49892107495109	8.56912610634437	8.69942202605208	8.43067724104069	7.62792181847179	8.30926771467228	8.59427094792551	8.40604188132976	8.6942080487249	8.43334236017018	8.69653671625072	7.99517723745209	8.86035408665456	8.46303757847981	8.49892107495109	9.3305176300782	8.49892107495109	8.32382258068969	8.53494579375253
+"PPP1R26"	8.0761759087318	7.99729738824915	8.35141610153741	7.9965416675541	8.05889425172352	8.09743573675917	8.08717723081178	8.08699006004052	8.12264964013478	7.85049232751824	7.65644906280794	7.85809613267745	8.02901671128154	8.13019509346085	8.10462380444109	7.37104167417807	7.88342752086053	7.79060647957659	7.90621866667175	7.9965416675541	7.88783897541733
+"PPP1R26-AS1"	4.1163460057848	4.41574177853525	4.41574177853525	4.66620475415597	4.4338526546948	4.45503733336714	4.64972447149132	4.49707081982542	5.13996491891201	4.18555128204223	3.99659326353385	4.28121769445042	4.81209535093864	4.33694208315005	5.07311467718182	4.07314489516211	4.2693630482555	4.32980258079138	4.47669935773727	4.66556752782379	4.41574177853525
+"PPP1R2C"	4.16288418427007	4.31327497966902	4.57202276382031	4.73870127095148	4.33688677321462	4.75391176901744	4.825856339036	4.34172272443173	4.537699768961	4.537699768961	4.31875825532267	4.53978788081452	4.72796749183999	4.80750747233063	4.44703093605319	4.45098570805465	4.41268542919861	4.20809767248565	4.537699768961	4.37664853960358	4.54796271780345
+"PPP1R32"	5.20943197008705	5.53877296903047	5.62571921034381	5.6631793976554	5.43472065132816	5.91351759085476	6.09036353929468	5.58772289161752	5.60367987596554	5.52709528988894	5.49446809923546	5.79052885494372	5.74799438936223	5.8472870977629	5.26303724683323	5.42616462738191	5.60807613380716	5.29007572052677	5.85672590071405	5.40496419560864	5.58000966380129
+"PPP1R35"	7.9161218920243	7.53461809648825	7.93041029236456	7.40005684552366	7.3266984588653	7.74467657193276	7.57972317083109	7.53412429822391	7.30539031507347	7.62551334173951	7.68687680758034	7.39971292781986	7.46538241700278	7.49304662138133	7.3784834656196	7.33370114594563	7.32863281402399	7.45639791525963	7.46349200238536	7.59788321732205	7.40588042665972
+"PPP1R36"	5.89367331950454	6.06398846452932	5.84029470290062	5.86743536210146	6.32883867541257	6.46964488619953	6.16018590973376	5.88710561755956	5.87009625681115	5.9848987837507	5.61106709674409	5.87097511251271	6.25371965066798	6.3279945868006	5.60598409525337	6.46964488619953	5.90070558315168	6.8936069613888	5.90483431086718	5.7662511083396	5.69234083595701
+"PPP1R37"	5.47342511491094	5.72626758802599	5.93926582225258	6.24167630113211	5.89822558611895	5.89822558611895	6.24367803306617	5.65116607547456	5.63282737911643	6.33947162994249	5.97926566590968	6.44147262220922	5.85110813425317	5.61574276894091	5.91611876378046	5.73341995029116	6.02263260843666	5.50076182085259	5.96240080188192	5.82571820519473	6.27174642496126
+"PPP1R3A"	2.9831260638646	2.88829330098211	2.85660490450305	2.88829330098211	2.8769918204488	3.10416529577358	3.06096837847387	2.88829330098211	2.80408529224839	2.85695305918447	2.84358745289624	2.89290610982259	2.95486915024383	3.04978296676832	2.8736305537475	2.9332956141442	2.85423925788337	2.88829330098211	2.8558643840536	2.87409469082764	2.85914855470778
+"PPP1R3C"	10.4993630709087	10.3596719072337	10.0870715657706	10.0320385058683	9.95517442712904	9.16144726076717	11.0989565191978	10.431490100363	10.0588375545335	9.79804732038718	9.89497094285405	9.87998590363848	10.3102984914984	10.4875926479573	10.7989742144371	10.0388166796387	9.94781634071831	9.69364603208912	10.3053599481399	9.88617594574238	9.61240645579123
+"PPP1R3D"	7.74920447939338	6.85358715319908	6.63981681369342	7.1694590573931	6.63715868300651	6.01234625472354	7.76865117787511	7.34926726256664	6.96199480811267	6.67251186063467	6.88044205992999	6.90856925202156	6.71694416838411	6.83115772025081	6.92931052198047	6.52035604675248	6.91097248729236	7.20810743553983	6.97742178115175	6.89515202919908	6.64158390033068
+"PPP1R3E"	7.65272406000738	8.32941974365716	8.2319044619707	7.8992090087052	8.05797875629723	7.63969508400063	7.31545273292179	7.77437308082756	7.69053963123982	8.169830369628	8.58304149668231	8.32752252743504	7.80030808189669	7.78285745386062	7.88909692235526	9.0149273418697	8.1799051079183	8.44293492477211	8.4029803891078	8.09170789230989	8.32149273966628
+"PPP1R3F"	7.05431537897466	7.40289888475269	7.29153414394399	7.39339180765789	7.85329049240364	7.59250275730691	7.44383424618087	7.48455707059676	7.77032601834804	7.7527534295025	7.29031473122616	7.91172551155189	7.59986428315469	6.99942006466416	7.37922505096943	7.74154904245825	7.74427592297912	7.44733062040791	7.66250503199356	8.00078137533741	8.06871967143091
+"PPP1R7"	9.25669351218522	9.0849743093542	9.08843582640134	9.00595959845615	9.70943608043576	9.00494913925955	8.86677444955668	9.25566029380662	9.35252991307355	9.90967726183378	9.12868525971239	9.65669116261322	9.04801918004327	8.87607521867927	9.06895173802431	9.3066514287342	9.29717829776761	9.41409400479156	9.22163630044498	10.0696054152838	9.67445041306638
+"PPP1R8"	9.09817078022563	9.08473341757865	9.06270902568737	8.9134984910336	9.14022588394547	8.7069719213856	8.80030342024471	8.93454838545702	8.89209553219301	8.90080400351448	9.24877191058669	8.6368193909915	8.68474441985769	8.787922523297	8.83007532782547	9.49114955797982	8.6131160394433	9.40672600137628	8.79341869835613	8.9660201835271	8.5778156742638
+"PPP1R9A"	7.68829371730648	7.89937951618224	8.7729238179828	8.37460175448484	8.62005653272119	8.69118340642418	7.44977214503156	8.21802204004692	8.75278180388142	8.52404370128911	8.15422223396914	8.64799655323831	8.21507098994241	7.97014432329216	8.91636051359216	7.91425328809448	8.37807198964121	7.86068157792868	8.18655725715937	8.35220919779241	8.12066884787267
+"PPP1R9B"	8.73035183708992	9.18759547239593	9.47608826878592	9.72260835019959	9.16249812133254	9.27482140403359	9.67141392748666	9.3358075711334	9.60434393284186	9.5402782977188	8.93281861320079	9.38578889369654	9.63810547614607	9.3765004696049	9.22884342130634	8.44369830655056	9.60649460846499	8.71047061527881	9.73197584880265	9.50003456700171	9.38410246607196
+"PPP2CA"	7.15798147138089	7.9629153058382	8.88749217529144	7.61075031784613	8.57298714665464	7.4396425914218	6.87641287870448	7.70444003845329	7.77454476947453	7.94206907533387	7.9054954432713	8.2575833744535	7.41994825796374	7.2596887710881	7.82538423945908	7.8094834469285	7.97349951024753	8.19519361640729	7.62589789933068	8.01074381464327	7.90520031569929
+"PPP2CA-DT"	4.86106488418273	5.0231028907234	4.80549855834684	4.98307078764167	5.06884612794767	5.00194506422492	5.15655002998952	4.82065268246843	4.89561715625472	5.01292842133731	4.83207411785832	4.96463950084506	5.32923610265526	5.28917203781467	4.89780767473745	5.12449356497625	4.99700203998024	4.99700203998024	4.94005609659153	5.30984770890544	5.08434163260989
+"PPP2CB"	6.04046004681891	5.69890030828108	5.42210685631753	5.96453803751659	5.33873727450163	5.64372325546358	6.54652569406958	6.08037297623268	6.02585802990787	6.07396936008142	6.21976628256982	6.00721847545492	5.83070145405493	5.65541477395077	5.98785290230619	5.5927933481302	5.75977924598067	5.87557317003552	6.10271985819724	5.91536334384264	5.77950851664727
+"PPP2R1A"	9.67212735672978	9.89244368064025	10.1461791363914	9.60651101051637	10.2137076654813	10.2156811056046	9.62536661832237	9.91396902316908	9.9072982083585	10.3677987779739	9.79069928215568	10.3368686522337	9.64461512301672	9.49314416138489	9.51357425136248	9.71450135616951	10.1580162385002	9.76759705236184	9.796825998288	10.5139476215054	10.2049937949444
+"PPP2R1B"	7.56990205025351	7.32812748008302	6.36684748168555	6.88814163449098	6.92278432109416	6.3375251600101	7.21620911911967	7.45204643358829	6.46976510778338	6.82928617707134	7.47244586493357	6.32444511019516	7.24573682923172	6.69933431999927	6.92097331555129	7.89998211629683	6.94015624798707	7.51227701515772	7.07978108011025	7.00676917953526	6.76423278318329
+"PPP2R2A"	7.65980690645579	7.82702431183964	8.23961534015837	7.77257905304186	7.9088279398689	8.55958090111673	7.20359172835309	7.7469523159406	7.74739146459846	7.10627491917582	8.12101888102104	7.60787576173849	7.55072096588242	7.47655654133723	7.78664287494193	8.32956579533591	7.6872170057103	8.40476658536011	7.52618317378238	7.34523418468927	7.60314181356076
+"PPP2R2B"	9.08218332536093	9.84836957820183	9.92649628912314	9.51124184465513	9.88054038537398	8.95781076670151	8.66365141098629	9.75097193032763	9.63327443439878	9.88477255298181	9.70633846261739	9.86893163819797	9.39089894391416	8.97913372785291	9.76509100986621	10.0119524708699	9.6934309878217	9.88884448775238	9.60962221927823	9.76264373377279	9.84463806735221
+"PPP2R2C"	8.5263834359383	8.36010744392794	8.14058208837469	8.83343327614793	8.6311126765258	7.60171600538645	8.91752558029043	8.96057134410685	8.56427792520004	9.41121815469281	8.28340347456241	9.09331161250202	8.09404712420036	8.12829367191387	8.14723279415952	8.09908857675754	8.50624381043304	8.29062283704991	8.90080169972949	9.42544798687231	9.35797137171682
+"PPP2R2D"	8.0818419238158	8.47034481456733	8.62727765382973	8.46078062938315	8.59301175429877	8.38229020374852	8.23506043497884	8.35017842110139	8.76468889917776	8.1813601624018	8.01976702918653	8.47463441128245	8.52837746465961	8.4039510769611	8.77675888757047	7.90032873518218	8.55560593001223	8.4588710688881	8.61844064934627	8.4588710688881	8.44710545793109
+"PPP2R3A"	8.11393077369179	8.00856982278297	7.39316999511362	7.47153140004334	7.9516664070606	7.67044665983084	7.42937777644291	7.66877133318361	7.20318761944139	7.45188585405489	7.97856320547742	7.48842300498852	7.15203688243555	7.62753667358422	7.036918026855	8.5496067372753	7.45097881587003	8.78579198632224	7.45559583635287	7.27876953953138	7.38955393579511
+"PPP2R3C"	6.36416607982613	6.46019335341656	6.16068566628695	6.84165226679403	5.80747417468475	6.37678074906762	6.70643104775733	6.24552151021255	6.74743382799068	5.79757127865989	6.52762305556011	5.91302554537893	6.5764419027422	6.63324659338418	7.28038798454589	6.72673006985895	6.36403584639881	6.4465678612141	6.97073288596327	6.26427617261609	6.2619248293068
+"PPP2R5A"	9.44398916746907	9.31057153993913	9.1044275798524	9.02650391118101	8.83825475074121	9.06116246733296	9.46612970956063	9.49123030270181	8.80956353270786	8.45633064029702	9.28172010565865	8.85903604557543	8.94370804488629	9.03304872440267	9.28244073662166	9.26455836836851	8.80164215109712	9.32071181654281	9.1044275798524	8.92606557697683	8.31196057873232
+"PPP2R5B"	9.01978673639146	9.0148844428236	9.34221462462362	9.17604722911112	9.25528716759395	9.69599524387178	9.34448244900847	9.0196445573001	9.26791324050593	9.22222583842467	8.92800766402734	9.21149374994994	9.39815138351185	9.6294511842933	9.26701564248228	8.87009238928284	9.29420012003335	9.19995658110524	9.11404562336401	9.39848778787991	9.30618279935621
+"PPP2R5C"	8.67731444834073	8.64272145620754	7.86455134110385	8.0684273021924	8.63912518254544	7.69882980718289	8.27726048341303	8.71000746617602	8.24782861968976	8.84808333496196	8.44719461026408	8.57505241751528	8.09136742682766	7.84635026456974	7.88740985036875	8.58031259346113	8.43485226767105	8.50619921537534	8.54957256747216	8.68493514791452	8.72226589452278
+"PPP2R5D"	7.12236190916484	6.80193953504337	6.88414034414301	7.00495570912961	7.44919786583018	6.63981681369342	6.98759829448705	6.9831475615274	6.97073978654964	7.75163819214367	7.06150560044463	7.70400794232155	6.95339624394548	6.78653703306321	6.92157257935887	7.27580405087421	7.39405704533976	7.43507627291899	7.10771628672375	7.78756616114413	7.75919798021055
+"PPP2R5E"	7.73241183786542	7.69953464857325	8.40041730018766	7.7117706770839	8.32370096110339	7.28021203511277	7.38005012508558	7.74446701291644	8.14494462320694	8.18723467767621	7.57999054424517	8.32419503808535	7.3617580582537	7.02978146346744	8.20454015734604	7.91406571608329	8.03540693884222	8.21838245884071	7.70703185579634	8.47618601106809	8.13982623355471
+"PPP3CA"	10.6445579836889	11.7716622083788	11.7841385796647	11.684878794655	12.1450505628142	10.9983307576964	10.846689858491	11.524013735117	12.1630493592663	12.0597949221406	10.9441515762213	12.110133157694	11.5053248656092	10.9446225349622	11.7836411102	11.1718043722521	12.0614925190517	11.6512253194798	11.8680436182236	11.8526016157876	12.1047255204747
+"PPP3CB"	7.04290965368311	7.00046437927599	7.02981487324759	6.83239411784858	7.68465545494788	6.80483277630991	6.59853709804454	6.88354461062624	7.03255790232391	7.51343102974586	7.36249974957853	6.93831674313898	7.32155382349049	6.76980866314078	7.80740143326922	8.17240206683758	7.31594966416235	8.22573107025405	7.2981118969032	7.25131242524266	7.75729843579589
+"PPP3CB-AS1"	5.12978335044122	5.22164208047038	4.95712538091374	5.13064283635262	4.62155134350194	5.26095290224727	5.58597749831989	5.13092140054069	5.21101133173102	5.33673220275221	5.45124121372987	4.97864516102577	5.25939020267993	5.0205962706449	5.28531211530425	5.50245472841679	5.30783968299673	5.1611850128625	5.12906069912838	4.63160762040706	5.18758458188636
+"PPP3CC"	5.87681067141202	5.61562184579372	6.06154889297473	5.87442233090906	6.12308333576401	6.14405117116598	5.78188843058758	6.2044023264556	5.76323501218538	5.80183834341817	5.86723673031116	5.98243223442958	6.1470044145284	5.97041651156784	5.99132477394999	5.33978424310007	6.12763012741165	6.11000919373043	5.76732484285725	5.96019201171786	5.65915380141432
+"PPP3R1"	5.26595912633559	6.03638794664755	8.36857933233686	6.6118437476936	8.68685539527064	5.75422977717569	5.35213037761621	6.24543064459121	6.47145345079308	6.54072871592073	5.15852279339709	7.49351025180002	5.76135032426085	4.97565918202235	6.42290361702438	6.19199151882883	6.71563745604977	8.61527464693172	6.18592355853421	7.49670563561333	7.07304185144167
+"PPP3R2"	3.01330615735095	2.95756869315742	3.25839331942195	2.95561579326708	3.2802785234759	3.29126526938295	3.04919990218415	3.06768044864602	3.35303259852398	3.17006845902467	3.22016786797353	3.17006845902467	3.14803216206934	3.10408974074279	3.42138366650616	3.25903670713312	3.08415963483523	3.08674215571876	3.12979553654506	2.98400369984491	3.21950212339436
+"PPP4C"	8.58786079314364	8.19137851525905	8.25691636424838	8.34242005302013	8.28830325481384	8.4054767216034	8.32054891436773	8.27776394986333	8.33328744495651	8.38397080986802	8.45130540458925	8.26982767626087	8.09892611269924	8.30145818838393	8.29554751035617	8.41057031080977	8.14153021526283	8.21103582797292	8.11707943452264	8.65841521080668	8.19914603717597
+"PPP4R1"	9.52665092438671	8.91264936945636	9.19691450682901	8.7068693268939	8.75754040588397	8.86467804691629	8.46493654320294	8.942501821432	8.52866039007193	8.38426070381109	8.97620732296758	8.55602690203955	8.71499118563532	8.79915008788834	8.76568130123139	9.01026755308702	8.45202123622646	9.12678579080037	8.45914165745314	8.63093939290496	8.66179262967259
+"PPP4R2"	7.87637932972498	7.72847339840921	7.99552765943949	8.34877447803122	7.83520710097758	7.82325453906769	7.76493622846033	8.22684091617375	8.47643308394323	7.87235755894977	7.80334802285578	7.89208333390034	8.34506374262467	8.0008954249738	8.88353477094652	7.63338690606834	8.20043934869186	8.73295533036908	8.50011748187928	7.70404679709734	7.78740348266806
+"PPP4R3A"	5.41881644511563	5.6401144482366	5.60935542919053	5.36212516379767	5.8046063198732	5.62918734980332	5.29592586678653	5.78273035718469	5.3962204269076	5.50416779915439	5.56458709019212	5.64200774064838	5.33549717516697	5.34975462027979	5.33358936572871	5.57537232565474	5.85929506393777	6.24596447129124	5.72711382152059	5.64419730295106	5.2987281411975
+"PPP4R3B"	8.68083775052346	8.63637346331429	7.85471971181694	8.48999143481802	8.45341674634388	7.58622979034722	8.4158526830446	8.58355199077661	8.64521109839106	8.56089171085106	8.55984588260622	8.45358978202599	8.27867087048518	7.95274872697948	8.30337380654766	8.49368280384	8.45341674634388	8.50942938164243	8.57706096519082	8.45341674634388	8.28595022864085
+"PPP4R3B-DT"	5.34469689229679	5.63812062075688	5.85684962696368	5.44850671261693	5.05268742920096	5.06491163439299	5.31949806355571	5.48713716613361	4.56597693709299	5.21870242758326	6.16050904742212	5.32453453225075	4.83466324421677	5.43841801073643	5.50535196703967	6.67251186063467	5.8669723311995	6.04696376862987	5.6899644233935	5.6660443347239	5.25010744252867
+"PPP4R3C"	2.83175419232468	2.88494531850228	2.84688449117237	2.85395120841381	2.92610762720301	3.01685545756748	3.06002084060672	2.88494531850228	2.89256100450527	2.77604525269494	2.88750983583654	2.82278975398833	2.92664521790715	2.82259829436257	2.88494531850228	2.93944607242902	2.95113830848233	2.82030323766439	2.90176233168882	2.88494531850228	2.68396602326541
+"PPP5C"	7.96182005392696	7.81285668830176	7.98131542384188	7.92613132725238	8.23895091692231	8.07197755359006	8.01209550472777	7.88409208993405	7.97669835173935	8.47433954192555	7.72059836079758	8.20326887696931	7.63802020023379	7.69319767411889	7.78663556407397	8.07182633520348	8.09180354634445	7.99841382575461	7.88257413863846	8.63030865168473	8.39679691875623
+"PPP6C"	8.69551549225515	8.56226576823145	9.00353685222476	8.35572944408503	8.76172984781839	8.128521009579	7.77315522048027	8.39888309704982	8.28844516139025	8.55137121750503	8.52093961927113	8.61947712049625	7.87003452783995	8.08245155065785	7.92207920387914	8.8806041325062	8.2770390287198	8.92035524140739	8.21495509089683	8.76902032100919	8.18774597687675
+"PPP6R2"	7.74919214713835	7.60065017202672	8.30989701904924	7.57340831037292	7.9147233557019	8.14044050794979	8.17773678807494	7.70652734128635	7.65825516579003	7.63321268195457	7.74927820463863	7.65810290348081	7.60285629153856	7.85366213436193	7.52117658329118	7.70889696589556	7.65696334181029	7.80083230960245	7.46648352906504	7.92034903973836	7.95727576948908
+"PPP6R3"	8.53095684129205	8.53474115928178	8.42111267489587	8.22946297681245	8.37327104943766	8.03592822703705	7.69514693426989	8.41779671492195	8.24908600517688	8.31538474487944	8.69842651652108	8.29255658016395	8.11278164800454	7.91406571608329	8.3436374751953	8.68451939688031	8.42672113854786	8.76059755992373	8.35969540781123	8.23282834198794	8.49798069703962
+"PPRC1"	6.96650763151674	7.05364871451719	7.18611586451469	6.72985972952615	7.05998994970315	7.06498269226496	6.97226244263192	7.17423626987829	6.79878859410116	7.21906782102275	7.05998994970315	6.99415322081466	7.08812823818854	7.07858571524623	6.91415425501247	7.06701499112765	6.79065073335481	7.54011945818614	6.72566203971192	7.38412434899204	7.22353166665547
+"PPT1"	10.6717013284099	10.7375569891276	10.4455823681978	10.5993032649971	10.726930365655	10.0328821847908	10.3614561849608	10.7526387700399	10.5955682780173	10.6356223173544	10.7394229478976	10.5645120175316	10.5170468879857	10.4838938992783	10.663457051186	10.6645177791913	10.5110955049465	10.7562610195918	10.5420278597551	10.7920234213373	10.6077322590225
+"PPTC7"	8.49288726630823	8.78868625150794	9.15430611308265	9.23411226072982	9.58219830670308	8.82908023378631	8.64640116429938	9.40552260522276	9.66941601325928	9.63593749087984	8.64206093046105	9.36334534352508	9.95413848119562	8.81147801353929	9.80260041766641	8.72271644624697	9.44904668264837	9.53805806088453	9.1951633757229	9.2869568629745	9.57073488401234
+"PPWD1"	7.55842199098066	7.87087711635387	8.05903949081563	7.33953571974577	7.67413072643511	7.01384719499272	6.91025147812081	7.55222148230764	7.19636937138285	7.36701081869504	7.8677972686447	7.2964261357508	6.83253620395042	7.03113237464544	7.13327176539721	7.97415012516681	7.18076585514955	8.30355535743489	7.38787375523136	7.28502997721718	7.12324670544376
+"PPY"	3.72521767081705	3.62256732361879	3.76168687633002	3.85410382361406	3.52445532975022	3.62516548157989	3.79445973230304	3.76641696738689	3.80686971853853	3.87058887053415	3.80686971853853	3.7668561072401	3.84482290486925	3.79340624972589	3.96779852709763	3.9200849101895	3.78414358559242	3.60232401913151	3.80686971853853	3.82713447059285	3.9847148589486
+"PPY2P"	4.23731083953872	4.0321672727039	4.10316910160122	4.40078472559739	4.13633049914996	4.30291884282523	4.47772241408054	4.10729237559815	4.35794210178353	4.22921213775511	4.26135977422443	4.10885789129667	4.43607750341061	4.52702300695249	4.38634701300533	3.98071191063913	4.25795591714297	3.9148003952918	3.99827279932002	4.2598615329833	4.29477804970641
+"PRAC1"	3.65077702546515	3.64904412829841	3.75957119248383	3.60829517601734	3.40056927382453	3.93616194094221	3.73753235739157	3.88153452678818	3.56147399271855	3.65567504142398	3.58435600782945	3.79261788402349	3.62934805535679	3.92782603887541	3.69378081646566	3.64698962005344	3.66131010897085	3.29432852480893	3.63863386216314	3.53134383605198	3.76649585251223
+"PRADC1"	7.83638113552393	7.68362937461732	7.73515167094727	7.77771660229622	7.63924118467883	7.57801060075673	8.13843100867654	7.64355024965802	7.95755230922976	7.72524575060657	7.62697043448654	7.53771314990605	8.12570794162462	7.8145717233793	8.17860692649161	7.84504271118607	7.44206171744113	7.85875221300797	7.65109325860539	8.09669198429489	7.75706102984376
+"PRAM1"	7.67770741636025	6.44698808816002	6.60487338205799	6.40382767411492	6.29430090802031	6.95482136747765	6.76859594986882	6.52961456023117	6.39541365416841	6.45823183148428	6.28866687385151	6.13123091382458	6.28996693670449	6.95054498055222	6.1551418935593	6.6774251279165	6.1769610750258	6.78472401483095	6.38620951846098	6.45718866223775	6.27063375690094
+"PRAMEF12"	5.34308731312818	5.4263886615215	5.2959536581184	5.53664702311097	5.45275388658218	5.35009482211346	5.27926326763943	5.47054579078205	5.49811557026955	5.25137579300148	5.43320759276824	5.26768746129255	5.52943192994238	5.49787912622128	5.37612029025589	5.67515965615522	5.37612029025589	5.32719547162581	5.13833630206905	5.00171163687252	5.43515315282948
+"PRCC"	7.0307197141013	6.59087876621498	7.12528841854764	6.74320034451855	6.87143409657462	7.22355999233399	6.6456123838765	6.67538697866301	6.73609007028556	7.11536405182781	7.01890807243424	6.84360640799029	6.58241448323856	6.50491520841617	6.54383252265715	6.82910933681762	6.74219132852422	7.42751376852352	6.63291107424417	7.01279733523831	6.88394134521317
+"PRCD"	6.46886950588064	7.1284471978954	6.89546907740355	6.52320381331268	6.74749203160884	7.50254900206502	6.58898412235329	6.69514004620301	6.33861781771744	6.57081912806813	7.30274684493371	6.92619596192654	6.0830893100779	6.60563856692177	6.72111816668821	8.16516975495911	6.76359082531101	8.1108599919341	6.94221242904122	6.45718866223775	6.72581477282588
+"PRCP"	10.2920593847809	9.35419401231293	9.30317899107651	9.63955353156423	9.45664167163409	9.07405933112832	10.3094333486556	9.82367982767558	10.1134760748918	9.68699080076975	9.91972300627614	9.47319018707086	9.64521245226164	9.43999196030663	10.1069830693254	9.53269088057982	9.49063720612162	9.4699328244562	9.9064871401216	9.58168894786679	9.13649780682754
+"PRDM1"	6.18182733213469	5.92703084373466	5.60837339661285	5.56680892759657	5.86756673625365	6.36526793358684	5.96787021742728	5.87606074001959	5.52786500210033	5.87606074001959	5.64323571347409	6.15707145500016	5.60837339661285	6.29079601809376	5.79651597140908	5.73647312024179	6.38312059556819	5.98140280370206	5.72254263404065	6.04722355345092	5.93482040585363
+"PRDM10"	6.75993591285112	7.14307129303669	7.67976090885783	7.2311169894873	7.4235175230006	7.15541895572959	6.49623581988242	7.4719856888846	7.37972259632873	7.16170612293728	7.13130747560549	6.967700056968	7.1379147982325	6.72987923789916	7.3347481381965	7.4117961324125	7.33635419844417	7.76446173058716	6.99321722344098	7.41828002728879	7.34475680619144
+"PRDM10-DT"	3.98544605296826	3.99135293323212	3.98544605296826	4.3810621345374	3.98544605296826	3.99031361048791	4.15208892540975	3.88444145112831	4.05924965551515	3.97057022824747	3.86760755923548	3.90594221827099	3.87830539615658	4.08261680384259	4.22526325961623	3.98544605296826	4.26482598254059	3.79680001864603	3.8690601669223	4.032989323311	3.95361608913805
+"PRDM11"	4.99169548668545	5.38312481091134	5.77291672364266	4.99169548668545	5.275800951002	5.0573523534942	4.66251629040636	4.90583120951485	4.91912212229306	4.59819663967546	4.66921994467376	4.7357965927604	5.39078872725786	5.04096152182335	5.13436552518	4.49375425942671	5.00259395559978	4.9143931718539	4.95737689268672	4.99169548668545	4.99169548668545
+"PRDM12"	7.17569026870949	6.86139241668019	6.99833727346341	7.09425177535692	6.73913385889788	7.20486985224491	7.25713256545085	6.99523061134154	6.98442032760267	6.99833727346341	7.04337936130442	6.9853665297158	7.24451846010852	7.01829795220679	6.9413444451058	6.82234127306552	7.1451875204055	6.70800752412586	6.72133132441078	6.83823435898867	7.01286314874793
+"PRDM13"	3.39637408552321	3.57220200477916	3.71994335031124	3.71544431943551	3.62065298454996	3.60904464040614	3.79166295883644	3.55871040306492	3.60904464040614	3.717402929479	3.41325354413699	3.80175191482934	3.8247585312176	3.65838136813199	3.4335109478248	3.63916673218235	3.70762650683037	3.57704964892658	3.51160226254248	3.64338673297444	3.61719956042229
+"PRDM14"	5.97221670005089	6.41406830609397	6.29820719766183	6.55703731263332	6.03609049272684	6.60560422003885	6.29820719766183	6.26638376327404	6.49364457423623	6.38204424837376	5.96743235547576	6.19259658425252	6.54907256238969	6.4009166090232	6.39920850145623	6.13241719665135	6.33612976967809	5.95463636216344	6.41067601260012	6.22619955772884	6.31695498243422
+"PRDM15"	6.36017278949439	6.69624868812558	7.14931219297633	6.32591232965147	6.55304026369701	6.33794233146175	6.36744538956497	6.64236441886897	6.72191918945547	6.55304026369701	6.42716678958973	6.40563489518208	6.48897163507019	6.55304026369701	6.42647292701404	6.74266015763193	6.33401339575911	7.10476208072622	6.25307941146661	6.76517956972534	6.5795288490587
+"PRDM16"	7.65039049080666	6.52791508648584	7.06183259913234	6.85560211806617	6.21511556115249	5.24807978267078	7.28759227676541	6.92334254270924	7.00499142107342	5.7509178654143	6.51122829473909	5.81610137810185	6.09633632340814	6.83205939608177	6.51873170999779	5.48737761385762	6.3484177062266	6.54027620917314	6.52791508648584	6.45012475984591	5.93579552037684
+"PRDM2"	8.10029102051637	9.23015684109321	9.7099393884394	8.89198279807859	9.34568281189368	9.11397321394274	8.38137323371052	9.24398188008504	9.1591751997308	9.00931256980237	8.37057967762262	9.45578145039027	8.92223218468522	8.66772368254745	8.71082348303852	8.54392396272517	9.24488490357599	8.96158911631246	8.93757703614363	9.48288218972783	9.19510888510857
+"PRDM4"	7.4585330423792	7.44165184572018	7.6429026573008	7.50446562682522	7.81821340673199	7.63578532816161	7.64289716430757	7.32054068750934	7.91660265639898	7.95063682280576	7.38468360245335	7.54559599170765	7.69192991351411	7.82374008145355	8.0753649388206	7.39897628130555	7.57445784722104	7.741974417473	7.55108151570757	7.69844535348232	7.83587228303858
+"PRDM4-AS1"	3.19471461216661	3.30261662750948	3.27704578380371	3.18598501878345	3.3404377108901	3.23125434904089	3.31004217326611	3.33022240972211	3.28787774056049	3.40145669363132	3.31004217326611	3.29869350733554	3.38412627265277	3.42190792594566	3.42073789855053	3.46040975918164	3.58716063330287	3.04203848757489	3.29834742346959	3.29060344924156	3.24999349042581
+"PRDM5"	3.63892762160102	3.64564692600258	3.73490313530552	3.22220978455726	3.63115511806119	3.492031117052	3.2853671540139	3.42031965914238	3.85124247418112	3.60683511117734	3.78033648738499	3.47723287542025	3.28881978606701	3.55278727288606	3.65636111497098	3.4828878249578	3.17361740195469	3.57507343498366	3.50703549558209	3.75772000444185	3.55278727288606
+"PRDM6"	3.7706595609917	4.26610655699968	4.19818030628423	4.05762270586581	4.30890995701359	4.16031277177539	4.12590318330011	3.91428597232196	3.97507028696921	4.45064729588659	3.94397154056738	4.04008700330854	4.23452284291451	4.29959649517767	3.95583748448402	4.12590318330011	4.09735512487099	4.20291384464216	4.12590318330011	5.38783368581658	4.01257786701781
+"PRDM6-AS1"	5.85426604208469	6.19090719485407	5.98629303404377	6.2925857577323	6.16557873111355	6.1695378482052	6.53280395687332	6.19090719485407	6.19090719485407	6.1937957580835	6.09904586933981	6.34440668974505	6.23179245333691	6.49299743650372	6.25796161345581	6.23483841412892	6.34759876917608	5.90288736457524	6.35155848990203	6.00728967004199	6.20187724997943
+"PRDM7"	4.31853101920254	4.38671130921417	4.28370476771521	4.2493817728559	4.30210869841704	4.37980873436729	4.19924006766317	4.39718105827688	4.23731494069451	4.64009276591855	4.34057268666813	4.52517097711972	4.37496965305754	4.40244668756269	4.54180406081704	4.39578076991242	4.65141252649827	4.41959941822475	4.40952596377344	4.23313733519108	4.54200146111616
+"PRDM8"	6.04368159387595	6.25658174573852	6.29327798263644	6.46964488619953	6.32264051459933	6.84172555608642	7.1100810326869	6.23792041048976	6.54220541910782	7.02876507552735	6.30613044746184	6.64942964815253	6.51696863366129	6.67048998446635	6.4265280508687	6.26014388143785	6.48183214899747	6.24726287018032	6.76130373212259	6.73841344167225	6.8749072809786
+"PRDM9"	3.51502432257073	3.8594913024985	3.96047950254934	3.82870845105069	3.55741108924632	3.77932990253675	3.69175465220644	3.69630788325296	3.83645125288005	3.77888772647065	3.78201417570115	3.73968685619283	3.79251610930792	3.94485934832014	3.69175465220644	3.76086849978748	3.72657129677648	3.61513996938445	3.42421811907722	3.59604425334365	3.85974520279006
+"PRDX1"	11.9469872418993	11.4519434211493	11.2377335871617	11.3039472823508	11.1910390356951	10.8176707316356	11.325888118555	11.5543888955447	11.2285098320078	11.367913134062	11.8112055570059	11.3617461506947	11.0540809465913	10.7078537105157	11.2079431542638	11.7649153947315	11.0609209269928	11.5444632086771	11.4839859051953	11.3779110060727	11.107999419278
+"PRDX2"	8.08916655362043	8.0742280244117	7.93835537630742	8.37029890912459	7.58067113229355	8.01002831689935	8.40775784070299	8.26439096946503	8.28732485454448	7.73285332671501	8.31808742260681	7.89345096362437	8.75406902648884	8.58873755515947	8.59221492305018	7.62225904805745	8.17527576441511	7.51369881575125	8.22409285685982	7.43129296985711	7.76800173464571
+"PRDX3"	10.4723811623869	10.5878758369648	10.143009812961	10.4750357831521	10.5220718138399	9.2322381028633	10.6092789286163	10.512066382358	10.5307211883523	10.8556223640068	10.6192445129532	10.6320752101511	10.343017915569	10.1214150840708	10.3606062543674	10.554914428272	10.4614395969926	10.5887064967496	10.7211611433392	10.4371938048515	10.4917638050801
+"PRDX4"	8.41426342640937	7.8499270786534	7.82652349637657	7.84310603082137	7.99804366063713	7.84706615515246	7.80002730064549	8.1208512510714	7.56528384295884	7.92428328959733	8.36784051581641	7.66602951959458	7.61387835300564	7.50597095395422	7.66123979314923	8.95899422595763	7.49418848853131	8.79711182113272	7.75224546684575	8.35338388207964	7.62229429774568
+"PRDX5"	10.0303573307424	9.99892515015569	10.4316232284539	10.0746191738758	10.8525104278043	9.85499551186944	9.56979715849636	10.0451829389654	10.1458697796125	10.7535267906196	10.2807267867276	10.5252264764532	9.9446745348474	9.63161148794404	10.1776859272652	10.1900555082142	10.1286953247197	10.5568540979055	10.2815259025207	10.6560041815154	10.6685080698595
+"PRDX6"	11.5170547849962	10.9373250526622	10.4457817980526	10.5872267180532	10.3439855864851	9.27611188563195	11.1602983799613	10.9195773267303	10.3915604878849	10.5704645432157	11.5643266565082	10.7522345081272	9.73017429247084	10.0052777118349	10.1874456879794	10.6380153985562	10.3934840662522	10.7035707882895	11.1380034993967	10.720473354963	10.1204565930567
+"PRDX6-AS1"	6.84560318231528	6.7285919525119	7.01427252139269	6.4270421328765	6.76560813641286	6.94546179499502	6.71561497977012	6.40779178494162	6.59148032307955	6.17095022370935	6.82215651652078	6.77997688875016	6.27565228274448	6.23512273652962	6.52908434069348	6.44936557028197	6.63553167821565	6.65664652018287	6.5501747502701	6.22254790398835	6.41234444179705
+"PREB"	8.23292125015086	7.9969679246371	8.1322124683719	7.98366771720901	8.03009911485558	8.21450263650754	7.95426790018807	8.01556761119474	7.9448968764803	8.03990258459067	8.01556761119474	7.7097939551104	7.9120705346893	8.10162763319935	8.01556761119474	8.18961949068798	7.71034065382359	8.61361374099199	7.93009358236888	8.29098972805204	8.0506396669392
+"PRELID1"	7.62195598207447	7.1713417742908	7.89061559823156	7.45243872309539	8.04010131597249	7.70028629867601	7.53745204340172	7.53395228386906	7.75099192255248	7.74389503495944	7.0868619145273	7.59712265092893	7.59712265092893	7.18196467691565	7.58476256094105	7.31384609237668	7.54363251936889	7.61029530178859	7.51604815539903	8.02124096636508	7.86074905388875
+"PRELID2"	4.08022174867621	3.96180180633361	4.19818030628423	3.86283837135293	3.86391436283796	3.62137631484411	3.88547930826649	3.6636009149951	3.60976624899937	3.71861014973033	3.74235217017352	3.83682106466071	3.50270691727638	3.50114547850704	3.58500794040002	3.69481367875989	3.5621222904462	3.76885942934387	3.39180914122136	3.72230654299468	3.43849931831826
+"PRELID3A"	6.64571531022802	6.90435115475233	7.25153502193157	7.49149540311048	7.28425836757518	7.58974207594298	7.40915519134622	7.14027916636354	7.22502800114583	6.96778354705765	7.16548415902218	6.96553839377886	7.48370085283134	7.29292564549583	7.58868926147567	7.46881828958034	7.33492852211517	7.47200803008389	7.33761119378196	7.12570371992928	7.01883614534241
+"PRELID3B"	6.04046004681891	5.84094384924394	5.24913438160826	5.82358085602487	5.63171354425291	5.0901932462571	5.53985134171038	5.56452541198781	5.79284286395588	5.4596694225528	6.14414610452126	5.27941117347017	5.72230847689452	5.81912872643414	5.73098772211088	6.10085953631043	5.4519280063632	6.45636511638748	5.75948761544924	5.02724438788711	5.48082402141506
+"PRELP"	9.35708607394131	7.83856527488205	7.61640930116806	8.41913098094191	7.72806631796635	9.50453765744244	7.99013865246413	7.98547019073604	8.0702401890536	9.07169401088757	7.8754318454575	7.67954731284858	9.07034908915431	9.82330504004238	7.97461265630962	7.33693301742795	7.85059603984727	7.31119724425925	8.18655725715937	9.79355021228488	7.87859936826948
+"PREP"	7.9937730023468	8.63590051085961	8.62277149566728	8.43241635559656	8.98225740533046	8.25034601017866	7.70709622549183	8.18014916133717	8.59532470431281	8.89383530095443	7.94742081358478	8.96445330652217	8.50770704024596	8.09684334319534	8.28916883635859	8.21470873931631	8.88690143666883	8.26433270607146	8.40921987478843	9.19448189156118	8.90821612343504
+"PREPL"	9.59515820852079	10.0663393005079	9.1016470993806	9.65507308753767	10.8691681144136	8.81438983917461	9.05192571993125	9.84176727932466	9.73354680828164	11.1390186468586	9.88410428915622	11.066120410896	9.1848207312585	8.86078980536919	9.39988462476042	10.8466690063525	10.5523588179033	10.503415778527	10.1081866617021	10.7799395228112	11.5186970382131
+"PREX1"	10.4332474888601	10.546117466579	9.74547555084674	10.5249404766931	9.85245131406746	10.8908928516656	10.4468252018546	10.3215354941162	9.77098855376503	9.95181398386714	11.0591017279057	10.0152921918564	10.2237096987732	10.5433181303722	10.0997730023067	11.3281352912553	10.0245753431875	11.3799273944279	10.075150625178	9.57966532265223	9.65761880424204
+"PREX2"	5.99893867147405	6.54223882258839	6.20354194216773	6.52213631242949	5.76751024734188	5.49315397452653	6.96235153006695	6.67694262406471	6.10870339474443	5.26133040252729	6.49300106994046	5.48242914767984	6.15790147542392	5.90515329240527	6.55684098987988	5.82406271365263	6.07890687037293	6.04150327463393	6.38223828139771	5.59372780097273	5.90513485791558
+"PRF1"	5.54730428749644	5.94702621564021	5.61365293098007	5.68549635386079	5.55890411844152	5.68437959840178	5.75854245438183	5.53611850644574	5.87107744048354	5.8163027601863	5.6265943592603	5.59042838891891	5.74349677661591	5.82897924739731	5.67251171606721	5.80686384817869	5.77850906935603	5.54510976517399	5.70491146600838	5.68437959840178	5.92870109112981
+"PRG3"	4.49497619638741	4.93314913457125	4.76727373566505	4.85451401173401	4.75080116589608	4.7841180548188	5.03536319044511	4.57512919121534	4.93470736097479	5.0090534395563	4.78225849433141	4.9041942819765	5.01927668871185	5.03536319044511	4.98742548807394	4.93840506891761	4.8785205724487	4.66137789043215	4.86960449565175	4.90270668365443	4.86960449565175
+"PRG4"	3.59623895475721	3.52114311937051	3.36999354626907	3.46122318208592	3.57764971947829	3.63625436196428	3.70034397628044	3.78138358191071	3.30902578500586	3.57517389338058	3.6129955044114	3.37728359621755	3.51032521025094	3.58054202528586	3.78373747646404	3.64156408982923	3.43564802721489	3.46779192399718	3.53818834265082	3.90920308237633	3.32066427436205
+"PRICKLE1"	7.05254828785824	7.93625534301592	8.64189859103744	8.20901892380309	8.82976781098099	8.09007359339175	6.86918281909248	7.63288812617789	8.52824503783143	8.50182201141554	7.47454830077974	8.20901892380309	8.2872656798233	7.51235695598685	8.49550534978072	7.30786273231721	8.7107947603274	8.17239073963488	8.10266226707513	8.61092727644963	8.59995236674219
+"PRICKLE2"	9.57649590419302	9.55899494714721	9.94351257848699	9.89843589220919	9.82035015230223	9.31608778898974	9.12644059632215	9.78052771698285	10.0626378606146	9.46695738245545	9.10580376604377	9.95091768358633	9.59400597380741	9.13541142049407	10.1070237676335	9.04558136174001	9.93764761318931	9.3446726869545	9.84769588803908	9.9041144707283	9.7060953942644
+"PRICKLE2-AS3"	3.67623413860106	3.76649585251223	3.80608647592391	3.93452054510527	3.75045358181663	3.6877949857129	3.82819894304245	3.73425107147365	3.67863919579758	3.67439644192193	3.54437164586369	3.60926011849358	3.74781760783821	3.79340624972589	4.32071050653928	3.58849460622507	3.8070424936617	3.40322690552099	3.70709074053876	3.55459687055465	3.74684166430093
+"PRICKLE3"	5.70491146600838	5.24233873722162	5.26051042009087	5.28562531910134	5.10465003086586	5.30456662426608	5.9780140673902	5.34174372666634	5.47689524176883	5.60502262251481	5.47689524176883	5.66940614591258	5.67274995787183	5.38596268343698	5.50609443860458	5.27795500818607	5.11925862864877	5.58480410508101	5.43476244127048	5.76505260215253	5.61653768610065
+"PRIM1"	5.67844498147204	5.68937999772147	5.87381921417949	6.03242576847793	5.84839316071111	6.16419155371863	6.38586673202084	5.79484862190047	6.10697901651968	5.52440597105631	6.42619219436466	5.80130845236512	5.90163858536151	6.31594200504779	6.17169956806809	5.88370836935801	5.80813110240353	5.96546612884858	6.31174368194838	5.97357399507279	5.66230607668349
+"PRIM2"	4.32959664510291	4.15851268906949	4.15949620915094	4.4338526546948	4.34634699370544	4.80516040234749	5.00138062523299	4.09483462270623	4.23283324976852	4.34634699370544	4.34634699370544	4.47077836993702	4.59781403852209	4.56252981350667	4.26556708605513	4.47063273128253	4.4315661298355	4.06547847574213	4.41102405356934	4.31313995296376	4.34634699370544
+"PRIMPOL"	7.56386722317871	7.45173564882814	7.06714793288067	7.0577107380378	7.30486511052134	6.59105532171863	6.49195141287381	7.01174374745486	6.78292999699695	6.78303879468429	7.44459098263119	7.03506270600902	7.00787359944954	6.68279750494892	6.72974631891374	7.6104523231178	6.98594141029012	7.62594696148025	7.13057873896606	7.06663205868241	6.61259211444661
+"PRKAA1"	6.05631876098238	5.87392215693814	5.01484250243319	5.27753130037561	5.30722868547688	4.70442022697882	5.37910240354558	5.532899057767	5.30097962000209	5.93771173745812	5.85238704106699	5.67639422518622	5.10240152402142	5.311389830975	4.64253891651606	5.78869248391634	5.65328760180973	6.13699191267582	5.21313965103839	5.54514501812371	5.95521627319004
+"PRKAA2"	6.8951532434788	7.78217136717501	8.57244322386257	7.77863345153621	8.37473475403974	7.94029046762088	6.98007653044694	7.66774632832548	8.04319761011987	7.63921045555027	7.58766720536503	8.06482853783567	7.65978183803134	7.05617311899173	7.95837970739535	7.09559497911112	7.95095911690223	7.42423363404702	7.97121383362123	7.74301475133045	7.63850022459678
+"PRKAB1"	7.54076166142728	7.12607862412928	6.45010188148272	6.57514829130356	7.17854792958793	6.9825943063653	7.19691039781282	7.06008259835402	6.53117986060161	7.23363249268099	6.92275832533099	7.27301656950942	6.45059229325836	7.03907731009363	6.26918070655486	7.23591966046897	7.02170340495817	7.20545687787414	7.06833324099059	7.31901852511542	7.0075570131961
+"PRKAB2"	8.75418073451654	8.23614354625579	8.77890549788567	8.77887946430964	8.9510384017678	8.51112321781593	8.04761067316606	8.81867779776545	8.98369151416872	9.04275004719344	8.69979796542927	9.05593660008471	8.61083285754529	8.21514082607835	9.04349976220094	8.98287774784824	8.94946728280751	9.25696193171209	8.89184391511417	8.6606067876559	8.89848174803772
+"PRKACB"	6.17326452533067	7.10691641562496	6.8701496684727	5.51564625020541	6.7415030590392	6.05625682279768	5.14439627562213	5.8704121990033	5.94922379397699	6.48782801910778	7.22651054921776	6.54663160251473	5.46875295567459	5.87090534708731	4.95642464052144	8.08318284072769	6.3014527929983	6.7072883088108	5.50753423016323	5.66710844472236	6.03314313003854
+"PRKACB-DT"	5.87371981639926	6.72755627360986	6.79530257928618	6.13094922329298	6.97273159115169	6.92076434522651	5.91270910661545	6.68514046916382	5.95933660454231	6.43904972968725	6.98056008039657	6.87811579519726	5.96347118212949	6.23331583703436	6.00914415007254	7.21418358999279	6.82025704998871	7.84432666866374	6.86754563493406	6.03173651213069	6.13709524882012
+"PRKACG"	4.6571254926692	5.04656946760056	4.85110186405279	5.18288326284655	4.76604570146454	5.09708424325633	5.21085518522658	4.98993275295464	4.99413827874267	5.09958333901449	4.82651302777498	4.8497435367457	5.09122390903668	5.28837915473977	4.96824136282563	4.86986392122983	5.11817419040747	4.62155857400197	5.19697511777692	4.86437032097593	4.98993275295464
+"PRKAG2"	7.89051911003608	7.6079623599491	7.63890337821154	7.5810381484832	8.35715995312014	7.08584263139137	7.17130262875329	7.29698343942093	7.71175917901156	8.74012153812154	7.57007077857649	8.32695468370003	7.35415554879441	6.97573842888976	7.46117607797629	7.71277652101355	8.26298324455667	7.70020988340842	7.92892925049364	8.71580444027887	8.34261834783481
+"PRKAG2-AS1"	6.58791393499304	7.89112905497423	8.32202455895039	7.73523316942233	8.39772928271202	7.1638101125011	6.86925233281219	7.49303429946883	8.00179822614378	8.43653420381294	7.3326138805602	8.09530368970189	7.81852624623565	7.07315581797483	7.7450302594906	7.56534929345492	8.19923494717588	7.8242023481158	8.11623722496098	8.36810920357202	8.45951470227634
+"PRKAG2-AS2"	4.75013251799343	4.88971694423078	4.68664665945338	4.84351689196695	4.7387711879432	5.19091568151952	5.20648719835141	4.79381865644623	4.78739918864559	4.89105621026729	4.62782711200534	4.84351689196695	4.82240652485454	5.26153119619685	5.16640780457967	4.75830500804413	4.89097427428272	4.57676738103814	4.90333351276525	4.84351689196695	4.75367123874495
+"PRKAG3"	5.43374686714047	5.6957520216842	5.65304471687971	5.7637414832805	5.49482453458161	5.57589554561678	5.71910278734201	5.67752835624831	5.66458113078655	5.57347038209342	5.69371548819889	5.69371548819889	5.85948012408784	5.54661851420663	5.66458113078655	6.04566898624723	5.66035242330463	5.55169067468605	5.72952738806828	5.58800630676617	5.73922317089128
+"PRKAR1A"	9.64555540086365	9.76211531852867	8.42789597184363	9.56842019433245	9.84473854756392	9.05220217780913	9.65824581089402	9.95762233649325	9.45494389654169	10.3329053002557	9.90089339931314	10.1687717003741	9.31684955325682	8.84012275886708	9.19928084176481	10.2063241609964	9.93528578441914	10.1296524319781	9.6837110677308	10.0848546617049	10.3661619208289
+"PRKAR1AP1"	5.21059646073645	5.33484354029017	5.32458377675446	5.34075723249039	5.31821549678022	5.79033500244591	5.49271863087414	5.24865893197811	5.54948609685423	5.55890411844152	5.32588043019978	5.34641789510471	5.5950723112706	5.64840434235902	5.4460949556711	5.42156052921479	5.25135163457541	5.26760078943818	5.43649303933799	5.30632392032776	5.64142053896945
+"PRKAR1B"	8.5148990632446	9.08352587863843	9.58343382680824	9.23576384567381	9.78923600704174	9.26358578859052	8.42750970843893	8.91438569357552	9.28684688158208	10.2014923943253	8.7565829025425	10.213440328353	9.14576685559429	8.75978876578163	9.09482573867852	8.98536283884454	9.82605184386693	8.96627394497008	9.20766844057697	10.031966398719	10.1695897404543
+"PRKAR1B-AS1"	5.36230281125475	5.25931283634398	5.41801858525258	5.54490912841882	5.38049952472433	5.54485903634318	6.07442108770168	5.39415982939384	5.47442311887968	5.41136251402836	5.19119213862441	5.41136251402836	5.84872244915484	6.01928412511195	5.4194392705691	5.14539594306816	5.39180668410039	5.07493044797634	5.49330447251763	5.3468405380963	5.53930720701149
+"PRKAR2A"	8.46141414436682	8.27973332130901	8.5488142111622	8.35946269607077	8.51918737114885	8.0738509025381	7.80439578197445	8.34305422149384	8.41818128679113	8.30102674239643	8.41212664152029	8.11842406692431	8.63837185792701	8.22724425090206	8.62555155986682	8.5080291952678	8.16518479591628	8.69027276824036	8.03687631101641	8.26964752335773	8.35971524750825
+"PRKAR2B"	9.19462849163546	10.0452885266356	10.0904356155028	9.99933756910262	10.2989625343671	9.63576313033442	8.83976653469661	9.90183397885302	10.5026764896712	10.6210838029346	9.43979463327346	10.5155761386906	10.0236968347114	9.65584507079515	10.6366948912902	9.46578615558182	10.5905874016109	10.0709570028297	10.2825890639689	10.1537627918411	10.3900379116582
+"PRKCA"	7.21754588281286	7.0785463521098	5.94029781815207	6.67806036847002	6.44738172106639	5.97341156321463	7.18564402986247	7.64512179365637	6.86064089369417	7.20914718142673	7.08616034832969	7.16036680688872	6.67637160846896	6.52478879685344	6.45954031164746	6.60759751540492	7.13303333672389	6.12295691117964	6.58657027571304	7.1389291710425	6.99871420054494
+"PRKCA-AS1"	3.46457265751492	3.43364880845895	3.74376489690596	3.80490527939803	3.48989408808169	3.70628317249327	3.71237282591892	3.74049047687441	3.82422691514932	3.49526636292341	3.39158137740905	3.60894209174862	3.8664302378918	3.78283064138557	3.92908182870162	3.36619235933511	3.73819718297565	3.41292991838408	3.66101595950093	3.34373451026022	3.59222776405588
+"PRKCB"	5.34995696743503	7.02955643671563	6.9342319905955	6.80845288675038	8.17422467274759	6.79304165735523	5.45141345909589	6.69188698582374	7.44633044756588	8.15786780790457	6.31092302380045	8.2867510198569	6.07207395559774	5.76926141694482	6.60424680594401	7.44417815933084	7.74595512810436	7.19933928726234	7.26913383709876	8.28472799450334	8.5032641846664
+"PRKCD"	7.35004610051482	6.81286826072009	7.02107652079838	6.63303238958759	7.07479019861842	6.83691037857002	6.55786141825651	6.78478039532191	6.81904067814388	6.75045071304895	6.25878093328359	6.07039707013548	6.4176821434074	6.92585857268411	6.42147167717855	6.56311256447083	6.27817122365382	6.88355333907793	6.51042557020854	7.67830273482788	7.17001904951714
+"PRKCE"	5.66679464022626	6.10578189503556	5.66028171479643	5.92716264119975	6.68137579612951	5.71257920036102	5.86833262392763	5.98881806037292	6.1063995448451	6.83593301855392	5.47831590142259	6.82712706181847	6.23900070535155	5.89800949323864	5.92228142626209	6.13339157266499	6.42965440051949	5.6454762761458	6.19776293094488	7.3030350912821	6.87723286822307
+"PRKCG"	7.19387166384407	8.04533252010568	8.9442378699269	8.16295647094767	8.74198965823827	8.06327386883201	7.67617461436173	8.00779576366413	8.0336980958033	8.38188975496882	7.762841986423	8.61269474135964	7.98155123983388	7.66343297286842	7.1844747677468	7.49117894490398	8.3434786946618	7.88897737996875	7.81278496649512	8.92274825327214	8.45635140908485
+"PRKCH"	8.68263920889863	7.14135600504017	6.85879448079577	7.03336405834542	7.15389913634904	8.35086099941393	7.83208284530652	7.42042539769567	6.84110691462876	7.36029546143238	7.22452217990849	6.67453090427133	7.51874750974612	8.13066687797134	7.32519982202098	6.9916013336659	7.38375713047241	7.21321147795158	7.32519982202098	7.74547795494125	7.26582642065627
+"PRKCI"	8.68735264148022	9.1522352642225	9.47345120144218	9.14971566342786	9.85936516959931	8.67971397699346	7.84548235701816	8.8839919146594	9.35907416536464	9.26716518376204	8.41847868001634	9.09074448210702	9.08033106634677	8.29377344615273	9.02250419114863	8.47823579373885	9.5140003942564	9.29905617271868	8.84645589262079	9.4878275277059	9.34295633715986
+"PRKCQ"	7.22331810423213	7.32244217703874	7.67527830734535	6.98039340960124	7.2060734597851	7.76780870899035	6.51897767453026	6.9013482024048	6.3184593823653	6.73643192124049	7.55943391463084	6.83650316072879	6.40272061539983	7.208080185848	6.73253309867692	8.69985543292096	6.67238561954296	8.47913663659272	6.52536005873464	6.94986532713433	6.81486132437451
+"PRKCQ-AS1"	5.97757186194108	6.31988668819068	6.3625260452922	5.93555665586355	6.03960139060611	6.59721220293524	5.4920112131665	5.50154081584121	5.41103846540721	5.70881492160149	6.86843161414173	5.84640497013172	5.63402123222777	6.02361229613667	5.7662511083396	7.75468491736199	5.7662511083396	7.47230535142241	5.86538133973457	5.77663319531017	5.84165020858682
+"PRKCSH"	9.26342265592305	9.19615952164192	9.3730262942848	8.67681820111629	9.05450832652955	9.40110259018029	9.11280325281559	8.8987064293315	8.5834810383981	8.96749438872633	9.68909348298938	9.22083993962775	8.2874108941914	8.69998429528022	8.32495810079263	9.78068365858651	8.96036450683158	9.7901256956027	8.91499105240764	9.01921797359376	8.85205608844854
+"PRKCZ"	9.62642881767814	10.3092538342128	10.9487976317963	10.2962389230751	10.6845594726914	10.7131871713788	9.85983128929413	10.1225189023635	10.554640395884	10.5319927954412	9.76445508523317	10.4591894778338	10.2880538971218	9.96701724929136	10.5191039862916	10.1011072032053	10.4932203252764	10.4320013698396	10.35693024485	10.6273251484061	10.5145422716233
+"PRKCZ-AS1"	6.33550166843766	6.06726289057161	5.7662511083396	6.04741541325712	5.99140292255574	6.06046377379391	7.01832495420775	5.87226010245623	5.8704121990033	5.76125936971348	5.99140292255574	6.01542630633038	6.06763885823076	6.55659310231644	5.94296693640483	6.37109722891348	5.80404640820114	6.09492912672419	5.99140292255574	6.02956571443856	5.81820652935004
+"PRKD1"	7.70469927348072	7.17093601184003	7.27351963928135	7.1510063283891	6.94248804090516	6.77523023156295	7.10913492172688	7.3824610090987	6.98071063890777	6.7978679545347	7.39613876889617	6.77145343151689	7.15055839332081	7.14204793514497	7.43070281395355	6.92388081700899	6.86488339872529	7.33899007269961	6.9790305397599	6.84996795810992	6.38646327165705
+"PRKD2"	8.72021357082868	7.48257529167899	6.94907984467794	7.51888378383993	7.28508613532578	8.60585328796996	7.69790925281468	7.86012823793939	7.24882910068154	6.94562042799551	7.2858360322348	6.97265716956071	7.43618300385119	7.67186870806144	7.50285655906989	7.41311091809858	7.05731662242375	7.58661555751432	7.05458798495362	7.40657369838147	7.48152720470633
+"PRKD3"	7.64925243084632	6.7498716276438	6.48150365831541	6.72752142880218	6.50184587326415	6.15049213059582	6.84701741107547	7.57452430805454	6.6508221812829	6.52044194650635	7.39528418422344	6.36518168044999	6.66418590297315	6.92404986428876	7.1291069274528	6.76210494458433	6.38286253663946	7.24524250820564	6.87815512722265	6.5428667076225	6.42129188641266
+"PRKDC"	8.23662759279202	8.11800747994977	7.87411672192551	7.98011095545132	8.33147194157195	7.81763050712626	8.03120181610281	8.0374863474465	8.24470151584394	8.4134523299024	8.29487853626344	8.30539674266646	7.49974534704847	7.5088606141925	7.25661470887791	8.47418242860858	8.19788657320203	8.7415829285986	7.82567576446156	8.73730826511171	8.33729168785321
+"PRKG1"	8.48991280849298	8.29154866329052	8.23194118145985	8.06594563203034	7.78673526591414	7.31334529852039	7.79926431760514	8.59514706813399	7.63304552110467	7.44369708281439	8.25816798138214	7.38393868413395	7.48669960679052	7.84380416524639	8.13454693930729	7.94171235073384	7.54726744947668	7.74500482248166	8.09931736036937	7.86129734326092	7.45377769782996
+"PRKG1-AS1"	4.02394414320712	3.98274979886192	4.03779439120244	4.08760134636187	4.14105773307111	4.31109365031702	4.24494177408523	4.04422914302791	4.02669364394708	4.19777478105631	3.76602670432115	3.91747881625649	4.12563907515211	4.14814085406508	4.06609490080498	3.99603259259999	4.11409211132217	4.15378512691279	4.06124821310424	4.36015182004315	4.18194394972282
+"PRKG2"	5.48443078817688	5.73430741307043	5.55890411844152	5.84085888761589	5.71896724171745	5.61185133682801	5.90619838419929	5.66093058165882	5.93390001520727	5.77017081585211	5.51126182494835	5.66128153398499	6.0760373430615	5.95868264141096	5.82180698882973	5.50944803781908	5.73892821987533	5.57680975830398	5.70491146600838	6.04116341353376	5.9231198839394
+"PRKN"	5.36082033345385	5.73457504203199	5.90968708052125	5.55207675545326	6.27847519158352	5.42414661960993	5.67728014197823	5.66744655486594	6.04566898624723	6.98023593335307	5.84112810331038	6.37848226729449	5.46928204843238	5.66220844141379	5.76872930467615	5.94323110167485	6.0161138508239	5.89988590953987	5.9180747627173	6.59361593165903	6.3776375063157
+"PRKRA"	6.20629688840863	6.62167587178168	7.06632862805125	6.89325143641667	6.91557919776947	7.53097052425738	6.77197779066291	7.46182330446531	6.36758913893761	5.43622840149722	6.62982732411915	7.06144145519386	6.66410398490128	6.57875863929238	6.9607703867611	6.51316638519897	6.92954089361516	6.75359620668758	6.98569406037059	6.18577338431508	6.00622540976885
+"PRKRIP1"	7.95308191748088	7.90343509510299	8.16991970586294	7.49949045585778	7.94859201084909	8.14952953297529	7.47285713959626	7.7777885016141	7.71566212978876	7.80449307664221	8.04009216138108	7.70752613074671	7.73022897272902	7.9621624820824	7.54105177796205	7.96789782966917	7.63664769273901	8.11629571098582	7.57672755919917	7.6782569591124	7.7300308492821
+"PRKX"	8.34857528100298	6.61634712195241	6.51841398999339	8.03711913137018	6.52919621319246	7.29423932486654	7.83233559239757	7.72569196903203	7.09917087309545	6.60126637757314	6.76936563416878	6.85890646225049	7.23835379366398	7.79697954268028	7.24544234563268	6.91984348920932	7.13370033959034	7.09917087309545	7.7414057078973	6.77841563376806	6.22065230074589
+"PRKY"	4.71394071695313	4.86060773582348	5.68627303181774	5.18572128860119	5.11479698586706	5.09122390903668	5.42517449566108	4.9557081334327	4.73780036800828	4.76434023847517	4.64310464987862	5.28543230866765	5.01939555307368	5.12906069912838	5.7478831321712	5.14042130637881	5.26766210204047	5.18592712059966	5.41446892127859	5.30089589631128	5.34304973749025
+"PRL"	4.56227899856842	4.26540648215896	4.41376487121243	4.56769503701639	4.34634699370544	4.57837529734777	4.44467864761362	4.1694340011642	4.46684607373833	4.34634699370544	4.00294424462906	4.34634699370544	4.30665107513223	4.34634699370544	4.13844877882157	4.29518053550201	4.4752576076541	3.92028885208331	4.10717617311552	4.15050273917565	4.44724334210686
+"PRLH"	5.85628029093877	6.15963792860975	6.04303545827459	6.30018488768688	6.03632973176751	6.69790304268163	7.15660847178485	6.1806034756292	6.55949387801241	6.27461361136133	5.72560938723637	6.31324645993717	6.44679122272392	6.76107580221679	6.22201108065331	6.13415832007369	6.26839349434233	5.8046063198732	6.21986693984689	6.21986693984689	6.11839186516005
+"PRLHR"	3.90288637557349	3.97295533803631	3.89917976161717	4.19375925635246	3.91709493483322	4.21746873128791	3.95819313328268	4.1276021719126	4.07522074113954	4.14689482610596	3.9526432462815	4.26432801614457	4.28430773646919	4.3114808376469	4.05430933098187	3.94855121907831	4.02508719273435	3.96779852709763	3.96178055462587	4.09464298469724	4.27864640156236
+"PRLR"	3.21496963690262	3.51730866403931	3.62296065124547	3.61389319457557	3.66392910087826	4.04068686468483	3.66224971905456	3.38815919666752	3.23417774439737	3.46198228435385	3.11316279125479	3.41263681735394	3.46198228435385	3.5314850475526	3.51729480530632	3.46198228435385	3.44808648782878	3.46198228435385	3.37157248605814	3.62090067212712	3.22569488504146
+"PRM1"	5.52410949920589	5.65677610088232	5.8340845609219	5.9962168299782	5.6309070897709	5.86454874366612	5.89192388157587	5.58321623141554	6.0291236049463	5.91161399674439	5.7653264683107	5.98132940631114	6.02442410302869	6.02155646666468	5.92285824848868	5.71815989897129	5.93499120170778	5.69465300696482	5.87380636372962	5.83736641181068	5.8340845609219
+"PRM2"	5.55644773353576	5.57606024622708	5.77953264752527	5.84326613934661	5.50422083287048	5.7329259144945	5.92046839595208	5.60266206640385	5.82762912605748	5.72695254614073	5.82463949262565	5.84076984469116	5.80932940929181	5.70981222173536	5.70657107612236	5.58044775092227	5.79267006155385	5.70981222173536	5.79151173791941	5.47542763050103	5.70981222173536
+"PRMT1"	9.36104886999462	9.29426169288406	9.44106799138726	8.9828067055226	9.44994731156001	9.4428078835293	9.00479731622695	9.23963482242156	9.14312243873002	9.6570072924403	9.40567115981427	9.50624834782519	9.20120798770805	9.23062412754349	8.96923112065582	9.63294608078153	9.09289911904549	9.72667778855618	9.21334071398678	9.92212483041128	9.4133030982323
+"PRMT2"	8.35008045974434	8.40987456154171	8.64606300782916	8.6397395139191	8.27739280359438	8.96002919556079	8.65835715027141	8.69534000888841	8.1240966014187	7.85624126350121	8.61434456995778	7.97087750639955	8.66000118091447	8.48531506279427	9.09759711458286	8.30075206164128	8.46342107966327	8.72802573974029	8.46342107966327	8.20442776967305	8.22219193087749
+"PRMT3"	6.68024053661677	6.91848103511589	6.81065443087307	6.31896212153779	6.79692318239483	6.26011167526518	6.55576554936369	6.64668965309118	6.28452708262382	6.51278550931447	7.12755200004088	6.41514183788059	6.12059484398192	6.1745454504354	6.45796080537733	7.03031962830715	6.24255290896788	7.3796366360788	6.30421240756843	6.16746178011001	6.24559192829439
+"PRMT5"	8.60117446166467	8.32280861357061	8.10009879709692	8.20642663446242	8.59319790077212	7.8793835123043	8.05969942675727	8.48871695935665	8.33065561694591	8.57392835153459	8.24997517357629	8.62301008282327	7.88830612114282	7.86861510418827	8.2303980085986	8.53295102739009	8.29990980548808	8.50702135374571	8.14470580257829	8.85666687575762	8.64657566799036
+"PRMT5-AS1"	4.2408138582583	4.32001851334978	4.35470538761725	4.60930020288599	4.45196957314081	4.38195702000894	4.07190452579754	4.27950787052574	4.45182226545034	4.44857733690117	4.13316428240311	4.38370239847705	4.72462937113488	4.34921545494278	4.49264664352079	4.53372092660638	4.40145798073801	4.16806965690263	4.44317112461604	4.38195702000894	4.38195702000894
+"PRMT6"	5.733423176314	6.11336594934776	6.04670629380694	5.56915863891346	6.55607037813575	4.75379772871282	5.01235792827985	5.35508652046929	5.37647403210856	6.04023469016926	6.60847731322271	5.15314707645132	5.38296175095001	5.21726932132422	5.45972559389863	6.98542504593001	5.59441290134626	6.8144952681638	5.97999526153536	6.40725856830042	5.55534642795532
+"PRMT7"	6.60396963579512	6.63064474582934	7.5930487655962	6.69411447046529	7.05286315015752	6.90953224789176	6.64163534401963	6.64049727436235	6.68298423624302	6.66722007977479	6.64942964815253	6.69411447046529	6.50364756205505	6.55921091174362	6.1504680687969	6.8928778337483	6.66169562882496	6.90740268516655	6.70043191114921	7.04546914535632	6.70052456767945
+"PRMT8"	5.37798076423916	6.47881179544256	7.04872019060323	6.21485588387022	7.77837723983	5.87426286260898	4.98790208892373	6.03979138191777	6.36684748168555	7.07656890713876	5.78999102872611	7.23024246446092	6.29707300205685	5.34303208350226	5.7784161995882	6.25782687787555	6.71168023881195	6.6034387526144	5.95523489315996	7.66306921076866	7.17232544838959
+"PRMT9"	7.23477443876538	7.14151944709324	7.13147039374151	6.76040457086309	7.652750921749	6.88446328538064	6.57211625616677	7.05948743006774	6.81341246605129	7.06666761084124	6.98143324359892	7.32815954893883	6.74588206442361	6.68658620267005	6.77717037569877	7.0494017469296	7.06666761084124	7.39064479976795	6.96382070370792	7.26430733944132	7.31128095098191
+"PRND"	4.44747146253055	4.29706241033269	4.05473763002037	4.50571649243023	4.10668282432802	4.52231510646823	4.50459551291511	4.44764611594528	4.29773605776959	4.1784665474986	4.10198301808901	4.02233958921286	4.32974203393749	4.70465035245547	4.62946327308165	4.10410430960711	4.22625412348946	4.23759830285169	4.19474775906307	3.98262229296881	4.61738986277418
+"PRNP"	10.1370299826917	10.4927343215435	9.44721620414144	10.0339557487889	10.7663090201767	9.22951842713699	9.48101301309195	10.2682747440093	10.0347834175657	10.9700285311297	10.7254772403457	10.8506820138538	9.47135805216042	8.96344424331221	9.29997473093219	10.975565536846	10.3970081456477	10.7177633812333	10.3591287471198	10.8827102707923	10.9589116962104
+"PRNT"	3.68265723361119	4.03800002759226	4.11307390854008	4.00294424462906	3.92430908280946	3.99865314384896	4.5083051157935	3.95826315267723	4.02284696437357	4.10400405347423	3.96361622804655	4.14317076774427	3.98692753709351	3.99741681077553	4.00294424462906	4.00294424462906	4.04607259124915	3.88509171534632	4.3604684570852	3.85846131133103	4.00482194442769
+"PROC"	6.21828433770318	6.38319892522278	6.63371473315493	6.63895190857169	6.36351397131103	7.15653345094094	7.19702379616593	6.39032775707828	6.50985961012145	6.56277457414529	6.44586718678821	6.71116571924499	6.71914755893439	6.72915895131142	6.63878889608368	6.06425536978966	6.56106032879066	6.17945332344646	6.68254889458846	6.51764858354744	6.56106032879066
+"PROCA1"	7.08980360489099	6.85519903259731	6.89546907740355	6.80695048620565	6.8091221106846	7.3966483854088	7.56232899831658	6.88185570913107	6.9848730794042	7.09458216397847	6.67654712921	6.78080928017126	7.03723809680293	7.59179068951837	6.91471243054308	6.55563408379819	6.86539346691641	6.65563227065214	7.14842029607235	7.01275415494239	6.78408803618536
+"PROCR"	4.16627319525638	3.72908618397003	3.88509171534632	3.71442257546242	3.77027478553568	4.29320760136775	4.07009597017608	3.94866394974075	3.70453413786309	3.84746626312461	3.86824404649265	3.5614192881395	3.84746626312461	3.98049818775348	3.7722733418063	3.69834232215837	3.80285475695669	3.7540547449858	4.17285804746013	3.83671580658868	3.89750769692117
+"PRODH2"	6.69788000210891	6.69090509563491	6.78726167298931	6.9600186504458	6.54703693431604	6.93645775368189	7.40767111131515	6.81545585644326	7.2605227091512	7.17248189264642	7.17977869326166	7.20635746322837	7.1677947956114	6.97962178065968	7.02712493223652	6.69721810257157	7.0986332773885	6.85575325686726	7.27592466987248	6.64293433894087	7.27938464461469
+"PROK1"	5.11393817488227	5.41136251402836	5.183087397636	5.63816628650143	5.27417527648977	5.56278382178149	5.65381100341648	5.52612706041055	5.5416937103325	5.35324948069571	5.49041866495914	5.37413153637007	5.48854631220091	5.57887038804873	5.38636988148058	5.44686670913594	5.53607207488778	5.20149856547108	5.42677254180883	5.37507625970163	5.38820598666935
+"PROK2"	5.07853708364117	3.80179911622609	3.87868027235284	4.0340576103623	3.86557865950089	4.04078454819965	4.19327587691908	4.01064032428934	3.87428988683502	4.00100996691093	4.08697257438614	3.86030403239464	4.5497692550551	3.90882538535162	3.99465288558163	4.35920871000204	3.73054206391893	4.35899430279157	3.93668319481726	4.86273955202387	3.98762508073682
+"PROKR2"	4.12755871126652	4.40814552795209	4.38869226398138	4.25717025763258	4.68780775552277	4.21363014864544	4.56544891916233	4.5941392806351	4.16089863856463	4.72125588786731	4.28743278508181	4.43015235521124	4.21745654532795	4.36530261977363	4.30134217103587	4.53946127981507	4.67577760072109	4.47688964555119	4.40814552795209	4.64698502248311	4.39893437511516
+"PROM1"	6.83378594298455	6.14877443402317	6.45953719530853	4.81763863359402	5.80195773697977	5.89487197004838	5.93900793816728	5.91253976864844	5.4207755875269	4.88114524645047	7.01553315915615	4.62045299361747	5.37727254912299	6.41297322894785	5.49554606571855	6.24945645970013	5.80195773697977	6.52750730698737	4.91465841449455	5.50305412192659	4.51920914608379
+"PRORP"	5.87533041662577	5.91557225903235	5.66977087459285	5.90193931712807	5.73971809950586	5.62057403834813	6.24065594122686	5.83764593435337	5.89768844820038	5.86261141008139	5.86691850839451	5.83969473880193	6.02546522792254	5.74839536346309	6.07854110773496	5.64092013626487	5.72600142866388	5.86691850839451	6.20377907639453	5.87179453674216	6.04151652963628
+"PRORSD1P"	4.26982153064067	3.97019206634787	4.24678624885814	3.80178679885111	3.97019206634787	3.84232318792524	3.65838513983644	3.97019206634787	3.68619350329716	4.32646362852907	3.91107668909391	4.66798554235826	3.47870231900433	3.72583486657326	3.54894220650897	3.97019206634787	4.16107135415819	4.17900157016169	3.8775467634442	4.24146336638207	3.94701494118246
+"PRORY"	7.60240051302245	7.81386219045697	7.74126308453844	7.67876229528267	7.53750165071912	8.12783565128771	8.36876080878147	7.72356152563779	7.82278078130131	7.63678045495999	7.62697043448654	7.72694299181739	7.83583562195146	8.2331924526441	7.86286361248303	7.65976231667459	7.73510623715588	7.11983698391114	7.9145084709425	7.78323230318951	7.59849728254837
+"PROS1"	7.07430121538947	6.34054741659727	6.28163386074888	6.03117012497928	6.12977925318873	5.98109450068703	5.82420571421424	6.99940996028655	5.9383106588242	6.5272997907396	6.34113684018141	6.303897164781	5.87974272841236	5.9741683438842	5.99560632455438	5.93487402695142	6.48339766448754	6.02263260843666	6.36210874646173	7.39023600727527	6.3847899961036
+"PROSER1"	7.31368810836586	7.24300548667257	7.37760740641705	7.04578069013648	7.41331893892817	6.90598494439695	6.86243772797582	7.1966486828628	7.19864344544219	7.00025705333599	7.5658395035787	6.90925218805527	6.92130891441364	6.93573017295556	7.1116256029633	7.80770096926312	7.18593778680528	7.97880762054255	7.03135305391919	7.14641881677567	7.23811330659687
+"PROSER2"	4.16085017337397	3.56471567565304	3.87212729706807	3.74287076881821	3.70581800571967	3.85444502453802	3.59442907348083	3.73600213106622	3.7604715747378	3.67084279899273	3.38165928539105	3.34245721356281	3.69816492073234	3.8212371413454	3.77216330589925	3.70581800571967	3.59400791420586	3.62304068579488	3.67009475098862	3.995432941903	3.74894071352735
+"PROSER2-AS1"	4.31296029393461	4.29559838157988	4.13096028609161	4.45662099139807	4.46687461233673	4.59095691474755	4.25688427455149	3.92586841758795	4.21678201097592	4.07587633854092	4.12018295191666	4.26731843460554	4.36747573642523	4.40012959303141	4.10793241549207	4.4350521641663	4.2679134948937	4.15407606888405	4.20978798115789	4.4067972507156	4.40012959303141
+"PROSER3"	5.89823397989782	6.18714095004152	6.11363547519235	5.93982592845116	6.01205468539055	5.89823397989782	5.80930962919834	5.84516885669348	5.76609432022652	5.90419297030956	5.89454043464258	6.02367708444554	5.89823397989782	6.29225007399084	5.51378521001879	5.84676974902843	5.89815432186739	5.91632516057904	5.943949985317	5.7662511083396	5.98669560924238
+"PROX1"	7.6046433767544	7.83581411119044	7.79104764343471	7.89178076883087	7.94138673475113	7.60011035417473	7.52505991386097	7.51827209601425	7.72724796730545	7.23428129576228	8.67410115252599	7.59747741534073	7.69737483949224	7.38931289367983	7.57640032586578	9.41478052675236	7.40356279047515	9.0239240581938	7.34527700260247	7.54260833049503	7.80077163908926
+"PROX1-AS1"	3.76332936223761	3.63842589221095	3.88509171534632	3.42141078021189	3.55016465083796	4.00066718505528	3.68260506311441	3.63734615191803	3.58623924015334	3.68941928150278	3.92270773212193	3.63734615191803	3.5828974875437	3.63734615191803	3.63734615191803	3.59982840662455	3.77781673485942	3.73999495193903	3.2940003126223	3.42456357404115	3.54085128416049
+"PROX2"	3.16374087717506	3.39982675523156	3.36094524587838	3.19152449131283	3.32221367451773	3.27882693516406	3.79886192178863	3.30805227292489	3.30042176578684	3.2832434012821	3.265543813085	3.11436823678187	3.26815273003339	3.53497827033405	3.31251072020325	3.30042176578684	3.55188936781851	3.19131012172572	3.2547017463936	3.16374087717506	3.33080144520914
+"PROZ"	6.00137379959701	6.05921329778032	6.25781618027976	6.35780038788628	5.89522297694851	6.19772688697457	6.40084343053601	6.25975585486541	6.3190928114696	6.44491001378741	6.12738609426624	6.37933731894553	6.5516733479515	6.49473571366113	6.30184469378043	6.35430717119677	6.24614173081492	5.77888068210892	6.15280353122745	6.06160926444266	6.30972581422938
+"PRPF18"	6.64455741690974	6.77525433150639	6.97070674784881	6.38895569415626	7.23520000530651	5.98017599313806	6.3420226545555	6.58515687454921	6.67150280435673	6.99576900503585	6.64942964815253	6.59716826366417	6.21333306796817	6.0088375330385	6.68107197067399	7.04720442441229	6.43474174400314	7.23686846269007	6.67874583604249	7.0499881917955	6.71526620084107
+"PRPF19"	9.313436815821	9.58206386387978	9.98172427130697	9.54704401597658	9.71349845464739	9.4789538068275	9.28716919573444	9.55803656790315	9.7293347170028	10.1696941019345	9.58709942300853	10.0052240053196	9.46906400035158	9.27149038486821	9.33403249147608	9.5799559556654	9.80465916753988	9.14933725915916	9.34444552796005	10.2453599780606	9.91603074111789
+"PRPF3"	8.18833327116048	7.34038834372843	8.06439519437136	7.55516994949427	7.40855020268832	7.6048720961033	7.70104529316063	7.8016368907685	7.41698155040436	7.31893207836719	7.9500707707217	7.65544816050445	7.31337044443014	7.52771099244633	7.57169727529605	8.00800674452085	7.48924565387781	8.09304108320019	7.70695981370712	7.4534396447757	7.35856527215731
+"PRPF38A"	7.0050616939408	6.45249808948857	7.23772393844339	6.76330895047072	6.73833579171416	6.65481166002461	7.23729439615997	7.11033099677312	6.73833579171416	5.83133240628997	7.0038208925016	6.04436072301482	6.6557145753547	6.6920292058925	7.02355665433453	6.62941768626303	6.46181110925278	6.99148861720607	6.74193809522128	6.46455901660107	6.10172455145438
+"PRPF38B"	5.9299403475921	5.97457832623298	6.30168291786861	5.75844152993346	6.06781896253954	5.76147856418943	5.51043673947753	5.70284985323475	5.64655146639931	5.31060376935284	6.46398202274668	5.48332634744671	5.91682663887781	5.90584047332222	5.77127192872887	5.45661190609919	5.36266301723856	6.64767556372156	5.6038505544098	5.24036653271907	5.68952910668602
+"PRPF39"	7.0839114513877	7.24552892076662	7.18376690049228	7.75408253787802	7.07453042558452	6.65307866992919	6.47319910293836	7.15649702723392	7.206725284691	6.75531079098963	7.17807361292493	7.11325401408656	7.47846021092357	6.95564620054718	7.70226019355344	7.50373738531552	7.48782238478435	7.82638015289733	7.17807361292493	6.81705882085454	7.06675801271254
+"PRPF39-DT"	6.36301764210673	6.36227471639334	6.5545628477986	6.49118793684738	6.35383820902222	7.22075495268753	7.05707315259698	6.21553798656343	6.72039981296543	6.5271840784183	6.25778330816428	6.49236451155544	6.66939969293848	6.83341981172982	6.64594449650135	6.07397240739682	6.50417530109745	6.13971579278017	6.82138556896531	6.56798429486993	6.48276293672999
+"PRPF4"	7.72309484779801	7.46591883619384	7.37367250232891	7.4736763136694	7.76308042571475	7.02406065620194	7.46039133298092	7.62799548921872	7.46422118246352	7.71166917222136	7.69136664716694	7.73107392666833	7.00962380981846	7.50175366087427	7.3651261113759	7.66276123571265	7.49041141490586	7.66069638067824	7.34289724930106	7.82689806044875	7.7469643889292
+"PRPF40A"	9.70921381925022	9.01659239559221	9.48280563197323	8.94071608238792	9.1295515735714	9.57090153766277	9.41655443467988	9.29625319995368	9.20761870067041	8.82702180919527	9.35233253415068	8.68584165687819	9.25672807327549	9.35025293715914	9.64695537806899	9.11127585125619	8.966980243615	9.64608997716649	9.34917709816328	8.67858921390804	8.65787039140681
+"PRPF40B"	7.47465595223423	7.75116324448361	7.77516827523642	7.33144890882265	7.66104387764287	7.65406052926898	7.08440546762943	7.34118570518316	7.01714163905033	7.53175476434761	7.68687680758034	7.49971863621081	7.15496941322984	7.47465595223423	6.94095578187687	7.49414883094143	7.34976167659268	7.92438499630037	7.25460067089264	7.75383827033373	7.46440219769472
+"PRPF4B"	8.24577669109623	7.91727593902156	6.62620973592119	7.47372465404476	7.98996729467774	6.6765711565695	7.17412348328217	7.97691947113063	7.25416858930139	8.09790946709929	8.19132668236936	7.94303270162284	7.28193154751261	7.07018756901395	6.85490887224469	8.29764594536576	7.67617399533745	8.18623670286919	7.5767555011942	7.78046272935314	8.20526635371784
+"PRPF6"	7.88670227012881	7.3947828217266	6.87103613339495	7.10498667477793	7.69689246568807	6.88786028490791	7.20137856750261	7.31034377569606	6.98975232515333	7.80051588167395	7.89597476001598	7.68731801222711	6.57354760789104	7.02791025123354	6.68173742713118	7.64424375706763	7.00000230655638	7.57495511559805	7.27565581466183	7.92412102602975	7.46402497274868
+"PRPH"	6.97248642131387	7.27521046338501	6.97516746539439	7.13827825355968	7.18397175315324	7.1121590086634	7.46874320233076	7.03570150695274	7.25596136109686	7.09166288630843	6.9015843767822	6.96200273904554	7.13723179999395	7.29637684087554	6.79085746598622	6.89297388325411	7.09166288630843	6.76283662345352	7.07825933028123	6.71470677845569	7.18102936765557
+"PRPH2"	5.47890644504559	6.85978443751451	7.28779166458991	6.21763051428372	6.43944360361689	6.26174580345545	6.15644899412751	5.59237346690435	6.15414052523953	6.80306626429268	5.35623874038358	6.28515157872979	6.07819869769747	5.8668976310647	5.87392215693814	5.78407980621515	6.57428070025303	6.77643519189656	6.62164473138744	7.83150727524099	7.24972896443422
+"PRPS1"	7.73815249694116	7.88604583643606	6.10271985819724	7.23273154876087	7.00055196982991	6.82818424692695	7.17298877244559	7.82143338664233	7.06717999913554	8.148384220146	7.87327901177292	8.10700134864797	6.8784453386526	6.80620647061034	6.90237709266814	8.25539472221498	7.46014336793944	7.20360095769549	7.49176155749877	8.35389166751923	7.95759391080007
+"PRPS1L1"	3.99763201083824	4.09264636452054	3.96836535137359	4.09614767613155	3.95644324107303	4.10612592883058	3.86834686509364	4.02607051525882	4.16225686159931	4.12299220466318	4.09263717290434	4.22435172333805	4.07644411280446	4.15431852846134	4.04325320087919	4.09625371594135	4.0524128249786	3.90638090294097	3.89083275602401	4.24323567067653	4.09325129529244
+"PRPS2"	5.52468403808482	6.79582095972986	7.14919044826147	6.86273782213645	7.44417815933084	6.36545780776012	5.3725255391096	6.5203645850653	7.24960443452589	7.09660186254005	6.44938378900036	7.18800106330457	7.03864965033615	6.30009595439194	6.93811125598975	7.16315019955137	7.13112701182149	7.13248243104128	7.00108226381085	7.47999936534843	6.87837755487471
+"PRPSAP1"	7.54768487457899	7.26658638696134	7.25720550547199	7.51311649871204	6.95980226267479	6.93061797679691	6.80543749319704	7.2961231303077	7.4482715159567	7.04095145902251	7.46990763471922	7.4749256075835	7.0233342617804	7.05010238275196	6.98204769570568	7.66336630639284	7.4155716136829	7.74240997303346	7.53883686305624	6.7492331620295	7.24629039581286
+"PRPSAP2"	8.4697845618739	8.41723420494163	8.52501671489839	8.32367798538107	8.35096020768685	7.91632341787881	8.08665833737818	8.29782877203308	8.0684273021924	8.47608157218275	8.76391021745003	8.34098882324437	8.23091686416746	8.03112960446008	7.93182615043424	9.09183859058681	8.33355544041253	8.98978352453245	8.41259922772274	8.26984741228317	8.36382745308614
+"PRR11"	6.19043466981975	5.56035088690433	6.07990873377223	4.78835573840182	5.4589441306221	4.9321955872555	5.1573333834942	5.07739852664389	5.14531570738611	4.93620551185664	6.34335017104122	4.96718531550821	4.61047094068008	5.02777155371309	4.45855131756868	6.38345801743223	5.18660523232091	5.73482000984007	4.94199283620873	4.89118562389828	4.83216695612821
+"PRR12"	8.05303237092225	8.2639929145092	8.63270316031524	8.63500415313206	8.44630996525339	9.01646748372772	8.73797605157856	8.11093119505744	7.94014850034109	8.25293540973445	8.35022958879456	8.27998325267366	8.58324459433947	8.44868906753144	7.86363585152224	7.73180381745827	8.27373146446932	8.25019649927565	8.06756625658406	8.00681411692074	8.10525908765418
+"PRR14"	9.13349124835872	8.79551842343739	8.99476641857919	8.77527766886382	8.61910700924886	9.09632953067096	9.11643785871244	8.91423927481933	8.75861974112355	8.41970922149828	8.72452471038079	8.4092148205164	8.73475241093483	9.01565966064707	8.74239616361292	8.58606640657252	8.47609329370315	8.81032303173511	8.85325436348395	8.61285482747472	8.487463485705
+"PRR14L"	5.62844469880174	5.73793295687427	5.77106810680883	5.99798054901603	5.33004635924464	5.67607012557274	5.8033635996167	5.76050240308989	6.07854110773496	5.70131769379971	5.55320394773988	5.58172342839112	5.87551109061704	5.96511399770762	5.98195862516118	5.73971809950586	5.59374397576691	5.72560938723637	5.78719492256504	5.78876642665743	5.64962670597634
+"PRR15"	5.07674617566452	5.65139370129692	5.54220807953898	5.45194612779413	5.43623458361296	5.82625895189021	5.53895922735874	5.36895384970174	5.33253257422957	5.52786708680843	4.96917787824295	5.45488131277188	5.44531195150254	5.80406254857653	5.34023915792163	5.42153184953886	5.41641123201751	5.03004469513227	5.56736501215724	5.50854113722318	5.32123236392432
+"PRR15-DT"	4.41632042719602	4.57819386849712	4.40162078933529	4.79270838314984	4.57086116650974	5.10493381372907	4.36559327215547	4.49845609859528	4.58096649065992	4.537699768961	4.45588810386535	4.59961889896808	4.56715889184139	4.67577747818478	4.537699768961	4.65916755868801	4.537699768961	4.52035508258954	4.61284354163675	4.3231873500163	4.65244259480964
+"PRR15L"	5.39814843015338	5.63402410380043	5.34452984106296	5.76533817686091	5.54929342467298	5.6202673963751	5.82850061862353	5.46340209441311	5.55941123703266	5.64572643582015	5.42283143212333	5.61048441113835	5.78196833833722	6.11185801007603	5.5824957733801	5.8535995860658	5.8262293301694	5.59919728703522	5.80133355572536	5.62098026092833	5.5941733389914
+"PRR16"	3.8894732168977	3.76649585251223	3.80433264260393	3.41734734813664	4.21734183677806	3.71717454764078	3.44396724915759	4.05775986807687	3.19252788411931	3.67565088762186	4.12651315720542	4.14432411405367	3.67754815831549	3.36822789602805	3.59757928243753	3.8708511567684	3.98636218928563	3.88159183729675	3.30639618538253	4.20531129326115	4.33207721902179
+"PRR18"	9.85081862376595	10.3383783349867	9.47767678037579	9.59973330083259	9.75135299070632	10.0711512930455	9.50018524855895	9.22679928521191	8.98789042393144	9.25425581715171	10.5602367996533	9.70882683202653	8.09966292808134	9.90079928221188	8.81591155784134	11.2502010598753	9.75408263372937	11.3162101488349	9.35245685676526	8.50843496582597	9.00729300130745
+"PRR19"	5.25551369721141	5.38705595865821	5.76562291890316	5.29247370182016	5.45403464566606	6.05860062747429	5.7477421376138	5.30605810023867	5.55767461804825	5.56763847336199	5.20143949823454	5.50798435584137	5.56899399721199	5.90023691765825	5.19645200715633	5.10980243364123	5.33691139859507	5.47542763050103	5.8542824440025	5.55890411844152	5.69727159235751
+"PRR22"	5.89273988851277	6.29668431525851	6.39932998122297	5.8953472054375	6.08404904586842	6.3771779150854	6.01238141218002	5.74524855326957	5.87595598669171	5.95297013377962	6.29662652900794	5.79687985779558	5.9160378232791	5.82543003942226	5.50897149802196	6.32899909579885	5.9601158577673	5.89169099491847	5.75352424611161	6.06813539932697	6.13473981601951
+"PRR23E"	3.65143228341519	3.60850062295772	3.84054160309622	3.6487626812653	3.68808020243368	3.67507647221944	3.70061025202253	3.46680101385092	3.71911323209593	3.54029556441724	3.18475998475635	3.61712191780475	3.6712047036367	3.84054160309622	3.4568211389904	3.66348571470588	3.46933866552376	3.35962596225456	3.76939865790726	3.68677898483993	3.56902860980326
+"PRR29"	7.0560166780003	7.23348790450021	7.0059635789501	7.26187906114538	6.78003867359259	7.00884697211814	7.19997480623867	6.96349509689022	7.27871037674664	7.1375177991113	7.19997480623867	7.22120894222023	7.20891094451616	7.35592929390203	7.25457557702529	7.1486316701322	7.31771308809482	6.64032797935165	7.18165604027406	6.99387456087458	7.32327074116856
+"PRR30"	6.15648592288634	6.16755590571092	6.14019872511372	6.32929600483812	6.11674348489421	6.37865493172844	6.23034045785885	5.97571839643375	6.01095535897508	6.29954882711065	5.95841168029832	6.33162555011811	6.02987451486748	6.15398607313298	6.18455990083979	6.18724222920523	6.30985322776908	6.0690841684068	6.07603255469993	6.06896943978505	6.26063283537611
+"PRR32"	4.59803163373414	4.82442560377101	4.51426231620303	4.63491828719373	4.40422664719564	4.99019117827015	5.12582212939737	4.53552366041602	4.78448803183321	4.70846433391909	4.67985324357992	4.45245347088277	4.99833348319216	5.17665592683154	4.94957621617544	4.51263699074503	4.79968934799856	4.56732287641551	5.08771697782503	4.45228668656702	4.59812424946083
+"PRR34"	6.47108111630647	6.78227224988373	6.7452046072039	6.84249745465004	6.67254314658261	6.53173894125588	6.53625371141844	6.33042388122513	6.71824969846691	6.69183838943164	6.50111793081698	6.69352047206134	6.78004927378649	6.54248826836599	6.63752007071568	6.72044538717536	6.63291107424417	6.43365728489037	6.63291107424417	6.63524651885221	6.65553232076276
+"PRR34-AS1"	8.27428270145607	7.75469515890593	8.27089377943336	8.31184108395848	8.05740576534435	8.87942907706531	8.18643934904345	7.84009508650146	8.24001147403125	7.74196719935761	8.18160878777619	7.42926200931817	8.38248739710318	8.54106265745637	8.72299987596252	8.39090405876858	7.53476733279245	8.33541767365296	8.13598825492057	7.60744330440686	7.71963106023825
+"PRR35"	6.38573884013451	6.59192414716727	6.58866638099803	6.69788000210891	6.60444226653059	6.45088834722025	6.69400844468051	6.61221364391892	6.60556628113134	6.70906773862856	6.57035102157772	6.57616319787947	6.74291110928265	6.61327651788201	6.62060686692265	6.69761140656799	6.80620647061034	6.38633391933857	6.4106531837831	6.53065700147691	6.67556565381714
+"PRR36"	8.41731106261343	8.98587512795425	9.40284418233329	8.94810706446885	8.97569044246958	9.00215969349926	8.88326004846678	8.88396516702083	8.77004444742939	8.8004505375702	8.3769271174745	8.85750781496974	9.06917845227323	8.87754452038149	8.21689097354966	8.0409597809063	8.86488673375324	8.30070534185183	8.39475426168931	9.06263429481696	8.79991812118918
+"PRR5"	7.58794208315906	6.46741128185197	6.69216098107913	6.80920354423567	6.53939146556183	7.28941534097486	7.04202659468112	7.13160265971504	6.69216098107913	6.55422146033848	6.37319044242313	6.41271925405909	6.89171945917591	6.72066589436766	6.96834033171194	6.10879982881246	6.51141599991573	6.00670622707959	6.43121233270606	7.31547018943571	6.93676739565158
+"PRR5L"	6.59736593779098	6.94363102360952	6.00095877346985	5.75182352436893	5.90620130829696	6.32367293592037	5.58546452987856	5.7662511083396	5.14699931132413	5.32493720089138	7.46645828236269	5.53294215327753	5.421206569046	5.65964758653649	5.49918692310015	8.50725257358371	5.73772636915609	8.01022625923905	6.02299756257267	5.4665691814056	5.79362137595844
+"PRR7"	7.24940287756976	7.33549626675825	7.77327399114434	7.2475154110776	7.77327399114434	7.44851101963014	7.81552355565696	7.2282472912437	7.61063459722745	7.58605038007532	7.37320103279505	7.40863602459914	7.43953920250352	7.17220514753388	7.40863602459914	7.02867527085047	7.18470858345153	7.43259193318279	7.33535256567106	7.83492617860926	7.35439232354995
+"PRR7-AS1"	4.52878246863949	4.62433413277852	4.76488433954306	4.61606408704834	4.61687438216514	4.67458158536484	4.62142070330257	4.53474611558536	4.41554397677438	4.50635754321468	4.56797230053058	4.73136551626806	4.62403072783591	4.62142070330257	4.62970874565312	4.73361609827229	4.65782789930469	4.3577198256433	4.59888677232987	4.713106168923	4.62142070330257
+"PRR9"	4.04601232742913	4.15871293994809	4.23264627683084	4.42525730147637	4.21706372856605	4.17789316763208	4.19126621455042	4.18620154363808	4.35794210178353	4.32066474391841	4.15519693205511	4.41151741856783	4.26314229786574	4.12088896588741	4.41016449365541	4.39778628410335	4.67432151394828	4.41818817261731	4.32845634260431	4.12434808530635	4.35263776299762
+"PRRC1"	7.82325453906769	7.79504451309984	7.42270517168665	7.45895993786142	7.53789864868553	6.88237595366469	7.18499639327676	7.43554088882093	7.21467392596678	7.29392784384202	7.90383444856889	7.00207345066425	7.12333665887706	7.27243157200344	7.32765720047822	7.82386107936988	7.16807676981549	8.08220938775168	7.31976045526679	7.45782503001306	7.28532533133153
+"PRRC2B"	8.58996534482793	8.85991041011079	8.88982904459582	8.72194115126828	8.93937736680445	8.72004205593934	8.36778104464512	8.70672268801449	8.5332972466687	8.86422267560376	8.7736147714242	8.98606257842049	8.81100053789437	8.73863038006846	7.98506723182733	8.59417040534447	8.79931440179088	8.41221917606335	8.28674369864502	8.89405293259078	8.76688833725754
+"PRRC2C"	9.87179422944111	9.70415228845625	9.95281267199611	9.94732938326415	9.69140698189475	10.8041883220049	9.8054484593504	10.0855414782242	9.7056429551159	9.34682763358384	9.94641365115731	9.6202330116452	10.065479176351	10.4998124369748	9.88646761912989	9.25003945055991	9.67783986702242	9.43869871465387	9.87408365789848	9.36991645256648	9.44538483737071
+"PRRG1"	8.76718928893991	8.94104785418596	8.43254419541652	8.7530256938547	8.52195852728474	9.06090541788791	8.04806347559931	8.6293789030068	8.12289016236444	8.2245595641843	9.66280639945541	8.36447414086813	8.4943388421177	8.43147517751178	8.57502205011819	10.0492351176652	8.6362500346796	10.0618615841166	8.74493960425244	7.73487561269679	8.3051313073551
+"PRRG2"	5.98324733633898	5.88567692087065	5.73105593482237	6.01313922613716	5.93484372120763	6.17448857336487	6.63237579164798	6.22602559554927	5.98376065940699	6.09446954544183	5.79643667421447	5.96011524308754	6.15810691825699	6.29450528549769	6.14117216891384	5.76733584718727	6.04600289842017	5.82496831726443	6.03159572681301	5.98376065940699	5.75558435730298
+"PRRG3"	6.71498365542297	8.06975514178768	8.48382539620719	7.69120460121473	8.28500871206136	7.72751268781971	7.09459334465616	7.77357205063675	8.0769155352139	7.6956450402469	7.06569897510084	7.91738318294442	7.75902451291823	7.45670363108209	7.69014507012857	7.12771306073133	7.98263222189238	7.68230454093267	7.55638743418173	8.13358145977304	7.89174787081403
+"PRRG4"	5.99064405955581	5.00139768003244	4.3773743978208	5.18572128860119	4.76490260369301	5.25098106166913	5.42488376735436	5.24452444440656	5.78324301163368	5.10994804746082	5.00752005264918	4.73701633748998	5.77915559638025	5.89701413782055	5.55662363463746	5.24369788823043	5.08540199373071	5.48327394652427	5.20714396161492	5.24303908722766	5.13146886045497
+"PRRT2"	9.54406571172301	9.92094650452602	10.3085836808066	9.73713758615233	10.260853873468	10.2372778037973	9.87518182635258	9.64189076352663	9.97929782426041	10.0064305521315	9.77855741636147	10.1298326892881	9.96186337492347	9.8490807488104	9.74342038929959	9.28768124436666	9.98552295940014	9.49250734491561	9.59572677554335	9.9938119667126	9.7379389078033
+"PRRT3"	7.86764650682486	8.14664667988891	8.84343125504829	8.05788676963045	8.62225205579229	8.44376343726748	7.57445771029723	7.57185135502515	8.32409292062826	8.37998429341566	7.80459037432839	8.09616890006033	8.28436310951915	7.80379105564095	8.13045141543467	7.41974752945999	8.12218175056173	8.19417749615523	7.70246244704594	8.68453612487981	8.35388626747109
+"PRRT3-AS1"	5.9772902302008	6.02806937294118	5.8776456122046	6.25216281679804	5.92867012017519	6.0313785445144	6.00670622707959	6.01388547518138	5.97175715183638	5.82902239788377	6.17837947539304	5.7910273267781	6.00670622707959	6.17229945644378	6.26502437737232	6.51627727226097	6.07012210034721	6.13621757085145	5.99984991662554	5.93683883182549	5.86891945100613
+"PRRX1"	7.35548405719475	7.1381952156442	6.03664999725564	6.6205629535207	6.58003076652155	5.66055378704647	6.60820286353283	7.58719313023419	6.54220541910782	6.42594780850634	7.60032290131979	6.28018323945708	6.47289275833394	6.58116089028505	6.00449069661872	6.53988438214336	6.12120608961372	6.57704735254615	6.8271782826839	6.6989546296418	6.47912025004891
+"PRRX2"	6.57024605560421	6.8135542779583	6.82655314653492	7.01550984296364	6.63657206390285	7.04288491079152	7.04526426095691	6.67509189864475	7.07777551819802	6.81827070103796	6.52956452841387	6.81827070103796	6.83236469371306	7.22110600042635	7.15319175363745	6.76429166627896	6.71117952187348	6.39226750305203	6.81827070103796	6.90160275501176	6.81048294813115
+"PRRX2-AS1"	6.22737486300006	6.54413101840974	6.29351355609358	6.59177798633614	6.44171963114248	6.59485713204846	6.27138235794679	6.18425613974818	6.79574776259673	6.50090644093217	6.30706082396441	6.53851495905203	6.74489068176549	6.71993832879195	6.77732808345164	6.86926536569357	6.54379979973837	6.16296447720538	6.53851495905203	6.59361593165903	6.58214686997548
+"PRSS12"	3.73464335743832	3.90037142105468	3.84232318792524	3.6814424314579	4.08057046431233	3.86171738092966	4.07249126280963	3.75263315997082	3.98142227684637	3.84232318792524	3.57753051900328	3.51235872119486	3.78911008567622	3.89288005764588	3.61334987260072	3.58665447532271	4.06995491526535	3.54335216110667	3.64680251816511	4.60240876981783	3.89206236033303
+"PRSS16"	4.54596221801597	4.71721641242413	5.17259406147278	4.70330590175963	5.21392838692367	4.70330590175963	4.60117849058834	4.61058202644971	5.08951247517038	4.99557612357325	4.20333697196551	5.08771697782503	5.06515003293203	4.92044917708334	4.65331356741067	4.944799896912	4.87329721159458	4.83253003256814	4.82048602253455	5.2233910466048	5.21335118321373
+"PRSS21"	4.42297180323381	4.64690963368882	4.537699768961	4.69391615148302	4.62273230133544	4.4569128984426	4.647199353105	4.39267410676429	4.537699768961	4.58739604044098	4.32034065013442	4.33263818377551	4.59719011273579	4.70463840269077	4.537699768961	4.5748847104647	4.62350275060095	4.44557800159654	4.45503733336714	4.45503733336714	4.51645922612789
+"PRSS23"	6.33854439780789	5.94720141536652	6.32032406766099	6.28998994109836	6.78389268773591	7.10918414266218	5.35379818402934	6.35437274561943	6.44780196517502	6.83624797351148	5.54458728304639	5.7049352730245	6.42937101882288	6.85168985998525	6.17943920197054	5.61665708402318	6.20107655971218	6.21210933893929	6.14761136624888	6.81152473152409	6.33780622203933
+"PRSS23-AS1"	4.87594615688636	5.19304685511233	5.55205616368967	4.72811314138437	5.07508829750431	5.52043211564893	5.39490720705676	5.59373476442649	4.8784749347705	4.92623176699649	4.73319395020354	5.18572128860119	5.05497694948843	5.49129007662134	4.99002770716578	5.12062981012996	5.20174580763487	4.96266507592573	5.0553334629185	5.40408943727398	5.07508829750431
+"PRSS27"	5.25468937243627	5.35897984667503	5.66696819013638	5.36870772297569	5.15876199154663	6.04406678474238	5.8034479941237	5.33754072068462	5.52779956702947	5.35295290554203	5.12746650795198	5.22887088995604	5.43141547223631	5.7662511083396	5.47238404453623	4.92149653577633	5.38149822965003	4.85002372210515	5.38021199428169	5.20900626324339	5.25392831500638
+"PRSS3"	8.00144654258071	7.89745350159206	8.31183013502396	8.00629284805531	8.48232310617425	7.97730354595349	7.96169179617032	7.60896776735758	8.52470558605513	8.67932647925462	7.16091743503717	7.87034740101473	8.28782753161666	7.73390996146395	8.51703725767207	7.57430886084944	8.16292049272967	8.06120995003065	8.0803848297008	8.41668695529145	8.4759765505167
+"PRSS33"	4.59740716202741	4.69396143152342	4.81430554718185	4.88010410307679	4.58752224345843	4.70144069470518	4.57477545398166	4.43997767611285	4.81430554718185	4.46567910896247	4.54057735461162	4.61552486600255	4.37022203515944	4.83001720508025	4.57921720102578	4.93073685119628	4.42668595314276	4.60087501509403	4.78772905828094	4.72825742218289	4.51118578432007
+"PRSS35"	5.002985553341	4.91769468803808	5.28174600991136	4.39721253191521	4.66106980140512	4.19714455712103	4.49988733613597	4.40627804912198	4.80022529040711	4.34057268666813	4.81950525511538	4.07071544533031	4.13670615557843	4.17987184182071	4.10186597032579	4.4567631214799	4.21911513049239	4.35621571098993	4.29938893389525	4.46668029539429	3.81370398458832
+"PRSS36"	6.0832527943594	6.24217645386722	6.0622545164646	6.35393718897389	6.25256561523732	6.25256561523732	6.41195710718887	6.30171907332159	6.24701779480902	6.27146762467676	5.9962636789563	6.25256561523732	6.16750502489879	6.33805959084882	6.17201422915986	6.30591120041755	6.33401339575911	5.97973724107664	6.31991270953313	6.45356462613345	6.25256561523732
+"PRSS37"	5.4012318856384	5.20819964996157	5.12376748810302	5.29115639572597	5.17980250623042	5.56875288526154	5.47542763050103	5.37894639599617	5.31047046264663	4.88662046499843	5.15741485732774	5.10953294630934	5.29115639572597	5.69966650863249	5.22556213428682	5.17716567793592	5.23578908770443	5.27337153848288	5.37535356315117	5.38125391596449	5.29115639572597
+"PRSS3P2"	7.50632436878356	7.67655726720894	7.75779510946894	7.80564621610695	7.79959480330999	7.62765860302534	7.78688196394059	7.57536499041113	7.93084279463397	7.95741832748115	7.41015994579506	7.7930656828838	7.85505486792087	7.66815664442037	7.91695429290731	7.4206487521784	7.76975269123965	7.56811433973063	7.53784380977042	7.7703204507155	7.90576035575183
+"PRSS54"	4.10850187077007	4.39535069129001	4.07779746878492	4.16089863856463	4.1976296529167	4.12560769222575	4.49852897839739	4.43550576668646	4.16089863856463	4.17465534598995	3.91070405856095	4.07792606942969	4.04064440171009	4.61771603374119	4.30055787726864	3.93427278054235	4.23947269159612	4.03924473908249	4.09083025121682	4.15033217533175	4.04183158356715
+"PRSS8"	4.47204257655326	4.68370885353981	4.55106302810653	5.08435795106937	4.66130897299104	4.76618517957381	5.0784011632546	4.65509436159634	4.7567158514125	4.79879522583626	4.57243913367832	5.01069013457713	4.67182517268179	4.76618517957381	4.88530200780525	4.67199788003305	4.80164012152253	4.32933672529439	4.67543672720267	4.54668919041926	5.0512099901757
+"PRTFDC1"	9.17422763393646	8.88406883254452	8.6024398485796	8.22828635589017	8.11426995265524	7.23320734250643	8.03831923327544	8.48677850580733	7.74095426727889	7.97377991734625	9.5594681157447	8.13827725430092	7.58637899401489	7.61127860292125	7.54105177796205	9.1103403304431	7.67818207698051	9.16079894381114	8.04822481787237	8.07966232921619	7.79107234807418
+"PRTG"	4.83851391392687	4.27630418986588	4.34103743048309	4.31432473489877	4.39439502373574	4.57284170113287	4.6497054302728	4.27870300633036	4.39770682838428	3.94421705633128	4.73121744910236	4.01624176376591	3.99358543732959	4.56931179220288	4.22377922950858	4.68338828036831	4.18723467344843	4.27870300633036	4.11665722257891	4.28106081178576	3.75481311736785
+"PRUNE1"	6.20262407234171	6.02440545754511	5.3097311465825	5.82962178366146	6.07752287547876	5.38435463838913	5.66924473452819	5.96668269176176	5.91953505727006	6.36123805315273	6.1628837294939	5.96486086325354	5.76830792853439	5.70475530180211	5.18654266765931	6.21935643129299	5.70752495764291	6.04150327463393	5.94347749257532	5.99266466010391	6.12897182867613
+"PRUNE2"	7.96376651949814	7.49641635227396	7.68420708268809	7.87860466234983	7.25926319667497	8.63783147309043	7.38680975405186	6.97528508693429	6.90966767812189	6.1125044459252	8.63097717413564	6.74487945566844	7.24746925430395	7.30753135639842	7.9057343490214	8.84668484254738	7.15962315497453	8.83154221876278	7.71470966717178	5.85769457692508	7.42038798299338
+"PRX"	7.66595801095271	7.49810440595791	7.46452864236645	7.5857238812094	7.33163403708473	7.94391334220792	8.04620936937511	7.49558921997196	7.56063743734209	7.40296268250291	7.38017149967175	7.57962014945558	7.75929577715473	7.79321408691504	7.55751610388235	7.27359508650038	7.63118947581577	7.16110547013013	7.55271314397481	7.53984505025702	7.34115478512741
+"PRXL2A"	10.9424784934321	10.6482922338301	10.3287408502605	10.9397940532788	10.6729145332876	10.0711817883455	10.7561081423605	10.9580218520908	11.4389202997728	11.4214491196973	10.7310857959293	11.0864634322141	11.1904751907896	10.8235427111875	11.0107370740742	10.2105633590445	11.0633301891897	10.2912491825329	10.88740921003	11.1538196711013	10.9688768690624
+"PRXL2C"	7.27385628004766	6.92413083396415	6.71236548598638	6.89973308982318	6.87161395331001	6.92528285767869	6.79139915176088	7.27785642070871	6.44515130482025	6.94151710284026	6.99105167035682	6.98648016835519	6.53098795396986	6.87980403148404	6.72330064059818	6.83165519765407	6.77991027395477	7.12998355009869	7.02140635727581	6.87742748335083	6.80569016186492
+"PSAP"	11.7408414837628	11.3967639674997	10.7238423730344	11.1198534191065	11.4543219021051	10.560065674063	11.4605321623558	11.3069418644925	10.9429438793874	11.6211071747719	12.003246431997	11.7068972872239	10.7295937148964	10.4110389835246	10.5913944891981	11.858446584146	11.3738166120727	11.48626246103	11.2318248477202	11.7078313065777	11.5937042858499
+"PSAPL1"	6.17007248696622	6.37254523386621	6.16214012061335	6.64461544912157	6.40180241055195	6.52981919954094	6.50068057935234	6.25975585486541	6.37346196617501	6.46435158200503	6.16721046927294	6.35904572516539	6.37432033550599	6.60747102006801	6.3454725334199	6.27594779903157	6.33390768104782	6.02263260843666	6.35893323369137	6.3484177062266	6.10172455145438
+"PSAT1"	9.97775210566888	10.355936499605	8.75178924680978	9.67736465876203	9.81767871296779	9.33824893550833	9.69681352376991	10.2527386542217	9.75521544518252	9.94821453844562	10.7631190086824	9.63980567154318	9.53555332733433	9.13393889246555	9.44193316107989	10.2112629372702	9.57258705166458	10.3742440146502	9.87487177741218	9.38635188633399	8.63084102909744
+"PSD"	7.27895295546298	7.73310575088433	8.32767706374186	8.00966294067573	7.81930579919061	8.2948525993846	8.42746738754925	7.73977403738885	8.11938857887151	8.10665336693999	7.48348123760534	7.96554476215375	8.02789888588859	7.97817063873445	7.96425628408155	6.85072292888307	7.93832292482763	7.39954513716974	7.99677564284006	7.88974214080191	7.78725183298644
+"PSD2"	9.85077568262541	10.3046027612335	10.0290228333908	10.1123439649229	9.98142308797604	9.38135017155789	10.5059190772982	10.3252472909711	10.4047650662032	10.1633578638448	10.5280860828177	10.1966650229167	10.0630718780345	10.5245701902786	10.1115106844459	9.77169636146127	10.1606688239615	10.1075895000767	10.1385893168658	10.0206095860845	9.75707585545026
+"PSD3"	8.72204446719373	9.78325632426075	11.0734643003189	10.146336190668	11.104228327694	9.25896709844079	9.30118352214171	9.70152226028932	11.2286566623851	10.6798492379649	10.5731266506888	10.4348954340294	10.5735155378173	8.2499764224152	10.943893703714	9.42245899502596	10.8246801064417	10.039580664571	10.9516568769408	10.4139198193529	10.3966962979797
+"PSD4"	6.48399685941874	5.42439847659215	5.16286446415009	5.2547873342231	5.30414423973762	5.10106312856943	6.08442292135795	5.30414423973762	5.09167694319104	5.11918625321799	6.29391834989251	5.34086989150651	4.98730683346238	5.45200254003515	4.90589437882681	5.1934694856196	5.21882017138227	5.25239904077367	5.32736597824582	5.55168806361716	5.01769076001017
+"PSEN1"	9.03945809608664	8.90636810304084	7.68059511612944	8.23039369452869	8.402682050527	8.1041417200876	8.08153398823478	8.06827684041875	7.61405369788543	8.2070909921879	9.38526386158618	8.0783726413937	7.47026229482462	7.98450922893792	7.37502385665034	10.1624324029245	7.9052003695789	9.64343955354604	8.21218217996999	8.1077672414849	8.18222599946422
+"PSG1"	5.93850962583268	6.24016564480955	5.80004817945975	6.0301068327353	5.96816877511093	5.86524032294595	6.30860755855034	6.07854110773496	6.15859325849518	6.14019872511372	5.94851873430127	6.31565638772568	6.22966705622371	5.96188018629106	6.07854110773496	6.24506619996325	6.34683154798679	5.60411515556027	6.13123839972421	5.93366848001288	6.20516712167556
+"PSG11"	4.73781345201372	5.0746497364887	4.72539476487804	5.19858059001485	4.782400391756	4.91359243124632	4.76968755238661	4.79814767992321	4.79394506796676	4.8446201534826	4.79977145853491	4.71085554654642	5.05497694948843	5.0049584477168	4.87805465359085	5.11008331827025	4.94707380707323	4.46996529945333	4.50298464240862	4.88946542222123	4.96709614989907
+"PSG2"	4.56353851994907	4.97897316358211	4.53652224199757	4.78046498055742	4.905756186385	4.88551229752404	4.85107796278426	4.58793591211572	5.03123352569751	4.61366712864713	4.54808514730669	4.63283104203543	4.75236935388685	4.95032256717232	4.96933739229717	4.79017085932348	4.75418286847325	4.64596813975156	4.68842393697479	4.43164988558094	4.69437946105178
+"PSG3"	5.63426035444948	5.59176608731807	5.21513919376494	5.7637414832805	5.57793688658253	5.66347759411204	5.79646595383912	5.66628399550792	5.74534919035699	5.57306577239412	5.26265897708434	5.49050998381804	5.7655416249388	5.96408466293349	5.66558707105894	5.38984928672718	5.56545507990424	5.1329584460178	5.28145700201073	5.43257010018203	5.70332660234967
+"PSG4"	4.8311839275858	4.90587728221234	4.74246849909908	4.96914840264416	4.75558468492172	5.38834796380488	5.06559421861533	4.79480731106087	4.76762525059438	4.8634033510256	4.54371109441821	4.8634033510256	5.00590659523333	5.0126579232713	4.90122496205643	4.71025393700534	5.02056808026582	4.71445722858711	5.0007050113707	4.98530548649814	4.81212154817354
+"PSG5"	4.75650092452239	4.65399244878136	4.52671729709193	4.56093140542188	4.82681886173323	5.24438180614059	4.92732347973944	4.69298447809844	4.63616689501147	4.75440855322756	4.22268702787723	4.43706277866984	4.58377437083036	4.93800712978832	4.61982171989374	4.52378559291464	4.52022221988285	4.54137198263651	4.69298447809844	4.81231202449552	4.8425678590648
+"PSG6"	4.92065989528126	5.32203255774637	4.87634355509545	5.27269150847145	5.03951817912014	5.32909865764111	5.31376345294636	5.11107106288571	5.28790228508634	5.18444621071237	4.75952296731757	5.08111039605151	4.9810558352341	5.35446535380178	5.04501338049064	5.21322247918935	5.10884108621392	4.69766749387734	5.01932219650599	4.93793284461098	5.33354311700847
+"PSG7"	5.61468996102101	5.73715070605808	5.40396943822212	5.86912061085717	5.59808721845902	5.56173107768966	5.86921981476894	5.62608073490661	5.82814793218223	5.7281947805783	5.45721695157437	5.5270610615771	6.00670622707959	6.08025978572875	5.67841482462198	5.9204187644602	5.80605171962747	5.55164005273765	5.76177984490117	5.64328124814981	5.95986388991538
+"PSG9"	5.59688945298772	5.63553146267341	5.48476098114228	5.82688308843753	5.59780307909137	5.66124129736584	6.07328999822191	5.59545309844391	5.55401523720527	5.48519006237716	5.43153769994791	5.51465630085844	5.80402453356673	5.92201886041035	5.59545309844391	5.66924473452819	5.79642026905824	5.12133262671897	5.6196318489062	5.68990844181642	5.82628384255175
+"PSIP1"	7.90656798406844	8.71644621472133	8.85998733373638	8.91840160234413	8.83140562441544	7.76876692042523	7.46872816934084	8.43850440499994	8.97860224014589	8.68281313334237	8.53694522519241	8.77085363759503	8.84786447562405	7.88539530883383	8.72826528041435	8.23155937351635	8.84976471989191	8.54337507275638	8.69582120140334	8.40018043147186	8.60438079515643
+"PSKH1"	7.4782050371711	7.30624682805441	7.1488302468194	7.12470439715528	7.03527120087399	7.3907333692508	7.54034476883881	6.93357563282426	6.71824969846691	7.14913847633857	7.1832262751882	6.87530638134467	6.79665916951431	7.49073304286502	7.01272350040488	7.65941289203172	6.87980403148404	7.37023869730204	7.21845091357428	7.26416484525954	6.92217973721049
+"PSKH2"	5.29635491654236	5.39576317200021	5.16519253188496	5.58784514498561	5.16262588792869	5.275592433606	5.66266718532946	5.30961540747536	5.62650703959608	5.36025763010794	5.20554435782392	5.35877764580191	5.44891462941262	5.34810385551279	5.41436866629083	5.58369558801643	5.66216303913051	5.13192371807513	5.09566694021679	5.36025763010794	5.40545301071431
+"PSMA3"	9.26178850474954	9.24634992895286	8.62868480977582	8.78909979793873	9.27053960986569	8.2027508445677	7.89034572298229	9.0200131281138	8.81370901311029	9.3390282758573	9.30910101984017	9.27133394622847	8.45668655994071	8.3293632983577	8.62283893726702	9.46485496553049	8.86412060413884	9.37199734237707	9.02634785490404	9.24968550422776	9.2820302686107
+"PSMA3-AS1"	8.03276476638299	7.82173707173643	7.8758402709353	7.55725158658287	7.56630288592445	6.97397989855418	6.91601134262601	7.54399971811434	7.66676605933263	7.63903265642439	8.23798444766139	7.59513248618618	7.12054580693004	6.97413484874092	7.20907984723366	7.6576823540668	7.58178466082014	7.83176833003399	7.59400111760598	7.33231010058904	7.47594910861852
+"PSMA4"	8.39846447814031	8.65877800673224	8.64848300670736	8.56201325424806	8.85709801649377	8.50913598724136	8.07231647476243	8.53538578955188	8.65756325639332	8.88268204728145	8.48500280002586	8.6696841037754	8.59732687222233	8.35653493633705	8.62649737310169	8.72377301045627	8.4890102465349	8.85874409050844	8.52352036202362	8.68487732621145	8.73142116350384
+"PSMA5"	6.11369752907389	7.99963188453053	8.36891938547778	6.89040940258267	8.40415388415781	6.96170232473974	5.22122410915788	6.8383806229948	7.38827501748196	8.25760957665934	7.46618813705559	8.02090328993779	7.04605326751624	6.49036795877015	6.96345180738792	7.61573919454109	7.29658561155563	7.93792316927212	6.73446992400927	7.90953288225896	7.92989619196091
+"PSMA7"	7.19973237152849	6.72800370118402	7.04029151883567	6.70699348215379	7.29497929221279	7.13750729572045	6.77015475387019	7.00220774199465	7.181216610451	7.30530441046332	7.18520854554334	7.04029151883567	6.82208863539339	6.62545178678715	7.09667392949194	7.06121389270088	6.78277073103221	7.34586258375841	6.94790500672856	7.32933524107649	7.21339474591704
+"PSMA8"	3.17347507565283	3.13483293632071	3.13692362763751	3.34645592334111	3.38101559058157	3.52844570503294	3.31408099379999	3.38815919666752	3.04385858196007	3.26854996762223	3.06180985981699	3.32885726375711	3.29048678726265	3.08805491144653	3.41010950234247	3.28186157036019	3.26466457971916	3.13847788426605	3.138597122951	3.34539321356814	3.31891433345873
+"PSMB1"	10.1421516737181	9.9792634140733	9.79991220126016	9.63470487234978	9.92151324677016	9.54169119720837	9.26007866675599	9.89700416455632	9.46954637832108	10.1570087864696	10.1834232340454	10.0020919002377	9.25373921333834	9.42227790441483	9.47963673032583	10.3486392542958	9.73683860152553	10.2355563217814	9.80680530290196	9.98490510779814	9.78542354347809
+"PSMB2"	7.7057569283248	8.38988807777649	7.05882007741195	8.26377468440007	7.35710550694165	7.3606079031905	7.62019445264369	7.92814066996688	8.36930803487537	8.39825880069085	8.06666389382991	8.24546859911012	8.18529253681398	7.9889903326278	7.9066125704884	8.51666214821845	8.27708543475837	7.03473593879591	8.04953318469214	8.17952403738407	8.01933896716244
+"PSMB4"	10.2265941976721	9.95687692532416	10.005274993782	9.76077963751684	10.212558089811	9.44961505341749	9.30528536864779	9.89772070588361	9.75113195694157	10.5276394729547	10.1132057310823	10.2604408903822	9.46975808300782	9.39722628323278	9.53144457427705	10.1508866972839	9.78947115378458	10.248389465155	9.86713444383603	10.3222298926777	10.2219684549272
+"PSMB5"	9.97204087421108	9.64590685045548	10.1190910263725	9.84544311325275	10.0461146211511	9.74382396865201	9.66251311121392	9.97107328384719	9.90306963395978	10.5449349004424	9.9440087824192	10.1682105861156	9.83303935508828	9.62684827759167	9.79399402991495	10.2478908599337	9.81244917556018	10.1170944158156	9.97107328384719	10.1765777478713	10.1386590220162
+"PSMB6"	9.61173871554494	9.36289345195977	9.52169710279889	9.24151219209311	9.80083824555871	9.46234013096631	9.28885152996112	9.27197198201266	9.54168152029272	9.85644593505957	9.41691428123352	9.49807187262478	9.12339823733226	9.17937257203095	9.32637896980852	9.83481365174441	9.2988206472644	9.87534659772983	9.36836058170767	9.93482171967755	9.62079967348813
+"PSMB7"	9.90747216818289	9.90101975346642	9.96976991594519	9.70043017983013	10.4765244274453	9.65109742799184	9.34622745668003	9.70018007695169	9.99424976814178	10.4391465576665	9.82564076059819	10.11338191105	9.47760761801129	9.41250910801593	9.75026227579992	10.251574597602	9.97790646576558	10.2683947242974	9.81917738028534	10.428740436327	10.1379639438288
+"PSMC2"	5.78904838232152	5.93479424697662	5.74640281425538	5.75818531723389	6.13922436859426	5.35445615824885	4.98400715944494	5.4448569305318	5.67942815123469	5.98714022720586	6.24394515686699	5.76378058941987	5.4068689598718	5.04975624522333	5.64508586291976	5.97266916266122	5.40856909218703	6.00670622707959	5.29970766957847	5.35913542781734	6.01509509228701
+"PSMC3"	9.37034090294974	9.15414254317088	8.85921053623975	8.94219284455877	9.49546536049377	9.03470068083867	9.04250901872454	9.2869568629745	9.2091350876733	9.65780347523053	9.18780761143268	9.56290530578517	8.61944396718228	8.67940374373736	8.97192051965115	9.62683066739959	8.97838464561669	9.12677231715351	9.10105376750054	9.79105855571717	9.72518952314618
+"PSMC3IP"	5.45317360536504	5.37234737085106	5.35937988821561	5.486258545587	5.0103554214417	5.87998576195638	6.14299947422693	5.289626803982	5.16054667349077	4.59731521908513	5.54831752556065	4.43935727222801	5.70794037526819	5.6466066753382	5.65792208027402	5.2721370083797	5.17437482902673	5.76451217702333	5.42949635792123	4.61395935728901	5.04003097162902
+"PSMC5"	10.4248676814351	10.462532444146	10.7955730501029	10.4511195491073	10.8930748008135	10.6039037656256	10.1656970847039	10.398679745793	10.61532872972	10.9049773227841	10.2754410474903	10.5869065530197	10.4749908437403	10.3980190007448	10.4274361027026	10.4269256092745	10.5097339367626	10.773991656644	10.4454722303719	10.8142508176762	10.7231683573379
+"PSMC6"	8.43395863566589	8.48084795968751	8.53870936945427	8.13726884484059	8.90528993385123	7.92836066460828	7.41949040275416	8.39283347749755	8.37786415881672	8.787922523297	8.76172984781839	8.8840324666787	7.98308941469771	7.36572991468456	8.56276729573117	9.01705428174038	8.49331697129425	9.1036454783129	8.29237820711447	8.73308433263753	8.64954915061368
+"PSMD1"	9.03265299747042	8.87741246153217	8.94716618413286	8.75186714627213	9.7670122061578	8.71875560615928	8.30404705506412	8.86341711825147	9.08083382319001	9.60493680276263	8.78222208270022	9.49818336295385	8.29942656202748	8.35748375327982	8.71554178812951	9.04070993810535	9.07585709146147	9.0501351584519	8.77535548315216	9.4880107494582	9.30729882304657
+"PSMD10"	8.99069524882804	9.11835750021551	8.36632417304995	8.84296243616319	9.13036285543685	8.18316606292325	8.55957086679514	9.03414907038085	8.84874928473805	9.27047299255631	9.28792354641621	9.18025293238574	8.3125167456127	8.36753728965459	8.56802219393982	9.57447409917616	8.80842779791917	9.52890700938372	9.02092650302454	9.12462774298107	9.08127779264971
+"PSMD11"	8.21810456794929	8.45091683112367	8.84888924017979	7.95528826662257	8.91707672130741	8.61770856242855	7.86995467595562	8.24331646485028	8.5357689842883	8.99854052511952	8.25674300846037	8.86906203866412	8.0128939520524	7.91487340246819	8.39084321663132	8.4722365029628	8.74917435960734	8.79221885747838	8.06797011082211	8.75921202306273	8.75550584959602
+"PSMD12"	8.72299883538332	9.34036416528759	9.48476850899591	9.37149024908694	9.79927725678122	8.83344143565159	8.22381363254411	9.01921057194783	9.64232065834115	9.79278840405208	9.06156497142992	9.41372926373387	9.74886037007188	8.7242114503351	9.68067911581209	8.97409640777564	9.64874460195439	9.44273154063419	9.36344666563111	9.46438960121887	9.79885536923207
+"PSMD13"	7.86569784064413	7.90599448386853	8.66857696601915	7.54158472580305	8.35673176387801	8.1882856438252	7.40892633503779	7.9598453686178	7.84499826757418	8.19885932938883	8.02132308628445	7.81972508084142	7.63942803680686	7.65995460217954	7.73069601738032	7.90482601668118	7.9598453686178	8.44855611166816	7.63163584285555	8.25113244685161	8.03994868180714
+"PSMD14"	10.4636148289652	10.543211423251	10.6262988144761	10.320844599031	10.8312556725629	10.608390175347	10.1997183635709	10.5304667012449	10.5460047105784	10.8595587273987	10.4276870621767	10.7583274681867	10.1902907123807	10.136733767791	10.5979252202348	10.5519044484101	10.4716854024804	10.6371564875535	10.561430177332	10.6925963192125	10.543211423251
+"PSMD14-DT"	3.63434582627725	3.61186929820375	3.64856512458354	3.68961448094672	3.58011184290364	3.70503313886572	3.6438097702025	3.65849651528688	3.86723243501832	3.53741376891322	3.68961448094672	3.84447744069621	3.62195636067234	3.96095408836603	3.75654664343811	3.98610100691504	3.63434582627725	3.72168541890689	3.58902255347817	3.55185032656886	3.77017723241294
+"PSMD2"	9.94095090241666	9.57937087194635	9.79752715558098	9.57735045462881	9.97010876468511	9.8229314237605	9.99408250311868	9.65917042964918	9.94000089611758	10.0337015634073	9.62069423164066	9.80204132920076	9.65217467364222	9.60027323259329	9.78117879415544	9.49468435699939	9.73539028982978	9.77487555445681	9.63828816994725	10.0902069725048	10.0351402268241
+"PSMD3"	8.69203359121343	8.43369042891845	8.45205598639994	8.31048988464909	8.77379333253907	8.42549136445357	8.47982194372226	8.31278898637868	8.48599982983057	8.80885146290794	8.53455120968843	8.71127016408049	8.28032285796484	8.10977556925301	8.28434011081906	8.47091742731063	8.65828438395744	8.52947649620509	8.22619855208002	8.8164161252202	8.56467487698693
+"PSMD4"	10.1506281867803	9.96843176260175	10.3379110208931	9.83011825385218	10.3858266502751	10.0058519525976	9.86031637202183	9.88899347197999	10.1191961069812	10.4582175639295	9.92358499464731	10.2357057306518	9.59949223702493	9.73937804822162	10.0219738627747	10.2965219443205	10.0992579305192	10.2901373399065	10.1154226700204	10.3495916359122	10.3334959072948
+"PSMD5"	8.43282520636964	8.21744046865446	8.24544162459026	7.84293122660057	8.36368001958405	7.76590250069788	7.69184541814168	7.90066082122488	8.09909234428417	8.34041581717733	8.11179014283874	8.10056934593675	7.33903169852721	7.80155546232136	7.70950665615671	8.52321252401352	8.09751740065729	8.57049545658465	8.36594735720222	8.39336920623167	8.11179014283874
+"PSMD6"	10.216647702709	9.89031420961135	9.63066829706098	9.74465646882147	10.2675443922557	9.69756432626598	9.71939617885094	10.05232057434	10.0508933984057	10.3447036886085	9.81257535923294	9.95016513670448	9.71018947171513	9.51994896402242	9.75003289339249	10.0676135969798	9.8020281827665	10.1829259821647	9.82892278907495	10.0608575752946	10.0644302428432
+"PSMD7"	9.18262942056989	9.19919891493039	9.32984737455851	8.9978687935877	9.46185992000049	8.90430869111341	8.99564166364791	9.46164748130935	9.29526728099829	9.39181181470043	9.28408685956827	9.39596125901866	8.80696098331748	9.0379796004013	9.31161408741782	9.65473661788805	9.27007021015007	9.58885991885524	9.07149074994495	9.42227644307341	9.41503180708164
+"PSMD7-DT"	3.86451695142144	3.71638001497554	3.86293655042265	4.07605302923454	3.77288226103671	4.28848175808695	4.00749237018996	3.67699087428175	3.83430345085401	3.76649585251223	3.81323935762747	3.90933233667175	4.23485961665478	4.41865998915794	3.82570679917102	3.59616229024143	3.78173963149664	3.70105988961415	3.80867545369794	3.74049516012654	3.89615043680364
+"PSMD8"	9.08251942450911	8.9699222518707	9.01332097448973	8.7084711064397	9.44926996536446	8.60321120458687	8.54097606519289	9.14728251598856	8.96757710212996	9.68025060930545	9.16540095908673	9.47564933349211	8.64784854687157	8.29069435590106	8.84998265084932	9.586053732861	9.04157948054034	9.42106621633359	8.93453305424313	9.72776238743226	9.49818241935199
+"PSMD9"	5.73920351650553	5.96118582928058	6.31690208574231	5.8668976310647	6.32231738630251	5.53465797356146	5.56680653531102	5.53065497302868	5.60405369626977	6.3786362960533	5.89170192886608	5.85113024568602	5.63303590673779	5.96772004486133	5.752539990581	6.14615487771096	5.93518021969419	6.03318269463297	5.39075411234356	6.18350333154987	6.09970838952648
+"PSME3"	8.28226351181026	8.04208365749965	7.84838070225994	7.81006942595793	8.30251457979072	7.54560818784951	8.04208365749965	8.07638247477018	7.95149934068655	8.49879114553706	7.74552773002851	8.03453916371671	7.87673514063238	7.60321810745968	7.92244213383239	8.18685653250922	7.75206310145446	8.13234171815632	8.09600557660024	8.5109161907931	8.40751735807184
+"PSME3IP1"	8.65170274903309	8.52265222713864	8.69963498722549	8.26943304250081	8.69847787267922	8.62093165261399	8.77195230876663	8.51193986264184	8.5212372875838	8.40241676533798	8.60097847939694	8.50609236355879	8.0790722811725	8.42810579462417	8.33671800261097	8.90683527004541	8.43618743136027	9.1044275798524	8.36631777855197	8.71218296722294	8.52799689581863
+"PSME4"	7.8640598268879	7.68554256267897	7.54951092250652	7.08773569070376	7.57699763809438	8.02266595095597	6.89747061054838	7.63338144228668	6.70798903770418	7.27590122915469	8.13731856464771	7.51373972973105	6.95941826212139	7.10820062028187	6.82425556212817	8.49811256466555	7.47867465739252	8.64254361853	7.2501955116891	7.55831679574954	7.51305914972905
+"PSMF1"	8.22268425874329	7.69087215453969	7.98601223854604	7.33969127648326	7.80050768012985	7.23994961616658	7.58298821906438	7.55442063611553	7.206725284691	7.60728571693639	8.26007135037899	7.55442063611553	7.35138110440925	7.40897037779587	7.30019629140156	8.05306065219754	7.24176734459643	7.97921892333152	7.35127411179134	7.75873986009699	7.27417377719882
+"PSMG2"	9.86821885275911	9.73690190266044	9.64644114386912	9.6366274138679	9.80189100022713	9.28261352877848	9.25945409081521	9.78425808087205	9.70194601379997	9.67184670359391	9.71924506206999	9.60920297327239	9.49106009645166	9.43965059277266	9.7129471895927	9.65589773720077	9.59631251935162	9.79472036518627	9.84476295835854	9.61395577864587	9.70062881610231
+"PSMG3"	8.04491040968494	8.52859438243015	9.2470734448705	8.41680618365886	8.90183241475654	8.63069621278773	8.48531875410123	8.05653637938213	8.57718498644714	8.8544422400178	8.36061245372371	8.55201409672405	8.68393372385437	8.31214917773276	8.80599384770737	8.58443496167861	8.47028950514568	8.80918724769066	8.58749251175067	9.00705187380411	8.68441009262327
+"PSMG3-AS1"	7.49279328770115	6.91702093840978	7.36787082994565	7.14992454561399	7.19204515943829	6.97298166974515	6.54799254570506	7.03408367478405	7.05629027939511	6.98658887428142	6.95938338516368	6.67453090427133	6.93100792471212	7.26793480198916	6.80535624622145	6.79197324285752	6.82441163525365	6.67002251307847	6.7931383397883	6.97495378859707	6.99559644812445
+"PSMG4"	6.38257691374792	6.76290038565679	7.31818053168193	6.5493940812466	7.12364829578079	6.80224311709073	6.26668438525666	6.44067483123101	6.65204320613846	7.02409212275899	6.79078267943443	6.78328427600565	6.90065318738582	6.23263340888762	6.95608552728372	6.57028234158029	6.57328106158009	7.06020539798946	6.73215966127916	7.00982243504551	6.95294726523549
+"PSPC1"	5.25091316290171	4.75245988364214	4.61823824993768	4.6374133295725	5.68897751683084	4.25143835612012	4.69179030871552	4.65866022987309	4.84091120132124	6.00670622707959	5.25849818324036	5.58142673473555	4.24650243193376	4.53418267156255	4.24167575147279	5.34581906044877	4.91749705758022	5.56332274535493	4.98868914574785	5.95615709597771	5.51061342730506
+"PSPH"	5.50344860570058	4.91946608993041	5.19362571171044	5.5592247639117	5.18862325824423	4.92942222600015	5.30414423973762	5.30125773811086	5.70588764606936	5.27163291226157	5.572102913393	4.99679542220195	5.59999330157899	5.38408016767827	5.68760801739036	5.43268900296649	5.01297854096934	5.71015289765712	5.46049976254501	5.0837011599954	5.2992386944742
+"PSPN"	5.06570120064955	4.9158598718236	5.3050229532443	5.27871929483712	5.10955564021667	5.39589364925041	5.84957713715929	5.32872645587647	5.36300433871511	5.09825830787139	5.07721360425742	5.29665595658677	5.51226689933051	5.58978286261113	5.3378714334147	5.07839317144759	5.3973348872181	5.12879393792256	5.41699002956425	5.2950474855553	5.33879593224498
+"PSRC1"	9.63101490860948	9.39609441637625	9.3746237171875	9.37020199151017	9.16435104187792	9.8387201339398	8.33976368388347	9.27036524216937	8.97906834041644	9.18245394807906	9.62083040448679	9.47268453868992	8.69814709799066	9.11127585125619	8.99916939655645	10.154467305257	9.3495567125677	9.99271108918961	9.42838058542408	9.19213050554337	9.64529682332911
+"PSTK"	6.20859221838553	6.25332401428378	6.22528175453793	6.45484107198593	6.72540907508622	6.09983248206325	6.05705369344318	6.32200854415881	6.87875626045683	7.07096252038956	6.41741489121808	6.28873421054459	6.30523316466647	6.24443397539332	6.92097396297382	6.55468281999552	6.38751102244046	7.0048024870907	6.63291107424417	6.5389389210751	6.13547672923273
+"PSTPIP1"	7.26558305862834	5.95534921349913	6.15569693836323	5.83494437634404	5.82287033003888	6.34683893649016	6.46134853019885	6.20748632589217	6.15569693836323	6.22203475842209	6.15569693836323	6.04040306886367	6.03361165146174	6.3195050428385	6.03385517051658	6.17107386324443	5.89817311084831	6.21510156380783	6.33194608328623	6.22619955772884	6.11253602548165
+"PSTPIP2"	4.41537582117568	3.89039001238632	3.76543626117463	3.80225967547867	3.99458075967274	4.01880090179056	4.08067691290406	4.19835882487419	3.75908826777441	3.89878503535349	3.747122074824	4.0567864123266	3.77249256228644	4.14500608638987	3.79572485168989	3.89740527256973	3.87017388297221	3.63734615191803	4.04159652320046	4.33844436933875	4.27424444820126
+"PTAFR"	7.06027691530738	7.132608218846	7.27150161992181	7.39978929334902	6.884063586275	8.00925784336875	8.28997738846132	7.06723318169822	7.51059363234234	7.4401731747275	7.07779252477676	7.3146656468996	7.59805292536132	7.77169104311038	7.3146656468996	6.90051143097884	7.21584292590328	6.84735774073151	7.70729474767158	7.45503574694861	7.35987994440829
+"PTAR1"	9.77016269040227	9.37864370332334	9.30473704412561	9.35686260742569	9.01750286261408	8.93448139878552	9.68089183836198	9.60659694521403	9.40942779233801	8.72420986029006	9.37101267684892	8.95833982081614	9.30624230407884	9.43204319685759	9.67371143050319	9.3361877910995	9.12080914435826	9.33772117464532	9.53851615665471	8.898920372886	8.85014549034554
+"PTBP1"	9.66058205342143	8.75591358563331	8.49629990485036	8.59530937478824	8.31090432309201	9.44128049499855	9.15350720963413	9.17556829277396	8.36447414086813	8.38279630033992	8.83464122259381	8.33146016311895	8.77062596604764	8.97868867375638	8.71724532697355	8.6410457446967	8.53282101134399	8.96733487162355	8.64252136376673	8.86037292366866	8.52928989121845
+"PTBP2"	4.65011153779014	4.33439115649366	6.10693657511267	4.4711855066005	6.08625540844073	5.86454874366612	3.863328829893	4.11858543183713	4.16089863856463	4.02606967456859	4.73817282434961	4.22229910415969	3.70110600208218	3.69459701078141	4.24573203718746	4.44868992967115	3.89476951573742	6.68189536375206	4.1406501684265	4.15336452171248	4.03600099560098
+"PTBP3"	5.01444619409105	4.52891375452571	3.89179812741108	4.50720309353523	4.28670901532993	4.68089546983667	4.51187632572933	5.17158171163882	4.54628576325884	4.92117594957378	4.41994517961982	4.65394866797049	4.31185729026039	4.59580637038155	4.22769770771616	4.68090610038749	4.96194218059366	4.00705603807451	4.87967122168567	5.09493685182673	4.84753334504987
+"PTCD1"	4.80022984663536	4.4757247117835	4.66485820618786	4.9376360745906	4.16235003451593	4.63604887831545	5.30063083588543	4.36817241628148	5.0002951044767	4.4632542709891	5.1146625307294	4.41380250202853	5.01927668871185	5.561976353646	5.01618748661692	4.2621546390334	4.58392503213391	4.89364866322105	4.66124087142173	4.32536197534867	4.309366795487
+"PTCD2"	6.54434673515181	6.71812715904755	6.69706263895116	6.52760868081758	7.43892518457581	5.82897940365823	5.84324430367431	6.24694790419816	6.87213988532342	6.95592852327784	7.20834289515931	6.88919535697772	6.36857676825598	5.92215013472151	6.34556932339189	7.2401474751839	6.54367896325785	7.32188407447579	6.69890058400138	7.38620847321781	6.9688274014286
+"PTCD3"	9.04921346732095	9.19174079066084	8.89953984348812	8.65976293038722	9.03862860327269	8.55623938456006	8.5118672002645	9.3451185298858	8.76879079364961	8.68929307063589	9.16198246272134	8.87978535271651	8.49291868276278	8.47447452646583	8.76062149865288	9.44183973786987	8.78294026048169	9.53559599228197	8.83973209644817	8.904906219041	8.71742973859356
+"PTCH1"	8.87784812324629	8.26142210850994	8.52721211834799	8.6620807768648	8.12906915946471	8.02977519015609	8.61606441732217	8.38105433681043	8.31117911112785	7.89221499671936	8.5033235217541	7.5550744801569	8.26800843495651	8.19255255660903	8.20944223463712	8.03804822454141	8.18389751142012	8.6260039485163	8.03942151001084	7.79866075362551	7.2107774119644
+"PTCH2"	6.30137283994388	6.32699528110917	6.50259424725546	6.55433351042946	6.46964488619953	6.46788075990515	6.75802545786484	6.06650058669974	6.49423943161767	6.42476980751571	6.41089547784743	6.42476980751571	6.59466510176811	6.63967042106711	6.343632847241	6.10496463849391	6.44698808816002	6.01674571461419	6.32725811400471	6.5897455177449	6.50450300671994
+"PTCHD1"	5.44216632379868	5.05673226457212	5.19058512675329	5.33028942831476	5.19398890067128	5.0490887198072	5.37102537118923	7.43237736891193	5.22436675581696	4.84221627965717	5.19670973408022	5.84465985490467	5.21586714228141	4.89585039673879	5.05488379230484	4.8623012207512	5.26712455298785	5.04965589975934	5.56664632852087	5.18126388086518	5.22881054391991
+"PTCHD4"	4.10048162020643	5.05836181339646	4.75190868026837	4.87178155670733	4.72098390840975	4.69197037588922	4.60730322196241	5.14218514536133	4.74539219880669	4.84919585219959	4.54264705184188	5.05797468590464	4.88913471521987	4.97993457999925	5.39581250613378	4.67282054605204	4.93896570231708	4.51526868561658	5.04769096829706	4.7759496529525	4.7095425334326
+"PTCRA"	7.42751376852352	7.62878663584755	7.70871554286297	7.71537777486063	7.38692658504192	7.59151985100183	8.30089537080302	7.64400419709474	7.78409357795036	7.78559056261644	7.67213180399088	7.58539682875497	7.92136556696667	8.09993660680486	7.93300708479547	7.3250448178234	7.70871554286297	7.67767552361936	8.05892677907651	7.31453785707419	7.76454363419558
+"PTDSS1"	9.28148631601991	9.50069613379848	9.63043914487309	9.46523422633242	9.83140769617283	9.58464118838509	9.09857559191006	9.41086250016598	9.82234762145158	9.92133646521832	9.25948530343768	9.752897695786	9.59895005541288	9.30639653815894	9.58251673476189	9.3910355933476	9.81976511138318	9.39413641448212	9.4529079810145	9.88494592050627	9.93476953763387
+"PTEN"	5.81782127032752	5.3265132263326	6.81294338801741	5.3071915317932	6.08289089540226	5.83802140161414	4.31058081392729	5.60188374254346	4.91912212229306	4.08464870485325	5.24165376629275	5.91802260720067	4.00880539464295	4.51844270017186	4.38310153331926	5.49949972636926	5.06645110052053	6.13024571600379	5.12906069912838	5.26699897334509	5.54195250892989
+"PTER"	5.83717262153825	5.7629098024708	4.98200908134609	5.83205120231978	5.81995700474273	4.52219511415375	4.83838607186162	5.46056909500187	5.63149892329837	5.85586365688727	5.54439528204255	4.74309110658317	5.26918157525784	4.94353236858526	5.36538450004248	5.70742392907342	5.38400634095583	5.49657063838758	5.48922764190207	5.82705148691839	5.88673986189026
+"PTGDR"	3.24219779113619	3.69060707913157	3.49543832938896	3.38815919666752	3.59386137030145	3.41361772422795	3.63025930384008	3.48961250036115	3.49543832938896	3.96536334623964	3.61749270794214	3.3794005345553	3.587972821101	3.35078496618885	3.38208864300307	3.30788256428248	3.40426997462834	3.30057786036041	3.59022192223521	5.36092985787381	3.27675320161097
+"PTGDR2"	5.59326332291082	5.58842012655582	5.42801082261266	5.56057182002737	5.18940294221349	5.63458610279759	6.11367082491704	5.4278622652366	5.20896500735496	5.57585348579924	5.57585348579924	5.58998915888436	6.07407865899917	6.02374877858389	5.53897077312582	5.42744841947641	5.65205844827581	5.42215842776508	5.46437205119002	5.15196424009095	5.60873702250722
+"PTGER1"	7.39441306027273	7.46365944110838	7.30856039523106	7.45229478638744	7.32292067967873	7.50254900206502	7.60198996237287	7.40391730517837	7.60088637596593	7.44483497253102	7.06446916290811	7.41862287394997	7.57890677157753	7.56819422617323	7.56961512401488	7.54955601709001	7.44483497253102	6.94424938269625	7.457335893753	7.39948033135733	7.33273352080147
+"PTGER2"	4.11547623422246	4.12359052740168	4.10698345098972	4.1129157976824	4.14014484853846	4.25993723350973	4.2339995836804	4.13021774401328	4.01828509375528	4.1438746409584	3.89080405594442	3.96368805428083	4.18612328892076	4.22190326023683	4.06585200052371	3.84727753183715	3.94505326591593	3.99254869585571	4.35991517443099	4.34071891964291	4.31284668163351
+"PTGER3"	4.98761034793023	5.18536126695537	6.37908766330448	6.63769356832253	5.53702643657164	5.20056826241901	4.44338020749277	6.38586673202084	5.16832902236931	4.45503733336714	5.04487919524976	5.10815901754537	4.69584981190086	5.19402969375273	5.28437882898049	4.99395136326933	5.3356419411501	4.93387685923265	4.76781908800743	5.34923195044544	5.04003097162902
+"PTGER4"	4.72612690475935	3.86845920998372	3.57990550240795	3.58889062943213	3.9212142935594	3.69305848859646	3.54047572486902	3.49486236473228	3.39522183774774	3.97579568512269	3.84746626312461	3.60738059912098	3.64018304185468	3.8033857984105	3.90158043567697	4.27544524638859	3.60305803824458	4.37578983075006	3.68010184522892	5.45124121372987	4.34804949809644
+"PTGES"	7.13148830475618	6.86805901779806	7.05323431869531	7.06006397326237	6.60126309398489	7.40066470576836	7.18564402986247	7.14072688732937	7.31229677711282	7.15504436481315	6.86189815175182	7.04308262899991	7.24416732420415	7.52307391247742	7.06103679351619	6.6812991626138	6.96741393436128	6.6919119467478	7.21083495335722	7.30330775550693	7.03321854340625
+"PTGES2"	8.41056071206806	8.66961707715744	9.06589328993909	8.72638169402569	8.92205219571864	9.00492824537756	8.62678381311907	8.51619174219233	8.72420986029006	9.19386722127688	8.73208301954748	8.98020262587982	8.82004648806652	8.93933615141642	8.47875007937105	8.62172544898866	8.7362322791528	8.77952564016606	8.72830487896986	8.94518301073217	8.99174730385362
+"PTGES3"	11.5147827450432	11.2924470478649	11.0393498730404	11.4740985629594	11.2205065564975	10.7728409952289	11.4571668915276	11.477149360619	11.1325442556149	11.383077291712	11.5235889576346	11.3321518793368	11.4807232873861	11.0392538782461	11.4593446304215	11.8688975204231	11.3013328606471	11.6538449961088	11.8322739703571	11.325255346885	11.3553806853852
+"PTGES3L"	4.20291384464216	4.87149192264963	4.88093528374681	4.42320262807781	4.84978067591393	4.54102914775957	4.43789178954249	4.46187209362076	4.2947976575029	4.68969610855529	4.29167117940074	4.7654494754196	4.35601274283148	4.48531681108115	4.44640547777184	4.54102914775957	4.63885831093965	4.4761113018451	4.43789178954249	5.01062936465008	4.50620289627224
+"PTGFR"	3.53924296455088	3.91611427709094	3.67093835182359	3.64427344373006	3.66506263167566	3.78625944203394	3.59387790348039	3.52625350159576	3.51173562915741	3.9218389632193	3.43198528921868	3.60038221913333	3.41774274035064	3.74235217017352	3.49742788626698	3.48237972906779	3.57855001503256	3.57191738330199	3.82470224737055	4.45503733336714	3.68338248732777
+"PTGFRN"	6.71498365542297	6.87395901018261	7.47881087653649	6.93074957205854	7.54383971972321	6.68117576594499	7.15900537466815	7.07474928194594	7.29110574686125	6.49630189999384	6.50446739154336	6.73989965719138	7.04227430951377	6.78454095573584	6.89633953332952	6.31589768335869	6.86514611500985	6.77159383282103	6.54591977066938	7.28896979984938	6.71480283067845
+"PTGIR"	6.18064162679053	6.49866322833612	6.56937937826244	6.58462044955069	6.47891707348748	6.5728380978364	6.8037293502744	6.42751238252575	6.65699254710184	6.74539642359874	6.41778249814662	6.57671570342721	6.51167533207136	6.59645849546553	6.46654086522946	6.41297172230716	6.6308328899224	6.20596305735731	6.6157826780449	6.48979088950824	6.79897618781013
+"PTGIS"	5.84565931452729	6.04813652247911	6.19214407178539	6.18690346774206	5.92158785667282	5.92679784099685	5.7051409618059	6.37017332102002	5.9108134942298	5.9448387096121	5.53449880110488	5.85625677004231	5.90928879100815	6.10937273777949	5.85393616738505	5.80253372974966	5.9537890893492	5.71425805461592	6.0852587322043	6.52642396109169	5.90071536791705
+"PTGR1"	6.63721453580027	7.30521991158425	7.42913520572464	7.52547548499833	7.79197788863358	6.36307546950789	6.59528087207364	7.32973761627161	7.64819759181984	8.38465257944752	7.43226017475024	7.77848218084998	7.3590772719204	6.9862444696951	7.56906988863526	7.31057150954003	7.67069545415594	7.24871404084437	7.33126665067792	8.45212269484267	8.02835176356148
+"PTGR2"	3.76649585251223	3.54014252839323	3.53111428094611	4.13384906960625	3.53111428094611	3.14228074638776	3.17100683781993	3.78845873817073	3.61123779574575	3.30686942165779	4.39137203920438	3.33573705450961	3.67435391392996	3.47778105157713	3.35611986175084	3.81515050794916	3.14486560544766	3.9825318694447	3.42270176337242	3.13645256648828	3.42969636220642
+"PTGR3"	6.17819710113005	6.03906175902507	6.60202204939536	6.46964488619953	6.21560413456347	6.54809057595236	6.48802909417701	6.86337711503178	6.79397998091837	5.92085257646363	5.61929443359527	6.05184720994111	6.86127250119155	6.65496772790677	6.95482136747765	5.78993639950095	6.72560974422153	6.69697176019173	6.57524937122063	6.46964488619953	6.01457031085439
+"PTGS1"	7.07363301880595	6.23486119566951	4.99358927801462	5.94347749257532	6.14893618509495	5.39970250653346	6.07961735452487	6.04606228077583	5.89958933692236	5.89137934959445	6.28115609377793	5.00291561544727	6.0518882389905	6.19760555289254	5.73320914836614	6.39776699258764	5.34624630565057	6.07035285406464	5.85289567935095	6.82591346141592	6.78513513027871
+"PTGS2"	5.33090405461667	5.01494599163226	5.75618147825331	4.65915049192384	5.84286079989324	5.78677877309554	4.7700266376125	7.05312158587507	5.09122390903668	4.39059133083989	3.8441306304994	5.72443533868008	5.00202999874536	4.73344037389094	5.66370877080259	3.97439214646989	5.84470855641524	4.84062280276707	5.3028575502513	4.93233003771095	4.73523952358582
+"PTH"	3.06303568535981	2.95230893690578	2.96153593606314	3.01449908281559	2.96201906200434	2.98586326033229	3.16694794945897	2.98517784934112	3.26918576867189	3.16333637370676	2.83415717742767	2.92470690013548	3.11836547219531	3.2371083959586	3.20957930913891	2.86596487101966	3.01449908281559	3.01449908281559	2.90091230709267	2.86313559281248	3.18182377417976
+"PTH1R"	8.82433882582772	7.41559719389847	7.54655483869829	7.86363628959008	7.48323438825167	8.43614750491203	8.21325585832765	7.71262264510074	7.89254381248969	7.71390501397212	7.47701394898373	7.29806903013671	8.0547521097327	8.7757904112676	7.62266671056207	7.06740619265941	7.60210551541848	7.43321941008823	7.50276706993531	7.98993160528731	7.05540708855592
+"PTH2"	6.6042285960818	6.84311769296608	6.70210935627004	6.99495827045417	6.68206658221252	6.64273928790173	7.02823679380972	6.9132475821373	6.98174612630436	6.94595588277784	6.7398751709577	6.91110417034477	6.9692234221442	7.10190318809491	6.80720267062748	6.8876908139862	6.96518864703449	6.64616775799385	6.96112692005467	6.6963452732411	6.99156201162052
+"PTH2R"	5.18391081129588	6.7775300936181	7.02981487324759	5.67870309449622	7.20334145251302	5.72619802851475	4.88901263303583	6.08015395540002	6.80017960873307	6.65381516428853	5.78786216328566	6.41831183871463	6.26690882677525	6.05941122128637	6.51387195470705	5.96441813567322	6.68543085263517	6.26611307196257	6.55788211017284	6.71066941823524	6.17858878121056
+"PTHLH"	3.49809896126265	3.49907232928224	3.9726689457591	4.04100520105853	3.64646847182225	3.5038675846943	3.29452600887376	3.75143162696376	4.18263954026185	3.53741376891322	3.58334972697713	3.47115147475991	3.48322313654186	3.76832591249527	3.65653059714466	3.43249419067608	3.43286462743879	3.38724054684744	3.51044690613444	4.24806308074997	3.78031856320109
+"PTK2"	9.23693996813184	9.73272420812737	9.15533337072966	9.23693996813184	9.27472997912481	9.19250204763318	8.61382973710194	9.04552454245585	8.8661064508516	9.22884214344229	9.93507068625835	9.45441557986059	8.72076088286005	8.93090846017119	8.66400334627457	10.2385615978442	9.26298376558364	10.1250717578218	9.37226340054952	8.87141188115339	9.42598293603337
+"PTK2B"	6.96393984424023	7.50135724111558	7.83862609877985	7.76463371361434	8.47611014326588	7.74639635645573	6.987967680938	7.48236568782982	8.16673052516796	8.75590795379469	7.15185206489235	8.83184857284054	7.57829380559466	7.38663378597492	7.10505462496963	7.59671479080959	8.60803728665388	7.79135779181902	7.88334562174816	8.80110991571888	8.686008442701
+"PTK6"	6.80729888743524	6.95869270123052	6.5381316585459	6.97392298697461	6.72231728424016	6.74226721763952	6.95758766550207	6.91931292829662	6.91931292829662	6.92872001414893	6.72820059847048	7.10052364223379	7.01572266454338	6.91931292829662	7.02255659901795	7.00829832413883	7.05586767725252	6.33186399096419	6.95916106112688	6.71079999956973	7.02323752508807
+"PTK7"	6.22667114093878	6.29834662077016	6.39522406706871	6.21576013522504	6.23192988922633	6.749511235309	7.12621568923214	6.20309208252457	6.15599483078467	6.44338718516891	6.18322432397879	6.46964488619953	6.53945016368503	6.64695125309935	6.37852913419342	6.1556849129195	6.24262071888236	6.02088728440141	6.50486911363902	6.61879002764743	6.0077724735066
+"PTMAP1"	5.5452835900132	5.91029988505486	5.70421642260263	5.93136932011757	5.81468513226108	6.17084586624146	5.60337770892817	5.47905580945841	5.42599263847383	5.42796803798077	5.96304690231985	5.41923407934567	5.83551616850682	5.74373443167917	5.63146708989489	5.86140423084674	5.64391639794114	5.7409966801492	5.62033810718845	5.39514658795992	5.45938399084138
+"PTMAP3"	11.0615108913281	10.8704793985981	10.7034352850506	11.237306570213	10.9533578321674	11.3794159737895	11.0164025283996	11.1408263302491	10.7563743244118	10.6724581382638	11.5175509792032	11.011720263557	11.1529395485919	11.0809510699456	11.0463424953295	11.3660478434906	10.694638399223	11.4497871158436	11.1858821290239	10.4818923088063	10.7580504714003
+"PTMS"	7.47504775475993	7.31027586723188	8.15294979043795	8.09330063794386	7.9051810506658	8.03962860238545	8.41158853087209	7.8414860802863	8.15797927843301	8.42663035540422	7.63989323531147	8.39785736797592	8.31207855361125	8.16998120643961	8.11416011236446	6.92760531962269	8.0768482785596	7.62438306868262	8.24362137343035	8.32140921996224	8.04194472428979
+"PTN"	10.7827116720502	11.4204939077767	10.6467022058915	10.5133702703622	10.9970526064004	10.0487878830609	11.0561956658929	11.2855165110286	10.6970749360567	11.0388415512339	10.7986269003635	10.5366799806612	10.6985854846117	10.6575378037085	10.5981095504883	10.2199622612166	10.3309271002732	10.4071320571458	10.7453511923744	11.215054103932	10.1331760510479
+"PTOV1"	10.1170944158156	9.62993150385773	10.0088667042618	10.0818231828101	9.59892063584603	10.0413017117651	10.2394810821792	9.9643178604475	9.65668633789564	9.88085370616049	9.62176142305907	9.94594042681946	9.8586187154815	9.81489489807298	9.90722766124946	9.95375013727809	9.83806662411281	9.82092121897776	10.0394393358862	9.8935681265839	9.8110008351361
+"PTOV1-AS1"	4.92155997132009	4.87228687093306	4.66309177277099	4.70330590175963	4.82222514631362	5.17523964985299	5.759610776638	4.79478831630422	4.80997462610909	4.86829016779465	4.7939943459758	4.67398075973966	4.95766461660972	5.25003290515715	4.74107938195196	4.7939943459758	4.41531914228567	4.74015250726652	4.87421047025914	4.7939943459758	4.61608530335046
+"PTOV1-AS2"	7.3113523963136	7.25885344385154	7.49351455648563	7.39189934946603	7.07488507545553	8.00247664405468	8.17027248980365	7.33306397831585	7.48489731322786	7.3863175719411	7.22245151013071	7.3865618815875	7.56415230799603	7.94589241872333	7.35659821798158	7.33152275727045	7.40156047922204	6.95695445889622	7.76879056761142	7.32486422481452	7.42711508957009
+"PTP4A1"	4.44023909812683	4.75735311599324	4.58196877833809	4.60867252238055	4.63416626354512	4.79206538414331	4.93043875681082	4.71627697837166	4.77144868513074	4.87281349729873	4.4242899591476	4.45845430811878	4.84128344073327	4.67594270928445	4.52839770257324	4.84128344073327	4.69815139292798	4.34921545494278	4.65503060399749	4.57699297172844	4.82149734360008
+"PTP4A2"	11.0278115130238	11.0707977284045	10.8598236847705	10.9262823312714	10.7572561931861	11.4929702869102	10.5813576469389	10.7137081608545	10.5416179142627	10.4772074615264	11.4882068464113	10.5290181313542	10.7238338349618	10.9349765671215	11.241716697808	11.5351221566106	10.5662127780496	11.6689012104301	10.8679452986884	10.0589966252521	10.8685637588438
+"PTPA"	8.97848402577767	9.06263948415192	9.41902018754452	9.26704492168102	9.33866509099298	9.61561112926334	9.63261134415495	9.28357598220306	9.37973336278469	9.42131508983654	9.18783848032466	9.47621821715484	9.39369267708944	9.16352415733769	9.20820466099773	9.02111742343774	9.38342463074651	8.95663761651021	9.25620382529056	9.53952388126057	9.46101047292456
+"PTPDC1"	6.86278696602064	7.39917074568794	7.29548142036856	6.86598182852565	7.33652235871017	6.72670697142586	6.67600083808466	7.02525744700984	6.83000132797491	6.66697161297114	7.73337835036463	7.30242691784505	6.59365755427571	6.57991143436005	6.65312630241598	8.47499058060619	6.93463714202841	8.39102573544102	6.73124808526802	6.94005241795104	6.89036439652266
+"PTPMT1"	7.56770808342463	7.11412120291325	7.09770549094682	6.87093844110674	7.41552541134184	6.76512820278116	7.19598891191905	7.3669377397674	7.00640360463918	7.38728094501983	7.61965351117263	7.14989904416971	6.78382874381472	6.96419034520064	6.84601860891173	7.2409141197762	6.96585487579743	7.62459899371406	7.17970571319961	7.13081736787554	7.0473465084258
+"PTPN1"	8.28388066080878	8.19555102986397	8.03840560436014	8.09916201824113	8.04036953398186	8.19367340068145	7.95202862340135	8.61713794156574	8.211883617626	8.16554393409265	8.13289315814954	8.46296084742084	8.05332350631575	7.89996147695936	7.93660858999224	8.27037953145843	8.24536453871257	8.47958316755543	7.90246405434775	8.33880594566881	8.10512267700121
+"PTPN11"	7.94316442186083	7.40412404183383	6.53324619259922	7.23569470141718	7.32301521867133	7.50901144422954	7.63161145669526	7.68972045651923	7.02503569258773	7.37437800917464	7.67213180399088	7.31027982680434	7.10149182373411	7.29367402769047	6.50718464231463	7.23526364657392	7.36764642736673	7.62609440365277	7.25300582394089	6.66261993552809	7.44760898582181
+"PTPN12"	6.38237457534327	6.1567213387605	5.35586809877852	6.12074406428315	6.21659790294982	6.09975405301023	6.56303840252903	6.27609703828615	6.37294549571932	6.55512119309806	6.59498831640344	6.21659790294982	6.3610426345143	6.66078258467116	6.02906809949741	6.09818497168135	6.37927473744055	5.97933087128601	6.37872596753201	5.85037860556996	5.96006629712645
+"PTPN13"	7.25280516975859	6.88091968923295	6.97379279055406	7.16663801759052	6.49861913283159	6.61857406983337	6.8539500890771	7.1331983140179	7.21392206441924	6.58529780858826	7.64862775780469	6.64942964815253	7.02771038350416	6.97379279055406	7.08370006388862	7.47329522494881	6.38960716872139	7.91032283895561	7.04153302132836	6.62862652501929	6.56342586747504
+"PTPN14"	5.52880475741418	5.29922372852627	3.64338984592196	5.10788669021563	3.67663559970249	3.89906394998402	5.22152071180777	5.24539179427194	5.3256031094788	5.16304009926144	4.85351927074297	4.8269696342337	5.60855028311553	5.44400561551723	5.3848391894808	4.48742728493101	4.99169548668545	3.35512243127877	4.90462259405549	5.20010712290644	4.66415821147511
+"PTPN18"	8.54875879878145	7.93358625127847	7.835457532012	7.89697266374918	7.42791278492474	7.47685985485512	8.01071139816037	7.82997360985465	7.75476932244074	7.835457532012	7.7382860827309	7.73560650931242	7.74408925361411	8.12008088172669	7.55280756782372	7.79837989875691	7.87898573746991	7.62989019947754	7.91426422715863	8.1007141495662	7.93046599325086
+"PTPN2"	7.0144768389693	7.1203175573253	6.97478128482972	7.04092763572706	7.21186922799405	6.77813984775574	6.68343193595495	7.67361340409721	7.43643827306921	6.72786298925553	7.035591738774	7.30204986814771	7.03094304476183	7.0944492532548	7.54818816303572	6.58939289878702	7.41180491789984	6.99091621329748	7.51023046573302	6.83236469371306	7.1771133568377
+"PTPN20"	3.96072465251941	4.16886834660114	5.40512119989359	4.35173913996423	5.85275515370317	4.59582786327734	3.67204650009831	3.52812996619947	5.05736233446429	4.52248285599337	3.42598080769835	4.58573969959379	4.54131003994562	4.15360586434751	4.43385231992617	4.10513678402788	4.71559221922911	4.87146251727654	4.24290504371867	4.59228174364069	3.99824683118529
+"PTPN21"	8.34923129829308	7.45659747847994	7.25301709556619	7.52017007095221	7.0754089441516	7.12493283659979	7.37028990012233	7.45480023962289	7.56086385795096	7.14869456083796	7.73394094261048	6.9862152660661	7.1926179510554	7.550015488345	7.55512551332125	7.18469989736373	7.27399052847307	7.41364613301839	7.19476202184229	7.12387637891905	6.94202762924746
+"PTPN22"	3.94991210881365	3.57394426669403	3.70598763758263	3.71752405148947	3.61575905511897	3.69305848859646	3.45530655024382	3.61575905511897	3.61575905511897	3.76649585251223	3.28283548464024	3.34436515286698	3.61575905511897	3.51634949094011	3.68047136076167	3.55489960412014	3.64390510687965	3.55216415991635	3.67814665403378	3.325560810271	3.71386873646956
+"PTPN23"	6.18838581133192	6.05705369344318	5.33144539778267	6.18838581133192	6.18513492739027	6.4265052895557	5.9561898455028	5.67326333550381	5.55280538558952	6.46502434470073	6.29033297528154	6.59694797047904	6.02193236345717	5.57472523867396	5.56920695770818	6.72554589123264	6.19323716018692	6.38364599737548	6.05369842291121	6.3606417416573	6.22436321691284
+"PTPN23-DT"	5.90362482394195	6.0572480129743	6.13456027035197	5.78164620711922	5.69670513017582	6.02524405259331	6.40382511487175	6.16338232955149	6.20957571068331	5.9083285389966	6.10351974191714	5.9624436947383	6.14942367789405	6.14523491080428	6.44418973603579	6.4415673648874	5.85219979600404	6.03701396451061	6.28088865582865	5.95378814699371	5.71830133807166
+"PTPN3"	6.0151880329306	7.04639774360071	7.62223051301332	6.88154126808119	7.70740135207226	6.83371169363764	5.75920988077472	6.87448037596796	7.37044292030285	7.72683052542576	5.92841329882791	7.56912938646109	6.79746473408939	6.52616381691284	6.85841341633668	6.85294628056504	7.13717581818329	7.10958365941667	7.16442667650912	8.00226356474601	7.40931677369227
+"PTPN4"	8.14393635364718	8.30499296337834	8.80915793731203	8.32530829115311	9.36202208210638	8.49514450678785	7.75265543030581	8.6861488493248	8.97922080239205	8.89210019339145	8.08424743878106	9.27379945957186	8.18315021491108	8.53599518237527	8.96703798373724	7.8620170799492	8.74437391528285	8.68687492022701	9.17530759012332	9.07419323617038	8.80371992218351
+"PTPN5"	5.71442969029669	6.75853870970922	7.38484985831191	6.7287427161312	7.71517899749898	6.32386100914887	5.64531860737409	6.67453090427133	7.08418057779493	8.03151156262229	6.41967769528782	8.02930058366594	6.28816126081896	5.825088776901	6.19934398970307	7.04167848571245	7.36306798356616	6.72510678686815	6.91954443599298	8.37537312833422	8.16663683865164
+"PTPN6"	7.29006454606568	7.03348832395965	6.84902469954864	6.85669976886703	6.67101434527629	6.76945643016852	7.13734117738665	7.02493474499312	6.79712934680056	6.64342793958322	6.83607938954054	6.72691492382445	6.96466295743427	7.43770328095596	6.93811125598975	6.94258575567185	6.8390152950391	6.88939865902115	6.81916809452823	6.93711450444504	7.35149787559965
+"PTPN7"	4.94276073722159	4.76572285245587	4.942019922918	5.13590635684315	4.79964922216798	4.92417170956087	5.00145633191816	5.04254002856192	5.09122390903668	5.09366891925728	4.83044038183474	4.9540876009228	4.9083888366829	5.21069086701762	5.43691818798249	4.89406885448053	4.98654167611906	4.57058007069246	4.94979496301603	4.94936370266715	4.84665762902361
+"PTPN9"	5.59353938463501	5.75681547264052	5.88655354643156	5.99196508556694	6.19981042212815	5.96651652677005	5.86097678425663	6.33306524435748	6.25080111508418	5.45963737304973	5.34854740661792	6.02966532592664	5.87974272841236	5.43300576023898	6.26948073636618	4.86986392122983	5.87974272841236	5.51707753931695	5.82182878201135	5.7496403267345	5.93890478039461
+"PTPRA"	8.33912433272903	8.20047272653303	8.09407568646134	7.86913111317603	8.55812417555448	7.30600891858235	7.9034883660345	8.38014607506505	7.97513239735554	8.413045467095	8.62886915355192	8.62235256627517	7.73796658933235	7.90491623874817	7.39902791098564	8.23766232799258	8.09864262206091	8.22876139152525	8.26298521034065	8.43790590809598	8.15369264466836
+"PTPRB"	7.62975343212928	6.87374486430324	6.95939338997434	6.11389607094611	6.5833387933712	7.57459476871063	6.42067291961682	6.31601944212345	6.18344937404937	6.60026817189251	6.76117843771455	5.55518363165064	6.67251186063467	7.33054036835928	6.04045793767003	5.81299957882558	6.15369525821754	6.95001309286163	6.14721884627443	6.66579791058006	5.73357998962923
+"PTPRC"	7.26601582069071	6.08152764894842	4.06250172179595	5.07479127592805	5.24629018404154	4.75384470795145	5.38217038699828	7.18247945274857	5.11115659563993	5.46656382729739	5.7060001128209	4.98848243446755	5.01927668871185	5.81435300364166	5.29578225961861	5.72438727972873	5.74816922734819	6.12105902687047	5.93018087089397	5.94673021421258	6.43053207703416
+"PTPRD"	8.00887121634178	8.69584133933363	8.30745886271429	8.12662936656146	8.88842915326193	8.76552345071799	7.69551945116139	8.01792356532432	7.66527050495329	8.48325798340066	9.18438156738083	8.79024357704542	8.28236105563987	7.92041750246999	7.7223042317955	9.62442468007503	8.44918662543905	9.80149299245475	8.2121919483953	8.37682191977646	8.43818959494024
+"PTPRD-AS1"	4.65710134263961	4.40926302654624	3.69935618692686	4.19582218668421	4.09416393825168	3.60992872973085	4.31025878453079	4.01887869607163	3.61935433922134	3.78748080595904	5.05204655490962	4.15856417790799	3.88372266694779	3.91345968639986	3.71774800411005	5.37682447631082	3.63648556505874	5.1805457763234	4.08583791360896	3.38238731642354	4.19899468097386
+"PTPRE"	8.62203470723871	8.78536285523761	8.88611979470242	8.44296885225611	8.75680293175253	8.48403230814029	7.43925313148286	8.2039022597758	8.71612813950717	8.5686723525307	8.17680927061487	8.10600748073225	8.79354333759591	8.50872345589232	8.56175805898939	8.71095143841416	8.46470202963305	8.57745192760819	8.14343120125734	8.85248164002802	9.04955752415372
+"PTPRF"	8.84331324655492	8.46985921101144	8.32618800406161	8.54618424865006	8.5914643956962	8.2221253750372	8.8262959407383	8.44044504479725	8.42340352262059	8.75681196189568	8.88247102209122	8.73621210270688	8.15181836152096	7.82292073747405	7.46088325147097	8.86065006189368	8.64456507349418	8.64715734147061	8.13799174078098	9.07014419381701	8.30727354052531
+"PTPRG"	6.75998972223274	6.22350939168408	4.74687803156437	6.31380346916674	4.66929369363993	4.96347165663013	5.90442209297904	5.87471950575862	6.0512757950919	5.69352400851273	6.02475222682701	5.8598757649254	5.9478700026637	6.38175328692918	6.06891594494993	5.44914617753206	6.14237823714479	4.1099017251034	5.82863382386876	5.87806748823845	6.00793584046257
+"PTPRG-AS1"	5.44970032429896	5.56035088690433	5.65367425287337	4.97996039125633	5.73769152002735	4.76188856412562	4.78968513278585	5.21739460968206	4.55256068961521	4.96582849486356	5.35308411007756	5.53294215327753	4.73616034579052	4.93195416989339	4.76005057874203	5.5927933481302	5.11805519908155	5.18206729148215	5.4115511269895	5.21997459539575	4.80657516469815
+"PTPRH"	5.28247918464551	5.67329383673285	5.69456787257115	5.63696021227953	5.55458925598238	6.46482774592035	6.07443864637168	5.67565501520038	5.8102866997882	5.76008584833962	6.25928253681251	6.04321636218951	5.68551938236112	5.93128221819997	5.79286824690835	5.30211204607247	5.7662511083396	6.33462147375256	5.94029149693289	5.60246841067978	5.84002091101133
+"PTPRJ"	9.09443525453877	8.92584669760301	9.25547048847527	9.00289245106261	8.92576007117281	8.95300069622958	8.78291739665453	8.78010768720295	8.90010938097094	8.63119318737473	8.68568798114552	8.61691952581609	8.88381056731069	8.88889548119344	9.04390489323771	8.88889548119344	8.77823197457961	9.20602937053829	8.75457899501301	9.13835384351454	8.81675676308128
+"PTPRK-AS1"	3.15777904178347	3.22047104843182	2.97744361079824	3.2371083959586	3.0623661420652	2.88345996132337	2.89511073080013	2.9862971426836	3.03785365932112	2.92024358194266	3.12706679898042	3.12501826517619	3.11651025294701	3.14299138694796	3.14699382363641	3.46723182154058	3.1262111501254	3.12290108908164	3.20901276928803	3.16820950641945	3.12290108908164
+"PTPRM"	8.90882625227147	8.73157773023771	9.40784111028239	8.77245023577332	9.22995916381218	8.71410294953502	8.25134228661924	8.98096433748435	9.02547802992525	9.09524740742978	9.18580550319495	8.98096433748435	8.96391528954105	8.82841282723963	8.82710422622161	8.58306753792451	9.21151768721457	8.87419513859187	8.96370506649458	9.36564343606738	8.99598621316873
+"PTPRN"	7.53068629078535	8.03737375025105	8.75474889444848	8.08707358273977	8.86777201559036	8.53070000056195	8.46513594376123	8.0637022427973	8.34290506946987	8.62811231231367	7.71939157663887	8.65874883979274	8.333247463225	8.10783076629301	7.91101988081388	7.91652511414886	8.82662946951847	7.97135201262206	7.88599845313761	8.7759796893209	8.69997100373365
+"PTPRN2"	7.9353942152987	8.21735270035397	8.13274546167182	8.19361416749723	8.93287560437677	7.41631027277363	7.7106845871478	8.15463329570285	8.3144221416445	8.86036699584303	7.6580322778675	8.32363358572252	8.03671128121177	7.74759470039753	7.75515988861805	8.12636731166517	8.46708647800566	7.99582154822719	8.10396462279418	9.14884963172971	9.04003951056491
+"PTPRO"	6.52911853135274	7.21989886550208	8.21822702506746	6.95703483007389	7.98178213737788	6.44287183003963	5.55890411844152	6.96034866943324	7.87476249034981	7.84672971951996	6.55741241132669	7.8043311351671	6.73432975008962	6.31885060165051	7.27973671106153	7.30112861963311	7.57196610686121	7.37144823191858	7.05534878064744	8.47930946773032	8.01536169394133
+"PTPRR"	6.27819326188236	7.53694637622954	8.00646794602108	7.39013714267727	8.02108002801461	7.05087459481111	6.61544520787916	7.11904663512242	7.69041069064887	7.83353120339158	6.66027393266585	7.62395912553416	7.07138164926782	6.56250891253513	7.35150247650788	7.57736402828694	7.29367971098066	7.3972727944444	7.2670849450672	8.11959047156993	7.87859936826948
+"PTPRS"	6.36919497145132	6.46026935328176	6.81361583696569	6.6308328899224	6.45797034348466	6.47445934333279	7.21848057135866	6.14036489765665	6.77217080628637	6.86985287112989	6.91596247730841	6.66322066877608	6.74731606813165	6.6308328899224	6.37446610586986	6.73137678305706	6.72655982938084	6.56797203003009	6.71548733971656	6.62082966953358	6.59647831494469
+"PTPRT"	7.24972168214721	8.84953593280435	8.88834669415219	8.6873605874101	9.1539619453853	8.63323018673994	7.56064457301645	8.727531504754	8.96918250308816	9.13420861178652	7.89732543965522	9.11221857397821	8.60319149121196	8.53516370468742	8.73526263713854	8.04881702343532	9.11374440285395	8.50392730327949	8.65902276721394	9.29116017656001	9.01004562093656
+"PTPRT-AS1"	3.38551761370937	3.45267322332823	3.55364024151657	3.63380446419854	3.48401303533419	3.69305848859646	3.62998194708685	3.46895669046469	3.4807189953918	3.54047142768013	3.35301225798273	3.68677898483993	3.64080492503836	3.53399009403747	3.48401303533419	3.29738382606452	3.54587432208497	3.44927333376118	3.54913898314797	3.45543993057874	3.5836104761289
+"PTPRU"	7.6330784709028	7.51506180533569	7.66982444026922	7.68788250111671	7.64356807506217	8.27460078088271	7.8091876471639	7.52634339967555	7.79752417437979	7.84446610697825	7.57394555164655	7.90291440215995	7.999093225582	8.08553585001012	7.80692493811079	7.74890889803293	7.87026032820518	7.75068671725023	7.58566311346812	7.87837228256484	7.79417017729723
+"PTPRZ1"	11.182043375664	11.1752361863477	10.7914072936369	11.4137318927132	10.630564015238	10.2197988082097	11.3977550586599	11.4758062489915	10.9873500311579	10.5358334464435	11.4738914422351	10.7005712428592	11.3557730552123	10.947017516718	11.3775239844641	10.538461800848	10.7640935479879	10.6378532608559	10.8057830822559	10.1165985180891	10.3479986408391
+"PTRH1"	7.13497798605798	6.54367896325785	6.91180097121969	6.47518787471572	6.72298171410934	6.79616168825752	6.84026365602529	6.75369649905545	6.86931054000436	6.97842492505326	6.85654842552788	6.75369649905545	6.55427899914761	6.8249517568296	6.62768321254843	6.77293544117199	6.39455114265216	6.5671449832991	6.70198017526214	7.17340467323547	6.70875939523931
+"PTRH2"	7.48610915416074	7.79665261965502	7.88265426036972	7.78358400912922	7.95792059220839	7.61265034176549	7.65855898109452	7.58479994638752	7.8746542263516	8.07042743983384	7.46843143587616	7.62050472484154	7.78734530934576	7.43258481572532	7.88237346811843	7.79737108465436	7.64070395358894	8.18186374889039	7.78536621238927	8.12316768149471	7.86930532729465
+"PTRHD1"	9.41631009588156	8.84668983437122	8.99769144533945	8.87595093140176	9.19031013325542	8.80102380423525	8.86367309362618	9.19789641608851	9.45654235258918	9.1426503030422	8.9157210371898	8.84621262168818	8.82289105539885	8.90044508916571	9.2960479853337	8.77648805366764	8.91887484709442	9.01026522233563	9.04708460933076	9.13657909909477	8.93699582464747
+"PTS"	8.5395508210335	9.03898834431737	9.12930651130423	8.96416551070563	9.44684071728035	8.81160157582962	8.39649172236247	8.70855599404938	9.09322515021024	9.44437510511521	9.04193658916226	9.23642667000093	8.95828615900442	8.80385530037423	9.11112638351889	9.54381427546261	9.03951796381037	9.46051717817236	9.07229501506478	9.25148094190988	9.33157049197383
+"PTTG1"	7.67063161170396	7.85785367178066	8.25855875718252	7.9396299476929	8.34082382479303	8.04338628655228	7.49495211114579	7.98402027661062	8.194647135247	8.10140832525574	7.33261262840969	8.17003554484673	8.19447335057223	7.89260379466157	8.15004856912576	7.83267990085532	8.12557160152405	7.78795890810873	8.04069405969275	8.44388540405308	8.17286540530701
+"PTTG1IP"	12.121031585904	10.7340808028572	10.0271988620849	10.5740207685037	10.0314875833225	10.5045747801499	10.7893803484608	10.9906089572132	10.5669304976083	10.2975016836453	11.0873999664538	10.5634801566076	10.1708508208249	10.7397687100218	10.2606673289436	10.8690753813628	10.2421820331217	10.7140909444033	10.5463428565145	10.3219619012773	10.206905538225
+"PTTG2"	3.51399070706218	3.57847808451308	3.8278180606842	3.5448582959148	3.68930770412451	3.95132678194407	3.772747503808	3.51943634186783	3.57847808451308	3.54545874155779	3.38613004288932	3.41582509507445	3.61303063143185	3.77620013586111	3.43064961084039	3.85573002744685	3.63870874100318	3.43968928669988	3.60872810451496	3.42519263637364	3.60977536915015
+"PTTG3P"	3.98657056809459	3.90156202050454	4.07518604263292	4.02706152066047	4.27428741191055	4.09230572804006	4.17449167389342	3.92439541096793	4.30659991337976	4.04151980478191	3.4150820053246	4.0991707628118	4.03675081889141	3.98657056809459	4.05927806323043	3.84482190775641	4.04607259124915	3.87979605006757	4.20452105635002	3.98657056809459	3.85478218986732
+"PTX3"	3.73706524029112	3.91727709250552	3.89489924286939	3.56825237809543	3.91548725297031	3.76928466373092	3.54632764510815	5.58053043234399	3.61777428875175	3.93821975160034	3.83489440347119	4.29134808271731	3.42864563780217	3.79688183523636	3.67777912814994	3.89976537486781	3.63662201030414	3.84054160309622	3.82610219270969	3.83157778675236	4.41262308471149
+"PUDP"	8.8639871866136	8.50711815146645	8.24481126364378	8.50593032204103	8.50116920023516	8.13738738122196	8.50252073692705	8.55269681415613	8.80112730088899	8.7192863307649	8.37258079217339	8.17938272730338	8.38364360174635	8.42667120641358	8.16352692991824	8.38842532445096	8.01243129594773	8.42389269113574	8.45729959775089	8.27454183748419	8.29132853919024
+"PUF60"	9.74788430941263	9.75227469682815	9.70701806320992	9.33670913225039	9.59852983122399	9.15972617319381	9.17343736698753	9.36951287295389	9.37680656504412	9.68127953806496	10.0396356876864	9.57480971808396	9.00273706155636	9.26882095595331	9.29322430597793	10.0605949741912	9.35058342287155	10.0618615841166	9.44179274412063	9.83001311338229	9.4841277147539
+"PUM1"	9.95561980320556	9.88713327831753	10.1154564708674	10.1043042085101	9.99933158524478	9.43441306605797	9.59506106679361	9.90764479770039	10.21154330547	10.1586932195358	9.8587927257878	10.077093730424	9.82746584014922	9.47371816040614	10.0235864878318	9.83664515935575	10.2664312011931	9.95669547878225	10.091443474392	10.0489541904033	10.0811463742894
+"PUM2"	9.38612203179376	9.47558849814821	9.23605422353895	9.46830688547379	9.5004272929673	9.00964582103833	9.2019665181882	9.43939838599915	9.6055467961197	9.43067515698457	9.54343706086396	9.4473911065344	9.43520685384603	8.93982350224409	9.62806605266962	9.75068804500687	9.63129970314042	9.56967794081738	9.5786223570704	9.41949555669977	9.66143707702729
+"PUM3"	7.12793081656743	6.87253195163651	7.00779907701068	6.85627934396362	6.63846578346551	7.05708996205859	6.44625827787684	7.00491389490405	6.7153495033268	6.89598788381425	6.67147934981293	6.70052456767945	6.85174235132317	6.95703483007389	6.95904133815383	6.86477045560613	6.47978840319161	7.13655322713341	6.81156339017488	6.91330109973999	6.85627934396362
+"PURA"	7.07769855332574	6.62388391630392	6.48639252144598	6.59052758444003	6.30997109772858	6.66139810259949	7.10515769538651	6.98153260205916	6.58314187711325	6.24634523618721	6.80581973728499	6.36780300001042	6.76795715284234	6.63917347930335	6.77629393691198	6.64559938953076	6.55164352984346	6.78146929526011	6.58475136153182	6.57217252619551	6.18867805750777
+"PURB"	8.44479262321793	8.77971343554959	7.87918586841114	8.72676742480573	8.61428721552585	9.06390519585734	8.79079663088229	8.81773886276802	9.00650790629282	8.99928493884898	8.58514157572912	8.7495017807599	8.76973944973942	8.69630211636492	9.10679647826948	8.54536481030465	8.90151759585548	7.33273836110751	8.77847669708738	8.62538329894432	8.44173364858418
+"PURG"	9.06458933079557	8.9576725990728	9.45561774094603	9.13304568166213	9.22959808780837	9.24844013495769	9.25518105779209	9.30234890722559	9.5706658322018	8.83963795452204	8.69724275589777	9.05364345047523	9.27779889371967	9.1144914821779	9.3457781882795	8.56694674456632	9.202788656178	9.10512182883862	9.27806179634576	9.01576849784545	8.68753750668196
+"PURPL"	2.87809269745536	2.96460429957109	2.91251825304832	2.91514546055391	2.87859240380372	2.82861908749339	3.00808307272916	2.81216608845773	2.97338128470014	2.79755117868025	2.87043961246804	2.90383404187613	3.01889186906337	2.75941396917645	2.88013959951906	2.8352881959763	2.82644995832452	2.83981840595246	2.87403694419506	3.02278535964794	2.83465541002211
+"PUS1"	6.86278696602064	7.0839875246391	7.33693301742795	7.16475297750305	6.96463296162546	7.02025782508593	7.11393787516942	6.86337711503178	7.32924313838363	6.9517331173856	7.12098008554743	6.97166190256131	7.20041755686447	7.10460047299542	7.37136863396895	6.81955471493026	7.0839875246391	6.9950510198373	7.15149626970059	7.06227250209408	7.29739716665503
+"PUS10"	5.68849867150138	5.77166660041172	5.83878683718956	5.59656843202614	5.740596254727	5.29490098366925	5.36684761582235	5.44882081214697	5.36153605876229	5.28754566065473	5.59656843202614	5.59656843202614	5.39124767003812	5.47535382098071	5.52144419708867	5.74694596839574	5.82044835985698	5.64454419655618	5.54038164350004	5.76957253301967	5.53901962682445
+"PUS3"	7.28149130588077	7.22615818723477	7.55051531162472	7.42631605673944	7.58200208365878	7.62317379270856	7.32935836105817	7.81065664719889	7.48961038474228	7.24625612230006	7.35316126605105	7.31883449968407	7.72642429352361	7.54023126282835	7.75328157418394	7.39032393475074	7.07424534300855	7.63419648985463	7.68710300051042	7.60595887749654	7.28872965965909
+"PUS7"	7.06026260936702	7.54645811588914	7.87188202289171	7.05938244330046	7.65668084482326	7.36370089772637	7.04178215202416	7.15174308437796	7.48597196424168	6.97435820246611	7.32034395125742	7.02507544696864	7.46576073646496	7.25533869306155	7.63567847775849	7.28770135379593	7.12987308714927	8.00778613177659	7.1141781791734	7.39733753423251	7.46460399319933
+"PUS7L"	5.96320949308763	5.71826550320908	5.85003290244584	5.1854229034382	5.52593794825208	5.43442203031951	5.06602848964983	5.74820588779469	4.95117698088829	5.64982600786086	5.94706392549024	5.70740711182583	4.64385111053211	5.34796309127137	4.96152815230579	5.8046063198732	5.44013399440607	6.01079399681292	5.1208191496425	5.56040279217683	5.41237698253778
+"PUSL1"	6.99036464860415	6.94110041255975	7.44120397057793	6.90639154552744	6.9347153967194	7.20519165500793	7.36891467534014	6.83139519692237	6.67809681430858	6.83548783736771	6.8861718428138	6.5233836220335	7.16689098077897	7.06432109912046	7.15214968597168	7.04547610294635	6.58402672031442	7.00726677812448	7.08061397893035	6.94871677620149	6.75087018721641
+"PVR"	5.39961563829339	5.0458402070525	5.01153721363679	5.11480315328786	5.05243743120396	5.06179077366477	5.45605692076114	5.29196025375573	4.98065074571864	5.76125936971348	5.12746650795198	5.52523668687159	5.12887304457046	5.12046472464509	4.90122496205643	5.22384600979362	5.33691139859507	4.78280165880713	5.27574214962004	5.78638135569808	5.90407375771178
+"PVT1"	4.47516153599694	4.5880478707398	4.57631112552738	4.50964475073487	4.62880559104502	4.82943345786096	5.35104955268909	4.75228132868827	4.79754954650805	4.65702197201748	4.39689443595726	4.61915525408374	4.81345405182666	4.88480832926882	4.45063858313078	4.93262860929304	4.66445719186571	4.34921545494278	4.24610991653045	4.76764009535909	4.63762430703595
+"PWP1"	8.68977016156578	8.61520521906665	8.62461429736975	7.98009367315902	8.56656998098862	7.88468697480921	7.69737278156967	8.39569131787152	8.23618870251945	8.71966820278068	8.54102808815262	8.45974484000969	7.73451698544042	7.94677147388035	8.10181104359399	8.79875731506293	8.23597635398738	8.84143503561153	8.27148660977461	8.80713676643673	8.56588490030652
+"PWRN2"	4.23062141234358	4.20838022792718	4.55381682654662	4.74575989624927	4.63450589955535	5.04071215670512	4.61518802258215	4.2493817728559	4.30639194877928	4.2947976575029	4.1010825461216	4.53523461627611	4.44513905779915	4.50349496010698	4.25751359154255	4.38412909736769	4.36072469614487	4.55217032974794	4.15224445970288	4.26373690471509	4.46480094783954
+"PWWP2A"	8.46600071815348	8.61050529321132	8.72610608651866	8.26889107763971	8.38411156305551	8.37585966494995	8.2094394429686	7.89369978844994	8.19081597132563	8.06765931593009	8.91600088387133	7.97441333764653	8.04411995814299	8.55704984205548	8.28466123819424	9.25341610951351	8.11604985587269	9.16745167519769	8.43940872887127	8.19832719255277	8.3060701159029
+"PWWP2B"	7.43016628855723	7.60072891416079	7.87293826031567	8.01088760745158	7.54978344027006	8.45250456862541	8.9111767959743	7.75937413326897	7.97341862739991	7.78500722967945	7.63670860316562	7.95259871631283	8.16218232354302	8.25814663330869	7.90520888884896	7.58075655597357	7.90063567507679	7.37756920450192	8.08198578088673	7.72231794112466	7.90063567507679
+"PWWP3A"	7.96960166222838	7.95555622986065	8.23319227042877	8.06907881138684	8.00256716941157	8.46062721028319	7.91634254983271	7.34956657527204	7.75476932244074	7.14318592819484	8.1451828476779	7.93413183286953	7.6334240207375	7.67751107606251	7.96911332589302	7.75576863885307	7.90041217918772	8.47973954975083	7.95461771425225	7.39164571535344	7.51317400991267
+"PWWP3B"	7.02671189322303	7.36399634622284	8.34347729125358	8.43364616308805	8.53228280362678	7.44029394342723	6.92810130336718	7.9009881909659	8.51682384351344	8.72420986029006	6.52595965511528	7.4807320277806	8.0647605601993	7.42061987690342	8.45163645379579	7.46956003114366	8.08701872092059	8.11847975849846	8.77625175280486	9.03266959410211	7.41429302296968
+"PXDC1"	8.96484484040703	8.06560880843008	7.70970109168508	8.45159746365431	7.8152216596075	8.58567904395409	8.79865722590407	9.04406837996893	8.21116658448421	8.06387884795172	8.61162834739357	8.26570956868932	8.69514854881235	8.68159882385357	8.68589893910934	8.02978110871569	8.28990797384655	8.34283043169041	8.46939507055222	8.06906251852041	8.30370832436875
+"PXDN"	6.71455447862907	7.2171487162868	7.27474744104886	6.31225664603639	6.68621816815135	7.778994131468	6.86819848329658	6.94519045214367	6.03765281287691	6.38093764280204	6.49286102076567	6.65557567367966	6.43426700930385	7.21275851227008	6.44067483123101	6.6260490763557	6.14505941677971	6.65557567367966	6.5150664256513	6.24665978253186	6.64995746060776
+"PXDNL"	3.19974090533624	3.20745531527854	3.20901276928803	3.20901276928803	3.30842233346689	3.30440030308498	3.12799283851511	3.18831942738385	3.24230196145342	3.35237889322699	2.94301881736334	2.97076785057227	3.20468025328947	3.20450157205543	3.34335633224815	3.18231660428876	3.3717691560573	3.19859591354636	3.2547017463936	3.45971671354643	3.20901276928803
+"PXK"	8.78535783227218	9.61176711839944	8.68989713258384	9.17643663041623	8.89145822352998	8.9095512686834	8.38295520270489	8.60833652968239	7.84493091904269	8.4224429500688	10.4349248880068	9.08702695076751	8.58683055427006	8.33177257474821	8.80599384770737	10.8626959370541	8.77736311488978	11.0107321741921	9.17458433557477	8.3526572901233	8.83863031838106
+"PXMP4"	6.66169562882496	6.66169562882496	6.68858566078218	6.72730638543033	6.68533330908424	6.53961886928564	7.22175187983368	6.29430090802031	6.75814606993319	6.57606557541469	6.77267021094113	6.72346398606391	6.14156110486853	6.5186006676089	6.60200464450909	6.68976645361524	6.58605016982738	7.13053601665208	6.91777538697629	6.64348852272999	6.53609648203149
+"PXN"	7.66226869370118	6.31946411537033	5.65037303083237	6.53047483429572	6.17107914801874	6.50963670247916	6.8816427981916	6.73253309867692	6.00990179220662	6.52631440322347	6.91039485873343	6.59530162714958	6.14214476769302	6.37702739042587	5.76401220565329	6.53047483429572	6.70241157694049	6.22657400185014	6.46757212895967	6.44782105984359	6.59930308677756
+"PXN-AS1"	6.06951694039929	6.46317674061422	6.14275128435311	5.60737733022658	6.08445654676363	5.9743436879444	6.02789736666907	5.66612237262625	5.52832246885222	6.29839327339442	6.70891401619846	5.9743436879444	5.21681274073143	5.89590712242353	5.31484109853235	7.07233054573903	5.87038615736388	6.80620647061034	5.78638116153365	6.01968731080292	5.68813641143295
+"PXT1"	3.87751265869094	3.99515666133864	3.92656098584251	4.14775771385017	3.93450886740441	3.80271911275906	3.8121313789322	3.98181614059128	4.08628199927164	3.93233869034626	3.81946518127706	4.03794754759621	3.93643748627104	3.84746626312461	3.96779852709763	4.16416705257394	4.09265216303594	3.6699581990667	3.77549085131297	3.84368891462733	3.77621243458751
+"PXYLP1"	8.85325436348395	8.66430935074741	9.00077589333656	8.77340516519682	8.85493695622134	8.42346793257587	7.96590007565041	8.7267970931502	9.18099823378407	8.57189430450251	8.55171163313367	8.36633426522692	9.00052706292694	8.57122126946572	9.05308281137594	8.13852759780077	8.73840324618179	8.5673514893986	8.63064635723267	8.69153194577933	8.68353025402392
+"PYCARD"	7.7273683291393	6.47948625264072	6.2523168792244	6.15190279265254	6.34103431951717	6.49417678931945	6.74395707752662	6.34031332234107	6.48475884306595	6.53415764647569	6.60148501968047	6.09811154809627	6.56694251079887	6.83365012566504	6.63736129791099	6.58898550430833	6.06630590866418	6.88329988183019	6.53851495905203	7.20327503147205	6.73712334871851
+"PYCARD-AS1"	4.99169548668545	5.42064700768139	5.16304009926144	5.29563376049582	5.12488827199145	5.49477300187472	5.68538130117175	4.9694922924992	5.26631802856798	5.18796105400685	4.98134933958388	5.11356349399527	5.27822887506033	5.39415588805401	5.30813572422044	4.97539769777054	5.16304009926144	4.87110188060549	5.06715537492724	5.11125846346482	4.96251886143205
+"PYCR1"	7.42751376852352	7.15440555185976	7.23136463619145	7.42757969807317	7.33820724729287	7.51517581613388	7.70345158160046	7.35317983717264	7.47758615494785	7.22940964452606	7.02837759914706	7.46532479637249	7.5984975275713	7.4358466679502	7.44537299657714	7.11057823454536	7.10460047299542	7.01714163905033	7.33820724729287	7.52830908286875	7.28181960789231
+"PYCR2"	8.42772078277675	8.58197226011396	8.31881376378486	8.16400843451682	8.30599712798722	7.46576306175694	8.07513102074508	8.39573480909309	7.84512033796157	8.19056041022364	9.00931317036704	8.32259957421993	7.7010972249796	7.90389906413298	7.57427569386593	9.04171145779667	8.07697336886336	8.39966389221966	8.02539655009049	8.41308149026811	8.30936463058962
+"PYDC1"	5.24103452238365	5.67593138489352	6.18437605148813	5.78565659273599	5.61975925563605	5.68635367113187	6.40472772145169	5.57218908243703	5.91370662327555	5.87478128292794	5.29595365811839	5.59431337410806	5.63165718733992	6.26797898198441	5.46505485822758	5.24815869600183	5.68635367113187	5.63828899016293	5.79322323504969	5.49986935153444	5.82392575086368
+"PYGB"	10.1964515356829	10.0382337701246	10.1812265966987	9.57706938235241	10.1055558314072	10.1299041526303	9.93213223838742	9.77165508912081	10.0125665748192	10.0927699672817	10.1266869902089	10.2149047635032	9.43838262845023	9.80840690117536	9.47748632420954	9.72231563586409	10.1735724203299	9.67862026063264	9.32777396983161	10.2784112482759	10.0751120950474
+"PYGL"	7.93272198122313	6.01845253295326	5.82964737235767	6.80809773745716	6.22436321691284	6.69671302228217	6.86965869186457	7.20736236454638	6.22894975166585	6.34751054621096	6.19414226940078	6.44629359878483	6.56804182733397	6.72407616108804	6.46654086522946	5.89601904568475	6.19578865151806	6.09307991069627	6.55555956871512	7.33875269549037	7.25650841931313
+"PYGM"	7.95149902108039	8.42970005460143	7.83342834252378	7.93120804835229	7.89780617417269	7.20975371233435	8.97224522179099	7.95718040750693	8.18367022423778	7.57560167272215	8.31804712655982	7.38566663495636	7.55738032621795	7.92873005011883	8.18903933852717	7.10984943024454	7.78727768696501	7.97065331903226	7.62371532439276	7.86126494269993	7.24484817141921
+"PYGO1"	6.07165156492177	5.31371036348169	4.57511674563942	4.96176544465666	4.88219623869417	4.35178300418432	5.43518494295124	5.04384294345482	4.90333351276525	4.83322059270406	4.84535736328981	4.42764418536644	4.97687729666331	4.82874670729558	4.45739740323669	4.72122741935781	4.91552704062537	4.79868197641676	5.14432714922595	4.94936370266715	4.41648212724728
+"PYGO2"	8.15473068757639	8.00939634900932	8.08648466063686	8.23756303217095	7.92897776992119	8.13168800101823	8.19108529670896	7.87609293533644	8.04817614508474	8.04192739406402	8.16348284458897	8.13912139310392	8.21526267390235	8.02431271263624	7.94680526051016	8.08304108455694	8.13814094004372	8.02872922295006	8.30097969904495	8.10047079611672	8.0331944503947
+"PYHIN1"	4.40216005506608	4.31312386589355	4.64605888141646	4.94936370266715	4.62455408281101	4.58339384380083	4.86962294476769	4.29351998476175	4.59373806676028	4.40393497176848	4.38195702000894	4.31154865494531	4.61654891274002	4.96950033409753	4.53727321765142	4.80320439767253	4.67741581378734	4.48263617741158	4.36090235639854	4.72639125009294	4.60069195079766
+"PYM1"	7.1103663689497	7.25209655842478	7.23696682658773	7.14280358136737	7.19529828479838	7.3305449316845	7.29356317533381	7.16818814564262	6.93617232632205	7.33092660484365	7.19407880722437	7.08385812857951	6.97598206885459	7.18706405656045	7.14614527318671	7.47811699948854	7.04333676365551	7.66178451085562	7.03888322890243	6.89546907740355	6.79469945213894
+"PYROXD1"	7.65140420955468	8.24869922591321	7.88599139303572	7.68604492858092	8.2759312450647	7.43666334027197	6.94640835285321	7.50872816331005	7.60759056276068	8.05558503710032	8.22873832473288	7.87631548524165	7.34379832712347	7.19164337404744	7.80259769797406	8.42334721910669	7.76368598881722	8.38072209745115	7.59026165677857	8.28653101729714	8.06750175209953
+"PYROXD2"	7.56990205025351	7.40214422964114	7.46501521754203	7.54404139096158	7.02981124881411	7.22710639857986	7.82052164434918	6.93520538153971	7.40028805283157	7.11916259854152	7.66438734509278	6.9089546468092	7.26493927163356	7.39653710123852	7.33820724729287	7.49689451854622	6.89921877584612	8.12340484813531	7.45159474453632	7.11845053075298	7.0097754619379
+"PYY"	3.97996870914196	3.49305207524293	3.78201809573748	3.58864716737766	3.59830598042138	4.02376566402757	3.92379426747533	3.59064375968813	3.78406794832565	3.72421426249425	3.73983511181643	3.66838617116164	3.55556130003708	3.48401303533419	3.70995995650199	3.41806031619783	3.51082747527692	3.65157480604679	3.55712486490344	3.63539864616641	3.77558786237536
+"PZP"	6.01922082084809	6.01503525539487	5.66697288490549	6.14527699137408	5.89330386770608	5.99601229204529	5.75166445836719	6.12059484398192	5.90535605925315	5.9548176292357	5.89538156956441	5.95218569619658	6.23200456084246	6.03315610680897	5.96720089918321	6.02088056305863	5.85521051169726	5.84178957982058	5.73245136219718	5.81000606617705	6.03315610680897
+"QARS1"	9.40533180560723	8.99184731760142	9.00204833332018	8.47391019114646	8.93289496014057	8.79425177130569	8.40033992355055	8.5802367493501	8.57853056089218	8.98239077561248	9.15000453251599	8.69859991925966	8.25690559267265	8.63277772056315	8.60061241730899	8.97743373250535	8.49895063546966	9.0162610611003	8.4761232019805	8.90570710660961	8.85325237279664
+"QDPR"	12.2477315764984	12.687308202639	12.1951154372589	12.6331462307852	12.5071436926886	13.4385025620548	12.442284955307	12.0097213017523	11.9269083067146	12.68562157413	12.9387590337179	12.3508838164509	12.7014296251014	12.6982279363805	12.718520088582	13.292286219702	12.3680547352043	13.3761411969602	12.412027457375	12.0303874565645	12.3726449216466
+"QKI"	7.75810530794753	8.28736307626277	8.04494604778568	7.45446018313822	8.19716473703017	8.7472580090981	7.26637855896324	8.43237844007824	6.72407288107956	7.9605547703053	8.9750187431498	8.09027084762294	6.45866033255257	7.91406571608329	7.2113498987001	9.18724021164429	7.99096371085559	9.99416727896174	7.65374506819332	6.6935412910877	6.95436150965438
+"QKILA"	3.23798169848487	3.68640398987257	3.49755578962747	3.76145915426798	3.44209036984815	3.51983652023188	3.60840030112507	3.64646847182225	3.767190744469	3.74842158702605	3.41373343790295	3.7175483126514	3.88368696406946	3.6387599362798	3.6387599362798	3.67638361821289	3.65204609030651	3.62589837570552	3.63380446419854	3.51244907541216	3.62589837570552
+"QPCT"	6.60448777273979	6.36621843475768	6.79533272178367	6.7933503554052	7.46694883226009	6.70083966828714	5.87275755679131	6.41729930362628	7.10255857204015	7.39598349492722	6.18619783200992	7.0292369351536	6.84407930127098	6.26091075276802	7.12031551631	6.06372073229709	7.15602610078941	6.83671382275246	6.78327799675773	7.2711889149654	7.32327074116856
+"QPCTL"	4.82255418563632	4.73658576292171	4.97749393685074	5.00556277916197	4.67380665740851	4.82255418563632	5.27865213980932	4.77925516734832	4.78751726983391	5.10305690725574	4.83193272272681	4.92116500171863	5.09676449867499	4.46166034850697	4.90996454377658	4.62318142648943	4.74571893894073	4.56524033976268	4.63820391208692	4.65638684128963	4.86482326049915
+"QPRT"	6.57717023011224	6.87534564217084	6.67251186063467	6.52320845216418	6.93811125598975	6.59361593165903	6.76854500092128	6.438507942985	6.3379387107937	6.85680620743998	6.92812605918204	6.70306457191716	6.55695751354409	6.69325044575239	6.42503259760771	6.48147125716017	6.31429396779173	6.51472227772255	6.95132910214454	6.87536534114318	6.66854660148885
+"QRFPR"	3.58293772597371	3.48295560251879	3.56030829441752	3.54311376014389	3.72838398421138	3.63665273244771	3.58115912465444	3.4927345033327	3.46924752939726	3.47296583339746	3.46220752041609	3.71078443920869	3.65921107776156	3.84746626312461	3.67882867680854	3.39685271558635	3.58387896601217	3.40055776338794	3.67293656067694	3.63331263038187	3.72421426249425
+"QRICH2"	6.89053695348517	6.42394328412098	6.78532818854335	6.67605937761638	6.1661946973938	7.01095944749816	7.14887164461862	6.44880735550307	6.81904067814388	6.37597512361054	6.212047766924	6.22927867749743	6.86489143557213	7.23653375293884	6.57045307798097	6.29646798870277	6.53955117196163	6.46862596824632	6.64942964815253	6.44792843902646	6.4435522786277
+"QRSL1"	7.01236032690963	6.11793060068912	5.69948571720752	5.74157053308887	5.3794804967264	5.55597460827383	4.27021497195473	6.61392277809143	5.90841307596965	5.1538026510152	5.47013321866364	6.36864349658588	5.46744574134917	4.98290820231828	6.14738594812306	6.50284084848701	5.47415566644269	6.42983205369373	6.06993126025076	5.74077161841594	6.27762022209675
+"QSER1"	8.0930152678015	8.02397400384002	9.26875559635342	8.46763047672448	9.9996731322006	9.93331487798896	8.1351909695008	8.31245979750229	8.48327950573397	8.12555088155185	8.1828252182477	8.22197739659318	8.24932540100858	8.28135910521292	8.71197474918586	7.83215059120973	8.12988311887399	9.2704973802676	8.15473040728565	8.13711358038266	7.907002154545
+"QSOX1"	7.07417473621131	7.23998607633108	7.43587002483136	7.306036354595	7.28901496567268	7.85686771137182	8.04657670178139	7.37227175375348	7.38909493360749	7.38909493360749	7.17794310914222	7.45202317381691	7.59903586746836	7.5789010996993	7.45252167521302	7.06793338221795	7.39133224832047	7.20503008724329	7.27744937013597	7.46393569401761	7.4063598613095
+"QSOX2"	8.08027123903888	8.07014940036099	8.20996369732782	8.02878216825023	8.09838607977107	8.11798401092602	8.08769775801955	7.88850152674108	8.13920741468815	8.00254670439186	8.06454671608435	7.70964267843715	7.95975386113217	8.15701475660238	7.90873790852143	8.31700197832332	8.02818357639739	8.35540427760425	7.91217851901225	8.05358091138059	7.82293195907135
+"QTRT1"	8.37778061432643	8.36768589428334	8.34803387697135	8.03840278580274	7.87245603407893	8.31111260381624	7.74237333488721	8.4525053073066	8.14360009156852	8.06445570397102	8.49334036085412	8.19118147495172	7.65805932950903	8.05397636088513	7.81920112916418	8.41952230708828	8.1939390304883	7.64206973061815	8.06742029776287	8.24426948362453	8.15987786517598
+"QTRT2"	5.23306482670861	5.47514486997303	5.61161094572791	5.18572128860119	5.25483706374411	5.00608163787329	5.23483974341101	4.80187786366572	5.03475944220624	5.14543824995321	5.71063758662611	4.76764009535909	5.1273825286371	5.44374135027276	4.96839783501053	5.54912925704132	4.84875436570687	5.86505139439808	5.09846429562308	5.42368688596723	5.38024086064189
+"R3HCC1"	8.16490740495462	7.92039939896834	8.3862289087056	7.97051702809753	8.24206474697869	8.57223055436861	8.28118594680947	7.8608512804457	7.78667328963455	8.02725368139154	8.28631098118317	7.6260810623	7.88784216620324	8.25301288818957	8.09796618212579	8.76607331813833	7.69445570269482	8.6931599438308	7.66125273467361	8.22965511755818	8.0331944503947
+"R3HCC1L"	4.98238179624118	4.5485832621996	4.18353778784748	4.33608066437435	4.26842624793617	4.33264863020309	4.54751080496412	4.46252607488127	4.01677461415614	4.26833935727915	4.63260207749892	4.17905210344337	4.24380883292107	4.30481330905109	4.238810574068	4.85118178179298	4.11313551757058	4.85533185099261	4.37397761863036	4.4628455886376	4.10897407655398
+"R3HDM1"	7.37143210343079	7.89427742927587	6.91625633579665	8.16449986284337	6.48834698231205	6.79564518014437	7.53398974261178	8.27800998314131	8.05778961888595	7.30235793529816	7.75191925557664	8.56167545794125	8.10705451338215	7.62305550894738	8.25216092133559	7.08088263454564	8.32479738362037	6.64942964815253	8.31866389066416	7.77187993432002	7.32597192987447
+"R3HDM2"	9.23163844673262	9.88357598639995	10.0540722406882	9.84722123700081	9.90188768947274	9.7694367464811	9.73875260584852	9.57937408058645	9.79330534062448	9.43920047361383	9.57054929439857	9.59290973361777	9.97021504169878	9.89358069898451	9.63180911766304	9.40784353182184	9.81916242881246	9.53216078745175	9.83427299806088	9.58485309959116	9.52491278660433
+"R3HDM4"	8.17282967183721	8.11600436978296	8.45283397218992	8.00180874816063	8.29222942178754	8.17352924745767	7.82390714442659	8.18531767340042	7.78664285905523	8.38747895705698	8.05043614804408	8.19888054843735	7.91685657080571	7.97570711731058	7.8032698750639	8.14274611403331	8.04445003803551	8.53665668261035	7.80589876932771	8.33425146827509	8.10138779779678
+"R3HDML"	5.14616332234779	5.24247192746862	5.12906069912838	5.33689702277934	5.28833064829085	5.5186111980472	5.52828647497938	5.34474798515324	5.52196736408988	5.49202332311216	5.16119478832125	5.3973348872181	5.52632638435645	5.62303316114277	5.51450373394342	5.3973348872181	5.34133577643065	5.12244311810584	5.32577684396383	5.48949791044911	5.63044435535769
+"RAB10"	10.0621345359405	9.63874637154529	8.87151417141099	9.72470931436142	9.40904683353689	9.12133197679557	9.58245882115698	9.71062291557651	9.58245882115698	9.56609172443902	9.69229439245349	9.27281065278646	9.52814200247085	9.3198471866207	9.68641109894006	10.0894118835472	9.56486501168373	9.91759432026825	9.90955318450026	9.20522928541152	9.38915791120469
+"RAB11A"	7.55381819664438	8.29951767689403	8.59056906292983	7.42980683329174	8.81871224037636	7.33072814777228	6.71273832246098	7.76514941048967	7.68243191824452	8.40498370796159	8.18065001489249	8.38458458552963	7.35363525905445	7.12940353594182	7.59507567771339	8.39970251090079	8.16769466737082	8.08558344269311	7.84358297821136	8.605669311866	8.39829313800283
+"RAB11B"	7.27689182814162	7.13408781148233	6.88099813726961	6.95586261528383	7.14628831390176	6.92569248470986	7.16574302365915	6.83820927643092	6.60941811736007	7.63987960227022	7.41613936452452	7.94488972172812	6.67153728744382	6.74359158002293	6.14984231841256	7.61785482546343	7.22980074975658	7.46691584583625	7.01216048571947	7.59775805964061	7.26949383104562
+"RAB11B-AS1"	6.27076384455703	6.51860771138742	6.51046655400555	6.29916535905807	6.35755690537081	6.3643480768716	6.68698651749411	5.95980490094172	5.98236336922709	6.3128674462037	6.7456708090922	6.31677663840129	6.25798183419417	6.68658620267005	6.1363640687831	7.78811253916683	5.69532503056038	7.45597337220742	6.6298753555926	6.43179446190332	6.25950409583552
+"RAB11FIP1"	6.9219037748884	6.74318091908077	7.03896043390818	6.82676179910091	6.81342492618276	6.41334862412379	6.71485345551118	6.90533281467713	7.2210707769658	6.98727395907167	6.4865480462423	6.65805934517402	6.56467211169284	6.77676752253865	6.93176785337919	6.36680539859786	6.82676179910091	6.82676179910091	6.8289726804602	7.49791476944528	6.76812450051065
+"RAB11FIP2"	8.57060052524298	8.93697673816857	9.02410284549457	8.9597247593846	9.11255803044622	8.08935401808926	8.31812694219487	8.89063750541138	9.2332483355903	9.13518215802408	8.84112829266476	9.05063823951785	8.4020587082927	8.23195542911812	9.00814659671457	8.91534806097887	9.00229645273761	9.06708767499932	9.14431187789554	9.14989515570613	9.01544285066973
+"RAB11FIP3"	8.54369696995396	8.72811166649878	8.89805075831051	8.50275974496522	8.22779714216947	9.36448886519714	8.23670597017008	8.99824488846241	8.36544200111651	7.82283626465525	8.90182627186183	8.53159096927923	8.70244126481314	9.10983618479481	8.57483806001426	8.20971524682904	8.66488323718143	8.42959093197946	8.55673083423297	7.65775115843203	8.1834885099714
+"RAB11FIP4"	7.21124176262848	7.54270253496281	7.39665088806126	7.648898450197	7.08915876836057	6.41281527765424	7.49852558711085	7.34915464570239	7.331528043333	7.34751736909214	7.91623391335421	7.88642110775025	7.14615552858631	7.11504409158174	7.24521128210384	8.13732857067466	7.80956336470923	7.80323975746553	7.8342882476373	7.47624878308307	7.80919241390114
+"RAB11FIP5"	8.58711913544733	8.44005547520164	8.6635315715932	8.65018747804664	9.16785873549961	8.93623528039963	8.63587483171239	8.55998045386831	9.08667797464345	9.29888581217183	8.27415857911304	8.85779483165024	9.0122670925753	8.79719525932518	8.75561065329807	8.2509189126028	9.05020541164553	8.60197653438449	8.6171462011069	9.02700681845202	9.27934840871703
+"RAB12"	5.60513405643198	5.70463417965452	6.11998205771123	6.24432733814855	6.23505308642304	6.03812211701764	5.79413260801289	6.02537652975694	6.33419335669747	6.06903691254496	5.81005035376481	6.28144572888932	6.09872038472331	6.38593129241568	6.14920133280298	5.7198679545913	6.03892263165964	5.33842993915249	5.72644013477851	6.14991682492344	6.22430465869381
+"RAB14"	9.44078092911009	9.57753029550302	9.41046348716557	9.3151201065687	9.84629931430128	8.93257746816205	8.93672401413497	9.56276439763423	9.2438292056937	9.74731066881155	9.79154825494792	9.68551663705317	9.0380620849073	8.75845173673116	9.26087657238434	10.2472566559637	9.52358469345198	10.1628118694106	9.51949613703102	9.9432818975306	9.64875182248907
+"RAB15"	9.05244714211772	9.7716145679333	10.2508605668196	9.99747702255403	9.94113428108416	9.82286087143105	9.44386385730309	9.31036719705466	10.172904721636	9.84808635599699	8.95096689234462	9.66742615485055	10.1530509527766	9.76375534104059	10.1559521359809	9.01747220400772	10.0203013033503	9.43020063255098	9.65022557055113	10.2942544366678	10.1317081184662
+"RAB17"	6.24099115286845	6.3282681016368	6.34342467900758	6.47820407664279	6.44868242921887	6.66192717073386	6.70193901926329	6.28950292049425	6.67453090427133	6.51648750265042	6.11358658735396	6.54613956032673	6.45245986699397	6.74168323146019	6.48708282390301	5.86544510638432	6.45419323375195	6.18534182983055	6.44593632386444	6.565295007641	6.241573256555
+"RAB17-DT"	5.59142539971339	5.79918994071236	5.81269307154956	5.95937767738617	5.6810361476416	5.95277117002544	5.94930568896941	5.64078230522791	5.93809122844448	5.97421439657206	5.77194159529278	6.03117504887154	5.85510388989634	5.88359813478291	5.86307533613636	6.19458250547308	5.96695033086819	5.72194683968259	5.83264160005271	5.73637593336757	5.81386000972552
+"RAB18"	6.61125363722666	6.43259639638543	6.94061033781412	6.60870193108576	6.55465614035209	7.13958704741552	6.36811123996241	8.16174783576142	6.65156304847404	6.24624496249475	6.73666550082446	7.12503041045849	6.87466448703022	6.44156060709748	7.09387841236388	6.21181126785675	7.13197961286341	6.26701719825578	6.99995347262653	6.40382767411492	6.25965188886816
+"RAB1A"	8.42134588927825	8.17349317843434	7.51790439810886	8.15454979622561	8.67027166828983	7.0376794812935	7.68946637902553	8.27906839954403	8.4405535909995	8.81192317975632	8.51279975260646	8.47259833749194	8.06601870307169	7.34098678475091	8.01365591540623	8.2324116786638	8.27510586577412	8.55351564814808	8.24357643382198	8.49702082357888	8.71699931102395
+"RAB1AP2"	3.07918964323778	2.93732517271372	3.14480609345564	2.99391806712548	2.8066942955462	3.27605695764013	3.21380967482278	2.9840725953751	2.99310005397109	2.99803914545148	2.98400369984491	3.1717093903705	3.22711247132567	3.01691567007588	3.01886881090125	2.80431085293628	3.03873415271833	2.95702199108932	3.06680874196662	3.08284011762264	2.87500935205779
+"RAB20"	7.4856957626277	6.65493990242021	6.30555932745385	6.85207427513138	6.78119979795579	7.84474976156628	7.21787218856038	7.63584791772722	6.70327599187292	6.69300493590006	6.4713875642213	7.35973947540915	6.5999292338858	7.00379956064875	6.77707589926595	6.83002865213258	7.52754943943561	6.62410778434874	7.30712760649951	6.97352844223393	6.82511230770062
+"RAB21"	4.33603952914303	4.73313162075616	4.26046913621403	4.90982208054431	4.63146957436215	4.79094832948709	4.72303784349671	5.21491093536268	5.18712029496956	5.32760648280541	4.9159952321309	5.31271799445412	5.20799845644482	5.13926286147191	5.43361458709868	4.84683779909671	5.31399074473105	4.69937441217733	4.99532194402693	4.71911440693395	5.07712455183388
+"RAB22A"	9.02391420976351	9.5099755715026	9.79674486047467	9.16043958977308	9.85504880793085	8.99151574816443	8.79822170731448	9.0767047119442	9.78378059512529	9.67431831868411	9.22915328911316	9.60162077604338	9.36103282108458	8.87249802349752	9.52582001489562	9.41528282870502	9.77497994153605	9.74858546502851	9.6425911055475	9.93337118271939	9.70237167794949
+"RAB23"	7.67375438092741	7.22560394584152	7.26366241640272	7.7109999465384	7.29773663297839	6.29138058323459	7.826894081496	7.3296140873929	7.49882596158761	7.04063140214608	7.87869289595119	6.62458032257381	7.48866433397824	7.12658075068464	7.56496942224527	7.3296140873929	7.19645737591708	7.11299326743933	7.78939652245084	7.15260771937151	7.16472903574631
+"RAB25"	4.61738986277418	4.16791472641114	4.61738986277418	4.84549085774191	4.66338653343499	4.58866593450825	4.55599735323727	4.69500950344871	4.43536031609247	4.66174624786645	4.38195702000894	4.51319244298362	4.53019566236136	4.53176752398909	4.61397019176728	4.62017433655999	4.51643932138779	4.62457841210008	4.69092429006582	4.61738986277418	4.76321197195206
+"RAB26"	7.90706376661371	8.5781711060614	9.16916486310264	8.40573308920752	8.39019064872822	8.94650416139276	8.16773675460825	8.42228490816174	8.66349515395461	8.46165644973338	7.98457444174667	8.44612395403288	8.34380283616819	8.39977085752031	8.57368338808952	7.70712502057286	8.38954970050644	8.11611100153988	8.3672540484076	8.42078712848177	8.45872300929702
+"RAB27A"	7.52024579028993	6.38476852983439	5.75470863556702	6.38894728084696	6.25536379299578	6.65960728219589	6.49727950780755	7.39262242192719	6.39289633115651	6.36389241151255	6.62408644169083	6.61979585228034	6.69315531476326	6.66865078246721	6.38894728084696	6.0851186094091	6.4370661490703	5.88504436194701	6.46575528285295	6.61329329930274	6.37783218792478
+"RAB27B"	7.74811958920413	9.48370651122857	10.7075834955212	9.63510204516415	10.2572681937955	8.63471557507659	8.2684118097383	9.46116217852217	9.81321744763341	10.1872934130262	8.70244126481314	9.98892219608135	9.01393824125156	8.41164630072525	9.65532550307933	9.57103374572304	10.0628585476135	9.57597536724794	9.86770677632062	10.5275940222017	10.1110449123766
+"RAB28"	8.94406319067986	8.80537974731651	9.25571747681762	8.68284673770743	8.71410294953502	8.73753682337113	8.6526776837631	9.08415221013609	8.90052591979763	8.47508202011192	9.07862541929927	8.47702065595923	8.74888981671079	8.65162259236365	9.02150708570933	8.89653080121987	8.60959312386562	9.02356921242341	8.82989347474492	8.54530013945179	8.34645101498251
+"RAB29"	7.11911486015926	6.43613684123346	6.07754447532811	6.99469201665118	6.17490814261751	5.81741432539944	6.66576122473134	6.86925139032438	6.84602359454634	6.8860639717796	7.78614548606226	6.27981443114531	7.2147692169284	6.49776189320458	7.38673504997149	6.71028865752216	6.26284199373767	6.53579216315408	7.06538413737686	6.66350381068146	6.59093802661839
+"RAB2A"	5.66141995484761	6.95613118689066	6.54188577435673	4.87178155670733	6.95275825721262	5.83888606553171	4.76968755238661	5.19345579778119	6.01559727853332	6.89142407346852	6.74227625958666	5.83888606553171	5.33989437081298	5.00962937598118	5.35551238389588	6.62732053119594	5.47651549803784	5.84642587872275	5.17424632713781	6.02063751472914	6.47477322507318
+"RAB2B"	9.13349116596019	9.19649546526339	9.35244443426982	9.03756253908017	9.38667582027045	9.11769576702299	8.63900910349871	9.23734487344695	9.31688794986034	9.22304541603391	9.30276625616952	9.05362833540439	9.0854788601039	8.95548771328692	9.04969424185731	9.81584600157302	9.22717219129816	9.56869162202503	9.34002478448153	9.29262731241761	9.22717219129816
+"RAB30"	7.77124812190502	7.59683938487444	6.1102177237219	6.60917117979092	6.94302883649869	6.50006950867258	6.91700294140661	6.93994788329303	6.80005458067239	6.97351259242887	7.12428721933284	6.77128372901963	6.28717377911611	6.35649103357282	6.35574319229674	7.36610177114643	7.01921065674784	7.12520775407493	7.58413637694307	6.53511040489828	6.87355911578923
+"RAB30-DT"	4.97793140016503	5.02911786542874	3.66387485313352	4.64244027805698	3.92754946611344	3.47298025610708	4.28289897735528	4.5537277203655	4.31113758685418	4.4811167720925	5.81250423388419	5.07333719138982	4.00335055654059	4.2150498128361	4.74617946960631	5.4452667600927	4.81284682968161	4.22839311453405	4.91642639391054	4.39331869884389	4.4811167720925
+"RAB31"	11.0547313498145	10.5223646957584	10.3271852243496	10.5217983406835	10.0618542368391	9.98886712012192	11.475827777423	11.0047997987774	10.4531789225219	9.8799227827544	10.484741877222	10.0999390421625	10.5442084186586	10.8341953760042	10.6450913391066	9.65037892985944	10.1217792865241	10.066634866869	10.5418923986951	9.98751985606124	9.68696251507824
+"RAB32"	7.77847445507707	7.26590229046625	6.90524569840447	7.29313632136731	7.16136404237292	7.09486335773979	7.00011732836347	7.2279864726477	7.25020064025876	7.16815036235456	7.3966290500942	6.95663926264713	7.09992334749934	7.20774451271955	7.35444297221569	7.69996530745223	7.08325949802668	7.40322842024243	7.29515705321031	7.26416484525954	7.40032624002302
+"RAB33A"	7.70518996670707	8.18745716653975	8.22663459256478	7.88648513480484	8.48461508404851	9.01390465201716	7.00314028814926	8.02361164720574	7.68315376794992	8.1524365882423	8.91207694709347	8.23273464807106	7.52771099244633	7.3146656468996	8.13926346538555	9.60749910032755	8.15821978258452	9.98915831300221	8.09023230642596	8.26094555721056	8.14638767387592
+"RAB33B"	7.10310608413204	6.82955562705643	7.32069459781919	7.00633198594839	6.89925411904608	6.96266664479323	7.29433608149146	7.14589176283702	7.0839875246391	6.30173012032532	7.37302190858925	6.36259570923433	6.96789647225191	7.34484909594145	7.09782240847864	7.17891728879152	6.57175215507704	7.35012637631747	7.187797779205	6.51176896007852	6.5600985262345
+"RAB33B-AS1"	7.63425043570484	7.54510364453713	7.36602741150704	7.51133705868563	7.00445243753997	7.38602502436014	7.3490890632657	7.41453477565071	7.26727015383734	6.75728838100544	7.81160699677845	7.05318980348276	7.15409522642219	7.4208741322935	7.70510267087639	7.8257708790266	6.98464925567278	7.72192429699955	7.49287472887149	7.03469929209268	7.13520433268486
+"RAB34"	9.45442074263588	8.77003857574115	8.56462648778522	8.22173175049494	8.41202246442993	7.7982646151894	8.79386621467083	9.20806018065847	8.22552112953795	8.61328788994759	8.74734488543079	8.60328897020474	7.59107218250199	8.44512620249641	7.77537713660357	8.11800158632523	8.23911623073742	7.83029738607633	8.45444655424854	8.86376573490949	8.25363175527723
+"RAB35"	6.22751100680817	5.95067944122488	5.05025671853165	6.00035133147816	5.72544689120387	5.20551506652784	6.73547606220689	5.95786046467936	6.25080072499991	6.58752997102891	5.94856672997507	6.25566053504135	5.61762652576708	6.0088375330385	5.67065140464677	6.38944783005393	6.11343057702599	5.37522421249729	6.04967493977046	6.89546907740355	6.42484997383497
+"RAB35-AS1"	5.72319076381789	5.9790434838957	5.8360542522797	6.18902521443021	5.92479261307757	6.29639614768781	6.29929396518011	5.85815919850014	6.10048829399612	6.08605380062217	5.8976211794703	6.15507258753993	6.2105039966048	6.43981912431001	6.14293587473021	6.00541266450509	6.15783184058617	5.55670659649409	5.97325139048016	5.95125846945539	6.14166998209024
+"RAB36"	7.37966889049512	7.26906796172406	7.28552466013132	6.93249793007217	7.09968645408364	6.73544831763064	6.51424178284238	6.99224884166395	6.91380454929968	7.10460047299542	7.12098008554743	7.3087304413618	6.53206183866197	6.75687616389373	6.58640068230214	6.64911994655492	7.03053311128116	6.87454432148369	6.86470572227522	7.55351907095387	6.93249793007217
+"RAB37"	6.57042912202686	6.95038422811034	7.31337044443014	6.30719217766111	7.41970950293514	6.95952547974741	7.0045558292055	6.86328783811851	6.93247174231355	7.05638144262496	6.32705412658185	7.17664972656744	6.99537173339035	7.09941037604332	6.715597372101	6.51195627004957	7.04808935334114	6.7174803913354	6.78139083364156	7.53878544769417	7.39208358437455
+"RAB38"	4.10542724026559	4.22338610429609	3.75345249284413	4.0234104027737	4.01109091212639	3.97884120424067	3.64412061090917	4.0943903424614	4.12428557520846	4.05724319337559	3.95647910673099	4.17579485634296	4.25130695881842	3.96432039476843	3.86500258172897	4.19846857398863	4.1769461582555	3.9012775951098	3.96124739882421	4.18013414556597	4.05466853965368
+"RAB39A"	5.36106370114472	5.37991309612984	5.09122390903668	5.7361075408027	5.41071309368354	5.43282987090181	5.43628814725636	5.47007231379773	5.18522387859028	5.33270169349685	5.24240317884381	5.36106370114472	5.53806391363217	5.26614692047761	5.29597087217558	5.39477697299951	5.39071428694895	4.99354602634721	5.32789963979287	5.39616371452471	5.55582060862401
+"RAB39B"	6.39352980128141	6.84452115320284	6.84640580899195	7.00702910663615	7.72444955809769	6.45185537172664	6.00457456699752	7.04672224927208	7.45655672404437	7.95416615698288	6.65381489545908	7.47199830729297	6.83779952626002	6.49702641946594	6.94893149736482	7.21835603431916	7.34651597239985	7.70871554286297	7.12963703069646	7.55788360093743	7.52703354711822
+"RAB3A"	9.24549387279544	10.0376871660347	10.6960958662053	10.1279715095587	10.6317558079524	10.468976984105	9.99522015776682	9.91557621180941	9.99148750027344	10.4565801392025	9.75601798438671	10.6472084434922	10.5644502331236	10.0052970490145	9.80765500231991	9.65281568183785	10.4009760581972	10.006951330414	9.99210654927242	10.6024190790138	10.3748030091563
+"RAB3B"	5.18606243147924	6.80667921322149	7.53113211669333	6.38586673202084	7.38542737322443	6.63604960654801	5.37677785634507	6.57474617833088	5.66602166778537	6.85746473341847	6.35741719676769	7.1642627758074	5.89447696287904	6.20192573883319	6.080866892953	7.52670790207491	6.15889670001913	6.54434917353142	6.23186933699634	7.61969185139507	7.16215831342878
+"RAB3C"	5.04648742702968	6.59465882065509	6.62672975861526	7.01817141713817	8.46713293906735	4.22696118940589	4.48606717996131	6.48812997227037	6.64969914695588	8.83252451570221	5.97161002159818	8.35333244840864	6.32940027583013	5.55136665702916	6.56259622021698	8.45427367161767	7.90989000766838	7.54068286154127	6.96807279327444	9.00665683896788	9.08849368236505
+"RAB3D"	6.29079601809376	6.443834933189	6.09900069223638	6.46183782353406	6.38645367664376	5.82857786841934	6.46569174992809	6.3056431146416	6.50850401883428	6.84070973105045	6.2030763496523	6.62301157800099	6.49118793684738	5.95832191139201	6.21127683054331	6.07944658210833	6.50456011530137	6.02992510888173	6.2974239491444	6.75258969477187	6.65810876950807
+"RAB3GAP1"	5.83083840616602	5.66260857576423	6.51090820999459	6.13628492655449	5.19258735913729	6.26507109751392	5.93900793816728	6.50562538675028	6.10870339474443	5.07740129282615	5.91190074966541	5.93277411788879	6.44067483123101	6.46974211642715	6.78555644256364	5.61781992874554	5.90402969929724	5.7662511083396	6.17477962828386	5.58605609598602	5.80901780475109
+"RAB3GAP2"	7.87923350827114	7.90305043619421	7.66196089835574	7.62487581366808	8.31290255083389	7.43778187068107	7.54471951024703	8.01775856996758	7.81132831088678	8.1080585285765	7.84022681142211	8.05533619764461	7.26909817325679	7.44604716276421	7.63172699701432	8.29826561902694	7.99030628821303	8.17112047438844	7.8308717964936	8.31195028528823	8.20576821677077
+"RAB3IL1"	7.55061064149506	7.61214549880735	7.60691489232086	7.90115514899548	7.45464276820485	7.74414745098511	8.2506386440229	7.60204383576821	7.7846660337576	7.74055478660703	7.56188521090539	7.62732688174009	7.88758907114736	8.04059052546301	7.70604224150352	7.53105777200954	7.6705518857596	7.41655443318427	7.8637067400977	7.79848122507716	7.79797829100194
+"RAB3IP"	8.92971213764151	9.02774248920453	9.25881418870815	8.8677913722868	9.00999914417853	10.6623413025251	9.66788270368589	8.6586240155663	8.78111010671701	8.74987839086923	8.47266733213037	8.75727201446171	9.44129169386217	9.51856838119733	9.11526969549463	8.89466336401782	8.74745633898981	9.04650561692539	8.93174051831962	9.05785081084679	9.03822370196991
+"RAB40A"	4.25684409082015	4.25625300976973	4.68907576168457	4.55757026027201	4.55338566636513	4.42872682220336	3.98403482708617	4.34227119376949	4.37168628940266	4.40112103999074	4.4170525850139	4.37476073160711	4.38707411131918	4.34540123246263	4.4216160670068	4.55358890543273	4.64084824902975	4.46012848462464	4.53991491893507	4.1772207121302	4.55402933962353
+"RAB40B"	8.23184277661349	8.22274231846174	8.47624257422299	8.32945006363145	7.83478229224711	9.30730634381664	7.86170947274841	8.37235318520183	8.26573958276422	8.05723846335684	9.41267338522458	8.32613716743274	8.33686154341077	8.30484390846975	8.48234603353328	9.10825797061116	8.14996180859101	8.94807399454936	8.32902543133267	7.70138515176281	8.26050007790625
+"RAB40C"	7.18572932598708	7.49838885340724	7.76712112806946	7.56990205025351	7.6944088118009	7.56483122423134	7.80009851778948	7.53993117921671	7.57357004738142	7.71505358312583	7.46496975788543	7.73418276628887	7.47820259325569	7.51744428875935	7.35072280280411	7.4290721099896	7.75206310145446	7.69479308414308	7.38236005724528	7.69479308414308	7.81065062591853
+"RAB4A"	8.87252709063634	8.22540909011862	7.89771544120269	8.65316540878713	8.41389087026577	7.43674833978076	8.7634698208334	8.80236299511173	8.70142617852517	8.88317114322899	8.52763264355376	8.55496097368615	8.00181923692531	7.62352041012074	8.51320311473333	8.49291684637696	8.43229935346484	8.85947891985163	8.84090623872554	8.5472274886908	8.56741445882513
+"RAB4A-AS1"	6.78916960926076	6.75643272044958	6.89706602623128	6.9540483784828	6.51783940888601	6.97487595870765	7.17827944681871	6.9132475821373	6.94974669723537	7.04756601635817	6.75710538909576	7.01589512463697	7.22883822012035	7.1248819408804	7.2199561812863	6.76509267899194	6.95587715982997	6.60754254650378	7.10369477013421	6.65240900716726	7.00555595661453
+"RAB5A"	8.52575727937643	8.56322973390314	6.91474425493424	8.35926640978347	8.62692178891589	7.06893066192529	8.18401991959094	8.93974397712235	8.3079812475295	8.80546796759815	8.60585591695014	8.6919931295502	7.88967804854703	7.78302077150911	7.76196929519345	8.48786461329978	8.53985431513857	8.57942880633926	8.40328802745973	8.47951393917371	8.72569428496336
+"RAB5B"	9.32261255803678	9.39865498453471	9.47760755389096	9.49781391373107	9.43552062486643	9.30024402084466	9.20033234649518	9.37615499567952	9.46334224361621	9.33919390140481	9.57321935769977	9.44116355170743	9.35054826652175	9.15419507263868	9.35591814260822	9.73727787201927	9.38539477787461	9.64639620775871	9.33910625743591	9.34692452585763	9.1877069241015
+"RAB5C"	8.8758046969221	8.58238944279074	8.51891134337246	7.961379655754	9.42370634708725	8.63010692994967	8.51703725767207	8.6180583012375	7.92734214505877	8.92760373615994	8.59462948360738	8.2759830097861	8.09654455935904	8.00339172378549	7.92500976854347	8.650426782094	8.27910302200669	9.51048458970834	8.20599763434389	8.39973806796094	8.4249180191343
+"RAB6A"	7.42211005813304	7.84287576442349	6.91431240488943	7.45741468204373	8.65991341284629	7.13099347618994	7.16301882414149	7.93027993989712	7.34751736909214	8.75554388792117	7.64149327240947	8.58602185870216	7.2519719643175	6.73049483290697	6.80842683625199	8.13561071525027	8.05438180814461	8.27340770807398	7.69386142035264	8.62750293101258	8.76363257597084
+"RAB6B"	7.16108289812001	7.71354046084198	7.74132944793477	7.59550248948077	8.59124465661696	6.90776062518454	6.89021214972102	7.82529603769721	7.61602991722565	9.02032633859531	7.10389047192296	8.8457054223681	7.8887750462754	6.94797590721642	7.89499961239367	7.54510364453713	8.31374296924631	7.25679669200396	7.57579324386638	8.41006541815398	8.51375224706763
+"RAB7A"	8.50616820072773	8.70450216502443	8.06548472628864	8.57978236038843	8.90686695523832	7.37803086862963	7.77445285115899	8.35812671193739	8.00782406233233	8.91994562522307	8.95692415435344	8.71344845297201	8.4360189639789	8.01344492051555	8.08143053240946	8.99356228962857	8.43402617057298	9.03092720382866	8.29257549805775	8.11199429765076	8.77070114694257
+"RAB7B"	5.50842609232918	5.67593138489352	5.66527197731348	5.34766910967376	5.35823522759187	5.50560398124667	5.05123863311647	5.3059084805241	5.8860065574446	5.60464975464776	5.91804772389772	5.38291231404517	5.37794646632575	5.42699031814701	5.78193309656294	6.81044165338637	5.25393342444417	5.7409966801492	5.7662511083396	5.81251429826539	5.58958890953159
+"RAB8A"	9.50771239107324	8.8641435045193	9.03970982615788	8.92976964785064	8.97928895742458	8.96323531806676	8.85013444898324	8.94842804837394	8.94301483963482	8.94022868362147	9.18862812640027	8.84983376020296	8.75061422251152	8.89702241498632	8.7553849242691	9.11386839242729	8.66230867525418	9.36007665170104	8.53408583144324	9.0106006731571	8.98986354329762
+"RAB8B"	6.54367896325785	6.54367896325785	5.27307227514315	6.54553087053919	6.74486186068504	5.59068811849782	5.98428061138649	6.45779790421663	6.20209702142895	6.68388739284077	6.54367896325785	6.69588130448308	5.82359072887643	5.53785210526689	5.95126600884085	7.14726473523063	6.63442935329576	7.44799433878367	6.68120453086168	6.63785752985343	6.7393895454522
+"RAB9A"	9.5580662974911	8.95114357077987	8.59927497562424	8.9612117494423	8.49375069294593	8.74783577060452	8.87923729454344	9.16150655817828	9.2065241316682	8.84443842122487	9.35130270732887	8.25283691271507	9.17315699955619	8.71831479723632	9.16183061468843	9.53170039810946	8.60647191814288	9.38922517729034	9.13181521807967	8.35605029620765	8.45390505509882
+"RAB9B"	7.5806988710196	8.64257843912408	9.18110828414615	8.71884026771005	9.19154437360104	8.52577534565535	7.97638820696412	8.36164845873781	8.86721885442214	8.83921054578106	8.35707285681101	8.84794770897802	8.89517801486288	8.40257889771556	8.91097794267423	8.47189357496799	8.93945726281321	8.66374420497652	8.79954398108012	8.93929480834024	8.82971090311848
+"RAB9BP1"	3.29248890903913	3.1594229825061	3.31934095741332	3.08527254074779	3.18017625384602	3.47298025610708	3.48096548537738	3.19566510540029	3.03761063775935	3.19974090533624	3.19974090533624	3.24119798725022	3.22862583987553	3.0951637630141	3.285816920392	2.97427250281873	3.07850057403932	3.12373778020503	3.19974090533624	3.1760899214659	3.17933794003809
+"RABEP1"	10.0432275780187	10.2042962220775	10.0266139431133	9.83908527292788	10.1705884959924	9.62609982340604	9.69889139057844	9.62025803202409	10.0829247927269	10.2661900645374	9.9796745696556	10.3127790310994	9.35113634446993	9.8654404395353	10.0425680022933	10.4463378570113	10.0539703801103	10.5640490018306	10.1165273719832	10.4445649850561	10.3018297718592
+"RABEP2"	6.87425091470442	6.7265043438343	6.76290127781036	6.09678811345127	6.62510650281999	7.36716351106287	6.04247553005613	6.54173221871592	6.44796393269917	6.48625501781169	6.91713853255812	5.94508726018748	6.64402996169917	6.91949171781644	6.17165002221998	6.8379250377391	6.28894096281891	7.42351283685585	5.80858492434013	6.6811945931249	6.60874794520505
+"RABEPK"	8.45578989893752	8.42329660732807	8.78032637591712	8.3830787013782	8.79030560284884	8.0972944096994	8.27399175255699	8.27304702033339	8.40153912199523	8.50321994614517	8.37471880841387	8.31738357440059	8.13297416408713	8.22209164527382	8.1996715624792	8.66166699013418	8.21387947592797	8.46109831748079	8.21872726495888	8.65757570639724	8.51400505010123
+"RABGAP1"	7.04842593668083	7.34500506561086	6.91186772801867	7.17098331912834	6.37422678034448	6.79921296106842	7.17458429229085	7.36997797711067	6.63291107424417	7.21179227805519	7.02864638130028	7.47632507188932	7.25766547298121	7.24934079071722	7.51963008018438	7.02457546592165	7.30034427533746	6.60608792361322	7.26017205555425	7.04090723518526	6.97959194514478
+"RABGAP1L"	6.15388947375721	6.9588913371663	7.84223911570746	7.02378125832054	9.05723575078133	6.6672537785634	7.01064578191242	6.88017410926434	7.5788347394974	7.26003903496125	6.92605504560294	7.52641853759223	7.88504350346743	6.91603686759775	7.53952413018248	6.84689069968899	7.23019560063003	7.36691624653717	6.93975968195142	8.12482175504893	7.34469484158087
+"RABGGTB"	7.88427389433254	8.14205872467838	8.20784687315635	8.13792009888969	8.65101247944816	7.54000245918147	7.29176195071843	8.33297137906729	8.11699452990813	7.95663794986813	8.27435427232909	8.14374325642114	7.82139554641225	7.61790590327054	8.12895171887449	8.58160466598955	8.35139042189101	8.53769900856506	8.23097871546828	8.00424265126859	8.16414436914492
+"RABIF"	7.74799796788616	8.00495702912594	8.11166700085313	7.88987784361555	8.31545722477875	7.88784398463646	7.56645813535458	7.77357205063675	8.02662314779258	8.51102722291516	7.61265034176549	7.95742634016637	7.96407036227376	7.66886977552184	7.86911434240598	8.21713764426734	7.93021029286052	8.24416116440923	7.82151430024131	8.49665765073568	8.17196161529677
+"RABL3"	6.50432498029724	6.35345523670514	5.62325166645393	5.94013309762995	6.13781237224737	4.88785573133781	6.17290465350022	6.2775742785139	6.00232600237535	6.36549697945344	6.34728095886456	6.19683172000917	5.58216373227818	5.83248475931933	5.39269893197724	6.33635388285873	5.72695079969454	6.26000831341575	6.39744073972749	6.54243108038857	6.1188446018274
+"RABL6"	9.01901391669971	9.03676605871969	9.96664663419948	9.41903329295014	10.1552621543816	10.2497338478736	9.24435451573246	9.10878933035129	9.5049572596391	9.52752258840839	9.19042772545802	9.35627421054284	9.59564958877424	9.43442322156723	8.96854069359224	8.94982329898657	9.30945194309751	9.56004371048733	9.23848196751249	9.46428073429052	9.3995809410029
+"RAC1"	9.58330123395919	9.53488047889957	8.61757918181468	9.25638407664884	9.39263721381975	8.40750120110227	8.76616333840172	9.31634925406139	8.79752696754175	9.52940232523178	9.883494463431	9.34123947735886	9.28453854844508	9.1146017903376	8.73014152872218	9.69581438109156	9.38155890589373	9.56006259075127	9.1877856943761	9.02125711216688	9.69405563390751
+"RAC2"	7.97349332130061	6.57788204311098	6.48564909040405	6.70682450792519	6.50783073229774	6.40967067727669	6.52943505999056	7.54399971811434	6.23133654270665	6.8032165387254	6.28338552354946	6.71302047392217	6.81785957315103	6.94620601340063	6.67320666184343	6.61951292586447	6.40353670178801	6.51541211490443	6.64873951839896	7.48922807496522	7.70871554286297
+"RAC3"	6.12745852264509	6.15064996053268	6.99847536327577	6.41738748374501	6.87848919100021	6.67650878949898	6.68458396877338	6.12059484398192	6.29068085930688	6.66726646325648	6.16721046927294	6.71468654914933	6.43275555660931	6.23431084734889	6.0172398055011	6.16726165566189	6.40285629181692	6.44296816330094	6.17957947574882	6.8966189833033	6.67233350212178
+"RACGAP1"	7.22113188711839	7.41121867044394	7.49014512442825	7.14991726222263	7.38282797017328	7.49523804298027	7.01487932065794	7.27275747574585	7.29602426456655	7.02836862371525	7.24989446289811	7.03405165775708	7.52520528877469	7.14356392262134	7.60931522938971	7.27358935732222	7.24322634612996	7.65109559154241	7.25436570417811	7.14994209722737	7.03045410014018
+"RACGAP1P1"	3.53166638849994	3.60610963372174	3.42618414033254	3.51482800716384	3.44761510179555	3.55887552864622	3.54091782779674	3.6372866442355	3.75497458882694	3.46904204053128	3.42618414033254	3.52104284834528	3.34010812527678	3.21544200451983	3.51861530854018	3.44112118600896	3.26376950200008	3.34526864667036	3.34371638017177	3.37169439168	3.32965654418754
+"RACK1"	11.3324042946128	10.6170568553229	10.3453328194283	10.6858803260767	10.6110905924609	11.0507364344831	11.0510835938352	10.9808579725816	10.8050011701109	10.7697215830478	10.8934716418315	10.704375027158	10.6950519944031	10.7147880585802	10.9340112338422	10.7037320675539	10.6647462292209	10.941262694903	11.0720985423135	10.7573951513635	10.7447538334939
+"RAD1"	7.45125253983146	7.73149192678547	8.16699009606531	7.78922135307639	7.83744125129893	6.91182799354459	7.49495211114579	7.72152860591936	8.24100018890656	8.25988411811713	8.00194127689529	7.75047289188083	7.70345158160046	7.44981854193615	8.38776458663903	7.76885230287974	7.92366961107031	7.80674575096571	7.8523886012619	8.06072898040008	7.79135779181902
+"RAD18"	6.43801996522886	6.16584601638054	6.34638408286636	5.89889498519724	5.92395714278009	6.847163518284	6.55155176600136	6.16338232955149	6.1775542508976	6.26484443257825	6.22573288608217	6.15642138198348	6.1258263412091	6.50772419909842	5.98174420516442	6.34992922696974	6.2030763496523	5.87003046461075	6.48637787212036	6.20958867201295	6.25280471918048
+"RAD21"	9.94649752914672	9.40341969114098	8.65724638518441	9.53714949049693	9.78583548525185	9.52126881796413	9.60204679208907	9.6301482235487	9.47232426912981	9.62232453910803	9.70035879951054	9.65050367388325	9.06559737230909	9.17921468788456	9.01828950270936	9.55369976724281	9.4385144763999	9.82587710447938	9.72842363176755	9.53213588784499	9.41710430691426
+"RAD21-AS1"	3.71302099081728	3.93305798031146	3.81142891303669	3.93668319481726	4.0740995818499	3.82497619183569	3.81806495797025	3.93668319481726	4.20052497761076	3.71909995455025	4.2146616318978	4.09573037305776	3.97680014305567	3.90882538535162	4.21116455461356	3.96996018222009	3.93714744750848	3.8803122407876	4.02540155820188	3.73652728885692	3.84490623480668
+"RAD21L1"	2.90928776556189	3.01685756297862	3.33982647990902	3.01685756297862	2.85869749259187	2.88544562679197	3.36759083461154	3.00034344402472	2.98920501294193	3.03109666551217	2.86745305040824	2.89603232329706	3.03109666551217	3.17250840644226	3.15412839239769	3.0587070963797	2.97528086283596	3.01685756297862	3.13641736349447	3.14954895129231	3.0734819683253
+"RAD23A"	8.73251926714194	8.6955049415549	9.03170882669985	8.61202375152117	9.24595945906156	9.01012807951959	8.53000774581508	8.66424079117455	8.56421597053731	9.32684885784962	8.88222503290938	9.21421831651056	8.71689867317056	8.42247073101372	8.19113437054826	8.92632795538272	8.66991906736172	9.12729765062264	8.59230191064715	9.36786119492496	9.06195453295176
+"RAD23B"	8.38576097401605	8.99356228962857	9.27314379694621	8.28038693626702	9.31902563120564	8.42986454456113	7.53336656131613	8.71562915199575	8.53132059153082	9.19185928941146	8.69876682822071	9.01121642157219	8.39607883995939	8.10441235115844	8.32495810079263	8.45090267896086	8.66602751545586	8.82399320392535	8.10739428782325	8.63256671489653	8.64817461046013
+"RAD51"	3.56830278072468	3.80206784181952	3.84747507520282	3.81769278520976	3.81512806253524	3.64026442490997	3.9927683073142	3.79467929837935	3.99368741951222	3.76719659581225	3.83353097716374	3.95913023193184	3.9962300466955	3.83268742036731	3.93152444971922	4.11086842496614	4.10777646102437	3.87446336047877	3.96187138268813	3.69732762643319	3.68527577905022
+"RAD51-AS1"	7.08423737681177	7.17354755241545	7.527263786946	6.84549336071913	6.90805784292581	7.29399120423887	6.93210953062391	7.08213617275743	7.03506270600902	6.92403677627436	7.2225346117518	7.06073007833702	6.60286087873408	6.94609443845718	6.84735774073151	7.46992574169495	7.02081643664012	7.75426579697727	7.042377749206	6.7907772780761	6.90496600863509
+"RAD51AP1"	3.70632310137397	3.79250770968603	3.87690084516356	3.72247287810652	3.70632310137397	3.77204025045912	3.59836282611579	3.70632310137397	3.89750769692117	3.6508247768265	3.76927431185221	3.56378478553173	3.39731514827641	3.54027454259759	3.56037614621674	3.76257341391928	3.80904590293677	3.98617668119083	3.70632310137397	3.74337586447251	3.55368598880201
+"RAD51B"	4.52272509590415	3.87792568340081	3.90992962559209	3.8361697353693	3.78068248928156	4.14714695441259	4.32020904507431	3.91977967638055	3.68480530868136	3.75904819518436	4.18826274540171	3.5914496847645	3.76450825752092	3.97041353940404	3.58141565387179	4.41346542206068	3.73132313329495	4.05479046936519	3.84883332170232	3.75884484056801	3.41140002930759
+"RAD51C"	7.94690354842362	8.11656442053386	8.21571811104933	8.18607531048332	8.40990620186468	7.32034624198758	7.55735234255696	8.03586142027609	8.27803103153911	8.72368075893795	7.89946581535078	8.23073356776939	7.70430831932302	7.54270708857109	8.22247855811189	8.59696493492939	8.39239977878534	8.3678426346086	8.36125183623257	8.68541297436098	8.50354926206503
+"RAD51D"	6.26134230844729	6.3551173618941	5.38689564215942	5.94050150759885	6.00043364555976	5.23916954509928	5.68365450012862	5.58038701651574	5.89755471003686	6.30707313159909	6.19100347456416	5.95434325141737	5.48313192647376	5.431188373423	5.75913227780486	6.44096870961559	5.96394066388374	5.86452281932874	5.89079902560407	6.09904961654856	5.9415038081415
+"RAD52"	5.63788517828472	4.22230414469316	4.86986392122983	6.34505002804546	4.53118552838154	4.98100448087782	4.11109455316297	4.91059252254437	4.10618831227175	4.70387945625581	5.43020251687167	5.78471540055183	4.22801047821345	5.05227339009819	5.08468018163513	5.60981301985356	5.63637325680908	5.69428003612801	4.90759223014309	4.04643519056302	3.88877315023898
+"RAD52P1"	3.15132839120907	3.10271875687885	3.33057327620151	3.15132839120907	3.00222309820317	3.08116205774986	3.18911246908135	3.10445188916792	3.19252788411931	3.30352060329052	3.1719518722198	3.01684657102727	3.13972408204242	3.25610037910707	3.12539036540345	3.08328151802207	3.19060014899493	3.22051784700041	3.18909678098633	3.13645256648828	3.19098718163067
+"RAD54B"	6.33440373164159	6.37874871958625	6.54759060937593	6.42903153052594	6.77484789452062	6.19881679711964	6.42903153052594	6.45051894481771	6.67046075254349	6.42316959745497	6.19106932073103	6.34551726824853	6.46207596084425	6.17007248696622	6.78953578471793	6.1440678916342	6.42903153052594	6.59899514866583	6.78232484521287	6.33538103090433	6.39170327637766
+"RAD54L"	5.31730919846428	5.50159537538945	5.44257789315175	5.76726425320995	5.47807477264944	6.00990179220662	6.0622606334452	5.61194928821434	5.72459566084297	5.55700727052206	5.49633912703475	5.32049469724712	5.79839940332246	6.16436988453939	6.23270668269834	5.67256535450651	5.52302520974369	5.45189105522432	5.60534275546563	5.51467548650376	5.2992386944742
+"RAD54L2"	6.91201351963105	7.24213939693093	6.98918031265854	7.34862654417391	7.14552204571225	7.03123642507927	7.74182920200705	7.14023531215739	7.34030434787521	7.08991269271294	7.238412261053	7.34751736909214	7.2998082061276	7.60072651498612	7.23545513501317	7.32072393083115	7.19645737591708	6.83997208472193	7.31739476232664	7.34383115889723	7.64217370870309
+"RAD9A"	7.19973237152849	7.01608049380812	7.423716043581	6.65570421237548	6.91039240692799	7.0398447804615	6.96728774776334	7.16572323093033	6.70843191212613	6.91330921716716	7.01769039062225	6.91628893353588	6.4197653182125	6.93321524235973	6.29982612658881	7.23660874009343	6.7688035318428	7.19619837210997	6.9144125556692	6.69746824743279	6.83932082102261
+"RAD9B"	3.12107371766547	3.27214060662893	3.11946379427679	3.13740199328532	3.23133600545421	3.21298117002204	3.36176147569244	3.11200836223516	3.07149572954549	3.04048422142886	3.25584701473426	2.96750392926262	3.22025070103817	3.26366287540476	3.14028182516021	3.28682325154195	3.2172621720049	3.33709225502823	3.14596646959626	3.06125006980278	3.08137222997402
+"RADIL"	8.18609391116767	7.66354634107726	7.7857648939336	7.95699931849038	7.71526492570714	7.87682507713616	8.08803009021848	8.26635013041689	7.74439449070916	7.77396602347553	7.39523916529102	7.51757767887727	7.76730647724717	7.84731942404538	7.54942968773177	7.20705281807449	7.97826525503953	7.42047014519456	7.81800742897536	7.57510916537259	7.61543602667076
+"RADX"	6.71498365542297	6.7515079691658	7.39369411404166	6.49772475555694	6.718683648672	6.72722663975001	5.72220368810516	6.5900855941146	5.80267487787954	6.23989813803151	7.45026350182292	6.25841539648401	6.18780285273156	6.03659661893324	6.03080605244493	7.55603915782389	6.22245306833663	7.42282871069536	6.52323509005346	6.77338485319645	6.26723549991647
+"RAE1"	7.73902406692821	7.72450310081423	7.74316213786741	7.79667691166305	8.06058769964917	7.36736602738367	7.42465279344849	7.79135779181902	7.79954365040617	8.03863125563318	7.80720786940911	7.99234444265109	7.37283794907436	7.30881352188276	7.65910727776841	8.16621385752376	7.74665939624444	8.02496770995266	7.62595027817597	8.23464088350863	8.03635820682215
+"RAF1"	7.96291473527843	7.80594708376302	7.73250007875695	7.83660139177901	7.49174288837782	8.19030695278876	7.60772040898299	7.95339938801587	7.69371110399301	7.10078370908847	7.68873142136377	7.59231371251124	7.62349081305279	7.66249622952443	8.23205047070794	7.87933339287294	7.97686987331508	8.00700569977169	7.60472301972109	7.31665020858377	7.37111507539679
+"RAG1"	3.30339597338848	3.29509182814987	3.31608861417485	3.32762502808169	3.14863882882997	3.44874279340682	3.2371083959586	3.22731557643413	3.10989305240151	3.0768461069553	2.93030934439005	3.07328261122778	3.11132034001803	3.48045600388665	3.31188130530844	3.3079518198294	3.13681820636769	3.18076599545092	3.19974090533624	3.15502627204913	3.12709033006703
+"RAG2"	2.85911466580918	2.83998258218005	2.94906970106365	2.89468398715646	2.70820685735184	3.02924270752341	2.90386292662152	2.67737958718411	2.99482578769282	2.7897034497266	2.88345996132337	2.87069464139811	2.82698363756396	3.24509095186854	2.91019054338234	2.88345996132337	2.73943044636976	2.88345996132337	2.94125277279137	2.93544919302475	2.68758947789523
+"RAI1"	5.81103615184273	6.16995554537651	6.2414691834861	6.34868840191568	5.75712048357144	6.51473889748984	6.72699574216003	6.18917063586308	6.42513950686138	6.31116211276374	6.1204677277225	6.20991561979	6.4382317887655	5.95583303414307	6.26454373695395	6.3515602937841	6.28572161649712	6.3515602937841	6.59787768265175	6.20695397189258	6.10982810165048
+"RAI14"	7.96113272779373	7.11780326068113	6.87695440085394	6.70922930916384	6.7500093920749	7.67337252909852	7.3272636559489	6.97898465718357	6.32592595398467	6.64806030103261	7.5471059033015	6.42636807574975	6.90051982823689	7.30470591751249	6.98567481459829	8.08547333037047	6.6331658099708	7.96196734953714	6.5512985934305	7.02137111629287	6.98491995953755
+"RAI2"	7.76630593148041	6.8558585904249	7.03607561808374	7.1703127451344	7.25324766099006	6.98767192649807	6.7518091580689	7.07544100215814	7.17624025905344	7.18254274731247	6.51699726963753	6.68089000418781	7.37095312406939	7.21368814123851	7.17814304420782	5.95292338089772	6.969038191304	6.66959507104633	6.80909248256788	6.92624609520086	7.14956203469439
+"RALA"	7.23043063656833	7.19161692098282	6.88287485999272	7.3358606681234	7.43510780916413	6.89708932038694	6.95721625480991	6.89439801428337	7.25069474395748	7.17699309129099	7.71494165271205	6.98793231593409	7.2325367102459	6.98185555240752	7.21681409205588	7.48266314484404	6.64668965309118	7.27854463999588	7.40708531340904	6.98782404415387	7.07577628154211
+"RALB"	8.03459878372398	7.81968233172335	7.43697253030507	8.11507077560588	8.41091945837966	7.53329679749195	8.00258629447403	7.96084554386631	8.22214182585855	8.40929610377619	7.76136863223967	8.38825277472776	8.03459878372398	7.86323187657567	8.02655048213345	8.01637549859703	8.15349928515035	7.77121626422706	8.07328174443331	8.49932919063942	8.94844772464823
+"RALBP1"	9.37800630965833	8.83381419412594	9.36675188232163	9.47926874034331	9.48747432871642	9.61513083667353	9.17317603528259	9.1513245805886	9.70020258905781	9.47222827324188	9.3389091502258	9.23920265969425	9.21826089608889	9.34894822368585	9.44408487863761	8.80624144362502	9.21948417164442	9.03979772069308	9.57473091905465	9.3389091502258	9.13101522804621
+"RALGAPA1"	6.95374484551768	6.84823942853267	6.77598337588174	6.75052409202699	6.57990339815338	6.93505109043803	6.31161924935952	6.98390216144241	6.5815638663737	6.36877613995832	7.06029258051801	6.70285271475797	6.33434355809299	6.40220405043551	6.90059856077534	6.97516746539439	6.71504990403108	6.84144378422231	6.66837718926314	6.15922736618094	6.48271260220709
+"RALGAPA2"	7.27780640398315	6.10083418698764	6.35430717119677	6.31637628884972	6.30021839663493	7.34544810846614	6.5405167500883	6.61801254995295	6.22127543350671	5.48193385549448	6.13638994921645	6.20712255322487	6.47016221335167	6.39350843298194	6.70955522728193	5.84221702607965	6.16481064720397	6.47343870481624	6.28742112909143	5.96386806100973	6.1997681893743
+"RALGAPB"	8.89265281469536	9.03330776289075	8.98682473304451	8.78090658994079	9.09303020349275	8.36365452338106	8.30316124846061	8.60982121806293	8.99761544305129	9.12117929938089	8.94619642823399	8.99730881704617	8.56588111588055	8.51831713033644	8.82784564723542	9.21289591070452	8.99126921998935	9.21202868953373	8.87646954065973	9.25795940186435	9.20885688601359
+"RALGPS1"	5.95166251911707	6.06280476571933	5.86386164991357	6.10372141837349	5.76472299139097	6.48932191792067	5.76792002003631	5.96100704657742	5.89781137478238	5.95242049305951	6.31404247087418	5.65273013560853	6.12051611154882	6.29397623553999	6.11602525415365	6.36997628553321	5.72713276629474	6.76700425227989	5.97325139048016	5.85497159996564	5.90036857956534
+"RALGPS2"	7.32607031893083	7.3116416970347	7.94523982256524	7.26713832958904	7.55247431744404	7.37209205305765	7.0428988357604	7.33768230837814	7.41009996245165	7.27463157420379	6.90875427049149	7.35997356801701	6.87766458730638	7.15732676510735	7.62067143365036	6.85920583917425	7.28112690984412	7.25694668013721	7.47200141040091	7.29441818528764	7.20072986541576
+"RALY"	8.36294962500923	8.03292798406067	8.22721102198102	7.86310281829787	8.06355647035179	8.63805129264547	8.37610025487018	8.10524093776629	7.81891428311515	7.96526603841473	8.41797005352553	8.0651293253122	7.99122546280533	8.06851962832329	7.83605934269652	8.59829329457061	7.88659615389989	8.54108923011917	8.02314657540642	8.17004954611574	7.88256746001593
+"RALY-AS1"	5.14959221729715	4.80419531992814	5.25109909408856	4.71144130225054	4.891431597517	5.15036717014703	4.79860242204273	4.88175692707423	4.69178518828237	4.81267602587552	4.84030909635299	4.57512663997324	4.6060052475478	4.48758370788103	4.69739936512654	5.45064403663144	4.32995227099564	4.88314292687349	4.71495200059694	4.75041804238562	4.83322866163256
+"RALYL"	8.21283557807405	9.59602496059926	10.1102854277061	9.50169312655023	9.99027007066259	9.38156363648011	8.28975237719823	9.62583688958573	9.95198518141295	9.76196894853521	8.80483503405768	9.82172215477783	9.61728910983564	9.03804367458297	9.90504226651184	8.91761550002259	10.0285506722482	9.47593759074473	9.63090932626528	9.90367590704654	9.67462344351921
+"RAMP1"	10.141532939057	9.18205522680422	9.51351996344298	9.44434586846879	9.14025573292974	9.31067120026544	9.97842539462	9.69742293730004	9.66833351081717	9.33861277775839	9.7116112837035	9.23504699907939	9.49579292657783	9.44896469170205	9.49928410421817	8.93976835844861	9.13617048590496	9.07604339252835	9.5307428495738	9.41203970145522	8.76644072605075
+"RAMP2"	7.93742877225788	7.04285954631731	6.93041375411476	6.89180166242285	7.26728318712477	7.70871554286297	7.27151416666936	6.91332103899825	6.96750264809739	7.24551894263521	7.3446358479139	6.82002780662261	7.36495564485877	7.51912267076672	6.82525661944926	6.62215404387794	6.96853418622695	7.09357649614086	6.94816053035147	7.21964433374934	6.62377118306188
+"RAMP2-AS1"	5.54273051160703	5.68854531426596	6.00325702293859	5.94182248465432	5.35747649418406	6.07520424326342	6.35923335599142	5.81896662462648	6.13158061673547	6.02314015562801	6.12552208993326	6.16210597414049	6.12511763613474	6.40749997870865	6.57148038738295	5.4668254315453	5.8717524983717	5.45124121372987	6.46289289809595	5.85586188812392	5.89135193939803
+"RAMP3"	8.39931826090371	7.22169774097333	7.22266995914545	7.34986941361131	7.53863117629993	8.68891622021658	7.03815970708877	8.14455136919483	7.528567149589	7.72790995400227	7.69258483831663	7.52022477504102	7.9687229541904	7.42871200090349	7.61721221080197	7.89930247689809	7.35132879787159	7.56215251357453	7.14502184613312	7.7086822441836	7.52367234475185
+"RAN"	9.20124941515833	9.68779112197628	10.1175213268776	9.70149019789197	10.2017740992625	8.88480483203825	8.95549656165937	9.71707959443652	9.91125701374661	10.2125327724209	9.61383394694335	10.0780422166687	9.61665594227498	9.1131235645537	10.0101369966718	9.94240474927105	9.87157830282132	9.90832098915765	9.81442065414427	10.1763946195537	10.2268221741452
+"RANBP1"	8.96574609883706	9.14446548168151	9.30194560701025	8.99642130214606	9.60743787669846	8.75898487831352	8.62306320610763	8.916439128286	9.14212267510707	9.52618513705973	9.12868525971239	9.33071060696008	8.74199096239504	8.46959218182267	8.79407477612672	9.3752195727117	9.1159274164887	9.4435337207822	9.10153391929076	9.55981133645766	9.44891401757699
+"RANBP10"	7.44028314585463	7.38000812788261	7.50071494130867	6.96969675435399	7.19834655085783	7.03826246784291	6.99007348583637	7.04022127486822	7.08013448440575	6.89774157171441	7.2829857990737	6.98407622098378	7.2316454590562	7.35516085871463	7.12305549549688	7.31951016401971	7.19494437663119	7.63271912480781	7.03659417887861	7.32244854225057	6.97503897965891
+"RANBP17"	5.09344560088284	5.49477410962731	5.66527197731348	5.42822377123807	5.63083250938664	5.54450087133998	5.1612329871292	5.03956796460657	5.1004651515349	5.1763293153211	5.32182196268383	5.29699315776156	5.44693678400395	5.47350564588983	5.1851379696423	5.53354019030242	5.36879046810078	5.41368328819809	5.01730556369423	5.28472187326957	5.21531049310521
+"RANBP2"	7.56280651355409	7.85357050015013	7.943974532208	7.30603374255765	8.14075102777041	7.21573966044543	6.62809800404883	7.27620054071845	7.88326250802626	7.96431989483932	7.41909448217599	7.53412792507937	7.38825588190084	7.33288227299449	7.51588524387489	7.48808053739238	7.70479634532634	7.92500921793118	7.36813322029485	7.77717106620519	7.6111214793574
+"RANBP3"	8.36782166863316	8.11563973864224	8.58092454093998	8.39952707970567	8.32624473928961	8.77390179793903	8.51294697356143	8.13054076469699	8.29421121490936	8.18620405444735	8.09130723769094	8.01869786998454	8.54088600946067	8.62268435407351	8.23505975465065	8.06073094713446	8.15713240459602	8.17168563380916	7.92302558706121	8.18781452594197	8.12513194459834
+"RANBP3L"	8.70590032356467	8.27925204743243	6.31919132371846	8.18531922887239	7.62974029478007	5.4487011657509	8.20894677977355	8.57987595049332	8.57153446995165	8.19863606588425	7.52860082506388	7.14010106234666	7.54478045077474	7.93292104303666	7.64424375706763	6.52472958823067	7.83919190079169	7.39399718038725	8.26279475178488	7.4153316021652	6.38406232032748
+"RANBP6"	7.99646775267346	8.29253805021598	8.75453517249251	8.85001074984748	8.81324717083089	8.19624415881865	7.65543889462175	8.49800733247903	8.86050397806956	8.61572702224721	8.32259957421993	8.64343932032125	8.87174380380026	8.15928364235342	9.22846112928576	8.40028937398295	8.70887867725877	8.61572702224721	8.84791928349576	8.47506161309416	8.64766840071552
+"RANBP9"	7.97913132803023	8.01445318589123	7.31142779930853	7.80946337959296	8.64134419475875	7.10252509191561	7.43445872263047	8.11878966996152	7.90147849266155	8.74738209366566	7.91225352062892	8.51262443822952	7.75648941051497	7.31819401339725	7.56489747989009	7.98565341773767	8.25316963250824	8.22609754900291	8.1917779098238	8.41003777901062	8.73028991508505
+"RANGAP1"	8.99275486043307	8.88678834252715	8.84467090740458	9.18683161232516	9.44994731156001	9.22719294902077	8.97738359335301	8.90797335813247	9.13442162271217	9.78532011441409	9.25463392702637	9.7445674282311	9.09961683405166	8.98306176890124	9.09079174575944	9.71564165063794	9.46168369603957	9.60820185981395	9.25463392702637	9.99039771051993	9.91503364998799
+"RANGRF"	7.88030214632041	7.60159952677981	7.91151562171774	7.51359885887317	7.77473787031875	7.51735414475597	7.77671233956397	7.82953497250723	7.66107341368112	7.71778648909934	7.71778648909934	7.73330539918495	7.40048310697999	7.57797436869341	7.6811738751393	7.63873876265416	7.71778648909934	7.90381232443994	7.83013412563101	7.96224285028358	7.60448185495596
+"RAP1A"	9.51635691476542	9.07031987197731	8.52379455871084	9.42447909827886	9.03891017455096	9.56627858936543	9.28507335300532	9.40066344923451	9.29584187632752	8.80287700172519	9.53502751366717	8.79452915793099	9.40730298395545	9.5256947387002	9.59513565919079	9.6434742854374	9.1147497964277	9.77095360794198	9.2765511279629	8.4941337974503	9.08444503600366
+"RAP1GAP"	9.86499667112366	10.6156560620236	11.0367469023691	10.5675413587094	10.8077010064576	11.4094479152154	10.0085671519423	10.4081586152459	10.501746637502	10.5072287276249	10.2897515100946	10.5072287276249	10.5529372407192	10.6202896248237	10.2676325782676	9.85900700813193	10.6418207454114	10.4221588297924	10.1653944692754	10.7553298657663	10.5401672819182
+"RAP1GAP2"	8.17147084012498	9.09690424025489	9.18824886237973	9.20399361391062	9.22042167890048	9.38769767088236	8.74493469934141	9.12784222024507	9.20706090684142	8.9357521215791	8.44056291257219	9.00468283701284	9.1096950933388	8.83931658581578	8.83725806632874	8.05945352016465	9.06187705336954	8.81115151847276	8.77009411812426	9.13220963709341	9.0357631776987
+"RAP1GDS1"	8.18319364369632	8.32274097559506	8.15660564870334	8.33713327517666	8.88711032416217	8.26882590030178	7.72364882907743	8.27842383642376	8.19077754276667	8.9418615992282	8.51666214821845	8.80076564332259	8.04597083911246	7.62206811339677	8.330334916883	9.49480701809523	8.63440678204591	9.25576467984924	8.61865294821064	8.9587940092808	8.9241237081093
+"RAP2A"	10.7759319032567	11.2063785749208	11.6711881223771	11.3474133157791	11.5705037564284	10.6953009766685	11.0305255176137	10.9493343876915	11.6200359299255	11.1842002406212	10.8615312367841	11.175761261195	11.0606449656689	10.8683777366855	11.7010797286982	10.862182207763	11.5233720888661	10.9456921529651	11.6342105702922	11.4194276064065	11.2133104906806
+"RAP2B"	8.15697680757192	7.96766352427894	8.23847898518578	8.05857848305803	8.05588210446541	7.65940544588175	7.47285563404614	7.76164140062194	8.04401106137335	7.68529151261916	8.11940657734711	7.60633642547178	8.38432781403584	7.99918357118579	8.09856564718358	7.66691513231081	7.85030409688653	7.88483179494302	7.90588882128302	7.94868105927551	7.99962889030891
+"RAP2C"	6.87197772233179	6.67640264892755	6.75601202500759	6.58745761005339	6.82831000796047	6.51501314826695	6.5158169763889	6.81518549183154	6.51063041047709	6.06581330102179	6.87266111382204	6.0694403095258	6.7713289872449	6.56500935721113	6.56500935721113	6.46666130717789	6.27868802052079	6.72646716778297	6.74984765497586	6.23161313982779	6.303897164781
+"RAP2C-AS1"	4.84786457322086	4.839496985155	4.89381558825544	4.77425071792738	4.80046618017761	4.89705573658994	4.76968755238661	4.66784483447504	4.74554536161077	5.08534008837728	4.83598702722017	4.90011916145418	4.60763182609425	4.62730641958113	4.6002305097156	5.16695710000396	4.909421097583	4.38635687636218	4.85245541187899	4.81673669462073	4.80046618017761
+"RAPGEF1"	7.28725691015896	6.70636236598705	6.39895132503548	6.90398233663973	6.58290614466791	6.82632357330451	7.4223025370003	7.07776487444138	7.09339239095885	7.1388677983824	6.88727894039657	7.21301623015238	6.96766432137497	7.06252991998071	6.77770184493188	6.66263101892641	7.2045252764003	6.63142763266333	7.25353606343878	7.10986658960305	7.29839314723648
+"RAPGEF2"	8.29932003849403	9.35369266568152	10.6100986170381	9.41142306219543	9.94724918339039	7.85637369132489	8.04208365749965	10.0639168768388	8.83817268993946	9.58774269195161	9.16813335447115	9.80993688029914	9.46754858759559	8.14126910753993	9.84022883581833	8.29650732407671	9.79103225991295	8.88255289090204	8.42569116632044	9.63292679770587	9.62884721895117
+"RAPGEF3"	8.82207116261719	8.14444334744493	8.08039923863416	8.88649912736504	7.68033180969197	8.92490054812651	8.87935617389907	8.60311912168203	7.78271930597771	7.29573067888732	8.40474489582266	7.75079392562747	8.33350220397031	8.68067405033247	8.67753629092388	8.75031146990366	7.80100021546418	8.31212664471736	8.08386656243938	7.44256454445635	7.56267616876153
+"RAPGEF4"	8.45160274067621	9.30784575354898	9.20151960474652	9.62805608805969	9.3730343240348	8.80793465534676	9.89812907853133	9.31800090931215	9.12708872801237	8.79755234569818	9.00779798980076	8.97968809020615	9.94195371456276	9.58429022973293	9.59122012229063	8.4583001538755	9.34171182639799	8.81120317391551	9.31920205246563	8.23167424566947	9.15358123813648
+"RAPGEF4-AS1"	4.17899200504607	4.69227633118986	4.46405582101123	4.36400327083899	4.48331078319823	4.05116242564363	3.90117796620022	4.10804374117615	4.20430580038322	4.22849987344763	3.7390992156722	4.2462309203078	4.19951278386722	3.89190693399252	4.20430580038322	4.47666731484324	4.37055275674075	4.16543254815196	4.20261023032387	4.16325644402003	4.02142757780897
+"RAPGEF5"	7.83092739570547	8.20685399435228	8.02872922295006	8.72035517989789	8.53622472168476	8.17103969586989	7.3077444247307	7.70600851963524	8.54511238979215	9.24340930492923	8.73490481128939	9.19428072076955	8.46273905049102	7.89960718524742	8.55206749436004	9.3081227348098	8.18376642187019	9.10508269493589	8.45197980692302	8.5907070676357	8.02549544058559
+"RAPGEF6"	9.05958921469444	9.56605740593594	9.04797091704768	8.78868612265758	9.18446898468501	9.25592782504387	8.41089028019404	8.89480191702498	8.82515283484005	8.94532237962951	9.44118802551134	9.17768229015779	9.04797091704768	8.73710989427321	8.92247043829197	9.74368265284551	9.04508804451174	9.81177675173952	8.92793713989446	8.69091958564112	9.0880968437336
+"RAPGEFL1"	8.36827078884988	8.89758562882173	9.39434410126453	8.98452766044296	8.85404859391637	8.66632908217197	8.32576254044976	8.52482828984154	8.89100440375655	8.78335795680107	8.68706843394902	8.8517394145243	9.03433392855844	8.64829903525748	8.7404642258588	7.96264197246266	9.02824399989621	8.60188191408723	8.71157335395106	8.9644272996162	8.78249165039479
+"RAPH1"	7.49113575399923	7.96542241867447	8.42843027038124	7.90047250498727	8.03934920147428	7.07535788172152	6.32405371512449	7.3315442068403	8.4244919552105	7.85342394788885	7.73604057025109	7.74417771606804	7.95428738735971	7.80231260438593	8.2368229696698	6.51329118493441	7.87299241393309	7.46687775383625	7.78607617995443	7.81416381597461	7.83374397044771
+"RAPSN"	3.70632310137397	3.68397937085204	3.97332181456302	4.14371244525237	3.5872987662321	3.87634016451525	4.17985206734194	3.64616547983556	3.89720470493448	3.53050727592853	3.86568395992601	3.7389143171958	3.86281457550603	3.81656838702831	3.52650869630071	3.57285563235923	3.55764327709466	3.89155783714691	3.79298798350504	3.54744301517886	3.61271915163667
+"RARA"	6.5251780335246	5.39931122982902	6.00130501996336	5.93770435162739	5.9435778723612	6.7882932219884	6.037078910241	6.03344791738894	5.19798568269487	5.61773309901852	5.28007231689308	5.27435416847575	4.62403072783591	5.45724186695906	6.215078920289	5.80059738530128	5.05481074133096	6.20052348602897	6.4675401452314	5.89339487133236	6.83141800815398
+"RARA-AS1"	6.44103261715085	6.46964488619953	6.5793184786918	6.43735267557921	6.36530850586874	6.96689440203549	6.65454737282162	6.58163778198895	6.26170608340096	6.54092972989492	6.11528567172277	6.443834933189	6.29912156876348	6.37322713474862	6.09683684937929	6.55437584727238	6.26785797333891	6.19840989508872	6.37673202467516	6.53802350820826	6.44377233300909
+"RARB"	6.43957067861396	6.39487517988831	6.15055738250498	6.46941374203585	7.12486502060098	6.07840906651106	5.82329431592341	6.39487517988831	6.6143060151978	6.45248966054565	6.07039354339939	6.81092509845837	6.32804008770739	5.96935943819657	6.11179063621508	6.18011074931783	6.35335367736601	6.33996187742872	6.54692965455092	7.11162105459784	6.72771233836751
+"RARG"	7.60990362570594	7.60990362570594	7.62276349919901	7.77639494376111	7.68283948795748	8.09024115309801	8.34543434100765	7.4386250366234	7.68595508929773	7.68492742098209	7.43972253367064	7.52728888871458	7.84399731151182	7.94031720801591	7.71552309016425	7.24564071609132	7.64566653779894	7.25608179966469	7.82166023429133	7.66148829876475	7.55279598358988
+"RARRES1"	4.00899044399086	4.33399645004024	4.38558485475416	4.14536793280157	4.34246273506691	3.88239445780662	3.97815353538426	4.44904002301042	4.09486358158661	4.95771342590708	4.32527589852627	4.40148242516465	4.10084341764241	3.95833909955653	4.33183292308272	4.42965750106181	4.34873993386604	4.28811339558514	4.28811339558514	4.41283474290289	4.21103245351894
+"RARRES2"	8.38804362572352	7.39356403506341	7.55085388737004	7.33012964065812	7.02034338974317	7.60038745310864	7.89571097655221	7.63666896211003	7.14869170201996	7.648168462084	8.11138641790969	7.30279011885167	7.484798546724	7.63843531732234	7.51315307476663	7.21203579068938	7.18784721258703	6.79366216790307	7.5857238812094	7.98451086922416	6.84577507617478
+"RARS1"	7.80650379374082	7.56177068627253	7.68022655368469	7.35181026254788	7.82181687092602	6.81689025682702	6.96198965708441	7.22847387743332	7.40405496883879	7.95443831732897	7.44496692063254	7.60374615238913	7.17807361292493	7.4364257590602	7.30899498877011	7.58638756088359	7.39170994834351	7.65923189095613	7.39190643236098	8.07659381831432	7.79939833531152
+"RARS2"	6.06630590866418	6.11432534957437	5.9563410884371	5.96465947068528	6.05987992231626	5.58154647311292	5.95763339127382	6.08492709781628	5.79547774098361	6.26060809212981	6.2130289201354	6.16673443410694	5.58864895629645	5.7662511083396	5.71484855484263	6.55065736217447	5.98120196913079	6.88645044670061	6.17773886987905	6.3325767994094	6.06531915645784
+"RASA1"	8.46390709073131	8.89770140767679	8.80553329692214	8.74544113368586	9.29008217156243	8.14557149121191	7.55636342272809	8.89312732120376	9.05650205909668	9.0054356052763	8.79086499204262	9.09027159799457	8.59986547147329	7.89117570618775	8.74432367332516	9.01017886295251	9.10375252612951	9.07395209963185	8.787922523297	9.26625390784668	9.25703918976261
+"RASA2"	8.13274701343534	8.5252451366279	8.81371797079994	8.40285493377946	8.59550314899267	7.94114066454087	7.23380736622244	8.30173060042627	8.35044008970734	8.3963748460095	8.35581376017947	8.15193447744803	8.50456873167214	7.8652024743207	8.38925268006793	8.35044008970734	8.47296928881997	8.52344279947996	8.32894412118742	8.16017843902497	8.44397879877166
+"RASAL1"	7.48254559204764	8.30078189455883	8.48905940281239	7.92047346646998	8.14955761574203	7.79662013855612	7.34537431769884	7.61307961060343	7.56469332966717	7.75836540464475	8.54640513919173	7.86008379345398	7.43311460326056	7.51059242577783	7.50618781704749	8.85502800669017	7.66899256321656	8.87008995961692	7.79507438106111	7.93027606335126	7.84970398120889
+"RASAL2"	8.51633846036334	9.30696085914622	9.82149374865684	9.34740864999836	9.75817783984653	9.08181405411991	8.35892474339107	9.14295162088736	9.30706390400711	9.06880338897159	8.89004081303117	9.51698862365626	9.11682829863731	8.94479834266896	9.17279994479539	8.38531332864227	9.40085894670996	8.90104191341918	9.11690812620957	9.53553448531909	9.14459521390446
+"RASAL3"	7.22383092312653	7.15255699728316	7.02501654050532	7.23972555194541	6.77471387541972	7.63834909013119	8.1203004486671	7.14938653274087	7.31581412722466	7.01633949500656	6.94754525032979	7.0563893976777	7.48047097266446	7.66808414629917	7.28861430541181	6.80844284492546	6.96766518063108	6.72868009556933	7.46443387891262	7.15127532887834	7.34371594189027
+"RASD1"	10.2874446149328	9.88188538256727	9.79619323944403	10.5284368284848	10.0954147908382	10.2172727552298	9.85667105579554	10.909310428098	10.7767601714138	10.2874446149328	9.53223295981281	10.7115448927896	10.7661623970746	10.1615359685867	10.2874446149328	9.44481364505635	10.737033988389	9.8088208284219	10.3864908106478	10.4173064515448	10.4620654574425
+"RASD2"	7.8159620292257	8.21732913915937	8.81364812806633	8.13706447275277	8.70825250588002	8.6946779333355	8.37595575295581	8.26921689903398	8.56062915809131	8.39285776993463	7.85705562539331	8.58423894923456	8.4520300682474	8.26490822749545	7.98624750411959	7.80520562604206	8.64556297751215	8.1788822719181	8.19582898456312	9.23401401086961	8.43392444272973
+"RASEF"	5.09217578576595	4.65432881122329	4.63733885070249	5.05444835135259	4.98572849174809	6.50109944910808	4.92123181998649	5.06314269390378	4.86910075577878	4.92748146895072	4.58991090260346	5.23381177335562	4.94719502849703	5.35972728862255	5.17897583377368	4.82860332604796	4.72083029964895	4.55989832577435	4.66324314296401	4.69009551693165	4.83851391392687
+"RASGEF1A"	9.72678723861501	10.0240943512767	10.5788777210036	10.0718991197961	10.4279277988028	9.97933792895596	9.35757983604419	9.98639254416654	10.4380876412331	10.2950104539741	9.87195001150363	9.92177152245979	10.0924451813642	9.84254597775994	10.358779761258	9.35213818222976	10.0165320714287	9.97195296308776	9.8737464509429	10.1633440648821	10.3592948987049
+"RASGEF1B"	3.91827260306266	4.19818030628423	3.8241111391599	3.96162478844664	4.10711398867677	4.3048719821898	3.97521665806832	4.04033338612031	3.94069285913576	4.02452066914617	3.97521665806832	3.97521665806832	3.97521665806832	4.03172705125138	3.93099617839	3.97019206634787	4.14970017074852	4.1992681872932	3.97469557151392	3.77723463711874	3.8241111391599
+"RASGEF1C"	6.751147711837	6.97121911577248	7.23602481166921	6.56068758472479	6.92347093105779	6.79913767426542	6.63127616300318	6.48993093323191	6.59148032307955	6.83615256795835	7.09721565638426	6.55437704236409	6.75436307618746	6.76396028407756	6.44829825739452	7.32461878109652	6.72479170506221	6.9330709240744	6.56189615966821	6.93736978070389	6.60697522878535
+"RASGRF1"	6.93045153759824	8.10903559413682	7.8791830856771	7.72106047099419	9.07507692793249	6.90404101578214	5.35760793028419	6.81673072477899	7.75128618447505	9.0163128772726	7.80055803329782	8.53973644652616	7.7853630286951	6.54722695062425	6.98704504409375	9.11475945883793	8.50070804267927	8.67882687238283	7.64313189124225	9.03843927191865	9.22091053940192
+"RASGRF2"	7.53809368699029	8.78481062593948	9.52431700925296	8.19992814269433	9.3817022940575	7.95673038960047	6.88388170087791	8.34846764245061	9.39948995024485	9.1724428016447	8.10848824224647	9.27852181084266	8.01845530823383	7.2517508960702	8.43875915129699	9.17035670012789	9.11113434141709	9.30577813872685	8.62259720721591	9.83712179238752	9.61580219495567
+"RASGRP1"	8.02584902002311	8.87945611947543	8.9191119111058	8.45372829079814	8.81570194932484	8.96066595472418	7.81397306285408	8.59104224531912	8.22471147170943	8.38116577571114	8.22496594053325	8.61920673609864	8.51690760916002	8.16116891196659	9.0381062758863	8.01322154820016	8.53451564278066	8.51690760916002	8.70630572763873	8.16481949879923	8.46904978652401
+"RASGRP2"	7.38612064096125	7.24838101021361	7.62891320571402	7.54118424544754	7.46941419714926	8.17352924745767	8.61946380259036	7.36718086286646	7.80586006433634	7.67775193998189	7.2482636258595	7.56519401775571	7.76906949261062	8.08825278450003	7.74333528357636	6.9952402131086	7.48384467311593	7.36212371897256	7.59940596891567	7.62124316098466	7.48081010608158
+"RASGRP3"	7.97744194597292	7.64792978061312	7.36090225283333	7.12541516528508	7.34235701087004	7.954231891026	6.71762732257163	6.84484418612436	6.34420287610406	6.6934484844411	9.21682410439537	6.81023137819022	6.87337288836361	7.63774608590385	7.09529657523342	9.86407111243729	6.68953854084272	9.12497115287363	7.58102350691737	6.68507834836737	7.71298910086134
+"RASGRP4"	5.60114474498837	5.5014917637118	5.2049972474721	5.63713136132728	5.47104931279499	5.22089686123931	5.66461782654582	5.40153992879018	5.7047030946968	5.51430483481054	5.69880172381093	5.32396898101168	5.5014917637118	5.82723918207125	5.64080590899993	5.40913645764536	5.59982776962976	5.35674305739438	5.37628305903676	5.48962565855849	5.40617455405585
+"RASIP1"	8.26270239759956	7.0122853013368	7.1498207778016	7.1050430624225	7.2816856483627	8.29599591466981	7.22411003661076	6.97574415670451	6.91935738130971	6.90897114725836	6.91087616465641	7.03267741751701	7.27420887063924	7.58103491674173	7.27733919146503	6.37703310383967	7.01987303982467	6.98442032760267	6.90422396227718	7.53934216079834	7.1050430624225
+"RASL10A"	7.49666088441425	8.48788703192379	8.93425300264666	7.96072481979948	8.44336361753103	7.83580472182765	7.63081738089051	7.80800755850266	8.08689845636101	7.97884371809421	7.77492440637625	8.13176595675963	7.44733062040791	7.45518176696328	8.06985317898132	7.82149182490766	7.85488690552741	8.10760448091074	7.83427354421016	8.42858274404093	8.08919521127785
+"RASL10B"	8.08784616512814	7.84569490188814	8.19798010608716	8.28303934222961	8.14772827092703	8.66477831496412	8.83808315658796	7.93547123757339	8.41264614426904	8.35465990867195	7.91889970006717	8.29200014677153	8.43185836928196	8.51890873848919	8.4041093845061	7.7931182607112	8.24680648208884	7.65362876706253	8.6673589143419	8.3515415644163	8.3258569347666
+"RASL11A"	5.19607272452007	5.53966212964239	5.21456434214504	5.55890411844152	5.63816958153806	5.35633944412465	5.26937587723146	5.27642241968779	5.69328745647848	5.2373751999111	5.20665159044947	5.50030165332944	5.67224886702983	5.44828344958594	5.42174309681018	5.45784325705391	5.42174309681018	4.91218295647876	5.14954841393173	5.40713179611604	5.34398330289455
+"RASL11B"	4.83851391392687	4.89645051374894	5.22093701326888	5.29578705804734	4.83411019634253	5.41753025935339	5.19855938340542	4.96530284883724	5.38096178884787	5.14249308533905	4.98633833094732	5.27874343346442	5.05151023871605	5.2719485775628	5.33985546375662	4.88637614850344	5.25396458025708	4.64174137062536	5.08819099377283	5.20209954487204	5.09031367803787
+"RASL12"	9.12659735677993	7.83428299311647	7.21626637517546	7.97132261134537	6.65462818564462	8.0447587027692	8.31572726608333	8.94087840752656	7.00815081660359	7.0119235931092	8.21342190237685	7.62950168823936	6.41592510262115	7.71412653934189	6.99641259355797	8.03415448930292	7.08211941069018	8.3333990587748	7.9474971582833	7.36825418326876	7.15512105260625
+"RASSF1"	8.00506580800912	7.6083398649418	7.59235800372936	7.56174961553561	7.24907139820142	7.7752173869778	7.76687383741707	7.83813054170568	7.29248748641523	7.66329882277169	7.91693065057212	7.6816413881116	7.65993866234246	7.71902317272346	7.75343122731488	8.07810796169249	7.86805186663654	7.98948990568837	7.91631427975699	7.83636741046928	7.72649449698163
+"RASSF1-AS1"	5.4442044174219	5.44061319479109	5.49140698403586	5.49140698403586	5.302774447548	5.5515769888598	5.65437498452	5.14422807197875	5.62718721542382	5.73586417311183	5.49140698403586	5.48570265960297	5.73952336667909	5.63315564437403	5.41538475254815	5.46870512999464	5.33318812731407	5.18280372002127	5.49140698403586	5.54035282560385	5.46129806719622
+"RASSF10"	3.79315956841107	3.45400290426934	3.63239360016106	3.11015151176777	3.52182936803631	3.38687731910602	3.43595656393684	3.26309069841294	3.64331602022715	3.45663784080486	3.38613004288932	3.35332299567951	3.07620374655872	3.43595656393684	3.40183802664676	3.4552766981955	3.43595656393684	3.29953697953502	3.53102086293918	3.32578299506786	3.47934571127468
+"RASSF2"	10.2200018632395	10.3462366370109	9.58699376303061	10.0787233743136	9.59495748354554	10.7452825551713	9.87128227335889	10.0384149823627	9.15067295123708	9.50303109168521	10.6278737760596	9.41173031872771	9.69648634095132	10.3612355731071	9.73038408974002	11.3063907282355	9.55731870056983	11.0878861258069	9.74040703762831	9.221301532381	9.89273278153947
+"RASSF3"	8.47598045770696	7.95339399299709	7.63375682322101	7.6611757016462	7.77980128348827	8.12351124587501	7.78355830179956	7.59143452378558	7.85384264272088	7.77889285030473	8.33582245175997	7.20244055795333	8.92425236162059	8.31486097479127	8.6434133571082	7.28677927554608	7.5433807795536	8.00283232288172	7.96721251291503	7.86097711353987	7.6202046525508
+"RASSF4"	9.40009956747363	8.44835571906526	8.25329362270838	8.37799874426703	8.25212184536499	8.7344077684145	8.06878085582455	8.79306909067972	8.09347541792357	8.44025011578931	8.68203378188904	8.59029020831869	8.19210195173747	8.70041026692139	7.97893283184885	8.48707909173694	8.24322551198524	9.15519511838173	8.09637451614648	8.55917283326478	8.57608420138367
+"RASSF5"	6.06425536978966	5.92390609939833	5.30172003172388	5.6985810099667	6.21207312457593	5.32788652225312	5.62542788077072	6.16828944645565	6.06019713175453	6.32040752304551	5.39256889886875	6.5844916755244	5.77001484075164	5.09470221562185	5.64392327256095	6.23473161697117	6.59555689236765	5.46251431219096	6.00571102515236	6.7023956876479	6.82754271868076
+"RASSF6"	2.87854259347243	3.17339135368586	3.08026577796219	3.32921006859446	3.03136666509278	2.86956174517465	2.98996000787759	3.00082923732869	3.23904729873837	3.12688521340624	2.91419174836181	2.8371979756695	3.05736775009236	2.86296346333892	3.01974229787065	3.2212485023405	3.08026577796219	2.73638239076039	2.91767374296002	3.01998664638511	3.00884470402831
+"RASSF8"	6.5086040432639	6.37514771516368	4.68256839294884	5.760814931584	6.15229347608257	4.92491854168784	6.80575011974619	6.64804259873851	6.0077724735066	6.15521790666093	6.15096177253267	5.97079277490728	6.0829521766557	6.21072283381229	5.96785417710979	5.74831947203346	5.84062286840462	5.99570036536789	6.35527179834601	5.49677290499408	5.74512917290842
+"RASSF8-AS1"	6.44462388154056	6.43384173123279	5.29013528604079	6.02232787105924	5.68064714813503	5.36581144011274	5.95401623206257	6.02907976452953	5.9764574444015	6.14798766780842	6.47681957785546	5.9764574444015	5.9764574444015	6.19744364301825	5.5009706803835	6.06108680146693	6.07867334115032	5.40311224932221	6.31688145576524	6.27652798307291	5.98628764561341
+"RASSF9"	3.02365905940653	3.13417850679569	3.17560813668347	2.97849758657475	2.83576262411306	2.87944232226214	2.8481026828753	2.90758386418534	2.85739505171477	2.88697817079474	5.15918367537262	2.94560891206417	2.84358745289624	2.96148176992207	3.00382939321011	3.0247891103638	2.74107922409151	2.8261421626969	2.91454741534541	3.21157016001062	2.88888759147294
+"RAVER2"	6.51402398752716	5.86921315236864	6.62242076909148	5.6259612250542	5.74864670901502	4.95943014296011	6.0748104510658	6.34875565080305	6.38205706845199	5.55890411844152	6.32133160051693	5.65782369653388	5.81640276962863	5.58313478956545	5.79650004988412	5.00061773286958	5.52545330008562	6.13851127881492	5.6355314626734	5.50446269746322	5.39998258138594
+"RAX"	6.47616425646316	6.52848564180391	6.73151016406485	6.81922973644574	6.49134337417435	7.10110197277995	7.51820305724527	6.61417183301002	6.77893973162015	6.68138555016217	6.5481980356291	6.68541650544832	6.70184503480271	7.16843576525466	6.65488169908222	6.66637809979129	6.64738193748174	6.44589305826384	6.73507350429146	6.70579919937004	6.79986889153138
+"RAX2"	7.22406622385207	7.14074701892045	7.28733366811915	7.32871524974742	6.85519701866179	7.14631097395223	7.35318646314908	7.2743188381336	7.42206247749691	7.20477918023903	7.14107482715145	7.20339401777072	7.55929477957831	7.66582935925392	7.59890515561988	7.15924241071068	7.26994461351454	7.10837835886461	7.30366762928955	6.76735822004656	7.28457570154671
+"RB1"	7.97361752464997	7.73033419063706	7.30356924681222	7.82351388128045	7.47462471749955	6.76256110498898	7.02804382845648	7.69783749769381	7.71232340697802	7.25609788588084	8.08363585642972	7.0465582076009	8.29343336619723	7.57436352817915	8.06041697109355	7.76868989029315	7.53039038932901	7.86510826791694	7.60843206422898	7.31628847365783	7.87153394482954
+"RB1-DT"	5.20868009225656	5.34517299406312	4.82445527594922	5.08061470591675	5.14510208336765	5.19335661987863	5.2136694968618	5.20560872539239	4.93937628416185	5.27454905266301	5.08876439787245	5.07841932946096	4.98426583169988	5.04017176757857	4.98476216657815	5.10853556043907	5.13978096394019	5.01527635913935	4.8022599334872	4.84657162711544	5.15954824693267
+"RB1CC1"	10.0853553217398	10.3592863853216	10.4891836426295	10.6389683786698	10.7147822755631	10.667681197044	10.5738166212643	10.5041975807586	10.8511767322794	10.5287944841	9.99929820924462	10.043503428909	11.2679400193646	10.9448727662671	10.8604885008377	9.97343248597053	10.5458437628962	10.2526163532084	10.697126734082	10.1426666817921	10.6031713686513
+"RBAK"	5.06028976515604	5.51298528227496	4.48649527207232	5.10997866922269	5.18679645773013	4.79694185088438	4.98076975407914	5.49723842532503	5.20981235130957	5.55163929738028	5.20981235130957	5.43646268892885	4.96387760137432	5.20981235130957	5.24158320105472	5.1141896347058	5.16139983718241	5.68891419708366	5.12906069912838	5.4715456457952	5.2325902841489
+"RBBP4"	7.58275072845387	7.58321273800071	6.40837850353168	7.95501037920102	7.28201721359144	6.56548491373282	7.87487795167225	7.83138097225133	8.11699452990813	8.05180801665195	7.9912708080047	8.13479663696927	7.84131585553996	7.57387329342555	8.09554953949414	7.84050757367081	8.17424290786581	7.18966451716054	7.83951051637096	7.80809099326551	7.88177883275611
+"RBBP4P4"	3.53382532042597	3.42367581786389	3.57578353289897	3.38357719107436	3.53255076475279	3.36268496562388	3.59356583305939	3.50750612144021	3.41895617250378	3.33082950522234	3.53455246139387	3.50834187551803	3.29179041377505	3.64702119266822	3.27532176217466	3.20047075954138	3.72617845015601	3.38702149509384	3.42256251401943	3.28051779318195	3.67064224091171
+"RBBP5"	5.79371624435879	5.98423054412709	5.85851248274089	6.0887528314357	5.79487625630033	5.5611902783215	5.71432113441773	6.28265150606496	6.69379071833143	6.17439365434033	6.04730321559297	6.21329667283989	6.30791887363111	5.79976601284619	6.59533281754487	6.02712581696732	6.61891370422132	5.83225973660889	6.51814381144081	6.27880390351479	6.12773878704468
+"RBBP6"	6.30498318392643	6.19276214797359	5.86458741523871	6.16655095103409	6.39221172817985	5.91885647002772	5.4177619760659	6.8379241045864	5.53232350444923	6.06366868330266	6.58003939877323	6.57253755840213	6.03538675950926	5.82792630974337	5.98195862516118	6.44189839534646	6.63028375632742	6.84104951916991	6.07080523724961	5.82015137902935	5.76278270542185
+"RBBP7"	9.32283507051036	9.37337954363702	9.36692959497925	9.1800685107435	9.4469974419164	9.03856408013243	8.96806830956471	9.33132400237944	9.52142209511039	9.6382292147242	9.36279368270978	9.39460860906195	9.27209715150187	9.08831401959801	9.2100966348515	9.49686019366508	9.45853513783815	9.65937200143798	9.38943091748841	9.46882518917065	9.44763113113519
+"RBBP8"	7.55230782298845	7.28522012822372	7.04639953265154	6.9368931589621	7.1039006872225	7.16279932375223	6.85469439636417	7.28545480327884	6.98807308295741	7.00390268194644	7.23052984859072	7.09508473513436	7.22120041477971	7.34855920521115	7.36621955329691	7.05746307994108	6.7593488129353	7.33681796501648	7.00778112815291	7.0367318609646	6.80417755067334
+"RBBP8NL"	6.76447888805107	6.77641062767483	7.03221941642542	7.07327138821589	6.67979933804331	7.44851101963014	7.79980660609167	6.76678256220695	7.1129776468607	7.07084468341994	6.85574740325603	6.96695359974875	7.20564916565544	7.21916249888779	7.01684889062685	6.58664139797531	6.97336960983517	6.75751125677883	6.98890947808471	7.09466003258194	6.89763885715834
+"RBBP9"	4.56155447280422	4.88779934219087	4.07572445826264	4.55366036693973	4.61284354163675	4.28485902866507	4.34550352085986	4.76183430945867	4.42102617129796	4.93285775084942	4.83248691415658	4.82817960963825	4.42530661983988	4.78792257261334	4.44156276454377	5.44112508109387	4.61545557917892	4.42751615186421	4.80377194743008	4.52499268525909	4.61545557917892
+"RBCK1"	7.91198884728442	7.49738565247006	7.48159195129746	6.60014471823006	7.67544839624855	7.36679197939933	7.3338846570803	7.61574144074736	6.94188156713586	7.24633055792078	6.99647386057951	7.12366789748426	6.65038626306548	7.26054558651169	6.88597228865468	7.49597797491027	7.07182895612906	7.46978734693857	7.31215570893169	7.50982955406633	7.2817877031231
+"RBFA"	5.72111028232703	5.64378889411316	6.30998508110636	5.60328376264526	5.81361324770604	6.21748830259979	5.60181933078766	6.2006809386235	5.8189394455071	5.79580363695356	5.91359959297333	5.79580363695356	5.81270715539028	5.78484934592463	5.85999200731866	5.98723865760184	5.71656556366923	5.31090370750186	5.82155467044106	5.74775848020888	5.44504286679948
+"RBFADN"	4.00311630079464	3.7300145389108	4.41722933051061	3.81898930686001	3.65010994073964	3.63230312067233	3.77033246174094	3.8162295412885	3.88508134541015	3.87557734458007	3.84165149533547	3.9173765142096	3.91212879259539	3.81016642786898	4.02080343643057	3.76265689028447	3.93059766361921	4.00469379059507	4.12605915815038	3.60865080379485	3.84165149533547
+"RBFOX1"	8.89785744588402	10.5204155297527	10.8821751627267	10.3767533187758	10.969838432345	10.0347578633709	8.75505809512253	10.2597139677544	10.82545825531	10.9894855521009	9.59398048145327	11.0936183547441	10.5871866997666	9.76597074131467	10.5871866997666	10.0691444025724	11.1245443467175	10.3254068891348	10.6385292569712	11.0843924104433	11.0371265713504
+"RBFOX3"	8.36583513583104	9.74993087180044	9.98768817319051	9.61955679537344	10.099347386924	10.0227457329803	9.07475512356722	9.42024448758181	10.0410480814181	10.4319642881484	9.11240809665661	10.2554892210066	9.80928033109192	9.54822680473673	9.22850134020633	8.61001479273162	10.1554610680595	9.51618107348653	9.55631463502292	10.1513393878489	10.0551256899088
+"RBIS"	4.66314990863446	4.87993878429933	4.48441428657281	4.29995966289476	4.85491395831072	4.82738101912602	4.54751080496412	4.52894412892945	3.89750769692117	4.71117528166183	4.95953435987366	5.68614470951272	4.23178281662683	4.6483383210971	4.60432838805109	4.74902271273392	4.18327962479641	5.03670829790837	4.33695827410757	4.79092631452611	4.66314990863446
+"RBKS"	6.83182026018815	6.47768939171196	6.92536850422764	6.15074011041672	6.59123759481021	6.07994782763398	5.79221522696486	6.20854682133969	6.17899177062475	6.7949128764096	6.76411075014261	6.65915754742997	6.14828792131451	6.10573894785948	6.0539076728979	6.79076221369587	6.27822632046643	6.55637310538375	6.32757844323969	6.68185834004762	6.43223564464577
+"RBL1"	4.4331738395516	4.13303385779239	3.75945887084948	4.19726142671686	4.11156023339857	4.11785581074876	4.34327674945067	4.09901479300961	4.39129560016775	4.0270232352304	4.11965792603188	3.76649585251223	4.4786023265139	4.23883399369769	4.33511821362471	4.1338155390393	4.06275292579242	3.96134172660567	4.1406501684265	3.73282569858119	4.015724837126
+"RBL2"	8.4172391431421	7.87198975559153	7.33747218860521	7.73846489523387	7.60748464574023	7.1670817208522	7.83180431355617	8.26248304573791	7.89727333246012	7.67213180399088	7.94566897774732	7.49172241580274	7.31549896890379	7.55650429778803	7.46259540048253	8.00727672052254	7.76601721979927	8.20884465863591	7.89526639540007	7.78237551897349	7.46541390916862
+"RBM10"	8.75943839490808	8.52542690805182	8.98436806152482	8.50548127338612	8.30030933010652	8.87696396536792	8.47561390171638	8.39328491803279	8.16609931698851	8.11278164800454	8.79598218187219	8.26303376773312	8.31263528516759	8.50593032204103	8.41101922091719	8.63222639678868	8.30006195178292	8.81746009312261	8.3908358121506	8.70186359406696	8.25427018700112
+"RBM11"	4.59361977099232	5.14873718901971	5.44589205444196	4.87178155670733	5.35254357906261	4.53320421851025	4.33197003047784	4.94739767711585	4.93509492653557	6.16622170541976	4.73619761597681	5.74641147038245	5.02750878348399	4.37183270189328	4.82429672916735	5.22628618970921	5.31196088174422	5.37722689942073	5.31483239244552	5.40098823916525	5.82557124261106
+"RBM12"	7.76651273453217	7.11157212449927	6.99415322081466	6.71903270006201	6.8485504803115	6.23400348210104	6.70141134651064	7.05745806784947	6.36797775255146	6.96434676287168	7.51026351487235	6.75137264324378	6.22158621845344	6.28665116235149	6.64084857780137	7.71547591494057	6.62072982681982	7.34055951514424	6.96711767605343	7.14985133656103	6.94202762924746
+"RBM12B"	6.63210389433468	6.73663689396632	6.87943259159431	6.99566085029392	6.96441341831331	6.33942844434584	6.56400708852619	7.04179519026175	6.86800070515458	6.36549043382684	7.0108858559401	7.16693348713536	6.85934288347129	6.60890426835733	7.01554519275341	6.6335243521919	6.98750527718437	6.79118309003769	7.04860881587753	6.88722161211176	6.48317615188854
+"RBM12B-AS1"	4.19752979688185	4.28908025831368	4.09846794039206	4.47758296506649	4.2728602177638	4.4158216523748	4.50058091047236	4.2728602177638	4.2728602177638	4.2728602177638	4.08815539991108	4.41797748834857	4.15559120894752	4.64768203816693	4.3430141366645	4.16910210131818	4.17754584941099	3.81763792417335	4.1901534060125	4.45278571115301	4.24930812388149
+"RBM14"	7.2204110689299	7.02805529805337	5.86139646368141	7.72405133422059	5.85672946686956	7.1456818454479	7.83712031009583	7.67236848854374	8.20014854745503	6.74523361849586	7.31748263917015	7.04341973417167	7.90603080150804	7.93956077463123	8.29983772833645	7.09725234745675	7.40580445668447	6.33243125443431	8.0729327750771	7.0428988357604	7.28097014868039
+"RBM15"	7.83187142215212	7.74934804732842	7.51746307937189	7.62029260209467	7.97019860175767	7.48567228573942	7.2964261357508	8.09979973453936	7.79634044168247	7.771346144175	7.67538706263578	7.74067479593332	7.30865771901167	7.06594652522179	7.65580047453667	7.97204926074643	8.10714010194648	8.22367887103285	7.72292229241568	7.92624682320748	7.95216325984512
+"RBM15B"	7.56035172303569	7.14390303345384	7.21043726279621	6.99456864419512	7.09534510851317	7.481491506324	7.57909017214663	7.04048379430701	7.14951028024636	7.06813452451063	7.13321375667583	6.94489379950689	7.14448859266366	7.4925314075248	7.19656325052406	7.2100604461781	6.92973922014188	7.38931395942941	6.88233347583459	7.1875978290584	6.88928665862071
+"RBM17"	8.89709943941811	8.1815290912201	8.15133711760751	8.80994811619207	8.25574060540907	9.0895108190935	9.16185136700545	9.01014758469115	8.71105134116277	8.69200683143053	8.94135763115678	8.67228923809847	9.01505577411394	9.1442570513884	8.87029742370896	8.21801320907385	8.44573748331647	8.53382340928647	8.69168178683576	8.7027665482407	8.20273414456849
+"RBM18"	6.14378126559835	6.21976314139905	6.44562231172957	6.03833543614205	6.24369303693782	5.87434589123651	6.1736329973424	6.20042122895174	6.23080195399017	6.96064488355899	6.33563105032303	6.11785886151902	5.65369039514129	5.29132345597756	6.107707530874	6.35858102210496	6.41755486876755	6.48731718848823	6.18863817987713	6.58835074621847	6.49323263092867
+"RBM19"	6.29513126305693	5.92624247235197	6.30342952801195	6.15569693836323	6.20029830620072	6.6506830048071	6.41999520958052	6.09518258429209	5.72883046740312	5.82767518346872	5.99339022214944	5.88294827790029	6.28816126081896	6.27491213786174	6.1344262572955	6.30838383998452	6.11291661011075	6.26069765008766	5.87074519741704	6.39726794609989	5.76500536145535
+"RBM20"	4.06370019662178	4.63724409055086	4.04257570420279	3.91977967638055	3.90485389505067	4.07125941860277	3.58150107381389	3.92263239978442	3.86163737879161	3.72421426249425	4.16064157078522	4.16433239053689	4.07792606942969	3.90882538535162	3.4413902138812	3.84355692562044	3.86500212256258	4.05402348041529	3.75883304142248	3.82887703213241	3.71911123861476
+"RBM22"	8.1947467883587	8.23157808117203	8.05440623340191	7.97512020655061	8.64429469019342	8.27299101392898	8.12797491441313	8.21637798735821	7.80566107382095	8.08733685590732	8.49984099838391	8.00791979196632	7.74838752809372	7.80065573625922	7.70894294977998	8.52656974330741	7.76703425498067	8.83678053397848	7.91964251376212	8.20054948139594	7.90477895046836
+"RBM23"	9.06178498558925	8.79478456398038	8.75975407465221	8.66322820515361	8.978479128683	8.6940780463781	8.86349443118665	8.82488016935665	8.73473033394407	8.94387214498304	9.00019967815323	8.63217528648694	8.29174006600763	8.62586199540975	8.7400398016572	8.9774878679311	8.76894014617461	9.05426740914575	8.62840196973973	9.14328095556599	8.77746673852699
+"RBM24"	6.24229004178768	7.22956159940858	7.6740473768519	7.15488333893369	7.25829039590001	6.4665784141362	5.49773035466489	6.87664150585235	7.18373564931114	6.69388217135234	6.50371070432065	6.51692215593317	6.86852721267313	6.57972405192406	7.08837756152715	5.92371277285584	6.8364512935539	6.61927590858535	6.92742328300794	6.83236469371306	6.59361593165903
+"RBM25"	8.07659381831432	8.11986015191617	8.63716452804468	8.53707251569868	7.84271529965868	8.47403746488268	7.52965913316457	8.85972140753063	8.31749670980611	7.85677954911938	8.9643724661085	8.217923093939	8.52369672718336	8.60174936891943	8.55855854377519	7.6203326058735	8.20483391310134	8.07399156866132	8.20482637500649	7.60782802008364	8.1190221675928
+"RBM26"	6.92341238433856	6.99384671180605	6.67587536726571	7.01034937005647	6.79239982018892	6.38931859915853	7.04204293724977	6.84040855162628	7.15110248254448	7.267383282043	7.23312100465681	7.78432670222723	6.73253309867692	6.60223892985947	6.64965615958685	6.9404432396394	7.18681291027522	6.58703613869422	6.93362615279526	7.28769751329125	7.14374523474847
+"RBM26-AS1"	5.81108254065272	5.90828771203509	4.90718520917642	4.50399179419791	5.26264761273851	5.03311964563614	4.1335282105007	4.90648508549016	5.31276368723015	4.55103500709688	6.50134909581108	4.9813029263901	4.52143915817157	4.26531740014148	4.16580487083633	5.01394050185523	4.8184151158068	5.24563044904	4.55796847920349	4.47557755896793	5.07484300654442
+"RBM27"	8.48614646827527	8.34076904760626	8.54625294103701	8.34411166336217	8.88438100206096	8.47076156016789	8.04451339633366	8.3996688470547	8.50112339297403	8.28823360369939	8.47394595272864	8.43839448312373	8.06857305017155	8.19644061991884	8.46132735469632	8.50422877261142	8.39385411195264	8.69428364842279	8.48583351083342	8.29349888858148	8.22160867742464
+"RBM28"	7.20121685813975	6.97384841610468	6.87224302372929	7.18197033073954	6.77832960432635	6.70096088298861	7.26416484525954	7.15520938678085	6.67178785917477	6.46274695294651	7.26393716940147	6.33571552327933	7.28036348617903	6.98604704312176	7.0682792159116	7.46798012151856	6.76534827565301	7.82930849743116	6.98143324359892	6.89546907740355	6.65557567367966
+"RBM3"	5.42374924953703	6.26620390238651	6.36309933703782	4.86567994851758	7.01021709199074	4.11806364467679	3.77135542767159	4.56205344935992	4.16089863856463	6.62344444698125	7.23996451609422	6.21880255674573	4.19268246112283	4.1970357507896	4.19084159067254	6.69437768883068	4.91476528314945	5.5236870609189	3.88509171534632	5.88113102141896	6.1825417586919
+"RBM33"	5.81674622220065	5.98676077244935	4.9144179595737	5.41221657404747	6.03679006558592	5.33297410451213	6.08937345775775	5.91481748832229	5.31704887869154	6.13646065154618	5.79915075162961	6.13784569766802	5.67713656343267	5.30414423973762	5.28524626577792	5.85160377734595	6.09838433405373	6.06572341698314	5.51269887442249	5.70168530428633	6.46797501345325
+"RBM33-DT"	6.73596458764496	6.82737532783347	6.91856348117092	6.82583679092174	6.46572871502799	6.62886858485549	6.56632847837282	6.21969473453852	6.56632847837282	6.54333176109479	6.79159508709842	6.54121383153979	6.19661632427911	6.5570036513488	6.67559305110325	6.74392770001095	6.3909503613449	6.75620351310442	6.56632847837282	6.45146654480708	6.50589018164345
+"RBM34"	3.39810421114475	3.26426815597367	3.34831262605379	3.27106583850509	3.55741108924632	3.49176704531827	3.57050374667328	3.39810421114475	3.42278192562816	3.43942425229843	3.42527737764475	3.39810421114475	3.53075962581215	3.51736031590225	3.47214996172873	3.38644929286836	3.10481972353468	3.3259309039723	3.43725700137603	3.37035657696404	3.30760545941568
+"RBM38"	7.35004610051482	7.35051686393832	7.19135426086529	7.44692693689357	6.77347052175757	7.67228037328619	7.90693479367051	7.35004610051482	7.09929575861953	7.00843631733047	7.72064524300255	6.9820502801868	7.69019787473969	7.56782786500548	7.48415791455187	7.27194128829424	7.26426380617154	7.42913856261524	7.30003052035064	7.09769905784643	7.01972828374989
+"RBM39"	7.90668046924968	8.29338395360284	8.95967081818173	8.12918517536373	7.9521305440918	6.92007119124133	7.4565256762118	8.01405460572276	8.20495276881532	8.42529153491189	8.74437391528285	8.40090554287235	8.00751774055943	8.44157940184134	8.24892940578801	7.75565279411257	8.07779110681489	8.42229181625744	8.23043811690049	8.13997069127539	7.49569646677541
+"RBM4"	6.85983918340248	7.62680201024841	7.93148592099529	6.39026572805119	7.34880501779582	6.38859212062132	5.39682875680757	6.7373917112894	7.00060552815114	7.52192883189803	7.19465205918798	7.12585167193026	6.92538104479414	6.75587519411444	6.26791501551783	7.23821158076944	7.03377099297401	7.12479610300421	6.81419885811144	6.78777441148603	6.92281943340128
+"RBM41"	7.42819959312669	7.28276396048408	7.46563651337392	7.63656062343363	7.26426778677144	7.94523599284959	7.42230724241746	7.7749000806427	7.84493091904269	7.21304345688889	7.4001305570904	7.37721659987128	7.78477330611143	8.13514884892273	7.87506339546751	7.17261748689041	7.36032384854396	7.4142284913554	7.661339636287	7.30247779796068	7.3155158025775
+"RBM42"	8.4039510769611	8.07793947170207	8.29383073491971	8.01813790627948	8.3274649389443	8.40096202274814	8.08393851061165	7.91889970006717	7.76475422607908	8.13575781556574	8.53280425419337	8.20695628173398	7.76433580720529	7.90924185639994	7.62803276922663	8.61978875926476	7.81745368429327	8.74054099877648	7.86552326037285	8.25834068405068	7.77078307984081
+"RBM43"	6.23668117914491	5.91071135568917	6.09172514479851	5.60662890041255	6.37558154935243	5.06059786640318	6.18495662951538	6.14265803701926	5.53465072828107	5.73670473617292	6.73625501687921	5.89477565612256	5.14690664505206	5.4940452292949	4.87167494566217	5.83914091047103	5.75879511501849	5.89477565612256	5.89840211346404	6.19643958040776	5.33613944671071
+"RBM45"	7.33559148075552	7.17854792958793	7.18444674456014	6.89233933476728	7.22544648396462	6.6503609700599	6.75949543260487	6.83673975393791	6.76652864537025	7.21705946210484	7.00830734556455	6.96200273904554	6.57195295114729	6.85725231148324	6.85987435233384	7.28907918989922	6.93153992082008	7.33250985823802	6.96260827266064	7.11044690667316	7.12374039051527
+"RBM46"	2.74478494138045	2.83370892135792	2.76252510939685	2.98494271792892	2.96544176716211	3.04804054981675	2.76846321795878	2.98146470055503	2.83220174885999	2.72131372324775	2.78919396805956	2.72360228840651	2.86945065969365	2.77288091833053	2.82510776781509	2.6520226288651	2.92700141085767	2.84343679765858	2.96681192213115	2.88829330098211	2.8490476943955
+"RBM47"	7.42665926866019	5.73936077993209	5.08847644246349	5.65177339240648	5.39923809018265	5.24828527678152	5.76344015281634	6.29890250463523	5.58998915888436	5.58435872996778	5.73936077993209	5.32569055983564	5.77831763580646	5.97793238502302	5.73936077993209	5.62519473545901	5.58149924278408	5.40204157586488	5.92112868268503	6.24573100944718	6.13899444278159
+"RBM48"	7.0506381930333	7.30241451740454	6.8217598853122	7.79677121468461	6.79864729469422	6.00756508942797	7.03347114785691	7.35282686700905	7.31932248368804	7.44569326222684	7.56320664069488	7.11138643101024	7.86526828392921	7.28733375622731	7.94488079641994	7.30190965524346	8.23911623073742	7.55957780413144	7.79031929288823	7.05123759143866	7.38152472701122
+"RBM4B"	8.66744940848884	8.40784130998322	8.32410122045639	8.82944658658769	8.01518035258729	8.50200803717523	8.75253173651067	8.29009875587887	8.40784130998322	7.86245388417171	8.68952022844243	7.93444407572002	8.47174616764419	8.47369469832598	8.59176952257287	8.77041958863072	8.15667195321088	8.61108873160925	8.37839186559919	8.07671768421864	8.03855774101709
+"RBM5"	9.43781432619202	9.53651276787419	9.4127948718501	9.07747526978498	9.22279895603533	8.88620468419385	8.50710617398371	9.23523110339072	8.82612652273813	9.09082286992411	9.87219925594529	9.2799726364451	8.68123141749205	8.64592522688619	8.62468728026434	10.0365872865857	9.10611507405743	9.98633926190365	9.36169080724963	9.24389037087421	9.32387528874091
+"RBM6"	9.14874413662256	8.98285225367442	9.2003438450248	9.27591701065764	8.56957955847823	9.45107541326157	8.86414728653054	9.1160974777399	8.82524595452921	8.44828909085372	8.98250425143087	8.64093357337024	9.34449513626721	9.32192409972529	9.16866593720021	8.57131206066294	8.68897086839435	8.9771611177024	9.04040116974007	8.50574132999702	8.57416133090178
+"RBM7"	8.03712291266128	7.74571504510458	7.23435761622909	7.75397390191338	7.57391992722069	7.21674012795589	7.42041916780753	7.84429933501809	7.33268499048508	7.20494453101384	8.00351883421969	7.14916215850662	7.32353616905934	7.40502746099972	7.65549506358586	8.49004214144102	7.34878228884311	8.27129448338164	7.3360067795979	7.37911634013298	7.19551160706792
+"RBM8A"	8.04338628655228	7.81229298073576	7.31076722560874	7.80030795382526	7.91847754002841	6.95199464682764	7.54099880944697	7.68507381276355	7.54276863425856	8.00782486835217	8.21043492344547	7.77137264200336	7.52407272724677	7.5733386701418	7.49253144617777	8.16531025376162	7.77137264200336	8.06329965467611	7.75691200456484	8.0290261598112	7.77137264200336
+"RBMS1"	8.76815734578239	8.29742684513172	8.57909058873838	7.95249338839223	8.33623081070782	8.5756775009079	8.31710196869269	8.72329478098657	8.31530585285057	8.33004009561573	7.88764415468965	8.30468292892546	8.24760784949279	8.52212143108772	8.5167395076474	8.07104690401842	8.21458012032573	7.84378633571313	8.21318864301097	8.74923540123453	8.48706502601474
+"RBMS2"	8.13807006471077	6.62591964002989	6.64043417023491	7.06098863915282	6.61220019668066	7.73186474812765	7.51499706921893	7.64565892644462	6.71482585984537	6.94968151122434	6.8818329601279	7.23793190964077	6.97255387691507	7.45596127708761	7.08486742461307	6.72631474938558	7.34908288197295	7.14652581251196	7.12291313856967	7.03002041155758	6.64842195236992
+"RBMS3"	7.01278584094241	6.78389254893807	7.18901606610586	6.81110916462199	7.10382640565004	7.35592929390203	6.90196387106145	7.60154866864729	7.0307875088408	6.88950647631706	6.86671338474895	7.05594105630107	7.25273164733513	7.38489352484152	6.97621642268809	5.88211157807822	7.06204790862196	6.45306953685281	6.94202548629378	7.3275462082033	6.78719500877749
+"RBMS3-AS3"	4.16117033567466	3.39257488756217	3.28859957763445	3.59035006425724	3.36560010406572	3.36477831890193	3.86862340799691	3.69481367875989	3.59180404939761	3.31160447694978	3.39257488756217	3.16392608212659	3.35843976859903	3.29823790029564	3.304171670307	3.28336570567443	3.27993453886324	3.48401303533419	3.62345872023904	3.43175083344987	3.28336570567443
+"RBMX"	8.78439626333194	8.66704874667493	8.15439197051446	8.27159916544927	8.11971397140437	8.24206902343343	8.14985287056691	8.19030747693507	8.2065638367217	8.57743223632005	9.16989186346252	7.86127258862308	8.07263429524662	8.57592344953904	8.01908271196407	9.36711554625433	7.94218151974075	9.02436512321662	7.72671324166581	8.39397843711332	8.22219193087749
+"RBMX2"	6.70915318152036	6.85449943154279	7.47090608210222	7.01639943959294	7.05161705335321	7.1836385253919	7.38750483773721	7.21519147092391	6.89583273252073	6.71140658070926	6.85248095297915	6.85854852447275	6.79882670125069	7.14439235598117	6.85193516465114	6.92472197904414	6.65260787304242	7.21251337276998	7.22911551537499	6.77015475387019	6.84046899724841
+"RBMXL1"	7.36432519680808	7.29332808323271	7.05741336596542	6.91698334900681	7.40049615336592	6.96662439671053	7.23207981828464	7.70229016430429	6.94871677620149	6.89742687731741	7.5849250523897	7.17591508386076	6.77643519189656	6.92443184125215	6.84838365220074	7.48373941535092	6.91588617132846	7.58423668109687	6.96027766715834	6.92150204377564	7.06386829048087
+"RBMXL2"	4.11582098418912	4.15396049839089	4.23711063698426	4.20479628536753	4.20479628536753	4.30291884282523	4.24934189478138	4.13560215343352	4.20479628536753	4.26343838400315	4.03979539245002	4.20479628536753	4.1274878602543	4.15797600631234	4.28015250296972	4.2947976575029	4.23760120154354	4.23645307469785	4.12573497976644	4.25039106566735	4.28779655356196
+"RBP1"	7.79465605549931	8.61873791666253	8.61058435742214	7.83262946693358	8.26770710135932	7.10110197277995	7.92820653834687	8.27246332992031	6.96762772580457	7.42751376852352	8.63206536458171	7.79440794761518	7.12278735898456	7.36417042867104	7.37125914434132	8.44665611449809	7.02708262184592	7.90125218492205	7.19398610183618	7.90061626046661	7.26460388114874
+"RBP2"	4.87426040281845	4.93723998892679	4.97317230959685	4.84304451033962	5.00613554952513	5.31634015082856	5.25258820652368	5.08771697782503	5.23680696319336	5.08771697782503	4.94353236858526	5.02137038904013	5.3484195551035	5.0767626867961	5.13573582854211	4.78222177209804	5.19434424271098	5.07978074409542	5.14853487275411	4.79847626871173	5.16868738843741
+"RBP3"	5.14405275752544	5.30417639329573	5.31137148144948	5.33509683022464	5.05399801642736	5.77141354759695	6.1529766465019	5.18767756107719	5.53482467314124	5.34357248176538	5.32692006831047	5.49438167985958	5.45281186564688	5.34357248176538	5.61018811949818	5.37738084413288	5.32191041983507	5.14272738349856	5.50943733425752	5.23732573086549	5.42176154419439
+"RBP4"	7.5028631988353	8.35685089019183	9.03610916710893	8.39070707793579	9.3539203849297	7.49796750723026	7.29349207153992	8.46474108651232	9.02750512088616	8.94283865743433	7.55092390270048	8.81043827522229	8.53030095799804	7.52460495541178	7.79694860692736	8.01262624556169	8.6472382876769	8.43878814411152	8.4010683607989	9.65393571624243	8.56754096251303
+"RBP7"	6.73780294490588	7.19589513335653	6.80124351443159	6.34448174764268	6.57352010645243	7.37557392055999	6.28504392712151	6.33696699923788	5.36116322555695	6.32891689702347	7.69434044542487	6.46964488619953	6.5680392522548	5.99776021992214	5.91423351962887	8.52520756311729	6.12784164354189	8.32545446679394	6.0662918640816	5.86995066034008	6.46532386551916
+"RBPJ"	5.99304994119257	5.95663173285446	5.90380438174669	5.66405386594132	5.84940735546805	6.3278433848463	5.56667438609931	5.84940735546805	5.33571099470008	5.64244516345439	6.3846201411125	5.86046569033534	4.91394795919579	5.74474480731662	5.51403668859576	6.80636669372099	6.01096779787028	7.1360182309095	5.97551548053977	5.59156323455803	5.64269963267007
+"RBPJL"	5.70773988267121	5.79976601284619	5.80647103280448	5.89708195618327	5.89708195618327	6.14008671117192	6.57484668326854	5.828309838341	5.85172712441397	5.91765846976496	5.65996511529812	5.89708195618327	6.26609019950527	6.445042236562	5.95714031027286	5.60655452757662	5.94238389396524	5.53112215336386	5.83494775846097	5.94163206843338	6.01363970836637
+"RBPMS"	8.81586029441674	6.57300801936013	5.76244266087916	6.82874305789312	6.2981772451824	6.98725224138941	7.23207981828464	7.77038341637256	6.29351574825455	6.81298720648964	6.95703483007389	6.82874305789312	6.90144685566054	7.14754567551597	6.34617466983564	6.06661607546638	6.46365802862906	6.27733697123094	7.13006328826798	7.14641881677567	6.89643448400233
+"RBPMS-AS1"	5.78586745290479	5.87734194035341	5.44969832233166	5.69438687461633	5.54909364250495	5.57166330490756	5.95904642170513	5.88058651605581	6.00990179220662	5.73291929925458	5.3713894376489	5.7637414832805	5.60351973549023	5.83375701589286	5.47698959340813	5.74072071274836	5.8668976310647	5.26534882418681	6.09869616989446	5.66374709633333	5.75135233265038
+"RBPMS2"	8.06648274589155	7.22887839530236	7.12460450062057	7.35050767429028	7.20346614286036	7.8900080191756	7.51475033558557	7.79986811369081	7.50179111060163	7.60824744470078	6.95703483007389	7.23480314859147	7.77322427040678	7.68636702782241	7.07742837385157	6.47201578864292	7.35466976818915	7.30047251667177	7.18787116864966	7.37422331083917	7.33920478974506
+"RBSN"	9.54550284668511	9.46761801345757	9.86695715694404	9.05064271326258	9.50589813100201	8.83249540491475	8.87008995961692	9.43063769685062	9.40191396886287	9.6507582630406	9.51521518457792	9.46427613709977	8.75746058383122	9.01944461320517	9.14746223221055	9.8387895438011	9.3721817995268	9.70512359132207	9.33535006387715	9.47898450277926	9.34571322742179
+"RBX1"	9.39377008778872	9.5246003343327	9.72246649159685	9.44984497229267	9.81116599567317	9.45956614321618	9.40439543038563	9.32339129972456	9.52599878001334	9.79496725022025	9.57479681983298	9.46366689533284	9.3609719885634	9.18244222468156	9.57508776309464	9.79762285776715	9.35982139622733	10.047585730225	9.57637904098842	9.67484009230336	9.66144246097346
+"RBX1P2"	6.22194841072647	5.68911031957443	6.01140002662479	6.03509951275209	5.73524512161104	5.49593814836803	6.65445430667368	6.19700554940861	6.1025348571619	5.75888000869572	5.8466703171124	5.3041994941634	6.00389505422701	6.03123260572029	6.37088076848487	6.07536930727451	5.78503848319492	5.90740715195894	5.81882284585253	5.93753903761091	5.56408952225005
+"RC3H1"	5.65955066486691	5.76163495827366	6.82405806587367	4.99047229472067	6.2292991366095	4.85181355472947	5.14932695083433	5.66635587346721	6.36838031416739	4.67320435683069	4.83706947615092	5.96515505482519	4.91742329446974	5.01399026890856	6.53176816035758	6.15514020178064	5.75856397070757	5.7662511083396	5.4817541719081	5.08361754309435	5.61653127147173
+"RC3H2"	6.28062831302298	5.89708195618327	5.28833183864279	6.0503853266188	6.63774856055973	5.76982050614057	6.05219331080394	6.14595649603502	5.9108134942298	6.75568771896979	6.30456183988625	6.72192145297949	5.36320337690631	5.31662200248155	5.37682447631082	6.7154995910809	6.51164060497792	6.85333587405728	6.36347391755671	6.64377884838957	6.83521664745952
+"RCAN1"	9.15017040711284	8.8625567089138	8.99982044613195	8.88753783499601	8.95248262308096	9.15013241284541	8.58056197988513	8.90533045133543	8.96013405076449	8.8544422400178	9.28853773382553	8.86258252134026	9.06624869418867	8.53334264336234	8.88930664863607	9.45015974249446	8.78885225123267	9.63599834837647	9.0226489849255	8.764010131385	8.99028262089378
+"RCAN2"	9.50535113009693	10.7015824558688	11.0118584438153	10.5054082367259	11.2990243286143	10.2190001466797	8.74154979302607	10.2637300462805	10.9297432220927	11.0108983693902	10.1355968344066	11.1327720884774	10.7581291439333	10.0292847070513	10.9082089033979	10.750708183225	11.1408782476527	10.6971658017084	10.6333930702274	11.1593589580152	11.4277275885123
+"RCAN3"	7.85921827425522	7.30295149586375	7.41348337260229	6.97242208598907	7.05749984665177	7.26575099339336	6.45714178207098	6.68764895296619	6.13243425264242	6.24285880282158	7.7098959252985	6.49336824194384	6.15988039007144	7.123455790075	6.6429359233333	8.2082871347721	6.57428070025303	8.27145841438035	6.62637510554061	6.82938946362379	6.67573464987895
+"RCBTB1"	8.1277304969843	7.98601122239437	7.62057290911246	8.20678359303702	7.98987813909729	7.69591709394065	7.56289549084347	7.71380167225223	8.16412092018128	7.7939011331561	8.57276850864887	7.71611113742184	8.09404712420036	8.06650953690665	8.12883659880386	8.43376094085525	7.82143338664233	8.51811551032338	8.10836185344378	7.63966531539357	8.04803285090951
+"RCBTB2"	8.45225993030565	7.96021046291475	7.86731251687813	7.61622836758117	7.8378659241786	7.12719057603466	7.17628379560994	7.5752870509386	7.72471797101642	7.50668162075477	8.45143259160564	7.41350022305753	7.43236296440596	7.51309825341592	8.05029058939146	8.47313466387427	7.39202628844507	8.30467801075392	7.72471797101642	7.80264345487733	7.72471797101642
+"RCC1"	7.01322920307649	6.47079069020215	6.46452612843829	7.28762679516231	6.54536280367221	7.18420424582051	7.333999074109	7.00446200018192	6.96623633677743	6.82538925408447	6.59382334631969	6.57242440733308	7.29580441221768	7.14760086006831	8.06816298667208	6.66531507498511	6.54125026289028	6.46884195049106	7.18366921353499	6.87006016465077	6.89258094662091
+"RCC1L"	5.8098422113349	5.47968493320373	5.50761053531032	5.59140381272771	5.04567258466027	5.66730074238978	6.17111348853471	5.657942326203	5.64884444903819	6.22068063770102	5.70384995745277	5.68555640281927	5.66924473452819	5.89506319886618	5.36915634363571	5.23060060266737	5.82882954788646	5.21131562856656	5.90268639621273	5.53147984400162	6.27594943470029
+"RCCD1"	7.94581693057757	7.69750657613351	7.68777266261511	7.72197228808999	7.70596988538867	7.37944661166362	7.4768692285727	7.9227951575946	7.73347655895798	7.82823055134414	7.54321508570766	7.96444076110283	7.48123772255228	7.66808414629917	7.85170956078741	7.59588684546294	7.69750657613351	7.59442888856851	7.82658735948667	7.71275232173087	7.62238464013948
+"RCE1"	7.35729670741275	7.30015090217203	7.40123115115866	7.51301158287062	7.15082037431389	7.82486158977734	8.05243097684251	7.29363691251347	7.34751736909214	7.27307554569634	7.19907182058444	7.34878228884311	7.59817738558816	7.63781761088468	7.34125191396777	7.11711349961126	7.34878228884311	7.03807258229897	7.44494039249776	7.35729670741275	7.28266626059875
+"RCHY1"	8.47290198328585	8.60188181535834	8.39702762936824	8.80541213414801	8.90737314688413	7.87609179702655	8.56617513410921	8.6118775172564	8.51932383462148	8.84973834891993	8.5308718931449	8.37942333948876	8.56047418739737	7.92823732940564	8.45410214102814	8.80138174847919	8.81876227844905	8.99457442367561	8.66395422305696	8.86537224816176	8.78351544903025
+"RCL1"	6.71585246673419	6.6683834823377	6.27491531476537	6.2816661492505	6.61767009092243	6.63148563708604	6.74034374432116	6.60823419042786	5.9675766231283	6.72093763528516	6.71895304818085	6.75151818508298	6.32692003568556	6.60011193323591	6.19504242712794	6.74411523989293	6.29184527658335	6.95592852327784	6.46541033101618	6.50244640432803	6.56432240692052
+"RCN1"	8.12326461330538	7.48480188896341	7.97892621833444	7.88187448476245	7.55719140948775	7.02402575079052	7.72418721966672	8.03586747799265	8.51797460483094	7.97340187922327	7.66382089052986	7.66560486230873	7.69721175780575	7.48200220041068	8.12910208424578	7.23577921365018	7.69587997004726	7.55620533251901	7.80693810236042	8.50849099751888	7.73218081059465
+"RCN2"	9.52371974356165	9.2569310279576	9.35088251625285	9.20072848851992	9.74501103799745	8.36460934043944	8.94625391700813	9.18041791472141	9.54442433910111	9.59020959191848	9.44237074403824	9.5665213712942	8.95571553418669	8.42584072973668	9.13182775805773	9.50175459542589	9.3665437481982	9.69598780589315	9.35903968442311	9.58897064613584	9.39106632535255
+"RCN3"	6.65532438026348	6.3646588125282	6.48113547075903	6.4063437277333	6.47067914292922	6.95115919638656	6.80978250878709	6.45143586535685	6.21031391475204	6.54229989672432	6.19350534972198	6.74927648536716	6.53700139092256	6.72363655856643	6.22029704548341	6.1274984864262	6.20167317442751	6.18534085026352	6.43864164080741	6.78088476534847	6.27625231890432
+"RCOR1"	7.07271180973767	7.02507544696864	7.2177754242043	6.83668555263359	7.21364372453145	7.0448621691987	6.64773661869362	7.05119357929182	7.22027803750142	7.02771038350416	7.23237165886861	6.96200273904554	7.10184339420763	6.40096342484128	7.00595253643907	7.31254952179235	7.35403535219879	7.59807290916493	6.99800904717699	7.02845386286197	7.10184339420763
+"RCOR2"	6.92347093105779	7.34947027229508	7.62626910408303	7.4909698464642	7.44511148135912	7.97219912644803	8.00750426308134	7.02850686394292	7.46433067965461	7.41846524942019	7.22501191402715	7.45708823738792	7.52028441960752	7.63673021539539	7.44336834651037	7.04246630089117	7.41798048331747	7.07434081438732	7.63366913365294	7.31931189729288	7.42497464697184
+"RCOR3"	6.68434898647601	7.04778194863886	6.19090719485407	6.00310348770755	7.00477413066484	6.04513278702745	5.88281385033352	6.17349944326139	5.88101388350004	6.81649992376513	7.3401675285036	6.72780318459001	5.6097228356032	5.74703665721577	5.80310195684029	7.51952669525202	6.63284901942247	7.51700674390792	6.32980535296715	6.63751047425634	6.84249743398539
+"RCSD1"	8.00840148013918	6.95932852583308	6.04346972155657	6.04285107677914	6.37559057055342	6.54347443604193	6.54706847891307	6.60267717747984	6.00990179220662	6.69489860042301	7.3280012486327	5.39576317200021	6.35322761703255	6.98604704312176	6.59858990210275	6.36851136203379	6.62637699822168	6.61955568167602	6.77378483844627	7.00239506031283	6.89109456467692
+"RCVRN"	5.29254317428166	5.43507404406197	5.19909638896852	5.72123921520132	5.67974467344916	5.14970058779324	6.11367082491704	5.46693259248832	5.56312699223961	5.16304009926144	5.64781633367855	5.15867891975028	5.53147984400162	6.05709496984864	5.94681918439467	5.51403668859576	5.39108737199118	5.38375057001508	5.68739424827128	5.41402790461008	5.52224015134932
+"RD3"	4.14672516659453	4.42850407106927	4.26681320202077	4.39174693431548	4.31213305108108	4.35572134052671	4.5791302611445	4.35478084209166	4.52884870003429	4.13704951047184	3.95152117992872	4.2330209192495	4.50875063219605	4.31213305108108	4.4348211726893	4.31213305108108	4.25572213350779	3.80234027115607	4.31213305108108	4.23183842521963	4.15116546506507
+"RDH10"	6.23252676797976	5.91281779542285	5.61365293098007	5.77389077135328	5.87008972484054	5.44061319479109	5.89530275385342	6.71824969846691	5.69492339467019	5.90690783935144	6.28129920308499	5.40599056946184	6.49089606190068	5.68952052733719	5.99271225631711	5.49701643544333	5.34812749289929	6.00016623011439	5.56659392736484	5.91504522181014	5.8087596520962
+"RDH11"	9.43277996294319	9.64778718055365	9.79690684182459	9.68192369419748	9.72769958468701	9.25399864099379	9.19930552683327	9.49080039260546	9.5941135958105	9.70950468655023	9.80137831800833	9.50203885857814	9.64857744432513	9.39354856514657	9.72053301436763	9.96642459558435	9.56070533289058	10.166339969885	9.5336415091254	9.42641890548519	9.65622291960289
+"RDH12"	5.82901420303223	6.05604869224313	6.42716678958973	6.22351258464186	6.38142897930533	6.39405854366102	6.52801089390998	6.11670205797069	6.55152909348837	6.11611422868327	5.79490351775471	6.17765340912082	6.00671736194472	6.471080309107	5.99728044261022	6.26269134291681	6.33499374397011	5.82745400600287	6.06440514079722	6.38728316395472	6.34219416331062
+"RDH16"	5.80666447485286	5.73133601654308	5.49705377530409	5.86818018801235	5.74059781096194	5.86454874366612	6.26210409473652	5.79621128785946	5.90351796323228	5.80804249283119	5.64062591917059	5.8437499817106	6.14987249007176	6.22252446899197	5.60625937570749	5.82287033003888	5.89102315658192	5.70562796778909	6.11946743916013	5.67767553774499	5.82287033003888
+"RDH8"	6.21353136298527	6.31717487086251	6.33826500249025	6.45458869301568	6.28389758260439	6.39046803863835	6.25994071679403	6.38069875627776	6.31321296948772	6.64572973160502	6.42159533049472	6.3987320496684	6.62101771419774	6.44548808362656	6.47832958914491	6.24988234678208	6.31253168886357	6.32218799961138	6.70549877072105	6.32684453169765	6.47146002233483
+"RDM1P5"	5.25694120039671	5.13978096394019	4.8876432421543	5.29057158187681	5.40339915121959	5.09173666801785	5.38959717020536	5.09416760380345	5.79383201976923	5.13978096394019	4.94353236858526	5.20978235845375	5.1231119838612	5.21160262732451	5.12151695377451	5.34810385551279	5.19837578512211	4.88271117203135	5.22228349121602	5.08712106134712	5.02643867070283
+"RDX"	10.9090660253484	10.3639635053343	9.6432675989181	10.0643660820818	9.40695233039152	10.2628466399914	10.0087270609472	10.0357626013416	9.32983127219713	9.33445615557866	10.9809804250372	9.58998653132463	9.34334066425778	9.86988399633362	9.53821532459307	11.3396055111932	9.5517541329148	10.9252598926752	10.0988579199163	9.26095698171384	9.15902029229098
+"REC114"	5.27078475882974	5.49477410962731	5.50528692233858	5.61252276927716	5.47238404453623	5.47238404453623	5.3733035816946	5.43573328710898	5.60469935032946	5.59016679643479	5.38311216160434	5.42095443127018	5.53054646696342	5.63006588910225	5.48233042508634	5.47238404453623	5.52229745732369	5.35511046580129	5.46049976254501	5.33055810276085	5.54439557321167
+"RECK"	6.87387408109678	6.61000806701391	6.82390002428263	6.29970080336689	6.84959214559592	6.79966245495239	6.21944929428196	6.94715194315357	6.31249715527528	6.51700206350136	6.74738458868815	6.32731390834403	6.39855660000207	6.60028188722694	6.30498362661119	6.60028188722694	6.60028188722694	7.35582501222058	6.35168465296769	6.73739467077703	6.33996187742872
+"RECQL"	5.69798324416584	5.81459913082197	5.61011660522361	5.76978417125233	5.67393584182473	5.59125780910419	5.47542763050103	5.67399567854828	5.58931667654372	5.29274730601974	6.54541135110686	5.58655302349191	5.80970504649945	5.56172154632434	6.09514496704605	5.88694037474406	5.45131082031288	5.79741716738143	5.49485737127174	5.02461574850866	5.50076182085259
+"RECQL4"	6.36798780085797	6.29740080773602	6.54543482286144	6.41777192434622	6.09898802601102	6.95001516445193	7.15433291085698	6.24203359229532	6.44067483123101	6.50455805783927	6.1192914499314	6.41514183788059	6.54122189456925	6.84846422774176	6.66057482717826	5.96997041474573	6.26755718317411	6.12059484398192	6.70424243974702	6.39594790425677	6.37027875848664
+"RECQL5"	5.73760897326201	5.81189094480809	5.47689524176883	5.89036273956288	5.25657428007107	5.77404189044102	5.71980110858235	5.49035628756421	5.74833691342534	5.59688115579961	6.48170030843729	5.7637414832805	5.59897902179365	5.91025371359969	5.61645930486772	7.04161414492425	5.77161992025912	6.29113343783086	5.83127893085894	5.73052923977083	5.73843186413752
+"REEP1"	8.41129827806741	9.89628929646188	10.5383116728383	9.88860761444207	10.7566395388599	10.0293761459175	8.19737075614163	9.26084996812715	9.93325906519439	10.3722587470847	9.06685205035864	10.429475998436	9.52997180589517	8.65558693674256	10.292710437735	9.48023858806201	10.1323770886866	9.68537390672711	9.7829353657434	10.4800654456591	10.6791597064625
+"REEP2"	8.77128471365395	8.95358561414571	9.19694863935727	8.99505635109126	9.02268961155199	9.01166855534687	8.90163973805053	8.74290293797587	9.18534388174277	9.10581236027539	8.66078176745655	9.15314525783361	9.37653857019124	9.10476594463472	9.25729349491	8.75597782968586	9.09070074738959	8.70979570207534	8.74731428944188	9.2924644746099	9.26836136397477
+"REEP3"	6.78206430457926	7.28233816854978	3.8896102105365	6.46064786149861	5.34351117605492	4.42715646169254	6.37005190509861	6.61072444858125	5.82702927698766	6.22619955772884	7.50778551567413	5.74989675607678	5.36493502135112	5.13983945060516	5.2917628433107	7.43834749769046	6.39724410833386	7.01214464134453	6.47640796240082	5.29024222827473	5.84383020673336
+"REEP4"	7.22899239005716	6.67601416949176	6.70436979856041	6.85331160211737	6.67531651305085	6.81658655382572	7.03863977495386	6.87916324829649	6.92421816928452	6.69508276423793	6.83433736868251	6.414574162972	6.75676993338111	6.86688494023824	6.79983220433444	7.10160227823993	6.62679478517143	6.81637932620428	6.85246347005241	6.67199482076074	6.61391701340129
+"REEP5"	9.46322046436628	9.63391711190593	9.02055354842612	9.36508596797105	9.97986455792369	8.75952026437113	8.83411410484015	9.53220800111475	9.3133747523988	10.3343022418682	9.37625157297416	10.0624100404704	9.06853514708278	8.77072342013349	9.07547465748475	9.9965803478699	9.72422763073385	9.75287725462602	9.64438222747256	10.2496850756334	10.4436248968726
+"REEP6"	6.91804434354015	6.79489636486476	6.80190290366883	6.25748176374685	6.76237036612417	6.63008742727617	7.04614388417527	6.62670630937226	6.59876922173791	6.3785292567658	6.27491531476537	6.32999684175712	6.31879441742533	6.75687616389373	6.5661655875141	6.54146808189856	6.46809371241148	6.61465186931655	6.39295517163416	6.85552658755438	6.40114016000964
+"REG1A"	5.09122390903668	5.34651122036566	5.02132640645839	4.94936370266715	4.76765071236612	4.93830578943824	5.14428450682626	5.09122390903668	4.87754963360417	5.15210451817109	4.93371318917027	5.09122390903668	5.25723623735487	5.11812481846965	5.26810943588125	5.16366785548952	4.99805717902086	5.17046705793998	4.85624581193131	4.93620980585186	5.05679592112117
+"REG1B"	3.86819496144561	4.22418977974962	4.25009045288546	4.39593047585348	4.29983237482775	4.48691910377137	4.45305408183123	4.12914021852569	4.28983632615535	4.17539851086795	3.75452457352881	4.29365455000913	4.39045682086403	4.46708586187095	3.92682655490673	3.97096776694667	4.14547750304096	3.98879351214809	4.30705978763027	4.4535967113879	4.05642391800962
+"REG3A"	5.32930478722221	5.25097602782002	5.43389755514117	5.49033545096503	5.2733271619817	6.02276057663052	6.48200728681506	5.47762262427318	5.61904379017743	5.61614252245924	5.43423347693534	5.43341289387564	5.3993555242335	5.91406767588833	5.65489148432369	5.18660296379342	5.46439894128054	5.06133322745706	5.80012029874472	5.50316533929429	5.46289941527666
+"REG3G"	5.41175759462798	5.62228931335884	5.56261217175459	5.97587324969289	5.53054123379441	6.06449764878973	5.88521902624196	5.62873473867109	5.71345394898838	5.68190527817781	5.54263962756122	5.6933259356244	5.80610901649961	5.76894964638044	6.05391861894868	5.5000883738175	5.79152954907413	5.30182819113738	5.78730646113918	5.33518798901445	5.7855943231898
+"REG4"	3.25315490519436	3.41029671245704	3.72288045292429	3.66424404192251	3.49256496229235	3.74886521977593	4.00931238903063	3.47298025610708	3.68323068563078	3.71157351098369	3.58844180473436	3.72147207177523	3.53932555628666	3.4890322405555	3.90527208519706	3.88873400694226	3.71963788163291	3.33362327885881	3.53918694090315	3.66123241434958	3.76702388624971
+"REL"	6.17412472321274	5.88117889015025	4.96006935064905	5.69955555926412	5.14479106704324	5.11394669262868	5.95001149185909	6.07854110773496	5.76803354262565	5.5329464045309	5.73804421616146	5.91157098595311	5.76803354262565	5.66849093141567	5.87392215693814	5.36065476586467	6.4960161459861	5.21582579633111	5.85169006793265	5.84850775657444	5.56997800993985
+"REL-DT"	3.43722552488186	3.47168492779091	3.34026180535315	3.32955765372189	3.06927222847057	3.29345264270709	3.44659216413656	3.1017350604168	3.34026180535315	3.26091109952688	3.35765749042011	3.33459435196613	3.36599601438741	3.50451939220574	3.68216195674526	3.72496554027978	3.20190296365245	3.29731268424653	3.48136413541979	3.48946589734168	3.25922172556243
+"RELA"	9.36594718999159	8.63232507944963	8.25149489068317	9.01722313807166	8.34245677474856	9.31479548295686	9.19898182829972	9.13295287401135	8.52528186642653	8.34326577188184	8.88583537922228	8.32344141296467	8.89772618181292	9.10826050851147	9.03134063661913	8.89244864023889	8.62231632158477	9.2529761405762	8.88280728550294	8.55947527372604	8.47399768943963
+"RELB"	6.33826500249025	6.47221087543708	6.17791816592476	6.20540355998861	6.23299908557384	6.75043698903239	6.24443397539332	6.7062602817921	6.44462388154056	6.45547503199268	6.5782314282264	6.3542539825843	6.51875649479566	6.45978283570286	6.19818100663876	6.45797034348466	6.36394038792366	6.49994333562332	6.05877671019386	6.31601286610433	6.44609672265501
+"RELCH"	8.00945946814947	8.52088945287027	8.62421292752657	8.02068039332407	8.88242980767743	8.06312661057393	7.51894964682193	8.3096275043529	8.4704738822107	8.63406781805689	8.31268314207754	8.50743548732059	8.17357542058174	7.68433247317287	8.47035656688488	8.62776709368174	8.47286070659658	8.87931023987538	8.24908049382737	8.59230191064715	8.68340547588031
+"RELL1"	9.54210236251475	8.32119255613012	8.28450424331123	8.57350120710091	8.42410821717986	9.23506010553606	8.61359530274046	9.85323652996768	8.38481079603512	8.35494607073029	9.13400500697343	8.80304746440178	8.83558749636674	8.74761391737276	8.86518892076502	8.66369642121878	8.61169310517742	8.30617855726396	8.40642684524685	8.36887064492594	8.86309173462196
+"RELL2"	7.6084295574585	8.14513905027843	8.21041123393379	8.16517599110407	8.84895484765232	8.28488659606471	7.80268144254101	7.53545333389802	8.24517725229055	8.86812036947622	7.87242673602728	8.50316224334921	8.75529882065267	8.18863153717626	8.19603946228272	7.73915422990355	8.53329577839898	8.21841937791018	8.07804086223647	9.00864484730411	8.92261205744603
+"RELN"	8.71410294953502	8.2099357133342	9.22746623976662	9.01479435499331	8.41233968890194	9.10222476968143	8.02659469113633	8.16446412834664	8.62859215182552	8.01412464936019	8.65861525825086	8.33881668627956	8.57673239046821	8.85546143670292	8.99086923006394	9.6361798359287	8.51034694854525	9.23355306862496	8.56654257754147	9.20278135835222	8.81813211319032
+"RELT"	7.58217367337492	7.5065739481331	7.4048089742171	7.61728691308926	7.63049307801518	8.17352924745767	8.18353902028797	7.66684667819269	7.64561672976529	7.63937841625931	7.31261142153048	7.67084700252554	7.69423257525299	7.92785101604396	7.55817624635225	7.44158364481801	7.667229800179	7.63390371637032	7.6130013087934	7.60427877442423	7.69319767411889
+"REM1"	6.84073794118685	6.93239003503975	6.75560543793653	6.8166429365478	6.58290614466791	7.14375188837711	7.25256483248423	6.77240510084079	6.8713258257842	6.93299039212811	6.66848304446443	6.84914366088298	7.17786415568855	7.28427799277964	6.9127900822185	6.77160337236307	6.87362438218644	6.7450204561919	7.05534878064744	6.86945056797382	6.85296773994173
+"REM2"	5.18704423391989	5.49215009161887	5.66100493416356	5.20403613171827	5.78694516367889	5.66339630891536	5.43604477956549	5.26060944666068	5.35290343264938	5.06205139182681	5.14305457968258	5.35290343264938	5.34179043050094	5.35290343264938	4.90122496205643	5.38171395122154	5.06756910654585	5.31867904520745	5.19490250005715	5.41302310605057	5.26415419836351
+"REN"	4.83851391392687	4.879755604757	4.61668651418311	4.97758262753355	4.78095231067541	4.90155966303479	4.92259382498906	4.84475708162302	4.97734171217314	5.22152600409684	4.82597025077562	4.89930676366471	4.58799542710265	5.03134826801024	4.60995279572521	4.90314808346727	4.879755604757	4.74100765960251	4.63120784056485	4.95950179555915	4.94876591215714
+"RENBP"	6.71390295331838	6.7932570645231	6.74950734005254	6.75878060415813	6.75878060415813	6.72428133646928	6.86404042727323	6.62952714135541	6.40131182561961	6.77649886680791	7.43299733869459	6.61256071161083	6.56026092929223	7.00058203453877	6.33826500249025	7.44756059619598	6.56747111976135	6.965694548889	6.95330436298775	6.54116633110318	6.75878060415813
+"REPIN1"	6.56501943087556	6.29080959189211	5.24763880981103	6.14134696307564	5.93470265011544	6.04696601844369	7.06969080981525	6.37240949521967	6.37004876536778	6.54562587918974	6.57990424540884	6.3804944726577	6.17911389491903	6.02055907750829	5.8046063198732	6.47570574684234	6.36140425111328	6.23013600545136	6.38340007371235	6.56628740127839	6.39487517988831
+"REPS1"	9.53084657422661	9.49237751864995	9.69414280279803	9.07695915263272	9.51958934683999	8.64970682343431	9.07087131156381	8.99297645545089	9.10589975044206	9.31170814800267	9.14018416979873	9.20972127221431	8.93047383927917	9.135422654455	8.83049686345847	9.03634284106081	9.28854037793772	9.28330100878265	9.18432829071101	9.32451926590038	9.25222410691354
+"REPS2"	5.77555841070575	6.69285341523963	6.55560646054313	6.19780244416312	7.74503510079938	5.98783033737351	4.97736223302646	6.30345872540864	6.4958540282548	7.55956601625944	6.49668916134299	7.66673239952913	6.19823350240456	5.43434724918608	5.82272921672948	7.45903201074843	7.27007955465418	7.60029061998174	6.59060715821561	7.49253102585508	8.22023365192789
+"RER1"	9.01435045531274	8.9358864383158	8.46110451498993	8.44437833517554	9.01149344482679	8.13481000927928	8.46329066724083	8.52254988793797	8.21872810401938	8.93114725246192	9.28243284375307	8.86541927213518	8.10757839998548	7.95974635161888	7.71542911864607	9.46451115310069	8.52539179455879	9.09400556982023	8.53358344866928	9.19260763378587	8.99190978266993
+"RERE"	8.15503584333248	7.64449798281693	6.87717920549953	7.88483854429869	7.91162793804669	7.7909889546842	7.6881140147306	7.78810661460046	7.50179111060163	8.48977335182163	7.96671136555929	8.50450116127272	7.42791278492474	7.33693301742795	6.7775368113147	8.10276624462687	8.25590000755715	7.91174546980632	7.93246663852515	8.21845499250023	8.3972983840405
+"RERG"	6.83213237731914	6.58147214565638	5.92408800219713	6.54418024068124	6.42430547676201	5.47797941813511	6.11297302263884	6.42316959745497	6.50125108692009	6.02221515390605	4.52788856020005	5.49761204985435	6.1190176623791	6.29050791171959	6.22528175453793	5.79793785583848	6.03756241893074	5.81803030634945	6.24405216814095	6.1720854759801	5.90730678286115
+"RERGL"	5.9164033692788	6.83417210797332	6.13282118678406	5.71891430626989	5.75610561149182	6.10899958586467	6.1005878753142	5.49606650202503	5.62463315954966	5.65917131003096	6.77744341208096	5.58883102211866	6.18340887542903	6.37853530575142	6.26941130392446	5.82257234218186	5.15930541434555	5.90835826528147	5.56702164740864	5.55029582096834	5.42234050457251
+"RESF1"	6.0115355007772	5.46265628054527	4.79494510468697	5.68127863068296	5.33358936572871	5.6545712205523	5.41139030764581	6.01085358098059	5.65571073234353	5.94500062696412	5.488000108972	5.65920629369082	5.65630065844455	6.09851880998452	6.0875247120013	5.29219171814848	5.3721565283374	5.61781992874554	5.67382156848718	5.6545712205523	5.50076182085259
+"REST"	5.8668976310647	5.26905149476277	4.66675969849622	5.18040830378236	4.891431597517	5.04486268468895	5.09388193072184	5.21791747892737	4.78145192930202	4.61980120362437	5.78017354468106	4.57512919121534	5.14668862094336	5.25204542229975	5.09871230571591	5.44944622206751	5.10141777925444	5.74899353028287	5.12871710420594	4.83851391392687	4.87977077371911
+"RET"	4.35926248939816	5.48612610746454	6.15140736451258	5.35411912565108	6.56632847837282	5.53111363758596	4.94071349963865	5.57833082352512	6.03342551657491	6.13416581875188	5.56625838724488	6.19636592173928	6.2126511045974	5.39221460083343	6.12139931321399	6.12927357273081	6.10650320720449	5.98737603366594	5.55617946930136	6.43542694248609	6.38330925096323
+"RETN"	6.06388368250871	5.33608882146665	5.32933799827385	5.67961820286945	5.39655729173923	5.71926241139358	5.98420018149721	5.79826145758343	5.83707005798949	5.62263475031544	5.53676848179016	5.80738514051446	5.79354862551006	5.77577359784612	5.73735560448756	5.20446318799825	5.48396066971612	5.40816359754452	5.65418962711711	5.58968805920173	5.7344361882439
+"RETNLB"	3.84617233871587	4.01503564815753	3.92510255885662	4.01503564815753	3.91747881625649	4.20902180747175	4.36238766736758	3.98836589097757	4.22803482464774	4.01503564815753	3.91771970482046	4.17603633946776	4.23863811802049	4.28802617894048	4.0766841044952	4.00696390255928	3.88156326102493	3.91542546616987	4.34815396554569	4.06536662191114	3.94441483066767
+"RETREG1"	8.51459336441086	9.123917274536	9.29824027520602	9.11699167302684	9.33226571560328	9.24296179720922	7.7440909396155	8.90422944365319	8.77150966182454	9.12142601664462	9.50565950583253	9.13594457732494	8.48741766581935	8.56805979050222	9.13549587432452	9.91869491619314	9.10105376750054	9.89650176517598	9.21504651933062	9.00663243969672	9.07257755972687
+"RETREG1-AS1"	3.6321029142795	3.6628547506369	3.66421275480075	3.78998094638601	3.5919452156672	3.65455599747715	3.75714810291262	3.57947671144306	3.6995501072302	3.71294726577812	3.60925900143613	3.77976714381766	3.7464698983551	3.67468838318807	3.79874895332137	3.86910984452985	3.67697658824552	3.71440626009088	3.88661581572293	3.79874895332137	3.72421426249425
+"RETREG2"	8.11593252156326	8.63274224522015	9.13615237055597	8.46559787093131	8.97865986203555	8.16936827394125	7.72753420514227	8.40321528439734	8.48858328117127	8.86676243421436	8.67441683985607	8.42630514094113	8.77565701857166	8.17406641176082	8.43795705374101	8.44472906468603	8.71121868844369	8.77705559749753	8.26487156876143	8.78748285650688	8.60154395085627
+"RETREG3"	9.09489405458887	9.02267256933915	9.47623180287793	8.77742216301941	8.94616787485767	9.25100629108151	8.81191171648781	8.74216199351896	8.97003123980639	9.10379539874927	8.92568688617902	9.18852271454724	8.57027845925418	8.74173429432403	8.76187294216337	8.92228401005899	8.96836210623054	9.05878159725733	8.82672780722057	9.26166159636865	9.01357934263135
+"REV1"	6.14487925661665	5.99241802543073	6.58514580714679	5.4778348080742	5.83627632168991	5.94059434420579	5.51403668859576	5.88969136367571	6.202143603654	5.8578136278394	5.27355216567505	5.65539622570768	5.3719995224195	5.70951747101612	6.54787239854217	5.82648687307589	5.76494947811041	6.5589278510929	5.73246792251094	5.67841361065766	5.34717838602141
+"REV3L"	8.99856870845959	8.78462560355053	8.79307558427736	8.78191752667111	8.36925057350813	7.83703043807861	8.11823127517912	8.66956848121734	8.55043534801214	8.4246190498566	8.99483490502453	8.66107612171912	8.77697163534478	8.62729562070683	8.73110161812286	8.714430086505	8.6293131050247	8.88700359000107	8.52793551573113	8.40421213933198	8.64941003564868
+"REX1BD"	9.41439239697811	9.52613432937025	10.0453324378021	9.05599971600592	9.55780635643944	9.44219214433611	8.90845963874282	9.28396032968859	9.10768552743371	9.71882005819246	9.61746603800041	9.64702217035854	9.061779569991	9.1461255046159	8.94011058683388	9.45405195966641	9.21826934569271	9.62301647520289	9.29040959136575	9.73711940564257	9.66561301767768
+"REXO1"	6.34147977197018	6.44999063447327	6.59574611904827	6.4199942199011	6.01295830621572	6.84594967168114	6.98432364885365	6.46964488619953	6.48199457666455	6.48199457666455	6.74292750015689	6.66237402427022	6.69541097816595	6.48199457666455	6.28741221316998	6.05944160293124	6.38777801150812	6.48199457666455	6.76699084335209	5.76022709233397	6.61502650129342
+"REXO1L1P"	4.4338526546948	4.3041882865947	4.45990038661022	4.4338526546948	4.37497187563658	5.08865307762624	4.63038002132383	4.4338526546948	4.35794210178353	4.4338526546948	4.16951900255605	4.35855879860343	4.77586246934045	4.80418556054261	4.13942270996229	4.42227493438851	4.55656948645772	4.14224840375813	4.47843814218316	4.35997394047177	4.47231636818506
+"REXO2"	9.69746265748108	8.97062966486112	8.78540206650731	8.77806316557101	8.8840958194292	9.09605029392385	8.92570301675825	9.10003315564696	8.96541439018572	9.12797220153327	9.05011569156398	8.7194912466993	8.93128634677477	8.71478584685432	9.16984858097855	9.43899054246229	8.70859748042967	9.35914723214005	9.17797012955573	9.03675612259428	8.93776663363208
+"REXO5"	5.04003097162902	5.04952276531201	5.86079987712097	4.80397911021071	5.15862683446311	4.93467417027263	5.02592703396098	5.04003097162902	5.12012090281935	4.93798323659188	5.12851119067606	5.12839485738024	4.98211422282965	5.04003097162902	4.53950263451484	4.89943349482231	4.81727950916417	4.93867692943536	4.96915896103964	5.64712348052667	5.07689438524655
+"RFC1"	8.22591395934514	7.83744125129893	7.18798922619284	7.17534335677141	7.75319464131917	7.05655744663815	7.2476181085327	7.48395825413649	7.26530631826648	7.56401962274501	8.17469413219181	7.47715143703998	6.94594843565275	7.09182993235443	7.24731677806575	8.42309158122048	7.48395825413649	8.39590626074585	7.5403435819705	7.5448388632709	7.42977480270051
+"RFC2"	6.42476980751571	6.29445518381835	6.57918642037723	6.31726856925206	6.8608320867145	6.14130464975203	6.12230474852092	6.63840163590392	6.55243510676345	6.80460101174356	6.60847731322271	7.09462680009866	6.22295935820731	6.06597703021776	6.39643270087002	6.58090447572609	6.49841971647476	6.64995046262017	6.1403883993578	6.70661225589236	6.79532951067647
+"RFC3"	6.44279362722993	6.74884468947945	6.83417210797332	6.0629024147028	7.20814457552753	6.26371279164222	5.19251028225979	5.89955422803242	6.12407921685322	6.77601345565767	6.62661843749867	6.6070858599318	5.86664931635091	5.95141620757841	5.74176981279323	6.85903908260907	6.34797091115447	6.84573220528779	6.03231659799474	6.65467967809023	6.14075479306858
+"RFC4"	7.32840926855866	7.28698588141472	7.3554774636632	6.95075482042491	7.20705360474258	7.41590515797436	7.12147354601354	6.89241730642918	7.03784743942494	7.07736020378472	7.06802875593349	6.95901927424811	6.8004383627902	7.17946549278394	7.12147354601354	7.43587002483136	7.02781948060232	7.60677289162354	7.25405088787689	6.9052566529671	7.08128481722319
+"RFC5"	8.42640087782072	9.0586739796024	8.85592571159994	9.13754119890021	9.09272476141996	7.72137630495061	8.46232621510499	8.978283450357	9.5228887698455	9.15174769154956	8.9875290498427	8.97102825276655	9.80855384916418	8.73182741220406	9.71583674894715	8.70889817652088	9.15984886725827	8.70077931512228	9.20289488645205	9.01649728630003	9.17899595687825
+"RFESD"	5.14621120931586	5.05098263860065	4.91320492520573	5.02071683495093	5.2950640631106	5.0721387016251	4.8864603000357	5.06060106774574	4.33824663916729	5.16106210661932	5.05341426477244	5.14640865913197	4.76656035432112	5.32295798127511	4.58590036994035	5.46254871743224	4.95771342590708	5.01318721839602	5.04003097162902	4.97217379104921	5.04003097162902
+"RFFL"	8.13067416242498	8.30337763488531	7.8598515193978	7.9355686155863	7.61456985011111	8.18052849017738	7.20648191694982	7.86912070478412	7.3671933502832	7.31416649974087	9.03483176087346	7.49387805171778	7.57034562733008	7.63710688963876	7.68574686849099	9.47188114847527	7.7940343073132	9.0310918855918	7.8173243523916	7.00167811270396	7.58054081597725
+"RFK"	8.71216678640418	9.54127420673676	10.0248204220801	9.67532951873747	9.85450691820644	8.99069670597365	8.38716886786742	9.42022164407833	9.6475033999305	9.73927399980907	9.04101772057926	9.67204003791465	9.71490537513753	8.88564038280647	9.83001473005825	9.22688560953362	9.75215190356867	9.56431802737864	9.69100984466187	9.74695949018872	9.84822519538382
+"RFNG"	8.57086473635226	8.333302072985	8.58401169096429	8.2454651910877	7.91371195394084	8.40137469716952	8.2783419670024	8.33091667507703	8.25934420021563	8.13046866418048	8.35795514281889	8.2136771495702	8.23876131200237	8.45300500656646	8.27600673999378	8.40105215286734	8.3144221416445	8.31410463755645	8.40730064748004	8.35570127953918	8.07688361947743
+"RFPL1"	2.87598851342529	2.97735935112792	3.04385858196007	3.04385858196007	3.15661021599238	3.06487516992319	3.09911133226221	3.07185209840766	2.94906970106365	3.04048422142886	3.00286580323743	3.24285143738132	2.99641862341878	3.09392092009212	2.9591399136729	3.00122215689513	3.17736349379962	2.85741397356859	3.10198165386983	3.20390135521692	3.18552471266598
+"RFPL1S"	7.48400147123428	9.33365011383646	9.36555466006372	9.27314379694621	9.95726988787688	8.69107719399608	8.41276350693603	9.00510699538259	9.58529406393513	9.37883700132994	7.98026698142834	9.26596418928446	9.38284032542892	8.91692642070189	9.46687656905772	8.20566910309768	9.62445642003617	8.9149032840616	9.12112347894037	9.28103319074621	9.14134067569978
+"RFPL2"	6.78331077877995	7.68786329227436	7.9664129488597	7.35943670075545	8.29967214573833	7.67582160386848	6.82456800547314	7.66126147847491	8.06595793520391	7.96005361342501	6.91039485873343	8.31624248458022	8.2234702186401	7.62680588476127	8.43335499354511	7.12935388561946	7.56844823731733	7.67041452419809	7.54892413501314	7.61224750496012	7.18551715594691
+"RFPL3"	6.61182631218302	7.5252443997117	7.5793513311364	7.17756172961225	7.8559993189033	7.6437462608029	6.93418411765551	7.50865206335917	7.75397536587111	7.38909493360749	6.73048031116568	7.95511626686795	7.98101770853586	7.3435654694427	8.13587125706756	7.19274790179764	7.41146193676031	7.28554468402091	7.13790641907878	7.31592349627658	6.95901747228812
+"RFPL3S"	3.78431673068943	3.49907232928224	3.77394650599827	3.7686236235222	3.59416900650837	4.07792606942969	3.41452398233282	4.26133980513723	3.72102839184147	3.31394912552841	3.62328291334704	3.55566764405182	3.79990427036602	3.65733165608996	4.51794104786831	3.96653278932917	3.81512857241226	4.35096617855073	3.96471651572162	3.7184630769373	3.7686236235222
+"RFT1"	6.11113124728703	6.06777788193751	5.87974272841236	5.73586417311183	5.84684557029355	5.99561953833044	6.10403261116289	5.8944362544111	5.59254496812664	5.9545848804726	6.22961301211446	6.11385516486339	5.74672284352034	5.67620332769665	5.7407186462921	6.46405553267332	5.92689816161347	6.27232285470806	5.6499711699126	5.96871650539371	5.82584393823657
+"RFTN1"	9.28718300066098	9.15237227379918	9.54275483044953	8.60011263214431	9.35475416522621	8.70415974246695	7.88433781438316	9.59051089668617	8.97863303934805	8.8329093651475	8.91582710590831	9.42196848194832	8.7111123710524	8.57868256502654	8.68511910364232	8.21863627373615	8.85761878387356	8.64773302335625	9.01603723249616	9.24095501376766	8.96042254328324
+"RFTN2"	7.44153071471411	6.75496785841234	6.4989753814527	7.76458450325948	6.41232539164917	6.68090195760222	7.54289494633838	7.32953546791623	7.1344379174152	6.20958867201295	7.66594116465058	6.05863538055009	6.74731606813165	6.91607341200382	7.26156835032021	7.59016052227756	6.81717158422929	7.44797926550065	7.34287907562289	5.91891730093047	5.8755309277191
+"RFWD3"	5.51731270591761	5.31473233093355	5.62199961647362	5.48739596896907	5.46981565831725	5.24595366686382	4.78761010720752	5.26475208479434	5.52433549786964	5.27140464456193	5.92456398707918	5.55565765722263	5.10503732058344	5.39319841153983	5.35846937853244	5.96997041474573	5.42368688596723	5.87057372901692	5.35178710653351	5.42368688596723	5.21117689871205
+"RFX2"	7.92392657805552	6.70104267410345	6.56835769018638	6.81137177805716	6.44195457638111	5.90270615787384	6.97034142771113	6.70856420502043	6.71251325532998	6.43914899358755	7.30627164630918	6.42814116490149	6.30616350534999	6.82390002428263	6.752385525646	6.06328707831643	6.30334239870131	6.41682555888437	6.43661150948798	6.47046328677785	5.79296340648077
+"RFX3"	4.59252023594873	4.29537830465837	4.03187721904259	4.14721817560007	4.28947980576474	3.50281534017348	3.92880064217978	5.19620469390342	3.91490496058648	4.5023577862121	4.82162416712927	4.96661961768596	3.86743920357665	3.72266982711199	4.17967406740488	4.42942896284466	4.28947980576474	4.03270932835221	4.13289247098705	4.62999485057862	4.29899049792556
+"RFX4"	7.8538571640506	5.39172271263034	6.3850449786764	5.88499590537636	5.68519644295041	5.69050004291591	6.05705369344319	6.47579870782369	4.90540545950157	5.12906069912838	6.31713923609717	6.36812434388757	5.46598553169779	5.76636423434553	5.61020421057502	5.79592171399552	6.22436321691284	5.79592171399552	5.32630982948708	5.48261818680327	5.02182829937453
+"RFX5"	7.87454820606532	7.71384173825146	7.62516992261014	7.27878192171129	7.88829285663465	7.17024424775363	7.25664240959021	7.35166314620657	7.33310356126543	7.90721357558249	7.49913325412798	7.37974768038521	7.49916579986589	7.4186871704023	7.46843143587616	7.30116249985922	7.51271607240121	7.50606944631044	7.49867276016103	7.95164918176203	7.91686141319533
+"RFX5-AS1"	5.59699545007391	5.6545712205523	5.63037190161982	5.71854993861999	5.5261072529242	5.9001115075223	5.77127192872887	5.6545712205523	5.86491277146116	5.70351126688371	5.43548549803317	5.50739082411685	5.89334740505903	5.96354465697249	5.83789692253223	5.37865549650861	5.44217868085351	5.55935879497277	5.57791799893272	5.32712700162669	5.6545712205523
+"RFX6"	2.91257662558618	3.14974229704682	3.439772092552	3.41367002830691	3.38406495532737	3.20550959180361	3.360260971025	3.31188547221349	3.51248033507214	3.34436028828123	3.18926915233041	3.10445188916792	3.19808090735545	3.2383074873523	3.33084406931678	3.19808090735545	3.19808090735545	3.13336461858112	3.05437295644063	3.14443969338844	2.97457051113308
+"RFX7"	7.63285094537238	7.92387757347022	8.37055175180236	7.90466769761745	8.18462457861978	7.36065616560763	7.34284949444475	7.46959470316332	7.74689566739208	7.70475430894259	8.16765346759353	7.55077856469282	7.58322404333581	7.42500103575277	7.95093485441346	8.01678578951031	7.66295267679042	8.32979691176668	7.72479577684131	7.74791433128087	7.75952794915263
+"RFXANK"	8.51957646951121	7.38635665291089	7.56437375627097	7.48724120651741	7.43594485952664	7.36975419736426	7.84918271967921	7.40887513844633	7.18786668005403	7.49620640289347	7.58203211194579	7.20544263536938	7.063589453602	7.24184456953006	7.36200669804889	7.5228830208144	7.20287925323752	7.78712467064772	7.46619526586578	7.63376703343568	7.20440051438559
+"RFXAP"	5.74087693432645	6.07401828071148	5.59361011177406	5.32692006831047	5.93997017680131	5.05898346930482	4.89115331770388	5.50528692233858	5.34866847796895	5.73782248868296	6.30426023431088	5.47831590142259	4.73160532769461	5.3481570717517	5.17675916657814	6.47288547109479	5.47923209351941	6.36807722898279	5.16952298215558	5.47792971293036	5.36415949990515
+"RGCC"	11.9417310951985	10.8444223823891	9.88613683388114	11.4517562489759	10.5337478089779	11.3076659155654	11.5812468984475	11.1957617604779	11.1411683145337	10.7014355393066	10.8446646963411	10.2175901242937	11.1589167273857	11.392588679585	11.1553293071034	11.1679176707011	10.9508179750376	11.7292442854367	11.2943330575686	10.2473901806726	9.97788777805452
+"RGL1"	10.4169834221054	10.3018700750478	10.472736659212	10.2197952441629	10.3453352949402	10.0559932978934	9.88112331812865	11.2024675044129	10.4288321337919	10.189488860108	10.5112359502981	10.6968028519125	10.1289188842228	9.94669001339128	10.4338046965165	10.5711020691187	10.4558308048029	10.5519344972639	10.4154262824209	10.6103341480204	10.4324886374945
+"RGL3"	7.30321375893839	6.3912390485499	6.25783470808539	6.23556355352775	5.81072446953637	7.0376794812935	6.64401560391796	7.10958365941667	6.34376387065623	6.23839447352115	6.42806060223432	6.35648317376858	6.45716782127624	6.73900092111092	6.14172575148245	6.23775875494227	6.58484263468166	5.87345588643304	6.60790239859993	6.36704050419526	6.24214046526302
+"RGL4"	4.95319863730312	4.68888431831043	4.90393874305218	5.2132223918019	4.91641476827568	4.85375617217194	5.39149907015842	4.97418379009752	5.34416030590605	4.80589088998748	4.94353236858526	5.31428081784721	5.06399209301274	5.17418216579075	5.24782119793641	4.86318054864973	4.91708165502444	4.88903472629969	4.8772427057413	4.92356716201038	5.2932383398118
+"RGMA"	8.96454637916997	9.27102238059132	8.89122364726603	8.75396728870735	8.87776969461625	9.41210305473814	9.32290217187842	9.33642214460294	8.62237784650347	8.65585070922694	9.68563817178564	9.02959582707629	9.20554665845564	9.19361351994749	9.0066736784175	8.76220031159493	8.99440179375694	9.05253439735546	8.66526641418593	9.16012276105214	8.86455953825383
+"RGMB"	6.83080868053049	7.39861702631972	7.74309923621962	7.31491959792263	7.93883531338026	7.0970811882459	6.80313380468457	7.38125849504125	7.34473047080787	8.26186980119157	7.22514296083227	8.31721634434394	6.64597752901767	6.68018548457014	6.79107249372565	7.30470591751249	7.82436716605956	7.86804308145802	5.71182943976338	8.26955822912627	7.58597270064861
+"RGMB-AS1"	4.35698606852752	4.40527965365037	4.38956147066122	4.46504954914144	4.26253991812589	4.72190657622435	4.55517449186344	4.47046695764619	4.38463051721613	4.61552486600255	4.24071852636187	4.40265474535893	4.65218115648435	4.67195261695302	4.46504954914144	4.31903016126654	4.36608999722415	4.30377487935895	4.51625101571311	4.46504954914144	4.52651396455556
+"RGN"	8.34266316078673	8.37394727619428	8.09284818307356	8.13525544296473	8.02849677092573	7.68054805666785	8.04106520784319	8.11629641508198	8.04727220791245	8.04574567244379	8.34464746425321	7.77490488960409	7.90163435927814	8.12604737861247	8.23888884231641	8.42921703455762	8.02032293066075	7.59912015588298	8.05983408791959	7.65097326116727	7.49964469255171
+"RGP1"	7.82992363653976	7.55948143421079	8.14722772211697	7.56550492553329	7.7493262703318	7.95490271285014	7.88208997842686	7.44417815933084	7.69126627963461	7.85797114559658	7.67573228231134	7.71085492131553	7.72523608047633	7.54583912648351	7.66479522299965	7.5184327061889	7.69745898562582	7.95222650283228	7.38825196698637	7.83353120339158	7.72549866893747
+"RGPD4-AS1"	3.18050201402502	3.25965170108901	3.29876296176528	3.38815919666752	3.24142194097633	3.38192874048889	3.40269111763876	3.22703257444479	3.43111563732605	3.25541601160556	3.09644315081929	3.51662054225408	3.56930042617994	3.41609069405943	3.40291784731894	3.29876296176528	3.26762838097132	3.11650096880186	3.29699507669197	3.32091793121096	3.15128586982212
+"RGR"	7.61366385012471	6.353317843545	5.83877557482248	5.95784274200473	5.60764956854344	5.5911278205964	6.27720061515214	7.149998622786	7.03506270600902	5.7874874228622	6.04446835075404	7.18376766863846	5.82656893105931	5.91240144684584	5.81492987598037	5.77214703797418	7.94495367554275	5.47908763610307	5.83127893085894	6.2864438356582	5.87158277655501
+"RGS1"	7.19831372257698	6.7594148594212	4.79413989807577	5.14081895311256	5.96657972000366	7.72127675241565	6.21203479903697	6.92403677627436	3.83812138734259	7.38909493360749	6.4119182616782	7.68490816136831	5.651560384172	6.61107966596131	7.18918363199632	6.9029227697027	9.00236987950909	6.22172735270497	9.5535177495854	8.08074767042553	6.62987128823243
+"RGS10"	7.63067935836687	7.60702322642022	6.61883976822113	6.70413641563007	6.86455668932961	6.72995431726354	7.36369249701107	7.53313294224228	7.27780894195979	7.16700957656391	7.39337798230787	5.86897672902048	7.14447783738587	7.8214108852984	6.95323250553277	7.47105698537805	7.03207975709004	7.81039766713185	7.64496966970702	7.46588001414575	7.04645658592342
+"RGS11"	8.6899052550019	8.62503274097436	9.3821311544819	8.40871916398799	8.1300092699115	8.70794762091305	8.55467060033226	8.74997396587988	8.11650594628379	7.7661861073426	8.39479511917097	7.94255037524826	8.42004573607785	8.78799763530839	7.50356046741704	8.27841609209202	7.8742139434052	8.50302350997649	8.09562298413462	8.12316768149471	8.22724425090206
+"RGS12"	8.06614725069299	7.83744125129893	8.17608832787432	7.98711403657398	7.27574057776091	8.3737430479599	8.33607356113557	8.05320286301652	8.26956205546781	7.26461168981822	7.88476093670034	7.80155546232136	7.76355265427222	8.21558214724994	8.14198876203907	7.56703598164811	8.13209355750361	7.52961499517336	8.0972234443165	7.68007460313673	7.55244164568094
+"RGS13"	2.93082563187415	2.89888403028471	2.86005754585224	2.95009166903264	2.93212988077325	2.83429744188158	3.04543060447808	2.80839205992584	2.90019285773053	2.85312407374563	2.83807762817126	3.02789138650386	2.65779885570681	2.94583755060176	2.68367883249383	2.85633435377269	3.06231623599767	2.86489088551098	2.79332936735892	2.86005754585224	2.82096577452576
+"RGS14"	6.83306856527362	6.72323804502629	7.01444812076874	7.28717546325992	7.21329031775932	7.68920877108504	7.69534196309611	7.05836560957936	7.48185331513189	7.30143190143337	6.47153870366794	7.37782148320375	7.51575621222255	7.37163858012375	7.1589133386163	6.68269199694446	7.23131535950162	6.95374051325757	7.32572169162116	7.35773416858913	7.63643954088096
+"RGS16"	6.47217271476469	6.03961136558352	6.30473517499012	6.39486030886934	6.13056276592813	7.25588982896541	6.44432877629287	7.6356893420812	6.49423943161767	6.17984564165386	6.21330596000395	6.60030419024977	6.79870041588526	6.35269687693782	6.64325424910404	6.83467488086279	7.17911203902829	6.31291018104201	6.18317542414705	6.73957383508776	6.83648586796422
+"RGS17"	6.9500770052259	7.63321268195457	8.26648687195122	7.75578986085473	8.0054431226836	7.64185950911287	7.26178388156379	7.64424375706763	8.14387886452923	7.58919499929093	6.99933959317715	8.03105906022004	7.46957297988879	7.22286536288555	7.88674999814959	7.21894977325792	7.62018866290259	7.41169883939362	7.77976744337213	7.99202921149156	7.82128152011994
+"RGS18"	5.43298688620475	4.41603417643175	3.6348097268698	4.34227119376949	4.07792606942969	4.06952510353017	4.22392766937334	5.05896033946767	4.07673329617575	4.4175540977995	4.05708946869898	3.99528339301892	3.99048692634647	4.20675755974676	4.03033259277589	3.89902331815751	4.06146717356984	5.21580925266781	4.04110899379488	4.92839849574975	4.28617455721828
+"RGS19"	9.05461173464638	8.07379178943939	7.90222878829201	8.22957014796556	8.17015533314362	8.05893443301316	8.16049450816047	8.08186513795774	8.28883422381829	8.11278164800454	7.80698043826899	7.63472666749576	8.51092078594256	8.61997036581966	8.19665640933608	7.94195015195803	7.78046272935314	8.19768956167637	8.14569843543593	8.41286227357279	8.28187087072176
+"RGS2"	8.98164215194608	8.57994792670222	9.0746790654634	9.15977297355026	9.26628207809589	8.92664433358821	8.19845798085171	9.53083022459228	9.27223914624375	9.19882195088722	8.16380667715822	9.25758963284063	9.44811741752271	8.68026418897573	9.6495361412484	9.23222038249	9.63419472115499	9.02333011362217	9.67392697587258	9.63706716940237	9.25499590058869
+"RGS20"	9.28886693565289	8.77936892620526	8.7277792314803	8.38316284558482	8.35010731977767	5.36767885133893	8.05174278738993	9.85505065472369	7.80101168580816	7.81195762801111	8.59034059925742	8.27857634669874	7.32124350835671	7.52392914738295	7.73797269600291	8.10513192283853	7.97306626831646	7.78516774908075	8.37323758134317	8.61167203025517	8.13982623355471
+"RGS22"	5.75394023344396	5.42465009974712	5.25834223026744	5.23968623783971	5.36871605022648	5.32148434880364	5.12011577546812	5.52619053161023	5.06211449649321	5.31134108209512	5.77655830856849	5.45029583166354	5.01682810464017	5.23309873804047	5.19628075642403	5.28061319724242	5.21666321255287	5.15971738359403	5.06421692850591	5.20664569593085	5.09878725465462
+"RGS3"	8.64610923217515	7.84562560929911	7.79489570580904	7.88377797213313	7.66358813574879	8.60061853107003	8.51141599074559	7.96770534767254	7.68565057769812	7.33018332790109	7.93304097660753	7.63812824664442	7.83173836667761	8.31351280660523	8.48696104560603	8.25358858195772	7.49346100439609	8.48518306896126	7.81204150074457	7.95454352081155	7.99243600090714
+"RGS4"	6.23530529254658	8.46704816789339	8.70024191465761	8.04202024502746	9.92163094539902	6.99033483957927	6.07526238627996	8.02721053769969	8.57276850864887	10.2700243093481	7.25204742771898	10.0030673633195	7.80547032755842	7.10218108294286	8.04238466717397	9.75743239954129	9.39547436864213	8.66451135964576	8.71929834213416	10.4349829327339	10.6380412819966
+"RGS5"	10.6563189827682	10.8394789311711	9.20490263933395	10.4283523307815	10.3476051484426	10.5066406030879	11.1329952567054	10.4617257616759	10.109568927208	10.4089427240443	10.7804547124903	10.1821310630436	10.7936888847041	11.4119611948752	9.8959476568003	10.2843072331717	10.4272548866751	9.84282211677444	10.0292480020359	10.626561888126	10.359703992132
+"RGS6"	6.83392895504602	7.38228746862236	7.92426542095188	7.52547548499833	8.07040638703151	7.42631605673944	7.34125994486145	7.52972881569689	7.71158820505437	7.93329292022102	6.97704587423777	7.66840682390254	7.47504425543947	7.36759527397664	7.50429653613221	7.14738832808681	7.63865300479068	7.43582358179079	7.34754794178916	8.05234730375379	7.83721234818754
+"RGS7"	4.6314754891112	6.28150765593439	6.30305905932306	6.01248280530951	7.51068486138772	5.74184527756915	4.43997767611285	6.31601944212345	6.51105238090216	7.25989845722661	5.51966833862788	7.28838248037414	5.76784219136871	5.16444899289729	5.76473456711068	6.2059588819757	6.95526374504506	6.49941442437466	6.20682918124316	7.51935513455267	7.18742332920279
+"RGS7BP"	6.35481085186663	7.74215011265717	8.05407645432661	8.50239687196775	8.34143187221182	8.26189979747399	6.39343972952265	7.73281459930701	8.89589651596882	8.53791598725643	7.22761591690629	8.30380867229709	8.14618057531187	7.67751107606251	8.52872262019375	6.95368619330497	8.2380673801052	7.41963989454079	8.38817435546165	8.54531377801484	8.37589024534757
+"RGS8"	4.75187184332208	4.56936694894358	5.85913902698234	5.05142673883255	5.11060737723242	4.82616410928123	5.15235670086064	4.93715971701474	5.29074314837109	4.98142993332722	4.80967075393602	4.84771453157746	4.89253851437075	5.22209266910451	5.0426237012623	4.84911769355945	4.74546105498837	4.80907502575139	4.66057384448356	5.13803012908719	5.12545945529899
+"RGS9"	6.07310356300741	5.17897583377368	5.93351795962204	5.02840501087826	5.02337144750679	5.44061319479109	5.45287538520614	5.04970420960965	4.78942297442024	5.16304009926144	6.29167323049457	5.01159050627339	5.15202454303314	4.97808179878938	4.67584373446122	5.33112970314271	5.01696346462607	5.15202454303314	5.20793275657426	5.12727858403998	4.99240415655989
+"RGS9BP"	4.96603849023434	4.68073897640844	4.61738986277418	4.86811853891458	5.05423948311083	5.4213152593597	5.63027619551696	4.70652396371828	4.89363040833333	5.04175583183356	4.43734862703245	4.64466957010572	4.83585319518924	5.01505779383863	4.89745763191746	4.72329590686414	4.86811853891458	4.60409156057693	4.89106246276095	4.69107305554277	4.76637792737853
+"RGSL1"	5.19458169403201	5.19791742145847	5.07863115009599	5.37979529681533	5.29274730601974	5.31816084658072	5.05237266094401	5.35483736197629	5.42339564131597	5.26265897708434	5.25136758079723	5.51192012183073	5.35129284136932	5.17838814431336	5.51405076792741	5.17854298552823	5.3762002075384	5.0170719060004	5.29274730601974	5.17411787505721	5.40309206707539
+"RHAG"	5.7686647381078	5.82936513533118	5.97727343007633	6.02299988717859	5.83652844704293	6.49356705661148	6.77818474592777	5.98295640182692	5.98652433706836	5.97727343007633	5.90851044953306	6.41514183788059	6.23918513497902	6.30362226009613	6.03831886634085	5.73971809950586	5.93677191233105	5.59230346983466	6.26656022730454	5.85278793440021	5.94060501645028
+"RHBDD1"	7.78286113924941	7.07761712333445	6.97054458364822	7.03531265077082	7.01583683310121	7.29040249374389	7.42770401753179	7.5626588093323	6.90458145029131	6.65048778083731	7.65589445515831	7.13282734950506	6.72029720616242	7.13285264391521	6.96842371672123	7.79564288871012	7.06672135887843	7.74410204011919	7.16903184016095	7.10160227823993	6.78789835645642
+"RHBDD2"	9.38874802928443	9.39191509291377	9.37458127847593	9.29307403739915	10.0293285411989	9.05407689773659	9.06567118445955	9.45141262399921	9.42865119488843	10.3549100095064	9.47904367880922	10.3614122646619	9.06442924939009	8.80086868638879	8.97400817247476	9.63335174278632	9.92806315871598	9.53368946149352	9.3043357372118	10.5355859389521	10.3426005529691
+"RHBDD3"	7.27758504340971	7.36970135171027	7.29031272914809	7.75657704533305	7.05426121019166	7.86551221517881	8.24172676915852	7.60908480172275	7.65303341452488	7.37743041992026	7.18860663615614	7.20820504007474	8.18524801034602	8.10772884909376	8.24113884815689	7.03253457909954	7.23208788468626	7.15919314952288	7.4050834715314	7.17740836808883	7.24005129035417
+"RHBDF1"	8.41439293225845	7.47202767493696	7.14112739194057	7.44888827091657	7.122552518421	8.25094070105487	7.79838596900054	7.85563578962459	7.35667727491043	7.37814129473043	7.04654118122876	7.32536858190484	7.3779222635769	8.17179812274839	7.38775026175533	7.13093228226213	7.38775026175533	7.15555089973855	6.95758866572653	7.52286300731435	6.95426747079359
+"RHBDF2"	8.84092110109712	7.54228602912288	7.23214807857931	7.75397390191338	7.4954745573141	7.41661244192463	8.17824049154964	8.14989526127519	7.70429354956998	7.72269958833125	7.38114876834103	7.28099984578206	7.69500290721544	8.15247495621825	7.68175827094123	7.85593065908562	7.51587300076256	7.7026054014824	7.98200911891028	7.87183054731523	8.33847912835051
+"RHBDL1"	6.52813120898041	6.93549215597104	7.82617654819514	6.9571471040173	7.36459467822503	7.29117101935915	7.00114192010537	6.95148490506688	7.15682912823947	7.15742170120899	6.67900676171384	7.07273506861227	7.0638429840759	7.03829275950468	6.79317226094033	6.4396472515603	7.19809187683809	6.88257259030146	6.73702865199677	7.49889438512453	7.0038208925016
+"RHBDL2"	5.59699545007391	5.56632037838561	4.52984744524177	4.81109026393897	4.91085977741112	4.92630284637135	4.45523951870063	4.76772894207212	4.72710127327398	4.73150203762978	6.10770753087399	4.66121314850154	4.31755325078888	4.92265119791913	4.59793943743282	6.85288531218581	5.03137740812267	6.64077004263554	4.86101626410895	4.62556232267073	4.86216643283738
+"RHBDL3"	7.18429773988039	7.52794578521428	7.40168932485386	7.22724833953374	7.4443417165681	7.36081515370936	7.56842224326556	7.47123397280355	7.2210707769658	7.35592929390203	6.97453541133565	7.3786804526204	7.36586432100845	6.9705254867345	7.37544931004839	7.20986696679735	7.36234999392165	7.34261189569762	7.18178672328511	7.55857001079738	7.8273035018651
+"RHBG"	6.48003873020282	6.28658367470169	6.38760803330013	6.24405140575809	6.2295532375513	6.59174856510061	6.59219254372013	6.33486472787957	6.55967730979649	6.50286233888242	6.07513038178225	6.28728200923485	6.70185505992861	6.6991137172275	6.23365784808465	6.08683494275137	6.33486472787957	6.21329659479243	6.27907955662582	5.96786022106023	6.37134426517845
+"RHCE"	6.18888488550205	5.60921471588494	5.85478160363848	5.8668976310647	5.8668976310647	5.797123151436	5.78438291953737	6.0201714146802	5.85855073438012	5.88031794886079	5.77127192872887	5.9090492445405	5.87277527214019	5.83006617785597	5.77615994347918	6.72261328695215	5.84517909696156	6.02052307514078	5.68604689444661	5.99249814088119	5.85704315087838
+"RHCG"	6.45299284956436	6.00240062071829	6.34296562539993	5.93151305632514	6.04092017472376	6.3576786366225	6.80835076262044	6.28506337787035	6.11841980743647	6.04870533908055	6.00866926215203	6.04294069951527	6.23553703289486	6.26601642296342	6.08631261202401	5.86011685908435	6.01425231003204	5.77777553869677	6.07854110773496	6.07854110773496	6.11708635620373
+"RHD"	3.92350590911175	4.3703964778965	3.91435885957118	3.99341166010381	3.6454946069452	3.73614722173454	3.66136625440627	4.0391374752454	3.81753050830547	4.03007762949418	4.52025846325642	4.05064499123961	4.11210396899856	3.66269214803802	4.00570362966013	3.72991778273996	3.91435885957118	3.672660162771	3.99625521537115	3.70301172590771	3.91073977221535
+"RHEB"	7.05267115344763	6.9984178746098	7.13072186214274	7.14536855010296	7.10351523713621	7.65776616619779	8.00794386501122	7.16185335343875	7.37605138516119	7.40741593993017	7.22285654529978	7.3305449316845	7.23679735124754	7.35253475192425	6.8811591579092	6.94347027889246	7.12154853052685	7.01021616706406	7.65399449781762	7.51087422789327	7.22887751667864
+"RHEBL1"	5.02939231653934	5.095859874417	5.6638710246332	5.15536438801173	6.0761857929271	4.92986056465932	4.61284354163675	5.28089307506172	5.41312068273791	5.59506614496097	4.64226483373323	5.27088509823419	5.21681274073143	4.66366562654151	5.16095479136847	4.95869755271067	5.43637329019852	5.21785685329048	5.05650082193859	6.48205341395495	5.60293374689085
+"RHEX"	6.6442761697444	6.78386687366901	6.6917304684145	6.85523740142946	6.90219787539392	7.14767533286077	6.95312499684986	6.94805808462336	6.81356227716279	6.98374055085769	6.5360924062082	6.94096390399615	6.9939198742866	6.90817462012255	6.88319758590277	6.75687616389373	7.03229851848371	6.5730053521814	6.87464698357266	6.91917709920174	6.95312499684986
+"RHNO1"	7.45487017594268	7.66601343788373	7.8159204699997	6.72762723909611	7.63619101728331	6.8674006328822	6.7752666582981	7.42751376852352	6.86660295274629	7.74932756554809	7.54928228628962	7.31015022418993	6.35347627815131	7.08799555999919	6.4159466304982	7.71306386855478	6.86977425203508	7.94411267964887	6.93340176068179	7.58288636473121	7.1945368580457
+"RHO"	5.5645857548891	5.79998864044776	5.69812279316187	5.76620630290674	5.45230371789057	5.76255170250883	6.21860968921903	5.51306050534779	5.55459665676268	5.58053491075005	5.32566661636083	5.6355314626734	5.76255170250883	6.12656511219095	5.73253783648482	5.55776582324933	5.77181026894557	5.36362161536331	5.81899536388196	5.43154631827159	5.50133051798021
+"RHOA"	12.0965124271482	11.749181276501	11.1273294344597	11.6195502276991	11.4018570308664	11.4688238080615	11.7190944842311	11.7117935758707	11.3590838137622	11.5919029179594	12.2397598104848	11.5590711758865	11.5179782192162	11.4784691185535	11.4301273799743	12.0769400703415	11.4519152296186	11.9564129518572	11.699922046801	11.4986777440904	11.4383969886415
+"RHOB"	10.2586983311561	9.24315602819062	7.81699232305863	9.0229677091127	8.86318801744903	8.44071027426346	9.14870176869032	9.77933760756408	8.74485486739919	9.48641638963931	9.38269879907206	9.8400481789655	8.48944268385528	8.48757265767773	7.9276080984272	9.77021044347777	9.5491376064906	9.34524435926267	9.3881227742474	9.09902193773564	9.31573267359193
+"RHOBTB1"	6.86532619753776	7.31795652434723	7.42633668680092	6.2270578035648	7.18753263183096	7.39793048458269	6.07958506981738	6.5925347384094	6.25975585486541	6.55510531615506	7.43951240351159	6.73473803315991	6.99180268729091	6.84231431230925	6.80927260624733	7.16440659785654	6.73494523626919	7.60641388463532	6.76718139488392	7.19206154427897	6.37688932166017
+"RHOBTB2"	7.90059079133655	8.24253316316609	8.4440144651178	8.18150524110232	8.13063297210274	7.59315029779337	7.56259837700878	7.82548658948616	7.97342810691203	8.08552068514922	7.81250753950342	8.20041147868989	8.06708175347625	7.82529596996427	7.85575583821857	7.71265189554808	8.0145163602608	7.54583912648351	7.94592684284506	8.78484678973588	7.98237577858781
+"RHOBTB3"	10.460329538328	9.88912704458749	8.61309700617181	9.77414042169832	9.54955816418988	7.71693336159567	10.3608078064287	10.4250859648946	9.54811816921539	9.41064413055299	10.2468880765916	9.90518073207565	9.24898683495962	9.28084946116767	8.94089382905841	9.2236977353087	9.51810311971548	9.61656008463623	10.2243666636314	9.17077496361023	8.46976077033897
+"RHOD"	7.21052382516723	5.81083038403408	5.83498252967836	6.20664800081855	5.61843543198088	6.16824389612659	6.92740490815817	6.215057665224	6.20227563473279	6.1127609864226	5.97040074091345	6.09947617045769	6.08218065820404	6.24490030356312	6.30997109772858	5.8170769531846	5.9309232545927	5.29728946632455	6.37041889983381	6.48120073116277	5.98975185879017
+"RHOF"	5.28627300827879	5.88669285413769	5.96538616208796	6.03588163799619	6.18650487517885	5.33358936572871	5.93334752512463	5.58948865164479	5.96596609353386	6.4983436419781	5.75502705845972	6.2098211426271	6.33509601338226	5.83248475931933	5.96229809640595	5.69316870381008	5.94729178813287	5.60156508553414	5.83704536979495	6.69350962183097	6.31633482055981
+"RHOG"	9.40975402215039	9.04338056909426	8.43709355825824	8.71382180542348	8.48463735851682	9.21553560453908	8.80209761468134	8.8292636994111	8.24001091125397	8.49801188664261	9.32487129929012	8.36824322091329	8.68615617850929	9.00731778270876	8.44784709322603	9.99357897925328	8.40090554287235	9.52005077969722	8.6057129682024	8.60292116306617	8.68088304925011
+"RHOH"	5.74363529474089	5.78151034094359	5.5609808183776	5.65538001997665	5.70959233723717	5.48519866266819	5.67226620804931	5.4147854797483	5.7356119499503	5.35549107683806	5.32692006831047	5.65628565576691	5.63580707218349	5.80887341075014	5.87184198261848	5.78239584036058	5.69944333208817	5.35333362273646	5.49209502323609	5.65833091321013	5.79114734971711
+"RHOJ"	7.98077328464988	7.02060918812728	6.28405957047175	6.48736446627437	6.80988505218093	7.4794673018896	7.60324478294233	7.669266860517	7.39132191561975	5.69432821715353	6.82596443528821	6.67451654712003	7.66743320250328	7.38104501202562	7.49937775149704	5.67545038759363	7.0338626678506	6.4957803997744	7.22143482755955	6.10291790167945	6.60503487641708
+"RHOQ"	6.90996113310151	6.04150327463393	5.35937988821561	6.32175200602156	4.59367386262134	5.86454874366612	6.31542650560556	7.64725411337004	6.27534755233975	5.27888938552853	6.80444364475012	7.07096046273296	6.91645701879633	5.9841263243859	7.08080165622984	6.35557799234497	6.98346056741188	5.56958519812933	6.48129520335069	5.94726280298504	5.8452347162849
+"RHOQ-AS1"	5.55058443075235	5.66511968795643	5.70701078508858	5.91050442500124	5.50076182085259	5.82287033003888	5.83343599658234	5.68125635679258	5.77279932759863	5.88612857644381	5.68490048849787	5.78207532122428	6.07171022026419	5.96464542880838	5.78971759683989	5.63666117098419	5.70037738987629	5.5941733389914	5.87642859166994	5.50032974038902	5.87890175283207
+"RHOT1"	8.48116506009381	8.85770386631318	8.89063126553449	8.89909123366419	8.89839099859183	8.1041355108547	8.18592990190238	8.60297912472909	9.11753232078466	8.66367468728074	8.84422723486465	8.71721203733085	9.08552431921443	8.39709487881483	9.36938677523822	8.72188638888414	8.92275908258091	8.9284441874883	9.12690463879785	8.48116506009381	8.73143411825248
+"RHOT2"	8.18519771119819	8.13559779733038	8.2476116345339	7.96531552213634	8.01609623074316	8.37554186128829	8.18306262824942	7.98752947983115	8.1224232030146	8.29625472297115	8.29359292061461	8.13091598346547	8.21762138024085	8.27750748124033	8.10437240033694	8.2409201931393	8.32621171876707	8.08619501766234	8.07192528056084	8.14913299828619	8.23216866210798
+"RHOV"	5.99171600915641	6.14628743437725	6.52083066057565	6.29079601809376	5.89463828976619	6.29088643193936	6.50914507907084	5.79916573286141	6.20013373028105	6.34096367054496	5.87030583698097	6.27595708236325	6.37111384571942	6.47716997796287	6.32052844502606	5.95657027577543	6.17446446071829	6.04484617466957	6.39015052579899	6.09771761296288	6.2916666771637
+"RHPN1"	8.09267590984853	7.50334872635628	8.00427305997061	8.07692252297795	7.49271095871191	7.89663242003401	8.30101094209627	8.00604415233678	7.99936504713851	7.85624126350121	7.67714315343469	7.91272516161206	8.15196400546634	8.06519981272538	8.05583702837612	7.49922798357355	7.89663242003401	7.58387251346733	8.05324069300308	7.79464853582877	7.83858668967758
+"RHPN1-AS1"	5.67193313290703	5.69748671035268	5.26989737831004	5.49270496518597	5.35133579608278	5.54450087133998	5.5486350696555	5.53147984400162	5.68683375644953	5.53147984400162	5.2275232208385	5.47831590142259	5.59613649392011	5.8358663473497	5.72405208378475	5.77335370642879	5.70744591309402	5.50076182085259	5.77531263083935	5.3984542988263	5.4716185501319
+"RHPN2"	7.36255252606671	6.82390002428263	6.48566005710754	6.57555637315697	6.35663713960508	5.7986266994315	7.01559334319291	7.03539792727829	6.54373181138931	6.4062380824105	7.20778267283195	6.80660171828294	6.34743015855101	6.07434749766979	6.67496969047422	5.93393450145177	6.4972844645876	6.21095642022488	6.35017720801242	6.38770562575038	6.57925929161143
+"RIBC1"	5.9841263243859	5.64187363006095	5.71079905469966	5.50191194631878	5.53665680068741	5.64372325546358	6.05561992522847	5.71079905469966	5.27354674742799	5.64984549008918	5.75438485431232	5.71079905469966	5.85781920640854	6.05258090590196	5.72819661853945	5.50436371029651	5.66169658469909	5.41929554316113	5.71079905469966	5.71079905469966	5.72441216251028
+"RIBC2"	4.95641337504923	4.89025988524213	5.0333601607403	4.89782221615541	4.85586574200326	5.27043553837767	5.17744281772871	4.78751434970666	4.98920912096488	4.76968755238661	4.92994984138991	4.76764009535909	4.92994984138991	5.33246927021839	4.98551370986785	4.92994984138991	4.86174860925853	4.77935738882897	5.02002353143236	5.00846391936279	5.01124793010754
+"RIC1"	5.13449612325385	5.01559412617725	4.15140602462892	4.2929136131767	4.75202452082467	4.40820347685687	4.38412909736769	4.69958780603876	3.86608781238247	4.47321615983407	4.72333648255974	4.48143920799193	4.16127281082553	4.24489393658519	4.41519828671332	4.84790656035081	4.65119096450688	4.55744859205252	4.45350316460137	4.60229861944951	4.64875609311122
+"RIC3"	6.41127867162115	6.89068591086376	6.81656028149292	6.42631046029067	6.8759575078786	6.0582072125729	6.18988222658361	6.70781843293186	6.65026484010714	6.83654012756591	6.78136872665514	6.91568381855133	5.99501540199045	6.44280996491854	6.15568847544451	6.97885343510517	6.64668965309118	6.56705322083808	6.52304983180908	7.11451588313539	7.01147251148209
+"RIC8A"	9.75981912083466	9.42238779970675	9.63447560458643	9.30331776875316	9.56521464951582	9.63927552496182	9.56461871502347	9.40586358688582	9.46908571478377	9.60786998547903	9.29985062578955	9.15826502742092	9.34562852628654	9.59375236451686	9.4089978072385	9.3905487708877	9.39439625318525	9.41829315694802	9.35707749592792	9.65164975495958	9.56539536241633
+"RIC8B"	7.69891384482177	7.45517313784105	7.52872583945462	7.65353084981607	7.51025375272189	7.74346109003199	8.06080518233388	7.65177898859526	7.95672281450765	7.5773527810532	7.39807337189587	7.51230131203893	7.82287709876295	7.60390826608134	8.08157370934469	7.59820884350885	7.6844270649861	7.63011930498903	7.79833398710486	7.77764779213383	7.55105602200652
+"RICTOR"	7.74208874103227	7.87062672639391	7.65347437851523	7.70750847668448	8.12316768149471	7.84989309586405	7.04336785444224	8.02397994368861	7.78069680188298	7.90721357558249	8.25887003684837	7.98024456300634	7.48791973276447	7.16712106679049	7.70638996277216	8.43151247710004	7.97913598167875	8.53614519522429	7.83655769715344	7.54897405835085	7.97622408108958
+"RIDA"	10.3576506452125	9.74847124370725	9.40703676615028	9.77152163948916	9.43230015057869	7.79662013855612	10.2855325101132	10.832312850443	9.81137318650027	9.56217306813285	9.39692362339286	9.58810114767795	9.11581460039182	9.33428617006347	9.19068802591466	9.06264091321958	9.27757838370364	9.70078467444884	9.83293768043998	9.54640937480261	8.82058987595495
+"RIF1"	7.24553200972723	7.2333787788829	5.95746824403988	6.98726380309186	7.01194228997674	6.74795538253272	6.84197816701495	7.79209565839174	7.14641881677567	7.18638769878272	7.77137264200336	7.77894102191582	6.7536816875999	6.68682292200523	6.90056271603898	7.76453812812003	7.25453222540076	7.06628328609435	7.14641881677567	7.38439106423956	7.09300585686073
+"RIIAD1"	6.67923105339378	7.12048645623999	7.70361021009318	6.85077941920102	7.74731375929619	7.43010833836975	6.99834757069765	6.80794952572979	7.26993668554452	7.48991201109464	6.72014499801814	7.47636660054419	7.19445461570951	7.14285610858446	7.17647189705998	7.00010969816051	6.8117343928133	6.8836749269642	6.76894554560846	7.42031253732692	7.19468204783789
+"RILPL1"	9.12942144578775	9.27724626211498	9.11217492349128	9.21600463138673	9.14283837426905	9.34454341158568	9.28982568193499	9.15712941606991	9.06366837060796	8.80912704778986	9.62891609825798	8.99148309010733	9.23866598955313	9.18193649255102	9.16319775136699	9.69511522434841	8.91930014886753	10.1495045637409	9.31659495099909	9.12310498405165	9.00708626918989
+"RILPL2"	8.50397263514093	7.66013695968341	7.83314536188985	7.58175476995634	7.68224072811999	7.90245821523111	7.5267203642621	7.85748065338526	7.70768011888303	7.67937131065914	7.7469933322739	7.60732624982721	7.74639440782689	7.77732442875414	7.67616813724772	7.28231877529043	7.65210578760179	7.78212302410637	7.65682483306035	7.82621742223944	7.5288943217609
+"RIMBP2"	7.03153211466468	8.51691364848467	9.67655007692013	8.76316116307738	8.92827151009701	8.32356205110435	7.51710916475221	8.29519042571658	9.19949010139386	8.68017169752162	7.64068090535957	8.65947141128357	8.65976293038722	7.96075560206652	8.81743496268982	7.68223615523715	8.88938380587703	8.24546859911012	8.70231645731709	9.22350123299809	8.93641156393081
+"RIMKLA"	4.82107427257926	4.73768720831815	4.58233509264584	4.91830842536766	5.53293152873214	5.18245394978321	4.96550178009038	4.67714833019285	5.35290343264938	5.94741205268185	4.5057366039657	5.42615464119706	4.98774066021052	4.68574055056649	4.98774066021052	4.79524339444934	5.38290961051798	4.3781925256586	4.89888787865379	6.18994968193043	6.13898199341397
+"RIMKLB"	7.23219574203781	6.7224630901873	6.8708550665582	6.02474135790778	5.78349643209712	7.05900299132554	6.17441806811457	6.11220423823335	5.75999274188423	5.82767518346872	6.88418972480707	6.10939522370933	6.24635126073324	6.68303089830295	6.39630138641552	6.01656010955181	6.08703347452948	6.31278818122705	6.08501890133369	6.2144723002129	5.32700116385937
+"RIMOC1"	8.72855503358189	8.59666713938481	8.78983032019554	8.82762676805306	8.64845201935672	8.6068243912461	8.81308298795466	8.77720452162756	8.76080921131601	8.57258807317056	8.90756096904043	8.72972244547882	8.58029987885783	8.48464969944211	8.81120317391551	9.04338629851125	8.73790689500506	9.14154811278787	8.91658495683281	8.48145715583812	8.52456528988496
+"RIMS1"	6.7335201643096	7.5892956809123	7.45663163248873	7.23795887610332	8.15390731176483	6.4809391987628	7.00280450967484	7.33000679863628	7.37783964520019	8.02713137521579	6.84716826615131	7.90630803054391	7.43006295959649	6.73463680011994	7.1538604693306	7.43006295959649	7.92400044306945	7.25521707949965	7.7262483436697	8.23578695721771	8.06695402538754
+"RIMS2"	8.93019220395302	9.7810700250379	9.8438932754236	9.60325448800224	9.88432310207256	9.39094245913179	9.57897290668185	9.77024811451132	9.79653297804362	9.43665084450367	9.04495461262907	9.56093742014605	10.0564249929824	9.68421142013978	9.91634563348975	8.61673308115166	9.91896058451777	9.32044860437079	9.81847337525766	9.64255681967703	9.38389885414404
+"RIMS3"	6.47348873569164	6.65139991441415	6.06133237824001	6.37408852428655	6.59757623693847	5.82360641823473	6.32793799271794	6.60141955524593	6.69216756260197	6.99980045661565	6.39280965367404	7.08992213611786	6.3643480768716	6.34374510181451	6.2030023229015	7.04729849671232	6.94975466737509	6.15002775327597	6.83980279514696	7.11142181161012	7.58775049439739
+"RIMS4"	7.42747586817767	7.85661964676804	8.2879898491799	7.97623777401877	7.59957272130198	7.85018137699295	8.0313818523459	7.89505432833197	8.27193616595937	7.85230213224096	7.65109559154241	8.0658657565279	8.01685828074554	7.84013763902468	8.15073225417527	7.13032709359118	7.94659419501624	7.3791719777166	8.19270665979812	8.11091680927846	7.91286751615964
+"RIN1"	7.84228305186658	7.9949267489493	8.26617940743227	8.27335618335581	7.96766463392362	8.40337680491192	8.56507727022106	8.09262864228439	8.09077931634137	8.13864602868372	7.99491096467513	8.21827571087937	8.40601877302294	8.43680331434533	8.21502972730102	7.62028446046435	8.03244702681446	7.76540371574285	8.16084530242903	8.15258808795597	8.03975759679236
+"RIN2"	9.58643994878088	8.33243695421668	8.05348040987538	8.46332734206096	8.01527648575602	7.94630346213262	8.9460379418931	8.59441005425974	8.13338107190498	7.89870152525348	8.91683205817455	7.99445045855458	8.53956396246201	8.5426870728471	8.29168582613672	8.52926131398669	7.97882967592712	8.60367805140574	8.38870544734325	7.86741174419487	7.88680710541926
+"RIN3"	7.88802937260782	6.69636633786507	6.68140141754618	6.83004402229144	6.27998311682105	7.18014757893874	7.09984322143885	7.28626946299326	6.75900567563752	6.64553459779951	6.69237216604562	6.74583201035672	6.79128228891797	7.21801218380363	6.83942088844064	6.61341115038321	6.90034463158927	6.75256228167993	6.82340888712309	6.98886317673113	7.02399855527599
+"RINT1"	5.7532101918725	6.14111859390318	6.22348882110558	5.73586417311183	6.04969044634773	5.42672408998802	5.31541652873067	5.79484862190047	5.71264808550782	6.09178733249951	5.72760513227107	5.91596799500556	5.71548339932834	5.74843370190821	5.77224329788756	6.0430878909565	5.70847132471235	6.14079896343872	5.69370717687909	5.81271552424085	5.99923991303553
+"RIOK1"	7.0266569863129	7.07924940424787	7.49147892536324	6.62532996485711	7.27515592799665	6.93878457259861	6.83504701472668	6.62157714234688	6.87950834131026	6.99006569190379	7.03242204088868	6.25256561523732	6.68195377379334	6.90143097732134	6.84299533148174	7.24400490249374	6.56733105854101	7.62096258670202	6.7216848171391	7.33139831250492	7.02123973955813
+"RIOK2"	5.51403668859576	5.72665401396918	5.69605460670901	5.49413029370233	5.65372867806082	5.35969524158413	4.95576825772122	5.11087496244991	5.58888066828026	5.73899861935964	5.41327453580672	5.4632032188126	5.47915873589392	5.18143133298087	5.74859748961824	5.61781992874554	4.96052200610557	5.96573107856725	5.32220867218415	5.3916614469927	5.47099865333773
+"RIOK3"	7.33948035271429	7.29161076883364	6.18321654935646	6.79964607694416	7.13796329501214	5.93126785247967	6.74059509864927	7.44450304602423	6.79815359226828	7.64611075338604	7.91379592906721	7.64046133096628	6.45484107198593	6.24630504428936	6.95913233206886	8.21694659646094	7.33948035271429	7.9114521611941	7.35009635453759	7.44867119373757	7.3766905043365
+"RIOX1"	7.6951810441704	7.7621907319476	7.94555956483552	7.90341756026732	7.93975979043255	7.58061021904335	7.44003698564067	7.51949714109775	7.98316846571074	7.87457021309474	7.79030138989546	7.33216879299057	7.73964066598468	7.74599908693959	7.89106547805174	7.62539665849718	7.45480220597406	7.80052499542883	7.61883712538718	8.06524037474485	7.86038228587708
+"RIOX2"	7.55263277856987	7.57562883386545	7.51515363486156	7.65927506782894	8.09498821676315	7.26862707500322	7.12245996088349	7.51900208606404	7.75476932244074	7.85147654931218	8.13994246021633	7.81035823113496	6.83236469371306	7.16991636203122	7.2752089061184	7.89400183262657	7.22704443361305	8.14446566700816	7.56820817104873	7.86218190906253	7.72054008914981
+"RIPK1"	7.51308514175317	7.10156369537793	6.38421094504525	6.66576122473134	6.39180885140446	6.36675703273774	6.9209026826698	6.72195840148798	6.66606798544787	7.06894741110106	6.72569030211878	6.38296478210438	6.41861708234048	7.01597201961058	6.48833162931524	6.67147870102317	6.57748697268884	6.9430179643405	6.36438528266147	7.03241024602488	6.85918840550736
+"RIPK2"	8.10770353107895	7.49336461942213	7.38942752857904	7.57952875494593	7.56844469950407	7.45873703416345	7.17814013315198	8.0767128884435	7.88326250802626	7.54869482254224	7.70820687454901	7.70560223677338	7.35094316315244	7.15531261110884	7.55750804316836	7.66562821145941	7.78828699487892	7.63585597407554	7.70347117434778	7.56300461996473	7.650648730622
+"RIPK2-DT"	5.53799390479716	5.40174782708337	5.2959536581184	5.41285690357863	5.50349417304713	5.53541827530381	5.37429803343553	5.49111740275601	5.28950583164571	5.39811098312958	5.5941733389914	5.42714973501694	5.40478775436395	5.62891410743908	5.29465856851901	5.78476972473283	5.25254276929603	5.6852447966917	5.29189702396592	5.42714973501694	5.37912436198957
+"RIPK4"	5.37543774014956	5.31544151386862	5.24768936965372	5.62759077923558	5.46258988631808	5.763499656748	5.44326376484621	5.180640239429	5.44326376484621	5.46194483282994	5.44326376484621	5.60346687709814	5.65898270903964	5.88512215858495	5.42683236134584	5.47329409370093	5.44326376484621	5.41484720160034	5.32310809619615	5.78373993013922	5.31221856272864
+"RIPOR1"	6.14019872511372	6.14019872511372	5.76232738416145	6.26510671941536	6.40529812845775	5.9789427307667	6.21735755734184	5.90921673911757	6.08986518271563	6.59182971427188	5.70770113230651	7.01394433060196	6.39276756043541	6.35113903606755	5.41875980155141	5.69096283611519	6.4090920440787	5.52533888900232	5.99563633922353	6.19545712231385	6.78273992699058
+"RIPOR2"	7.8223762743223	7.069496497367	7.90155506971172	7.70808058335387	7.52405830580132	6.56822064884048	6.0910826291293	7.01168147334296	7.34443846832814	7.02068017300044	6.92910466852464	7.29286244380516	7.23554852610796	6.8685373173457	7.37874256502511	6.47205930436276	7.22249466332329	6.92884353941348	7.37174651335899	7.29729993282395	7.15559884092007
+"RIPOR3"	7.79608795574538	6.05462729057881	6.03942640087746	6.92347667077822	5.77826736520711	8.08878722607657	7.06552869004321	6.37790293891855	6.67453090427133	6.36824221466771	6.05804825596799	5.08878093442566	7.02738744585497	8.14868566067198	7.16033383995595	5.28678301498118	5.65610308473534	6.12981267545932	6.20128423445956	6.0268456023735	5.97776810188014
+"RIPOR3-AS1"	6.67990094789303	6.66486886211617	6.81757203361041	6.70521520883222	6.69164515212346	6.66867402229899	6.75945848415418	6.67453090427133	6.59798511355819	6.71933567689952	6.59034496630894	6.91565318186214	6.87621077519787	6.83898083849867	6.75064520173851	6.59730254876251	6.91802036597761	6.55191034394407	6.76661233965647	6.5510618053102	6.88455518721635
+"RIPPLY1"	4.52825829613045	4.70936195037555	4.39590575904435	4.73999992962787	4.54751080496412	4.63362412028529	4.51353963970113	4.39837200093859	4.68143584151539	4.74797630297375	4.4017628015267	4.70409280035079	4.67225201421725	4.56339338717709	4.66309177277099	4.67022847033014	4.71573299113137	4.49164553111238	4.5972108130278	4.4538667549397	4.71332245164061
+"RIPPLY2"	6.0637485255535	6.70840110109349	7.34947249124681	6.96682657322428	7.0627937075886	6.86147035363962	6.70570751482703	6.54600042913837	7.08284073754981	7.30052965386361	6.54516405149936	7.16885186516924	6.95370467534083	6.65487051988021	7.15104006839658	6.8408954464707	6.81650359970403	7.23696067287903	7.16903184016095	7.16885186516924	7.0512597183839
+"RIPPLY3"	3.41134624678253	3.44346355824026	3.6159003952254	3.59829048090755	3.42055803080483	3.27927341314953	3.47409384440251	3.51449223866865	3.31036587054616	3.60405673125728	3.27901408237294	3.51990491261545	3.53677700619366	3.46815825696086	3.50255070883952	3.4637405565891	3.50255070883952	3.22931397239729	3.50255070883952	3.53555511192342	3.65665241335885
+"RIT1"	5.19741957683245	4.83204426865245	5.47689524176883	4.52599062521372	5.52621815322225	5.56876171056863	4.93773944904547	4.77788034263867	3.97701453906255	4.23534011717576	4.68090610038749	4.53887841292346	4.54137198263651	4.26257684383626	4.64124814664543	4.42269686239599	4.4752576076541	5.5905771804521	4.68442396639562	4.20603836184366	4.72975764608045
+"RIT2"	6.41321574998176	7.35610543611112	8.12771093066737	7.34516467752901	8.45972795823114	6.73967588337162	5.94497332026592	7.52471458607489	7.97993644105618	8.35473159746056	6.86826590300559	8.11538033563711	7.19475028091709	5.93873304951069	8.0138138607425	7.44450773842784	8.10402308110257	7.93144238701713	7.6217193117957	8.31846182921264	8.07468006596336
+"RITA1"	6.70926351366093	6.62278309478992	6.99530654411202	6.63562915717429	7.13817444803692	6.63711212328975	6.50111749481321	6.27009032282074	6.77886532865224	7.22031790531397	6.3898731713242	6.68987840131355	6.93150725361138	6.43194918493986	6.65616085200994	6.47973387124029	6.55589533569676	6.7667489987598	6.62896924232392	7.28536820263077	6.94782715241034
+"RLBP1"	6.92518720950072	6.5854981913627	6.97687195895791	6.05699125298732	7.13724906781309	5.73564237123663	6.6105879267926	6.9732650542995	6.33773386854795	6.47390256598833	6.37647818896202	6.56754912387735	6.31793312275013	6.38352592189597	6.23447240694691	6.09188381732546	6.4088793165858	6.01500471674212	6.29520628932738	6.81023579077216	6.51014516490364
+"RLF"	7.240045549648	7.60137407699639	7.88538258201536	7.5387466897391	7.8660523886017	7.83824128295344	7.13285979374103	7.77108238172584	7.59405464040212	7.53155068228061	7.65001633047189	7.58005384146861	7.60672509304438	7.21135907734562	7.71924132308835	7.66361075742448	7.69315587042749	7.98339268191511	7.55715606811661	7.73820616782834	7.37014595701294
+"RLIM"	5.77540407591191	5.61222175267243	4.82797497554128	5.04033664885261	5.46600426962681	4.70087351952764	5.39574344265281	6.75604026747083	4.97422709959137	6.00670622707959	5.80341981795718	5.79238216637187	5.07491835581571	4.75997627646753	4.88448331423898	5.65412909526711	5.63499641296006	5.47537348855661	5.44424531820443	5.46110613710933	5.94423195361507
+"RLN1"	4.61284354163675	4.57309173123312	4.2823221316792	4.4682988045634	4.37663141613457	4.54521115678416	4.53199343179143	4.55011963184974	4.48504115196022	4.62786542252174	4.34828457375857	4.39630686686438	4.67182517268179	4.44464547717301	4.49300465327281	4.44464547717301	4.39502254945713	4.5817622573016	4.3245536193248	4.2493817728559	4.36640653495405
+"RLN2"	3.83353097716374	3.50559810610379	3.56149762642642	3.63681248578361	3.54160624796159	3.34215571292522	3.40059149424792	3.50316141635616	3.41507704469104	3.42044447531423	3.66483760303035	3.6309158456478	3.45543993057874	3.50526912255908	3.3301759649479	3.71112445315012	3.4324618358962	3.45543993057874	3.74528698415936	3.37545497594437	3.41966876021535
+"RMC1"	8.05228603204553	8.20524696973922	8.15455970359696	8.08612919052238	8.30389439911748	8.23433353134618	7.90040539340312	8.18705163154899	8.38668028151785	8.47247393174136	8.13230025681123	8.20333930088384	8.23306734366516	8.00689822354	8.39407855921758	8.33902885890858	8.41373060844728	8.54206062481333	8.28894920222098	8.35059581349341	8.22758788864622
+"RMDN1"	7.64424375706763	7.96387843405643	6.56006124887368	6.68182270053645	6.69785940228432	5.86794424242873	6.98140458874892	7.49055004500008	7.02949423999252	7.1609884613977	8.06608777816757	7.18704372078527	6.53819771910202	6.94515200662232	6.98140458874892	7.40916458490571	6.83331229510338	6.78205426701018	6.91836831227235	7.01257656048724	6.69732543862158
+"RMDN2"	6.14893618509495	6.38617571370228	6.43217192688146	6.07465027442403	6.62875171226049	5.53449510062404	5.71788639629634	5.99934833631218	6.38917731921087	6.40269875137799	5.95569155878444	5.98843515743586	5.93851752986762	5.80314490301821	5.94115726858844	5.99760990373067	6.05040319416487	6.45049338726394	6.17114612959811	6.65937555994937	6.06635605820382
+"RMDN3"	9.54660095869535	9.43963228748845	9.33940010438737	9.43163995388203	9.54519599893842	9.44032877027962	9.48083211084279	9.462204162716	9.5144268034939	9.46747061768826	9.58507630455035	9.40448933733235	9.34265313128551	9.46857485358653	9.39868683017339	9.65724429825585	9.33880305900878	9.60174616533483	9.47239069539236	9.55472802011806	9.38511799998365
+"RMI1"	7.65930792836642	7.13668770031538	7.62801883820561	7.20912470156405	7.39745497173808	7.10677511958496	6.91417943887309	7.49526066252905	7.36381698749104	7.20990597106507	7.21111055695199	7.43570267024008	7.25333879028245	7.23664223966811	7.35249198520435	7.4481096157301	7.22135760790486	7.76009360038507	7.30840424529704	7.20137105843465	7.1602322857832
+"RMI2"	5.57892474866302	5.98764020717116	6.47917824746178	5.59163627071413	6.38960574885414	5.77837042779126	5.86125931291801	6.40652515515953	6.32511129764448	6.22439822429737	5.52771247271435	6.06426521317583	5.79450324514927	6.40270096021321	5.94681918439467	5.92718784042486	6.23107578579646	5.89037926436865	5.90368506373594	5.93525802602569	6.08267304947683
+"RMND1"	6.38947040638341	6.56941377923675	6.39895132503548	6.13213350470413	6.61199328951794	5.81600137828635	6.05969129813562	6.21306552099697	6.61199328951794	7.2210707769658	6.84449224921634	6.9384110667126	6.27032230612748	6.00041221494356	6.16658362154127	6.74290739368201	6.61314141636363	6.7525150326102	6.68407737640989	6.93757746313421	7.15794283040202
+"RMND5A"	6.73217974094166	6.49390140779424	6.01494292696101	6.65277043956977	6.21054083057142	6.28133710338935	6.74938478922851	6.76751295056155	6.63067014785824	6.83662641888545	6.98824642299776	6.96827346986443	6.28816126081896	6.61361376796198	6.66673663886858	7.25265370153262	6.75030640371843	6.28160222819848	6.51059254994221	6.78858834496951	6.90409894047966
+"RMND5B"	6.85941568666547	7.04845643935444	6.97478803822803	7.01327644919461	6.68911941738063	7.1645981627081	7.72028597838526	6.66106189526911	7.14641881677567	7.04261927070621	6.83496421994106	6.8318127676582	7.10098283807934	7.22612701792402	7.05281048002286	6.76795498861692	6.94575000197397	6.59189231620519	7.02893813164478	6.85655640743616	7.01652931677021
+"RN7SKP115"	3.83353097716374	4.13185715137844	4.04309017478141	4.18322247214676	3.9074807693034	4.57454523844937	4.41907497285203	3.7965994418357	4.36341879886027	4.07908894049604	4.21632512691212	4.19242588917775	4.45263007304946	4.32520366318672	4.47839917658406	4.10594837293	4.19217173855785	4.1235175188173	4.33274583141082	3.9098655043793	4.49805730959305
+"RN7SL301P"	4.56394855257414	4.58251134297354	4.66770657473877	4.7096388695463	4.66784483447504	5.02911786542874	5.19316231547331	4.72012227484854	4.82489720094721	4.62359410071287	4.41726227636723	4.7096388695463	4.94685947197103	5.03256595106673	4.79368549204927	4.69711180452559	4.7096388695463	4.61405390739268	4.32845690971237	4.60191141781022	4.7096388695463
+"RN7SL587P"	6.91919729515861	6.45980750743992	6.46726412416042	6.66576122473134	6.44558557976176	7.01375489878832	7.17227110443326	6.32251371433598	6.37725202309117	6.54051050200513	6.30997109772858	6.45488908392163	6.70054218302021	6.9693808680804	6.57211625616677	6.84550513565709	6.55488030697306	6.97590975553572	6.57211625616677	6.58175633492577	6.53036259315506
+"RN7SL724P"	5.46312855031991	5.72531632630699	6.04249851419464	5.72531632630699	5.70177995334263	6.21214266561954	5.92605383514144	5.7234913590312	5.62891358128462	5.78121285843234	5.65532541945838	5.71510252373864	5.87304692992542	5.98829600814824	5.99996874279626	5.3411496427621	5.63553146267341	5.59460256243717	5.79821927397124	5.70960478212582	5.55184397880662
+"RNASE1"	10.5565257093851	10.9149055684354	10.1354117667958	9.95126035502647	10.1269992565274	10.8745655318545	9.64428727043663	9.76236706401361	8.86865212946277	10.2480148299156	11.3549821365383	10.0703208593682	9.22321178394367	9.99557392032366	9.18005803200854	12.2485226288657	9.29383178750989	11.7850534742043	9.78933673758178	10.1715453996242	9.965482015116
+"RNASE11-AS1"	4.74434078970514	4.78057709465034	4.60371059439516	4.77980185698974	4.72423247387559	4.74333930393549	4.85406853655463	4.66054668595798	4.94043114257783	4.80597794819693	4.62669694090753	5.188541271698	4.67004153758588	4.74500916367318	4.85471296863921	4.89018832788863	4.83174319248431	4.4732649836338	4.82166782963105	4.80446929629947	4.64027837007103
+"RNASE2"	8.61631395336961	5.85914895617402	5.01436113159267	6.17697555056108	5.93915250537059	6.26264737858307	5.93915250537059	7.59135409173073	5.57934033419088	6.35191754982039	5.68371288976684	5.8046063198732	6.64971373325129	6.31117577133509	6.63328195791173	5.65944107394473	5.92777248666293	5.96856854867379	6.26996736438534	7.01269189828841	6.43914276842374
+"RNASE2CP"	6.53508514822269	5.4236446130217	5.43959020717813	5.56035088690433	5.39813519412638	5.70661459722426	5.47542763050103	5.80405713358127	5.62241522933339	5.44935593503179	5.27358447891919	5.52469956938899	5.91545277905003	5.49858252966538	5.51403668859576	5.40426952884168	5.49526390991484	5.50076182085259	5.6437189967025	5.74184142883941	5.79556060010897
+"RNASE3"	6.90170667397315	5.97628616805469	5.62996569319191	6.25123834738911	6.17616872441404	6.10060319539931	6.13818027037968	6.36453980245113	6.00990179220662	6.3303765575803	5.89338819412992	5.82755510337088	6.10274519717874	6.30813972404687	6.18454056252325	6.13068967777397	6.10414932499822	6.00776691368706	6.18604568079819	6.1434303588674	6.2855911220181
+"RNASE6"	7.50972918283852	7.14599483674177	5.83224812915994	6.39339793595855	6.40459580631941	6.42351466347315	6.88633975571922	7.01311068665715	6.77445080138681	6.89071480794996	6.36051115387959	5.99457829117662	6.54979635283897	7.24060584408256	6.8355520844776	7.14920408368928	6.72144580752031	6.75352963736152	7.67012943414505	7.73901923990387	7.2632869446839
+"RNASE7"	3.63503670867463	3.40536959614724	3.4668934307063	3.68331824292602	3.69984746273129	3.60749090751301	3.83154860992209	3.67452603216452	4.19893715678431	3.72103214140363	3.74601129079079	3.7275040443679	3.68677998230732	3.69068742859288	3.32110196824631	3.75702184978452	3.54960729677334	3.39621630569349	3.72330195906717	3.57065159798244	3.56695701150869
+"RNASEH1"	7.60328405091173	7.99815196437328	6.44448859502761	7.66228353157632	6.84883562718287	5.21852300896543	6.55395183390247	7.47798378322549	7.89678971778794	8.53180011172449	7.96687215766886	8.53034762485766	7.37092865711596	7.22892196569995	7.4624713080661	8.39190763755931	8.18116064305424	6.72658759006067	7.66536798871064	8.15719946931455	8.23160375360217
+"RNASEH1-DT"	5.89660645522877	5.86372869588182	6.29079601809376	5.98676808381706	6.17301743127119	6.30487718408607	5.76758920513715	6.2630917383102	5.84654727068579	6.10271985819724	6.31060874466801	6.19400140608326	6.27315825316984	6.31429396779173	6.63573772028676	6.44266543206365	5.4944948625901	6.94368087249732	5.85510245866276	5.09864525260669	5.5941733389914
+"RNASEH2B"	4.82978667175749	5.25924102240533	5.95179270949661	4.99169548668545	6.08299789090268	4.40639791989788	4.15533186780422	4.77810024463096	5.26291176768241	5.20959791280363	5.0278074055706	4.66171965564232	5.04118766590587	4.29644549077635	5.05497694948843	5.45223630531644	5.10965507910399	5.2169651581962	4.79835916246508	5.45893929608827	5.55329806194473
+"RNASEH2C"	7.70360079907333	7.4399595209046	7.62169608893847	7.42798694486751	7.20152989785038	8.10607906181982	7.38642988710387	7.25722238500241	7.50655623414723	7.69120460121473	7.60692194865611	7.11735508025952	7.55239128387374	7.65942991201728	7.67276394419219	7.82412310809876	6.96585487579743	8.0285233585442	7.80754080681296	7.47336057837068	7.37645905672168
+"RNASEL"	5.65818039400653	5.27634118328936	5.60722872280904	5.24165322225513	5.51660105445203	4.89783217828733	5.28109623905838	5.67190056340465	5.11378332027759	5.29532644524993	5.22182134373697	4.93272100944569	5.09382272256652	5.17531102246592	4.38597266239467	5.01732219947557	5.19402363756742	5.43474664438467	5.39483803394672	5.56135779227634	5.19841316729558
+"RNASET2"	10.7294985870486	9.95733791984935	9.85743517624175	9.99707088122987	9.640070530631	9.53680295717392	10.3115729635159	9.66058715426978	10.1368418066372	9.94346380511657	9.72885440545764	9.04037172057424	10.1638728803575	10.6767180912487	10.1186610361752	9.91329098939658	9.43930410385798	9.88555840498098	10.0196929046201	10.1892678250312	10.2933144357423
+"RND1"	7.81618369848922	8.61807384837605	8.99832715150055	8.55809623069131	8.8631084841475	8.64800261717146	8.31551414551075	9.47616598058799	8.72053700334077	8.75346271006783	8.22218012861368	8.80224835364881	8.74245919875001	8.16695102432706	8.61807384837605	7.93367137149219	8.64765173986487	8.37320249803203	8.23772288308096	8.77385944537868	8.69619227357245
+"RND2"	8.64577350665487	8.17110822364462	8.16254201543949	8.53158075213103	8.12715156539533	8.57589280215787	8.76145997838513	8.40820714084403	8.4378149814544	8.36749771410749	8.28665741828238	8.10526472424247	8.67400227286554	8.74288136489521	8.69832914117696	8.14042157664315	7.97294654853457	7.8318200466076	8.50441769201542	8.32291811985108	8.09797921611448
+"RND3"	7.64377980603326	7.51170925027942	7.92521254182439	7.18025431631852	7.57621539095217	7.32087932162292	6.92009797259361	9.3634309438277	7.1277930439479	7.57375261159184	6.97430928106517	7.69605809242912	7.345102390782	7.45233279233069	7.03152171401082	7.09369156706871	7.43388720948034	6.93997417548546	7.10493714034289	8.36551600433261	7.63986618931441
+"RNF10"	7.28841551079188	7.36387544680352	7.6635968486379	7.14176402466014	7.68687680758034	7.18739051968122	6.8773415254722	7.31365029200381	7.12433544102228	7.29860963692309	7.22007831905617	7.37284984284004	7.25957739123824	6.97858102502822	7.46918907505339	7.35704747148944	7.07547369998306	7.30211932873481	6.98252784255653	7.44614925460347	7.31688245542003
+"RNF103"	10.1034279361041	9.98070779811528	9.84408927712001	9.92348596574913	9.9400522511769	9.58239962561693	9.8348115347228	9.69426686746571	9.98401203146945	9.92358314456913	9.99761487153895	9.75217049080408	9.80032508933343	9.78500899306136	9.77669573651909	10.2272250584838	9.88618541426834	10.3044126282856	9.91723911014312	9.82028653360262	9.73527450717234
+"RNF11"	10.0543865064407	10.7483839181559	10.6930776571027	10.803332344489	10.8708820584917	9.88752494839095	10.0530077734002	10.5511854003685	10.8922583204229	10.7668494368349	10.519791597262	10.7817973705989	10.9879077148396	10.3040912831705	10.9173388734655	10.2683575363869	10.9275664759073	10.4704805309231	10.7498135259223	10.4355193599775	10.904112350346
+"RNF111"	8.1617867276325	8.35100825858086	8.42848511078742	8.21250950690436	8.73570253581301	7.93917465943849	8.15824595632371	8.43382575297378	8.64554030964144	8.41950609437302	8.43366063528134	8.41950609437302	8.15976577772851	7.84332385995964	8.51913289444051	8.74349683656712	8.36951900060753	8.90519370402806	8.33697986978233	8.66283512095246	8.60323298674139
+"RNF112"	8.40038426782639	9.12930001596429	9.35955745823627	8.84304292887591	9.06358142150841	8.96340095132409	8.14663011802409	8.37236521984519	8.73740547278389	8.98523769097758	8.68109487019772	8.85715518356072	8.9256844838808	8.81244043852988	8.48430487206542	8.41968504055255	8.89343191533089	8.89900356075218	8.59289312911735	9.09591688593467	9.10612537999771
+"RNF113A"	7.6695287434408	7.77685339012215	7.95280983139076	7.69217615770736	8.20974535249801	8.13504223659895	7.43197096859761	7.62640034674207	7.91563763046491	8.07731051703458	7.48040907802448	7.89664057314736	7.64616859449012	7.64536392614112	7.64922127350514	8.01839336764946	8.01698990388113	8.08526815024508	7.95074946585144	8.06135062611826	8.13396868387171
+"RNF114"	8.76252358141011	8.29112530662448	7.70983094093564	8.00805251884258	7.88774356510377	7.88470611265503	8.54987927385822	8.77814727252374	7.94909211923258	8.18301728309272	8.4895021631126	8.17161116462884	7.99835180258886	8.09827889906719	8.05352670984935	8.56458481347648	8.00428726986102	8.39729833098797	8.44848576044434	8.142347608853	8.02365384650245
+"RNF115"	6.17007248696622	6.29959313872566	6.29430926266833	5.78706795058818	5.94357758592045	6.56435397143088	5.94075926041079	6.38586673202084	5.7876836929181	6.08127783138404	6.43961868571866	6.42838043307459	5.97355902177437	6.5020278053098	6.07940802451293	6.01157017240259	6.2344856450932	5.76125990932387	6.08436070254216	5.71294151638869	5.6949272518188
+"RNF11P2"	3.08074969677513	3.24747027249619	3.18231466587994	3.07333272670708	3.00959318115518	3.37227457218061	3.13249774007733	3.20164540999037	3.346015867609	3.20653961794615	3.02866561006474	3.05029225413195	3.21328389292166	3.08460450862038	3.08376867584287	3.21840823285441	3.18231466587994	3.03417645744603	3.32559161097131	3.35380439437395	3.18404779816901
+"RNF122"	7.1100810326869	7.17386389138413	7.11145571007135	7.39481231115057	6.9747177294829	7.42723161372034	7.77665915885524	7.16574355189559	7.19498679708516	7.19745225435715	6.78818470161452	7.28332867581378	7.43371352788291	7.51912267076672	7.32888917083042	7.05905983024345	7.36114694285031	6.65177485597394	7.36361536201878	7.02137010141618	7.11758031739828
+"RNF123"	7.6468497107776	7.75343304460098	8.09746707927139	7.90067596870564	8.02685385561015	7.99597226391681	7.58081681510103	7.68992411709815	7.90758984932775	7.83315392407717	7.67628819308826	7.76119280905488	7.97509799451011	7.94255037524826	7.82599038710262	7.14267150540394	8.01471884484022	7.87034897759307	7.52175881054118	7.95746908544633	8.02488555833404
+"RNF125"	4.57175642578812	4.81360074677237	4.32210441463656	4.58746644986486	4.25731078861933	4.4989550392722	4.30020687687477	3.70591477281831	4.04596043216659	4.14271473851982	6.23872453070744	3.90165233719645	4.07792606942969	4.47554778523431	4.33224748870299	6.06425536978966	4.09999931329155	6.45655239514403	4.02739556765927	3.94747950313615	4.25166966820658
+"RNF126"	7.56161700748893	7.66220836877483	7.87671221511086	7.5137538889228	7.80055081559393	7.63722332680979	7.00661237523306	7.18653377574265	7.32414138732214	8.00896524544823	7.8747746943835	7.89010570790931	7.56514532570548	7.27103867217683	7.28673597251819	7.84885135949071	7.63282834487721	8.25827230938008	7.30866412439854	7.93583250938263	7.90478167208135
+"RNF126P1"	5.95436043637615	6.01295460213918	6.27325806444416	5.89933398476674	6.07345288814669	6.42464900190937	5.97781071409239	5.79789196106365	5.77975201017583	6.30577443485454	6.00360557216957	6.06094828973349	6.14031178827375	6.22177875663444	5.9522644167504	5.89645314796789	6.07893415167585	6.12780404272175	6.23328348656798	6.03659656255743	6.03472891509803
+"RNF128"	5.22744182831808	6.47243433755888	7.25114577948025	6.62349775395622	7.08954679982854	6.23510761425413	5.24108707568729	6.32304109847538	6.64429854821635	6.73996784152225	5.88904717036759	6.34936588480025	7.02044299497395	6.28791278246575	6.8070548247735	5.88875131919507	6.54367896325785	6.48041539681008	6.63179727848724	6.90910518858712	6.74924900270105
+"RNF13"	9.57390424868282	9.6670406762846	9.06214054972727	9.28137721450015	9.38639436341996	9.35725124890507	8.54102808815262	9.15108398720204	9.08117311184994	9.25594148908578	10.2458701069119	9.11196659279044	9.12304874030955	8.82907016190705	9.23648717928073	10.6376080802393	9.35279668560461	10.485945223146	9.51403279001242	8.90092518390857	9.38452584166574
+"RNF130"	10.6362807915389	10.0665841364183	9.34215554753879	9.99028102381439	9.46416026572243	9.9897072775894	10.1132540202947	9.68892702581247	9.36938257299586	9.66296149376131	10.7463794923319	9.26869249148769	9.74628800497179	10.0501010905965	9.78255414549851	11.3441741309959	9.56040778601488	11.0882535427005	10.2800815490124	9.51919482008018	9.53713266632644
+"RNF133"	4.1244764842189	4.08614163508955	4.22360428893022	4.1866728107933	4.21105761699794	4.4679238311301	4.37441837541075	4.07679068577886	4.20954984641821	4.20364844462103	4.01139336374681	4.20233653180582	4.24585924545154	4.61965373676012	4.17104470007781	4.29448718978228	4.19994607889073	4.00469379059507	4.04674513666333	4.20954984641821	4.20954984641821
+"RNF138"	8.62399092563267	8.38098855993815	8.15219194463987	8.15563158001101	8.2147116054504	8.21932931656152	8.11863372315346	8.42125351438665	7.94905349570755	7.67213180399088	8.68026801665741	7.70681016688591	8.00843267813599	7.99877572957369	8.16067725119512	8.92779697962703	7.8248256796643	9.15060433398372	8.21273026723468	7.82788748617569	7.90796317350937
+"RNF139-DT"	5.3990503229866	5.46855032132115	5.6931082589306	5.27012773069986	5.39415588805401	5.7393859483404	4.92594019997665	5.50528692233858	5.14530658901166	5.16212487456396	5.58552071525389	5.1640366619374	5.0224322016922	5.26205725756877	5.49812533266384	6.16023476606676	5.58857773578385	5.75071570736745	5.19404838724886	4.99000148751809	5.20758330852802
+"RNF14"	7.61355220735966	7.58534416886863	6.90167307450309	6.88045937753352	8.12160625224082	6.73397893266323	6.97768971009316	7.13081736787554	7.21835624616123	8.16243186271372	7.54360139909527	7.69327782239413	6.88138119124581	7.07831697309997	6.90237709266814	8.02395154990051	7.35607450917789	8.06594932309083	7.47490011188847	7.92535966735266	8.04749537085919
+"RNF141"	9.79546162437907	10.0696588406395	9.87003557586229	9.74556685945776	9.89452343525627	9.04608228590232	9.62136434900905	9.76966724579702	9.34146358692156	9.46934713968229	10.4870087207094	9.44338747369807	9.11041102088452	9.4947131406057	8.8226926639995	10.5870986930135	9.50201467247462	10.5757910078296	9.79969450010955	9.39921235921928	9.46213923298034
+"RNF144A"	9.03510251556544	9.37542045373775	9.17179773016321	9.21601615702813	9.17824394640338	9.65037892985944	8.58798282013793	9.0713510652218	9.28544888232655	8.68892302554349	9.53815459973455	9.03135063787381	9.24016711743126	9.24148706964925	9.4230422118588	9.68045032320611	9.31648471127824	9.61308930309734	9.35092028455891	8.52416740271972	8.98982167916251
+"RNF144B"	8.09751579244192	6.78728685574321	6.73625909196895	6.7864567685587	6.93811125598975	7.51536583970653	7.09682758324043	7.58712937666234	6.27187689877932	6.90013137016517	6.69222338958385	7.0038208925016	7.1881066307495	7.38193650533492	7.16355396194755	6.17018227924523	7.68253899776987	6.72632095915726	7.11692763507213	7.46865212322834	7.21157197387078
+"RNF145"	8.01182787128923	7.53903272288616	8.59664149518045	8.1325659129548	7.8548728628578	8.92040691451361	8.40694980630573	7.74694743142956	7.91393652724338	7.67190338872409	7.48422941508137	7.84332341745248	8.42292812871987	8.32648767383361	8.17133166586118	6.94137874871405	7.63919946807818	7.6798551567428	7.77161694455474	7.7013872142212	7.62835993656594
+"RNF146"	9.01947535639123	9.00269635698746	8.62651386271446	8.7724458088689	9.08621123161262	8.74546926231505	8.9028959677487	9.01808254831694	8.766625741855	9.26003723434882	8.95014385978483	8.93480815503183	8.49329820322777	8.46761339591579	8.57913410775703	9.23621635857559	8.85560245109152	8.84394621915622	9.01881330414085	8.92673002497522	9.00311448265137
+"RNF148"	4.30895883628316	4.22418977974962	4.12891237790978	4.19116825391442	4.15963976053553	4.36335488691331	4.38333350588795	4.23067985422205	4.27817073019398	4.11717790345253	4.00247647902647	4.20640524148431	4.44065281531118	4.45011570961146	4.31822201127646	4.21145523463627	4.22750639646845	4.22418977974962	4.28144026338776	4.18386700492948	4.08829512924008
+"RNF149"	8.86376274522589	8.13378981767823	8.11178859124344	8.07739131787207	8.42921308414218	7.46674395093698	7.40133808450103	8.33541767365296	7.73056042326883	8.22740252190709	8.30583944644832	7.83088210878843	7.93018840290683	7.41096344121784	7.64424375706763	8.496966301288	7.99580164982028	8.42172713085976	7.98053199546278	8.33661552810768	8.53300487178108
+"RNF150"	6.41794643868535	7.09032317882469	7.91717100422382	7.5784902346641	7.55807181005264	7.18105333267926	6.91601218965379	7.09809649106526	7.38007270571147	6.69924997850002	6.61261465461049	6.92267934796737	7.38169885909152	7.12716187356573	7.4787073323293	6.03863733897904	7.48462218942358	6.75940392213616	6.89645089523662	7.16593777805221	6.92757533553561
+"RNF152"	3.40293210818712	3.5638949779056	3.39016352460019	3.3307672380881	3.39154363816964	3.39633652011792	3.60753219244326	3.85813639252919	3.28687823413215	3.54692582627391	3.63155791553481	3.37755436965591	3.81777287252731	3.65393289584312	3.75951689918766	3.54692582627391	3.59222776405588	3.4300892127031	3.35348534622355	3.55924462140373	3.58562291710495
+"RNF157"	9.60996266386801	9.98821997193456	10.1557262643856	9.83951730100675	10.2268260002252	10.4043588589561	9.98174756545398	9.83968463938178	10.1808951108595	10.3629874869241	9.73640044393068	10.0194845625148	10.4822591044523	10.1046067681718	10.0816044576881	9.39517940137529	10.2799679662025	9.89471891729448	9.95156233072495	10.3027291967464	10.4336581442738
+"RNF157-AS1"	7.0222280091496	5.47099865333773	5.92871863517719	5.94057850464892	5.33960970930924	5.0148268270683	5.621673578327	5.8021192881373	6.23803185022105	5.6194626880349	5.50067355569241	5.08540558044021	5.19872315133005	5.74520671943902	5.38303181096964	4.69209042993541	5.19455589029436	4.9288283931948	5.66905965102038	5.11896825754871	5.09669302942646
+"RNF165"	5.91913438488126	7.04422216273472	7.77926376028922	6.76674376641292	7.00999188717543	6.61899963734308	6.69863107144155	6.69863107144155	6.69788000210891	6.07373482237232	6.12312681289629	6.79829253692131	6.97768461448776	6.3593364505816	7.00189594209054	6.00574017153603	6.69863107144155	6.18172200701347	6.69863107144155	6.91689358274055	6.24131107306521
+"RNF166"	6.35295214745911	5.96398722229878	5.79017588614976	5.7964366976332	5.44588052155811	5.89823397989782	5.73971809950586	5.71619877401167	5.65561782200455	5.74008758684868	5.76780150038785	4.80419531992814	5.72415600249411	6.12950318507966	5.81649865895685	5.82015684231933	5.52898675851664	5.84076046693527	5.65962299157731	5.69344241129219	5.6044867806097
+"RNF167"	9.26532644375058	9.29987615363611	9.4274470979632	9.41259160496914	9.50122819476381	9.85924845555067	10.0586443159886	9.42072624545758	9.27763508095742	9.43240616427926	9.22459072270181	9.33902747066143	9.42141547882662	9.68075117084306	9.23412406620292	9.54766323059516	9.34513332248303	9.30542430619318	9.42072624545758	9.60240714201794	9.34151344314088
+"RNF168"	4.38153354762335	3.97472017687822	4.51161911257601	4.24119781826013	4.14842886683631	4.61046419147135	4.2073256146269	4.21341990593251	4.23524688568945	4.27543944413755	4.33101262947114	4.35445702061164	4.69536596388868	4.59466020937888	4.60668399323937	4.3462144615832	4.33101262947114	4.27347270858143	4.12444166160547	4.47375217464394	4.28360140401422
+"RNF169"	7.14107482715145	6.96055364159894	7.4516172950663	7.0428988357604	7.21222767134786	7.33440719481384	7.23649427717003	7.56234143411157	7.06717999913554	7.03342624724451	7.19409459248271	7.0038208925016	7.0726004199978	6.93724709967724	7.14107482715145	7.24088437066245	7.05449666968502	7.55400629056286	7.08852317332545	7.24595829183507	6.92932158244284
+"RNF17"	4.40587594652219	4.31107068948747	4.35911425733668	4.44028337611355	4.40422664719564	4.80864155739237	5.01466486034418	4.39949646562072	4.50678765848201	4.40587594652219	4.06534532838422	4.30478536742608	4.49221059579157	4.792041545333	4.78447994247241	4.41407940927575	4.40587594652219	4.12180962703142	4.20468082834152	4.44045545441188	4.23863463804194
+"RNF170"	6.98442032760267	7.43733974347677	6.77015475387019	6.8514244508241	7.12414453042904	5.82287033003888	6.70733303571032	6.65975671364155	7.03086980637025	7.31041658687031	7.5845162432544	7.05352757934663	6.71415186104575	6.62100336402268	6.80878460931253	8.01969312838565	7.13004271350197	7.26590746412811	7.10208096374275	7.16272891894894	7.42791278492474
+"RNF175"	7.53408878564517	8.64375207650759	9.33653043963365	8.75156453251068	9.18817841766828	8.01021123404067	7.51469736996531	8.5561119782896	9.11690378239549	9.39879820439198	8.11231847475192	8.97509582255543	8.80107965360866	7.97507235724312	9.03854024053415	8.13375983088832	8.93529909596176	8.73268014778862	8.89597115845885	9.2784268903397	8.86512302342675
+"RNF180"	5.9219239334207	5.89232786973845	5.13251552085047	5.94580305198267	6.14708087941854	4.43693394368091	5.37281387430384	6.12253330786859	6.64854130587936	6.44581271682861	6.1503901645546	6.50108177447639	6.14727930019697	5.38319959396931	6.00220104389557	5.61528403692589	6.2575553272762	5.5866975227771	6.31688145576524	6.18385393576725	6.45765362359619
+"RNF181"	9.65571459181612	9.51938828358359	9.62908109975309	9.1268568036654	9.63026682396505	9.48617722979307	8.94384160236326	9.50043684515703	9.26881962811947	9.73219906669409	9.63373454911797	9.64871956934068	8.93151561403781	9.05485033982287	9.14102793918715	9.98639855611526	9.14467383304325	9.65468631535406	9.37736077624047	9.83380065980881	9.5201161769962
+"RNF182"	8.83862684522561	8.29377344615273	8.25831655186381	8.77039892116121	8.06665913684348	6.58480983229227	9.15972316016734	8.60901453443833	8.77435161616745	8.21728332844521	7.68879098925146	7.2502869171212	8.17343165053418	8.30284243448766	8.76204361497981	7.20723430992438	8.41089110329052	8.19760907776804	8.59705254467817	7.67818207698051	7.66875954503119
+"RNF183"	5.18158830488305	5.23389961059546	4.96032579114276	5.15512077957943	4.82637259333335	4.76101245067581	4.97996265113183	4.82804757532731	5.08401903948741	5.00924272934211	5.16304009926144	4.96481705635038	4.71283223030568	4.98179896250317	5.362644736357	5.07843215709885	4.93139328102896	4.83075315329149	4.94742361195915	4.87811163855042	4.75666272569165
+"RNF185"	8.44907560840621	8.35554628180291	8.54747245999801	8.20685711244586	8.34468390062135	8.37375390026371	8.24163208952685	8.13597319471145	8.26444054006154	8.42041793419016	8.20002557565586	8.18035436386254	8.05613396047184	8.03202313008494	8.01712782119742	8.59996583665129	8.14711488412681	8.33324934627713	8.22907851246855	8.5297131354751	8.33983551648138
+"RNF185-AS1"	5.5282294360713	5.49961457802398	5.12184902653258	5.58824673078209	5.2554327292013	5.43433784875619	5.1425707390419	5.43433784875619	5.3973348872181	5.5798295639792	5.57840499146225	5.37645035990993	5.38238663843478	5.43433784875619	5.29646883135522	5.80528477497548	5.43433784875619	5.37184057182068	5.28302921908046	5.49870416522281	5.45628767586587
+"RNF186"	5.31762183510096	5.43393706784188	5.46697174740618	5.59140381272771	5.49868901277839	5.5203214403801	5.60915028760081	5.51902419839612	5.68316473684019	5.7158868542664	5.47705471868118	5.29548605910902	5.64943830467784	5.70119129675604	5.55346848094257	5.53430906568069	5.42991164208439	5.10046132433332	5.39322962390805	5.48544683253637	5.5203214403801
+"RNF19A"	8.70565308691069	7.34689877478501	6.9234216432307	7.31811384615841	7.35227084242605	6.80928744255288	7.79935996157068	8.03979530714723	7.38434699121906	7.76064184366098	8.13185750751065	7.98732665501095	7.19661690605919	7.43725356882623	7.34892401666409	7.04511424009012	7.65096528222039	7.1718043537995	7.92456431142703	7.54239788986748	7.36025222360279
+"RNF19B"	6.70186978111091	6.62875171226049	7.09019373004646	6.70685442024253	7.23268950563523	6.44620043156737	6.64968168318941	7.22102689086129	6.7993128838954	7.11355785265438	6.58998088630281	6.91753897267936	6.51327740964545	6.02443757275261	6.5735646043182	7.36230116242505	6.92799149083855	7.22337126532421	6.64034494840904	7.36044482441816	7.37077742156926
+"RNF2"	5.5679708561463	5.71929042113169	6.30044066531346	5.97853873781086	5.91128394959073	5.97401419188106	5.58221528371298	5.65598546780354	6.07854110773496	5.86072508456572	5.79394199290267	5.68013650051669	6.01353653618077	5.86093857588969	6.06021541232478	5.57205639069884	5.69050004291591	5.76121535956711	5.95271751318131	5.90901446697081	5.84871886574655
+"RNF20"	9.85656804952768	9.75302458421473	9.73241349412418	9.32636265766763	9.60399085312813	9.00915118103635	9.26746985724024	9.63245309664238	9.31662837934119	9.50906046445495	9.78263646881723	9.53729203404693	9.16922059939049	9.43169109518266	9.51816538850423	9.91682117534467	9.34785623024079	9.8977805954453	9.45866326917879	9.50001465846402	9.57164098623518
+"RNF207"	5.81214341783751	5.87392215693814	5.78744491733066	5.89118712528371	5.99794496317089	6.44454707924226	6.58526905603053	5.84713283127727	5.99959863348677	5.91214841602059	5.66355811253621	5.83612897453961	5.79953479617969	6.44774348712222	6.02141131386701	5.53848488638163	5.69015569617413	5.91214841602059	5.9236035183507	5.97703398005513	5.79114734971711
+"RNF208"	8.22799445427907	8.71365174646015	9.01060785541238	8.77807765713891	8.98430684518944	8.52091494984866	8.59277586651358	8.51805025351915	8.61097375365325	9.5217319673708	8.43822322415137	9.30946028624879	9.11188884193521	8.55414275287916	8.18608556686651	8.45874227367956	9.11121124514583	8.29130163339135	8.8849044667829	9.3334182656086	9.26193710013511
+"RNF212"	6.81374872339887	6.98442032760267	6.95268911495261	6.97849644029951	6.88746150810205	7.54218872163537	7.31496217812702	7.0428988357604	7.23763457805462	7.2932395046987	6.79959156403875	6.85575430457344	7.31624734521698	6.98306069342006	7.09581293174109	6.79970671069273	6.971353153347	6.94700532032668	6.93596997364628	6.88797437378609	6.85152802223599
+"RNF212B"	4.55921151968792	4.45352455248897	4.37501963464642	4.35499219739786	4.58566149849569	4.4714782743611	4.48233218356419	4.441843085156	4.5908836589709	4.39905690919427	4.35952280832098	4.51335599642346	4.47199326033046	4.61646800651218	4.53950263451484	4.37986173853924	4.70531460565475	4.36250210054085	4.53655862548354	4.48233218356419	4.47675402190948
+"RNF213"	9.17780877278413	8.18882190058384	8.10381943275898	8.07430165418978	7.81554622921631	8.75540366271333	8.33694417853433	8.32351464828469	7.81127037690386	7.51439873122625	8.59402517322163	7.44120141856619	7.90066622391772	8.30872718016069	7.6376791655397	8.79947762197152	7.81572142204355	8.80340758651899	7.49115039935451	7.82041200488684	8.02919166632394
+"RNF213-AS1"	3.96666523304153	4.50566252915931	4.36657241153327	4.29447398045446	3.9448502731238	4.09309377605766	4.19156508038186	4.1991556315313	4.22005231905353	4.51496164457836	4.11846221863806	4.65236743582886	4.33336141123631	4.27335657183812	4.26131119604525	4.05056649311008	4.14034584400681	3.95989077405039	4.34634699370544	4.16330050867429	4.1991556315313
+"RNF214"	7.22303430632353	7.32424146120315	7.09272560784195	7.24327132886832	7.46881929586571	7.38797007000251	7.28777814732173	7.0428988357604	7.06991386410482	7.22261458234903	7.1405257739433	7.05674473622702	7.10463260422732	7.38281936010683	7.13674961705256	7.7080585971092	7.12678698391597	7.49781061526718	7.23689655366301	7.37458995524988	7.35350520446711
+"RNF215"	6.72554732574908	6.89316039171532	6.97512966115379	6.96707865918408	6.68368221371762	7.12885407449597	7.53339598966315	7.05878568714817	7.2389356984027	7.15739187665395	6.78580488134113	6.87954074573083	7.23255736609338	7.21061436966411	7.06826969812419	6.66197648320705	6.94315109306667	6.63591738529353	7.25421961364995	6.90381210851592	7.16976648227267
+"RNF216"	3.92541869237757	4.18557590658447	4.10125371338044	4.27487155551308	4.27245470258131	4.21749257809528	4.39421780068069	4.04670802250356	4.10009830613594	4.65706460765036	4.18557590658447	4.30410446991829	4.30201414565902	4.3784246623382	4.09453344248734	4.37654000654909	4.30843779593116	4.14456775334217	4.10617910578573	3.72421426249425	4.25964472169835
+"RNF217"	6.98977850098633	6.3159214822305	6.63694454558902	6.62023198987558	6.40577243202264	6.46964488619953	6.92861658695887	6.95913335497434	6.77893973162015	6.07839437595461	6.30436629935738	5.86379181540481	6.43811763792343	6.39711442552862	7.22997542322881	6.87980403148404	6.4623250229718	7.04616307308264	6.81605272047714	6.51540988716711	6.27446609562227
+"RNF217-AS1"	3.13981123962503	3.32427630116721	3.29374245145499	3.18305542375325	3.16044911927055	3.19424894370914	3.16202952026934	3.05377133628883	3.20902521366626	3.08199218228396	2.95872440097369	3.15653965087515	3.18997445973634	3.2371083959586	3.35969747622898	3.30865736376835	3.16202952026934	3.00370899815677	3.03268817120612	3.06445956091916	3.26092789292143
+"RNF220"	9.46718710899469	9.69340343483267	9.88548782213083	9.88548782213083	9.93442372340146	10.4591451026346	9.63895337592736	9.51089557840562	9.8265800319211	9.95355187587277	9.93580548147122	9.92128791688939	9.91232497024417	9.81165208247552	9.74001621413245	10.4762452327615	9.89708507316656	10.4738703611795	9.80710802669329	9.9611407267943	9.95034072817378
+"RNF227"	7.01589410088693	7.3936224026109	7.52648921042468	7.60278843948626	7.41636724332778	7.51638295394283	7.58510638964884	7.31323280905616	7.41527903223269	7.21890665845105	7.23471586996902	7.3936224026109	7.51398633125804	7.57799713016773	7.46216661039151	7.12622211540308	7.39939538102487	7.23710425788614	7.37260741589811	7.41043906282144	7.34905397840374
+"RNF24"	8.68016357761974	8.56521299618788	8.98926330661786	8.67699050157376	8.64614523200822	9.49711215899184	8.92665199987933	8.47074100959486	8.88280728550294	8.6694129549651	8.22753031241212	8.45242161752841	9.45804139479984	8.9735582985689	8.89558217881793	8.29743148371552	8.76824476686541	8.48165165188836	8.25697387190539	8.82350883112508	8.61124166738492
+"RNF25"	7.19973237152849	7.13668770031538	7.52170164947972	6.98810338336715	7.27220046765297	7.46126210352745	7.46390682039105	6.90245376321809	7.20609341431633	7.34372727558466	7.0926363372485	6.80009383493548	6.94703612451194	7.42558633139019	7.03675473197733	6.88580791964122	6.67010879496887	7.25248705919748	6.99518342119242	7.46104382465388	7.01791578854659
+"RNF26"	8.26416391499385	7.86234354731438	8.12068717770797	8.00556389881626	8.28027892845815	8.18298432935713	8.10216759868102	7.7306054841818	8.15421733934054	8.44041390500734	8.02108002801461	8.31680041370671	8.0435730228644	7.91934259382711	7.89381782776928	8.15649189946083	8.2815580292156	8.20555793441555	7.88717644717997	8.46253689572047	8.28457599965496
+"RNF32"	4.50394898668565	4.62758550739171	4.43389482293479	4.81915593458207	4.49172826899417	4.67020909297816	4.38396759435935	4.4155143926163	4.50394898668565	4.54844052423653	4.53550325872358	4.65933117478992	4.70081851115146	4.44394414728745	4.87598125386832	4.86986392122983	4.71755644894725	4.30981343900244	4.50693720637968	4.51819616668986	4.80399491957826
+"RNF32-DT"	6.85510674855167	6.45274256025565	7.05356712783534	6.88509387259011	7.26382408428073	7.13745554429164	6.71863299962565	6.63013949616293	6.96750264809739	6.53925380671176	6.76163255935582	6.76163255935582	6.67372416682987	6.47998404919438	6.66852666442014	6.86061816314071	6.64625893469438	6.72540907508622	6.46661339431295	7.28660334183162	6.71316684657788
+"RNF34"	5.67193313290703	6.04948352823281	6.01471084588336	5.52709528988894	6.1663179051332	6.38422153056586	6.06330248599605	5.60904890077491	5.96980606836515	6.13616156884619	5.77640001081761	5.94827490062179	5.98680940905955	5.92215013472151	5.56561425395768	6.23187934380231	5.92215013472151	5.79299314774989	5.48177472929288	5.96330039800506	6.04219164956971
+"RNF38"	6.91286892762311	6.68354155673615	5.67750608443176	6.30997109772858	6.96815839941468	5.7677982729646	6.53882107503748	6.82869823113696	6.38291182136818	7.17265155252482	6.64812768441569	6.75579058912734	6.04061990116476	6.13090850848512	6.03147804516015	6.93179226410845	6.70264752396808	6.82504126422726	6.7390921567807	6.91495651248815	6.79099067483408
+"RNF4"	9.41605751568579	9.32858948585272	9.37957549215468	9.11741664998242	9.50939057784685	8.89231635087967	8.99089863452055	9.41893320197141	9.43781432619202	9.42782064464729	9.21196590258487	9.43411402180106	9.180913381246	8.88708103523808	9.25376734264811	9.36713519885967	9.35432528941705	9.44856309610203	9.19141371089586	9.41005978234701	9.41679957758694
+"RNF40"	6.63409100152463	6.42955973830883	6.63448717899325	6.5900548257363	6.32257029730966	6.75152333843899	7.3370979389684	6.52263390654527	6.55992589974839	6.66996170883569	6.22839285613914	6.65561021579054	6.69096642554461	6.90085054761024	6.59233364598822	6.392288276481	6.5017113773835	6.32946558520486	6.61129367274526	6.52187429275005	6.53263578692276
+"RNF41"	8.02854920236419	8.45188788325444	9.17795607006731	8.57349002497908	9.13210361798042	8.43789346275227	8.02992623718244	8.30749974837128	9.06215569133517	9.32696868391631	8.0752443772489	9.13338963104163	8.46479104540148	8.00154187997912	8.62607478890614	8.51083544524766	9.03741847734834	8.5989075940228	8.83952998493353	9.13366616078616	9.04122712398291
+"RNF43"	6.06838616389368	6.00750107906031	6.26447989001002	5.98607596112052	6.0580826474935	6.20585923223094	6.35603998301605	6.23403145907313	5.98331651123268	6.20318613181512	5.79938657664397	6.02572234096087	6.0580826474935	6.22176061202242	6.17007248696622	5.71849568166891	6.05005488510096	5.68696993090788	6.09756224473683	6.0580826474935	6.01046662056215
+"RNF44"	9.32280023072739	9.68726914878538	9.94727792877685	9.60772844346733	9.78427798057664	9.37422478270584	9.3687589138687	9.56597504437719	9.63056080308499	9.4384023986261	9.30108840062347	9.43499266294304	9.79955496863126	9.57800458969201	9.34808087265387	9.39369435250247	9.784244372726	9.50385543486342	9.51970478831791	9.55336785411142	9.67168038411972
+"RNF6"	5.08806910445889	4.4752576076541	3.90108421250351	4.39688835055867	4.69792646699599	3.66679569879262	4.50675900613113	4.93780107493274	4.61552486600255	5.16304009926144	4.42468711622515	4.6799091400669	4.28692006469421	4.33881400242644	4.3930985753498	4.36688116527201	4.50434397777341	4.79931077960211	4.46600590006268	4.92874414517235	5.33892152527736
+"RNF7"	9.17737545134912	8.72871165966621	8.6460820584261	8.67745243973209	8.69035198036751	8.22160948753031	8.71870343112446	8.88644104988285	9.02554892325038	9.29327914163179	8.97760641631725	9.02748157199466	8.80742408550118	8.56072925673614	8.88644104988285	9.06573746762998	8.77762705522184	8.73580743665589	9.23750914019883	9.20454492696486	9.05746134667085
+"RNF8"	4.13357125779641	4.3147561909835	4.41408119479324	4.24095016631492	4.61468170662719	4.80726127813764	4.45735911946831	4.12623477507809	4.35794210178353	4.60441799897426	3.92409738839761	4.20210510531198	4.19390500165579	4.42800593432569	4.60937685779793	4.62537643603436	4.10974411403535	4.34012180313554	4.30273128197609	4.62493543029135	4.84734385509599
+"RNFT1"	4.86513403886566	5.02524446907489	5.20982624463884	4.70705132940246	5.02724438788711	4.4165860536655	4.43428118736645	4.43206582350635	4.84342756471458	4.75950157050928	4.83046307839453	4.64343427610241	4.52529155513397	4.46641974056514	4.47575507188652	4.38500959336424	4.45873617034597	5.14039867295781	4.55340938892538	4.7349839211567	4.71555169594008
+"RNFT2"	7.53677988819402	7.95049476546432	8.30978609502117	7.65620147219979	8.62611208035931	7.50673390197815	7.21792727708196	7.48441558691614	7.43637524032304	8.25712223005131	7.50103249054559	8.0259203880374	7.75844422881884	7.42711464173296	7.41311249338177	7.94110567923868	7.88674999814959	8.01382028024909	7.47793209222015	8.70831739252026	8.15653541095828
+"RNGTT"	6.9601553461183	6.62860377322729	5.98748216160241	6.52031927285884	7.03364722034934	5.97652212446285	6.27261917678278	6.67140935551406	6.49760884214486	6.99576900503585	6.48700512080589	7.0095957694457	6.37358619497113	6.10204069889119	6.15657435343387	6.96752004246456	6.56555806388517	6.9911142475119	6.63284007917563	6.95429299254521	7.08449394272459
+"RNLS"	6.76155417930415	6.52086014533143	6.64160375712159	6.55614368191586	6.62348000281944	6.54367896325785	5.84561025904912	6.52874094242569	6.48108687436947	6.54367896325785	6.48064393701227	6.45526518998842	6.54367896325785	6.67335758653428	6.43627499259275	6.60341225926361	6.54367896325785	6.63883719848592	6.42568313793999	6.80867690927217	6.54367896325785
+"RNMT"	3.76377800512608	3.78191993154671	3.57514398531837	3.63380446419854	3.85003532959309	3.58115779342753	3.61184715498187	3.68293871173297	3.63219099092521	4.21703658028269	3.8479047097405	4.19818030628423	3.44463447843443	3.67435013412998	3.26390403873323	4.04574038814887	3.89830581759267	3.83461795043666	3.7300145389108	4.02658865758867	4.31805108639362
+"RNPC3"	6.57010276226414	6.72800370118402	7.18770798626975	7.35509796339407	7.06538584337665	7.13091757859167	7.01035704624193	7.82720575052558	7.5017571036091	6.31265971397381	7.10092637905737	7.61238062149615	7.53184171045308	7.01404023894339	8.16273193907243	6.66077163270949	7.59490185400209	6.74295882983306	7.60258760187045	6.83614456904727	6.88983937034653
+"RNPEPL1"	7.82738614663628	7.58893472133196	7.63667236347899	7.59187863490102	7.59280210437694	8.38886367332738	8.59141164701447	7.49196064909056	7.42353578624173	7.63443003306602	7.47980868004159	7.43024470190567	7.81432910503092	8.21504258718022	7.66892141428303	7.5291343890149	7.38786079414079	7.62220733812705	7.68487106994649	7.56334799564853	7.51959850729151
+"RNPS1"	8.60130212572336	8.73541969170681	8.80619415397566	8.59537523965643	8.82567380484316	8.65217501866764	8.54150144863967	8.68063603104971	8.70244126481314	8.85896688125636	8.68598960800247	8.79217870302796	8.66482948767447	8.4314060809895	8.55744450858709	8.61473235441744	8.74633860840165	8.68443572564382	8.62711655034194	8.86773888773054	8.71177944433655
+"RNU1-129P"	5.99263814495179	6.08866833249608	6.17492496880276	6.20866008511568	6.23727928712945	5.98784242319016	6.19992574040531	6.12932260616448	6.17653702679994	6.1637739718792	6.02070892792347	6.25256561523732	6.37271629335664	6.33937837947154	6.12830332005432	6.10385137837161	6.32823134509857	5.7690484963088	6.24883611510273	6.0868252037488	6.42716995756323
+"RNU1-70P"	3.11279474287367	3.17653959288286	3.03901738781652	3.02471288538393	3.03131358068293	3.03901738781652	3.10536047925164	3.07567491100621	3.13645256648828	2.91251825304832	3.10536047925164	3.22131427257491	2.9551317621086	2.98370486686405	3.11950823403743	3.00279417941314	2.96134490663978	2.89811189929139	3.08786228759084	3.06451105247427	3.03206405732702
+"RNU2-22P"	3.31747176173712	3.59797212768351	3.37874947690187	3.66852956212591	3.59386782879104	3.45209448418584	3.24301158327256	3.38749800019145	3.46924752939726	3.27639493435648	3.74043970922641	3.61450640251358	3.7208412582871	3.46070048164801	3.42598080769835	3.56566851083272	3.38079749871648	3.53139627842179	3.58657035912302	3.52808495947565	3.45350332847555
+"RNU2-52P"	4.13557720799785	4.19818030628423	4.16316218138402	4.46396245207337	4.52844982952427	4.15739651943505	4.16692074639046	4.37926364227683	4.34625076174116	4.2021660826525	4.12590318330011	4.41343207940889	4.30291884282523	4.48890849256453	4.35918232845766	4.59173161773994	4.30291884282523	3.95060059793363	4.27599238226914	4.33962285374781	4.42352650562381
+"RNU4-78P"	7.45504414511636	6.90897447195843	6.7808290537968	7.10837777846029	6.68850954338351	6.5728380978364	7.30526100152081	6.98103552684018	6.93193539437146	6.7889248339341	7.00806655913695	6.82629973140378	6.92121391671718	7.02690617196998	7.15539004367778	6.73028351994604	6.83577542842195	6.51714623140242	6.84471245650285	6.90237709266814	6.83987739174487
+"RNU4-82P"	4.3353110467343	4.11574762616228	4.3423189463888	4.39659656058332	4.28295322074724	4.10310896685724	4.24256304303141	4.14277261684574	4.58338393798129	4.32863905808717	4.18540689862082	4.31928316859756	4.30291884282523	4.44978875563781	4.60638992980442	4.441232174121	4.51574727549879	4.03444892166564	4.37978678518984	4.32863905808717	4.30291884282523
+"RNU6-1016P"	8.06527159013555	8.32211372081614	8.73541149707955	7.95699931849038	8.35211105894248	8.04593481422599	7.67338720761195	8.32763839416395	8.10331989571815	7.87078933858618	8.73084097311956	8.00823395243568	8.13835036794797	7.94776034655525	8.17804314591019	7.96724568632203	8.10331989571815	8.14056478749188	8.15751303859782	7.83353120339158	7.64598757302374
+"RNU6-1306P"	4.21690331934065	4.10480167615536	3.96460404933958	3.93452054510527	4.03443379248501	4.22712860674596	4.27454481117126	3.93448195756338	4.21659405353568	3.96460404933958	3.88496697918704	3.85022203089662	3.9436746588639	4.28955046867903	4.1695321582562	3.93668319481726	4.01916274509107	3.69484569245464	4.04359670842872	3.81882686347084	3.78185800931267
+"RNU6-322P"	5.35289387754437	5.28370201870167	4.95357923342226	5.65633213379666	5.12750503357681	5.30692859640251	5.12780815514963	4.68981425133274	5.44671701856267	5.24209094680015	5.05204655490962	5.24395261265345	5.74105800748576	5.38663192490053	5.62628357727336	5.43036574833951	5.27131857009901	4.88326688255011	5.27131857009901	4.84103177299876	5.39323286295129
+"RNU6-37P"	8.7055390059276	8.82877873952224	8.91227977460365	8.73080204440898	8.34826499661209	8.83334384335204	8.57745192760819	8.58533774081239	8.49244998227919	8.11278164800454	8.89737550912459	8.47036273095461	8.57745192760819	8.4443555891533	8.8713250082989	8.26634567479226	8.52469495042444	8.75691024462063	8.45417754731251	7.66672294777653	8.2450148678224
+"RNU6-418P"	4.09941023154328	4.41855378916787	4.86577803736499	4.22073198493414	4.08659695243208	4.34469190082997	4.20367098618047	4.13275726379106	4.29513903723007	4.20479628536753	4.18568930127307	4.02694996895464	4.44517862699851	4.13577609035732	4.35831439134646	3.9129339786291	4.20479628536753	3.93542658800747	4.36087930312075	4.15712342232992	3.87599299338924
+"RNU6-64P"	3.60801353929193	3.94398222622516	3.77173950533591	3.98267344858082	3.74746587527558	4.04849066066543	3.70235938489904	3.89750769692117	4.20174228005837	3.92215815295005	3.70412680474985	3.88899195386408	4.01495968744275	4.0226807076549	3.9933535813442	4.07528626377368	3.9593200193411	3.89750769692117	3.86102638331974	3.82284083466805	3.89750769692117
+"RNU6-73P"	3.80877972972766	3.77633439923068	3.87559022805183	3.75224658933776	3.82476522651318	3.85394812699565	4.0041846370047	3.8132558038991	4.02902103000701	3.87963589032406	3.8132558038991	3.88493797765144	3.81710973029314	3.79399207489214	3.8132558038991	4.01459505404492	3.71292309346068	3.64411245473291	3.81582349492479	3.64412061090917	3.84265638763347
+"RNU6-82P"	5.30836611665812	5.13117694118139	5.86648620332885	5.33972271832237	5.71945038179427	5.44061319479109	5.12840681142527	5.3285240657421	5.27445096467638	4.94900703410895	5.47786877458969	5.08821085776826	5.06361736060121	5.30637904609568	5.24408670908728	4.72230649529809	4.90302479938427	5.24584702125244	4.99458563073735	5.0733182577796	4.97189536170854
+"RNU6ATAC7P"	4.57444309327232	4.95453856084297	4.70548325674936	5.21137701561275	4.97078882060693	5.30451262179582	5.06992596714623	4.9114577362825	5.09999230043775	4.99925951302889	4.61085505833695	5.1053969202508	4.97848885370363	5.16757317053684	5.16896839473393	4.87312100086136	5.1716869876303	4.7429875731036	4.96277087482532	4.74893651267051	5.1491833630871
+"RO60"	10.7217528288665	10.5566199946527	10.3050622343169	10.333824726664	10.1146032022931	10.4188444520519	10.7709747860634	10.7196837372697	10.084526385492	9.95746638472802	10.7033918250395	10.3692109561875	9.77114859912719	10.3183887275151	10.1773961254079	10.833188403184	10.0744084630485	10.586555153671	10.4607999789709	10.0678369064605	9.75784554555679
+"ROBO1"	9.00936284726294	8.96391920316757	9.21847507710585	8.95555470003632	8.83828005544047	8.94677404331012	8.57171280602382	9.12747709971565	8.77684477189898	8.67964382124165	9.23527587727813	8.94677404331012	9.08343340825739	8.72614552961615	8.9979280815488	9.45513460851503	8.88232626062504	9.81783095919664	8.75422542841603	9.01937942169246	8.84274369613986
+"ROBO2"	4.90308489904158	6.39848978299301	7.18422541359533	6.54412937542899	7.41153047912599	6.8832485424984	5.51847422463145	6.40200916211723	6.67905204678979	6.80313380468457	6.24618499389347	6.85402683557601	6.38757171221433	5.23842878758612	6.08878318677468	6.40329678450521	6.96585487579743	6.10704719694036	5.72033053825211	7.37674699368895	6.93975254058114
+"ROBO3"	8.7509641741693	8.05835748193052	8.00749771033857	7.96178077634322	7.70648157923868	8.26659110158788	8.59264197581891	8.20103736710616	7.97005755570108	7.7295813986884	8.36287832748526	7.79516887459737	7.89756211094355	8.44842744739513	7.82546993417878	8.01840782364458	7.70048214111021	7.84246068210894	8.24592635323139	7.61229907310621	7.74599548289784
+"ROBO4"	8.32431524856486	6.59615700990163	6.34886088529433	6.30426036733044	6.86618332614065	7.42851017645783	6.84272283080725	5.98331685966591	6.21460952232048	6.5301709322786	6.77821423870823	6.10126874886806	6.86917542238634	7.54398624444964	6.07854110773496	6.45658139409404	6.33061926611919	6.6915622657585	6.28012510793702	6.70274052507846	7.15358330807199
+"ROCK1"	6.54013113881318	6.17070121926536	6.01719571132307	6.19318344640742	5.81659713913344	6.07757857338846	6.16927543031739	6.40146211225163	6.15844692766145	6.21859850087689	6.33009459602819	6.86274884242912	6.11421490490334	6.28001505448291	6.26253449048029	5.98833726321439	6.38641362697377	5.9098627581596	6.61550071492461	6.30648942910045	6.41503443583691
+"ROCK2"	9.27734738817583	9.30035372843733	9.52038063824639	9.27153924114645	9.57073348863968	9.47071972406584	8.97486040763609	9.21410226504245	9.87572218163297	9.32086805940406	8.78885478509588	9.31423869491272	9.35382990759221	9.1638857891496	9.76822577519932	8.82826734744319	9.61428399726148	9.22628902522696	9.31044344943774	9.47395530474533	9.41385501525952
+"ROGDI"	9.22711489756898	9.85087696730819	10.0790024158561	9.53493073009496	9.84097378391986	9.72428064847579	9.09264386640802	9.21584409787426	9.41667452892851	9.68884967161219	9.99274837546984	9.67184670359391	9.32910465182166	9.36587909492095	9.48135542909796	10.6181533577258	9.50496882075746	10.2303698018618	9.60341168665983	10.0640180897041	9.95628131212056
+"ROM1"	8.1540018320486	7.41982845557545	7.54820104439731	7.73475339861178	7.30865117402527	8.17821904483246	8.37835994199236	8.02411160554079	7.55839186660862	7.63229974502115	7.73117053039655	7.78563472250023	7.81137574698461	8.00413242370753	7.99622569989974	7.71696765742951	7.43255359577795	7.75301881803266	7.89802272526517	7.53168028504932	7.57526675363049
+"ROMO1"	8.42785798651029	7.92186341317165	8.27889078256095	7.86607143324272	8.10178428139063	8.07560282693753	8.23367435774327	8.01072042586892	7.91036544961917	8.17220534165445	8.16565559440339	8.05422422710028	7.60366195012699	7.84682721716212	7.87840364908451	8.08618339014559	7.51194234378782	8.32251479572335	8.03308670891942	8.23189177486901	8.01296948592741
+"ROPN1"	4.21326924987636	4.30814284187296	4.41673348636839	4.33376347563217	4.31213305108108	4.57729213938893	4.86535240819198	4.45456494505126	4.4423238045598	4.36920716858791	4.08403801763183	4.33620970619939	4.65420254954803	4.53371687662944	4.30160645803551	4.3413293716829	4.32876519778814	4.13146542312561	4.60572365191947	4.32226610715471	4.52610864272898
+"ROPN1L"	5.40682254340106	5.13177805504904	5.2965024850448	5.22209266910451	5.5070842560148	5.06162317265222	5.06745989221818	5.06509840146862	5.2965024850448	5.77126656188048	5.04840304075677	5.47831590142259	5.28184742909348	5.00032611063926	5.5904465536066	5.27628845404782	5.57893372610514	5.24095901098557	5.04074965624258	5.51875341319681	5.71382401881791
+"ROR1"	5.87783280768973	5.56035088690433	5.56035088690433	5.6373012366385	5.56035088690433	6.45039736694892	6.12069099870334	5.50862782842192	5.56361002873496	4.98617843662118	5.98451149309668	5.47256985114724	5.40913109634328	6.02496889034313	5.38631698410331	5.56914462768556	5.5311894365025	6.67251186063467	5.72792175237646	5.22881361435864	5.12354839224379
+"ROR1-AS1"	2.970523499614	2.96554325622615	3.18930720130954	3.08315729099457	3.03880589967555	2.95961039341372	3.01917773755951	2.94007111583834	2.89036837154451	2.89618690250185	2.8828387378466	2.92519067487983	2.86618925258425	3.01689854581449	2.82777910184829	3.06498865123884	3.00222668035229	2.86539344764726	2.83885963661242	3.11609739190565	2.92744896027797
+"ROR2"	3.96532257751639	3.87661100939894	4.02571892718172	3.97361245707021	3.91811134777021	4.29405362144326	4.24272683502053	3.98938365631638	3.98229205046837	4.16493084620609	3.93031841050836	3.80486706871417	3.78944841079518	4.558755142697	3.98686846024195	3.67849960650373	4.00200036364804	3.96779852709763	4.02616982173952	4.21050835753653	3.95588208601578
+"RORA"	7.01405943003928	6.74249558125157	6.86500653489561	7.52086780945232	7.28708749464894	7.25564839614161	7.2009984602178	8.23862675781773	7.71648353657098	7.32989776111616	7.01365461621333	8.04962258588187	7.3896046992397	7.25528028836075	7.61042505786742	6.31136317075566	7.32961416724565	6.3885601597899	7.41468664113942	7.94376091348812	6.77861267889058
+"RORA-AS1"	4.31651718191311	4.28128253585471	4.45228662865531	4.66871144087503	4.40422664719564	4.52257214807958	4.68037835634919	4.3368543327297	4.61563572516724	4.81065260120906	4.52505506166005	4.42722192996207	4.8690142896561	4.73243386127961	4.53940796239316	4.20828180233577	4.60389545358024	3.91977967638055	4.61284354163675	4.2625883740354	4.69124649168477
+"RORB"	6.78813666208426	7.25188675466688	6.34694668978973	6.91950378822081	7.76791506042986	4.85559598599793	6.91950378822081	7.69359646144683	7.39184351835449	7.56759833985335	6.4816309208521	8.15489665776618	6.34996792453497	6.14414507855165	6.48398877583586	6.45057492256626	7.21555999257753	6.45667247060101	7.15480916489599	7.53080920839282	6.81018707355133
+"RORC"	5.74553838892716	5.94372537873146	6.07545028478434	6.27542540045092	6.0647999214108	6.93811125598975	7.17758632339442	5.73694712835487	6.05331047750254	6.12720623953411	6.04479699044853	6.11466257638286	6.41540692018808	6.68658620267005	6.2645205447278	5.89658833205686	6.11466257638286	5.82043688708168	6.31834473183854	6.0268456023735	6.30102195210386
+"ROS1"	4.43365827381109	4.72557146365224	4.69982586718679	4.91100454531016	4.78249775507525	4.78733842740343	5.02911786542874	4.74478669180039	4.98684366343915	5.19828414137864	4.38195702000894	4.84826298467455	4.891431597517	4.43838612189462	4.65689423573197	4.81060390388499	5.18413438728834	4.74426511694742	4.90755058910459	5.19397413748781	5.05659647373523
+"RP1"	3.05207012503454	2.92882090164017	3.1003102388359	2.95138320316113	3.35286352504406	3.0969629081083	3.06607186783462	3.25291169012244	3.22908982343649	3.16881935341379	2.92333186646486	3.07521278402167	2.93133973291831	2.95002680087521	3.13588381931772	3.06607186783462	3.00611937735618	3.01756698371205	3.09765813423785	3.38857180351139	2.84737202204323
+"RP2"	4.42805712859989	3.91283872682588	3.46939354882837	3.72861566999639	3.445234575159	3.39146339149954	3.73779338159426	3.89122154038206	3.78346051183515	3.41056957440195	3.87649836367595	3.44032141416522	3.88829592592635	3.84746626312461	3.86528351457643	3.82563138166051	3.64186311196381	4.03280048800627	3.6815677900581	3.61165018818675	3.98036157683937
+"RP9"	7.43593930673173	7.38460356194016	7.68941910350624	7.44092624182788	7.61580161712499	7.87831289641506	7.31173302851957	7.63243991709782	7.48253169821405	7.23090679047598	7.61853298343905	7.37343057939751	7.62071249851482	7.53014525958708	7.61480243225417	7.32026479300897	7.15608807802346	7.64342529766557	7.340752335675	7.30578887449318	7.12356268749982
+"RPA1"	8.97970416375594	8.39054650883586	7.8967387818993	7.95912056554775	8.53998783521367	8.10978591440997	8.18336943340303	8.30427240499283	7.96554476215375	8.47386131813794	8.6704085325252	8.56208401431681	7.40233810909874	7.47128132450969	7.65936866124214	9.08608925871617	8.21242229510281	8.99323693751187	8.08045514586692	8.44614349097084	8.37295923914123
+"RPA2"	9.40321344879362	8.86263923917039	8.63219064541405	8.70405222446309	8.99693735503704	8.03714609476308	8.26577781189381	8.73117814024799	8.49165794171754	9.02325202467697	8.90422456326759	8.9338555579985	8.74579457704573	8.22597410177854	8.42188889574734	9.14069190360153	8.60101831102388	8.88270479528908	8.71154592291631	9.06812284774023	8.77764562928066
+"RPA3"	7.63425043570484	7.87329446543554	7.68937951328058	7.48614753990824	8.2299749709373	7.06050017654139	6.92703769702015	7.78665249847256	7.48946388061264	8.12119806471911	7.67213180399088	8.0470091808956	7.20889917723484	7.06391918960338	7.22543416774713	8.01965598415243	7.43542677261971	8.016664000489	7.44521333157794	8.18806145942554	7.91171282954141
+"RPA4"	4.00252110876613	4.34227119376949	4.90176169899046	4.49934359049415	4.34931160845952	4.22418977974962	4.54866165409242	4.34227119376949	4.40518932889783	4.17565358127906	3.90258404197351	4.28660567375189	4.20517275595722	4.51918947622553	4.56723689038006	4.04843573534598	4.45999123954989	4.23981124447399	4.61210973009179	4.79852371579288	4.13888059739332
+"RPAIN"	6.17147627872213	6.8711041805513	5.86231049683228	6.55865650096694	5.18859147740914	6.04981717946903	6.11367082491704	6.24925149490615	6.16906854487276	6.36100880584957	7.04763372176746	6.65160800045835	6.43361305755742	6.25376893308849	6.54010829038442	6.9592628203652	6.37305083508106	5.25378166882554	6.68503784340821	6.27258124745696	6.3422927543107
+"RPAP1"	8.04338628655228	7.6439361885326	7.92693228037878	7.89998906453832	8.01585385346763	8.07447198890232	7.98806289702756	7.88370929615258	7.91035818032352	7.90257092460258	7.87412797623796	7.80632548229264	7.78175055147882	8.04099258847365	7.80623389606773	8.01072881498684	7.92362340272338	8.015784077299	7.94816172586202	8.13165719066298	7.92511723775877
+"RPAP2"	7.54565588853191	7.46784945030827	7.43287249196616	7.74996332273779	7.53325515537314	7.88624604003041	7.09311277943303	7.37695651982512	7.95447490202393	7.58786802201582	7.54383520261902	7.59946006660295	7.74140175249169	7.6192569301346	7.89499112533925	7.35130880604695	7.59324339815411	7.31900302753905	7.53155791583119	7.67331101526775	7.53612984291102
+"RPAP3"	5.71272897637804	6.01496323692088	5.69738193347845	5.75173864656814	6.31122442091745	4.75670127629065	4.95561287002839	5.93234919533118	5.3973348872181	6.15023858165324	6.01757899488985	5.85393728842372	5.74738301056056	5.23593160760012	5.62647525896476	6.25781999288701	5.80342676767385	6.401066893178	5.79976601284619	6.14046048395407	6.26890267550676
+"RPAP3-DT"	6.36143589729553	6.4764254004571	6.29079601809376	6.51704975718861	6.29293406308508	6.29718367634744	6.5203410460626	6.45562402650744	6.49141898129628	6.46441431570192	6.41311775719087	6.40220405043551	6.28795074731363	6.38838630642914	6.26485773912681	6.62856147286926	6.46364979192039	6.28557080051207	6.40220405043551	5.9808334861431	6.59381921073121
+"RPE"	7.58343513144742	7.66847783961527	7.87362821159696	7.84227959382926	8.12074220340654	7.72175984346549	7.1100810326869	7.91383770007697	7.99922037541916	8.00260946986969	7.91889970006717	7.86746362717362	7.65779625401779	7.19982604255721	8.36553644190871	8.05802492307582	7.89413753134371	8.53825647939307	8.03764590032459	7.8354939176224	7.96408560320176
+"RPE65"	2.83578569298554	2.76086758094591	2.98577883663701	2.9295485498526	2.95216235960241	3.12901092762345	3.00781411726517	2.97347202469687	2.86399879975335	2.88364792885193	3.17152713190179	2.95230893690578	2.73332446918525	3.10267401037495	2.80521016993289	2.88345996132337	2.75129519655384	2.88812450494733	2.83733267037793	2.88812450494733	2.77249272946
+"RPF1"	8.95449108598589	8.45921687604583	8.39965145903193	8.44863069010231	8.75609359233217	8.42797238530851	8.5007730858661	8.78424867703954	8.71407931555135	8.63058176366614	8.51630791199242	8.55826188315585	8.46877370924536	8.25113569168875	8.82514998452185	8.72002605340152	8.29241647386567	8.85053197577537	8.74050006733451	8.79220832751531	8.72807458231135
+"RPF2"	7.83363529658495	7.5718942862343	8.11625197353154	7.53887016334181	8.23439764099428	7.75397390191338	7.3353523414862	8.02586862007205	7.83640619877858	8.00077017843551	7.78995880784505	7.94765624814394	7.41910882970235	7.30915245078599	7.8505630283599	7.97081332471326	7.71707539640563	8.03343191213519	7.77581108370207	8.19728360565867	7.87019387695407
+"RPGR"	7.05310917025016	5.51883949834056	5.4442263577086	5.85569650891166	5.75375787141729	6.54300641656877	5.64109421828684	6.10412679539237	5.42929205158553	5.73586417311183	5.58088714099892	5.60316933306999	5.66658272545962	5.98942641340034	5.53169528617513	5.06145420420238	5.58783720020982	5.76946937764446	5.50851687642348	5.51018345216818	5.62129441368955
+"RPGRIP1"	5.36082033345385	5.57704781480256	5.24692587980577	5.52272159164168	5.53084120853065	5.43966829047407	5.73971809950586	5.52012885173424	5.52575076162301	5.66020910412427	5.27165345483931	5.53089646172808	5.72797101872887	5.77999291343258	5.56784726225734	5.35826956006272	5.69429066686683	5.38881633398905	5.22813186567793	5.47899877031918	5.65508185408954
+"RPGRIP1L"	4.44224462136836	4.81420449302979	5.43346116724338	4.16089863856463	5.37756637786699	4.20949324484123	3.6335029177695	4.00936514052595	4.50869588045288	4.47451158412268	4.32608450433395	4.56593106733397	4.25908602292446	3.90037419242977	4.28837135750735	4.61284354163675	4.4126041289034	4.62856466780664	4.28645957013391	4.87598852855677	4.842100237076
+"RPH3A"	7.40458545312609	9.81843514259619	10.2171446516355	9.87276084940026	10.5541150216058	9.51966446995491	8.79517066239644	9.35943658962123	9.77982928577795	9.81507288736853	8.38819481123949	9.80185422050937	10.1869669551102	9.04015291789744	9.0403310341996	9.44644688239723	10.2949246010831	9.28259661035854	9.44414015642151	10.6837175784477	10.5013506197723
+"RPH3AL"	5.67577540214778	6.06707580253317	5.93016637654593	5.84527886226434	5.78960781603743	5.80761588171563	6.1270835679918	5.89050272337134	6.02436808147792	5.89786618409499	5.50811473262093	5.71773045421282	5.86454874366612	5.86454874366612	5.69978459735934	5.79149462081824	6.15761719880637	5.55164005273765	5.86626674570124	5.85253535536834	5.88060939089564
+"RPIA"	7.89983989608557	7.71244767420926	7.77191754432789	7.63892636765961	7.61899075545968	7.24300548667257	7.13894771624723	7.27929119687059	7.45786128579612	7.3183986311266	7.6749508972253	6.7876586164437	7.70938521000254	7.61790590327054	7.61592267765561	7.85303211405496	7.03362262502297	7.64046133096628	7.51190239355895	7.52975610493141	7.54436778745283
+"RPL10"	5.76487890144765	5.87412473836547	5.75308061043239	6.08966428358754	5.8744559613876	5.94538197229151	6.32275293998611	6.10172455145438	6.12109458681452	6.10615138171327	5.77061688972216	5.91561385000204	6.20005766094985	6.08813880052866	6.07854110773496	5.76857336767128	6.13618641677477	5.92285621375082	5.96611738600669	5.8584131941843	5.94325265359149
+"RPL10L"	4.98664309184939	4.77544409304367	4.65616422971829	4.45517328013119	4.75218330233918	4.76897136016164	4.97996265113183	4.85996641342023	4.86361138153057	4.68073848607533	4.68686643475943	4.70267241168837	4.82893327726796	4.90489224006321	4.83769978403398	5.0295765031601	4.78017934970903	4.78858123587782	4.74332232468143	4.78858123587782	4.83684625538575
+"RPL10P10"	4.07548299326289	4.30733708099994	4.09241866108067	4.37460488552945	4.43431790194101	4.24197068988767	4.53813667257922	4.16213151498938	4.24629047797851	4.22853117009584	4.16547427429933	4.17292670451455	4.00219007861702	4.40014656688825	4.48433614657971	4.61284354163675	4.24444949138134	4.1428196299072	4.31931466026337	4.33844436933875	4.47784719044896
+"RPL10P2"	8.82792375550235	8.73052336732417	8.30446522570204	8.33117673942469	8.53378132797978	8.4053016999272	8.56751685951844	8.64470705395689	8.5652147428992	8.44769533753832	9.00537438077281	8.62998187470711	8.48217724961018	8.41239474435211	8.63509772046451	9.00334798098723	8.60647191814288	8.67396158743138	8.65187686316548	8.49797099951121	8.68550579928025
+"RPL11"	11.9263175570014	11.5607782703008	11.2564262088353	11.4090878858654	11.3600618239558	11.3639555565474	11.7767744329554	11.706846012585	11.2816950812302	11.4774451744614	11.7743287618319	11.4926993018077	11.3083816933531	11.565896956365	11.6233074404377	11.6912321597814	11.3767244224968	11.6156263639759	11.716385111342	11.5706240950986	11.5484483400192
+"RPL12P11"	5.06566736775929	5.26404518637356	5.18701127048147	5.33930922054818	5.1042095970633	5.13026962901478	5.10018536801878	5.13782831385824	5.19973652481879	5.14744039145142	5.12672160320751	5.17766040852572	5.02227822042144	5.20447348623176	5.25947207362137	5.10564806263968	5.15248885185881	5.12572017040821	5.16872406869104	5.12672160320751	5.29771875512296
+"RPL13"	7.39588705316682	6.71161608021116	7.3135628020649	7.20334161789764	7.07885956621897	7.24979118163081	7.05416322610313	7.25073327707141	7.2546165386925	6.81876725964726	7.165757035025	6.63283794354304	7.04505801415085	7.06244690278831	7.19739384780881	7.2953277960045	6.96050916069191	7.58709809862486	6.63499276027075	7.09257012678747	7.17433675230618
+"RPL13AP17"	6.70117201323855	6.62713038182013	6.239262315391	6.73325584954804	6.66328580149855	6.41805537612706	6.71955404869417	6.55687355857933	6.61323996813139	6.50245849485062	6.44869472752865	6.51766320533498	6.49558131766095	6.711900011069	6.56203726782143	6.63082501899379	6.70238120293133	6.40380021455308	6.72956134357076	6.5701539610802	6.48210873221242
+"RPL13P5"	7.18781204962658	6.64961531677207	6.80319798998963	6.86515276894316	7.14556468285248	7.15082427159563	7.17479504986616	7.14096868912137	7.17889917980972	7.29860963692309	7.09857077793357	6.64802204583407	7.02706178141358	7.25857663967738	7.28734890749494	6.63360313764443	6.93607351318121	6.92698623287976	6.76826527863109	6.95235713684364	7.06457795546726
+"RPL14"	8.27779781950052	8.3301415660168	8.4841383833895	8.75695053729838	8.88455685834078	8.57817054560217	8.3269897199578	8.42569116632044	8.92643603714413	8.75291420404154	8.51061551878412	8.39683480400424	9.04622153130929	8.70218741068474	8.80403040135528	8.36064756698629	8.58245107337548	8.40250656263182	8.56947660974857	8.34505083534198	8.61350507019099
+"RPL15"	6.91514465753616	7.01642863043654	7.53109277673838	7.33170788645987	7.50728544884183	7.32832068599875	6.61311065575569	7.35088727831804	7.60221564564059	7.20346614286036	6.99785835321707	7.39252429987854	7.55170336856275	7.2055610354402	7.60290958476785	6.93326495421176	7.25564839614161	7.33084935487454	7.28490663102285	7.42692279685071	7.07044584600383
+"RPL15P22"	6.67923105339378	6.64150535375367	6.35137624986522	6.87912008715464	6.83728523095681	6.21757212590963	6.89769162818954	6.8740126157804	7.00269027704192	6.70655314594295	6.80067095148751	6.81110916462199	6.87337288836361	6.70448234812973	7.0245478816755	7.04368011286608	6.8644626647055	6.80449158359946	6.67641346236636	6.66928444199705	6.84159671242629
+"RPL18"	11.5441040427025	11.2021294763479	11.2347692833134	11.1862355020335	11.1717218623515	11.3841921883495	11.5113013941268	11.444051586872	11.2575367019748	11.1435360889154	11.3866627988492	11.2430203063961	11.0632677276416	11.208260715825	11.4863951909277	11.268462032464	11.1005854821624	11.3448938055931	11.476073078705	11.1593401143053	11.1610157320433
+"RPL18AP16"	6.25292986937019	6.10720940664587	6.11666082906687	6.02007240084531	6.02945758828258	6.26558951314881	6.85901524632379	6.36559433289483	6.3011870896813	6.10442391628685	6.41187916503286	6.17608713591717	6.3086926829315	6.45982594508026	6.48650839967885	6.25975585486541	6.12507714715104	6.18094050911282	6.337750367662	6.37454999200983	6.28306889218029
+"RPL19"	12.4111809694533	12.1938989022697	12.0960803705296	12.103820577318	12.1657011960094	12.2341446869761	12.3338427536855	12.2987322035334	12.0483483997694	12.2245503030289	12.4034750362501	12.2453712628207	12.0973059886312	12.2264235415971	12.183902768125	12.4946242388004	12.071100877987	12.496938150348	12.4155083957836	12.2414129438969	12.2522448447543
+"RPL21P2"	6.04936532834426	5.84542992483688	6.2832311192935	6.20116619240387	6.11367082491704	5.99684657179506	6.22841065227692	6.01121173490874	6.43581257606447	6.04756900083396	5.68516135369592	6.10258146961787	6.21084705550008	6.04669200000826	6.04566898624723	6.27985451212301	6.10258146961787	5.98271258083265	6.24282049592993	6.03425113064924	6.26954436984741
+"RPL21P64"	3.28881978606701	3.24928250981325	3.25314555790211	3.3625266072219	3.28881978606701	3.25873915338069	3.5178667820503	3.40500999740859	3.23474708044172	3.19310938720422	3.361597823042	3.39127522365546	3.28881978606701	3.28881978606701	3.48349546131491	3.25328489029039	3.09758027692415	3.32652846681034	3.25492531268313	3.37202337103421	3.27183904425501
+"RPL21P68"	3.86186102536886	3.61530889523057	3.69288951979084	3.73742483072616	3.58510779542857	3.5040063777083	3.77247403048313	3.6860315603256	3.50724856280488	3.47315518579144	3.81573997852699	3.67127768130552	3.81775967862564	3.71031846596918	4.15982529115545	3.5242360231033	3.98181400812738	3.61458416798855	4.03551566273315	3.27420848537286	3.71031846596918
+"RPL21P94"	3.97586223847052	3.98410635834558	4.60097713062366	4.26295180143635	4.03979539245002	4.26788085341485	3.96888777885944	4.0878762793319	4.00663211688627	3.84370190951904	3.92007392019149	3.96033550476873	4.39893437511516	4.00663211688627	4.00663211688627	3.98578018273849	4.09592776581488	4.06170267376246	3.91209366852229	3.94759766676295	3.80939048848911
+"RPL22"	10.4791972916371	10.3684760029686	10.5738680665224	10.2847055359443	10.6957479026219	9.98856415128137	10.0561252664113	10.4046250119023	10.617028391661	10.4419414574261	10.6264966516209	10.6327411606248	10.004171892824	10.1373889326545	10.2331746868025	10.7548358086728	10.3050101046206	10.5976083298191	10.4122189608349	10.3722807770534	10.4257381214452
+"RPL22L1"	7.21080337921188	7.25083875636223	7.18877502000583	7.03571609118692	6.80978600788001	7.13081736787554	6.36750344721789	7.19364430745277	7.19364430745277	7.30436209173739	7.43108942323489	7.31262670575377	7.02422224493726	6.81119484568877	7.23383130207882	7.19364430745277	6.81530555585596	7.33938721261313	7.17996994464397	7.36455090176406	7.23622615071964
+"RPL22P22"	7.17672393958378	7.2734880969794	7.21700941029996	7.22774069164646	7.1841784992932	7.2153042259342	7.58268203796735	7.29208805108833	7.26838402202103	7.34659107625324	7.34013648769752	7.2734880969794	7.38544950920343	7.46108790061398	7.32455708986376	7.42923003798402	7.21111613333641	7.15560297448836	7.50876102605301	7.36043207114367	7.17392344271581
+"RPL23"	5.27078475882974	5.55570358220455	5.47689524176883	5.28794523159656	5.24713633323289	5.37845714897573	5.07117975904108	5.29397306593711	4.8195653088778	5.22881527915291	5.35834682949512	5.22480535455177	5.34664268521412	5.12907426291606	5.2401949610888	5.14396436582969	5.0308658164773	5.22480535455177	5.03219240279435	5.0335251549749	5.16983630616557
+"RPL23AP22"	3.60237750506497	3.92159306605681	3.78170487025066	3.77313981657563	3.68886683250355	4.02385098894243	3.89055246121693	4.03285314460709	3.89480441783693	3.75861453689271	3.5249659638348	3.61840265555114	3.91080669580559	4.31296375371436	4.08760134636187	3.78134327932919	3.76634816992434	3.67510820168322	3.6636340011458	3.88446740887436	3.74525238902993
+"RPL23AP49"	4.09848382142236	4.22418977974962	4.18430737878781	4.31651559991329	4.21196402630507	4.86751162932615	4.62866977865726	4.35514249903198	4.36100899891714	4.37788051233069	3.97100593238604	4.50027435686551	4.41175328808744	4.60420076800865	4.12673837538241	4.10625316496961	4.22838136429499	4.22167083428434	4.46966163738648	4.50053687319869	4.50834361291153
+"RPL26L1-AS1"	4.03183145325323	4.00732765070189	4.08720832183201	4.62318734497341	4.253592738339	4.11342147085155	4.06797214289668	4.03370460317926	3.54935921775844	3.71992647085866	3.73115556608128	4.11342147085155	4.14730512021	3.99001715664554	4.12717817827688	4.10930540534778	3.94425186308379	3.85830750934724	3.80990843049713	4.14698414796005	4.08720832183201
+"RPL27"	12.3171941481944	12.0548324665399	12.2769431467345	12.2470567995527	12.2506192787437	12.1812133286054	12.5533810582077	12.3550219506327	12.2716785755735	12.1793426026378	12.1270776350121	12.1304047073623	12.276066415722	12.3690364755087	12.42342440837	12.1297400103711	12.0798901799053	12.2220779540242	12.4646824859628	12.1923216561719	12.2502584377015
+"RPL27A"	5.30440876711359	5.05608195959233	6.59458097954499	5.69125968455958	6.4096366948265	6.75179872933894	4.99860603261863	6.55099245354562	6.43919499652982	6.51760943435975	5.4606152014472	6.07903469746702	5.86852717897926	6.21004645190446	6.64423977088231	5.19775964507427	5.48188569633473	5.45195032548665	5.50775797863061	5.51297764678728	5.47803554425477
+"RPL27AP"	5.2926149186149	4.96057791416859	5.32766914237678	5.29274730601974	5.04843878420578	5.69167058612331	5.70491146600838	5.25190318024524	5.349919994867	4.9471965383831	5.25190318024524	5.17867381594988	5.39576317200021	5.43300576023898	5.47238404453623	5.04258548959016	5.16518225103589	5.01545720919301	5.30701471393139	5.21483311981178	5.24187226311029
+"RPL28"	12.160858060285	11.8184333609839	11.7501735637847	11.5904430504907	11.6277861409433	11.6417106001908	11.6863468709057	11.8809705882269	11.6388770746021	11.5409428223115	12.0764653158686	11.8713270716616	11.4896567714738	11.3932513345888	11.7217833470157	12.0133414260542	11.4819023554082	11.9608488502337	11.8202892224681	11.7822389923052	11.7054049919307
+"RPL29P1"	3.65326565401162	3.37529893542131	3.81031446999144	3.60683511117734	3.44055229876039	3.65176587523875	3.70950371705058	3.50912515029496	3.73564492968451	3.60683511117734	3.69237820798559	3.60683511117734	3.72183733086598	3.64630201130607	3.5252018234451	3.51106413496566	3.52900939588578	3.6807941411483	3.567818036146	3.59881431019851	3.3404377108901
+"RPL29P17"	5.4246959429972	5.41660653171409	5.41660653171409	5.32692006831047	5.36318876231312	5.3108627867657	5.68432627207995	5.33118450690069	5.64423486612714	5.24319339754033	5.33907709589161	5.26775953276404	5.69076698622427	5.59903856692973	5.57975215064891	5.32650701040887	5.36082474871603	5.41660653171409	5.68273177674332	5.39990118121282	5.40699139397607
+"RPL29P5"	8.67047986076856	8.40945624626884	8.46248525971613	8.45753193201182	8.40385952510113	8.20797380870209	8.78661749076377	8.61672968040073	8.52980835344585	8.3254985048277	8.60351621283904	8.50361539149174	8.33831975128511	8.38043600610571	8.74432661533664	8.31040305451075	8.31545621827308	8.48566368355631	8.78968195673153	8.5233197232945	8.37514182675934
+"RPL29P7"	5.24668686860957	5.08096699277752	5.11362111152704	5.0673394624433	5.01641697356343	5.26525687085939	5.23766869516117	5.11362111152704	5.03742128979316	4.84384521330543	5.31489275852524	5.11362111152704	5.1703764459083	5.11362111152704	5.27107937938946	5.26175145164887	5.11362111152704	4.90694671826834	5.12633858544256	4.89111274124735	5.12057429431316
+"RPL3"	11.9467308300829	11.6886208570761	11.5501221253553	11.3721203816351	11.8594641872998	11.6622476179608	11.7823826797004	11.792191937657	11.6598606189814	11.8318148386511	11.9103205270211	11.8999693398161	11.2635806562842	11.5089292785629	11.5234574600151	11.7380754108261	11.6635485366291	11.8156864684691	11.8118358380654	11.940146335181	11.8313160359956
+"RPL30"	12.2134439285189	11.944208854083	11.8140475653853	11.9519600699589	11.8126432539453	11.8663390193046	12.3428595342862	12.1341665905055	11.9156805575138	11.7205563005653	12.211753443934	11.8841653103069	11.8473142942425	12.0800898822214	12.0295112740496	12.159252278435	11.7851754805292	12.2687766494738	12.1868369826705	11.8979600237664	11.8805982138455
+"RPL31"	8.89070662218846	8.30789424086059	8.28789562155877	8.28652769016284	8.45436663724453	7.64739928678915	7.88427501537346	8.10729903525866	8.88251639589009	7.93557502359879	8.02832034649326	7.86487852930579	8.28207138371539	7.95699931849038	8.75327044027149	8.02730505171521	8.95069519081861	8.23911011503914	8.09931736036937	7.76196561154448	8.0655149833322
+"RPL31P46"	7.04029151883567	4.71865288285855	5.54246566088422	6.3484177062266	5.31000835203192	6.50713358601198	6.16625421708886	5.04177868950239	5.86716768875674	5.04962847724795	5.77127192872887	4.96958616676722	5.69892819021975	6.42229659951376	6.26956507839894	5.60489071366643	5.42868725966989	6.0093219352844	5.39672548713935	4.69207622623824	5.66438759623095
+"RPL34"	12.5650051694895	12.4586812131974	12.486804316487	12.6113944401306	12.5185258710376	12.6645257074303	12.6773803119581	12.5046688403042	12.674037149644	12.5352305688246	12.5674053028079	12.5193101312993	12.5896191417496	12.6680185020176	12.6323609677452	12.5678210573757	12.530686121828	12.6502422831557	12.7185986278965	12.4027035195031	12.5483240349318
+"RPL34-DT"	3.43510595665796	3.09052918480899	3.06530937546288	3.33020756756202	3.26961197973227	3.28392570296988	3.48168573578813	3.4101079766007	3.2731710039197	3.37241767584159	3.18852188665744	3.33845617202225	3.23118531549368	3.63734615191803	3.52269289152014	3.16301976059822	3.58236105841414	3.02788170825827	3.29001694945521	3.14510916252195	3.29001694945521
+"RPL35"	11.7084490869729	11.3858673135818	11.557346422055	11.2143504261532	11.4578751215189	11.4057245757471	11.8885934376726	11.6055855494948	11.3767532033406	11.209707484835	11.3078277126449	11.3289721445755	11.21240192486	11.5750644712604	11.579708432865	11.4371869407397	11.1864157786821	11.5174085780802	11.4259348594016	11.4344866365688	11.3465350094659
+"RPL35A"	6.58791393499304	6.08853866055886	6.66030854326413	6.54369917950155	6.63774856055973	5.93900793816728	6.66701890873118	6.6902554719658	6.57478421994439	6.48199457666455	6.28570175092068	6.41892374779908	6.02211408828005	6.34575123769471	6.72142943320958	6.62608551198332	6.52541799492113	6.73565560437151	6.70974822661883	6.56981705626304	6.68464222009463
+"RPL35P8"	6.18057008698094	6.25293333830736	6.14155837422663	6.43410456076409	6.4381682514224	6.09408462825881	6.43170929931761	6.13782231493669	6.29759433000076	6.10929473186256	6.24171315803831	6.0580826474935	6.45932991458052	6.30848996302913	6.51847458193238	6.53549068573403	6.30384662082992	6.21966310237876	6.18119786292152	6.02915714478595	6.27237090597107
+"RPL36"	10.0927438051881	9.70334181577545	10.1176533466976	9.81581173810551	9.92983103571639	10.0618554446594	10.2844808817727	10.1290362167267	9.89771067463606	9.82218532548782	9.72545775710006	9.82502186270438	9.90897045057916	9.88923694419323	10.1139080516398	9.69330822057167	9.67329525785097	10.0397760740401	9.98756005025268	9.90950928352763	9.71451024429987
+"RPL36AL"	9.69679119836762	9.27378197789972	9.48563420304061	9.25185646545768	9.41970744306994	9.00855527701754	9.50541868792565	9.50034940388649	9.54344376631358	9.50970179435398	9.40766328616653	9.30102016585407	8.97714807096175	9.21470455670603	9.41888245759423	9.41694353619783	9.40127017004624	9.52610308049794	9.72322071116749	9.53799214836919	9.41888245759423
+"RPL36AP52"	9.23052028093424	8.97882846759901	9.00585699359128	9.01534761649222	9.01083283698881	8.68989095726425	9.46549001088101	9.01862112883907	9.12119574017206	8.90633637469313	9.11968659277533	9.06326185980696	9.0695151185228	9.08044294590893	9.11028242545098	8.82401084693004	8.99287306751261	9.10148590719565	9.39590324827691	8.82082688560597	9.04325092337483
+"RPL37"	8.95449108598589	8.58306353417816	9.3651901439945	8.47266733213037	9.03435613026718	8.44912410725758	8.6988085715466	8.84458838137819	8.66686548142653	8.63637005947635	8.81526914650598	8.72036391709672	8.18096926887082	8.53785563993308	8.79402653234511	8.87120337635739	8.76427801157841	8.85427427888331	8.92265129505864	8.57843980370742	8.83852613653692
+"RPL37A"	5.17338827259991	5.14812918123912	5.64067700879794	4.91037690681766	5.19532159350801	5.41667634183189	4.8616276925658	5.32287376357208	4.74901918853003	4.97382372135447	5.41275295391566	5.27941117347017	4.95194926209586	5.16752284516428	5.10853233194138	5.79273647879432	5.02262350775194	5.86485463426193	4.96429183057343	5.31129828144713	4.97213711031228
+"RPL38"	12.2761677359539	12.4032119760848	12.3365727839968	12.3907080160948	12.4000169818275	12.4703947913308	12.6883639875361	12.407581486913	12.4072360258145	12.338698686043	12.3185664146823	12.3689887400732	12.3412785395233	12.5281817038465	12.3907080160948	12.3907080160948	12.3907080160948	12.3604229840073	12.5392468582089	12.1737741287813	12.4255119763691
+"RPL39L"	5.85109801385536	5.7306925232958	5.71817885176663	5.67855961462717	6.15870726632665	5.84680436663177	6.26780063978684	5.92101599277616	5.89077935829993	5.9721444103321	5.74988123258855	6.03941758520597	5.6524398403109	5.58547904316507	5.69367562752531	5.75568584640136	5.84680436663177	5.76447047754122	5.93436074836012	5.88736880411015	5.59250756683357
+"RPL39P16"	3.74547430307602	4.19345835816785	4.03979539245002	4.39012676651909	4.13905581351049	4.03979539245002	4.03979539245002	4.01001310245695	4.13458427334644	4.03761157564403	3.91806230653541	4.07406079325491	4.03979539245002	3.99343069827915	4.17301105896645	3.94196622926995	3.9380768065908	4.24033533765474	3.83658808028274	3.96905178107842	4.30588576373376
+"RPL4"	12.4574738269466	12.1181567730824	12.2181483262236	12.0499870036706	12.2608793384852	12.2218939610656	12.2343813473143	12.3781663844544	12.2622851996503	12.2026097462605	12.2795951837017	12.2744475956717	11.9099042257306	11.9438078553765	12.0839379900479	12.0806371785761	12.1977132435522	12.2309873159296	12.3678254641144	12.1348960956697	12.2269620752218
+"RPL5"	11.4993971883707	11.2447900594995	10.9179803897297	11.2406776621128	11.3914140727289	11.1909744323792	11.4085076784952	11.3408753764397	11.3374431590586	11.4931079538047	11.6058862311282	11.4670010586067	11.1492519058284	11.2754428426986	11.3875829176817	11.3863741037815	11.2680947741881	11.3987511793305	11.7164342431182	11.3848938799298	11.4338877831234
+"RPL6P17"	5.8867524215519	5.72006506672691	5.72939054928591	5.99117706825599	5.77127192872887	5.76383511691263	6.04458313328717	5.93480836707745	5.97807508877637	6.03455233995879	5.66952938691899	5.96545253002726	6.1381746527444	6.08605688675571	5.79028042399889	5.87846754630201	5.98475059171222	5.59443412436364	5.95935655223147	5.92486198652735	5.9288341534872
+"RPL7"	4.87204523177077	4.91037201468568	5.24722538479708	5.06887487411619	4.88052459507353	5.1274029212957	4.76403815005496	5.02928036383799	4.9139865197943	4.99300274003418	4.98860877315967	5.03512975663503	5.12330871111658	5.41098872796053	4.8773868879436	4.76311751375554	5.25605020830596	4.72633690521053	5.1381180075662	5.09926189662568	4.83851391392687
+"RPL7AP10"	7.20502261202443	7.12780468990245	7.2284218567107	7.33559674002338	6.98945216755899	7.06922773444854	7.35473045256143	7.0069807204494	7.61933787501894	7.43745621972055	7.20971421402951	7.37864616484489	7.43745621972055	7.29417769633197	7.58900821103093	7.35995153561837	7.27065972214409	6.97291343372519	7.51270846888344	7.16106179619049	7.29942669718275
+"RPL7AP12"	7.1768784364314	7.14644784356677	7.15674497394651	7.3632360926625	7.14594398063344	7.03838766863492	7.22049062987892	7.21299585076838	7.18107916845166	7.16998627866397	7.0333011942749	7.18840361378725	7.55291705128897	7.0779050251005	7.32403008503252	7.05431537897466	7.16998627866397	7.01442099768601	7.4094952157491	7.0329921752421	7.26397156917995
+"RPL7AP29"	5.41347297577478	5.61802030103924	5.80619800393685	5.95868268564204	5.62043247960369	6.13651554334903	6.34938167558252	5.60417356986168	5.97219970522572	5.97191107339506	5.50816853495466	5.89692870364855	6.0330706292708	6.01280992661004	5.84171885097941	5.62992093534124	5.92760124464519	5.60959564213904	6.04984775971106	5.84171885097941	5.98405101504484
+"RPL7AP36"	9.7763118335349	9.67906786687428	9.47064312221291	9.70803670894423	9.59165893458921	9.45871208679152	9.74540449671353	9.78414472274321	9.91982772617215	9.78176002494339	9.70912050328422	9.83026945308037	9.58140524487058	9.68790220011005	9.93615792616998	9.79189126808301	9.74328025338558	9.49770102981124	9.88677688788679	9.72011860922767	9.9782960699782
+"RPL7AP71"	5.1997432474802	5.23736490267347	5.23736490267347	5.43130761008415	5.28436435108221	5.21852300896543	5.29652881406592	5.0421257127541	5.24070665528311	5.23736490267347	5.08961543800521	5.21685569156942	5.27465544279148	5.34639791761442	5.18153207070133	5.31796807486028	5.26802841056175	5.33235626381313	5.37284939706204	5.32414039004564	5.16623412186979
+"RPL7AP9"	6.51263806175343	6.72822830763642	6.65217687859388	6.9487186293332	6.63531815152112	6.92674813013891	6.82675398631064	6.73358110417384	6.83315033924313	6.71083599764526	6.72438760655363	6.84012851357381	7.2245255525515	7.0621749140855	6.96889899918394	6.54905600460165	6.97010147455318	6.5933322860535	7.0384412440802	6.81172083157	7.06410293610853
+"RPL7L1"	3.69950347727012	3.59183945149656	3.69950347727012	3.57478525676788	3.60683639602257	4.2233492807393	4.13806649809367	3.5985855354401	3.72637390538233	3.62219310461221	3.70034397628044	3.69950347727012	3.46198683511495	3.77714969817734	3.75465043157264	3.69950347727012	3.5754201252426	3.7047382311276	3.70284522987976	3.76076149671121	3.80993621984565
+"RPL7P25"	3.07718468404535	3.01281455107283	3.05736796079835	2.96957267150353	2.87713650430939	3.06627093778207	3.09071398468931	2.75744186060097	3.18143620360434	2.94121623794296	2.97960355077587	3.01449908281559	3.20939819906137	3.12906066975581	3.30474233508509	2.72823077130136	2.96733444904479	2.98761527559711	2.96649871567247	3.00495294466341	3.10912117164158
+"RPL7P27"	3.2300437312061	3.49214929465112	3.47101388955933	3.62295440370966	3.4845507107753	3.36127877365274	3.39202308770848	3.43561657898329	3.46924752939726	3.40439736991412	3.40278889888265	3.37874632123667	3.43622431134988	3.56202330196385	3.6743189437266	3.43561657898329	3.3386543519997	3.35167856005043	3.57170880573844	3.3079270239444	3.43561657898329
+"RPL7P52"	8.75022545627425	8.60195608787532	8.58249740116342	8.78438489753157	8.71801037567413	8.70435054119931	8.79056614588929	8.80112764254944	8.95737900660636	8.7797804628174	8.68542753273004	8.72400632699402	8.91828921907985	8.6260168850763	8.69747791863966	8.83801841020488	8.68835496955313	8.71256815373502	8.83836236952344	8.73941797135214	8.74378477955556
+"RPLP0P1"	5.19992865152549	5.5800631319418	5.34004000586966	5.76140720208571	5.54934234639898	5.46968833261176	5.75234017478363	5.4973866658877	5.62929742049353	5.38630060270381	5.34561561573346	5.59424376481388	5.84062583460323	6.11762261991062	5.58490458178375	5.52470983929517	5.60840178500733	5.24369182584289	5.53294215327753	5.30147691065296	5.5941733389914
+"RPLP2"	11.703022288838	11.2540598922928	11.4279606466974	11.3540003197555	11.0500768081368	11.5606299972796	11.7294062115787	11.5151161580737	11.4192075277715	11.3097041051362	11.7628195713534	11.4192075277715	11.0706202184387	11.4146544445284	11.5196626571899	11.3682752303699	11.285586555188	11.5301789230207	11.5987300905984	11.3795579511812	11.4192075277715
+"RPLP2P1"	4.48043716222173	4.30101125809699	4.51565793638749	4.85645307656642	4.46552839248008	4.70904773235437	4.75874563537651	4.57284460890686	4.74756795281417	4.57850465472713	4.55837822511465	4.69748107374836	4.86482773999043	4.62142070330257	4.78655561178711	4.49164768998085	4.77542795319408	4.50027435686551	4.77331441495216	4.42793756401697	4.83851391392687
+"RPN1"	8.72219803579689	8.5497951127464	8.72760580055284	8.54464853647024	8.62446033492748	8.57809101319001	8.22055020283531	8.44708629270958	8.57809101319001	8.72481235108464	8.69930447775902	8.61002752357648	8.43458537668183	8.07189401553375	8.3555981405467	8.99709080227369	8.51578812936105	8.92321880712623	8.50047991377417	8.71178518760763	8.4639842330409
+"RPP14"	5.30319321299559	5.58546952533971	5.38199220835883	5.41136251402836	5.73101670526248	4.96377083419832	5.93636014619307	5.07149746871057	5.78937220444313	5.41136251402836	5.07873588822389	5.0438213845809	5.69826320054824	5.53321876691562	5.58546952533971	5.26458160326608	5.03920179233964	5.81817564185366	5.3595936905415	5.36872010412919	5.15054022398199
+"RPP25"	6.320340628353	6.44418252150623	7.04316786582317	6.79696877046717	6.76244604682272	6.87930606753033	6.64806030103261	5.69082968452424	6.4954335105385	7.01018910778321	6.80067095148751	6.82042176619759	6.80553876421179	6.76768757329436	6.79565457967646	7.17063879031846	6.58535660865182	7.20784825655759	6.79696877046717	7.35052555610667	7.04310034123585
+"RPP25L"	8.79965863441172	8.71465222568273	8.86657095802207	8.77887946430964	8.73598569720957	8.71096011226874	8.76117572989752	8.4755189443431	8.56877296326454	8.75672133207643	8.50033475304055	8.61799199487469	8.66558354024493	8.72363803504876	8.87820839585305	8.60561468039197	8.43051027384925	8.69201404701742	8.73480826937339	8.93915406964896	8.64365123708448
+"RPP30"	4.78057709465034	5.39576317200021	5.97787483500851	5.35058614870311	5.94258919427077	4.82255418563632	4.55488133338476	4.7636725030146	5.49296829125672	5.33839378073875	5.36533332110414	5.24809570793143	5.19513010062204	4.90141716350457	5.34879895524768	5.20670647251619	4.91234587234985	5.49922665771209	5.37756263435625	5.59237897119067	5.15320502679333
+"RPP38"	7.14862975915799	7.19925325102323	7.03115749160475	6.99752945433896	7.36470934363955	6.94222770948674	7.13920868261417	6.97867049796501	7.20970875546517	7.4344796304348	7.08193592044273	6.75191594880614	6.85983259442481	7.09346663614047	6.65802835547273	7.27633140495519	6.81389777279533	7.62523167282733	6.88228804153398	7.22425115295356	6.91285868533394
+"RPP40"	6.61088895057599	6.83603777385223	7.20630850345914	6.75444980781064	7.59600341786464	6.61187549546691	6.01948120540307	6.64906738418539	6.87877095323005	7.4024655252652	6.90936528298441	7.06564228798902	6.8378819608903	6.26078081368894	6.89042693649969	6.88775597594577	6.42223664359578	7.30861139552726	6.8378819608903	7.6080566987705	7.22631373328762
+"RPRD1A"	6.38257691374792	6.40220405043551	5.3675367039526	6.13254785791645	6.42791972978779	5.60070571314191	5.91717284237757	6.5387264018707	6.03363282332902	6.66652375374146	6.65650856139316	6.66709243194691	6.11394221344803	5.64434644983842	5.8050325763771	6.60535326841577	6.42447658871275	6.5944450363503	6.5671737100721	6.4992387561033	6.82511230770062
+"RPRD1B"	7.55986541339143	7.5209393525514	7.85477841150962	7.17175049059429	7.66156440501424	7.21733909071243	7.14484681441521	7.44982712936172	7.03012941374882	7.28373832406278	7.71503024155209	7.39563754127559	6.76453863324145	6.91292013508686	7.24754829710137	7.63637720262745	7.25929055749357	7.79052398456469	7.3814864460318	7.58465558257962	7.21922774144341
+"RPRD2"	4.64301356171464	4.91221012725707	4.81857159179971	4.76223556704596	5.338374704352	4.81857159179971	4.54967870748383	4.5705671160616	4.81857159179971	4.99395409978518	4.86644613869585	5.00046349733683	4.4664264568287	4.81456166719857	4.56781533417851	5.12557868633515	4.79788485264462	5.55017097279381	4.61696765660096	5.07507996710762	4.49008176145483
+"RPRM"	8.2380708984672	8.67246733355163	8.45942415212443	8.13340594630859	8.32028529899484	9.9115781616401	8.19668593490485	8.4802444163121	8.1243797967242	8.40333490894816	8.15587411533058	9.0278958907469	8.05670160519341	8.41069326029194	8.53280026762558	7.80537193826844	8.09626855008294	8.04901228668502	8.21714155381452	8.088757564989	7.99322463252424
+"RPRML"	5.87807722946365	6.58147214565638	7.41882120315567	6.85778020307116	7.3124814736268	7.02735077999193	6.34158554032835	6.72464198823231	7.01424415550729	6.99440099563867	6.0851798398567	7.06002960061818	6.8523543971685	6.71258626572283	6.49218239739525	5.97254238108849	6.72400423540935	6.68994673391765	6.61853994719751	7.01391292950782	6.54085965611299
+"RPS10P2"	5.97763165627892	6.00990179220662	6.45175115037118	6.0938615752726	6.02071111745711	6.32437932679458	5.74860888278648	6.18147351023272	6.13040950676197	5.66756532591943	5.79963574742652	6.07547050049796	6.14138351455	5.79960709259213	6.28975970502312	5.98606424944122	6.09660406421372	6.02931467718058	5.97251087709669	5.61575198805213	5.83850126353689
+"RPS10P5"	8.38947861593364	8.18349850277214	8.30050328377988	8.11205888688981	8.28384236255325	8.38187836572354	8.67851508369441	8.30953450355941	8.38662670252678	8.38516978279212	8.42562819355756	8.23774386990947	8.34307546413518	8.41767527529141	8.41671077365749	8.47816595458095	8.23571571872224	8.25685939256628	8.5485214722001	8.29240305654724	8.50912134087735
+"RPS10P7"	6.25248194371212	6.08167601245265	5.25873706501031	6.30011666324899	5.30570662488833	5.60629340830877	5.89944727919915	5.7246879179569	5.86219836836549	5.52709528988894	6.30207616434008	5.80664118908416	5.85516548177933	6.07516682307027	6.13955254752097	6.67300462851166	5.88569631806346	5.84365366468768	6.25598631904511	5.75039947885649	5.43604477956549
+"RPS11"	12.547573405667	12.3142692949854	12.313577694372	12.2494555584109	12.2730202772934	12.3968494703285	12.5915346702575	12.4727722243142	12.2926063691992	12.2617477848629	12.2985063853508	12.2185743731605	12.1209110927961	12.3806706467341	12.4850095120019	12.3175195451563	12.1899551843088	12.3262246098904	12.4723169039683	12.1799524504173	12.2952085238903
+"RPS11P1"	5.59699545007391	5.7199458323018	5.71737767446347	6.03423199261157	5.87636578557279	5.73715070605808	5.9178102050035	5.51113159692351	6.09295393873574	5.77620336088466	5.83824700597844	5.83729120903761	6.11139500755946	6.27280855200432	6.01464231773726	5.93204767593458	6.0522917792763	5.68713270186261	5.93980974298444	5.59470436856873	5.98737603366594
+"RPS14"	3.86881145151555	3.9050271619839	4.21412747023107	3.83869643758186	4.05314910333945	3.89912619837606	4.46632956152388	3.98196437514417	3.61890894009855	4.17076628675512	3.91272478582379	3.90708833018184	3.9659295745496	4.62695812295795	3.92714227127142	3.98510223015245	4.04364418286929	4.06680998447426	3.93195612301301	4.05457799096042	3.94020374599451
+"RPS15A"	8.44466157000769	8.11163187686339	8.46428715272389	8.51083544524766	8.47064372838992	8.34929720689939	8.89058236959328	8.53829241836914	8.82353836427038	8.00273818216144	8.04499340077389	8.19980537213856	8.27205054127344	8.48595144031573	8.7701266930369	7.97390391163306	8.39116643259628	8.39160657827706	8.49891091378769	8.39043510443059	8.08628937459169
+"RPS16"	11.6563169485798	11.0774914156985	11.0573924671631	11.1584402005663	11.1877214498238	11.3198063253815	11.9753408293834	11.4651033785712	11.2666557351531	10.9788998588456	11.3273246786987	11.084970589978	11.1027090573397	11.4050487663055	11.5233517203021	11.3304734395839	11.0706131297555	11.6232746547759	11.4526211180638	11.1953550321771	11.1270091139523
+"RPS17P5"	7.92005231753567	8.07366862986892	7.76339928781244	8.04962258588187	7.92393649800992	7.58650442080461	8.27215840527206	8.03333852634822	8.19947772009968	7.89887660864559	8.21857083163644	7.8852979016625	8.16218232354302	8.07606874946433	8.29133348490688	7.85139750443129	7.83577886855693	7.7897674365682	8.3243632956892	7.65143733053403	8.02108002801461
+"RPS19"	12.2813246860193	11.4022080248515	11.453132708977	11.6044555277292	11.3879409034251	11.7767774925776	12.1619995068334	11.9881719674983	11.6648749281133	11.2916056952357	11.6953820240731	11.4987914558013	11.515824135406	11.8154430149844	11.8773614011521	11.674687305236	11.4285062115708	11.7257900778994	11.9010757027393	11.4998726561274	11.6924725551658
+"RPS19BP1"	9.46471186020066	8.83213251458155	8.95737347434634	9.04835813357103	9.01838802921764	9.22054557137086	9.34007563899681	9.06966907563425	9.39676954372797	9.12117929938089	9.06647212140537	8.97186806258454	9.22757336434618	9.16850838071158	9.67396909586615	9.1615084854268	8.89657343559563	9.2565129524724	9.22140185920433	9.24462066366619	9.08722647001214
+"RPS20"	6.64064902900922	6.58147214565638	6.19090719485407	7.27192486599558	6.34839893214647	5.97652212446285	7.47819355524535	7.04182589074956	7.64670909949739	7.00809905207695	7.28548405574603	6.96641112275783	7.40133601342571	7.14506444028547	7.38171766947485	6.98939109235348	6.73442769407662	6.30483650390066	7.5767555011942	7.25898987774345	6.82613907687066
+"RPS20P22"	6.10429526888681	5.95146060522037	6.08361367529484	6.44881745974053	5.75194295208345	6.54686022729711	6.69563305637081	6.29562008761527	6.21770266106498	5.85110869791373	6.31165299261661	5.4332016023892	6.58335405968653	6.03842784382748	6.69825980385027	5.62447092034088	6.1464908629493	5.9721574541798	6.48380861846662	5.92986914918138	5.89757597409856
+"RPS21"	8.27040510687154	7.67347850354898	7.87320501651417	7.97674928431768	7.32647384091129	7.98787268237342	8.16596317559729	8.13917762773506	7.87892758764005	7.49858065914297	7.73145533691564	7.85505829482651	7.89238808527526	8.01910058511286	8.26816462371873	8.07037952451775	7.4723759578257	8.15457412628879	8.21375126246197	7.74541731748718	7.58877793670963
+"RPS23"	8.83650783124135	8.60603859652811	7.28093004438784	8.48520057326617	8.42801313872539	7.47629019421462	6.61753245366148	7.34141840515186	8.71207623788528	8.66399227544124	8.75451591385962	8.4260906870604	7.92333925100258	8.00165603788741	7.85156344805402	6.83404796192137	8.13837210530273	8.70280414015042	8.77517711771931	7.53778043387236	9.20588820911328
+"RPS23P6"	5.33736872499574	5.48059484291848	5.31114269318923	5.70372925817536	5.35483564812018	5.28186441451427	5.51403668859576	5.47389764126414	5.27530915848634	5.55890411844152	5.59697774983699	5.70358560785948	5.51204833875411	5.38622157659259	5.52628370773098	6.04792705975574	5.49727504176329	5.29620045561888	5.46858771323309	5.36677260717562	5.53728346230053
+"RPS24"	4.69811670725613	4.13282897210883	4.59367096740141	4.11478760327164	3.96026361759547	4.17841677792641	3.68430061064805	4.03422332343945	3.67677643056436	3.8880510226718	4.13670235415364	3.89252136683829	3.82088992430334	3.87435842111572	3.71724314579447	4.45892474294992	3.79065312126838	4.51499893151689	3.85142952134992	4.10626117550319	4.23783406271672
+"RPS26P57"	5.35483996975272	5.66174445926359	5.81010688353901	5.89661048378812	5.66972114939983	5.83810766803129	5.71980132724066	5.86494772335987	5.7882913705678	5.58456841439628	5.65555355475815	6.17767784152641	5.54558289548093	5.82251073860203	5.97957530608329	5.68303809137803	5.69253265987508	5.63881946825689	5.71980132724066	5.78735057733981	5.8490551835956
+"RPS27A"	7.60026682091584	6.99767533815943	6.74698767898931	6.9688968407877	6.92991196458872	7.00284381903088	6.77179115439425	6.63013949616293	7.06121067567628	7.01299005596395	7.32972796475546	6.67304234662963	6.86353325689883	6.78880705789739	7.00017698486521	7.25362120791123	6.68335246070564	6.96585487579743	6.95860497308193	6.97815480296426	6.83368452810111
+"RPS27L"	10.6013343172859	10.1833789195192	10.1609564855278	10.5953554011196	10.0639546906543	10.3973839306655	10.9902609837628	10.6491398066504	10.3422684997272	10.1761600143685	10.6365760334095	10.2607931268337	10.5994180269392	10.5583629960214	10.6180852268779	10.5987893250103	10.1211818969064	10.5499147628384	10.8588503770266	10.2897586286617	10.2934212180048
+"RPS28"	7.14440521846566	6.66865170032647	7.05790369587191	6.85565719997081	6.60354051252405	6.87744599413325	6.83634647559354	6.86973651339032	7.39264007441124	7.21902624979794	7.0154741557046	7.14967853506859	7.06924679717459	7.00257819903617	7.09448868334346	6.70588124918028	7.15100367152405	6.8815519218719	7.24960904440252	7.04061707151221	7.05224635229932
+"RPS29"	7.06769220551436	6.81428220455066	7.24820802810392	7.38564268917586	7.02458894899258	7.58046985454535	7.10906930581489	7.68987435462424	7.51535196128113	6.71741428754749	6.64433397418929	6.78455909971804	7.40242170566928	7.35542835070578	7.49283493094879	6.92356610103083	7.12684763123974	6.72540907508622	7.68762383021412	7.16903184016095	6.77415728762058
+"RPS29P28"	3.30697336031962	3.31388144652903	3.35212462581953	3.37350134110991	3.60327777925117	3.38815919666752	3.41923306205115	3.38815919666752	3.41222410027302	3.39517404688928	3.30286628206754	3.32659138815503	3.39708583426272	3.45593544838326	3.4300627984597	3.33887498870857	3.39810421114475	3.3024339101175	3.39466415280945	3.41833213089376	3.53726448967342
+"RPS2P45"	4.57502235605535	4.57563317137574	4.40845633117214	4.69735264246165	4.05153010206567	4.42828052840808	4.07771025590174	4.60070299676885	4.50400653661054	4.18900296999126	4.41994517961982	4.30443704322261	4.41436144415644	4.41994517961982	4.52282251752912	4.49008176145483	4.48885937301805	3.96779852709763	4.58891444738781	4.14099968618439	3.8165725156997
+"RPS3"	12.039837534113	11.3380630608277	11.4307237473181	11.3243419557592	11.3534023831965	11.6762116624484	11.7168523637006	11.5581388810537	11.3997576782922	11.3941523126966	11.692659677343	11.4568900768182	11.1562646162689	11.3260686898761	11.603683812164	11.5755871567975	11.170346839025	11.6490821733806	11.8620037426562	11.6322472026478	11.6833796050545
+"RPS3AP5"	4.55009470871589	4.4401923839157	4.40827564418163	4.71831443009277	4.57512919121534	4.59961189050461	4.56437209570529	4.71599778844177	4.55642777529744	4.61552486600255	4.62664561950969	4.59972578696224	4.60868351464186	4.57512919121534	4.95993561033211	4.49522118132891	4.42241805306229	4.65814802663608	4.7276485175513	4.39065663451697	4.55733781231016
+"RPS4X"	12.4143836072419	12.1807950896598	12.1278427997197	12.0499970835928	11.9434282698801	12.2541879834094	12.2774360183844	12.3150328666339	12.0761096014861	12.0118788306162	12.267896101685	11.9776864413552	11.9011774274945	12.1625431143465	11.9764846665602	11.9967765598918	11.8721332935169	11.9298885567648	12.1698440096082	11.9237139210237	11.8356320399454
+"RPS4XP2"	11.2362072534795	11.1810069909278	11.1312655072414	11.18966023907	11.1284447842921	11.0032210117272	11.2325673548765	11.217459616601	11.1458774739566	11.0509551445908	11.1692927265535	11.0554482368173	11.0735805608193	11.3252340185939	11.1227125222879	10.9535033274328	11.0749272102589	10.8905995082013	11.153314622358	10.9462302234197	10.9932295976328
+"RPS4XP3"	4.69306873448241	4.81201277197244	4.48955703511671	4.94936370266715	4.85193827729	4.41767676896095	5.31263892867624	4.76235575693395	4.60922701782749	4.89573204561283	5.13046428940648	4.9824316444694	5.21954588075051	5.08475978021862	4.68490946135513	4.86986392122983	4.85014400126728	4.73564185139942	5.00304379619843	4.71008095488103	5.00304379619843
+"RPS4XP9"	5.3252603479945	5.42205378898674	5.04802743582065	5.2932021437526	5.46766415924144	5.43179521410971	5.382602024322	5.31672382824053	5.35290343264938	5.3252603479945	5.21818887917248	5.23706492835639	5.50150465288897	5.3252603479945	5.37364023410045	5.26086041316103	5.39686983533897	5.20699891478806	5.42155626527963	5.1625817483872	5.37256518113426
+"RPS4Y1"	5.46904426544551	5.42013025550368	9.93226595708877	5.81559383037049	9.05451339363509	5.68733355722467	6.28532716828373	5.55589277195892	5.8704121990033	5.11979279399503	4.7939943459758	9.92117105195642	5.43141547223631	5.93202021171341	9.59338338920268	10.0485444236543	9.47012811867057	9.89597694520273	9.84606037101025	10.0328477896922	9.64313339232064
+"RPS5"	12.105781684147	11.6610287212296	11.4462361414784	11.6359247423687	11.775787640298	11.8675581010132	12.2762641870717	11.899169596732	11.6419254751178	11.6233755184961	11.775787640298	11.7470780157705	11.6327984328536	11.8134406834377	12.0124425239631	11.7801240491468	11.5213109601562	11.8732059464697	11.8118233412576	11.7362710729586	11.6541485794207
+"RPS6"	12.796945824991	12.5925324921598	12.4941947429807	12.6012028519437	12.5556341821339	12.6310437758745	12.7949392571291	12.7019815939494	12.5045650650641	12.504849653142	12.6619070313527	12.4707954844559	12.5326440852757	12.7417722146077	12.7173834434954	12.7494199696753	12.4941947429807	12.8013798734121	12.8331923131883	12.5031647114664	12.6297322747473
+"RPS6KA2"	8.48391873890714	7.91410200462795	7.3457106240611	8.13238458707451	7.954231891026	8.06376766052202	7.86134061490705	8.05208540697902	7.96586627436406	8.3196428436993	8.28763007000062	8.41161385103884	7.91702156600484	8.18505985413689	7.53843869658951	8.37207043206676	8.13706685342266	7.97528847914768	8.07958833638704	8.3033758402473	8.45173259754436
+"RPS6KA2-AS1"	5.01042574795523	5.35705639435162	5.23045797676844	5.508573788632	5.29532735523828	5.53248912566174	5.26265897708434	5.37981587629154	5.37898652391232	5.44850892799687	5.32183600691208	5.37981587629154	5.73801525259444	5.60742340916379	5.37981587629154	5.25080778728721	5.39580521910115	5.33837575419838	5.22030398379804	5.30577012570755	5.57418029394889
+"RPS6KA3"	8.28972931871685	7.80119924168798	7.80324048047384	7.91463526147695	7.88095831533682	8.00105088996249	7.88859762007164	8.07481347052379	8.30022337792264	7.79147879665687	7.21176626701603	7.63945022387541	8.28675942454619	8.14741569246172	8.49349811564673	7.27747823376803	8.08612916454413	7.62402446574953	7.88859762007164	7.88749340660963	7.78778753945492
+"RPS6KA4"	8.76576574275827	8.73200853417944	8.99021711101279	8.76576574275827	8.87592226641117	9.12689127350445	9.07210717451143	8.66725746698929	8.66165993566263	8.71187591223829	8.67497232404853	8.66962818477437	9.11358568159064	9.0365640212431	8.63252214796642	8.5939030020892	8.4900852201551	8.4534362495341	8.56937905469549	8.92989249991705	8.88199204011611
+"RPS6KA5"	6.73212314457744	6.8320445300144	6.83692641582339	6.3084365225863	6.93580370879329	6.56379546717171	6.42377524983105	6.80553252202478	7.3460997083472	6.79864826714802	6.443834933189	6.92344324642307	6.15484251040391	6.18315929943491	6.99982967446906	6.35522044936158	7.13572840520588	7.62523167282733	6.50096053408883	6.37089214491447	7.02562134089684
+"RPS6KA6"	5.53228511509386	5.63594044608028	6.57293132949523	5.98162806770581	6.42699907482327	5.81397980726593	5.55251696924496	5.78846147270391	6.25953839974946	5.92126406330566	5.52069443612559	6.14254903589839	5.97609624490539	5.33899911345545	6.05658472513	5.41070633699805	6.22436321691284	5.82895917435326	5.99818741780096	6.43035653009328	6.11463079981961
+"RPS6KB1"	8.38301063752234	8.2444519711285	8.75781608567598	8.15201696221818	8.56215889873883	8.22685260144263	7.79595121481629	8.35150644974191	8.37249418823408	8.30378392563529	8.37629598966422	8.30705090389319	8.11199465812781	7.92987016578603	8.38120580158567	8.58748794736235	8.35389399388485	8.72788319192828	8.38953714764667	8.22942423141143	8.36660148208679
+"RPS6KB2"	7.43484643819797	7.39767603627943	7.66415319078417	7.41949503847356	7.4386447224559	7.81480093311233	8.059812168531	7.18645291681144	7.46493599564205	7.4583103012563	7.46036243689388	7.39902239410398	7.53273085389881	7.60332922242889	7.48543498259919	7.45088877153361	7.27223372940855	7.4583103012563	7.6142688752469	7.16842885458637	7.45037576208843
+"RPS6KC1"	8.33197607459296	8.5564569577929	8.89934495631941	8.43795945878853	9.13266521298445	8.52321252401352	7.74369884381104	8.40280824950045	8.79102483471992	8.97037194218665	8.42861931474064	8.82210485568387	8.35328753080798	8.06124348183152	8.53529685225013	8.97318237411262	8.71987630228798	9.00176048994496	8.57614820972904	8.82798202799397	8.91062504992624
+"RPS6KL1"	7.72660800847748	8.10136014190615	8.66315625959639	7.76250808064968	8.02808676205996	8.40556369639891	7.69568468034488	7.56706920401291	7.84871875761773	7.88326250802626	7.80346286190346	7.83894718006017	7.9702222630957	8.25411794146434	7.75631576001854	7.85238190533623	7.73697953911684	7.90721357558249	7.49333539271181	8.19660236319125	7.97937091542676
+"RPSA2"	4.63951475253435	4.66974942963038	4.48449273235848	4.53276824284598	4.20558368887859	4.47621638101513	4.88026467973897	4.61070729044744	4.7454661472695	4.59015030839409	4.84802386784983	4.8500842073042	4.9216425513524	5.12906069912838	5.04771694887809	4.57659277154573	4.90888330437329	4.22766117243144	4.70723956598492	4.5227608372914	4.64400383316494
+"RPSAP20"	7.17508942258361	7.27857936839832	7.26958598152651	7.32375346932771	7.40308980270394	7.2964261357508	7.47230123580918	7.1652008072563	7.3906524119267	7.16295478890943	7.28104838965062	7.2964261357508	7.32334229873055	7.51912267076672	7.48953600023356	7.49564217364419	7.26975977070839	7.10543163841741	7.3829341742671	7.11679038583059	7.40701073269335
+"RPSAP44"	6.87805292457172	6.98030544393964	6.88589416131392	7.14787283952984	7.01699251837001	7.25562858351616	7.05385981572685	6.93673530269978	7.23887430259311	6.89142407346852	6.76802290226785	7.01071022985099	7.20608188521071	6.84654158488682	7.0968233742607	7.27012953002087	7.00649489947399	6.79498607510244	7.08642468288047	7.08332547858475	6.97003387806457
+"RPTN"	3.48307297880118	3.58516313046029	3.64981901200777	3.79600193989129	3.59226833044305	3.85935038358198	3.91977967638055	3.71870970526852	3.71031846596918	3.54858440093986	3.41532823017749	3.79789751493351	3.97053848031369	4.12981651342373	3.61118584791044	3.62579562823314	3.64981901200777	3.31572189373542	3.58879553811694	3.59188878133459	3.6886194071406
+"RPTOR"	7.95197515317864	7.61811765800696	7.77689137857437	7.95404450188259	7.89643198356347	8.44116540819768	7.85559316658812	7.615903081115	7.91742169847124	7.37677908420707	7.71590666845219	7.6024930526252	8.14035853685065	7.77879726242673	7.59696253817805	7.3634631117343	7.95441703540727	7.93330522294518	7.40435306392836	7.83970203033729	7.63632370646767
+"RPUSD1"	7.28741640570143	7.29679515215562	7.4918109719257	7.50562328137222	7.33185627490821	7.9977961576402	8.16231264374985	7.33778262904079	7.51964414106431	7.67818207698051	7.35371629179875	7.35389641964577	7.66729547979083	7.83610806278157	7.67529740515651	7.21494571141327	7.44804425604833	7.34250801007938	7.65530467797302	7.58171815360683	7.51393764830145
+"RPUSD2"	6.14486783027455	6.25156694831435	6.14529217517159	6.30496763312162	6.54555835865069	6.25422436287317	6.11537002465322	6.13914712783199	6.24633932201786	6.39059912191165	6.18652140535968	6.15860504772102	6.2174720819824	6.45270533055863	6.20163105392272	6.14964831472852	6.15665797824527	6.37198215677562	6.07290413384373	6.62424289235867	6.33996187742872
+"RPUSD3"	4.56241917879669	4.36543566997852	4.39262003370901	4.85072897515846	4.30300317217004	4.07690543645749	5.16421597172518	4.18126566256066	4.99300707581287	5.057104516173	4.39752447810643	5.15058164026976	4.76699676537695	4.54772797024745	4.70801722855021	4.55819901244904	4.91708165502444	4.88297354062411	5.15916930592758	5.33691139859507	4.90414507546303
+"RPUSD4"	7.85501310791374	7.90785412233859	8.26836414025929	7.76603452142322	7.94712933564721	7.2965291045153	7.50885330309118	7.98327186490749	7.84211031104698	8.15328464597646	7.59688347642769	8.10826333469538	7.39134496132538	7.44465753656036	7.76405350327396	8.02978110871569	7.92319453536916	8.03485992541226	8.21520374260548	8.15874988743691	7.98906157217732
+"RRAD"	4.66654001832168	4.80526296868954	4.84558456492156	4.81590233829641	4.38960438198075	5.78632583389283	5.5655245080457	4.75799280259008	5.11244511301078	4.41734180641546	5.44515176923491	4.87688648844582	6.15731836406977	5.32978438192101	5.54624272074289	4.63638496279987	4.42806207122727	4.94873993286227	4.89213166169688	4.30378759384731	4.4771666962431
+"RRAGA"	10.6135418808942	10.6335574261788	10.8157655370304	10.5417863387915	10.941036270007	10.3585883832959	10.0102079884362	10.4858388923282	10.551804722005	11.1226877297527	10.5423905171414	10.9129869928756	10.3405987443605	10.0637089834422	10.2352646239549	10.9148242357107	10.7403642791613	11.0052093222344	10.4994021035044	10.9015074689661	10.8106410478169
+"RRAGB"	6.32546489721295	6.39742198837733	6.4452605492376	5.88785182390299	7.16115414349424	6.12569692722189	6.14322946650857	6.1171644920725	6.36684748168555	6.514092036538	5.96673580110291	6.41315214662085	5.65723952781453	5.93866156905345	5.89128862873978	6.64015459265612	6.2030763496523	6.94217165789139	6.08971660031489	6.84417787410558	6.36889983879869
+"RRAGC"	5.10454029542777	5.24560688701198	4.79494487612949	5.40687049334539	5.21775391670803	5.53894311554937	5.39577063189257	5.49960482882309	5.26379795507131	5.19798191722044	5.28267117562408	5.45253693288034	5.44087701968751	5.43654131272624	5.2759754639338	5.41267415032928	5.25368542265713	4.96000399084621	5.31175367983804	5.21179408317561	5.28903406522698
+"RRAGD"	7.74138410438595	8.26342458147709	8.5735271956011	7.77611633461631	8.0663302087218	7.48691406449053	7.86500955508494	7.98988994020999	7.65590403030211	7.92098846937593	8.38824708691605	8.1513179648188	7.37475822840883	7.3011485289197	7.85785187625407	8.28586919811179	7.66761332289783	8.08395967416126	7.88850165985994	8.05273065553574	7.71600982433385
+"RRAS"	8.11079475619754	6.86316834594618	6.73788379139712	6.71420113917392	6.59920093325825	7.61890193418127	7.29211956052743	7.08601155870924	6.81904067814388	6.77555186799111	7.425145498453	6.66722103817496	6.99091621329748	7.48679035303765	6.50381525725389	6.32684187887423	6.71563745604977	6.84178839435011	7.03410932386212	7.08252824015062	6.61739091237791
+"RRAS2"	7.53366191764159	6.86924115506837	7.3093730396433	6.76889537870552	6.94385605136638	6.87855814665649	7.27008383073959	7.26102067029375	6.83049161532607	6.55494744213222	7.00075741294417	6.36884694784618	6.52946717288226	6.87094740493132	6.90281408863675	6.13922436859426	6.46468614047618	6.62710730290529	6.79005956647982	7.30984068578061	6.25260930296309
+"RRBP1"	8.91870904672701	8.40565386480222	8.38744396744217	8.24056802840045	8.15800070114602	9.09012861059603	8.62832729841266	8.89859052102343	7.65494116888296	7.77835236761888	8.92057808415219	8.02766561514213	8.4697695025085	8.67994529521457	8.40881059830001	8.87682990570291	8.03412943519101	9.105512306196	8.00526720801547	8.17822919594282	8.19951243489844
+"RREB1"	7.60982412741812	6.15842780958302	6.04643654871627	5.85906533798551	5.77754290395868	6.376859940934	6.6105879267926	6.53027131404323	6.26241411163557	6.04261440200747	6.612690985582	5.68789914975049	6.17007248696622	6.31429396779173	6.2305793356317	5.50002172307458	6.04296029991356	6.19478365592169	5.91315184588603	6.59597428242505	6.08636360715335
+"RRH"	4.56720047062633	4.71910153763703	4.8706482331275	4.50740221684752	4.85468305526423	4.5109321257775	4.72083029964895	4.61645273761604	4.61443962338524	5.06075565757948	4.83338406193237	4.90324516721954	4.82312922604122	4.91812099194033	4.78447994247241	4.75265586106355	4.87894877593215	4.61688026180523	4.55974308300449	4.96750678437181	4.73798234708766
+"RRM1"	7.55061064149506	7.36221353985458	6.70158258864937	7.13680099204348	7.56176158813324	6.86691294853639	7.24173767105484	7.36780446549811	6.89546907740355	7.47538605530998	7.76044077347984	7.79041801191118	6.67663364312132	6.98644943934751	6.654052375157	7.72390015722026	7.40629646847669	8.00048547621474	7.30817797525348	7.58609397102862	7.60314181356076
+"RRM2"	5.30591642513758	4.85760238570449	4.87403643682882	5.22956432384847	4.92801568358236	4.87931826161213	4.70268311008949	4.92397155939589	5.07444596681509	4.84221627965717	4.48250260154495	4.50438709327375	4.95765437723806	4.95981644157835	4.68299259251225	4.76440898819098	4.63956444163205	4.57639956630514	4.6204989988339	4.87598852855677	4.61100134660186
+"RRM2B"	7.96022873417033	8.24148070118089	8.67207132466948	8.443571928538	8.5035862155952	7.89860237907183	8.08296330864584	8.57602401023145	8.1645011865231	8.39076872579351	8.41882469834151	8.30692451314136	8.64148909983305	7.81626093539405	8.60807884171817	8.3554829193769	8.51027031988489	8.50520850670575	8.30663185378128	8.32503158027634	8.56662100695727
+"RRN3P3"	7.84794350843816	7.86924766222987	8.62446203021606	7.94269574082003	8.01647663489552	8.21519298666702	7.813483400025	7.88461966878101	8.01662338034434	7.79049667382093	7.92669648511082	7.82511746384367	8.08387296526198	7.80427395096518	8.26053315857059	7.34780859104568	7.71559547237025	7.7482051310532	7.97891691038317	7.81015186081108	8.0045204293909
+"RRP1"	7.1477280863388	7.10706396790152	7.24447475986182	7.44641048317509	6.77715033276765	7.32358319317528	7.43202591204141	7.27443317811918	7.44867567276175	7.39316028385045	7.24138044946982	7.44969045385057	7.69551945116139	7.41546895165688	7.61128068965479	7.1027304112913	7.27697276739317	7.25628798051106	7.62576860036817	7.05952705492017	7.37997131761439
+"RRP12"	5.84932298655686	6.26244235959397	5.74903469218193	5.98066236220522	6.3963312069061	6.0202337324871	6.24443397539332	5.96668269176176	5.90980678688427	6.42498791903591	5.86730531933116	6.39895132503548	6.03008576134184	6.09474802465714	6.06455255397706	6.09665335834877	6.29189075969644	5.63023610711138	6.03782334107665	6.59373528243169	6.77580195640343
+"RRP15"	4.90398828939757	5.07305575489811	6.00096027102399	4.70681158461338	5.51698186140246	5.09241132858701	4.42378510929212	4.94981071397345	5.2716931619315	5.22920041904525	5.16304009926144	5.33906557823591	4.6143694926972	4.6204828637881	5.81350851636438	5.64234854951754	4.89722884588643	5.79895115658017	5.12357053055388	5.25672955295173	5.54274369132491
+"RRP1B"	8.37725730128715	8.03268070471491	8.15930576451592	8.22808653663719	7.87552730981789	7.60388657122003	7.81513642990681	7.71616904129409	7.94391254960892	7.36815609142597	8.27209936694091	7.00036439724115	8.0084901809044	8.05062640715358	8.03914351591944	8.14824608887629	7.5144504540445	8.38323896962106	7.71297537496487	7.7833449972727	7.9245660806828
+"RRP36"	7.99698240959693	7.64207671773626	7.85393561726115	7.29853324863103	7.82658735948667	7.44604235736098	7.37165697829831	7.46523155855051	7.60903583850629	8.08201332535496	7.74943601051441	7.72993655421432	7.18894363642089	7.30644200218226	7.32691962416669	7.96885300878783	7.4232620064302	7.81311574391099	7.19033903452146	8.0916246986602	8.0800755360483
+"RRP8"	4.38473940713871	4.00302474995418	4.45098570805465	4.25782334546301	4.21971147402758	4.55501103718705	4.00679099476673	4.19361940085243	4.1841572775162	3.97750735011758	4.37137811299254	4.21971147402758	4.21971147402758	4.47168544744632	4.31466118482395	5.02825976703513	4.04607259124915	4.55185173142317	4.21971147402758	4.21035163375798	4.45175799915461
+"RRP9"	6.90925218805527	7.04236966080114	7.21927153421131	6.98387768123895	6.97568581168432	7.25564839614161	7.47281544375215	6.84758887697066	6.89250112418126	7.20788893075469	7.21757856803997	7.01912391878423	7.04311681419255	6.99941948168961	6.94172267710956	7.04930983632167	6.78312439385181	7.55824045498084	7.15419361444649	7.35435881841171	7.2210511139846
+"RRS1-DT"	2.95183476685577	3.03624794243779	2.85106378386731	2.9641538738542	2.87713650430939	2.89908913538209	2.91857558540347	3.17295421632041	2.82949458227139	3.12048833995074	2.96097568304281	3.05134187307146	3.0231538004503	2.8383595310697	2.84568581936265	2.96100266415506	2.85532159064759	3.09518547431624	3.07263705377672	3.04411544336999	2.93660688067556
+"RS1"	4.01807487127439	4.34612216213131	3.96598193060416	4.19633183401696	4.46921369868238	4.19818030628423	3.99997772926816	4.19818030628423	4.1146512327634	4.49813864655391	4.07742954948292	4.15527761469349	4.2996903676094	4.22617382273182	4.39588840976103	3.77216330589925	4.2109431347111	4.22455725876159	4.34130317132724	4.11165772128558	4.26650464418022
+"RSAD1"	8.19541641802158	8.20388324348611	8.6077549736003	8.65477494382426	8.39624403186061	8.70316108670993	8.27224105659391	8.82136194817478	8.55122189390111	8.31243786049704	8.41580502762816	8.20685423616656	8.72854652996215	8.6319146603525	8.86994312981868	8.25609530097484	8.50125894196236	8.5239663930753	8.62834110677853	8.2697916238543	8.18157004485316
+"RSAD2"	5.27078475882974	6.02157572737164	5.41793703933426	5.22671424616576	5.8692499132607	5.46091184604618	4.945188843014	5.7416593266498	5.5941733389914	5.85317010162204	6.03373223771668	5.57260489245948	5.5941733389914	5.39339640209073	4.95421911675653	5.51680131565579	5.09936149247	5.88038867957984	5.07186499550089	5.77945713124714	5.7315336134947
+"RSBN1"	8.11311446888394	8.4107952955174	8.42835742507973	8.56571025010037	8.50354951431175	9.1023697845668	8.47058988502466	8.62236051185194	8.66024576980525	7.82695045007581	8.46601041049254	8.26502833140644	8.75267985887124	8.41526460211944	8.88745177624625	7.92985183283549	8.44165726457219	8.25214562202184	8.49565490766224	7.99597709856059	8.08774782733302
+"RSBN1L"	4.16661286219133	4.60195480236366	4.42899628151597	4.60278520665339	4.15746869075161	4.40922566429296	5.17543822551581	3.97535692631714	5.21403307953926	5.1430469209538	4.86621207745536	4.08851696318839	4.71601596999	4.18593084662399	5.2072860193278	4.49572446000929	5.18160001380505	3.99963195397927	4.19262189467528	4.96946138430119	3.92695681175937
+"RSF1"	6.34300014438688	6.09311222383235	6.4233126795968	5.98737603366594	6.62651679848375	6.01251139516344	5.70659712976124	6.71739366325551	5.7908816202116	5.88125470964354	6.18772736881696	6.09424204804612	5.93428275143167	5.87248733780869	5.80636054852182	6.40416045874141	5.80063741185639	6.61039257668055	5.83127893085894	5.82018229337333	5.73843186413752
+"RSKR"	7.29369812846495	7.5146540129542	6.70140754749478	8.06527065994461	6.40125249667909	7.30848747215625	7.65082546850188	7.65278833550691	7.90304393974403	7.05228173148225	7.57243079523119	7.32251220113733	8.48272692222507	7.52024579028993	8.33008046002455	7.23658581590512	7.68657296636725	6.4553205119141	8.15972483472857	7.34219722517292	7.55267348284482
+"RSL1D1"	8.59081245228605	8.83252230844639	9.10442757985241	8.9311776871537	9.12732591379585	8.26746225675518	8.32410090081778	8.90735279837389	9.42216783686825	9.17921344909515	8.52724551777999	8.80564984581642	9.06158276492449	8.53935788582065	9.36144594300215	8.74066094647298	8.91249403411031	9.12770309354618	8.97405494077599	9.13740048002731	8.89998639380046
+"RSL24D1"	8.44915889791565	8.48861896857615	8.35937164607322	8.54738651534312	8.84475800290514	7.77525506801762	8.05969942675727	8.76197556615368	8.54320715148067	9.04529549332823	8.71393935322846	8.93475220909437	8.49871003706544	7.8475830574446	8.68916105528119	8.99126921998935	8.67389687259889	9.0083427670799	9.04050219114025	8.89795139458432	9.06316289073358
+"RSPH1"	7.53913680159463	7.6041199099324	7.96319456981443	7.30182365850846	7.83744125129893	6.15375950652615	7.13160294972133	7.51224403375114	7.36621719987069	7.45786295797764	7.83174501729656	7.66984236672595	7.13705885997467	6.87880610494151	7.10406163168898	6.8410758168911	7.13266409496354	7.0839875246391	7.07262880668247	7.48789733412718	7.373436282229
+"RSPH14"	6.11618675641858	6.24903539364162	6.46617361081455	6.40855772617398	6.52813120898041	6.29919794483529	6.27417472559507	6.35697350776878	6.88816003055857	6.17581728849896	5.91303733917919	6.33571552327933	6.9570939911171	6.36991153269726	6.81645943700546	6.01806415949288	6.40899190240194	6.07210849304809	6.30009958121417	6.31916990414664	6.42085033801547
+"RSPH3"	7.14235773576011	7.24643892378362	7.14650886598432	7.25332758055804	7.15420994015704	5.73664504451995	7.0578543572501	7.07189275450463	7.46374221824042	7.50417591168661	7.13996218861075	7.51778886137215	6.76324834583315	6.80850868942839	7.06737348831034	6.87794920223833	7.19420216574319	6.42728758572792	7.21553459191859	7.38743868906007	7.14076507927163
+"RSPH4A"	3.10222275900087	2.9906814086648	3.25738077291915	2.99385007180154	3.03798243501963	3.06535610930824	3.36981135415577	3.05199036926774	2.86465254454137	2.95207091508794	3.16111869480186	2.9302330185015	3.05031162309207	3.01736804598943	2.98404314171539	3.00279417941314	2.91008046600587	2.94557821291573	2.97283012254365	3.03873139768926	2.98372597645162
+"RSPH6A"	6.15611332883089	6.15170665048346	6.47409360584256	6.27491531476537	6.30255489315344	6.22443174616404	6.38064740399285	6.05196426461404	6.10870339474443	6.28963601646065	6.11524152629442	6.38182694628822	6.46885258122367	6.72215921664424	6.35626463555074	6.39764111798863	6.26065213410191	5.91146208697494	6.36825397451024	6.11945354445514	6.27236482896945
+"RSPH9"	4.43532829229986	4.11180190808136	4.30753232364713	4.10130673372639	4.47243706936351	4.05058418781403	4.15208892540975	4.13371055717193	4.16775506375091	4.37837064489484	4.15446909016588	4.47243706936351	4.25781649691061	4.09293020510617	4.03136216085513	4.08014765255438	4.17196595249757	4.15051608683836	4.32510101674837	4.21711092552329	4.42983078184787
+"RSPO1"	4.61284354163675	4.83329095478822	4.86793203495178	4.91912212229306	4.53062923318823	5.24206445671091	5.5631659109249	4.59890743263668	4.90799116836067	4.82176548823388	4.67182517268179	5.00454838702302	5.03377195840606	5.23620064838629	4.76218322688329	4.95802779366238	4.88364913965973	4.8253867382744	5.13157299137956	5.06575751303335	4.91912212229306
+"RSPO2"	4.07840943785452	5.81692109582919	5.79813255350164	6.15119637694989	7.19739384780881	5.49075293781445	4.20558464710256	5.37456735930404	6.71019564234858	6.84267769322088	5.2959536581184	7.33948035271429	5.91845045365047	4.59060569430917	6.07672879691326	5.76192917245881	6.9000906991415	6.61139525635435	6.20363919372956	7.13228847614186	6.96750264809739
+"RSPO3"	5.08961543800521	5.61766292762197	6.15525777891875	6.1321979668384	6.02471513200006	5.92411016266657	5.56792133686705	6.00970058782843	5.84029938178231	6.2144890347716	5.11362278391312	5.79382288235666	6.14214476769302	5.69929260862754	6.38593480601073	5.34810385551279	5.94620283455436	5.59598174049443	5.98815776998553	5.92179152761193	5.84324430367431
+"RSPO4"	6.32835619796859	6.11869332302341	6.34961034473949	6.11869332302341	6.29480005339983	6.19742238609902	6.32589584962897	5.82937175886831	5.77406960743499	6.24143067451207	6.25312027696091	6.07002026930896	5.93275872304564	6.42369409437943	6.07854110773496	6.29734585682429	5.75237992550059	6.027886103127	5.90747693688781	6.20975405791613	5.90594451548716
+"RSPRY1"	6.37882097929129	6.62563776605416	6.58368313142212	6.06585359966314	6.4104198187759	5.06439971731472	5.54691555334425	6.22147565833957	5.55289704986465	6.39092081898113	7.03811972252168	6.04119433383791	5.95426974404719	5.7662511083396	5.28437882898049	6.80128705907523	5.82662493274007	6.70112841781796	6.01294943655011	6.29094120055464	6.39819209593922
+"RSRC1"	4.31018061425036	5.14825363339779	5.19620469390342	5.22414026055136	5.4819527298826	4.38195702000894	4.51901585329655	5.32623791905498	5.23469711226047	5.19705169200053	5.01443360895354	5.32011760814673	5.11037596684107	4.94986870479577	5.6590209649247	4.93779438031075	5.33805452816416	5.65472492359112	5.30246232008648	5.5064686475352	4.89782647716242
+"RSRC2"	10.4673461774644	10.3939497441521	10.0994302349133	10.2817862268007	10.459691512564	10.0486072775263	10.0430356476531	10.9223015636509	10.2877634033143	10.3911648189125	10.317158543849	10.5875499252002	10.0006077136941	10.0146735668853	10.2138226681357	10.3685708180127	10.5226993686716	10.5820132902152	10.4472229148234	10.3214134945134	10.3601411822783
+"RSRP1"	7.89626730628223	8.52260605200264	8.04171176457578	6.91468304144918	8.09078772505711	5.92644420686606	5.45266176861313	5.90383330208333	6.83975229048366	7.37124199590393	8.54179710097856	8.09744746001139	5.70928268957775	7.46009035637911	6.18211498456214	7.96678992279891	7.71059710324741	8.75811912074504	7.74669913921687	7.89139026671218	8.4901114157785
+"RSU1"	7.68721017609055	7.25789444570371	6.94507351661169	7.00130222432172	7.16657375197603	6.86539931826	6.79882346899828	7.19391620027131	6.95961658006185	7.06717084403619	7.45140257865777	7.15354684398073	7.13263417618816	7.07740770320502	7.05974736349169	7.59151783802264	6.82179245336129	7.61120977983	6.9598018358899	7.41579896437072	7.05063163873681
+"RTBDN"	6.72431000691366	6.9837026069906	7.21207747177915	6.92838223530692	7.21455960729201	7.03049056596451	6.79443910345267	6.98242305661898	6.89546907740355	7.06375707335495	6.65918094986812	7.20346614286036	6.99091621329748	6.52424765663788	6.63748445617427	6.58133235932412	7.04029151883567	6.8831993930984	6.88484617988157	7.29038694270502	7.21742672001698
+"RTCA"	7.74252040059023	7.7685970641555	7.51657288609232	7.45155118063048	8.08547333037047	6.41339504385597	6.8103776967645	7.5640510463699	7.56801579069514	8.33414097648106	7.62983923105502	8.07021768187822	7.30470591751249	6.62010293047828	7.19806360360281	8.22409706830538	7.74407407896198	8.16701462745799	7.74015667882583	8.32671508107867	8.19200959050829
+"RTCA-AS1"	4.52541945164092	4.51783129966594	3.9660173587056	3.96503450619474	3.77935252569844	4.01556409559521	4.40140106986737	3.82211551274697	3.7686236235222	3.98976745216533	4.64321677927292	3.57940050028656	3.88186744586106	4.16989145742364	3.9628488075782	4.47848340032273	3.67216776847921	4.29395456088603	4.082693699056	3.57049883454167	3.84934283254852
+"RTCB"	8.90229045618844	8.75182544175126	8.68859026753916	8.45905112166587	8.86167475996838	8.57720618138905	8.53153720790601	8.6178761113953	8.61026845289638	9.01561440510769	8.85703291440218	8.71487189436899	8.23543206247454	8.34072511754786	8.55535931200165	9.23975585184082	8.61382669423512	9.03304647304746	8.46116420742685	9.17223553963293	8.86477145357649
+"RTF1"	7.95626374391911	8.47666970702714	8.8533483460766	8.1242374915668	8.87944880886516	7.90373995562605	6.97269151363909	7.92035145326091	8.38269666987693	8.86733603428637	8.37559431963222	8.6187575246066	8.01237270293889	7.65107425841504	7.93072262715116	8.21546510755214	8.57495394939409	8.45789534634363	7.89091559338668	8.89588860985643	8.7058766298111
+"RTF2"	9.58861976814748	9.13514639542324	8.93013227982438	8.73004426401095	9.06080035482778	8.70164313268696	8.95122885055791	9.08450831000146	8.85362984988796	9.05581501423916	9.50153284194704	8.81908965918405	8.65808453902614	8.78127102519144	8.8200137388357	9.73097849195884	8.84646741663965	9.49005131694794	9.11645667472815	9.09582976431238	8.86888176271399
+"RTKN"	9.07993980599183	8.70355497240435	8.38915649483614	8.77801721789368	8.31101986808771	9.17449963941211	8.29520247619073	7.98712786649125	7.42751376852352	8.05931666420615	9.0908170414032	8.30574854160001	7.79065646207931	8.69100747675078	7.88692384510567	10.0610900938399	8.27356377751394	9.9859065126318	8.23961709911878	7.68904232721024	7.89531551198703
+"RTKN2"	2.96096976630111	3.07117440086638	3.13032990058652	2.97764726086413	2.97764726086413	2.93491960413695	2.84010120946058	2.8232388870109	3.03765210026233	2.96022768498378	2.82651867231772	2.97764726086413	3.1339124595582	2.96291312058454	3.12320412417607	2.60849553256595	2.98163762281311	2.7688274733061	3.22217737367243	2.94665315077567	2.97869764669082
+"RTL10"	7.24798556561319	7.44358747404036	7.33133297715291	7.57783465509348	7.3159596876233	6.92225681605602	7.63008397897053	7.43547320346416	7.64623659706672	7.71019257796542	7.54225483935847	7.8684405713126	7.54213958688825	7.56878960210112	7.55714918847074	7.54412894193795	7.58832830462216	6.85247099611029	7.58202589382419	7.97195955030838	7.70523977385943
+"RTL3"	5.74130514307041	5.97980395512577	5.77843016133014	5.91555642495968	5.7392568985605	6.08361367529484	5.47542763050103	5.8362280296079	5.80143181408175	5.78508244122498	5.70041940029512	5.72186634163105	5.96225935803638	5.73458833531939	5.97014013827927	5.98737603366594	5.95160895333877	5.55967152926164	5.95073584859782	5.77477985776237	5.90754559933997
+"RTL5"	8.16038251765708	8.41441072142342	8.09275005925333	8.3810773747335	8.32041182430472	8.34855666085574	8.29192718207459	8.3715624107706	8.45280858739602	8.13125853056514	8.09432461522055	8.29349123944038	8.48834759394413	8.59033458212438	8.18074434502478	7.75056956264837	8.30554682568067	7.9650211565831	8.0608991251365	8.60953433478479	8.30554682568067
+"RTL6"	10.3747206163557	10.0023960953155	10.0758692938485	10.0474568570663	10.1086024466012	9.78480062246689	9.86408659223658	9.92004321460034	10.0048886154315	10.1018166530855	9.84055472911609	10.0323854727776	9.67447919417176	9.86005723887057	9.80836361611023	9.87502225928275	9.86201615322502	10.0520386071591	9.96715210822636	10.421537330063	9.96300793500801
+"RTL8A"	8.28438548973879	8.33243695421668	8.23195767768156	8.2550420500463	8.34516054142032	8.24103947522169	8.09171913521416	8.27750218413093	7.80057248085002	8.30334859565037	8.49341687914817	8.2678370196374	8.00713227594345	8.1840786429258	7.78303905353101	8.61203482251473	8.11730329425312	8.56915550441301	8.17593446322208	8.43331742364033	7.99416647940442
+"RTL8C"	11.4970113689411	11.7952363997711	12.0335536457602	11.5976165950748	12.0083381747539	11.3640789400706	11.350169715969	11.6648939465733	11.4998917418492	11.9321348801944	11.4778188690085	11.8518350705189	11.4736811007951	11.4349458316994	11.0517901974652	11.8223484192554	11.7598412028426	11.7013481746934	11.435832670173	12.16881257902	11.803021107381
+"RTL9"	5.27625859792213	5.44204258604776	5.36005642287439	5.50182352907672	5.57193079530789	5.14726283608744	5.28912015849641	5.47389764126414	5.3973348872181	5.30050324477222	5.35581757490592	4.98414399754533	5.76353729479135	5.82773157719936	5.42683236134584	5.1688785447274	5.57193079530789	5.46111244896298	5.31368168201619	5.23709598318921	5.3973348872181
+"RTN1"	11.3366666028977	12.6063019659551	12.7877369936411	12.5250216123328	13.0137474430189	11.8437128516428	10.7398661181368	12.270820099098	12.5514835644898	13.0872099453868	12.1922027922927	13.0619829027047	12.2300169338199	11.2735251795537	12.1731585003156	12.5869608472999	13.058676405939	12.6738992810411	12.5342254396218	13.0704973736202	13.1441644897501
+"RTN2"	7.64936197668063	7.58500706390831	8.04650780590003	7.84895640132635	7.9532920447718	7.6412367014556	7.91100438928128	7.20722995965085	8.13623009305579	8.43867070035907	7.08896289012197	7.79850910173934	8.08262635174197	7.54374327949099	8.12242829646909	7.20769767650406	8.06908955054795	7.77847729171588	7.87801767972958	8.37350734372693	8.61304749639551
+"RTN3"	10.2982197013312	10.8426462440493	10.8221559368316	10.8131799805261	11.0848776200593	10.5248501113266	9.91797029084014	10.4798342673926	10.7618530858504	11.4107183216254	10.9261593105325	11.3235447387134	10.7189495634344	10.1699545076604	10.6714333358309	11.2469882848706	11.2524589691836	11.2014305973438	10.7826912670748	11.3306063792616	11.4952603827722
+"RTN4"	11.3575527544704	11.7599559129293	11.6761184974886	11.8681400466275	11.9807158128455	11.4569649134572	11.1884536175703	11.6918781137791	11.7674580751465	12.070727435141	12.0742072365692	12.0674049593748	11.844835435568	11.1743256690564	11.8838045914992	12.3020314725296	11.9343069095988	12.0510974484749	11.8598144472638	12.0171916630652	12.2789904427076
+"RTN4IP1"	6.05015313790696	6.22420517923189	6.82502475464774	5.96381360924441	6.79933744388688	5.86995703285807	5.49523673526733	6.00162344984166	6.56632847837282	6.83755158689799	6.19704441847763	6.45041842093247	5.97423136859661	5.91753364141484	5.93950787877399	6.54663748156994	6.67385820263704	6.72960147345126	6.17541625423284	6.9849277813356	6.43943544069584
+"RTN4R"	7.60640614642454	8.10371058272981	8.68963619083541	7.93660785788743	8.16899198665528	7.92706261616183	7.59806541442651	7.50744633484103	7.94223349147153	8.05861026689736	7.60713942601674	7.67262349447616	7.9263054436119	7.81626093539405	7.70680071784744	7.36844169153343	7.82576331607774	7.93653145726297	7.43812574498416	8.47738436070055	7.80720192660638
+"RTN4RL1"	6.8135542779583	7.00601232933899	8.05709695852305	7.39593809604211	7.74859921438083	7.26194483874816	7.12700094427285	6.68234446724585	7.89254381248969	7.69849911318372	6.81416626653576	7.67314194649345	7.47364263720629	6.9949499306396	7.3651261113759	6.91423977744493	7.56643042921094	7.23056156735729	7.25774706742429	8.0634112585606	7.79939833531152
+"RTN4RL2"	5.42482096481804	5.67628093896532	6.18459547534612	5.7899061833471	6.55095478820992	5.57595398974852	5.04396328249602	5.47922017822819	6.0930918086789	6.23004916324959	5.70230056550291	6.54877802020398	6.09615014431131	5.50765697605034	5.83823991306476	5.5506308204525	6.33356119598441	5.99414965399133	5.59635729348317	7.18646059224768	7.05190581069002
+"RTP3"	5.46784545153037	5.82670281176854	5.34246544909158	5.89904170649621	5.56182938635378	5.54450466386826	5.62690238734389	5.61460654865521	5.79001532443125	5.70348293273437	5.66551392585215	5.83540959479398	5.88717165984086	5.58582510588581	5.70348293273437	5.77799049686152	5.7662511083396	5.34602750461199	5.71031756212157	5.58446473289099	5.93011550741951
+"RTRAF"	9.96809403666297	9.67100421103344	9.53350407382443	9.52542726542025	9.68186853566322	9.33699831364774	9.52669680242692	9.59342272198007	9.63864541797506	9.83359267669883	9.87966364435684	9.70975082944087	9.49204731291784	9.4536678585574	9.68353886879081	10.2126935669386	9.52557277325952	9.99010985827613	9.8709931127101	9.90856029007779	9.7298738702254
+"RTTN"	7.13497798605798	7.48900295376056	7.49409829057723	6.94104125641726	7.05899206206248	7.24167943651757	6.48000792948204	6.85513387007034	6.69323144749814	6.93654810144485	7.87901619543345	6.8562244997826	6.64552720260268	7.04029151883567	6.8656020627225	8.11410063758746	6.83695032219939	8.01986350532933	6.95452454586332	6.95690343041394	7.08404878814917
+"RUBCN"	6.41969640836202	6.49946356872684	6.53009376380125	6.71724856278607	6.4176264016301	5.7744491826972	7.00732687476623	6.46441648480026	6.70523987313556	6.55117593297705	6.47543161285046	6.8063815818088	6.5764419027422	6.61624087687509	6.51378040227437	6.42348829061084	6.4377333322941	6.20955359993852	6.67008912666559	6.48636842004799	6.78437475454965
+"RUBCNL"	5.75856843997689	5.40419611822493	6.08426395389755	5.32754044762789	5.26727661294583	4.22069642222839	5.62947603090487	5.42327614677563	5.50195222850573	5.16759195007358	5.0313568394914	4.79653894832274	5.45665033296339	4.8458993170816	5.74814279124321	5.12350059456989	5.26580137441196	5.32065548988648	5.4759772049613	5.71727590671502	5.55829178693824
+"RUFY2"	5.67417327311203	5.85578540964657	5.53011757337133	5.47182773835459	5.6259126262686	5.4827640394871	5.28166820363043	5.62756882330623	5.74171717159387	5.9268341876901	6.29167323049457	5.8715832306041	5.53147984400162	5.40975837085715	5.6256238736025	6.85994413363752	5.92393938369641	7.08341987170472	5.70491146600838	5.58592012322055	5.53944181822059
+"RUFY3"	9.25245463767351	10.221583660254	10.3973794832233	10.0317090680489	10.5524462609235	9.70142659568019	8.51334982782162	9.84924227491836	10.1587740086163	10.4692280306259	10.2256900702163	10.3652995027145	9.77975320509371	9.30007065262648	10.1125959870225	10.7027988501256	10.3556986672041	10.687450033713	10.1803904081802	10.2318069830246	10.4252238873568
+"RUNDC1"	7.5565668975613	8.09660115558937	8.49590204600706	7.83270144440575	8.35264371409927	7.50460842605773	6.49002028217832	7.47658914274394	7.76439017664242	8.22942988189152	7.79662013855612	8.1456248726479	7.57744265321595	7.06698282453512	7.58689175871004	7.71399452791008	7.89950120831167	8.26694801392185	7.60190211440278	8.22603934655877	8.00832948944299
+"RUNDC3A"	10.0737545008518	10.8986443374348	11.41538649908	11.0929516104981	11.3794538483794	10.8564561600865	10.7589647647769	10.8346987227018	11.4284347117627	11.2856535567895	10.1692607851463	10.991963833908	11.231202814835	10.850046920763	11.1265773883652	10.3388908047083	11.1626049789286	10.7532515709457	11.1077276741844	11.4581209579621	11.3124837584368
+"RUNDC3A-AS1"	3.66824204045792	3.86965877159592	3.65462759601251	3.9575312643761	3.8158654170866	3.59600188332512	3.70632310137397	3.99963263661698	4.10508884995957	3.76649585251223	3.47401544218003	3.93714454049592	3.54635541598114	3.41184141328505	3.45875507799657	3.3904244031679	4.00088430261027	3.42165746820974	3.88090803128398	4.00469379059507	3.59226915661531
+"RUNDC3B"	8.02267801846739	8.83457406271012	9.15735505452413	8.76267918414441	9.09431064294359	8.7194912466993	7.93370189088162	8.49047573537592	8.98866092446474	8.73717390918942	8.31607133233108	8.71930352073208	8.87844388881193	8.55862633222565	8.96503285784453	7.96749117927762	9.00472182716855	8.46877280658451	8.7173030211151	8.74313592748206	8.60941805031277
+"RUNX1T1"	8.37336716027613	8.92751392268487	8.99132483142447	9.15545294854223	8.58840455529639	9.15992568668582	8.73443692151812	8.99834134085727	8.87446598889167	8.65759355123095	8.74168145944727	8.68953063028006	9.16697612084195	9.20445699040967	9.34793084462828	7.50307234901602	8.72137619068414	7.69041452801697	8.80776325842501	8.66066717416775	8.01404426385918
+"RUNX2"	6.16170848508914	5.8499987099578	5.82374902330473	5.70493034902645	5.61422062396752	6.02730246874353	5.1716869876303	6.57913581021984	5.60840566350426	5.38717054879843	6.44614529674296	5.65155829014483	5.80768847560875	6.67097300393411	5.94681918439467	6.66697114076387	5.91998239819515	6.50165141940628	5.97268911127073	6.03803849590951	5.97782587379584
+"RUNX3"	5.55890411844152	4.90128568838975	4.79274226881096	4.9123977649966	4.62960132236964	5.93900793816728	5.31745182566427	5.17703260447004	4.67569487082649	4.90459158273795	4.89337959989673	4.90582844883206	5.11920596015658	5.84261041540654	5.01551416624492	4.77058357207449	5.35776467115413	4.97305423690685	5.20416441900846	4.83813282217364	5.75720056059747
+"RUSC1"	9.12205682540824	9.45846871558364	9.61409290419416	9.36420418061998	9.88933218164841	9.47764584019945	9.11102739192823	9.25595999636509	9.43989923813716	9.67888927938668	8.7996978954089	9.51310757616138	9.64631255667442	9.37763987709318	9.38952605620341	9.11978954834824	9.75034842079962	9.29090562032053	9.07523517501998	9.89698326345229	9.79428202232167
+"RUSC1-AS1"	6.14043642228531	5.73544227130862	5.67157488218873	5.68640889669814	5.4381326432203	5.5840251387276	5.27836722686377	5.58040089511521	5.50076182085259	5.68252365059641	6.41669515736591	5.74521468057535	5.47992494392587	5.35020991817535	5.36602953851912	5.76432128431503	5.60525575485078	5.56285243727115	5.72984848678047	5.70251543256105	5.58761675717396
+"RUSC2"	9.03981916142426	9.4808098184623	9.66949048470789	9.49126260501843	9.41326633954787	9.81553592407269	9.41326633954787	9.18997727718829	9.34625073178011	9.37914614763369	9.41326633954787	9.34293484636674	9.66258445175229	9.57049110381463	9.43661175068825	9.09617363870039	9.49684091923512	9.32646153447727	9.1501889046586	9.61845228331478	9.37828031178539
+"RUSF1"	7.78873786375455	8.11971397140437	8.21683766232018	7.83096357905146	8.11547334284255	7.27588042820069	7.16586042153739	7.64506071796771	7.5457179042342	8.19830920888017	8.17656692640168	8.307933372418	6.90780739634606	7.46223593659346	7.002832673592	8.42569116632044	7.96598811657016	8.06704940517334	7.80198521379871	8.55698451449771	8.09869525553838
+"RUVBL1"	7.62331932397504	7.02507544696864	7.29729993282395	7.08036429608784	7.32779321116646	7.15205811165459	6.85358067503425	6.90035936242443	7.11444561759034	7.20346614286036	7.11057823454536	7.04341973417167	6.93688552348161	6.96504557148795	6.93811125598975	7.20462714189287	6.91552570639217	7.28829503356489	6.85722514971954	7.24375698566384	7.26801724847033
+"RUVBL2"	9.16317500830014	8.8990156777468	9.48403045079195	8.75651618738487	9.22097525991277	9.25679270193053	8.98170707023367	8.85909966790225	8.6625359334545	8.9940453857109	8.84371597569472	8.96798116672642	8.82289181896517	9.25871950096345	9.07950005384992	8.84702838241611	8.85709264234182	9.28376399365287	8.52376692506578	9.20616388024416	8.97216584089556
+"RWDD1"	6.25457898374076	6.43673667632473	6.38586285585922	5.94410081288171	6.55876705502599	5.97386877449356	5.61099564573463	5.75422138727175	5.81819810702918	6.20065973936626	6.06651334113761	6.2030763496523	6.27445877515586	5.94462848660694	6.22007934400326	6.47263234024022	6.2775742785139	6.67208073200986	5.90748868806861	6.49686932625903	6.48586229591622
+"RWDD2A"	6.80442420900599	7.11399845072264	7.63526755207659	6.64942964815253	7.51869560765607	6.51498608613272	6.01126324254978	6.96034866943324	6.98391536680657	7.68520880856018	6.54092577565616	7.38827501748196	6.71030518463633	6.4598836085377	6.97859731594277	7.24473330211433	7.03147406071687	7.52807211131928	7.13079709231201	7.63166650827956	7.29685839300154
+"RWDD4"	7.87118972212174	7.89320007554536	8.28794123924295	7.48201105590035	7.96485016598006	7.53888850476784	7.29293615494259	7.69182363780881	7.42702672344491	7.6797831719068	8.01383692994287	7.45661845862375	7.48331155318527	7.41752673931393	7.91541619221578	7.96606331411834	7.60981208712901	8.54573633870499	7.76311331022502	7.77231565630813	7.53587834360835
+"RXFP1"	4.27237653735552	6.56245693439806	6.28248947112148	5.87408154831497	7.45909137592536	5.78000710920639	4.70676969634567	6.22817074308485	5.43526434258807	6.85746473341847	5.18881390411541	6.92832262330699	4.75799280259008	4.99797325818993	5.80003324830306	6.70121078370962	6.53875969091182	6.48353088780249	6.28604601413873	7.2610028355214	7.29194741713492
+"RXFP2"	3.34222439407867	3.76610904841878	3.66132283400463	3.52790791789952	3.67674401380037	4.15965054552726	3.70874469112073	3.60723462979556	3.56916696845524	3.84328612135801	3.27782477681893	3.67340978491056	3.71031846596918	3.76842953002392	3.68635258951134	3.60723462979556	3.55104784126946	3.22924980132695	3.49167691933058	3.54225744046378	3.60723462979556
+"RXRA"	9.97497019658539	8.94127520538177	9.2862168930263	9.5961508610305	8.81888204786419	9.70052996735111	9.89312815644555	9.41753830709378	9.59384743833807	9.15908400610792	8.9634209689268	9.04588580776903	9.47887229797705	9.75381372773728	9.58488082889904	8.7337747119007	9.33249395001036	8.82929323110471	9.46029359348331	9.14101823610287	8.84100030087476
+"RXRG"	6.92347093105779	5.81945213280577	6.29570269258326	6.38556090799002	5.97160580310493	5.89016442470957	6.55395183390247	6.09630554893852	6.29382223675338	5.95459793751571	6.28995253860868	5.17970927799935	5.92320826173311	6.60982285261234	6.08195081191428	5.93423025409252	5.66746834287543	5.86601288880254	6.31688145576524	5.86420902846511	5.33358936572871
+"RXYLT1"	4.87338314983369	5.14015786029562	5.06980414202074	4.87093350697938	5.38596163280488	4.86822331637785	4.6875437650554	5.01976960288022	5.24426296004305	5.19798191722044	5.57531362071243	4.76764009535909	4.44132705991976	4.77488642199461	4.69845162321073	5.77185485766943	4.59103640359169	5.68357472620902	4.98675324473701	5.16912742927598	4.77337748094543
+"RYBP"	5.23121198768604	5.37436161947631	6.23003703844305	5.55119878061855	5.57384188118412	5.5792563047706	5.41421976075429	5.08434163260989	5.84043699353804	5.3850716910468	5.33557514901292	5.09181522978358	5.50264441988542	5.42540443783405	6.30997109772858	5.41118081169646	5.41252207568699	6.73398054311485	5.24818641670782	5.41916793194493	5.50264441988542
+"RYK"	8.29487706745477	7.74246675924333	8.01742091784466	7.70740135207226	7.61197091368728	7.54388088484999	7.41564109783476	7.98538323147642	7.79702807490921	7.60631829126407	8.15526499121649	7.55725887141227	7.46582597003145	7.78546393957411	7.87231303302113	7.88781600047008	7.52132081992072	8.28470787435124	7.80762680703914	7.70996682020248	7.65737505002454
+"RYR1"	8.5232546021539	7.68096527762124	8.44217033901427	8.04555638646601	8.10208775485208	7.20838686985306	8.79122745336585	8.17300754763051	7.02872080353541	7.73021221785141	8.49683066070831	7.29425196979185	7.42300948765103	7.81565119071814	6.66917079861726	7.23353167120915	7.77262985748186	8.12852033561351	7.55330090682072	7.9838484764178	7.18543673729045
+"RYR2"	6.87921490901847	8.65610785142544	9.04750790907397	8.10241667636071	8.97525137032861	8.37651374541058	7.04985858782265	8.15672703620915	8.32128403539084	8.98594006937871	7.99065653533815	9.00722228871249	8.26033555421111	7.62137407610028	8.44750214427965	8.10647184646191	9.11992645624485	8.32915969846218	8.12569923070191	8.2971560015646	8.93084282971527
+"RYR3"	9.9502436750656	9.2678690337371	9.61342994690363	9.02786348516863	8.68196624679135	7.39691685194881	9.21926863920213	9.71842103133222	8.27740112319762	7.7198613365678	9.98866227215909	8.86518118617025	7.87858883402686	8.28589844188503	8.57031148109319	8.96686035797946	8.35892874513712	8.575722769751	8.21990978604651	8.48234974471149	8.66159829474906
+"RYR3-DT"	7.49402181449842	6.64912605414952	6.29079601809376	6.70526511693134	6.61969840473883	6.13544087599937	7.11172616640223	7.27263131536736	6.29948980413819	6.36900872199298	6.72828090208505	6.53463441189741	6.52515063137414	6.49941854390688	6.38750883584766	6.76921875348476	6.59196524216548	5.7932757073342	6.46312272553673	6.37431599846289	6.31551796351356
+"S100A1"	10.7300911447072	10.0717297002841	9.80447993803379	9.87716841076454	9.65610706777549	9.29914741630255	10.5380562593858	10.4533803329635	9.38107310042313	9.70950468655023	10.2492900428908	9.8972021086725	9.9071308478315	9.58338351803211	9.65515829464259	9.98296260892014	9.58804472159221	9.76409187026379	9.93153025490927	9.70889603547238	9.24922845524468
+"S100A10"	10.3777336097954	8.66449090724521	8.25860230200033	8.68518737147973	8.47498390699684	9.55283895579662	9.08596801213126	9.18430018581462	8.2867510198569	8.84506866028521	10.1484376181021	9.01258710956053	8.78449906670452	9.09928743396644	8.85488744168147	8.41124938856889	8.61314657314697	8.18146658020575	8.98134485340619	9.51986553970666	9.1044275798524
+"S100A11"	9.11027942921664	7.24053518279628	6.21459409488968	7.48208551533202	7.01719508658125	8.05721649000434	7.6476682103951	7.91754862350781	6.90005137870785	7.79554693500605	7.6180450648489	7.37416589002346	7.99119767825822	7.94882009067592	7.5503862016298	7.08721947053299	6.83555113008241	7.31488752755898	7.61306996153193	8.64575742675408	8.47281959401749
+"S100A11P1"	8.36570805377493	7.25412851672785	6.36393677783381	7.46370780494287	7.00861856875055	7.29951915363831	7.29270926054292	7.5537337496917	7.0260012123097	7.33905610905615	7.29270926054292	7.36387544680352	7.50015365430579	7.74700628201738	7.07682579644483	6.87760161385397	6.91290252978248	7.09357649614086	7.18048207839208	8.14765115852217	7.94734056710155
+"S100A12"	10.6672601892943	5.30483507753345	4.8262390850311	6.64151009342048	5.85455165365061	5.53453848060927	5.88893749005109	8.61561042388035	5.95881571958417	5.98884000624553	4.97406023534738	9.01994735598329	5.91341719427075	6.07808711903178	6.20183422756791	5.28347645368405	5.89491804992479	5.39773386731696	5.86219836836549	8.03915681191729	5.81122852890394
+"S100A14"	5.9966904448307	6.0123171900174	6.38471810860914	6.1048732795906	6.03834977610599	6.66363882670028	6.73804082582063	6.21321252165848	6.25549821211046	6.15914363705652	6.14796780806433	6.27630848298281	6.34000206612279	6.31527283468084	6.28176720474258	6.20275969956973	6.09758596621633	5.89853907759545	6.23423135044496	6.13817071623257	6.08174810198328
+"S100A16"	10.3495351520228	9.80341857602356	9.61208990438889	9.52190824978736	9.38676219707662	9.84449177135	9.90461410632703	9.87300552905748	9.25198567575504	9.36944637032368	10.0596659639827	9.60102228710345	9.22694971491046	9.82822120229443	9.12222713229622	9.54626993560493	9.13069114411838	9.37255989902328	9.30328788026555	9.61956219295597	9.17697213124242
+"S100A2"	5.48443078817688	5.0987859834324	5.0987859834324	4.92233628043504	5.07038883439464	5.27819096389813	5.29334434460367	5.10078730574963	5.0987859834324	5.22028758099249	5.36903598184624	4.99120909973406	5.15682475898615	5.13972703755482	4.87766105810607	5.02450391704341	5.09136785246172	4.95081582181945	4.79677435074051	5.13074810285558	4.99337914588445
+"S100A3"	5.37274351755169	5.24194700477975	5.33959241702955	5.38570916716976	5.28948084130776	6.42291547787249	5.59065756113179	5.47238404453623	5.47238404453623	5.63425258626467	5.55290259963867	5.58742003826149	5.68821109978485	5.52765973676937	5.36162993849981	5.10380766673554	5.33950791978934	5.07002689018446	5.52553701167151	5.4808312614788	5.50076182085259
+"S100A4"	7.6655086404027	6.34553411144613	6.30508981923073	6.86514611500985	6.54504591389396	8.15849637099637	6.61334717672501	6.61407816281805	6.66531598711667	7.48466018159783	6.39354661654303	6.20906305385716	7.26022230818283	7.51318940037787	7.48539350682697	6.27587016073832	6.50638343098255	6.61176102255856	7.22746595780037	6.81744486645742	7.28419572784491
+"S100A5"	5.92553634732532	5.97813443845255	5.7998553555747	6.08187833109397	5.71040427412776	5.95892822037579	6.10948693241766	5.73604757061225	5.97869432322653	5.8327208503213	5.9645812969099	6.0621285241383	6.07215369377146	6.09470636228604	6.12895589128832	5.69274184044891	6.14414616669907	5.73604757061225	5.77174694282653	5.7955350031466	6.18526508130054
+"S100A6"	10.549203691323	9.62705234235514	9.80177095295923	9.90582657794889	9.86543820962157	11.4157726474648	10.1303762295986	10.0995039322027	10.1779359521001	10.45089784657	10.3055657207953	9.96508398491957	10.4531299173164	10.2679085226313	10.5246643937068	9.41545290308552	9.80017513542813	10.1779543533349	10.2714368998907	10.0928441476729	10.0322108835467
+"S100A7A"	4.29382438510411	4.3398200160194	4.07711884091943	4.24104770103345	4.45901860551674	4.3297836651916	4.4992151231892	4.2477078752032	4.3966129820114	4.16772477119934	4.12590318330011	4.42678688551506	4.09218484642109	4.06480594665097	4.25105585768303	4.25105585768303	4.27886075761314	3.98710725148211	4.4011306644068	4.32410847183823	4.30624036667896
+"S100A8"	12.5831461050023	7.6255795928465	4.85964024317043	9.26624386435924	8.7410994568279	7.21117079077486	9.082164911822	11.8854198403717	8.64134028932328	9.95895548898951	5.92580485497422	11.3132796445744	8.71260954380553	8.95352140514511	9.14303397356544	6.11500732607041	9.20471426745558	8.27026945311915	8.93473852835762	10.7683192781316	9.01961902583568
+"S100A9"	10.1428644898105	6.55687355857933	6.41330299058089	7.26062706902531	6.72948555584291	6.36271264063038	7.56960376307478	9.33643870410812	6.87196538177233	7.7295813986884	6.20781804908175	8.33754724554083	7.0762524170018	6.86497670478437	7.0761968177323	5.82971683532043	7.15398393685291	6.59782964981341	7.14631495400798	8.35965284049733	7.06820423010683
+"S100B"	11.2737808543873	11.2800009629857	10.5496988912683	10.3579755959718	10.5820616930971	9.0835151410403	10.9590066668635	11.1673911714221	9.68046343211064	9.78603860581725	12.3988301835278	10.5373001896607	9.85027542584993	9.86584425688867	10.3114870115851	11.8070890011825	10.2726754770526	11.4188227775444	10.7511500874869	10.3741833870481	10.7775950362707
+"S100G"	3.82784550051107	3.57753439582772	3.84103044600373	3.61524728975636	3.78957321851705	3.88322878810002	3.74161650990413	3.73045784126309	3.77301889738027	3.49830563598181	3.47488416761846	3.85435356703497	3.85722540326119	3.94853584158812	3.68020724859924	3.73045784126309	3.71031846596918	3.53332711560419	3.44545436883216	3.54137886718503	3.8868164126363
+"S100P"	6.6830359897325	4.79876239258761	4.73569295590462	4.64375342561637	4.98445838634293	4.87998733306583	5.21161576401797	5.5591735327459	4.94085579410743	4.95771342590708	4.64943639736696	5.56271988073582	5.18728553887735	5.05252094509367	4.97562320393487	4.66400086433442	5.0216212195059	4.72083029964895	5.31668855759888	6.24533970727445	4.72762758753766
+"S100PBP"	8.03712291266128	7.99963188453053	7.94781435184558	7.68147470484776	7.91673621527449	7.67641821171544	7.59368901655086	7.66368633056943	7.66368633056943	7.53059529080259	8.4085556537955	7.43553422744619	7.1842520838492	7.59179068951837	7.54621599357651	8.46653691894773	7.3720139055023	8.66526544600805	7.41166280784434	7.65675599503942	7.41239616648753
+"S100Z"	4.12446218875817	4.01881675177155	3.97591599171805	4.21940885164727	3.90129884553028	3.98915432143566	4.32351478355936	4.08583791360896	4.08583791360896	4.08583791360896	4.06619408613219	4.1532270116119	4.33881105168545	4.1696902310245	3.99637191813246	3.88993544603117	3.97004207697055	4.08583791360896	4.08583791360896	4.23757409269772	4.2568742421271
+"S1PR1"	9.6074146027889	9.08580366892552	8.78439039367143	9.11258860260284	8.76356985099877	8.49854319870494	9.69083893222065	9.22800133798308	9.00171129394946	8.60752907921349	9.15454584566292	8.51609930110447	8.89265533999684	9.00992721605473	8.85465839581933	8.12030383040072	8.92422229085167	8.52877366579014	8.70611074833004	8.64022809647809	8.4839985620719
+"S1PR1-DT"	4.99989873388767	4.42839419337657	4.45955742622692	4.05018106052815	4.57552398077147	4.30797049643975	4.56681969023695	4.09154933630864	3.71031846596918	4.45769242945529	4.4639965426867	4.13916128783504	4.00711878957482	4.21312605983831	3.92917982136175	4.1338155390393	3.97646844296591	4.19818030628423	3.98533038508942	3.9785397743086	4.19818030628423
+"S1PR2"	7.18854376997944	7.2449604130331	7.56773102115341	7.48922807496522	7.21639660378569	8.09731192082152	8.29615260011478	7.33722861275322	7.72641203255412	7.61184846817014	7.34957996851104	7.44142671514352	7.69008308725085	7.95029131295077	7.65610290655507	7.26137099369413	7.47036969392557	7.06769220551436	7.55293655428868	7.48572069268295	7.38176726193445
+"S1PR3"	9.35173316074321	7.15147497268497	7.11376007722477	7.33718408589292	7.41362242023424	8.50981606712456	7.83732656561095	8.34381577976093	7.97831524426321	7.68016018607036	8.868348310971	7.83672142652516	8.06614731522715	8.57378573930299	7.82117377558006	7.23142070892228	7.75206310145446	7.00102439438168	7.93170483277895	7.90261367616131	8.09155274756003
+"S1PR4"	6.52009202403897	6.49576276296102	6.7135132614566	6.75478974827575	6.44624284413587	7.02396415206324	7.13083902574529	6.60199073582971	6.7935448723956	6.78811292591962	6.46259877858098	6.68666920544714	7.00546965975258	7.16751910460399	6.7289739347123	6.59168733180447	6.74798033636066	6.37625269314302	6.58232187892345	6.72983390313682	6.71922347574892
+"S1PR5"	7.64966036017499	8.299011581927	7.58484768620055	7.69598512375756	7.92017845390418	9.12258900762348	7.39984694673079	7.75500762070901	6.73535716778723	7.29013809993748	9.3329197037877	7.93945580745966	6.91550104292855	7.39450655378896	7.3930982983142	9.85873060826303	7.65904965638599	9.76987595659533	7.89347429300992	6.91764131085042	7.41226878422168
+"SAAL1"	6.75724483091665	6.67823787790623	6.17617746565875	6.66075819574762	6.69803986346722	6.45929211262927	6.09398815182691	6.38901605839286	6.68176756160287	6.72270303428956	6.62899450316206	6.4128108787763	6.43144964437831	6.19099452563832	6.55300336943771	7.05228397081097	6.51793434653352	6.99603962572263	6.70184503480271	6.73568890193379	6.66896165850117
+"SAC3D1"	6.95371336136924	6.83542243771881	7.61860520048755	6.96969675435399	6.99377275585554	7.24156265379392	7.04945053506677	6.62908868035246	6.82434524772653	7.09458216397847	6.95991058680473	6.70220002937786	7.2210707769658	6.86926536569357	6.96209428026157	6.84759586476825	6.72885407742138	7.42249046119919	7.00520087440378	7.07991547740585	7.09177206121506
+"SACM1L"	8.78041247445525	9.22401206100586	9.38224068577132	9.27738697575682	9.40077886937015	8.96578803439341	8.47841141118565	9.00952856511687	9.61252035450156	9.34113526550833	9.30620405084247	9.1180989267824	9.59485304802174	8.74938778701393	9.77914758587018	9.35119001956903	9.32479853007792	9.44916686519145	9.38419685740934	9.17910655273265	9.5678352838954
+"SACS"	8.03712291266128	8.77547815352526	9.44343780614055	8.66609121538569	9.28231850031558	8.47030763498775	8.07979091083677	8.59940431137599	9.04663499613394	8.96812232773294	8.56831928700739	8.86920875659048	9.04157354484075	8.45131080368337	9.55469018456713	8.62531440347025	8.93896189548442	9.32567774875126	8.98758284245681	8.73140481054838	9.10541292552467
+"SACS-AS1"	3.57852293560904	3.78970813331306	3.87746214146989	3.76722977195268	3.84782993579339	4.24914927972904	3.78970813331306	3.83905360031298	3.78970813331306	3.71140368005975	3.50901302651735	3.78970813331306	3.83905360031298	4.37548493736676	3.81564464299756	3.78970813331306	3.84054160309622	3.76230803269206	3.79321555871973	3.88509171534632	3.70788618842881
+"SAE1"	8.61711584369411	8.28637513226919	8.06101092441568	8.24105355921514	8.75517109684154	8.11783541373001	8.15566031850949	8.3419190138891	8.69682324032896	9.16123073636367	8.4646755905754	9.13131983568185	8.05888364533572	7.87845939173594	8.34175110481983	8.45789451029523	8.56409404727379	8.36831658881574	8.49949066263531	9.22447588247964	9.14164949626765
+"SAFB"	7.0839875246391	6.7707840294365	7.1880815408068	7.03877756539005	7.19776415828874	7.05131445370407	7.10615237868468	7.00177937374156	7.08770934433836	7.32046481425588	7.37136346170273	7.37479160808014	6.81361303131647	6.84239015578177	6.63615491144467	7.33640795391524	6.96786087448146	7.73540482590853	7.04441365551665	7.18045253589325	7.15538341038998
+"SAFB2"	9.68001151923866	9.43741195730362	9.88554110596565	9.85596560028875	9.38193030788986	9.95893076058238	9.89905231607159	9.97636110125339	9.83937718042573	9.24272103669667	9.69015720195612	9.50249468419597	10.1580382445177	9.8847736887216	10.0726529330278	9.06100248208751	9.71867303050491	9.91454237207497	9.66785070106848	9.21822968403701	9.38713093130331
+"SAGE1"	3.76734904052591	3.50172592356602	3.72246104973835	3.79660283582541	3.50708546373386	4.23604170733946	4.18721199474642	3.62562030675763	3.73331449697746	3.57833059005909	3.3441691426027	3.65731271570136	3.5527195785734	4.01615771219074	3.81719170411587	3.56764644116045	3.58086563033408	3.24951820117819	3.63734615191803	3.48515523147129	3.67157291028636
+"SALL1"	8.42018485096246	8.12575079521734	7.24626247735603	8.04487499334515	7.69115079634047	7.10110197277995	7.99118051473068	8.05699236823065	7.51674691937428	7.13411727932565	8.71393935322846	6.61464182768667	7.48710196852845	7.72652018800119	7.25220582998194	9.20440977981813	7.17807361292493	9.17749115848589	7.36555469355954	7.17586495772358	7.13528421128228
+"SALL2"	10.5752284103902	9.98648161777726	9.89684618697153	9.82049267074204	9.81316558342941	9.45230287221819	10.2289977822119	9.62752216248528	9.91674396233851	9.82527942012247	10.1505698292961	9.66601173213612	9.65483629301666	10.1370057733536	9.72614746615212	9.72307645640022	9.6256197915183	9.69650590211431	9.92179507377765	9.77332962434522	9.65397510850193
+"SALL4"	5.66128153398499	5.65959700224224	5.25355554344674	5.69376946251472	5.55639054738076	5.69867262472415	5.79317331938953	5.53876835473784	5.62497306032112	5.69360951785239	5.68446084659595	5.71074999541612	5.71857540341333	5.66128153398499	5.48936374944559	5.66128153398499	5.73409259132788	5.45124121372987	5.62436746640391	5.5803299730716	5.87247733621087
+"SAMD10"	6.72709687626626	6.90118202974019	6.88124952441306	7.00664064408184	6.97055520255407	7.14496332710353	7.30561251214675	6.62562183489401	6.95012136539188	6.92094884818202	6.86242616718991	6.96103336773102	7.09026805046758	7.08099012545972	6.62666752626276	6.71890202098195	6.88801532178395	6.49423943161767	6.95402328497	7.04216789006033	7.01269021511506
+"SAMD11"	7.2596887710881	6.73694575981478	6.41230898635488	7.02098802950242	6.55719875071165	6.53165043277685	7.23552398543856	6.50157595316985	6.8259028123819	6.7932570645231	6.89768975269472	6.86475640192663	7.05182542979512	6.8446094490886	6.89696720716265	7.19975009516092	6.91367201553924	6.86438154239685	6.90645335388788	6.95811662977429	6.79487538622157
+"SAMD12"	3.50181006323764	3.63758272458905	3.73839527498852	3.49385787375155	3.76296148314273	3.57220833064118	3.70261976575761	3.33139356212549	3.67324016570146	3.56701533448409	3.39937143834143	4.27989221503546	3.28881978606701	3.6941932833091	3.20477234363591	3.61250058056097	3.71031846596918	3.92385066542574	3.7300145389108	3.61382410409903	3.34679080349843
+"SAMD14"	7.47512142903662	7.33259275057317	8.0876310722637	7.91304195886545	7.87614110681372	7.7286421888768	7.45476600989855	7.48635039525914	8.07659381831432	7.79662013855612	6.85440327972461	7.75895220775039	7.71130062134192	7.65177898859526	7.53902862745834	7.05642191365337	7.53922933538389	7.03734470281543	7.80454764113975	8.44742570286413	7.70593702140982
+"SAMD15"	4.07346529446695	3.77730257189098	3.76827432444387	4.04531725787939	3.45400239334678	3.80885678330554	4.16228943770649	3.79895038196871	3.64244440333094	3.88120985087017	3.77912416711804	3.96558760062073	3.86621452237521	3.73009321776422	3.79007431441323	3.7038436429279	3.83638972249024	3.78317662024122	3.8567102637417	3.80825044269741	3.95621980551358
+"SAMD3"	3.20470089346519	3.49564964900318	3.65912245064231	3.50112072533505	3.19406045127427	3.35859710370461	3.31496369465964	3.39555404955013	3.46167568535192	3.38613004288932	3.38613004288932	3.38613004288932	3.25094619444937	3.3770077229851	3.37529893542131	3.67634476588433	3.38023401846766	3.24802444839303	3.25509056848151	3.27315094145984	3.5448582959148
+"SAMD4A"	6.87732803618652	6.18714095004152	5.45990875914318	5.8410201701942	5.74981846912801	6.38450202883648	7.07635114826237	7.50251065847211	6.26314351849533	6.48199457666455	6.20663137296835	6.25348608244276	6.65552537800902	6.61914783289646	6.49273740036318	6.41018030696408	6.0276423164702	5.75846964701329	6.14764974192332	5.90646778508535	6.65538049459972
+"SAMD4B"	8.24345862125978	8.51647455691127	8.33800670699754	8.22173175049494	8.16344482519121	8.72210431709397	7.7195868986931	8.04680541233426	7.5247295454083	7.50686360842331	8.19860360984867	8.09091548875551	7.64882188435455	8.06559896111484	7.9734528073227	8.89855744138118	7.9020193829779	8.57693386348498	7.92697169424184	7.527780649694	8.05154165134383
+"SAMD5"	4.08022174867621	4.45937925513202	4.16575718663833	4.12543926380819	3.76417120678423	4.09524371350091	4.0546406078292	4.0314940809451	4.48239734187673	4.49665310682498	4.03718410995017	4.50254684674866	4.16575718663833	4.36336732773387	4.08562053624269	4.07326403547626	4.15776741417862	3.86753750576533	4.16575718663833	4.83133970251234	4.32998783604837
+"SAMD8"	6.64427095259428	6.58553402018609	5.32692006831047	6.13817646464252	6.31007230117486	5.36670104623096	6.40562483714724	6.53409508706507	6.2293151124559	6.62721995695536	6.50846609442797	6.36518168044999	5.93708693403582	5.90586837045306	5.72819661853945	6.81445519796467	6.39976519623215	6.43032671413416	6.23692642897881	6.44014798989764	6.61293850631272
+"SAMD9"	4.8851504014398	4.64051885723359	4.59429964066433	4.68824034301101	4.64767714511886	5.14240433426873	5.03836675658172	4.57889779079189	4.38269253810634	4.88290801575927	4.70330590175963	4.50027435686551	4.74844133058209	5.26608835535199	4.6211831145898	4.70330590175963	4.66190427954982	5.24502801903817	5.05568633341458	4.64090324905739	4.89616695140839
+"SAMD9L"	8.29617953213251	7.01614958572075	6.42258570121014	5.66266875780605	5.95764356135172	6.30240664538265	6.61423944576083	6.89021592100258	5.74275868899638	5.87275755679131	7.14851600415652	5.55683250277501	5.94564199493907	6.44945826316494	5.88041266435709	6.43582403092775	5.93677191233105	6.08987375607585	6.22412798381771	6.58144787296872	6.5065023713494
+"SAMHD1"	7.41543000246342	6.08811604741953	4.723765533726	6.79725967913064	5.73481365575181	5.26342578631093	7.2210707769658	7.17109077260878	6.54182790192457	6.81933036933085	5.73013058371523	6.35512627234424	6.815385397274	6.43287928297782	6.40688157650656	5.82918613343657	6.40688157650656	6.10110759773169	6.40889361369756	6.4256271637761	6.60979556467137
+"SAMM50"	8.12130499356714	7.61232015480436	8.48445264006215	7.35489680362326	8.29086184368639	7.96349878529753	7.36332215064177	7.52201743511777	7.72817292595797	8.19107630186827	7.7531976160712	7.8375028204509	7.15635197328865	7.4968131392806	7.42664644961838	8.06570807937181	7.81641008748268	8.55754620717159	7.41405934512675	8.37838415400613	7.84687665935157
+"SAMMSON"	3.05546174570435	3.04967053372163	3.11380275112367	3.42598080769835	3.22848672664256	3.04410018917988	3.12505644817403	3.10847101057309	3.08391667015817	3.1169041951534	3.011421946986	3.11844046909073	3.01898755452345	3.16429309367753	3.19416702682349	2.96085464009179	3.28181674272368	3.02767336379521	3.30124911229848	3.21908313239599	3.13095982077173
+"SAMSN1"	6.58963020902087	5.13539356625688	4.12782061618814	4.2895584519818	4.52262179494422	4.25183537830643	4.49852897839739	5.79389670689641	4.2636540622745	4.59951004539648	5.64760914081819	4.83704500659801	5.42566749853412	4.88855011681298	5.53231186817529	4.73204686985946	5.00611042719393	6.13487106266798	4.46375908054473	5.05289022394283	6.19057899028532
+"SANBR"	7.9015764947672	8.32239654071973	8.57300962478087	8.26027583865366	8.29761426077958	8.24266321673925	7.80717013043376	8.01464661792556	8.34968546270542	8.15217424985021	8.23700789461023	8.13953667239056	8.56672211792718	8.27694157472369	8.68727758990932	8.11203691952437	8.21458012032573	8.23700789461023	8.04023367039403	7.94658767293874	8.43945405251956
+"SAP130"	7.96046815918786	7.69120460121473	7.83952122881877	7.60725405961544	8.09203434016336	7.76280316501817	7.80739431485602	7.90878274290518	7.66620923829996	7.68784461509621	7.64326139374736	7.60414770174426	7.40176493833892	7.62175719180395	7.51622755348283	7.84004849330461	7.72172390768048	8.19518470778553	7.47984386902742	8.03961026325276	7.47151295219131
+"SAP18"	9.09209389890959	8.85029600050179	9.10465461964008	8.73758718202536	8.93713728120172	9.41630893286881	8.98013524417771	8.9462498814033	8.45219175318339	8.90713821899138	9.28596672847949	8.96055348356605	9.09439907239513	9.10666639428014	9.00138798247593	8.89124142093173	8.69588597284715	9.28537614628789	8.66458932382196	8.7093311945364	8.94244645889865
+"SAP30"	8.93407852852318	8.03270407771636	7.49035564200164	8.55501936248375	7.96637858157861	7.35435643212295	7.86239012110025	8.25551663119171	8.26873468740325	8.21996016186038	8.49046207291534	7.8056726918514	7.94811923309411	7.71821847899584	8.31346169289626	8.62211489626374	8.06498732541826	8.85785034017396	8.29251613012867	8.09914212047346	8.07405189408693
+"SAP30-DT"	3.5417072311806	3.51323450840593	3.62301954417054	3.4932670114011	3.52970537206662	3.60336000999356	3.52970537206662	3.40522504114507	3.61778136701801	3.43086306140038	3.52820850647182	3.56670345341385	3.41603442714824	3.46580754999538	3.78786214089132	3.4005431365136	3.74627256205794	3.72314585211699	3.55491888448023	3.45602211962737	3.46733105352873
+"SAP30BP"	8.31786040338608	7.80099802665519	7.83922499901213	7.29817320098478	7.71018576660114	7.81943573337927	7.38657574876588	7.76997141012594	7.24709747348562	7.70961634804153	8.30815013557652	7.87457885920657	6.78457627332221	7.38721598085077	7.13670522992566	8.03959464990427	7.43073109306163	8.12791257443648	7.67101241068517	7.93796002035944	7.64424375706763
+"SAP30L"	7.07277449517672	6.197454489319	6.10069534675448	6.46976359131513	6.34817364647977	6.90219227351038	7.25580165665327	7.17001757766598	6.62036162744879	6.67610265926061	6.37336265056341	6.33571552327933	6.70513050595095	6.77139156924759	6.8700008077611	6.46886868305478	6.4623395028552	6.61978292984515	6.79071787803757	6.49554324241038	6.533402047023
+"SAPCD2"	7.57675904680425	7.92546340930065	7.72072816312352	7.57319563347093	7.63439358094565	8.35765690574973	8.00544613294648	7.46958483844903	7.64673930960146	7.66309296260486	7.65109559154241	7.54582900284038	7.69449462502614	8.03075772414715	7.46119206760534	7.76722837320356	7.56587154966013	8.0781199070017	7.43401087900585	7.66309296260486	7.33305084959101
+"SAR1A"	6.840444995361	4.91223774947936	4.87805871790725	6.20999471055696	4.83596018713169	6.07669599927074	6.63894568582505	6.33582756183541	5.23462637174002	5.14103545073847	5.30619359943095	5.39770167148801	6.07650775961619	5.22731012523348	5.31926867590173	6.87365275032686	5.12778195146933	4.73137244481982	6.28113480941599	5.38213022856018	4.85273084146007
+"SAR1B"	5.73971809950586	6.13210074475283	5.63472959346612	6.02682441759207	5.81535574523172	5.34203765750402	6.24951746304979	5.87466288782013	5.9108134942298	7.07637200547968	6.54320244827965	6.08570624608257	6.0432628534809	5.92073530254049	5.66696288922993	6.73253309867692	5.95897888462817	7.01160354455017	5.96258746464572	6.30099790756594	6.25560245669969
+"SARAF"	10.9367673820039	11.3495507476586	11.5524566849767	11.2898368384893	11.5868200347854	10.6987451636891	10.8786873156375	11.2313248680336	11.3602359786992	11.5267782903061	11.469281521072	11.5039967701473	11.2212070603713	10.6677679983532	11.3883067655673	11.6056965394053	11.5131393526583	11.4992317692769	11.4302232483835	11.5659012053321	11.4797269006894
+"SARDH"	5.35184058443435	4.96947660174271	5.49164918044924	5.60849587764498	5.39687887134614	5.60447798925243	6.16579644533373	5.67388983437309	5.35808413241576	5.5334267498209	5.21109745972274	5.47547943964021	5.35171763016434	5.66685047904408	5.28277612434773	4.72083029964895	5.44081051422136	5.14353137493147	5.20760419088452	5.28103314495591	5.28777077495767
+"SARM1"	5.03244042047958	5.04003097162902	4.78672948028106	5.15656373625031	4.33830710630645	4.95237232351232	5.48518791465995	4.94439365734961	5.41983906122458	4.91912212229306	4.96880247126182	5.0115481785063	5.24832085072068	5.260491358047	5.2549553317999	4.87469771881908	5.19852981855573	4.709439432205	4.99635135287797	5.11346035125249	5.02204604818787
+"SARNP"	5.89005534752987	5.88558989337631	5.78073435099412	6.0647693070408	6.10587410575091	6.11861947196445	5.74089889483596	6.01367487968476	5.96668269176176	6.00116121784958	5.92148778527835	5.91376500817163	6.04382505485922	5.83151685684707	6.28204187022045	6.27424351772222	5.91418624436992	6.29372079860063	5.91040364190845	5.91423351962887	5.7159318414841
+"SARS1"	9.4931639113918	9.53917067141857	9.97308905329332	9.22809845253561	10.196917082746	9.48778268478218	9.05928580858965	9.44589441853836	9.69456047099401	10.224261742494	9.46805977140771	10.1309986256897	9.04947628409725	8.9576725990728	9.54919610714698	10.1875872146829	9.75330530875637	10.0242067104878	9.44929507227671	10.4542131988093	10.3634904546742
+"SART1"	7.8482140949179	7.56808835718292	8.10044166043619	7.60537264536101	7.75658091585751	8.34881719581123	7.9968235609449	7.73245526267715	7.6813508304832	7.5857238812094	7.89623180184569	7.62750562968841	7.73245526267715	7.86289372728638	7.51762381669839	7.62334746301895	7.54177291979054	8.08088011750336	7.53660230367754	7.77663565708317	7.63410506672153
+"SART3"	8.37750318177242	8.2929723219513	8.49211806592332	8.23456979267431	8.20845931686969	7.9652118620403	7.71574867214908	8.3195572001722	8.13802766899844	7.88451929588955	8.31870289026709	8.0559171905521	8.08494955415354	8.12163279812824	8.43589411455656	8.37750318177242	8.19747859243991	8.6164468814065	8.20845931686969	7.98006261084939	8.16182254194602
+"SASH1"	11.328278939881	10.4295576920814	10.4102388736646	10.6476046483548	10.5300641907903	11.2528026982202	11.563986650549	10.7651135375106	10.6259065251768	10.2158114742583	10.631060186242	9.95516028511102	10.9591395902902	11.1598533054739	10.9751721939579	10.6618571599694	10.4437885931754	10.7726141839388	10.5770337570726	10.2062950859841	9.93673467699328
+"SASS6"	4.61489584310069	4.7875820648623	4.80650224811287	4.55720547901682	4.66208527612897	4.86949419493956	4.4121483746263	4.5909138911467	4.54356124505864	4.3730736759432	4.73055160620326	4.35790766605167	4.43516516904165	4.6041114105318	4.58701137776152	5.35264604083951	4.54007940487679	5.0203105949018	4.83301288133813	4.4092710479652	4.51797461752616
+"SAT1"	11.4620626643913	10.7295630063761	10.3448274242315	10.7951888907808	10.4709245471308	11.1507645282418	10.7718191046866	11.8522874967576	10.711968620559	10.7467255263563	10.673262813042	10.8113031416965	11.2044262787848	11.067694552678	10.9910269019669	10.1987005075751	11.262434064963	10.3653184096398	10.9793430763754	10.6243772428863	10.6832088761153
+"SAT2"	9.86074271017446	9.8636499906309	10.0008603786188	9.67041508037419	9.55824695870737	9.84739912738001	9.83264145703193	9.82719818990851	10.0200548418073	10.0621829166761	9.97876030084418	9.70429439149474	10.125384985778	9.93644780497497	10.1890219443175	9.78271438750607	9.80019499049708	9.84174937451775	10.1286023511656	9.94905881622117	9.82733507349312
+"SATB1"	6.33707127655759	7.64424375706763	8.18910654943022	7.49646621069474	8.10264856383736	7.32752818002383	6.61871647982429	7.50976121404735	7.97846157533555	8.25670640532155	6.65704617145434	7.70506727530906	7.78130134915101	7.20666227272657	8.14515897933288	7.17451061608573	8.02668907136596	7.67881897244057	8.01341618163566	8.09863891563289	8.13948348978552
+"SATB2"	8.58850263500874	9.90101975346642	9.92774415947173	9.88472122839652	9.96233521981167	9.49015195282665	8.35506335616452	9.56301875039659	10.2039038697889	9.76033856709275	9.02384905521334	10.0353400107807	9.79048762882432	9.12700816626991	10.0512912204329	9.11363408319824	10.2196964626483	9.69703147214881	10.0386334811668	9.94777747612799	9.65003308529575
+"SATB2-AS1"	5.92548766041391	7.2000225425836	7.57175029838322	6.80364967037553	7.19565315107747	6.24508275967363	5.23342700124464	6.92529782056543	6.70093388428179	6.55468281999552	6.33016252195468	7.3560338315259	6.85051603263522	5.98089498368613	7.00594470937492	6.59362775271197	6.96585487579743	6.87111633713863	6.57396252374621	6.86998651292486	6.52553188861967
+"SAV1"	6.60495275352204	6.30421080620899	6.26701996843726	6.92392845916793	6.03223528206344	5.75012720550715	6.53399121655923	6.82303867063866	6.70803636154787	6.19539420556328	7.34105152479047	6.41098472005798	6.89059486484559	6.80494485516618	6.98701480063661	6.77340393459821	6.45992759076211	6.63057375893622	6.76759869864394	6.36550151727985	6.35564005642024
+"SAXO1"	4.46003558730234	4.57126174463518	4.30298481497243	4.62196608927298	4.71882422406761	4.51786104956748	4.76968755238661	4.51615399486734	4.70335498018077	4.73150203762978	4.44888953063239	4.67084066211563	4.78504027282733	4.92414306804897	4.76192593675196	4.55902608588233	4.7578482673581	4.4060365315525	4.50226764074778	4.60428282731758	4.82439732029474
+"SAXO2"	3.19671838240316	3.23604709338164	3.57267463455611	3.43228805582793	3.39206815145124	3.1578248382658	3.17812753412363	3.1473938021197	3.67879135309844	3.38613004288932	3.38613004288932	3.22782028768624	3.38613004288932	3.45984440316697	3.5028440975136	3.47115147475991	3.39810421114475	4.16827568315656	3.26276450632591	3.22771469559046	3.43622491816945
+"SAYSD1"	7.5534846187795	7.37490891662426	7.4276273864015	7.19740839198128	7.25907659365751	7.25837503261572	7.02499892320432	7.36418813201365	7.4575424551155	7.49304662138133	7.44988388869884	7.00120019276129	6.72694410541064	6.76165739823504	7.24585105448048	7.99739507847306	7.06868229270353	7.74855338068211	7.46242588786811	7.48109865367254	7.03045031443337
+"SBF1"	7.34694534529823	7.2646183803229	6.7907772780761	7.15250826296588	7.27738617000629	7.19458695793764	7.70345158160046	7.37437960173023	7.40453675769915	7.80862054158973	7.28976210990452	7.69319767411889	7.41388112668261	7.40176208353401	6.90535977211987	7.46909681390526	7.50254712780724	7.56389548353831	7.63388136652485	7.60667842252652	8.03196758697164
+"SBF2"	6.77140844284819	7.22674390803709	7.05741336596542	6.77140844284819	6.93811125598975	7.14178803557684	6.49469330466977	6.93967147453111	5.9941176032779	6.64864781856938	6.88313285346244	7.39951225073413	6.34174491911625	6.29071116778072	6.58702307755287	6.48756921783513	6.92810756922115	6.66101691426689	6.77140844284819	6.52649040786704	6.4628278302695
+"SBF2-AS1"	5.16578644888089	4.87471677361316	4.74687803156437	4.70684496068128	4.64257718809396	4.90230200845999	4.96726348287624	4.98449169816599	4.84374304762805	4.63538763963141	4.623970110315	4.85628364439949	4.95508363004472	4.81353167282225	5.30149625875562	4.60821959110837	4.7939943459758	4.50094352278811	4.75576951465285	4.92457242744616	4.71321772784691
+"SBK1"	8.08132212472527	8.4644174425172	8.56120647367717	8.62468063267676	8.57876526607362	8.49308190571251	8.69417187499497	8.62433251567864	8.64270574798759	8.22430281161975	7.99753684868193	8.39626546103412	9.13013789748328	8.77257234771852	8.82138810442931	7.57895461935246	8.58247426840884	7.78098397579703	8.35988098200517	8.75336037553522	8.52700079444979
+"SBNO1"	4.44644524584967	4.39962384829231	4.59074342710184	4.6422990396455	4.61284354163675	4.34919816639058	4.20479628536753	4.49957132448358	5.21239126642577	4.66442398185167	4.4639965426867	4.48040830807598	5.02537642972494	4.12981651342373	5.18825511762825	4.52892425011237	4.51918947622553	4.68597392092011	4.23763356531625	4.9251844498968	4.67936849752813
+"SBNO1-AS1"	6.16196057243542	5.87392215693814	6.33442638674224	6.1635942063619	5.7921855263927	6.55700158065773	6.84135474508562	6.18326665132187	6.08341486595403	6.30298996752197	5.97682410938118	6.23815721828734	6.42019118745503	6.6156407253714	6.21497433319916	5.88344006559198	6.20293603378033	5.74776426701311	6.39367003864938	6.18022781722777	6.03314313003854
+"SBSN"	6.24934838511646	6.54588646081211	6.48687308914659	6.54229456247717	6.45709079915352	7.17332184971239	7.4751429561191	6.61250238367679	6.71824969846691	6.64225527725087	6.11720977824766	6.35373909038736	6.85342867391527	7.22545303334894	6.80967222703823	6.06425536978966	6.31765771080983	6.1419016339454	6.68712399442985	6.53463566115236	6.64225527725087
+"SBSPON"	4.58411995812689	4.26309829455197	4.26924412765288	4.07162858494386	4.02587939434826	4.22418977974962	4.18075952086057	4.46393985963986	4.26980257342206	4.10496341161751	5.77601205469771	4.26924412765288	4.34179517781456	4.37480806652238	4.05156267803848	4.91513504596836	4.18320198150715	3.98358406985254	4.51656842719171	4.12474032652402	4.20213157836932
+"SC5D"	6.58937347235833	7.2388568613984	5.46861320902774	6.93743678941121	6.93010490959393	7.26887279294366	7.19526482746443	7.08731560254845	7.04503426557508	7.32596175808493	6.97794452456426	7.29474945078459	7.3226302377238	6.73869302837042	7.16281255123941	7.17066108590822	7.15728843446644	7.28104838965062	7.16281255123941	7.13423579471058	7.66875954503119
+"SCAF1"	7.55466582529326	7.72937911278242	7.96597296102157	7.98852038109745	7.97010107766009	8.35090811066163	8.06385237146438	7.60341728694748	7.41015760463178	8.04664649115851	7.81717506948465	8.13176595675963	8.08186104035175	7.92525613999039	7.5994833745434	7.67010939466951	7.79102842676858	7.70908753542868	7.60597766048164	7.86766759015003	7.85849445404462
+"SCAF11"	5.658019892711	5.31560787295187	4.96730758034107	5.35367717411113	5.07816335444383	4.99907729746241	5.01523904706406	5.45950075712098	4.94049704057173	4.83863486675641	6.30997109772858	5.34759079676066	5.41771616954982	5.17734897329578	5.13163543424804	5.37531942714713	5.1716869876303	5.47177464542786	5.32420970042775	4.96012873578088	5.09020414799387
+"SCAF4"	5.93219218514773	6.07919803886596	6.17846781653171	6.22264334871382	5.70358726150156	6.38035417328644	6.27085924158496	6.26609742985398	5.68747266172459	5.05096872258926	5.9841263243859	5.64699920032155	6.25050603718589	6.29075762094131	6.42284365482382	5.81155702734952	5.67033752574154	6.07519281337104	5.87081885486069	5.08228802741149	5.51421278059198
+"SCAF8"	8.34173556299235	8.35779097599616	8.41699050351201	8.11820592221559	8.32205406055131	8.05339654628	7.52703120143254	7.86195800131441	8.10930295466327	8.22273912739988	8.64679499476454	7.75730906253448	7.7499357655572	7.82562587450399	8.18062905894637	8.45604691930596	7.65962444994942	8.67110021615272	7.8717068843421	8.14739571250815	8.11820592221559
+"SCAI"	6.80778080941494	8.33584298843381	7.31240375494552	8.39070707793579	7.43063623288071	6.56691552845465	6.83346184220554	7.93503629713179	8.27792062419759	8.06068682408241	7.84343609283865	8.0956106863466	8.93282563774943	7.43664623334686	8.49853045118143	7.22796126628441	8.45543681104747	6.49423943161767	8.28894920222098	8.22722273663181	8.01975496855737
+"SCAMP1"	6.95371336136924	7.2301848288613	5.57549881282126	6.74525763115016	7.95700035404962	5.53433487350745	6.1336855788189	7.05648202966732	7.14702381127744	8.16389656925017	7.34532681194146	8.01495873581792	6.8106637054566	6.10485091195888	6.73003667071493	7.7579467343698	7.35740234491522	7.53045424424619	7.14733516196404	7.67037086374517	8.10067119589508
+"SCAMP1-AS1"	6.96254483606336	7.1546894870474	7.51843238145317	7.00702910663615	7.20280067823438	7.14258452782295	6.77387269433038	6.81843341016338	6.72732442102473	7.3854670713739	7.39134312418958	7.103029788469	6.3643480768716	7.28959242918781	6.66846527075555	7.98568307778316	6.85627934396362	7.55064702375251	6.97046689253006	7.33075099714481	6.55484281616866
+"SCAMP2"	9.59877286508334	9.20209304563789	8.64196783612092	8.99956701540425	8.60236258685761	8.93689839561713	9.22452159245908	8.96288977557422	8.74462161043828	8.89342343087994	9.43667828209016	8.67899973661664	8.65487978648155	9.08427128727698	8.60693098301887	9.35969381245475	8.81491001416287	9.10632754066572	9.03311204187815	9.12783480537182	8.80008546201777
+"SCAMP4"	6.62107915229458	6.57718116590609	5.96255919291856	6.47947468356274	6.10250023585049	6.36580743623057	6.840191433801	6.62041305000256	6.65508260635535	7.05638144262496	6.62041305000256	7.12579991392483	6.47816740162798	6.68211468723758	5.8027959687801	7.50349341947646	6.60305247539462	6.82529002817688	6.27334523490347	6.72367395097838	6.87922056530913
+"SCAMP5"	9.5436711808357	10.1539216267592	10.5629864849741	10.096004211256	10.507647299474	10.2521394327916	9.8554557660804	9.80248778054397	10.3824816118066	10.7287848005457	9.78074475343145	10.6272669939061	10.1539216267592	9.76826885988716	9.94257794641893	9.89414699087194	10.6452470814356	9.96379900538982	9.98631168859865	10.9045602216647	10.7189293654833
+"SCAND1"	9.00282058089167	8.7277792314803	9.49537988220672	8.5901672579428	9.06278630133524	8.81887132936268	8.39108403206051	8.60412597068452	8.66731850464807	9.22283612344802	8.78327303057438	8.68985298675792	8.48724644507047	8.42037268846667	8.59413588553351	8.72498998539752	8.4294447215122	9.09536166199217	8.53965803409047	9.19181511830633	8.72440129530349
+"SCAND3"	5.24479821296506	5.07668603755023	5.72982639210554	5.44750127162639	6.01839984652521	5.14441223782887	4.51869740787611	5.01666008653707	5.81725939502261	5.68252365059641	4.8632667664496	5.53570327558074	5.37366736385975	4.87518367949646	5.72819661853945	5.03336484260304	5.67705605091741	5.36660008786604	5.39096571044835	5.90595889669898	5.78277076751035
+"SCAP"	9.45378479139079	9.27870584315344	9.49517198576427	9.14470980877661	9.08613956287456	9.34051910328404	9.23115969794454	9.11841198345604	9.19612481107139	9.22102641816299	9.19716982344269	9.12487563554355	9.25705948771721	9.25972413091456	8.90786629580097	9.31505345185071	9.22298212712602	9.32548180062023	9.21515471722413	9.22102641816299	9.17077496361024
+"SCAPER"	6.56777760043105	6.92600641331256	6.72829569554265	6.30997109772858	6.51672577353179	7.02119480697635	6.66222793985835	6.99118523231253	6.38976182402746	6.28046198524768	6.12575832079122	6.91067332994823	6.77520649407906	6.43947192642267	6.3969801692696	6.660337880218	6.411812452862	6.34452710172034	6.93249793007217	6.10010632392508	5.99309413796711
+"SCARA3"	8.7088634229756	6.99362868809575	6.69622642651301	7.41971356779729	6.78473285533845	6.6468831374347	8.25193090756157	8.85107235521775	7.48329495771934	6.58299560739589	7.33288928198974	7.2937154890918	7.5135351288633	7.46748050014842	8.13798184599208	5.96584515225606	7.15296900595335	6.4031320946979	7.52648971053527	7.10392243104888	7.13953745037568
+"SCARA5"	3.92916292807069	4.19705061207009	4.45320042104555	3.97521665806832	4.0534826001801	4.34144803444326	4.12731520753789	4.20431419776881	3.66457559047517	4.68034468066846	3.63354183604128	4.02084233580196	3.73097908758247	4.07837280585253	3.86839346915858	3.85382372430537	3.79340624972589	3.89399882538423	4.57498914609886	6.82918373721637	4.01450139307763
+"SCARB1"	9.00075166300585	8.26994941410188	8.12302348670303	8.18118317682853	8.06678745193259	8.93460622675213	8.35636459128072	8.03678866274524	7.87931577034607	7.97624465049778	8.63065222969254	8.06695702024756	8.52599970664185	8.64503792023139	8.13261150272824	8.18699663374088	8.34535129346768	8.43295149750642	7.97212600064483	8.52603714119471	7.93428409137518
+"SCARB2"	9.03731453217412	9.68786473952156	7.90733047083224	8.78490159406589	9.13847032023638	7.55218999015805	8.61368046044261	8.80237520356465	8.41538647127213	9.57121868018126	10.2066809818622	9.36715037030011	8.41304929339832	8.13526406128423	7.98445501980153	10.4551573430571	9.16754990647763	10.0883940644361	8.88036740664733	8.91098147983573	9.33439810108063
+"SCARF2"	4.50142810652005	4.73288620082102	4.68375079656576	4.83919575007432	4.33199809794632	4.78975850850201	4.93781628432685	4.57406882056414	4.77010846769234	4.64236337368733	4.77010846769234	4.80419531992814	5.03426139891918	4.99344437235305	4.67763283138227	4.33352627405408	5.13934392530032	4.69792528496476	5.28021517478877	3.90027089939618	4.98655373786361
+"SCART1"	5.84148146121396	6.12971854960163	6.01256820733379	5.69785286668688	5.70451226906938	5.5759943546701	5.39984856641512	5.71011156651643	5.88950031193105	5.68252365059641	5.93660180693902	5.8646518966656	5.84863332145404	5.79781679238016	5.82802582317739	6.0695470090043	6.06630590866418	5.98158944870816	5.70628718577178	5.75678696393141	6.01417988540659
+"SCAT1"	4.1241324563681	4.29266959241524	4.40916569552852	4.48262668293738	4.37587902535946	4.31023077558932	4.27172371108572	4.29938893389525	4.44605493483553	4.34057268666813	4.337333450826	4.38145434706156	4.31761384728845	4.45064577191731	4.38561769727431	4.34731504354511	4.44827260426338	4.0758490354345	4.45176078339983	4.41644281758322	4.30434947826476
+"SCCPDH"	8.70454894925455	8.783619316887	8.44082286473633	8.45819017902325	8.86618133181999	8.2984246904601	8.37092159888918	8.72420986029006	8.59898320974693	9.09842081888253	9.0228107970394	8.8562659766502	7.91186440251567	8.29422269744353	8.25911111054252	9.58519179029728	8.73923191520288	9.55787574773011	8.77461698823422	8.81503499589506	8.72518420128799
+"SCD"	9.2652511307781	10.5741814106699	7.7407458162813	9.32065319884189	9.20510042758131	8.68957836618904	8.96802957357074	9.52618513705973	8.62944636843753	9.32173472137351	10.5596844131735	9.69593509821942	8.86785114839759	8.94246994336782	8.46522094698756	10.7489362821712	9.0244631998942	10.3320089643456	9.0807801193282	8.67412978019607	9.02583783610718
+"SCD5"	9.37688006427816	9.77294729386935	7.41860512386737	9.2951165342042	8.39683480400423	6.47057810567785	8.96076602593898	9.65432298474795	8.97736274629317	9.57713993257261	9.89544536239995	9.63460606034021	8.64159297395208	7.93164612243531	8.08447779086707	9.77253105748046	9.22539434839918	8.83817268993946	8.89800895611867	8.72988426189495	8.75797340796297
+"SCEL"	2.78950227099875	2.85545462537176	2.88004346164958	2.76695544737905	3.03130452397728	3.24708121382095	2.81215246633895	2.85986227271072	3.06658805331637	3.02758479927798	2.72028320678038	3.01480010822779	2.99877089782277	3.19613740539147	2.89334938526495	2.95170143281386	2.82400959583072	2.84641503068829	2.87402849987419	2.89334938526495	2.65678980965478
+"SCFD1"	6.46886950588064	6.45929855639264	6.7361555928172	6.56183395492374	6.37256333078597	6.93620785166882	6.02404148602284	6.78697796030716	6.39540301995986	5.99476758792434	6.68717312187161	6.36285483092013	6.20638054274588	6.34841993553882	6.50004463571946	6.29119829562864	6.41896403418583	6.41896403418583	6.54983768996057	6.18260675497487	6.10172455145438
+"SCFD2"	8.17899164336945	8.43623291783863	8.84064700684511	8.10780350366838	8.81778534348891	8.83797623232721	7.71514504729363	8.24477244786177	8.27204328894373	8.30569549130326	8.18172171203059	8.52245943478464	8.20413245339109	8.18254137233051	8.23260123046202	8.45671871281782	8.38807919014083	8.48485411125451	7.96796612705823	8.81373736109438	8.61546348055837
+"SCG2"	6.89918459802242	8.82459261968569	9.70199702974224	9.01607442879234	9.55321271791194	8.17084566429775	6.60484522805369	8.76921204737785	8.56756097843962	9.10141950496103	8.66882282617057	9.3516889445049	8.60600152360715	7.72897690720587	8.59122641088424	8.71758671649504	9.13253162585027	8.62136104577917	8.67665032150038	9.95751660255474	9.25497918872229
+"SCG3"	8.95964666238196	8.86139135487941	8.50097184436956	8.48508499951194	8.84101424893977	6.51661758100701	8.21893764416055	8.97319996028447	8.42314782536726	8.52963805056192	8.1957532455679	8.40075204413446	8.05811373576012	7.39469022272647	8.12248759368981	7.97157163261842	8.49246619262098	8.07486646691458	8.32449328489924	8.51102377118637	8.2317350584161
+"SCGB1A1"	4.1819865349403	3.93266337046067	3.83224941307555	3.94735505902488	4.13191715981448	4.28151495729152	4.21940891368359	4.07200683129918	3.7123040198991	3.82819737692419	3.7802019508583	4.25097309433702	4.01870073266901	4.15384971522161	4.14594951980794	4.02880496218172	4.01428354314424	4.07000090152546	3.76146792912431	4.02421301551496	4.05299107338745
+"SCGB1D1"	3.55665341620768	3.52847571194412	3.36534386159366	3.48390253964613	3.49545418610892	3.53076751629387	3.60653251758369	3.64891928425928	3.39427760722488	3.48645394178119	3.38613004288932	3.68061866420627	3.63407057234755	3.60653251758369	3.45752167486225	3.56017047488325	3.78026576510991	3.49615483895958	3.7300145389108	3.52714894904805	3.52883924459432
+"SCGB1D2"	6.98442032760267	4.25795442737007	4.7837268639157	4.25339000634491	4.67683614352627	3.9962352403767	4.6656478005912	5.08992534911678	4.29656351198147	4.34620119616649	5.75376005274243	4.9555840738257	4.08921137664866	4.31039026069666	4.19340508373814	4.48176866614789	4.51918947622553	4.12111016678412	4.90333351276525	4.41944741612698	4.190225131018
+"SCGB2A1"	3.05053786051351	3.31335750969039	3.27995844914376	3.46572818011359	3.20722492333442	3.30672965732579	3.17782605187203	3.32930859571177	3.25309721023317	3.40268076808129	3.27836979039356	3.37274847144128	3.54218794976582	3.56939218347019	3.29565693901891	3.62589837570552	3.42501899457456	3.27612790756048	3.28357110349059	3.78317100765488	3.26077756360573
+"SCGB2A2"	3.08538048454461	3.09786650380478	2.79160900306322	3.07075166277356	3.2124733686952	3.02062652175341	3.10898425016743	2.99141934911964	3.24739081327974	2.91116008268719	2.96668626307422	3.00134471721343	3.16386615473725	3.13968559814167	3.11950823403743	3.26565353714639	3.06085797227115	2.91928741107058	3.12844202685743	2.97683231484982	3.13658068256179
+"SCGB2B2"	4.50405516300241	4.69383899051133	4.57018250120868	4.77782782750465	4.68254263137498	4.69305883106573	4.47081773473721	4.34289665370421	4.38215636613029	4.73582735848681	4.54751080496412	4.64058463760674	4.62012245740928	4.44187787351795	4.31452315597411	4.65076451546228	4.79166109165673	4.57018250120868	4.66504859954851	4.56082266093907	4.53958227007653
+"SCGB3A1"	6.38701756939593	6.54972178352876	6.83667744648066	6.50940082941766	6.58290614466791	6.92999057167201	6.88739222711557	6.37589849086243	6.76349855526602	6.59011367548968	6.39843972250184	6.42544366953262	6.65155325572851	6.54146808189856	6.4367141183765	6.41987829960141	6.76715659481	6.13072953243518	6.56197236447677	6.46041591306273	6.51148367052969
+"SCGB3A2"	4.57712214440468	4.89489472577442	4.67991487646644	5.10545853872016	4.77826644533005	5.08875496192648	5.26265897708434	4.83851391392687	5.04116316725176	4.73437719631461	4.67195796599125	5.00197385476445	4.84232537237546	5.23223345337683	4.83851391392687	5.13310192786003	4.83851391392687	4.30010922980124	4.99201304014061	4.51315805132301	4.83851391392687
+"SCGN"	5.61022196665593	5.56250978078759	5.3712317492594	5.81751322096999	5.68343486062702	5.60361862691558	5.10877693193681	5.47704905087315	5.73741025390221	5.84431755519249	5.5941733389914	5.91296210469747	5.91626317432882	6.26793657174369	5.64037192377694	5.70517870206289	5.70517870206289	5.84351153972883	5.82552273555977	5.69726634632371	5.61629990753532
+"SCIN"	8.96635355284024	6.95551629151288	4.79148457512888	5.73659586895848	5.81579086240349	5.36791574146229	5.38027710852216	6.67151225536315	5.79373993266631	5.97688352771695	6.69509232084685	5.57136873014752	5.79821408080338	6.12059484398192	5.86746346839179	5.22881527915291	5.59945580757761	6.39487517988831	6.71098182407071	7.18361522198047	6.89346688287892
+"SCIRT"	5.33512592509882	5.45055612508947	5.55890411844152	5.46457198174753	5.44061319479109	5.39872008005059	5.7623368820317	5.62000034245499	5.480684004123	5.17816411459405	5.34493309577608	5.4970895185505	5.44061319479109	5.65380886559485	5.45034439181726	5.44061319479109	5.44061319479109	5.28287055975675	5.51544075093283	5.28272228443785	5.36056816680891
+"SCLT1"	4.82541568664698	5.87392215693814	5.74028262672357	4.59997285055629	5.75999274188423	4.93367649589345	4.11232039121665	4.78903907012204	4.81801727007821	4.91356583590857	5.45380068108534	5.00915576238264	4.60161996807139	4.44246496741278	4.68590471975604	5.67673035589699	4.93800364515853	5.59504538486097	4.64048748171254	5.43049185935187	4.94844765158214
+"SCLY"	6.2695824894001	6.33320391435386	6.53654650294418	6.56585091432505	6.33744044691671	6.72669633447461	6.67828064681649	6.32240307041763	6.62914823710805	6.45296523418605	6.45944877454038	6.56841951034809	6.62511399727757	6.43185103529219	6.67736669282913	6.74411523989293	6.67213563052241	6.09296476009276	6.49994258284339	6.55432969966653	6.48276293672999
+"SCMH1"	8.07542274022548	7.97676961333491	8.01263535318083	7.88756586449437	7.67086955151719	7.93424117826933	8.11689665284762	7.9718725789264	8.04338628655228	7.91374481693048	7.69391532588137	7.85957749853333	7.99873189804215	7.89529431097081	7.81859513682837	7.59410388670878	7.88035831594577	7.58659365738629	7.96071931437448	7.98624333214646	7.81382040893872
+"SCMH1-DT"	3.86180133359891	3.76662337144195	3.89016913912272	3.71108149828793	4.05162105742268	4.08108650428862	4.10668426618396	3.78619362949831	3.86180133359891	3.6575637951779	3.7983732407654	4.00361838444568	3.91914178472638	4.0041308664383	3.86180133359891	3.88635580999132	3.96451136345045	3.62834841001987	3.92538859654928	3.69967548762565	4.08398918363608
+"SCML1"	7.11840144856448	7.05117177821798	7.00014788518787	6.5016916303635	7.02059160224111	6.97298166974515	6.59855555177668	8.08925772366635	6.8781777033102	6.69883372405107	6.8778295680086	7.27594815605338	6.59600267191235	6.73291406583791	6.8372230396845	6.90237709266814	6.83056487143747	6.91776918071155	6.79255063898504	6.85696283782421	6.69627764462483
+"SCML2"	7.41184193464914	7.57672070387118	7.64489478539793	7.65363010966335	7.63664705594573	7.81927694998412	7.62240848155128	7.57018360149755	7.57481675850853	7.26937990427144	7.47863556025429	7.62800648757086	7.80278665975537	7.73289978304861	7.60260658240409	7.34003012559998	7.56952379504132	7.66526916012208	7.40614296008158	7.49915467696864	7.49943282990516
+"SCML4"	4.10731037402521	4.33584849913004	4.27071915713846	4.28134759339335	4.31294269351132	4.7649228774867	4.35215791895342	4.08095256122461	4.40205948605021	4.20178835698638	4.16547427429933	4.12546527001718	4.19591118049661	4.43593866745529	4.26887828668817	4.0436221771202	4.38709545420311	3.93508458528328	4.18959977415544	4.57116668923247	4.07925289659199
+"SCN10A"	4.55568999303416	4.60527002715978	4.55682675602632	4.96124926747622	4.59910982444834	4.80106088312422	4.70219835777605	4.60527002715978	4.68857259499099	4.6716722458836	4.42172881391034	4.54137198263651	4.70481546837969	4.70520557601931	4.78260610632811	4.7929952676982	4.85510263840008	4.40409782984386	4.60746075830858	4.58272810006167	4.78530512782713
+"SCN11A"	3.19974090533624	3.66537221084382	3.36026416387796	3.28758835200058	3.7168403635657	3.75299109351056	3.56932405477593	3.31813019727633	3.22779508215754	3.4451470478853	3.3466580747592	3.54211226873485	3.2736913444591	3.60828802396954	3.64131926582852	3.73390104499573	3.63380446419854	3.46788240453389	3.19770199915546	3.45052098883374	3.42874467109486
+"SCN1A"	6.71372873743436	7.02507544696864	6.82459436723035	7.23406882332438	8.24659069044382	6.80445263310718	6.2745278063831	7.16383716670708	7.79631111952332	8.44554488829638	6.44047993831867	8.43244459392779	7.57990089302723	7.13055266974325	7.72887648584987	7.34134556115147	7.99946528895356	7.31302012774844	7.29422386323025	8.3784703844586	8.9576725990728
+"SCN2A"	7.56545409307715	9.41050340793456	9.82667377996406	9.6260894351543	10.5043975010925	9.39758585978486	7.68186053934904	9.39388862828414	9.75063905201507	10.4367027670209	8.6929425011506	10.5413007022153	9.15500779948071	8.3512193078547	9.2775344184339	8.8501315261313	9.89517224114495	9.14552321749837	9.60417736361884	10.4126119858483	9.68001747280765
+"SCN2B"	6.06338620285825	7.14505646605463	7.01007955649088	7.05333790834112	8.28374730267576	6.35692398919667	6.53858162095457	6.79953688455264	7.19882931742535	8.26231955046123	6.80046673370947	8.47281836836613	6.72489426780865	6.36045155180384	6.73253309867692	7.76472880573312	7.92072449533097	7.31698016126651	7.35240922990953	9.00005218918056	8.78311970118164
+"SCN3A"	8.18597423846173	9.22725374517539	9.52785653343385	9.52333495982293	9.12880798348241	8.96237051607112	8.70632003951716	9.2290704802065	9.77498723469868	8.96451870037956	8.40459564581083	8.97645579065712	9.36618072081616	8.98571095984455	9.52187439318954	8.17835124755721	9.11482119066853	8.84534002615439	9.16067057656332	9.05257495534542	8.53120382368627
+"SCN3B"	8.86539011109523	10.9121375174363	11.1612553747321	10.5652892762232	10.7980137985621	10.0762128947538	8.60555583993642	10.274770259892	10.474072942995	10.6606936320127	10.0374246125044	11.0951062888978	9.94643751556037	9.52139719771408	9.91099744630896	9.76783969209201	10.4884168447178	10.1152368288472	10.3624724167972	11.1340329067886	10.5735558448672
+"SCN4A"	4.58082645523617	4.40483154211966	4.53333730490904	4.80205952816589	4.65815018611248	5.31685576042776	5.08865154372408	4.42320145834833	4.85274691056759	4.82215980530154	4.4639965426867	4.79152310273938	5.06711997789325	5.02154992348729	4.76127448185744	4.5840761645162	4.67049486492781	4.52871787300895	4.79884373450426	4.67727184115483	4.73952977215908
+"SCN4B"	8.21067212834016	8.49337358587565	8.86358354954174	8.29256761073987	9.49039864601283	8.58617737577975	7.91862783275575	8.24243658079539	9.23662529387073	9.24349969501005	8.42549136445357	9.13699029141202	9.34908869353778	8.34035957434351	9.54386742310394	8.20890619322227	9.63357784653188	8.72797635340702	8.25238361018696	8.94797142231448	10.0832092108079
+"SCN5A"	6.0149668634411	5.99028814761476	5.98629303404377	6.05379927092237	5.96733857996695	5.9899147928867	6.11507646913228	6.17007776197057	5.78282115118938	5.73695263702182	5.69969449405434	5.84931854404211	5.96448716297629	6.25714451175772	6.09813213668142	5.96448716297629	5.96231946375157	5.48275243849571	5.85265240251819	5.88288784326293	5.96448716297629
+"SCN7A"	4.60373868660743	3.76649585251223	5.34991735652862	4.73997600034534	4.84227543231032	4.6075740920549	4.34270680508576	4.58740136819276	4.76786311454474	4.81105854491072	4.14081412786555	4.37327044718201	4.62827626742615	4.56894599329087	5.05558748301978	4.02173760789572	5.21867627522225	4.32939028881723	4.30954500525347	5.38442895424114	4.93535656113075
+"SCN8A"	5.44216632379867	6.78180934322077	6.23585111696985	6.54158791059784	7.70308673843782	6.12610266232175	5.52061967104438	6.49017755325871	6.87199760507069	8.06203561054084	6.04545801110214	8.04816710548789	6.72751869807797	6.11411719582546	6.44141387713279	6.70016189073131	7.57858230054714	6.443834933189	6.7315638552351	8.20065057752698	8.42467770753001
+"SCN9A"	3.64412061090917	3.56194565537787	3.75982862359918	3.79507835100312	3.737399406265	3.79244147116831	3.74408377100609	4.07338807747415	3.66041905942032	3.62114626779878	3.35834523599023	3.67431485594539	4.11001361651605	3.60134174384753	3.77136503750603	3.48542451675851	3.50541616181312	3.87245548755448	3.68590383136815	3.58565930959849	3.33953147488585
+"SCNN1A"	4.78057709465034	4.64470736199747	4.91618436070976	5.06305037953869	5.01784217854118	4.72949693184764	5.0798122460832	4.45254717339356	4.7508031967455	5.07409269105549	4.37063044567457	4.80464314549538	4.75316167370197	4.84193621687734	4.43111053922511	4.94685313829043	4.84043329528607	4.57026891000928	4.78057709465034	5.51239312391079	4.61142283299914
+"SCNN1B"	3.86154129781299	3.96316345617499	4.03308468288406	4.34227119376949	4.07163025741753	4.3849435344368	4.652036931254	4.24749092687798	4.71778438428824	4.396576659154	4.00634568185091	4.29335425557014	4.2204675483087	4.46475868010428	4.14946782277637	4.2979033168453	4.29365171011415	4.14111182458776	4.48539405881251	4.24194378897995	4.63697120226439
+"SCNN1D"	6.48861218907889	6.58605880991461	7.17958109777514	6.35889025041318	6.3183408217721	6.82632357330451	6.61620117866378	6.65662824655632	6.39181915223801	6.59290109368149	6.86972847484216	6.72185349196753	6.55906097447666	6.61620117866378	6.24271110055881	6.64461178383961	6.10770753087399	6.83451796556592	6.64942964815253	6.71788236167553	6.78511251251664
+"SCNN1G"	3.0414752232603	3.13489434008474	3.46111497273563	3.51856568514748	3.2588562825902	3.53441341484698	3.18911246908135	3.27925050561093	3.35918895827332	3.32338553782344	3.03803915712161	3.2785120683849	3.34576094543389	3.47276063603402	3.2588562825902	2.996884764328	3.2588562825902	3.2785120683849	3.00659012179121	3.16029188143736	3.38449756132374
+"SCO1"	7.2214178984553	7.01166191817762	7.03133880600796	6.82767574717051	7.31406712686943	6.56945453658665	7.1591757254485	7.01477902371807	7.05638144262496	7.27822985266746	6.98861952802036	7.08538623269423	6.76092010400483	6.443834933189	6.73926943158963	7.34384848114383	6.92536448772839	7.28753412555354	7.19780819643526	7.47075703324573	6.99145621917319
+"SCO2"	6.76723190732817	6.35962779846689	7.03754786847343	6.46858163516274	6.90295217499791	6.77807268609428	6.45122848471821	7.34632925791977	6.71670350623161	7.12469946754003	6.17808511162589	6.36518168044999	6.58015499905992	6.51007696268734	6.94255760949315	6.52045270424601	6.52740176814916	6.91636305024014	6.20148810017149	7.356424161952	6.98574934777254
+"SCOC"	7.76239595785554	8.32144687239824	7.52404609059359	7.97676961333491	8.64556532464658	6.17091114967439	7.19680396570313	7.93229735762382	7.81300731730063	8.65878580488757	8.30655267043269	8.48038267129173	7.44029895723003	7.11851024828355	7.64424375706763	8.81672931099735	8.18850340614791	8.508066302231	8.33960892505634	8.33179742661421	8.78190487465556
+"SCOC-AS1"	4.54716337574473	4.79960321986424	4.92946180745388	4.80949340574195	5.16178645807861	4.78892335352579	4.43000313928821	4.81055751089317	4.82746102932988	4.79090958131456	4.99898293355826	4.72224568936799	4.89559649187057	4.75655711039792	4.64512414918305	5.536296862643	4.93685042576177	5.47542763050103	4.71725096487865	4.70860619100899	4.81137110554058
+"SCP2"	9.79068690779962	9.53653517191277	8.97582642577019	9.33931033641166	9.1477622074193	8.52336732516948	8.94449387293895	9.35515478471733	9.4488720455983	9.36038073143013	9.82049267074204	9.08117172439287	9.62020186501026	9.15063831515389	9.50529566552578	9.45004553674639	9.32119366317181	9.33229790229261	9.3689354796528	9.02150210477495	9.26898000391297
+"SCP2D1"	4.04192053539254	4.15422797065296	4.04893116132502	4.30584516383712	4.36658191360261	3.89681552900597	4.32736864372247	4.13625054360757	4.10699386557743	4.22124812789716	4.00294424462905	4.1561397580264	4.28520037290138	3.97837655155759	4.04893116132502	4.38180118702499	4.19892278382683	4.28188266072239	4.26461981166049	4.22744712352854	4.15422797065296
+"SCP2D1-AS1"	5.1138435243684	5.09065217451908	5.07511187382058	5.17684426786635	5.28985665428693	5.36276137268558	5.80486385143051	5.1234199431508	5.49721611057724	5.10753452784067	4.96709556559987	4.9020693359409	5.3178089449138	5.2266891070451	5.02619643838265	5.10696593833205	5.06111571218915	4.98716724902183	4.91274622611811	5.14268598030929	5.04003097162902
+"SCPEP1"	5.82384802555108	6.34427461052488	6.38065355577757	6.14127614603761	6.41723584563253	5.65273754445954	5.51403668859576	5.81430968969267	5.75999274188423	6.32563926293398	6.17112778524014	6.29145838406289	5.96936193959597	5.81785996715331	5.96658331167724	6.37882059532659	5.97990579978303	6.09380061834094	5.87631407640421	6.07001776906628	6.10653400648585
+"SCRG1"	11.3417400853986	10.8757547294298	10.0619258563544	11.1052225424411	10.5485276553897	9.05285398638839	11.1053144402651	11.1419912513583	10.7489670664703	11.09644825334	10.5986839810939	10.6879167299798	10.6610965134313	9.55903734801245	10.6481215529121	10.5656790629429	10.1463036978749	11.0005063567719	10.6481215529121	10.5956778933773	10.2664060667651
+"SCRN1"	11.9800072485036	11.4870654811563	11.60032364163	11.5832291381108	11.4294705867622	10.9635430070909	11.4681832890276	11.7295633089239	11.7396193720435	11.6833060387889	11.4411570791507	11.7539893291516	11.2922666277235	11.3364966890206	11.4716090533013	11.4930733299722	11.6177654201765	11.0953801432568	11.7633356491493	11.6955630367096	11.5825555552071
+"SCRN2"	7.9095012403808	8.0427613121941	8.15436689667371	7.54495022696668	7.78556360415739	7.90664109213263	7.42490323339268	7.6130013087934	7.42112352825845	7.71964488448176	7.95761830164018	7.64927566064571	7.50407380826931	7.9234116386638	7.42766068526574	7.63993837864424	7.46776861982986	7.90434888392339	7.49240509939839	7.8766840061935	7.51502558404601
+"SCRN3"	6.71452782960596	6.7498716276438	6.443834933189	6.26337318683703	7.09974932243448	5.61694711969579	6.0716290655099	6.1413863599965	6.2119417246357	7.01019967370373	6.74753169229204	6.36518168044999	5.94060092208261	5.76654801174426	6.02358851670042	6.82984707487809	6.29923897999517	7.20399612516055	6.443834933189	6.69655590036985	6.94742044791899
+"SCTR"	5.32976607419716	5.28567948911798	5.51083366514332	5.65618831755272	5.63148218964513	5.62902884342205	5.97728525805155	5.40031530086982	5.69873191305437	5.58689482844583	5.57275613410841	5.46769531646562	5.76370184722043	5.80476210892588	5.53740955614665	5.54157147262295	5.63911720796672	5.38717420512884	5.47340794971179	5.16180957207761	5.6545712205523
+"SCTR-AS1"	3.20264265676291	3.13977073247755	3.59443704983792	3.62989569146035	3.44971072852124	3.53794221992238	3.16963160140572	3.34932935177875	3.67127135180104	3.49385271502772	3.17965998623472	3.17394701565426	3.79789751493351	3.25351521704478	3.84054160309622	3.2711074226153	3.39562730972878	3.51433359474234	3.56146530208691	3.17585131191298	3.54522831564715
+"SCUBE1"	6.79459247070016	6.87395872382028	7.27072974609929	7.09039965208191	6.97802139051217	7.63895866504205	7.92825431075285	6.98444399569961	7.12398887175676	7.05230046827245	6.9000696264156	7.11444229020234	7.21958891218394	7.3651261113759	7.14613705314147	6.60201695455735	6.97653800371844	6.84203777428444	7.28119962021784	7.22181057239064	6.91780023899273
+"SCUBE1-AS1"	4.29938893389525	4.2340405544488	4.19701151835178	4.28098575055865	4.19095162737824	4.30291884282523	4.40937932863912	4.29938893389525	4.76282487448805	4.20528579238431	4.11231339223705	4.5534707437529	4.16897170969727	4.38881121083809	4.17632103849251	4.37020423455243	4.40694473018385	4.09259301239383	4.40187645130486	4.1480698797829	4.30291884282523
+"SCUBE2"	6.93572622825724	6.33427640789291	6.2004118771653	5.92914737205267	6.15710165485936	5.99906809123499	6.53259054546832	6.33486472787957	5.96840049871082	5.92770286636806	6.42688321364794	6.15710165485936	6.16109311650504	6.37238433254669	5.97000141756989	5.95107956284219	6.16625421708886	5.68803219484605	5.51541899914848	6.47507484372286	5.85792351890843
+"SCUBE3"	7.00648961445406	7.10820196290335	7.11057823454536	7.22543857310561	6.99672021778859	7.57962411782815	7.64513823732672	7.08992884550969	7.06823088378963	7.1673185926679	6.87454432148369	7.16145141508939	7.06931697721187	7.49558245894594	7.22914373615267	7.13081736787554	7.05756492630617	6.94985263816549	7.0839875246391	7.53459061056425	7.03111314829488
+"SCUBE3-AS1"	7.54959438405181	7.39767603627943	7.55490711435421	7.62408195820756	7.37633357000396	7.98238771562662	7.93722613282309	7.58493439478784	7.75408199447054	7.55727563338655	7.40779805319736	7.48079152586404	7.84731942404538	7.74992513717542	7.63845426316423	7.55829958671133	7.70093914071351	7.31762782171859	7.73521982000612	7.59854118544847	7.52150238960502
+"SCYL1"	8.21251001560276	7.91677289680277	8.59348414527378	8.15749700926993	8.37893816492412	8.3172737422385	8.1524365882423	8.11116984804282	8.35474635748926	8.35176112095204	7.9973484494739	8.20669804557379	8.22183243072668	8.22601694908644	8.39467916478085	7.57756478738595	8.24247057361584	8.4092148205164	8.10628207711623	8.43589847108391	8.30281472569554
+"SCYL2"	6.95371336136924	6.63945239175748	5.62219755035077	6.40460728802591	7.13305708538765	5.95969927806008	5.74900916464367	6.86337711503178	6.50681874599109	7.12293319402094	6.66161770926181	7.15274140708967	5.94669109223096	6.11231022051271	6.00430336700837	6.72395653396325	6.70551367749048	6.6507924876364	6.73446992400927	7.0839875246391	6.83028891799979
+"SCYL3"	6.0272891282591	5.94989786116678	5.98426324309558	5.32678234430899	5.86819211012467	5.18184033036742	5.11148546240113	5.27250957350113	5.56373908506091	5.71652459462754	6.16794389962453	5.42396731584533	5.34374915214008	5.35254478720051	5.15720913883519	6.33867072847104	5.45056348130183	6.68411587378971	5.516732156674	6.07469351085481	5.57114964035095
+"SDAD1"	8.22011996224001	8.65321398150504	9.12068573824296	8.62004693637808	9.27329550078265	8.72396617218826	7.65246496050562	8.20381620095697	8.67689809587449	9.08555752792015	8.59582401274227	9.04513097784175	8.16505393867494	8.48843720646222	8.88919332565346	8.67396158743138	8.55575923885166	8.71787537586462	8.66116530197573	9.10870634796003	8.92962513664927
+"SDAD1-AS1"	2.94906970106365	2.82302542908192	2.88829330098211	2.87084801078277	2.89521363336507	3.14253052064219	2.92816580940924	2.99245884840149	2.91094311634673	2.88829330098211	2.68040990540529	2.91094311634673	2.82157885980077	2.91636635727516	2.86236702195102	2.88345996132337	2.89859676858793	2.87084801078277	3.13956204080501	2.94509316841051	2.80459206178057
+"SDC1"	4.36474929027824	4.61552486600255	4.67703554168059	4.78835573840182	4.81627070246308	4.8707608480473	5.07176297778958	4.32269555403127	4.94203444840522	5.03844744988557	4.76482263799586	4.80894961893323	5.13689498298236	5.08434163260989	4.81627070246308	4.64149950406939	4.6151068912044	4.62970274114328	5.05892808626908	5.06160941063488	5.00166570307514
+"SDC2"	9.03295147718338	8.92539078250576	7.57576539820604	8.50905914575564	8.5612813971619	6.27972765930275	8.67275843539342	9.31388707598479	8.43878357809298	8.77493064630493	8.64763781081105	8.32716503933922	8.13291321478368	7.54583912648351	7.91293098821199	7.56246516327741	8.27610086889665	8.13875872526653	8.71088669370206	8.45991025919923	7.46768484251996
+"SDC3"	6.75544912884356	6.92794497470266	5.90184858799673	6.55614368191586	6.11957024732692	5.42438234432912	6.54076275541572	7.07537807062817	6.58048880525074	6.7521622788416	6.42729104871593	6.5826770317311	5.93755003460216	6.65148123200678	6.04145735078865	6.44133456829909	6.4972844645876	6.25754373584298	6.40018971259482	6.79158393333927	6.4903874205208
+"SDC4"	9.70559554838974	9.33158963699971	9.33185566434255	9.713018306984	8.97794272534895	8.60190954807918	10.189302654758	10.3453726119342	8.67168181068936	9.21479671305826	9.48196607869153	9.65303098947297	9.18008586137004	9.77644960877904	8.58576738409211	9.1570472428877	9.28158943443464	9.37906912481425	9.2362108934725	9.22537220454537	8.48373021965867
+"SDCBP"	11.1587205925724	10.6923761877043	10.4106739024674	10.9112144705324	10.6724722321403	10.6835965360223	10.557318668208	10.9703211662326	10.9154216080691	10.7738007343768	10.7193533070669	10.8075144461708	11.0719705647769	10.7505127336169	11.0525317000175	10.4258852232681	10.9694590948837	10.4897161140643	11.0182390989827	10.7382745319685	10.8006352600446
+"SDCBP2"	8.4198633868109	8.32388212653848	8.48635746044506	8.48090158584315	8.68995524409372	8.59021586786508	8.58311230192534	8.40089865716746	8.729750098478	8.5706225884274	8.07285714570704	8.60788129416174	8.40832888441767	8.59998348804631	8.52687827681556	7.9833545330244	8.67154318581285	8.11075143195186	8.26605384543093	8.61048477886712	8.35256041515351
+"SDCBP2-AS1"	4.4535372484875	4.5286971246246	4.83687220160725	3.57617488640769	4.09323490942052	3.81256530553779	3.59035006425724	3.61059252524945	3.63405585584162	3.70903078628154	4.41994517961982	4.02636505185631	3.30653763523095	3.99320002553333	3.49609348000799	4.45495428391574	3.68724398116904	4.17344243417577	3.80132461240136	3.73174497168881	3.79198605422399
+"SDCBPP2"	4.08664478031681	3.80094631192608	3.68457417174221	3.95357319909149	3.94847753638272	3.59017165411231	3.91774574934428	3.96779852709763	3.84914970937955	4.13873767718883	4.04993444255773	3.74059344146574	3.97964530157768	3.58300101136435	4.22468232121081	3.76883631335918	4.18727820533885	3.89034564872329	4.13577949764078	4.07814436998098	4.04109644318957
+"SDCCAG8"	5.55271416402668	4.55366975531608	4.5672310666962	4.44979667514284	4.51935039165347	4.63175658525337	4.46371533016814	4.45312537240129	3.96779852709763	4.70451292907783	5.06796737163237	4.54137198263651	4.54137198263651	4.50157130373205	4.37606678740474	4.61685632258678	4.31372550293263	5.13822227329952	4.81298377652869	4.27989421256686	4.13982740773319
+"SDE2"	5.52705292336465	5.27907546276821	4.71527207396282	4.91100454531016	5.03815856872448	4.27342510410193	5.70491146600838	5.50751573797561	4.87596507943284	5.37096057233447	5.62169282692661	5.18730850198899	4.53647571705511	4.53380698953056	4.85437755112117	5.61720089147969	4.8358039543141	5.72708472200794	5.24744976319874	5.29934103693113	5.31934965029276
+"SDF2"	8.05121876280736	7.75999260881027	7.94505871143375	8.00921718383915	7.89708815071389	7.92981858736172	8.10335545214136	7.94057858926507	8.04572060405755	8.0804486052019	7.86726025444344	7.77589738159726	7.79367054778579	7.57448196644067	7.85507157266655	8.11638046067442	7.97294654853457	8.06140290402848	8.0693192175026	8.15749814981701	7.88203870431987
+"SDF2L1"	7.72997843100566	7.19716173455442	7.11057823454536	7.44908837903361	6.79395876074908	7.37963764700976	7.5667684499182	7.03232963290809	7.11562561224969	6.97271706252756	7.33431910853648	7.12536164377591	7.58058125971735	7.16718567275511	7.67161621153205	7.33993701998941	7.07536355394211	6.67152474398079	7.50387400198212	7.92611178919254	7.85145062958794
+"SDF4"	8.16770720793709	7.89764015813983	7.93427655517995	7.79773497068226	7.62769387747818	7.92315157061392	7.88764718998988	7.88733042775484	7.86130561613593	7.93021029286052	8.17755476916012	7.88398645036096	7.68707487153769	7.61949636243892	7.51712940157918	7.96092399776328	7.81568962077271	8.0333352995469	7.72307104482333	8.2020357895012	7.87056846791627
+"SDHAF1"	6.44377809985175	6.83789246947085	7.3043253721963	6.69018881156605	7.2283018322904	6.76120642349999	6.58870617777291	6.88147168768364	6.93859255377261	6.95979344434887	7.05791889240305	7.02986885105742	6.48877059325806	6.65590493194454	6.82176977577817	7.29333465196539	6.80124036085426	7.72616676424915	6.94237111897673	7.19724051141951	6.78461083733407
+"SDHAF2"	7.96037255264916	7.36034015093863	7.53266438455239	7.30976730439205	7.49342792072677	7.57290869103367	7.67075711599758	7.20140993530079	7.85505486792087	7.88243997127642	7.2612648385042	7.28689184657606	7.26631313274199	7.37592002781289	7.67187563754925	7.68710574819768	7.44332286363693	7.81333681348793	7.62181426761808	7.79552759150321	7.53266438455239
+"SDHAF3"	4.60463513928089	4.23962018705005	4.36577695898878	4.35543743435155	4.58557794947057	3.709499107376	3.99246610422163	4.41357980559206	4.27234014786955	4.39930496223722	4.36616074527179	4.2401291108515	4.30291884282523	3.99418593456973	4.24106617431204	4.36745045430226	4.2141958068657	4.54137198263651	4.4084841428833	4.14607312499106	4.23221222899767
+"SDHAF4"	6.05609687500111	6.40194733736375	6.93642955029445	6.18652385491808	6.81425393481899	5.84121187197584	5.65340965491884	6.34550008101649	6.26473757936715	6.80389785946965	6.52892734887013	6.80988505218093	6.09852848845032	5.6463536236236	6.29701054726948	6.64176772508625	6.45664468396354	6.96308016468398	6.40088561722603	6.74172951730157	6.50633558540752
+"SDHB"	8.27541850516382	8.40759725166309	8.3226478609937	8.23166070112546	8.84235207441538	7.4205618188884	7.96667798476034	8.61420650329929	8.51411246414833	8.93930718693911	8.48537477322273	8.67186862335853	8.12905268538859	7.67059870389304	8.21972476780687	8.59186653261898	8.47243898737591	8.81848902046605	8.55256458060897	8.68688329178915	8.78001680507832
+"SDHD"	8.87484647155281	8.94838055337419	8.56065574533238	9.0014924338636	9.15933339254683	7.62369565623216	8.82450472086612	9.20842300076456	9.07924213618424	8.98939983964513	9.18766413143538	8.81196080165845	9.10332883456961	8.3067882701272	9.14772695157168	9.06350751740664	8.87958027500872	9.05343876693979	9.07719695184294	8.8733359016784	8.79504950829421
+"SDK1"	5.21986917424688	4.99347938769628	5.97027883487072	5.05675462218359	5.27236108730157	4.98763106547579	5.16826748718098	4.79814767992321	5.48903967133148	5.48182350283946	5.30517543114619	5.18572128860119	4.82667618272489	5.00925448741231	5.05676838262835	4.71667126996417	5.5809482271861	5.10449579096793	4.80419531992814	5.60197315412021	5.20545347912425
+"SDK2"	6.36177313068348	6.60245459452665	7.22142978580695	6.58097029273979	6.93692298216187	7.2577884350341	6.75419717045156	6.51213544832547	6.52056863290578	6.33767740943255	6.76808877906463	6.27204074189112	6.83236469371306	6.6478601415285	6.44407700935707	6.41527167096506	6.57988153334256	6.59611995295132	6.25855958429324	6.64951087027411	6.46169606602502
+"SDR16C5"	4.91745433227701	5.9721574541798	6.05366071923054	5.75546598035896	6.92161101623626	5.75934079353435	5.4102465519771	5.70240538256937	6.38323095350171	6.42527643299177	5.49561266976633	6.16625184211819	5.66081395337222	5.10656365195803	5.94433839209871	5.74390784965605	6.31296023001934	6.28948199622204	6.0719279048742	6.50151306695191	6.45080719123831
+"SDR39U1"	9.29890903660413	9.14605301161764	9.51695410576757	9.26691986621901	9.3688974126102	9.49365635639838	9.29031452567223	9.20125055287495	9.344385148064	9.37338834729012	9.47279738149106	9.23820524604158	9.40533068236548	9.44483991118206	9.45427422740335	9.4088260107984	9.12593869819233	9.59467661168955	9.22203234598532	9.27283547724852	9.19980252382329
+"SDR42E1"	5.56893520024639	5.61166297003028	5.61821448372105	5.83665336931778	5.76505020448695	5.2601729702851	5.80396509323441	5.79278634298395	5.34953265773895	5.63638460243716	5.38740246517535	5.69945916266853	5.77577900478232	5.48877538872525	5.8804033058464	5.63453613016989	5.60525575485078	5.45133969465005	5.94723470820852	5.66133512376082	5.63453613016989
+"SDR9C7"	3.49770460461577	3.49712851144065	3.53589483157853	3.60493062673943	3.67884275111033	3.53589483157853	3.93728296481477	3.50187948014017	3.94155231078679	3.71258588704646	3.6325636972169	3.63731772764959	3.6276168304712	3.90064021970877	3.51104513844945	3.81653599296355	3.89189445177705	3.44088520507769	3.80567682500206	3.57065159798244	3.63842615940208
+"SDS"	8.46616415299043	7.47717487634361	7.53409507744774	7.28853805487333	7.05249046368387	6.56702380217906	7.37732473418611	8.58683069801469	7.08104792261802	7.20990588646985	7.41658636737918	7.43270269219978	7.01661116399222	7.2812135440958	6.7181417765244	7.00070300904708	7.29402468399413	6.71178976779039	7.49901263208896	7.31227011578955	7.13172310043371
+"SDSL"	6.11477165168125	6.3319390180133	6.59650649082246	6.21381114166563	6.07814497070238	6.30389872624506	6.33632068266935	6.18138959144502	5.71526505182296	6.30141661267805	6.56415207020101	6.32791759281892	6.2306312136429	6.09050987794597	6.22535368591497	6.81296585462559	5.89379491050431	6.294967234606	6.60167666993909	6.2490328923491	6.50890567531971
+"SEC11A"	9.80559593315859	9.35599373600712	8.72146287390347	9.08725562369179	8.93807101490896	8.61015428287237	8.97974888081236	9.31192434478957	8.9013882605035	9.0505625285349	9.89837593006408	9.04129956758755	8.85129868219163	8.73914889740036	8.94274872983591	9.66119517231815	8.96623184626619	9.53974961084628	9.6307611125217	9.07760924460138	8.97429554780384
+"SEC11C"	10.067681961676	9.24433325947271	8.74331354911212	9.11202097260689	9.03556289511243	8.03764590032459	9.04338699508968	9.57914785534417	8.82538617545952	9.15699183112869	10.2437431620886	9.34293484636674	8.77229547526203	8.48569737871781	8.73555030964143	9.84012795088297	8.87759460594091	9.43606118759746	9.50886929152107	9.35496390735127	9.03514319894485
+"SEC13"	9.78187934426794	9.3995707470046	9.3046180543047	9.30249103140615	9.36744182318	9.30191228957904	9.13966655378054	9.47802757275732	9.21074420943788	9.65480483705505	9.63515572902999	9.47068481702396	9.12506854404961	9.06352380983991	9.12678606619562	9.56321928377936	9.35965842250226	9.69405615345324	9.46984804175909	9.68263690396722	9.3100593398053
+"SEC14L1"	8.8631030541994	6.92579261237196	6.47180393815855	7.63494185706303	6.68610291588561	7.30316076906565	8.02457066778988	8.32879975470135	7.29204881416288	7.88759346170915	6.88209213333559	7.15321736733076	7.39774828364836	7.87394705604406	7.73672403294066	6.19945329139615	7.63044638863745	6.70725645627543	7.26249130245342	7.41041258770422	7.19739384780881
+"SEC14L1P1"	6.22436321691284	6.37017248337219	6.98887963646227	5.72572413769449	6.09786795239292	5.93900793816728	5.96308849935704	5.61465321837958	5.84717053244034	6.08136974628	6.13503056203061	5.75912312233377	5.50422561305968	5.8668976310647	5.57240114276329	5.93565744903606	5.76844966514468	6.27768931143258	5.91338641366008	5.7821399775603	5.93565744903606
+"SEC14L2"	7.74766266495739	6.82039052152817	6.75687616389373	6.73624200493671	6.98734666199707	6.77165908689238	7.08582326763068	7.02220950197916	6.86043370893865	6.6899313205235	6.76967339121567	7.11836974907585	6.29585145458642	6.75687616389373	6.70484334319429	6.28123402086262	6.75687616389373	6.31647783631787	6.51770020450315	7.1939873788108	6.43258381589352
+"SEC14L3"	4.62801598478954	5.24811935374186	4.67505306921962	5.14428506684766	5.11003910346417	4.67403882168025	5.33457265259075	4.92463100476859	5.50076182085259	4.87008921813247	4.751886247373	5.18836546285001	5.02070711429029	5.1825708120687	4.86917141494157	5.12022645036954	5.22894536979453	4.68840922522707	4.91952373541381	5.02151813977611	5.06709660772169
+"SEC14L4"	4.78300893436172	4.91573196616377	4.86986392122983	4.79056864299407	4.70248070099464	5.27984335621235	5.41354540783418	4.91589301943356	4.97876432702232	4.61552486600255	4.68764238589748	4.60926732623195	4.88160519795986	5.14167837670987	5.14036418591916	4.99808645076813	4.83012408534803	4.62660714129967	5.17703691280888	4.76349627252887	4.9118300622297
+"SEC14L5"	9.01237008056095	9.57620447450342	9.41822352110779	9.01508536381883	9.00108768184328	8.97570236769138	8.43552867125539	8.44603199849335	8.88880981858505	8.72718226992595	9.52682810119982	8.49683066070831	8.8283247175883	8.8925449604784	8.78891652264663	10.191622230814	8.94418601317879	10.0888288829228	8.9700874583723	8.84068508082207	9.16096932835721
+"SEC16A"	8.94540815996518	9.09512890661838	9.22064719488663	8.95963708791912	9.03528344254586	8.97501098493508	8.37411941788237	8.92789054626149	9.22267478350092	8.94929189816685	8.77653679507826	8.68685539527064	8.80386909638471	8.81070833332176	8.65497743887756	8.6595777611099	8.94113753872395	8.9415922493933	8.53817620880261	9.04541692199226	8.87850906169799
+"SEC1P"	5.80242788147226	5.83805996274071	6.01011391571505	5.73586417311183	5.6330314824955	6.19086985040787	6.10543913559355	5.69670998214876	5.83489135196075	5.83489135196075	5.58926685971489	5.83489135196075	5.73051001418599	5.82181732013618	5.75287854446639	5.92608226577298	5.74768704278598	5.86421258543521	5.97779309098157	5.83489135196075	5.89372261729083
+"SEC22A"	5.2272095405193	5.76779440458082	6.14999688394206	5.15421584369952	6.21630220275278	5.6175392952027	5.21121981821744	5.13524202886447	5.44059104546113	5.68757282194201	5.77407205155734	5.22795372379657	5.18817813777724	5.32106019396408	5.29905261928618	5.84339828340189	5.03309172729799	6.23133693295838	5.10837702883978	5.94011863126735	5.43290293585464
+"SEC22B"	6.33466434489496	6.1893095187946	6.21184328013706	6.13495960526464	6.41259331642223	6.7933276031331	6.53911855103845	6.15232777105124	6.69190775656787	6.34066593555726	6.36351397131103	6.47252935362006	6.16786372918756	6.3639547562965	6.58080367848724	5.87452798433451	6.20998375765014	6.494789596574	6.32606148244478	5.92583835701984	6.09497147530888
+"SEC22C"	6.59404254352134	6.02563171698986	5.92624282367694	6.37874873665351	6.82511230770062	5.81335171354946	6.02601143164577	5.97118711862112	6.56958949583843	6.56748242842132	6.37172870815505	6.26717477316947	5.75376468885595	5.77406846616133	5.84324430367431	6.63360313764443	6.30407887430572	7.01414717120555	6.31115556646874	6.83334646780871	6.59361593165903
+"SEC23A"	7.87969164589071	8.16924880769236	8.49225986591737	8.31739021204039	8.7360480645772	7.41347820996767	6.93022499853619	8.09687914949018	8.67785396758018	8.86812263256124	8.11062296258917	8.49669112889078	8.69888233877988	7.41070868370398	8.71777897046508	8.26313980416528	8.74437391528285	8.54416746305261	8.3720328383214	8.47151502683482	9.00001723448166
+"SEC23B"	8.41779046933156	8.26960482985594	7.77187037214038	7.88342243861509	8.26189979747399	7.82325453906769	7.81786716826654	8.41283852577225	7.78365323493382	8.08630870508207	8.32047382052574	8.29131751111131	7.62727658194068	7.48078488240694	7.50588145778433	8.76689860798699	7.97059297792839	8.82474011787857	7.93750920235175	8.36954541005665	7.95361247477515
+"SEC23IP"	6.73461761162975	6.90436640475824	6.98855070722859	6.04763716629232	6.82511230770062	5.86454874366612	5.6530392502274	6.13750765830363	6.04264101224645	6.61927069669932	6.78580488134113	6.33979942019379	5.9462045021552	5.9820645706383	5.86221775588847	6.76939263499167	6.23953504889065	7.12316283151936	6.10271985819724	6.52640444612285	6.78852980190045
+"SEC24A"	8.0851214052434	7.85937107228696	8.14759024764543	7.96991085373667	7.93075743609534	8.05280599666775	8.12219327088487	8.0045185670746	8.12521358747447	7.31723323389907	7.87131829094061	7.59747741534073	8.16180731622765	8.19687871618683	8.42779202030597	7.96991085373667	7.79284943587413	8.0484413263847	7.89572052029293	7.73083222352995	7.75937774415819
+"SEC24B"	9.08444503600366	8.87690469524606	8.81972383022642	8.77892538603327	9.05095451560863	8.64157840364362	8.52992256895987	9.07762213281805	8.886528440551	8.71188171477236	9.06390483038049	8.87836231935531	8.36551600433261	8.37680164496021	9.05237421685778	8.89777642970177	8.94936683187166	9.47225447158073	8.80171545512754	8.83316665858453	8.87836231935531
+"SEC24B-AS1"	4.44455678545457	4.92507535649114	5.91659549372231	4.93730346971212	5.48209721734034	4.67364468271181	4.49852897839739	4.62034878651121	4.41099612890458	4.50752910058592	4.72430849941322	4.84867884807789	4.59561825835446	4.54914505269786	4.67139353538939	4.75853782713383	4.51722999776431	5.41114358832435	4.80925382174256	4.85436608875677	4.30291884282523
+"SEC24C"	9.37722455133289	9.04712946914542	9.34273600579629	9.00923802947137	8.83891146233431	9.30765966103822	8.89251221357881	8.92970796196428	9.11322688049704	9.12117929938089	9.07803854593493	9.08646842875825	8.87553643187963	9.12112487939143	9.08507841016169	9.19970676384857	9.02605858223912	9.06196978494424	9.04046850141265	9.24860173529197	9.13062313738057
+"SEC24D"	4.1326586125637	4.35465655974038	4.18107112669087	4.18107112669087	3.96894549695174	5.25495284089019	4.3296840145238	4.50077569671207	3.98797101522387	3.98107100306261	3.90216202474355	4.72897996853786	4.14612828814451	4.32176793224473	4.18153573423509	3.83898295990162	4.30291884282523	3.83596358004884	4.36651948183168	3.88509171534632	3.98762508073682
+"SEC31A"	9.71768690296576	9.77555273219556	9.58463532923995	9.78863725065585	9.73031270101157	9.40858915053635	9.40651324347274	9.78863725065585	9.83046611673417	9.92343315023954	9.84000366287316	9.93177361282275	9.85406159908332	9.8735914801934	9.73383274194535	9.67346919294244	9.84538189390605	9.52015540574141	9.86544816771164	9.9406371975377	9.91248565497273
+"SEC31B"	8.31152056075894	8.27303679438824	8.52324016261013	7.92342778603057	8.14663011802409	8.39479511917097	8.3850135385643	8.243677604476	8.16559971703299	7.83714952761593	7.86996546659331	8.06090863465232	8.05031138823166	8.16479756084396	8.1237072756658	8.10024955921691	8.29985986024754	8.40864468330048	7.82747580928743	8.14435526564912	8.03598251629512
+"SEC61A1"	8.49886731306888	7.67924620837572	6.50236195312104	7.62258444710109	7.51085309441396	7.63569749357223	7.70865483106607	7.78517550879319	7.45168940901243	7.88880021214123	7.93323157673608	7.82961473895499	7.21136846668994	7.25475067165317	7.12875456261328	7.92442814867877	7.47200855793448	7.67818207698051	7.32046515343489	8.00813805180373	7.97262541719239
+"SEC61A2"	7.93256766997156	8.45266839964558	8.53066243015485	8.48153583964727	8.6816100079287	8.12124938256484	7.52998695631043	8.10457116291625	8.02750165086336	8.7668453766127	8.55619188260107	8.64151573272572	8.21392297836507	7.74174387475796	8.08511476485642	8.82987146786295	8.44061018831822	8.73912270213079	8.28989638520257	8.82105201030046	8.83123965500788
+"SEC61B"	4.23661133161187	4.36978842025638	4.63992518522186	4.02604564843006	4.55334702775543	5.14683245312258	3.92066403813009	4.19424123036668	3.94053266025153	4.08282035578038	4.3949426808404	4.42764418536643	3.80226969805443	4.48408971256522	4.51619999323785	4.58293864572601	4.16698484757949	4.6181541545457	4.23254474063036	4.62722083300902	4.10600396021815
+"SEC61G"	8.66518475687736	8.5011596596004	8.8563793457651	8.50843839097833	8.82528752443172	7.89990218257889	8.02455807611157	8.65339561140269	8.23202433295172	8.84721494043507	8.70571846239931	8.79318979467756	8.11566786424279	7.79494473779452	8.53903691372713	9.03498503521025	8.43337779586922	9.07746789942613	8.62381426981949	9.21971074233631	8.72220712504462
+"SEC61G-DT"	4.18191214193328	4.20907714324385	4.12320433914438	4.20684173853359	4.24745716457715	4.80023508814586	4.3370703708411	4.17377608655817	4.33839792818924	4.13965580097972	4.25507618826013	4.28763565495849	4.35601274283148	4.61839974425725	4.21127374735124	4.20907714324385	3.92884355789384	4.07476958616943	4.25514249753591	4.20907714324385	4.03264579116585
+"SEC62"	4.57606939347256	4.97078882060694	5.4190959363874	4.83198045099595	5.56080537881896	4.61046419147135	4.61284354163675	4.86579790290409	5.07741511388225	5.41041525605813	5.35141338779249	5.13428908153347	5.01927668871185	4.50583088065831	4.73999083140989	5.07741511388225	5.10589183875382	5.99440354577335	5.04601659183629	5.22219571513418	5.35029545371488
+"SEC63"	5.1551391545422	5.38171546550682	4.73382117426585	4.95052671845053	4.88271329441896	4.52101903215463	4.82258310601682	5.21995416076736	5.19399391865555	5.54692703283031	5.27217667981196	5.60185359450931	4.40834380684816	4.62142070330257	4.86083353811715	5.82648687307589	5.18014279777076	5.26590355278674	4.89896598026794	5.87355886975205	5.27903346957033
+"SECISBP2"	7.87451740452949	7.85157753876839	8.12798494327103	7.82032815498496	7.86066587930958	7.98365814704089	7.61089422477668	7.79897836656489	7.93030147051054	7.88689633272608	8.035396505742	7.78831080307379	7.67919032867316	7.71533781008111	7.82514864794256	8.22674805911618	7.93431504942398	8.19220554422577	7.88492282808258	7.92173299666403	7.91776755474941
+"SECISBP2L"	8.01876384827905	8.30612100454302	9.65588068924344	8.28460914804633	10.0317841346882	10.4521242820449	8.04510303274849	8.34974003727296	8.18840545393575	8.50296744615911	8.96804165595013	8.53645589004772	8.19138395127534	8.23766428014916	8.52844161444135	8.54967071891004	8.11540810028314	10.0149668305186	8.23635062847402	8.10756045743272	7.93766218665145
+"SECTM1"	6.56873339871633	5.80513749522441	5.94917388282061	6.12355292427533	5.94008738779845	6.58768993498988	5.76767277997112	6.72091747324997	6.05553886323689	6.12355292427533	5.92080709838786	6.38490835386774	6.40424101572933	6.15655735621452	5.82758289264891	5.85465500489504	6.26872554671209	6.04953834354467	6.36972541350579	6.435310466635	6.38244770773789
+"SEH1L"	8.10130629502296	8.72426062578523	9.37093276407604	8.52064534295982	9.31526833067868	8.3035268253887	7.64676556487683	8.58908002498558	8.8896570559719	9.14774381503129	8.50743115043058	8.87771529723639	8.48268859269575	7.8865500732699	8.93672659347079	8.90192555103582	8.93384918176612	8.95074729175327	8.64292716859295	9.29820654377673	9.17144331232798
+"SEL1L"	7.49534919831983	7.41910882970235	6.83726286539862	7.15094538189482	7.54482631213252	6.50948650726237	7.00081932303435	7.34778689948545	7.25949776103318	7.53717887026258	7.61392237286422	7.51880666868371	6.98183661375918	6.66202545529103	7.10260488422338	7.72523127367117	7.30357719588151	7.53361808135196	7.0038208925016	7.73546605083552	7.30372114367099
+"SEL1L3"	7.53141811340834	7.63321268195457	6.85142738461981	7.2908129680901	7.27969659281873	6.47699115306165	7.70051356087077	7.71936052738199	7.45240980576892	7.29213008220218	7.14295914378989	7.14057063181807	7.36304106768531	7.01621725118516	7.43454648770476	6.82958575879238	7.15662618384671	6.7545132076848	7.20346614286036	7.55672665764382	7.0882692962327
+"SELE"	4.76313082739882	3.15996597352997	3.37378825539248	3.42582503317993	4.18858229871585	3.19526150601628	3.3024339101175	3.6572915504911	3.28355585033027	3.09409776385864	3.29791868013844	3.17456119651839	3.3009370445227	3.37916725927104	3.4929664284575	3.3024339101175	3.21298117002204	3.2678513418263	3.05687594678519	3.14376129043476	3.07867592202339
+"SELENBP1"	9.20306680230133	9.03002708087967	8.55498045837511	8.44769892116954	8.21868258134867	8.25876670216947	9.15783590803846	8.85335452551153	8.27225531652616	8.62437332235476	9.12689704279187	8.32741569433676	8.02147252143199	8.55446377946769	8.06312661856391	7.99142154484999	8.18597210583695	8.29170181598967	8.41340614375997	8.59540098705106	7.56678742731071
+"SELENOF"	8.67802961778325	8.73945390036866	8.45359731514887	8.90623222121381	8.55462773462123	7.59708686583358	7.8798031128828	8.89240078278815	8.6015235805006	8.71840586997661	9.42332500167609	8.69395036631643	8.60939133496127	8.04579728629223	8.77451995919898	9.14564451732277	8.55686850660273	9.16091711909901	8.86743998403782	8.41629632329762	8.83527254158663
+"SELENOH"	5.23641784926539	5.15339208264595	6.06726370312397	4.97578672457079	5.0343173757724	5.15638608830099	4.99674983634961	5.14287355304547	5.08827097743932	5.3252603479945	5.18467920636144	4.99411170724401	5.120686042751	4.79677189136767	5.07413536709403	5.47256613976475	5.21020082381116	5.55085720956694	5.09724367003847	5.23865485594117	5.23963404320363
+"SELENOI"	5.20493944867002	5.72950063672499	5.24637751041754	5.26708905630261	5.67590478468474	4.46665928048712	4.53832176963549	5.72363464244771	5.47679630517392	5.60603673493291	5.46550021875811	5.47544243392567	5.12898298712294	4.6707790217428	5.16603752650533	6.32595597206952	5.31190986325671	6.24101994987984	5.42524687603376	5.95156759281366	6.07254466819594
+"SELENOK"	5.08961543800521	4.81093402727411	5.20052857061992	4.87178155670733	5.12746650795198	5.365792049351	5.43239035274476	5.34031913176722	4.83790880782597	4.93388161594058	4.54522626603821	5.1975417178988	4.85810124240778	5.03256595106673	5.23690138167643	5.28995084756276	4.88743412890695	5.4993537562712	5.08771697782503	5.4721214825398	4.89109689941966
+"SELENOM"	9.77569320843703	9.21455267684383	9.48727765523816	9.26289129095042	9.68284724455707	9.43815544995709	9.46661977727747	9.55608528427946	9.22298212712602	9.74525283888611	9.59664731696587	9.51323971625104	9.23402593536713	9.21364194518405	9.17642589038175	9.29012584885629	9.08808458823349	9.5079106107084	9.38790766153238	9.79202776207862	9.3385285866218
+"SELENON"	9.40030163124967	8.32196826955624	8.3184344520127	8.40200649716001	8.10674702990268	8.64987689896081	9.03311918989073	8.55997201680434	8.39098176431004	8.38323240581875	8.52931276042799	8.25539472221498	8.58539835924482	8.69057399776818	8.36019461688834	8.22290239481008	8.41361016062057	8.19355143430731	8.1762761282834	8.51431979141508	8.29532004687504
+"SELENOO"	7.87854056558959	7.41602056457192	7.91406571608329	7.14363885280652	7.57652265429589	7.8378917763486	7.57602034407441	7.67405965149877	7.49198500743257	7.69866502397771	7.45987202794964	7.54583912648351	7.47666416171985	7.32444940108288	7.29108828986635	7.49203915734808	7.43984202915642	7.88268043916256	7.54583912648351	7.8476226626117	7.09759496815981
+"SELENOP"	4.94161692747872	4.45904320118413	3.82277780007054	4.68939310459693	4.23336738434386	5.77162988753709	4.61085888720198	4.33555090582879	4.09424994330369	4.33235800198797	5.29002282707246	3.98832344028322	4.29734690549343	4.10899003000663	4.90122496205643	5.97132730126126	4.34813671656332	6.50876313044795	5.00588900930295	3.93165712427022	4.15732551495019
+"SELENOS"	9.37727360301927	9.03475029488393	8.5836358196173	8.80284012034357	8.70245060532409	8.88729673236433	8.79629127136249	9.11071744599171	8.47982273593352	8.92606271194407	9.40333163043439	8.75194320082808	8.6078307336071	8.37790678276947	8.67272619774191	9.67895034096406	8.44336586838908	9.50153661690991	8.91767538413618	8.97880866537657	9.03729214530054
+"SELENOT"	10.2934994243549	10.1764497867081	9.21063516389444	9.9119808731916	10.1034441028395	9.06712669742452	9.81333433929437	10.1878169652381	9.92591007246939	10.3035703096116	10.2507224437981	10.1107274341144	9.64693851418194	9.202996789493	9.66013270657737	10.3720923191851	9.89990903652823	10.4499357491635	10.1444657420826	10.1557522453459	10.0945755017024
+"SELENOW"	11.4424708300165	11.4732947518986	11.5173794807876	11.446122010651	11.5001098551668	11.5173794807876	11.5117187908251	11.4488362393595	11.4205016913443	11.5672814325591	11.5864575007236	11.422208370462	11.4010351315383	11.3295061484724	11.6590060526853	11.7473641356638	11.3970058917178	11.7445026336326	11.616455005675	11.6053537919889	11.5387832019517
+"SELL"	8.92229267113444	6.25401328407872	5.19654258861853	6.68013549343911	6.23716759460518	6.52714589982322	6.60918352638749	7.17561106876063	6.25167230182786	6.08361367529484	6.45730143912621	6.78296092941316	6.34765621840366	6.5267090272863	6.19186073260596	7.08506638544459	6.39405109250343	6.8633288317897	6.01097231322893	7.52794627221133	5.85997507257208
+"SELP"	5.38659260276741	5.59765759910712	5.52900476169568	5.62629760914182	5.68904888736701	5.30414200270197	5.50101008301618	5.8704121990033	5.93880195140007	5.49124680384046	5.33039463187421	5.70502146161792	5.49804846777802	5.55926386881119	5.72819661853945	5.81964864693014	5.86286602459549	5.1387680504519	5.55225895338333	5.59707305831367	5.72087200785766
+"SELPLG"	7.86486100664658	7.92665111201682	7.49954430689219	7.20747219666078	7.4123424651759	7.24801584194639	7.93058268231487	7.35790259707301	7.71982140418803	7.49738202320251	7.57192267997667	6.82445025820585	7.58385628624382	8.23979818104239	7.28607410208385	8.24637380131947	7.44791600511925	8.05426823785792	7.78472551450143	7.84104793439436	7.4741032110072
+"SEM1"	9.22520533756986	9.1060219247263	9.38021414612893	8.71295738562197	9.19739773306126	8.9188580716318	8.68330877395221	8.99798968218977	8.89381312183548	9.24185779868939	9.28712667806	9.42218935614046	8.46976422378552	8.50277901451076	8.62208971238274	9.29252138964809	9.0338916650716	9.25762675041841	9.00706955426325	9.31340154608819	9.07173412810146
+"SEMA3A"	6.29079601809376	7.11195329080648	6.64631315209767	6.43089514009804	7.05243759269829	6.89749985528172	6.2597860500873	7.28511456602542	6.72925689162677	7.45269813891701	6.84156829824532	7.85794778951251	6.50864653153082	6.25652734928804	6.84140049336858	6.51690224895467	6.98326262793464	6.73344107173381	6.79438706439526	7.07142140763216	7.0075645031474
+"SEMA3B"	9.20383079315017	8.98343846749523	8.67206404358274	8.51060064749111	8.43437335847043	8.71147690478369	8.42620970383518	8.42068779952884	7.67836870628807	8.23718314319365	9.74829487221625	8.69664232816213	7.71459096688055	8.28922780926558	7.82077584268996	10.0537404703398	8.43162537973519	9.83546421580109	8.67131681297563	8.41240392420535	8.36500568967735
+"SEMA3C"	6.99574140658556	7.63873876265416	7.58938976716932	7.58818250234378	7.7682442951081	8.58939531876492	5.96166668157902	7.41922622582309	8.51102377118637	8.29945410492559	8.04858507291003	7.44867977072412	7.49304662138133	7.31678492649444	7.70440003353297	8.49395955374573	8.03749131421948	8.65090273907061	7.78488159930158	8.89151421038948	8.49272539051548
+"SEMA3D"	3.59035006425724	3.92685814476925	3.93405105326833	3.83354152743936	3.59364262359717	3.83739842990466	3.96713975233453	3.9850240712791	3.89750769692117	3.83354152743936	4.11211108638533	3.78251701946877	3.83354152743936	3.74235217017352	3.68109266079598	3.62572711220924	3.83354152743936	3.85369917694346	3.92422117378484	3.81443486738616	3.76649585251223
+"SEMA3E"	4.72379236511781	5.09122390903668	5.57881108349808	5.06701241140894	4.78351660964354	5.1223561390072	4.76792137718702	5.19251521341389	4.21971147402758	5.16304009926144	5.25055373676912	5.83978240851429	4.37973734411793	4.8768946222125	5.78591216838689	6.18861297171558	5.15002968979093	5.88090888010447	5.40599495107248	4.74306659246081	5.29038928379948
+"SEMA3F"	9.44101757543983	8.16613099530845	8.13387318967984	8.57312072876929	8.22934385955336	9.5194023642036	8.50334056287619	9.01961451073979	8.59474799652669	8.40942660184128	7.9979525896223	8.48334728693644	8.53706691143785	8.91497329267825	8.50742409001668	8.17503629071322	8.63555967013896	8.06074007239708	8.2241611239918	8.41735020880841	8.64295896652079
+"SEMA3G"	8.42839633407818	7.00156078555744	6.68746799985598	6.01877482741034	7.12649599422628	7.29423932486654	7.46843143587616	6.65275338956295	6.26423671088827	6.43615096382016	7.09138563318633	6.26945653039249	6.68746799985598	8.20627071053001	5.73003593678822	6.23232283067122	6.67385820263704	6.90566692923697	6.16229993170784	7.05432019768317	6.18564523111308
+"SEMA4A"	8.23759984129047	8.679436487279	8.80444598793581	8.73719133535354	8.63136122782466	8.97464878251743	8.73060453015853	8.66688293765147	8.33540955392267	8.59194505854359	8.21666005472074	8.41334601946109	8.71119043296532	8.84953593280435	8.01853033462852	8.16137301883422	8.49692225692162	8.30566590700761	8.10938983149942	8.5129007592192	8.50086183918188
+"SEMA4B"	9.7764081529044	9.41338044008924	9.42725166159545	9.33036540990449	9.01645359883118	9.13309989431714	9.89435952093447	9.85339583786806	9.04067511466588	9.11516315543279	9.09377064550695	9.50220260576143	8.65470327355657	9.18514669979557	8.74068225867402	8.83691572159643	9.40586358688582	9.03869866484122	9.1606097671193	9.04307725629893	8.9606299979824
+"SEMA4C"	9.68969686205632	9.95472363216631	9.71022896276056	9.59199491416222	9.43784234142153	10.1510183019789	9.59540744763936	9.68789928936325	9.30968338923739	9.31594470177135	10.3020476515388	9.52425634416769	9.61164618657827	9.87917533400305	9.48484365111885	10.4657448798162	9.5845590864775	10.143790618988	9.46436984550169	9.3376998812961	9.63994755273358
+"SEMA4D"	9.34473218527033	9.82179160500156	9.33786912313519	9.15072992238068	9.09555626600167	9.16555138941969	8.92060123517924	8.66488954579776	8.50822804183384	8.21817234547838	10.2858426422501	8.50245591733388	8.53598410352152	9.32908230309315	8.87893499281246	11.2030663415319	8.69942707539603	10.6725397439543	8.90708827875705	8.48823599503503	9.31881294629933
+"SEMA4F"	7.91499827943338	8.07924567951042	8.48461103790566	7.96858653794238	8.36317226634847	7.73135599334709	7.67898662016849	7.85470711555719	8.30771657668618	8.44074857548755	7.71889082614321	8.34621918699047	7.97482283727197	7.69907264534137	8.09717077354999	7.8757048400518	8.39562729694232	7.84105620120209	8.10957171705942	8.58158231636522	8.36275249673055
+"SEMA4G"	6.96829430356784	6.68552724936991	7.11539351243469	6.85873462789887	6.84722437259976	7.0502114933463	7.1051970238189	6.50143281196315	6.89024570583604	6.73287824688565	6.45774811302883	6.65923461578055	6.90065318738582	7.25734558796194	6.78953578471793	6.61269231689941	6.80678440297652	6.45003958394942	6.74267866141706	6.93083577861911	6.76596142985088
+"SEMA5A"	7.53397272057523	7.60809713948222	7.61695802313994	7.10965618845711	7.32244046300118	7.90891376708625	7.75923117904496	7.43355197098485	6.82338440367053	6.93194076340814	7.43355197098485	7.14963761649017	7.22075546619606	7.69524905991535	7.45730692572071	7.91632206375276	6.92277945198471	7.8993899972691	7.01661116399222	7.4583103012563	7.03250084064632
+"SEMA5B"	7.78264833404717	8.44505477941005	8.69660692298351	8.04396464621608	8.24061649339462	8.04083248633428	7.66738827714406	7.85008404859347	8.18634760758227	8.06067171658223	7.77720423628919	8.21868769813825	7.75371157736352	7.68045650438914	7.9490417489696	7.97372725615119	8.04298228300978	8.01413399110322	7.83410021293929	8.18254296533432	8.27065733003302
+"SEMA6A"	7.45896681570061	7.34474437831384	7.13668770031538	6.73266158201563	7.145573965203	7.90216127738072	6.28264621709659	6.41933445139733	6.00163751474843	5.57502511528793	7.77428991539042	6.55219712190817	5.58180297168841	6.76804299127591	6.60424680594401	8.03033372881391	6.84417221687702	8.55929203295281	6.57092371220205	5.45762502230051	6.5793184786918
+"SEMA6B"	7.60131835572091	7.49714430964904	7.89877019210932	7.94598018658262	7.76856245937237	7.86150451478166	7.8161419066179	7.45204643358829	7.76856245937237	8.09977944719802	7.15965944871147	8.25008345985342	7.82929843877494	7.42711464173296	7.61776827804813	7.22583594557172	7.92726074043676	7.39932960151418	7.86510826791694	8.47656155657902	7.82496928055957
+"SEMA6C"	7.76451197713964	7.58030679122285	8.09242103008772	7.89251183620695	7.84472471276623	8.05564248260369	7.91603902687725	7.74628720223443	7.73299003623224	7.84970398120889	7.59226004913095	7.9158423336296	8.06015454949594	8.26505585252778	7.73797269600291	7.7107891543045	8.03429546543625	7.66908730177093	7.96744226306504	7.92029826267259	7.86321071035605
+"SEMA6D"	7.72088571412979	7.76853989504387	7.36797036094963	7.35219467891016	7.85097458378956	6.80042148335856	6.9678688551392	7.84762107884225	7.39984110113223	7.82143338664233	8.13341472560293	8.31699555454741	7.281251493242	7.01165693172664	6.90008006439067	8.44824672975494	7.84962511167946	7.93463080339897	7.69957131128933	7.74853396839111	7.66538610743263
+"SEMG1"	3.50200409493338	3.33460946053834	3.33241255860908	3.27843517072098	3.44761510179555	3.32241227126523	3.42754391646882	3.31247291234077	3.30293112091593	3.46730084885203	3.31811477003258	3.49342199600597	3.41281095236354	3.44138405711899	3.33286072642474	3.37533102850432	3.37832974850411	3.24620173044125	3.53433597350354	3.30682307729881	3.20805651388615
+"SEMG2"	2.84330689429104	3.08244417223715	2.94599989907231	3.13326860454434	2.87205106622539	2.88345996132337	2.96640286437046	2.88494531850228	3.19252788411931	2.91251825304832	2.98400369984491	2.9755437805575	3.23325575772672	3.02496587863506	3.18289154524146	3.09356191859979	2.9028067809189	2.98998369997643	2.98572170188002	2.98400369984491	3.18404779816901
+"SENCR"	6.86278696602064	6.173536340428	6.20856219114729	6.49205195550806	6.23271698001034	6.4191613175982	6.21489884713665	6.30904466486244	6.36684748168555	6.36103284117914	6.4286032702695	6.27480402382853	6.63598104965188	6.66562716964741	6.28789634064164	6.23716988251262	6.33014550003825	5.92698154814293	6.059280990974	6.30892116502799	6.13036772758555
+"SENP1"	6.39517730616291	6.6399720812939	7.17145137836509	6.46964488619953	6.80103290768871	6.61899963734308	6.62875171226049	6.49707505618191	6.66468393022393	6.74922932810157	6.53519598708628	6.57211625616677	5.83664538397507	6.9240609465133	6.72130658365194	6.74851542281729	6.53276137214525	6.95689555509465	6.27570217878886	6.74221636082899	6.33134054206148
+"SENP2"	7.83142139537052	7.85702200443658	7.58150341655522	7.65728844770297	8.00994673971459	7.43236775430411	7.43518103031998	7.63568445976718	7.70324600493355	8.1440373022201	7.80761253701408	8.07894917937957	7.3860363099123	7.47806430202178	7.3155681093032	8.27967160650832	7.84494739968656	8.02397408503774	7.78100448531819	8.08497004231875	8.11456927150517
+"SENP3"	6.7630881393003	6.40220405043551	6.34380457579104	6.5029022054363	5.97106356029983	6.53943278938868	6.39424706373576	6.34197318780679	6.47960746842654	6.01566485446844	6.50155879450211	6.21330334965124	6.71694416838411	6.65393170184288	6.62370611904915	6.60664580547426	6.22862359693899	6.47696279670344	6.43558701796537	5.82896595805525	6.05499011353193
+"SENP5"	3.52016689895505	3.67922529687625	4.1351787125737	4.16274918154405	3.79340624972589	3.94203326854424	3.64859538597874	3.77954732321057	3.89964243392354	3.79907256783443	3.75939319265286	4.05086222448459	3.81493853741285	3.88445679701553	3.49102861217088	3.61918895538408	4.18141682180115	3.78550733761397	3.75423389571123	3.74125528497359	3.92949761013995
+"SENP6"	5.46837495376501	6.12830977827542	6.36468031998	5.64778786003062	6.05426402769143	6.0784342589186	5.14110115206506	5.91505864808296	4.52520877748606	5.7382364191027	6.91148105516381	6.41525240791864	5.01978550847985	5.30414423973762	5.42655673155283	6.3157701343941	5.71984501668739	6.22807561951462	5.58737032359839	5.49124278658341	5.39222006434712
+"SENP7"	5.41774489610066	5.53462847058437	4.36015696909381	4.65427360379258	5.07176818814463	4.24108354277782	4.39567662847265	4.82605433681254	4.43390865606479	4.5466861395075	5.71384809660788	4.80850758542111	4.58804590879133	4.132012315282	4.18460792741566	5.75212236721163	4.78039263142637	5.83441786114384	4.75912266834285	4.85271174132997	4.83851391392687
+"SENP8"	5.81997051495116	5.92396279501062	5.79684949253082	5.46049976254501	6.23591581847091	5.71472072793048	5.47045257312161	5.90034715998098	5.57300989691045	5.71645407669822	5.57300989691045	5.25332693963044	5.55117466845348	5.85064032079427	5.42531815023104	5.90131630210968	5.58302134308484	5.91081350757996	5.71091996121033	5.95087504110099	5.60539351509433
+"SEPHS1"	7.56589064872083	7.16217488373645	7.17844646738496	7.18765501623251	6.92737506442001	7.46876892060358	7.2529485128021	6.9814066882054	7.48330862262466	7.2210707769658	7.40849000713049	6.79510015773994	7.14658394230064	7.797681091634	7.53320529133611	6.88556863405612	6.86750141252808	7.47100150303267	6.95036893740088	7.16283537630082	6.88224195010171
+"SEPHS2"	7.95256553721359	7.90711654303643	8.02502876782446	7.69120460121473	8.27298936224457	7.69928957568406	7.58841844636081	8.05999119190506	8.08446225779927	8.30315724371322	7.64657878150859	7.99361081779865	7.85481850380952	7.63138818735673	7.85540652443062	7.84120489772736	7.93674161139562	8.30822421033499	7.82895101228284	8.22364031065972	8.1767089641938
+"SEPSECS"	6.54098382914838	6.2052754427822	6.40740312837988	5.89656121151535	6.06761266266856	6.36978388200301	5.56978363421563	5.99973552534033	5.62563983103711	5.82542203188761	6.5948715023381	6.02643083891895	5.02938532309133	5.9222640067205	5.56035088690433	6.80119107905949	5.69907059779109	7.19364430745277	6.04964592553661	5.87269301096785	5.60614769394717
+"SEPSECS-AS1"	5.44233880623765	5.44233880623765	5.44233880623765	5.39832664797293	4.86659397957158	5.39294757534129	5.62763356533378	5.44405680827277	5.78077938174978	5.20639154241266	5.9841263243859	5.36878849719057	5.79082658539875	5.51106357142161	5.46698640212613	5.41792523367203	5.34393445034113	5.00372750230245	5.67679416250085	5.23835366183584	5.13004986951182
+"SEPTIN1"	5.79649411773127	5.60390689091034	6.18291617230018	5.5685475748094	5.72259754747632	5.92716591140468	6.4501344114403	5.54803331655737	5.75822058063633	5.71260717740801	6.10707806749207	5.92052651810925	5.827168187476	6.43016474187321	5.72028024813242	5.50840516397055	5.66967162872775	6.20745529571961	5.94157733449715	5.24491225612987	5.57833199647689
+"SEPTIN10"	8.38913611366636	7.80481076152891	7.25356902048686	7.28589908118514	7.28589908118514	7.9512956136633	7.03020713061203	7.50624134580502	6.60978250464861	7.19552029575456	8.79752956581328	7.18743523317433	7.04546176453917	7.55076829745392	7.10753716436312	9.07048540413272	7.09793185689081	8.52983217682701	7.35386631789691	6.88691584762189	7.23355933483078
+"SEPTIN11"	7.68721017609055	7.50914506291342	6.62274589721044	6.91578576978961	7.29774076513226	6.14934642472837	7.27816513155234	7.79613610558089	7.24192509165579	7.36429245547196	7.5218953432118	7.48016453073758	6.72869715235899	6.46303023418121	6.9381209936685	6.63811367442163	7.25583978748201	6.96508122925498	7.24192509165579	7.39841675365602	7.28560965855392
+"SEPTIN2"	10.213673182143	10.3820645440909	9.1164168386842	9.38155618067013	9.52357300925767	8.60645528282631	9.5480229968525	10.1615295334804	9.26018892960001	9.41537422901191	10.3524491088766	9.44523808607764	9.00867926697764	9.52692387431601	8.79087262138713	9.79234491271198	9.17624777810071	10.1232127563843	9.44414015642151	9.06522923792059	8.95088612418456
+"SEPTIN3"	10.7790591307422	11.4553694217184	11.7290857075656	11.5312203520404	11.7274743245381	11.4032335123727	11.2170886071636	11.3492217307976	11.7030518840902	11.7402165075317	11.0716512740495	11.577719985663	11.5685377427714	11.5281291915535	11.4883319676751	10.7230511436948	11.6979424115376	11.0526444190908	11.6038057754145	11.7792844081548	11.7114111101534
+"SEPTIN4"	10.7826007903955	10.5567376302268	10.4224072585474	10.045391267792	10.1332112435818	10.3893326229618	10.5441896838173	10.374521912475	8.83817268993946	9.16822615558443	11.1951722521733	9.752444741825	9.53460477908165	10.2536859074022	9.77559167278829	11.4255920278194	9.5292890293332	11.4132899424953	9.93652710113687	9.51816574263895	10.1332112435818
+"SEPTIN5"	7.73395060801696	7.74410376891447	8.17702432339184	7.8270098646647	7.5895699262629	7.88058504048788	8.38967621533818	7.85535155829367	8.09923656537516	7.90522495846681	7.70000442892974	8.1063145267617	7.88125197379581	7.73897882667677	7.76373991057226	7.34573280857891	7.8382185597211	7.39066853159056	8.11206371509462	7.82166993393737	7.97008421264686
+"SEPTIN6"	7.79480735186813	8.72453471374293	9.29138461069236	8.59167791732246	9.04830734455821	8.62809093408242	7.42964264030819	8.52843149492429	8.50023434856579	9.00027581559674	8.07228770157624	8.91670006499206	8.53402764020612	8.14489142357771	8.72725605978028	8.32002223105341	8.87200234713661	8.50388310676957	8.37251110118092	9.2500725834264	8.95861367734688
+"SEPTIN7"	7.8482140949179	8.58494076467151	8.74159121800173	7.36845592607708	9.09641754333294	7.61333077020343	7.39478991031121	7.99509473642641	8.167568308414	8.31980075605289	8.50816571999415	8.33546706284365	6.96196414317072	7.52256805269287	7.55044336126918	9.10080354133205	7.89544471773718	8.66892728422379	7.75356938214522	8.39466283244382	8.47367453635097
+"SEPTIN7-DT"	6.24923986969889	6.55442031077235	6.26234373312234	6.48313970510874	6.81954780803563	6.86218998662183	6.24203819335241	6.56414993778346	6.35028503675918	6.23980886727568	6.61892173606335	6.4723278678578	6.3850449786764	6.65647315703257	6.55760306617614	7.15203999691649	6.49927846770096	7.37011795583607	6.47652134884764	6.09557453726327	6.07861148144099
+"SEPTIN8"	10.2265589869165	10.4140141024635	9.70786071221864	10.151751810161	9.78732654905045	11.0136815803647	9.8916715309397	9.92531729827184	9.29896768888261	9.71159648062231	11.0537005503096	9.44322361491765	10.0131443871859	10.2881923902102	10.0283391709755	11.5071128601569	9.74241206682032	11.5008350687442	9.8848341378	9.10280413652947	9.8772614392606
+"SEPTIN9"	7.3503524567675	6.84377359403695	6.86514611500985	7.15708718168936	6.8842475231444	6.43697294568159	6.91876287253027	7.26869335313878	6.9235091414894	7.6833519378268	7.10075490565874	8.0695557239932	7.04795991980933	6.73609086700397	6.25039407961303	6.660337880218	6.99630719788409	6.56934508617205	7.04527560556906	7.21951162459333	7.18704102882363
+"SERAC1"	6.4560160165174	7.02626502513094	7.29574067428394	6.38341911926214	7.5359066841927	6.91950378822081	6.12217545154951	6.54063915561889	6.80005458067239	6.91565316231293	6.82340008392203	6.93705010707308	6.54617698601723	6.45499142184428	6.84524136472832	7.34193803257316	7.18695909386762	7.60264138450565	6.90781383767107	7.45156620681348	6.87560515042555
+"SERBP1"	9.21840142408688	9.12087054568071	8.11906524398755	8.67997995026143	8.86131545891418	8.311780887935	8.8252064435629	9.24491999810229	8.75211145290874	8.86131545891418	9.29418303443173	8.80251367866094	8.76792021271161	8.733277599148	8.64962284587093	9.09797104576774	8.80014931297045	9.00310002377872	9.05806424840137	8.77039404379253	9.10959134898249
+"SERGEF"	7.08506612705551	7.55188565976874	7.84851219529122	7.52472868179876	7.83018984219961	7.82325453906769	8.34810227783599	7.77405841524292	7.77506654864177	8.0942338590517	7.56641298943532	7.83010153748716	8.14701219125782	8.16015682225931	8.0076519957781	7.19119661435852	7.80124749872009	7.55356064998404	7.68016899662759	7.93031969658161	7.74244288568398
+"SERHL2"	6.48766100017359	6.66512677099671	6.13177566508178	6.44578996171995	6.77241260958623	7.00762226194203	6.46964488619953	6.43934339999382	6.47020808070273	6.5458933156665	6.50368052824574	6.59800716506107	6.55835567667707	6.46655875049686	6.27855920115364	6.33967211805798	6.35965546618122	6.75059202751514	6.63815744683536	6.43199005899388	6.36017278949439
+"SERINC1"	10.8536113736782	11.3768281363812	10.8823020007648	11.5565619258049	11.4041837900464	10.2777926476533	10.7235366154377	11.3589121544503	11.3122026756618	11.5216628285435	11.4164988537406	11.3803885779605	11.2405192882826	10.8120759529124	11.0991485956324	11.3743016319659	11.422127707797	11.4951509310496	11.3139482258738	11.0661195297894	11.5649355276178
+"SERINC2"	5.38435348226298	5.68386064962048	5.65047810993247	5.77976052388059	5.5801129030835	6.36372743600106	6.47647282198722	5.37208415959106	5.67967646951344	5.87929555264205	5.54994599002457	5.68386064962048	5.89549746294278	5.79976601284619	5.55345173892478	5.45548536628973	5.51689343145624	5.58800811028189	5.8937388854633	5.74633054062887	5.6883409913671
+"SERINC3"	10.3448494237605	10.6930936172045	10.4726631549076	10.2387785464214	11.0653881942956	9.6663232082241	10.3028906619535	10.5179711538481	10.5482400453156	10.9737435023952	10.5874605961429	10.9508071901662	10.0601251504703	10.0166706839587	10.1236303152565	10.9569728504713	11.0018324436616	10.8685643699739	10.5440503221761	10.9400871499514	10.5310875298331
+"SERINC5"	9.44874016296296	9.24074369369654	8.63259659505339	9.05846186457718	8.67253914479865	8.9464674775083	9.0174661528721	8.9102895424141	8.31881001082253	8.60502015572962	10.0687225267625	8.3130767141895	8.88087151655447	8.93347165069901	8.53325185224069	10.5290944262824	8.77903406588033	9.97923904041122	8.90249719693598	8.41847315090877	8.45906367720117
+"SERP1"	10.7427155795793	10.0157935754151	9.67596117347387	10.1953501589329	9.95872634822506	9.56037948130161	10.5744924982273	10.6334765535505	10.2867011326243	10.0282399795476	9.98402233477173	10.0538108083134	10.3018297718592	10.1518865216928	10.3324680208378	9.9718869766342	10.0469325178855	10.1081590350721	10.6848185592602	10.2005350510002	10.0125137975581
+"SERP2"	9.15518506786696	9.5234153654038	9.638086486099	9.49681844716359	9.65373629536314	9.47861688346524	9.54346746902424	9.54442433910111	10.076158477071	9.85088792610477	9.00264633302139	9.61512299912589	9.58542038067762	9.54250297248912	9.8338817989918	9.3739659546417	9.66554918154615	9.39301154835623	9.5799559556654	9.67645784205408	9.70388308325885
+"SERPINA12"	5.1448909423995	5.1704500171117	5.1362270275411	5.34849594965933	5.2030814447063	5.21739516794391	5.21508602302281	5.20952045884594	5.174615728725	5.27652950921738	5.1463714110828	5.26421797418565	5.20396549098472	5.36289687011991	5.2894895930695	5.37682447631082	5.39281174917832	4.90171316121826	5.18793221791786	5.28485069478934	5.40293470835504
+"SERPINA4"	5.44434492750129	5.37305245026888	5.52489694481885	5.73119124456267	5.25101123120051	5.82287033003888	5.65893632558361	5.51345718682248	5.63402266881893	5.68205438878056	5.38588898172905	5.31492650484938	5.52065810514854	5.86139740722396	5.65975980875112	5.32600403498154	5.60430569957256	5.24211867543895	5.53294215327753	5.22025635773318	5.72706965784163
+"SERPINA5"	6.57440202036802	6.15476020694064	6.04660872660659	6.61401176508326	6.03973440199283	7.33113837857939	6.64036361646447	6.40934979172023	6.10309350862676	6.52532696334746	6.70446303682078	6.27288072564286	6.64979186249687	6.70448234812973	6.86514611500985	6.2440406318049	6.11762504921372	6.40934979172023	6.59989995243539	5.92837591598192	5.92907273221537
+"SERPINA7"	3.84415844421712	4.01427305640163	4.04854136528764	4.27911861606089	4.17828224489467	4.1491070448988	4.08760134636187	3.97891409110185	4.09867491369283	4.04854136528764	3.97984347278983	4.16780587036755	4.20368117516541	3.87545031712883	4.16525541991192	4.1610743716946	3.96503459694508	4.04854136528764	4.13465304549403	4.01754725519918	4.01425309628679
+"SERPINA9"	6.16073062412599	6.43143369812778	6.13644745067576	6.45641723119982	6.33292401980488	6.20113230389679	6.49195141287381	6.3416570284169	6.1658867976221	6.29727487232063	6.3416570284169	6.45752380356591	6.51679065997755	6.57315401258689	6.56411265646806	6.26727628686561	6.47799705640402	5.97340387525593	6.3416570284169	6.32597829619088	6.38369527596644
+"SERPINB1"	8.38017938016118	6.66720079375286	6.08060602444834	6.241388058562	6.86058792921225	7.24433266813874	6.15858778429747	7.5187884440906	6.38606509281265	6.98658887428142	6.85946153208474	7.05143775910089	6.19936725073088	6.65643299670089	6.29725800662325	7.11327318790624	6.49085960184494	6.73835849429803	6.30921502297384	7.13875238398427	6.67251186063467
+"SERPINB10"	4.26905331627787	4.07374173440924	4.18484480379345	4.29092195771875	4.09416393825168	4.75894543120117	4.15208892540975	4.21749257809528	4.39469172843212	4.21301600199988	4.14056492985568	4.28884441608107	4.21749257809528	4.26670205727433	4.25228879362142	4.1063715544719	4.21749257809528	4.13071147872536	4.5239764114575	4.23373503680594	4.26861855526551
+"SERPINB11"	3.29213809023853	3.47359160392546	3.27666849072597	3.22364257558656	3.37924256621973	3.58051357612996	3.50013618378438	3.34180322569819	3.52794444075191	3.31486181296976	3.11611911584451	3.34364215800004	3.37924256621973	3.77150868964064	3.42598080769835	3.43690906647437	3.39957191222515	3.32020038627861	3.32570549625039	3.27157879541614	3.40982170451645
+"SERPINB12"	5.9841263243859	6.0444652182782	5.89937959054926	6.09196236866324	6.18580526571841	6.02510597081644	6.36945670103365	6.0775745409323	6.46775408111884	6.11585541395444	5.83968624698239	6.32037778646542	6.40747017981672	6.16806574181764	6.46265325762178	6.18580526571841	6.28988960156174	5.86454874366612	6.3591937521912	5.94865650889917	6.10021578595354
+"SERPINB13"	4.01610355975526	3.89750769692117	3.97019206634787	3.93249742517388	3.81895892774209	4.07792606942969	4.15208892540975	3.83573933968222	4.02851954133011	3.60683511117734	3.92470606093164	3.89750769692117	4.23857489822175	4.24403293087103	3.97155344750516	3.77216330589925	3.66012323058769	3.61352055064296	3.71616276537357	3.61682449133185	3.89750769692117
+"SERPINB2"	4.06158947248863	4.34919989267162	4.12044892835428	4.20479628536753	4.49497619638741	4.21749257809528	4.17732017267813	4.48320956020932	4.13627649958724	4.25792165966756	4.11374189627296	4.14638865101563	4.41634047189015	4.14638865101563	4.21749257809528	4.43848654514913	4.39131804494629	4.2094395555233	3.92526095722242	4.25101857968664	4.40119454537482
+"SERPINB3"	3.96779852709763	3.99916881188535	4.17765166614438	3.9411955029143	3.94165304575997	4.4619373455284	4.22343771599126	3.88262856123736	4.18373098648213	3.9730022744009	3.93051474948841	3.91952232085944	4.17195012539246	4.2314994047569	3.99201551447041	3.8737097340143	3.96779852709763	3.72845255004571	3.93173395784226	4.08256307347982	3.91938601297047
+"SERPINB4"	4.52328799905214	4.73279347200969	4.4932190991664	4.51492306866526	4.88621358314269	5.02911786542874	4.83830827997819	4.57512919121534	4.58336872761162	4.65402202932749	4.32439287295634	4.74824645359826	4.69373343933478	4.98235617624323	4.74303611636907	4.41957253173747	4.47557071772099	4.26114377195105	4.45917224740793	4.55353194376214	4.71523613239455
+"SERPINB5"	3.16903280064948	3.04385858196007	3.40886959471669	3.34734970560302	3.31386617255249	3.2500670893341	3.20151913565647	3.25059488157214	3.52127990550384	3.25305764282773	3.19974090533624	3.36928816938465	3.18388794231181	3.33106371364531	3.09932107248274	3.29876296176528	3.32660152582733	3.65585036289868	3.3967019356034	3.35314436824801	3.25533960647247
+"SERPINB6"	9.90942440609607	8.98189008457775	8.9747021456486	8.9726401801542	8.67182190692708	9.35612428337186	9.18606267277004	9.12413712555491	8.77906578774299	8.85882721497705	9.40489887819581	8.52736544142839	8.78308615417701	9.17885789029663	8.83805379561422	9.41048892887631	8.74342917959436	9.46020895544818	8.96518349370892	9.07996779686086	8.51642262227281
+"SERPINB7"	4.30140716815934	4.44271749807334	4.52172952989603	4.56590033061377	4.56304976663687	4.56106699095503	4.54772681284776	4.45860620749927	4.5628338628042	4.4476314890072	4.24938177285589	4.30345125041673	4.55619943343538	4.65866566639963	4.45507984549586	4.35106163497688	4.59689444070224	4.37880711846044	4.17981502650824	4.6266767306953	4.32101007433724
+"SERPINB8"	6.36528631410582	6.32926775144849	6.30193662638094	6.79696877046717	6.51940443133484	6.68275601171302	6.70115370098558	6.33486472787957	6.51858151544014	6.41698977469005	6.11467994096765	6.51940443133484	6.71392988677422	6.92289575910966	6.49426101643457	6.52632909136324	6.52019319263654	5.9650803534182	6.38377032652344	6.40106856463885	6.66205660235538
+"SERPINB9"	8.23855119433967	8.16879317508259	7.55439069051127	8.03595527435862	8.11821136057073	7.47760046387142	7.95897269521099	7.5948184315699	8.37592147634835	7.19763746635642	7.84985062331298	7.71813324785629	8.41937131731916	8.37014953561396	8.18929423901614	7.68954160123779	7.85475811652112	7.70375944427362	7.75649986543093	7.73962213665584	8.21666005472074
+"SERPINB9P1"	4.8770606980486	5.16108995408722	5.14202088485969	4.95001230062152	5.01245713129933	4.46912773241655	4.60584673206295	5.09589858238204	5.10108127393095	4.82113633405956	5.3147926636933	5.01408139406832	4.94596548131714	5.01408139406832	4.93380134131739	5.00283596471207	5.24767984801092	4.82989670843038	4.98268287202235	5.23353871475406	5.18564710164548
+"SERPINC1"	4.14796894057136	4.01427305640163	4.10246670667321	4.28320978167482	4.14979772191853	4.03859229106954	4.05467207554605	4.15905105702411	4.32726417198585	4.07929489791282	4.23235045134091	4.01303260375952	4.21614302209811	4.2037701235426	4.2724703772928	4.41346542206068	4.10714153038725	3.99115446276078	4.10213840543112	4.05920478223499	4.31416361772948
+"SERPIND1"	4.05030881047811	4.30718086152922	3.85375312142455	3.766057937156	4.26004625761321	4.01457351249129	4.08635938161093	4.04841200627055	4.16516281864728	5.17289215461937	3.80016199915105	4.22768057851598	4.19373268339295	4.13756759323887	4.02442113136337	4.08985748523254	4.15801101558639	3.9246979150408	4.7096388695463	6.32171681226617	4.09717172747443
+"SERPINE1"	6.67923105339378	5.76863868396727	5.48010893966232	5.98346841196105	5.78358640344191	6.95383130218798	6.27783759895784	5.87967268031686	5.72662963381495	6.14174002330357	5.58899835370837	6.08318532027636	6.24624496249475	6.52268704482368	5.99458695358233	5.83041356932083	7.05703733091804	5.75649531656078	6.34794356135816	6.13403024571802	7.37886375685849
+"SERPINE2"	10.8315741308838	10.6711404911165	10.9448524132498	10.4914007814663	10.4740747411703	8.77056603464985	10.4035252284346	10.8437576444128	10.6307913528731	10.3270782674476	10.839947020199	10.4309130438758	10.3933970181037	9.92467303570653	10.0414634745831	10.1860038701523	10.524452024576	10.2842920828956	10.3294379353889	10.5554777592368	10.2511707416918
+"SERPINF1"	7.96202479796854	8.68451962159571	8.92425816628153	8.56243714508405	9.47622818169404	8.28387156771593	7.56047057093938	8.59394574050155	8.96693971906725	9.33671128659286	8.06340895369831	9.5099755715026	8.54636119294559	8.31787092226153	8.48518306896126	8.46927507613398	9.1584732099569	8.92339764890761	8.84532984360397	9.92390286279535	8.98993015461585
+"SERPING1"	9.3973695383575	8.14402192442588	7.98821334309044	7.97582152865452	7.92860569582264	8.02135433713415	8.45496086205296	9.2869568629745	7.98993571322771	8.80555038316232	8.53441400832929	8.58632766705854	7.96449245010575	8.30636621046829	7.60788546012941	7.46892754092492	8.08977935183434	7.46887178452501	8.19032382136077	9.29020032120646	8.16653363612633
+"SERPINH1"	9.04126826136884	7.11361245950331	6.82484057917314	7.82217463462632	7.10078850291932	8.47644647483585	8.23661544035195	8.3718829144307	7.42067626686242	6.93922094310273	7.10586068645266	7.38527390204939	8.53066243015485	7.50077457020719	7.73797269600291	6.94420711648688	7.206725284691	6.8450650584987	7.15702157292473	7.6001791927348	7.83458122754771
+"SERPINI1"	9.6202310377985	11.2711270037209	11.0837030059284	11.4709225343065	11.7333503422815	10.4621570889492	9.78680482654043	11.0078825371808	11.5382367632649	11.7202689831245	10.6712697402964	11.5553770975991	10.9914924373002	10.0231271464117	11.2398132148429	11.3043668337892	11.570550054072	11.5092227477943	11.4739152507751	11.6203972041256	11.6091448635416
+"SERPINI2"	7.00752952488316	4.93316449946227	5.10918197679698	4.83253003256814	4.96269622411945	4.91018229230842	5.11451563741381	4.89338326506078	5.03292814111793	4.84536099681277	5.85215301220212	5.02137038904013	4.99279282923964	5.02137038904013	4.72168603084679	5.04693406454755	5.02137038904013	5.02530441425893	4.90333351276525	5.02137038904013	4.93471835554342
+"SERTAD1"	7.43959162030497	6.89679895758605	6.46233387977897	7.12541516528508	6.97724195416586	7.92196912735962	7.69488778259342	7.95897621358249	7.09331688238477	6.81981735908167	6.92618178623287	6.67453090427133	7.61112719350788	7.51010609900737	7.42943753235985	6.73683780567774	7.02073292854132	7.07737671971599	6.96678196334464	7.11607900427454	7.15190104500395
+"SERTAD2"	8.21008245712002	7.74759470039753	7.94318184762029	7.62648162028689	7.70412460063229	8.17352924745767	7.56628828165216	7.80800755850266	7.61056507678083	7.29021638996715	8.21340136496043	7.61787758696894	7.6804222955627	7.64986251611899	7.47059385266262	8.49987941459118	7.67717858244694	8.53927831068771	7.90295738988508	7.74409731283742	7.46610208363362
+"SERTAD3"	7.20779002347965	6.94871677620149	6.64314756934915	6.7146531576645	6.77820420153645	7.70483242199388	7.04329208934796	7.32883665417741	6.94871677620149	6.66364097133409	6.98165438008743	6.94871677620149	6.5245688825869	7.0561632919427	6.9022422468975	6.84097305829607	6.97457486713167	7.53363940467026	6.7330740893595	6.95690935357517	6.92595465431172
+"SERTAD4"	4.31262149033005	4.12755644375356	4.35190325587488	4.22910722805264	4.06027005150744	4.22910722805264	4.36152423421217	4.05446492216968	4.04138882738378	4.29307489579171	4.01449245822183	4.14093194352956	4.26008688175335	4.61831520949663	4.32304464035895	4.25469487445841	4.21537359176042	4.22910722805264	4.34634699370544	4.36335600304969	4.22910722805264
+"SERTM1"	3.79159736114344	5.3471824179693	6.8960756388674	5.36528451607774	6.59829331847419	4.79717023843331	3.77421523224446	4.82203143533012	5.41682113532823	5.89357103166063	4.78473308350306	6.11466257638286	4.57681718256334	4.12981651342373	5.20556293365436	6.00169236485643	6.10144881753487	5.64425888183414	5.47495189740313	7.35871011127579	5.98108904963391
+"SESN1"	9.80450945977618	9.40117501634806	9.5931001061613	9.77496878218865	9.74593704736441	9.98733183486728	9.56588440363337	9.76216367834803	10.3872355986111	9.97232188231099	8.97495979463008	9.92991546574626	9.8311661003224	9.92064273051924	10.0495694439846	9.30248970698409	10.0919486778919	9.51110505974263	10.0765710350917	9.8640113215062	9.80191886068055
+"SESN3"	7.56990205025351	7.29386084444751	5.82119643386531	6.4183796483088	7.18046525535041	5.47962349349574	7.2946839814564	7.09744184721018	7.24514270657554	7.41349301883533	7.12983053436554	6.64016291171611	6.4854934035723	6.31117163871308	5.97705846911744	6.32733286097643	7.13395805921966	6.43073756207509	7.40192761159558	7.05965257463079	7.12639227387127
+"SESTD1"	7.06058450973388	7.7702341048498	7.81324822951442	7.18632730142944	8.01206005144089	7.97181816793671	6.71749871575357	7.56866913262856	7.2210707769658	7.6193763775428	7.99182158800245	7.75476851964712	7.1607481144175	6.88423173601471	7.14341108921489	8.45417754731251	7.27365805062195	8.35248721927088	7.71913150133259	7.55539097007796	7.56866913262856
+"SET"	10.5567187344846	10.4885814502717	10.2459362590398	10.230396218802	10.6662125857157	10.4643110689523	10.6048215265255	10.4819443246717	10.2899477312976	10.6475785190817	10.6464372931495	10.4920023409702	10.2634404931619	10.3316480065474	10.3668774882561	10.8825448363753	10.3748908731079	10.9229901054995	10.4920023409702	10.7210333168906	10.6069836220943
+"SETBP1"	7.26992562401301	7.94295164580319	8.31010267970245	7.49205066460699	8.27208166147276	8.13465345064418	7.09682796512567	7.40870705680333	7.60450722828344	7.64117983315541	7.42751376852352	8.12630452822348	7.48013649959212	7.51802711062169	7.6438977766807	7.32569070939528	7.85150816526318	7.48885101617841	7.59898386380514	8.18316813307863	7.66507462645516
+"SETBP1-DT"	3.97896390478631	4.55240359289361	4.78826754272647	4.43820767070953	4.69143474774824	4.61046419147135	4.55367563256004	4.26076732694762	4.15846691911778	4.36108613052459	4.15515933919079	4.32346476586394	4.30291884282523	4.59070235096386	4.41372788266953	4.31166892223192	4.21682086482448	4.19777739429227	4.42467339347496	4.58671333866141	4.15093452325344
+"SETD1A"	7.59459541627738	7.41910882970235	7.95104190381827	7.67375444053279	7.64690571536703	8.32196591222239	8.5964112152136	7.45979995209289	7.84431009189677	7.78545354073302	7.57137482480634	7.40605651562146	7.95236764768184	8.1694399796427	7.94811962163203	7.40957052448038	7.48312258325821	7.8680005211747	7.69239533231895	7.5741339691415	7.65883606358621
+"SETD1B"	9.56589175553873	9.66056632421712	9.62394048027103	9.70952597711451	9.69125568038169	9.8326504787993	9.46061323121136	9.43840091427585	9.82723029848407	9.29067904231333	9.50827851910728	9.36660615000054	9.71322840851897	9.81257479530734	9.59493627939629	9.42880432929168	9.48928448878926	9.56574521983029	9.26313597267053	9.60159902725231	9.54034667912851
+"SETD2"	8.07685406413308	7.72954807556875	8.00110747779564	7.5222968172891	7.62824784306085	8.26681457427885	7.84940612701496	7.51360110350173	7.55901408593781	7.52206332228227	7.76946248063031	7.45180849710486	7.72471797101642	7.88398932476896	7.72471797101642	7.90570349535719	7.62628717459293	8.32246601129432	7.5504602139498	7.68629309421303	7.48907324512987
+"SETD3"	6.65655202788825	6.02157572737164	6.31432214449066	6.5244795830589	6.13922436859426	6.98454566269026	7.30893388194503	6.66445817261105	6.14117216891384	6.63162366068492	6.1385381989219	6.3415283935145	6.13651926089245	7.00600856187447	7.03117002881515	6.90460686598796	6.38941497786258	7.3110655420271	6.50940082941766	6.50940082941766	6.32769925431006
+"SETD4"	7.0266569863129	7.1460462515299	7.59641203139611	6.45188325144213	7.15027074200325	7.03280340114338	6.3073630630962	6.31481025897869	6.51365582097235	7.08339717226327	7.39051189286171	6.97926809802664	6.93220057137495	6.95746630106662	6.92984341582871	7.30903345217471	6.53721276327394	7.38963942673429	6.48938735890397	7.07267250131296	7.04831345938995
+"SETD5"	7.93891541477484	7.58576436244121	7.00155654533099	7.28347519988748	7.39632612875883	7.69143873304798	7.69491840838088	7.88556841083289	6.94871677620149	7.67495910976049	7.65409588484049	7.65813635520065	7.4379620391665	7.55755612904339	7.12147354601354	7.47417129600355	7.60727495144642	7.63331130543074	7.41157639786336	7.58423780228086	7.73450056731483
+"SETD6"	6.86153517230375	6.99515901271463	7.3027820619848	6.90639154552744	6.90558272961655	6.462097248545	6.47704540957215	6.41352957420734	6.6960188049114	7.0666075633945	6.92347093105779	6.72540907508622	6.60777308838608	6.3237605249278	6.49026965108655	6.56660386155228	6.81825501444336	7.11639696306976	6.68226082111466	7.07776915462989	6.95617954614091
+"SETD7"	10.0571094403864	9.46943396006848	9.21467118046821	9.67703008545905	9.49277082737101	9.65818675245116	9.81757523788092	9.6273884818466	9.78708734704011	9.62056549593182	9.65790793446943	9.34832333184838	9.53392304428663	9.69657807174446	9.582833123553	9.67485575041609	9.54065189520391	9.96538085378445	9.70130173673766	9.74888324815254	9.53380957896982
+"SETD9"	5.29414202505604	5.29115639572597	4.70106132643301	4.54137296691237	5.50542012584241	5.51181218356437	4.78771367223203	5.34047998811864	4.91912212229306	4.72686752110217	6.39060579775419	4.99684855538275	4.7478460867032	5.09243236394131	4.62760609665705	6.68458396877338	4.25364463326298	6.21762145046816	5.13958948479559	4.96709666715237	5.04110075824403
+"SETDB1"	8.00424358424069	8.02008611817826	8.27697686281898	7.90145877823629	7.85535155829367	7.91772699284588	7.64176932393119	7.84187209383461	7.5808749069965	7.84923886348506	8.08795602251536	7.87317540909136	7.6177810370032	7.74688774491264	7.79114195949632	8.11203691952437	7.86104041067342	8.33539216789312	7.83089253349121	7.58605094624541	7.67389879854004
+"SETDB2"	6.73253309867692	6.54892998472237	6.965803845878	6.11221810089181	6.6406330454305	6.45343730845592	6.20278852802408	6.44982075573491	6.50329971432404	6.48975987888828	6.57603340337102	6.8120537872245	5.85824162721969	6.41408538360552	6.42955543692902	6.52695820540352	6.44698808816002	6.85648133801695	6.54441529735436	6.7389191411193	6.19364104234389
+"SETMAR"	6.76215713276273	6.51287084028313	6.48751259678328	6.6110545414439	6.58136279207555	6.16388261227842	6.04996502600293	6.27367589288075	6.42355332231425	6.35020809797876	6.74667647055699	6.49450104532258	6.38042500975017	6.32561994372473	6.37638754600456	6.46577683213721	6.00130376314103	6.93254260319663	6.50486911363902	6.72268622710969	6.35962095055489
+"SETX"	7.12669409738182	6.76813899395853	5.57309263630886	6.30672681013063	6.42716678958973	5.93587922541127	6.4003128956851	6.73253309867692	6.18387369453419	6.7865753930025	6.57787252778868	6.76163255935582	5.70546530125376	6.14505941677971	6.02280875872548	6.85484202226154	6.33632391600769	6.4077514624717	6.3260457940781	6.6650747200635	6.91851177959516
+"SEZ6"	7.39566488241957	7.73164123961018	8.56105926783149	7.70707306537776	8.29738759138352	8.38160344379845	7.88064455849519	7.62070106067301	7.72471797101642	7.85624126350121	7.6756191620222	8.00014503347726	7.69551945116139	7.85848986944142	7.52288932097376	7.54701349597492	7.98650200167087	7.55283664165836	7.66882044111356	8.64748043154225	8.25292860604269
+"SEZ6L"	7.22734193612731	7.97098728863759	8.51891134337246	7.85119233046586	8.40986286544258	8.24863647673225	7.86184057988109	7.96535522729231	8.5426870728471	8.09418848972577	7.35331387497058	8.25943580666252	8.26064647799264	7.78190945703968	8.46322643282788	7.35345579760072	8.43711883576345	8.10847205708096	7.83443446317354	8.40933437750911	8.3718236370919
+"SEZ6L2"	8.22571843653596	9.21525891937742	9.57709450861843	8.94782872026667	10.0156272974243	9.48955126029708	8.64550841396002	9.01668430500855	8.8898066240318	9.79935644541168	8.80047537090041	10.0547798319367	9.21525891937742	8.50782782138543	8.7530116688281	9.24614264068471	9.78558239851867	9.25472351941804	8.70698822166445	10.5131113013037	10.1686299792664
+"SF1"	6.36017278949439	6.43777820249411	7.42324478875841	6.50562538675028	7.28502932190272	6.47768301683837	5.90043589563944	6.2775742785139	6.35193154289527	6.60484764411064	6.86811374056353	6.94189299442227	5.93361762053162	6.88596215758218	6.38440631088686	7.50914438333177	6.05902729646894	8.08153047904968	6.0268456023735	5.88682777877164	6.1061998440451
+"SF1-DT"	6.40972799695126	6.66085342104821	7.64461234008761	6.54298099583859	6.31515691350251	6.23618611140851	6.51766654451806	6.28888904375582	5.98522189132479	5.87275755679131	6.43534198558793	6.04074875159439	6.14227422406461	6.46890446277525	6.21027807405048	6.04725915991779	5.90585573703177	6.45718866223775	6.38148711336733	6.13489585614923	6.02229296221207
+"SF3A1"	7.80914327825931	7.65732164540424	7.15288289392202	7.74683648009262	7.61319913527862	7.38430119101072	7.73397060582482	7.67678891828057	6.94326437972283	7.99329625176837	8.01172785017157	8.18590221778141	7.42624788339122	7.3651261113759	6.70416945736554	8.03627147942843	7.74818829591918	7.92802666455231	7.66617565846497	8.22167860910852	7.82128152011994
+"SF3A2"	7.62556862212511	7.62736704537179	7.73427278168418	7.44042804357389	7.23575125287779	7.72467451278106	7.36453674060344	7.56700661816651	7.0065084166217	7.1321366062639	7.77145514764195	7.36654973150663	7.42908678046746	7.78861356072632	6.53555580588306	7.78072856239791	7.35430034442926	7.63980147293901	7.2102918306502	7.18548953023154	7.13328789728066
+"SF3A3"	7.69651335577323	7.73510853407422	8.04595176540425	7.29817320098478	7.78868934177772	7.8501353245703	7.40133808450103	7.57395778925202	7.56915331635036	7.77514475958448	7.74099821820226	7.65887771045102	7.33064123402547	7.53496466140165	7.63255622350445	7.64193788836845	7.541430962458	7.79831583542993	7.54363629764604	7.78636536496432	7.74520882128076
+"SF3B1"	7.69855795277043	7.97637854298104	8.43313707099129	8.01838103632127	7.77355395429225	7.70383977755374	7.36625935403754	7.9345686742693	7.77893346670354	7.56071002481342	7.94437264794777	7.7080657115638	8.10559457126411	8.06101461559404	8.2354908909777	7.73732894155335	7.59505568255848	8.18031113004455	8.03239569408099	7.68466837729912	7.67085360872934
+"SF3B2"	9.72232677882987	9.5770806624102	9.94887684797166	9.60571130113212	10.0360511545751	10.5473359076911	9.94779300644688	9.7755073043927	9.65338887701784	9.81653635384649	9.87619402580835	9.75640057739661	9.74983804400198	9.90272281735869	9.78703050016979	9.85506720756528	9.80035844081967	10.5210550320115	9.6054969437967	9.83107061969278	9.49446463163868
+"SF3B3"	7.07233844210248	7.04477463749876	7.60047811955989	7.07044861393499	7.30745433222639	6.99320067811449	7.16626276877622	7.13291446402335	7.43788134384172	7.40967704882022	6.80464569401277	7.32313258774382	7.08601155870924	7.26687813260743	7.30569629239571	6.82431490561893	7.32498082837895	6.98159050614518	7.12048645623999	7.50169199822462	7.13332130790288
+"SF3B4"	8.45933576452496	8.5143133626615	8.37027780828735	8.35604150171265	8.43749771680125	8.46277992912002	8.11661730736965	7.96666661646292	8.04108692197789	8.34326577188184	8.55649916839281	7.99356100715342	8.43822322415137	8.35986853565598	7.96739944751816	8.41492114758122	8.08243507894148	8.5215955427196	8.02398622296589	8.35389049638832	8.27213360859668
+"SF3B5"	9.41400964551727	8.98345094259832	9.2305251480354	8.57349002497908	9.09434310593583	9.08684755539174	8.75078732050845	8.86348804612838	8.87151970270275	9.30109001240393	9.02311693687274	9.1071705928736	8.44188761424754	8.64310160784933	8.89943675495154	9.50175459542589	8.75824359358352	9.33212085802188	8.94376191592742	9.42331752719788	8.97888857983042
+"SF3B6"	9.90648311631886	9.4917124607253	9.37298198429015	9.51246950894793	9.32310537104595	9.34125426001266	9.25425573726082	9.42400103372365	9.33859085316702	9.49243264367541	9.89489809585138	9.3235511199801	9.20647721616966	9.0156248413847	9.39008998627917	9.76630896885256	9.0127179943181	9.76637599559635	9.70747799152136	9.53404819053027	9.17693212284858
+"SFI1"	6.98123328733982	7.22182913155021	7.68436085411017	6.9247115435276	7.24053048995369	7.98231613894143	6.92332438198302	7.11631920559393	7.18319328852412	6.97610350326383	7.07392197735458	6.66720082314264	7.26611050905674	7.62473244173555	7.0860608573078	6.53826246075394	6.88742491286372	7.1829479780374	6.97314299171327	6.78506306722463	6.96685457417037
+"SFMBT1"	4.78177694845324	4.87598852855677	4.79135090165881	4.95215069438828	5.04163605880597	4.63832612328589	4.61258546492653	4.43034043677478	4.87512258082429	4.61656382039297	4.34057268666813	4.58927523794767	4.8174986162598	4.93233655005212	4.71282213552852	5.05115795828789	4.75799280259008	4.57228301721383	4.58091427310516	4.91293136336369	4.75799280259008
+"SFMBT2"	7.70374758767398	7.33843360072358	7.52340155277467	7.09156305493893	6.88141271574933	6.99635842808019	6.983851766287	7.50727776746054	7.0745688307545	6.71659951095574	7.59816403863794	6.78332070494721	7.32528188988509	7.44284190090211	7.49241964530766	7.53826397967957	6.92270564009117	7.56917873683245	7.04550975302795	7.16081560585454	6.9901640029364
+"SFN"	7.40420080638845	7.73777743558213	7.53322157102989	7.69634373534312	7.32831174028243	7.66909175872057	7.47954634421322	9.76560666091713	7.42563206267501	7.4678841398183	8.20617530301068	8.61216993777828	7.43613376704576	7.23448729017134	7.54235340268162	8.0132296274354	7.73298811471856	7.85297530743847	7.60373277249212	7.29471367339828	8.22041996669651
+"SFPQ"	9.06676029915419	9.85824514534608	10.0590538359036	9.17937694075696	9.19554582060688	8.11549677868516	8.52649728278032	7.90036175642504	8.42586816348877	8.72116112829627	10.0985620119785	8.40410900233608	8.99116463065516	8.62026526733334	8.72951678879257	9.67361433815768	8.58677339950428	9.44741889492129	8.89491803647675	8.9701450695443	9.25501720701001
+"SFR1"	5.33253598394192	5.37993770650162	4.81189413821018	4.60247006670384	4.8260568804672	3.92450393272889	4.66004701310082	5.08434163260989	4.61903924425897	5.05260771674908	6.31314157489749	4.81189413821018	4.51674623183097	4.52479990790675	4.34665147053528	6.71890202098195	4.89351431089375	6.08949306850941	5.05719044872292	4.82128248997086	4.89785440702397
+"SFRP1"	7.44108822903464	9.02891999898289	8.28799725129268	8.03257691236101	7.76853989504387	7.98547019073604	7.74022357713998	7.74599548289784	5.83456180917191	7.22384393513285	9.9988038666228	7.59931907585863	7.74022357713998	7.70907451227661	7.34807598610605	9.40931023764582	7.21025954564023	8.98110755007605	7.31642167609521	7.63668193894783	7.11434376497717
+"SFRP2"	8.32606227705304	8.70422318296744	7.52489104427965	8.23273576833779	6.99505660233855	7.53368365071787	6.76259043519961	7.18521198504815	8.10157015270866	7.79875724303968	9.86139479469583	7.74994642854129	7.08956754387138	7.62742824658474	7.08741155274364	9.64589783680303	7.72909618000294	8.4891942622238	7.86412306840301	9.61613937425891	6.16702178223995
+"SFRP4"	4.88548364385296	5.2125455222834	4.71462195791196	4.8355792358526	4.53906369868278	4.6747018500221	4.76968755238661	4.92589032776168	4.81944827313596	4.76883475984584	5.39324672521147	4.95990038127201	4.88548364385296	4.73075183664665	4.81838853621399	5.56656219214635	4.96103703085697	4.68065947532276	4.7096388695463	5.1872314606845	4.97465533948334
+"SFRP5"	6.72531848357503	6.72531848357503	6.72531848357503	6.49187040531712	6.66112229789592	6.9614532100958	7.06770136003693	6.44447681148963	6.72531848357503	6.73961399974601	6.69406851570386	6.72531848357503	6.74372239380896	6.72531848357503	6.68991709560082	6.76031424056583	6.6785408248673	6.50567622040214	6.86382536979322	6.87779525929669	6.67926560088224
+"SFSWAP"	6.40576724515205	6.30887164464847	6.04169297553426	5.9457665155046	5.77127192872887	5.09787469257255	5.41469639818099	4.80310550265952	5.37614556004197	5.79928459290049	6.97701511430867	5.31563227069359	5.62051676935983	5.7120113283559	5.17560255628491	6.95363075499364	5.23501866397377	6.75103483501259	5.67334827075621	6.58227948280144	6.05380789345508
+"SFT2D1"	10.2298604756172	10.2331133804829	9.32486474097108	9.83698958092898	9.84830476716947	9.52936869480064	9.83628548184747	10.1080299025212	9.68866918754451	9.78858100752067	10.4323039785789	9.75816056635705	9.26413326655205	9.38338840630276	9.49996669901211	11.0213248142187	9.61405711343573	10.6676206379798	10.0529721673374	9.76170394094415	9.57697636000965
+"SFT2D2"	9.34027762016076	8.20063426235102	8.20335081474416	8.57582289961104	8.24778066619273	9.01958184142614	8.36606147436251	8.53742167379288	8.41333865632438	8.21086901432338	8.98108883169346	7.91533553719716	8.13311944774337	8.69512806414716	8.49989492998472	8.72029525862979	8.1899296137346	8.96429790480254	8.31617458937214	7.86597659022302	8.26480637144406
+"SFT2D3"	7.55061064149506	7.32248436663194	7.14832157815778	7.28813815118346	7.47689084938191	7.28193154751261	7.29146452943275	7.10930942439042	7.21388148950587	7.28193154751261	7.79135779181902	7.23755299509616	6.90261830984935	7.16712106679049	7.05820852450458	7.88471665358379	7.23697086712586	7.92814697135101	7.35751679835897	7.39604547076921	7.10953239663594
+"SFTA1P"	5.60006936341306	5.53063604192359	5.6124931946435	5.50310564388435	5.53211917640488	5.62641812002998	5.70491146600837	5.48616387173054	5.56834643650471	5.60525575485078	5.28147068269493	5.58144528089111	5.7733164385315	5.93720879721156	5.68543505649605	5.42400141149751	5.5941733389914	5.29216116055662	5.63493854485968	5.70224545544299	5.80577497824873
+"SFTPA2"	4.75632235165555	4.84221627965717	4.84221627965717	4.6701928007212	4.81713449058671	5.12911708169814	5.13042775549745	4.96280117099258	5.3236895494301	4.87468333424895	4.73622402577505	4.99728018634076	4.95452492867162	4.89861736725031	4.36360589027419	4.99998407343827	4.97407276417643	4.59621477608056	4.61284354163675	4.86825465669277	4.84221627965717
+"SFTPB"	5.73971809950586	5.74200124446628	5.9104302851312	6.1244341248861	5.88597530215168	6.1300637880827	6.46731766238617	5.80852620035766	6.00270421007595	5.92231456712242	5.75135634074812	5.88200550442226	6.06756481963952	6.5204950671043	5.9355755859936	5.71534785696193	5.83994786907342	5.76246089004847	5.89633312991837	5.74811938853951	5.92685870415938
+"SFTPC"	8.52272258549469	8.35140106318886	8.15806781351678	8.43290288553951	8.17586453782054	8.49786588092415	8.19965782360322	8.26351346350956	8.20285881282807	8.18504514378433	8.64658037763958	8.14908778926931	8.64067677346645	8.48569936400902	8.43428027541616	9.45680541418243	8.51094653108535	8.49608144018962	8.38155654746383	8.13356961702719	8.31958431852158
+"SFTPD"	5.13449612325385	5.59397497784029	5.68574976054694	5.29274730601974	5.60033330518757	5.24341700235072	5.14731412827161	5.40311200319124	5.3973348872181	5.46011468923226	5.68729265194516	5.86145701733087	5.25532812692713	5.11092593663585	5.17266404443165	5.69972028868619	5.35909028141993	5.34810385551279	5.62070427306363	5.76781376328195	5.40862735562634
+"SFXN1"	5.82083080356672	6.58640520475638	6.27491531476537	6.25290694261305	6.62775409459602	6.18525411831997	5.88672342483314	7.12409635949104	6.32699378264789	6.19872776968154	6.48658503217851	7.30557471563855	6.24968457439522	5.78061805927401	6.37873173119795	6.35269733922711	7.04868698532723	6.31847562804909	6.58137820378379	6.08358378441622	6.1349095991008
+"SFXN2"	6.66402999313391	6.85696987454709	6.6717011165812	6.39381059789217	6.25742630402457	6.07214844589998	6.16016111128814	6.2775742785139	6.43531554886485	6.4427606172238	6.6717011165812	6.53002919674609	6.45751461723277	6.40324443217707	6.32091544955583	6.89913251003221	6.25466870502512	6.24684817275003	6.52864873849412	6.43531554886485	6.67661272640307
+"SFXN3"	9.15835087949798	9.00270191824097	9.35954140225813	9.00470800180822	9.05163301603947	9.47983505845666	9.24035163715173	9.1233841215689	9.31121381441048	9.24025136504528	8.85787845800588	9.07492236953251	9.12431362991985	8.86443216135222	9.15128800182892	9.07287377812552	9.65715126451001	9.14699419548122	8.91588793762691	9.25791655542601	9.33199400155043
+"SFXN4"	7.67870505085246	7.39450349664923	8.27821627171772	7.46492794629222	7.80097583962781	7.02262640526158	6.99647023849734	7.61914835983638	7.0839875246391	7.76064184366098	7.83810167672769	7.66615006229328	7.07433774606208	7.3272606645089	7.46325888554833	8.14006615092794	7.142639651234	8.138849155217	7.36439623915634	7.95935739766933	7.45007721163091
+"SFXN5"	4.87532673914331	4.86410885382844	4.66762087244508	5.29617509466343	3.9770347797051	4.83965617665192	5.19308883105287	5.45541577856828	5.63575515534144	4.94231335077409	5.1915035498563	5.24897209230515	5.83770188055377	5.2698210034346	5.29228784679756	4.65644441290145	5.46049976254501	4.14697240615802	5.01801330894842	4.57017833167636	4.99478602473046
+"SGCA"	5.03241286584889	4.80767941626004	5.09122390903668	5.05383707287381	4.66784483447504	5.10460409432378	5.65989134100842	5.04384294345482	5.1569419110537	5.27947829830099	5.08478557111895	5.18257532543576	5.10399858864156	5.20679688268164	5.07132118929217	5.01865489761882	5.28544366764843	4.59084684846046	5.33404037441814	5.15359493717217	5.20687592655086
+"SGCB"	8.97531513235749	9.15636670345849	8.18806808420093	8.75967080689588	8.30249404840484	7.43426626250691	9.05342409192163	9.14029765346801	8.96525223667162	9.00981664928687	9.47847381097129	8.78595409786186	8.77879702452513	8.8064259539638	8.7050672660978	9.56034177236691	8.80806091346047	9.23090008438579	8.77185238830997	8.8019471590201	8.85660811325609
+"SGCD"	6.75679141962839	7.11780971882033	7.00354351054424	6.55891359276717	7.18661373198192	6.91800160429708	6.70469259965754	6.74539642359874	7.13221761550897	6.7639590176349	7.56941970201812	6.53251429925087	6.87865008655686	6.65007193800786	6.90488259577361	7.83924651415113	6.7365527648818	7.71997789653195	6.56268518151175	7.17802911927503	6.32611001103593
+"SGCE"	8.93413010416977	8.56899550714299	8.6318148967295	8.39260000177112	8.45327076460527	8.000924581968	8.58534558412815	8.68179490772739	8.48842532970829	8.35353067580733	8.81987868952081	8.16553325449734	8.16461177464618	7.91770570676577	8.33438343790826	8.91070426271312	8.23498049632468	9.10306071032698	8.57662407152335	8.35118798134356	7.81270167519789
+"SGCG"	4.40034779094947	4.55024733273822	4.49497619638741	4.50299836100233	4.90951331510996	4.61027485920959	4.51775837026047	4.55681225608351	4.64892889933462	4.49421882085951	4.27263603032813	4.80033159595781	4.69554931126308	4.65382018075613	4.88506391445107	4.56147406298284	5.03873412865485	4.42530185470826	4.30445368338976	4.60731469088798	4.7096388695463
+"SGCZ"	3.66586440023332	3.67884275111033	3.5351506363635	3.68119663224145	3.73842996337725	3.67884275111033	3.83601748056237	3.92786511450839	3.71031846596918	3.68677898483993	3.43182132143201	3.72177226024433	3.66389762768934	3.70029214507097	3.78016166008597	3.61316868182356	3.67884275111033	3.53145425837626	3.36203487225346	3.46606732449807	3.71755692986733
+"SGF29"	7.02242688653681	6.94814401293906	7.39366246596153	7.27012320855702	7.04248167489187	7.58595103688473	7.4844205439877	7.08883081409969	7.34751736909214	7.32069459781919	7.50125474009107	7.28868606682172	7.3381759494893	7.37398897627695	7.32069459781919	7.43034825839288	7.26053276446101	7.5902501188407	7.2455025987986	7.37580992819228	7.45600599636749
+"SGIP1"	7.69454884596619	8.30365821394939	8.6337484493075	7.96677231852347	8.59230191064715	7.37948242138097	7.28650991729621	8.06922994415432	7.95081488451247	7.91619975060683	7.73070335354752	8.04962258588187	7.55547547865131	7.38322564534702	7.53188535297735	8.14964672097088	7.979533556688	8.20901892380309	7.71718642752776	8.26558569626354	8.09931736036937
+"SGK1"	11.0625446635013	10.6366983202659	9.83311467636768	10.7526596886994	10.4520134740294	11.3549644884087	10.4511997942831	9.82764926053761	9.6589163622622	10.2392504645951	11.0154066712834	10.2474113843321	10.3193295729614	10.8484139075686	10.4204075467055	11.3152155518014	10.3395136789951	12.2518827047887	10.7280013861937	10.1520511019772	9.97085864785699
+"SGK2"	3.83353097716374	3.87661100939894	3.7119631698119	3.75155248167262	3.98936264343125	3.76843118409407	3.87818303191696	3.61726483650245	3.68551824819887	3.68669742133722	4.40754158688137	3.78883414939222	3.74483813961275	3.51335922057593	3.68503417262786	5.32213346585116	3.805333561362	5.33946885689188	3.64667776829204	3.44797798619099	3.84746626312461
+"SGK3"	9.48418683533936	9.4876472680788	9.34594549805468	9.28584948005596	9.04234498665733	9.42072504416335	9.22889642249859	9.25233647759542	8.61924078400355	8.64128141557212	9.96327733695007	8.89461067336407	9.11327758648095	9.35681419472303	9.12598269218419	10.0150775204654	8.934690113392	10.3054368225903	9.21316336221971	8.6232909048766	8.81043827522229
+"SGMS1"	8.09555595906824	7.60439239105124	7.08702380457477	7.8336768489086	7.38882805942184	7.36885711296095	7.28589908118514	7.8030900411724	7.47589499571119	7.11453808355852	8.10331989571815	6.88736769632646	7.64949614593953	7.38221748029495	7.93358203582294	8.2311362338689	7.34878228884311	8.45418488598403	7.43519614565194	7.06031540390069	7.19538957615467
+"SGMS1-AS1"	5.27155682330218	5.51698186140246	5.21334565332718	5.17255281311605	5.30558342092068	5.31939189070821	5.18389574061508	5.27155682330218	5.1647316826582	5.3985889532566	5.33137903525631	5.35404995157328	5.01464208105289	5.34724525306203	4.75055395029549	5.48652931501236	5.46049976254501	5.10819056341555	4.92451839871869	5.09427619435957	5.20320888779034
+"SGMS2"	4.09011710849294	3.60845125634317	3.61444602814023	3.44613688984924	3.70087485033932	3.46447445395132	3.23259604650945	4.25104373591821	3.50466358930005	3.36268610093462	3.61346819161325	3.47140758494416	3.43329039640019	3.39678864100935	3.32942933688503	3.50310234788329	3.50310234788329	3.47140758494416	3.50993697727048	3.54496981877115	3.53582175484323
+"SGO1"	4.72315069829472	4.82255418563632	4.74687803156437	4.90517058879397	4.67490896298424	4.82255418563632	5.22162388228828	4.94222618838764	4.94438962251634	4.82255418563632	4.68072824386095	4.62749064969741	4.81209760568764	5.26590355278674	5.12746650795198	4.93492546276122	4.99169548668545	4.76434221277632	4.63327950517471	4.63708466911723	4.82255418563632
+"SGO2"	5.46923289868158	5.65177667177139	6.01598587568731	5.58584962923627	6.05113131773571	6.65843440445791	5.61781992874554	5.79484862190047	5.35547040653621	5.58053442901371	5.7812875187445	5.30801511561014	5.59408625874025	5.60782964684942	5.53954586459402	5.45312032921175	4.90955776312661	5.61781992874554	5.78113654358351	5.47549039590615	5.44729316578397
+"SGPL1"	8.79324628950181	8.30009888630233	7.88711867035336	8.14110974077697	8.05455480204433	8.00779576366413	8.14644918316039	8.24252444187005	7.90243118130295	7.58124556570518	8.48774136581313	7.65562500764918	8.07270528309024	8.40941688916107	8.02618974813148	8.68992367216256	7.99530982794739	8.38225731069316	8.18201653115898	7.95821273339202	7.85249059153122
+"SGPP2"	6.2363468273647	5.59761904765967	5.70362124534655	5.77231589349209	5.43366813278375	6.25824320286362	5.96237698837395	5.98328986783121	6.71584065526345	7.93044366043403	5.64514503123062	5.97715325833107	7.57999054424517	6.7225244778429	6.97732259628757	4.89990227919344	7.17107683693434	4.94554742415631	5.91832324105895	6.43773541426842	6.38464335296128
+"SGSH"	8.76268692093823	8.68373344826039	8.77276488862332	7.57068644924141	8.23691921576577	8.10448031506204	7.8257839132974	8.39020303823786	7.43553879901855	8.38595387730632	8.55797869907804	8.38731974198296	7.81115753779442	7.78598146989979	7.30557911044046	8.22098654872587	8.33724231536847	8.09515983875571	7.69329043243361	8.41290164781561	8.23852517737061
+"SGSM1"	7.96225913124609	9.17988283845574	9.80488779337164	9.12795499679653	9.43130290389018	9.14915990060265	8.34411166336217	9.02489275533296	9.23624100127009	9.38828555737487	8.62427177723074	9.31785530141516	9.14526111439707	8.70805374835717	9.25944764531212	8.60545734645067	9.64097015489046	8.90268066966026	8.84697313350627	9.49300988420421	9.34208656583035
+"SGSM2"	6.2695824894001	6.80806397761252	6.87003651008852	7.07829992105293	6.38322563199138	6.54809057595236	6.97492209724323	7.00425534002059	6.73833579171416	6.64102253409227	6.85364477485034	6.67590936075573	6.82375511531981	6.21633086091326	7.0580771687435	6.31216800625062	7.03967800590317	6.24491890303952	6.71071264958881	6.40653451542155	6.62181567443935
+"SGTA"	8.65435337615206	8.33437252659804	8.60240679694627	8.42815202881282	8.25976539998995	8.85782185644029	8.62575464965744	8.58174956366273	8.42466657781946	8.42381519113743	8.65426562822384	8.47764655009303	8.31090270316051	8.5815622896831	8.37042684583492	8.55094627879497	8.23071247328878	8.53776392305436	8.43064158971184	8.52531184443012	8.43098695923281
+"SGTB"	8.62208709052111	9.48774622203835	9.62923681826379	9.55395941551308	9.8958963694761	8.74780610204111	8.1524365882423	9.24841776724185	9.85895566079775	9.50018893218187	9.10226570826425	9.49980079532446	9.95911383465644	8.74772679810618	9.85087838720704	9.01621999989168	9.73291345345669	9.39060965373346	9.57548865711918	9.41484914408279	9.78320891741119
+"SH2B1"	8.49474225841715	8.56128904062497	8.68564653130327	8.78831455621689	8.32570210489498	8.69451794370677	8.86189523539409	8.59851063134806	8.77081756884751	8.66230867525418	8.49683066070831	8.76410746289449	8.74299349015607	8.81661906459922	8.59903706620047	8.46274183689463	8.80706789480093	8.55958480499574	8.66230867525418	8.66090283126884	8.64721472175114
+"SH2B2"	8.5150782370715	8.60108381994321	8.36373195666346	8.984962990338	8.29988208415294	8.8997379985405	8.83768829139152	9.06607823737369	8.68003101279763	8.32910942296623	8.36937762545261	8.55853091297368	9.1905331566429	9.07730762246904	9.02145015691505	8.00137560540562	8.43169357968131	7.87263849444984	8.74190430203858	8.50502599337149	8.63561076067196
+"SH2B3"	8.48469750369854	7.93168057796767	7.37727209809008	7.740155754567	7.78111058075068	8.11650492167846	7.48864032264044	7.66225901537705	7.82759609710617	7.57249628982336	7.48348123760534	6.94689048829085	7.70652042365682	7.75104079974588	7.48040687164655	7.49849129381036	7.55414613824198	7.63585185656987	7.71297106455604	7.81841870679685	8.06792408364623
+"SH2D1A"	5.01250411058364	4.89299398023	4.97887898624972	5.06844768311228	4.63857199595212	5.07518637224	5.32430858898864	4.86690190705485	5.1514540529096	5.23598333320238	4.86332119890269	5.18572128860119	5.18662225023842	5.21006688651644	4.62914051851194	5.04449349166049	5.0727644020581	5.17259808414498	5.0727644020581	5.29004714288028	5.12817053071647
+"SH2D1B"	4.46266815620493	4.22492142257305	5.17800210906628	5.21823862123744	5.35133579608278	6.18717049063427	4.72083029964895	4.87603613749358	4.7192915838999	5.37727859387033	4.49649768291441	4.99062805069474	4.891431597517	5.20378405788212	5.58902894649551	4.86986392122983	5.00464271214721	5.15742496372659	4.97032465993864	5.00226061274798	5.33754619574069
+"SH2D2A"	6.26636209760581	6.27580215003386	6.04408681830773	6.07209114824532	6.20588141339706	6.67605247764827	6.20014063195039	6.2406990908995	6.54009038463349	6.21599484188354	5.9534594772145	6.2406990908995	6.61838258742305	6.52138431131393	6.23806819284414	6.39101650301328	6.39619080752704	6.14139368990798	5.94570517050411	6.30761326988924	6.27224297998918
+"SH2D3A"	5.61908630235386	5.97327022767566	5.76818784025168	6.09507565556517	5.64912582762758	5.75177129029912	6.00457456699752	5.96499699300992	6.09416123987353	5.74906133379687	5.87162979023845	5.8704121990033	6.02813090847607	6.01525554457951	5.95838532853514	6.05590379593299	5.83094050588275	5.50599110071651	6.04866770784792	5.5666607427933	5.77806434068021
+"SH2D3C"	7.52964632023889	6.80312159536333	6.99415322081466	6.9840390782803	7.19455115753779	7.39175443933048	6.68084200969507	6.79974629653748	6.80971938631118	7.19577811167666	7.05605244116454	7.44234848885141	6.99078971418362	7.08227284427002	6.51200675263539	6.52319384410637	6.84640906252936	6.76211278673795	6.57836217502905	7.63011022092251	7.21025443025564
+"SH2D4A"	6.83213272548871	6.79730584687813	6.58924245969058	6.68190999382521	6.48060731923981	6.72670697142586	6.97952032043847	6.40747224367524	6.68190999382521	6.65126059859702	6.60770529609888	6.7937022695765	6.71315981306888	6.9368688293197	6.68743742767874	6.68190999382521	6.68190999382521	6.54268872136131	6.78909074805039	6.68190999382521	6.79495080533626
+"SH2D4B"	3.88894730665405	4.16693007590598	3.80652377727232	3.94172425315018	4.00144929245932	3.91463598242092	3.97255063822852	3.94799081514853	4.02902103000701	4.07054179822767	3.98726661797426	4.00144929245932	4.1720695819864	4.3970147344094	4.2298712284722	3.87021043634304	4.03628446594343	3.79017786875761	3.95229270224951	3.89426853823414	3.94847753638272
+"SH2D5"	6.79315244240167	8.12622952206115	8.98206031986328	7.9211164666204	8.6519913430759	7.65629776323086	7.61282890084061	7.78794248692631	8.24541496575922	8.01394593955422	7.42708597909816	8.47195449262639	8.0648316213675	7.42684579753736	7.58786802201582	7.83887335785738	8.10181095250123	7.93012063184376	7.83627856990827	8.94843386584086	8.44989153057237
+"SH2D6"	6.76782597743569	6.7457351833989	6.47310428845729	6.83351621915598	6.60346659699955	7.63097213824893	7.15916526344988	6.35346723828212	6.53074024733464	6.6502499779993	6.47204333597999	6.65331895047584	6.67385820263704	7.0532812365462	6.74424077621684	6.5707511606466	6.59437436979301	6.51647774178994	6.7430538590331	6.61710150597587	6.52914469251151
+"SH3BGRL"	11.1080052548291	11.066373879835	10.3824675855466	11.1524170622375	10.9512408451977	9.76851309009202	10.8607610002563	10.9660978115827	10.9784972144479	11.148171990674	11.3399869666885	10.9726816299167	11.230627359299	10.8043674837947	11.0263641884814	11.018456859654	11.0297784825019	10.9842532594558	11.1880324050288	10.8298195308331	11.1545070229549
+"SH3BGRL2"	8.75511083087726	9.00645604230485	9.33724245545854	8.84455544684263	9.80459441683669	8.70624835481729	8.35508277474753	9.02144428093337	9.54626952262983	9.7298782612727	8.76836212086474	9.62447037515047	9.04528486186718	8.56218121211123	9.33074146378502	9.00255192330437	9.53919617906229	9.22110289226379	9.23923874140452	9.62311542956465	9.59825548635498
+"SH3BGRL3"	10.0671624496648	9.40145115977064	9.46516377029048	9.75039947376199	9.4644878663944	10.1883041350307	9.51000956618319	9.61864106694464	9.51952710223821	9.91038594215128	9.49493595823793	9.42806760705362	9.93425748805934	9.77987505025482	9.59513565919079	9.40006337602206	9.27364443703573	9.65748130685939	9.57018672843568	9.95870528969119	9.86189166178993
+"SH3BP1"	7.53727026368538	7.57549981756547	7.70629212326149	7.76853989504387	7.53735836170773	8.15616062401604	8.60883915764945	7.59971454328822	7.94684671508378	7.94024891676325	7.51454179999738	7.79454419806909	8.05575869773994	8.20343620740219	7.79513149092701	7.57315248043515	7.64126077108425	7.36849729969508	7.92854318707006	7.79042593102141	7.76410207739979
+"SH3BP2"	6.91291171529719	6.27967494903893	6.24443397539332	6.33638864659916	6.09844689386486	6.72203791073501	6.95660101155037	6.55832946881915	6.52663208315707	6.43209363479309	6.39230446846169	6.36662335801126	6.77876961612558	6.77267021094113	6.43209363479309	6.09354974510682	6.29424194502279	6.03935634866892	6.40382767411492	6.68458396877338	6.61085296463234
+"SH3BP4"	9.00828378843089	8.1792375807149	7.93958113485815	8.03409047048675	7.75448567735842	8.866145583702	8.32711228530086	8.28264021707368	7.54453400746917	7.48797275612023	8.82717307269338	7.47641202345717	7.91274244315906	8.67608879670878	8.00270849834189	9.22064792313737	8.07669317615813	9.35044049747229	7.86402678892417	7.55134332205244	7.37376770106469
+"SH3BP5"	8.63761071555895	9.07109563345122	9.13671616280121	9.03092110785449	9.54105265403636	9.47602592733491	7.51817600895686	8.68728146081249	8.77736380860624	9.55173437157798	9.08601193367531	9.46141116260566	8.44438900726919	8.47619751191992	8.62132255999928	9.62701306532794	8.99871034851418	9.47506133284252	9.07109563345122	9.50421142213269	9.15312676919819
+"SH3BP5-AS1"	7.53264303363524	6.87155549942529	7.54265833161899	6.99469201665118	7.34317320954167	7.32451445880179	7.16458761190597	6.85819258245182	7.01714163905033	7.11161615961218	7.20299994955822	6.93708506113003	7.1100810326869	7.14204793514497	7.35177398883566	7.37357935396937	6.9040327378414	7.45987202794964	6.97968941070715	6.93218334615956	7.01301427035858
+"SH3BP5L"	7.64098158966037	7.54724114777244	8.12004529154301	7.8171996847115	7.75816025198943	7.93235729752556	7.76520497840412	7.39881837372011	7.93629364819641	7.72439315882985	7.2955662836878	7.61906735241469	7.82270725011008	7.88964234945683	7.76185133455617	7.48076807551546	7.71779157669609	7.65608547155608	7.73182523966013	8.00146287499578	7.69684459976449
+"SH3D21"	5.98984719915609	6.49564954788427	6.27821968995942	6.49914688501141	6.03210734524816	6.79551332747728	7.01971422978347	6.2775742785139	6.72291525500904	6.68849085908921	6.29725312302458	6.70637087610639	6.71582764120003	7.02728368454481	6.42105192697133	6.42639922701914	6.47348387030338	6.44648154056853	6.60085191325798	6.49564954788427	6.70071932304787
+"SH3GL1"	8.62465731682055	8.61227674103887	8.77040352702462	8.71148017922932	8.57503541260276	9.23211371871574	8.68985298675792	8.63107414767946	8.77684477189898	8.55821818614077	8.47032234036885	8.55406408820772	8.86213901816467	8.96971246671587	8.64682996181163	8.24040222392157	8.65964208251118	8.53511074069793	8.45417754731251	8.72005387037839	8.52970840214419
+"SH3GL1P2"	5.80217010044286	5.56836763036926	5.46642486594893	5.88264730326737	5.53720597893263	5.91122617774984	5.77127192872887	5.50834167935609	5.98071142203911	5.55890411844152	5.6327231659069	5.76355622019163	5.68248685531828	5.51106357142161	5.32625787986687	5.39733919367881	5.58579598022045	5.56473442184765	5.79783724014356	5.53147984400162	5.59945552312644
+"SH3GL2"	9.51354872905951	10.6368459119421	11.1168408909672	10.6783488977707	11.1484412356189	10.364111405998	9.20149217117881	10.7411306240219	11.089768734222	11.3292365977668	9.74523654642952	11.2575643859892	10.494615425546	10.1787143355283	11.2178000531672	10.1818228609084	11.2592254588803	10.7372772236452	10.9471021440412	11.1490553733827	11.2721178070389
+"SH3GLB1"	9.11276983355724	8.59287612642815	7.61983554883248	8.39234621668888	8.13860787038588	8.03682886365331	8.15053226479329	9.17509294412577	8.08169910744253	8.34882746357605	8.71589803444426	8.38124207462764	8.33545310542298	8.20948317649431	8.48142704423213	9.09587514327034	8.02733319164436	8.74597493029205	8.51641355312797	8.44331219302862	8.47816771287544
+"SH3GLB2"	8.17493143149728	8.5362866569032	8.84109985959452	8.35723635799204	8.95841368142815	8.37931453050177	7.99588759824439	8.26372163810763	8.33377561787873	8.93845891478265	8.97917553362622	8.96064191511673	8.12646418084258	7.83823216827684	7.84340512114052	9.30707066578198	8.60647191814288	9.15933089893988	8.31828401065435	9.09437203202436	9.09544289372061
+"SH3KBP1"	7.61560505456143	7.74305422360097	8.65349912925184	7.77208277203689	8.25058770070255	8.40658534936571	7.86302888165989	7.58301757448765	7.92880130862349	7.62399925339047	7.55950232387019	7.56975347334793	7.73627783690016	7.81218992003401	8.06694882952643	7.66088494908808	7.71656704997105	8.14010366549731	7.63635174459575	8.21613364035504	7.73095721487456
+"SH3PXD2A"	6.15428684360832	6.18033135759474	6.37649492216134	5.92654188492381	6.09210088572957	5.6115975352203	5.87678108324497	5.6619896314054	5.66250657335757	5.6833588577675	6.52783169874006	6.02341811486748	5.90739189760262	5.5613036442313	5.67561727198629	6.56930504889219	5.97992111385636	7.38621755520495	5.88901021058502	5.98647317547913	6.47194386786028
+"SH3PXD2A-AS1"	3.73629947581056	3.79789751493351	3.70420812797859	3.88280711809322	4.20614785172071	3.8658010950692	3.59035006425724	3.82054156112094	3.94778783062946	3.78055680700407	3.48519795173222	3.76649585251223	3.64323395590198	4.07792606942969	3.72733357927171	3.83716583817444	3.68451908168861	3.74678796243218	4.01647994994951	4.01943999231249	3.8569309423746
+"SH3PXD2B"	8.91276510752771	7.96224285028358	8.03348162513585	8.25357703347437	8.03324649591496	8.4270458036142	8.53496079064491	8.14534643195161	8.17917667153712	7.77889955346652	8.49283143932606	7.54429732080419	8.17056151604332	8.36305131436435	8.00510426270634	8.77688044466412	7.90089882678478	9.08302382635434	7.63414299900238	8.15635860492189	7.78598077620122
+"SH3RF1"	7.21087056093367	7.52895021222461	7.71057041956223	7.31851311481584	7.9798097210267	8.27505320651349	7.56780544260814	7.53045613458775	7.44516399197283	7.56483122423134	7.3792843681532	7.42996750405972	7.47735506577428	7.66660493768376	7.15800066137782	7.36593452091134	7.17807361292493	7.64657965211082	7.24920337682012	7.80286408020721	7.10412625907101
+"SH3RF2"	4.2318920483246	4.46327053775636	4.84334290177153	4.56886410882084	4.85678853531995	5.15462763495023	4.68697742893942	4.42130241457917	4.78393192856771	4.70135157234163	4.23806689864888	4.67713625222252	4.75293053230465	4.60139193209593	4.87103364668149	4.43494234819537	4.87426859644457	4.24146600153018	5.12396353754461	4.93294285382494	4.67754924502068
+"SH3RF3"	7.89722710072591	7.71078489811697	8.17834358617957	7.53743372332653	7.43042060042104	7.64969759704228	7.78023444598128	7.62174607878529	7.30950944763352	6.81069136211561	7.49304662138133	7.19992023264427	7.69592831696564	7.89778769312774	7.9978756347287	7.17999066805843	6.96582207181575	7.38211074835513	7.34787043409388	7.75588980785197	7.54745480716356
+"SH3RF3-AS1"	2.96006625627031	3.08480195968514	3.17960985544126	3.02181163301704	3.13489434008474	3.21154985508036	3.29116230342947	3.10719667885512	3.11694884416986	3.10777047630611	3.10210101614635	3.11384316029465	3.12877583574233	3.56671727284995	3.11384316029465	3.18084941477492	2.98407014697294	2.92429165854493	3.2547017463936	3.08277414601859	3.10224164648137
+"SH3TC1"	7.97885905095607	6.2669065270912	5.80711862327604	6.22711676241055	6.25163615696162	6.96092918798746	6.88388170087791	7.10692787687298	6.202143603654	5.98281673607703	6.2318413794441	6.58362259943909	6.64771672456731	7.28724724392942	6.2344131579758	6.21809985698417	6.83371786012609	6.61494980964963	6.61550071492461	6.9702637298121	7.0038208925016
+"SH3TC2"	5.94574173818348	6.83900781031043	6.08361367529484	6.04172610752075	5.91566277266682	6.68706856195094	5.14447306713061	5.61976034477975	5.21839632780551	5.69783485279294	7.1937299812906	5.8152551394287	5.0572808523961	5.68490107389467	5.49179836325081	8.15351085109157	5.89284162216936	8.06036197572094	5.9058028751632	5.11446567327441	5.66427217568444
+"SH3YL1"	9.35880894468666	9.49579236225303	9.67140326048124	9.38880606715277	9.41137907780016	9.38773573478505	9.34442770982334	9.25369313514463	9.62389043468107	9.16868435089019	9.51176474153498	8.8932156898736	9.36039024405408	9.18521184435851	9.85933682968967	9.74389532762393	9.1572728715624	9.79342940377412	9.6329651120975	9.09842422564438	9.25548932727091
+"SHANK1"	7.8257692885874	8.06458327613819	8.70700666811523	8.35228914545497	8.26151944286357	8.60068316875139	8.74191687692802	8.32681607458381	8.65793889459823	8.16132263582237	7.88064134677342	8.41059892290151	8.66219530610478	8.37014242790466	8.33906166133355	7.17207187416068	8.43485226767105	7.68585706460305	8.49914854447495	8.33473968088897	8.4538871257679
+"SHANK2"	6.40811719767992	7.47654982629136	8.22541454662784	7.17888660942413	7.4917761987835	6.5762520626908	6.81560341562147	7.31340149436748	7.66752794824803	7.1848858677899	6.89950277173478	7.33948035271429	7.52771099244633	7.04360144083804	7.82311365552166	5.81763800856281	7.39318753911416	7.25193540548385	7.28251128525651	7.68761376973483	7.24041769901971
+"SHANK2-AS2"	5.52701527672775	5.60341434060888	5.65517736008237	5.91009867632331	5.68517897879605	5.90285237039203	6.19672019653895	5.5951707264339	5.5769281542175	5.67461059957541	5.62067553103336	5.74783868901704	5.91551779512651	6.01885855860418	5.59043898948998	5.60404261056353	5.8668976310647	5.32021935522633	5.63312533692212	5.60771334174935	5.76983980595147
+"SHANK2-AS3"	5.42845382647541	5.21589753052967	5.37060880614451	5.41927488701035	5.31085921744476	5.47053892483895	5.69149505991465	5.37809742875976	5.52412501087994	5.41136251402836	5.32582068935751	5.2868800730976	5.504777350818	5.74839776220942	5.35313004261042	5.36341068367538	5.41531381922624	5.24532250939129	5.50169812680582	5.26261976758307	5.33921998040102
+"SHARPIN"	7.76771222557949	7.59113211764515	7.78258743652162	7.67180233297826	7.52688834921468	8.05238677517368	8.46888549421495	7.65960659163596	7.73091091497795	7.73847884990471	7.74343304190543	7.62523167282733	7.77301035284552	8.16354098676068	7.89514884693405	7.57215350993644	7.55581684040475	7.39342800000832	7.73091091497795	7.73421327763022	7.60460933768934
+"SHB"	6.59655955781975	6.63827110721676	6.77665862469999	6.25214907299125	6.40382767411492	7.03228079520122	5.94733101316726	6.42674447626825	5.66091350240462	6.14019872511372	6.92793865843156	6.24900362359988	6.28765415633438	6.33759791286805	6.27767923646076	7.16826056994048	6.29678625774816	7.16172812623088	6.18669800848414	5.84427617145277	6.42495392440709
+"SHBG"	6.18266724124538	6.2988162347963	6.4660397033792	6.43357826733268	6.37304619607354	6.66850652475117	6.61815244839009	6.39455510968917	6.46964488619953	6.55470547653806	6.46964488619953	6.55325540324974	6.75357646792882	6.52005056767374	6.4922555935462	6.39910747154541	6.46964488619953	6.15107280526085	6.46964488619953	6.3952795654607	6.59438585155564
+"SHC1"	9.8257880696394	8.87129538227305	9.30832618364422	9.03265434568469	8.824833417814	9.39133252395787	9.19983696187802	10.0212430643788	8.7446536516514	8.75873513706236	8.77970011622542	9.29383111674345	9.37204918239302	9.18895103670228	9.22663790698458	8.5426870728471	8.97253455152107	8.68281576175487	9.04162555824737	9.56906927196942	9.19089799844398
+"SHC2"	8.72259817614495	8.46339641150296	8.74339347853198	8.52885060453281	8.34173005652385	8.95117905675438	8.60400235698339	8.46984836145609	8.34822105668547	8.60293331495192	8.51880007905326	8.40880002228145	8.4113072853794	8.66896465730751	8.25911434661107	8.12987354305065	8.58228874217748	8.4937846409162	8.15443342779659	8.61022269645819	8.19366774711202
+"SHC3"	6.51271298613704	7.14878210812651	7.04124232254403	7.15309827792925	7.70886081524523	6.51363301458662	7.11542848441081	7.0737753198654	7.5127417585556	7.85030772816469	6.66764886275268	7.80198430542383	7.17447685816645	7.12920619710585	7.03900577115521	7.04377312466402	7.83382793222915	6.80313627601943	7.3829341742671	7.83490399971539	8.24514111576907
+"SHC4"	6.99374863234262	7.18458204947961	7.14699193580647	7.03916528040638	6.89859513245007	7.32239791848773	7.16844466012802	6.98392199780792	6.07854110773496	5.89392805648838	7.82521480744409	6.5359090971437	6.76271565705778	7.20917492166539	6.53555580588306	8.64382323921342	6.59778975014067	8.70165244733204	7.00383997024172	6.19848958565706	6.43298106454401
+"SHCBP1"	3.30487281092654	3.55118344277142	3.60835394586919	3.24939476919687	3.69405260831328	3.33068276393707	3.19339944485165	3.30186998649242	3.30042176578684	3.29810365290428	3.45865222272678	3.23003699882832	3.27629525112605	3.30487281092654	3.09646648330765	3.39787263538245	3.27217895037052	3.30487281092654	3.33163011540701	3.30487281092654	3.21516928752325
+"SHCBP1L"	5.30750527531419	5.45763206850391	5.42168509087669	5.47238404453623	5.35706170044414	5.6918792874104	6.15332149518607	5.52266720666076	5.47238404453623	5.56848801118831	5.25873461266765	5.40878100290829	5.48868204599203	5.67356702887072	5.49939956867906	5.23885563484356	5.61627887646995	5.1805457763234	5.47238404453623	5.28869543193874	5.53023216897053
+"SHD"	6.14333989100062	6.86319130586799	6.83195822906191	6.84713220549129	7.51799867622817	7.36540063251081	6.74898691429156	6.56826270881738	6.99637125456894	7.18195227493696	6.19565356102392	7.28954892902629	7.2498058434245	6.91780023899273	7.00649489947399	6.46573845406797	6.94146879783934	6.76700425227989	6.91224940724224	7.5264766518733	7.26058412721601
+"SHE"	8.73458560838684	6.95516727665821	6.51578082728389	6.83352264970184	7.14631885697688	6.79685603477154	7.11475974021785	7.29182999818188	6.67032843495617	6.92951127388147	6.74225338834037	6.57311819535044	7.00597985731714	7.65995460217954	6.88388170087791	6.3650682694997	6.86514611500985	6.73156440926569	6.16437331612935	7.17109455831971	6.54510474173247
+"SHF"	6.22975524006685	6.44286133330221	6.93773940625706	6.38370469038231	6.6731542908119	6.55090381402372	6.40395730047466	6.27319465179847	6.25975585486541	6.53624574016638	6.21523250794766	6.38370469038231	6.38370469038231	6.37643469488322	6.22528175453793	6.1834725680812	6.20006674131878	6.49200224907486	6.33503249637735	6.3484177062266	6.43664906578712
+"SHFL"	8.3449258925758	8.37790859886808	8.63290415196502	8.31315746002802	8.27457010714862	8.37730520465798	7.8557434076932	8.24815020488926	8.22633721649703	8.37067182092101	8.10691863009396	8.27159139831664	8.40585726038928	8.25834519474896	8.08294711688098	7.93357443555966	8.30317037841128	8.41933425702225	8.09071539723863	8.31896356281917	8.35363413301853
+"SHH"	5.52753372796949	5.80935744251243	5.96425564859846	6.16080548321454	6.02463557265122	5.89823397989782	6.05958950763802	5.78796099088421	6.47012370100471	5.85707987662247	5.89762247377844	6.04991423070584	6.24010250653748	6.28499353046098	6.14117216891384	5.74302307752132	5.84324430367431	5.68252365059641	6.08877027798086	5.91702509673074	6.00409301746579
+"SHISA2"	4.97521398161496	5.4886267144661	4.96828310811851	4.61552486600255	4.72172839347102	5.2478289053563	4.64018338871336	4.92511813668748	4.5315284099071	4.70080089868868	6.44498541950932	5.08740312313674	4.87595166662059	4.4756665612281	4.78865005238566	7.42648965413118	4.8058558427428	7.11708939375615	4.75799280259008	4.87595166662059	4.66307685656065
+"SHISA3"	4.0420788180877	3.72659973226533	3.75714810291262	3.75875200524111	3.83489073865138	4.16954401724697	4.01844167620673	4.08962640440201	3.7398650804661	4.07700191584101	3.60548206570283	3.89843623236318	4.31864424425104	4.23369616010537	4.1042841454802	3.66759382174981	3.86541470652797	3.87819584512086	3.74422172620153	3.79552008351352	4.70557403585797
+"SHISA5"	9.27571054870244	8.90862542977843	9.19896338343935	9.07090627479555	9.10242923618791	9.38889555847168	9.15945944803517	9.28144269767736	8.97977586906943	9.00787176713092	9.04789500668396	9.21784359138252	9.14251308795576	9.1394513108315	8.75937884375857	8.63933982900539	9.1137248419405	9.01923151347001	9.00617623973287	9.32240047548175	8.92238427020244
+"SHISA6"	8.28275962788774	6.19197599319389	7.31619827541135	6.98392253849503	6.4195136901519	6.82678958184695	8.16138130592993	8.37160078384387	7.206725284691	6.39012440309059	5.79976601284619	6.4332852979647	6.50996111447353	7.0453489447655	6.68673365657016	6.07655547399032	6.46223377202211	6.45718866223775	6.37612070967162	7.00486109483115	5.94459767371094
+"SHISA7"	8.69682324032896	8.93917510248041	9.16628280097043	8.92864138893734	8.91250733807121	9.247526150259	9.05465321049989	8.68243640595375	8.72259870814968	8.65015908021695	8.91463667620383	8.85348935984627	8.86362719621071	9.1909642366281	8.59603503038896	8.59644115755038	8.74131056262063	8.83403632575386	8.72502185681152	8.97504439127669	8.69827716375229
+"SHISA8"	4.88488404050036	4.96950562221484	5.72695807193985	5.37129675229528	5.34438019355073	5.5941733389914	5.43199691466009	5.23728873264941	5.49274314704112	5.12915024154099	5.16591343235469	5.32749664915965	5.3252603479945	5.34823534644529	5.28438054417879	5.05206156324955	5.41402227974547	5.46959363185161	4.81416051954038	5.47981960807448	5.46393512548625
+"SHISA9"	6.71066328825195	7.63321268195457	7.95407564252156	7.72848151579851	7.59477061781882	7.24727014622997	7.25766099765198	7.60829484210835	7.71698998606353	7.67742286077815	7.34692726726897	8.12160011094778	7.4743649439087	7.40725732590881	7.57008781086777	7.10101507937472	7.7548431830708	7.10162898014238	7.56508419973305	8.29014319828704	7.59679772769183
+"SHISAL1"	7.54799820460847	8.60034587173734	9.05851475192965	8.53771378223674	8.72738575450813	8.30956943430082	8.46285126894532	8.53775814278794	8.46424460258502	8.18038642660854	7.9756089617145	8.46934191624856	8.3220946904482	8.24235304334537	8.39653048622532	7.6234975635619	8.17889774612155	8.14920226727886	8.35138536480528	8.69171992031269	8.23948022357121
+"SHISAL2A"	4.9854389121291	5.40653653649606	5.15294239651507	5.20694335473431	5.33352923901415	5.77872950452485	5.85484292786568	5.1699457041009	5.44379525956894	5.31730919846428	4.9061628156169	5.30386658915839	5.53147984400162	5.49255078966808	5.74651808905767	5.20175974068124	5.35056607326465	5.29188175985942	5.47124983189007	5.18483196736498	5.31730919846428
+"SHKBP1"	6.92799987397992	6.32827388193023	6.35329118487127	6.53303848978547	6.23583030589926	6.79501898234263	6.48494689357524	6.32110425905379	6.14350810737724	6.33072598524979	6.55548024692747	6.25758894144938	6.45992588891627	6.83954972210235	6.43973987777541	6.75420603107961	6.45992588891627	6.72611292188415	6.43932951760418	6.52141623116222	6.41750503435378
+"SHLD1"	3.85172856262051	4.06419841643119	4.01351495798051	4.01060656669589	4.29734665969847	3.70374922049601	3.50786596291852	4.01351495798051	4.08176158886611	4.23396083866207	4.08373023850388	4.00950503337936	4.20097829018733	3.9959864050901	4.01173337315149	4.20367568557215	3.84751176241953	4.24033533765474	3.91743538890668	4.30938208310518	4.30291884282523
+"SHLD3"	4.15788641136276	4.24693946983997	4.43885921546659	4.29392229445283	4.12856522921478	4.29392229445283	4.11399644963913	4.12095016417386	4.28057042025394	4.34788381520469	4.37735070254826	4.41507955985345	4.62093073098789	4.01929485839563	4.75517985981756	4.56461579035477	4.34634699370544	4.29392229445283	4.18895792726114	4.53815725020349	4.17766107355765
+"SHMT2"	8.85339699533202	8.39809429547773	8.68602162444339	8.52499411048701	8.62189984278046	9.64981574038261	8.93009680291363	8.59793470038939	8.50584260741358	8.53161201099276	8.32525896114427	8.21175620052587	8.84528292016214	8.84314598458223	9.18889233966621	8.31393396868649	8.52107450904825	8.81944330377054	8.65187403618673	8.84912760027919	8.58667523309401
+"SHOC1"	3.41604719543384	3.10281724241536	3.18000255304224	3.4665515466488	3.50276768219811	3.4700132860301	3.37536984535644	3.48603331397439	3.53152297536873	3.17881029488606	3.17215781507212	3.19948215448775	3.31376970941885	3.34989159589942	4.05705742024742	3.25159333242115	3.44224420210657	3.31931666373983	3.22216497611147	3.16684879829783	3.22569488504146
+"SHOC2"	8.90606239437547	9.36962170846129	9.32563797977856	9.1794741899011	9.58410635364481	8.75800374736397	8.41566298855841	9.24952304662831	9.35105452695422	9.45074313536955	9.11191352364949	9.41801283041177	9.20414691773151	8.68782661622541	9.28280551752493	9.14108719993981	9.49005131694794	9.27162501070281	9.39429237137792	9.45850180879341	9.41308986555908
+"SHOX2"	4.76060409893803	4.94863357732516	5.22541533597982	5.16326444601359	4.87382386666316	5.31286146563411	5.45453288434665	5.09122390903668	5.14785645014479	5.26265897708434	4.88701615986286	5.08569116940854	5.21832164226376	5.53895617675587	5.31813162096331	5.19798191722044	4.95959990658775	4.80603514565837	5.09502441673528	5.0836144409772	5.18107337319007
+"SHPK"	6.87657292386864	6.66715313093836	6.95670555964196	6.7664611830012	6.75238461618519	6.88446328538064	7.60101293663667	6.94576368259604	6.87318051896372	7.36554572940164	6.73753639133659	6.88265980905797	6.82936771836681	6.7000699102845	6.60017699187993	6.87318051896372	6.99343317676284	7.20160046509388	6.8400276940902	6.73596251691751	6.94641042759437
+"SHPRH"	5.99382952007821	6.40497590292558	6.00275750469121	6.06982703180028	6.85470801744925	6.68543526783145	6.38899701098323	7.00649489947399	6.57848901497569	5.68557752499427	6.00670622707959	7.05515453931383	6.00463131571544	5.47238404453623	6.61637645033257	6.11716850556784	6.98848668504359	6.96051097757476	6.40497590292558	5.86338566999748	6.26791706963797
+"SHQ1"	7.38827501748196	7.24307211431465	7.63555770449208	7.55298197767149	7.4970494485187	7.5440756091508	6.77630649189841	7.24994623132306	7.22462328057578	7.22887751667864	7.31922591605419	7.31299451428766	7.47150525861365	7.21944784265163	7.50103253725575	7.61232001349837	7.22880164661297	7.8447635169072	7.42330339835452	7.62899251095527	7.260535564328
+"SHROOM1"	9.41591015689114	8.99047835149645	8.59113079487833	8.97247816761104	8.25456613046303	9.2555805841827	9.231021681118	8.54517285721069	8.47286070659658	8.38453545071427	9.48786592157706	8.29595745037949	8.96686922510526	9.31370452267315	8.7717184580963	9.81462180787053	8.44509173799514	9.21761252160554	8.93488095525703	8.32506889247736	8.55931510652981
+"SHROOM2"	7.94877660291205	8.47926125647596	8.92853137411083	8.3366433587902	8.49863717406534	7.93579912540941	7.82584568545382	8.1126788688962	8.49930082505923	7.87954499463	7.66015320499211	8.25396218444439	8.26433577558574	8.00162464298938	8.38497649872401	8.0912964227446	8.42881613835739	8.0718413382968	8.01626850533413	8.80075628730001	8.39753598679141
+"SHROOM3"	5.94042979762677	5.4205152597258	5.53294215327753	5.1794626327031	5.60919542812185	5.22706968664483	5.82613536574241	5.42484571832455	5.71404726506334	4.96019121734906	4.9681078830026	5.02230027303686	4.94082462822029	5.42971403430041	5.64683494006473	4.75799280259008	5.13359712691515	5.17325416337473	5.39399595835789	5.5283501092485	4.83461679844552
+"SHROOM4"	7.77780947973833	7.60561403379921	7.66811427324298	7.25050966486595	7.5329137446867	8.57825473547007	7.54239716008496	7.00245577224516	6.96108682518757	7.23562736750488	7.9597453007194	7.12790240370452	7.13994754985225	7.48708022381367	7.24073611898215	9.06052074002652	7.27995552964234	9.10242923618791	7.16903184016095	7.15086720965595	7.06345899726792
+"SHTN1"	10.8635192142749	10.990887818384	10.6688370203183	10.8961212369834	10.3890196153764	10.8834904504346	10.8041749092113	10.599864343282	10.1092167919966	9.89014053654599	11.3997807847662	10.1943034122447	10.5451338009463	10.7294494874281	10.2938070860866	11.5702678059885	10.5570293876313	11.308133385849	10.5851014572137	9.9033159378662	10.635236018026
+"SI"	3.15879483143217	2.94059950702471	2.96359369011145	2.97555181372356	2.84768926695224	2.98367836214021	2.81287430806815	3.03803865328952	2.92927069525214	2.85409267645592	2.92927069525214	2.98280776522147	2.91419174836181	3.16056974813457	2.83729493283844	2.84899102371442	3.01449908281559	2.92927069525214	2.82395455190108	2.92927069525214	2.85801845735349
+"SIAE"	4.89944438181487	5.15220649911204	4.85933995936293	5.25933259883504	5.12746650795198	4.48253166463641	5.16593911858323	5.17427323409391	5.3973348872181	7.44012809882705	5.0441407059595	5.28864704284751	5.25813478118058	5.48909918099224	5.08977601465182	5.35199252242422	5.0108920496794	5.16593911858323	5.12815701492099	5.15305282130578	5.35154202779218
+"SIAH1"	5.93567509256709	5.95044601486392	6.14019872511372	6.26027024919332	6.43733976381048	5.97017359455813	5.96616585453804	6.23722374887872	6.38439215444579	6.38553769928101	6.44147945695814	6.08793011646775	6.09178961185815	5.71063136796057	6.44490338650085	6.21304333958991	6.23722374887872	6.79069894001423	6.26308969599359	6.15735601467372	6.33740058626521
+"SIAH2"	8.11600436978296	7.86216959500956	8.14361642276557	8.18623083591919	8.40847955844806	8.58894174353611	8.12557370597038	8.34338950048938	8.14274057273912	8.27287398121564	7.79474621513316	8.19065546570473	8.26726121465973	7.60476803977679	8.18195621996173	8.20647729666063	8.34293594084872	8.36049055804276	8.09415635684961	8.41794413937838	8.29989486093834
+"SIAH2-AS1"	5.22229926561931	5.38396636203868	5.35482498072034	5.623282583	5.35482498072034	5.43298440586588	5.32257076712555	5.40624399090647	5.36003392014866	5.27665216133115	5.13702380556228	5.2596176966543	5.40483643769504	5.47523023264915	5.45413596452517	5.18880365143477	5.27482429659183	5.0399743211378	5.16785526431382	5.25255474757163	5.49532205184464
+"SIAH3"	3.4063873351329	3.39058691194225	4.10246670667321	3.93941587874806	4.05001394187349	3.72456604391556	3.59035006425724	3.86195226493655	4.09208490585971	4.12009680971277	3.7547909081854	4.57915376632466	3.88509171534632	3.6216059550355	3.74896414510608	3.54300354855708	3.75714810291262	3.60168971405851	3.68932996283952	4.42189659602652	3.95663488630749
+"SIDT1"	6.42050991467481	7.83189025328	8.14663011802409	7.81252039749032	7.62183805460371	6.52440452384347	6.42955973830883	7.06217085974064	7.6827191214368	7.69215578827012	7.57999054424517	7.63321268195457	7.44868843479223	7.06627208644423	7.66130242455851	7.65489145909834	8.15156661732801	7.39730449907017	7.27351963928135	8.17151371015019	7.94806828988273
+"SIDT2"	9.75826441345521	9.39183783326475	9.93622404649621	9.09180576638402	9.51006707714034	9.59843281079922	9.31145707483008	9.35883440338954	9.23465194646525	8.95642766588084	9.36160063155637	9.16185018124498	9.0264875618179	9.4956950801702	8.94199025729282	9.83244037323418	9.3082100882677	9.73627393490587	9.07323749690668	9.45876724009425	9.15682751976071
+"SIGIRR"	9.40786232744584	8.38252171374566	8.35583023097069	8.13377965880892	8.17925387737678	8.587559086129	8.53244625431178	8.27607967067215	8.1061572373867	7.99341258531992	8.61339634310786	7.72460715676696	8.18714818163038	8.1065361298243	8.42746698459161	8.48210754611616	8.21682351119822	8.63731586246183	8.27893033436074	8.20252491455109	8.05555547262587
+"SIGLEC1"	5.20332681587607	5.60024931397578	5.14527125956957	5.18572128860119	4.85887338250875	5.090007215086	5.08524023066585	5.39492327072113	5.20383669688834	5.60891996477714	5.42210685631753	4.99316755273812	5.17446409277385	5.39901521897834	5.06052810435936	5.43721584508325	5.19776451584743	4.99037989930708	5.47652298978348	5.86571267036359	5.28836469992351
+"SIGLEC10"	9.4261987994605	6.92233857439194	6.63832288266983	7.06631174534519	6.75055018793516	7.10249394447654	7.41955341364384	7.33488467902633	7.2210707769658	6.96565591587488	7.02698449695164	6.9105313007765	7.30113340147565	7.67666961251121	6.88874180443871	7.12576597341481	7.02452197094256	7.32836035853884	7.09136783455687	7.49392063769577	7.6749425930453
+"SIGLEC11"	5.46651006180094	5.31369699360999	5.60431844805829	5.54330235476869	5.27266643918345	5.27428642912524	5.81407384485992	5.20092911769754	5.55675961046293	5.50083509326645	5.50083509326645	5.3971023299724	5.60351450389186	5.86892246436294	5.5779011609032	5.45922279606079	5.68641804920704	5.6217287108311	5.39066458269706	5.25219555165545	5.73843186413752
+"SIGLEC15"	5.87163551028718	5.99450607560587	5.90324851066256	6.10404607050638	5.82978792556184	6.01950924439054	5.832259294708	5.74841181246273	6.03468397728092	5.69710589377557	5.45299568657769	5.93236462543762	6.01245290404441	6.04520759479639	5.76590219935386	5.98159122372682	5.87873928463483	5.7249053079019	5.70153105032167	5.90266705111489	5.91536334384264
+"SIGLEC16"	4.83295607223304	4.32017005955907	4.40776768105719	4.45380408535797	4.3858499817178	4.24997371878406	4.22339454522974	4.2844703257265	4.38715298278766	4.37649911976205	4.50915562655273	4.3858499817178	4.47853114984825	4.3858499817178	4.49600512330315	4.37713310287712	4.3897178788247	4.04038599536316	4.23464070238917	4.34552720689766	4.50728164358181
+"SIGLEC5"	6.03977848950245	5.83279956468495	5.51187222110631	5.75784449283243	5.59051867407091	5.71267382577087	5.8482806765041	5.50734884113897	5.76690874093277	5.82369548142398	5.44298940705563	5.78525698940319	5.81749558397307	5.9070713399306	5.63611174624275	5.51403668859576	5.85295136448015	5.51582954708635	5.69592074011313	5.55518237962017	5.78411893646274
+"SIGLEC6"	5.78288293627758	6.15079845678016	5.80650600788626	6.23455516875622	5.95444948405725	5.51311063483511	5.76397290630677	5.83321504907986	6.20869329242674	5.93541846504651	6.12000003765682	6.19191931651917	6.3850449786764	6.0004891655615	6.11955316350154	5.98907909564169	6.26183322880496	5.5415432066772	6.02504137948505	5.78526564179384	6.26423005459452
+"SIGLEC7"	5.71234653475077	4.79778754190082	4.74271579136316	4.86145844263032	4.95404668193159	5.05096061237662	4.94631499450674	4.86482250252282	4.81327634467439	4.66192403716658	4.68328035774795	4.73546858258597	4.85771690972301	5.02509280374948	4.70119615362702	4.85502719798171	4.75799280259008	4.39903067855337	4.7921450305885	5.05813875782225	5.39785840881549
+"SIGLEC8"	7.08616502948815	6.60424680594401	5.94570517050411	6.38209813187724	6.12390206938864	6.75258574521567	7.10777908207118	6.18226618035199	6.64652471493872	6.48199457666455	6.27358824904567	5.78003061865039	6.62064531474616	7.14159814801113	6.23659391073883	6.5346545940619	6.61597330491245	6.69458511561587	6.85983259442481	6.44178459008149	6.55943837894886
+"SIGLEC9"	6.23898718538114	5.53565087400384	5.77470351849391	5.60400431482063	5.60597461245386	5.93894990983543	6.50407728610647	6.37442603248337	5.8046063198732	5.72362080994004	5.55189632476339	5.65647541409392	5.98811249363666	6.17534464360113	5.8046063198732	5.71424074706359	5.6710958367436	5.45238712163646	5.77805990611131	6.13976935704572	6.07934867875899
+"SIGLECL1"	4.38816611333092	4.84845655553177	4.82797497554128	4.6690317229163	4.80589088998748	4.53150455360595	4.76968755238661	4.5904280643043	4.67569487082649	4.53904926319	4.39012262096898	4.62719950482621	4.84431414565121	4.5269205897395	4.76167012672553	4.7163624754654	4.70723895777802	4.46120309292121	4.56669293558718	4.66461072349792	4.69772796313223
+"SIGMAR1"	7.01236032690963	7.05754972500891	6.82379885205667	7.0007137831983	7.06665524983427	6.59917903389788	6.87230520053405	6.78122644058148	6.88348981771	7.42405402744817	7.35090445149737	7.24711355765637	6.82389539911239	6.46996353824356	6.44752299384677	7.0705581491672	6.92297571504345	7.35462016179009	7.0038208925016	7.36302186903793	7.10078831165786
+"SIK2"	7.24667604395149	6.93230791409381	7.13015323242344	6.77411505508247	6.92228515489984	7.43228714371937	6.84321835323872	7.63183720345527	6.99644625466633	7.17000509294669	7.24073534419591	7.42751376852352	6.84993217139866	6.61745945924427	6.89837180984676	7.21136846668994	7.16269547425337	7.28432129703237	6.93309686244537	7.42031253732692	6.85783643128002
+"SIK3"	7.68888174568665	7.93358625127847	7.14676263238082	7.0599116566634	7.51931265510783	6.75553048772875	6.93489663826852	6.71013981620322	6.64162662206224	7.29860963692309	8.39873154154557	7.31937975199004	6.87319251367775	6.67936021914875	6.68991709560082	8.4642958339353	7.28677276142353	8.37689266614955	7.03743779318635	7.41119185256886	7.35076861435926
+"SIKE1"	6.39620203573614	6.86044249390009	7.12091046716577	6.91785052231761	7.26977344347194	6.72008571091317	6.72738524124672	6.79678425889821	7.04817659672029	6.67957928733487	7.26246880666267	6.48267013421785	7.50501574410513	6.94744382600255	7.49497459568172	6.9758123572427	6.84803121397128	7.27428040693449	6.94816053035147	6.40627974739708	6.85727647298013
+"SIL1"	7.67965250814458	7.42731684257857	7.61824270241596	7.12501254173346	7.21178569291358	7.48038890231242	7.12245996088349	7.36105530018185	7.11780300259947	7.46569672451094	7.40904021816595	7.41835782644402	7.42096804697536	7.27172839996241	7.18034585597592	7.3829105887063	7.23354780571982	7.50225808046372	7.40637750583087	7.24984094382994	7.47458197247019
+"SILC1"	8.16038251765708	8.76565800819314	8.32099536635838	8.28439398772127	8.4360429166125	9.17696274636419	7.70482642082801	8.35964275515257	7.23573090892828	8.05348324186903	9.69744736811491	8.27011626520308	7.71967762408052	8.25378894985466	8.44377291709161	10.2123578808297	8.50755266924932	9.99681831884116	8.49844332705981	7.84823727765893	8.06038984393319
+"SIM1"	3.98272450946113	3.9930198437129	3.84248011580504	4.09895177646158	4.26661235950185	4.22418977974962	4.49958772071957	3.90159221563351	3.96361944068294	4.08291039222231	4.00047032617712	4.14687805996137	3.90143728918229	4.19375456200253	4.02140259695584	3.98890025649017	4.17559277289784	3.68637078558356	4.25637622260694	4.19056427463766	4.05166823018164
+"SIM2"	5.35158371806173	5.41488835643548	5.46241333767316	5.47055316004515	5.46378357970196	5.97585057038777	5.46241333767316	5.63172919375081	5.53225662595012	5.46241333767316	5.29386245073627	5.65523186729106	5.60233465283951	5.4198904902953	5.93881051281867	5.31730919846428	5.3973348872181	5.17425676759816	5.3744466737454	5.24109654775578	5.36281873439093
+"SIMC1"	7.46727826379206	7.48133959788264	7.69067201396958	7.80783541923546	7.81669955079788	7.36602232622538	7.23152325330425	7.59440624647111	7.87362821159696	7.40847802756319	7.22722590357785	7.38321872543379	7.77337148022537	7.51010609900737	7.85349811643327	6.68537259986592	7.71482518359782	7.30861139552726	7.55677394688017	7.70378114247239	7.59871609495474
+"SIN3A"	6.44131784534231	6.12256733551174	6.81086642866149	5.70750606593993	6.71086266161942	6.37761928537074	5.90853447574668	5.88753341842767	5.9350096598608	6.34262359272862	6.19758810985092	5.65763439995545	5.48697042487266	6.03194804864797	5.51048518793974	5.66679603771227	5.80787186427807	6.25400480539331	5.34810385551279	6.24513978873763	5.90349010288062
+"SIN3B"	9.19508984873512	9.38383256785116	9.56754120886426	9.2816504447034	9.36325229285617	9.7170416065434	9.08444503600366	9.16540095908673	9.26274122905612	9.23453257901725	9.22386336032076	9.3985620541615	9.50933510381944	9.42473520358309	8.92638473612011	8.80771381291167	9.37763663249341	9.1912550299008	8.90421171460271	9.42588750612596	9.35567156063765
+"SIPA1"	7.88348870592807	6.92614420668855	6.5748046718834	6.93377389586836	6.72261362806746	7.64007729723116	7.43761260270435	6.96751894998861	6.89546907740355	6.74681124284987	6.69819031977994	6.69750425667681	7.1282536302997	7.68460210965263	7.05638144262496	6.82926140396032	6.65670582563359	7.14237466438732	6.91299490710489	7.06681512257324	6.92666878311318
+"SIPA1L1"	9.09861653987594	9.57158887951457	9.9477326626962	9.44226939491908	9.69701954215107	9.06889414273426	8.45362852576875	9.47945163586884	9.71987828724588	9.39997932440829	9.19730544622762	9.77939704977082	9.12971202636653	9.04265006435739	9.30847422609504	8.90183846627052	9.84361969753335	9.35590600897887	9.29526150228564	9.77159113500705	9.52619401122664
+"SIPA1L2"	8.10643432421608	8.36856458791532	8.54591348438028	8.36496758732335	8.93766921095465	8.05333225772312	8.04790172392724	8.93714404338222	8.7980436081404	8.67070539696531	8.02457039501064	8.59088369721966	8.86282161044003	8.06765931593009	8.63945023304427	8.17518971735388	8.83539765251758	8.26731231289114	8.4541913028408	8.88363215663494	8.93302990735737
+"SIPA1L3"	7.51699387935014	7.74631103099608	7.97309933909537	7.9696384047024	7.68220154190065	7.91278279006434	8.07083140927139	7.74670753788464	7.84493091904269	7.7944771009944	7.55878593282493	7.76818215967861	8.43095575375585	7.87366178070958	8.35840940644942	7.45126153442155	7.92217584124566	7.85160784032402	7.94171235073384	7.77698619030492	7.82512968866244
+"SIRPA"	10.4054583070261	10.3836565429967	10.6799533851705	10.5868357550373	10.6554874874744	10.4270022787092	10.56044201015	10.2158474830449	10.6674126929626	10.6000906568428	10.3716545371988	10.4908808792006	10.4025948363682	10.3317154234982	10.2839129428763	10.138818022624	10.6601924013235	10.3475226887387	10.3613437860244	10.7364609164089	10.5124909772662
+"SIRPAP1"	7.9751331962069	7.78514212032369	7.17071540512053	7.69388139810396	7.84739893021429	6.79609185517833	7.8673310845964	7.90032873518218	7.76869725583043	8.48805596159415	7.94161242921239	8.35988098200517	7.48657220995957	7.04029151883567	7.1631546757858	7.81927731041917	7.92400044306945	7.59179068951837	7.90710413828806	8.45391995917525	8.38277427134057
+"SIRPB1"	6.35634058179349	6.57861505419407	6.46610509079977	6.68989832980613	6.80648237113432	6.71936421803772	6.9116732713022	6.6232131734387	6.78692332201872	6.5764057447891	6.23208485644449	6.74950992849447	6.90610181981912	6.77763450849737	6.73253309867692	6.30211057838534	6.53337888296811	6.15804647231866	6.74193672016907	6.58928126165622	6.83444533983121
+"SIRPB2"	6.25811365474893	5.69771753502565	5.55149247975742	6.00670622707959	5.63397268501647	5.89458649510109	6.39789326074967	6.35346723828212	5.98198166992743	6.00670622707959	6.00670622707959	5.9772614557914	6.00670622707959	6.07852789046391	5.90921633843433	5.80639685956263	6.04667684861999	5.72911020305269	6.48006217431117	6.13573841314587	6.44387993807836
+"SIRPB3P"	5.39880456333716	5.48859191109309	5.30711909771673	5.5492921518553	5.18126721910504	5.54885796385501	6.06122365295496	5.55999260113794	5.58998915888436	5.33880254768587	5.18199408081245	5.43140999331516	5.73416460308794	6.17025392039333	5.32063502623409	5.47650930475512	5.66027998906083	4.78257257051601	5.33888927946047	5.3159821064439	5.68471690400606
+"SIRPD"	5.60496611852176	5.64608399895696	5.85945217331641	5.77798563183258	5.7229859251678	5.85362451388569	5.64942051740029	5.73362589978707	5.45124121372987	5.72610908772212	5.37263650805614	5.84255663870214	5.80073568098672	5.69483803220572	5.75871233516087	5.44650329679034	5.66201038031403	5.45624660578821	5.47419924506215	5.58530759887542	5.66179581952816
+"SIRPG"	4.30923821664179	4.30923821664179	4.34711014502674	4.43213301502273	4.30923821664179	4.38900232567887	4.54167757131572	4.10536290845844	4.35794210178353	4.40401119972166	4.16009353586109	4.21915330397033	4.11435973742317	4.56542493541366	4.31586223118012	4.30923821664179	4.49946140994065	3.94975514531497	4.45503733336714	4.09068014884547	4.35299959823663
+"SIRT1"	7.34490072227409	7.7898063827149	7.79866570031707	7.74204579135527	7.64023055781458	7.63425960719042	7.57024858884194	7.88570443756448	7.81926290635016	7.17807361292493	7.8944291533365	7.15824404906405	8.04885270834096	7.84162001257213	8.1900796693873	7.73707180067008	7.39210838076769	8.12832857155997	7.65159270840383	7.04606122827285	7.11871463352091
+"SIRT2"	8.47572887062803	8.23132745354134	7.69771927164054	8.63293218177204	7.3431037399262	8.79789517198043	8.09308771942005	8.46242868971426	8.23132745354134	7.84432915546723	8.79858784893686	8.01473507327998	8.35445926319651	8.20266613010989	8.59470655704036	8.66460189349269	8.08951113998346	7.92484881634761	8.73232679912507	7.48902841891811	8.04753571047112
+"SIRT3"	7.37504563001101	7.64901591105262	8.08734349506345	7.46827083175557	7.7327940086377	7.17332184971239	7.43305549165623	7.58836404007292	7.70188046976854	7.79119273168638	7.2990459408732	7.75261808687294	7.25204742771898	7.0810972894314	7.45025447900914	7.35017093855886	7.62890966997978	7.45056291567701	7.61356756913459	8.08380567634406	7.76817572896411
+"SIRT4"	4.81374405938262	4.3802149719581	4.89763185072226	4.86237563123668	4.6656478005912	4.60379903726432	4.6656478005912	4.29938893389525	5.10091197619528	4.49592193008678	4.2523704519397	4.55898409001391	4.7724849109737	4.95486848747886	5.59541463654117	4.07092500998242	4.65643359233536	4.63738483703107	4.71769466582828	4.86021198759635	4.56036345280191
+"SIRT5"	6.29079601809376	6.71345688893443	7.2491433965097	6.96747577697167	7.01870147128369	7.34741212449274	7.29702673765803	6.66965535465414	6.84976089939693	7.16933180657355	6.55333389607601	6.99180826138491	7.12390290327243	7.16696381223142	7.11834950692263	6.71709168092785	6.96493451635306	6.78128655023674	7.01750578332042	7.02771038350416	6.98604704312176
+"SIRT6"	7.84949333040699	8.05528460070597	7.86717427623493	7.91420770972889	7.61519520750898	8.18212262934223	8.47680085493333	7.77466260674671	7.96554476215375	7.8503633854826	7.81478546383542	7.90993789670571	8.14586027281398	8.22520642087544	8.02690322037708	7.70860361099093	7.90703428587564	7.69805855688727	8.04882954051958	7.83328401030249	7.82193887545534
+"SIRT7"	8.10594231975699	7.88394769443326	7.90112085960738	8.11047283662158	7.74855338068211	8.20064801744018	8.41531564793315	7.58913955798743	8.17018163805001	7.415943384148	7.63098612541107	7.49119936373939	8.16804609095078	8.19949384848309	8.5310054494257	8.01604757803065	7.71108307520154	7.98142687851964	7.89290013597974	7.74379601980047	7.75125024651228
+"SIT1"	5.67133617735139	5.66574043483493	5.80259300001796	5.87120106705785	5.84393072249089	6.27920971719434	6.54711945262659	5.58932183712263	5.92809533467863	5.87120106705785	5.60348784752314	5.94846801424542	6.15512310593305	6.12769768509466	5.85107758092865	5.73281123072671	5.94426428062637	5.4283211458124	6.19600637581389	5.66074798726706	5.78662728349667
+"SIVA1"	5.92553634732532	6.56979574104905	6.75635909841495	5.97036227668428	6.33319099804882	6.03288570370319	6.01096589090323	5.91887961669156	5.83617565104292	6.23682027092432	6.4064246215788	5.89772322553997	5.7530833649858	5.7366472286917	6.00290844901174	6.62144430366934	5.84324430367431	6.25531983865011	6.14995703208125	6.41479212442539	6.11219276442781
+"SIX1"	3.9843800630773	3.89342359916172	3.49907232928224	3.50804174481481	3.78062554814711	3.7146572250454	4.09143413906317	4.00399885360598	3.72680755486043	4.00824926729893	3.78799371338039	3.46033790156486	3.75231118802991	4.0153645345848	3.93117918100132	3.64475239565684	3.77156558163225	3.5940220400786	3.79720092487669	5.50130902806485	3.71838067586689
+"SIX2"	5.92553634732532	5.99491693611972	5.78012611764875	6.00246864031721	6.25412528622058	6.09551618846766	6.10423944398076	5.84502811811933	5.8797132367022	6.07071518678977	5.78405119454183	5.90734884541541	6.16339998243049	6.24443397539332	5.89131079894988	6.05787740128032	6.08404235229231	5.99491693611972	6.05337598082804	7.67442053942687	5.98863587024134
+"SIX3"	5.72609131876542	4.81949663281083	5.10546608948665	4.83832053360971	4.86787663311833	4.70698339234043	5.31529289811088	5.30106278230243	4.95428135180875	4.66052273983513	4.41237644139483	4.38001727671572	5.09013617900413	5.5102106144029	4.55377040413599	4.03719162959283	4.71257504330303	4.33296319352322	4.99532194402693	4.39611999548894	4.66255908637345
+"SIX3-AS1"	5.30576513806347	5.42510707918263	5.36178343097591	5.34054262702014	5.21084147616798	5.29069305515935	6.35721835645054	6.16338232955149	6.17185987068885	5.18294764291487	5.06984720580037	4.69620120884724	5.51527918202641	5.55547906926107	5.12644028569928	4.53170725657614	5.29069305515935	4.6587684946178	5.6038505544098	5.06581347277341	5.05660028582919
+"SIX4"	6.48435751319153	6.68013104965026	6.83116068638045	6.99402681848614	6.98656804902837	7.27543474158523	6.92403677627436	6.87003830442047	7.17960175719252	6.83284111766957	6.49118793684738	6.61916196362243	8.00458925583692	7.36150266994087	7.90520888884896	6.11724584060187	6.903762133896	6.64256223600356	7.03190748493006	7.00921987290115	7.02097980619474
+"SIX5"	7.58531550937874	7.06963234724751	7.18488250252539	7.33335697294317	7.15945256512089	7.37140842856782	8.35640609667907	7.50254900206502	7.09229963574045	7.05638144262496	7.0872315229237	7.13031608282117	7.2335978282785	7.61540541686767	7.25557468877188	6.7934420705749	6.94832906195252	6.72100586730845	7.18318015720909	7.5668360715473	6.78493275726989
+"SIX6"	3.69960252033962	3.82185044674488	3.71031846596918	3.95194365580324	3.68593028489039	4.23262932861604	3.86640055899499	3.80976102676139	3.93433219765089	3.84232318792524	3.70471370979478	3.83208913796506	3.86849719080644	4.06322628088889	3.97829575734243	3.87199033863885	3.88955043878033	3.56688680420681	3.92541612085393	3.95036089272461	3.75335786042432
+"SKA2"	10.093245908951	9.94830662742055	10.0346522237604	9.92576665198637	9.73720684044701	9.92397566300371	10.1605148740347	9.90720469870406	9.9656801851287	9.72201032756726	10.1771898349472	9.79111087418157	10.0083161403102	10.0945450869956	9.97028096040004	9.91886562777073	9.6862409143741	9.89729855034873	9.95256387961486	9.42158550998571	9.71241468910948
+"SKA3"	4.73584152168574	4.76339665319859	4.97980689609721	5.25236345770516	4.91928630765674	4.73232183128765	5.0768512609401	4.76692656212858	4.8529289938241	4.84221627965717	4.58991090260346	4.61381690424551	4.76692656212858	4.66119370436393	4.82368502087764	4.7332956117146	4.60835126893912	4.8526923021272	4.42183571453892	4.96560134431807	4.76692656212858
+"SKAP1"	5.42738811389471	5.801783415535	5.24533042842892	5.6044805052795	5.5732564612782	5.65403917963228	5.95645939162195	5.37518613839732	5.42208355339834	5.4040045686994	5.41085063929037	5.66378231031807	5.76460823956959	6.16828692657109	5.5732564612782	5.51894771991517	5.612842101808	5.14873718901971	5.58965224981106	5.49554473255048	5.61307492380705
+"SKAP1-AS2"	3.3024339101175	3.48495237084034	3.3024339101175	3.35520719646572	3.10946370161355	3.46155989213007	3.2853671540139	3.30117204825337	3.35336470068059	3.15532212436378	3.3024339101175	3.15378768102497	3.22989189973442	3.25078370675378	3.3024339101175	3.4440761214742	3.3024339101175	3.28904902394339	3.3311827735669	3.21492858389677	3.3024339101175
+"SKAP2"	7.0965441710949	6.78479959999189	6.55400889025236	6.51540198274468	7.16776507923168	5.86137021451778	5.78949821519271	6.49751559090863	6.41227880822436	7.30455225425453	6.78692350305616	7.05241809428161	6.40934164321941	6.17456833133457	6.46654086522946	7.48120797678838	6.68850084071811	7.03723438105359	6.7720659891654	7.56998475427739	7.52609716859515
+"SKI"	9.73977688321887	9.53702849923124	10.0027350416	10.2314104125836	9.966041186968	10.5309030960532	10.0790166634134	9.66178698158416	9.64184290460503	9.4344176793905	9.71334477651321	9.50865764471219	10.2755890799288	10.1806575068203	9.31420878721676	9.28982714699465	9.64367163666932	9.7130287280738	9.52768858833131	9.48646874281542	9.40528772992361
+"SKIC3"	6.25308011793097	6.15887947586383	5.18750790055495	5.62245208952841	6.45215339081014	5.38486397972533	5.41553897655285	6.52703429506155	5.73016722624805	6.31122698657035	6.61407073730858	6.77525570793237	5.69700135449042	5.67235730522382	5.6033451063778	6.38443269263645	6.44652557178793	6.14517998268564	6.00143639366101	6.49576276296102	6.26265407113654
+"SKIC8"	9.21126713512408	9.35761026730234	9.21987289991481	8.75969863903341	9.46701971056455	8.42700360392092	7.56344479414183	8.72371687360924	8.86005379610694	9.53820978869968	9.39179412718043	9.23993168750753	8.40075360720675	8.24917625961984	8.57503713324255	9.60925603568588	8.8438654990234	9.33475818769958	8.63820250113481	9.32778265849746	9.38557137093686
+"SKIDA1"	4.00162573943169	3.37529893542131	3.91622832556904	3.42707340906835	4.00967676648148	4.06030065703624	3.9825492828686	3.49923486107612	3.47541299439017	3.94877703396901	3.58422849959028	3.6888707707754	3.48416564625168	3.58849460622507	3.50427778738851	3.63050625435893	3.42815652794922	3.88782684460261	3.35594252716773	3.82032328167504	3.41778487142835
+"SKIL"	7.63005358117429	7.45268758371599	7.06894004914562	7.47830203649928	6.57500146089467	7.38500834360884	7.37421839080273	7.30012822027308	7.61405369788543	7.00886407628258	7.41199875801612	6.95062588856291	7.69600775904285	7.49361962373594	7.8333693028364	7.30324923211363	7.56321464790141	6.51119206829582	7.65192724135525	7.22796126628441	7.31859503183235
+"SKOR1-AS1"	6.09472931557713	6.26458468620539	6.13452354596363	6.58553558910834	6.31429396779173	6.18511942488855	6.2873248558783	6.22633945834362	6.40264375348614	6.32387617606186	6.15911204220012	6.31473041161731	6.40220405043551	6.31429396779173	6.3425014414382	6.33379353883977	6.52667196865907	5.86618517081226	6.41385862205532	6.31429396779173	6.35826829775583
+"SKP2"	7.87110596158596	7.66697923622163	7.93140247758712	7.36879553002027	7.31661372008916	7.22857807027138	7.88594828265443	7.50499773541206	7.41436679809808	6.95134586596482	8.0923474225247	7.12195836816599	7.24664076714868	7.5074445469513	7.754356103754	7.73418758561049	7.23618664625759	8.07430165418978	7.36804932606501	7.10110197277995	7.10958365941667
+"SLA"	9.35584747949849	7.97798495696297	7.37226083298075	8.15901400924282	7.85182696903841	8.03865403470247	8.06083457804575	8.63720526860074	7.815687666663	8.13418157659313	7.27058218031561	8.17034277556612	7.80556623130503	8.03371886383627	7.97922383628449	7.82915185492718	8.06006629911698	7.8218635282813	8.18481639280998	8.48599794028261	8.73376242091188
+"SLA2"	5.82791947670867	5.47099865333773	5.75133536883945	5.94660603229036	5.48139909885132	5.81550098161947	6.11367082491704	5.60682089448733	5.92874246039331	5.64456779129512	5.65214491759014	5.55353671543843	5.96029935451964	5.93946288653204	6.05236312133382	5.70387860863272	5.76607565914991	5.32299837704185	5.59883739310966	5.63207522217888	5.67946819210592
+"SLAIN1"	8.97460824821006	9.78088891100106	8.97133495233977	9.59071145617594	9.13301159655474	9.34037098817683	8.76498224913663	8.83745923940505	8.49292770959991	8.44059798949762	10.4888936353108	8.85020023934121	9.56532290342212	9.16489126915262	9.31656912455537	10.8959765501988	8.89656992713443	10.2739882693019	9.06376306891039	7.8857015203507	9.06538111769078
+"SLAIN2"	5.67392408040688	5.46101798440836	4.94353236858525	5.81790756223422	5.68259544779189	4.91784958836603	5.79548489400294	5.80390280548065	5.68213853136171	6.01466070143194	5.51225908586002	5.94185012050263	5.60617467424027	5.67595459315821	5.1566252345077	5.39616886381929	5.65196109531066	5.46740210015585	5.47026550081385	5.63129340969675	5.80219595371645
+"SLAMF1"	6.72902415984833	6.65702760060403	6.53779343342902	6.72525664167025	6.94143941014796	7.38198790464167	7.39032393475074	6.8703139695668	6.89183692683942	6.76952520370632	6.45823613730877	6.5987843904437	7.00606398598189	7.48454639412667	6.98413387649553	6.79734646522659	6.82628598303637	6.60285620623904	6.80761690676002	6.92155500648286	6.64308202928187
+"SLAMF6"	6.65203350991304	7.01202428786883	6.72411001006446	7.12929075880565	6.87161395331001	7.03821403970214	7.1558756630683	6.96034866943324	6.93021741938224	6.76899643451454	6.77747069444618	7.02335917228844	7.12126815470878	7.29414209236192	7.15008715458724	6.59095421921695	6.97588416212345	6.29237559588428	6.86535955670824	6.87237620854418	6.96993858269141
+"SLAMF7"	4.1372180234368	4.151142837597	4.20878567026665	4.44226782267072	4.33480178020466	4.95943014296011	5.28812517324211	4.20337149865669	4.31739502652653	3.8535300805913	3.83353097716374	4.00415424525801	4.54294830664678	4.98454698608871	4.38073642513396	3.75094289397366	4.02805591658291	3.76145915426798	4.1413529496961	3.92110111216561	4.18635055538014
+"SLAMF8"	6.62656776150099	4.57301864358753	4.61999621736241	4.7102040487891	4.15532548452325	4.98888024150764	4.76938425235309	5.01899605632451	4.76938425235309	4.537699768961	4.57154346689242	4.92760367130361	4.92483736395566	5.18642533741727	4.83556478524051	4.2852236724444	4.83851391392687	4.32439039276883	4.75013651472628	4.81122536737826	5.66905727930248
+"SLAMF9"	6.60281864071242	6.61362062262	6.5910264398928	6.91950378822081	6.58612225176163	6.58007435169924	6.65688333555743	6.50013064283822	6.69432908791351	6.67251186063467	6.67251186063467	6.75154534829809	6.73253309867692	6.77568413586884	6.84031723433456	6.75983273784308	6.75885293395889	6.63486148766972	6.751147711837	6.58067273968773	6.65557567367966
+"SLBP"	8.31853522754412	8.8388405277596	8.7961998150554	8.78405220553882	9.2956984776053	8.17321069749897	7.98072084162812	8.74912318023163	9.02252647401542	8.8303459480698	8.61832073732666	8.89631069548023	8.90819650850972	8.06827270469689	9.01049558475615	8.83804158499456	8.85734585865217	8.92910405897736	8.61020043116547	8.97257638243784	8.91418983284701
+"SLC10A1"	4.58022878868131	4.65844474084752	4.84088364020431	5.06094492457615	4.85257197249725	5.09122390903668	4.79760951907742	4.86451596981042	4.85785370856363	4.84088364020431	4.60289297001917	4.84968228188478	4.87804614314544	4.95856725448222	5.05950804823791	4.79454752352896	4.88431179108451	4.49970835670864	4.67979642355985	4.87530068131484	4.84088364020431
+"SLC10A2"	3.71933401838913	3.77659146788793	3.89750769692117	4.16017022306557	4.15554841261475	3.91087343696167	3.91977967638055	4.21148525148811	4.10665243387368	3.80269104542054	3.69269036471903	3.89750769692117	4.06905851273745	3.86728514751604	4.01279052601145	3.66916803262786	3.6907705580235	3.89750769692117	3.95429082279248	3.85319821662614	3.84746626312461
+"SLC10A3"	6.98889863410676	6.46318577570456	6.61727773879121	6.15915204449211	6.51537152237216	7.18803814315965	6.99590784247758	6.58063749991838	6.4605128039087	6.53399679289815	6.75307734249979	6.31597050433469	6.42902264513622	6.84515093492924	6.22034999314594	6.64737513990755	6.33805538307104	6.79012359201271	6.49181942848984	7.04732662846467	6.52689673730632
+"SLC10A4"	3.30550661748177	3.68726632538054	4.43245344591331	3.30836677292992	3.88149930596957	3.34979383850196	3.13455845802205	3.38384634095271	4.03826496787383	3.86382568431606	3.27420848537286	3.7989679897278	3.6766783306471	3.27063843426924	3.66577453501148	3.39810421114475	3.22222510788886	3.71944685806819	3.59581429698985	4.56107136340157	3.96818895967261
+"SLC10A7"	4.88432467319246	4.73656058190817	4.86010874454965	4.90756095082362	5.14392860900004	5.13806785658165	5.07484242559649	4.91670413212118	4.72227472424021	4.50897929428263	5.14003935200889	4.63828739639073	4.86425817556039	4.95912665696426	4.95329104367982	4.83851391392687	4.59366588746215	4.94748092062244	4.904916250462	4.66149832415868	4.47672110315754
+"SLC11A1"	6.87164256620635	4.68540611739648	4.9680908457007	4.8741034453222	4.95339317518054	5.38948645123344	5.41758540352081	6.73293345740435	4.67569487082649	5.23090389003347	4.81444051965809	5.98131483959477	5.05490323650571	5.25888838090752	5.20993834301401	4.83833778337979	6.3147470817026	4.72083029964895	5.61123668823306	4.99699261043685	5.65401339540545
+"SLC11A2"	8.73200570157601	9.03189256134287	8.90451509201497	8.49650036433169	9.38898883932205	8.833380086328	8.33175084783288	8.85453944491497	8.69682324032896	9.17788723864588	9.20388823635265	9.22933235003208	8.00580829022611	8.14817525719231	8.27630122004061	9.61516908840143	8.80537865803886	9.60832168769535	8.51672196531991	8.79574870384279	8.83149725102064
+"SLC12A1"	3.04877329542932	3.16037737878708	3.40510269079321	3.16037737878708	3.39443233970738	3.00736286897876	3.14317983769426	3.1837863361025	3.15439069201224	3.16773308208081	2.92066639104199	3.3024339101175	3.07185317903018	3.15960064681259	2.96262902933305	3.04355214688683	3.24858326836494	3.66674315325714	3.18675433126444	3.3657344797052	3.10640712893345
+"SLC12A2"	8.43901524701405	8.95222641748121	8.50574417148323	8.54325938711336	8.71184301911934	8.95781076670151	7.87055347607224	8.22658166765744	8.03238205039605	8.25018549604562	9.50450012918341	8.13387978560648	8.19299620203684	8.26140382207407	8.91891188393176	9.83839656108892	8.47516999794095	9.84352729012529	8.3072828874635	7.86755368589796	8.24040134828569
+"SLC12A2-DT"	5.2272095405193	5.93553413702151	4.70500728619601	5.74812307844284	4.5762440259812	4.70029995732404	4.73409998897892	4.83635843612646	6.09700850078358	5.41314795634834	5.25716297159913	5.08809612909391	6.07907476467542	5.22209266910451	5.33671111614112	5.42402437248304	5.58873181360112	4.41393511573285	5.19494480099918	5.31484971334395	5.41403475716842
+"SLC12A3"	4.04967200407662	3.85263865497184	4.36537458184793	4.17566742478829	4.34634699370544	4.66643159565395	4.62704873874218	4.26886047538695	4.2312972410824	4.27844268365708	4.06061922765706	4.34040888514352	4.45660935814317	4.1228421678532	4.47525760765411	4.42162993546999	4.60602786418399	4.0143452865148	4.41660002717827	4.53353987363907	4.10352213171597
+"SLC12A4"	6.29079601809376	5.98195862516118	5.61007274264086	5.98195862516118	5.70573169796232	5.56458922556481	6.33461363981706	6.15630247098161	5.97869432322653	6.13013802385518	6.30648481049575	5.90011927967297	5.77239570429057	5.83400262043968	5.87437485412221	6.03404864259316	5.93814513007258	5.747112194517	6.03249746880512	5.91613874262542	5.65422239178956
+"SLC12A5"	9.50357246854742	10.5476093448602	11.1215728976697	10.6953039087463	11.0647239028299	10.3840170520503	9.6079580264721	10.1294193096136	10.8697180385745	11.1307277009586	9.96706473288558	10.8275541461149	10.9894786801405	10.0882586008656	10.7147602501308	9.87335377745059	11.1331330732637	10.626330795477	10.6803711404744	10.8619405679392	11.1328682376902
+"SLC12A6"	6.1530966572482	6.17007248696622	5.28649366113666	5.79293705686399	6.30233460479745	5.97652212446285	6.31601944212345	6.09123074441402	5.82695814591565	6.33560853486572	5.77508739853468	6.48659855365978	5.99062477856838	5.61947188918776	5.34046847128319	6.44699558447359	6.07072208437649	6.38769137912425	6.00150333398426	6.35590042511024	6.31155713013089
+"SLC12A8"	5.19890159276558	5.34647173102457	5.9800121354798	5.53926947647671	5.5279810795913	5.89823397989782	5.6322101218529	5.78891997035854	6.31515596918577	5.70780197049212	5.51046936302883	5.87547018252506	5.8368422885931	5.54974334102025	5.41740211966894	4.83822510853938	5.75351669885237	5.46467232625542	5.63903898994886	5.66814553665767	5.63903898994886
+"SLC12A9"	7.59424575589172	7.1388789140721	6.88304400865353	7.11306167679056	6.99456404545274	7.19114292657759	7.3510224290202	7.19114292657759	7.16185335343875	7.14156146319423	7.24542178802947	7.25001803700498	7.12068004815491	7.0805101070806	6.94636031106301	8.10561499614593	7.12787321988581	7.23003723410599	7.13789979808523	7.3343276862897	7.23938416702896
+"SLC13A1"	2.76958321553079	2.87234221496073	2.90070844475571	2.7591458690626	2.75558070848538	2.79809443074414	2.90251792045608	2.86478858596318	3.12131991102271	2.79809443074414	2.79809443074414	2.71664452758731	2.77145174699205	2.65244567198177	2.87657989465045	2.74093027877407	2.79959779875273	2.76216797553905	2.90067118362628	2.86419318602922	2.76082373437687
+"SLC13A2"	6.91921462602959	6.76649976671951	6.8765830023621	6.87980403148404	6.93718018016163	7.28193154751261	7.61860520048755	7.02515808238888	6.9744740726954	7.03180104734315	6.8175617053449	6.75902632678709	6.85250661515017	7.35231004194396	6.71975481861559	6.59210094952622	6.83139151735688	6.6732231145197	6.83049919754287	6.7569092331031	6.81815125267108
+"SLC13A3"	5.34370712111245	5.73258914836209	5.58528913987658	5.38871464647177	5.74533326554792	5.59968576354349	5.11930357225974	5.36034852833971	5.09122390903668	5.74133926762021	6.29167323049457	5.79000121834023	5.14351868043602	5.24500316674264	4.95019280438975	6.51882342069494	5.60525575485078	6.12210282967664	5.35125585792661	5.81392485576678	5.77113737019721
+"SLC13A4"	6.151771034136	6.50722186414027	6.11970441478821	6.34862218514358	6.02390314451866	6.21800205011473	6.20169178659085	6.06356487296503	6.46497652781582	8.33957031135797	6.10875688033244	6.31505805972646	6.43034439051171	6.81694708342437	6.33541193160979	5.91804039664072	6.24262071888236	5.75069235412386	7.70476211249555	9.2146453321185	6.27550987393604
+"SLC13A5"	7.12668141327611	7.26308903317325	7.11727845488629	6.76980199816044	7.03114683797878	6.52440452384347	6.99482974463277	7.19671699943565	7.17664972656744	7.35020141727882	6.20157678583147	6.44931527032938	6.95315903904111	6.94914501660383	6.86514611500985	5.97893562888534	7.06958839657796	6.81057623812801	5.91313455738259	6.89974822185853	6.82833309055862
+"SLC14A1"	10.368909884829	8.0193788976229	6.9549640140533	8.97100525657927	7.399572831891	6.6279174748866	9.27362878379771	8.21753341235918	8.41360085310285	8.35119085239177	8.60410785739622	8.15677430212386	7.61729396357363	8.06326330474821	7.67722956195678	7.5348185562664	8.24840843207759	7.48093554701249	9.27303275744041	7.70870009365106	6.40377661814496
+"SLC14A2"	5.31818575911976	5.28402655159845	5.33398680139107	5.47633921321216	5.49719654111983	5.30235248610978	5.33999805294991	5.26157328316598	5.46704225600119	5.64481459939963	5.17130393755311	5.3788965361668	5.36148546963809	5.32647971204634	5.35034914195522	5.40892012461073	5.22385767508674	4.89628612891839	5.29912281668288	5.21499378001419	5.32979006828641
+"SLC15A1"	4.21425902765595	4.42077948579884	4.23391648171421	4.62499950716677	4.12129071068077	4.65302194410416	4.49696607691302	4.44790625822793	4.73086877489133	4.32877820737083	4.30487516394728	4.5770597284981	4.67216176249232	4.67717923741433	4.55897002526156	4.24974295767487	4.40245276277719	4.07528186332207	4.3930596327689	4.42077948579884	4.27970244834677
+"SLC15A2"	8.96384010162235	8.83338491466883	8.66692340455053	8.59278895287494	8.37719477730437	6.47130562826127	9.14123657456797	8.9648682235128	8.93088516298783	8.21734770668768	8.36469487314009	8.14663011802409	8.30241367634436	8.36423727841691	8.11451785422802	8.20050858300649	8.35674087740858	8.59680237575093	8.04966111435245	8.42496104535804	7.70532901990773
+"SLC15A3"	7.6654547259145	6.84239361855489	6.32032406766099	6.39329246843119	6.52964898577497	7.08599093860869	6.89155764883616	7.10958365941667	6.69388619476595	6.90691198634457	6.90325224809978	6.51166023032793	6.88852930890398	7.08231984597973	6.6935662626638	6.48488950041591	6.61317965710429	6.32715714230284	6.93626587981963	7.19129588643519	7.03497089781674
+"SLC15A4"	7.32807445866028	7.59277799205515	7.42147808952072	7.38660596377516	7.780775161387	7.64106886156917	6.63990986311318	7.53373569919567	7.32517420921707	7.52076172341208	7.88454486430176	7.19050138549213	7.42147808952072	7.26646869852292	7.09274969837177	7.68118517638886	7.42147808952072	7.92073532285073	7.17494320023403	7.60742488319691	7.36354646510275
+"SLC16A1-AS1"	5.0771135681414	5.12293813362183	4.42661996687332	5.00266136871367	4.01206329763892	4.60191824885762	4.78519032007642	4.91526392868592	4.80034306955918	4.80034306955918	5.2724994660041	4.58950585895778	4.96973874630187	5.06854110734318	5.06491534893081	5.14316772987705	4.55341704614923	4.22729322700623	4.83134941692547	4.45503733336714	4.82012539109237
+"SLC16A10"	4.74207094207204	5.37509166124007	5.4232287009102	5.06177551209324	5.63282737911643	5.1535709367542	4.55732320300616	5.72218343082845	5.92053758038338	5.26515809045479	5.02245350102505	5.83798925462152	5.2346175834315	5.23839040314547	5.37682447631082	5.35400042789319	5.77468100263938	5.01787786529034	5.15636816062097	6.04951631891386	5.60605341057018
+"SLC16A11"	7.27566608087068	7.1903527994764	7.53304380334043	7.19494790957609	7.1022420574539	7.19494790957609	7.35175845015164	7.04796451774641	7.00008076900246	7.19024881968877	7.35640518568047	7.217723998791	7.15567955031626	7.36049516775408	7.09396489275638	6.99064245682898	7.28413707979232	6.82653067265943	7.06744880020289	7.04051386293233	7.25669795141052
+"SLC16A12-AS1"	3.72568467409925	3.82547602114869	3.67427793156567	3.92552476746774	3.82832062950413	3.61062297734976	3.58117785135866	3.79973042468324	4.22528140141089	3.84232318792524	3.77377644497802	3.79973042468324	3.70844908385735	3.79973042468324	3.99492367395042	4.17167133118299	3.79973042468324	3.61193170342555	3.73686886980605	4.04845230583448	3.94681390232384
+"SLC16A14"	8.01512340376198	8.44117061715932	9.07673985859222	8.14047540484767	8.79238702439139	7.28534796115853	7.15070227037861	7.97267308442307	8.39928772744131	8.19809976078188	7.92307673287002	8.48111686244517	7.99838864400626	7.49905776479196	8.31391584915036	8.0406756623317	8.44692594614614	8.3174645275742	8.33774901865124	9.00593081545274	8.54835473596943
+"SLC16A2"	7.1176340896063	6.79779836637725	6.80934192669724	6.57572991596348	6.77643519189656	6.44620043156737	7.09806573113871	7.06482231606104	6.71824969846691	6.63685197124731	6.90611853802264	6.54942832548814	6.59547526337956	6.82901965006529	6.51673295269265	6.36851136203379	6.545654143545	6.44177236774834	6.39092291109882	7.02937273495233	6.48441757883433
+"SLC16A3"	6.70116883188169	4.96153223010323	4.70386501518193	5.51554047829982	5.46272324091721	6.21699543390393	5.39576317200021	6.49870135520167	4.89125952351242	5.48221163929353	5.09599531299789	5.56299197546351	5.29970842617724	5.32967667671691	5.07808596602285	5.4102866304861	6.51730391686682	5.1267938894731	5.46619139550831	6.50439520844582	6.93682531178719
+"SLC16A4"	5.01655855424901	3.90568934874288	4.12069128989307	3.65645229227483	3.90896806996299	4.11835645360016	3.89337362943427	4.45273571233985	4.12710831641262	4.15794108968237	4.89248024205657	3.94204318518556	4.19066144515405	3.90882538535162	4.16172917823511	3.99198899138972	4.08760134636187	4.13108384744184	4.28218936635027	4.11049484719074	3.98762508073682
+"SLC16A4-AS1"	6.61114000153506	6.44808178950947	7.14149157451622	6.72540907508622	6.72462347940738	6.91504558630051	6.3643480768716	6.80658182729778	6.60433844587484	5.70611587255189	6.86179666998051	6.62458032257381	6.60777308838608	6.14597068118469	7.3497927756978	6.31795573474389	6.59004749029449	7.16160779478605	6.53485797847358	6.45884520212776	5.82688314649859
+"SLC16A5"	4.78467689884949	4.23997950153036	4.537699768961	4.51164413207685	4.28811339558514	4.68778992033184	4.51164413207685	4.56393822521026	4.61552486600255	4.38327911278129	4.26326655535773	4.48099399883042	4.46601941755576	4.66046748663208	4.42451767507101	4.4243964157029	4.49659058316055	4.14913410712997	4.50737095130779	4.50465867022844	4.43063192623175
+"SLC16A6"	6.00208357575394	6.7707840294365	7.20916396464681	5.17164605088081	6.97929720472123	6.488807516751	5.67435919235598	5.4214909222662	5.75257448595943	6.54517956939477	6.19224924947687	6.20893028682856	6.18575811755351	5.82386971876161	6.37065394425581	6.34564500444446	6.5237475425057	6.41291078532588	6.31601944212345	7.0839875246391	6.98543481146084
+"SLC16A7"	4.52936304985451	5.93302725996238	6.08000698408352	5.95711587697918	6.54588646081211	5.44061319479109	4.86867725318932	5.4644685025384	6.31601944212345	6.41102250093136	5.66789077636963	5.88738867764633	5.98304351766738	4.89107636287022	5.9777685076177	6.16381926011848	6.34002026453918	6.20195850538073	5.98586514953095	6.65030284857106	6.74411523989293
+"SLC16A8"	6.55625714815864	6.61055290346263	6.99520709597661	6.77732474614892	6.50259287585032	6.63981681369342	6.92495553529353	6.39428922119114	6.65489407316474	6.76017762611878	6.72086149855078	6.84189145622067	6.73013336250256	6.81585286654558	6.41701114427236	6.81988355497981	6.92799149083855	7.14770165909955	6.93963687102033	6.64414384766106	6.78390070837355
+"SLC16A9"	10.791065255872	8.73012062063692	8.73910141550953	8.59649935933098	7.79869956423991	7.51374984968091	9.38513963114457	8.11679955227201	8.92355789699427	8.55930103281574	9.73597023255691	8.13843359176733	7.76350590873266	8.65516485823157	8.58106278347499	8.92432654265639	8.36926548399505	8.56420774962957	9.24910001060756	8.3324756275054	6.96332691571705
+"SLC17A1"	5.14788138032114	5.28712637712492	5.17741058272271	5.3959290282283	5.28046958421848	5.17951840030378	5.35120507856627	5.34060933242264	5.31599848859459	5.33032718628957	5.23274540469249	5.05994585193412	5.20554825401557	5.404175189249	5.43913880701523	5.11769863551657	5.65110964086819	4.77068502160452	5.29115639572597	5.29115639572597	5.60156501909135
+"SLC17A2"	4.62694026794166	4.70926330193515	4.8565034952331	4.73938459532619	4.66784483447504	5.06228997534328	4.6901806099339	4.68691488440545	4.62805470948667	4.90405017458462	4.50383095018836	4.68948868001846	4.6073499279769	4.83928210398418	4.67468192865553	4.58587586539473	4.56496140073275	4.5580566640596	4.94742361195915	4.88315189946866	4.6180241911447
+"SLC17A3"	4.09242027634726	4.14812246428732	4.29158610052782	4.2307521987282	4.22127977310674	4.17142894920565	4.31361560767198	4.17038154457036	3.98846400314738	4.18707098442324	4.07286276423107	4.1901277746744	4.11976480621507	4.3071394304772	4.04487157296796	4.20908279304855	4.1901277746744	4.08022174867621	4.2261830098748	4.37253480609131	4.20780208756288
+"SLC17A4"	5.41132172840869	5.51019239015106	5.37617010212597	5.33166364605566	5.53731103591558	5.62764764911621	5.60223410855523	5.41248590780771	5.58432326727396	5.22720344692372	5.13787551316963	5.28322922605793	5.63195208121035	5.86225625937121	5.60971734855305	5.3556344616601	5.38369665979229	5.04663820589856	5.62995779704271	5.22099838310915	5.3800892437056
+"SLC17A5"	7.60762610916279	7.7238824734625	6.7731098129252	7.52786888115222	7.44417815933084	6.73516090619032	7.47969758036544	7.76664830227274	7.80586006433634	8.15599797592692	7.82657763865669	7.95824251808571	7.64299027694543	7.61790590327054	7.76632653273614	8.05350662784549	7.91626476303059	7.54931473823024	7.76664830227274	8.35239188780684	7.85668264793815
+"SLC17A6"	6.19840989508872	7.19908000967255	7.74341363007491	7.34794690616607	8.35501343749179	6.41200724062554	5.97597601967661	6.4761873041563	8.11364720101866	7.81242277921477	6.46750073467117	7.6286678798645	8.01452266280217	6.51747139817841	8.14663011802409	6.63140804066711	7.84452196079703	7.45752880348457	7.31693515215252	7.78696862923012	8.22578181331263
+"SLC17A7"	9.11065462268775	10.8346603839198	11.1548072466064	10.6280135995906	11.6418609813974	10.0786796124615	8.94032755339948	10.2552329273078	10.9353092652819	11.6245539565434	9.91896863954783	11.4888148665269	10.4661715182471	9.79275892550177	10.1545847788266	10.4912015968265	11.2916953772205	10.8119128067476	10.7417935849572	11.6951851265295	11.6369549868315
+"SLC17A8"	3.09978824566434	2.97362250362258	3.10456291027833	3.04761060380094	3.00959318115518	3.00959318115518	3.01260474276609	2.99245884840149	2.85987627591906	2.91373934248851	2.95079231094589	3.2909266537184	3.10783388915931	3.02934114573357	3.00959318115518	2.96091814463451	3.15533799134557	3.04666587051106	2.98230715842324	3.16763882898053	2.85124053788357
+"SLC17A9"	6.19679141136537	6.1648912768341	6.15569693836323	6.34074889384398	5.81659100654443	6.27845956459268	6.57211625616677	6.31151070622756	6.31582469048063	6.14019872511372	6.06937197686437	6.31428697933411	6.64856842505496	6.63573709075772	6.3337166458764	6.07254471562772	5.93677191233105	5.9721574541798	6.40931415727798	6.11463109389862	6.49804472660575
+"SLC18A1"	4.10364649219488	4.68395995497663	4.27464164066829	4.4477050182997	4.49497619638741	4.48827662448462	4.62335128070397	4.3023843411773	4.28597175624411	4.66559599069723	4.24764737708593	4.49633467807397	4.71420056926684	4.17867379008575	4.66309177277099	4.50933482841983	4.4477050182997	4.16292134855338	4.50680473575518	4.34051964772216	4.39256946893937
+"SLC18A2"	4.537699768961	4.54238031962639	4.30959877399327	4.89040404188458	4.537699768961	4.86069343413591	4.61172031245461	4.45314519497215	4.77954669909067	4.65860383737764	4.50643129871752	4.36578556251936	4.50483669262305	4.46166034850697	4.77213697379339	4.44678007676569	4.27030811858484	4.1768106032796	4.65035873775588	4.58779833979157	4.53316360160809
+"SLC18A3"	4.97079925123416	5.20819964996157	5.16525298998985	5.41092987771937	5.15813582288635	5.73715070605808	5.5941733389914	5.06320315371291	5.33645682594596	5.29923684035731	5.17687021478948	5.47388001955096	5.43860509658281	5.6911508844093	5.3252603479945	5.0973604476516	5.35377158934963	5.02396141935898	5.54551504639248	5.10318089551307	5.33358936572871
+"SLC18B1"	9.7079213612824	9.86710293139748	9.60903676476521	9.71595448096876	9.60125962572843	8.91637123775496	9.56814817674054	9.86183301320709	9.95999490228492	9.81686273730935	9.93555620050159	9.63359540730686	9.31611753100023	9.52562801848332	9.46302745042449	9.47967594349366	9.83787335698413	9.45352012264618	9.57446994756823	9.20123988742237	9.10728017881586
+"SLC19A1"	7.70418292939492	7.26532169615429	7.32840926855866	7.21970779633254	6.95921407664125	7.68126603781521	7.9812115818544	7.28533725610964	6.85346998971921	7.14576038313586	7.15133701353952	6.86514611500985	7.24167922756014	7.87853391383814	6.8889832425929	6.88829410162074	7.09414841505738	7.06657479553735	6.85403252541993	7.2083930891156	6.876093645517
+"SLC19A2"	5.93651689804733	6.3643480768716	6.61179208829785	6.22432694336899	6.94706250805639	6.45484107198593	6.20008119328203	6.84490726098174	6.67666943107572	6.20351225107932	6.01942256332164	6.47300137425344	6.52773008801245	6.09953620669753	6.84746515876601	5.84302701797683	6.85097487953836	6.53036259315506	6.38939076467624	6.45484107198593	6.39612193921915
+"SLC19A3"	7.09012340602623	5.229587609042	4.25281049000929	5.04093847434987	5.39066021912621	5.74302869654402	5.41341295777302	6.40033668836127	4.80034306955918	5.41762221938635	5.28768829799413	5.37386153733201	5.63808605061393	5.37338388245484	5.25687907739311	4.46846564789606	5.39608094917873	4.90389459657383	4.92884351866083	4.85543884101664	4.69977738994803
+"SLC1A1"	8.07479459023389	6.71800799433253	6.24881381727247	6.8889324290015	7.22980691076189	6.87673771233508	7.10956043432342	7.15056823612613	6.96855479347563	7.76064184366098	6.4706827626081	7.73493839995857	7.13366488202261	6.98604704312176	6.57922196081612	6.87295201055545	7.30253163046062	7.11148346036808	6.90768833068047	7.91705654701395	8.02935204270354
+"SLC1A2"	9.56137131189259	10.5095953191656	8.32439036482559	9.31650117151888	9.53196172577652	3.78476585945768	9.29088942108925	10.4931780224679	9.73859160148562	9.34731129728021	9.03821405731401	9.26923512866966	8.10056934593675	7.95141605047139	8.19399182275887	8.15442956949791	9.9053500803278	8.87931023987538	9.40442583275247	9.11618592102378	8.37057917459138
+"SLC1A3"	7.33442261268183	6.39052040194193	4.66941703806405	5.80483695426591	6.1185982996791	4.03997022268756	5.53984886573187	7.67819833266663	5.45430648998458	5.76856188688984	6.3675804058968	7.00245880887069	5.30879821231626	5.27868799797527	5.3103572972499	5.88901021058502	6.55383899517455	5.80612191234289	5.93976569178744	5.59650352514768	5.96448716297629
+"SLC1A4"	9.4420695566974	8.75983338379178	9.26097032594949	8.37460538915665	8.59797938709012	7.91406571608329	8.70964152138018	8.91916532059443	8.59188888567577	8.27604132015643	8.48925454574193	7.90478802380109	7.93056171419227	8.52134609327435	8.44774646579016	8.18758940447648	8.09317637074754	8.17577236320399	8.08155297080286	8.37005798142298	7.93384004697397
+"SLC1A5"	7.40615089227468	7.06693849917218	6.82703725343543	7.35284471504533	6.96472596273532	7.54510364453713	7.71807117027205	7.22732181037972	7.29248748641523	7.42648214212564	7.04654118122876	6.92615084856919	7.34210122944536	7.66376392514686	7.29630920179624	6.86231011739305	7.21080652683279	6.75851759208235	7.22796126628441	7.41208445541425	7.37234957966919
+"SLC1A6"	3.4229259859879	5.42098070520545	6.50354310054457	5.09122390903668	6.6572136136124	4.75834395602375	3.47592677965976	4.64220634789535	4.85306278108578	5.74053344091788	4.91942300447911	5.42368688596723	4.94772554959276	4.08719095483329	4.89787712559143	5.53098865926218	5.12475928072803	5.13933580519241	4.99532194402693	6.21732358129626	5.9736908060428
+"SLC1A7"	8.26658735536195	5.49715418309229	5.30155974096474	5.67855961462717	5.87744075473428	6.98585429647272	6.0674708618989	6.38332766673794	5.35394575866372	6.08551733547798	5.61606062037164	5.34022063196716	6.70494013842098	6.71401450535785	6.60765988372476	5.23588713434594	5.48934344915697	4.86851388338359	6.05101743087251	5.2694735622085	5.55188931314182
+"SLC20A1"	6.86278696602064	7.44410798709678	7.86784185910643	6.7669477937477	7.71565643692324	7.67898321152045	6.7979914735027	7.09287526678309	6.44532643852785	6.63606289414281	7.30350300234115	6.90237709266814	6.66064806225781	6.82269161681112	6.90828439137975	6.79015666489124	6.82025704998871	7.65109559154241	6.69053780467653	6.76585566610956	6.69321640887085
+"SLC20A1-DT"	5.6241815397718	6.09016064760737	6.58480458823094	6.20966902043062	6.29430090802031	5.96115486650465	5.97563346349676	6.33785494845016	6.170775928073	6.24690541304568	6.08587184591326	6.43827477245491	6.19907034563965	5.98720327323963	5.88360827905868	6.64624214717706	6.13075850408638	6.6799678794929	6.19907034563965	6.34227877006822	6.12059484398192
+"SLC20A2"	7.99369112541062	8.15367773603746	7.77241665546179	7.8791830856771	7.94867683417753	7.42086044170595	7.3198341289423	8.04553699632503	7.57439226628843	8.08478660452326	8.55252495013779	8.1364122204569	7.28975123335961	7.50508260049216	7.05269523901332	8.95247175412445	7.5940228196496	8.3460551292229	7.68194394375142	8.07500716148154	7.7732778842521
+"SLC22A1"	4.27972245461474	4.12909270545664	4.48108852757414	4.54532193673798	4.21176799950784	4.90019992542193	4.50837425060793	4.11317542854184	4.58389690104603	4.54252074875084	4.1813704053309	4.43856020261603	4.64766390402474	4.82663739396358	4.32363383497901	4.01427305640163	4.4315661298355	4.39790908166952	4.66124087142173	4.61261107738192	4.37575379244888
+"SLC22A11"	4.13206036842835	4.55343367561739	4.395113886527	4.64112670259549	4.5361280537431	4.57462493381271	4.8574043389822	4.34975512197092	4.46474335381765	4.537699768961	4.45574527281022	4.4639965426867	4.55279578452728	4.537699768961	4.66309177277099	4.54309432704415	4.57476982939446	4.39033353787736	4.57883958197908	4.5045565464649	4.32754816168984
+"SLC22A12"	5.85379297444557	5.92898990157822	5.82010980967195	6.07875777650245	5.87301572894154	6.49804472660575	6.98713050202263	6.1170747215624	6.20230271159448	6.12059484398192	5.44118522545226	5.98306970419493	6.227813405308	6.55301682137432	6.1543626446822	5.51346097732151	5.86633130547449	5.41040138185223	6.04563175524975	5.98737603366594	5.86621067960632
+"SLC22A13"	5.34186472428243	5.87392215693814	5.46199736320434	6.08208960168845	5.24580917319149	5.89707216976435	6.01402305431059	5.88594163946083	6.41887024969704	5.88507666539364	5.70468987582431	5.87507997163159	6.32155892128015	6.30815934560741	6.28082654180185	5.63990104897751	6.20821651190777	4.94841881247572	5.99055430596675	5.7230127490046	6.21205788580664
+"SLC22A14"	7.19310931906278	7.11332473399863	7.15189316175999	7.40406256749832	7.16787013967762	7.45586405005731	7.82143338664233	7.29397917483561	7.2210707769658	7.15125987118476	6.77946737667858	7.0803372090034	7.38223040447251	7.6345281360679	7.16874155824922	7.24366900084871	7.18201363811126	6.97731607839976	6.91050712691752	7.18252404769041	7.20696971650886
+"SLC22A15"	8.18146184569703	8.62422857312338	8.28938843706445	8.38928659651228	8.30709949091043	8.49087493947891	7.78313743211076	7.79379732222982	7.99161195854021	8.1098763587589	8.87236499967028	7.93986528961191	7.91468555321923	8.06244313324338	8.209251068823	9.6887085311719	8.33881668627956	9.52136447772724	8.06769051321164	7.89597415537937	8.1218506345541
+"SLC22A16"	5.59504330124415	5.39532465782663	5.90509302830947	5.71310705065414	5.78415262092518	6.28369389948868	6.02273934432829	5.67738242454024	5.63282737911643	5.49471416268517	5.30487307176989	5.548166799203	5.54165134722794	5.78925896362559	5.33358936572871	5.82639740369777	5.66967861740666	5.83129457676042	5.62339591766725	5.40700308761465	5.54137538180107
+"SLC22A17"	9.68973330421254	10.1616381842098	10.6025853672794	10.2469878361987	10.5359069270235	10.3564023898745	9.85821257503026	9.95764410793775	10.170405062811	10.5407016383654	10.2137770798886	10.463740580619	10.2964169021631	9.89969123345533	9.77434810798802	9.92455083160336	10.3132679058516	10.2697209325882	10.0453292144733	10.516189957197	10.2801040217455
+"SLC22A2"	5.0030347910474	5.02911786542874	5.0030347910474	5.08933254877758	4.87554426045942	5.20159167786237	5.02911786542874	4.64879495832975	5.14785645014479	6.36100880584957	4.87365866902176	4.85562687716804	5.12525945714979	4.96265719110901	5.02911786542874	4.94696423676795	5.02911786542874	4.59170604134252	5.11223064452755	6.22133346518327	4.87142101883951
+"SLC22A23"	9.74218008111944	9.1291007812176	9.15786152274448	9.31742047902564	8.84729484013659	9.92534863517638	9.27138637699833	8.96463279612558	8.94306721464739	8.77450507777027	9.24949678520759	8.6656902481551	9.10174225573588	9.47938722251038	9.30880958100581	10.1916838484805	9.25930550646158	9.89059908498473	9.38556748980725	9.20623019268564	9.08591039780321
+"SLC22A24"	4.33979201041669	4.48216285397873	4.54616884495268	4.59509938227525	4.66784483447504	4.39061350397582	4.27580636123759	4.33907919927114	4.5018857091111	4.50910779348347	4.4639965426867	4.84332438174335	4.60450467217785	4.61985510792186	4.38276844765131	4.64770288580861	4.63743894085771	4.53596722591742	4.52436156754947	4.53596722591742	4.73842782179534
+"SLC22A25"	6.74701474477505	7.04431969470005	6.67671483902046	7.13083672791424	6.80843422125266	6.61423197156024	6.84132583883523	6.77127866998394	7.26114237031882	6.9593094165634	6.98834223086438	7.0394371503913	7.10086167826755	6.82935810898005	6.91026647996872	7.08915894994468	7.16591831574856	6.3800511946158	6.97627113322243	6.71654106208432	7.01258523864967
+"SLC22A3"	3.05175417992507	3.02677744240022	2.97473020019578	3.06392375765432	2.81777923464312	3.11412655923075	3.24288349725228	3.0153241348814	2.94271691020649	3.20722492333442	2.86871074155533	3.10315391348365	3.11624207671142	3.11886557138205	2.76846321795878	2.69844662201245	2.86567934226069	2.84184031344312	3.01524681039211	3.47233840587004	2.95485443423371
+"SLC22A31"	6.4184145801284	6.61930995295769	6.67424689749865	6.58378299000033	6.29006044357503	6.8086599002106	7.30408413628921	6.60442596493363	6.74176126175953	6.69914054500865	6.74709527946187	6.84909236747889	6.76256347926011	6.98604704312176	6.63130549090958	6.5655081528835	6.64668965309118	6.42370709128017	6.57149518220538	6.57210414195496	6.66273980303237
+"SLC22A4"	6.10883825279535	5.1148836093095	5.54750821069612	4.65136626936456	5.23463041930844	5.03604944128306	4.32351478355936	5.56458709019211	4.46541442172259	5.13356229172306	6.09384614474047	5.1025648610446	4.95376772264429	4.99745076809351	4.4752576076541	5.30981610057594	4.77621603102479	5.13555876050516	4.6921316180411	5.76379674281944	5.05162681558328
+"SLC22A5"	7.92026319320396	7.35255204528121	7.31218249581954	7.28712761343971	6.69563984907971	6.63981681369342	7.21282779437431	7.29286835195359	7.20326328925664	6.69830759516445	7.2490277379127	6.77908547162542	6.97108592086442	6.96614339987037	6.96136238653503	6.94370282585637	7.07753436549552	7.21901933824517	6.86229162127161	7.05671326445835	6.7299466130564
+"SLC22A6"	4.51485911781265	5.09334453735455	5.16439331539808	4.86519315425842	4.53694921487179	4.53552366041602	4.94912767344552	4.95052985380508	4.84255521119267	6.27124494097287	5.45124121372988	4.84400210941033	5.01927668871185	4.76740902117686	4.97759634733231	4.97759634733231	4.90030683813235	4.71564509882659	5.290569876858	6.00369971097374	5.07305043216113
+"SLC22A7"	6.24624496249475	6.33505334639691	6.12513165245508	6.3643480768716	5.88012730541928	6.55902670345003	6.66779319688799	5.96668269176176	6.26664260566971	6.36673761626565	6.36958509421923	6.3643480768716	6.41998222170764	6.40252130884907	6.53988857904763	5.97641641638404	6.3391029402299	6.3643480768716	6.43094533068508	6.52288768472883	6.45002677788193
+"SLC22A8"	5.579350081328	5.77936416395068	5.40711749029713	5.97441011662171	5.5447152405073	5.94290347017261	6.19090719485407	5.79129065835648	5.64357293331133	6.5624836529096	5.55072093961842	5.60135690858715	5.98304351766738	5.90110928822661	5.71743874065851	5.51915909150975	5.79608450905793	5.66498893888351	6.44641051324159	6.5104545073055	5.81603508225978
+"SLC22A9"	4.44212886073088	5.23389961059546	4.88916633468327	5.1697335097139	5.02883734932119	4.56351224300865	4.36535508765112	4.73956095495233	4.85092515177462	5.00148461487239	4.65830567166278	5.37241134550334	4.885371556434	4.47315741586006	5.15506689158977	5.03272037605623	5.11095533517818	4.62279067906164	5.04003097162902	5.12041529856486	4.95757660338047
+"SLC23A1"	4.59511993989316	4.45485474947726	4.56156938455247	4.62451246840833	4.67323336709778	4.82255418563632	4.71161829654525	4.51351909079757	4.45522984629946	4.50475045342217	4.54200876775137	4.71280355417108	5.02344645430309	5.12458347655151	4.64907449548935	4.74051695077605	4.59417246995655	4.39526568342552	4.59915426193154	4.57910885716563	4.75027816880098
+"SLC23A2"	6.60495275352204	7.18812526524652	6.05878827265053	6.57232558353814	6.89343733746903	5.57928593880397	6.04158860211221	6.93328178243035	6.66924004636177	7.51207016436409	7.08562666710807	7.3225206912043	6.25749357402024	6.11166158124313	5.58994923135328	7.19107462355245	6.58260146383461	6.67655184693385	6.15498091791688	7.01966298001389	7.3334273058522
+"SLC23A3"	3.88509171534632	4.03206980040202	4.07792606942969	4.16550775199091	3.99739477939048	4.07658735747625	4.46218043037377	4.02587002845356	4.37250674090956	3.97271251385335	3.95592137158504	4.07064513679817	4.41110217552243	4.80724034239476	4.45921743578104	3.85872490947201	4.14269295604677	3.99784334937864	3.90945385533779	3.98057184813453	4.0852280804532
+"SLC24A1"	5.62303880212259	5.6957520216842	5.6676024022056	5.2741827729732	5.42180448041391	5.42558628509597	5.08052538773411	5.4726504282162	5.04776555873632	5.28598189394412	6.10465691861031	5.18572128860119	5.60123028384683	5.71951389137568	5.24744418401097	5.62068080221575	5.04448848945577	5.37522421249729	5.18716262738281	5.29438908095019	5.18662080999266
+"SLC24A2"	6.67755187593624	7.21136846668994	6.06960689906966	7.02795196259657	7.05768942851666	6.97442268929657	6.38420121804177	6.95656674326747	6.79576590711207	8.06518065819836	7.68959985198722	8.31350855663026	6.77792920083651	6.82035821349794	6.36754411885347	8.28055596791974	7.22704443361305	7.89660345087792	7.21479922238334	7.54861761112412	7.78283561506209
+"SLC24A3"	7.12012797152404	7.33851253088736	7.92621065620935	7.3571213801598	7.53459857300175	7.34023547482483	7.84164048487089	7.78161678184567	7.59531033534169	7.38446571660634	6.97393300404529	7.01577578516655	7.45290145232146	7.5241113504021	7.53161040273717	6.82360061335699	7.32646173410957	7.33913545969744	7.0660172045033	8.00173997963893	7.42065703429448
+"SLC24A3-AS1"	4.68099762887266	4.84541097246463	4.70739056529203	5.2869589745297	4.85902249782825	5.07346096577664	5.32881246627846	5.01080750985299	4.96741475869305	4.99169548668545	4.66355677736568	4.96027195680543	5.16155284844068	5.17089411750714	5.04325961500178	4.95111982462395	5.14163205303485	4.52855645339981	5.01715015434466	4.73225466986349	5.09463260462612
+"SLC24A4"	6.82894407078371	7.34013532591041	7.77236622824427	7.03100919023873	7.45189286852732	7.1755967881766	7.12834773837703	7.0569041042059	7.21260310046795	6.5958254775623	7.04473580895393	7.11990208725095	7.06311130198721	7.11545326138694	6.55302106642539	7.27689944759852	7.33948035271429	7.73051552129083	7.22744622646294	7.25925511119181	6.80427542395448
+"SLC25A1"	8.76252621430803	8.0447973100224	8.15870067064136	8.19350611069688	7.89543821072308	8.67989594453926	8.45007446632142	8.23721423277453	7.71566110952081	8.1722697923898	8.52429726716796	7.77697899609611	8.13117345002142	8.1629474891359	8.08976659642705	8.64796995302077	7.80087209107554	8.61753366122499	8.29463357862323	8.38974627086844	7.75361873268035
+"SLC25A11"	8.54601053048287	8.73893973954372	8.82959113423447	8.57017112196825	9.22419527828465	8.49774918909381	8.55745980763909	8.71079141030999	8.41995676481344	9.21237328874876	8.70903300245902	8.99782340578817	8.40593500577854	8.27056969541787	8.37726289616367	9.00722201071888	8.63903487455354	8.93214955885169	8.59294014196014	9.48359145908945	9.15635343761887
+"SLC25A13"	5.80164265405504	5.83953898763738	5.74607614572925	5.26896863459866	5.23873693017059	5.48273177249583	5.22903701879294	4.79601946763356	4.68180519347521	5.11797785532054	6.90777968578657	4.51445773147077	4.94516482987781	5.15721450082404	4.95587050385095	7.84615565494743	4.83221361002525	7.2596887710881	5.03250519657769	5.19495344579788	5.57355220906294
+"SLC25A14"	7.20831796364506	7.54930151333477	7.89946581535078	7.42392940940192	8.04215317788343	7.24873279149974	7.18564402986247	7.27536895554902	7.56062255696928	8.02830276637413	7.39208007265121	8.00271549648416	7.12098008554743	6.90539911212946	7.48501601805831	7.65481805710831	7.73815835595184	7.7866412494644	7.50066948628113	8.34098426948505	8.17871922666085
+"SLC25A15"	6.54458396232555	6.52792896402546	6.70122833253302	6.28678606343264	6.80232564429979	6.30450959811795	6.49205109359369	6.09359462607476	6.45679941950905	6.46513387445244	6.443834933189	6.24165582968693	6.39552190381165	6.40281590167109	6.21391841222232	6.50978653460549	6.03041091497452	6.43035653009328	6.13990886615888	6.8480972526832	6.6174171075581
+"SLC25A16"	7.91724434561662	8.47879925134038	8.62564563981974	7.71101960457812	8.67104488407004	7.67041212199797	7.25902074156632	7.71383818896063	8.07659381831433	8.28422171590224	8.08510939939911	8.13546641571119	7.71026829500891	7.61744174766472	7.5775388318946	8.2289679078352	8.00930147249216	8.40200407873424	8.05772552225025	8.26553111323841	8.38942376303655
+"SLC25A17"	7.21136846668994	7.34194625012613	7.24131273290758	7.05071529379984	7.58416748772417	6.90998744834755	6.69150544560173	6.7722656286252	7.18424942416038	7.37219280408716	7.55640058167687	7.18424942416038	6.91516211146581	6.8000270884629	6.91302014387695	7.89243858262532	6.97891692052895	7.68285288900751	7.14655535169097	7.36591046764281	7.40835444515903
+"SLC25A18"	11.5496730309696	10.7733012679957	10.6542259507872	10.8269543575311	10.2412771678977	10.5512556594803	11.3405595771884	11.0656395832399	10.9466419613862	10.7727718008053	10.7246385175095	10.4847583019861	10.807479798794	11.0866458039863	11.1159400435834	10.067323074211	10.6610805910215	10.1656953851472	10.8774000908759	10.3417198774597	9.88893602363677
+"SLC25A19"	7.36761695262291	7.18831972017225	7.30857651220372	6.99336953878227	7.11407800396848	7.24857884119348	7.10678167665356	7.12546192969822	7.12017553487821	7.11241618278037	7.0038208925016	7.05668979862654	7.3415491122045	7.34625133931714	7.38559490982063	6.97605324236491	6.91561504363636	6.96170794859686	7.14156146319423	7.38204767169135	7.37060036558422
+"SLC25A2"	3.70901336047294	4.06498380054256	3.97019206634787	3.66964993119502	4.146539974491	4.29308349057792	3.64744718061204	3.99895387746828	3.88879572882989	3.88707230285855	3.44578039014644	3.81887188875155	3.77515342340862	3.87715338093011	3.62966187196936	3.75590161046298	3.61476412053786	3.72420658052543	3.82902154818319	3.98202756864443	3.64460380029521
+"SLC25A20"	8.51703725767207	7.77863398109693	7.50292779854522	7.81273637857224	7.38882777186094	7.60715193335009	8.23010475041471	7.82143338664233	7.81298125773122	7.79065055187853	7.53723177545452	7.3305449316845	7.57627878750805	7.81355067629084	7.68738169170565	7.82588106384391	7.66428237890983	7.73378314823404	7.77827380856226	7.63425043570484	7.15512105260625
+"SLC25A21"	2.95643405599837	2.85963726925033	2.86269540486766	2.82404495041579	2.91330336665452	2.86114503983006	2.67212533925649	2.81263143949865	2.73776398958552	2.81397382014853	3.03342022531343	2.83315152338247	2.65847733099368	2.98325445411646	2.86114503983006	3.0060779242688	3.04175152293493	2.89494360794167	2.83909544622571	2.85518520629763	2.84960862592322
+"SLC25A21-AS1"	3.49286308793624	3.49087660442373	3.46048508149964	3.45258002755398	3.69265526819335	3.51977008477097	3.42489210385829	3.39189737117187	3.37116404785079	3.32817316564012	3.6923071121362	3.44481412276566	3.45405293568582	3.70008880054263	3.41533875692881	3.7161916411577	3.38415398584315	3.45177671905058	3.54199129173291	3.24332422360459	3.3404377108901
+"SLC25A22"	7.98118283403856	8.82027006478546	9.20610673493489	8.72148283066627	8.97101362606277	8.8738705679464	8.46709391091978	8.60700059550994	8.92799808412435	8.81490194957418	8.10457525253765	8.87843225092941	8.75784816316515	8.59335474597465	8.34944226485328	8.01468822750518	8.78165338223948	8.56534376621883	8.40130195030184	8.86821944635122	8.88222835656136
+"SLC25A23"	5.56314627445759	7.56653093115203	7.76212215215929	7.45777317520714	7.62849749322215	8.15266387750397	7.59204239939378	8.30162013838362	7.85900867806586	8.23676554705556	7.2831344937807	8.02645085456373	7.39158203248338	7.62288035588041	6.60071831407867	7.12595058980093	6.41710954801926	6.31551680685889	7.27031368172417	7.7395808265114	7.42009884891606
+"SLC25A25"	8.02393484268976	8.38988807777649	8.52501051032938	8.26629727157103	8.7160637540307	8.51129596862431	8.45908064203149	8.68685349654904	8.30185695031467	8.5154511952519	8.22718022566358	8.61098924702606	8.51835680815594	8.38988807777649	8.06405660935796	8.15195360731286	8.59491774193433	8.13987003339995	8.22511773537126	8.55144529347091	8.59369014748649
+"SLC25A25-AS1"	6.75057056977826	6.72800370118402	6.94941265688148	6.99153151133932	6.63487295785622	6.83627693825841	7.48184299955152	6.67811601322735	7.05988944568066	6.43311063983777	6.89792254977239	6.65414021802926	7.18183072482002	7.09690998910869	7.21873623077771	6.97516746539439	6.989434193165	7.1002106419383	6.84977385853103	6.67813130736711	6.73024353481617
+"SLC25A27"	6.58911836987919	6.8053470346114	6.72423956897692	6.30126431420237	6.96031929246323	5.5135264237917	5.46838749071088	6.31601944212345	6.14465474734374	6.58047760187002	6.58047760187002	6.85481501408846	6.23162231369337	5.71305979461337	5.63280542538709	7.0475960175346	7.14141279859661	6.76040269915236	6.202143603654	6.62441386851357	6.97964915265822
+"SLC25A28"	9.33490788313586	9.10990780218189	9.32977134068702	9.20213880525915	8.86509376232414	9.36865661354917	9.52300695734215	9.44771919896093	9.27039076073381	8.91815162612376	9.1080649636732	9.04973838662662	9.24556724342678	9.39587700202512	9.22420161469289	9.02203810827775	9.08598157066078	8.99003740274734	9.24586007236508	8.90901795500791	8.98453803454916
+"SLC25A28-DT"	6.01169994213671	6.2590350209814	5.96689198491319	5.86177921740243	6.1053859651662	5.86454874366612	5.79167922356805	5.85943478330691	6.21561857284157	6.16120329124329	6.3035724598605	6.00650713940916	6.22477310415734	6.06362099283098	6.04589894622182	6.29490579385237	6.16745761908492	6.13492414834085	6.09230863889115	6.10697667882706	6.08888987798735
+"SLC25A29"	8.79343111162577	8.77845963855885	8.92642903364158	8.64284740097513	8.41129736533129	9.3084473125382	8.90002636889426	8.97268493090511	8.59683355900695	8.32508746660088	8.95642864526021	8.33251241670269	8.89536297939133	9.13436498291249	8.97191541759413	8.8183777086839	8.55197729181218	8.7842981154341	8.73901546659756	8.44714291808335	8.23693788888012
+"SLC25A3"	7.99631735500831	8.76579137611444	8.83095369814974	9.07894771794029	8.84514573328727	8.45059529438175	8.47143864358781	8.68368793887433	9.28757892475661	8.83907304929873	8.58688227952349	8.71387401142904	9.54269295313773	8.86263618349591	9.45024830346755	7.95543052096477	8.71707036298519	8.44350965399524	8.86435418553103	8.8505528921328	8.78235600131353
+"SLC25A30"	6.90198475205435	6.72469529367161	6.70430315794072	7.12202669483097	6.67948729091032	6.63037484246641	6.78704958814415	7.2577279706996	6.96750264809739	6.79341182031462	6.73423916680198	6.31745403088338	6.96378498352583	7.04708559907501	7.0836985910082	6.41604441366715	6.55861902789711	6.84023142068411	6.80810692749433	6.74740662307763	6.74950357677782
+"SLC25A31"	3.01457642723889	2.86631289042919	2.91251825304832	2.93972020721761	3.00959318115518	2.93920236860257	2.93285240251108	2.97988071827843	2.8761110570462	2.82291859463182	2.72902727026446	2.75644172578952	2.91928741107058	3.10271875687885	2.89334938526495	2.85294431963546	3.08840999913254	3.06102762460153	2.83943014649297	2.90549723281877	2.90698294516277
+"SLC25A34"	6.58791393499304	6.45259589124586	6.77757703116924	6.73093893419495	6.32393560839601	7.0174957420731	7.14747551563049	6.55094066410157	6.67453090427133	6.59093058918239	6.52820631290359	6.58059968005227	6.89118896500538	7.13493802258071	6.73402041363262	5.73369108105381	6.46809371241148	5.96162702175638	6.34935334692141	6.32256126468242	6.65897125631449
+"SLC25A35"	5.94248381760693	5.83994985772386	5.90533884821749	5.94373175444496	5.71624470348405	6.31605649595127	6.15821232297329	5.71357191113005	6.03795842217341	5.8174882359223	5.87392215693814	5.73642589242291	5.87881659187072	6.30630665153484	5.60133297357859	5.95593133795218	5.58398373854314	5.87826910584952	5.61526856291493	5.78866394107385	5.80628168366224
+"SLC25A36"	5.91611865132135	6.81621743151791	6.73413956146491	6.41250146165107	7.14972993346358	5.50218117784755	5.00828637740003	5.94585120373304	6.07022139798267	6.53481148453107	7.20137473012964	6.77677739127602	6.00198051105303	6.3813725624068	6.3526779966597	6.5323987098972	6.52202963162964	6.61409876635346	6.52558162305306	6.88298062048721	6.28306567675229
+"SLC25A37"	7.53343708192345	6.51554207894445	7.40008997686964	6.9346644525213	7.33463442000277	6.99742117026212	7.55159737061704	7.8521111470307	7.09299725023631	6.54019337360962	6.86075287646194	7.00867189677662	7.04520188425726	6.39043254511173	7.25619339614117	6.25079110704888	6.91692331245473	6.9809924258155	7.36814186077285	7.47356657824283	6.71882257034962
+"SLC25A38"	7.92183688653792	8.0929481194586	8.27015701792977	8.05686435995817	8.06996204934344	7.84784656497886	7.79549534852127	8.05686435995817	8.15792818583107	8.14340498967077	7.80840115828072	8.11171657759663	8.13117572132105	7.72987741688616	8.29493782447822	7.92147049078344	8.12797781825821	8.21992738901826	8.26766927242521	8.15204053854802	8.0399970015026
+"SLC25A39"	9.16216682701689	8.4473917822245	8.50473564942555	8.42434523631429	8.46359002288628	8.72666891927316	8.58869830540234	8.49913791022844	8.43608667809463	8.49187970609075	8.62131519292093	8.43822322415137	8.27403637151468	8.71059113020725	8.63600654071392	8.59005685504697	8.37254942024457	8.49825386979927	8.84930146135005	8.82454204677997	8.59013016701879
+"SLC25A3P1"	4.530380930403	4.64423178974708	4.54772595799635	4.54492025211708	4.72830554077746	4.49769854206238	4.48415720176131	4.42648296212281	4.62207725591624	4.64644822480987	4.55442998750133	4.66609205228663	4.54330114266641	4.54144535416207	4.64423178974708	4.54183451018128	4.64423178974708	4.57512919121534	4.56007435200408	4.68714323207672	4.356973578118
+"SLC25A4"	6.66262887208435	7.24487650633631	8.23330583030912	7.18776684452892	8.33444524691627	7.19375066785289	6.96289730322719	7.27263131536736	8.17257715076052	8.4888537202263	6.91039485873343	8.00271549648416	7.32317682471014	7.08515043298022	7.65155344469206	7.33355291601528	8.0768482785596	8.11179018294156	7.59167551388075	8.31518302658981	8.16182254194602
+"SLC25A40"	7.63693669857068	8.2861636496202	8.38745405143482	7.96863075512244	9.07464694823737	7.02495362818117	7.10293562733319	7.99088152599298	7.75799289018625	8.69538383860866	8.22150160524758	8.30567544505816	8.09624735014781	7.09865357601283	8.19634758410366	8.55506489635567	8.56692690354308	8.33616977145809	8.09372519935593	8.23834556122982	8.76107030189301
+"SLC25A41"	5.71536464566891	5.98431781170394	6.39429453624811	6.02597687185645	5.82287033003888	6.10618445158552	6.81189183305006	6.61376684300348	6.41000062741182	6.0897510491726	5.75768020780823	6.0268417884397	6.0518882389905	6.14207700169637	6.17007248696622	5.9450168728331	5.75008258809629	5.70499477986651	6.15475616066584	6.10618445158552	6.23946172261733
+"SLC25A42"	4.98642625118342	4.87284529141616	4.92332082070879	5.05634119317273	4.78921535823187	5.30319234606766	5.33465631216847	4.8978925386066	5.41347049875047	5.09122390903668	5.29662072889773	5.30918070843266	5.03419405087237	4.97326129245676	4.97237024981815	5.09122390903668	5.19842214436308	4.81012995750816	5.16285689490201	5.2481720966801	5.10364175422894
+"SLC25A43"	6.39013628829368	4.80306892467397	4.4304623144801	4.73649307541225	4.68037466784725	3.99517512901001	5.10824026329334	5.5453349065701	4.80034306955918	4.73649307541225	5.40172524657443	4.52179986277073	4.27897671876174	4.66686580122645	4.80120936418658	4.4788200039184	4.53077020011164	4.65530574903347	4.56411969954247	4.73649307541225	4.90770366705826
+"SLC25A44"	8.15002719713012	8.26540263823961	8.64166378633299	8.36130358427795	8.54997038601286	8.40532165011287	8.19963534408748	8.16809168148402	8.42737514474528	8.73040340806002	8.14764700537361	8.46470025314937	8.39683480400423	8.09984933977971	8.18019764171248	8.62182596115259	8.46543471239099	8.6420124152257	7.96728244150161	8.72064645691427	8.56934819332036
+"SLC25A45"	6.79429033753156	7.43519432941066	7.57191462953084	6.96325008517563	7.38472613427627	7.17332184971239	6.70281354256484	6.73089718046124	6.77150108731485	7.14156146319423	7.50639973746057	6.9455876313283	7.19218513701371	7.16681245216074	6.62269333798688	7.43705717200697	6.86494133118795	7.48091945258934	6.51618894213043	7.25423151443731	6.89133925275691
+"SLC25A46"	8.53450105386398	8.75981509452194	8.19247991216596	8.10407164930361	9.07875486935929	7.66487978923194	7.41650972725371	8.23452998471581	8.30678426404445	8.98401071549513	8.54400332746383	8.69836956062193	7.96993297053441	7.51170748686957	7.92750830205153	9.02475623542609	8.56585996713595	8.99895018087453	8.52612076865665	8.70217144226889	9.11780437638372
+"SLC25A47"	5.37877272503379	5.58998915888436	5.71800186028239	5.77435760641469	5.37374158101716	5.96921536417172	6.39108372801591	5.69976198154075	6.07653951661872	5.71644558861077	5.53014782669928	5.84224058243741	6.06390817454165	6.15179078797623	5.96084029968732	5.46251769726649	5.90839435442891	5.38863427806327	5.80022369735123	5.71252119009032	5.79114734971711
+"SLC25A48"	6.79075154526471	6.9916160886239	6.23629302488404	7.32311572705737	6.81088895493217	8.09731192082152	7.30127374771261	6.65715364504114	7.32176539864246	7.16165804119492	6.66901302851504	6.42815113411037	7.71158163099687	7.76932510990132	7.16922495366741	6.71550209667776	6.95421277461054	7.60652829307609	6.98001445543345	6.36754026293853	6.24908392379016
+"SLC25A48-AS1"	4.74468855185227	5.06799901758406	4.90591748952868	5.14217307007476	5.11504123483153	5.09122390903668	4.95384895625167	4.77098703844413	5.00432869856454	4.87717839584362	4.7786149362754	5.06938408185973	5.05574761930063	5.0961179933592	5.04771811497298	5.12779328008027	5.08748879164041	4.58102991634326	5.14960247361201	4.92398295536673	4.99339971506405
+"SLC25A5"	10.5532804330261	10.8694067975259	10.3801330084173	10.3442913108351	11.0835218375849	9.92472800727769	10.3329757848214	10.7158659046296	10.6141457843582	11.027679590469	10.7936051663037	10.7570729243324	10.5660832381144	10.1016085865125	10.5359260496435	10.7538861194991	10.6291353274217	10.8916075478791	10.6119935472428	11.0388534037461	10.9950611470864
+"SLC25A5-AS1"	6.85706676021454	6.95253045769168	7.25390495372847	6.80326238827585	7.18564402986247	6.90597179963722	6.79486426974974	6.74782540658808	6.89037523600475	7.01443061689195	6.69738904226881	6.59566456213126	6.83138545815261	7.06971696620995	6.85706676021454	6.92006325469227	6.56558526767623	6.84117362491563	6.66157670737127	7.01940993641652	6.69201949677066
+"SLC25A51"	7.16550454176287	6.99006307921733	6.82286791318147	7.33179156531878	6.76280760655764	7.29423932486654	7.30014946648617	7.02761765591805	7.47616889260623	7.05285573148787	7.17350621562677	6.90681631654821	7.44143745731917	7.23827447374527	7.07382453951793	7.47522692001377	6.83894873279984	6.898127581721	7.25912622967141	7.15955225341532	6.64443211393596
+"SLC25A53"	4.08563414844274	3.99892452736342	4.07070987657397	3.9033712300094	4.17359651318277	4.38347288769292	4.3950090362541	4.03793097714922	4.14760618576006	3.86532624940746	4.16547427429933	3.75763593931921	4.18439974502871	4.2151691018627	4.36913910324849	3.93145915332033	3.89101246068391	4.55913588031796	4.10950085333063	3.79893401220604	3.80866312549809
+"SLC26A1"	4.61392072721586	4.660790907584	5.14446758198112	5.25506036640121	4.63620098718875	5.07216772752584	5.46391567403533	4.88175692707423	4.93056749780753	4.59096878236588	4.54611286318364	4.83197408371532	4.99267354141546	5.07027807937027	5.1406517760566	4.64826124498175	4.75696937431281	4.55383801828695	4.99532194402693	4.87598852855677	4.63751603956861
+"SLC26A11"	9.27244986303061	9.39392810682329	10.0175959669878	9.37931016134816	9.58421344707301	9.51346696035018	8.95477918072129	9.47647536382449	9.18812491013992	9.33908483344334	9.23736415960015	9.24381994471343	9.45981119976082	9.19059341631531	9.32850407052089	9.32910824078759	9.3447534404842	9.30343343657731	9.15326591852391	9.43383740027641	9.33625452650176
+"SLC26A2"	9.10679702339275	7.60687917367378	7.11983648785211	6.96764875515293	7.63515059123108	8.52321252401352	6.88348198434269	7.48733843990502	7.1273500165162	7.7331697287415	7.46843143587616	6.71038349697694	7.14014673304685	7.60096651829628	7.35684550146554	7.71575483880126	7.00852501075246	8.06300093488495	8.1228979208965	8.87545106010065	7.61194815146463
+"SLC26A3"	3.02471288538393	2.96735777633827	2.99259016661595	3.01789583091049	3.2403198143981	3.26334414941906	3.19978840748838	3.05340273827486	2.87544993368889	3.08422291375228	2.96455472775883	3.01449908281559	2.95324132638369	3.16499571417182	3.11950823403743	3.00934091630943	2.88803199677215	2.86221256623603	3.2547017463936	3.09189494638779	3.0066718050774
+"SLC26A4"	5.04832523000826	5.63546806525202	6.19782980313219	5.62059806761454	5.99673741039676	5.173648557121	5.32872497022485	5.80639551797155	5.82712438689978	5.44880914596821	5.74159932643681	5.76293045831967	5.74159932643681	5.37036873451293	5.68472477724625	4.82636297722638	5.7662511083396	5.47278990505147	5.5906240561173	5.22025635773318	5.32130217772347
+"SLC26A4-AS1"	4.32225152680571	6.43487270969375	6.6757835668725	6.30276789654834	6.96351414971647	4.7194737476455	3.74058569908987	5.36047464913891	6.06045461805226	6.45278809997766	5.47831590142259	6.22866986790721	6.07153546945775	4.86274304238162	6.02570430531721	5.94172622398767	6.14109388727655	6.12670715679974	6.15649379397573	6.64084970016945	6.59485576341922
+"SLC26A5-AS1"	4.02146058176965	3.84664116772265	3.79936107208142	3.83353097716374	3.94847753638272	4.22652090440707	3.75583126056935	3.66019394628994	3.56769546772488	3.79331983998666	3.51901352853629	3.79789751493351	3.9001479788428	4.0177610935162	3.83963363248773	3.50613007714959	3.86812667822051	3.64985107121951	3.76810159541179	3.76817269859548	3.84802895976289
+"SLC26A6"	6.95351857557631	6.52632420677574	6.71236548598638	6.72909179396755	6.20097235139746	7.2667735509632	6.99960190184383	6.46222958371042	6.65439591289661	6.44226479809528	6.75181091303106	6.51633473130392	6.80677839659244	6.82390002428263	6.92347855439943	6.47270727763004	6.68920445954337	6.93399460957371	6.81972522935114	6.70643281826989	6.56292640780518
+"SLC26A7"	2.97882460576984	3.2950837428511	3.04611834309151	2.91674708700639	2.76421931169994	2.98586326033229	2.90370473005163	2.83818281199126	2.84709888878822	3.04048422142886	2.94947303532845	3.0994606291364	2.80791299076084	2.93654180735957	3.12215811148589	2.90661762959976	2.86142344966354	3.19763809527579	2.98920501294193	3.428339258401	2.76249910642217
+"SLC26A8"	6.09269925612562	7.06844819925936	7.11057823454536	6.34013689720406	6.87286804143226	6.91097680838802	6.10117361103518	6.66766596962789	6.64477258976827	6.60384070028837	6.08838616727082	6.76209950146815	6.38135629781901	6.49726099664876	6.14951683921259	6.226094551549	6.94438024336663	6.60384070028837	6.51524340898884	6.63552883703507	6.60384070028837
+"SLC26A9"	5.33484113934151	4.60998896547447	4.99335309040521	5.03740378609089	4.9441040892574	5.68843963618363	4.59852533226022	4.80582313941125	4.44223754266739	4.47248626148149	5.10752298270949	4.89990448427214	4.36308601070339	4.85876281995532	4.88722462909704	5.74213455557752	4.57711785946093	5.32771146559896	5.04003097162902	4.23056411369514	4.58327069305248
+"SLC27A1"	9.52946139657503	9.63046238344552	9.44010536847379	8.94990970121831	8.89009694850819	9.28772649805207	9.42024726632472	9.03957403675074	8.7352611904458	8.78603075469085	9.84597383974456	8.92072213909421	8.74478410632983	9.101666394728	8.64527439881775	9.80719392992351	8.84317780215329	9.44226927503405	8.98672828038894	9.06330106827706	8.7984709396337
+"SLC27A2"	4.72982507061451	5.3762530730135	5.60884605230733	5.21923322179684	5.70804528613837	5.15800590644601	4.89602031624393	5.14990993377563	5.51231074732479	5.3809031683129	4.89754056098274	5.40027796302515	5.19581835005157	5.13624201613324	5.17461707781229	5.07829334096832	5.43300576023898	5.13486668517696	5.30097962000209	5.67864306235166	5.32222757327204
+"SLC27A4"	7.68287011601183	7.65501465838835	7.86507138339307	7.53421437760723	7.88502996240182	7.80782002055944	7.56862332221498	7.39751095720893	7.45818406385866	8.19289955944316	7.80819198887789	7.75142560515622	7.76147305099345	7.68012859566221	7.57024001184732	8.0143838191564	7.73725914331215	7.82682433799223	7.44215921262881	8.36797338484106	8.25427018700112
+"SLC27A5"	6.86410486799046	6.82307184199152	6.82651812010501	7.03908580343178	6.74282498651896	7.43637751336142	7.75538883412345	6.78359663878448	7.04260886556594	6.87643537928603	6.65780222275945	7.10665548644738	7.23252162411291	7.3118552009865	7.01104107813498	6.68840260503758	6.82025704998871	6.48624769678528	7.1167556033296	6.69111597995297	6.74865133348759
+"SLC27A6"	4.2703498197004	4.69717456829315	3.53932555628666	3.98187340022162	3.73848868922676	4.01147364648633	3.54438728879593	3.83353097716374	3.88322921268446	3.92712685948736	3.83353097716374	3.78097250054681	3.76026771903703	3.59872932548349	3.75135160412684	3.8222517656629	3.78254452306482	4.44326848027817	3.92718504257496	3.75164448603408	3.83150182338553
+"SLC28A1"	6.56071302415354	6.82390002428263	6.64050557309748	6.64050557309748	6.56471654942331	6.96636693739764	7.09844719020004	6.58334268898314	6.66666226106185	6.69854159811099	6.50486911363902	6.64050557309748	6.94152386116676	6.86926536569357	6.67090023395832	6.05996443989003	6.76209297817994	6.24765180753221	6.60596355866267	6.57152925596325	6.79927768923011
+"SLC28A2"	4.96512527614507	5.14810468515917	4.74766507216944	4.96512527614507	5.11138518045458	5.04144132844896	4.96512527614507	4.8107024160557	5.17715854418488	5.01393731858028	4.89386689917374	4.98193664125992	4.97439714009685	5.08252316343217	4.9539287981936	5.04615615321246	4.76430960520145	4.44007814569342	4.86668976503393	4.79677216316258	4.83968217159734
+"SLC28A3"	4.53354720601869	4.66784483447504	4.68278707204538	4.65915049192384	4.60946164660725	5.05710026512868	4.54782911840556	4.80334613865239	4.85624513465172	4.66784483447504	4.51686270602724	4.8835451504614	4.49561027580636	4.98938958640114	4.60432838805109	4.71218106458337	4.5455871073999	4.60352816646306	4.66049904075787	4.71422514868893	4.66605055845232
+"SLC29A1"	6.52052797516677	6.09938504710844	6.43915561365122	6.03587991457955	6.78711467795748	6.41415234845112	5.77432844771369	6.03375015648918	6.25203348203202	7.09092316794574	6.08915413077224	6.94388520355505	6.21266219368936	5.95392907643668	6.11241445420115	6.68386733591816	6.60274981223561	6.32632885493423	6.30698131327891	7.26846057166084	7.46459350117676
+"SLC29A2"	6.37491405812989	6.00684873325713	6.0952388992245	6.1647765443374	5.86692590499287	6.48127861349957	6.17912313869549	5.89708195618327	5.92261803502282	6.06458824309334	5.84503693088637	6.00684873325713	6.24207438258773	6.05498822469102	6.01310284887263	5.76588751902773	5.84377336915624	5.7339793170134	5.80181840506241	6.13318298611226	6.18241970740759
+"SLC29A3"	7.96738546275839	7.37106215389854	7.12024934930924	7.21229531254048	7.19914192553842	7.20064202986112	7.43741902081782	7.30122548359148	7.33071048331331	7.13015130532575	6.92258155572482	6.91987531057799	6.84586258938902	7.39314452260721	6.83932205228582	7.32522288704091	7.1381239371743	7.28857202186777	7.38995239971146	7.35264588718858	7.10621407398476
+"SLC29A4"	6.21671433268588	6.54589792956125	6.3438387003352	6.98680621096397	6.28730985876487	6.57205566590942	7.08422107765564	6.53851495905203	6.99871663182992	5.82171577648318	6.46556753643599	6.29782115952848	7.25204742771898	7.07359403761869	6.72370948758384	5.98857437771019	6.57471252278612	6.26453485036858	6.52066819169955	6.48583228849031	6.1797270048847
+"SLC2A1"	9.51092335560331	8.43575717479526	7.93907674983476	8.21402934938683	8.37202035631534	9.71881853012109	9.01091098125348	8.09685783763369	8.28183329448656	8.42311572069555	8.18251638065366	8.00039477541878	8.74831852971656	9.59398048145327	8.31744805042979	8.04373911323781	8.91757475368582	8.49496535163312	8.15984524426574	8.67002341975604	8.60719906549948
+"SLC2A1-DT"	6.47483551786542	6.6479225021691	6.6651890723899	6.77977340119738	6.32570251443332	6.76854937536429	7.13149887690562	6.60150978784582	6.67211338397123	6.60596594317791	6.61718234641389	6.61221906724583	6.88678728171805	6.97229512051155	6.75014218841202	6.4074395780694	6.73890103362099	6.41892144345427	6.73110168944572	6.28980190207973	6.71785087619241
+"SLC2A10"	8.07221818426834	7.00015325663573	6.49142386950086	6.01582579371993	6.49195236457667	5.44837714300834	7.41991141303164	6.88253909489823	6.5925395957311	6.50940082941766	7.14107482715145	6.02236984417314	5.50706811509009	6.67810382829957	6.18624151394616	6.3133991329495	5.96441813075683	6.22173349343156	6.28351739129608	7.19109303476168	5.49429065657513
+"SLC2A12"	7.66659429307527	7.15218614938971	7.62034356656699	7.60834108811502	7.43157754483319	7.19729983004668	8.17859897470119	7.90708882649026	7.84052139224977	7.45228183224936	7.25199304757952	7.19725040024553	7.45733994454116	7.61790590327054	7.81269137313475	6.71046772179237	7.40752071054329	7.13900677388717	7.8499076378727	7.98176646247442	6.78455909971804
+"SLC2A13"	8.29530726089568	9.92063254577882	10.1848646393558	10.3107633492943	10.2160603398422	9.73960858603818	8.39670949542553	9.92590510662902	10.8197511626927	10.1304086804296	9.27453932617683	9.9492009391573	10.3285248420284	9.62580638655431	10.5281052136804	8.9139102549905	10.2420777978931	9.7325040421778	10.1784106556097	10.2229558160176	10.1930941340905
+"SLC2A2"	3.6206924444548	3.47857244073596	3.52794444075191	3.54691652319789	3.48913428850149	3.60413103186609	3.46637045440909	3.60082356630496	3.61890730182321	3.33885639590962	3.27420848537286	3.30534189288667	3.59218765651757	3.53553499190135	3.65653059714466	3.71770505851297	3.67836062390511	3.53552338350089	3.30655052586667	3.53936217892126	3.53924547815065
+"SLC2A3"	7.09165252060973	6.46964488619953	6.83296153164583	7.02079268504745	7.56718503704403	7.0424491954848	6.56390235556116	7.10958365941667	6.8881061011023	7.53221871933121	6.15955785698289	7.66268793299927	7.57705753418955	6.16017541389282	7.13091139243567	6.80165093512773	8.38923778086179	6.69596425530862	6.86747816681928	7.72990504500951	8.02986883758793
+"SLC2A4RG"	6.30927791582707	5.54858723018079	5.83062380465125	5.91522331024891	5.48837256631054	5.93016907257375	6.64806030103261	5.90787401405752	6.25348567176327	5.35613241605432	5.8484700025858	5.6378917247946	6.3929989178744	6.1836761147426	6.22357089426775	5.45166520709292	5.86569499475808	5.77832576155435	6.00346354762402	5.7228258852916	5.8668976310647
+"SLC2A5"	7.91747962065277	6.88388170087791	5.05709124597468	6.48481234526068	6.6672497541397	4.50715403832254	6.31601944212345	6.9635776413084	6.7802467136324	6.75214429454072	6.61179557197338	6.37840938950868	6.4191613175982	6.41111845059189	6.3643480768716	6.44552108597459	6.85222403217658	6.42956459826387	7.03083734702943	7.22318507345204	8.08632340789
+"SLC2A8"	7.502161732153	7.60995326893001	7.74759470039753	7.67477856618073	7.59259934819627	7.52165526456214	7.83247765519918	7.38557059621065	7.69268836165707	7.59292999189847	7.79662013855612	7.48597023564357	8.08777647393784	7.5383805244417	7.62907725668104	7.46638888659648	7.61965351117263	7.9200347580273	7.73441889673727	7.68904232721024	7.62907725668104
+"SLC2A9"	7.05431537897466	7.09167271629825	7.15319175363745	7.29279627483653	7.03412127563162	7.36970400752937	7.47289842621474	7.17189326348289	7.16813658937607	7.19594197575357	6.85974228226806	7.29467585889099	7.53074344388195	7.54098792003299	7.32483116781765	6.98753110297497	7.13863541662015	6.8450383068776	7.33432407870204	7.09395542207786	7.18666296294054
+"SLC30A1"	10.2828143092562	9.42914549979058	9.49329613348809	9.11885805269367	9.0832145098401	9.26345188167153	10.3372044875262	9.01590700168767	9.89377615576707	9.1679714804849	9.59283408224938	8.51243069613154	9.59691105153756	9.91917621328666	10.2378006634673	9.35655882658319	9.61487306862166	9.65483875189559	9.8070580444737	9.3962697624804	8.6165815463241
+"SLC30A10"	5.59699545007391	5.72266710670862	4.97475077818591	4.81585690686018	5.10473980021336	4.67537827110074	4.5416917920726	4.9312515844982	4.40234410421255	4.73150203762978	5.20939168694497	4.71671965820074	3.93668319481726	4.53430608291528	4.55051961798345	4.8414891039951	4.72083029964895	4.45797757347881	4.46427568347399	4.68758530078841	4.63056718472642
+"SLC30A2"	6.54809057595236	6.27814828691305	6.27166096172767	6.40903557876046	6.16380965963797	6.79548790351472	7.11414096175263	6.26523888404296	6.40903557876046	6.40903557876046	5.98478355663435	6.39895132503548	6.58183137192833	6.79092265404277	6.48039464954764	6.25975585486541	6.45960347475493	5.99932963660389	6.61072769302485	6.53036191857661	6.44454983432719
+"SLC30A3"	7.81092043853723	9.07659559412413	9.44561890860587	8.63035249031852	9.17051429516895	7.79049151753516	7.79289073732	8.42229598151052	8.42709971592204	8.84176365654213	8.22177177357187	9.15119572040147	8.60901280538507	7.64958245543291	8.25459899007246	8.61869921383716	8.93988225914384	8.63612886908412	8.53347910490848	9.38420281430415	8.89885954216971
+"SLC30A4"	5.13728335513396	5.13100999766282	4.56975435182247	5.25161716019926	4.86787663311833	4.53552366041602	4.74840870634719	5.21286738672115	5.32259111008275	5.193810449793	5.25595312336111	5.19589555137826	4.85128075198423	4.83965255891855	4.97849550900474	5.27601609054711	5.15874068782523	5.48311082321516	5.15219467633516	5.15910199210961	5.27228653418336
+"SLC30A5"	6.81013211528921	6.34533315988815	6.13470833888141	5.8939387259881	6.72547528563151	6.00078792972049	5.98986226133256	6.18660774020169	6.03271188817807	6.50572925983511	6.47957446837489	6.04975632647597	5.95614229983121	5.69966650863249	5.83160698256585	6.60777308838608	6.08800436993638	7.12689747585739	6.10271985819724	6.77886247106253	6.3558323900341
+"SLC30A6"	7.4013929776538	7.0691037754654	6.91833294761077	6.50097729538498	7.18368061143286	6.64971736729937	6.98548639887513	6.69445932486898	6.61934002741815	6.87378189201176	7.28306762459986	6.70052456767945	6.41800777320172	6.56682559776591	7.0020368057545	7.57304618407992	6.24307356913481	7.9124308430121	6.86591611300667	6.96644323599133	6.86514611500985
+"SLC30A7"	7.65329846614197	7.85861121594028	8.04262521472194	7.28826559543517	7.76215814646108	8.07071840234836	7.53219370932046	8.11293689565434	7.5981986410249	7.07996399509059	7.72179202532697	7.63248318155441	7.32201531658249	7.45990953888117	7.69552187512805	7.53105777200954	7.51590464936595	7.80772370892197	7.56878682060987	7.51409248277873	7.39255048344316
+"SLC30A8"	3.73248451478012	4.22168168778665	3.66811438180759	3.86087059904467	3.86475727668132	4.23053263076875	4.29608230403083	3.94757748649274	4.24617351612185	3.89872560637925	3.62589837570552	3.88887935045325	3.92510255885662	4.07738138228802	4.02902103000701	4.21254256570787	3.92216177577978	3.92510255885662	3.78044115537941	3.7591212152274	3.990766108357
+"SLC30A9"	5.61928011468424	4.99717907604456	5.70129580556158	5.17384839948808	5.44957470104982	4.92194685377301	5.12217321612277	5.1865630982332	3.97987656293068	4.71123027303365	4.98078822487091	4.71624133670327	5.49047872156724	5.12906069912838	5.88547999051565	5.76024849292863	5.08452203651842	5.78176146610218	5.76894712039353	5.92207904252302	5.46779426108614
+"SLC31A1"	6.67923105339378	5.45991699324761	5.80518964009022	5.56413029458642	5.80395834486868	5.69990597028124	5.59159053458134	6.04968028037749	5.89900576382053	5.73354990932241	5.92400550294389	5.58915917722398	5.82567075778072	5.65120653701343	5.89456870509894	5.84938754087414	5.7718346304967	5.8860177747644	5.8955134208379	5.92891579447797	5.94960351573517
+"SLC31A2"	8.4896162818381	8.86271502462417	8.03916097399888	8.60429263422173	8.16989142050252	8.51584560595045	7.59233152317433	7.54013957960732	6.8383806229948	7.80563204446966	9.44665289723703	7.49217426519211	7.52449277764292	8.26102269349572	7.80032321328468	10.6315326577683	7.70378562176588	10.0885353856873	8.21810193646344	7.35881952545273	7.96446531239106
+"SLC32A1"	5.36082033345385	6.37679637501141	7.7962440639034	6.68190999382521	7.23079410705036	5.84925805971445	5.96204160272692	6.28716628779607	6.64975851258426	7.40936128757092	6.39487517988831	7.0003100169559	6.85983259442481	6.38175328692918	6.52933394597407	7.14512432002139	6.74071134407408	6.59635801921488	6.07449486115417	8.38044455379128	7.73829446553951
+"SLC33A1"	5.87790492148565	5.64907791999801	5.76782481125538	5.51821613510407	5.90954211347928	5.50826676454857	5.1105758376282	5.43967072458383	5.50076182085259	5.76125936971348	6.07383264920613	5.21487555740441	5.27412406004363	5.30392640204541	5.62100007577962	6.17714656632583	5.49979000412539	6.56284615632398	5.48128006640268	5.63598926932196	5.90031362280259
+"SLC34A1"	4.70052568469915	4.5554475977675	4.92511969484241	5.13580831105863	4.81175093163699	5.19545561143653	5.16462795009905	4.9729481999024	5.0310941805772	4.87863644416784	4.62120601806728	4.59332942151367	4.97671815326513	5.27315127979862	4.8493700665245	4.68499266139068	4.61988730566451	4.57512919121534	5.01697857371101	4.6453004487881	4.86361138153057
+"SLC34A2"	3.48172583339233	3.40011427226689	3.54300354855708	3.64742703826902	3.58989707431839	3.74428279098431	3.61159958852182	3.54300354855708	3.42496526690076	3.3524798454356	3.3309044817261	3.32890259797694	3.57172708009469	3.46622433000283	3.58129698527385	3.57938016508201	3.62573805305459	3.44731552924541	3.63380446419854	3.88509171534632	3.59222776405588
+"SLC34A3"	8.28112015925485	8.57757876937834	8.37593129888859	8.76859851968648	8.46842799654101	8.32556659129336	8.45335909472645	8.38999047822622	8.52540432351093	8.48805596159415	8.38639753124778	8.80676842970898	8.73809947938155	8.53115926514816	8.57748728893168	8.50342027210651	8.79896105609119	8.20323173810051	8.54698708267245	8.47823745702262	8.6056801412166
+"SLC35A3"	6.43703735628669	6.30997109772858	6.01505067009367	5.8668976310647	6.16779675890727	5.49158948331673	5.51403668859576	5.96667743687826	6.10023702090163	6.25888391273777	6.74854614241444	5.9545848804726	5.54023046428109	5.69927949556004	6.09081104807301	6.86985218401244	6.16863424566339	6.38100826547632	5.99904597002742	6.00666385643391	6.27217264260524
+"SLC35A4"	9.12679351476053	8.72020247669496	8.51945082817168	8.52077606602058	8.60668226315696	8.79295462264646	8.91703127027032	8.56110541315253	8.41120835170739	8.45835773344108	8.66591373763521	8.34095904482139	8.50047943848786	8.79782356149858	8.5047959982311	8.72351890993514	8.48210902825841	8.76759687369289	8.27306823705176	8.85697957138322	8.58876615049308
+"SLC35A5"	8.47360995101448	8.63582924071033	8.38071871261578	8.39793757855734	8.6205420314807	8.21088537275654	7.777121024738	8.44042754214806	8.47360995101448	8.6154056503336	9.06396829827429	8.50385004662653	7.96452962945714	7.99482798194091	8.41752128091677	9.58784578405776	8.36428393448823	9.49123301106392	8.55465132808812	8.36363353033797	8.36377608741546
+"SLC35B1"	8.55374027340872	8.56625857214453	8.61139872233637	8.44718619202959	8.73182453106237	8.42057325842645	7.86333922150254	8.44234125352357	8.51322493427336	8.82038058935643	8.56625857214453	8.73739797594605	8.07074001374649	7.87697544024365	8.39017628960271	8.93856455052333	8.43990825524576	8.74801123177856	8.39622320128672	8.93099245217444	8.8119508987111
+"SLC35B3"	7.82270850558664	7.79323313933555	7.94689716622744	7.65681009673741	7.99039117316892	7.7628576599335	6.90866609853258	7.50651223507218	7.25715905816655	7.54661318997004	8.26307943646936	7.39359993821113	7.49706844693779	7.59031824702305	7.67311301366829	8.55406786804238	7.55854056194616	8.87571855012524	7.69706896844248	7.61025932036295	7.71282191174383
+"SLC35B4"	8.66402424315693	8.74248696992547	9.23183224404797	8.47730118057205	9.28850859121352	8.45240553260527	7.48104430312732	8.27804447039988	8.6167958332832	9.12315185713905	8.70029115889391	8.72035912300506	8.26642734008443	8.2331924526441	8.35201598799228	8.87136217500778	8.71361210495117	8.91859756111859	8.47850113015432	9.15229779095872	8.94846696866087
+"SLC35C1"	6.31883548627145	6.34396140126885	6.56803931576552	6.57483400911314	6.15063477173144	6.69990158104226	6.83212860725917	6.31493165953472	6.56417806289334	6.59163405726275	6.36793100746589	6.49301854776477	6.51632985681172	6.58364181090133	6.4836568944237	6.62719856232764	6.38025132251694	6.6167733801448	6.74816157344163	6.56777760043105	6.56916245401736
+"SLC35C2"	8.07163163086543	8.05665279037197	8.25938606949778	7.69090826297016	7.67393227676318	8.13657715717118	7.95699931849038	8.10715624669753	7.78410937291418	7.94806409651128	8.16159190680198	7.94590321492251	7.53969581130942	7.95699931849038	7.43418409154921	7.84228298899801	7.79026216874567	8.07031372047573	8.05435484621181	7.99362070600427	7.79144600474228
+"SLC35D1"	8.04039575691588	8.17663687668315	8.28357081681676	8.04028035933938	7.74503510079938	8.11560511686885	7.83239385758553	7.86075113419545	7.58264655292295	7.07188746680011	8.15094772627369	7.56024110390926	7.55839937008477	7.62267300047365	7.76801484133239	8.17694589571595	7.35270946886649	8.23232475955091	7.86796524080173	7.12700272000178	7.30854110394229
+"SLC35D2"	7.32591106159634	6.9802249428171	6.6378399236874	6.39487517988831	6.10172455145438	6.8506489527074	6.16834369867715	6.54327118031021	5.61965463936202	6.26511153369808	7.51948912438667	6.08386408832901	5.73798109651547	6.61995901749421	6.10770753087399	8.16433467164465	6.26670458581211	7.48506540671102	6.61124684787622	6.23860145894307	6.39487517988831
+"SLC35D3"	3.34215571292522	3.41283403504101	3.30488501655795	3.42514799101761	3.44444506697725	3.61300065399022	3.19862297474683	3.34215571292522	3.49915073397087	3.34215571292522	3.08542318892207	3.35556121460995	3.39150117992513	3.45958972382665	3.37997732395604	3.29876296176528	3.1489330081839	3.22525919747157	3.43496198913129	3.39350626165904	3.30488501655795
+"SLC35E1"	9.7306246468568	9.80477454594567	9.41631023294717	10.1364145258418	9.0014924338636	9.40890585800614	9.91283602846953	9.92214182172339	10.0492442075663	9.72162492753674	10.1806032362056	9.66102146944915	10.2924656236361	9.98686793453187	10.2792583865319	9.35326535865786	9.7708192585112	9.1902132857959	9.95216990413553	9.31688794986034	9.69548752441496
+"SLC35E2B"	10.7784184199961	11.017304361567	11.2735950431119	11.0014484550728	10.8069742464429	10.8041515161074	10.3436162111975	10.5611510663797	11.1540111893367	11.0433031789655	10.5241593956962	10.3793948420279	10.9744426695087	10.7736269694418	10.8972623403362	10.9659993804819	11.0801770858184	11.110686399897	10.8784019400785	10.715958198781	11.1247357407786
+"SLC35E3"	7.65324651749473	8.17411274819251	7.72502030880317	7.58913180345536	7.6823917298236	7.01713636238563	6.73824232676303	7.45064895877442	7.64933908874508	7.90721357558249	8.15443271109964	7.77314990697016	7.19207926667608	7.09668027194776	7.57079750048363	8.44023794886705	7.81639048740503	7.94763563397618	7.65927506782894	7.69441859998242	7.79003081440364
+"SLC35E4"	6.17388351644803	6.22794564682452	6.46362215525484	6.06114913335873	6.27017252521943	6.63773713848892	6.26196853916409	5.78454899596856	6.17388351644803	6.32872289053649	6.12414807836855	6.0580826474935	6.03964339245739	5.90272934269609	6.06379139848092	6.25300537428479	6.07977018116277	6.52511621439619	5.98277293425023	6.01821759318047	6.32838131336733
+"SLC35F1"	9.28904491800118	10.1336276114648	10.1549355079632	9.9296095095205	10.035888639741	10.3528348573877	9.885040528753	10.0925120651456	9.93094601580729	9.89334212402374	9.46281498366325	10.0842183199609	9.9978060466784	10.1338060811507	10.3641115389165	9.34556139646019	9.96534291988523	9.84983883481051	9.81595474392843	9.74729700389697	9.95827780639989
+"SLC35F2"	6.45508333735072	6.3189809991079	6.47833451341576	6.71741010154473	6.48233098159822	6.7815841212943	6.50506681090156	6.26872422727273	6.46345868869497	6.5924551203123	6.64340741173558	6.46345868869497	6.42110842172587	6.46345868869497	6.3643480768716	6.09038202557997	6.42110842172587	6.54977516914911	6.26754323025858	6.43075571449488	6.51607363139966
+"SLC35F3"	6.7490396713844	7.89833685030157	8.24980267032374	7.64484982252865	8.45319780542603	8.71593093979953	6.97292109448508	8.06049322459156	8.65222672919962	8.35986513779318	7.07410758316186	8.56811433064382	8.32816807219926	7.27180872387152	8.68027621374042	7.23214832310127	8.51341981136848	8.04895303674641	7.98031055360345	8.36788599435938	8.4936708631067
+"SLC35F4"	4.53981500438169	4.48300473049845	4.6440154096826	4.68873784117906	4.73051274841754	4.47715640827796	4.86807065317922	4.65304365712972	4.69227688574151	4.61552486600255	4.48914355282606	4.42443491844484	4.75168415157657	4.87794963599833	4.95919916346564	4.66582972099735	4.69962555045202	4.5247568222648	4.70607933560473	4.95385583802646	4.82960596932245
+"SLC35F5"	7.16729735132499	6.72504768793147	6.41197799417623	6.64124584896366	6.3998638333473	6.0810019966487	6.36297332864948	6.93699033670033	6.41345304544374	5.76832958251919	7.1690795595826	5.82648687307589	6.3934630495779	6.56595444515387	6.50673102888281	7.18061930934371	6.28671331313327	7.61965351117263	6.56197236447677	6.20617949794164	6.28552169706969
+"SLC35F6"	7.02263175172875	7.14811020497489	7.03220811868377	7.39063408957535	7.17854792958793	7.31678916760152	7.65825516579003	7.09471582347596	7.26850514791423	7.17902538572808	7.03543188737107	7.20141119172634	7.43095545804151	7.49591205025149	7.30366172584317	7.2878051009644	7.12787321988581	6.77438532152841	7.14277034616669	7.13961393336285	7.32469850190909
+"SLC35G1"	4.52756856663149	5.00085833622707	5.5228076958987	4.69702648280679	5.58937109091883	5.132482338676	4.68046632789336	4.47674041987095	4.98212157358646	5.28307164483199	5.10888181781511	5.132482338676	5.17659184489447	4.77550009292836	4.83851391392687	4.84656165069241	5.00085833622707	5.14333624787908	4.53147047056557	6.22619955772884	4.99695643229299
+"SLC35G2"	9.74079821383644	8.74164810557173	8.51545325997965	8.75967080689588	8.72961726640501	6.93553330198588	8.75193044073518	8.7793427806666	8.63369524959773	8.77858014627254	8.52430949750991	8.53488759208591	7.74212742066639	7.22325892662515	8.36292334097527	8.57918962302533	8.51218859891665	8.44125979665886	8.6330174239423	8.81288452490197	8.66786984762543
+"SLC35G3"	3.77149484391992	3.85597891252885	4.0600833289802	3.91268283490357	3.93604872810668	3.97004271582898	3.97056936604407	3.78282250053164	3.89709223011175	3.84232318792524	3.86239053499339	4.13298170354451	3.84841104526333	3.84746626312461	4.03976254007378	3.74646587304278	3.83954171710693	3.84054160309622	3.8693240071	3.64039781514693	3.99493462974552
+"SLC36A1"	8.07575879942749	8.02609359079263	8.40068941546921	8.38635753720069	8.35057849952993	8.71410294953502	7.81679941621765	7.9046526026772	8.54444588706559	8.25943580666252	8.04858507291003	8.08279336814234	8.73553643237992	8.20876041086548	8.66508101431592	7.82498349056018	8.14897276818728	8.32627091828128	8.25943580666252	8.53066243015485	8.30537082762688
+"SLC36A4"	7.16185335343875	7.21203550888035	7.42731167489803	7.44556943121523	7.84962883898003	7.89860237907183	7.43403853843025	7.40133808450103	8.20366925240836	7.95401371767029	7.21229531254048	7.46850982559076	7.4361495762426	7.64785284403416	7.76443271556218	7.21136846668994	7.51912267076672	7.59464975638205	7.1820552733522	7.41974447344499	7.26059003712716
+"SLC37A1"	6.74726394455499	6.65194170189479	6.99914793305728	6.62557545765778	6.68324760077683	6.39854658786684	6.65194170189479	6.91493784202905	6.79239077711083	6.61191572843937	6.51243767457184	6.7156269190731	6.65933410654539	6.6641876622515	6.55028665176114	6.06271826450209	6.64825175819595	6.37139220071678	6.58919042366961	6.54460493618124	6.69234909614513
+"SLC37A2"	6.3722461423601	6.69883719216567	6.60497190368586	6.55583760764049	6.22359991326757	6.66041869547817	7.1528526272789	6.32254415506366	6.6060535735005	6.51725223524439	6.40611958671576	6.4576041961219	6.54367896325785	6.68283764139119	6.62420618852064	6.32590842337914	6.55215523342025	6.16915461584752	6.70028349886771	6.43468105721301	6.58839555349691
+"SLC37A3"	7.55061064149506	7.69087215453969	7.93870258135258	7.61457691759608	7.91547481712608	7.98976149788142	7.99222059180507	7.42155295146416	7.8347354241393	7.83039557026587	7.68702444155188	7.62668241544129	7.73433806588763	7.68188901967355	7.71209231596905	7.39715475779471	7.69917217541546	7.32488335853608	7.38480827885189	7.87376618440408	7.74393132539328
+"SLC38A1"	9.14424119961645	9.9002491896205	10.0974436764241	9.84115966415282	10.1169088253998	9.68356390936486	8.49301183628871	9.18293521188389	9.89213401680365	9.97296435698835	10.3595994191887	9.93222289679846	10.0715663306998	9.16023379373179	10.0893634207155	9.98734360951346	9.90547944690421	9.70718733105266	9.7483068573727	10.1412026390507	9.68584409873743
+"SLC38A10"	9.10760621581863	8.28365402650728	8.42622331487136	8.13833120391866	8.15267801808648	8.52917552338292	8.31830144073444	7.99586193342478	7.99835163404695	7.78889200962906	8.56727023327424	7.97442246785574	8.17546514675309	8.56979144657264	7.99860762011347	8.7211830583609	7.91137013567669	8.71039496488364	8.32431524856486	8.60341002069037	8.07681075597577
+"SLC38A11"	6.56539850172318	6.8745432038699	6.72871756911371	6.7183056056009	7.09906513583262	7.30400792832883	6.39405220663678	6.87352717613099	7.61054841660505	6.66345351347543	6.2179984827416	6.88552335713531	7.35299069610454	7.18858251357099	6.96640525703262	5.82639643488409	6.96493555730749	6.32544562455353	6.41632324201276	6.39725011314586	5.98841277878884
+"SLC38A2"	10.9225142126783	10.3928995604193	10.0893639934033	11.0395352547986	10.7470319643916	11.9247482974048	11.0139882614783	10.5535244492223	11.1901944126253	11.2080259452479	10.8056173435849	10.4941130733785	11.8538081281564	11.3510358165956	11.6142077497568	11.0220274196919	10.9516360972964	11.9130341480019	10.9390225673087	10.7780087950621	10.9312656108806
+"SLC38A2-AS1"	6.57545892902167	6.33910730638984	6.20633813028357	6.70606315226939	6.61969840473883	6.37160448183968	6.91747141711503	6.53851495905203	6.66441265733403	6.37960301887953	6.24468620794341	6.38248568271761	6.90575901983888	6.61034155942786	6.55376607566499	6.7445027032628	6.53480424198746	6.28255735262404	6.45948051292236	6.62611200448713	6.75931411874663
+"SLC38A3"	7.34692168638493	7.17896819085931	7.2901379990905	7.23361691910659	7.16712106679049	7.62422309013577	7.82997887768634	7.21220548979481	7.04408749065231	7.17842436786216	7.58138626311435	7.18836686563302	7.37051317454655	7.60840901381875	7.07382453951793	7.28677927554608	7.13909305465308	7.20676570897519	7.07116278824379	7.5087529112599	6.98508311605125
+"SLC38A4"	3.04385858196007	3.19615001240806	3.05408549366212	3.23775792036089	3.23694926583029	3.40749561181987	3.63785090001116	3.19828885528135	3.35728152980331	3.27898613548665	3.08860684277241	3.23380379045169	3.13645256648828	3.51589741633846	3.17125214295436	3.32415359308021	3.24312266472343	3.19718742717881	3.23040317362686	3.19770823881161	3.26748814810415
+"SLC38A4-AS1"	5.88264400057944	5.85339619750381	5.69845873449935	5.89629893973275	5.86153698036934	5.78076010105568	5.73995522509484	5.71622658561274	5.81773664693791	5.75971125702217	5.76005966796564	5.50519702269603	5.81527900895984	5.99812362176876	5.85988304279571	5.61781992874554	5.75532651848139	5.57881839548233	5.88203413862484	5.78098442388549	5.78559344071442
+"SLC38A5"	8.05024174664799	7.64332396944889	7.26331476348149	6.73583945321961	7.4286412036273	8.14226178664349	6.88452217188735	6.57143766655394	7.1134484767246	7.60860310402643	8.11358708247707	6.19104384799692	7.54677116146808	7.66911478904676	6.69648534877177	7.11533774572196	7.30475860500582	7.77333991857613	6.77344538849368	7.466702792945	7.08374753889047
+"SLC38A6"	6.08326111381511	6.59024599355302	6.52498651056964	6.18902521443021	6.31586821856215	5.50187995232661	4.89090659650642	5.71065909367459	5.73013135918325	6.15680282634199	6.29167639557831	6.12482708527177	6.22528175453793	6.06715505869162	6.5290837652802	6.0268456023735	6.22436321691284	6.00939052954559	6.4011732930818	6.33486472787957	6.20526450575514
+"SLC38A7"	6.31021866266527	7.02228827582264	7.26553520580658	6.78010171004216	6.93249793007217	6.99796419905416	6.83417210797332	6.37525749999915	6.54216242357823	6.9533697401738	6.82636509028073	6.31304587725365	6.57976683038841	6.93350465973697	6.71270743535401	6.85934279122524	6.43684222180856	6.86054823658398	6.50286479197307	6.94923479907659	6.7381802184597
+"SLC38A9"	6.41637364945437	6.27580215003386	6.52873807927092	6.01499610177409	6.33963658500838	6.6375931652624	5.88960905771437	6.13350102881623	5.84064593432723	5.68252365059641	6.30181896861163	6.18034143570913	5.79976601284619	6.04930752280402	6.41716583908786	6.8066914113937	6.00296228265835	6.6216143321396	6.08022236987264	5.63006588910225	5.84911464160928
+"SLC39A10"	9.22148682354643	10.1492846972676	10.5702962579176	9.99693911100761	10.8538475632449	9.67102627194857	8.7182994357362	9.86553520978813	10.57289694235	10.4012043215688	9.56631787207949	10.5667282614265	10.0237010891473	9.03402695424588	9.82185087365622	9.69240923264134	10.354674262053	10.3365919951424	10.3578129179143	10.8338223859674	10.7643632984338
+"SLC39A11"	8.4535024143658	7.90080984405216	7.94578697182183	8.17140252245504	7.636703396723	8.1894334700949	8.23142163849664	8.10381943275898	8.15645724790407	7.97232667875114	7.75922771940585	7.8495009105978	7.96467947673264	8.23979818104239	8.08750178122862	8.36227861664714	7.7702069887083	8.61192559767833	7.93861327143588	7.92884287464923	7.36663455941081
+"SLC39A12"	10.2389019674701	9.34001317520015	8.75979410532092	9.83356071421789	8.97306209856885	7.06512789333312	9.76886394919155	10.460022538168	9.87573682934531	9.53972284940328	9.78921298423381	9.22045434849549	9.53197485394064	8.91692821546639	9.96245128196169	8.68969984896752	9.35973848247346	9.19031782800013	9.39595543375868	8.83470836035557	8.75329145035391
+"SLC39A13"	8.78661020855984	8.59047525567869	8.3409627034387	8.54590742554483	8.56317277301191	8.54029014882972	8.54590742554483	8.14128691248968	8.4513041251393	8.87361560995839	8.62851712618497	8.50819629756428	8.29375815156148	8.32923647748747	8.06879442121327	8.71437414735752	8.52188865024035	8.52786666457543	8.40779954698098	8.72836473548006	8.83922305457815
+"SLC39A14"	5.4153785487412	5.25243398296278	4.99957293743281	5.41838809170191	5.40603062428697	4.57023710151614	5.23051584917081	7.64133213686633	5.39745642204846	5.82911990982271	5.45124121372987	6.43113167043599	5.40468134457449	4.80528673772824	5.28437882898049	5.54950183925486	5.88711714305702	5.1805457763234	5.607504808774	5.94646906046258	6.29071744377969
+"SLC39A2"	5.90404087134131	6.10772409654414	5.87974272841236	6.15231217579308	6.09327203542289	6.14024162317582	5.9721574541798	6.06357355449516	6.17498405590676	6.14125022984801	5.98539810051607	6.08765862935209	6.20309468164603	5.72228427587593	6.1279521771945	6.11222052179663	6.30005704118222	5.62335960681427	6.14812510624587	5.92406357198849	6.3419452023321
+"SLC39A3"	8.12569670622683	8.13549449486546	8.30771657668618	7.71130756670631	8.14687252143649	8.17293100306317	7.2964261357508	7.82331806367192	7.51350596160308	8.20149404930392	8.05789989502295	8.00679825500279	7.50184398193514	7.58951101219343	7.66315993357019	8.0092818306052	7.97294654853457	8.11351495257646	7.71873622752444	8.43546752643586	8.05763811267867
+"SLC39A5"	7.23951669373345	7.53457538357141	7.29960840638119	7.85237934089072	7.40963059677646	7.03971233286051	7.42934042364731	7.39708006317975	7.55901408593781	7.55017472559957	7.52488897823205	7.72880137045557	7.5978568463744	7.40987849834925	7.60122687336574	7.72458171037234	7.72603788516192	7.2346029099407	7.54914416314706	7.50888258569999	7.70888339236596
+"SLC39A6"	8.21506830251909	8.43792025354383	7.64658278060124	7.93241807119312	8.38256043839482	7.60371661645179	7.81329854544298	8.17551764224581	7.63732244531194	8.41004282469052	8.62945473424776	8.1115402202109	7.75425034269386	7.36566111131753	7.52917550669559	9.18421154197693	7.8861098375884	9.06917633576589	8.19660496872071	8.25309814750042	7.95161669054495
+"SLC39A8"	7.87895487036059	7.22891931782731	5.55149586300172	6.58737154288519	6.9995433917398	7.11405385793062	7.53565024501104	7.33187478118537	6.60536876802309	6.93418422230682	7.38939899806536	6.68707438754986	7.17948485609465	7.16091230731672	6.50970835500399	6.43022387169957	6.8678860907265	7.05233964242727	6.59787768265175	6.81900298228442	6.03314313003854
+"SLC39A9"	6.63278735702484	6.57796417166914	6.15546316063698	6.14525642098197	6.64790723920548	5.91661023979809	6.42461400772663	6.24476637494011	6.36684748168555	6.66240507363884	6.97737771733471	6.58528141975399	6.25599766776665	6.04215373931725	6.29361932295993	7.06770658298781	6.58512207866458	6.76782996488101	6.60772733918399	6.77634818287029	6.57796417166914
+"SLC3A1"	2.99144862314246	3.22931397239729	3.22059642398444	3.13528116149861	3.16533445124772	3.45424323593464	3.28182870194869	3.34810019595797	3.39830906551976	3.31394912552841	3.2371083959586	3.22354340451809	3.24708288564733	3.05957023985846	3.22931397239729	3.22931397239729	3.36177386466716	3.05807071385459	3.27798900891796	3.21755763778296	3.23651589202296
+"SLC3A2"	9.4783155253721	8.91552060911276	8.8324468745713	8.92055711059651	9.00806126242681	9.40661766310444	9.58508816026182	9.26452278033827	9.125520004176	9.02687926496827	9.25540859950033	9.09856168643203	9.29485357028747	9.08859705796463	8.98275818393503	8.58016326478579	8.79611475332474	8.81071123621856	8.64596933042016	9.16320644528625	8.6941395412968
+"SLC40A1"	8.3044670081593	7.32036908110474	6.9288192318665	7.07984610641772	6.55893472790377	6.44620043156737	7.67787596534677	7.1244578366388	6.8828953786243	6.70732530258794	7.48348123760534	5.64701170660134	7.00310606612151	7.61874972173629	6.84735774073151	7.42791278492474	6.69302950903102	6.95299266835482	7.24674959317623	7.15100795149068	6.14214476769302
+"SLC41A1"	9.54256955037089	8.9846393180115	9.04441083158611	9.11901166141873	8.89289729996632	8.70228293061916	9.32694721840123	9.22424128494504	9.16360516656793	8.76745097028412	9.14248740255817	8.56390133791226	9.00890657339183	9.32749391207536	9.09464279863272	8.63265947712027	8.79377671734145	9.04947628409725	8.87830005926326	8.92246714596376	8.4814770940321
+"SLC41A2"	5.85983742825427	5.95070511535684	5.97064351791036	5.74777370340146	6.55773620266829	5.57628375876898	5.65651248565085	5.62873473867109	6.16623430517607	6.13808222553516	5.6573945335011	5.85510388989634	5.85510388989634	5.34165853196001	5.89906879694602	5.31768427617887	5.74570599210632	6.10412826156813	5.97834390890463	6.05516617800633	5.96450560106246
+"SLC41A3"	9.21411343685439	9.12561410781491	9.26048416142226	8.73580946445893	9.39833309042569	8.98474448811775	8.97044285168717	9.21934933271798	9.34209443120404	9.26106554691537	8.89454762158839	9.10916258180269	8.84586975602964	8.58139697691729	8.92486957851483	8.8554808302704	9.14889150286688	9.01817837340566	9.00953462073002	9.43968859188966	9.2938342353782
+"SLC43A1"	6.87590560116561	6.87236128823713	6.98178723353382	6.95590669073429	6.7523792073625	6.96365199637115	6.89337123567454	6.82390002428263	7.04789367770595	6.83012939671517	6.80030459683019	6.93563063970653	7.12001738065843	7.12446331715882	7.15319175363745	6.72916127857768	6.9149360334451	6.61503173814952	6.96486153163147	6.90170866541537	6.95573373948716
+"SLC43A2"	7.18975750387852	6.6325794858414	7.08403174534815	6.78331224141729	7.03031601300538	6.81403460734154	7.00746826382667	6.82720247578292	7.17570453624747	6.95644606047695	6.76040502861517	6.94502909042181	7.16186485184672	6.75687616389373	6.8753008171616	6.37149694669084	7.10022270716656	6.67984516086231	6.68458396877338	7.33652785253404	7.15512105260625
+"SLC43A3"	7.4312071649616	6.62875171226049	6.44167555722218	6.41350254712596	6.44224321832673	7.29050124811755	6.3715199439294	6.70654895981309	6.35616579604936	6.53925380671176	6.65953150653438	6.09963153256943	6.76856483019025	7.01128294125662	7.125911423511	6.67484664785046	6.29208304614636	6.37964086905582	6.3598912023192	6.75878060415813	6.60812469929148
+"SLC44A1"	10.0780420970974	9.94328889878883	9.49643992612943	9.72079875646923	9.24842369783517	10.5028543862242	9.47328767898874	9.27303275744041	8.82628976250462	8.41042544032185	10.8428147918684	8.88382566244043	9.17750386187713	9.68948034757567	9.60530706599987	11.2401513680225	9.29674919015886	11.1953380969488	9.52188581187993	8.43489821724548	8.93919648188388
+"SLC44A2"	9.67079683432996	8.62059221867149	8.69865059094637	8.4303303779171	8.44387319342832	8.35808951613856	9.02551047549517	8.70172110151503	8.32548542017515	8.05350662784549	9.20414560133667	8.15875338014835	8.08433059594206	8.78010110550074	8.04828822222551	8.66905075932889	8.18078968301933	8.55437687308247	8.47208705316713	8.03393036116603	7.90269718502445
+"SLC44A3"	7.57565223668824	6.0347672173292	5.86102758974574	5.7006737366274	5.68519644295041	4.5214631273795	6.06348740113806	7.56001779085968	5.96780650830183	5.5191021574784	6.16695052502874	5.91458194522076	4.86711918293127	5.12854393235834	4.85558859737464	5.81816561410319	5.77781150423264	5.2959536581184	6.11337335637395	6.3050064222411	5.30567893455986
+"SLC44A3-AS1"	6.26152041527348	6.04859459918269	6.22796181178423	6.25449482061797	6.07066732572025	6.48594898049516	6.88468803020693	6.48889631120054	6.15635907118129	6.22150145809701	5.99176644038531	6.36681441308914	6.498022177515	6.54146808189856	6.391675005967	6.06044216751874	6.14340889402089	6.09597500435921	5.94570517050411	6.35183547275628	6.24780728565572
+"SLC44A5"	4.60130505707973	5.6606501318361	6.30874694258908	5.04926655729189	5.74071583071352	4.79321862283284	4.41248628216647	5.20923834154677	4.87319061812377	4.95771342590708	4.80187790111965	5.37335105367478	5.06400503947063	4.79776545459828	5.00605077611381	4.17279538941688	4.95595175694853	5.15706738126241	4.81136810043985	5.08984194638606	4.55665392382004
+"SLC45A1"	7.28012915994895	7.38829916128721	7.63956297428777	7.06717999913554	7.77262985748186	7.5714705347103	7.09608935253017	7.02143464044303	7.42754431352651	7.68666575733074	7.13645604062625	7.3021359872081	7.36121495894407	7.10232850468853	7.13815155875253	7.18329426469118	7.36037428104547	7.41761817989667	7.09172319498933	7.84731942404538	7.49417717574925
+"SLC45A2"	4.16051824205368	4.32366116603791	4.27322572702216	4.3703964778965	4.40371232577694	4.61647658566516	4.55771363238741	4.33554919038559	4.44870831189321	4.24724133942226	4.17095304243224	4.37273267207623	4.32231024972826	4.51650556791345	4.39161480110456	4.253592738339	4.64423178974708	4.34921545494278	4.49402903897484	4.41644281758322	4.21300774847733
+"SLC45A3"	8.29588405305988	8.49403414124626	8.0746000028557	8.04692834200551	7.98817398638364	9.22559664872716	7.68068040938071	7.70978951014553	6.80926409945573	7.64898325504711	9.47212776003696	7.47005562418723	7.78088181553427	8.18286469223476	7.75504266935739	10.487543161878	7.8742139434052	9.86012745288593	8.01186790349742	7.29272054658736	7.93348226260023
+"SLC45A4"	8.48206296678749	8.70211139769016	9.0281162422728	8.87668896533371	8.81505273469177	8.84376444453342	9.02426671742746	8.88797180756008	9.37506260943438	8.77523273950827	7.88310409454439	8.60220148020551	9.17795253206129	8.9671701594645	9.27621316617691	7.9194868903813	9.17640908155158	8.49010889678849	8.79182918950324	9.0960377198252	8.79311042594574
+"SLC46A1"	5.69778581509617	5.59087534421609	5.62172225576424	5.65053857510001	5.42947097710973	5.31079913276311	5.26255258337877	5.20867707892057	4.97996265113183	5.52269681306219	5.64929560808515	5.42501789699178	5.17951245615175	5.68640833118032	5.56035088690433	5.34512246728192	5.36450806053685	5.52739581475429	5.71458421723789	6.20215604646899	5.70199406205456
+"SLC46A2"	4.56418715101128	4.77261846856455	5.16304009926144	4.7772248553613	4.94507766752272	4.84320488272402	5.16983417430222	4.7939943459758	4.91912212229306	5.04901884455856	4.71108245979952	4.9157929704168	4.83617299043229	4.7939943459758	4.67308209461443	4.77872822336989	4.95824404037679	4.98723269889323	4.81799006122958	4.6773302570591	4.69850110595133
+"SLC46A3"	8.12599570334616	8.19156665010797	8.30642410707358	8.01857737518139	8.32716360936673	8.07561827706418	7.96634756229667	8.20944163589265	8.34368877961816	8.15681913922992	8.08923207028552	7.91533366498662	8.2561927678313	8.1880280209432	8.43864907065908	7.98232971775252	8.36113511264907	8.26411091244035	8.21296031788891	8.28544086802093	8.19156665010797
+"SLC47A1"	5.78500484545086	6.18170700732042	6.00613152521308	5.63823503543323	6.09628880273669	6.81020090998974	6.38355097909275	6.15226851858079	6.36684748168555	6.9610459505688	6.10214341082959	6.26424350239689	6.5322327258104	6.67408420560861	6.60258449366773	6.27056700302439	6.41701840430439	6.32632885493423	6.7436318433217	9.40878760025403	6.71031686731187
+"SLC47A2"	5.64174109793583	4.91378578847037	5.02777827154677	5.25933259883504	4.98064291817644	5.13401073585926	5.61412061425548	5.06251742020484	4.9958290234049	5.01928186613398	6.09049568388412	5.13296584739816	5.20664909983742	5.29698995123651	5.35195069115504	4.87990305966382	4.94438477136317	4.6380655573012	4.99532194402693	4.9141466468245	4.86293671803822
+"SLC48A1"	9.68311261561592	9.63716410440302	9.29282867773192	9.15664032718958	9.12422977147957	9.46670924440762	9.04031569204338	9.10469989148045	8.75113373805672	8.88115539645687	9.99624745340907	9.17017311403567	8.66601708566147	9.03048969413737	8.70721890830876	10.5781690816267	9.0507085991746	9.99887899313505	9.34331949478639	9.17176370639664	8.97238223978877
+"SLC49A3"	5.44236444612675	5.27075211212985	5.47174508369364	5.2403249063059	5.23006955694622	6.14881424572147	5.63030202168826	5.08434163260989	5.03769924810298	5.38006263241827	5.11835988183964	5.17323528594464	5.15566843528726	5.43995785348533	4.98429757047683	5.01727353892937	5.00977295872594	5.10598274994475	5.08519464350282	5.50423467173379	5.23768347363586
+"SLC49A4"	8.65644971103714	8.31571661146093	7.69239143286189	7.48001894895356	7.94366698458055	7.21120833148756	7.85613203404836	8.15207369721853	7.42121598121579	7.5449046216938	8.24374581732946	7.52050122370417	6.99210011165493	7.2752907525123	7.52767088160954	8.54027719901721	7.50754291274563	8.13554283465893	7.69551945116139	8.01522402118259	7.51773247810047
+"SLC4A1"	4.99794638014229	5.0893809759569	5.00709925731813	5.05901048225419	5.0893809759569	5.05231130842849	5.35751713689057	4.86511098933464	5.11464703581659	5.0893809759569	4.97737276162558	5.07521944269686	5.13770173315081	5.28373527737978	4.84783602113712	5.1914948328836	5.0893809759569	5.02736809771448	5.41493378392156	4.92321363161021	5.20432412717267
+"SLC4A11"	5.55984987349465	5.5595934582993	5.30827858281679	5.60151440278735	5.49172073498472	6.55822888249368	6.21561292293157	5.34998078844896	5.74507486405764	5.67956379673257	5.73650785173824	5.20976192924415	6.32804008770739	6.34511864309052	6.02803544939357	5.37628602306548	5.54641488874767	5.53680327325508	5.54151216891896	5.45902162567195	5.73843186413752
+"SLC4A1AP"	5.9711573458199	6.21801880469891	6.32659036929174	6.09568959682654	6.53413464152169	5.72131520217803	6.01244610860158	6.04552620354019	6.31729741427775	5.93872626818186	6.43794211214325	6.48122867575891	5.97976373938876	6.08847783930163	6.21170056624769	6.30997109772858	6.33096838149426	6.00742528821231	6.07854110773496	6.0380679086937	6.18241970740759
+"SLC4A2"	7.83092100711508	7.24518964420233	7.1050957301253	7.45188302407914	7.05465813114574	7.89860237907183	7.85008765555006	7.06128225979592	7.23858600535452	7.28980466955914	7.65416168462499	7.21530783485285	7.26624099801949	7.60576537841349	7.27207069954824	7.89543201754539	7.28617642703712	7.79279702769825	7.33224697835902	7.33321313457573	7.18245017577393
+"SLC4A3"	8.07427081711125	8.06270026491452	8.88826106893229	8.14023090120636	8.46316269132686	7.97731493937384	7.91096284387105	8.1397745917938	8.38484806505446	8.35736714120615	7.87293014593398	8.25248237755994	8.24344805560809	8.02794957782349	8.16182254194602	7.55858481562182	8.23906696917224	7.98951030518159	7.97438237263282	8.70366226551804	8.42304940723125
+"SLC4A4"	6.92347093105779	7.91184168704154	4.93363583175713	6.54073036784031	6.94632192702464	4.20644206635755	6.73317899584138	8.29429267704813	6.82506291361192	7.01398080035722	7.07622873754488	6.72540907508622	5.32805279865071	5.63293060141583	5.54782442776312	5.75012310199451	6.90630079471926	6.75971200467512	6.35800338506198	6.83524354547434	5.88109137379997
+"SLC4A7"	8.49321279554011	8.74769251364679	9.032598496858	8.80451716136073	9.17298059448754	9.37107703203126	8.56889605953224	9.07943680866001	9.43110667019082	8.93201039131194	8.57089803901565	9.00476514938204	8.95078268481938	8.97330144591729	9.20475392879257	7.81920746952308	8.90934001530197	8.42618596266736	9.01581161716372	8.67048503123423	8.5723766170323
+"SLC4A8"	5.90652752343311	7.57248692092909	6.50454478026546	7.07868171126662	6.91552570639217	5.72628291842213	5.33661034124831	6.6665736177093	7.72726691394501	8.16222708846651	7.08520025136455	7.92505179029781	7.24331753794365	6.25534457879463	7.01653724103845	7.4042066985337	8.06352031795894	6.50947455401411	7.05023695442939	8.10431879689363	8.39581532205133
+"SLC4A9"	3.57930658172257	3.91796864692283	3.64251607506387	3.58346012377435	3.55089521328645	4.33918849258786	3.60135208348809	3.51943634186783	3.84232318792524	3.73861090714149	4.15210404146446	3.87880450152667	3.84232318792524	4.08009602676561	3.84232318792524	4.21882650858901	3.8976495676107	4.26415307456688	3.94903002992119	3.60135208348809	3.94847753638272
+"SLC50A1"	7.3887198484674	7.28090979475474	7.17448824357223	7.26085590360647	7.21553459191859	7.61462039557523	7.33342253565552	7.60519135967485	7.25215256527117	7.27470112824232	7.14776610548877	7.2674581908365	7.64505968503467	7.67647719670292	7.40377429597986	7.0839875246391	7.28101598688439	7.23090567755059	7.51971500997979	7.45930879768096	7.34856039707217
+"SLC51A"	4.46437876655644	4.19818030628423	4.45849766083579	4.6909616259894	4.4815133585555	4.68310171618415	4.52343561559456	4.27994860608696	4.62996012077968	4.24496458640421	4.19833014417429	4.49681181314572	4.42468953246084	4.80206498001057	4.34802154959052	4.42232234738407	4.45639164701719	4.17598663841507	4.41289088593489	4.283053852202	4.4225038338443
+"SLC51B"	5.17343744835667	5.64607789164647	5.49245381952568	5.62234422164117	5.37562674796844	5.50076182085259	5.28197108682085	5.41902011226514	5.74250145303396	5.74174155117142	5.47923368763023	5.74174155117142	5.53731103591558	5.83342706739497	5.27657806258151	5.51310250470967	5.52463693970826	5.44234769925099	5.73843186413752	5.38041820476754	5.63297813802636
+"SLC52A1"	5.30047039873717	5.7019192526997	5.67241432852128	5.65674928260177	5.47542763050103	5.83995212925726	6.06284433230287	5.73798817753667	5.97869432322653	5.77774658811272	5.67593138489352	5.73991595099063	5.90923244297228	5.90493327942835	5.72476263835964	5.55807602144928	5.76806136912585	5.67932234378587	5.62816681478029	5.37441149511733	5.96730535615544
+"SLC52A3"	8.43006744395637	6.5437739124743	6.29439489812482	7.16740637605835	6.68336849363144	7.94963799950511	7.30214185473663	6.90237709266814	7.01763713735268	7.04654118122876	6.35000427042375	6.86983976753037	7.33978780279649	7.80215839052453	6.86361404236156	6.41140362535133	7.20097341657759	6.90237709266814	6.4279495548372	6.86030833373996	6.52371012409641
+"SLC5A1"	5.60923528347871	5.81104312202066	5.8723373300722	5.85134335391972	6.149129038043	6.08837288220894	6.02222100597716	5.73971809950586	5.7759599495628	5.97338174757947	5.85629004392639	5.85629004392639	5.844243737029	6.24696629898879	5.78153029410456	5.85629004392639	5.76493552236879	5.64309437312263	5.75913403107274	5.98737603366594	5.81265373361611
+"SLC5A10"	5.24100793389941	5.5144953092045	5.51997967170768	5.72415818414967	5.55853752410153	5.72203133466432	5.58501019011602	5.60732179522258	5.47039395036374	5.52871151598266	5.40460857241046	5.28085711624257	5.49985537587309	5.83962626411957	5.33358936572871	5.39741044994133	5.60525575485078	5.43641638686595	5.60195335166959	5.41620871275499	5.53248040130426
+"SLC5A12"	2.80618022097809	2.85095505781275	3.00959318115518	3.04860234085761	2.87992733611665	3.24794640368168	2.99909199425865	2.92876783160554	3.15639794676506	3.09312554034039	2.98911750456991	2.86227147758257	2.99909199425865	3.0400541730488	3.00064944826813	2.8003141566154	2.79959779875273	2.9404259916865	3.22676112921257	3.11075347914283	2.93164399738002
+"SLC5A2"	6.51256826633054	6.78397883575421	6.66228775693563	6.96632558881637	6.7561158447782	6.81776777574951	7.11973267373346	6.61439571929392	6.80005458067239	6.73294274125701	6.64489905392474	6.69984326842244	7.03770863271136	7.04062328179805	6.62806997326491	6.63389588624654	6.83769655686358	6.48501306429096	6.80239543164302	6.7257769933738	6.81280265054786
+"SLC5A3"	9.74849327886749	8.97849290812497	9.52599326526819	10.2286743868474	9.4404688038372	10.13372009507	9.96231837051034	9.5266817051344	10.677867287295	9.88984641162278	8.98877326460469	8.91665476565077	10.9568273559364	10.0802294101306	11.3131104945982	8.47758161975945	9.65881744762082	9.21447956819047	10.0612378834092	9.36749813412915	9.39015977985889
+"SLC5A4"	4.01766034109371	4.12455966634781	4.13068783309716	4.32374623099168	4.40147132675244	4.24716920798222	4.28168965922742	4.39267410676429	4.39631918446416	4.13062927278468	3.78823365730846	4.06934430749897	4.33340104933583	4.54262357022234	4.23192295137028	4.39334360064551	4.26166273073755	4.00469379059507	3.95877301163063	4.20479628536753	3.93198178628879
+"SLC5A5"	6.87692109097551	7.01482957916319	6.8330096306359	7.16805176984404	7.01883426965699	7.08093295938324	7.21080690801721	7.00649489947399	6.98145882620001	7.02771038350416	6.79290201270812	6.90832275339679	7.14677907609981	7.19036616194971	6.9509668415595	6.93306024651446	6.91552570639218	6.73012130176265	6.82086223621456	7.07643244747179	7.14744831786506
+"SLC5A6"	8.51419132950121	8.3497271257116	8.68602162444339	7.92173567230808	8.00224063784841	8.1400958519358	8.44532479254516	7.75062932446546	8.07118807073141	7.85656489318044	8.26568729718953	7.47398801330386	8.34209571584312	8.39326053256402	8.23545354592946	8.19513719394649	8.19359348146835	8.2616759721238	8.19442160488659	8.30559851425519	8.05934197316917
+"SLC5A7"	3.57767156439837	3.50326544262781	3.6848764444367	3.4919777105953	3.5778357442613	3.62160727492543	3.33637882028405	3.67511881537392	4.08321741146074	3.40348450812788	3.58657035912302	3.65474444064977	3.45634722199598	3.63734615191803	3.7304996737837	3.51263671653846	3.75440189403408	3.53886141214795	3.73147480899506	3.34215571292522	3.50154892725243
+"SLC5A9"	5.08961543800521	5.17897583377368	5.39582858878796	5.20285290265839	5.18698720666165	5.23579447167304	5.63727338235871	4.7641478170041	5.20633152164699	5.22877744107699	5.13757251760383	5.27723575973834	5.2316128553241	5.35110952226947	5.07120044379	5.14351878066811	5.42443045123529	4.70131639947564	5.47327444240454	4.95729874260848	5.2992386944742
+"SLC66A1"	6.33392674543889	6.47376073942926	6.06874480848331	5.60356589836742	6.07345288814669	5.70806751150237	6.25154759068345	6.2034002174861	6.51674435483861	6.50477035592889	6.55298882005377	6.33571552327933	6.34769702125946	6.43588485744697	6.40260925852904	6.80729384075462	6.18986634597205	6.2376917256903	6.3432944706045	6.89914644172028	6.27336478431069
+"SLC66A1L"	3.61413233619292	3.9173708228495	3.60402999597923	4.04083821815635	4.0131819760753	3.62441285525711	3.86930188401815	3.72604263132239	3.66562984383424	3.85301270925888	3.79340624972589	3.88716276132266	3.58052775918987	3.68131419739192	3.7173921184715	3.85506777535958	3.79340624972589	3.67796672675403	3.96966172496866	3.72421426249425	3.83244795722948
+"SLC66A2"	8.79102426424769	8.81056356448893	9.35381446276295	8.73791119293307	9.08345163686863	9.2981996346872	8.6334094493319	8.83376175994341	8.92927248004849	9.14017590323352	8.54326630104293	8.8202132520023	8.99849665595199	8.58740936407664	8.66615655936655	8.26615525312882	9.03596447164665	8.93716532153673	8.77433658931655	9.07298074894494	8.96373755148492
+"SLC66A3"	7.54143329706792	7.11718322402456	6.86332174524482	6.34968417641542	6.72540907508622	6.65091464421147	6.13489865299904	6.90007809423247	6.29899752651561	6.44703942403005	7.39957475637178	6.5418615451799	5.71079850663934	6.44298382113902	5.94086275342608	7.6945156366346	6.41098650249503	7.50391032057571	6.54227311487398	6.54885833920128	6.6263039989584
+"SLC6A1"	10.2941404424962	10.9558300503823	10.7861654764491	10.5995112729597	10.66137483935	9.69554589362479	10.5306837029758	10.5178967618702	10.6349822673212	10.8951990172357	11.058949177445	10.7327278526626	10.6513989268871	10.6724074057347	9.94663818751202	10.6142188233675	10.6513989268871	10.6840879512026	10.2294208491065	10.8765548922178	10.8891996340162
+"SLC6A11"	7.202570847358	7.62661672077507	6.46964488619953	7.09615860443878	6.77280016287878	6.35622315823348	7.65639445834152	7.82397756879209	7.03440092484882	7.20378665662728	7.25724405909181	7.80194845130763	6.72957340912266	6.69898466869191	6.52186466366495	6.74045105437649	7.27383281504528	6.58117652667929	7.14544865350116	7.42220188660172	6.84447423000929
+"SLC6A12"	9.05825300794651	8.34925349879547	7.96746739324932	8.10744910492363	8.00082280715544	10.1698283915922	8.20946900889447	8.18075188283802	8.07315249718557	8.14598971189295	8.49569187244778	7.74844121690248	8.52355586107273	9.77379754628699	8.38105433681043	7.86092440389978	8.4832762331923	8.0236872246695	7.6698789013508	7.56471925815706	7.68439893600433
+"SLC6A12-AS1"	4.97577810757867	5.27533763369625	5.31623650009631	4.64756920997594	5.22581382959583	5.82287033003888	5.58055502771723	5.10488212894796	4.88270575422366	5.15524256478076	5.2861010324977	5.00443245849189	5.36004628492518	5.47887376311044	4.95771342590708	5.3382512298921	4.83851391392687	5.35438459341132	5.38288665357535	4.95034190397269	5.14207665457139
+"SLC6A13"	7.19973237152849	7.45751058128342	7.25879188735328	6.7209374306761	6.77643519189656	7.07942987834518	6.61862212165415	7.86114200168682	6.92838417512172	7.87820798971574	7.0877845487431	7.24361327580929	6.8555842300356	7.47215991710837	7.15394626300495	6.3600343218828	7.68620983937304	6.8102551325789	7.9733467384005	8.12917292252135	5.86201966865479
+"SLC6A14"	3.23806074283599	3.14372987533887	3.09117892126934	3.24518705275147	3.09236228194546	3.40374401432272	3.26103755661695	3.02513453471122	3.34325783524505	3.09076783014235	3.13215216348316	3.11018844616162	3.12797248053799	3.31508691966123	3.36320932819885	3.17227597725027	3.20291659065672	2.88471338660236	3.25080292783401	3.10717681858869	3.18404779816901
+"SLC6A15"	6.25235559062968	6.8547151061453	6.93642955029445	7.31289528134563	7.99156391192636	7.74784444085345	5.92523859173159	6.85959090044844	7.41758080029021	7.85910174588021	7.25123220427636	7.92803123439877	6.65659083872876	6.39128577004205	7.33636096046613	7.74834410297821	7.45322298224708	8.53331048209271	7.15105651633905	7.81058234729513	7.99145804936623
+"SLC6A16"	5.27078475882974	5.01249731747146	5.04079056326685	5.01927460063446	4.95294633867001	5.01927460063446	4.82614822850747	5.29993475313843	5.16721362891285	5.13980903512915	4.73634195398772	4.74132595385567	4.89289927174368	5.07698248233288	4.66581218608101	4.69337488541821	4.47293017295295	4.63276851924886	4.95985417262255	4.85984568138142	4.96770724838553
+"SLC6A17"	8.35746944061387	9.13696142491989	9.56128266573853	9.10772852554123	9.64420695156209	9.33006417019067	8.96059431942152	8.86902706878703	9.16065970945088	9.45182091734882	8.63704124867026	9.61661310735808	9.23130360062969	8.98521166451961	8.76840085194356	8.65161804750957	9.72237464243508	8.75283912084464	8.84457769606968	10.0869414160638	9.59216145453077
+"SLC6A18"	5.88885494539439	5.80261625378683	5.77681163894808	6.03626302292666	5.66703389510131	6.26261570385462	5.83065672221654	5.89412127453644	5.85454062496312	5.97973029360332	5.82776991322788	6.14430914550703	6.26805468085827	6.22950857786986	5.95542251746037	5.61781992874554	6.16713778730743	5.69312461793098	5.92810447672669	5.81587173727593	5.99042444574382
+"SLC6A19"	5.29527083528415	5.35305734397544	5.61365293098007	5.5383932305756	5.21116868712609	5.60064051339296	6.15793238837371	5.40021186076361	5.74992160371623	5.5383932305756	5.41716495056429	5.5484821865685	5.67733632696696	5.64111888571407	5.66488445870138	5.38937680638468	5.61308874323077	5.3070564728664	5.68158379465633	5.41880229628957	5.5383932305756
+"SLC6A2"	4.31178082331497	4.56642026737669	4.69662364324443	4.48401274775	4.12703012006962	4.145183426344	4.91996877968986	4.41518273803456	4.60348124647587	4.45681872834261	4.53406093177838	4.54497828891447	4.44681584231412	4.80457178151834	4.46639799414917	4.21435099727803	4.46639799414917	4.56048752379913	4.19818030628423	4.36367519258637	4.43627944429422
+"SLC6A20"	4.19506304120798	4.29012422247559	3.5800290528952	4.0556699965144	3.93114669580645	3.74034863059707	4.09442483252028	3.88449449072723	4.14189565562526	5.92163545957544	3.53869817468471	4.0992860590276	4.0056629007693	3.97462288152569	3.90527208519706	3.77483290120548	3.88354103053654	3.77141580707031	5.18953583739555	6.36236942066184	3.81248865203486
+"SLC6A4"	4.86812724900683	5.02428877695545	5.0151221908332	5.05568784239835	5.21882775906889	5.19161343312642	5.3658804299564	4.9448836879128	4.98562281697558	5.03440220544193	4.68916887868941	4.96972019295537	5.05497694948843	5.33979167487232	5.00732880033388	4.94031267579196	5.10851910962607	4.86787663311833	4.98228930660106	4.98562281697558	4.90469485200579
+"SLC6A5"	5.44988109749781	5.60666629498134	5.52684920029731	5.65306082633942	5.47424928882181	5.2215987886841	5.60666629498134	5.47523496054998	5.76298745721408	5.80196905362577	5.50816853495466	5.56563587040963	5.95224195777516	5.79009764078961	5.83043651234648	5.44071738477377	5.73202822082543	5.35640690830196	5.91424287377161	5.59540540537211	5.64375060386533
+"SLC6A6"	5.94187706090654	6.15621861782612	5.36806691405832	5.39584903491741	6.70749933344065	7.63925837155085	5.39576317200021	5.93756004615964	5.78967033241661	6.65029102324375	6.13644880630033	6.18523348531851	6.02789736666907	5.81081316322297	5.5176789787167	6.12311680208281	6.42843534956769	7.2596887710881	5.63147014477957	6.12256733551174	6.62666752626276
+"SLC6A7"	6.36017278949439	6.67017661975151	6.78455909971804	6.78455909971804	6.87013632050164	6.40603955663833	6.78455909971804	6.54473280534746	6.79817268899616	7.21739952352539	6.11810311673914	7.29596132801714	6.74731606813165	6.50731962598239	6.46255386525474	6.83590572530166	7.0674217341255	6.53036259315506	6.82549051146488	7.56765363603096	7.49352035581934
+"SLC6A8"	10.4769201362985	10.161223499773	10.3186348700553	10.4221348381678	10.104711985751	10.9966927192702	10.9418905027058	10.341022614341	10.0878885233856	10.0185878799415	10.4388672795688	10.4183967148884	10.1683151662669	10.6212109317259	10.17866624102	10.4518137489237	10.4749628179823	10.8750318785734	10.3299258286823	10.0861450666381	10.00779002714
+"SLC6A9"	7.13580629948171	6.72987116412118	6.17671370529116	6.59469876915774	6.38621820688391	7.6418403280412	6.67425989428083	6.71635717411674	6.49135141185527	6.8578088519797	7.368975002882	6.6261343260936	6.35871373385462	6.82309773647123	6.43291044119818	7.91947817415758	6.57460297364535	7.78818513481234	6.53611955235588	6.83236469371306	6.69584583294733
+"SLC7A1"	6.62884851727041	4.81184690599572	4.35144329639127	5.07132118929217	5.63614851990063	5.97594186278211	5.84716442140873	4.89821564598942	4.7298113316664	5.96620734516414	5.08602160486512	5.28698989254795	5.99275068211893	5.69957479431915	4.4578779259957	4.7527522230006	6.12764087496786	4.99678395931411	4.69542268126756	5.87423997505906	5.92290899849683
+"SLC7A10"	7.71861002985817	7.41387651637635	7.81259859577478	7.47153140004334	7.241554375307	7.58167706505643	8.30807940638216	7.64676534148508	7.57717867712501	7.43651356708981	7.5818134375508	7.14007821747778	7.89216082392113	7.54583912648351	7.48040687164655	6.5346887540305	7.25362523591289	6.7859796319911	7.1964629127604	7.47568124972125	7.12546661542723
+"SLC7A11"	9.81925290025788	9.72023433291515	9.33053062547623	8.53307538994542	9.11710274855388	7.34017730672076	9.03739531968331	9.47826602796018	8.43514081778601	9.36601321429721	10.366004651437	8.66315625959639	8.31283151231489	8.46452211012993	8.92453358099698	9.0254881425633	8.02955752562269	8.94908903662848	8.86994312981868	8.72593921334642	8.29368254540385
+"SLC7A11-AS1"	4.89133265734451	4.84544732183554	4.78672948028106	4.99524604637274	4.99102751120933	5.01489629577159	5.10642540643757	4.91949278041677	4.97782250602433	4.75578126229865	4.66680557306403	4.80437337622939	4.87781605663859	4.86077217523087	4.90446142361104	4.88027357332287	4.77138531416448	4.5591305438396	4.77113174666618	4.59237983245727	4.88261008044479
+"SLC7A13"	2.99245884840149	3.19857055954668	2.92012532572857	2.99245884840149	2.93917412128966	3.18932013482767	2.80045985889302	2.92155068488079	2.93023287221473	2.87719206389438	2.98770481796879	3.04385858196007	3.0579037973092	3.06104350348782	3.21958012469308	3.31882236769144	3.0053552646277	3.02799790068869	2.90602514080844	2.92429384688014	3.20847738576425
+"SLC7A14"	6.9337751244132	8.17156104016743	8.56978923219587	8.27659601732688	8.63083837463679	8.24573811492052	6.36766290114121	7.85850716919383	8.38267679955066	8.64159390876506	7.81698688880091	8.4404310841994	7.83898928407643	7.5220915814686	8.09856564718358	8.16527059465281	8.25246376736056	8.53677272611414	7.97346954950805	8.48479958400084	8.60206149898586
+"SLC7A14-AS1"	3.1603061701771	3.38827129017694	3.14296517990239	3.30559940228848	3.12895374821557	3.42653425421499	3.22420497482535	3.11422850221141	3.33933321189791	3.31394912552841	3.44834486507205	3.14095322642744	3.29690987144605	3.3927344297764	3.26294418330201	3.26895251324425	3.33300263550747	3.699684508884	3.30559940228848	3.30559940228848	3.49155109618225
+"SLC7A2"	5.73971809950586	5.50685909411993	4.36448959763263	5.79824082341168	5.14841758050422	4.4961968254122	5.62437772662657	6.78455909971804	6.31286636681427	6.55735644817987	5.5941733389914	6.76576735514751	5.13897329762782	4.99346019727613	5.11052095958945	5.02999984825266	6.34429431992175	5.25684790432779	5.94570517050411	6.14639805821204	4.95157992196618
+"SLC7A3"	5.53224548247795	5.668342719945	5.9765644195399	5.54680047989744	6.03577261830669	5.71186931142717	5.86356630596648	6.06534948866681	5.68607334592474	5.90584537643502	5.53679869805022	5.66133336602611	5.62735506388359	5.43413301675065	5.58754225771351	5.53196646538803	5.66776574088209	5.71186931142717	5.5680424765339	5.86881205485547	5.81542213425723
+"SLC7A4"	5.14949111389753	5.79976601284619	6.35125098393384	5.87352991829874	6.0217240708619	5.93536177105158	5.69496006170331	5.56534190958969	5.92759775487048	6.16593671669439	5.69869600888653	6.10971983404288	5.78780608342587	6.11897018250305	5.73541285170377	6.30575534190111	5.78241530245026	5.93148500273634	5.73213075646074	6.38889337866443	6.43653443104695
+"SLC7A5"	10.2655668803774	9.23582863645609	9.23076923812255	9.17279994479539	9.15340433317918	9.87988430435926	10.1477914509579	9.01716577164774	9.35367921476125	9.29488132215438	9.458836617827	8.68685539527064	9.8188810820746	9.91000937196585	9.47101111163952	8.69966159475677	10.0035617304508	9.15124476739564	9.2712386223174	9.57821571481068	9.18589211753406
+"SLC7A6"	7.07440525156503	6.84377359403695	6.58291234658889	6.29512101691802	6.85568665948977	6.34568440312558	6.30391480143516	6.22143883916974	6.43704695881191	6.78796347301175	6.2836139962964	6.75535592556277	6.46654760684646	6.41625955345553	6.5281253889267	6.60176244515252	6.46339490682586	6.91584395113393	6.54367896325785	7.03967350466286	7.06150867434315
+"SLC7A6OS"	6.81356322728195	6.34265404571891	6.54033980124144	6.13983967273432	6.07786038702061	6.11475523541353	6.63298510006297	6.2775742785139	6.10434317586267	5.97025456528568	6.26932954728511	5.86670454995347	6.08749692753547	6.35891125000385	6.37327049132818	6.30267030562163	5.77063303033093	6.51393047241811	6.12397381760255	5.91423351962887	5.67960912709764
+"SLC7A7"	8.08454315818693	7.16370869820061	6.61425446901515	7.02032039977487	6.56943010784928	7.16315358487804	7.19460560414517	7.11023590128792	7.29527328991321	7.16409582964423	7.04947328052773	6.77267021094113	6.95338345144204	7.30497036271015	7.34598022762154	7.16370869820061	7.23167728264427	7.15408211885278	7.35599647807953	7.51581896866858	7.52848187030553
+"SLC7A8"	5.39892754370658	5.65314631756225	5.23253441201141	4.97966043430735	5.62017939953731	5.13821761741851	5.1716869876303	5.4418676762316	5.50727204452715	5.77135574392697	5.63899194200404	5.74387652102961	5.16283698899701	5.01055057267099	5.12746650795198	5.41324128124132	6.06283087421648	5.16513266824354	5.36164980177039	6.35254661498083	6.39267176012219
+"SLC7A9"	6.26323804908385	6.12481271504865	6.12481271504865	6.71396047407961	6.0913462087154	6.23214765377733	6.02589651940076	6.17171782171346	6.39769033203262	5.55200957185209	6.02521802696435	5.5914755812735	6.28816126081896	6.36913987017472	6.70119627858852	5.68741146320808	6.39976519623215	5.6213894983614	5.96722221901203	6.04466338495216	6.0991956060116
+"SLC8A1"	7.13771854223912	8.6957937775686	9.31435165961405	8.49027314570194	9.41181073760384	8.52410567696758	7.32508928147479	8.60871443740812	9.33701998504067	9.28131395591624	7.67998960599648	9.34591485755947	8.47786946294797	7.85094988411597	9.2036428946919	8.70674755050545	9.62003761883511	8.91178855907161	8.92095042170538	9.6311146136822	9.52725319417195
+"SLC8A1-AS1"	3.92142722567681	3.88454207744253	3.98762508073682	3.97195789789141	4.20550458439618	4.73425614214191	3.85566866257575	3.97212029352752	4.0212667640135	3.76649585251223	4.00362115130371	3.68677898483993	4.10744149391029	4.29938893389525	4.42149830923866	3.88528536543544	4.14237549269155	3.66472942265199	3.7300145389108	3.86848337390533	4.04666509382876
+"SLC8A2"	7.83457006030951	9.06066328871503	9.33413817702193	8.92062274429279	9.18949785870712	9.07581207856092	8.12346578701555	8.71737098593717	8.71726693172504	8.96762117547145	8.60439374575992	9.31711732744385	8.7738170374758	8.24478226197727	8.20005294850473	8.11217044990228	8.91582428898676	8.61829179717541	8.20473222688792	9.16053634851876	8.97391568931388
+"SLC8A3"	7.0266569863129	7.85894428864696	8.16796757365638	7.60126518103811	8.00502386448683	7.48821993399624	6.8513020696751	7.24992464215143	7.6157284048859	7.86880256918289	7.46410857899495	7.55423902800678	7.59580784382904	7.40001032822167	7.74010865732083	7.3535223035848	7.49171843421171	7.33940552232464	7.34824573531316	8.30858356421284	7.73713330903792
+"SLC8B1"	6.95603630802204	6.42624906649974	5.97733344364299	6.09760398908676	5.89277256039045	6.01258528693037	6.2221864544133	6.35077201920518	5.94485023393661	6.29241624929795	6.59445286127636	6.28599924069452	5.73971809950586	5.97222430376526	5.72413829517094	6.61168114798712	6.1494707040081	6.53341227447059	6.07854110773496	6.19779702489253	5.96680141359375
+"SLC9A1"	8.44011941654715	8.55351564814808	8.67909992653159	8.39831488912149	8.63923361824366	8.6692408050543	8.46849987376056	8.36120282114917	8.43850581060943	8.63785455454754	8.29237539956502	8.7538977255553	8.78246197895786	8.40190249111489	8.16494879934379	8.19501740821634	8.62835614385365	8.24750579414058	8.27248275572734	8.73147755443549	8.8173839524454
+"SLC9A2"	4.57630123125064	4.56431455065447	4.5770743092115	4.4642123190521	4.66004687834644	5.12031038531294	4.21894683708603	4.41813950803861	4.46974505325979	4.74194124794603	4.50209248441087	4.7859655300666	4.75879296148016	4.5770743092115	4.34599610844985	4.08369945875326	4.73980219549933	4.50852798425743	4.52934214548761	5.0325368721201	4.55015944357906
+"SLC9A3"	4.59745285837628	4.71847159746856	4.75227557755071	4.74976601715447	4.49228024679972	4.86281124319029	4.9468683548676	4.58596907807541	4.67569487082649	4.64312089067239	4.6958873054083	4.82600570253151	4.97228500357491	5.13861154302827	4.62273124026464	5.02963598488047	4.68019095110585	4.38868458282386	4.73566886194163	4.57469049505002	4.64753337236452
+"SLC9A3-AS1"	6.89431451881217	7.54417069170733	7.25109374614308	7.19680694660281	6.68965336949177	7.52667610605674	6.34219620210095	7.59586396686451	7.72519781987207	7.27307554569634	7.15893205337111	7.79370475779818	7.35778276352402	7.58833181405725	6.70733927192834	7.27790026685907	7.00696486333186	7.19261424137981	7.25969010836028	7.11554085140586	7.52993504077196
+"SLC9A5"	7.06136048520224	7.16917277682503	7.39228874540337	7.36061472201358	7.16048596298518	7.46236894823601	7.86297617217061	7.04595760832521	7.66258447979991	7.66244120130345	6.99744706821751	7.35592929390203	7.58799044267932	7.59300836799058	7.50575140021222	6.64484968190083	7.56360750703386	6.98482828010422	7.56264051403611	7.30267865618867	7.41639916664563
+"SLC9A6"	10.2904296446111	10.9922265603539	11.3828226416539	10.8451821234265	11.3707706426645	10.6307590097848	9.83579029602277	10.920263357142	11.1110914894103	11.2562703599101	10.4299149205241	11.1434034414114	10.7686655374882	10.3577358048136	10.9693566578629	10.590659832579	11.1831069469487	10.9532242414708	10.9724066922441	11.0838532647072	11.1326112474678
+"SLC9A7"	6.29586334583249	6.58316778137161	7.1100353993813	6.99469201665118	7.83797706463663	6.391134465017	4.86558930223274	6.85014781818647	7.48637207045163	7.83982381024597	6.50392024456453	7.40416503381789	7.03251741185744	6.19902653054403	6.99469201665118	6.46834429984647	7.58273445764022	7.24467981536119	6.91985826542477	7.55755612904339	7.74528809641348
+"SLC9A8"	6.96128976780842	7.07655596776271	7.34962495295766	6.44487502427394	7.0173155268631	6.78317796808464	6.16986897830308	6.48812997227037	6.5406419118259	7.02771038350416	7.32521817315298	6.4392101657565	6.86244182166851	6.88779596447798	6.82636304281157	7.27043381490133	6.47947383040845	7.3083697424515	6.49537875048169	7.06048418058027	6.83296739390947
+"SLC9A9"	7.90461855437223	7.30330273676944	6.08236117372667	7.02155553158328	6.96805148757346	6.96305271582645	7.15157354416613	7.45615434713418	6.70563721760251	6.94096307694206	7.73795556768797	7.00410809863889	6.46614981935479	6.71685746557694	6.53555580588306	7.66741179474261	6.79605723810676	7.20675604322387	7.19061569047149	7.19129588643519	6.72218832920258
+"SLC9B1"	3.44257664103622	3.54926224796007	3.43202743124961	3.45444379427875	3.58657035912302	3.77091070944046	3.78876122671274	3.52666794578388	3.73060769094025	3.53530782793601	3.81325743802175	3.68748830095304	3.58657035912302	3.68242419778969	3.69253281790891	3.70151351033879	3.60144618384381	3.79055550352484	3.54048467723316	3.54468590665754	3.50310234788329
+"SLC9B2"	6.87805292457172	6.62137092161989	6.55726433162873	6.73434434798301	7.12196179520343	5.83206428145158	6.4122150485211	6.92781802362984	6.75129181767976	7.31679745125158	6.40227354947404	7.42393344188189	6.61872874704285	5.65471150186898	7.06249089017314	7.06315778855346	7.21828508497831	6.87014955442529	7.33105143948816	8.39499510057464	7.47972817482205
+"SLC9C2"	3.17254130654657	3.00707482796713	3.10490096701048	3.06263989451053	3.14977492199846	3.33414890904638	3.13045895283693	2.92939571611064	3.0637586926167	2.98120217804358	3.17215776372946	3.269956175154	2.94291647137935	3.29894802952713	2.86654882675159	3.1230787569992	2.82324458389985	3.06263989451053	3.01320623014084	3.03020624945558	3.1230787569992
+"SLCO1A2"	8.1632350247513	8.01736576107456	6.54848341733359	6.3767160183323	7.0373044589041	6.9275144098716	6.28807315941432	7.02025741803176	6.36684748168555	6.72150836554369	8.68626342167646	6.70832207320431	6.51242486376131	7.29384432212646	6.03662805799862	9.28198820363933	6.89950277173478	9.05313550251031	6.80005458067239	6.3286350598489	6.84763704581746
+"SLCO1B1"	3.91794356038454	3.84119318354086	3.89841988318418	3.96730077237669	3.84746626312461	4.12702187001208	3.76700283046486	3.73105774726372	3.70082344566509	3.85519533133461	3.74894427553218	3.84746626312461	3.84746626312461	4.07792606942969	3.84746626312461	3.88208888845386	3.65145209054606	3.84746626312461	3.88143880770501	3.89855403793349	3.84746626312461
+"SLCO1B3"	3.66310653031166	3.58541514140447	3.43904237500958	3.6598526948521	3.64092943459324	3.56044869119295	3.7101102803885	3.58993509298075	3.73196312663608	3.46364217811214	3.58993509298075	3.58020721668009	3.65288630345899	3.43359552805148	3.58835469198196	3.90399101010414	3.58993509298075	3.66065040963195	3.60265256689627	3.43433462461849	3.48484492278571
+"SLCO1C1"	9.04567024746159	9.489549309116	9.49524285035402	9.44831568072969	9.4971511126111	6.50478423907058	8.73078584452874	9.91727354732248	8.70244126481314	8.54705732433328	9.46945071471039	9.39581454996381	8.46270176395629	8.85322902510806	8.92810940281057	9.01629471258894	8.88590658249003	9.23654150214816	8.84804958451152	9.3418765412668	9.24114671724451
+"SLCO2A1"	6.62244075689237	6.11194765092535	6.1845231024314	6.10271985819724	6.3337672227402	6.78142569856549	6.31712562595624	6.26244235959397	6.47829528941625	6.18011695868988	5.85005514056546	6.06334282142357	6.52085089172004	6.65145409017143	6.05418867058638	5.52715499751585	6.31663961111134	5.97481661770131	5.93655438921251	6.50220541528725	6.11968688393814
+"SLCO2B1"	8.8680329813313	7.46026219561286	6.18723342789606	6.50071231656201	6.75463855246922	7.20533729666264	7.56360170749305	7.2830200750227	6.55233810198669	7.24115958100674	7.58500889415236	6.81963178942098	7.20533729666264	7.51479885095072	6.45348528028367	6.83691487497835	7.47174083801387	6.80371892828531	7.16650847419496	7.62369039691943	7.96306903700149
+"SLCO3A1"	8.30781369380705	8.35054902278323	8.4332632056598	8.40880596963637	7.79470702906813	8.97722829067601	7.76899095863876	7.93074254788051	7.72016934609371	7.60087234117989	9.21590936755249	7.80769726437829	8.07723044456941	8.24818967634559	8.27790458740722	9.36580742720022	7.93021029286052	9.3592837012362	8.15390953254588	7.59448343497174	7.72117475896128
+"SLCO4A1"	11.0853697707676	7.74702210621527	7.52917069106203	10.0738680134974	8.8446240811852	10.7623475711439	9.9935035909686	9.69958785913448	9.60367323292495	9.063836575543	7.22425490039954	9.35503980504464	10.1842621663617	10.3636930364328	9.59376182300888	7.89009927349835	9.9671496795691	8.42614517121593	9.11461803493059	9.27624943835788	9.52439314476791
+"SLCO4A1-AS1"	6.29412971452551	6.3800874262064	6.08658919959678	6.36698534626442	6.29412971452551	7.08449379943379	6.29079601809376	6.23139439139494	6.53584698784176	6.36100880584957	6.06393265747527	6.3227589410967	6.33800940627592	6.13888505211665	6.43586705952362	6.53562370967788	6.33206306474015	6.08896606585073	6.18966219832636	6.19410051741093	6.3773637562958
+"SLCO4C1"	3.37315533934402	3.53656412245727	4.07936686537352	3.68439144248266	3.69859847076788	3.4448105969911	3.41790360015636	3.43680702127173	3.22722284194821	3.4203418665989	3.2988990409892	3.61198749400451	3.55969993101081	3.46029036683195	3.80280789084671	3.46420269138289	3.57246275943769	3.55969993101081	3.75149359643182	3.73286387157277	3.59345713958964
+"SLCO5A1"	3.65988208868076	3.74827353595234	3.75295870674462	3.71620259799217	3.97521665806832	3.56444604105462	4.32761550144279	3.63601049172382	3.59591134459631	3.80738707598205	3.59722776046876	3.71920948720861	3.90252771899347	4.10968467095094	3.58415677021994	3.6586703195229	3.85552787981962	3.62031058465313	3.85111436128052	4.07780176494034	3.51378516388118
+"SLCO5A1-AS1"	4.35939279454323	4.56159754894025	4.19404266086042	4.40187645130486	4.40187645130486	4.55465574292477	4.34631419047088	4.55098174431076	4.26517017742223	4.30907017509878	4.13838569313379	4.05620816115316	4.49770991396593	4.43374016477504	4.53753656469381	4.66569690790702	4.51729206580097	4.16653174489447	4.40187645130486	4.58088157865166	4.25522724712386
+"SLCO6A1"	3.72945065186744	3.72695856455881	3.72945065186744	3.84642295686141	3.6703806656281	3.99321485246642	3.72945065186744	3.63320512284267	3.69505853017347	3.71277315730442	3.66150342431509	3.53475174386528	3.75991244191168	4.02084033645697	3.68518688291339	3.76171985617194	3.84307345459079	3.62184576030443	3.72945065186744	3.80005852962073	3.61279943708056
+"SLF1"	6.78902548297761	7.89692508368613	8.24230111285003	7.09568569853103	7.92541412150206	7.11803564016135	5.33222527338109	7.51252796348851	7.7615869957891	7.30950706181792	7.68290356539672	7.60863552346871	7.22202962240526	6.53918207522342	7.05222840279521	7.10094804526813	7.11783046980906	7.90107291361272	7.61645179386959	7.7365343307742	7.38658666682285
+"SLF2"	7.46843143587616	7.996501999169	7.34144763608326	7.24092863454793	7.45428918988687	7.32047523551119	6.888187947763	7.6354917014974	7.47628147222762	6.97593198380346	8.61016859773739	7.4195988745079	7.42791278492474	6.99588976609137	7.46843143587616	9.11452080673968	7.37089339128884	9.12903154190436	7.51492678931919	7.36070692735258	7.45836445117916
+"SLFN11"	5.59324328255485	5.12077685519409	4.32609211456168	4.57898195018108	4.79362763629127	4.63154997277981	4.86366640772289	4.68439783547746	4.86366640772289	4.62400019486363	5.26848451261312	4.86366640772289	4.86366640772289	5.23894845934291	4.72911379480049	4.96329902530837	4.91336205690719	4.68303805452752	4.81126572200699	5.51397374523008	5.30398522798995
+"SLFN12"	5.29937304804574	4.23675093939211	3.81019707080685	4.00203508227731	4.02032734339073	4.31593623520332	4.27888672467724	4.49832242477734	4.39763169585945	4.15773596656715	3.95733873997415	4.20444112410232	4.22637350832631	4.47496749117252	3.95309705184612	4.1689062283257	4.00967676648148	4.12050020866445	4.37481072363533	4.33844436933875	4.01226470205649
+"SLFN13"	3.2331542660494	3.10271875687885	3.15784454809172	3.26493873579519	3.10194559427725	3.46486825167426	3.48911568029105	3.2331542660494	3.1158669013595	3.14663419214411	3.20607131723739	3.0153631307097	3.52935403750422	3.33286158303506	3.37529893542131	2.99925729838167	3.2331542660494	3.15661021599238	3.3254518598228	3.00447227358663	3.24660782703561
+"SLFN5"	5.45666855555053	4.91760678523364	4.52446517998628	4.41332698491171	5.22237637870872	4.76903761383417	4.81052237524544	5.23501747753991	4.25227255287082	5.14129543161582	5.26806548587656	5.21209093717769	4.538421146207	4.79308366657457	4.59983302171672	5.23697316765471	5.06959211468852	5.17573781734851	5.09774409322544	5.79036470101085	5.23779164195119
+"SLFNL1"	6.77015475387019	6.79733723249023	6.52664981676493	6.94303744330809	6.42716678958973	6.9871724678144	6.77015475387019	6.79640814178495	6.7672748581799	6.49298357891391	6.86045871635761	6.83933329969034	6.93352483332703	6.78048553905668	6.77015475387019	6.94938956710556	6.80587642167675	6.57808451121651	6.81278754884127	6.40534993659186	6.7434894282373
+"SLIRP"	9.36678332994682	9.54288296599376	9.86885687933031	9.63346329895991	10.048803959834	9.11140087105581	9.36017654768932	9.33315110805544	9.75468024596703	10.0059921746329	9.71040700524642	9.79773282672411	9.06305234721364	9.03928404425206	9.5137191841105	9.94033216935422	9.44544323101759	10.2125232896125	9.79634152867816	10.0948083984788	9.91876583788244
+"SLIT1"	9.541847932837	10.3396977763474	10.7795289701633	10.3389136057716	10.364434288173	10.4367706543586	9.49459719294135	10.1788824556391	10.102694422469	10.253109792005	9.85208719687335	10.1788824556391	10.2109612867433	9.98437299697735	9.98059858458778	9.63708988245968	10.3912699836315	9.85926077054031	9.6392225526685	10.6005771542564	10.192009730789
+"SLIT1-AS1"	4.32814124030925	4.34057268666813	4.72254402636164	4.85612372059618	4.44673710314334	5.44045479977811	5.43722333165131	4.68221891251863	4.98209845274947	4.79609949967172	4.40283941456235	4.92235997379352	4.77210179976407	4.80351443697403	4.64638092243023	4.83394663969413	4.68830164480757	4.40372557342641	4.99846652861215	4.65255023976917	4.72254402636164
+"SLIT2"	6.06802600520871	7.57010599149079	8.24949387372288	7.36749298376643	7.94590350678376	6.38554057967205	6.12406172505387	7.25772049531366	7.47489067737195	7.70429172947332	7.20299994955822	7.96462783675525	7.86215865095267	7.0634653680908	7.82017236397287	7.14768821765136	7.72664703804383	7.33155810134739	7.24407724245138	8.06738089594122	7.5949922305062
+"SLIT2-IT1"	3.41333108319736	3.40226796420328	3.40750846385575	3.65327403422968	3.33858419247035	3.45331215956876	3.57957628444379	3.3910064177726	3.45543993057874	3.55699015943603	3.6264168834718	3.45331215956876	3.44405991187107	3.57087963595731	3.19256084819263	3.71426444328565	3.62201890855241	3.38823270801068	3.41683084596733	3.34611922988664	3.55454939371527
+"SLIT3"	6.80594198709822	7.38066133549099	7.62642366178824	7.30648367048357	7.7092894216265	7.35592929390203	7.14738832808681	6.87577260732779	7.2843761951324	7.61895472202694	7.23693889319729	7.52659367172211	7.27493523532577	7.06412755658459	6.99343908580314	6.96782129022144	7.51106832338713	7.1844578061013	6.89648742492036	7.61717021113082	7.46287674980599
+"SLIT3-AS1"	4.88212651370674	4.71815165416491	4.83252908877682	4.81594915133706	4.86353407675486	5.3091194917536	5.08834718830062	4.78082938724913	4.70535681098417	4.77828962193266	4.49200674481768	4.80557879039367	4.8924663436738	4.82924470918871	4.45724479881603	4.7939943459758	4.80034306955918	4.55905814967252	4.47510950172828	4.70412198636006	4.63623339444419
+"SLITRK1"	7.43155746611951	8.16361286546673	8.3428021189555	7.90525069043313	8.45482820217294	8.01562758244194	6.92694979161984	7.62179223158727	7.80185950949419	7.79380630726548	7.66537938503927	8.27494174808296	7.65911786126665	7.31263171838604	7.98645836844586	7.87457342074481	8.09404712420036	8.22571396432152	7.73572549913628	7.9469000264808	7.84868119998814
+"SLITRK2"	6.90455637068388	6.96860011833583	8.20707253139295	6.97274359093753	7.12666093945554	6.97516746539439	7.12132568150794	7.08651563485669	7.72962696674189	6.81044303539863	6.57484627817816	7.08391453606301	6.63981681369342	6.83898083849867	7.33820724729287	6.72725738358982	7.01398529539285	7.28311563096038	7.09574916654315	7.14630329232179	6.75107702545696
+"SLITRK3"	6.90569791385261	7.61965351117263	8.19900118471642	7.75397390191338	8.29924670871304	7.8989505299806	7.30616853446337	7.37168671777349	8.35044008970734	8.33418716539684	7.19215161435199	7.84282906174462	7.68337964640646	7.53727293901367	7.64523633324228	7.23261199602484	7.92438610035019	7.57572922855708	7.34781270036744	8.39888729216444	8.27479730805415
+"SLITRK4"	6.15674038986455	7.21847232418533	8.29215854376022	7.51480691615028	8.25639743017946	7.17332184971239	5.66660719552576	7.60631829126407	8.09493952140337	8.11747235490177	6.58199991254016	8.46056123781928	7.22247219421973	6.32819426491907	7.64323417475749	7.06808070508773	8.22740231266127	7.60805610519751	7.67399826860758	8.2641761985956	8.17755175453917
+"SLITRK5"	7.81391819402857	8.77062575354629	9.31190432755484	8.5651357419773	9.40564733550245	8.6514099691611	7.80813374610983	8.4224982328946	9.39814557021985	9.40170526824445	8.48301178378242	9.33141950020119	8.71802036548936	8.48626288831087	8.54672351147467	8.40496482796813	9.37033580192361	8.83967297685766	8.64892150449084	9.49788527384704	9.40312027724019
+"SLITRK6"	3.93019687261144	4.25282711114412	4.32321080282123	4.20479628536753	4.34176935764672	4.30321081073268	4.20479628536753	4.27647552240422	4.20479628536753	3.98695008797944	4.16562033947983	4.00576403764193	4.07792606942969	4.58419383232183	4.19947183698717	4.69706665411983	4.29253247296676	4.15318813651898	4.19818030628423	3.94583124942362	4.26774446291887
+"SLK"	7.34879113208041	7.23649401107705	7.09401671961861	7.04756743996197	7.39713300725817	6.44620043156737	6.70826850792483	7.60632564487984	6.72449171398746	7.14790845326834	7.48641035720774	7.16459854250256	6.70752164562814	6.68167563408636	6.6839998012124	7.39291690179155	7.13766377095846	7.97308019226901	6.85368312509802	7.10980693543847	7.3510445454706
+"SLMAP"	7.63504127177277	7.02995095704819	5.58998915888436	6.8260290834771	6.8485504803115	6.46694110842279	7.26105741860143	6.91575486582543	6.85717051017358	7.18713095032126	7.06890766045437	7.11472347132803	6.63408512344198	6.51664857522102	6.44067483123101	6.86574768257863	6.63805844522171	7.26067048179933	7.15704777499168	7.07013649909518	7.25845522741599
+"SLN"	5.12500332741274	5.67614991373089	6.06206706347614	5.84310600600255	5.85275515370317	5.68427224002756	5.16798675785112	5.60595254932268	5.48449003917707	5.25969529473141	5.29560275473082	5.06032029520066	5.30308837234677	5.53221132456494	5.58625860577185	5.48066651098218	5.55396932616966	5.53161427468777	5.11407155637233	5.93565744903606	6.04337620848205
+"SLPI"	5.85394342470971	5.88615524287807	5.40769117550081	5.7899061833471	5.84892904788642	5.67737090373101	5.66924473452819	6.16338232955149	5.34073994953013	6.33920383938586	5.62342972929128	5.66438987796751	5.92035037501856	5.62125801731826	5.7899061833471	5.59670868911579	5.60850125900047	5.16432444763105	7.53456943970216	8.86095813539596	5.55834042955097
+"SLTM"	9.11390295105848	8.63719442458028	8.58677339950428	8.55910019121943	8.77413083727313	8.93865637996005	8.38323913953435	8.6012210905122	8.50386118655333	8.68510873535006	9.02755590125897	8.42046087289634	8.69336784219082	8.70550325746218	8.84952760312921	8.98806676578504	8.61756468094428	9.32467938988015	8.33898193243507	8.3416001254745	8.84993245649989
+"SLU7"	7.76560738291372	8.58606330740243	8.7616103371932	8.37461129964188	9.05803549793528	8.52917552338292	7.7106845871478	8.19264004572308	8.85441446812845	8.84529413336083	8.52917552338292	8.61107537603922	8.4760255264317	8.08825278450003	8.47941659682541	8.39921472734659	8.67805320206974	8.8937324712882	8.17190028807966	8.73514882931035	8.57289645291966
+"SLURP1"	5.59257986140604	5.7637414832805	5.6654455483853	5.91864723457396	5.63351741450214	6.00982078513695	6.32148905011578	5.71577316305051	5.80546319100493	5.89668385315144	5.66219321270266	5.8447689248852	6.20662109179599	6.04885736077412	5.75234198480257	5.72563058039292	5.93271858775625	5.70687555066627	5.82579129455482	5.55770054066234	5.96653588646698
+"SLX4"	7.01229840565553	7.32661655874185	7.68557020812907	6.97220362767105	7.31704594746237	7.12639128244521	7.01026500643696	6.75445755553938	7.10026637857233	6.95525681925874	7.01501856748764	6.72294753732592	6.68770732298695	7.01501856748764	6.71074080626649	6.86111509247022	6.81391638538187	7.13311458550822	6.94350015206056	7.23527502758923	7.06301742736422
+"SLX4IP"	5.83489135196075	6.16880949077932	6.71022308122052	6.22451929944874	6.38371105976773	7.0162625461068	6.22651639231989	6.15077854253105	6.25431745181914	6.16671661633472	6.09362579489116	6.34894051967089	6.3273871634784	6.59953247041319	6.40537787723411	6.01182517724741	6.26637720304693	6.31256632744119	6.27176588674127	6.26725836410248	6.15285168366641
+"SLX9"	6.10177212326588	6.1887360914191	6.13726854284779	6.28816126081896	6.11842267793535	6.2343318323926	6.28816126081896	6.21202395111617	6.28816126081896	6.31487691271764	6.22436321691284	6.30013542907439	6.43642139988644	6.37751063278873	6.33027010820034	6.10411701063144	6.44221821086877	6.4894323739858	6.38599042399903	5.91926556761375	6.39077418117284
+"SMAD1"	5.47409958392397	5.55423578947125	6.17530529055524	5.39576317200021	5.94110997269166	5.43215902993193	5.17051606180337	6.2428343511066	5.27339112091977	4.99900834747887	5.57633773053855	5.88311502679876	5.26463274345592	5.04079969121441	5.77699133997482	5.16832902236931	5.39576317200021	5.25846614663836	5.17531102246592	4.9276030194562	5.37427631262046
+"SMAD1-AS2"	3.8897783924837	3.56842286104698	3.97036334404348	3.76145915426798	3.80005852962073	4.02677752957492	4.05165753495543	3.96954805579778	3.72271455924503	3.80005852962073	3.50774186181891	3.80626413020628	3.80956278825424	4.07426659572201	3.71261997499189	3.849196248172	3.83286344579674	3.58491575456032	3.80005852962073	3.53916968684528	3.69662050186132
+"SMAD2"	8.99088503920129	8.77966565707058	8.98387874801174	8.36493388601125	8.88007462769787	8.48893298821916	7.86411777130029	8.65516923866249	8.49244998227919	8.46031094842544	8.99717527017947	8.19333551747781	8.29523310759889	8.43432384271712	8.65138986660532	8.95125238173425	8.35759457094528	9.07444832223317	8.26900558173081	8.4070966334325	8.29660775351427
+"SMAD3"	6.83117073816941	6.58279856452512	6.01092115948513	6.33091972672937	6.58841165750871	6.05248176735766	6.58099285031162	6.93156809642108	6.41405933006715	6.46886950588064	6.51239711114765	6.65826804340496	6.05736604631851	6.04754469867984	5.78198619706673	6.04409743350318	6.82025704998871	6.07591363540374	6.59052990500627	6.93295219064002	6.9739476013687
+"SMAD4"	8.01466696841196	7.36845592607708	6.76553230551973	7.49394074060288	7.11886955270123	6.82375295229189	7.49640395770729	7.46570331772843	7.29426785350443	7.08826041347508	7.87837196349915	6.99343489963576	7.3907333692508	7.07891498113306	7.53383535230592	7.82306813937628	7.18206996323348	8.09070758490776	7.49579489252984	7.08987311939781	7.34002347359927
+"SMAD5"	8.15879135993307	7.9949267489493	7.09396297944206	7.73941064537031	7.62218939209258	6.69074472449012	7.88418170015626	8.08015212385258	7.66318957269131	7.66453775890454	8.19205711565001	7.39821923435488	7.39571914324842	7.73215888465232	7.61598852196131	7.97200167927154	7.47482386409592	8.02467544836144	7.82564870111186	7.05444735458605	7.53850290279234
+"SMAD5-AS1"	4.4541344245192	4.68720071420542	4.60156594400295	4.74575989624927	4.77450025267342	4.5646641872303	4.8585128444185	4.56629543904718	4.60509777491831	4.62745391920403	4.39031727635677	4.62442920614135	4.79677329412027	4.73674903672368	4.86220345619006	4.53785792302502	4.48716984967877	4.62745391920403	4.43120724765499	4.58656401812325	4.59820998748149
+"SMAD6"	6.95742868665154	5.63282737911643	5.62309528851127	5.80035236927604	5.75113334044259	5.72380824122634	7.23894440232668	6.16338232955149	5.82868117291225	5.82868117291225	4.94625624631126	4.97227453858444	5.81849566027651	7.07194354586605	5.7931751237368	5.05234408190142	6.37135243507381	5.79125879416897	6.18882906650975	6.5656306713461	5.74206305610579
+"SMAD7"	8.19663172831506	7.94525854432209	8.00699662513098	8.32659197772671	8.09845271418098	8.01179928783618	8.13312007212068	7.9032639065327	8.07535079678465	7.85200960106601	8.33546007620739	7.14831640416499	8.24998894123927	8.22014276938275	8.24237218377359	8.74771656630589	8.19654579546987	8.46391827135727	7.97476329436201	8.23399921893742	8.20198519620354
+"SMAD9"	9.60210763694725	8.11619058416692	8.53913055470085	8.50003644705621	8.236345614365	7.49752164692651	7.99447587570395	8.45162273593014	8.21739454207567	7.68668132449275	9.31088829822131	8.27955012560368	7.58855375466942	7.80066929576118	8.16182254194602	9.16515467604303	8.15464275886361	9.08946303148865	8.51770584745195	7.65872171845585	7.83654222934564
+"SMAGP"	6.27968744681584	5.69246422088854	5.41169080147932	5.99168452849048	5.64912582762758	6.11333108264781	6.06118088987978	5.51949335009071	5.87191458393749	5.6593996336251	5.349834702674	5.19758844040937	5.95309926838157	5.8038087334702	5.91478458250108	5.85704732874247	5.69845193211381	5.34086531198389	5.66698889116343	6.52117544265561	5.61362326280254
+"SMAP1"	9.0741348947252	9.4000159538934	9.43507661991902	9.06806964450528	9.94181576813698	8.08703641347881	8.19537779302608	9.24428798827691	9.01963798923057	9.83122710134103	9.26694070849371	9.49560653183637	8.95278445678115	8.4065773171342	9.094234109945	9.54347256287665	9.48848581261552	9.26166159636865	9.07294444633502	9.58142679859679	9.44550461147636
+"SMAP2"	9.18667566984456	9.46061468636857	9.84025234208415	9.36545260988098	9.98750798974084	9.29419934985279	8.91062608609874	9.16300607198235	9.55961961275221	9.71175623467726	9.01654725715836	9.7226951240585	9.30911425578158	9.34426310441936	9.0452197447925	8.83935295575671	9.76514891028187	9.4680355026094	9.20674290889013	10.0755687900601	9.7247200774882
+"SMARCA1"	7.49709549241515	7.03886345067273	7.11645631455819	6.90179427969417	7.5713620715877	6.69615870738102	6.70203555181028	7.72558914161159	7.30600891858235	7.83153715829971	7.4015887165952	7.74300410668827	7.06230486291331	6.89170212399099	7.2999366235308	7.10160227823993	7.09454061430268	7.50021540482359	7.32978808762208	7.65549489521913	7.3156746677084
+"SMARCA2"	9.10653309870211	8.84294179783837	7.81747965217741	8.40389221728505	8.74213730827134	7.64915829125109	8.82141388111648	8.95380252796252	8.652703730698	9.31651420924456	8.74213730827134	9.40667357050518	8.55862633222565	8.25330834479747	8.17059553940716	8.50441769201542	8.90817912848681	8.25935750999111	8.59418490349001	9.52532123547911	8.92160533967808
+"SMARCA4"	8.33064092903483	8.61324356454332	8.97274343596083	8.22069578824959	9.10275384212962	8.41039795559427	7.89109872721104	8.21484640995733	8.39889763804746	8.95995067458201	8.47058144004253	8.87733444018989	8.04686381591325	8.01581163500726	7.58841141725633	8.63612886908412	8.65784106862009	8.6290318981331	8.10355877435665	9.10659402074728	8.8604762873403
+"SMARCA5"	9.07490479428305	8.78725888575116	8.46529982986166	8.64136529382313	8.79596663814252	8.19740353681513	8.75530543587429	8.98737996725901	8.20841424975871	8.70287610036624	9.13138277404738	8.53187820703045	8.27296618585687	8.25571679953001	8.26234514729864	9.17144655799862	8.50426182205493	9.35808628337782	8.55735035748908	8.37606729254576	8.48038288874193
+"SMARCAD1"	8.61420650329929	8.44514763936084	8.59171075000808	8.44514763936084	8.62158378792275	8.38157137777205	7.91762031361631	8.18342742129245	8.57855173234071	8.43752908072397	8.41418439542607	8.28905486938997	8.03771186086409	7.86062074072038	8.7243241786099	8.73866981663601	8.50233523276409	8.8856097325081	8.50901263693234	8.34692910651148	8.44514763936084
+"SMARCAD1-DT"	3.02848073064729	3.07455151220938	3.00370796551729	2.99388502959051	2.97012088085373	3.14850811133727	3.08928553899574	2.86488926775582	2.94906970106365	3.07632642891178	2.89181513880518	2.9988665222517	3.0579037973092	3.12671228991164	3.13453224138539	3.01038121717927	3.17271712419711	3.1451101449799	3.02848073064729	2.98939810418993	3.23182638286273
+"SMARCAL1"	7.11465490149967	6.95282570394849	7.22141178715496	6.69788000210891	6.95593747525009	6.92124957202186	6.75388830157259	6.89258094662091	6.71697018245515	6.93463571003597	6.98641393297707	6.77267021094113	6.81853690520203	6.96133394176131	6.87085157970821	6.97361248417603	6.7795728642583	7.21553459191859	6.63663501084804	7.04210854874614	6.89258094662091
+"SMARCB1"	6.15482358193809	6.05688248246524	6.31493142906126	6.25475998283786	6.18808342344758	6.94516579475183	7.2257884152573	6.15816575666144	6.58219505059976	6.44329648710221	6.06533830673068	6.51692215593317	6.56106407729418	6.53365739615676	6.2813315977709	6.12620872389077	6.22436321691284	5.93219678532718	6.51190748708438	6.4681966915209	6.00943622333427
+"SMARCC1"	7.78396978077796	7.24239190121587	7.10141323572377	6.9842536525252	6.75664504111623	7.90971639842502	7.73325493584504	7.20424990534063	6.6679152597916	6.76576958933678	7.60891638664685	6.87845791473858	7.12464871257135	7.49311926116536	7.00816479646559	7.45171055372847	7.00370690158358	7.82507339550177	7.13402449760717	6.74222889352527	7.02520385040992
+"SMARCC2"	4.74153123683383	4.54137198263651	4.27263675547984	4.58573481398256	4.03802664632658	4.42259918390961	4.45028850467828	4.94356645695538	4.67532102774116	4.32989494567889	4.49489961404264	4.20953803383874	4.95277080157288	4.72899615616704	4.97736228985156	4.26258214985478	4.53338944906867	4.50923241289395	4.55511717649753	4.13405950509874	4.04783918185285
+"SMARCD1"	8.94384663018923	8.98369873635395	9.15834996991234	8.78562535714677	8.81396776256837	9.37753902339773	9.16438361778765	8.80353946702513	8.65284278509752	8.68023449278598	8.95259115988554	8.77801907013443	8.87603720426902	9.25336870967614	8.60728590681795	8.91785630765627	8.86642015181313	8.86642015181313	8.56674082734188	8.68756979198675	8.61770856242855
+"SMARCD2"	7.14232460881632	7.06612734069005	7.01545424197658	7.09394814621196	6.72958739628003	7.13250107315556	7.1207677063657	6.85307095779169	7.04730944743777	7.04730944743777	6.93362234386915	6.99508710934311	7.18561466471782	7.19116975522722	6.84476294218472	7.28222655321697	7.03384060356535	7.18054007320587	7.04730944743777	6.91333478913508	7.04730944743777
+"SMARCD3"	9.83008864966609	9.51274684946164	10.2074022441995	9.74452381007832	9.63783360972202	9.94377962106589	9.90670060463751	9.97474370750478	9.80843201122337	9.76535389207454	9.37635109458254	9.68952659320149	9.646483404919	9.89545147097362	9.81894627705969	8.97659873766559	9.5444361391557	9.51181071272035	9.60570499915307	9.74748398504143	9.7805406304491
+"SMARCE1"	5.96459855871904	6.3265584658931	5.90042341552865	5.53419187025518	5.49252100709335	6.16752500160451	5.83761185468301	5.7894365554716	5.56556424772704	5.29274730601974	6.06103687213108	5.50816853495466	5.60056766844493	6.01530191975096	5.52995114649157	6.58767755024295	5.03523438513542	6.49371131962903	5.86913066581751	5.65377446034089	5.35681443555526
+"SMARCE1P2"	4.71242033766991	4.67741581378734	5.0581521120864	5.34791668485428	4.7403483077696	5.02911786542874	4.76968755238661	5.07733521157902	5.2492595168394	5.02676818332177	4.79456136088153	4.97968624501848	5.39576317200021	5.01633398523948	5.19466288816444	4.83527396231949	5.01058491798713	5.04735331891964	5.16499712384772	4.97210444530445	5.22346716907335
+"SMC1A"	8.29957395307279	7.73260995240538	6.90717897028695	7.72638757881971	7.08467078755102	7.74611367503951	7.77883090756818	7.93758319079327	7.4517898970461	7.40919216168156	8.47939834941881	7.17664972656744	7.52771099244633	7.86922762651084	7.22786347143896	8.29324365939783	7.27334850137499	8.44398470009407	7.00733531626858	7.18422759931506	7.30266478104968
+"SMC1B"	3.97945172223834	3.94324342339864	3.89585513330643	4.10368892375086	4.17410042370005	3.97995731594415	4.46665923013531	3.74404961912405	3.8967499471465	4.05475074330472	3.88259366420048	3.94687579022794	3.93668319481726	4.12750753374993	4.04886215992078	3.93668319481726	3.73769184773983	3.71979367247946	3.71475160666928	3.90163876672957	3.84176581235546
+"SMC2"	6.26840571042132	6.58321902119896	5.01927668871185	5.42144787564106	6.71779775450346	5.33890341989709	5.83275954909037	6.03265320306126	5.52576127369108	6.41567986311352	6.52795328790038	5.33691139859507	5.7689039818324	5.47238404453623	5.76145123355587	7.26373527699934	5.7937361473796	6.6786093704871	6.07759963902954	6.19217372705413	6.32872158768372
+"SMC3"	6.67923105339378	6.04076150800965	5.94367321495529	6.66189986503641	6.44814597028131	6.65894123953404	6.09051505010038	6.66725171018886	6.60646161087513	6.32369857623399	7.05356454271988	6.62281968858652	6.25154985675969	6.53024204485688	6.59758513742246	6.19259078741542	5.72724032184121	6.69910214617857	6.4900147765764	6.15140285530816	5.60104332334413
+"SMC4"	7.03376657229755	6.43576515129433	6.34801322655733	6.12979125482298	6.17682416384705	6.27845956459268	5.98100056398128	6.20866008511568	6.00917241769147	5.76597324869573	6.86154575938195	6.20866008511568	5.68900073517458	5.93849455024633	5.94153930142621	7.13314113091116	5.95282435618004	7.24436539579128	6.31173180124831	6.47049532692886	5.87027913165192
+"SMC5"	6.58003672720706	6.26259062063411	6.6528473374998	6.3591045675588	6.9144322121122	7.90732997935427	6.50571671559572	6.98771063953686	6.39882198007661	6.52004290981991	6.85181294744774	6.54659312426353	6.43104908178888	6.95898798832438	6.68143074927354	6.48240255451383	6.27425080918712	6.69163985510115	6.58003672720706	6.58003672720706	6.02896462084845
+"SMC5-DT"	5.79213904008574	5.9721574541798	6.04053575137677	6.47199795797038	5.87109999989073	6.19320900074698	5.9415525182709	5.9721574541798	6.14705169729002	5.88938175150446	5.86364781670876	6.18846156766902	6.08077711379419	5.9941976885939	5.99220635570171	5.9721574541798	5.91779392327217	5.54423230445379	6.04104434660288	5.8696240887893	5.9721574541798
+"SMC6"	8.32402196994022	7.96746739324932	7.95254090904676	7.97819733523788	7.80379560123808	8.0526978644691	8.00214888519824	7.99967350504981	8.01460580943424	7.46155392860754	7.97266585052855	7.51826001971346	7.67588318968541	7.90344255218023	8.17782415711691	8.32324319122125	7.66170803626678	8.44909906512314	8.09613709983961	7.69419317899003	7.97240426936757
+"SMCHD1"	5.18518926152363	5.33984355755872	5.58029300533017	5.61301339333674	5.12391610284366	5.12972196032219	4.61284354163675	6.29955334150617	4.9231264893635	4.90657610521075	5.78174980535383	6.44607636716445	5.42093775996629	5.32188241127476	5.31319563160235	5.21072028125752	5.70313742811799	4.93207613106617	5.67267849457077	5.43085494344201	4.90918714483945
+"SMCO1"	4.42514719027278	4.69794235701429	4.68465362984694	4.87939250714475	4.6343328511124	4.95943014296011	4.84141593152066	4.55034973494459	4.96598710241015	4.72172631920281	4.56878182760473	4.77939281945746	4.73576740455902	4.8148841363642	4.81547790571504	4.66305879922416	4.80807414740347	4.32513128182432	4.87119822151373	4.50979541297036	4.72172631920281
+"SMCO3"	3.24718093054767	3.46959324835636	3.47115147475991	3.31296451690332	3.43915079743955	3.51395893962862	3.74239155085698	3.42225569028521	3.15968244581967	3.57847808451308	3.51212246532704	3.50530152682369	3.47115147475991	3.47489398673208	3.61706433158017	3.50310234788329	3.45487009640115	3.47115147475991	3.64037252802028	3.4031602569369	3.32581318919339
+"SMCO4"	7.77512655432906	6.35452523881942	6.29490892786564	6.80698556405878	6.7036882451309	6.89576018030687	6.3643480768716	6.93909267211773	7.06717999913554	6.87264427221672	6.16864489649641	6.70161628567673	7.14447783738587	7.03573491344324	6.96977594338759	6.31806146370228	6.81516431359247	6.74820699435901	6.80700462778773	7.0714524441656	6.99356290820831
+"SMCP"	6.44462388154056	6.44269582128209	6.12059484398192	6.64135698405244	6.43230597208214	6.56079172980973	6.47997139596074	6.43306004999715	6.30750100808564	6.43306004999715	6.50420336824967	6.33931729840424	6.65519632680494	6.47103237402444	6.43673321828599	6.55539811928334	6.39976519623215	6.31546178061667	6.40304891296946	6.36275291984121	6.76605937076004
+"SMCR5"	4.4338526546948	4.34016208624301	4.61738986277418	4.4338526546948	4.52346340262301	4.39551791193212	4.71474115816356	4.41862749089525	4.20509663608475	4.19086259478355	4.69050154364251	4.3858499817178	4.31988771755365	4.62142070330257	4.43807157353288	4.53404752949287	4.37807087169674	4.68546706235078	4.66124087142173	4.13845093159413	4.21749257809528
+"SMDT1"	5.07806810954265	5.27118130046316	4.49497619638741	4.79352611555167	4.68937248295022	4.67608883671828	5.26448841493301	4.88175692707423	4.74597243891684	5.0138986682848	5.66856259776334	5.46185056974253	4.94110227772293	4.64363716905657	4.79755662644529	5.71560095154892	5.35430795759821	5.3437340672089	5.45470912343316	4.9267447363934	4.81360960973737
+"SMG1"	3.25309811826045	3.31916457988959	3.67919730869777	3.46924752939726	3.77206098490046	3.10338980494455	3.41201042496486	3.55127254809975	3.97275367043765	3.2640306618904	3.60283939995134	3.46924752939726	3.73420497517327	3.17537983928293	3.48828315200029	3.44668843679546	3.71031846596918	4.09289342694108	3.3024339101175	3.15439035348996	3.63012828586461
+"SMG5"	8.3936024825816	7.84310072049573	8.04599939836275	8.03471979714638	7.9456616301779	8.44419101379843	8.55899068925273	7.98893039433154	8.23822214571854	8.04406268793247	7.92070890047617	7.92313885809319	8.17988460909437	8.34389061236957	8.0883066006738	7.76280147966083	7.91928077051235	8.16134269353849	8.16959944632147	7.9722061194736	7.86821785416932
+"SMG6"	7.96999034713306	7.5307080457682	7.82090242788112	7.68171867870042	7.52774104590118	7.98749939712176	7.77927321560721	7.69807251526727	7.5920928902793	7.65927506782894	7.82527362439859	7.75370859966919	7.665116463305	7.85119200723059	7.472442665316	7.26282348057845	7.51912267076672	7.42419364917329	7.44907859627935	7.89538479385932	7.47108931404156
+"SMG7"	7.06413936346669	6.52232768209721	6.25687338897747	6.48736446627437	6.74543216140457	6.66237402427022	7.05819168061083	6.58271563251702	6.60527591702184	7.33145013985214	6.68616899885707	6.9563693968446	6.70219601095755	6.42127796403666	6.38228404909487	7.35377291007204	6.98883058713411	6.76329006851375	6.96243001744815	7.24339553122654	7.31692986710718
+"SMG7-AS1"	3.8358758558472	3.64285783709677	3.7256141921188	3.88509171534632	3.79340624972589	3.77697911533288	4.12969311823571	3.65918988558044	3.62299263103325	3.61226944353049	3.56756590466552	3.76649585251223	3.72496236284226	3.67030167116633	3.88201948470039	3.74096123501839	3.76649585251223	3.76145915426798	3.83353097716374	3.83766118408512	4.22227105007983
+"SMG8"	7.99403146567827	7.82103215300106	7.89797909212569	7.85801902957153	8.2201044275217	7.41256978775095	7.47915666213504	7.78363974434733	7.90914327022188	8.09103384148713	7.86156509003757	7.70058300649826	7.71933797633844	7.47112804504841	7.8522095464092	8.12690238655433	7.83248886108613	8.44768721457274	7.80626372540921	8.04726218190781	7.99962873864272
+"SMG9"	7.83856121265211	7.79631111952332	7.84919873423563	8.15730161783199	7.8339588222045	8.36904015683019	7.94390654261887	8.00952123799585	7.86233165629691	7.87308958973511	8.09298160794349	8.00779576366413	7.94100032943035	7.8871999776075	7.86038375555711	8.41325458744413	8.00779576366413	8.59241388237568	8.05731292167362	8.06293473950328	8.07576717285219
+"SMIM1"	6.87052415795425	6.81929403213932	6.95186934029395	6.74670570357493	6.50572029348311	7.54510364453713	7.31505437085892	6.87922056530913	6.96849376848077	6.94392349318815	6.71700331576942	6.87922056530913	7.02163652298395	6.99848712747094	6.84460937588097	6.79558927081866	6.8588356835541	7.01388024673122	7.0146145939428	6.71630886317809	6.77538218216676
+"SMIM10"	5.38040504935959	5.04918392251726	4.97642475733559	5.02670194555428	5.05781680056874	4.97015008372343	5.02670194555428	5.22073988956603	5.02670194555428	4.98085231308774	5.50674446200962	4.85687113894914	5.14849124000945	4.83075720031247	5.01084525258628	4.7810060457792	5.02670194555428	5.00512354352852	5.28384805157224	5.02724438788711	5.10357604149163
+"SMIM10L2A"	6.82256943651619	7.95260068365409	8.76797509703728	7.6236305558162	8.37943226299974	7.04559527076319	6.73023158244853	7.35466990091308	7.53615405089888	7.99413343904937	7.28864375831701	7.91985579860868	7.40713198973449	7.27601710026662	7.55280756782372	7.18571227493374	7.34022630781673	7.51800376388893	7.40651663249381	7.85840683397736	7.81382040893872
+"SMIM12"	9.16531326337578	9.07059105502606	9.65253773028472	9.09293053244659	9.37632436297807	9.04362995020075	8.87867195305162	9.12214971999009	9.49398593238855	9.44442120959335	8.94893465145293	9.54767334376047	9.19190205124637	8.88171001315071	9.3515046913672	9.29614920008268	9.14746279190417	9.36273969331737	9.09297644338844	9.68583757936807	9.62767841874842
+"SMIM13"	10.3342695287268	11.0406013217327	11.2836569284762	11.0271852516487	11.1585831385862	10.6527613259684	10.3201809254854	10.9422547436647	11.4170439315262	11.0893938757161	10.6311414282772	11.031074682147	10.8900235937018	10.5358534270325	11.3908764503342	10.8841575304516	11.1062403940587	11.1997521555571	11.3213410337815	11.1079847700267	11.0709421128409
+"SMIM14"	7.25286075413005	7.80647396035203	7.90600571223206	7.54495045984693	8.44202428435312	7.15493289867859	7.14676737459657	7.51067128868899	7.63632370646767	8.22403582961966	8.09414157290053	8.1364122204569	7.13254218283672	7.20324467727382	7.46265301228607	8.33940137293424	7.94656909615755	8.46165892615811	7.80647396035203	7.97381053942113	7.80647396035203
+"SMIM14-DT"	3.67261756798489	3.65291910171009	3.47335931366146	3.79903235683976	3.5298826055232	3.79903235683976	3.67521115725028	3.68280170839972	3.36651626414885	3.55987924314312	3.87190600618018	3.66111385421103	3.41734305118413	3.52988689599005	3.36651626414885	4.01427305640163	3.24536707628625	3.50835783679544	3.35137332172397	3.57564073831889	3.40301600165029
+"SMIM15"	8.91362068357828	8.56625857214453	8.4260906870604	8.55908941175756	8.47968813006357	7.79814156928523	8.6001297674494	8.70351602649604	8.65779819773947	8.2867510198569	8.8512425054992	8.08843540975648	8.33911001109308	8.34037952596754	8.63340664394057	8.8778144699258	7.97837552380919	8.79194572956155	8.55617741982712	8.14541363523502	8.12305515308323
+"SMIM15-AS1"	5.01702148604147	5.02693264029237	5.38059166396011	5.02505347783522	5.26913706288068	5.27428642912524	5.15345043811642	5.1526675333443	4.86166554537334	5.08771697782503	5.37872008678778	4.91512066266508	5.0095085879323	5.06787369441479	5.03804773321455	5.43154500995686	5.03748299448036	5.55804960190607	5.08771697782503	5.11533536407625	4.90370533437567
+"SMIM17"	6.05420598631605	7.77926533387893	8.62625008790928	7.21120902694484	8.02820299232406	6.60803330980949	5.90230722167027	7.24843109807646	7.30600891858235	7.57791409563506	7.16376825824123	7.43172520618322	7.12160540155329	6.07485021435238	7.33212968206732	6.84735774073151	7.47069232544753	7.58194544517592	7.44925566633886	8.05857870184004	7.80383507670678
+"SMIM19"	9.00189449931091	8.93069334096084	9.25184490681064	8.71395051758899	9.23489372836949	8.48403230814029	8.57658650013942	9.01393311134291	9.08313666260784	9.32527795779611	9.3146772808371	9.03667360612223	8.55328209310533	8.74866841450377	8.79688400903569	9.16475084999648	8.66991906736172	9.32777586165749	8.87803466297165	9.3561268416142	9.0251594004708
+"SMIM2"	3.83799830761157	3.55162161244651	3.88653571725934	3.90002950151209	3.29929449814083	3.65853999059912	3.54186594556081	3.71927813222214	3.68769926047583	3.76649585251223	3.64939907441208	3.61123002846624	3.8834038345085	3.83885870637078	3.92365706151292	3.45864003135278	3.48653877614611	3.43684315627667	3.63854267026602	3.79119540526653	3.88600420460459
+"SMIM2-AS1"	4.30083204651259	4.3703964778965	4.31721384315958	4.23525479306716	4.18589146412373	4.65735024467604	4.41166856455489	4.49723008395927	4.20451231202683	4.34074254568698	4.04900454287258	4.18705458068919	4.55528974937835	4.16838409311691	4.1200249080238	4.27736896594778	4.19138392204665	4.30692160198797	4.40160815378206	4.28212339370362	4.36971895902144
+"SMIM20"	9.27536279421516	8.69209139190403	8.51891134337246	8.61981128893762	8.67243727529928	7.56384449915468	9.08360181639549	8.79049725203627	8.94541298849986	8.44083758492531	8.74289170026957	8.29960722493611	8.37239394760583	8.57574843543446	8.75936796656609	8.68126797202029	8.15629099895806	8.47784611645894	9.04501100378111	8.68933166685633	8.24186186132704
+"SMIM21"	4.5909385946867	4.85027787858363	4.77356532971371	4.94936370266715	4.70813927566691	4.5239034700352	4.65091187151617	4.72826665885374	5.08748558819141	4.92254312559499	4.7939943459758	5.10570520242707	4.92351638889286	4.79222638909614	4.85298290061526	4.86401057522314	4.89122315656227	4.41090971260603	4.97670944059238	4.73900561683508	5.06053453536551
+"SMIM22"	5.04742781911159	4.97658295556708	5.19117591034002	4.87178155670733	4.75288437229419	5.18502205870284	4.92453302128666	5.03200741117317	5.26657598011472	5.10352445566281	5.15570069132567	5.23623153902659	4.89033964598495	5.14593908766431	5.04742781911159	5.25358799105859	5.15792840855794	4.96893662783972	4.70121528768303	4.82142553424532	5.16504185388002
+"SMIM24"	5.89708195618327	6.65801167397194	6.12310664640931	6.76099572313712	6.5319832968019	6.39405854366102	5.97011339854422	6.22651187539641	6.86993016693217	6.58387520939542	6.09695325852	6.21985243160633	6.6048912862552	6.30766446006002	6.1989569939066	6.04566898624723	6.3643480768716	5.75853350995971	6.41606357901445	6.40874138700272	6.49619919253639
+"SMIM27"	7.34506063955627	7.62421701339853	7.93835537630742	6.94707215021478	7.66388982459573	7.5058645617401	7.7857648939336	7.59261052901604	7.41007000939281	7.68491831448189	7.724254216972	7.61629889495661	7.438038902033	7.48957208867523	7.28219876939263	8.01848367395009	7.25841124658681	7.86552838013099	7.58425439902265	7.60397780293541	7.34391528950472
+"SMIM29"	8.28939916059877	8.40029566379794	8.80799292643445	8.68544350284616	8.64877338128974	8.88003949041269	8.53921580966687	9.03106184292359	8.34054117892512	8.6913177572699	8.70824582703487	8.86982000064521	8.38640213081082	8.34564833930266	8.8825997009779	8.52001838507075	8.27819670145417	8.47479302703185	8.59862812791289	9.20656866247366	8.6695816788258
+"SMIM3"	8.72366296785154	7.03468848049278	7.21084124995599	7.50404712073035	7.26829006006208	8.49176938730273	8.36275409689766	7.2600114215898	7.62332133332317	7.42502623535762	6.44378587407003	6.7154087653367	8.03387180275065	8.34759434844521	8.05027270373357	6.76510865640199	7.71170529801186	7.20659410220242	7.2783854915716	7.52568828743855	7.97622408108958
+"SMIM30"	5.77001484075164	5.57851676628681	5.42633869505286	5.45913488258625	5.39119189963037	5.02757709608245	5.39576317200021	5.39576317200021	5.34375420673761	5.48049778405711	5.72560938723637	5.31361399178115	5.38416119228038	5.47867750701464	5.47258382146	5.53791266678351	5.16830145468986	5.38260511951235	5.60345775391551	5.16366552835418	5.16393580162441
+"SMIM31"	3.41222410027302	3.36767398802291	3.30270449415915	3.47549522070485	3.30836677292992	3.65106086153404	3.46302202787373	3.201217896145	3.41222410027302	3.27605695764013	3.26117887629189	3.41222410027302	3.26835191340019	3.41633926346001	3.63151963745226	3.58572749474209	3.57906230094738	3.12464564278089	3.53741376891322	3.52017393285964	3.57311809799174
+"SMIM32"	5.78584151701366	5.88138896669372	6.11631931717135	5.77511433519621	6.08711118780084	6.11861947196445	6.43240370047776	5.6980791559638	6.03037808578555	6.20153666245728	5.89465757295073	6.05400273368544	6.00670622707959	6.11159538306416	6.02847699082358	5.7043820060787	6.01750933759293	6.06738519813319	5.98320171760581	5.93191426046506	6.25591412182547
+"SMIM43"	7.0750064157922	8.23389159015609	8.87064678613818	7.9287644529353	8.93399037981926	7.90860628807735	6.56128539216806	7.79142935009811	8.78602693856087	8.68546049559441	7.78489850609082	8.58736541498977	8.19865510069405	7.6617727248423	8.69460259746676	7.92376926690098	8.39586247375166	8.21794651766727	8.3000204649536	8.55944887691172	8.75268700084065
+"SMIM5"	7.17467312545814	7.08080469864972	7.26003249078352	7.07984214088581	6.81870163750164	7.89198471233553	7.14496293728535	6.85816930096042	6.71991265347415	6.86062123328529	7.42594317381234	6.75617713813474	6.95315903904111	7.29395288641731	6.95913848102075	7.79380572670114	6.87407072192217	7.41772807968498	7.00606124681033	6.70238015287725	6.87144326257771
+"SMIM6"	6.62178717236316	6.9815430997998	6.62029655623902	6.58478349502372	6.41959619470427	6.96294347195937	6.56604193307193	6.36188338039713	6.70288683565679	6.33429101795029	6.85461352364602	6.58362259943909	6.45373899599783	6.4301331043049	6.46048723135254	8.29296867974933	6.5876380149361	6.86796954864854	6.64678542831795	6.5876380149361	6.51795029246747
+"SMIM7"	8.54896436149729	8.44762707323582	8.12827080324548	8.21438918529861	8.33137091732818	7.3137422608151	7.80032321328468	8.36489909842627	7.83956963899423	8.11737324851133	9.02822165632111	8.49781648196299	7.63113493234679	7.74901871304958	7.91486338051031	8.92905827906404	7.9017859812958	8.34178426731461	7.86485124920347	8.55680316551857	8.2015260891903
+"SMKR1"	5.45890303774988	5.83797480114136	6.98535292826297	5.86980287752871	6.69861141084062	5.40216051920634	5.12883895378878	5.74768062225793	6.44020777385956	6.5059136525934	5.41384848218884	6.11335766786829	6.09456237748284	5.60457296877764	6.45289741270051	5.13816621622174	5.69687006566434	6.24443397539332	5.7210027539665	6.32053009115351	6.22546261501365
+"SMLR1"	3.44241727536838	3.3621997843964	3.38033228179746	3.44065560640983	3.33469995002753	3.51265558456192	3.70956859740673	3.6265289992786	3.35128519821279	3.38877606140137	3.4341095142064	3.3948064318855	3.58583399201175	3.68117721853422	3.39186876271775	3.33628035102632	3.54960729677334	3.53338375090492	3.37254787732698	3.40758940812043	3.72421426249425
+"SMNDC1"	7.87112637666312	7.64078771261503	7.89369978844994	7.98585903784304	7.99952940243999	7.3907333692508	7.53636413592286	8.27435419203074	7.89369978844994	7.54411914718307	7.88389790037231	8.03450161337422	7.85516632519888	7.40398101134359	8.11192666496238	8.16919306211248	8.05972494854368	8.32946361742663	8.0858619756288	7.90787254703991	7.72382959134697
+"SMO"	7.43151004222367	7.07873244686328	6.87028567339907	7.15974586907046	6.77391222881752	6.88061599861986	7.69909823818464	7.17341247272631	7.17206333299935	7.18963490292245	7.32547986618617	7.00703101837743	7.15608473544169	7.29292564549583	7.1539660097055	6.94370282585637	7.07284770568598	6.57651865703394	7.29159204873171	6.91658870449768	6.85184941976136
+"SMOC1"	5.44216632379867	5.45755243200952	5.22924599309774	5.3553961874798	6.71302354495572	7.46399729089091	5.54580537766754	5.61851045078103	5.73444668764964	5.36683736321397	5.28123258727391	5.15879389812025	5.58403343132739	5.69112586431337	4.95598328493598	5.75228716202401	5.3318145116418	5.66511737395	5.32873408784034	5.29886106532862	4.68985803990675
+"SMOC2"	5.55040897066368	5.05828365958018	5.42273695979876	5.08360104747134	5.33042064340362	6.02285581693613	5.77233733936904	5.26286151166979	4.48370651370097	5.40236996586414	4.91220817847407	4.99154789124866	5.50300740191704	5.88828468862482	4.34634699370544	4.95801021504369	5.23453708665567	5.05221314549837	4.31938563117254	5.87158562155245	5.48285224571215
+"SMOX"	8.0160675761658	7.81229298073576	6.74551496062013	7.95699931849038	7.67784661553202	7.02500416534577	8.44282622671872	8.68781296299765	8.1014266144465	7.6625995979317	8.22346476611021	8.119872227784	7.94055150168435	7.86019752394917	7.08954679982854	7.71503754834525	7.63900578524211	7.63303121038946	7.45322298224708	7.69154019687942	6.72175756809181
+"SMPD1"	8.47165843891103	8.15553029317561	8.50425918886963	7.87374127298295	8.16563900454572	8.51581053780747	8.09496670293832	8.02360799884128	8.02992757704074	8.31015152600994	8.44688423148263	8.1038374040248	7.68343103156667	7.92487513910627	7.81897639676286	8.80181297683826	8.03214505129878	8.82865300952199	7.82670398053873	8.50811662313984	8.06312526332974
+"SMPD2"	7.12899958571642	7.15165905406159	7.29535163376207	7.16862884808837	6.99203422443102	7.04012225603473	6.98593890622031	7.14058802690587	7.10119867698865	7.25859470191676	7.21229531254048	7.0038208925016	7.058827189924	7.14309533688353	7.1770752866208	7.46130163888169	7.00450626072639	7.36297826922592	7.25159667403806	7.11642751339128	7.06112286917052
+"SMPD3"	6.79100018944483	7.44783598437331	7.29200780164678	7.39411839809353	7.53093261818079	7.44506835116196	6.95758766550207	6.86664202719377	7.46298404351661	7.28193154751261	6.80067095148751	7.22871953598946	7.39720500273454	7.22354334697965	7.28371584194571	6.72823290558967	7.25645432202442	6.82078216250509	6.97547707076308	7.57881625816367	7.56516020901017
+"SMPDL3A"	6.58286878775194	7.00323077524018	7.32840926855866	7.12897255734694	7.21750176202792	6.7737286958721	6.58474452225124	6.91557681596518	7.13282599240716	7.27677698616644	7.10742392371491	6.89853866778214	6.97306520591356	6.68269920713477	7.15741311956111	6.75285918157164	7.0780061613839	6.95235426497493	7.208534563786	7.17290272262505	6.89667018334509
+"SMPDL3B"	7.09963390465266	7.1523708312587	6.74379207983138	7.3875384200839	7.19959670261647	7.14496332710353	7.50430636732261	7.03608106639296	7.09909176787038	7.03738792492302	7.06999429687268	7.16661116553308	7.41763301874092	7.64390030963666	7.2323686919803	7.02936107859592	7.15151800757266	6.75206032783371	7.16476153496619	7.05297928611112	7.36535510562919
+"SMPX"	5.30755842461905	5.57763341737954	6.02896328741194	5.66456983091928	6.43915965620217	5.95997173299391	4.81735017688632	5.73971809950586	5.83399079802378	6.15908639311948	5.37766317833098	5.95058822774641	6.25233707535066	5.51883322960522	6.44759835234344	5.28048706671072	5.86544501396482	5.70076348905728	5.91256974083473	6.17377046172677	5.96818688733041
+"SMR3A"	3.50939527363312	3.42430580469233	3.58387896601217	3.6480281136958	3.59653675640033	3.80489700551314	3.85462395522945	3.44187120853185	3.72592868108118	3.48287676734836	3.46924752939726	3.39025700486935	3.7083884358015	4.01614655883877	3.65465570810513	3.50310234788329	3.29762871653689	3.37465010076606	3.73451654624397	3.34747925748795	3.79735634664641
+"SMR3B"	3.47280658145152	3.7467837131716	3.75714810291262	3.61155934193911	3.6678822134661	3.51317445435735	3.72624800661261	3.6222212440577	3.5765794362085	3.65723470486216	3.41636287607282	3.66629929253359	3.61608159685634	3.94907314323108	3.51267416753367	3.68913752185382	3.61757577010707	3.37565132043908	3.48072386726483	3.68512522225462	3.40691787608761
+"SMTN"	8.20942302578824	6.76669729859528	6.7588493469672	7.50163934246288	6.81906655705869	8.05734780422605	8.15147769642353	7.48701403810307	7.41241600963401	6.88345461648038	7.09666283137747	6.70333402367657	8.60151996623117	8.52138599307461	8.16605416408878	6.58198581821824	7.2173823484406	6.95207691846884	7.340752335675	7.02442665244269	7.07641397838293
+"SMTNL1"	5.02980484446108	5.32065154877978	5.50816853495466	5.59140381272771	5.1394221960404	5.80457426883684	5.75589599596637	5.42571041175504	5.69808223441312	5.46546882253831	5.48041440804288	5.38021169389825	5.60879830448978	5.84255045465377	5.46169332928637	5.34184446798799	5.50816853495466	5.32609092047905	5.74598545953637	5.36687241889383	5.50816853495466
+"SMTNL2"	5.32345380034055	5.4205152597258	5.23178251458509	5.45069913548696	5.4846626770565	5.72203755414461	5.77127192872887	5.39698412682611	5.58782405101591	5.56892607943362	5.3982216045207	5.39848711230703	5.65484844807569	5.79422894055279	5.42289576960309	5.38370521075789	5.4986020896631	5.41602516276153	5.53113651526644	5.76204993174845	5.44343895423212
+"SMU1"	5.2650065954877	5.42947685607098	5.57839842347016	5.48987954108633	5.46605312551696	5.48243492216396	5.51403668859576	5.36877274584016	5.56942895324415	5.51403668859576	5.83459875330197	5.58983936975734	5.60268808369429	5.34810385551279	5.62586292082241	5.94037092567381	5.43832609017253	5.590621396342	5.31578696901017	5.31711854379321	5.74103330374373
+"SMUG1"	6.9727211968408	7.02103617147468	6.88055831935133	6.73337615606527	7.14790042134829	6.77341413070397	6.41591136250524	6.78455909971804	6.78455909971804	6.77591480721267	6.68701736932137	6.6200276552542	6.4245057148484	6.72654621095497	6.61591402911107	7.16219709531239	6.46809371241148	7.21902353799108	6.77129995226952	7.199674518853	6.78325238738369
+"SMURF1"	6.33640732739419	6.08866833249608	6.05059473797191	6.17931378267272	6.40564901530874	6.29660373104076	6.48301895153525	6.63139709368157	5.91548720512553	6.62607114770603	6.16410187659664	6.41883087186826	6.07650775961619	5.91870896366528	5.91423351962887	6.82390002428263	6.53416115874098	6.73474056459154	6.40868644196182	6.59552943182357	6.32525777612342
+"SMURF2"	8.38797987528062	8.18500589575908	8.36176176937826	8.01796150787143	8.14295109198834	7.5475225292265	8.22586809921009	8.90766490699387	8.3359157757203	7.5664210631771	8.14832874485028	7.52194123685787	8.52688303415742	8.32883631584157	8.31787092226153	8.08250860763962	7.79571368180899	8.29029927470781	7.85517453535159	7.84343892618694	7.83563793051857
+"SMYD1"	6.53766259297978	6.61834006691483	6.54274861891264	6.82675670316177	6.48659855365978	7.29744294658829	7.11402125781843	6.5620831400271	6.90197495551946	6.6713126530865	6.24502399657249	6.6713126530865	7.17563729642281	7.0231863125247	6.78400449443668	6.6713126530865	6.76161346811819	6.47325079711492	6.63859147756761	6.53267961709338	6.54574914604256
+"SMYD2"	9.17104955370425	10.0267332953968	10.2008464356591	9.99311559309171	10.5637692127408	9.54643809746451	9.04825145647415	9.58513062165069	10.086081140575	10.9252330760713	8.95824260831579	10.288477209504	10.2975288485059	9.43752458087663	10.689118191924	9.8004546570787	10.7121001354299	9.8864104850346	9.92933791810871	10.5423338353042	10.9945270326638
+"SMYD3"	7.74166362610822	7.81178376336069	8.37498001319933	7.53402618330654	8.86553127270581	7.27013223443657	7.11629937559219	8.05017715011948	7.97342771375108	8.69844306845694	7.68120527543116	8.36627327015617	7.43689131714826	7.05735217771755	7.78614392913641	8.14287325131413	8.19802009250313	8.14750262478244	7.8965136472859	8.89037079948198	8.60027932053188
+"SMYD3-IT1"	3.14271119645495	3.1784478426203	3.22732983609095	3.16200432193205	3.13847105691257	3.3525055792321	3.35974684225048	3.14453997780212	3.24171896305213	3.04048422142886	3.09754052939339	3.07462347054138	3.17735869910763	3.05957023985846	2.99675221600276	3.05733923985257	3.16735161503647	3.01356306771843	3.0916506608825	3.19835750287845	3.14646465602517
+"SMYD4"	7.79897237392128	7.71701319832738	7.94442151924241	7.41639130971133	7.79210383316618	7.7262791732287	7.50140465825876	7.61595106909106	7.56838683375181	7.47498769079932	7.72849465308403	7.45810969992332	7.57428746212465	7.9427163467288	7.92756398929434	7.35851095511425	7.60490738676515	7.68571058782462	7.87304224188598	7.73297930177418	7.80284186873954
+"SMYD5"	7.67162858614673	7.84957233357481	8.05117745769227	7.87300550257497	7.92172449252558	7.93835537630742	7.9121164145237	7.87643025602208	7.84376688971349	7.96915302163538	7.78517530695313	7.99551416061243	7.80184424452307	7.79871901276225	7.6200027788609	7.90032873518218	7.84703946581362	7.93552541298777	7.65471067231238	8.09469467614328	7.89003503944613
+"SNAI1"	6.61285483274365	6.3024630099767	6.37580876963065	6.3989013637132	6.61199328951794	6.84795423378298	6.94370282585637	6.56829149068218	6.38412493647906	6.35996502159634	6.47006716248822	6.54826578874586	6.18067058940336	6.67048998446635	6.49025940849559	6.66470356315546	6.42966724026811	6.66134482901536	6.49779517104971	6.15014401208235	6.65731702247799
+"SNAI1P1"	5.39892754370658	5.78822966810195	5.94570517050411	5.7899061833471	5.56907846654644	5.98481082364277	5.95151009774329	5.60212574688742	6.00690071208859	5.71490000134953	5.60419363768282	5.81619662808808	6.11472466745537	6.22644650517131	5.82114421262564	5.60179447421897	5.82129443145742	5.55554409429327	5.88140361669605	5.81523454846703	5.84364711205442
+"SNAI2"	5.0996399395793	4.80793477563014	4.54320941275896	5.18298190720009	4.91708165502444	5.51914627876731	4.45002369359145	4.87534583724935	5.97169701795247	5.46109208787534	4.74242860418635	4.54310013803145	5.20664822203678	5.44926843280863	5.30276328689521	4.46530702128284	4.77858039108318	4.97781460087483	4.76240544871757	5.01007994460018	5.34181965520137
+"SNAI3"	4.18612181474832	4.38368144056471	4.19846435600442	4.38346683328109	4.3542156307829	4.27507180428691	4.43997767611285	4.15451915766316	4.25606055264406	4.34454350586855	4.26941242684295	4.25493237028659	4.20954984641821	4.40827564418163	4.38159984102564	4.253592738339	4.23332404111426	4.28876937004516	4.30915360209798	4.41610592573595	4.32482534116006
+"SNAI3-AS1"	6.48659855365978	6.6796768882825	7.3271118933846	6.7273460584737	6.87525319773609	6.82263764459064	6.85915199499016	6.51995803456766	6.51679341483214	6.77125270573329	6.26456366526939	6.64096476970402	6.72955133925438	6.82552635231211	6.55251318066215	6.31631683652271	6.58802214920749	6.5793184786918	6.59787768265175	6.9365254433601	7.03256162162896
+"SNAP23"	6.48562233796425	6.06851851346141	4.58754906440452	6.0176547735569	5.49179782483554	4.884649085557	6.52497365685395	6.25975585486541	5.94712334832019	5.96772246960906	6.22262023394225	5.5112694699674	6.23594723313812	5.47485776751724	6.05623302149464	6.19633024839644	5.86585444325688	6.5845504670864	6.36032918818197	5.62132505356197	5.74612196094762
+"SNAP25"	9.87037414701768	12.3049139938718	12.2840869832587	12.0212788469703	13.1729652368016	11.3528551773186	9.5532652883636	11.7097899008941	12.2502686750621	13.3116304519609	11.3914379620513	13.1559901491207	11.8826805091007	11.0620779920663	11.8179018918938	12.5168154078324	12.8964354381656	12.3818860253788	12.3392456553653	13.1417666629276	13.4382201946975
+"SNAP25-AS1"	5.2032525029228	5.42162466143314	6.13087677548335	5.93336296076948	5.71885760934162	5.7531834368438	5.77127192872887	5.78868461051698	6.20785286910941	6.13626995251344	5.52751022658159	5.82572762154769	5.8733523614829	6.04150327463393	6.38287235849874	5.43033912368365	6.01666787726469	5.66128153398499	6.27834388392178	5.61692118458569	5.90990542045827
+"SNAP29"	6.99175174244325	5.96191221762528	5.95661696919445	5.7899061833471	5.93117398469806	5.93847547423765	6.30461059599405	6.23724687838743	5.89333356352214	6.18041278034906	6.67807499258563	6.38923756571974	6.21920483331264	6.62118928612059	6.19090719485407	6.11382462497283	5.24848461406687	6.51917094596604	6.42146001972313	6.56555775163109	5.83441656299804
+"SNAP47"	5.47006497632629	5.56552867380343	5.50053464884119	5.78099473259999	5.75448260871695	5.46361820736695	6.19942323116523	5.57358606228391	5.50369183984045	5.63828899016293	5.30501254633084	5.67686299731885	5.63828899016293	6.1224480885787	5.56035088690433	5.86996983482614	5.62557527514351	5.5252010292203	5.41739002127934	5.89477565612256	5.63828899016293
+"SNAP91"	9.62079525173848	10.9764172932388	11.3415119147547	10.9980240474252	11.4692592441335	10.2800028078066	9.49478794407966	10.8975800101395	11.4147569391644	11.4506854763086	10.193202559772	11.2400658587528	11.0454739593015	10.1898390596047	11.2513341247777	10.579669265983	11.507645210916	10.9908320976768	11.1406455617637	11.4258591585205	11.5074815569859
+"SNAPC1"	5.61045212872605	5.74684239654253	5.91086901740787	5.85799187326736	6.02906902001798	5.92653183691134	5.86239480513524	5.5999575340714	5.5416937103325	5.64483949374636	6.20978632950761	5.61982087341821	5.97578044062664	6.096469889435	6.24047386801342	6.29143773610438	5.33614652136026	6.22619955772884	5.71369917404643	5.61804202341636	5.41806993900915
+"SNAPC2"	7.57114298525407	7.52715244025032	7.80739431485602	7.67466398613698	7.57192370802841	8.19331265097322	8.51693596868101	7.66872823800088	7.60733754025702	7.83793467600731	7.43475731629073	7.77595585165281	7.86470973722511	7.82953535796489	7.71755515538265	7.71755515538265	7.67793688049769	7.58612798623808	7.94911727275084	7.86922762651084	7.69205962178031
+"SNAPC3"	5.49330913358787	6.0468097387372	5.34292816015436	5.81843514042369	5.32518134399339	4.54206777833469	5.93900793816728	6.17199203210123	6.35079628678009	6.55625627695697	6.27321998788647	6.0897392478712	6.40220405043551	5.88242208588665	6.64737513990755	5.95612045057252	6.49934267228835	5.44530682288304	6.18417523519195	6.19118197764724	5.811350888807
+"SNAPC4"	7.64629943569869	7.31983486011401	8.16594081854925	7.22715382510252	7.40849062741366	7.74563921049952	7.3451854065952	7.37759458026419	7.38660302813166	7.51892278731692	7.28700103280311	7.24041443980078	7.4069196227259	7.55057430622291	7.20797899188997	7.21700960278128	7.34014555446995	7.43177223832313	7.27744831196374	7.54301966408365	7.3310327498427
+"SNAPC5"	8.36241401703642	8.48675792133071	8.54423867264861	8.40516749271661	8.68735368983063	7.90316202956445	8.3258728967043	8.44769892116954	8.54423867264861	9.1305251679569	8.45424858719826	8.7830224167423	8.232507371962	8.27295633094459	8.07826151027946	8.87082388453846	8.51438509549938	8.91479324130409	8.71333694697639	9.08681996206012	8.98436806152482
+"SNAPIN"	10.1461004097651	9.52273362895162	9.16873408694191	9.48161959469478	9.38491155424926	9.10648171750545	9.70843296269931	9.57519061369383	9.48116719580515	9.56832426085985	9.87981349704909	9.43969520368	9.30514507233133	9.50450012918341	9.40478660363803	9.921154482502	9.2726995876357	9.7258199570148	9.71610799264417	9.55797677930815	9.4323846798683
+"SNCA"	8.33760184316499	9.82899159236148	10.6834595461625	9.53438019864721	10.3247959445041	9.61166154815797	8.78706710949096	9.68668505871718	9.81672454598431	10.4302684107603	9.260995489959	10.445507932221	8.93775475314541	8.80440412712777	9.69766558909765	10.1550348491449	10.1552476262084	9.92937933156795	9.84736526454579	10.4506957165212	10.3347137549347
+"SNCAIP"	7.62822900899688	7.22410733116361	7.41987345506577	7.04878750298962	7.00467961776058	6.71575861991493	7.2310111576314	7.06397349615304	6.98895900209594	7.36138583175018	7.27018473709955	6.57458841353614	6.99307240199843	7.25290212108591	6.89499727302047	6.8405372456463	6.81455627187589	6.7072724454733	6.87218910230337	7.85624126350121	6.69996491354943
+"SNCB"	8.25693139414593	9.72651896152025	10.182065748809	9.66348427291191	10.3576344613775	9.38294743199204	8.44055941629202	9.38969504455784	9.72457019841319	10.1835512049374	9.25257709909567	10.3578519998396	9.87031438749671	8.72024809451102	9.25855775188273	9.04992022080592	10.1003224835666	9.60907751944271	9.55010879651887	10.3561966656257	10.1673735082428
+"SNCG"	7.88913710686464	8.58436543601505	9.12563657117826	8.7964314839155	9.35475444358547	8.86829874961156	8.26442639870935	8.37085950135282	8.71953033618274	9.32880714518704	8.35038114893339	8.84513893206594	9.09884093191596	8.43169897170026	8.83049686345847	8.4297071967771	8.91222412836396	8.69985967667181	8.67948588323004	9.5700604972039	8.97450943465932
+"SND1"	8.66083270568448	8.80815896121694	9.05949311438837	8.69459347375798	8.85103494587383	9.07505459818529	8.63487457547025	8.92471924874825	8.81197442222753	8.98216663760631	8.87413175195199	9.02365121127365	8.71440420716925	8.85415517756226	8.56768951299811	8.93714922460462	8.85813312779444	8.8807182853507	8.80014931297045	9.09420515479794	8.80616733357368
+"SNED1"	6.84656686583571	6.03747444696855	6.24558145496323	6.20866008511568	5.44674933579662	5.81134053420349	6.0350524593622	5.23389961059546	6.07854110773496	5.94012709463831	6.53608070268181	5.74347818706518	6.13684989478788	6.0320088733974	5.97078844000725	6.03747444696855	6.08232164192336	5.99611632328655	6.22690525633763	6.07982647058376	5.56149123122782
+"SNF8"	8.64272618170934	8.29638132019807	8.42314406948339	8.43332349939956	8.45003616691838	8.60789823409234	8.40710336965572	8.43842127063434	8.34048117831521	8.83045813545465	8.44877895143987	8.3164186879832	8.51557567607556	8.21924562277915	8.38735777332786	8.50725257358371	8.17429028334474	8.52064471277606	8.45003616691838	8.69135551672155	8.6117083782502
+"SNHG10"	6.253989224412	5.69387995265251	6.25290719292042	6.48563026565919	5.91112690634001	6.48551645530801	6.33278064294494	6.37727931732064	6.17905614991982	5.79982978146172	6.10598801941683	6.04137790290043	6.43648135546249	6.37782405166399	6.97662928480019	5.97361773229386	6.22436321691284	5.92714320298987	6.57741859739826	6.31425210081629	5.98923867103538
+"SNHG11"	7.33948035271429	7.42575795452873	7.61242099329658	7.01490519242183	7.63425043570484	7.42921854199631	7.18562391801045	6.88654551047996	7.21906110801768	7.63208551643145	7.30892304397295	7.19830156306444	7.16851122513145	7.28438996137372	7.2786863758349	7.57315248043515	7.11461177313015	7.51299729351574	6.82177202416227	7.29443838367635	7.27690329627502
+"SNHG14"	7.14991903594132	8.26704820572415	8.7738148476282	8.25738374856231	7.97574355303192	7.32033719989994	6.8973389354436	8.08361685991588	8.35685733296461	8.33166341341686	8.31069996959829	8.62005383899108	8.34908298929721	7.74239827637603	8.37423807946903	6.82390002428263	8.58375050838567	7.98748013024014	8.22667753087946	7.76539160893028	8.22226245131935
+"SNHG15"	7.30557471563855	7.42237369246467	7.68703913358998	7.32474100702544	7.63980281088842	7.47791323633267	7.08733556584425	7.30155247512021	7.37904206813317	7.50826726040038	7.26466614596521	7.28209460472685	7.29895838800362	7.33235172097925	7.46128138506817	7.63096131881643	7.14526861955458	7.77009991131171	7.10858839816785	7.64527360906706	7.40910091980699
+"SNHG16"	8.66578185095987	8.03749161258989	7.863513606708	8.26678520158639	7.98029382684788	7.89860237907184	8.48989686330778	8.66144204018831	8.43419798290235	8.52319984900691	8.15947138649194	8.69677532368346	7.9221121661562	8.21652953566511	8.03495311749428	8.18975904622203	8.56229413035839	7.97319279886197	8.46651574441791	8.59758885212172	8.82111012797647
+"SNHG20"	5.73971809950586	5.63352203688592	6.39761313948938	5.47964844634887	5.57341323167381	5.52104285940787	5.80620573991566	5.22392500489548	5.88965963661776	5.55913411586354	5.71981638096116	5.72484227478508	5.51351511897459	5.6589526128091	5.9671472984666	5.76991494757256	5.68860105812512	5.84894110609372	5.72663012073868	5.87137762786231	5.51213484406984
+"SNHG22"	5.74937802466427	5.56523277049587	5.6931082589306	5.6758603760011	5.36027202064806	4.95943014296011	5.51039002598511	5.30755700104047	5.37698940442907	5.49885156945189	5.47324904980212	5.53417265189824	5.10975710368522	5.55154854818365	5.3548644381358	5.62219849310543	5.35882806836813	5.89708195618327	5.48611916643171	5.45124121372987	5.37555597876611
+"SNHG26"	3.97494949142478	3.91158880919857	3.82976686431432	3.79926816061813	3.8369495848684	4.57231203586178	4.03433476176945	3.81614318163694	3.67384967855418	3.69898837176122	4.19210943173316	3.99921583825038	4.122485580205	3.88821551655795	4.34634699370544	4.0128278824919	3.98762508073682	4.34921545494278	4.21320840120454	3.96242227898173	3.98762508073682
+"SNHG29"	5.06527802856738	5.49663523454808	5.34897049712495	5.20337139084404	5.26361500714116	5.47537054841702	6.29265203703184	5.56886260116579	5.45128198894574	5.17014205052672	5.89671478206395	5.18572128860119	5.41671637566033	5.57346117326148	5.63772810663854	5.50660704569905	5.30250260410653	5.64752814158543	5.79703484693588	5.44889029679507	5.13253650928678
+"SNHG3"	4.67027768483986	4.24684788847868	4.33406548410659	4.90137431937267	4.34353148738202	4.86910897564733	5.37077082100419	4.57752366716226	4.92155497265788	4.03979539245002	4.17602273649407	4.40810009162183	4.97014974118877	4.9592429241752	5.33382152669559	4.20447649019012	4.45033792972359	4.16089863856463	4.46526156100514	4.45781195459796	4.59755217539806
+"SNHG4"	5.44506213144477	5.85074585608654	4.77604813730331	5.78792125254394	4.49497619638741	5.32573148428004	5.69568419548536	5.5804366144694	5.75985229209624	5.44222632557164	6.0295043636682	5.5527768745232	6.39043496075366	5.90844966028203	5.93856905098422	5.48885225829638	5.56023349467175	4.49769858423266	5.65880662877465	5.27369798564172	5.56408574504071
+"SNHG5"	6.62147339030883	6.85871291891616	6.74796245748362	7.09181089117518	6.67385820263704	6.44049709314415	6.75369649905545	7.35592929390203	7.14641881677567	6.41247852259026	7.2990459408732	7.41829043542279	6.8181482046998	6.82940453565797	6.98452412047791	6.84825704317241	7.09596596793298	6.39776274134384	7.16191128996849	6.99834371175247	6.67403536289131
+"SNHG6"	11.080154925632	11.0920055303517	11.2499115776086	11.148964614306	11.1274925191943	10.8501676992432	11.047306638164	11.0811307070294	11.2313356937832	11.0267588425354	11.6267086180826	11.1200922022615	11.178391961622	11.2352053523798	11.3260717236446	11.2480561843407	11.1222151898072	11.424675533659	11.335581781828	10.6872668693451	11.0788242994134
+"SNHG8"	8.76552345071799	8.5840155376444	8.77527766886382	8.73008948984109	8.86409779382045	8.54618312158665	8.87229731732703	9.31278333384227	8.56465132023262	8.69522623324302	8.50436508510524	9.03488127479389	8.31853837014297	8.3165782718796	8.8193976151944	8.70847409866202	8.70566736477899	8.94107865353317	8.98489048416478	8.94920485690899	8.62606763221404
+"SNIP1"	6.62328576420513	6.47323395818734	6.29079601809376	6.33037105029075	6.35010296551006	6.29739496419467	6.15329836130395	6.03419139609067	6.33401339575911	6.44951345473657	6.49118793684738	5.89477565612256	6.20549549888171	6.17014694796028	6.21196869946472	7.11057823454536	6.1082182974841	6.79695984560136	6.1082182974841	6.53205189346253	6.34304095187745
+"SNN"	8.38997190938571	8.2448445573552	7.96273430090767	8.34571422959054	8.31009606890033	7.47114426859972	8.08865805354314	8.17294242706827	8.49244998227919	8.72138465152021	8.02834165054593	8.68134888396819	8.28426244194164	8.00256376820711	8.46789200270488	7.89778327613053	8.28604114472794	7.96727013389357	8.3415034473624	8.30393234743337	8.91418983284701
+"SNORA37"	4.31964956109654	4.25964472169835	4.21868254290819	4.16089863856463	4.11564255230174	4.43124979017056	4.50703242652118	4.47503174920082	4.29096542288645	4.18035281374824	4.40489752091192	4.38346696841571	4.25964472169835	4.36133064980299	4.30573565533452	4.17205010486079	4.20805324222741	4.10135820869725	4.51179069034665	4.10120220333222	4.25082922371137
+"SNORA71B"	6.60048740783643	6.91035292495559	7.01991236443594	7.31138458687548	6.97254063921027	7.11448699384107	7.28411615023298	6.75453620320195	6.88276562929137	6.87512032133119	6.20982778257398	6.84197817604516	7.0061630874394	7.15596833796563	7.01781923169411	6.54268555619469	6.84317536960288	6.33244514959657	7.01769064352029	6.80186702764582	6.86514611500985
+"SNORA74A"	3.81028923068326	3.64990272039005	3.71977168462802	3.76369375894177	3.53648873551209	3.96588077152556	4.00094846583335	3.69818758749797	3.58806004516592	3.60234206693375	3.69818758749797	3.65554349933526	3.7418625020078	3.84746626312461	3.76291806959882	3.69261799329857	3.77980776018154	3.57811711486754	3.64035244068263	3.50959445075635	3.91621045424756
+"SNORC"	8.32608085518971	9.16310308682305	7.87363067042499	8.04344182485488	7.49342792072677	6.03321226951357	8.4283923470105	7.93307613453621	7.1005989202189	7.35592929390203	9.0128199474792	7.78349385859713	6.56933146377889	6.9588820372315	6.79321803092499	9.50551976114004	7.01439829361731	7.52998948417801	7.7718266725524	8.21022120656979	7.69779100277849
+"SNORD104"	8.14497298671403	7.45984836831392	8.06872799023923	7.15276965917028	7.24348737922999	8.3965169161731	8.22466012758682	8.09806428737231	7.43912922766806	7.16835752537091	8.08611471147728	7.77517145234472	7.82162563626248	7.84633322300544	7.75284753129392	8.09018647626915	7.51104518496231	8.25598755790053	7.88010790577638	7.3561618703405	7.5512628914305
+"SNORD113-3"	6.38161606184533	7.05645530243891	7.43856280680019	7.18561197563093	7.3785230757174	7.3907333692508	6.75369649905545	6.97909003740225	7.18042140712957	7.24594891219579	6.73249105927913	7.1883277627471	7.55133634029741	7.18139049339443	7.85532670968193	6.22683560649477	7.25292363066184	6.93236570763123	7.35678865908058	7.16617582905599	7.14825997399382
+"SNORD89"	7.46709497361777	7.25331050157727	7.23013320444553	7.46015935406328	7.25331050157727	6.65180885434439	6.6626816843679	7.93991717282925	7.54056905080596	7.13132287759947	7.01703462445251	7.36856073145903	7.31330342795407	7.01289236700537	7.66195524348638	7.23048655205435	7.60976078706125	7.09312613040845	7.4235175230006	6.94100590129561	7.27880989073642
+"SNPH"	10.2185272597627	10.0713222210376	10.3394214759554	10.5134856941069	10.1795570237794	10.6066335553182	10.7064727121525	10.3512245029305	10.7277680406098	10.3997969012549	9.78837602857827	10.2947221447423	10.7115932916253	10.5819534224365	10.7178597469958	9.27744870239179	10.6209360132954	9.44515931585035	10.4466219607527	10.3665375169727	10.3093129837965
+"SNRK"	4.24132688842582	4.2968929217327	3.68036331813036	3.91071322154316	3.40093422646498	3.40614517266605	4.17391850508351	3.93971825420159	4.13060037830294	3.86515626774292	4.1585467690447	3.8184909476139	4.09194466674904	4.08814531566723	3.95469768883153	3.93514726605459	3.92704721552771	3.35846367299149	4.0540863765323	3.69449039770662	3.76649585251223
+"SNRK-AS1"	5.45449536128586	4.96310332338942	5.44378279433831	4.95858106847219	4.91948230201388	5.39256889886875	5.22644427646466	5.04003097162902	5.29805777601106	4.73150203762978	4.96685010146149	4.48864097290765	5.34922936628689	5.36935015111169	5.60348193940015	4.2947976575029	4.84091559407593	4.83051173523254	5.01313958959395	5.05599069991956	4.61641116110786
+"SNRNP200"	7.95696266438446	7.84851219529122	7.66210822367781	7.32883605111059	7.45117758262396	7.48106124913237	7.55937884527268	7.75698394164493	7.56990205025351	7.81972567172263	8.08774782733302	7.66924421605121	7.83620719490015	7.95274286141102	7.50444199067423	7.96869519538356	7.98547019073604	7.79597450268679	7.70315993702396	7.59468355416139	7.56805710946612
+"SNRNP25"	9.52013506236956	9.46946045828032	10.0216839397401	9.46822572852963	9.88255644050174	9.10877032341995	9.64846035024346	9.44802514362297	9.91643851416869	9.93741322544771	9.25421612898522	9.71805397317889	9.58958814751561	9.33708302147198	9.89438548075229	9.32195514362746	9.39713156842786	9.61409227568137	9.49274488527661	10.0585914791362	9.97766726773868
+"SNRNP27"	9.15429623317118	9.46435185604314	9.38893648337792	9.42815130930263	9.55145935190556	9.08194256899976	8.84008588180237	9.47815792235606	9.34354000261067	9.45025915117294	9.43336008910109	9.37320029217691	9.36664781901329	9.1124602161074	9.20761034412608	9.5882852992037	9.33071654287027	9.43650114500122	9.4593866406091	9.11135242416478	9.31081622019022
+"SNRNP35"	7.83924232080207	7.67347850354898	7.87146943554197	7.42631605673944	7.64214657063523	7.89548353168152	7.27799416284868	7.48616594406945	7.4926374205243	7.77643231720183	7.7146463986393	7.47918322053552	7.48425350792564	7.66586984930067	7.53875350295833	7.85461273203681	7.42576242207937	8.1929488101133	7.56116771586672	7.81565119071814	7.50406945633449
+"SNRNP40"	7.60554393241961	7.591298884471	7.54065391101505	7.63494185706303	7.86149679387595	7.17332184971239	7.27864260517301	7.36940208381403	7.53728209997676	7.84404612863587	7.93354799389771	7.69564083704063	7.26510532381284	6.84531542861096	7.48584282829688	8.47858978628736	7.6089151870544	8.36933897388354	7.41080688275018	7.76871892647883	7.73673622652932
+"SNRNP48"	6.7772114626075	5.98660192197118	6.15376382819747	7.12734024856153	6.19448927110769	6.88395045643449	7.43137084002731	7.29182999818188	7.30543613466281	5.90217651519794	6.84599783822945	6.25256561523732	7.64994531032841	6.92978375059187	7.98372621890486	6.73253309867692	6.48153003483979	6.83417210797332	7.47085043727063	6.13258263594845	6.17791112368092
+"SNRNP70"	7.76978723196727	7.83025126729172	7.80739431485602	7.99469079313889	7.17025254619758	7.56104023236111	7.70345158160046	7.27628442697031	7.34716641662718	7.80739431485602	8.28102002149569	8.03502906407461	7.88794541367041	7.79463132795733	7.44884122901412	8.51851666316738	7.85812616113841	7.89052475689417	8.18196236673718	7.52516488998493	7.80739431485602
+"SNRPA"	9.11531260346345	8.93827944494126	9.31328661305681	9.06405347855683	8.99961464544483	9.26988953410933	9.06450526254788	9.34811370255002	8.95831246810687	9.08108359511317	8.91286495829887	9.09295220011957	9.05970909118942	8.92042893525082	8.79843733530432	9.10038931651264	9.02732803402697	9.16835122805812	9.01406153669431	9.18888653753047	8.76828612528027
+"SNRPA1"	6.10168909540815	6.90606824295601	7.03645694321228	6.30997109772858	7.10922020161761	7.10207203751558	6.30732834348416	7.42620635041809	6.2177510339077	6.22257493412966	6.57149639187532	7.46058081348927	5.96743387470195	6.10752876867904	6.1860746721133	6.03930278435374	7.64879337072721	7.15807283729867	6.71352259996178	5.96299517609544	6.44698808816002
+"SNRPB"	8.232507371962	8.09323077534955	8.26271763789114	7.6943583063737	8.50917768136141	8.33738872974927	7.61126246641855	7.99662445521876	7.77796968573693	8.55275729029855	8.25253357869636	8.29139725612785	7.68335967722114	7.53772812911877	7.63911160355739	8.50686829187703	8.06268020553959	8.61893227751031	7.82114677015339	8.48786461329978	8.22393522400479
+"SNRPB2"	9.02347863583978	9.08531542711593	9.20628854620167	8.88484811740372	9.18337267787525	8.79255451959005	8.75882587844215	9.00092931628255	8.90946035097435	9.05153054603988	9.19320003305488	8.93328100178991	8.81643199248151	8.87877916143542	8.90010827791853	9.43895352671773	8.77974211708595	9.28694805511044	9.10396401221469	9.11014364168556	8.96586568548308
+"SNRPC"	8.27535838370726	8.34315432075854	8.22357159197012	8.33945311057889	8.1937951608207	8.17349382945158	8.24050957581112	8.1991861860042	8.34040583602068	8.49215581997714	8.43380928859279	8.33945311057889	8.23987465129576	8.19781826615418	8.24143656190352	8.44847383192356	8.24722694101732	8.35911351449358	8.53157654746136	8.55388129801901	8.41405667362387
+"SNRPCP11"	6.94006911604721	7.10224457595547	6.67146976167155	7.00842355104807	6.94247452236936	7.14102002719117	7.16473843811505	6.93699033670033	6.85687216044895	6.90264717107925	6.90650175691486	6.91711066302562	7.21928975938871	7.34513657145963	7.01837484696698	6.80732026383995	7.03545928314696	6.8830471313701	7.05245561862649	6.68352864621278	6.83240243108352
+"SNRPD1"	7.8643045033831	7.83280281188248	7.9309969334208	7.53382074178231	8.09403053177829	7.23389870243772	7.77750409055025	7.68524096571454	7.62534993604975	8.11798401092602	7.9493081008993	7.86846613645986	7.4723206350136	7.37801450736703	7.48469695791045	8.0522646636899	7.53707185731434	8.29503424642957	8.01036414524278	8.2157315239887	7.91176498545339
+"SNRPD2"	10.1979413225479	9.98567777478855	10.2450345006549	10.0658818790381	10.4635285845502	10.3056422523548	10.3515136897429	10.1419160942944	10.361379491751	10.5294778401579	10.1094478421655	10.2271988054159	10.15528446638	10.1325822862942	10.3751369814621	10.2161720244923	10.0035961056275	10.3029755456065	10.307045098146	10.4594378857454	10.1978895572616
+"SNRPE"	7.22383092312653	6.61386394485532	7.18611586451469	6.43242285773138	6.97669217781387	6.51498674622633	6.87460729011128	7.05431537897466	6.72021516917192	6.3134304061746	6.74667647055699	6.87688433805547	6.47351726541285	6.72559986704671	6.83435318072893	6.89371347301369	6.4621379774375	6.92727520509851	6.85669997994028	6.7899617810873	6.7452633460055
+"SNRPF"	8.48584951990425	8.50819629756428	8.70543099396601	8.27415321876297	8.5828328842883	8.09220941200767	8.5491975511075	8.24518034648847	8.55381203916382	8.54997800779201	8.80555690916031	8.55179986252424	8.01040694109682	8.08108875803776	8.17286452712439	8.80405450545575	8.12661314338855	9.00183334708905	8.45839991274562	9.14712318302035	8.6293789030068
+"SNRPF-DT"	6.90925218805527	6.96318432100797	7.15109623281778	7.29836201319375	6.9819437550791	7.55895302631525	7.81692422841303	6.99830201664913	7.15591135876707	7.10893364677023	6.78283831333998	7.14471789896798	7.16652349070569	7.63600911553281	6.99809407543115	6.71161851998379	7.06699506835446	6.73541380417174	7.24246962946781	6.9831094424038	7.0483809482486
+"SNTA1"	10.1615230690371	9.65333651579487	9.73407518257278	9.6823365577221	9.07670736016202	9.14649152288293	10.4810220311036	9.87104592475615	9.6426214754043	9.24242480101532	9.74019691187127	9.17491151975232	9.23731573795406	9.73301949509513	9.48598740792877	9.0458011852205	9.24531258656117	9.02284710509828	9.81435571466192	9.49872904532725	8.84971946045207
+"SNTB1"	6.30802016110717	6.29407006184933	5.25365123207263	5.51411324040896	5.50942297892433	5.393459544434	6.00209347698379	6.30444160047719	5.83136428869199	5.56309010060227	6.82009965654359	5.44971040984292	5.24407068704531	5.27815493730015	4.88606067127486	5.37182378178464	5.14342307325936	5.5269517990712	6.0268456023735	5.45124121372987	5.02771611513067
+"SNTB2"	8.22065036771868	8.00404896471562	8.17737008259317	7.93387785446495	8.27469212299454	8.50662184113913	8.58674958570969	8.69470558652379	9.01531250233265	7.91576102610857	7.97513239735554	8.232507371962	8.54474764168174	8.27015701792977	8.90968405658712	7.35844333674862	8.43441038687766	8.3409733287759	8.43835429954573	8.14075235261352	7.93696507295953
+"SNTG1"	6.93598619561004	7.8856568513513	8.53455027188801	8.21403339155683	8.52200556080012	7.90083857365788	7.37351769904584	7.76476422502832	8.52821986942494	7.9118462233339	7.25537606157764	7.71852533458616	8.34121277354153	7.76213073185751	8.47084258830318	7.05040559753525	8.27944061322112	7.75301881803266	8.18001281618135	8.18774484005451	7.8596315174623
+"SNTG2"	4.64735781347347	4.52946591603539	5.03682152011927	4.46925660117077	4.64399138252455	4.61046419147135	4.20680752097373	4.22054611874589	4.61552486600255	4.5825628374858	4.27491836943726	4.87550200897133	4.40865990783549	4.64079485303077	4.55917967979255	4.59507808884841	4.46925660117077	4.59485174265717	4.41527651112775	4.64480477763192	4.537699768961
+"SNTG2-AS1"	3.70794096979385	3.94921944891471	4.01258713155438	3.85946035883088	3.59372011370603	4.24696802352194	3.86834686509364	3.83745260398178	3.74941634587029	3.75102915052088	3.65129774480744	3.72645947402005	3.86456715995942	4.02668199345132	4.15871293994809	4.00530926032948	3.90163722039288	3.73174540891932	3.74396997093171	3.86064045687462	3.87360085135976
+"SNTN"	3.11212746062439	2.99281493274325	3.12360616758182	2.95832234430347	3.10445188916792	3.13903445745912	3.25336647669354	3.12980121317585	3.12465120633958	3.26917799243477	3.05350910619383	3.10445188916792	3.0728656227647	3.11492434702965	3.15753643737948	2.95832234430347	3.30961765659261	2.89445650676547	3.10304668872694	3.34871267237526	2.99245884840149
+"SNU13"	9.1076424461604	9.20668956657522	9.8512395931782	9.30956066217372	9.89560195488037	9.42672047918825	9.00976001621037	9.124408938072	9.47757868874043	9.96771540912371	9.25703775460296	9.86533616799747	9.2935577372676	9.19757900072679	9.29035969450076	9.43252689207734	9.60027651039677	9.5073011426976	9.45115027634531	10.0512193696008	9.67347728948593
+"SNW1"	8.01889785547155	7.82164100220246	7.63108454949645	7.69991876578673	8.00646787429886	7.83984217799022	7.55842807569214	7.97267308442307	7.72237425072738	7.84809282062679	8.12794519679414	7.95539438861243	7.50074979352582	7.43822888214871	7.5805997950082	8.17670218237907	7.74769562300816	8.38222444198314	7.7133693935988	7.98651147286979	7.88870716602761
+"SNX1"	8.78213101533542	8.522013418178	8.68529191391775	7.95906787015642	8.45096113034421	8.13111135523494	8.0481384746572	7.82143338664233	7.94295021207224	7.93882612330676	8.82716219848511	7.71988418613691	7.85116047325039	8.17512493297441	7.87403588278218	8.90117268273948	7.88723449318254	9.16572470863463	7.8900271023864	8.16683498733226	8.06431023824828
+"SNX10"	7.40360275878882	9.00156157499582	9.14687524884703	9.24619652955389	9.68746395304968	8.46934567108419	7.13985676381172	8.71531335183346	9.38142118372922	9.4145456397848	8.30046505141072	9.13790999169636	9.4321177341346	8.13218067855039	9.38649159479395	8.44118639539027	9.32900177087515	8.82246827107003	9.19980150174296	9.35559288740987	9.44985925156157
+"SNX11"	8.48723138944325	8.18328783010542	8.63093939290496	8.34503236872976	8.34503236872976	8.4134523299024	8.44994350272028	8.29109064002708	8.48541127450806	8.24846986108452	8.24229591120592	7.98041446088413	8.16139304680311	8.23323379113609	8.49187760753066	8.39256319841041	8.21396886792613	8.53025620976505	8.34915165795541	8.44886162618456	8.23909095605086
+"SNX12"	5.81852990952262	5.81084919254852	6.40141825352454	5.98737603366594	7.26352841327133	6.7882932219884	6.19355576793619	5.86340498820644	5.65163580297385	6.82649758996161	5.7943145179709	5.7637414832805	6.20031612601905	6.25500150942106	6.05359572465058	5.97729163709182	6.00341217001052	6.22987542043983	5.67461059957541	5.74867421867243	5.91536334384264
+"SNX13"	7.32772224941523	7.48079152586404	6.55372905713584	6.82786020500844	7.19824131304486	5.77455053618644	7.03447590425833	7.50628802640413	7.38870902284945	7.51462142885958	7.15507270020241	7.43098683691575	6.52635752284224	6.65175005579552	6.99766533679734	7.24411072951061	7.56700661816651	7.38235288064339	7.14544865350116	7.40561808871152	7.41527748624824
+"SNX16"	6.66396538958557	6.53953965318755	7.28143450503872	7.32883665417741	7.44231726230682	7.27574193144269	6.99885789196551	7.11126766352169	7.25985572269294	6.68694180100666	7.03368636554847	6.14844941069843	7.30431071600676	7.03368636554847	7.7059405988459	6.76173982384879	7.03368636554847	7.26549286468951	7.1845759063355	6.61669703473296	6.71115436164282
+"SNX17"	9.79072800443401	9.40072319471117	9.50954483547495	9.29543035991866	9.8536807748328	9.46752097746782	9.50827851910728	9.35480949325544	9.41427134732253	9.81930447217391	9.50827851910728	9.65435590460983	9.26054193728297	9.30704977925487	9.2646889373953	9.85578753623194	9.45639930200801	9.72037212117958	9.40223980953813	9.93385972761248	9.75918504331191
+"SNX18"	8.84954677694862	8.4695885275451	7.80257190672904	8.18820695976354	8.01782230530516	7.8311197421974	8.39660842928135	8.41207999829261	7.65694955604946	7.90176578891646	8.88692584130404	7.62255147014976	7.97618919819616	8.14687252143649	8.17804314591019	9.26746586595605	7.45320995948544	9.06563492675694	8.1938840020513	8.04187093544101	7.84279121488465
+"SNX19"	7.13075189147731	6.78335672170218	5.14575201996676	6.17391915869616	6.14332375116628	6.15164644333065	6.87446535633705	6.44130716443439	6.33796931483235	6.87155802510649	6.85955762207288	6.70644702481444	6.26690882677525	6.41442463628009	5.94681918439467	7.06980005644175	6.49045125204028	6.58286625603478	6.73572496623564	6.72492877042148	6.67488563498139
+"SNX2"	8.50884657872792	8.1193563808017	7.21236047386649	7.9365844068514	8.33994558701084	6.8797024452601	7.69910307547137	8.23049658436451	7.81583433450267	8.18723498418617	8.29669157753114	8.10886801795755	7.61319952732196	7.38400074926007	8.0844859670463	8.376617000571	7.81356462957067	8.4281494664104	8.1481718302423	8.65056087340894	8.15653541095828
+"SNX20"	6.77697364057724	5.37621609782587	5.20670877425681	5.54681600341983	5.37374158101716	5.57584630224154	5.27009173813964	5.50614618047589	5.32492952838622	5.21865503267659	4.95326025616787	5.29452634277034	5.38009060397251	5.51106357142161	5.2573065055209	5.45101565808128	5.47556870588172	5.68072592704744	5.64912814450088	5.90626291357254	5.70881492160149
+"SNX21"	6.41427413413442	6.18386872712147	6.62766309509604	6.25382490127099	6.50454450246594	6.39106082911404	6.05567768838387	5.9195566357626	6.22991572232934	5.97098423442232	5.95969374802681	5.8513957017191	6.18525411831997	6.72475166620446	6.18525411831997	5.64886999928467	5.94169982304256	6.0333996089726	5.85496395743792	6.48626606024589	6.3869736515615
+"SNX22"	7.55573783876063	7.83137524469429	7.63208283759079	7.70909345215524	7.39248899771804	8.02757833422886	7.76787382346436	7.44770987993301	7.58422065601105	7.51462142885958	8.22539234521363	7.51706248897218	7.69365113368083	7.87372466432718	7.50317045147816	8.56266221612596	7.39073860083606	7.94424206553472	7.58422065601105	7.19357582068434	7.50217010610125
+"SNX24"	7.43292250974021	7.36133402334404	7.5988301556704	7.21414721982182	7.61195720444186	7.06922773444854	7.24189019551447	7.17860062429768	7.22060577076352	7.0736126874871	7.45181164843842	7.18759175006809	7.27730547470645	7.13032709359118	7.02101552085056	7.75688223140945	7.12321107632948	7.83383084209237	7.01855295175458	7.35313762127499	7.51191413171283
+"SNX25"	6.27370354964452	6.27776166667707	6.36658002394389	6.39799798047734	6.66327692345192	6.12465512811035	6.51357807736242	6.29523602317659	6.62298504767989	6.98658887428142	6.1558479329793	6.39838341513803	6.45176584656643	6.29215016887018	6.51892322429701	6.21953429996829	6.6308328899224	6.40230061257473	6.2722224141104	7.02286830747119	6.52411445847732
+"SNX27"	9.06273234055143	9.00438333015608	9.60689152785775	9.66281854840094	9.86390073557924	9.91605512550328	9.18963097255255	9.5113959629784	9.98650270004097	9.45941146332667	9.13328258991427	9.59725289480137	9.896823515677	9.47552266539283	10.2441512581684	8.99876542716321	9.91415588996018	9.38094458161583	9.7499627286912	9.60707761920407	9.56755264747028
+"SNX29"	8.45123267080464	8.02457807390768	8.12216527760881	7.58933817519134	7.97261605344023	8.22272371522686	8.18348030654633	7.9357243205304	7.67110138749825	7.61284626571293	8.43366063528134	7.55055674204694	7.50111508868249	8.02043058650592	7.50444199067423	8.55669068760057	7.65705579945834	8.45312636044063	7.41294220924298	7.67939593295651	7.76687637663095
+"SNX3"	10.5020034931214	10.8517189215373	10.8807606510656	10.9257955648724	11.2137444393664	10.1915368276956	10.5108159238943	11.0297876227113	11.0864982768141	11.2057700539286	10.9433800184678	10.9518095564157	11.0148077567318	10.4803432564708	11.2057609206568	10.9972846255399	10.9883339928659	10.9678824689908	11.09519584078	11.089696080633	11.066951660677
+"SNX30"	8.75517412613699	9.03931486928357	8.89440326010346	8.96483982710657	9.04532512453719	8.78504667838152	8.26726121465973	8.55483813748152	8.88280728550294	8.90361339608461	9.18664132385562	8.87097062473011	8.57778003128722	8.40871356230343	8.87097062473011	9.49990457680657	8.93381600055881	9.72904345206254	8.68134358209595	8.68503148192273	8.87097062473011
+"SNX31"	3.87968452712187	3.49136088046091	3.40959136858662	4.10609829868158	3.52316921126077	3.64705212656786	4.54751080496412	4.38638999189244	4.08772556525521	3.46869669912305	4.31244330542702	3.66067129281441	4.42181077850351	3.89719159315489	5.46462773246202	3.42824904833296	3.89671727649189	3.51847148587466	4.33164497236035	3.36617970592634	3.51808161007936
+"SNX32"	7.57547666209614	7.96911332589302	8.25647973202482	8.21895401089311	8.19741992575913	8.0332495229252	7.88964981378791	7.96911332589302	7.98192427124614	7.83823842316571	7.02615509961952	7.56407551294938	8.35307398769062	8.18751761648202	7.96911332589302	7.14829960318817	7.96040584536354	8.03264869138912	7.94307607469407	8.38595897757471	7.58931956733451
+"SNX33"	8.33907755549929	7.90004208700505	8.15572313453582	8.38609007382848	7.77842880538513	8.37507081895976	9.21813005918105	8.35722145300132	8.2595107405063	7.96997088539769	7.89306343718245	7.93350097347041	8.49309421096354	8.59128848681412	8.15572313453582	7.66710911095412	8.26938784274404	7.71835856227561	8.23182196580674	8.06946527257973	7.9509039554796
+"SNX4"	6.64814949054781	6.48610352517505	6.3656419870324	5.70717331641882	6.7498716276438	6.03586155280288	5.5203040729742	6.11274830766711	5.50048148598516	6.67661518261751	6.57255804519316	6.12664917398161	5.22308012510987	5.80007409804093	5.79824429846882	6.9664043423685	5.75621619225393	7.18434099730337	6.28412657402775	6.49209967286875	6.20236156879905
+"SNX5"	8.95152181832216	9.01718803446675	8.10621669345641	8.360503804422	8.41325418414054	7.59491218814995	8.44645208560762	8.90512767405868	8.42135704799744	8.63718496804608	9.29019462319222	8.47799947107334	8.43526568250891	8.36130559273044	8.02725268135796	8.45338085359692	8.27166531384077	8.61915271198351	8.75780635268415	8.59884808342435	8.44133477296254
+"SNX6"	10.1231650622535	10.0346108900862	9.70817008581993	9.77627841938787	9.69996103143763	9.80968490890221	9.56588440363337	9.75059381319236	9.42338909108626	9.48752180355614	10.2647910204902	9.40150595090624	9.67293489661988	9.74913233688112	9.65819911179992	10.6734432633102	9.4964380429885	10.5356368954227	9.8122263243833	9.38692448151063	9.73205663300429
+"SNX7"	8.65669609276429	7.72926597132056	7.71973928455013	7.73556651679379	7.77504935143844	7.15050562234517	7.64310551347757	7.96899235549846	7.93707228270189	7.77889955346652	7.76335106827105	7.75013954782716	7.2003997546311	7.45213244445303	7.82003834772069	7.61201305901531	7.58178466082014	8.01765739287501	8.09923689583328	7.9511309986087	7.39975007636984
+"SNX8"	7.67173670151133	7.54424420592401	7.62051610941655	7.37830756673237	7.22811917533948	7.58513311020977	7.74127889203923	6.97298166974515	7.18168102398422	7.26928540015662	7.82285209815637	7.34081007347799	7.39669705715645	7.47882599381016	7.317352100548	7.73886263071729	7.00776389498455	6.95790574385979	7.21665936383684	7.78554522095604	7.32536465971414
+"SNX9"	8.33852302013763	8.2199856809103	8.05923123742626	8.15267801808648	8.39913647216677	8.72731733455223	7.86949927336858	8.18547706644226	8.00364837392373	8.30432629507736	8.69757724529876	8.23161152504135	7.96283774223694	8.15548643551082	8.13297128211925	8.72411887865743	8.26431449924144	8.79619701287969	8.42475378665617	8.31528969037997	8.14132843982429
+"SOAT1"	4.654168321126	3.75599050394762	3.00959318115518	3.79432913785777	3.79340624972589	3.47298025610708	3.4857156029751	4.46772519490615	3.65785475451094	3.82336123840911	3.94476760060711	3.63239521873465	3.9155389216685	3.84798897310446	3.84242713449612	3.78255530402649	3.73091256489565	4.23374867626042	3.88196035080539	3.86475056779376	4.03621390265701
+"SOAT2"	5.41190899518661	5.742988148585	5.64980489707345	5.5786550283932	5.47093789649455	5.66799992226041	5.9721574541798	5.49084493000622	5.65581877401343	5.61316150619975	5.3616047483371	5.65760032799735	5.57617260052684	5.5113160653365	5.42738999432595	5.53333754755393	5.44435046973376	5.23814922479265	5.55334540925022	5.21067671711291	5.63900600221967
+"SOBP"	7.86680100048992	7.81383196149988	8.30419147216305	7.92173567230808	8.41923414182978	8.57592310855061	8.14103643062968	7.85535155829367	8.2793094224786	7.96569079009493	7.62619867337526	7.7147741870975	8.13383944856945	8.12550386186929	7.96998827375854	7.53703416790786	7.85154842788104	7.82900771928259	7.80247895888647	7.89329343825425	7.74301926115313
+"SOCS1"	4.72083029964895	4.65908176620168	4.71780218448327	4.85767483117148	4.55357221756538	5.09448485140457	5.19678560072164	4.85960297849753	4.6253586069483	4.7393205445724	4.60120708285832	4.68284062366874	5.00083431877139	5.08610197506607	4.78447994247241	4.5187508618168	4.75799280259008	4.31984407598437	4.80167636127478	4.60010189223684	4.75799280259008
+"SOCS2"	6.21359181220585	5.05635838941446	4.94137019598559	5.05041646892085	5.70111083191113	6.22850416767973	5.09173965331152	5.30174962700174	5.07008992746099	5.68442706460532	4.90407921626027	5.53397307648856	5.34547426524111	5.52984216214019	5.26262196664403	5.1356992690867	5.34547426524111	5.26520382312283	4.86390044260995	5.34547426524111	5.70468087494578
+"SOCS2-AS1"	4.21725987571481	4.25964472169835	4.15928216981959	4.37778303927498	4.09438133450056	4.44800380147524	4.39247531279247	4.14008058508097	4.3096861554949	4.50917277363848	4.14713748444483	4.31485714777707	4.4382374245428	4.57512919121534	4.27632221626137	4.10209114494077	4.1154126029276	3.94839467657988	4.04294723039395	4.25964472169835	4.37374904128215
+"SOCS3"	7.58228534901197	3.81528790013212	3.63694096701764	5.43141547223631	5.43141547223631	7.3305449316845	5.66563688408218	9.07658641222318	4.66544200921835	5.40042242169459	4.6729775901758	8.09948909689729	5.6828979501115	5.79179030865716	5.42172774653981	3.84490238211438	7.70048214111021	4.273549598826	4.5849034697186	5.04038710360852	6.92042542835252
+"SOCS4"	7.92598775110559	7.57446632187701	7.5260960138965	7.89233146791382	7.78450411377064	7.96196734953714	7.93639352786569	7.68835026327221	8.23157981399742	7.60805850581253	7.77823921427436	7.32941104083791	7.95479312774093	7.95464388703558	8.56678369698881	7.65427187887467	7.64214777942117	8.11823127517912	7.7919144397964	7.39388914979505	7.74610778153884
+"SOCS5"	7.86476438572962	8.02820299232406	7.55947314580066	8.07617362425547	8.42601769691531	7.69734168779544	7.62592742898158	8.0247778066068	8.04717083945794	8.06146081719751	7.85578532582266	7.84945395791751	7.95388390129964	7.79386537208857	8.26770710135932	8.46177171355858	8.06954240438974	8.53862840398278	8.2056374146159	8.37991502587005	8.12940087589733
+"SOCS6"	6.72697327613117	6.34470853238959	6.4600171844988	6.68388116999594	6.45370263987459	6.22488872846596	6.76950191051446	6.21430936067654	6.75716443900125	6.07748274864032	7.13322314379516	5.49581156577336	6.73545322486832	6.8279729521979	7.28659539254444	6.6831755214181	5.91683972841514	7.52865688013808	6.60745477109729	6.0077724735066	6.49658857104667
+"SOD1"	12.0323890545819	12.0743829199118	12.0573496374615	12.1578195861782	12.3839793405042	11.5008872795839	11.7355610362228	12.0897999233118	12.0937154949874	12.4769164782418	12.0766751407618	12.2856010131057	11.9347462017239	11.5887095198702	12.1265651168167	12.1682620843285	12.1079637229252	12.4147129155659	12.3187963688228	12.4010053902631	12.2963602541211
+"SOD1-DT"	4.0568422632517	3.78938658170244	4.19993241250776	4.04943176170933	3.78218830626431	4.27490270314674	3.91977967638055	3.73881610293036	3.7686236235222	3.79444069421563	4.00884255174286	3.75637153586211	4.04759675383671	4.31927242251548	4.0676741857044	3.87192574447913	3.8696805943089	3.71375338149408	4.03633405243327	3.71033839128037	3.86851979938187
+"SOD2"	7.0529614699375	6.3484177062266	4.49476261987215	6.3404455166688	5.05655178333378	5.52728849031873	5.99267807603135	8.25202964711303	6.3161143980193	7.25343758471141	6.89797264248616	7.60629867878499	6.82747468678841	5.54963137089937	6.23332799842343	6.05814143881092	6.59050504581149	5.37758806214614	6.42424644388821	6.75918478976919	7.35938780962426
+"SOD3"	8.12906915946471	7.4788679642007	7.52560871787633	7.62523167282733	7.62523167282733	7.85865892624291	8.26458458202753	7.7240375877751	7.61026783779814	7.69785666712403	7.41834242336347	7.77105816687442	7.496159465322	7.78558919986499	7.33820724729287	7.31857145416193	7.50622810278568	7.07474904494666	7.34264583668494	7.86535303304209	7.35217553586023
+"SOGA1"	9.16288622320579	8.6290117208706	8.63670016427692	8.67235093828813	8.46704816789339	8.94417344934994	8.6847974330761	8.34396063991397	8.19721570984083	8.03373737444489	9.09686523284502	8.22034670667226	8.4210890081585	8.62195969765063	7.86916802829332	9.12963559882383	8.27215840527206	9.31817999969175	8.21269122497577	8.26661932260726	8.20315844639445
+"SOHLH1"	7.36859194409745	8.11986854424416	8.2004080694398	7.88708775080522	7.80364401641935	8.03490585462742	7.82693961111681	7.77763132153187	7.8478393847615	7.780775161387	7.55717919032334	7.6598599581471	8.22701498342558	7.88839411568211	8.00955567114369	7.38290515786829	7.92273494734146	7.42751376852352	7.71425305494609	7.65459224479537	7.74433556539468
+"SOHLH2"	4.05149766962357	4.17522265277122	3.84509186012018	4.06007079764026	4.39846251457109	4.05838504008054	3.83299114761122	4.29938893389525	4.14666288736518	4.50340792873981	4.20954984641821	4.44873361751869	4.12998488998966	4.82577587661958	4.4752576076541	4.09316396037225	4.18709686750155	4.29935897365867	3.97465922685431	4.54015475039248	4.62487565229022
+"SON"	9.33969897944228	9.27923784575268	9.62588399171172	9.32755953940923	10.0734820867771	10.1874668924172	8.9028959677487	9.53386590663497	9.39111240926413	9.67209356990996	9.68172418001565	9.46168684178983	9.49766097560938	9.48983613591426	9.31585705778273	9.12758027574799	9.3246880194497	9.72756024932339	9.17540865454953	9.47677815771891	9.19583347694578
+"SORBS1"	9.0993380942653	8.24926844350002	7.30013194167754	8.08526730822582	7.96594431362121	7.20331024732658	8.4482311765843	9.03729728459633	7.9745449415351	8.08243507894148	8.85920556921977	8.40912011095389	7.68614580176293	7.71073395721727	7.28046744359222	7.61711687562212	8.08243507894148	7.62886547000424	8.23919707414378	8.19197900806715	8.09073299740681
+"SORBS2"	7.43631364884053	7.92049308078975	7.60325293089936	7.63925577326293	7.39236994627095	6.77639477973076	7.02823679380972	7.94739718292143	7.61530670034875	7.63819552001787	7.20194168113604	8.26370625956353	7.52845539248031	7.58880266125463	7.66036666566418	6.25608878472157	7.62502835405209	6.64514261726853	7.88878048093814	7.35597566334755	7.13064567256785
+"SORBS3"	8.56025258565645	7.30024198905398	7.2432867809397	7.6831117796741	7.14173705169734	7.33639916785245	8.19995217171019	7.62070106067301	7.09679995531358	7.53230870911753	7.86905939671093	7.47249910618822	7.48363051598186	7.75557623220042	7.01783594321513	7.21784511401927	7.63140475407931	7.37866653160343	7.57284922614675	7.64844286276917	7.49797412503815
+"SORCS1"	6.89431451881217	7.7995127820479	8.61913051436434	7.800864147461	8.5104426858147	8.34432305875976	7.68466161220969	8.15471476332839	8.50688227607458	7.83755407535359	7.49568363440302	7.96865606960444	8.10056934593675	7.91646568079499	8.30973441869734	6.97969612447469	8.33727862685611	7.78016630292161	7.7443730022105	8.1164048684318	7.96637563691898
+"SORCS2"	7.93326715659706	8.25878582095365	8.00614851770804	7.42156121420112	7.63007391216213	7.13766326225567	7.97971951374142	7.9530046731859	7.24034149992721	7.56701898408677	8.39479511917097	7.53402618330654	7.47834787029443	7.6624008113205	7.34751291418922	8.74356293697725	7.46079703616847	8.45094375884071	7.34666214702885	7.69916042539788	7.5896107841741
+"SORCS3"	5.97677760395214	6.52962342532803	7.08215591573458	6.17524626155772	6.85627934396362	6.86955153995595	5.96418823066937	6.14311711861758	6.3416570284169	6.3416570284169	6.09919837034558	6.66450797052127	6.34317444687729	6.04567485157508	6.28552169706969	5.85230719743743	6.2511768438227	6.29448463693242	6.01297750662984	6.63454301406583	6.39504087799356
+"SORCS3-AS1"	6.31825079689815	6.33740060099385	6.00670622707959	6.3793385587435	6.32032406766099	6.32032406766099	6.53259054546832	6.56464170796674	6.34679519790542	6.3134304061746	6.01841212056672	6.36901036811347	6.50269770151185	6.20120137251433	6.41617790632765	6.32032406766099	6.58111157836732	6.01107532958877	6.36901036811347	6.20838885458703	6.40619687176045
+"SORD"	6.02753695164186	6.12027771659163	6.1962199393801	5.68832588711302	6.37920010500765	5.7311886738768	5.84630536727944	6.0453870430492	6.0453870430492	6.05962834716509	6.37498913952455	5.96614896976487	5.98344986727613	5.74605000014997	6.07650237532957	6.02991214378202	6.25942290570795	6.29495736034169	5.94199227982069	6.13314166538878	5.88230598439332
+"SORL1"	8.38948351102779	8.55950193863211	8.82171757031606	8.10215019756995	8.3951062056387	9.14910442579657	7.93574393852973	8.69914307822607	8.30645475687306	8.01624109663309	8.49432956663767	8.71344845297201	8.2283181549071	8.43435630345302	8.584068989563	8.30297820069027	9.04690282543026	8.41679384012253	8.53245567625978	8.15316075660138	8.03294827792315
+"SORT1"	7.87703143690213	7.9892498403827	5.72520648426166	7.68427577874326	7.83326550680641	7.14337548341246	7.53363153942866	7.36539487216701	7.06839074560755	8.14161533517241	8.58426415437728	8.3177461646872	7.29881995506171	6.96599214449395	6.70501423793516	9.24377277106231	8.28389192961772	9.01390465201716	7.76377859913707	7.6787157216281	8.52197048517265
+"SOS1"	6.54809057595236	6.49541904839438	5.98339725878834	7.09922609300199	5.82050475893202	7.01847332772064	6.70645717451396	7.49954681382054	7.11167767269268	6.21071452370014	6.83693246640718	6.86534575914419	6.77643519189656	6.70645717451396	7.3678433338441	6.2352395953439	6.98367085788381	5.81742417376919	6.87918148913865	6.41994771698799	6.34211421021611
+"SOS2"	8.12146392403069	7.8477982664709	6.83881100206763	7.29138803178413	7.38907567629737	7.2703040954717	7.39096515153647	7.34161502994819	7.17977489033492	7.26091980620223	7.93445399171038	7.34751736909214	6.95735427295829	7.10169220903892	6.84609215220421	8.16582198524017	7.45207403753485	8.38957526107686	7.2703040954717	7.32584229263485	7.16085925246119
+"SOST"	3.49132903529734	3.68224171414186	3.56777835799567	3.63188687853499	3.50939435850739	3.85557991490315	3.84469698293389	3.45687964809057	3.5940220400786	3.60683511117734	3.50640000341262	3.63188687853499	3.66297833066524	3.71173259061918	3.63053567169317	3.47115147475991	3.58634646862214	3.43558281796539	3.32761660028896	3.56575746837103	3.63798920775297
+"SOSTDC1"	4.92368784051223	6.89655116131233	7.49161469563821	6.64007262697811	7.84573426572522	6.85965758981949	5.15224871155995	6.31570035715964	7.26553826201331	7.78723107997323	5.80002692627781	8.27385006539485	6.48487771627851	5.4902672560396	7.33576664980664	7.13213478212121	7.12121399458962	7.25204742771898	6.52987003647853	6.91457184297969	8.45359516846053
+"SOWAHA"	8.65334701771049	8.74217391878251	9.98496650082333	9.4798095646454	9.5145071678881	8.69660250991853	9.08601222113627	9.24737736175632	10.17392836874	9.11167188721617	8.7883981733532	8.99733118308116	9.65585006176918	9.24048699948911	9.54096161544256	8.6417548451119	9.29839903547508	9.17921344909515	9.57748135403035	9.35705201188232	9.01533554450152
+"SOWAHC"	7.59144121851892	6.94594365284197	6.93931963830364	6.72469453147528	6.72540907508622	6.90085295670666	7.1401580207596	7.65741705916454	6.53542652902897	6.59876687173358	7.55569035421069	6.01387182920311	6.57907095996951	7.08556613524643	6.90364751217706	7.85956836855938	6.49176348648264	7.74343304190543	6.72625757277823	6.75841557695329	6.5372915258006
+"SOX1"	6.43620722303277	6.68966627182857	7.48462847510075	6.78504760571996	6.5871200324058	6.45614052744605	7.01417932530952	6.30115120486387	6.80005458067239	6.76831448038925	6.74667647055699	6.71302047392217	7.07509925562834	7.03910361443129	7.03170878563977	6.04859474068423	6.70031636667058	6.81417379459916	6.06701133657304	6.78860350437661	6.78245912634857
+"SOX10"	10.0219921567312	9.87650707665172	9.36733057822092	9.86385081473273	9.385510413816	10.7523582268795	9.87165224591266	9.38182689617907	8.65536436558581	9.14017590323352	10.6280821817581	9.33594287446716	9.43501451173417	10.1399537879942	9.08791810058064	10.9320592795675	9.32797687248895	10.889507336093	9.52453758363953	8.55113666239128	8.83702992521578
+"SOX11"	4.64449013530806	3.97654623614518	5.27259895895142	4.46431778670806	4.64449013530806	4.72814811255654	4.86433946455639	4.75829470016611	3.83586897020827	3.9813390914281	6.02792516106822	4.56134450145863	4.11330733349501	4.92480750654873	4.16544352445487	5.35877856396951	4.74237367879579	5.33525793836792	4.27603423472827	4.85407651571394	4.49008176145483
+"SOX12"	6.32941067054464	6.30997109772858	6.63482241120695	6.69788000210891	6.2159660283309	6.79566428390425	6.65797640417331	6.24262071888236	6.32933322206931	6.3359254877722	6.86337711503178	6.47661169070731	6.64105872073381	6.61682815763681	6.59943806643887	6.1853316687406	6.49293721295885	6.78989308484937	6.65986504782395	6.04713194661772	6.09976345479507
+"SOX13"	7.78237017330267	6.82390002428263	5.0011845708715	7.28016790810957	5.2002694304869	6.22173910762987	7.44730474611279	7.3923296315663	7.23375817468576	6.50076653743369	7.2044827133699	7.26553898413657	7.20213003967211	7.56138401894458	7.09097133556918	7.28417138922485	7.18834377394077	5.47013780975302	7.08191799697445	6.42122062876152	6.303897164781
+"SOX14"	3.91192638697737	4.00113980509946	3.68779247465366	3.98777055940824	3.84316499470704	3.90222590076855	4.19624203763013	3.89847860069761	3.88425142934928	3.88186958423706	3.88567871696579	3.73169301994126	4.001705293229	4.3449937522327	3.97657408145678	3.84746626312461	3.76478453558231	3.99926597960701	4.13342404242124	3.93148186566077	4.14271652340831
+"SOX15"	7.76590633073326	7.60594795365175	7.73303436074185	7.74421949995631	7.61890716258769	7.60839460319374	8.20762072195094	7.68203878543382	7.77609701813374	7.61826531024355	7.72765413603196	7.48820419964137	7.92657759895618	8.04977206711314	7.75842783987319	7.04479655057405	7.4834674161165	7.43697809634845	7.68520880856018	7.65530652876723	7.37962301744503
+"SOX17"	6.00195111638126	5.02911786542874	4.40516724984716	4.57018250120868	4.94613182091818	5.3953947374578	5.41097972476769	4.9414908313744	4.75281546199341	4.29449562513568	5.14337259376947	4.35473037716177	4.73584449960381	5.52657393608206	4.67971962678171	4.41995677835742	4.91000409439839	4.7067513500918	4.40815236543453	4.86922919224189	4.3323172361665
+"SOX18"	6.80449327738546	5.24020960857625	4.79711210011154	4.27490290459683	5.03187743232121	5.90597132329076	5.48785315828465	5.28165862759303	4.3006768174293	4.40873238119762	5.22754242269626	4.95894226909982	4.9408543283622	5.79752518156207	4.42562360053395	4.76816237623811	4.64155747848401	5.11284357072448	4.81366469213835	5.17622784841275	4.61738986277418
+"SOX2"	10.4418322374584	10.0237926634886	9.87678692811047	10.4016085699217	9.84906348543336	9.07784934182278	10.3096661468267	10.5300647527161	10.3681398003057	9.57031911666324	10.560722195955	10.0667991419017	10.4984347164042	10.1076137889893	10.3453012333754	9.91639656258969	10.0056920812905	9.79768681348952	9.94904644121494	9.42285658470323	8.87316993844671
+"SOX2-OT"	9.42784706160964	9.89084050342174	9.15309702533849	9.67806590431225	9.19310148848168	8.58418019274295	8.8749629360871	9.08210575073496	8.42117158340487	8.61459101931028	10.6539529322973	9.05716735634476	8.76496054250834	9.30759424133202	8.93741735559599	10.7170091703958	9.14746279190417	10.3479451767573	9.43839862210125	8.02867937671797	8.89912404558417
+"SOX21"	6.05432061932798	6.48652509343859	5.63651816136986	6.24906905250913	5.84611750563499	5.95696015235973	6.82479213007191	6.01050302594218	6.45559575127736	6.06257630299199	5.96118582928058	5.74910082785891	5.96283472804934	6.08785130508503	5.72819661853945	5.78621342322541	5.9298849146783	5.80635338078639	6.13323618387747	5.93565744903606	5.604830254408
+"SOX21-AS1"	5.9841263243859	6.20163597198009	5.20825871889719	5.59140381272771	5.60500428294866	4.77420165892829	6.38586673202084	6.22406426366997	6.14117216891384	5.57065847850231	6.5793184786918	5.02137038904013	5.29483150974007	5.54478358993711	5.51760266417198	5.94413767433093	5.57927798125521	5.4283211458124	5.99092379013985	5.30918070843266	4.27371750631571
+"SOX3"	4.89843593508952	5.12201488559108	4.99470606071148	4.70330590175963	4.80856547391975	4.44583514414886	5.33242721622105	4.88669669548865	4.62167192519976	4.93203474648828	5.28651173524312	4.90132380949652	4.57745892113738	4.70200203463672	4.72348627161037	4.96975083594573	4.82177021721944	5.19937649201343	4.77733106938459	4.82290797700838	4.41285630363117
+"SOX30"	3.35495137918091	3.07662522079974	3.24209035167652	3.01945017600561	3.30509273077058	3.48347430319653	3.17660950717539	3.10445188916792	3.03643058810716	3.10483629094518	3.26147718998505	3.16366691315	3.352820073222	3.17475404914322	3.09262467486724	3.28460176507652	3.17848720697403	3.54003529422862	3.16366691315	3.10445188916792	3.12330625265222
+"SOX4"	7.34134174759885	7.53134069457909	7.82795665626147	7.41797468376921	7.33902701324503	7.32812548831085	7.46923465097116	7.18381879484486	7.24652303544985	6.72887494261187	7.53389768962166	6.31237272570971	8.03414117630163	7.74398392633826	8.06839315286148	7.34134174759885	6.3484177062266	7.70866027644193	6.96896399909661	6.99930587287282	6.29681735546572
+"SOX5"	6.91045612410287	6.45718866223775	6.83449706933895	6.37248727578471	6.93950123640685	6.72670697142586	7.03693858010266	6.66604795489337	7.2711509013816	6.55491222299426	6.36625263872011	6.2871103907157	7.12098008554743	6.62927224960444	7.4618096489274	5.67712266350406	6.6706629532113	6.30851263406376	6.52055050617854	6.56216028161164	6.4048901769116
+"SOX5P1"	3.70910969248143	3.89450241190389	3.60485404971807	3.73315095105069	4.09618648236482	4.07792606942969	3.89602394162579	3.75044145574339	4.03790345458454	3.79166350627587	4.14449468313875	3.86175640190837	3.83539053765112	3.79643088774947	3.83353097716374	3.83353097716374	3.83353097716374	3.69503217145634	3.83353097716374	3.93661948800196	3.81125349067677
+"SOX6"	6.83727740656763	6.51475173146574	5.43533812509247	6.27967085907288	6.02708566650731	4.80353739840049	6.71955404869417	6.94050812763036	6.32988409669266	6.14019872511372	6.46160244946796	6.1681660401562	5.9222438753461	5.7758967382317	5.66340317842653	5.86928602199468	6.23860252682641	6.14019872511372	6.43803624898233	6.04973349207471	5.47809637784959
+"SOX8"	10.1517380863022	10.172554213337	9.9619392174505	9.6349739061872	9.59765035750514	10.556511913961	9.82727817963075	9.72863664077652	9.01174623718479	9.07938987675622	10.7653636201143	9.43853237865917	9.68958828727096	10.0006600000933	9.29550267888793	11.0124253140361	9.56799816179255	11.2917446726943	9.60497337897721	8.84411017436669	8.95907902576442
+"SOX9"	11.1115267166119	10.084538549346	9.82332957595358	10.4778165032695	9.77411271311175	8.56918911214055	10.666932717776	11.0944525878711	10.0418416482335	9.81592949437148	10.3892563497356	10.418129050673	9.54212245391687	9.92333657303971	10.0292382842445	10.0418416482335	10.2274514009336	9.53399690918045	10.261262624641	9.7282114219717	9.54239305168691
+"SOX9-AS1"	3.28696802570082	3.29675211251047	3.49948542163888	3.27420848537286	3.27657376898116	3.39884013885977	3.48602388298721	3.36863113615964	3.34246918483011	3.38773495913347	3.40366650415663	3.37052396840669	3.20778472184902	3.39245635263068	3.25229984858075	3.44415745672251	3.32538793499376	3.34246918483011	3.28779779481425	3.32231153532602	3.29093783238186
+"SP1"	6.9531210515926	6.65148123200678	5.24010881275093	6.1681660401562	6.44351209382388	6.58699454636898	6.48697949799113	7.2197172882316	6.27845991128433	6.05065221429299	6.80653507957051	6.29114487424515	5.89617924164455	6.24685814485253	6.17910321476411	6.93511724818973	6.56299220373285	7.07260877100092	6.50417691480831	5.98661826917088	6.35605265880579
+"SP100"	7.09105592390383	5.57949413857996	5.2959536581184	5.70476568761534	5.45897158643725	6.53782006315801	6.09790468160404	7.1498963452593	5.50076182085259	5.70754352522974	5.62467458574733	5.56700153323748	5.96177020884992	6.48446853616224	5.67927162402418	5.56115854559611	5.74765482040595	5.84567224844659	5.82847526791527	6.08594952438235	5.88463063536523
+"SP110"	7.97197789113811	7.39189639996233	6.8621623925952	7.02771038350416	6.44463107057732	7.13620412733802	7.06288298429595	7.47111821259439	6.43119038539531	6.72595952800195	7.05741336596542	6.7906669022392	6.56706855321034	7.00853491843949	6.53718089693046	7.62906014074154	6.54769137264626	7.42751376852352	7.30414177762275	7.02771038350416	7.02771038350416
+"SP140"	4.18395312286201	4.19179299590502	3.66838617116164	4.26143540190211	3.84419168037356	4.22418977974962	4.64253886380609	3.91097966640507	4.11619417551143	3.8906991027894	3.95566439205406	3.90437721861246	4.35369252690652	4.20779997040144	4.08668286787801	4.16380440806295	4.00967676648148	4.02431036265069	3.82678332023808	3.90441860948909	4.03600099560098
+"SP140L"	5.50911874171056	4.83529161118915	4.61738986277418	4.48790046643482	4.42786868664954	4.67112395935339	4.44306566804502	4.95219521222788	4.41009583177439	4.67360292673896	4.47864191761969	4.23301349501272	4.32119244949427	5.11384941812105	4.67680176756434	5.13168727054067	4.59009949555725	4.66106291682332	4.98331778446962	4.57258595471318	4.49985357433797
+"SP2"	8.06674009239074	7.697680522805	7.85799167627987	7.69001297110797	8.16079372713753	7.69163262274261	7.24411636189288	7.6492556027667	7.55012961405172	7.6288915901811	7.86760207893844	7.56689312399664	7.43149415416175	7.50383422911362	7.1685543840208	8.0487260978866	7.63143018499103	7.97036086399508	7.2093058843295	7.67347850354898	7.53950832324237
+"SP2-AS1"	5.47229031511864	5.09715941531793	5.11206062857576	4.75890832897804	5.07986516516293	4.891431597517	4.97433125788496	5.03769530783693	4.86361138153057	4.92127893164788	5.16823127514741	5.16955247579202	4.65019692794367	5.26590355278674	5.08349245010261	5.12804037568908	4.53883452284864	4.66804492968621	5.01168583437153	5.49171433226814	5.13177027180992
+"SP2-DT"	7.50795325811303	7.129351890791	6.2866356409164	6.89431451881217	6.98520284179438	6.72670697142586	7.24485347136868	7.68987435462424	7.04650136386653	7.32669272608209	7.33217509062403	7.130142483619	7.10773546116616	6.81209996306263	6.5220597641354	7.34961967871924	6.79008473744789	5.91919917513777	6.70184503480271	7.16903184016095	7.16660533658985
+"SP3"	8.73797063293943	8.47144885531413	8.62672939176896	8.52108290270941	8.44089456050197	8.07484833463856	8.14338559457848	8.56159108652634	8.48000234067057	8.0449033022161	8.79773930003629	7.98814796783484	8.39019800310452	8.12239386205276	8.69227994599034	8.66337980574279	8.2770390287198	8.84633906132079	8.39684814167939	7.95903204286588	7.99187745220412
+"SP3P"	4.21903174177248	4.40422664719564	4.31548186566175	4.44530870205595	4.32290634037165	4.56925663856198	4.8832319265153	4.35439620757271	4.4617817748927	4.508070818469	4.38195702000894	4.44499320943362	4.53262023848542	4.64072732525968	4.2115423172904	4.4302169394765	4.32436136816566	4.16089863856463	4.64240380217764	4.48941888242535	4.4147084709238
+"SP4"	7.99397091376918	8.39287252124817	8.4015511656722	8.47450748335091	8.18171995554006	8.25913500242098	8.21295101844137	8.42840767673784	8.23039931190879	7.73954068068261	8.42727434178657	7.99186864718861	8.38057473044135	7.92078546072462	8.39734767343464	8.28362064942333	8.188792992017	8.21175030577487	8.43752984728573	7.83220591049057	7.84739907359544
+"SP5"	4.69892014952729	5.06764699669236	4.95058978316435	5.08467252123016	4.78726884795701	5.2878895229416	4.99945428629415	4.7088665300774	5.18470347325936	4.95706088140942	4.73626770041118	4.98644965681038	5.06738891275774	5.28611236906427	4.95771342590708	5.18931044207642	4.86382279585373	4.68677748290336	4.96391543298177	5.09196854088821	4.95706088140942
+"SP6"	5.72738561996834	5.81802793849042	5.89715318534385	5.91536334384264	5.91536334384264	5.96052992766041	6.2221192643652	5.92045156343091	6.06744383658856	6.04290380062048	5.78938129820001	5.85863207408508	5.9597991501433	6.14466475682344	6.04566898624723	5.91536334384264	5.90193657136821	5.79485616139029	5.91536334384264	6.03353969213425	5.91536334384264
+"SP8"	2.83673895239326	3.10255234886615	4.26378625757502	3.34863827444573	3.31988298127511	3.28740452557515	3.2853671540139	3.19571270768414	4.18348114327662	3.35516116801021	3.2371083959586	3.1944160627692	3.59451446839378	3.17478811102106	3.26268507593796	3.18263043899935	3.1612945874833	3.13863283530313	3.17555004845003	3.49496855864316	3.4629678813228
+"SPA17"	7.00036964321634	6.36542816812785	6.77913941572519	6.1613648394668	6.84777208802718	5.91380396073715	5.16778251549916	6.30413986935535	6.51352054312055	6.92403677627436	6.51989813344193	6.50476785597458	5.88939203094018	5.94351712582688	5.87675023049548	6.44811125905873	6.34152434709987	6.30957725164197	5.99088182895766	6.94271497881122	6.53321467266643
+"SPAAR"	7.29372352512964	5.8771141072484	5.95525965532366	6.19508550134487	6.26765636859158	6.83488679669011	6.08988906561049	6.07854110773496	6.02324903713684	6.18712045483527	5.57524264094867	6.03078023121668	6.26690882677525	6.69673798557721	6.09690040282948	5.70247620268109	6.11975526540147	6.20522066527785	5.83826227428915	6.1129071959428	6.15062609208087
+"SPACA1"	3.3994045395193	3.60717273963039	3.36789408460197	3.7841346858456	3.71392549472819	3.3434288667671	3.58779227489638	3.30569891367167	3.59931950002783	3.49845491118059	3.5116056837822	3.613148006137	3.54791976646925	3.63734615191803	3.66226035323258	3.65489820504694	3.67542344623973	3.44375421904988	3.59040342323088	3.52737477037606	3.54791976646925
+"SPACA3"	4.02513050113335	4.10979707341945	4.32267740738808	4.04302705515719	4.03842540094714	4.36338838051349	4.7915523950313	4.26302566771508	4.45342801384216	4.45503733336714	4.03046332649862	4.26731843460554	4.39536482542667	4.33450823200118	4.33629955009031	4.15303718679789	4.17615221341086	4.31142035469408	4.58655059299534	4.20824412247852	4.253592738339
+"SPACA4"	6.64237942426191	6.56777760043105	6.79186484520628	6.8604460278074	6.49911439803212	7.1227220765735	7.14699421110621	6.83764389315629	7.00499366354312	6.81416490933598	6.59172485725417	6.81416490933598	7.0038208925016	7.08156598550066	6.78071226192785	6.58147214565638	6.88070895998527	6.50895308375475	6.81416490933598	6.83007065678206	6.81416490933598
+"SPACA6"	7.35004610051482	7.03352130306142	7.24640881095016	6.91894097552699	6.89241045984246	8.07100324961717	7.22213202043148	7.23281555601212	7.17664972656744	7.27252668771165	7.10110197277995	6.61892927892984	7.41074675644918	7.39296510341441	7.8290758428466	6.95064744119866	6.93680717596491	7.91139326002466	7.23148681445328	7.16277854588171	6.95912183615318
+"SPACA9"	7.08367303237804	6.98556747557553	7.31970939674329	6.87342411210258	7.12101835520097	7.22387987313369	7.04029151883567	6.74956744447359	6.88150212525816	7.31413017551305	7.01501856748764	7.06446666886555	7.04029151883567	7.04827140771447	6.95950238906221	7.04779658964948	6.88288606287978	6.79814872933221	6.78899990198775	7.31077654589697	7.03914792299455
+"SPACDR"	6.69887847850435	6.29079601809376	6.19090719485407	7.13876235101381	5.92232829150721	6.61899963734308	7.72987662698623	7.31949696840326	6.7004654785188	5.91428429446528	6.36658261709337	5.95798505490826	7.8262846937633	6.76468729802444	7.73973135356804	6.82142403365585	6.41174337921157	6.84272319911745	6.56861863188543	6.26861290885702	6.13105810938533
+"SPAG1"	6.07053151781402	5.10494038752022	5.20621059314225	4.98016801473725	5.68519644295041	4.94545037114431	4.50962766675912	5.05811149062615	5.27195522340657	5.18027189820103	5.50816853495466	5.06223103378933	5.12223587318752	5.06223103378933	5.2926744061613	4.80205436775103	4.92402746822535	5.00564581234679	4.65257134499671	5.07861024726623	5.12223587318752
+"SPAG16"	7.93996608609318	7.8918904715965	7.76156957877606	7.52128431716698	7.47949925813526	6.74899655956146	7.03397756853359	7.93123334040362	7.3950511448835	7.13076615926364	8.87851335266092	7.73530470710435	6.98880464458158	7.09643707359198	7.36199549221847	8.12980514971768	7.41678073025004	7.85653771001699	7.35715518519146	7.25987262165868	7.29582103648279
+"SPAG17"	3.72402018303042	3.68266910006213	3.86832533857367	3.91733723372497	3.67434715061493	4.18910330509074	4.28226236959348	3.51943634186783	3.69774759478407	3.57847808451308	3.8507765185073	3.7521387317266	3.70331540152065	4.42113699305395	3.82842038145552	3.70918038764509	3.79340624972589	3.59519027099524	3.46560217863175	3.82764762110725	3.8600232633412
+"SPAG4"	5.89708195618327	6.05810748217032	6.45972810008709	6.14505941677971	6.19546329157766	6.43103380781899	5.84812150381019	5.89357645553562	5.97328059669142	6.44304380907939	5.53536294223045	5.98654063670794	6.16672154616956	5.90232984103941	6.27207828711761	5.63203926979695	6.14587206503035	5.64219788361684	6.23192554743639	6.64677512997388	6.17470754059963
+"SPAG5"	6.514286582916	6.59296678147171	7.2470207286816	7.22701524848912	6.91061600381229	7.16611782674247	6.92202095531477	7.08601155870924	7.26876679592791	6.73873994745173	6.60847731322271	6.85146101594311	7.48985634692628	7.34586426576347	7.52050440377706	5.9042190733974	6.88319933452125	7.05947500095645	6.97236378387437	7.26409690068524	6.86510083333046
+"SPAG5-AS1"	5.77389313423161	5.4575606252785	5.07411376496209	5.49787540775115	5.35684973003499	5.45094298624216	6.14870033798835	5.41431816988486	5.54240183357491	5.63999952463528	5.58580006898473	5.53975586628407	5.72197637864032	5.98898355824607	5.43253579928989	5.46367038008384	5.69050004291591	5.19874857697353	5.50293221794353	5.45824607024063	5.393263823894
+"SPAG6"	4.16425835221222	5.36761016192872	5.1044509261364	4.2567065600525	5.0665458930836	4.7386460894743	4.65424215860785	4.53552366041602	4.09039443479665	4.3303407202419	4.49938726028827	4.87188920157168	4.52043475663006	4.41293799123095	4.56141482512482	4.53552366041602	4.54195987173112	4.72083029964895	4.45306271866879	4.41850188890049	4.2376475854215
+"SPAG7"	8.96922087443007	9.13960581989095	9.37126910543721	8.95360578341228	9.3581936647847	8.83345170924381	8.85353702774694	9.16715359166876	9.13960581989095	9.46973232603447	9.1766390047718	9.29677142218163	8.83892789840042	8.95071373051769	8.77935196728153	9.20376923660145	9.11540898025897	9.21256170437189	9.0524039993011	9.44184476917799	9.23167732838796
+"SPAG8"	5.12944713481748	5.02911786542874	5.71656556366923	5.08264986325522	5.09160731147678	5.37621565423064	5.64159827292859	5.1716869876303	5.00679578709615	5.1716869876303	5.43702469045456	5.29511084364888	5.13643196792131	5.31873897444044	5.11394747779409	4.93825343261444	5.07174415393067	5.25813834987024	5.21663342359858	5.04961830841433	5.24331938936982
+"SPAG9"	6.56816196611642	6.598453994976	5.4678535146494	6.60378003582072	5.23592749694219	5.02556058976342	5.69919178536248	6.5687386922571	6.41823504924805	6.29858714745496	6.89149304163038	6.38158610463211	6.18746548532711	5.88550141589095	6.48600438722741	6.94913109279754	6.41265369510016	5.48522219303002	6.54208582351264	6.3643480768716	6.43144311205702
+"SPAM1"	4.01248573636939	3.98504439843844	3.85182985828377	4.13447663779242	4.00967676648148	4.15208892540975	4.01615771219074	3.92288418201695	4.30636243769577	4.1245187476151	3.73217784537826	3.83754783651593	4.41714819626206	4.26219357704755	4.18555418897083	3.70749015624066	4.06784104040881	3.76248745991224	4.03771313355036	4.04907683096586	4.0344694838444
+"SPANXA2-OT1"	3.29138756263686	3.44064797758315	3.44259923656591	3.57422385455869	3.51720059283654	3.59254184851288	3.33670144983492	3.21776216968038	3.29816145929468	3.20670337842953	3.24034054642048	3.38494358934217	3.45026604107683	3.48401303533419	3.40187238819833	3.52087033654239	3.32779475863899	3.07367114337369	3.39466415280945	3.37514180613936	3.43367753530313
+"SPANXB1"	3.29790885089002	3.30821231849583	3.48393721087619	3.32738279658599	3.33194174071549	3.92590283661878	3.80726315545245	3.37803998796962	3.52387031855116	3.36529034163517	3.26133814459009	3.21232893237001	3.41073909936121	3.72790928167088	3.41900876423415	3.32635109255039	3.38815919666752	3.28905740346638	3.65027783477637	3.30059381737322	3.3629968034919
+"SPARC"	12.3049408194821	10.6430986275071	9.75845099423552	11.1737328537843	9.81991367512037	10.5149079052036	10.1774374294003	10.6979164864782	10.7013530220909	11.0144351112295	12.1116077470375	10.3197020318104	10.7177988279457	10.7400268008659	9.90757229428651	11.5485887384364	10.6459700716168	10.8901741035562	11.0357195046276	10.6997786378382	10.6186533035406
+"SPARCL1"	13.3604037879598	13.5248863878937	13.2671551180857	13.4552621884069	13.4006796567874	12.8913212255434	13.3158169898629	13.5145589591364	13.506863465852	13.3850603223328	13.3604037879598	13.4051360794442	13.2857508033579	13.2086047221019	13.3276228067436	13.2540748470097	13.5103776788471	13.2214092609899	13.376207658864	13.2924192443847	13.352451574776
+"SPART"	6.66416611259934	6.0123018652795	6.06630590866418	5.76290997903064	6.35426973157463	6.1188384120316	6.1260197835995	6.25002860326319	5.94334237311547	5.94412787806239	6.77267021094113	5.53294215327753	6.23485177731541	5.97022351516429	6.58075415678455	7.330651685976	6.07890597324553	7.7901610141867	6.31122324864795	5.88096121293807	5.44582234258509
+"SPART-AS1"	3.88985240515208	3.97296264122168	4.05110756001005	4.19383129134458	4.07388051637163	4.28765907390651	3.90804450603397	3.6996241363017	3.87576931079185	3.88185212339216	3.76410903746505	4.15830527551806	4.22956175976847	3.9660072090085	4.06100053030207	3.89565759490411	3.8244411744595	3.72795327219143	3.84265580097164	4.11659651516449	3.91240510629508
+"SPAST"	5.92787461711464	6.86828108503376	5.62221759711766	6.1280077670006	6.17673493343869	4.8318659162333	5.92298776143524	5.94197958702151	6.11269532063737	6.40316220457731	7.00920859756686	6.17673493343869	6.12184491704298	5.93285726711729	6.15412488554714	7.55560405972096	6.22604782873552	7.27307554569634	6.2684741372407	6.10760174241241	6.51649346216226
+"SPATA1"	3.57863237719804	3.37246371276719	3.91722217468735	3.57065159798244	3.60224669810042	3.93652028807783	3.60726231448646	3.69540583560081	3.46200842736518	3.43591946306613	3.63719111006434	3.64508612475967	3.45020889551015	3.80427988829443	3.46633131590267	3.17831327221218	3.46453703987995	3.67884275111033	3.44193987914406	3.3608111503501	3.44562167244339
+"SPATA12"	4.95923263147125	5.04581137810322	4.93537627861277	5.21002349638918	4.89722445134278	4.93537627861277	5.30555159775438	5.03465618430285	5.20126826031798	4.79580237722284	4.7939943459758	4.8991530702094	4.9114436731083	5.18002860345766	4.90699850229641	5.23507109431519	5.10636918829529	4.27870300633036	4.6478132313545	4.76208284418585	4.69231914349305
+"SPATA13"	8.83014734509331	8.40858266628248	7.67412339099272	7.98621833734438	7.78545354073302	7.90540417836937	7.67784053391226	8.70629639486591	7.55297713176326	7.5789130023755	8.89733243579998	7.58295192580448	7.9258361309576	8.01855337856678	8.02406913848287	9.07734072954578	8.00282745901502	9.24562822685254	8.10681302815782	7.4104209440435	8.15653541095828
+"SPATA16"	5.71939641192108	5.98195862516118	5.97441362156399	6.24009821987272	5.98037822416239	6.01417804860098	5.93235216653471	5.83473166319506	5.94226963765915	6.03062955988585	5.8355528325906	6.15923166766632	6.07978778834126	6.1633665779905	6.00028338710143	6.0077724735066	5.87870044090587	5.89584694495479	5.98195862516118	5.76183239134645	6.03152737335229
+"SPATA17"	4.66784483447504	4.04522441512461	3.68784248033479	4.05694178836085	3.83279442145283	3.52588966164245	3.98688781097752	4.01615771219074	3.96779852709763	3.9660072090085	4.1433234516566	3.82531040345464	3.66838617116164	3.91069468805603	4.09248386311195	3.96227094795332	3.78845551738901	3.73255428542946	4.02438429341185	3.97736490887321	3.9660072090085
+"SPATA18"	5.2272095405193	5.59681744971151	5.21633591902451	5.74698042329799	5.80419999183146	5.56828668555957	5.41263664867932	5.49135774558642	5.55079610889097	5.64598602465371	5.45124991082062	5.53011836206434	5.54038131090679	5.7095580445547	5.62708358291389	5.65291438988658	5.25454607481348	5.1065471406931	5.52532090051248	5.59986129415305	5.4731997379303
+"SPATA19"	4.39905953825366	4.13580812800166	4.30512196988107	4.47434185307167	4.26560752034466	4.06100057811187	4.32351478355936	4.20479628536753	4.52474314678656	4.22084060899196	4.12764896882999	4.37686644977964	4.34705426468861	4.36395710384659	4.41192109882794	4.59215156555609	4.24248385520258	4.03203132357691	4.24598826574498	4.47913070413909	4.58521333510215
+"SPATA2"	9.7373456771806	8.70211139769016	9.10049510938028	8.87252320790627	9.01530705935161	8.64214266952409	8.68479409385677	8.83621998156524	9.27784051607045	8.889340161178	8.45015222751778	8.88246670550171	8.52720958987036	8.60176191967015	8.93700734941727	8.51921725673121	8.9966218929514	8.72571850751395	8.74141532441101	8.81605904078672	8.78488344505904
+"SPATA20"	9.50503272819331	9.31378099254435	9.82390767132149	9.17739840308797	9.28793020613297	9.34818173317923	9.38249003152367	9.72032334197102	9.23193221661657	9.22298212712602	9.53338125386544	9.03998839284402	9.40305103230101	9.79362052887913	9.22680400639734	8.69889374870361	8.96628180222284	8.88323100523046	9.30274324266368	9.30819721976052	9.16248126401273
+"SPATA22"	3.33946623668397	3.1575413546876	3.11202406377177	3.3441691426027	3.17274628168492	3.35107466594334	3.41511051642506	3.27329011672219	3.08970925355884	3.35173792119535	3.22569488504146	3.34042285076865	3.20901276928803	3.14879446517283	3.07324601839808	3.20980152573734	3.09520757612826	3.04155125545895	3.45336401999538	3.22569488504146	3.20529191974331
+"SPATA24"	8.82347274104197	9.26442505979639	8.60932413842453	8.98775510735673	9.22223115390073	8.87815572214475	8.73730826511172	8.83959541669157	8.98614259116892	9.05475234915579	8.91377904818611	9.20825640186843	9.05981586072323	9.18980953422309	8.81228295128796	9.16174630617281	9.12787005734656	8.6960527274355	8.87672459300813	9.07530448546129	9.09793392819979
+"SPATA25"	5.1924779188995	5.44307705196235	5.4252661518915	5.4828778530956	5.29407007499295	5.44061319479109	5.77489650919665	5.35058403815859	5.40917828869257	5.77015219873219	5.42878832247882	5.69275788390439	5.97209960514087	5.81873033895125	5.60244300386434	5.3787565529652	5.49632876513838	5.34810385551279	5.63887517859187	5.38885895588937	5.37095801179402
+"SPATA2L"	6.74214777608946	6.83946670533807	7.43496867355115	6.87288952944631	6.85953680699259	6.94814444583417	7.08448031110345	6.60924112111902	6.69716851735881	6.50828072589243	6.70276141524422	6.52419652564115	7.12063818346493	7.09009917776524	6.82632357330451	6.31526569509333	6.72881772658162	6.70655168365241	6.56128297516574	6.78992739243482	6.75965128486172
+"SPATA3"	5.60115298594887	5.68302574156173	5.67607030934856	5.89705609352974	5.63748244245574	6.33826500249025	6.24459968188152	5.77346618743133	6.29546069220466	5.77498504196623	5.89281160195503	6.06406747442614	5.9655241648786	6.24754288639147	5.92941261744381	5.8668976310647	5.8668976310647	5.86517962902958	5.77244442068334	5.63510169147596	6.02620237938203
+"SPATA3-AS1"	5.04735648706765	5.23231440970286	5.21428583641005	5.36245217135415	5.3594087885989	5.43501926287616	5.67301593837901	5.23711674918977	5.37493193815502	5.32041697637576	5.15647522759142	5.15058164026976	5.45237624394927	5.54818334535023	5.18237128062796	5.14811937923642	5.19135012738877	5.13083683042206	5.29274730601974	5.31263825928724	5.36724102242157
+"SPATA31D1"	6.55434375401218	6.85222802151018	6.57167584076853	7.16340252495867	6.89925113874847	6.91337417933586	7.12163819560459	6.69765221643083	6.87688433805547	6.80806774154374	6.59249081437929	6.76130700885552	6.82631550291215	6.8605761752282	6.95351183030271	6.91917690882116	6.7735339648074	6.81450857920475	6.80032262887426	6.73833579171416	6.86224499288775
+"SPATA31E1"	3.87273145465974	4.00609085559113	3.96893340990948	4.07828343275956	3.86909296850319	4.2573661002773	4.29331928282995	4.01615771219074	4.2947976575029	3.99752495910024	4.05008604994255	4.04087190925996	4.08876744763214	3.92048362675648	4.44640929742414	4.01181113196766	3.98095193708719	3.82797671179687	4.55957223802605	3.96013137383628	4.29847085283512
+"SPATA32"	7.67044665983084	8.09447042990926	7.93313666905832	8.50430565228422	8.18894226476504	8.16085310953753	8.11358570947773	8.03924917899376	8.16938354762231	8.05047156977026	7.69422135052052	7.99592637294089	8.41116588622892	8.19764210695942	8.26770710135932	7.90409827428001	8.08624862740249	7.67390314637707	8.08251590069268	8.1085568703525	8.29058717435063
+"SPATA33"	6.87805292457172	7.03101803456926	7.67318474997976	7.16867421567621	7.43499716283219	7.98953047789347	7.55789651363303	6.91177641301285	7.52455407598235	7.03550885364519	7.02208524373202	6.86228618991488	7.13403852671311	7.49351641195095	7.47487211749671	6.68238125935697	7.44197165677608	7.04331693505268	7.04060586142495	6.93249793007217	6.85867259846387
+"SPATA4"	6.00289007821802	5.87586320732013	5.86132471266084	5.9701588089064	5.97670226583216	5.84062781085604	5.94592462018397	6.05575412054181	5.94592462018397	5.91536334384264	5.8809195691601	5.88599525236178	5.98062537004516	6.18076208211417	5.98718794397903	6.16116384049375	6.10490631624576	5.78960087006201	5.61981985265168	5.97204249694546	5.98737603366594
+"SPATA41"	4.83851391392687	4.89731478413616	4.43046367922894	4.78835573840182	4.86371022402808	4.64158532020018	4.79518345740825	4.50159253034029	4.9366099267213	4.8130996818948	4.86785092267815	4.59218656836266	4.98808138844701	4.83851391392687	4.93495449275158	5.24789116322232	5.08253882812911	4.64005237453252	5.24042942365815	4.84772782970376	4.72651205119337
+"SPATA42"	3.42956594226455	3.56098924396906	3.59352551735783	3.83141883996758	3.47298025610708	3.5732485352297	3.79779277614463	3.55945591515891	3.65591495907121	3.55081653602031	3.7116964556671	3.46471925437559	3.49907232928224	3.76000869827235	3.6189725110363	3.49961194475651	3.44922042891104	3.45100235054901	3.55775000812692	3.63770341443296	3.62595247663027
+"SPATA45"	3.71884880176795	3.39387808263066	3.42742934679239	3.73481913032716	3.63863852570154	3.58489528026895	3.82078414823256	3.76809711231952	3.69477271451859	3.39590023518512	3.50117372901666	3.51084338640089	3.46318096909634	3.43359552805148	3.61055633223426	3.72910526579229	3.80932874896087	3.37777516265396	3.57240292765162	3.57177203285367	3.48953524304129
+"SPATA46"	5.65022642098732	6.0232651403898	5.85024050361	6.08041029726761	5.74193598321957	5.8059462791127	6.05084600160207	5.78743884980035	6.1685896186076	5.9571290866681	5.58408908884225	5.96659134018808	6.25045903712978	6.0088375330385	5.66053775331241	5.89800049380837	5.97219102296028	5.63134009173944	5.81360398237059	5.78142686209073	5.77444329072481
+"SPATA5"	4.14770923592683	4.07608863381924	3.82221500478007	3.70836165011894	4.12606979960288	4.48198556560999	3.97644002084062	4.19119140393298	4.01615771219074	3.76649585251223	4.50464590466345	4.0377665888295	3.77611494417304	4.12981651342373	4.22693534647722	3.9900359193169	3.79340624972589	4.39419676493146	4.12095301720403	3.92118265561754	3.76531425527909
+"SPATA5L1"	7.36613439102308	7.19208855123088	7.17807361292493	6.93334385097844	6.983321097376	6.16457184077133	6.99348188452415	7.08957841903902	7.04796562961741	7.16903184016095	7.18515821705186	6.89831583484176	6.77744636573628	6.59726380680348	7.15475684488679	7.3116416970347	6.71563745604977	7.61914471268162	6.85478782945182	7.00758582219219	6.7299466130564
+"SPATA6"	7.40458545312609	6.72327572843272	6.81767895004204	6.15358384592374	6.39753585040709	6.09448752263764	6.49195141287381	6.77323696262886	6.01531977101991	6.00682025369406	6.71955404869417	6.40456265778401	5.9459692464261	6.29623557150807	6.316359679768	7.50019922608003	6.12009653287862	7.24262021926426	6.39976519623215	6.51965799059771	6.13300635148445
+"SPATA6L"	4.92759505172116	4.81292137898113	5.29646942929517	4.95615925941599	4.53800864756819	4.84230851210552	4.92545690664201	4.83396511526324	4.87877625736417	5.01911380561182	5.28124511037319	5.05575886422673	4.93792026466402	5.07867788829637	4.84995534890731	4.94228659830133	4.98056435282673	4.95306585944547	5.34040560747762	4.28699302001639	5.17921503113788
+"SPATA7"	6.28045749865979	6.69556431746034	7.37290949215807	6.05911335515184	6.96386536429742	6.4191613175982	6.12498430104003	6.59803922545799	6.55495350661902	6.67762325842538	6.39487517988831	6.72457412655031	5.95625613955956	5.7647326818748	6.35572434478358	6.42716678958973	6.55495350661902	6.63421872666689	6.54335839854093	6.96466676845225	6.75320528469682
+"SPATA8"	5.80753407069508	6.13743210412105	5.51756523767549	6.26940655325034	5.97674548550744	6.06550122934103	6.34247740496562	6.03712205764786	6.11184893839324	6.21114637539568	6.01116807794264	5.99491693611972	6.22530353212274	6.45809679155142	6.06304558199467	6.17865862644615	5.92104288590784	5.61848528941681	5.94861213045851	5.90036540721283	6.25414486661495
+"SPATA9"	3.99180348311198	3.72200984753973	3.79340624972589	3.56060175392931	3.60141323086586	3.94666805428952	3.98665606372442	3.80913454409605	3.69861736882947	3.86577407632964	3.57730995144555	3.60588922433437	3.62589837570552	3.58495119044257	3.68697170553108	3.76105494491786	3.58185127349209	3.69861736882947	3.73875268070775	3.80289879764878	3.80867295242403
+"SPATC1"	5.0629061926677	4.77060030427914	5.01852750605925	4.95102342298312	4.72867553442022	4.79837317185029	5.13529356970187	4.85747822155541	5.32078655950809	4.99169548668545	5.01356855038016	4.87331972245109	5.02119974456335	5.08864742606942	5.00546603133616	4.88676233175698	4.96088072628956	5.09953098517368	4.84595814177562	4.47214747581313	5.00125480689705
+"SPATS2"	7.93189925955232	8.60584163361246	8.85814806276233	8.94601013669486	9.07020183598239	8.56807098196334	8.06328821285085	8.68340868895538	9.13199417216008	9.23921531034015	8.258671455382	8.83515211795024	9.17015767660513	8.46633728338262	9.18278447280233	7.71549616553246	8.9465405365948	8.30111193882216	8.89925897783062	8.93690566518713	9.03514319894485
+"SPATS2L"	5.19224096135602	5.44061319479109	6.25740761857405	5.54442104138478	5.38767270168763	6.08626927055234	5.40844652138456	5.63174643543014	5.21796410470763	4.98188677176848	5.47319995579139	5.47949350518905	5.79182719265247	5.17982376465951	5.44723973699749	4.99462223487303	5.45996589622591	5.37754657611761	4.99393794852218	5.08249403112467	5.28568474120263
+"SPC24"	4.44966566727307	4.51574560733235	4.67303487100037	4.48703315789543	4.67048279274166	4.77106906908786	4.97996265113183	4.48320956020932	4.71917229133409	4.61552486600255	4.32263822719012	4.39989735592253	4.61791104444868	4.84135173168725	4.49416856225818	4.51055080401524	4.7221521308885	4.47923873433412	4.68718176331286	4.6658881583191	4.58356427228712
+"SPCS1"	10.242840951635	10.6667791975837	10.3377052172326	9.83149279894607	10.6725176073216	9.51956472160403	9.41022049414596	10.2166666133538	10.016081560505	10.6209581828155	10.5663413960323	10.3374694401623	9.79188882600021	9.66380083654571	9.65489030216875	10.8351308626592	10.1299023246568	10.6658424518692	9.79298860489105	10.5971870510176	10.3851705727813
+"SPCS2"	4.06229704260867	4.2653012665588	4.35455861554176	4.20479628536753	4.78031656790754	4.34179374588816	4.29228454918153	4.07231480493324	4.42236112495982	4.29150916886264	4.50825472324293	4.39898610661957	4.37301926322886	4.17194390943048	4.18979409591488	4.23444694867167	4.4752576076541	4.63469139489511	4.25550493659689	4.1913916179068	4.30177211770509
+"SPCS3"	6.27164202336994	5.83242222406753	5.50391854390348	5.7637414832805	5.45714944257768	5.45714944257768	5.49405349513501	6.23361637250238	5.71936471544564	5.82767518346872	5.62921593458445	5.74039850562621	6.11713137742894	5.43300576023898	6.01628702911894	6.25621024757318	5.85218096726049	6.24534414716772	6.23898060222589	6.17247259047178	6.24540419439127
+"SPDEF"	6.53459793026168	6.72404022818714	6.77206029626973	6.68099953124947	6.5673214275707	6.73253309867692	7.0869116898496	6.81922518296973	6.92540463821505	6.7449384855392	6.51753138311997	6.60578767124851	6.9963502038903	7.14035885599839	6.81130275234497	6.54146808189856	6.66532591898055	6.60736941924854	6.92466556073006	6.64086421937119	6.90953021664158
+"SPDL1"	5.86037303006738	5.8924427679151	5.7662511083396	5.86971399115411	6.0158542244572	5.95203915824155	6.00457456699752	5.65473916044872	5.79708314928579	5.77861393261699	6.18009322171181	5.78264928236389	5.97081318903203	5.99120363029916	6.12112476037786	6.52945916969442	6.04462879909585	6.39999504862693	5.79649104395434	5.70913503913888	6.14710259734334
+"SPDYA"	3.28881978606701	3.22116279018433	3.49122440284225	3.37353346060754	3.27733488312173	3.34278587666326	3.27577742911225	3.25579826023181	3.28695315333855	3.13645256648828	3.19012978934293	3.09299368158677	3.28881978606701	3.5188024203083	3.47319996787037	3.17745271323175	3.44656242110135	3.28881978606701	3.26931304708775	3.40977017741961	3.26979828184046
+"SPECC1"	6.71498365542297	6.93357280345071	6.43922887141958	6.5459948676181	6.68359068408305	6.68503005637222	6.63014104315341	6.55094155762477	6.43173547622279	6.82028971575311	7.50348408249586	6.64942964815253	6.58564401005609	6.76377483166027	6.55820846337452	6.9606004075428	6.52706565231613	7.67940869095075	6.90393394274929	6.3643480768716	6.4844399347198
+"SPECC1-DT"	5.14902462584659	5.3676406854272	5.89661209852328	5.2454103964434	5.61768973435575	5.38949752236276	5.43604477956549	5.20512962546367	5.4510239875021	5.52851740896741	5.20957202897355	5.25849498945803	5.33584267345031	5.50821761173816	5.15446071362001	5.07036366652368	5.57320963767886	5.67453658389008	5.32530561968627	5.54920841239915	5.33358936572871
+"SPECC1L"	8.63381583633777	8.10506824477159	8.43679203024993	8.12119425865699	8.10953825409995	8.47163738971692	8.50756380050563	8.17804314591019	8.44029621153236	8.3257647296843	8.17590674388113	8.1273587302096	8.36551600433261	8.32837428438662	8.54492535849023	7.97966418777827	8.18514172336996	8.25507765385266	7.94171235073384	8.35793395330186	8.33804445835845
+"SPEF1"	6.5187762443227	6.78953192216935	7.13109351214243	6.78073643933705	6.68976444988302	6.85166682798143	6.79365486652019	6.44443021041898	6.87197861817364	6.85711188647961	6.78409642545557	6.8986203369894	7.0918971037256	6.77722998582127	6.77896960581051	6.26722896358727	6.46445924381904	6.72137958244432	6.66366162342215	6.99687559058465	6.88547497587806
+"SPEF2"	5.20566610075057	5.24077734470098	4.94353236858526	5.02654903276088	5.68519644295041	4.891431597517	4.37607040428977	5.06405820790589	5.16543273124401	5.17133303087762	5.04039992259423	5.45124121372987	4.67276173753115	4.28967669208727	4.85695083056802	5.22787938662513	5.20124986660154	5.11411645569628	5.2330924388396	5.80592812969967	5.44879578491151
+"SPEG"	6.98322457255075	6.9879476989299	7.26176257486765	7.19113295162301	7.14950004769612	7.28409170543296	7.76974637588839	7.03056722410335	7.20515036642167	7.14950004769612	7.00810573327503	7.22650657363355	7.24024411835221	7.52621433137269	7.05454312937889	6.86927330625185	7.24202076155081	6.8684216327009	7.14950004769612	6.74804612627893	7.18283518938358
+"SPEN"	7.18391943129823	6.88720793114982	8.24304777012686	7.39686098388691	8.60340597017458	9.10862186091576	6.96177146748244	7.274047224207	7.39581279821155	7.11389934480445	7.57808195686048	7.47097332185299	7.46172642935711	7.26337855183273	7.48051285363236	6.56648072265018	6.99251336479622	8.35280357805787	6.9180298523379	7.3474263195029	6.6942022954444
+"SPEN-AS1"	7.5273278184236	7.75606164615386	7.89166823012552	7.35367653669883	7.98986371399535	7.57611032321118	7.32603683157725	7.67244400554405	7.29720176823498	7.52102966312036	8.21663424234427	7.56990205025351	7.21615814606671	7.56990205025351	7.617053472018	8.6928566815558	7.48863498744461	8.64550684252942	7.37534871177712	7.30514038197484	7.12752819856427
+"SPESP1"	3.6634323413233	3.89010588573976	4.34212957715265	3.62346757586218	4.07253062570134	3.81662459214966	3.75714810291262	3.59513006639763	3.84433085657453	3.69672455430153	3.70528918570796	4.01389376668729	4.18232037284009	3.84746626312461	4.34634699370544	3.75236794640288	3.85245204189687	5.4334389876918	3.76897406808419	3.64654978834432	3.33579398976909
+"SPG11"	9.17180337876124	8.87137924660813	8.81879593681505	8.36509934923012	8.56845785000032	8.29221764382482	8.2857007048546	8.57727207696405	8.24903079063895	8.09711353383724	9.0209711904206	8.25539472221498	8.10121602293825	8.38685608661542	8.2643132457234	9.15837499186749	8.35492604562721	9.1160878821037	8.40611133988023	8.65021735178228	8.37828625677426
+"SPG21"	10.1960734474998	9.83111994625665	9.76144266912815	9.70887703109595	9.74246596027598	9.94442108020334	9.67510653047736	9.6725463826257	9.84945679406911	10.0972512083447	10.0290382555043	9.82679132047273	9.62336680518622	9.49531416201071	9.95731573004941	10.2912402509641	9.77537089183756	10.2722006843061	10.1323985666065	9.83962543152998	9.85998791509681
+"SPHK1"	7.02444170142936	6.79125307097467	6.59182981318283	6.82515776683261	6.67385820263704	7.17247179912114	7.09987713875167	6.78026310549226	6.82611994473778	6.82978707416179	7.35847818771755	6.54397024830291	6.77149037349067	6.97164142622823	6.86612633913253	6.98601658158472	6.76737725511128	6.68090069029054	6.69192196207702	7.01076302836726	7.02771038350416
+"SPHK2"	7.67365083029755	7.7451637014884	7.84767375609615	7.90569124545535	7.99341325989782	8.10607628950713	7.8603727156302	7.55977799683748	8.04499929733991	8.2379812876028	7.61265034176549	7.92145412273697	8.06842613013479	7.80862054158973	7.90682359713984	7.76726053295749	7.89341088128319	7.64587864866886	7.85142841426423	8.25141143546844	8.15952643203502
+"SPHKAP"	7.22278825800372	7.8804646766386	8.58785355418916	8.51083544524766	8.95604143674267	7.99412183337991	6.59052134148026	7.8416386827372	7.67927393578977	8.43067246984177	7.64620700656828	8.03879137513328	8.42216032915437	7.1523161675844	8.26365364683986	8.1615271249991	8.67552132214367	7.93160503594444	7.89302396873218	8.91115459374318	8.94142643630252
+"SPI1"	6.14505941677971	5.39291281759641	5.34022480734579	5.64778786003062	5.35798226847623	5.83999369262283	6.05705369344318	5.97408266293096	5.37859528250341	5.83689897044934	5.71078013401595	5.74228699783712	5.94298314832276	5.96701869092031	5.54834992539502	5.55229416957787	5.51298249648031	5.56820627936589	5.66360214985362	6.07443338677887	5.91536334384264
+"SPIB"	5.29355785547437	5.98737603366594	5.83489135196075	5.93901125883006	5.83489135196075	6.14499043192391	6.13820372216966	5.91804358249376	5.83489135196075	5.83343049004041	5.60036530896283	5.83562122862422	5.83489135196075	6.0088375330385	5.7662511083396	5.60922097967063	6.11780586089154	5.50076182085259	5.94251781072187	5.79889408949688	5.97383446561077
+"SPIC"	3.03510797739505	3.03200341183024	3.03510797739505	3.03510797739505	2.99534742046126	3.21364523888079	3.03510797739505	3.03510797739505	3.17600430465528	2.92473255530167	2.91419174836181	3.06097870723726	3.14500179953169	3.33495993756496	2.9394895367629	3.04646665504187	3.13031964914006	2.83951303226649	2.89546093453496	3.03510797739505	3.26714895753355
+"SPICE1"	5.76518265706899	5.62330932016483	5.6944597189598	5.28715445771572	5.57518026887978	5.54450087133998	5.31993225958753	6.06019484499136	5.42123165604264	5.3892441827412	5.35941938285623	5.16378670135885	5.13254939416289	5.32376738151045	5.30298792713667	5.53921937560997	5.36814931475943	5.24508389301985	5.22025635773318	5.3621589408328	4.61738986277418
+"SPIDR"	6.4037923697769	5.72745964225213	5.29547351810414	6.03364632141478	5.49146371243794	6.14893618509495	6.1736781972743	6.52511381332906	6.4087885798217	5.96960235870732	5.70226713288441	6.07447242365776	6.40871108937999	6.2787160364545	6.1228676774859	5.73233378988972	6.24262071888236	5.4283211458124	6.2190363443883	6.21039360487343	6.10172455145438
+"SPIN1"	8.01845916878577	8.45229018975748	8.60200676835156	8.8027474620689	9.30833260463819	7.3907333692508	7.98246615865576	8.49993108961748	8.97272057768463	9.14007615661853	8.7076648816127	9.01602249144333	8.61748960639572	8.16196404301013	8.59109975152931	8.52349569112614	8.75409063289762	8.59038760472496	8.79290752699775	8.88592463640067	8.99257535773211
+"SPIN2A"	5.12913568771784	5.02884939013247	5.0551930744498	5.12913568771784	5.01036083412348	5.33358936572871	5.29593372637321	5.06228699794686	5.38770637979894	5.03138382004249	4.74849001757878	5.12057429431316	4.91674223743239	5.56707921420606	5.05067234567572	4.86751150657882	4.99998636745967	4.90110950308374	4.95016339173725	5.26983709489409	4.85117484010004
+"SPIN3"	7.53936567439366	8.33325368998086	8.46267648243562	7.85718819344076	8.82202119560212	7.96968170169656	7.33305739416772	7.44271228388484	8.52521224192904	8.66179218652817	8.09867796004286	8.71031380567468	7.35372127335825	7.39711688658277	7.02128223540427	8.28670022596142	8.31387384587505	8.37010438812188	7.99609369635203	8.87001654658574	8.31891249562172
+"SPIN4"	5.0110754538709	5.29283007306253	5.72731346398611	5.12065382507369	5.47812399511398	5.30788973031682	4.30858990656457	4.94750851936484	4.62667028783028	4.71671725778278	5.60587794256785	4.87598852855677	4.92805383203136	4.83851391392687	5.22615595151859	5.63345690108284	4.90359804983978	5.93364577580983	4.92805383203136	4.93314949474012	4.9348397902864
+"SPINDOC"	7.0266569863129	7.22789514729551	7.40930450708729	7.5839535153569	7.39106238271379	7.57458645865934	7.7359528297498	7.35264451097218	7.1970096078349	7.18726798228735	7.27939171461506	7.33363242673189	7.8262846937633	7.65062796816002	7.78340368016003	7.09388036060302	7.12561565222716	7.24395063881693	7.37939255870568	7.16303386264781	7.37716029893575
+"SPINK1"	4.05857347229716	3.94374035472117	3.73036200697385	4.08988943261946	4.07079572621805	4.00243195044087	4.111810546417	4.27581365844756	3.82014113857432	4.02510102475415	4.01327615244188	4.01493667345551	3.89888151977641	4.2668077150755	4.47258215642825	4.19860394690462	4.0505370816752	3.77450158446994	4.12152468277539	3.99826836265355	4.10503608742586
+"SPINK13"	4.47893073756256	4.74799530095952	4.78242420911274	4.50496137319293	4.74946605776807	4.58589952638102	4.82317333899599	4.62997099810568	4.85476749256154	4.57937502930191	4.54428277494961	4.58137822843322	4.75076534343372	4.43664814756485	4.79754391334149	4.68164683663655	4.59304209144307	4.57063104355602	4.40066363752288	4.62997099810568	4.61738986277418
+"SPINK2"	4.858672260209	5.47004792260637	5.21348509136015	5.25933259883504	5.28284814842232	5.20814624464215	4.7342798582704	4.75383723649832	4.97996265113183	5.13085068212065	4.63139390422913	4.93798744562751	4.99154112435218	4.83054530916603	5.13710888931267	5.17436822904775	4.99154112435218	4.99154112435218	4.76402463941101	4.97996265113183	5.0664880718228
+"SPINK4"	5.96906703043785	5.8580091200803	5.91679034380017	5.95173696866715	5.95184203826558	6.09487394002057	5.93094166675859	5.78647196319805	5.93997142398131	5.9841263243859	5.78062506816841	6.15748960046497	6.12992984973133	6.24443397539332	5.94345263226745	6.12059484398192	5.96906703043785	6.05346163701186	6.01325098861294	5.8172070364154	6.07752419170842
+"SPINK5"	4.83851391392687	4.90122496205643	5.03264719200774	5.17232260623098	4.90656119712836	4.95943014296011	4.9836818722771	4.85963176328718	4.93685223533366	4.90779630742658	4.67048664079024	4.79372449700049	5.14676497523143	5.0216646784101	4.82662694935424	5.0081321648424	5.01746615673037	4.5894923411329	4.71053213449685	4.99242062066123	5.03837275921186
+"SPINK6"	4.48917371539459	4.33731013629785	4.26131115089369	4.46462203180585	4.28688816140686	4.37827747117498	4.42816469792741	4.37827747117498	4.71212739814245	4.41437540100244	4.13609319838367	4.51205032363532	4.59979735916838	4.6316440567415	4.3216582494757	4.61040111291486	4.56495253140455	4.42199810110984	4.69565610288179	4.42816469792741	4.35885481023798
+"SPINK7"	3.89569431640325	3.97511550063468	3.956972031568	3.95907126396921	3.83539584058005	3.95783143784853	3.90779912690604	3.91977967638055	4.05032341320928	3.76649585251223	3.6950358321976	3.89872849659046	4.09371136346877	4.02210103938381	3.98571319016504	3.59426587738364	4.00755716369512	3.82663442800687	3.73531292813026	3.91977967638055	4.03543477047308
+"SPINT1"	5.26947007870664	4.93726511780973	5.11807713797294	5.17531102246592	5.20671345061597	4.90780789744715	5.66924473452819	5.22777586232923	4.99182793073928	5.08547111570424	5.12746650795198	5.13183740565364	5.39889782783543	5.33991294685331	5.24930799186773	5.06037703724463	5.36085911219854	5.05689303016191	5.16770721107209	5.14738605208812	5.37310883481158
+"SPINT1-AS1"	5.90248181285679	6.0253873122876	5.95695614686461	6.12355292427533	6.05766225755548	6.39405854366102	6.41940055393572	6.09028528149487	6.25657190046291	6.31852263485371	6.18615445204872	6.12355292427533	6.22528175453793	6.25660672928178	6.04217839871753	5.91309396727695	6.2281297046882	5.87256177838841	6.12355292427533	5.74354632839992	6.12775989612476
+"SPINT2"	8.49659551932548	8.89524435716918	9.66717235367413	8.84450940905184	9.52709202173098	9.09451360031729	8.22552211414561	8.72833525022701	9.08035142772913	9.44628902637071	8.53308051677211	9.2785077880935	9.02329866248085	8.69030572307968	9.01881330414085	8.67639964798453	9.1688363422534	9.1044275798524	8.89076031343297	9.62905740736224	9.36556845345639
+"SPINT3"	4.5094063649372	4.28152524151472	4.49536118144204	4.65915049192384	4.45981286999376	4.408990785089	4.50894974123075	4.51715017711111	4.71703800024806	4.2493817728559	4.33458069165412	4.66736032067002	4.48672992883388	4.45981286999376	4.57612090171525	4.67993695562688	4.60579660172782	4.10089145875054	4.29938893389525	4.17772127156464	4.36183398848804
+"SPIRE1"	7.13678804698233	6.87395872382028	6.02018857948949	6.82450629332652	7.29298888514736	6.54809057595236	6.9307394123275	7.02053180563133	7.10072778363277	7.2748527594842	6.99843485728221	6.98664556632234	6.39647865852914	6.85862626126732	6.79633495007582	6.78620641321294	7.07054386352292	7.28362188212252	6.97840742184172	6.9939598212631	7.28193154751261
+"SPIRE2"	7.19854778905771	7.38985838640809	7.88355345441636	7.51123625703881	7.54158996058762	7.60300996662925	7.53516452656238	7.49706470668893	7.93277659440658	7.57785602360555	7.32840926855866	7.34459078875318	7.83159734507273	7.68454106860051	7.78472176438455	6.98936918831359	7.43626673708063	7.28561044465142	7.51123625703881	7.13081736787554	7.4884287683415
+"SPN"	6.19062247266393	6.03334881235164	5.80963643267063	6.091876266535	5.13039521341165	5.86386010973685	6.34410998748756	5.83494851891441	6.11669385283273	6.20133638272686	6.26866953474311	6.15928875898962	6.18525411831997	5.90996949158728	6.11027099651978	5.78866162916054	6.06684748539999	5.92638784869574	6.44462388154056	5.31038175413816	6.19918980148916
+"SPNS2"	8.66647511431087	8.39663096523895	8.52534021880216	8.74040133238451	8.44676865924939	8.79256179566361	8.23396103665404	8.33490235665373	8.59857786076943	8.55204196673352	8.83185401511297	8.44820956124738	8.83546823555826	8.56321829730939	8.73544479290899	9.22091848335918	8.67586907897569	9.2767316171686	8.76898084978685	8.65542980338821	8.45241353258421
+"SPNS3"	6.0088375330385	5.51246311797097	5.78351108571233	5.70678777806962	5.41131871352928	5.7662511083396	6.13058555994961	5.65859722592425	5.63282737911643	6.00670622707959	5.63516839993087	5.73156682969992	6.03710064482539	5.85574037576067	5.79212792368796	5.8745486758254	5.65431122641115	5.44596760739255	6.26521185180792	5.36257386747261	6.05499011353193
+"SPO11"	2.90526666947936	3.05554742298145	2.86311182820262	2.90739642756973	2.90363888889045	3.27615281986842	3.05742862120358	2.7989919379753	3.09109773471898	2.76237491983898	2.66770106516973	3.06407510264311	3.14267409893562	3.01853707933012	2.91357026720478	3.20892491453104	2.94906970106365	3.02252589714625	3.13549163378371	2.97700084674542	2.78540569130601
+"SPOCD1"	6.17724931600696	6.43495746693353	6.5215822634561	6.35020257120334	6.33198189529023	7.20160046509388	6.65257715016651	6.39584940646747	6.4326997855846	6.38605561802631	6.27491531476537	6.13922558165768	6.51509846209096	6.68962982543608	6.42716649535774	6.38772445500195	6.26065213410191	6.36041670962286	6.52819860284685	6.20645546870392	6.42387722905714
+"SPOCK1"	10.7799513128218	11.4528572110578	11.354318580677	11.3456408799707	11.2905472698885	11.4051415512342	10.6722693971047	11.3277307328367	11.0892539801909	11.1985061143634	11.4695577165121	11.4052327292638	11.1657501894031	11.3208021305529	11.3144991540716	11.2612446678257	11.5019271839277	11.9546703895566	11.2748249004065	11.1813321918876	11.2472339260874
+"SPOCK2"	9.2152899258744	8.53899784606277	8.3069312279129	8.41639615490306	8.7843495376162	8.31291070378264	8.66599788369232	8.54065916567322	8.27710939910464	9.30469454518234	8.78885478509588	9.25299918012197	8.18570338914445	8.40621885279614	7.95739766652721	8.59729858285166	9.15641532475332	7.88498302159784	8.42173561372588	9.43392360052456	9.39990690628723
+"SPOCK3"	4.83732178258147	4.90962633458843	4.55139952972286	4.24475829282222	4.46625938973026	5.1359026074338	3.57140354839499	4.07489650248989	3.70571262567951	3.86454716976754	4.85207757098419	4.33063108444659	3.7694411081246	4.23128641521097	3.57033456993082	6.5104772600753	4.34982372531155	6.25654868920048	4.06976062801504	3.51992389785282	4.21749257809528
+"SPON1"	8.52171791518355	8.72669111209489	7.29244671061819	8.09889139847564	7.80249766670502	5.75342662303346	8.15548495513879	8.54687091553244	7.71658219925554	8.21321060339641	8.77536719059533	8.09883809417703	7.06312637422349	7.23069030698991	6.86514611500985	8.04898107168735	7.92400044306945	8.03210047082525	8.01805887898295	7.95111132316546	6.99050813560392
+"SPON2"	6.31484626305645	7.21332337137069	7.26291615844753	7.26818147258865	7.20251353920024	7.26029117151439	6.88388170087791	6.4723128531249	6.9569623246762	7.09710799538631	6.6446031724401	6.36760300299496	6.92119906680079	6.87186961140372	6.46166611354857	6.42716678958973	7.00644085235443	6.28728200923485	6.50499756859156	7.16421823591096	6.78385668737246
+"SPOP"	9.29747623000952	9.22777312334907	9.07088007761696	9.54470031867629	9.20499529364513	8.56566339354672	9.03586600090015	9.28845062966117	9.2386854500583	9.2386854500583	9.6141369102328	9.46352025143164	9.45783913884155	9.06651092746791	9.31019332127454	9.08194887101451	9.31429226623514	9.17728034382355	9.79065295263523	9.18549353021916	9.0618727186136
+"SPOPL"	8.5535673170392	8.50389962157298	8.18262552520348	8.46572037339471	8.56231292917732	8.50100846463929	8.44563777053836	8.46507451611549	8.60820463816742	8.03612935432644	8.45995986215047	8.13124674422813	8.39163662375476	8.53270442794367	8.74425076697969	8.88035202681584	8.51893143499577	8.99794120825132	8.41906242826451	8.18844166044846	8.33226675485175
+"SPP1"	12.5014714715581	11.4257566996991	10.0706352664958	12.3415756677274	11.2109893573905	12.0178117426153	11.4343061750223	11.7066601042379	11.2952258046838	11.320378620715	12.1867835435262	11.6440736176852	12.0483450564369	11.6904715892609	12.315037404105	12.5589599890008	11.2140646355107	12.618173842126	11.5803522973886	11.1348840604451	12.0251857256825
+"SPP2"	4.76171858119651	4.97574324314852	5.0854630302573	5.19595305634148	5.08351690091522	4.86307102023367	5.34810385551279	5.00464271214721	5.19428006361567	5.17394566379773	4.67495707212093	5.13862628019035	5.12438895506411	5.12485846720723	4.98106148707845	5.43181239447287	5.10865748916998	5.12244311810584	5.2745521822987	5.05626444871551	5.02534911840054
+"SPPL2A"	7.98918873140689	7.22887751667864	7.1327905310437	6.92579818768199	7.50956827422337	6.81037541255721	6.90348631073993	7.66088485445966	7.08373002116914	7.57581929245882	7.1823368594283	7.10581806156608	7.0077427914719	6.90074903456339	7.25175558484062	7.48115715736096	7.01804857249461	7.86952552653405	7.07386141807582	7.55498901929873	7.22887751667864
+"SPPL2B"	6.96867080768805	7.27909751653547	7.42089027388012	6.57019447314706	6.97462132687096	7.19928112410607	6.57002763734293	6.21009233607836	6.31601944212345	7.0713656515004	6.99037585216209	6.73929411041066	6.83236469371306	6.98378870300874	6.30997109772858	7.0059604944301	6.51977063880465	6.81477528236767	6.61263342439426	6.82770246201897	6.84077998819356
+"SPPL3"	9.08316585618485	9.04384040887334	8.94634646777699	8.78591720263417	9.07717106736526	8.96400795501074	8.51705822933004	8.62359921059578	8.60700059550994	9.02732689220287	9.10234929834508	9.04961479739957	8.45102577852825	8.52151026416968	8.33135302752354	9.4123576180528	8.93276503848391	9.4518946320918	8.72322081397824	9.218016288409	9.01004562093656
+"SPR"	8.41416424300617	7.88328508151742	7.72438323047425	8.27318254928567	7.91802803536138	8.11702586434365	8.35876291650319	8.22380140726688	8.36862724248827	8.14796353899907	7.82875210098956	7.92487518272069	8.40425239949855	7.96279369399568	8.35742677601869	7.87466246062175	8.06901104490744	7.80385384327385	8.45461765390202	8.19868076765766	8.01761605478712
+"SPRED1"	6.21448434828941	6.68245144510428	5.0039934930029	5.56256375073673	6.27548579450924	5.36371415007127	6.43245782352915	6.40566936471821	5.8704121990033	6.00568061782882	6.37930320900132	5.58388488432933	5.73935729789737	5.36015238895865	5.07827190083364	6.24286137770117	5.730316207262	6.63015153063038	5.80201321528633	6.10996929473126	6.09969738328598
+"SPRED2"	8.79110777422277	9.09553016589784	8.92902201627486	8.97408907848304	9.05545429266636	8.27495682724019	9.30442502071413	8.96811104906451	9.0368299500352	8.74521682988237	8.41105702568422	8.52395924818275	9.02667364343106	8.83895487961298	8.89702639489265	8.13045291064862	9.13553682660564	8.53048871953705	8.59094918220249	9.08437806196682	8.70309409537683
+"SPRED3"	8.06129243156791	8.04929183210389	8.19900118471642	8.18230648231339	7.93259931247094	8.75081622262629	8.92216389294717	8.17703045617752	8.14977440385972	8.04364885915265	7.80680579407337	8.06707446366127	8.37133657613642	8.69716286026292	8.04596384177704	7.77129701595356	8.09861186548819	7.57578168869738	8.33525952328285	8.23166492792311	8.16780721946102
+"SPRING1"	7.88523721047303	7.78972480636876	7.04385756803351	7.54492900026411	7.98956159360275	6.91722402192205	7.52651766171884	7.95450887278054	7.82348469809747	7.8463908845595	7.92913118933398	7.68957727013645	7.45976858442525	7.4096988653705	7.79975586251396	8.08722090925608	7.78686892796891	7.61065315081341	7.48232911798089	8.10873842330907	8.13529524234566
+"SPRN"	6.49518814453666	6.55117557739703	6.74731606813165	6.33076643208949	6.62548335106058	6.82014586741689	6.75401026026908	6.36574162325149	6.46628782648429	6.807110234235	6.26385583863501	6.77972368256721	6.72731970800596	6.52708234042513	6.52445964727352	6.37711665316399	6.62489331165076	6.39355246706193	6.58576779167235	6.88150956244462	6.79545694986659
+"SPRR1A"	3.62695576632378	4.02203434189823	3.75713614979909	3.58757799490915	3.7475682248798	3.76937057391276	3.37466534124298	3.51943634186783	3.68926208716085	3.62529576834299	3.35685985709602	3.58614324011656	3.75924473472407	3.62682551807356	3.53083071916409	3.64164000814672	3.74545981057222	3.19252788411931	3.57213488628071	3.76708311269445	3.93755984127612
+"SPRR1B"	3.98589066684551	4.30509159911553	4.09969749589615	4.07458162733294	4.02742741044696	4.05720970044003	4.13356408516591	4.02742741044696	3.98464949764029	3.95172745227263	3.9526432462815	3.86308658391523	4.05720970044003	4.15875006573922	4.09214369922129	4.06207725795968	4.03285655451968	4.04803726338877	4.06335433732779	4.2357457786614	4.25946839058546
+"SPRR2A"	5.40239198536409	5.95592060976645	5.66527197731348	6.03251329770074	5.76730302648603	5.6925824275593	6.11314320577176	5.54460354988171	5.94717916051971	6.02062429913177	5.83810184626774	5.97356257544638	5.95678306536732	5.93356126618403	5.86690335585075	6.15400572018908	6.02975975220302	5.52367412819473	5.82802292832422	5.64803910614786	5.76988369826647
+"SPRR2C"	4.12326110495088	4.25964472169835	4.48266009334045	4.11408191602907	4.29171565965852	4.15208892540975	4.25369197097767	4.22539872491624	4.16199039000866	4.25964472169835	4.51999565969026	4.50150784103267	4.22539872491624	4.24403293087103	4.34634699370544	4.08302505103739	4.52888097292027	4.25964472169835	4.14196913800817	4.3041023170563	4.31840901226477
+"SPRR2G"	6.11215362133611	6.29079601809376	6.0808516588449	6.55412424374055	6.37518032864974	6.15368257693937	6.20029356057101	6.25975585486541	6.40112114550652	6.36493374991979	6.18970556804531	6.60038094301748	6.60684359348884	6.37398572642645	6.25796161345581	6.19090719485407	6.41902409569302	6.15761803919938	6.35769068133883	6.23604195077991	6.6630515980806
+"SPRR3"	4.31155476224759	4.80793477563014	4.66757060514092	5.03957824128172	5.01549319662782	5.10316171799929	4.99099922823035	4.7192841291692	5.34815977716034	4.75663645487024	4.8605182261377	4.87036187243492	5.05331294369671	4.83979277037507	4.87725408607375	4.53905170328027	5.01744968016223	4.67395026481791	4.8600634839992	4.82134270427606	4.88748385575231
+"SPRR4"	7.09513984009009	7.40725139983869	6.78164934686625	7.34876809540052	7.09508473513436	7.066230395784	7.37011795583607	7.20016497848599	7.38613302951116	7.28049908943808	6.93362234386915	7.31912082392709	7.36613457285019	7.42660437615846	7.28568820554075	7.36554275875059	7.38817885033679	6.74590813098076	7.08016218472637	7.24913449065251	7.32254982071205
+"SPRTN"	4.1457618293368	4.00630187077441	3.98257459746064	3.78338445842195	4.02941109679423	4.10488458831886	3.48401303533419	3.73648041729871	3.60079841821698	3.87714807452224	3.80892343267033	3.63832939304527	3.71031846596918	4.17923831617189	3.8012599309415	3.98173582234632	3.84678478312405	4.6221206296879	3.68688793371612	3.9091487518426	3.74488069835051
+"SPRY1"	7.24406824122785	7.24798556561319	7.10977899920949	7.24172339725855	7.6267259254621	7.34371594189027	7.09608935253017	7.11999265797565	7.87889540744553	7.10543933067809	6.73378443961708	6.81684801311607	7.35397244237828	7.23237377478588	7.55036112483707	6.80128705907523	7.96535415170457	6.7984486335579	7.16367588228806	7.51734484691989	7.44811766052312
+"SPRY2"	9.20767007990332	9.19561812841942	9.0738700764864	9.02266907127995	9.15698062478931	9.2794335892987	9.30027669520014	10.0789615009966	9.02608719630302	8.59941580343785	9.1065380977355	8.73973703235687	9.18336508574204	8.99599547398444	9.28493341837425	8.7765055188042	9.20767103083372	8.71102074348313	8.74525671124302	9.04181562700349	8.92765500888313
+"SPRY3"	5.4421057744019	5.17214728473212	5.65384193246519	5.25933259883504	5.36436805642421	6.00372647207045	5.93095798631781	5.4291492640343	5.79661032785888	5.60545716119505	5.09318970048718	5.33350581749516	5.90739189760262	5.84070465210204	5.87021598894085	5.22458041671899	5.58149924278408	5.30118714585763	5.55772199136265	5.63722529328795	5.19437799969632
+"SPRY4"	8.04930584369223	8.117245960483	8.38952339626599	8.01332258730803	8.35470183722649	8.66058324405565	7.83799716607926	7.96301807642595	7.98021222798247	7.64274029563131	7.52969059219028	7.08597016475767	8.5691824994869	8.23963008235832	7.84936668117152	7.72545331484965	8.12437560946189	7.71820779195886	7.77883686996219	8.70025768088097	8.12288025447481
+"SPRYD3"	8.96347582659019	9.34189138930297	9.60945390191081	9.49525732805665	9.68019215847664	9.37803675273365	9.19933680380542	9.28287377237907	9.60751776776957	9.70697955421036	9.09191882671537	9.74471238506032	9.44314438474629	9.15752978915325	9.27590783972234	9.13047689429171	9.71262033272274	9.1998927370911	9.40067603260764	9.701960707779	9.75424244934389
+"SPRYD4"	6.16152468259651	6.33524317402453	6.2001119756544	6.29167323049457	6.41755486876755	6.29167323049457	6.5993801019023	6.25367979318412	6.08863063880805	6.37021358664991	6.09394485389755	6.29167323049457	6.31277997987828	6.44931268180459	6.09997718472346	6.33622428609359	6.12255012023402	6.24068276907569	6.36564272597421	6.7249422122841	6.24850461765212
+"SPRYD7"	5.68987082259156	6.62351045705216	6.12059484398192	6.69857580100456	7.03810029240026	5.70036892347966	6.09224286055378	6.69992966362647	7.34712064025873	7.20346614286036	6.66169562882496	6.77621781441583	6.54128613105554	6.26601642296342	6.82386774814285	6.53391999831217	6.8298705151178	6.45904559311919	6.61733733939318	7.26632004034264	6.8739283639331
+"SPSB1"	6.71498365542297	6.88710478941501	6.7599930224376	6.79696877046717	6.49046561295745	7.8473875799883	6.49637540067593	6.81190383685797	6.38726943384012	6.28688650223973	7.45569129263717	6.89477850232221	6.63960750572767	6.86926536569357	6.4159466304982	7.67962667356705	6.89456667285063	7.68198130114877	6.74866470764415	6.67774970280893	6.39936146658698
+"SPSB3"	7.73331151668391	7.36770276560244	7.67154596552929	7.51313585195596	7.40064924648874	7.81281375679665	7.90469399015614	7.49263902191842	7.55445937270716	7.75861978656006	7.59473109962225	7.59473109962225	7.51523481061004	7.70781597641924	7.41790411692979	7.61009082623721	7.59710480450727	7.59679273461328	7.69436550864851	7.63021968334489	7.32327074116856
+"SPSB4"	5.82234283572657	6.19751437468814	6.12059484398192	6.32992420426508	6.2716101473001	6.66237402427022	6.47440883651283	6.16409098453546	6.24443397539332	6.39031348506077	6.16004769975755	6.22762702584991	6.49512996622264	6.30046269608554	6.33905299195684	6.268594089738	6.22715589475115	6.08015201164716	6.24443397539332	6.11336598801243	6.16338232955149
+"SPTA1"	3.98236754487159	3.76567116046907	3.87005940851284	3.82780891560517	3.72201942375172	4.00252106217541	4.09214060843092	3.74100845787856	3.89672851017041	3.82874583313902	3.79120553651761	3.79269598440213	3.98236754487159	3.79340624972589	4.0297254841383	3.88374052111428	3.80185734150473	3.79564709012064	3.94954304997203	3.98429312444287	3.84054160309622
+"SPTAN1"	7.91444377006675	8.20603440294085	8.29011161978987	7.73265389034972	7.93110209278456	8.57210490033961	8.03064597539756	8.62800060986364	8.0430417254847	7.83659007690313	8.11897281376755	8.77206187097696	8.20889153689736	8.02776684763345	8.05557709905902	7.31675515518781	8.57146727007589	7.87417569398161	7.97786463723098	7.80190239291698	7.77394570838293
+"SPTB"	7.00595376741118	7.4163012231198	7.70165203761075	7.3232583383286	7.62524813343181	7.22247095718019	7.262264246887	7.21588958823021	7.72540250877053	7.68479804171627	7.1504206101411	7.54841036459884	7.46507602013951	7.39645328495126	7.39284386126139	7.13998927910984	7.64434721208358	7.12988228642288	7.25757277116933	7.93463108266964	7.53412121972943
+"SPTBN1"	9.40176859362172	9.73171133056653	9.54852600917748	8.82779035427464	9.01057851518181	9.77714529955794	7.52768281404704	9.00831061700321	7.60544244907794	7.86455038833684	10.3296657142682	9.1970983858235	8.8053261851188	8.95310131730801	8.49134173142319	10.4846818363468	8.33364704041132	10.5492431556127	8.3267659425494	7.85815917587266	9.30401526457875
+"SPTBN1-AS2"	4.34186627141086	4.40829907259179	4.4274741522266	4.18753965625879	4.02839935701267	4.14029911166072	4.54329951025709	3.98434874815085	4.16089863856463	4.01778306005385	4.38134561267147	4.38996224425955	4.38441188127328	4.45235303318879	4.13728906359495	4.57584826550413	4.37963982205447	4.36260450464711	4.24597394618276	4.22065598036019	4.25964472169835
+"SPTBN2"	5.92674264228848	5.54335064469767	6.07977363501068	6.77428262007757	5.76472312370682	6.31237845260146	6.37821480288622	6.01064931356657	7.10010084106319	5.78768764509659	5.49583423222274	5.83554031288612	7.11131777433428	6.52452972681098	7.44090528070769	5.79941436668222	6.1655393750093	5.70580247554995	5.85410326272056	6.07977363501068	6.07977363501068
+"SPTBN4"	8.81994448808661	9.08769751972124	9.15467804703074	9.19224692235582	9.07029646537087	9.58340947617858	9.69239405997942	8.90293550537154	9.24205445096992	9.10358105514415	8.69201061329031	9.13042826801258	9.24807396889189	9.38376654026391	9.13132998752725	8.29637501965009	9.15647855229108	8.66432636873525	9.08746751039861	9.1906323208741	9.16231606409684
+"SPTBN5"	5.8668976310647	5.79976601284619	5.90298423196295	5.76455267523292	5.78790011348323	5.87490090233157	6.02052566921	5.71564383521724	5.90948758668202	5.86638160151085	5.65947484399003	5.81967235587446	5.56882380321763	5.83459988778213	5.91103419454177	5.70093000355812	5.7473605028556	5.53785170723143	5.66004056407443	5.75078418627947	5.99014627317013
+"SPTLC1"	7.83939875165278	7.77848913813088	6.98879901091431	7.17094008616001	7.75238958090095	7.1722906039544	7.58452787486087	7.64614832808609	7.4252822263244	7.88996388936594	7.96332255874561	7.72504271009037	7.09809649106526	6.88941279760324	7.01723140823871	8.23418090459996	7.55970299054305	8.57531624901662	7.4526098268859	7.75970595231064	7.41218788622347
+"SPTLC2"	7.76235127634787	7.2754974385382	6.09849473430414	7.07405131436178	6.6105097636741	6.69326731478277	6.71329708813669	6.98496276993549	6.22894975166585	7.07369372908726	7.77843161626913	6.87271645507518	6.14404566950612	6.99118165613074	6.10824361000752	8.36064431508495	6.52585243827341	8.38718343526045	7.0839875246391	7.03143768091955	7.05415283058959
+"SPTLC3"	4.28144032514973	4.05792819555717	3.68655805960324	3.80178679885111	4.07792606942969	3.84232318792524	4.14087634942906	4.33035670515823	3.66572350428609	4.67242392582809	4.07964407146481	4.02618768475557	4.07542387033295	3.8838102236969	4.18518511955859	4.13093064090447	4.10478835974268	4.02915605731415	4.28727667292302	6.31389660799486	3.72421426249425
+"SPTSSA"	8.34631022601937	7.77452445259683	7.62920304153303	8.31830144073444	7.5681178408042	7.22476209991562	7.97458624555428	8.70631953051774	7.83718772059009	7.95867996801387	8.73709508988495	8.17273167543063	8.19569764373409	7.68154769694335	7.99681064499354	8.23098592999571	7.69760342511035	8.41482586379855	8.00967446422125	7.7631739274823	7.43033049946754
+"SPTSSB"	6.7832560757971	6.96282650144886	7.04687097152898	6.98844487606473	7.0977471287435	7.21237774994412	7.20853671163003	6.82110745485313	7.15568800488735	7.12798597583517	6.65150141879534	6.96703915642355	7.12098008554743	7.14308263476202	7.14143637712367	6.64041255319608	7.02460542751951	6.72279739627115	6.99610221227405	7.12178481026057	7.08550581634435
+"SPTY2D1"	4.75604723506134	4.55508348250063	4.30306378200113	4.39361947576955	4.41140761350717	3.99976032737846	4.54230328258124	4.56061981914885	4.4752576076541	4.41140761350717	4.47814587857566	4.23574824690455	4.48151466131111	4.26913224144491	4.67021122688199	4.75309767067266	4.4752576076541	4.83253003256814	4.45640742656845	4.56499767130565	4.53130982115469
+"SPX"	9.64181918496593	8.85039766632487	8.33550083906802	8.59391856909553	8.56819112532196	5.41358251823058	8.24853010645686	9.26778772639137	7.83275012654889	7.7004777601741	10.5710684958374	8.38615131370815	8.153852921596	7.7631739274823	8.34223993923232	9.19916229642123	8.45329313632869	8.59580344191984	8.89870823532832	7.69302611420749	8.24376183908097
+"SPZ1"	3.04331263458547	3.04385858196007	3.05496538427975	2.86152000325151	3.22265957521078	3.3036910220772	3.21914055384142	3.12069793711506	3.2360316693363	2.83406737860704	3.00184244974219	3.10445188916792	3.10890923240224	3.10888791633709	3.07631002977882	3.19400184285163	3.18175450427025	3.0853699421492	3.02175288884916	3.1642388639878	3.31058305309067
+"SQLE"	5.28492920730133	5.6545712205523	4.8145779971065	4.80687113431394	5.93117398469806	6.08839382022658	5.01807701362283	5.01173285811855	4.78444570531292	5.79046347677955	6.25726152216593	5.70775370137024	5.22472731018585	5.14019699463849	5.08087643680558	6.50083064563616	5.20981235130957	7.14185800670748	5.31089494009414	5.50226584017121	5.67418681593501
+"SQOR"	8.80282310738423	7.24481915651216	6.55818803162658	7.10154762491163	6.97560627920066	7.50254900206502	7.5546807223786	8.09336025126902	7.00114192010537	7.22972453607872	7.27527265108308	7.02286741505557	7.18139803548501	7.55490312162693	7.39231143850228	6.9963991566011	7.01051706133721	7.10070718756561	7.16449819463419	7.93407022355401	7.75525169411675
+"SQSTM1"	8.01390460297916	7.40032463342838	7.80595065101534	7.95228466237983	7.18167618045612	10.0538490031205	8.29901792441482	8.18509355068981	7.78160196032489	7.3308809115521	7.81781494489872	6.8950511559039	8.19898675678864	7.84545993784288	8.46956501776123	7.43880537715723	7.65891664931038	7.31083550678618	8.16271987478346	6.64354006749887	6.8414097251445
+"SRA1"	7.94352405775927	7.71347640517449	7.68887273056386	7.15035004229295	7.76596900838053	7.35592929390203	7.52109484696991	7.60988005485788	7.55901408593781	7.98069651070874	7.63986897076009	7.57001382976628	7.53113215790547	7.5497323130488	7.49058124046847	7.60732819698085	7.09468769860034	7.57741650944882	7.52749747261861	7.95367676149562	7.89288593966199
+"SRARP"	7.97505899375636	7.29759620995977	7.25076780325555	7.78955296298008	7.31396150591733	8.42906441567412	8.33791269774359	7.26542093163227	7.69791754701749	7.60901198589974	7.46280823132551	7.27192915699752	7.99154966700903	8.01399059990954	7.87118346372794	7.01697382871482	7.76309473825142	7.31336027097157	7.66808414629917	7.62873758172078	7.66513013432515
+"SRBD1"	5.89942448440658	5.71567355645678	5.73971809950586	5.29668550914417	5.67090260624623	5.6601614376364	5.08903553068769	5.42310817088375	5.12263366192035	5.58002478724076	5.83922504455994	5.5183230657416	5.34311893263221	5.42139016884863	4.87484248266088	6.01017208876242	5.18425645530541	6.04575495179906	5.45804048673594	5.92704252788886	5.51717012797167
+"SRCAP"	5.97121355296832	6.36182553487148	5.95381889764634	6.32367247226428	6.06779945558139	6.00112885977923	6.1489049554576	6.04118429777466	5.94142654763608	6.17503156546446	6.10518498887388	6.03764313413341	6.09624505286454	6.14527528705619	6.08114024109711	6.23490719211361	6.16373167508875	6.03104167026654	6.11684396432925	5.82422554292738	6.0397821174151
+"SRD5A1"	5.89938763346689	5.89938763346689	5.99976981946056	5.53246664827095	6.71182853289597	4.38732837839095	4.72083029964895	5.12412882071819	5.85096515760503	6.55611572456955	5.81208587578176	6.2393848331297	5.38509793519909	4.67399817248086	5.4269004914445	6.02403737755144	6.2030763496523	5.95131003099738	5.89938763346689	6.76540329453278	6.53643014226798
+"SRD5A2"	5.02740760427029	5.13265262446386	5.18968592556564	5.23389961059546	5.32400902883089	5.44061319479109	6.01909492477795	5.04384294345482	5.29352082201306	5.34633651374	4.88374040758259	5.24982499646842	5.46733242818735	5.50889987664162	5.13863847355629	5.21278066289613	5.29777155303699	5.01041516508337	5.27074336587067	5.19114608709518	5.15954824693267
+"SRD5A3"	4.31095339887256	4.00336365909946	3.98420852829658	4.13477571639044	3.61716643518125	3.54127067137852	3.36071612746061	3.54235795076007	3.59138672593476	3.84232318792524	4.88359886589589	4.03198295905609	3.53403562214545	3.7881720628278	3.58272163773718	5.94055255214795	3.98719275015192	3.84232318792524	3.89079057992586	3.85168338718229	3.97330034390358
+"SRD5A3-AS1"	4.24289081685027	4.20479803655568	3.73186503969357	4.15969624210085	4.03334131405162	3.83113716880962	4.22388718568902	4.05710649610426	3.96779852709763	4.00469379059507	4.1392300839562	4.073755653465	4.12448745057777	3.92390147896167	4.02569538648406	4.80608483168964	4.0809317125753	4.2381837045933	3.92873016563452	3.83597050846836	3.9543317179964
+"SREBF1"	6.18675084972619	6.45460032942714	6.49040407937785	6.15544528279024	5.98973163726227	6.16835749283234	6.33996187742872	6.28614690877619	6.50046306913787	6.32013798477206	6.3697230876382	6.31050125923358	6.37232833369864	6.17007248696622	6.19960624913134	6.45346988700135	6.36183088404115	6.24450576877764	6.20010769174347	6.09615779233554	6.36587404038259
+"SREBF2"	8.64963304847513	9.07262491767225	8.82709662985015	9.11282285954322	8.89991971913336	9.0263713061833	8.93356179096756	8.97893219380627	8.68596721783194	9.33144842796341	9.30639383112858	9.38549104366082	8.98431352462238	8.63163870742361	8.64697147777289	9.23488124193182	9.20512507304545	9.00974588097279	9.11014925852319	9.38858062337207	9.50772118399506
+"SREK1"	6.49867212218747	6.67340826197049	7.34497934005224	6.94370282585637	7.31284760352812	6.6911906463474	5.69518148803995	6.9804632166101	7.14536696876785	6.84538743859813	6.85745099466459	7.19411353327294	6.50440801941754	6.39041217807395	7.01060850632112	6.62910458446056	7.17544359759997	7.42587128788818	7.10595820812726	6.74672481116429	6.5644127403527
+"SREK1IP1"	7.01723888927776	7.21771226045671	6.80541721360623	6.88182197312937	7.46093843258375	6.38609379838461	6.83718327719088	7.0764154943518	6.79334107336598	7.25376621606444	7.27934014634142	7.01030821334351	6.50416272946587	6.42228391273016	6.76609938131833	7.5766838801243	6.83718327719088	7.39282889630521	6.97462132687096	7.16822542245717	7.00789113967814
+"SRF"	6.16017778771981	5.5221565804241	5.79862523854302	5.95481943624161	6.04462879909585	6.72305889592427	6.42894344547258	6.18013862240723	6.10339666741069	5.97502717365157	5.8117883256755	6.00188660608552	6.32724703634879	6.01808227715075	6.0437902078777	5.80975498110971	5.87062234183268	5.90659170157245	6.14423645878257	6.04462879909585	6.09588558705641
+"SRFBP1"	5.95446103592205	6.30728347121503	5.56893984122236	5.94347749257532	5.6541283663841	5.55362986658323	6.07634319736909	5.8991682594509	5.91219051467039	6.13651198041312	6.19655877333454	5.93221209432566	5.87664598481525	5.86972087244961	5.86191359729479	6.30951588266514	6.23716185970077	5.41816111704264	6.14499211524454	6.25181390379434	6.10504105737126
+"SRGAP1"	8.42573272267356	7.28780555366468	7.82028075715047	7.90506974689761	7.4376513815244	7.68527091374316	8.07634533362731	8.07942921724325	7.73426990774877	7.03688306438786	8.18925961222318	7.40189183131488	7.4189367615462	7.87991523564085	7.9028657623445	7.40072620900166	7.206725284691	7.69319767411889	7.30936777243247	7.28536485435842	6.98890313394996
+"SRGAP2"	8.16233288983008	7.5973248129846	8.09735873101028	7.61786314189724	7.56046380572526	7.69415327573738	7.70136303519312	7.30021192709125	7.48623711614935	7.22887751667864	7.67137225549298	7.12088091155599	7.67952314328925	7.78463003353268	7.84254188017966	7.94946476101384	7.32069459781919	8.05230354773864	7.53896714569184	8.01483286731883	7.90100063707832
+"SRGAP3"	6.36661391052621	6.71542990666183	5.61734167157573	6.65082835888321	5.49097216844873	6.11447321221293	6.53312688617032	6.83942915229559	6.65704268527088	6.10271985819724	6.49570450742703	6.49764776889216	6.80185224142202	6.78911271818958	7.20386157924552	6.44655922144111	6.75329963474785	5.22345587880976	6.50522507838708	6.56928342122498	6.09850505166601
+"SRGAP3-AS2"	3.7511952227201	3.9439781538938	3.57684072291303	3.99418528263135	3.99150395826555	3.76649585251223	4.04706235850104	3.72093161039829	3.99481162367695	3.82628982941117	3.88509171534632	3.88509171534632	3.8675247891193	4.02138743088973	3.91786672091424	3.94697826300705	4.13856982053983	3.95471898953212	3.90315825134953	3.79617676929232	3.96016422235205
+"SRGN"	11.3221014320025	9.35730624908307	7.37898796487728	9.88287377524752	8.73357412084048	10.5686621906158	9.69820842615824	11.1975051563411	9.44414015642151	9.81224509921228	8.69627938729921	10.4848159930342	9.80166232061701	9.97507813884025	9.86979095198891	8.45230885461561	10.9306290649481	9.10319924728239	10.3769482950461	9.81340117151358	9.91674082233138
+"SRI"	9.98693182391012	10.0577116745642	9.77885733976896	9.52226657496626	9.95238036812124	8.21706141823269	9.56487448264466	10.4275593402883	9.99906906241679	9.76906372212461	10.4450458168339	9.96720942369976	9.92174245306812	9.63657092610685	9.78384161815771	9.6230024117211	9.58019938885056	9.53046471859425	9.79284160312191	9.68806775564532	9.54275108005441
+"SRL"	7.51691128998846	7.2062426031874	7.23275066488399	7.47366641274837	7.22074198094699	7.92752882469148	8.0558103848289	7.27968263022937	7.64399707520055	7.47973755006412	7.19885469423405	7.47230535142241	7.62424730419353	7.80884725033093	7.5917533524705	7.43040405824146	7.36612113052763	6.91515437091172	7.5627638286452	7.44972641303643	7.4917414303294
+"SRM"	8.86883433366745	8.7553849242691	9.29073614903183	8.79673547315215	9.18163923475259	8.91510072941092	8.92834268666269	8.73867758496598	8.6353431363425	9.19812705499601	8.88477000492146	9.11444188145945	8.92837616407922	8.83859490218677	8.60214033780455	8.64462556334098	8.82659224766066	8.97381333489444	8.68218471957681	9.6798152363319	9.09037299223433
+"SRMP1"	5.55802987940803	5.63137948652292	5.60001045418514	5.7887354934289	5.86801616779338	5.73978225890969	5.72586839993825	5.68252365059641	5.42126131189026	5.68252365059641	5.79956445246513	5.93787473019815	5.68252365059641	5.8270844778085	5.80279947336905	5.70962719446492	5.78647001315802	5.54185680332923	5.67722498366969	5.62213906540512	5.84336763063235
+"SRMS"	4.19682931722779	4.42761668734104	4.45421292284583	4.30873309994391	4.32156230861937	4.95398382032668	4.61506066696672	4.52771531194631	4.60876291419405	4.51628944259707	4.50665525906528	4.50750487067812	4.69036848205287	4.73346453758555	4.51412888521646	4.26132893465569	4.32089683092828	4.17590518442472	4.81045327863551	4.27519562164893	4.59837128190027
+"SRP14"	12.3401031978838	11.7833250567156	11.7085559024823	11.9285746871771	11.9072693950464	11.0191379558759	11.6946162033538	12.0754136841981	11.9598153555092	12.0799592768561	11.9450157917188	12.0055999349373	11.5623841470587	11.7312205939281	11.8409676117093	11.6982994526764	11.9032917940132	11.8047400312377	12.1396462516455	11.8746268448157	11.7998284686049
+"SRP19"	5.77873466085635	5.59999760752062	5.4256440562961	5.98907378652996	5.58327663409012	5.75175953732748	6.26780063978684	5.56809369175562	5.63687991000189	5.38630060270381	5.83469073487845	5.53077052963597	5.84547181527661	6.06677252167345	5.72325573940884	5.73099579816502	5.59469790558102	5.50459532933935	5.87639330413536	5.45928309169106	5.49939976085881
+"SRP54"	8.45168497063651	8.48903906107486	8.59689272996855	8.15067705235888	8.57119482732437	7.90802248690893	7.76349464400365	8.32033194579644	8.02055807497815	8.57988149308491	8.75278485543186	8.43046712336186	7.8862988042113	7.56904459418587	7.72163385458126	9.05613970115511	8.37237349733647	9.05557883878652	8.37237349733647	8.37237349733647	8.38424063331435
+"SRP68"	9.98438915790881	9.98126734422878	10.1699472590984	9.87935591180356	10.2768515776577	9.88751837740916	9.76258258187224	10.0625021119657	10.2058281441318	10.2333515058946	9.8231540018406	10.1899640202826	9.8211678049364	9.73818284854652	9.91961657044792	10.0606564917121	10.0617739603312	10.1977826704237	10.003536320756	10.4958611377519	10.0896424543072
+"SRP72"	7.26763103994879	7.32554693971072	7.89411985337123	7.47245364933734	7.85067395011852	6.23975372509784	6.74915265753113	7.18228381588152	7.39038310610968	7.52692620706398	7.48103592106479	7.37963278853278	7.27792266973742	6.72219560807948	7.36673887421722	8.03398099909111	7.40911750356571	7.84027087309087	7.39612994495852	7.74905943576005	7.14978839279423
+"SRPK1"	6.93647436352591	6.92575146981698	6.52069055873271	6.43772050517705	7.15009323704965	6.59139906832218	6.62879586399998	6.81114530055328	6.74811528025373	7.08954680187759	6.66372985891453	7.13081736787554	6.88213367539388	6.66557587410342	6.69242964830063	7.06090257107147	7.16904681442559	6.9302357125157	6.80215810969322	7.20985933980506	7.51479461546767
+"SRPK2"	8.31366430120956	8.70420329413402	8.25233705493959	8.75659163364956	9.20755820104934	8.20693202581354	7.60925457107049	8.42183872318004	8.46361152066318	8.97073979528376	8.93427054486125	9.01488464877198	8.39496844463292	7.63425043570484	8.41404395555514	9.39244644853668	8.90518848875782	9.49192077527062	8.8738961229815	9.03396416560543	9.16192413135752
+"SRPK3"	7.85466876495849	7.54727269869252	7.64488187810445	7.58825454026335	7.32612950558167	7.93196951071251	7.93021029286052	7.36199448956579	7.61090476311066	7.52736351418938	7.7120867301094	7.55028039577372	7.72858495784734	7.84919979955235	7.60729016286638	7.75827762816719	7.56497825444745	7.84120198477896	7.68520880856018	7.04352111543177	7.45767483781241
+"SRPRA"	7.1873788821388	6.89431451881217	5.89166977375147	6.1940245468594	7.17677655420471	6.89495873625456	6.92886329171196	6.8199759687041	6.74130339784963	7.35578275815593	7.07611649230142	7.35813819690041	6.54221631310222	6.60844884056704	6.40769493754286	7.52985078609196	7.05260953699867	6.88320391860502	6.78331224141729	7.55351705598222	7.74159373180666
+"SRPRB"	7.05534878064744	7.05889961626534	6.95378378673378	7.01021422864203	6.96979393327393	6.46964488619953	6.7992148217376	6.88059143288443	6.7108659146024	7.23555678532315	6.91864150639817	7.30914858043088	7.0017742133523	6.30048713277224	7.08952698613234	7.47067458044328	6.95963947694927	7.33154766625685	7.05981694992243	7.6193041589083	7.36241594492328
+"SRPX"	7.49005657807621	6.9132475821373	6.30248507548644	6.74026484809245	5.85275515370317	6.8843589143666	7.60391388206337	6.99659443600444	6.16856284165374	6.80413532993402	8.64621084417089	6.01839984652521	6.2971715549014	6.64835100281652	5.8838243430488	8.28948938556774	6.45914680287702	8.01710757660637	6.84068212028616	7.24776937684245	5.837881148568
+"SRPX2"	5.71499259305245	3.73454777370562	3.54742844587227	3.7976238168833	3.88251114465566	3.87068283677235	3.72421426249425	3.53586912740129	3.85303136593807	3.78463836111237	3.97635476907946	3.61877153347424	3.67786180189714	3.72421426249425	3.53932555628666	3.99440311658524	3.56219627616815	3.50071737090511	3.69224433586796	3.34215571292522	3.72421426249425
+"SRR"	6.83627091090125	6.08332232409877	5.04070908014921	5.23600908790475	5.8543541763232	4.54639120836304	5.41994007886764	5.77929478436857	5.25407951761782	5.91469090954748	6.16801728736086	5.53567318945951	4.59006431101851	5.28168855217825	4.52960060045313	5.81043372062333	5.28374864824488	5.57018988220241	5.46297851343841	6.31021081761041	5.69576117049671
+"SRRD"	7.66588366302825	7.27481619353631	7.55835108843117	6.94001905769754	7.400911438134	7.0261182164704	7.3722926666074	7.0502157345971	7.30606192904367	7.1278110186458	7.19444604556745	7.24586919004478	6.75277223201747	7.37340612527184	7.23881391460313	7.52142296464948	7.1393281746857	7.58094834537991	7.10349644911306	7.59249165605834	6.8809612131491
+"SRRM1"	9.80675125336367	10.2014092984166	10.0237264905677	9.82163051407768	9.95507036810028	9.69105439152611	9.09794664490193	9.96994327109505	9.56936406803039	9.82215914919974	10.5379638474391	10.0361096841696	9.53979542958965	9.52207971102712	9.37075407698722	10.4126646949767	10.1423626448807	10.5452557498025	9.89498254285499	9.77922317890202	9.93915584679973
+"SRRM2"	10.0763632671277	9.92390054163426	10.4022176193622	10.2273863126725	10.2822621631337	11.4789405184949	10.2012074953908	10.2806314960149	10.2187084076182	9.83154314482054	10.4256836025649	9.86043948699428	10.3967050767091	10.7683329760563	10.0331337812362	9.43235581686784	9.9530608243818	10.1141600021147	10.0592291156502	9.73383274194535	9.55853716344419
+"SRRM2-AS1"	5.30373639803284	5.38227457277493	5.38682783892523	5.59835166361004	5.44659510667249	5.33046911210897	4.82056755403053	5.33384347264018	5.02137281241786	5.46430417510214	5.26085437518986	5.57402059277814	5.16821631071684	5.26590355278674	5.43855156083511	5.28843471974457	5.20073209958964	5.22290538023149	5.35348128240791	5.33964616567742	5.43637683803068
+"SRRM3"	7.04784926699123	7.22454089541097	7.59804582461592	7.39977717680831	7.37404321834737	7.70888423858384	7.28090939976498	7.27351963928135	7.27499330452337	7.41910882970235	7.06123256013465	7.40858414124241	7.52172039736104	7.65177898859526	7.09651977979008	6.5530050154836	7.25564839614161	7.03866531384223	7.27351963928135	6.89004305872161	7.36429245547196
+"SRRM4"	7.41084687411966	8.56226576823145	7.08195202410664	8.50409847457768	7.59369132216244	6.92745863419748	7.84425530639013	8.6354021935784	8.68969182400522	8.17098998320459	8.17684167912826	8.80277980550088	8.7203127933987	8.12070158967149	8.54118144118979	7.02733488547807	8.4928522665845	6.49040092537845	8.06753719657687	8.64128036516869	8.27025736309625
+"SRRM5"	5.06644255719912	4.99006062963873	4.89310173231923	5.45368537123776	4.92805408530036	5.15421464215208	5.77041973272473	5.08702460698967	5.38746399400036	5.12906069912838	4.90435745640607	5.02137038904013	5.5006188592027	5.46329705413943	5.2543769237956	4.94538778789914	5.0783979273664	4.86388207418189	5.20136368845015	5.07377073789372	5.20531408788269
+"SRRT"	9.41311565169645	9.04116513485996	9.25192927714717	9.32207490480527	8.98726065405374	9.45329994745262	9.36856982212213	8.83884990124499	9.06368427394278	8.71540580001061	9.21608005425987	8.43584193450574	9.20656420775526	9.38258756922955	9.11862363170221	9.31134071477911	8.92751392268488	9.26858415460648	8.69942041091892	9.21092043120742	8.99253418874181
+"SRSF1"	8.21089399496165	7.90730967331985	8.17505038769787	8.21729147759835	7.99341708474086	8.29036621207854	8.21996346837519	8.30749974837128	8.09304108320019	7.75397390191338	8.1654703842578	7.94002684034897	8.16903994336355	8.1654703842578	8.54343040456262	8.43884702579427	8.22446110562793	8.64384847371975	8.06017548598328	7.84861916946581	7.89631021723949
+"SRSF10"	7.03150891999858	6.87395872382028	7.57990911408967	7.36012038842143	7.01038409894194	7.06922773444854	6.92706698872433	7.32346768797831	7.28567435457547	6.4761008853442	6.7504640539263	6.62317095505305	7.49365092894451	6.92081635179187	8.13095128797119	7.05431537897466	6.98711002074184	7.45487552302023	7.38351157477853	7.33076149598863	6.8150830125389
+"SRSF11"	7.57838357921864	8.11971397140437	8.44914598991833	7.8505057212346	7.81378161196714	7.81579100867489	7.1100810326869	7.71197543022803	7.81190512454836	7.94801579225933	8.50838496830373	7.84223911570746	7.68922345141206	7.93639352786569	8.01879812053516	8.01246965457191	8.01653413434016	8.53618849236943	8.10236321738561	7.64198228222117	7.66596002843329
+"SRSF12"	6.39835590948109	6.65419002603375	7.56773102115341	6.54073036784031	7.34324515225656	6.7882932219884	6.22094779217953	6.97451341220626	7.07181743395924	7.22832614322644	6.61427126027773	7.16788764654404	6.16701527899043	6.38290715391511	6.65801591302632	6.72897123354566	6.87546801994186	6.87294258545496	6.89734979039187	7.22026083486159	7.15482599719613
+"SRSF2"	10.6557246804274	10.5586951428564	10.6408843536148	10.1272035668007	10.6462921284096	9.61313064292565	9.40504358686627	10.1093538012772	9.90593838445331	10.471691933935	10.554810550952	10.4069107140886	9.91620381445798	9.57249989066663	9.83760003588025	10.7276547507477	10.1885677230554	10.9400325117014	9.86780297256225	10.4772641517742	10.4152772602449
+"SRSF3"	8.28827598736826	8.78675183048652	9.01452885416139	8.59616239067515	9.16064098269866	7.71755515538265	7.43045456674158	7.83596487993827	8.40609522159605	8.83896399766644	8.78885478509588	8.82449606288607	8.32816807219926	7.68227095885834	8.60528902193181	8.93782512009516	8.31686311060973	8.76051260951863	8.14844528560379	8.79587786159982	8.74469426045294
+"SRSF4"	7.51588988724	7.54245657719713	7.22069314472434	7.06604942343748	7.30237415127634	6.74668551769653	6.45861448944039	6.99171613061865	7.00555864308155	7.42669510618712	7.5329137446867	7.12147354601354	6.70921732550271	6.48583228849031	6.98459789343231	7.53952253092392	7.12147354601354	7.53402618330654	6.931673732158	7.04588878201016	7.29292564549583
+"SRSF5"	7.1389229844745	6.75221980596667	5.24943212340269	7.35462719951074	6.11301178798237	6.6914803844798	6.91495651248815	8.03040524248784	7.0987066148649	5.71784527621332	7.12560427788015	7.75048488901758	7.32040830849474	6.16274470816119	7.27482142674043	6.97069269578614	7.71159415051951	6.55491374132722	7.0643881571196	6.41003012455077	6.75186451735361
+"SRSF6"	7.77467997170791	7.78718484605681	6.11486371031964	8.8144078788269	5.98745447436295	5.92479587825922	6.70184503480271	5.93906283075147	6.80285680573072	7.15945256512089	8.36946010437689	6.88391717326118	7.44016699533818	7.60569815427439	7.72321836588802	6.54131806347598	6.67435513294242	6.45669814310917	8.37962510344533	6.41849991839492	7.11468655489461
+"SRSF7"	8.84830256000815	9.04568505656359	9.68483043788439	9.32163433862368	9.09498798244525	8.27649087096663	8.27557483086421	8.64593082722098	9.35636911718483	8.96899614116965	9.31193743902652	8.95587079657238	9.21988724347103	8.68287333296829	9.45397043430691	9.43838293664915	8.5473389583229	9.295813159987	9.38080065443779	9.24070084341105	8.87603588501132
+"SRSF8"	7.86215865095267	7.90150523611751	7.4948223191459	7.64808601886493	7.86753315919453	6.6323356192155	6.99920155575129	7.66105972071171	7.90147849266155	8.25647005654876	8.15036715911876	8.02164290451133	7.35341425094179	6.89449796619187	7.65039367280783	8.18750945256413	7.9054954432713	8.13379147672901	7.82831912222512	8.08104383739697	8.10328801512049
+"SRSF9"	9.68756533678212	9.35126407790691	9.46152458574213	9.76957281930988	9.67808896789711	9.68542871941589	9.89809792282778	9.53294240173922	9.64772055742706	9.98359901981747	9.82852402611662	9.84419683736282	9.83757522259084	9.40225351338405	9.619554370519	9.44672939446166	9.69863634291349	9.76804379155852	9.72056778322073	9.91829587666492	9.86485886544996
+"SRY"	3.92399600737884	4.24154948710083	4.31521773559747	4.26461309765907	4.16347124806357	4.07676020433934	4.26124795337563	4.29938893389525	4.08312198939141	4.1107085283795	4.14340859505746	3.90855526163492	4.35339716667347	4.4765243104329	4.26149956255911	4.19033423098622	4.27730939038682	3.94695680470942	3.82244005133358	4.54312283754404	4.21575618503318
+"SS18"	7.29704944090115	7.19317232485407	6.69679008225869	6.90459458008164	6.35010296551006	3.62160727492543	6.91895248910663	7.11999265797565	6.66539528668814	6.96646503681673	7.87525290912101	6.6736401141253	6.36719447000191	6.47242630535828	6.38750883584766	7.68839807860731	6.86750141252808	7.93935330802234	6.81416490933598	6.85141188850762	6.56387260740819
+"SS18L1"	8.65911861846695	9.32493572649959	9.4832764437496	9.14716575298935	9.18397647346075	8.9472095577091	8.02663540856333	9.02212053141349	9.23593220121461	9.28826706161003	9.0398044203072	9.22636792831503	9.18069336435901	8.87827318006951	9.14599052438911	9.01026388688428	9.30345415790126	9.32119044149845	9.14599052438911	9.10023388694078	9.25904984492212
+"SS18L2"	8.54257439317217	8.67252771780034	8.93796098853816	8.68378852721809	8.82723229863394	9.03279066122069	8.47175908306692	8.78552750594188	8.94979022822175	8.8673321502237	8.66291364064072	8.77586493574056	8.80100177807367	8.44266515860147	8.93092450442692	8.77103796823021	8.75721863355746	9.01655374396207	8.86994312981868	8.69109651124409	8.70133980033445
+"SSB"	8.28916195639199	8.38599146509014	8.46496435601079	8.89363737120122	8.4434592118664	7.9742561999705	7.87772762688359	8.44336361753103	8.68520402549371	8.59057854291639	8.56672379546435	8.51425912886081	8.84649005825521	7.96629111608414	8.75869816929052	8.04948656430115	8.45895856763647	8.460782176594	8.63403781015691	8.28726319244623	8.61831521382823
+"SSBP2"	5.59123073804124	6.65911431878374	7.00493395818254	5.87557531377643	6.76808600363801	6.35717721072515	5.60569096793038	6.03416288315479	5.75708031154443	5.96008447977695	5.8556452751026	6.1312172209784	5.63704143611946	5.80697691308427	6.1335117076674	5.78444772447739	5.97284011182978	6.24443397539332	6.05821454698454	6.24793629560437	5.73233942549158
+"SSBP3"	9.6706566268086	10.4185547620873	10.5212646226198	10.4608521670901	10.6671371034637	10.4662033763277	9.57450648401328	9.97902167112102	10.2694663115494	10.6362716993618	9.87361293155044	10.3916456284991	10.5419204572376	10.145363787059	10.1104650100606	9.71537373628889	10.5422988094024	10.2359290937487	10.1281804512187	10.0522503262598	10.3921165391177
+"SSBP4"	8.45174064845635	8.46582051956478	8.92008514672264	8.41046940599109	8.3616921147364	8.80255933081414	8.8815232513032	8.67587019660648	8.67361642776186	8.15674628812014	8.1592398050059	8.12992814904717	8.56208401431681	8.59823044587405	8.66446917333998	7.3315106574765	8.24317873379309	8.21922937973894	8.46043218899307	8.44336361753103	8.24521865061894
+"SSC4D"	7.23618664625759	7.35129308323585	7.65324506622444	7.47867465739252	7.30318515277678	8.1051248165269	8.38525580526098	7.46952061908581	7.54903115102306	7.45170530437131	7.23299928947017	7.56391793172647	7.69551945116139	7.92879041741257	7.56211333898845	7.28245094424184	7.47867465739252	7.11851024828355	7.70246244704594	7.61227798858985	7.46838440005316
+"SSC5D"	7.35914786710324	7.52316139285293	7.62507439956582	7.82143338664233	7.33193859264139	7.97396387460042	8.15636749593182	7.57771308590912	7.67681894640538	7.69518540380059	7.72389005515229	7.58226524986801	8.00031367195414	7.97103121031649	7.69214988819107	7.26803181511072	7.75736043610116	7.43690111646698	7.9174502692522	7.35464741369297	7.77478989947948
+"SSH1"	8.28890379220484	8.14681783905531	8.58014700024525	8.29671977189344	8.2625505768373	8.14511768533309	7.6059276812744	7.7360563165443	8.41874332970372	8.21450698864588	7.89606507196393	8.22285423004919	8.36067648055316	8.11110206470818	8.31873703219462	7.89066716112795	8.21334076372942	8.26383974542944	8.14453740636985	8.24161514081477	8.57120561462783
+"SSH2"	8.33506063292102	7.8166836337032	7.84851219529122	7.81124763425955	7.90304192987459	7.84307569459288	7.42026613709222	7.93669051704647	7.99273087225369	7.47804566254092	7.81722815433572	7.77105816687442	7.60446671541526	7.67268617868868	7.93330522294518	8.1695667600193	7.84851219529122	8.44336937028353	7.54116416970544	7.94831570916819	7.84851219529122
+"SSH3"	7.45870089145003	6.94065863281608	7.18818223261579	7.1515350883245	7.11881129724783	7.56132661885772	7.31460664924788	7.04788090860345	7.1127719870812	6.93768405524366	7.49483648386647	6.91175067295282	7.01661116399222	7.18461298949151	7.16095453555079	7.73315043965121	7.11306167679056	7.64453930601427	7.04788090860345	7.11306167679056	6.93586113715539
+"SSMEM1"	3.32117210299733	3.60057298470333	3.61281168460997	3.39867488636817	3.47817763203097	3.54901364328361	3.66335969714028	3.43626666480483	3.4476250741013	3.63610901388107	3.33121934783821	3.55355066712485	3.55782335643848	3.66547025107462	3.92700197946247	3.52009175957796	3.38191091214478	3.39654486199711	3.59510502415809	3.49455942867797	3.71518931538242
+"SSNA1"	8.35674087740858	8.38806154482998	8.36751824891383	8.41968504055255	8.42865895001844	9.01958381701743	8.96558323325737	8.22665046590004	8.47961253535348	8.5680010464287	8.76425499393686	8.38062940318574	8.51376474585662	8.43992507529659	8.535374348605	8.92899720921687	8.38794510728492	8.91086598012014	8.62185263889123	8.52262313230712	8.51609930110447
+"SSPN"	9.53040609301839	9.04973268080055	8.61464105403707	8.39581532205133	8.501474648407	7.59502769382266	8.6656169271344	9.05347765997953	8.45549287357135	8.58744792477605	9.88891868276713	8.30855840762822	8.11982561536376	8.36956141550985	7.54991624337587	9.0189530551119	8.28500792039707	8.6301378314953	8.72800889470565	8.15032571519749	7.57827576658233
+"SSPOP"	6.84653919551723	6.7542933811639	6.82416820909128	6.90769826652152	6.93362234386915	7.00906600130665	7.27066857290598	6.82390002428263	6.95684152596686	7.04157820578225	6.74654615074368	7.08207052791527	7.08467362131636	7.48297859333172	6.92824927063054	6.69721810257157	6.92112247668281	6.77700462814776	7.00249695160585	6.82143030113949	7.09558142497897
+"SSR1"	9.22502221881641	9.408439770699	9.54288033179797	8.61147036175044	9.46220408358149	9.12796465430707	9.09030018151307	9.3256804697416	9.06760037150683	9.24364193259431	9.65143678153888	9.42936315717856	8.89432647214345	8.77072342013349	9.07200793108829	9.85569526013194	9.3659784617964	9.82010295181991	8.01453421146746	9.20496630273042	8.95487679387614
+"SSR2"	9.36339856350796	8.8856942615029	9.02179225618861	8.98192445532583	8.92009062637815	8.97910162819187	9.1005908484847	9.09998041751258	8.91220360712248	9.00905117839015	8.91973855502929	9.02127839223308	8.7284416315905	9.02127839223308	8.96396231496061	9.16285243693191	8.82368999342234	9.0740194092386	9.1064285188757	9.39361328446829	9.00545817520043
+"SSR3"	8.08018069958	7.9949267489493	6.60836851451164	8.39226824086787	6.97188109341264	6.25485841179943	7.05784813279275	8.24809319684729	8.33201353935151	8.62090517895804	8.69599521197027	8.5659934765907	7.86113730961081	7.66004163651054	8.23858851930498	8.14760122416875	7.99604356071846	6.98264212559893	8.08904441676416	8.35988098200517	7.81049426275394
+"SSR4"	9.96731167566282	9.67361433815768	9.75592069759896	9.55606153106685	9.73718864570841	9.82632758104158	9.64693153797999	9.81090871443349	9.29044864951639	9.84204868293781	9.91035691660644	9.77065184279375	9.45120764721043	9.43428888598973	9.55522385590737	10.1573065470342	9.47502848523555	10.15144718917	9.76959797788222	10.1201119052433	9.65484340863552
+"SSR4P1"	5.8202187178049	5.77305118183333	5.67322463218338	5.67322463218338	5.90425439511796	5.68317389487169	5.60486692668652	5.52966801339271	5.70257033689858	5.44617924194023	5.72990106581635	5.81935417704783	5.5608615965611	5.59438646726634	5.89721163014732	5.71844093516622	5.5425129895604	5.65043232980553	5.42482403069369	5.90566398685731	5.76500536145535
+"SSRP1"	8.1475271163793	7.81754719332646	7.81241400242653	7.76853989504387	8.15393980597884	7.65635397789974	7.74589451938377	7.87109368210044	7.9111973575326	8.29648977058454	8.16372098559544	8.18461424154336	7.82471693843805	7.95540347440107	7.73609360429135	7.95742528080342	7.87463983950574	8.08853674585411	7.82917751493074	8.31599978543617	8.04325728450018
+"SST"	5.03006480916057	7.97304991447185	9.81357503188897	8.60421209910582	8.78478477330362	6.80330299610746	5.66864868651399	7.22337126532421	6.202143603654	7.37397807766497	7.47455002719484	6.89760820775971	7.82626994608672	7.22067310776919	6.59909058990874	9.03659322204019	8.19499497531405	7.09803673407332	7.89816155112513	9.02268939183411	8.52516424535655
+"SSTR1"	5.4785997556321	6.21476500784198	6.60065771575714	6.73510378547754	7.2463272066275	5.71354046695804	5.56642592500933	6.42628905971369	7.2210707769658	6.6320530083436	5.66080874936044	6.43025861931296	6.27147803630227	5.35824505311025	5.8394737893289	5.78564304117078	6.54578772489151	6.77556498698362	6.49843976390116	7.31702168136997	6.16338232955149
+"SSTR2"	6.82719085906168	7.0726180404862	7.39359616184896	7.23247230795357	7.72755231682874	7.42631605673944	6.85685481962446	7.02437483039108	6.9658021951313	8.13312177769349	6.79512471050955	7.56403225599183	6.9702385204047	6.80678241767089	7.07658571438999	7.23260571411967	7.31662166289035	7.15661823179451	7.32343734034311	8.32263037079651	7.62801799665011
+"SSTR3"	6.86767591032092	6.89637953873775	6.94481854392199	7.0839875246391	6.81020801739938	7.10891932511868	7.77307187548158	7.11300035869132	7.10010084106319	7.09873732885965	6.81979965957974	7.11757141394255	7.30848272845969	7.5018457397733	6.92279112839619	6.86859444794602	7.19568758810594	6.82872842601807	7.29633620000834	7.12644578093407	7.0839875246391
+"SSTR4"	4.99112044037546	5.22238224340002	4.78991094266376	5.31554765335742	5.16376173511222	5.28097685099235	5.57862213804042	5.37275316378683	5.18244899572926	4.93630591289972	4.81049588544532	4.94404045351559	5.69051476280826	5.75326565959342	5.47806719464467	4.65029288499483	5.09945498762818	4.73796600809384	5.16763722386794	5.07299351991662	5.26494829421353
+"SSTR5"	5.55938871855714	5.85627718880034	5.90098826815946	5.92464838932558	5.83791673155604	6.239565451401	6.22339459608756	5.66921380233835	5.652282002054	5.82605535533283	5.92325675399433	5.92464838932558	6.03646631540722	6.09356638781294	5.97211737372207	5.98335974317081	5.92464838932558	5.57865486737795	6.12847089168474	5.51980845012906	6.11181130795518
+"SSTR5-AS1"	4.39678042042283	4.65206390908345	4.46230522987324	4.679902693326	4.76784184191587	4.67569487082649	4.7143954389866	4.58292830440696	4.84257950484897	4.49092071249358	4.50744360538738	4.66506880774937	4.82630176139014	4.84943670464846	4.63804313915945	4.85763294703402	4.74508766999779	4.32018516047929	4.45650276962122	4.53161571976044	4.61738986277418
+"SSU72"	9.42776843638944	9.3781773253434	9.77794366417178	9.47987043594653	9.52987004455233	9.6237523092822	9.17603868231758	9.45543764894308	9.87074122267331	9.70857221156433	9.36920207066408	9.32306453118807	9.88594563143507	9.46223650598629	10.0797114337609	9.07239822119116	9.50519985040983	9.51948616455618	9.36324174978412	9.34777149767122	9.62335639130122
+"SSU72L6"	5.13075822993445	5.33027719661973	5.34965334700234	5.47711232851636	5.03041768742611	5.59340657989201	5.32987121913172	5.30129416190923	5.13233317374622	5.36582341714247	5.20795489811807	5.40908241363486	5.27899290447799	5.30803442019523	5.14070461048455	5.22881527915291	5.43490003093125	5.30445426386722	5.29163644391907	5.18125833129878	5.34338226740821
+"SSUH2"	5.24878869718459	5.50076182085259	5.49898023602356	5.55437634189181	5.76820964663258	6.04039565293629	5.95264695280231	5.67283959020079	5.65560108045813	5.34513350184012	5.19970930430586	5.35782969559106	5.75641530506712	5.97698202526058	5.2380512532712	5.35678095508572	5.48701662699157	5.09246933318597	5.50076182085259	5.50076182085259	5.50076182085259
+"SSX1"	2.85546813794538	2.99249608566669	3.20321207601854	2.88294754530748	2.87713650430939	3.06996507646303	3.02785336411477	2.99700147641504	3.18893005425071	3.05691165583972	2.93204320359021	3.02785336411477	3.02785336411477	3.02785336411477	3.08181744055665	2.90038446833018	3.08026577796219	2.96948277393304	3.03330549511209	2.99104164288262	3.07471097979719
+"SSX2IP"	7.6788021662448	8.77879430572674	8.99599511931675	8.28210931453965	9.21566220412759	7.7308169632949	7.75179228504039	8.15560962958223	8.94822271226715	9.13377254976438	7.75558327247113	9.15843142733789	8.21362153489816	7.89723189304127	8.61106396517016	8.4942556540063	8.81410645865611	8.72388493367307	8.66167001209432	9.15710731658599	9.15926942039855
+"SSX3"	5.75485972772057	6.18714095004152	6.2030763496523	6.38863293879439	5.94570517050411	6.30063182503982	6.47945390504087	6.1285784207907	6.27890014348622	6.35160574390908	6.06257934843411	6.39241318163068	6.29423868841049	6.40220405043551	6.51711292746427	5.8921652117536	6.2030763496523	5.76874637481271	6.28900437299892	6.00751176269457	6.31681179209373
+"SSX5"	5.45605613646485	5.33176897444944	5.73778928446495	5.89424492075808	5.67266455683256	5.87247315957309	5.79903798348722	5.31070609587146	5.89736727082509	5.43034485460415	5.0798782580296	5.78064597557268	5.79976601284619	5.83248475931933	6.05210196148182	5.2702378886454	5.27410954765868	5.4283211458124	5.79976601284619	5.65429383269788	5.67266455683256
+"ST13"	9.29611341238921	9.34541931420513	8.7087569004361	9.06209656029294	9.1602983981761	8.23262108720367	8.96579873230471	9.4921318446739	8.61262779895401	9.01445790405989	9.73575534983937	8.96659470044532	9.1116140610201	8.7283468678179	8.9462951262647	9.83132305905733	8.95025255970426	9.36028580031102	9.29415428862241	8.96411204957744	8.92018274476416
+"ST14"	5.04527184099442	4.31963024700439	4.35508548866962	4.51224072828766	4.21173413115981	5.07589345161577	4.91531180397123	4.34027644178643	4.88439274633875	4.65175376687663	4.0629297699351	4.58573303150489	4.57517283218912	4.66150650846471	4.59948815982089	4.10463902264995	4.38868458282386	3.9731105734681	4.90333351276525	4.35299412203403	4.55006728676087
+"ST18"	8.51241688577299	8.93538327905007	8.224682362316	8.26392148256198	7.96165121428727	8.38321954587495	7.15993304250292	7.58335844945024	6.01629803168948	6.93418422230682	9.85077638367828	6.70556685820378	6.79015666489124	7.99899280489084	8.05815901173456	10.3332449886297	7.67926338188846	10.3160812448191	8.15764538272865	6.3891490449573	8.37237349733647
+"ST20"	3.76649585251223	4.09721688049139	3.98625691435668	3.93129068215864	3.69229426980697	3.50040107324974	4.216094760531	3.92809822178776	3.59488890453023	3.51729819614848	3.84983589383504	3.72531579564217	3.6055369483595	4.18991964099584	4.09628637641959	3.80405178292081	3.86700299339905	3.76145915426798	3.93668319481726	3.74680608009468	3.97846265281658
+"ST20-AS1"	4.63445862853105	4.74322991588918	4.65518044294645	4.52577697602477	4.60571541514931	4.19087881518265	4.32351478355936	4.5003127110981	4.4363669534405	4.76278396271712	4.35375759410669	4.64643024132488	4.58110572492494	4.45999869418467	4.49363205705743	4.52577697602477	4.47277414944262	4.89550325299867	4.15631492101389	4.52577697602477	4.70348570369228
+"ST3GAL1"	6.80062869038402	6.81720302429405	6.97157695140186	7.00616972806341	6.91050171092248	7.58912736251467	7.23999873237209	6.84773968419519	7.17568690257449	6.95861924390691	6.95515993546089	6.87654071858262	7.02746521671933	7.02938946382138	7.00056367601488	6.26300876647785	7.12655975273397	6.88734492557402	6.96034866943324	6.97438422798908	7.05470296216456
+"ST3GAL1-DT"	5.36082033345385	5.45823959034158	5.91923849863664	5.74483495720995	5.66885929179504	6.29317061938575	5.73173102610005	5.55272314762301	5.82144813895142	5.73955751263069	5.50340110303796	5.73173102610005	5.73173102610005	5.66104008655861	5.75510146819621	5.60048129889296	5.8370235870627	5.84324430367431	5.71462179128124	5.74107877569966	5.7116579487959
+"ST3GAL2"	7.38944492694644	7.47421258675674	7.55034839226435	7.86792979783182	7.32531781706022	7.48079152586404	7.91271822343843	7.59227807463074	8.05674384244373	7.41166369093342	7.44473629066365	7.30839304190885	8.15637454027005	7.81503714160756	7.96118791076235	6.83784573981295	7.47562488721919	7.11507860654123	7.43262009242178	7.32004848004065	7.37433967609106
+"ST3GAL3"	8.83745994972353	9.15062969014292	8.65355096252639	9.25182435757328	8.79087262138713	8.43723258372762	8.50229143407287	8.92370612653464	9.053813630914	9.20498792622249	9.10277269617583	9.22814981733891	9.04445951553191	8.80700359431678	8.92168538550836	9.33251612463825	9.24993035253233	8.73260281885001	9.02855753980465	8.92876832525812	9.34124422672354
+"ST3GAL3-AS1"	2.99245884840149	3.45491871444968	3.07083775405425	3.18421043841311	3.25147473694838	3.2568128003059	3.04651129879903	3.17371087872859	3.46898277366629	3.17704180397286	3.27420848537286	3.30431555998021	3.24699996061939	3.30045353700241	3.33100835280126	3.45916869601447	3.41583343848213	3.28505137703008	3.43518685226448	3.2371083959586	3.32247045131884
+"ST3GAL4"	7.29789785102029	7.24624753714139	7.51110785940342	7.3950944386778	7.12679286081139	7.75291769071209	8.19472788786137	7.31092783153224	7.37574456805834	7.20213705004362	7.57205056006199	7.37608520984331	7.42523412752112	7.57107917932646	7.41089157252531	7.97926376223506	7.18315148643511	7.52549801668958	7.49304662138133	7.46740480764772	7.15653593058739
+"ST3GAL5"	9.0427249327301	9.57124903595481	9.88622441122395	9.15777866021566	9.83785096450896	9.29522279744725	8.80629069562763	9.19425787757563	9.59316865697383	9.621180134458	9.33901523364179	9.57147115235684	9.22308769118605	8.99638988236441	9.44081553145133	9.86614443516388	9.49834119020856	10.1034908529182	9.3371399708368	9.83317474398639	9.5741870588411
+"ST3GAL6"	5.63444918660094	6.06833505235495	5.92997604302813	5.56526745582664	6.08498405432141	6.04227199996256	5.00182267524396	5.71011156651643	5.87423210604695	6.24624496249475	5.48787003286796	5.83007057687841	6.46907559860958	5.7990041098534	5.90028258213998	5.90723884726688	5.85544781962051	5.95132125002071	5.6440794774247	5.91078195029653	6.51617177992197
+"ST6GAL1"	7.20184332874312	6.49576276296102	5.51053343687184	6.33594846869239	6.29681216540439	5.67423637087874	6.72418463075591	6.37772765906656	6.21041474028577	6.60381100109261	7.03794728483824	5.9973306151814	6.56605597950944	6.37772765906656	5.93907562925018	5.9684319609506	6.22388102373249	6.03369309736182	6.46526148827942	6.86750141252808	7.1656322190755
+"ST6GAL2"	5.10400269694454	5.85975557493756	6.48600340620756	5.22548799647306	5.5799401543298	4.67402778767105	4.84743435684494	5.07516995341821	4.80412991855092	4.49912888026813	5.62259646278022	4.50053266226041	4.53596915049908	4.96542631827841	5.24655543435199	5.33968047763912	4.67779889866767	5.77537423658767	4.52775643185299	5.08117288294203	4.52474062586622
+"ST6GALNAC1"	6.23564837162413	4.99418638287362	4.76562066606659	4.57018250120868	5.04679023010192	5.19167880768872	5.45255195299242	4.43565200358123	4.67734257960195	4.84244130520863	5.02873224750197	5.17284169421303	4.63892932613335	5.43300576023898	4.5425796379663	4.86079953415978	4.84095181104229	5.10417199380825	4.63419572446452	5.18341006709259	4.45345772136499
+"ST6GALNAC3"	8.4521855189336	7.06338619084053	7.41563622102414	7.17579268716324	7.14479578176289	8.19485134081861	7.75384860536242	7.91500818711011	6.93402034204988	7.15771398271331	7.73863821939346	7.32910852594404	7.25918787795651	7.76530154214042	7.40129154804333	8.30815013557652	7.7777224534174	8.15527159367555	7.58650779245524	6.97060881142816	6.52017072324028
+"ST6GALNAC4"	7.33873314164424	6.86063563504649	7.09504611407171	6.89398842714503	6.69282096266992	6.48751205082819	7.0190563102169	7.23907878696539	6.60090957090395	6.91965641282841	7.16281255123941	7.13081736787554	6.92664158444946	6.75687616389373	6.4527588538422	6.70991258849915	6.81719760410017	6.86843648292495	7.07778171723788	7.14641881677567	6.90783245714394
+"ST6GALNAC5"	6.36275257340243	8.16134269353849	8.85386935138331	8.31902964034282	8.80880884959164	7.068369965723	5.96893649188029	7.27772025737744	8.83175946659597	8.85102596492031	7.00856855750177	8.25581809672735	8.23703417242864	6.88633559998023	7.92018677174405	7.04946178764748	8.73231537534707	7.9107988693844	8.22983365635116	9.16880681883097	8.71499232141143
+"ST7-AS1"	5.18572128860119	5.32935551017697	5.7132385478902	5.04612634372965	5.16672649087698	5.41071406199673	5.18572128860119	4.89071671633952	4.91912212229306	5.4956086664961	5.41710774643561	5.23585483700638	4.94611413829183	5.1782373818325	4.90122496205643	5.35447595163089	5.25814448455947	5.2390717669102	4.90333351276525	5.10060574767363	5.15954824693267
+"ST7-AS2"	3.58603520203044	3.36389640189343	3.68036411248353	3.41412506640443	3.46750993818726	3.477417447265	3.48401303533419	3.34700296301338	3.59496183962564	3.40407243998102	3.3617276449691	3.24154574655201	3.59496183962564	3.48401303533419	3.48401303533419	3.6167930965596	3.47410846539056	3.58315491591824	3.48956807064872	3.26958757943745	3.56296116230527
+"ST7L"	6.19322600771735	6.49933975449909	5.92215013472151	6.02548748699357	6.22984983117641	6.05544107902033	5.63707588390864	5.88309009908136	5.70980347355507	6.42240972204299	6.23182489183687	6.05705369344318	5.87973455030837	6.04249777105838	5.94681918439467	6.26665813553868	5.998472817551	6.48732177853063	5.96800894074866	6.58833129698513	6.25093913669304
+"ST8SIA1"	5.93257617662374	6.2427883508111	5.91895992132185	6.45453414029986	6.93802477391618	5.88094000228977	5.67126148061591	6.9132475821373	6.39109547475409	6.72172829976654	6.32752219593543	6.76117487423166	6.54218216751977	5.69970491019375	6.59212977577446	5.5927933481302	6.56167321854368	6.3319236799075	6.4529464651533	6.58999161832693	6.86847710905234
+"ST8SIA2"	4.69183399848556	4.86932536267352	4.71281144459593	4.86236993046034	4.91826646258569	4.9870984968914	4.91929066946785	4.97350096474491	5.15891162274433	4.86236993046034	4.78698120778071	4.85600678801741	4.99682670103977	4.86236993046034	4.81512512762397	4.88715076969716	4.79088799618021	4.42764418536644	5.1897518987703	4.81549342841919	4.96111601359406
+"ST8SIA3"	8.72476136531987	9.96131727873203	10.3419226760298	9.95247283175625	9.94114236809787	9.70578233286369	8.70961138775148	9.66985391311039	10.0559887862251	9.77117865476212	9.10015007890089	9.95880216913751	9.77667807822206	9.22950654487085	9.91682610233505	9.08283378438204	9.92377153134899	9.65813973045503	9.79288947687878	10.0807606463958	9.7611260262487
+"ST8SIA4"	5.21758294475955	4.91314435658817	5.13677127046198	4.54030815602321	5.07622084850139	4.75113990057002	4.72083029964895	5.20478269666859	4.49983884388919	4.47938656305693	4.93426637160797	4.72086616337014	4.16877314343203	4.83851391392687	5.06895728629884	4.42032607397896	4.72861363975875	4.69887989370618	5.13790732082773	5.09118308562253	4.45391948778144
+"ST8SIA5"	8.58714374067515	8.7125346725257	9.49660408100305	9.21935621589141	8.98170980963369	9.17743477816317	8.68610548072887	8.75411216549128	9.43001211550364	9.04999443967494	8.26811359646844	8.79459045909864	9.30292483926557	9.08293986032774	9.3384884505146	7.93252264729281	9.12396200078093	8.60445205900256	8.95116374897348	9.4143381615254	9.0604302990779
+"ST8SIA6-AS1"	4.74548673811918	5.02221258618196	4.74391370190107	4.78447994247241	4.78447994247241	4.891431597517	5.16349039938067	4.75466193793531	4.86361138153057	4.79259751945531	4.66823563021902	4.69048710264351	5.06890800610243	5.33310981997178	4.6304826859634	4.79462217164142	4.72816400664917	4.62634758522401	4.7096388695463	4.82045414259009	4.7577408207868
+"STAB1"	9.5547319179556	7.32670004332477	7.12321184091944	7.76526841147331	6.84360247072512	7.9685660423049	8.0645248337627	8.53660724776612	6.97337557755706	7.65212056576441	7.44121635058634	7.43018392390196	8.37924963356846	7.8942394144861	8.06419321522405	7.36242216089759	6.77369699094961	7.10461362264935	7.89318875210718	9.30596974928102	8.45258663123295
+"STAB2"	5.22789105071052	5.54165574821731	5.19116426662006	5.37033148513593	5.47947696857115	5.63874655603331	5.87100097059159	5.35430521306138	5.61605550757862	5.33807640751108	5.073935949986	5.3126149895829	5.49968023369965	5.94488846362806	5.36662454374076	5.37388736489642	5.28726124448401	5.01453695241071	5.05961854063399	5.18674895895827	5.37218139013261
+"STAC"	7.3088001882189	7.65699729938614	7.28193154751261	7.66866065609751	7.67449434814976	7.24467664154906	7.57237462050965	7.38304641949124	7.45533748435919	7.48578272031427	7.40647967954953	7.49496994959049	7.63843276645466	8.12696097859137	7.43361775252341	7.25383936274486	7.43695003489632	7.16762176724909	7.33185000092914	7.62883414782749	7.62829838295962
+"STAC2"	8.05147879479703	8.27228294668446	8.44127449307278	8.34411166336217	8.59944625261436	8.69855537026782	8.44323449376449	8.02866389193093	8.38517671906948	8.34788617514979	8.00114386658756	8.48035595001585	8.74244746052187	8.57349002497908	8.31480697355842	8.00607574889212	8.56357281144486	8.02540268684025	8.27115564952784	8.46922929563118	8.54970665790939
+"STAC3"	6.7723750940264	6.6885591645015	6.84592116487045	6.87634368598215	6.66237378385325	7.41526906305591	7.6882098196746	6.70447962134473	6.93734617446545	6.89995257335806	6.54759370446044	6.79758646077907	6.91275507971326	7.30743176491075	6.73566205518495	6.61095490227104	6.66948852709	6.37797801180352	6.72001346614166	6.76575145599338	6.73728426531444
+"STAG1"	7.29978607914538	6.93047129109539	6.53905732202516	6.68420226967644	6.84655469431704	6.96622525076818	6.48595317839129	6.64668965309118	6.91438709392853	6.77496957038207	7.31261920440846	6.65751436299107	6.71166815352837	6.99882120501555	6.91255036713156	7.09976044458185	6.7295107300214	7.14742365906243	6.88687825013658	6.62198197890331	6.64767708066296
+"STAG1-DT"	4.37430754380342	4.28260356107803	4.3089805135554	4.26930245319553	4.20705734028862	4.10437127599422	4.2727513631843	4.17153250630345	4.38029315101506	4.25969929240506	4.1497579849043	4.11546448310788	4.30291884282523	4.42390230855094	4.20953547150285	4.62500075029815	4.16463515095974	4.1158560545232	4.2612483498315	4.23522218886182	4.14330838828668
+"STAG2"	8.04230553132351	7.96548425921257	8.03492387499349	8.09931736036937	7.66258174332752	7.64305318212584	8.03994469538275	8.15448100474518	7.940394136127	7.40274350430363	8.56438575288126	7.86739351791934	8.19213031459825	8.00974666203557	8.51230454641149	8.40317013974312	7.76030008397093	8.45924477320408	8.35374459055751	7.19348377664435	7.69403098262669
+"STAG3"	7.21677639746777	7.2250668422057	7.24817590538403	7.19278957622289	7.29898876798658	7.25761592270443	7.31822739446069	7.2124271654207	7.05224635229932	7.22704443361305	7.02816823100044	7.14514424814907	7.38238356398404	7.50178613106024	7.14426617371929	7.27556635403262	7.14738832808681	7.28131963766529	7.22704443361305	7.03366164271271	7.26065378151847
+"STAM"	8.18876583449316	8.92252782660372	8.89803082078086	8.4333180124461	9.08981621447236	7.7447148313111	7.34781499483924	8.40250694601396	8.54924954924213	8.98717744541899	9.06203062066891	8.7287870114242	8.45815920137582	8.00913876222853	8.45550872045166	9.38224700435959	8.74821337062331	9.28211912925004	8.50441558928705	9.09706061372018	8.87473959842854
+"STAM-DT"	3.57369859707855	3.94455582282733	3.75714810291262	3.72958092045472	3.89349156137654	3.74282118514051	3.87333391187244	3.4934479021648	3.73423098485119	3.6306974624595	3.5653365106484	3.61150312765012	3.71544517333878	3.8826137088249	3.64012138947379	3.89516516880641	3.74235217017352	3.94587444226672	3.79157491531158	3.88425521925291	3.5532956317804
+"STAM2"	7.63021380199987	7.3415955298447	6.85544659233347	7.42108323256519	7.20532932343927	6.23651732965843	6.83024046268938	7.32148502447892	6.96433184538184	7.29409684814495	7.90710445341982	7.24532988527824	7.50314668656824	7.03577874486581	7.1866458266149	7.5377381656898	7.04460796520932	7.51530921299576	7.34263574268084	7.14722246986522	7.26605845828102
+"STAMBP"	6.19131415080781	6.33486472787957	5.93064230735467	5.79585544691266	6.15619750025794	6.41074316188529	5.80704814905133	5.68985445904653	5.31894703042004	6.23663214717536	6.32806924240837	5.82818316462275	5.93646665447304	6.11678862841308	5.95167404608353	7.0179370180717	5.76296064868293	6.68450878422242	5.83242951877213	6.01252846089276	6.06078737286871
+"STAMBPL1"	5.96788777097596	6.55322395200044	6.64526764309354	6.00838474840468	6.93184241975881	5.7697960958854	5.39587911462718	6.1844602899325	6.14387481455804	6.92403677627436	6.18025509984807	6.80460887262475	5.95034177358204	5.56755971155662	6.05128504196759	6.42402033559197	6.58744990873604	6.58732933373584	6.55004007660542	7.17222635023769	6.82207610579383
+"STAP1"	3.15321216179538	3.23423052372271	3.18037101846329	3.32859610708087	3.17102015650755	3.49600912730307	3.44895558376316	3.36324235982342	3.25715761993272	2.87859240380372	2.92836841159155	3.11550368465553	3.58657035912302	3.70391441925765	3.43153734150773	3.13665074920668	3.36324235982342	3.07678092427848	3.38789456092546	2.99222516525405	3.26267207146602
+"STAP2"	6.05952108866432	5.96804438421553	6.07715403050523	6.15645270691592	6.20578219324565	6.17768542628224	6.27701043009198	6.20321919903102	6.30912895123277	6.4501487533576	6.17768542628224	5.9545848804726	6.34588612006718	6.13584367905788	6.25828316359676	6.09329776968979	5.96483673362351	5.93892873002619	6.27247106101405	6.13043238146735	6.41272476421522
+"STAR"	5.87281948193052	6.32866043531017	7.07637200547968	6.05558593318458	7.16346303387188	6.54996320054267	6.13383329277373	6.47780940821981	6.55687355857933	7.04537883639851	6.05153559148449	6.81617878722325	6.6421961532496	6.42775307543376	6.42262582920464	6.35430717119677	6.70172065624097	6.55687355857933	6.51019312137642	7.30381835385656	6.95833376737587
+"STARD10"	9.03916294457382	8.31038587899247	8.73295533036908	8.83143502005014	8.42569116632044	9.69804434209873	9.26080653796989	8.68835496955313	8.81808391382595	8.73184599759744	8.48275346311858	8.71910237520505	9.22447588247964	9.17073507971697	9.31307912645032	8.25988199006243	8.74816005968053	8.96895908458872	9.04961202905596	8.43591923700171	8.70288725447238
+"STARD13"	7.956258485355	7.80387033920237	8.06940676874729	7.82831125116018	8.14735303355464	8.27490550604837	7.58616004221244	7.51229676183664	8.12646084713126	7.94969333840678	7.72347341556859	7.60313376185556	7.86015152673806	7.68737642582584	8.03548509987635	8.10448798169791	7.956258485355	8.47496177441794	7.81930579919061	8.13805040960014	7.89109753879693
+"STARD13-AS"	3.55087740909565	3.61313235013708	3.4909464631138	3.89061303444767	3.53578684182765	3.65018680576337	3.60695456010452	3.60565237022243	3.70511951104881	3.5897006266857	3.38613004288932	3.6558757818007	3.504452815601	3.82645731171542	3.51239554727807	3.66548987319052	3.56477045916298	3.37295872109282	3.43888606349526	3.60648783904351	3.8247912771459
+"STARD3"	8.4870614772255	7.83363474437147	8.12314875801088	8.08617692629125	7.82780356582826	8.18679304448609	8.55792316179229	8.16389009997181	8.15189314239744	7.90476720607789	8.02356943542161	7.91918937723597	8.19869919013951	8.2566631412188	8.08976659642705	8.12225288764399	8.00154259060273	8.01470802121418	8.33026051133671	7.90102374796099	7.91426858982188
+"STARD3NL"	9.66731567962805	9.6805632732456	9.63198146045089	9.55433969680003	9.68420196584417	8.99222350100718	9.04969114934223	9.6921743717086	9.6133768001001	9.70159741377951	9.6422121101692	9.40645324514514	9.52757029854361	9.22459072270181	9.75244073280032	9.84951750666466	9.52394160757532	9.57601001446069	9.81740082885647	9.60343466873081	9.55999456683599
+"STARD4"	7.68721017609055	8.21607068365591	7.96498133225432	7.96279369399568	8.12352886397278	8.52821951005242	7.33175580836039	8.3035692094091	7.69848359310349	7.724149960704	7.94858415794282	8.05660635013884	8.20366925240836	7.51037530148849	8.2773424848383	7.94137310102852	8.0450093958209	8.20901892380309	8.01304619308162	8.0211215898866	8.24153171107083
+"STARD5"	6.05276563991424	6.13718815985472	5.92492935945472	6.25240470210484	6.29101840103061	6.01581623148779	5.88242873274218	6.21811942735379	6.07854110773496	6.29864352673886	6.00988265003404	6.34758511473131	6.06983813833828	6.48583228849031	6.10944018985975	6.18920264887436	6.18495753253692	6.05421809503227	6.16179772583856	6.17388351644803	6.22436321691284
+"STARD6"	3.22770188616989	3.39052541268321	3.32981187097133	3.16378788579941	3.22523033524846	3.31883870924954	3.32615488187163	3.19484395497605	3.26939130158956	3.32887769555501	3.27368374190916	3.11524804597495	3.28195977991022	3.19613740539147	3.17329899561332	3.32558906654701	3.25309811826045	3.22931397239729	3.25309811826045	3.25309811826045	3.18038514588598
+"STARD7"	11.3190332249438	11.0769628757674	11.2420750611608	11.1690757894801	11.0936624395357	11.3139894388378	11.3784394403689	11.0839739003414	11.3618146359913	11.3455327728073	11.3710798460876	10.847018739962	11.2211699261382	11.2210441081118	11.5914736398911	11.3841719753394	10.9421463813821	11.424365797887	11.2806941844172	11.1851152427558	10.9043923849336
+"STARD7-AS1"	5.67747201953631	6.14887044546468	5.94058441838458	6.05911335515184	6.17350490491863	6.39405854366102	6.33996187742872	5.97755936839507	6.10963169442313	6.10516517641778	6.28108739784933	6.10963169442313	6.21975923675519	6.4689513773387	6.0921802786873	6.21149324837357	5.98759705852273	6.10963169442313	5.77563763152404	6.08300150357027	6.10963169442313
+"STARD8"	8.64873223779991	7.15839943044378	6.75950967982905	7.37053316427458	7.59962917647274	8.14511836311092	7.89340605930291	7.54803931747704	7.14326800061434	7.37053316427458	7.17096011138817	7.37050897607075	7.75078782703737	8.17802429718721	7.35545209065611	7.01083435922694	7.39292443213736	7.09924158526303	7.042377749206	7.43988088851828	7.16472903574631
+"STARD9"	7.14973347989441	7.34469807500574	7.31300228758707	6.95327256227636	6.85281863144545	7.34845917434747	6.62412116193203	6.86201351762662	6.65489407316474	6.78913985697339	7.79098171929419	6.91737249010415	7.01896372121072	7.36842536596565	6.90593383224664	7.78778381854781	7.21647630278926	8.09069089668312	7.04160343266408	6.67972661555257	7.10479641500196
+"STAT1"	6.8578730174243	6.9655040363014	5.9473660314493	6.39635482968651	7.16447274194551	6.00933819815267	6.12083604746758	7.29164754102064	6.25661601198759	7.03636896273857	7.09941091872404	7.15875244175495	5.91199023082696	6.34429949788074	5.98081309408965	7.01928734751634	6.67875270239152	7.30415618637457	6.43332588001834	7.0728575271902	7.53638613558567
+"STAT2"	6.68584351334273	6.65855154192674	5.92838543275293	6.47495780262845	5.96893412154927	5.33358936572871	6.29718322317051	6.2775742785139	5.99398541482303	6.64436906555767	6.98161159060616	6.71482892459195	6.32953622364696	6.08116541670682	5.58576585597586	7.46571349235087	6.54998191729522	7.00722987487113	6.47495780262845	6.64336246480291	6.59022357314555
+"STAT3"	9.88725024010806	9.02272156446228	8.47432834875018	9.21270960546866	8.9853210605073	8.86903067506171	9.30757279589766	9.97861231248844	8.97589377166819	9.32178125854128	9.58199875335013	9.53619422035525	9.06862602948552	9.07254502731905	8.74310110176764	9.23769169596472	9.24273501414244	9.18586708677539	8.9582734229238	9.58465122610475	9.34268854430504
+"STAT4"	6.48659855365978	7.90571621430821	8.26521898682357	7.44489707982249	8.79019050410433	7.27618474275642	6.47360626325486	7.74151535349074	8.00742778350547	8.33414097648106	6.58178451030332	8.41956870375459	7.5845871162868	7.04362034081562	7.34057235094699	7.57213334930842	8.33881668627956	7.87479825807945	7.75238174399866	8.71037263604632	8.42389908536282
+"STAT5A"	7.4407887315134	7.12807793796883	6.83655243343867	6.64267661049418	6.99073780898437	7.36679197939933	7.10098423907179	7.30380419349329	6.95143123072354	7.02086191904891	7.15106602518195	6.86702754608462	7.05224635229932	7.09891817542149	7.04029151883567	7.41714448788493	6.92440682793087	7.53960416870637	7.05534878064744	7.09891817542149	7.05836158482877
+"STAT5B"	7.83644882353896	7.81229298073576	7.04101297960051	7.94269350919399	7.08436016521109	6.94185709725005	7.76155883202591	8.05154142865732	7.79313042585387	7.7095263855802	7.90998419282452	7.71030069648434	7.82820504554074	7.79414613097138	8.03381938204816	7.97313862645294	8.04376945326645	7.11397045151517	7.92967110525223	7.45525420941809	7.81382040893872
+"STAT6"	9.34000939783664	8.66680389390175	8.35778833852535	8.5958940429421	8.75721518342683	8.49738807153217	8.59855276012225	8.50242060848308	8.55826188315585	8.44454726565051	8.1938238578692	8.42229076558749	9.00732178607847	8.70865785549831	8.33842938075348	8.21699115208886	8.55826188315585	8.17403824854897	8.67242276484419	8.96324409841434	8.6042847420159
+"STAU1"	8.71669876716367	8.64684810295294	8.33710474537442	8.5910553876816	8.76328572101866	8.08799239941319	8.32786249793255	8.85850256724428	8.60306453612677	8.8147164939507	8.64199952640432	8.74677477202337	8.58544217894625	8.54238367866422	8.62451234225989	8.7937614225905	8.74083002054038	8.85591003257582	8.67952387150748	8.62323183466247	8.77112192556982
+"STAU2"	7.07397363104951	7.50819499213342	7.95810126718211	7.3254925763503	8.1557375859154	7.28610447551371	7.6219989915117	6.80342938186877	7.84461989553078	7.81704759066013	7.1823368594283	7.72376369991545	7.05653375806923	6.76926235988276	7.73181363182765	7.59711736032762	7.66779597727692	7.36262369709599	7.49403014162647	8.34496728294181	7.82285745577576
+"STAU2-AS1"	6.05422195431989	6.21782865191909	5.90912363085178	6.38355736254286	6.20103092311891	6.46964488619953	6.16135732041974	6.15016589031709	6.20352217977548	5.92224027913019	5.96159896416979	6.05332008916316	6.43383064485537	6.33545213468174	6.23209912505618	6.03932179700224	6.1979521385988	5.85765576919192	6.06113616281773	6.12311419994861	6.32328857939039
+"STC1"	6.55482322840307	4.65081003310902	4.24827220180985	4.67542396826602	4.90027757023526	8.25840222365873	4.82614822850747	5.71313874349752	4.77691385401712	4.75613997444409	4.08353915174983	4.66000640644941	5.05275051610553	4.68090610038749	5.48081644439162	4.68090610038749	6.46801174751825	4.1340539274056	4.5071179183622	4.80415003322028	5.66739724616803
+"STC2"	5.88461779104801	5.90205652304924	6.33826500249025	6.30319786394347	6.10279953663226	6.90980960749341	7.14368656592864	6.03280635953415	6.44208222430794	6.55062500877948	5.91092050145887	6.2634208036483	6.50462747126301	6.46654086522946	6.24203360436402	6.19577090558036	6.48567383596267	5.97745801452985	6.42261053035579	6.41755486876755	6.17003616734658
+"STEAP1"	5.03269386053193	5.71103654605065	5.87827930222025	5.78705442618832	6.30997109772858	5.66811770823308	5.27501543276828	5.74517455346527	5.83489135196075	6.31170111829758	5.69991244819213	5.8913465998742	5.83044237644782	5.31423129212802	5.90097942938338	5.96365890938994	5.43216647128274	6.19878242884289	5.7000065242136	6.18004052893299	6.26423005459452
+"STEAP2"	8.87370417694217	10.0227406804034	10.2850213877905	9.89245710218516	10.3783999444565	9.2865289057994	8.83817268993946	9.748403133679	10.6957790938374	10.2210856619109	9.27223302023908	10.0714552224426	10.2107874848796	9.33424612300039	10.1891455689563	9.29930057323211	10.3897184644958	9.76707915367314	10.123936140125	10.288720868436	10.2038974016331
+"STEAP3"	8.09815551765556	6.94279031201936	6.60901750410203	6.67791031237316	6.66679070633744	7.00435609054062	7.04061335576346	7.27646183627927	6.76996192812399	6.80826803113961	7.20897359527673	6.7523467157749	7.1575687909858	7.12294614353843	6.97188071589652	6.85617226535944	6.70277020273361	6.89814044993785	6.84490887559461	7.60096268817608	7.63878025126516
+"STEAP4"	4.92041298923278	4.5007325986689	4.04892316245452	4.28663541008125	4.38464091471349	4.49529939167472	4.46852703867877	5.73577775379481	4.67920752201661	4.55183175835658	4.21758766721777	4.57257106851344	4.63029625092664	4.50615679681172	4.59592525108219	4.50494439409053	4.56524739781836	4.12111016678412	4.45503733336714	5.91097535425762	5.15602372722333
+"STEEP1"	5.24591976172107	6.22350845834393	5.48301936538204	5.93702089317255	5.1372282174517	5.45833200866358	5.90913013049303	5.83527712248285	6.35289916956964	6.38418697686887	6.29554293876726	6.33571552327933	6.02007893478448	5.75571920032946	5.96911808802587	5.84680436663177	5.90913013049303	4.82896358446297	6.11478569100427	6.59089599881718	5.90961221341146
+"STIL"	4.61411521204149	5.04476629231887	5.35937988821561	5.05964698894823	5.21703522628903	4.98261923699306	4.98261923699306	4.84615028193959	4.82730198502389	4.81829939053187	4.9585398641088	5.02032194362456	5.21005338662395	4.85309643808621	5.05138227121919	4.98261923699306	5.00156545211084	5.21162510184184	4.90200719244877	5.10238918154604	4.86282946524601
+"STIM1"	7.55112360447606	7.42707398105687	7.74505786504694	7.55112360447606	7.57009227213433	7.79458579556599	7.69196904704674	7.37916159662136	7.45787841675811	7.55112360447606	7.46843143587616	7.75536449559006	7.55112360447606	7.70174804582522	7.23015385497121	6.97377646232645	7.66090885479669	7.34725727230501	7.60483511139909	7.64939360574178	7.6470844552242
+"STIM2"	7.89072585382488	7.80911200371222	7.88235398464855	7.72805530090897	8.35028928532664	7.37184494453452	7.53403447572613	7.8431275244877	7.79828845197676	8.23402988777074	7.89072585382488	7.94255037524826	8.11156510524177	7.7368613363293	7.9011440727264	8.03319379041241	7.88013789923499	8.30665157543001	7.72463352439627	8.2995448673169	7.98299753205426
+"STIP1"	8.40205461812322	8.0065197099659	7.0491372379866	8.75745012442695	7.90673408898969	7.96337795557221	9.12475257679526	8.82377781371069	8.46023714133671	8.46937627697863	8.24011060405968	8.61760692156513	8.99288534041204	8.22384700594038	8.82058571808464	8.43906129367049	8.21942481949098	7.99852100360929	8.90148001573812	8.94050683490527	8.87316993844671
+"STK10"	7.38225575522587	6.76038526540196	6.3731333119925	6.4778609957148	6.37035083172147	6.88174063384412	6.95374835589975	6.56090754866803	6.52696699701261	6.42610803534374	6.76751751610327	6.09833159263033	6.79065021267898	6.82586760992631	6.46553588209979	6.8129723153964	6.33769356131798	6.64669677275861	6.43631540625612	6.74736694926534	6.86626878185687
+"STK11"	7.67154364498397	7.76216923086217	8.12934940792178	8.05267318451985	7.85475811652112	8.18377167684388	8.66421618542604	8.00594874823377	8.1930215485959	8.13544311577908	7.88063675697775	7.99076176899124	8.40963115758881	8.49549881831654	8.1405882090747	7.5745401326269	7.97775226084634	7.6094864528444	8.1568971517182	8.00432172488057	8.00832948944299
+"STK11IP"	7.53764275539125	7.44553972245003	7.76450047955503	7.32563974229497	7.17695492640563	7.48022056793571	7.38539033212381	7.44732346129331	7.67048497117946	7.46050549799963	7.32840926855866	7.3696864953619	7.12098008554743	7.54599764157848	7.55479099474379	7.48335340742259	7.56409542852591	7.44275178893391	7.32753399000334	7.60820483801178	7.43764643711757
+"STK16"	7.15362348003985	6.80886150550713	6.61800340041304	6.46964488619953	6.8757012276594	6.73196148773116	6.47633532116994	6.7707840294365	6.80670552924279	7.28645910180281	6.82910884548445	6.7890968429944	6.49506928786185	6.73833579171416	6.52540966126013	7.21034383193915	6.72599686964293	6.47752629017862	6.65132659490333	7.18403358205565	6.66283199431602
+"STK17A"	7.00434466356526	6.69086834891545	5.60157277962541	6.8261305956694	6.47703410006305	5.98318513510963	6.83417210797332	7.31249489471004	6.91360153359661	6.48374138799529	6.12207889860012	6.16052689288166	6.93451503071253	6.31555709243841	7.15407386009271	5.95167806741592	6.38209821367617	6.37831224741045	6.79020102727371	6.66974021194883	6.48534170862157
+"STK17B"	9.3363866470615	7.82056959794634	7.56745775990609	8.46179678473178	7.86949319327898	7.30454493588772	8.55878796007862	7.97433035322323	8.13323481512146	7.90926940594829	7.18130017513214	7.48079152586404	7.5627947364612	8.09719027193149	8.05150760184938	7.0142795263854	7.74645311132602	7.32415105289003	8.1558930577838	7.61265034176549	7.44383760453609
+"STK24"	8.84638246612395	8.39290920712571	8.57294207969216	8.5910553876816	9.11631648543654	8.33033120583253	8.32448359717193	8.7685111089704	8.80411188728555	9.13810457568337	8.1388356539236	8.88017221987835	8.71176012677691	8.15689958310065	8.50341902947241	8.27396439779106	8.95580435663509	8.58998608153026	8.5722078388187	9.17437151321878	9.1858376058693
+"STK24-AS1"	3.37400132378817	3.42021905649631	3.36466728566796	3.36014503075073	3.34626009871569	3.3229595742997	3.45827657268195	3.22809761264758	3.43479115233053	3.32314362564903	3.41570382651725	3.32676487568956	3.50532341635264	3.50998796279036	3.42598080769835	3.46125684208029	3.54081307498571	3.37265047574368	3.16367633608087	3.35762074321163	3.36466728566796
+"STK25"	8.57190338669565	8.58991079957515	9.01377165007858	8.44769892116954	8.7112794679785	8.54562012299717	8.18991014132354	8.29017481724129	8.51432212016011	8.75619435950399	8.56852229735376	8.58651609165336	8.44386022299612	8.17985656348924	8.08665209684956	8.68353570131227	8.58319534196138	8.7724722268345	8.42690272231626	8.90514538208264	8.71979886426056
+"STK26"	4.57600785577868	4.17526334365261	4.28578896885802	4.2493817728559	4.30997508006375	4.24600741232468	4.2447186349712	4.34902229984044	4.37798152451492	4.20700329735914	3.96839069532014	4.03936869314307	4.37796667989819	4.45618619195437	4.46528727607594	4.1064143680702	4.22002227371141	4.41640096981075	4.2493817728559	4.60534172317037	4.18348635700695
+"STK3"	7.9612179307004	7.23341777280824	7.25156709898237	6.95507412802215	6.95371336136924	7.66787266173481	7.66199947490782	8.25714941323426	6.96432075076741	6.91317126242762	7.64249188891393	7.11157212449927	7.03283017746385	7.40620640047689	7.52076232693449	7.66380804979482	6.98520573904566	7.90101652174619	7.26391016609871	7.2210707769658	7.20049570748544
+"STK31"	4.02725683161394	4.28093298388805	4.35901707228838	4.10394601955175	4.29787183701962	4.0101444593623	3.68078300476476	3.90814456249617	3.48683768560545	3.72421426249425	4.41479981424528	4.0938031719746	4.12133255609401	3.81592929834765	3.66863562541103	4.60110749187464	4.10562598390713	5.22847296227562	3.93668319481726	3.93374798201947	4.05060549703633
+"STK32A"	5.74035878238692	5.15711089295786	4.87570085736214	4.76681545128102	4.8331107710684	5.04916952039557	5.24237186128588	5.04916952039557	4.67569487082649	5.0746480526619	5.33165121914931	4.92550580486649	5.24777499272015	5.34810385551279	5.12594646631281	5.33976833245603	4.83682140269143	5.36932668132124	5.38075992719318	5.05497694948843	4.75691094933453
+"STK32B"	6.91442094342495	6.70505597915708	6.84496929924392	6.76653659373209	6.75814606993319	7.15900543498358	7.43666864140325	6.66515517664756	6.87844931212103	6.60220139629876	6.63355282860042	6.49763219605608	6.89179938329843	7.12430497409216	6.74715779126365	6.88384418890806	6.64897364834689	6.73511495515572	6.71199780557777	6.72800370118402	6.55366026316588
+"STK32C"	6.81398233528623	7.08532698364879	7.22259872889675	7.10052657072236	6.73639092488428	7.43211705127161	7.85089419752728	7.14550410627917	7.26416484525954	7.22064968576083	7.05807327610429	7.25249539740675	7.02168180909717	7.3700215962734	7.23224724373212	7.00022529763503	7.0386258894644	7.00060552815114	7.40292135126189	7.1577493519344	7.12640819751116
+"STK33"	5.7307827053134	5.12547574666704	4.95364716676412	4.65354278597846	4.88548364385296	4.70805845263445	5.29325629874705	4.88548364385296	5.1447145648846	4.88548364385296	5.38812518579484	4.6395488939177	4.47286015267262	5.23404074022981	4.90122496205643	4.70920172931646	4.60602786418399	4.18983231421557	4.30746627870836	4.90350160472662	4.68714412559843
+"STK35"	9.18705734467492	9.12934541194742	9.65599787898026	9.33477192862338	9.1498821838377	9.2012779274112	9.45788008982219	9.47130754737467	9.69196395118404	9.17365591548382	9.09304677836639	9.35003368493034	9.6451332327347	9.3389091502258	9.87990751677961	8.47061881115318	9.4327225703132	9.47564933349212	9.4774019515667	9.19388515379992	9.19634001965922
+"STK36"	8.23866141805023	7.91916006810329	8.27678742155438	7.95567885889339	7.68416308545105	8.35052045172399	7.83276533233497	7.83064017011879	8.1141637750109	7.69330954319814	7.66220032503103	7.49755349099179	8.26647978474008	8.28977713926492	8.1135980383122	7.26816428264879	7.82808052161807	7.73972165437393	7.83042884821265	7.68436136416503	7.79421112461462
+"STK38"	8.56390052388546	7.56598114776364	7.67817384947763	7.76558389908965	7.24304406445088	8.15921294466199	7.86706820846094	8.03984521430695	7.82098885588942	7.41917247376938	7.73963755974821	7.54193663804323	7.80774462570808	8.06124348183152	7.83402582830722	7.34446724290635	7.47707448964595	7.60483272465338	7.84434587783804	7.76194624658054	7.39463865899104
+"STK38L"	8.51703725767207	7.92372876491125	7.75725734223168	7.79209207462344	8.01617548930365	6.95316919464008	7.25686494579899	8.21394572373835	7.95415804246858	7.81667228421798	7.58085846433752	7.89882523430095	7.21905800179125	7.55536642738593	7.68620983937304	7.6948845385332	7.86330135201786	7.48879589519286	7.82397281943271	7.76379929884594	7.87368375354587
+"STK39"	8.30275092779667	9.13695908972894	9.30156783451291	9.22400861858027	9.52962840747306	9.35312803711389	8.3909978317282	8.64849829055368	9.16691077900567	9.27710510880022	9.22930981688588	9.13286641794485	9.25177864520368	8.85022403349339	9.59835442338278	9.53983827362925	9.33918954871737	9.62898974958996	9.13254842495393	9.20412335796391	9.42562809825812
+"STK4"	8.57855655473147	8.47202732886241	7.67936285418425	8.80572566738828	8.16428355446452	8.60559493296504	8.54624137355836	8.79539743261029	9.01175644719926	8.60440866068756	8.5753434659164	8.51919921701338	8.82792915238053	8.924165138382	8.74643588810657	8.33701030282574	8.66571078471791	7.60545542214128	8.7254772334126	8.31516111393396	8.57855655473147
+"STK4-DT"	5.71087671768437	6.05223388348493	6.28884241595394	6.00457456699752	6.12146554758886	6.15120241049653	5.97068833658435	5.89696399139101	6.24645987036909	6.18597369129141	5.91912968856906	5.99491693611972	6.15723253233731	5.92999192787069	6.04198314991731	6.10094162756877	6.00457456699752	5.91928694626192	6.00457456699752	6.05223388348493	6.00457456699752
+"STK40"	7.5308164718551	6.89299599058824	7.12265290633112	7.13947199961622	7.07178037877706	7.40781885221615	7.31724045243258	7.48795437361941	7.11831739242702	6.96910842319038	7.02341315214488	6.6871561469068	7.38434984002564	7.26533071023861	7.51492031792908	6.51990057300031	6.85520935736825	6.99021872216959	6.97462132687096	7.24722984482111	7.40516472261827
+"STMN1"	8.03591055327352	8.89312478732712	9.07681633936914	8.68264563874707	9.09822718181676	8.68722191895859	7.89629735276579	8.34747191998281	8.65244013284563	8.87392087384322	8.43272780207118	8.93222012451356	8.62153681527942	8.26707549101874	8.74556533637761	9.1576811369945	8.44684483259593	9.25336972911139	8.65325174079972	9.09048666523071	8.76595746020431
+"STMN2"	9.93437251654278	11.2926017160703	12.0101145156359	11.629553641223	12.1538102878042	10.9221528253254	9.62207542372135	11.0401550445867	11.9120463372603	12.3504867703141	10.7955870191637	12.1248241787368	11.6119950007578	10.6742485010014	11.9780689367464	11.3662016528177	12.1692374469476	11.5088711923612	11.9059095283336	12.3153405060048	12.2464554858927
+"STMN3"	6.5608124761659	7.24455749368608	7.53465211957176	7.02032039977487	7.79074806046219	6.79830218676656	7.03500121531203	7.29739158672852	7.61367618020868	8.24637380131947	7.43564370955732	8.36277286962551	6.81127562983472	6.48028351068718	6.66250254733354	7.40350701717714	8.08140770130035	7.33693301742795	7.50240356135705	8.45496086205296	8.62666207848515
+"STMN4"	8.69047274260981	10.791852295126	10.2847987224201	10.0593459563356	10.2001471155325	10.2954476192908	8.73072796252401	10.4561650966742	9.93238056357391	10.2268717107478	10.5399993315406	10.4130520010327	9.52567733244708	9.96108060043809	9.47683032302615	11.6799217235987	10.3337135767679	11.0456663399235	10.3142542368178	10.2508664689971	10.1637394944734
+"STMP1"	7.98688640485228	7.98933573386348	8.00124385820938	7.79494503239223	8.1557413275075	6.87872004320099	7.7709216486176	8.03032633555489	7.92597920523429	8.14997056943295	8.84442684296346	8.23424493466553	7.57496847335407	7.63142269576886	7.29810145910004	8.42043741298337	7.73022861874185	8.24279317828942	7.99186238907006	7.84299990301245	7.45444517373794
+"STN1"	5.8072603733916	5.86419019109842	6.21470473805697	5.51940855756418	5.84455335999184	6.98627942538321	5.6973065766526	6.67453090427133	5.5093403673884	5.25849943404313	6.08805510070209	6.02024712186457	5.39194690050414	5.58301121811525	5.64415641493895	5.84172883148141	5.72123145998928	6.51078356144805	5.88208393863597	5.74417472007309	5.73482432194607
+"STOM"	11.4846821426386	10.2529457035233	9.58578691411583	10.6076709336868	9.88163097345873	9.98543022317959	10.624619207471	11.1234325629605	10.1788591784273	10.1327829740221	10.5595573365535	10.3604274455367	10.4063069942214	10.5709367971862	10.1565122170617	10.0119947469373	10.6794822122366	10.1553681112012	10.353583454465	10.2180227878073	10.2144084978117
+"STOML1"	7.54789788639529	7.99830254400435	8.51649981109782	7.73119834903422	8.33495632228595	7.94208703430832	7.38049027268689	7.53188303961198	7.93150634877835	8.33881668627956	7.81102540531487	8.03480408386107	7.93321870314414	7.7925208104582	7.59854118544847	7.93358625127847	7.99766546735448	7.79994989387351	7.86510826791694	8.51493280937104	8.2320232073289
+"STOML2"	8.23051508462535	7.88850365447127	7.94267578511612	7.76853989504387	8.11820166946769	7.73055298813787	7.70883458098734	7.94738725228158	8.1370968364286	8.4134523299024	7.83271115150921	8.13469380609261	7.62575791039801	7.46550512062457	7.84498960929339	7.90674534024528	7.80800755850266	8.09573188652757	7.9595636308517	8.42193593154747	8.154797223842
+"STOML3"	3.43082190915659	3.54454302333943	3.31503121790067	3.60635965318495	3.35303101228754	3.62505201575762	3.48401303533419	3.60915591453293	3.55503605640261	3.44001722809314	3.43000185121248	3.49327879733972	3.48401303533419	3.64983186360354	3.34384630856301	3.54300354855708	3.59222776405588	3.31502789088818	3.39466415280945	3.42246796872231	3.50861393151021
+"STON1"	7.31768327169291	4.69172511238586	3.94728794232465	4.66582221193381	4.35747699821698	4.74790249892891	4.83907103410766	4.81716844649598	4.91946573989329	4.8793170564813	5.25109674127422	4.18433098270408	4.89095060456515	5.28079558031193	4.60961982235181	4.67497006838376	4.4776479321926	5.01936178428189	4.80419531992814	4.59980637460428	3.98687884010781
+"STON2"	8.56244279028297	7.7524377902698	7.52358925479543	7.78838777694398	6.95713829979737	5.30475216734095	7.33883261499312	7.970227444658	7.52988670995555	6.62794330731807	8.50441769201542	7.01367653432173	6.31423663811558	7.03732150396063	6.69398734709448	6.52249831033287	6.84656195958451	6.36221166557496	7.59575364535363	6.91622011569838	6.00725161887571
+"STOX1"	8.97032467217561	8.55893213419843	8.39947708583843	8.59953615008706	8.29267198601957	6.17388593761219	9.23194363424262	8.71285960601933	8.94991062397559	8.21873699478935	8.14976413131829	8.09680787345515	8.39599074150205	8.59205204945477	8.55526138509273	7.19022543706593	8.31863087224581	7.90308933315383	8.36137392719426	7.91048985917097	7.65752493220817
+"STOX2"	8.82014566757508	9.60810657908391	9.90683363961359	9.70940811944909	9.86305205156757	9.36700785699929	8.51703725767207	9.40976930987274	9.67731094552549	9.44227633202055	9.60836308485802	9.6844030286464	9.62298768339658	9.14337060405937	9.85962942073169	9.64337827361575	9.78349702116854	10.2355895177648	9.55596062339922	9.62067923404197	9.66917661574914
+"STPG1"	7.36680963012739	7.56525613428701	7.66070372319819	7.53208537928804	7.87277725121877	7.23851577861066	7.0428988357604	7.53065693783965	7.59827743755171	7.64214760452488	7.44439776456701	7.61928922433237	7.49222342138421	7.64681068275163	7.39687523365553	7.46571349235087	7.67497538055888	7.55536642738593	7.53960482880288	7.92064962859534	7.67091899163643
+"STPG2"	5.77912495408906	5.71644769108152	5.45822288632896	5.77867864673606	5.7189522029508	5.66744028538777	5.49736122480401	5.60521817374949	5.72294756754601	5.62746690476014	5.58805384475653	5.57395874405014	5.85043379565039	5.66606800567623	5.39801160700096	5.82737120281877	5.82646643167495	5.42549404807047	5.54345260567849	5.55890411844152	5.61212740900175
+"STPG3"	6.27701667095479	6.33145645928902	6.00670622707959	6.43161678741706	6.49376992000853	6.33145645928902	6.76260363360965	6.41605860419845	6.38186095771769	6.33145645928902	6.27204646493763	6.24646850566975	6.46029486404043	6.37524370722561	6.42280255064065	6.1574064743784	6.33145645928902	6.03100826759902	6.29144920021494	6.23185901849431	6.50795728134498
+"STPG3-AS1"	6.14017214007073	6.21609421348289	6.11463592008074	6.35258314562221	6.23140647915193	6.72670697142586	6.81884702536353	6.22696470295206	6.49159584354598	6.33826500249025	6.35804191739676	6.35587287452614	6.45819495820062	6.68478589043216	6.33826500249025	6.30727328764873	6.20738140463149	6.07196056516901	6.36836333316991	6.35623121091694	6.21372236771136
+"STPG4"	4.32686557284315	4.97858865016298	4.47855756659106	4.53552366041602	4.22986598444086	4.75391176901744	4.07561420181377	4.53552366041602	4.53085102752807	4.59162029696723	4.38036813366837	4.71332032396386	4.74600565804198	4.40827564418163	4.90776931075259	4.70884315510085	4.8100715038788	4.29169195056698	4.53552366041602	4.37253480609131	4.53552366041602
+"STRADA"	5.62283604954098	5.84100556210312	5.68201702496287	5.72505501816709	5.70055008277101	5.50384023595326	5.42085129143316	5.8658071828835	5.58630433644403	5.68201702496287	5.72505501816709	5.98524719456855	5.57039145913557	5.62321296570984	5.47596932844437	6.17503840724479	5.82045513473519	5.7686963466028	5.82316296066226	5.57957519526517	5.68495917157836
+"STRAP"	5.51638721029923	5.62348285191414	6.18257485882418	5.39576317200021	6.44620043156737	6.08195813655232	5.3102198835113	5.46728830364138	5.64478891035392	6.19019171568716	5.52261973705991	5.7614565612136	5.35939486756634	5.34644831677028	5.64478891035392	5.64069301077503	5.5547381162483	5.88090888010447	5.53128661453501	5.92521244968142	5.70383411559393
+"STRBP"	7.44328510813683	7.68159157874482	8.26333576759478	8.15653541095828	8.64446392109575	7.91580636787446	7.59760988779642	7.88723422743324	8.74544856766308	8.40032283783702	6.94537607955347	8.15653541095828	8.51558527731768	7.82951068389331	8.68883430488219	7.60141367743091	8.45585876726489	8.06988744361555	8.26472490907381	8.52176568965639	8.3511377625094
+"STRC"	7.0228423546419	7.15751094359829	7.46081605052293	7.15086445867895	7.58218494202267	7.68920877108504	7.24385265203808	7.07291948091897	7.32069459781919	7.52413922079676	6.98715217496879	7.29552552584681	7.51760204844342	7.58910972597003	7.30985207595778	6.80296902880838	7.513633103171	7.14510656890436	6.90372188961017	7.21053843087761	7.24561297599907
+"STRIP1"	8.16038251765708	8.43682236065385	8.74334330328958	8.15017822851486	8.46993994058366	8.04188663099892	7.72995333503923	8.22388529612006	8.35062514080288	8.4871941750202	8.19613226178753	8.17175723081215	7.89109753879693	7.86008503094393	8.05196524711486	8.52882467052528	8.267069822307	8.43563458129617	8.04442754362018	8.67478664508068	8.38674153411169
+"STRIP2"	6.21158097256642	6.74353176204833	6.46964488619953	6.29423794118973	6.49329609549946	6.2412383642718	6.08361367529484	5.85058726186981	6.50726737990954	6.53602784204996	6.54809057595236	6.52573802810204	6.55906097447666	5.92215013472151	6.41112188700595	6.4972844645876	6.5628874526156	5.99420909657946	6.48583228849031	7.05973141845868	6.76327535756645
+"STRIT1"	2.85124053788357	2.75735834524283	2.79795493300687	2.95902017826188	2.9168692715007	3.22722027255559	2.97468882230487	2.81732056915508	2.84225777897095	2.83278680518178	2.83325115799054	2.97006113996751	2.90457019158507	2.82125398876849	2.88397264343392	2.75358284006749	3.00209315673198	2.87859240380372	2.88826760240774	2.83474802358534	2.75930907643209
+"STRN"	6.97389237757771	7.45201901946873	7.0682185147973	6.94344195056498	7.38745463511463	6.52257062428213	5.73971809950586	6.72540001775437	6.93193539437146	6.71506864612014	7.78173109552738	6.8860194197756	6.93936585978244	6.44550562062294	7.11571889722617	8.31067896157433	6.95093353819803	7.86741350441386	6.88341106239058	6.74169400189765	7.23223467644081
+"STRN3"	4.98200908134609	5.76057180320111	4.65180371243588	4.87139652822779	6.16073973214706	4.63349290174147	4.98200908134609	5.12412882071819	4.65585465464532	5.01319951871578	5.02154176387794	4.98200908134609	4.73767046668394	4.56258688016003	4.92395125267845	5.19188599255354	5.25180009204717	5.26439780337503	4.76870949741988	4.93175888624464	4.86906598887494
+"STRN4"	8.2987340022836	8.43207926640334	8.66987689387119	8.51941821124967	8.60975384902919	9.08553846831959	8.61331813969153	8.45911037506754	8.16795084485894	8.31717751840904	8.25904679436914	8.33009063240467	8.69744035138195	8.71694141051857	8.12371935698368	8.21860588926249	8.21322844912089	8.51481718441953	8.27433626474782	8.42260356938517	8.31116236666097
+"STS"	6.04046004681891	6.88216262170234	6.80078567835725	6.62950292635567	7.5548527146332	5.83445719904877	5.66924473452819	6.44004348481486	7.18657707776553	7.91958620259424	6.26192466717643	7.07658569829571	7.0009996784575	5.79409434494066	6.45887771899627	6.84040255720606	6.79507010150179	7.04362243477895	6.61550071492461	7.499024219139	7.51742302432578
+"STT3A"	7.52019813392889	7.16665515354623	7.19423358829433	7.13833463447987	7.0541586665726	6.47784198583703	6.94312164475491	7.04361000130857	7.16695470969276	7.31580785351359	7.83089441086188	7.1880228648096	6.79800627823102	6.74068427324551	7.05783064239395	7.76516059137438	7.04737569357845	7.43183699228619	7.00642703266085	7.62523167282733	7.15512105260625
+"STT3B"	8.22621822122634	8.35331213889438	8.51828269252271	8.39945001386331	8.62512812140356	8.06871374517753	7.76634720072956	8.62845970918257	8.24161514081477	8.38058685993186	8.92059609188581	8.35988098200517	8.47157889951266	7.9643664753184	8.84929633613388	8.67789902420215	8.47582060268353	8.80847734152786	8.35464367089967	8.3161878843578	8.4645376655961
+"STUB1"	10.5771331653441	10.4713085864021	10.9850330464622	10.4990411586002	10.9079360423889	10.9194676305011	10.7833442166608	10.6141973529571	10.9086442896078	10.8859772575915	10.2954399571152	10.5191674648736	10.6273440332774	10.6917073181992	10.7042288681195	10.4233853970136	10.5489994325087	10.4891494561154	10.6393591256807	10.8735254486788	10.6231681720767
+"STUB1-DT"	6.0385842023461	6.26402646513461	6.27243177257289	6.40391672103292	6.04533387718851	6.3277881097376	6.31601944212345	6.14311711861758	6.1472026661789	6.18826171620276	5.99922103575382	6.00092529257152	6.26496682642241	6.6881703082107	6.04964580908574	6.00935657904724	6.29336183274548	5.81149448320245	6.07403363891114	6.31364509362205	6.23090791185305
+"STUM"	8.89511063687238	9.92804186311763	10.4346203055731	9.38896340050838	9.58422427658141	9.29179552908357	9.30285306841787	9.53852416314965	8.95171883832868	9.07632313669012	9.32026785152815	9.45254118697336	8.83345032067392	9.35817132013738	8.85244656372306	8.98577007728732	8.95533508058451	9.10514646347384	9.17458433557477	9.55310356495107	9.23517345584422
+"STX10"	8.65090273907061	8.42876656398815	8.55555003709308	8.43368450569619	8.2183194182152	8.87605454860862	8.70808674665717	8.28047274801862	8.36051569271043	8.29944879437943	8.51762602688765	8.16217497948971	8.47911119627907	8.47693900980966	8.45330954604169	8.53360165987272	8.27703902871979	8.67115903414225	8.47730118057205	8.41124931341069	8.21666005472073
+"STX11"	4.45605314571833	4.02439104796779	3.44935741153774	3.80870759448963	3.85112355950631	4.08613475916665	3.68887751146629	4.06239889745532	3.95498088684941	3.96089851493637	3.90527383797559	4.21765786550119	4.20954984641821	4.34921545494278	3.92016302320944	4.07693368016184	4.30612252521911	3.74246583756418	3.95535679867063	3.64931597695605	3.84746626312461
+"STX12"	10.0278778529817	10.0002098708659	9.91991666589967	9.67524606062732	10.0213267978385	9.61737331167596	9.05876614703659	9.88075901276011	9.59398106684934	10.0670971834502	10.0310396699454	9.96192333298791	9.51483712655061	9.74326467402582	9.53693068412958	10.2801821012845	9.69803801465841	10.159201280289	9.82189759408152	9.90710673171763	9.98301076124697
+"STX16"	8.63699196983902	8.85758099167844	7.99541214443366	8.83291867115975	8.63536876050781	7.75983762656633	8.60353915664911	8.7980734833793	8.6885151457892	9.05897566281392	9.34914000137268	8.92241940945547	8.78231073179281	8.60444134123894	8.39399065468149	9.33520394673043	9.0458652513464	8.97923184675872	8.88237448181526	8.74823201747317	8.9367200196431
+"STX17"	6.47309248036472	6.61760108656451	6.94332545373305	6.38353850275234	6.98182775277159	6.21699543390393	5.96344430014519	6.43977363413894	6.19285190847839	6.10722279483166	6.76615000786833	6.31104506067919	6.19886219940862	6.0422363129365	6.19739418206781	6.7110150258811	6.44662953198299	6.78580488134113	6.21158883243986	6.235848561734	6.13983746667173
+"STX17-DT"	9.65511153964022	9.94399695485026	9.35137345486558	9.88584996537192	9.69006801192184	9.26525550669581	9.62314571258207	9.57149338869393	9.59746767969692	9.69565322640781	9.6875530207913	9.72113522529527	9.82907771901744	9.77635726896562	9.57753029550302	9.71159846938409	9.87652633388267	9.29588263245644	9.63178722747358	9.51401310957355	9.79809230058509
+"STX18"	8.94373501076057	8.65114400847991	8.73097726097292	8.32616350636102	8.53399414503984	8.09773311197929	7.81277507216774	7.93132452306238	8.10157015270866	8.48872533630244	8.63923361824366	8.15630532573358	7.99142770199589	8.32719504769154	8.20876619691244	8.73916610068473	7.98988447274801	8.66712791603831	8.23039251093152	8.59016435426978	8.31651978314295
+"STX18-AS1"	4.28985254163218	4.13959719184853	4.17533802993885	4.22672098618219	4.31125393615669	4.23869342203673	3.85711437467049	3.93442755268617	4.13959719184853	4.45503733336714	3.72286131350167	4.05035913485211	4.21268871343241	4.22056760246091	4.20967521873792	4.26510561284867	4.13959719184853	3.73650394892802	3.95967169845932	4.12590318330011	3.89604454749272
+"STX19"	3.64412061090917	3.74405533798425	3.64412061090917	3.81779111380486	3.73150051580762	3.69904142947601	3.64412061090917	3.54787508188439	3.64412061090917	3.64412061090917	3.53211239657785	3.47659493336544	3.46696830303062	3.64412061090917	3.60365389567906	3.7821470395943	3.6295265400684	3.64412061090917	3.60914691653304	3.58886786060703	3.66533629369221
+"STX1A"	8.44844306500809	9.9023219826422	10.3386768369545	9.320634904399	9.74844517687949	9.28381952215882	8.93579684651295	9.41527794035157	9.19512357128995	9.4430027550253	9.18093046081188	9.68077113101325	9.28139229669546	9.00461124374225	9.21011885282809	9.19141191244037	9.43181516039625	9.03658293238472	9.32756143491208	9.9246890842439	9.5000977868545
+"STX1B"	8.44467127748118	9.41478267058621	9.63633615567718	9.32435069753934	9.8547113004066	9.46711592542923	8.84024974507177	9.04105245616166	9.24871384818562	9.6199939706616	8.90899201101644	9.65228680864298	9.56717622564324	8.95802812910235	8.80284123849877	8.72557902598684	9.66665925082978	9.19224043129286	9.08224790507796	9.87791290882627	9.81103048664928
+"STX2"	8.76107586917708	8.37534471856807	8.57434375054977	8.37005567783074	8.29932959446779	8.41400046202078	8.26622996495981	8.52561195593112	8.25914299223343	8.17030648412351	8.46020840887249	8.18313269495518	8.12486822372279	8.37408373047518	8.56742207600718	8.65107364152765	8.40483011303254	8.56397788715995	8.5479985097279	8.32820385827443	8.15931182197046
+"STX3"	5.1543994370167	4.77029572457876	4.28900605961064	4.62937457443623	4.4622410025353	5.10056226175948	4.43720840952231	4.91456892220248	4.40532122514398	4.98618981184465	4.50768802050531	4.85324214573689	4.62403072783591	4.24591606552791	4.66309177277099	4.26725191704396	4.4752576076541	4.92432596851252	4.49022294935238	4.78203841966431	4.69947840212874
+"STX4"	8.77794073207065	8.42641597469144	8.43431012703375	8.37753560401132	8.45550167243408	8.87097062473011	8.46086150591498	8.21513733336079	8.34700678547573	8.41121812851996	8.671469933213	8.18816631244479	8.05029770558842	8.50515264308178	8.5553787941291	9.02348119177151	8.23000320781124	8.78632440444076	8.60798588581254	8.59873892037734	8.50099776073931
+"STX6"	6.54073036784031	6.25950324821766	5.95327931256333	6.54073036784031	6.53734258881754	6.73719293924562	6.43541079032665	6.83319737026903	6.35575642343099	6.43909217491704	6.8556473241112	6.49471556567228	6.50972909069511	6.2018684395032	6.61565171994658	6.660337880218	6.56579674368611	6.96098174996155	6.71765557101093	6.66506943224859	7.02771038350416
+"STX7"	9.56756047451693	9.59745767325522	9.88049237741316	9.26053691905024	9.81653635384649	9.2836568900949	8.72738799095437	9.490144509951	9.45677144226301	9.70143187571425	9.61582019305453	9.6789880955282	9.09011537803176	9.24477477952342	9.51490231115377	9.87758232036291	9.51107306641224	9.83631986123336	9.7577439307993	9.74227963335398	9.64385931227878
+"STX8"	9.50535113009693	8.97142427480382	9.32339539823045	8.86266082110074	9.14660999230915	8.77230709440639	9.01025884021282	9.12774055359785	9.17202782323535	9.23477506406435	8.98789042393144	9.09569150688706	8.65660188742764	8.7424829334304	9.33614823988522	9.28329982191218	9.03602524525765	9.28139780944374	9.19029888776949	9.43202052585491	9.02676895914557
+"STXBP1"	11.299921128948	12.4733086117055	12.5041718419257	12.2862844828908	12.6449298093087	11.9492445043978	11.2772926222581	11.938310486313	12.3147811751657	12.5530597282074	11.8113476827499	12.5782561851175	12.4078478630769	11.9407243075218	11.8428893545999	11.623709486848	12.6905594511518	12.1681761457145	11.9383510791481	12.6138237530566	12.6956779756326
+"STXBP2"	6.47457773180076	6.68835477541919	6.45232919417778	6.75881997193871	6.75814606993319	6.60426597438048	6.86033306268734	6.48661097732136	6.62850570333262	6.65386768183722	6.40595154782137	6.65551649484241	6.73253309867692	6.61233740806668	6.49728581114637	6.76528660172949	6.78056936615102	6.41835831675987	6.81917902158895	6.68678478994113	6.82892375065657
+"STXBP3"	8.86439289028471	9.03551527265577	8.61849391786344	8.95644116625745	8.55736622692815	8.13360600835447	8.31387287033041	8.89700799208299	8.54526259765314	8.39295693399085	9.77947262148066	8.30785454285058	8.79886410068764	8.60647116574827	8.99408002326904	9.70138097087751	8.58677339950428	9.53046471859425	8.89106747860833	7.87140128521874	8.57745683589533
+"STXBP4"	6.1194030441298	5.37437536423552	5.06767759589576	5.48837170545811	5.22991048724388	4.96732983476632	5.53663046351342	5.33813030252999	5.47333030955202	5.06165065476275	5.19218662207323	5.30793636624207	5.31976223252865	5.29042905836061	5.32831593381895	5.56458709019211	5.19643312194965	5.37009351686143	5.16545505786132	5.74463654409075	5.15989793411201
+"STXBP5"	7.98058257398728	8.75029313129184	8.67192782087772	8.80076564332259	9.07530448546129	8.69824442807699	7.6206040232392	8.34891881127777	9.28244956064682	9.15155925383561	8.36670559585293	8.80812297044039	9.05106316482506	8.3723401015116	9.27838383120798	8.01072881498684	9.13030083963601	8.6997362789956	8.84078101156209	8.89727065145425	9.17220687095931
+"STXBP5-AS1"	4.98182619406736	5.22743330756089	6.17161619081185	5.03331426033447	5.47542763050103	5.5941733389914	5.63675369587504	5.68646441609884	5.26590355278674	4.81342908320908	5.26590355278674	5.43547169707584	5.22107211703245	5.15911835797458	5.36287680723331	4.59138967859686	5.62114405417193	5.03633636681091	4.90800912075106	5.16865673038227	4.64994864639417
+"STXBP5L"	6.94433474532645	8.14367819890218	8.65290358894564	8.39387965826904	8.76083317425171	8.02982025779927	7.23207981828464	7.93585454240199	8.54380406109639	8.32271172586995	7.4757830037513	8.17246368173688	8.51840787159902	7.70601114009511	8.46161569065393	7.77324572531495	8.56208401431681	8.14398688018401	8.15316075660139	8.32464265570126	8.40738143162481
+"STXBP6"	8.24342016783223	9.32010999966357	9.16006151007864	9.34723986514216	9.5765408931533	8.1115402202109	8.37194640617215	8.90047946274793	9.81180498304585	9.33131596298625	9.05705456938264	9.26243351195674	9.5199335572849	8.87434153630237	9.66084438164566	9.29402311794509	9.41772165078195	9.45222900346432	9.09387741002115	9.41056463230221	9.40099959709314
+"STYK1"	4.19095241330069	5.07975273320144	6.88513086548178	5.40716021899741	6.75073877258784	4.66744684827781	4.19095241330069	5.17987808303043	5.59867636713895	6.27334042613335	4.26437707455692	5.92739485580976	4.94576617750668	3.94284514344501	5.44217752216348	4.8780398141063	5.26766210204047	5.82294840371137	5.13179455694441	6.2980987564048	5.76124289150412
+"STYX"	5.44383057134836	5.02037124666839	5.80890396756821	4.94936370266715	5.37374158101716	4.73758429763858	5.14141049346551	5.13972418013328	4.82726951705016	4.76812154241467	5.75984211360023	4.76196128046958	5.02820969944823	4.94353236858526	5.05884192088737	5.74989654072366	4.73937204833846	5.65085560633696	5.16158872703305	5.12886552891854	4.9471696196575
+"STYXL1"	7.90685841927857	7.17064729324204	7.2742777101101	7.30817797525348	7.1749175771002	6.77442926590562	7.54676281308773	7.69248687818094	7.21588971490726	6.73406707526268	7.38928376912234	6.8864562013417	7.30817797525348	7.27597560229885	7.32422287059086	7.83358794968092	7.25530584549429	7.42832572512875	7.59997693972991	7.30611931596977	7.14122145153479
+"STYXL2"	4.30748637146286	4.29846341068347	4.66272999377127	4.56231110212829	4.65455475714661	4.59633646381696	4.42885126166841	4.3830443888692	4.28826438505455	4.45609925929579	4.29660385019608	4.51376575955044	4.54137198263651	4.83067030029816	4.28626416695776	4.63384989075281	4.13035869844733	4.20089345133329	4.14631840575657	4.49804886482923	4.4799695455096
+"SUB1"	8.7891654052052	10.1156630942735	10.4344169172877	9.82147446485854	10.5279800870964	8.80772091820711	8.28558238982378	9.57848843701862	10.1084828720188	10.3471008038018	9.6525685971758	10.3505368490953	9.41355281119819	8.69195036239523	9.6947950741962	9.87655744289088	10.1005695898317	9.87800724960022	9.96470633645556	10.3634635787558	10.4570939554675
+"SUCLA2"	8.53651502196849	9.33427445681842	9.34331185171444	9.38171357629104	10.0440935208543	8.40658534936571	8.65692012581303	9.26005718778303	9.42550412101208	9.82543554720272	9.20257489258609	9.63134108193976	9.31569178727775	8.63064203966346	9.68008084590033	9.56324003416737	10.122511786619	9.63774047826687	9.39480330594268	9.87651508918653	9.95247283175625
+"SUCLA2-AS1"	4.63444860833109	4.80113790306846	5.08605259892092	5.12044393115357	4.78244913582248	4.59629417139027	4.62261061483753	4.99503290763467	4.70256569007898	4.87861699229336	4.68012319802786	5.08028235824273	4.90275119310688	4.91794325973407	5.17242025895515	4.52853780620419	4.879755604757	4.87276361509041	5.14038029471827	5.02841739840226	5.0282768545055
+"SUCLG1"	5.13118849569104	5.50527061662638	5.40011176179705	5.66543484800944	5.83608086009209	5.14153094692802	5.51403668859576	5.16386028569947	5.49848224771587	5.39396662977167	5.41699858288434	5.41177111525064	5.35239736123122	5.57103521838251	4.88441563467885	5.27786827446398	5.52619480548914	5.40011176179705	5.11413654961505	5.55358046016877	5.34985298073122
+"SUCLG2"	8.13853512870651	8.06935406572932	7.3818867734975	7.54326329760508	7.70574277436864	6.93531250673886	8.01267832103079	8.39015511607105	7.35906858070073	7.65209341419787	8.28102002149569	7.30790095008121	7.52842363123383	7.57611639970739	7.1908216203668	8.07169459691716	7.37746222785967	7.72195677856616	7.61397002055396	7.53196715722553	6.83282290243242
+"SUCLG2-DT"	4.54751080496412	4.5164704285504	4.42924175617061	4.57929527470991	4.84611558162421	4.44609459734716	4.70745140862024	4.5847233357813	4.61552486600255	4.70499329356982	4.56166461959236	4.43364300618205	4.62469025568011	5.14923240822968	4.53799995493526	4.58376586184597	4.4315661298355	4.42036503849732	4.40544558288681	4.51219335263224	4.40094895717586
+"SUCNR1"	3.50806343702698	3.78204056874707	3.73928465456583	3.76145915426798	3.80560305621419	3.88855941882961	3.95116859048618	3.78204056874707	3.83586897020827	3.65485294401074	3.61748363394579	3.78204056874707	3.69428864401007	4.01615771219074	3.78204056874707	3.90197019130075	3.65255117240771	3.91977967638055	3.7042091452802	4.12495788378036	3.50356921798684
+"SUCO"	7.40458545312609	7.53260476211089	7.95007062935034	7.33368890790325	7.64820854312124	7.19461614918482	7.16753827972077	7.33348658725925	7.24403371744176	7.34443682706459	7.76549021303699	7.38827501748196	7.07445638239787	7.13309856118711	7.35538984626421	8.05843277922872	7.44250356987237	8.10043786901139	7.55504408773023	7.44834785640131	7.31583954937334
+"SUDS3"	7.73249160511467	8.05651250605048	8.3708155059184	7.85189504040121	8.35316135101611	7.56325267335728	7.24832990833739	7.68994606922094	7.9778109861672	8.24001410564241	7.85239548299022	8.00583853187799	7.64950988017467	7.10064660643896	7.82900640210215	8.00000487735883	8.15814934685479	8.25622977633982	7.97657226101551	8.45307081697065	8.08774782733302
+"SUFU"	7.79651643649976	7.87461449561919	8.05016503089204	7.93427881299785	7.75497219362067	8.32520734669336	8.7120085356769	7.77999298400111	8.11732264035626	7.94286389378363	7.93730286974436	7.85909058456749	8.15231566037413	8.4738622208989	7.94554729077677	7.63217418119396	7.95456064382883	7.84761770932046	8.04650650071252	7.97071644428801	7.64906252717392
+"SUGCT"	6.19840989508872	5.83258584410186	6.2727493730869	6.20899283701752	6.0098818873685	6.67518150042158	7.14844289945397	6.07854110773496	5.94857670697333	6.02285616596555	6.10588538403965	5.87171797821017	6.04332543802175	6.16787221008267	5.81107124709883	5.9589053477581	6.01166340602171	5.90651304778102	5.80156223247041	6.04332543802175	5.81447956544636
+"SUGCT-AS1"	3.49364524892551	3.3404377108901	3.3423073512665	3.34824021407892	3.20294698196754	3.23560967684579	3.53151145375607	3.1526166626195	3.2651560139713	3.26400965181554	3.14654397863096	3.45361818624013	3.28881978606701	3.328693227216	3.42447989945596	3.26936568255246	3.45237527292319	3.24149255650101	3.14181616234713	3.30627270553787	3.42598080769835
+"SUGP1"	7.52596485526083	7.6593782795351	8.04401443588016	7.40702898988167	7.62440873828159	7.88582053059937	7.67286995755429	7.44553374929422	7.53897291089583	7.84081126321518	7.66318032058807	7.48403193838201	7.513638134208	7.4704313324768	7.43977467687132	7.44744834261714	7.60490738676515	7.74139025007287	7.5234499631055	8.08236406771857	7.47389844965095
+"SUGP2"	7.48014045921658	7.74751125414617	7.77011649524186	7.64886562072182	7.59298721483449	7.69529443914534	7.15548801502065	7.86555142855066	8.01004837004393	7.97155887980932	7.79170101903325	7.58465061463356	8.12450298222105	7.98213980155181	7.95550276721942	7.28285407880757	8.01015660936067	7.75563217927259	7.54524315973222	7.62686545929443	7.70101114103962
+"SUGT1"	7.63254601357383	7.891223713559	7.53109637698242	8.35748269459276	7.60899709261001	6.80825286051279	7.7106845871478	8.05903328264267	8.18279258038647	7.92789039132615	7.98601223854604	8.07278758772224	8.23932060824361	7.52001829486286	8.64748043154225	8.35861282785684	7.83760899777236	7.7414785558553	8.20076416301513	7.92790320569605	7.64916695030519
+"SUGT1-DT"	5.19056298280584	5.6545712205523	5.79114734971711	5.30178704424853	5.54988664617478	5.76482872554443	4.9288283931948	5.32558686648955	5.02976314911553	5.11798961841345	5.87895158681948	5.33691139859507	5.17340016288642	5.13075442933329	5.20544195912368	5.49314725909403	5.32558686648955	5.82090543084743	5.19418944014732	5.03755965749482	4.67232905724952
+"SUGT1P1"	3.18743852636235	2.98586326033229	2.91707392094865	3.20123086888246	3.02085586644973	3.05951901811486	3.03935931131374	3.09026039002599	2.94135399047384	3.16471681855859	3.15030811560519	3.11227038681494	3.15626004095846	3.00470058939821	3.14357406362917	3.11227038681494	3.05569449214311	3.11227038681494	3.19313392010694	3.09168138656384	3.12908687445845
+"SULF1"	7.00957085404245	6.84074793881744	6.6392216478148	6.53433165332464	6.74539642359874	7.40378338037063	5.86281079790316	6.60141955524593	5.50076182085259	6.92381965666162	7.4542224666647	7.24481266933478	5.97407205580801	6.0576801168004	6.31389100236383	7.19537101788	6.75553113028978	6.66858447732307	6.67741714467882	7.68904232721024	6.58935553430856
+"SULF2"	8.1349465952049	7.29852680641704	6.92039212061766	7.35448948992752	7.4852634836415	7.26557068495814	7.64930601915468	7.37016325310611	6.94024822302904	7.67737852125994	7.18662114407563	7.28744195920433	7.84654292149188	7.63805689261387	6.81087887230692	7.15742831087136	7.37505633412071	7.28104838965062	6.73173138543221	8.30132263838564	7.40484962520663
+"SULT1A1"	7.40296268250291	7.56360833845488	8.10708397035305	7.43978635124082	7.33137939910005	7.31536957998567	7.51115581876157	7.27184855291594	7.47123166627407	7.40750389089385	7.64052215453252	7.23871076481578	7.32317215627387	7.51214413718553	7.65571413744314	7.05248394526727	7.23540138902197	7.18443176434336	7.43467923313574	7.1663078131128	7.4386447224559
+"SULT1B1"	6.37734099790245	5.57756135951101	5.23045797676844	5.74217714651711	5.50732264097146	5.71103776734924	5.98978875870278	5.62804475312294	5.41313012523692	5.62943014432144	5.13303964278074	5.58914254494958	6.32042842933671	5.5932485375968	5.54763161896627	5.73121870733585	5.82381522071625	5.42566493934599	5.88901021058502	5.62804475312294	5.62804475312294
+"SULT1C2"	3.64180718348436	3.90403041103571	3.64580675568358	4.16089863856463	3.9105621344105	3.79886432637809	3.7749956254374	3.72982102893136	3.66873593232114	4.16227153905613	3.82173895769728	4.01643577399016	4.02511634425282	4.24412914591227	3.71724314579447	4.28100446912043	4.12422685602956	3.80369766603683	3.88509171534632	3.94528378610474	3.84746626312461
+"SULT1C4"	6.59592111393999	5.43992800207057	4.49429244434999	5.1046785916857	4.76826915329396	4.34530889659189	5.70491146600838	5.73906412370816	4.99223505847134	5.19571777919301	6.61356376153	5.31935703101541	5.21574160150027	4.94511004140532	4.56424322476268	4.81196910865782	5.51002564032121	4.85221882540245	5.42693086946839	5.62420576294872	4.76303566576915
+"SULT1E1"	3.33971056707676	2.98372963893189	3.09226728212839	3.12464564278089	3.12305590543606	3.51356431422786	3.04738383591208	3.18799748959652	3.19252788411931	3.20866502229892	3.0126316019195	3.07112143696063	3.19334442714816	3.05501836859509	3.03127976799921	3.20815241112345	3.12464564278089	3.12464564278089	3.19718607215037	3.17997668861769	3.18404779816901
+"SULT2A1"	3.64853592062382	3.5113543747834	3.80902606103642	3.79354078310156	3.78582983781738	4.02688180544315	3.87616285384966	3.75610887019422	3.60863303945643	3.91677640623715	3.68265937445304	3.61277040173819	3.91691226587055	4.07792606942969	3.74040540958908	3.78490354540848	3.84044378778092	3.76145915426798	3.68597700983213	3.82798074457856	3.53303802828918
+"SULT2B1"	6.83835543289745	6.97615357652559	7.00762214014533	7.129379152647	7.18164205447509	7.07478225303626	7.42037336953678	7.05475994280746	7.08274302970401	7.18178229406053	6.65388455105855	6.6718212128082	7.42836456213092	7.56103514804456	6.80781370671068	6.93611744754101	6.78300316680403	6.92653818173446	7.06292972120278	7.03344760494892	6.74411523989293
+"SULT4A1"	8.8820643774983	9.79829859608982	10.3718243837648	9.88275233062327	10.2629562710205	9.62434644205383	9.35378505387665	9.58458930235938	10.0105699608191	10.4260926808091	9.24890744013539	10.3610281794988	9.93004616590068	9.19050649635426	9.89696532161198	9.52952052827686	10.3227232228901	9.78620832548969	9.81126362319827	10.2072853482772	10.2719709293905
+"SUMF2"	7.5935152058584	7.44734828122434	7.94962619348918	7.56119826240848	7.39473245980262	7.12199163278795	7.04248388904631	7.61129216355954	7.32662937262755	7.61750727493916	8.19915907979456	7.77670825786755	7.34500308763941	7.46216513775005	7.18349747855602	7.91707970619255	7.32346058090511	7.97449754891015	7.43979324278163	7.73451709320751	7.69556018765056
+"SUMO1"	4.99007905761759	5.18883923813533	5.6932722109896	5.23897278654052	5.69530125335583	5.08166683403411	4.33665737544048	5.16802841405923	5.66197309895392	5.24026606174349	5.20303099896974	5.32780958565366	5.57422844417728	4.94931448809445	6.1848360424914	5.09611128101073	5.23897278654052	5.38843258008717	5.29609639251828	4.68966246362145	5.17984196312536
+"SUMO1P2"	2.91554934828147	3.20329436783524	3.26267207146602	3.35171595222836	3.33434402533546	3.40346098678445	3.40903375085484	3.3404377108901	3.47464349059511	3.66852357608621	3.37851067653083	3.25281068183829	3.43972689494996	3.28885649678593	3.26732592371771	3.23803441188118	3.50054555801327	3.29512468938419	3.71582173061294	3.22592160944386	3.45860204850802
+"SUMO2"	10.7039936032921	10.9708911868033	10.8266405465479	11.2201981651804	10.8549528982578	10.6667432596577	10.6648655321839	10.9716436315959	11.1007289238234	10.9038815258353	11.1127896875051	10.880635769065	11.2884392433577	10.9081601055675	11.0481024893191	10.7088692288257	10.9865782390847	10.7429595974229	11.0395685920994	10.5238745511256	10.9195773267303
+"SUMO3"	8.49321279554011	8.17958661676902	7.93816137062876	7.94617636134429	8.61295668123849	7.69850112811625	7.93462331613861	8.32836228228992	8.31466014090578	9.02525928468602	8.20669541678334	8.68586532767354	8.16621196356235	7.84509493908072	7.93328731436106	8.31466014090578	8.37230098181004	8.40204210048915	8.4497964433691	8.81674246831969	8.81220561045125
+"SUMO4"	9.13839586433851	9.0792471017344	9.08223820706392	9.34120713840692	9.00981405601743	9.11852819226062	8.93381174189245	9.44616639710935	9.38093806506143	8.97361242951259	9.24576323231767	9.08667461277447	9.2101130699909	8.88696227330513	9.3939210776592	8.86800194237943	9.10183376449709	9.00370851063534	9.23256685016524	8.65716371792378	8.95946755753583
+"SUN1"	6.47519086719869	6.89431451881217	6.53709133708367	6.90639154552744	6.37254314203239	5.97652212446285	6.13080126958143	6.73897154875952	7.00185168830402	6.61192996807976	6.81294338801741	6.59716826366417	6.86054236262345	6.55126052082371	6.51553017972458	6.32651688931542	6.86750141252808	6.01350308621692	6.93249793007218	6.08341681964189	6.29037683799963
+"SUN2"	9.87367322374519	9.49848973103225	9.2795656024735	9.7308424166357	9.4659003589087	10.3432478661886	9.88856088791123	9.49560326561492	9.29136027620748	9.63273972053384	10.1599050260704	9.57259396155224	9.78265166279156	9.86871669879695	9.41440778853439	10.4531122038327	9.66267947622567	10.2540797538917	9.60927674557581	9.19128342162675	9.2712374607204
+"SUN3"	3.19974090533624	3.01915696423436	3.16877167829452	3.15828382342225	3.06279668606796	3.18574621061868	3.5360383582865	3.23677015746401	3.20730968392888	3.23655766627289	3.19974090533624	3.19974090533624	3.29963403195158	3.67587960876033	3.17633194802082	2.95977236074597	3.16751325744027	3.19460377741085	3.20005682959572	3.38890451882142	3.28574111270622
+"SUN5"	5.36082033345385	5.32998824988189	5.64057011259247	5.56017472902951	5.6038505544098	6.19832211355739	6.24035895485897	5.4367815781696	5.7117055217631	5.63081959011681	5.2959536581184	5.43702207344036	5.69270300016798	5.90876693969507	5.49752861820796	5.65763334147166	5.56268862801923	5.7662511083396	5.6038505544098	5.56169546675968	5.49414420284317
+"SUNO1"	5.00356102992634	4.98230753877729	4.96692207892688	5.17937896621984	4.99948937444467	4.90707312765827	5.14689131344564	5.03816895600582	4.88691547815418	4.95771342590708	5.01302784577821	4.9215260444446	5.21681274073143	5.18405843971737	5.07386165832291	4.80059842703699	4.90840084648685	4.75612906149588	5.20946125136162	4.88691547815418	5.07102352612216
+"SUOX"	6.79645353536361	6.80219469949587	6.51932744804541	6.61329002107808	6.70330437989502	6.23100765028664	6.59361593165903	6.57367357273397	6.49423943161767	6.83251162118297	6.59361593165903	6.5889476408518	6.32156634797732	6.24167228643322	6.17005218410227	6.9132475821373	6.52405942048447	6.76214106105766	6.48419639665384	6.9957851734775	6.65160139116511
+"SUPT16H"	8.20026739269523	8.00932315487804	7.82325453906769	7.81568614269396	8.63123687221149	7.99856195924747	7.7387227098963	7.93949494264425	7.66288179687928	8.78456164273538	8.2106443336859	8.84557517652789	7.65799671577041	7.74022357713998	7.12522991426109	8.25301830612913	7.94868105927551	8.18261117646127	7.76686273831515	8.52900218135951	8.25427018700112
+"SUPT20H"	7.95931797152888	7.64918265579554	7.74152528425742	7.91873197493256	7.48163696400654	7.80999083428099	7.66498941144309	7.88772168930456	7.7526719538726	7.19281896896181	7.95601593123016	7.51540713550402	7.80820043018893	7.85819550763308	8.09856564718358	8.12657455455335	7.48921762247009	8.26058157642415	7.9289362827815	7.37371766434741	7.38164638232723
+"SUPT3H"	6.29701215414111	6.40405575293808	6.15891900036384	6.33027979692157	6.15156440320553	6.13419311104073	5.87275755679131	6.69677517937188	6.00632795289462	5.99505879550151	6.29167323049457	6.5678828693519	6.29167323049457	5.93242665486669	6.21682070533492	6.91595394575778	6.2453449378027	6.54367896325785	6.3189045358139	6.59180478798929	6.10172455145438
+"SUPT5H"	9.12627651434427	9.01281933153547	9.22112841516128	9.01596734303218	9.14145888649024	9.39804098869359	9.2939528805484	8.95506436120394	9.15503604572523	9.04904924775924	9.04947628409725	8.97230320794605	9.13615237055597	9.09999004817448	8.91689294083938	8.94627651240823	9.11774705039587	9.03239264085835	8.84834182054396	9.08955177064465	9.02958365444693
+"SUPT6H"	5.90536286346781	4.64132680347419	3.86027298967953	4.4475775996169	4.61092782568891	4.30291884282523	5.43604477956549	5.08961543800521	4.134792944729	5.13895661798307	4.90471152618572	5.58539192503505	4.18727725937395	4.76262430497692	3.9422837661923	4.86051416978479	4.86491092754892	4.65238838590816	4.48688404765683	5.08961543800521	5.1422063272631
+"SUPT7L"	8.30252089785954	8.22540909011863	8.22664761022842	8.15917103985763	8.08400344783199	7.58052798416509	7.572945269824	8.04986832886886	8.08400344783199	8.04498409637091	8.26492485097765	7.96463723516785	7.89236852029027	7.89551238043109	8.1826998863978	8.80026148914699	8.11641727459989	8.71117598184768	8.08254775306282	8.07826012693121	8.03408209483175
+"SUPV3L1"	7.6742284907175	7.82506308269555	8.44484386821952	7.60278843948626	8.00703400799607	7.94756832546813	7.55127796005323	8.1888225295611	7.79353998258322	7.66220727563418	7.79290700425924	7.84223911570746	7.74222107095552	7.78865518303346	8.046711242266	7.45126153442155	7.71018491883621	8.08192808105176	7.66607029654202	8.00834248286198	7.68512754357802
+"SURF1"	6.33003481553379	6.17156446535727	6.21375796106014	6.36518168044999	5.94496706920425	6.202143603654	6.50699188635286	6.09983672721581	6.202143603654	5.84178463303354	6.25705268754964	5.24485350796655	6.1588082975105	6.30853022249645	6.51350170733538	6.42376949990908	6.15483376448802	6.48868173921884	6.202143603654	6.05329215334857	6.23961821828389
+"SUSD1"	6.42087987829309	6.39217385249293	6.82579576639044	6.45052254206061	7.16005957938214	6.14702314465222	5.93038953554461	5.78172001001016	6.19380019645249	6.53221007238024	6.37629099943965	6.71302047392217	6.30336058053715	6.00811356528453	6.14702314465222	6.58200126596833	6.38692187372464	6.59076926875559	5.97325139048016	6.99865826791639	6.76821636074096
+"SUSD2"	5.84955367917857	5.16818949103671	5.13107506306689	5.2394455715985	5.05224603392715	5.37353169839391	5.66589004466286	5.17836947108295	4.98121174506643	5.24969087838696	5.08961543800521	5.26376124153782	5.41868084934471	5.73986161064878	5.10852215225399	5.01772537668101	5.02911786542874	4.74182468653504	5.37500143945833	5.32083771866909	5.19769704663151
+"SUSD3"	6.55605779483506	6.1230905195922	6.08134594806966	6.11321497683314	6.19606931215116	6.34263021920602	6.49149341388695	5.77924280525804	6.22436321691284	6.40780922803257	6.22436321691284	5.69154737268879	6.23298583780851	6.57949170848927	6.09504845628432	6.35871613785439	6.0171256591238	6.56529805112176	5.98048669285437	6.68800111809141	6.19162181568628
+"SUSD4"	5.47153857926737	6.00670622707959	5.93417280073131	6.06666252864648	7.02981487324759	5.76381724978555	5.74379779781906	6.01732414131159	6.0609736368972	7.14945670681936	5.24255812464725	6.68511259386279	6.04670732396954	5.7863660526556	6.04566898624723	6.12135401471496	6.80367999281204	6.08202700437747	5.7860786329161	7.66059794129944	7.22691921665968
+"SUSD5"	5.16444010317283	5.97874721077632	6.00670622707959	5.46963882867921	6.37500320218292	5.54445909333804	5.11350899122735	5.54607228172185	6.07854110773496	5.54625970121524	5.25856242062545	5.54366634046338	6.05996470814709	5.37037305436679	5.82899329914348	4.96826686310738	5.62634415304221	5.55164005273765	5.49272175519057	5.58985119131092	5.74585631229857
+"SUSD6"	9.01018588526435	8.62181609936503	8.79118280739565	8.38758975026341	8.80273414758667	8.81873662086428	8.42631155974089	8.87067712941998	8.56846085107093	8.62775455111536	8.66401118682961	8.60164586696576	8.33629368062555	8.62613922442969	8.33056303840194	8.90027013096148	8.90596523325648	9.10654779146077	8.42700833144011	8.83776438269454	8.8977508393012
+"SUV39H1"	6.13380485645066	6.23215096981965	6.41666318767001	5.91450036937925	6.33857050385803	6.46964488619953	6.23006697699631	6.17289313050371	6.22149345477286	6.17702200161262	6.22410368295327	6.17302054198464	6.07650775961619	5.98347081251488	5.95424344279715	6.30730334693335	5.99568462970166	6.20130566880921	5.68515697220958	6.17550950723112	6.21733002227967
+"SUV39H2"	6.65589098954463	6.45526594776032	6.61501094481246	6.50489335065114	6.54765731014926	6.32408026500901	6.1596958826178	6.54554035862357	6.35370663350885	6.39088519451036	6.60847731322271	6.40066766965607	6.46776293968697	6.50486911363902	6.64137968612655	6.50884322383041	6.08462548424215	6.66330361042933	6.48730294132934	6.42721151552056	6.16252011357999
+"SUZ12"	5.75615645103252	6.32780848093131	5.64631770334298	5.67855961462717	5.27114042431736	5.50076182085259	5.00608024785658	6.78281713487295	5.63863108000748	5.81362612111809	6.18456277586252	6.74861457883773	5.8517690491328	5.71678834410655	6.21124249104191	5.65900119002008	6.34075110079342	5.30074623216252	5.78257387661298	5.62946772788124	5.80137643784645
+"SV2A"	9.82822193723259	11.1339380083617	11.5346997623592	11.068174580276	11.4728322581701	11.2577874734671	10.0735122220876	10.7360446339903	11.0698958758763	11.3878924013163	10.7021088161839	11.3303458391829	11.2884933070161	10.909653235784	10.6440186178927	10.055384843836	11.327620497912	10.8260506576048	10.6446142695437	11.4408271600478	11.4215493449902
+"SV2B"	7.81891434794327	9.54388255277658	10.3199486068747	9.37393681202158	10.3749632663111	9.44931291608381	7.67261108867045	9.16036709627872	10.0511307899271	10.3456947341713	8.38141972178545	10.2278439718488	9.34087160671481	8.59809215506623	9.44073379763665	9.29160926835881	10.0470630303372	9.5817229208276	9.47520429146217	10.3080333957406	10.3583510802377
+"SV2C"	4.87132756339563	4.78757894962506	5.26109010485332	5.01222103350027	6.61198196396194	4.96991495596547	4.64075813278629	4.73970488483284	5.96771572682292	5.93669556036141	4.61259277320136	5.39855772953951	6.8161345165714	5.0897023940277	6.830826567807	4.99285038618218	6.86248542490335	5.58761694003896	4.81538665585562	6.39654402305262	7.26347630570641
+"SVBP"	7.79480273542374	7.29264958478922	8.02312334291332	7.51498600297041	7.43705835071492	7.5231725883427	7.40720353361621	7.71191693475428	7.48552960127742	7.3993377339504	7.46256904681192	7.03506270600902	7.38169885909152	7.42641566950301	7.85196723062146	7.64424375706763	7.29772078835208	7.64997150365604	7.68358224449911	7.55134332205244	7.17664972656744
+"SVEP1"	6.25437303260736	6.77640479991766	6.43195946904212	6.63698983534014	6.60086880150287	6.63795008519297	6.01528754738613	6.24653174693024	6.40797362730949	6.46886950588064	6.34348748992253	6.46964488619953	6.16383237207988	6.36202420382048	6.26271439223421	7.08172315134879	6.30773270623893	6.61952919839411	6.26275233039578	6.38780263185386	6.50157470530402
+"SVIL"	6.48047125795219	5.85770748961815	5.51756489928779	5.6034481339858	5.6679418716375	5.97652212446285	5.47245201980165	6.28732316190786	5.50035449117876	6.70722775896104	5.64644444909643	5.53643149144309	5.98655814751534	6.09635446760403	5.87289430047514	5.2202916611052	5.65889839000773	4.94746940642566	5.7920300912031	7.40246805222177	5.95313174811989
+"SVIP"	7.42435738897384	8.26381504408988	8.67377160799291	8.3787735820519	9.40827073698055	9.02750962998091	7.11271205741356	8.0851521939153	9.10489677950711	9.29090893021141	8.07465322696283	9.05557391957032	8.42511854863088	7.83276736996087	8.63316217347914	8.52996192738172	8.8222056186131	8.47525967872434	8.81364812806634	8.96427880165221	8.93614523901317
+"SVOP"	7.13731728572655	8.62012878516522	9.59941408549387	8.13969911420263	9.24828096257625	7.97508781385426	7.69293810202429	8.31005362656782	8.46023714133671	9.12261316797488	8.02663635180605	9.17994773510029	7.98178100619294	7.69871114785496	8.13126426500584	8.59124779162599	8.83938904080868	8.56680219022518	8.32077511326903	9.74035989995549	9.24058571902821
+"SVOPL"	3.88866441309611	3.66460139364954	3.70183893501483	3.52217493762831	3.55357654798595	3.33678870867129	3.5862898255549	3.55357654798595	3.58401792091611	3.42608136210791	3.5801482227714	3.540131368369	3.46735342237326	3.54420613638039	3.540131368369	3.80954801214605	3.53112272832586	3.38931376753178	3.84797450791346	3.66650788757389	3.5448582959148
+"SWAP70"	8.53624003995505	7.44062338716213	7.01519263727487	7.92876819322283	7.45935067863677	7.44504737558906	7.87830783156766	8.14511048398563	7.97693977554722	7.10755778434906	7.90056331299807	7.05547607470161	7.57152818075731	7.82911999392557	8.47439693930688	7.52113387474253	7.56180797434742	7.8592626765024	7.8338788241626	7.29864659324969	7.40769212199027
+"SWI5"	7.74791356836117	7.19034419553197	7.581631852945	6.99469201665118	7.39706894783464	7.42771039244214	7.71666113185384	7.56042855750175	7.17600309278527	7.05638144262496	7.4325170084488	7.24815423059075	7.11798027783949	7.32335606428085	7.07252184713246	7.70180264704951	6.92817346886537	7.68320466079088	7.11183621562525	7.34130911269885	6.75921775191205
+"SWINGN"	5.37409329636457	5.10325023887877	5.35403382888343	5.25933259883504	5.25147284434894	5.29234438207795	5.55106545631247	5.27405972526737	5.45040962684215	5.29274730601974	5.19847909364265	5.10659472875664	5.29093989175948	5.74050674555903	5.44210095764762	5.29274730601974	5.16630885274096	5.12244311810584	5.19458594965023	5.25877605910971	5.34280967479691
+"SWSAP1"	4.75028787810969	4.61552486600255	4.70689873077185	4.59120261123258	4.38798325848648	4.94532325637924	4.520229101397	4.46413668315303	4.80168761166827	4.84221627965717	4.88925570237257	4.7436922900405	4.61934944238144	4.80848535960148	4.66309177277099	4.82390089754282	4.35919562980686	5.16539631487789	4.73049006454312	4.67880673632505	4.47290651488977
+"SWT1"	6.90474762232442	6.9345894665664	6.75679101072077	6.87980403148404	6.83552357964291	7.10583962451321	6.83636353491509	6.59684588760545	6.76231207362913	6.86177944429218	6.98112860349967	6.60982642941122	6.48394698619844	7.04029151883567	7.06642778170182	7.20564196089021	6.49479119612454	6.91658698822149	6.61984360163238	6.71195172724714	7.02771038350416
+"SYAP1"	8.15155818344366	8.23966352446629	7.34047170077349	7.86403765324873	8.11875317683912	7.76166576082664	7.92724456599512	8.03135750074404	7.89155666134804	8.4990273419055	8.20217132724988	7.98326405250586	8.03267765487127	7.85505486792087	7.39794193682995	8.18636302291351	7.97801602967057	8.04099892011515	7.642546068552	8.27938499292966	7.9989606610713
+"SYBU"	10.2476574910608	10.4715846654798	10.6897889339562	10.4649781028605	10.7593384980168	9.79073259810256	9.30694360341702	10.5325122099651	10.8254222560078	10.7168655235008	9.65753927548833	10.8087556303863	10.304023231129	9.79449657625686	10.5807843330515	9.44832172274859	10.8526828939828	10.086238054585	10.4784627486662	10.5468370883778	10.6015254579836
+"SYCE1"	4.39838885870028	5.44061319479109	4.75926156462488	5.13630941638205	4.49497619638741	4.75391176901744	4.55940458701394	4.60049611652069	4.9827975800631	4.74225215413728	4.53606862557265	4.85698045755349	5.19558201101304	5.17721694329833	4.83157818374946	4.40079908384562	4.97899097070695	4.42938602335435	5.04906675614444	4.72671622067971	4.65461235873072
+"SYCE2"	4.34383315592619	4.37966876930103	4.66453179882468	4.54834438857107	4.53728328034452	4.59580627959419	4.35978812152129	4.53552366041602	4.39824888745619	4.36031820284629	4.291688856813	4.44026207650889	4.01965916754118	4.78006249026098	4.59549366120131	4.49409401076321	4.51756469161121	4.75797010620864	4.1394752459462	4.38382418445594	4.42884856559174
+"SYCE3"	5.13723485584833	5.12049000559565	5.19096730285557	5.16656069943701	4.98424152224993	5.28238182322078	5.35401504717724	5.1611850128625	5.04038767800605	5.11078910841726	5.04037679781047	5.0220214708115	5.36121638505852	5.12049000559565	4.96112008090921	5.00085833622707	5.05632020381714	4.78991610728544	4.99472181401039	5.11655553144362	5.0953027598928
+"SYCN"	4.81815053920171	5.044211467105	4.84510881859901	5.32317286697219	4.87827021614776	5.06670094775184	5.35135771430804	5.07462864549595	4.78249320066373	4.92888495140103	4.88775501316348	4.79001655210962	5.09122390903668	5.28252928850597	5.20526459976387	4.98220236499883	5.21429888102042	4.72609678332082	5.13949574562167	5.02724438788711	4.89900511893201
+"SYCP1"	3.87536994326954	4.18086958038827	3.80121359383551	4.05647164274329	3.96364167377319	3.90126837817103	4.11624180768472	4.04838944949258	4.11776983303363	3.90544459638048	3.98500295156845	4.11131970281216	4.16089863856463	4.35487308671194	3.83927442116542	3.80762336435531	3.88667414293784	3.80347040188748	4.24832080727763	4.01615771219074	3.99667812020207
+"SYCP2"	5.17726930405406	4.68737778555329	5.20310535823626	4.62532362296677	5.0604773887515	4.76611459654419	4.63850466089437	4.80963536413926	4.68276271721577	4.49665310682498	5.01003006566906	4.75799280259008	5.00913816109727	4.84996538622719	4.7487964292497	4.86270415295652	4.71743216456353	5.22230365865167	4.49200829710587	4.37253480609131	4.69310724887464
+"SYCP2L"	4.52025585475318	4.65236884954449	4.76504234940363	4.52577697602477	4.537699768961	4.45540183719741	4.6464628018481	4.55768711747353	4.5767700291509	4.537699768961	4.55764041413463	4.70961655701443	4.12580182412168	4.22557361109797	4.50053726601987	4.64376162443464	4.36957371800987	5.65719658414529	4.26039987762612	4.55030311387319	4.37354840137011
+"SYCP3"	3.89331130547907	3.98548333916643	3.92531630208944	4.25619034177592	3.74497640882443	3.81326521864207	3.92531630208944	4.25065283027745	4.27407011635042	3.68677898483993	3.92090865475047	3.71174493398174	4.14353095972957	3.9955609312316	4.25926071363786	3.7598777700947	3.9224028280012	3.70241750931828	3.91167304922716	3.73369234516931	3.76051875547462
+"SYDE1"	8.58705323886191	8.12403649810487	8.00147306264763	8.40305967778798	8.05411033092118	8.8816114275007	8.68476233893482	8.17649902648472	8.31800317023234	8.29779153617395	8.21057726884272	8.04746227813731	8.39397459998383	8.75193855108918	8.19823997682934	7.95692201783545	8.01983984997096	7.88954852717154	8.14507860991977	8.21660076618575	8.33455112920013
+"SYDE2"	3.08893257267769	3.24600269585724	3.02868953211279	3.14485546426057	3.1970966529518	3.16850644813091	3.06256216315916	3.14642366523635	3.36286549383844	3.3412115745374	3.29678940772892	3.17446628166333	3.39151843150778	3.18275862061691	3.35984228954556	3.11721019381036	3.50667492897349	3.02707394623224	3.2547017463936	3.51201721017858	3.3024339101175
+"SYF2"	5.08806640118119	5.44061319479109	5.45910702872378	5.22455501638992	5.34382610481045	5.96053787013273	5.58678673990311	5.33911795557976	4.95691389451742	5.10437847429715	5.27806076939718	5.14124855651719	5.16928897816025	5.41643683302703	5.47302957626846	5.25481243438778	5.30244655467032	5.4847326656417	5.48482540930801	5.02724438788711	5.42158937476984
+"SYK"	7.8799250623185	6.56822275305636	5.83269180465687	5.72640019109331	5.74194225546509	5.6352143975492	6.47418259108682	6.21947253534368	6.16588518678291	6.16588518678291	6.16121587270168	4.80886708302936	5.56035088690433	6.92911942099716	5.95726975681576	6.39639895706879	5.89064247362559	6.75753580222411	6.27296398058486	6.86941693457533	6.36116929073483
+"SYMPK"	7.89531497187916	7.81626093539405	7.75041466453838	7.62936434822673	7.66636099749805	8.19114926060772	7.8135526762189	7.80921793943943	7.58860701294926	7.30998376744174	7.63131149239402	7.35592929390203	7.6920333935155	8.1541744960407	7.71886013343325	7.86971527931385	7.72099055385598	7.72251692459575	7.71886013343325	7.27754222323829	7.52973688297773
+"SYN1"	7.67612203790745	8.78600469356913	9.16186055655013	9.06232548164604	9.95511447204174	8.94545404461336	7.48910348681625	8.88055727383972	9.28974950118409	10.1603970041816	8.31055130726207	10.0679450893738	8.89566056118319	8.44369205673275	8.30190586560657	8.77402275966858	9.91857437880882	9.03198751179706	8.8386944662535	10.2120374702117	10.2166215860413
+"SYN2"	6.0112828524127	7.35996258658514	7.82290106958672	7.50872126167092	8.76152174763085	6.31105233522954	5.49628669686421	7.35355496065442	7.80586006433634	9.26560435241028	6.77676143673562	9.31957841578101	6.91546684927548	5.97331339526472	7.26311904986162	8.7205590381721	8.67766244890454	7.84477886066813	7.8525583258318	9.27089534779925	9.68127907263274
+"SYN3"	6.80989920497823	7.49871585272588	7.32581725547539	8.25404162652495	7.72878918496414	7.52778964546515	7.01122865622983	8.13358416743072	8.86170528271398	8.45280572229808	7.25660284683424	8.95850371236494	8.32904601739485	7.86605909542221	8.27533392058799	7.06435156817974	8.43260674732682	6.72991458606732	7.86510826791694	8.42602341611492	7.97883553011365
+"SYNC"	7.4004777577668	5.95986547010178	5.67101708475853	6.05933731640243	5.85275515370317	4.84867047441296	5.88307487182765	6.25975585486541	5.75858351293696	5.92742641362513	7.1122187631975	5.83494930364041	5.62735506388359	6.03481360402074	5.69583671076498	5.33894711188777	5.64723467766757	5.64723467766757	5.86614196754975	6.0522256797778	5.91536334384264
+"SYNCRIP"	6.34496853995822	6.18289111107745	6.33826500249025	5.15724943291871	6.7009898027857	6.03511010959033	5.60901986463232	6.05920854761267	5.44994152885007	6.69876769884416	6.39562953344206	6.16020202258372	5.18204134549726	5.4302905777699	5.60940042547286	6.81520659816463	5.6500249117693	6.79985270359592	5.74274316030612	6.68429861502159	6.49387718933804
+"SYNDIG1"	8.22005267872949	8.68451962159571	8.9320130952051	8.38003737117189	9.0434236217132	8.67648242234684	7.72725575663701	7.99436057520337	8.74650494176763	8.73122433340491	8.58683826674841	8.46496530662879	8.77303883366967	8.21070446746345	8.66205227808929	8.99745087085391	8.73760193966251	9.0135070012079	8.41968504055255	8.84324604198043	9.07357352778315
+"SYNDIG1L"	6.25863657429844	6.29653818175169	6.71664808704282	6.39994774744819	6.16978939058818	7.0733267741478	6.80095503474577	6.41805862360773	6.38412689176906	6.29338981773058	6.1377916263164	6.39994774744819	6.42926232059152	7.03818789735024	6.39487517988831	6.00683411506926	6.42043263533428	6.01993039669468	6.27615437198242	6.44510520470749	6.40504489699734
+"SYNE1"	7.48999259323526	7.82578403948738	8.62595864936189	7.6460760236201	8.55102377724989	7.2994532441265	7.62383217334047	8.29984711679698	8.53640976257175	7.99321153720164	7.10891776894902	8.14422896582176	7.17170272511913	7.14892835511925	7.7117256004854	6.85307075609536	8.26686351842914	7.51098278642186	7.72713607244438	8.58545421744631	7.74218611972616
+"SYNE2"	6.42823839981735	5.58277293729061	5.15504132125374	5.59574093522775	5.23960968752422	5.5978325945449	5.47354398857382	6.18663820463258	5.89295576469034	5.57244841630154	6.08632762976302	5.8704121990033	5.66935627075866	6.24443397539332	5.4672240137486	5.07132118929217	5.36883595846047	5.09175985845076	5.45019935508819	5.47071124161433	5.18794298921034
+"SYNE3"	8.95208417387741	8.24309339121486	8.09805373997971	7.91463526147695	7.55726642764075	7.89689462953255	7.88205063917261	7.31034377569606	6.49423943161767	7.3100652755474	9.04850864376936	6.89841443076975	7.1100810326869	7.6891265336885	7.67404321495731	9.14994406689399	6.93337916232507	9.37441206269618	7.54146839116769	7.57043839657289	7.90159667703184
+"SYNE4"	5.77399918447959	5.76251853788724	5.93996281224061	5.82179996863876	5.87671045969673	5.70385401865917	5.73971809950586	5.56458709019212	5.50165948615224	5.63282737911643	5.58176343593771	5.51537358509323	5.64582677513851	5.96220442769327	5.47805742047949	6.05683231021256	5.62746788527296	5.71322706846502	5.37587805376158	5.88978256144378	5.64184643693176
+"SYNGR1"	9.26065394230259	10.0559362551317	10.4019288167206	10.0834241413395	10.6007588629689	10.0026766966823	9.92537452013875	9.81392894262651	10.0936226489925	10.3299326498095	9.58880833967716	10.2287896975255	10.1705895610104	10.0048849970717	9.90926107833135	9.53284822885086	10.341264783636	9.77195132715984	9.79090222406285	10.662824378874	10.3364873596847
+"SYNGR2"	10.0109594357995	9.07905713382985	8.55232711595904	9.03454782335915	8.68803552010403	9.77727539770947	8.82834698781327	9.06015336646991	8.38222698059915	8.70790760246787	9.79555326146429	8.72694905012788	8.89087401589572	9.10746829071429	8.58099944128915	10.5227852138517	8.9753878647238	10.1118392437782	8.96429830061788	8.89109600420892	8.89958417578113
+"SYNGR4"	4.76648827401958	4.93149129346341	4.95011503430709	5.1652258602916	4.88472160918985	4.68678939264418	5.07867059714913	4.73279287638648	5.0638987120744	5.13964545391805	4.71721641242413	4.78341380481945	4.97867074335588	4.85224581478373	4.7988450812047	4.88548364385296	4.85972210456185	4.72083029964895	4.91873347012628	4.88548364385296	4.98010581400722
+"SYNJ1"	7.02342377039049	7.49159803809445	6.20407368611584	7.13494357076579	8.3360677351073	6.47703386874775	6.26780063978684	7.17471161226473	7.29620271673669	8.69282279438361	6.86150110614265	8.3675797483052	6.74948092472935	6.39740688495898	6.50778126302102	7.99308773433859	8.06019833109347	7.73673982130534	7.26286855624917	8.51347821126913	9.1120880778676
+"SYNJ2"	7.53570771871916	7.77287379065419	7.73765085468487	7.73765085468487	7.7883893507993	8.64223863950384	6.66968533464109	6.72985308681191	7.48480385080735	7.47858409762878	9.15018417078085	7.28805022940747	7.63942803680686	7.73765085468487	8.15878830204165	9.14994406689399	8.20948317649431	9.50778233300265	7.58765749331351	6.73408058783873	7.93332327045115
+"SYNJ2BP"	5.9374591047682	6.13561179241257	5.34188823444785	6.36518168044999	5.81501474501468	5.69719200971315	5.58065149427262	5.96653122173463	6.30097657265526	6.38580205419497	6.55378783201041	6.29917950210221	6.18933070412715	6.0396239107671	6.04566898624723	6.05969284638623	5.84241173748218	5.48890835521405	6.03361426122129	6.14209301852832	6.03998689348819
+"SYNM"	10.9504889274936	10.1791465843899	10.4319254986148	10.2789069520729	10.0690190904645	10.496885580888	10.2403847905755	11.0801778409342	10.6233485035809	10.3579497154382	10.6539541201321	10.4543092808078	10.602036801208	10.2695398937065	10.9388314539564	10.4021666893583	10.1780527432663	10.0646971051497	10.7878686926724	10.3274198311995	10.2573407028911
+"SYNPO"	9.14783029867434	9.78045673778712	10.3895425052302	9.96639452918985	9.8542541328908	9.99387891606343	9.76237198948501	9.57623908431494	10.3044815213406	10.0934502578803	9.18693691504197	9.82454466381121	10.1025439058154	9.71234706640573	9.90361629072379	9.13144982549121	10.0387322925519	9.35794477839361	9.81783095919664	10.2017471119327	9.81737263654793
+"SYNPO2"	7.82325453906769	7.75060836236326	7.81259859577478	7.66107243592943	7.63387233438533	7.17445398691321	7.17189326348289	7.35005771340363	7.45551469212953	6.9538365323608	8.43896669152072	7.35592929390203	7.50217010610125	7.09257012678747	8.09447569389583	7.67482959779289	7.17285982233518	7.52547548499833	8.03606910858164	6.91400315276706	7.23037910578605
+"SYNPO2L"	5.65435735145365	5.73223566542102	5.42210685631753	5.81177947292451	5.44146320810763	5.94937514771678	5.55792966254414	5.45407142879676	5.96526640479804	5.44366250408355	5.35937988821561	5.62648075490005	5.97042081304996	6.12775544477913	5.71442757203026	5.96657843155014	5.7548682354852	5.08443640445768	5.69833111483196	5.60445139389246	5.83779740359377
+"SYNPR"	9.41441583378748	10.0826640990501	10.8279540788461	10.1995825558383	10.4854594225597	10.032056044192	8.21891747178777	10.4791971117627	10.0489358445978	10.5565453441513	9.71639922842355	10.5887659926756	9.82566256097784	9.87964096476586	10.5504734411671	9.53590817827183	10.2930114817246	10.1664613279765	10.5821351205449	10.4229824582153	10.4764228059814
+"SYNPR-AS1"	3.84161116479582	3.86020710167841	4.11843717377384	4.03445191618945	3.89750769692117	4.00331208645979	4.31098203169128	3.92274933499357	4.02382545560624	3.87557811531205	3.74279442463716	3.93295874374436	3.97743092788819	4.11843717377384	3.89750769692117	4.08499231402702	3.87413754355661	3.7879581215714	3.8023211368727	3.80005852962073	3.80558583517251
+"SYP"	8.3949839681628	9.58506343973052	10.1370559559489	9.62531417918406	10.070253380372	9.40465061986883	8.68930237001791	9.12375948549273	9.34549216140897	10.052363766511	9.07745212063835	10.1168050098587	9.51056367741597	8.76948357224866	8.79043690070825	9.13136267573775	9.84847825368694	9.34511475918455	9.28166945247669	10.1830949608055	9.86207199482215
+"SYPL1"	9.65227682967458	9.33620954610619	7.5961130086492	8.58695206965024	8.57526836737451	8.72916186952019	8.61575836963163	9.03566690463137	8.19328191834404	8.58305871811481	9.68592750776977	8.65653185804433	8.33829079227917	8.33202700539407	8.04496613499217	10.4034243887265	8.65347149135976	9.9866880412132	8.79202663834006	8.38414202137598	8.20291982481434
+"SYPL2"	6.14834497744607	5.98051627895992	5.93250272594443	6.20819240265074	6.12375578953237	6.25105773406376	6.58497918783238	6.36561019206441	6.14117216891384	6.01018223154015	5.31997411268925	5.99410015796454	6.35207095795127	6.43282304914839	6.26758890837321	5.77205238501654	6.12398565621581	5.70955976801838	6.05852571587998	6.10239411864116	6.12398565621581
+"SYS1"	6.69334386468176	6.5588881141057	6.33826500249025	6.72273853636322	5.7433879490926	6.22789692649382	6.47732383488201	6.86349063601498	7.17380501208871	6.5588881141057	6.47582349908244	6.05497696170085	7.153878183543	6.88325824949563	7.54365055947187	6.2375186313199	6.60623937182746	5.9587909212131	6.59062474537928	6.62298494499001	6.60980419031681
+"SYT1"	8.31518565821053	10.5182142179805	10.6466849579887	11.0783905220528	11.544675884472	9.91712729457647	7.802334475182	10.5383844290502	11.2378407635506	11.8237938974209	10.3543371719089	11.8543160500814	10.8969814760515	9.77559159110564	10.845362385448	10.6944100718283	11.4104356659881	10.775076158283	11.059147822195	11.6304898128799	11.7415762643492
+"SYT11"	8.9085670539414	9.13237755573722	7.77275199343954	8.6127173869062	7.91136466020325	8.10488201976887	8.62728627536232	8.76198105204353	8.39951036173066	9.13590815906879	9.22327038380623	8.64247890267675	8.3899239872157	7.90369855110136	8.77160124242978	9.70600380936374	8.81706608905941	8.92109423929163	8.48945064232447	9.1010294034465	8.56688219100866
+"SYT12"	7.1100810326869	7.45553154325451	8.13851232704918	7.72228429186597	7.78442569742947	8.08250228682618	7.65759365416123	7.42079603810777	7.6617004489388	7.69120460121473	7.21691911460007	7.64294412020976	8.02841818588524	7.80008826577874	7.62002212574145	6.59221176221431	7.61028939374718	7.25703199656165	7.24917003660932	8.25981724421308	7.71893345307753
+"SYT13"	6.91664761278523	8.16134269353849	6.99204488402087	9.13625510888508	8.0920904239117	6.82632357330451	6.83847421242755	8.03085113733337	8.92807818471291	9.81871881129464	7.89463427912629	9.37359959407889	8.57175453148154	7.68214448740839	8.50717715475163	7.79128355256467	8.81479671847144	6.93105149182867	8.80751374207494	9.44412526062404	8.51205218797156
+"SYT14"	3.78108638234133	3.9554113209753	4.00301929273226	3.76841231292261	4.57244999595523	3.46174327129173	3.46668965434096	4.12073263603652	3.7922707573361	3.91831113850978	3.75711631933122	3.96141366091623	3.67435716812332	3.81141755633273	3.90527208519706	4.20939139030458	3.91082712051159	4.18039975297843	3.87778983751678	4.12904622189487	3.81299795733152
+"SYT15B"	6.47117982466649	6.26235808076559	6.45926000096507	6.42076595379169	6.43453866726025	6.88777544099726	6.55395183390248	6.2068303297065	6.38868432495811	6.38393076390743	6.23851770975322	6.20317470591892	6.42745627007069	6.82054857034672	6.38868432495811	6.19340753494153	6.1754325723463	6.2763325475185	6.61550071492461	6.49229019177891	6.08583929927899
+"SYT16"	7.71254619021396	9.20138046706071	9.75149361308156	9.30966896163054	9.52618513705973	9.12131582582667	8.50114344094969	8.92800766402734	9.74223538248767	9.18785086376039	8.54045344827039	9.25029749991435	9.38849240322308	8.98724856966909	9.41403024693415	8.50539568452143	9.38522317045357	8.84392909106113	9.34145300175828	9.29845688794802	9.02255751671895
+"SYT17"	8.91575227433323	8.54994526252527	9.13343444941657	8.93781074617002	8.56199343406918	8.21518080646249	8.66167299599249	9.46125828577885	9.08261267336057	8.70661033281069	8.48254602159233	8.43007982114295	8.7053731079577	8.49884245400832	8.95885851629379	7.85683409563114	8.69042464401761	8.32461129080948	8.43038737570192	8.87992482115364	8.678234890174
+"SYT2"	8.47936166858902	8.32054172511522	8.01727376446327	8.41133580581689	9.13783576975281	8.88776137596826	8.60470825974761	8.12579418815803	8.7702221171569	9.15828753579891	8.44689105787697	8.70879795088019	9.69726275432421	8.95959852576829	9.08142605836975	8.3000018685198	9.55695551275241	8.57639068712388	8.03639358329444	8.8235253344188	9.97315460773389
+"SYT4"	8.59227709290956	10.2725541916573	10.9046470174874	9.97312111431491	10.6741723271687	9.802737853856	8.5755003057892	9.93984441734109	10.3887414474493	10.3868554306238	9.57236069473813	10.5101191713524	10.0232729443451	9.31198245656278	10.3308970598305	9.87966916918923	10.2941557973677	10.1008341468485	10.1601792784973	10.2272572503141	10.5056557890643
+"SYT5"	6.64181092950535	8.29997308855248	8.13851064103117	7.69904838802743	8.38133044383423	7.40420123185809	7.09583809418943	7.39196097603124	7.67777087614602	8.33229411689813	7.35370535954644	8.32633370461316	7.5924328395323	7.339385752234	7.15221939442573	7.09957389890257	7.87849389871579	7.84664616307417	7.21819578418518	8.70244126481314	8.09938237281295
+"SYT6"	6.40594455734114	6.58312497112147	7.18334640195434	6.38082056174711	6.56152124183568	7.57984033172152	6.54590134333671	6.28060291587775	6.35828664978059	6.46620191139959	6.68362725342705	6.35389625788733	6.3829764508988	6.73757538091242	6.55760306617614	6.67622216757509	6.05061719406866	6.45408149819604	6.41095081832455	6.50940082941766	6.56009859150491
+"SYT7"	6.5665972224698	6.7124896752692	7.24786580218332	7.49558766398576	6.80458285509811	7.1423246143178	7.40213336903672	6.9942478677408	7.3302042374007	6.45483354023328	6.46928051868632	6.89411463138169	7.81591451666285	7.23838185035113	7.56510252247805	6.18363751002441	7.15728843446644	6.51604665600577	6.9942478677408	6.85177993115327	7.1053467977742
+"SYT9"	7.53413364774359	6.92170947648209	5.96033337760387	6.69788000210891	6.36367235513922	6.63378787625739	7.35969871721245	6.91899794424245	7.07853634604112	6.91116910799002	7.20531925578172	6.6133874804928	6.79354252697151	6.81844884568464	6.5151291952616	7.5426750377377	6.88082709987477	7.04679517370134	7.06275305150885	6.70579919937004	6.61818379927658
+"SYT9-AS1"	5.00804231332011	5.51144088921463	5.32220656019117	5.52709528988894	5.53187290459903	5.44061319479109	5.71448794238306	5.52783087731354	5.47464732994598	5.50150457218651	5.25048988926725	5.22025635773318	5.51783338665793	5.69889477162173	5.64508586291976	5.60573116986148	5.5501081026188	5.23570073184375	5.4308136133273	5.46912162637385	5.70298921329461
+"SYTL1"	4.91610618988887	4.98002254772091	4.98220824633745	4.96737124130248	5.05058619768413	5.00627314994295	5.23719629931325	5.06541195834481	4.9060549982465	5.04150236055487	4.92023841030391	5.01522977217265	5.09784004266433	5.03256595106673	4.85033063777983	4.75799280259008	4.7928225370451	4.75799280259008	5.03006653693021	5.13303488321043	4.96906153684875
+"SYTL2"	8.66611537696258	9.40221333591847	9.90084010713261	9.11657552059948	9.56459323967033	8.71241120153203	9.36662883866341	9.3964600514039	9.34719101704708	9.05425252429199	8.96604572028206	8.94465166098802	9.26916774536534	9.71698042250215	8.77426923726041	8.78062442149499	8.987445632823	9.1718397812359	8.91709589956548	8.99234876560753	9.07861192419415
+"SYTL3"	6.54573884987747	6.72632969026737	6.45655252050197	6.78213214070597	6.77062655934901	7.01240538645591	6.936597337729	6.78114509835102	6.74343354721916	6.7902633904556	6.66488877248979	7.18633453752358	6.8919922207182	6.91495651248815	6.80583251066119	6.94370282585637	7.27095727212428	6.44057763331173	6.69725061412115	6.72201778267842	6.84200439021632
+"SYTL4"	9.13664429567548	5.13871653626186	6.62863215887165	6.90925218805527	6.26671975961756	6.84440679114143	7.91870315061776	7.62697754448809	7.60065628414868	6.93733243156751	7.15270902549605	5.45420100577885	6.50864653153082	7.19443698702392	6.3287321676934	6.51316638519897	7.17798968538476	7.35987943866927	7.85058360520559	6.73199233913685	5.49236868832356
+"SYTL5"	6.32593284120428	6.61450975478646	7.40489778110378	6.63525021220238	7.02270986756315	5.64372325546358	5.08681461943232	6.5722497980937	6.77786035787248	7.15021732852832	6.43946475956712	6.62218346769366	6.67203179634421	6.45461086089077	6.52522043705904	6.30157194579554	6.45967553956045	6.55541343581233	6.34693144326928	7.64527360906706	6.82483904175639
+"SYVN1"	8.51856056025931	8.45398165215582	8.43921318480909	8.39581532205133	8.43828436761662	8.6040930966277	8.32288009526194	8.12542049368006	8.22896368663073	8.45775335812411	8.81831284837584	8.26852645645622	8.52199056202758	8.31440110431308	8.31074875631996	8.82767978221307	8.45711429983564	8.86907583021122	8.29544904494096	8.29614042466711	8.4707945647768
+"SZT2"	8.1349465952049	7.83894774250644	7.69035357910489	7.48993888949294	7.57822997525569	7.91923223312323	7.57432651966257	7.23821025988273	7.1247155651308	7.47022459961453	7.97513239735554	7.54242762360131	7.23572629603799	7.80849174219718	7.01317211910679	8.38044264489277	7.53727481023024	8.10466766960474	7.4960885183296	7.64482596351281	7.56173416453831
+"TAAR2"	4.44429292537058	4.95720523742077	4.57512919121534	4.60003497593227	4.4226205202821	4.61046419147135	4.37328269319721	4.64702211192992	4.75989896842942	4.60003497593227	4.5191037084332	4.65807369281964	4.65210252087591	4.57197786263059	4.33271067936787	4.72083029964895	4.77436613848286	4.267649988118	4.34936377165968	4.64040120993593	4.50754568954621
+"TAAR5"	5.22807337998543	5.21296913570386	5.36015966017414	5.28487610212819	5.14510208336765	5.26361481594247	5.64159672990665	5.13560017009225	5.24326730967958	5.19869149873412	5.14209357772716	5.24763121035446	5.22672128205417	5.36285672135058	5.07619158289333	5.46010014267747	5.11591133119154	5.3768475725501	5.28487610212819	5.29662234090577	5.58644275016535
+"TAAR8"	4.31000176667055	4.45503733336714	4.19818030628423	4.52577697602477	4.5707201011845	4.69873548508046	4.68484288355554	4.53552366041602	4.49193340940329	4.62198466800069	4.33704804319591	4.3776399580979	4.6023807868689	4.21637427820636	4.24418473892536	4.60688566829546	4.50812679743688	4.4639965426867	4.45503733336714	4.39601946251584	4.46601324910832
+"TAAR9"	4.06049233487331	4.4752576076541	4.24756481278861	4.33980302997693	4.21304399170922	3.95845181532115	4.59432223669712	4.16456468186921	4.53272743491317	4.13193576599777	4.15070675475075	4.31912285604288	4.07480615195134	4.68850924596367	4.22396403612972	4.33177861752473	4.38868458282386	3.91977967638055	4.0848244703235	4.13483562813769	4.2099393605669
+"TAB1"	6.81621563168107	6.91081205552025	7.08467015416705	7.03191629759844	6.57425585215288	7.50647496410371	8.03671460214848	6.89905192680672	7.04367191149831	7.05638144262496	6.99199602299839	6.97813845541293	7.30818246931166	7.47348962849071	7.13815155875253	6.74668414979897	7.03191629759844	6.7417790474714	7.19155229233155	7.14920616053671	6.93368972013197
+"TAB2"	6.72419587908427	6.27472171874372	6.05603040779286	6.43551427124705	4.99918927422879	5.27755149119742	6.14824591447999	6.49056697122425	6.10362243908299	5.73586417311183	6.40857471755304	5.94337953832947	6.1319707431617	6.19847294058807	6.5670332551541	5.87667161671035	6.04462879909585	4.87762458815866	6.43159643706859	5.94805715810504	6.03675879693086
+"TAB3"	4.95073126000685	4.43938344912338	3.53036090772024	3.89445135960199	4.91434503201239	3.70306157039929	3.95272769116471	4.28394166215895	3.73919177732706	5.0689886724462	4.47019082082629	4.80419531992814	3.99494460612928	3.77750897210126	3.6919469744907	4.98520142530753	4.39170264170661	4.83565947273156	4.03771313355036	4.94936370266715	5.39678622665652
+"TAC1"	3.98115567086998	6.90758283045216	7.83744125129893	6.9241151445528	7.85869433175104	5.20882712751549	4.08697492495214	6.80419471997462	6.17791174199607	6.91348570615191	7.13705580649669	6.91164077685432	6.98375530598069	6.18393175100445	6.39047933200799	7.19476092395448	6.80381625215012	6.76393300689722	6.34518263097632	8.24560797251861	7.22799153922334
+"TAC3"	6.34344774248494	6.67965413657935	8.05182973019329	7.38145512227472	7.30792934031937	7.16534646905809	7.06559386084461	7.25510816823268	7.64348122115052	7.52234841468197	7.02507544696864	7.55123763205957	7.08790138962621	7.19616040379371	7.05638144262496	6.95337818578256	7.1626283572332	7.24616707570123	6.71569582777893	7.92315157061392	7.89114155032471
+"TAC4"	4.99169548668545	5.12260126975523	5.03199632969165	5.11639759372461	4.43751532526655	4.69421660692935	4.63941294021131	5.00464271214721	4.86361138153057	5.12921724883853	4.96628950585504	5.01132975797667	5.38424087597994	5.01612531082697	4.98982118951652	5.00464271214721	5.10258446711096	5.21642582740973	5.45796744481994	4.13963456055478	5.40617150481747
+"TACC1"	7.34160165583014	7.13941277344509	7.31844814051479	7.48101518960537	7.07391852856752	7.96453557961987	7.16847616683077	7.86285590246947	6.93476099819995	6.48470961012485	6.88736769632646	7.45742477984622	7.48903436012614	7.29958908171584	7.48040687164655	6.86133907069159	7.48523587740593	7.30968501748891	7.30362934455365	7.21686541046003	6.83541687101688
+"TACC2"	7.83174274742513	8.02458633926932	8.74019204299823	7.98139610250057	8.31190374940849	8.34431295626826	7.94862153970087	7.78754542272777	7.98485883280715	7.92300817917824	7.60563680186899	8.09269647038137	8.16063774857501	8.11588668746536	8.31635854677592	7.27754451997657	8.24788034734341	7.98601223854604	7.65729446799303	8.35741494407561	8.08738525991593
+"TACC3"	6.65462996182418	6.24783018762319	6.62568965008436	6.18149636132108	6.00396023704793	6.86241118114729	6.55005287761725	6.4439168084018	6.22894975166585	6.37000295131527	5.9841263243859	6.22042145399639	6.5258963533309	7.0532812365462	6.31780467504611	6.17191510215856	6.2775742785139	6.10516974454546	6.23313003264932	6.19717515503167	6.36982749151309
+"TACR1"	5.66681902208648	5.99958720075834	6.04642021357958	6.1253238389214	5.85275515370317	6.42395107493211	6.75581487912515	5.74779135098577	6.11507097816049	6.08103923955429	5.77143159789319	6.08905351516066	6.16338232955149	6.23116117784664	6.08103923955429	5.79065815349787	6.16042244306213	5.50092437210947	6.17804989490886	6.12650055870633	6.30898456528118
+"TACR2"	6.13982389085116	6.43590923229165	6.43393440590741	6.55741568938592	6.28287738921389	6.49834743648321	6.92544096969674	6.39972316340739	6.62391025010197	6.56603053456435	6.03942315550626	6.54039598782456	6.47736507424621	6.67048998446635	6.53378119041584	6.39153685741049	6.42835624425271	5.72488575719167	6.64782037005004	6.27773649406038	6.56267663499346
+"TACR3"	4.15212664472823	4.27870300633036	4.41285630840697	4.53199776041775	4.36540527833745	4.37754296670401	4.38833860213385	4.3282383673483	4.10797329735728	4.32438444095426	4.35963097130014	4.19866069584963	4.23593447890927	4.0969843540617	3.91572440344862	4.28798369897798	4.33820882000007	4.27870300633036	4.39154474685828	4.23593447890927	4.45541789890713
+"TACSTD2"	3.84128826088106	3.77720480541078	3.92595170179336	3.71149906232818	3.80402493828638	3.97486863999271	3.82240808762407	3.42598080769835	3.80477838030435	3.4264824533412	3.59029338395678	3.26899801855576	3.66995922098069	3.66995922098069	3.61378689230125	4.34498199510294	3.26385087987327	4.08022174867621	3.43497936218497	3.59128712887845	3.41849343859518
+"TADA1"	7.83152020521805	8.32795339087529	8.45515662430257	8.22210405160963	8.69483032650789	7.37803539910845	7.33257971830399	7.99609440826322	8.15202919145668	8.63909488876696	8.28757665209583	8.37567257180705	7.8696925721079	7.4031758963944	7.82914224109034	8.66233887576492	8.19923494717588	8.8637549015874	8.12751545791322	8.64354411812914	8.10501352186094
+"TADA2B"	8.21287617957316	8.4272490598346	8.80302107676779	8.15786288959899	8.34684284245739	8.3943301475289	8.0836556138712	8.07701857598351	8.38408216279216	8.30028638254764	8.22150160524758	7.9986630912336	8.33351969358462	8.54226762520654	8.24385499613956	7.62767391834682	8.17563763019842	8.28618114916834	7.9768423184218	8.12636731166517	8.09931736036937
+"TADA3"	4.94845262374778	4.91715194087682	5.08419230415044	5.15244073675835	4.69551516067556	5.13663338579186	5.52222645868937	4.90689252176016	4.95069105477929	4.95670789240265	4.95670789240265	4.81377576714112	5.13254939416289	4.90755130219284	4.87842103791249	4.90122496205643	5.08045599924881	4.81631663009465	5.11085919934103	5.01710577396355	4.93847184699031
+"TAF1"	8.05084091753879	8.15388690116693	8.4484796935739	7.70089896847731	7.8791830856771	7.72754598276049	7.86153188809884	8.00624553719589	7.73378314823404	7.5615497144795	8.30074364733611	7.80155546232136	7.93269671010783	7.72139342279064	8.0728523893211	8.16278143895961	7.91177022117762	8.29841895868708	7.89237360695927	7.64213255895967	7.64530743303851
+"TAF10"	6.58395799543597	6.5632534617127	6.5278888306025	6.64942964815253	6.66339210108726	6.83953788934224	7.10674664000927	6.35346723828212	6.99117257258654	6.93196071864498	6.39818704106698	6.66329770821055	6.69166110666882	7.03904924583852	6.41910817417365	6.19464983466496	6.64507669434454	6.32632885493423	6.64208065061979	6.51640646450079	6.92050829995463
+"TAF11"	5.49837404665597	6.26937865630315	6.5258963533309	5.76583863464968	6.55991070131405	6.59144449053786	5.63062286438045	5.76803195061094	5.89842937041992	5.98665243770861	6.23703885823271	6.35173634361805	5.36082033345385	6.03999171512617	5.92388573625615	6.01202320699328	5.95854181196934	6.18993429435379	5.86035996464156	5.70970835456603	5.6715865485739
+"TAF12"	7.39765626118471	7.05998994970315	6.60333646445369	6.92624694757224	7.14107482715145	6.9316272114064	7.21055845324173	7.10584287821576	7.09458216397847	7.09458216397847	7.17950852490697	7.09458216397847	7.06604671015851	6.83898083849867	7.12147354601354	7.34371594189027	6.67069363225781	7.52913352018807	7.21398024499908	7.45214892838202	6.92821745977274
+"TAF13"	7.77815810488916	8.27667605238918	8.38599146509014	8.30879294377965	8.59518093718213	7.49304662138133	7.99360497402015	8.07257345568636	8.4484167063333	8.55256116546975	8.51888043789424	8.14624628241518	8.94574040555889	7.82545743854362	8.88083821422182	8.63464932866642	8.51358152537534	8.74596827619337	8.48689730508638	8.03280101517991	8.63162960181362
+"TAF15"	4.72925597840101	4.57714704600593	4.40202009068343	4.65899129636652	4.64897847459343	4.51906897181338	4.67128509504532	5.31922478213719	4.76512805703786	4.08193599403084	4.88102618426876	5.15451327318609	5.00816958939107	4.62968679971502	5.57209914524971	3.73940433672366	5.19576893940906	4.38365093485821	5.00985186970889	4.50822197006625	3.9978673325915
+"TAF1A"	4.2493817728559	4.04385078470296	4.46461715333581	4.05612930620937	4.19818030628423	3.88606111194439	3.81990923571261	3.95678318815078	4.5327136352123	4.25492348912164	5.01695447007245	4.24703641506789	4.55932192443823	3.63496253443881	3.97708930848234	4.78517930173205	3.71974023800457	4.90019882750074	4.16559452571722	4.40810546697427	4.7096388695463
+"TAF1A-AS1"	4.88399116746747	4.88399116746747	4.6315393788397	4.52928933888977	4.95778771918148	4.20305750391172	4.8547542796291	4.76396378677749	4.89064366619423	4.46923323615059	4.94283778501734	4.6568208712419	4.64139029338639	4.55158921957938	4.42423120834788	4.80909490652216	4.51918947622553	4.60150835028943	4.64418291828078	4.90623838297895	4.50894842239721
+"TAF1B"	5.40039478610026	5.11287679807377	4.76987116888571	5.1073733137504	5.04319178162603	4.59234579245207	5.07985618736886	5.23052604803498	4.93435459001143	5.28196214131676	5.10050304169266	4.74897007372544	5.12831685423712	5.12151956634841	5.35472276434643	4.83505235933646	5.06954004065823	5.12244311810584	4.9284977415673	5.37165243232789	5.10050304169266
+"TAF1C"	8.6572208303099	8.25276750482865	8.59001699544674	8.23422185568588	8.13365664871928	8.64516145011003	8.12756007463876	8.39479511917097	8.2766251006596	8.1452897862345	8.16214016819898	7.80159894018192	8.25586757506595	8.62562603990558	8.38105433681043	8.04962000877687	8.24410972998202	8.68681733942757	8.2639126645281	7.80763213210888	8.12852939977316
+"TAF1D"	8.55651395898415	8.80957399738735	8.52931095063157	8.84685271586106	8.63337667320924	9.49586724859069	8.69453313141524	9.63584382153669	8.71918388898032	8.22022219795314	8.82130956666789	9.1479846114788	8.92159042624917	8.94048540532005	9.01775904024185	8.40173751287118	8.97040267441789	8.17361204005185	9.05123453218707	8.53072940550884	8.7150821883314
+"TAF1L"	5.97389598943069	6.08866833249608	6.18328260966346	6.49238210738772	6.25975585486541	5.98390999585535	6.16506339950631	6.10271985819724	6.00990179220662	6.10271985819724	5.96818694797665	6.20709345503019	6.14317532874604	6.06648719649398	6.03157121211289	6.10271985819724	6.0737445610534	6.02118003354489	6.19758247338998	5.99650056306937	6.10271985819724
+"TAF2"	7.33205954334013	7.42751376852352	7.64201403200385	7.48249171411764	7.42210141961489	7.33702781832728	7.01965084864862	7.33419242980534	7.55179888245858	7.24707064992408	7.44007090643306	6.99101639780147	7.74377718154167	7.39046197571661	7.6601351569765	7.35099260666526	7.0646626319039	7.74069484943512	7.17704059660634	7.17071266414289	7.27218694821019
+"TAF3"	6.46638701552343	6.3667995542172	6.89438483309932	6.99098083668487	6.35586451343435	6.70363639404415	6.84484935074456	6.73598621999682	6.85866357441514	6.75165464417227	6.84006525374194	6.59716826366417	7.37181943013467	6.97604646289489	7.14298103024392	6.1950588744642	6.95285912568438	6.44511706794412	6.75106539351633	6.0268456023735	6.79679853204302
+"TAF4B"	4.94162274096014	5.60030907140083	5.45058023656595	5.55890411844152	6.13669293205684	5.28777082789206	4.95286113291599	5.60030907140083	5.66254997476989	6.03464837280385	5.33460131016494	6.2088703177497	5.29861890590485	4.97251772687134	5.68247370732119	5.66057512416274	5.95035048391939	5.68759364430409	5.75149286080356	6.18143861084082	6.0077724735066
+"TAF5"	7.03854678485619	6.81843819956622	7.22727134604228	6.85115870296344	7.04086254976368	7.40363310969826	6.89131240403009	6.96740331504173	7.21992399822464	6.36783535274571	6.70895768299339	6.42485710888679	7.11533384994012	7.19783211749962	7.13719280047246	6.70973592203923	6.54367896325785	7.18992717230391	6.78331224141729	6.76794084406134	6.80155960160929
+"TAF5L"	4.46313634044482	4.88643762116001	4.90156542149576	4.25321037319213	4.26291551747797	4.27628125751847	4.3376553710587	4.52767590457641	4.25927063062446	4.46313634044482	4.61783659178026	4.45945734522017	4.2578198547692	4.46280295921609	4.30460885557978	4.71449485032448	4.35609898189017	4.60395480398197	4.40212732297763	4.49852897839739	4.41364980435084
+"TAF6"	9.4669115943929	9.46605488740627	9.59792231751345	9.51010786064919	9.60538491606903	9.63274679140511	9.54402568063249	9.25369313514463	9.50230559780322	9.6180176255785	9.27686769022577	9.51497900961926	9.79444528162852	9.59782552696456	9.52388575889368	9.11568614110387	9.66400648577384	8.99648824041127	9.48953935446096	9.61630304303447	9.57654089315329
+"TAF6L"	5.62182668522398	5.88747102796004	5.50816853495466	5.50076182085259	5.50816853495466	5.39001958427419	5.51429355637271	4.66462293732814	5.31133008318136	6.05595522373161	5.95597064359273	5.50816853495466	5.00521910499994	5.36878019542538	5.01705309114972	5.48778130232054	5.50816853495466	6.5128989247021	5.33089549244952	5.71214019287775	5.71541724346665
+"TAF7"	9.87378335719264	9.39388025975086	9.72282688467068	9.57074454660378	9.83569076050717	9.16940843257685	9.51826755320499	10.0279144487552	9.61090401024808	9.60936263169171	9.76787020544283	9.64974704076656	9.2939260782365	9.01909759051185	9.73818418956189	10.0891382473044	9.60166362729166	9.98465623905757	9.90180289563602	9.64099133436704	9.45166898576628
+"TAF7L"	3.72999481384703	3.96826675722971	3.88509171534632	3.67441173195213	3.96002743105501	3.28394735206726	3.69032545445335	3.92778768358734	3.91901451442059	3.84508087183603	3.7977403062503	3.84121297472913	3.70791985020469	3.80745541961432	3.84508087183603	3.8967475701499	3.96599562383507	3.84508087183603	3.88987723152518	4.50364517842536	3.99599015209068
+"TAF8"	6.57761703192041	7.07057375637117	6.84584668767709	6.93829626389287	6.60354051252405	6.84576247107285	7.42871048680333	7.00649489947399	7.30489915306705	7.16008495727247	7.14402953478932	6.96811380707566	7.38986120389977	7.43602796913034	7.29575420242703	6.86926536569357	7.5233335631205	6.76030796782969	6.65535002443885	7.43039498299444	6.97904637835629
+"TAF9B"	7.28805719383474	7.30487804013989	6.3854375503752	6.65562130140605	7.41992125633543	5.70360170483781	6.49451226428622	6.97592259007624	6.51924561955343	7.53624849049879	7.46905404434411	7.27468036729504	5.68021354370237	5.64992773059316	5.67864835139119	7.76316789570994	6.83752581197006	7.56917873683245	6.93861468678729	7.00440592527202	7.04796917082918
+"TAFA1"	7.3136484662211	7.92238298981719	8.85763993457168	8.29253729563148	8.75353996425433	7.06928196341694	6.83953768790768	8.09806428737231	8.92345625278636	8.62107321249095	6.7650287435475	8.65613297711604	8.11794712299594	6.94815423880642	8.41647822821221	7.40887965002171	8.72623512943783	7.92073707436758	8.11829833814616	9.17350808964686	8.25116957784342
+"TAFA2"	7.23618664625759	8.92164664453132	9.29859797185059	8.81581993374755	9.34344546283369	7.99223119431987	7.55134332205244	8.86717811934908	9.28639981808722	9.10318983237856	8.48335181421222	9.25364202424143	8.84845854816314	8.16565559440339	8.92924399583451	8.37443179625016	9.03323780664262	8.83438183929936	8.97588618984456	9.0921257249142	9.09823747638487
+"TAFA4"	3.47115147475991	3.49907232928224	3.43204318660265	3.64692940780011	3.58570381939614	3.87370350468946	3.42345587161449	3.59946683587498	3.19070040020477	3.60538956645261	3.72465907672361	3.42601416587841	3.45976995430154	3.5242187604899	3.84943358740494	4.65029288499483	3.49530982934849	5.00273346343644	3.59473901959115	3.41796000671952	3.46924752939726
+"TAFA5"	9.84627061478093	9.82126701097864	10.0514308100796	10.2252054291359	9.9538574021277	10.1320108106135	9.99433204395291	10.0050183292341	10.3583710097134	10.0235311531891	9.63895329809549	9.74918211332552	10.6157372693952	9.95194398743012	10.1611853532352	9.29206176043106	10.0844369086051	10.0795386298022	10.1031349982107	9.98618935367659	9.75647474839389
+"TAFAZZIN"	8.00949815664729	7.90605551306708	8.04074756521354	7.85801902957153	7.66811731996456	8.59058168514065	8.34451220166204	7.70401010583944	7.89254381248969	7.70477581881638	7.8845475744603	7.65212056576441	7.9708054862461	8.12739267273727	7.91406571608329	7.8459414601693	7.9333959225448	8.14609440209895	8.04442754362018	7.61754835702546	7.62835993656594
+"TAGAP"	4.72589097418015	4.82717155706633	4.39109064202081	4.64747573912593	4.62816613723194	4.22997536074752	4.89256585790664	4.24882528041056	4.68901712518175	4.47196128926239	5.17478329041576	3.77155652704343	4.70730624714512	4.99169548668545	4.62636556576828	5.27818893028194	3.9402477547744	5.21162510184184	4.69039996711116	4.61552486600255	4.40862273107529
+"TAGLN"	9.4847703451395	8.12850091639154	7.57851786895989	8.02889567539229	7.30063013896365	8.11013276031166	7.55788569064799	8.72905118171659	6.76120450096731	7.96911332589302	7.62697043448654	8.4348692568395	6.93833781896392	8.39193470707853	6.60301284537615	7.28331311515113	7.09833457948292	7.89856300976554	9.18853352016242	9.05994035094897	8.89050002962938
+"TAGLN2"	9.21099351194207	7.82124538148081	7.27614341757986	7.91344269778052	7.69179311864204	8.80328831550777	8.47807075323536	8.48037011961377	7.4472566778541	7.94308233775722	8.02695894462839	8.12636731166517	8.16696852007583	8.15481500610417	7.72142861273881	7.58163476136266	7.98547019073604	7.76317595123601	7.79507438106111	8.1269730321208	8.13124834176538
+"TAGLN3"	10.0400495342405	11.3782045091184	11.7926900224704	11.5110945801448	11.7799166165745	11.2520917869998	10.3173615661051	11.0049354742625	11.6427662823062	11.82205465522	10.6676238872971	11.6732527750941	11.4954537789962	10.8913304686109	11.3275372648373	11.1057209026511	11.7422964803641	11.3038884038494	11.4266623127557	11.9150127143335	11.748258305034
+"TAL1"	7.0592172946489	6.10945901093965	5.7937365735183	6.64161952188219	6.07663296821003	6.63500782487431	6.94370282585637	6.09764569099102	6.34589290435566	5.61063934175271	5.97882052895322	5.65220253962146	6.90338044360088	6.98309111915211	6.73253309867692	6.27726668746126	5.79632561787067	6.55330242428024	6.33208521480136	6.25186865842962	6.48954747935683
+"TAL2"	5.61966266987891	5.7602518374697	5.81072428505669	5.9385131057636	5.69846422277507	5.95841582550811	6.14641756772233	5.78890746252007	5.94662274875954	5.81042317913334	5.56739885913892	5.8792354528786	5.99974131063432	6.14505941677971	5.82317813003667	5.79012516376782	5.77237517890997	5.38104121504444	6.12466314550653	5.8724004023094	5.81290469068831
+"TALAM1"	9.44631723134124	9.70305693775219	8.0102599890446	10.2209708545387	8.55329395124268	9.09865355142179	8.90602099552222	9.84341666959203	10.389201980004	9.84735695381142	10.0434891529401	10.124522628721	10.4946455580811	9.46061468636857	10.307409605773	9.3892370480428	10.0168499608195	6.98744877498665	10.0515877513348	9.10854044239126	9.37846215146647
+"TALDO1"	10.2637318638927	10.1415223388741	10.0526288584974	9.67682852868698	10.1131259869415	10.0685945836244	9.44790308779509	9.85887319733319	9.43854331478371	9.7896732994176	10.3398956741507	9.84511661365369	9.28139229669546	9.54776086046749	9.33557772031009	10.7568607698307	9.67907190187035	10.8526685136563	9.79764782700855	9.98357924813974	9.71266884334879
+"TAMALIN"	8.4689882840023	8.45103277476168	8.52256014075612	8.44296885225611	8.47746863874713	8.86704401473158	8.91259319902411	8.31349801076231	8.42417094986718	8.46636502699393	8.14533998434506	8.46529982986166	8.59461402832786	8.81145388730428	8.29240537476684	8.04339639187986	8.44486415729951	8.19307896236398	8.39220676119074	8.64561204002457	8.33891448733365
+"TANC1"	8.23416261758453	7.66469429350938	7.15277786539742	7.33539310714123	7.30587823303665	8.07190476669041	7.17735659290286	7.52398139232484	6.49423943161767	7.05458100539355	8.03188258221261	6.67961324917137	7.54293728197621	7.78166236641217	7.74770535921521	8.58188531645251	7.05636220527689	8.3471897729408	7.11962798253851	6.8404615875309	7.43422728597383
+"TANC2"	5.90201824037994	6.04356115698676	6.30127651877033	6.10733619590342	7.0902140112827	6.24480361074809	5.74068641450842	6.16168792259761	6.33835821648119	6.93196990104976	5.86297003927177	6.85725628408023	6.09726403566476	6.04317511370824	6.18136565317096	6.07954279080548	6.66934491376223	6.463377909186	5.84425243346594	6.85361562087603	7.05224635229932
+"TANGO2"	8.10280077830833	8.15267801808648	8.15436689667371	7.89369978844994	7.86955822906812	7.78279271865904	7.68975654706831	7.66996968599206	7.90012329196012	8.24038408531765	8.15684711461025	8.09948509665399	8.15235007492942	7.73467605225388	8.08705494497088	8.36517634986776	7.93972401677929	8.25132451485107	8.20558292244496	8.21689097354966	8.23820646193717
+"TANGO6"	6.56424936191009	6.5617408049198	6.78392697750987	6.50998544936397	6.5852209307015	6.50192348620359	6.51166132831683	6.73253309867692	6.41520189736586	6.69214705227819	6.49732871422105	6.56393406344096	6.40608524205015	6.46228192017981	6.39756521583213	6.75659575947288	6.5852209307015	6.77330374044423	6.59844123781197	6.83061042409847	6.75573289367697
+"TANK"	6.7932084213667	6.53565565668483	6.62865528213847	6.74921338289429	6.7162169736491	5.88574093326211	6.1268272987839	7.01486174882549	6.45928508442389	6.50338338507996	7.07503799841671	6.49205030852254	6.68026617978527	6.23054038714884	6.90935629847888	7.02472323886931	6.5900548257363	6.9664043423685	6.78695097102745	6.36777595473486	6.64287635397124
+"TAOK1"	7.84462084435141	7.88936009437173	6.45980308377008	7.6173260896481	7.79462256140865	6.58506857656968	7.54965476393777	8.0847098213586	7.66740856774888	8.08673055320159	8.20027829119291	8.10835794706863	7.38001030097685	7.13306557236898	7.15150319552277	8.28311650484033	8.01295241164061	8.17268017582632	7.78843991377809	7.83628364197572	7.86913961344925
+"TAOK2"	7.37394393581046	7.12958647666561	7.15234104658167	6.90925612375595	7.0960326722892	7.19384418465499	6.82345057526726	6.84954261639632	6.98395515332087	7.73069419792945	7.29073351815178	7.41910882970235	6.85741457240055	6.64329445033658	6.68991709560082	7.49557067847651	7.24306299056943	7.62990181956392	6.91697967884893	7.42829255318042	7.31419041096677
+"TAOK3"	8.944634908843	9.05416270299535	9.35193643145892	8.89642672652943	9.0506630178151	9.44285746504153	8.56407885009347	8.96711691771488	8.73223180977013	8.83141741800046	9.04193658916226	8.68685539527064	9.07138061806249	8.8827497244607	9.06632374636262	8.61926144628089	8.47511935961105	9.28416146533784	8.87483757667721	8.91836162641182	8.72727649965967
+"TAPBPL"	6.84751775765265	6.4967971224079	6.21195099839066	6.18032406739125	6.13922436859426	6.16489491634021	7.00306043878642	6.67633843897617	6.17657532599499	6.05841844219813	6.75043810775883	6.13611328584002	6.1427616056236	6.03832297489124	5.90394669722838	6.30087929347404	5.98304086029149	6.76802527831952	6.47426667528052	6.51783570382923	5.91734440496334
+"TAPT1"	3.64071757876964	3.57065159798244	2.77075318679404	3.50670584782805	3.20998527307107	3.33406381471233	3.4235974640502	4.0017786212517	3.4235974640502	3.77342862506551	4.09519859980027	3.50310234788329	3.97535111365346	3.5325099096809	4.08272568391701	3.61152772210471	3.54695426050342	3.15661021599238	3.25603464355546	3.34215571292522	3.25535678445499
+"TARBP1"	8.17358806286632	9.21842315883638	10.1387130003453	8.23838569265346	9.22973414209781	8.06765931593009	7.87509491615124	8.28294101849884	8.38581531331734	8.87047266941548	8.88701403154231	8.90988627693482	7.90164550212925	7.90587885653207	8.01705095437058	8.69618000671143	8.7394113880238	8.92624352563664	8.44497817795174	8.85572611461239	8.74740803278386
+"TARBP2"	7.29273586031409	7.19458260653053	7.30124911115806	7.13959949984483	7.13035754626863	7.26434915154931	7.1660851878889	6.98496276993549	7.05782518334565	7.23311805185659	7.26612483490286	7.06684817096325	7.09843429610474	7.11693960051362	7.19458260653053	7.57808209847015	6.80620647061034	7.31879737153019	6.98013949090178	7.39196023577618	7.30075504370398
+"TARDBP"	8.11378853976003	8.33393379413225	8.76921995958195	7.73933451406061	8.167568308414	7.72690366653596	7.62833650783911	7.64082532349028	7.89542019935148	7.99354538669781	8.29604228853474	7.97136973234378	7.67701528512801	7.72537029348742	7.72796207711049	8.28596951824404	7.93696854703091	8.62399246045249	7.88016121031148	7.66971590598102	7.95620735546879
+"TARDBPP1"	3.94108162218938	3.97277346329371	3.70610154723468	3.88122381823942	3.88122381823942	4.02358414946521	3.8687506254083	3.96385738649676	3.96779852709763	4.00576098828894	3.6083422085481	3.88122381823942	3.88122381823942	4.04762021817971	3.62039775244774	3.96696149180141	3.84559808957167	3.80520437675844	3.91095506165312	3.76352352599299	3.79397610186547
+"TARS1"	8.76557028319127	8.35433077658155	8.4747721921459	8.38637196664707	8.55510581144797	8.93382536327219	8.34218788038449	8.67054552657311	8.30771657668618	8.52837974648399	8.73154493190902	8.48983202065069	8.43845832076135	8.03320582774083	9.05865077164563	8.80968215809509	8.23911623073742	8.97625562943691	8.61099289462189	8.65205394688378	8.80354041222662
+"TARS2"	7.50367196464027	7.63798206184375	7.75528042893068	7.68987435462424	7.6606286416851	7.2547278369054	7.68987435462424	7.68987435462424	7.72858776753113	7.97476038900808	7.8123641986386	7.82114089466058	7.61994296714455	7.3146656468996	7.4323493250971	7.73972718930337	7.51995277103868	7.783373965788	7.82521574447612	8.13878172867456	7.65792099241662
+"TARS3"	8.7241913898528	8.6844626989839	8.84791638038484	8.5933033684802	8.68727461608052	8.73522477670791	8.18110575699296	8.63608596258767	8.17422037376886	8.36637954108128	9.14886188525597	8.39666380347582	8.47606736102505	8.26681749586393	8.6498769326036	9.46598876942616	8.53668263627763	9.58071862010659	8.57745192760819	8.06875845872604	8.31972298041691
+"TAS1R1"	4.67424614788055	4.75413110437978	4.46080643132083	4.57018250120868	4.52667133163283	4.62306728952686	4.73841222310156	4.325101444633	4.3789906192822	4.57079607667838	4.40039335659743	4.47723266124654	4.76412860601035	4.82015291386906	4.61046419147135	4.65440071579661	4.83851391392687	4.23366306107498	4.48442229163867	4.4611731367874	4.61046419147135
+"TAS1R2"	4.53834707236935	4.98098639596893	4.80136074447861	4.85549401599235	4.74990387455281	4.75163229892863	4.92723887973169	4.83364299740807	5.30769066433026	4.69663078877543	4.8368404498689	4.65915049192384	4.88923880638721	5.03793558583924	4.99966003788089	4.93779438031075	4.85625813340346	4.38868458282386	4.8735347340131	4.68966246362145	4.75163229892863
+"TAS2R1"	5.8602326161965	6.05705369344318	5.66527197731348	6.1346117871241	5.93478603014075	6.1084762100575	6.35386858253483	5.89694945901375	6.13268392276037	5.94732187293394	5.71781740747161	5.73100777510661	6.29225124362148	6.26582739078557	5.91470146222339	5.89111020476046	5.88901021058502	5.6138317434183	6.02272438618784	5.95277021311115	5.93478603014075
+"TAS2R15P"	2.95783676271586	3.02935602024208	2.90740501088328	2.80141914578971	3.3404377108901	2.89334938526495	2.78261973076771	2.94847990765956	2.72261967629188	2.86171219707977	3.12610485667467	2.87736883298255	2.64280168626567	2.764640528645	2.89334938526495	2.92793810150238	2.89334938526495	3.34101233994875	2.94692723335322	2.80537266774771	2.86021267107589
+"TAS2R16"	3.87823346957817	3.88158893578059	3.89750769692117	3.66189270954633	3.97521665806832	4.02241449374945	3.94777167177007	4.10517158161674	3.89750769692117	3.90943023213909	3.78823365730846	3.97055496053633	3.88509171534632	3.92485750367168	4.10200986122234	3.89943194402322	4.07338227005605	3.65137504868824	3.89058141444997	3.87697698427879	3.68585127986127
+"TAS2R3"	4.42642286910581	4.79284237570253	4.39441626637536	4.60533414314358	4.64690585262373	4.27286227224097	4.54919117498771	4.40433720857967	4.64416269017545	4.84847674388953	4.34574060169835	4.66786462062489	4.59405860483347	4.93108421800798	4.69358356323546	4.87491122836958	4.59405860483347	4.46347563220435	4.90333351276525	4.48500814551163	4.54868709344955
+"TAS2R38"	5.03827578348721	5.38932707993747	4.83314962153905	5.3770071202634	5.2027301141694	4.58119548728599	5.06277962672221	5.05698517523984	5.1589488082934	4.99500841929143	5.08961543800521	5.55151846775402	5.23715512828711	5.31965752002672	5.28073154445663	5.12475950411628	5.12293744072646	4.75799280259008	4.93257773250009	4.91808711771755	5.45147055957295
+"TAS2R39"	4.75606779406161	4.93135991208904	4.34423221654705	4.92092299116524	4.72423247387559	4.78122068450551	4.43400801437878	4.68571464455802	4.86361138153057	4.72353625558884	5.04784324572435	4.58943063690449	4.8747527130528	4.50269664193289	5.19861501785622	4.9294387837244	4.78724875169045	4.59562572176595	4.9152679985713	4.80898624495537	4.91767434533648
+"TAS2R4"	4.72083029964895	4.92214310220243	5.01274912611806	5.0199456593375	4.93289137735684	5.00098157896409	5.31523471304091	4.97530978559652	4.96452092784753	4.88548364385296	4.94742361195915	4.85192096674446	4.94742361195915	5.06723454550762	5.08561415142187	4.88138289108421	4.9771132904898	4.75825179266153	4.94742361195915	4.72271274037432	4.7662296301899
+"TAS2R40"	3.35419487464055	3.43171660648579	3.69151329217638	3.60653314230119	3.50860747913363	3.56953308131891	3.75714810291262	3.61405344452992	3.24230196145342	3.39719220280238	3.78215061084854	3.69641919383678	3.51557762357983	3.3822679309336	3.51508842484289	3.50179456313053	3.83507557442672	3.38402242799847	3.34674373968041	3.39902195835905	3.62700998235934
+"TAS2R5"	5.25410798346082	5.53522329973581	4.95088768404846	5.20320787775345	5.22073227564277	5.09122390903668	5.32605020450128	4.69463914435399	5.22073227564277	5.38785680075091	5.16304009926144	5.22876339489558	5.27521473284452	5.47992363294151	5.33433428249509	5.29198974624578	5.23239577075344	4.84911743093659	5.08123674431111	5.29858573531724	5.44811556742447
+"TASL"	5.20759477661725	5.31856916182219	5.25465962484305	5.64937562953899	4.909040695448	5.27428642912524	5.92028840513082	5.50590571713006	5.60456210113025	5.41014633707025	5.51042136128882	5.23255351567948	5.5941733389914	5.72742564966378	5.8220258288405	5.21845685207661	5.48705206461157	5.12244311810584	5.53899146403122	5.20584588153968	5.33792802518486
+"TASOR"	8.80186764410778	8.46230801107438	8.63707058413419	8.31400494473965	8.17067107030133	8.81871885934293	8.65542477971308	8.41249060926672	8.30198549938484	7.92319309903174	8.93550808032749	8.11968718190206	8.2588914310911	8.67212335761596	8.51561290579442	8.6180583012375	8.43044367066831	8.87661820966072	8.46493487190282	7.76047198570943	7.88209894966056
+"TASOR2"	7.34008559221413	6.7932570645231	5.53608611425708	6.41697918975219	6.2277457191741	5.95284293721786	6.39031162554327	6.6249454284727	6.405226438961	6.49531561580459	6.39726480832939	6.4382253630792	6.52729771394513	6.16293412083228	6.08344726451488	6.94855909263428	6.53902661522865	7.36262369709599	6.58903328925703	6.35728672849459	6.84007927319071
+"TASP1"	6.54231077874746	7.42224059664255	7.47463969121385	6.43388022655549	7.60856317779501	6.30980699338872	6.08733285135522	6.39751794652688	6.49266885872756	7.04654118122876	6.766183018381	6.99650649304951	6.38853605646434	6.33423749073081	6.53555580588306	6.91814331479594	6.77105725423398	7.15101031934132	6.43196420734454	7.63425043570484	7.0677170334919
+"TAT"	4.75924412262672	4.50643129871752	4.2789126136718	4.75630536244478	4.45044429840311	4.36281514695413	4.49852897839739	4.55210336386627	4.62426667566288	4.18267372922485	4.43049064581533	4.39142527995393	4.62403072783591	4.27161281524833	4.58734151081117	4.45098570805465	4.4315661298355	4.21596120030895	4.45503733336714	4.93538991088171	4.43244167096214
+"TATDN2"	8.98285637124333	8.71573789309275	9.05967317266886	8.67040327446032	8.79765123539736	8.78360057449989	8.58874628155737	8.48662689052046	8.83637675370122	8.94760189629034	8.56344930722439	8.72995081304077	8.62126045349607	8.72388493367307	8.63124436102181	8.64134758129529	8.72388493367307	8.69435045405446	8.60423910880905	9.01006683823551	8.76741651794823
+"TATDN3"	6.75485977072279	7.26549757839784	7.83013790772556	6.21354075281614	7.17854792958793	7.17332184971239	6.19385606041753	6.76013831793224	7.18740923332164	7.50897505495459	7.63214750769726	7.30167527082866	6.69928057797192	6.68467521188063	6.75594653670359	7.2750875323175	6.90392482784686	7.81879314443719	6.90895219123682	7.10435800474685	7.15512105260625
+"TAX1BP1"	6.86429550000001	7.21648147552488	7.06572748669576	7.20346614286036	7.71699997837065	6.80775778821507	6.45278846765946	7.0596468116532	7.30842601879267	7.32425393497593	7.18203242668243	7.37891148296519	7.25204742771898	6.69556488384042	7.62270883916982	7.16519889945149	7.41315605205366	7.34962195813641	7.53883686305624	6.86412278370964	7.51363367473377
+"TBATA"	5.48425785980971	5.4359844671954	5.65780450035539	5.68876241014785	5.84770500568892	5.95153925113112	5.79857305452607	5.59092850114354	5.75962431112409	5.57720758991911	5.49648864563737	5.62144880816064	5.7935904875936	6.17687833255827	5.71344949243618	5.64234854951754	5.73020578541072	5.48042536458345	5.72819356331428	5.68791308893744	5.75856598944751
+"TBC1D1"	8.66168733401462	8.03122552602447	8.23735445263161	7.88616933493008	7.74357435709913	8.32201974901403	8.01848160748206	8.35862576020049	7.78057816873255	7.79034721044195	7.67133927524382	8.18226105016313	7.74247095194035	8.10597832863315	7.77787594168489	7.47753966462047	7.77870128397873	7.6667958584404	7.78449539911163	7.77800918370084	7.81211103478505
+"TBC1D10A"	8.19177326083604	8.17994806486208	8.37610025487018	8.20561373544219	8.2519378175067	8.45656731088361	8.47704004731654	8.2399445595671	8.18017638894484	8.18017638894484	7.59571870767894	8.14309918516267	8.1433276066166	8.34386365704199	7.92274114721338	7.82234039577412	8.13689808137186	8.15369831099906	7.92312600005303	8.45496086205296	8.1531810076196
+"TBC1D10B"	8.60543389033284	8.68943373390642	8.95142352766708	8.65618764047762	8.85176814108901	8.98621034025138	8.10515132778981	8.3467009413557	8.14178941658847	8.83219152918752	8.79360243229945	8.7962175625609	8.69456477097924	8.57881859285047	8.21904650206401	9.16023668259715	8.51109477490594	8.94031797779185	8.34949069373547	8.89678810599838	8.92616949911091
+"TBC1D10C"	5.62631400965147	5.78072521881551	5.71656556366923	5.71033310389744	5.63799603688387	5.99775446139212	5.57493192836222	5.56153199741912	5.60384228385935	5.62960943793686	5.58238236837581	5.7138267186825	5.86346515388069	5.94204749839752	5.59449846199735	5.62994637521061	5.58751367434719	5.61781992874554	5.70750606593993	5.5954848768673	5.82044835985698
+"TBC1D12"	9.01379876704808	9.25605459110994	8.58014700024525	8.44777719340938	8.58014700024525	8.89837979549344	7.97765503550399	8.46876471114568	8.10935359926928	8.20894938390089	9.5367674578811	8.42215995121171	8.00683629987406	8.65175704897572	8.56223161609804	10.4140211818745	8.58014700024525	10.18990407221	8.75304339796624	8.30228606835386	8.46762695135673
+"TBC1D13"	8.54297171891086	8.67244696952339	9.07311978197258	8.47851372675707	8.62015500441063	8.76014623108397	8.41358412307553	8.41667257496592	8.64765794295074	8.72021912298647	8.47944651920167	8.3554829193769	8.35988098200517	8.58867314031357	8.36421770462547	8.68412520184473	8.52246541314736	8.90088526833819	8.47570959423752	8.58457831436031	8.60279772416116
+"TBC1D14"	10.2687007779055	9.68854317252805	9.90258523263891	9.69200594331176	9.66963564805914	9.87948711846848	10.165423686395	9.97799694435617	9.79241293411658	9.60786998547903	9.76392750661585	9.5807948348455	9.82852992848874	9.96582644546122	9.76404654643673	9.41866869072643	9.57467430057394	9.60219727047232	9.77366440013849	9.70236337831209	9.71425580151893
+"TBC1D15"	6.20051022843547	6.03140226144272	6.68193876831794	6.05911335515184	6.2755539403389	6.96722640733975	6.09293483263697	5.98737603366594	6.11565563736602	6.21880602365956	6.2588449363921	6.08872875661704	5.50076182085259	6.10872468933234	6.02680662054461	6.33995278073327	6.32097876739141	6.81043388956664	6.31128242846265	6.2328530492631	5.87640601363335
+"TBC1D16"	8.94587990824054	7.77550345000635	8.29572320744124	7.78565950465156	7.83976787262993	8.29691327716898	8.73241694710882	8.09572125918463	7.88280344221924	7.4970812148462	7.76380625465938	7.38597581759421	7.77501475504532	8.58865020808105	7.69364187737654	7.47714862899384	7.84304044873006	7.74343304190543	7.77452924189157	7.92877727994862	7.67848189784552
+"TBC1D19"	6.84616401427156	6.41755486876755	6.05152877610979	6.14328316928517	7.0038208925016	5.5197794784929	6.05191657213995	6.66153252236951	6.45103466415947	6.99576900503585	6.25975585486541	6.83614614643205	5.90381110080764	5.73060645362362	6.39840917219141	6.90050414357314	6.48631290487328	6.51304667098125	6.53930720933159	6.95725889958888	6.69026673244154
+"TBC1D2"	7.03861978641778	6.83047826007158	6.72411001006446	6.39841278724854	6.42746740346927	6.75644418301326	6.32613017692152	6.15753442927029	6.38220549455255	6.34335017104122	7.18640940519217	6.38941851576948	6.3850449786764	6.83893281890098	6.2977665879426	7.46571349235087	6.3441347073894	7.2074376680072	6.23971605238185	6.3891490449573	6.69386940565938
+"TBC1D20"	6.47000215446931	6.31055404522199	5.69917143677811	6.32768260809689	6.00357044790431	5.80386201314821	6.3822066468641	6.25031339115974	6.21802620703467	6.59530660146503	6.44224384175915	6.19171159862443	6.22219810807366	6.19102721133354	5.94381462251766	6.47920305148803	6.29430090802031	6.29430090802031	6.28374530247607	6.53481506144973	6.61082262099544
+"TBC1D21"	5.19512382203223	5.32891175919901	5.32746499073621	5.34224789174858	5.2656290755482	5.69050004291591	5.70104481641429	5.30414423973762	5.52855361417892	5.34463644758695	5.06451453041308	5.37671472813685	5.44863113362718	5.32891175919901	5.36020197686216	5.42337691082385	5.36883595846047	5.08961543800521	5.32891175919901	5.24398850279572	5.22313485002686
+"TBC1D22A"	8.10782766749456	7.51724885974248	7.90671597355085	7.3925036937774	7.4386447224559	7.8407612865707	7.98530572052803	7.48945997759318	7.61875671692106	7.48750250114923	7.48933471393082	7.44969045385057	7.34466110002056	7.54603355272481	7.40551685696868	7.43859456464053	7.51724885974248	7.44161170278851	7.43326990458719	7.75686617325807	7.44474484681844
+"TBC1D22A-AS1"	4.33385803969157	4.19898317062934	4.44001569729831	4.36819950707354	4.47722237886693	4.45276631495433	4.57903566768171	4.24932201885709	4.46286465048005	4.36819950707354	4.19444184858281	4.1389793255886	4.4341099434622	4.46068736307678	4.29287572320855	4.37863892527773	4.44472811060729	4.30692160198797	4.47881211621175	4.26528685239685	4.32644355904203
+"TBC1D22A-DT"	6.5743552713994	6.72628697346393	7.18461807152189	6.43561555474204	7.05224635229932	6.97883355465904	6.92652235797783	7.98147141986381	6.8770787886237	7.11477734168436	7.41750232234912	7.30703465409662	6.79262760519905	6.19603876814613	7.30852895534372	7.65280264796976	6.96585487579743	7.66775864717986	7.38709549133867	6.48036123352601	6.25289505718239
+"TBC1D22B"	4.84305602890618	4.59797228835883	4.01401142284268	4.57018250120868	4.55976752341226	4.32162240507536	5.07659256304865	4.53142618229923	4.49820432907719	5.09905631368885	4.74060466643907	4.92775349425049	4.46271957730781	4.36537996246096	4.13352226679251	5.07227541149633	4.69563962649337	4.86277383973308	4.6808030834913	5.05856087342056	5.15117134047197
+"TBC1D23"	8.4689882840023	8.5149593905288	8.65834973176915	8.2959744141827	8.58641599281661	8.56426479975471	8.44839615229962	8.667806627631	8.58268950824066	8.21012938614161	8.41097616994634	8.41365380593965	8.2912814590991	8.45709017882966	8.57921787555842	8.52675016746121	8.33279590139106	8.84527393901282	8.6276042268122	8.47919083011443	8.08653209234927
+"TBC1D24"	7.40368394050879	7.9233703890936	8.65431694753682	8.13549097770969	8.55977568744655	7.19690603741041	7.46652320756039	8.36718142247041	8.25115345749043	7.90696508444237	7.90696508444237	8.45777677591364	7.7658257563691	7.58291917200151	7.63005427564445	7.27903612006209	8.03353057878539	7.57345192802111	7.45588863404744	8.2728249178754	7.8744105518582
+"TBC1D25"	7.91810184503282	8.03094718084235	7.96858978107256	8.00344629227173	8.18596164778854	8.37802473153014	7.8558717273353	7.82165219998403	7.91918354828888	8.20605334060925	7.78514212032369	8.15949026830358	7.9120705346893	8.13960037759401	7.80105343207622	8.17257715076052	8.15367271632088	8.02360258607447	7.77789634769207	8.37237349733647	8.19438916378758
+"TBC1D28"	4.0203122359882	4.19326957391445	4.31730216404668	4.23513683998238	4.22400659342456	4.61492952420701	4.56652307666948	4.19533469385688	4.32220922221949	4.21839602097588	4.11073311626423	4.2330209192495	4.62403072783591	4.29559954508487	4.42122063519707	4.2467143639945	4.26474765738514	4.11164646325825	4.62912356415033	4.21022073440988	4.28684696641794
+"TBC1D2B"	9.29975423327286	8.31717383490518	8.5463668896828	8.29256889668701	8.2392891238516	8.76059045394483	8.78715614543256	8.82552055578121	8.17072705101731	8.1274985518783	8.45670885998843	8.30668096492998	8.24081854750274	8.55727935555372	8.34855127500229	8.30294323959351	8.44675907414135	8.38497128758349	8.29170228251957	8.4286219047708	8.39123744018077
+"TBC1D30"	6.23075566654189	7.47677631213836	7.61122291935818	7.07280976837508	8.08765586183269	6.99533897855005	5.69706585483013	7.02561910366225	7.41220683348855	7.91897657706932	6.57616042111458	7.98805220793106	7.27975999544179	6.39168059626002	7.32946797988432	6.91591830103688	7.73157859535176	7.47573068795191	7.13643215568039	8.1337241024308	8.00810670596682
+"TBC1D31"	6.22985376568115	6.35659658016026	7.05274777631102	6.30997109772858	6.75548771903396	6.11197743526519	6.38468749323792	6.22436321691284	6.35248993906932	5.86077770186247	6.3834355118283	5.9708669570869	6.40476448019329	6.39105023218144	6.34644588618963	6.02352657196458	6.31220896580596	6.4675505636684	6.31688145576524	6.36376590139723	6.22012677559598
+"TBC1D32"	4.17936211135519	4.15451915766316	4.79395606192429	3.67452603216452	4.23139325360051	3.93875226090799	3.65067900440186	4.29887532318934	3.83226413143456	4.5422294674867	4.74319669934759	4.35860956999394	3.83226413143456	4.07792606942969	3.80345335743026	4.65029288499483	4.00652995267377	4.63477284604188	4.09238495994086	4.19139491213806	3.74502346064997
+"TBC1D4"	8.15475860185992	7.69520657668896	7.17156682439016	7.30225865352182	7.85029074318735	7.66701589370613	7.47964320411761	7.25719882204685	7.42958213054073	7.52559007071694	7.23651275848949	7.11102250004869	7.93628798063831	7.7285243728734	7.72338599499566	7.00241491676271	7.61965351117263	7.68754346758596	7.20418739059298	7.69811003684181	7.66875954503119
+"TBC1D5"	8.22834979280729	7.99585077457288	7.34595503915798	7.77417380520144	7.95853919101743	7.54510364453713	7.97845712358217	7.80164901981192	7.83735348469399	8.24627850177342	8.09106999594909	8.16871523454552	7.59571491765532	7.74022357713998	7.35299069610454	8.30193849889615	8.06780426076328	8.08731492748397	7.89826281793875	8.13850982342477	8.05097410293103
+"TBC1D8"	8.60662508995168	8.111991205996	8.40754208467859	7.71396417385054	8.3649207449026	8.75855694771661	7.37463457440457	8.54179021020822	8.09720885701517	8.49082836093487	7.81985670001882	8.27731834944563	8.00439403331071	8.23955170340167	7.94497034498868	7.50989192513178	8.44567145994153	7.96435525033675	8.06587338720799	8.83878128549454	8.47556523111535
+"TBC1D8-AS1"	4.28332728863845	4.02323064490608	4.03429245511961	4.24648423350404	3.97444199835856	4.14162767679425	4.60006427914036	3.97703652427818	4.18910467151745	4.38722170261182	4.14888808317805	4.33688570256912	4.23919954679759	4.18910467151745	4.08760134636187	4.12431953659	4.21749257809528	4.39349400394763	4.28904003451775	4.08783232241934	4.28276205495612
+"TBC1D8B"	5.92343569499843	6.08831446422047	5.86648239346132	5.7637414832805	6.36920224495631	6.99912000946951	5.50062295078394	5.95931870238578	6.07854110773496	6.07854110773496	6.36566861060259	5.77059507783304	6.34105068759635	6.2500622088101	6.25389610256641	6.61373832299446	5.82556365807554	6.53723290331782	6.21210657157021	5.8414379004047	5.96210031364203
+"TBC1D9"	8.71143360226586	9.71173749874176	10.0674807659747	9.44003971491635	10.1482449755117	8.80190654047396	8.14904602513549	9.1800081253377	9.65430599704966	9.71580909818201	8.88378063752668	9.82402654892309	9.50562766961487	8.92851712250338	9.56908071801708	9.05218978013208	10.0825467975631	9.49614055059664	9.53011861488292	9.9726094046416	10.2126633880672
+"TBC1D9B"	5.33175634847976	5.48095948469018	5.56152505718565	5.63509858546657	5.43604477956549	5.90146842694767	5.67757279947106	5.29551081667068	5.27613550332689	5.35230465120859	5.37957287329965	5.30870217567338	5.41895790970146	5.97088703891084	5.63701757566795	4.98192403088833	5.49181684553266	5.06513114802543	5.10162498448188	5.51938720243212	5.43604477956549
+"TBCA"	4.534676812387	4.80816418769209	4.77068968096617	4.87813918141262	4.56064963030171	4.81744679063936	5.01688499324818	4.80121718617105	4.98859896483002	4.80816418769209	4.68525940041957	4.7328079700899	4.93779438031075	5.0813037807194	5.16308526199437	4.71575011861369	4.62288444027569	4.39767056193185	4.72587488348176	4.70049562504	4.9068830033264
+"TBCB"	11.0451922481986	11.317879469045	11.4706861901766	11.0460257961272	11.4596860083089	11.3501325259878	10.5980701382242	10.9439843935791	10.7035368324065	11.2137064252108	11.5619256216256	11.1015658007328	10.787456398451	10.7335911758849	10.6270593109113	11.9682200743926	10.9082710134122	11.7017059106352	11.1336951954985	11.2180631913215	11.0910170517315
+"TBCC"	7.42920531350374	7.83104168933145	7.92690283079388	7.60463028175074	8.33670840868569	7.55747533001552	7.29001617521186	7.31009252960947	7.41994355051987	8.05944782703774	7.76887036985673	7.75190809864181	7.60422889437465	7.67359502526654	7.5793400241725	8.11914907660879	7.81473609023646	8.26288814193385	7.43760785172956	7.82400934569588	8.2134143356951
+"TBCD"	6.06305639429033	6.154092152415	5.97258442674912	6.60424680594401	6.1485215472318	6.06155835959497	6.54688193032625	6.21510136697634	6.11740713478749	6.10504288939409	5.96118582928058	6.09758019322289	6.27229593059071	6.42911307356807	6.09824093046544	6.12373449300642	6.30802644596138	6.11430972829505	6.2013449974769	6.1975691247165	6.23136764310863
+"TBCEL"	7.28389094830981	6.93904068277865	7.18553542237901	6.69196873465413	7.32069459781919	6.98323339765296	6.56218655316591	6.42704388354409	6.70755564619579	6.77179960965034	7.00199262621613	6.39895132503548	6.30945773911593	6.68880214339503	6.87400595279832	6.9760786553258	6.43182064650932	7.66707045497755	6.55057510075166	6.80574637351951	6.74093224569712
+"TBCK"	9.04528961552825	9.06118688064427	8.99512706533155	9.04275514732047	8.89244017438052	8.57217007869495	8.57926986819755	9.0202580403959	8.98146151292083	8.73814238894824	8.77819795154692	8.68043074508199	9.08674711340507	8.787922523297	9.16845839175318	8.84907527282126	9.00564171661569	8.97039889585975	9.07082954199489	8.85806946084961	8.9039002675545
+"TBK1"	8.55378610965393	8.84702251723151	8.8514707127941	8.8514707127941	9.00893039231915	8.99472898227009	8.15535234411975	8.82782241407326	8.97636835575774	8.92203098083631	8.65626889915447	8.8514707127941	8.83736209864648	8.69513693272053	8.90189096833506	8.7561176949397	8.81700318877086	8.96515219906509	8.94928240577623	8.80574903053093	8.92669152174284
+"TBKBP1"	7.56619174479633	7.5727120557394	7.74302333589566	7.67739222853693	7.59433936958198	7.93204355573235	8.27860451581973	7.52108007727644	7.64958244786813	7.89006229537398	7.37527571634521	7.74315179946664	7.92641093267377	7.94858663899024	7.5608505513062	7.10779066804747	7.6685691603398	7.07637200547968	7.89572052029293	7.79556671763952	7.80018308607704
+"TBL1X"	8.13633075058885	7.02698800280046	6.38881239530391	6.47215445816126	6.5804661398546	5.82886796702672	7.38310330109309	7.49511116917694	6.69788000210891	6.7425348432513	7.45204643358829	6.8194138078068	6.63404451089327	6.90538750856714	6.60909776648008	6.59916908824477	6.71052434226639	6.62902547346788	7.11237578346596	6.74834121671016	6.055562542926
+"TBL1XR1"	7.61362390617765	7.62520400260449	7.65737547200151	7.56917873683245	8.0894540473021	7.15985128800687	7.29573360161306	7.65453743463098	7.41324098067934	7.93577026855946	7.83559286742496	7.84223911570746	6.93668441825855	6.44984556923792	7.41811563493012	8.01499030198589	7.91187523338037	8.08816754365899	7.60096919204405	7.79715254196858	7.89152394124205
+"TBL1Y"	4.52013896876823	4.47189293893081	4.57601717482042	4.59688246668386	4.64257718809396	5.0278852523152	4.74929719643495	4.59098548028419	4.96277262544009	4.43840999801074	4.4248508272288	4.62403072783591	4.63947379679614	4.87824505327428	4.87550870723113	4.55111251794177	4.68480712791744	4.3454549258534	4.55223751920728	4.68966246362145	4.44513905779915
+"TBL2"	7.7862760129387	7.61545576841511	7.91918354828888	7.47153140004334	7.83113192773445	7.52364510835473	7.4509296943448	7.38989446189176	7.61545576841511	7.68942416952023	7.6599590916527	7.46080032709722	7.35732639944341	7.38987882093525	7.547304531497	7.91658172807183	7.48968654322589	8.08352196042462	7.47137685500716	8.00997838991231	7.89394660644789
+"TBP"	7.14916809975895	7.26532101590308	7.57423433179564	6.96143345956458	7.42651033287891	6.66237402427022	6.81371593939967	7.16185335343875	6.92979889746368	7.17691561296045	7.34733656087088	7.35289364654679	6.74467864380497	6.53699885363321	6.8782707971199	7.22241782947577	7.03443471151718	7.86022848638199	6.96034866943324	7.14129173066535	7.10958365941667
+"TBPL1"	8.35974360156535	8.68376437019574	8.80896779210373	9.05522658993096	8.95913628226732	8.60302259948623	8.21680969350543	8.83468837182	9.28103958330959	8.78011407354321	8.27234421886998	8.671941142192	9.18319329095428	8.21680969350543	9.33841716268101	8.63541459759065	9.06793403102332	8.8408736759623	9.10529623847639	9.00448667151677	8.83663703347097
+"TBR1"	6.26944756057884	7.71572179052765	7.59924993000889	7.41417671988554	8.71189505049877	7.26862707500322	5.71243546046548	7.38989488180493	7.65543671853498	8.81547779644067	6.59361593165903	8.60615593928469	7.17974848277735	6.47943281393406	7.27587638988769	7.68428786380488	8.50396297796519	7.77697738802704	7.48232911798089	8.30280521360325	8.64901671719588
+"TBRG1"	6.53724218238447	6.65720912174254	7.26742007968208	6.6712606474437	7.933250132886	7.07154543225943	6.23335481605551	6.65483652257657	7.08995764497103	7.16215672090548	7.04536102814764	7.40696081603186	6.52532385461378	6.14505941677971	7.02849299386067	6.84321053180457	7.19228343715444	7.41795848517208	6.77047030283015	7.23767199109447	7.02771038350416
+"TBRG4"	7.07156327214028	7.01608049380812	7.35716438134098	7.04181147304494	7.49193275734402	7.42059865201453	7.19720350648641	6.89039308647807	7.17664972656744	7.22418087914455	7.00953063496722	6.98301306118831	7.00905932349637	7.15967137148248	6.99644787052107	7.36818527899602	7.13653766004713	7.55149219940548	7.01577585710889	7.58103836385103	7.23220080326803
+"TBX1"	5.7043354868013	5.49638797994465	6.05062428718057	5.7335591289462	5.41759730121164	5.88514408197764	6.10470487514162	5.9073936532117	5.72710491122923	6.2010684305856	5.93103133347098	6.18676503407786	6.09451932408993	6.12751436501294	5.72446534747997	5.58008576815286	6.01056348215814	6.19271346108759	6.08172457076915	5.6489344281642	6.38063479247197
+"TBX10"	6.29681570451452	6.28688431609771	6.41514183788059	6.49908470265826	6.00525813228063	6.76918470905205	6.71814008413185	6.14311711861758	6.46873574145978	6.29753856757934	6.16495144812826	6.36455293530056	6.36711159051117	6.73996620012114	6.46422237984596	6.14457747122724	6.25748524094829	5.8337351928676	6.41280056761675	6.29969477522569	6.4367238864647
+"TBX15"	5.95804142796785	5.66858992511554	5.72119125086483	5.76658314114199	5.59939257549508	6.33826500249025	6.19205830690474	5.84502811811933	5.88902509151645	5.91536334384264	5.47957813634719	5.91672275274607	6.00355975164007	6.09719919500256	5.99978353550201	5.64868720537103	5.84502811811933	5.61781992874554	6.24332804231327	6.00535107036317	5.84202939811953
+"TBX18"	4.00895772983171	3.75179336227787	3.75179336227787	3.71587467981379	3.75179336227787	4.02775916165529	4.06052635566059	3.79958285955129	3.7278607567734	3.98538258298483	3.66804671243269	3.68677898483993	3.53026044478945	3.92636767615584	3.28961843888581	3.60603689702929	3.7278607567734	3.41771580445509	3.72591117858563	4.25019946548683	3.79451693485146
+"TBX18-AS1"	3.47533292877315	3.49089655910091	3.38343242582272	3.59035006425724	3.38080718673861	3.61570579797805	3.59881201075399	3.5600995759579	3.54125429020178	3.6506890555174	3.51840970063713	3.66870668412428	3.66838617116164	3.51890739931121	3.61384674604254	3.57518904662986	3.62500004431048	3.33248356222013	3.74711978245873	3.57477960217966	3.60262825562977
+"TBX19"	6.29823458488036	6.46048879139683	6.29823458488036	6.1391228687951	6.28888372292462	6.72570250513521	6.27879476693172	6.61041264145504	6.14749981828362	6.32129913124423	6.15146255426986	6.19054965465419	6.32088440024498	6.58136900081502	6.11653339676607	6.46635518689956	6.28094446018044	6.29823458488036	6.24624496249475	6.07272513473881	6.19634231527102
+"TBX2"	6.56923594953841	6.09247342255221	6.12059484398192	6.03837270463874	5.85275515370317	6.82632357330451	6.67638941292564	6.22245332201099	6.20856116825265	5.86425433279288	6.04103448943119	5.85608885772433	6.11777544826977	6.53657255527258	5.58000319691657	5.43769394818889	5.94197259220617	5.6031297451732	6.04103448943119	6.0077724735066	5.92812137615912
+"TBX2-AS1"	6.7696117173235	6.57768425590418	6.00822913533978	6.10233412993638	6.20248940847931	6.63136003164406	6.95889775182818	7.13327337355151	6.26540864353905	5.73570022386607	5.91536334384264	6.18710321714983	6.8183256470184	6.9864353410934	6.519100093285	5.54415976704264	6.22329939092103	5.87005618181594	6.35754161212242	6.51353605923612	5.80313142394218
+"TBX20"	3.64913649476779	3.70072797423873	3.70072797423873	3.88252742102495	3.36708430870929	3.97669968091068	4.20479628536753	3.76813903585794	3.6259292317752	3.968841064789	3.74867582084601	3.73102321863043	3.80872295133084	3.73567261945023	3.70072797423873	3.70072797423873	3.67216776847921	3.56818542902175	3.65842300797645	3.58932359120959	3.57738665597959
+"TBX21"	5.63282737911643	5.62050253518434	5.33870334768529	5.87260163957339	5.58944504913398	6.12401433929978	5.6102519952969	5.59592599484324	5.8013629310145	5.82767518346872	5.50311121231229	5.54496209422331	5.61700263120022	5.71042722510009	5.54365866119667	5.59404133905413	5.67807564372126	5.4286662266193	5.55384248323412	5.42342710652696	5.78527075875911
+"TBX3"	6.62492839953599	5.79631832803111	4.73800329743155	5.10372259023054	5.03180377341577	6.4262291860156	6.145648826711	5.10993116090864	5.16716394510867	5.1355517906601	5.24673324753032	5.04608251030593	6.02093105254528	6.65148123200678	5.37184214378625	4.49008176145483	6.768580363068	5.12195905641219	5.36561860048561	5.46332442460654	5.09748710266521
+"TBX4"	5.59079492006139	5.69748622794138	5.60036904907423	5.76287828257261	5.54443213726764	6.00015015524809	6.1097702786667	5.55796740023667	5.76593187783202	5.78020311985575	5.29900420141478	5.55548353470713	5.81378265383196	5.9509304509874	5.4127192153327	5.3620929790956	5.65087254773017	5.54850379274932	5.64832248377758	5.55890411844152	5.64832248377758
+"TBX5"	3.81856898209698	3.96089851493637	3.90075262033483	3.647419301397	3.97471159065966	4.15208892540975	4.4330138418924	3.88560410674849	4.28464651119839	3.81856898209698	3.90301019627166	4.12999919901444	4.32690796507483	4.11745188936218	4.13354692986084	3.83712039073902	3.73415394865921	3.67884275111033	4.04538418746667	3.9901183049645	3.776287392079
+"TBX5-AS1"	3.70111978419374	3.5499284809674	3.48132366582016	3.78882791611801	3.57943334717074	3.94484757810652	3.94967167356358	3.48890977593753	3.64880646486678	3.52644109113227	3.57232604551118	3.61348094682702	3.51869206593059	4.00999935476831	3.88690327711174	3.56776925104802	3.7652745566909	3.36100780700682	3.78044226124419	3.5177454798021	3.59222776405588
+"TBX6"	7.08104100743262	7.04048797221848	7.00361099785418	7.21839794356343	6.97462132687096	7.96911332589302	7.93911642293051	7.01714163905033	7.10010084106319	7.00997589834119	6.92347093105779	7.04027758345976	7.32037416431135	7.94146884008768	7.02675060126718	6.94221210683877	7.08620504453812	6.85568628378448	7.23863305148285	7.09904907676762	7.10010084106319
+"TBXA2R"	6.15130577565075	5.88610270334216	5.93955380456261	6.2871856804929	5.95704727291258	6.71343821021731	6.09924858121257	5.88653584563078	6.30718893095196	6.28027842964107	5.83872468227151	6.16022674775828	6.40220405043551	6.54167622431533	5.91861335293785	6.16498458559738	6.11172068641129	5.81895286564541	6.34948962921218	6.11967137903458	6.30192989694177
+"TBXAS1"	7.228632927802	6.13016582329423	5.82747524499912	5.85134182408287	5.96302520936152	6.07211722569025	6.20829249684616	6.10172455145438	6.05183256903103	6.24373239919244	5.99653885950664	5.91122349333194	6.05678344064614	6.45775915337266	5.79512276161977	6.08658241244507	6.01186153721528	5.99955064330978	6.37792519362507	6.61278228188714	6.80245315204736
+"TBXT"	6.90925218805527	6.99755822814163	6.95592289756055	7.14294280130208	7.02542589424651	6.66038415916694	6.91086436586318	7.09615222716021	6.98984184930368	7.10693395754514	6.83826951917518	6.98263396715291	7.36506563370462	7.18458342954667	7.16737332537268	7.26192360843804	7.17661847767575	6.86375788117455	7.11817004187388	6.81979198363689	7.03895434213867
+"TCAF1"	6.80660695138562	7.23041974725263	7.77951749553943	8.10082467273329	7.77017327115829	7.08179218155804	6.77795574573317	7.50563409085885	8.19384933527689	7.82283727847862	7.42891233958132	7.58275610746103	8.09682625850522	7.39825068833693	8.2616759721238	6.64516476456317	8.09236766611563	7.53521348509812	7.6845503489413	7.16565407358062	7.93751491076865
+"TCAIM"	5.31330956756709	4.22859457826046	4.17032049125454	4.21872447706939	4.41014179421769	4.92733518425261	4.16939710452015	4.48685420527881	4.46829960094228	4.51769840435201	4.43786938077842	4.28345363162548	4.15272812444116	4.19641899505457	4.15088725399086	4.72000083748444	4.04296052647394	5.2185250294499	3.88509171534632	4.12590318330011	4.46762354603102
+"TCAM1P"	3.64412061090917	3.60074946264375	3.90614850680816	3.71442257546242	3.67884275111033	3.4489929057062	3.78556934811413	3.64412061090917	3.3834804244328	3.79623910145107	3.5472625528713	3.64412061090917	3.70841711686206	3.64412061090917	3.50271714503652	3.5785108711689	3.64412061090917	3.70108580504404	3.85872724592639	3.87833517318675	3.6539971113377
+"TCAP"	7.49829601142275	7.0492040380295	7.23966715334842	7.28849887760662	6.80000077511272	7.4398823250407	8.21973730532227	7.32693714762035	7.62426798274528	7.13159169598056	7.08083460396483	7.2290984641574	7.87626213403568	7.7008853665755	7.45812494296402	6.92392674640713	7.13717581818329	6.98632714091522	7.44734952601399	6.94738621523804	7.064476916827
+"TCEA1"	10.455508283286	10.0521197361983	10.0104633540754	9.92052252094481	9.90873547146856	9.62022988806793	10.3498050417179	10.2082014134758	9.89384197936481	9.76605382319973	10.2761633048927	9.92509727685331	9.77587282392572	10.1151754959268	10.1522631361942	10.1940367988134	9.79488991311082	10.4422845318238	10.1867885421263	9.8846201072744	9.61961496148085
+"TCEA2"	8.99880913018276	9.34372751905124	9.75343293544924	9.27909181702748	9.91128296475024	9.05070302067076	8.83980096181556	9.14679057922488	9.40516597336577	9.77537910096683	9.38701133270767	9.59852530068966	9.00056694270345	8.7680357717066	9.08073371544954	9.18017212033591	9.34372751905124	9.33724910181985	9.06791402199897	9.79956049896187	9.56968642022608
+"TCEAL4"	9.96221573639864	10.3262349037735	10.4410063403802	10.1186764130513	10.4316696789615	10.0971623202995	9.81600950492484	10.102538200199	10.1198470334352	10.2584720552012	10.5756350651696	10.3357083856503	10.0951538807802	10.1032008070034	9.95600467047876	10.4204908002307	10.1696569125253	10.3594163982968	10.1914780779758	10.2198673623108	10.1823937582177
+"TCEAL7"	9.20656907802472	10.3287650678445	10.1396724791978	9.96726116650495	10.342649726467	9.38159143345858	8.5873473039346	9.62544387673857	9.63875566261989	10.366782879046	10.1984177399737	10.1241126533073	9.89248035042516	9.27503016212685	9.86517496960478	10.9304483514475	10.0263901371125	10.6897118852532	9.97945200820176	10.2782831263655	10.3586271640726
+"TCEAL8"	7.8067130876286	7.89572052029293	7.84427949687614	7.97326111259193	8.26204029016151	7.35736909569978	7.04575898216781	7.8478101807814	7.96830042786446	8.12854638407798	7.92864735904051	7.82454824224253	7.71134033848957	7.35776491064599	7.89572052029293	8.13954736474539	7.76454621401718	8.03842539151992	7.96715560369532	7.96102203000906	7.89572052029293
+"TCEAL9"	8.97771693267066	8.77325666351942	8.22974931053089	8.99384890232885	8.52651954358282	8.58504330131835	8.37517951701442	8.96177045614733	8.75636592794319	8.85770386631318	8.91399023348244	8.6078725658278	9.22579020086915	8.59645672436965	9.42585729549399	9.16744651558757	8.73435284848413	8.89107895277159	9.22534426541766	8.70770627654123	8.47523198126327
+"TCEANC"	4.48075394000216	4.54030554837347	4.17876623212392	4.78097086966351	4.49463294534283	4.64746149057137	4.60213328176713	4.46995234065917	4.81323785042426	4.36650180995722	4.41994517961982	4.63868022698809	4.65311865332411	4.537699768961	4.60404506914058	4.7502554187679	4.55974308300449	4.20291384464216	4.4686409112103	4.50900777610267	4.74356226396425
+"TCEANC2"	6.57202032116096	6.56259775097606	5.97678910051315	6.54890924181076	6.59361593165903	6.5728380978364	6.79897984554175	6.36371991602051	6.41203800489747	6.43902053506024	6.37520412170257	6.28156895729539	6.73125069824199	6.9465284945742	6.35394446713468	6.50454697983753	6.50174572440532	6.23157137913106	6.18770562486545	6.57393553962891	6.56937993118324
+"TCERG1"	4.30923821664179	4.91897874371368	5.12279657777289	4.44616537052638	5.19045061419569	4.0727342102033	4.28436027735284	4.56701497263311	4.61552486600255	4.56450741974054	4.81363063437964	5.36168954894591	4.65906512218297	4.44171444848655	4.7381291567295	4.9641948533759	5.04302904134379	4.18592841773521	4.63442017942614	4.76945519842529	4.58493364333216
+"TCERG1L"	5.61587020105613	7.04742860260977	7.8389260806818	7.22583451931518	7.73655098743697	7.03501603563079	5.98722676994801	6.45562402650744	7.74985429235585	7.39645328495126	6.17779508505653	7.09429528160198	7.83995230845372	6.40220405043551	7.20267670914646	5.68647476111756	7.07946059610448	6.86539331291027	6.58985752105267	8.12256990191036	7.10175826074399
+"TCF12"	6.38496185764118	6.16282235390391	5.98125457413561	6.1681660401562	5.83808686544999	5.97883635644924	5.72669793321116	5.63859149487718	5.37381992139975	5.64125415637971	6.52215444507563	5.34382779840093	5.96746132572935	5.95236830550127	5.94715343242227	7.03080947346555	5.79362137595844	7.02594553221999	5.76372693510768	5.68898358278974	5.57951256968861
+"TCF12-DT"	6.63380730048315	6.63380730048315	6.81577098770676	6.75056245732643	6.62530188234346	6.8126091477897	6.5249630518656	6.63380730048315	6.66505067657186	6.62169246730307	6.71505767366351	6.42819441090151	6.56288224637438	6.42316959745497	6.79063034145684	7.39544770129437	6.60978391670852	6.64942964815253	6.78477987180733	6.70043703525059	6.53431056840452
+"TCF15"	7.2596887710881	7.28985573372093	7.56021973370429	7.66859824887157	7.2145684095318	8.11818716122642	8.65671667225966	7.35400719548458	7.77849394005383	7.75117312259742	7.3907333692508	7.72165625573639	7.94507718392119	7.94752843074543	7.90926413666415	7.20922577980856	7.62558336668513	7.29677269135429	7.89189763214511	7.62112036467453	7.61571700384072
+"TCF21"	3.55134049564795	3.69834232215837	3.50945730171666	3.73385019460037	3.77730496669216	3.62160727492543	3.65974483657198	3.71120258340458	4.02135687254121	3.72421426249425	3.66076069256676	3.72051189676395	3.70882931602852	3.61522483565042	3.76580023076965	3.60201888297331	3.75456791369452	3.69834232215837	3.69834232215837	3.64412061090917	3.8808011268653
+"TCF24"	2.88218610733041	2.95252617258724	2.86310062254448	2.95007272699143	2.85723324848405	2.93265315111108	2.81673008728174	2.83759766978312	2.91928741107058	2.97592694330417	2.97012088085373	2.89259680476505	2.79418549541654	2.94707088485561	2.89334938526495	3.02185463037045	2.94934179008082	2.83425603849225	2.82228512259627	3.1589810447747	2.96688264275131
+"TCF25"	8.86678105034953	8.8454628832261	9.58279631720831	9.12368765387674	9.60019090286497	10.038073085717	9.10411810498042	9.28741809887315	9.54179160987279	9.29391986587003	9.17779068782396	9.25333728500617	9.07997405774854	9.17779068782396	9.07658679706558	8.76049216404078	9.12550098855359	9.17779068782396	9.12302865126206	9.40211148590074	9.16540095908673
+"TCF3"	7.88799799675833	7.22265725129525	7.38984195413413	7.48478545541402	7.06391584592196	7.55918358969006	8.10848773664383	7.23700990705957	7.48207398764209	7.02338725841912	7.56644873671214	6.72405583447312	7.54173752259339	7.90647999962907	7.63437043550821	7.17569968766103	7.00680096703561	7.64339135337672	6.96157193051291	6.92347093105779	7.09759496815981
+"TCF4"	9.18261648023834	9.4583476225546	9.94407842072058	10.0224806349921	9.66889641786003	9.24074196924949	8.76124489202903	9.27381673099294	9.94622918091673	9.4865961427577	9.97902812805771	9.90302983071549	9.84654454465995	8.97485393500294	9.81491669817243	9.30133475898715	9.29212835144883	9.66006492720478	9.87047445564509	9.76887802095076	9.26010162785317
+"TCF4-AS1"	3.83299029520323	3.84945920068205	3.91747881625649	4.08986887379421	3.8901538323022	3.88526813039527	3.81579592435248	3.80365862668645	3.89750769692117	3.87865233182402	3.66661613396359	3.87711895197206	4.00965652729666	4.05408047721379	4.19794808995294	3.77141870879756	4.09423911264957	3.93567284927877	3.91747881625649	3.83146692048911	3.86118470265649
+"TCF7"	7.9095012403808	7.71848165138912	7.4740952462494	8.21454894260644	7.23474477261291	7.75526817533251	8.36589924498153	7.97930301563365	7.9846567369716	7.53183084775771	8.13767595186809	7.51964376371216	8.01746535534387	8.24349255442572	8.04975766609715	7.71700194003083	7.80155546232136	7.29423932486654	7.8815775667948	7.59010523912175	7.56241958563533
+"TCF7L2"	8.71446753601002	8.05995688405642	7.49274288207001	7.76909268873312	7.87415932114674	6.61619190586223	7.94132077593106	8.686152942197	7.69609762898991	7.82286625317554	8.41179343980377	8.05505732148588	7.456355762506	7.38841707486216	7.26139232451392	7.66272450545208	7.97462049414181	8.0301176375529	7.70178601956211	7.71677982463268	7.3483364283163
+"TCFL5"	9.21525891937742	8.94514969995434	9.09358808243174	8.58952480368126	9.1937371833418	8.62397442667825	8.83160538563528	8.82375499735795	8.71377573836858	8.95658262333905	9.50137272307442	8.80729140835162	8.90131636847091	8.70888572925752	9.27488220544086	9.49498113470401	8.4542434771946	9.7244141340737	9.08820390199049	8.60998141353363	9.1044275798524
+"TCHH"	3.94826121897251	3.97150833831137	4.31118207652532	4.07235018231372	4.76209734611844	4.57658028612587	4.04425308679246	4.33767912485252	4.389133754474	4.49764200309797	3.73262538021818	4.42764418536644	4.19662030637118	4.19902883734431	4.13175841301319	4.16910210131818	3.90905761478339	4.02973702063064	3.94274302546729	4.08381974492992	4.49870640447498
+"TCHP"	6.31843341139208	6.10619042445058	6.1446674951535	6.21462221093259	6.32203559388712	6.54239243094504	6.59219254372013	6.1338456115574	5.99616389708388	6.29976115337439	6.49615952332677	6.27807344296678	5.93658933292212	6.18319097887053	6.28260057521692	6.14702231380392	6.36944133819442	6.65138571357318	6.60254105700654	6.24533970727445	6.29976115337439
+"TCIM"	4.39205389258366	5.0658237392152	4.90718520917642	4.64257718809396	4.7015655743196	4.63136274358556	3.94046105449602	5.26736388683799	4.42561278016066	4.28731323348958	4.88722825355444	4.64257718809396	4.49562410872534	4.53072781803859	4.17450238299473	4.70057938249955	5.30538578436497	4.82732492715984	4.67224775072432	5.1654438037516	4.51779190797839
+"TCL1A"	5.38238270986593	5.48367014386896	5.23045797676844	5.4102528756812	5.34687002211015	5.40314488634236	5.51407568144615	5.32249759212198	5.35628920181812	5.40947749536231	5.04482816624181	5.40947749536231	5.46650434281257	5.54359948025291	5.74495922482851	5.50983964895606	5.48393179745429	5.19543711753218	5.46501251332514	5.24624320054779	5.36989664533883
+"TCL6"	4.30223424253507	4.69310271308822	4.61886733665772	4.79265385025253	4.64833828221385	5.06336421231645	5.02951770924346	4.71849230660442	4.75775944654453	4.72051542604598	4.74977159037828	4.86604282983686	4.87878469358452	4.6273134996142	4.55054144635668	4.72083029964895	4.81892966723247	4.47934520928788	4.85225910778789	4.44210031751415	4.72083029964895
+"TCN1"	5.60000435701556	5.02911786542874	5.18895106733416	5.30462127977054	5.31019281151044	5.42321132290236	5.10149756472385	5.53795974528756	5.02911786542874	5.3053614650424	5.01677985334757	5.27339939573374	5.22441147116985	5.19630676213337	5.41792979379	5.13041294329029	5.19821854950681	4.88175163434511	5.10945207947183	5.35777734272973	5.29555200483629
+"TCN2"	8.15229918551145	7.07225667803117	6.85416812819391	6.88228675140249	6.80128705907523	8.13015588290706	7.41482650647386	7.24028639539719	7.12783377061745	7.1145253328448	7.19270539772748	6.95532280948513	7.04735157095259	7.48525652838054	6.90420207889649	6.74592026757103	6.96295344895957	6.69033938363397	6.44485216423013	7.48194487355545	6.98263065993718
+"TCOF1"	7.36395268419263	7.39986418256817	7.69132286361511	7.64577537808374	7.19342780080598	8.12687747437991	7.93804648884061	7.5623211717898	7.55901408593781	7.29860963692309	7.60763634212644	7.32550256772049	7.93929380839797	7.74581835590478	7.54798249173218	7.16043343085371	7.5069447244013	7.67844945082685	7.55328609169768	7.42603097648526	7.36148726146167
+"TCP1"	7.98058257398728	8.27570056383543	8.63758125536733	8.64892171815382	8.98097260608008	8.18314876557741	7.85926730041554	8.19158033913336	8.95171883832868	8.99185111569262	8.2345570294235	8.69032335443118	8.68497981070339	8.15044598911546	9.11476923859759	8.57139715530984	8.69974401149472	8.48746676677842	8.53250845631298	8.8499197237761	8.98593763557277
+"TCP11"	4.73951048568161	4.95105772930104	4.8929468478976	4.97632125319961	4.93073551354312	5.50076182085259	4.76968755238661	4.89272800369349	4.7657853608053	4.77419844671583	4.93206610232502	4.77189758659177	4.94903868566438	5.46726777645626	5.23602143766179	5.0213782102711	5.03344733142472	5.11179741828753	4.94025668394424	4.78120004092926	4.94025668394424
+"TCP11L1"	5.76907570191522	5.30263388734634	5.50805428305916	5.62545605076902	5.85163991633072	5.54450087133998	5.62272221190071	5.83643805082264	5.96464064500647	5.74141366956521	5.7415743806002	6.2149339530479	5.50076182085259	5.69937765031506	5.153015357673	5.67676114519077	5.70964035323937	5.93369577311153	5.85163991633072	6.52141623116222	6.12440836853375
+"TCP11L2"	5.67954093536105	5.65682701249644	5.21999651643037	5.7899061833471	4.92029673970222	5.91915375434027	5.67721547412122	5.43262190132402	5.29766990450165	5.15336910297868	6.8825386765235	5.45128258912039	5.48918147086624	5.67891345009111	6.11725136975127	5.91309396727695	5.61329924311342	6.32995957857426	5.59229093717419	4.76353761690731	5.43886167119083
+"TCTA"	9.01439593237636	8.60299675754135	8.57260767143844	8.27628954346259	8.42389195258085	8.38267137309723	8.27530463912463	8.41667257496592	8.03876727145654	8.46097133030513	8.63501114930182	8.38023218943528	8.10735266027073	8.56464203122444	8.36159092455029	8.66890666495669	7.96123607943013	8.56917718045582	8.32361718453779	8.72266787092502	8.42862410198193
+"TCTE1"	4.36328843330348	4.51957204026	4.60204663626512	4.69591879902093	4.71933446662807	4.82559194285484	4.77706083110315	4.28986182991063	4.76862915458179	4.68598755170299	4.60204663626512	4.71268277324432	4.68479473490547	5.01658454510527	4.62638109217	4.65029288499483	4.42777854780877	4.48144569734792	4.46296376909461	4.69497467028898	4.96316815536117
+"TCTN1"	8.90715650883323	7.98363022459678	7.91240732595019	8.0154399376872	7.74974045930593	7.69063658966917	8.27233981154447	7.79715544723569	7.87592677701098	7.96709779168137	7.95073540814142	7.85409506942292	7.51154262270823	7.66826614280231	7.80923326433857	7.92880770420029	7.75873986009699	7.86759112063698	8.00566732175187	8.15082052273277	7.70719252891459
+"TCTN2"	7.38229799008286	7.6843616334574	7.19845204856986	7.65057677154956	7.38309241843478	7.41425081000114	7.14399512697911	7.30195335111342	7.91413057909116	7.7279623027051	7.67885276595946	7.72756369416635	7.58822506920986	7.42587963028943	7.6249994962601	7.48517245227973	7.65680976288312	7.33216247723188	7.59254964236803	7.53439680564294	7.63632370646767
+"TCTN3"	8.35674087740858	7.96272566859718	7.45063350699488	7.59392583938937	7.8248489894889	6.94518389756006	7.42290770374053	7.98201960467605	7.33711809871793	7.81565119071814	7.94272266517896	7.64279686013012	7.0327794742204	7.039224556632	6.9505105589878	7.85443141620286	7.46382959869646	7.7983705921986	7.4139534222869	8.21007491788645	7.61194815146463
+"TDG"	7.19243654713854	7.17423247863672	7.53781061298902	6.48261049278294	7.06419233363871	6.51871235859773	5.84581167404472	6.42717614131753	6.41835831675987	6.69795309931905	7.34043119365061	6.68548519940073	6.45639075043616	6.31355869286033	6.19465586864284	7.0661550405022	6.61054237648961	7.64218520339679	6.56306274160493	6.94303931006383	7.02384616734683
+"TDP1"	6.38663433850913	6.78202003517772	6.74205121384921	6.4206795036339	6.9367752972011	6.85611922781771	5.81301623940675	6.39743683201262	6.38963934040554	6.59277285216228	6.58290925095411	6.65005843371788	6.4191613175982	6.1232496157976	5.93588134918238	6.9532390077269	6.45657035639788	6.52166665477333	6.54902609281735	6.52724318821584	6.61264642227012
+"TDP2"	9.44226506877292	9.303142356201	9.3841968487348	9.54496210697439	9.73340421109089	8.69306132157668	9.07009192192903	9.49905776320133	9.94974348786688	9.49200103856242	9.17865172721596	9.28893509567898	9.45707578025676	9.18103671699951	9.80169482439018	9.17044620291085	9.60260683502084	9.45304433271778	9.64080293787864	9.44845795369377	9.39767378801161
+"TDRD1"	3.41603442714824	3.74258338856422	3.6189740641242	3.76102839867748	3.73763891533997	3.71274858892329	3.51694315496232	3.3562939277491	3.62589837570552	3.57847808451308	3.31174663356633	3.62255662309589	3.45252382857001	4.02468407160474	3.6187736782947	3.62589837570552	3.59222776405588	3.40045363296547	3.73681306480602	3.72421426249425	3.74114525193151
+"TDRD10"	6.40448362793557	6.08608159595081	5.92556608613046	5.99811973014312	6.10919859527615	6.40285096670118	6.79307329685268	6.57725320841476	6.42103138873737	6.12779990155855	5.83663236063263	6.14505941677971	6.1966868184192	6.3593364505816	6.2251113155525	5.82718543692158	6.14505941677971	5.70031164048836	6.31465429188888	6.14505941677971	6.10118465296303
+"TDRD12"	5.67193313290703	5.74219002953961	5.7662511083396	6.00183583184471	5.65416627912434	5.44325606141007	5.40834570637448	5.70352318463887	6.11954192137736	5.80476619974883	5.58539391842588	5.87697684970666	5.74637238432858	5.76848240564565	6.17434970442643	5.57211332451728	5.95252291732142	5.78617945977011	5.83941099516364	5.59295096993545	6.00787365592596
+"TDRD3"	4.84903014154153	5.14873718901971	5.35937988821561	4.54901542189891	4.92021486973681	4.76164416178416	4.81924785154846	4.84755633110912	4.40669331219299	4.58246856755352	5.05247742746534	4.88261186756408	4.77841853888235	5.18878022654489	4.77027776729612	4.88300056354246	4.5812781911688	5.43497660447376	4.7585393407707	4.77210744645276	4.62126593416829
+"TDRD5"	4.21136441598301	4.29170744628648	4.24698666557721	4.29776200659827	4.19818030628423	4.47105660060982	4.14364875056505	4.31551769768325	4.23934261498496	4.35373216996865	3.94309747362778	4.32480139215437	4.20202412617302	4.34436106964335	4.66309177277098	4.12383101260942	4.2301701779337	3.91063534180566	4.51083815714316	4.32016196729362	4.21744278409201
+"TDRD6"	6.83079061073381	6.76642811518091	7.07185023343112	7.5217063340537	7.01976021599913	7.82328074926403	6.93828322154806	6.87606939166684	7.82581395887575	6.81844468952369	7.09897532841035	6.28728200923485	7.3191495156157	7.22065451471941	7.6272838671897	6.91880359863623	6.81223188253275	8.19291041206389	7.24055355460436	6.75695419922659	6.18241970740759
+"TDRD6-AS1"	4.22977341760778	4.22080119824692	4.24495336796218	4.33405629961484	4.28365419083376	4.47039654286419	4.75515345539722	4.0634551327018	4.07389109423161	4.27403751791884	4.30528661843547	4.26731843460554	4.49289627256144	4.42267704672882	4.69630494877132	4.16910210131818	4.255727397313	4.08050335676372	4.23904528155957	4.29454520586591	4.16651046562036
+"TDRD7"	8.31830144073444	7.58840013833971	7.79705814386877	7.54980232806489	7.91936737960274	7.87951681874719	7.85217571021072	8.04780644824192	7.83013969802149	7.70910628977316	7.7306487874276	7.46824336173411	7.70087044983914	7.71317367322139	7.64424375706763	8.0757932998166	7.61979814711263	8.2672349395432	7.91117374974617	7.962278027916	7.73236324643142
+"TDRD9"	5.91889788581651	6.06513876582972	6.83949481252784	7.13834524908314	7.12027208610874	6.74480223809023	5.70941252270814	6.61050923896395	7.74534993867846	7.53582029877394	5.42210685631753	7.29171119911545	6.78398096841056	6.39968001666579	6.94092135745921	5.87505042528333	7.19349939722942	6.67886755408083	6.59668174076241	7.27839566762899	6.95694935555601
+"TDRG1"	6.60709785904113	6.9511055524804	6.57846415768228	7.19775591180555	6.8485504803115	6.81583383839139	7.30914723456241	6.8215318420349	7.182984678747	6.89178757864349	6.8858263225502	6.96582044811479	7.0817937206027	6.99330804408429	7.2583311009983	6.69721810257157	7.01783828581237	6.46463129274455	6.96751108947577	6.69439317176253	7.00984338039937
+"TDRKH"	5.52257751801984	6.25302858857152	6.22445696809281	5.91536334384264	6.6842099193791	6.13275519249282	5.65917756304385	5.82287033003888	5.71944766255657	6.09469332190259	6.15000447449498	6.24288562322093	5.71020886886049	5.95039301640396	6.09469332190259	6.49595421256429	5.92325719672548	6.57496966925643	6.10091257464586	6.89416726608917	5.99542168015158
+"TDRKH-AS1"	6.39752104689502	6.61899963734308	6.51732755634475	6.61899963734308	6.53266128419985	6.67152575930101	6.33273869220138	6.53122612415024	6.51652329897849	6.58165977979238	6.56680082058674	6.78316077446483	6.71490535442795	6.80330703125581	6.61899963734308	6.79804124979269	6.74755800150093	6.62960515755482	6.79867227357904	6.62736259047128	6.57346932797424
+"TDRP"	7.66101220968395	7.36812331313993	7.91268643514272	7.50345669150271	7.87833322523669	8.02270770384017	7.55095613137391	7.75737686912854	7.89254381248969	7.75128559176329	7.29191400634008	7.60564216005431	7.82067908548707	7.81917679420836	7.96722372860772	6.9664043423685	7.56919979444927	7.36644042519302	7.71023645288424	7.5351143323525	7.36429245547196
+"TEAD1"	6.34397852913941	5.56713522577168	5.4526625410005	5.84936424779954	5.64739750554518	5.1290506554317	6.38678885550097	6.2320626052098	5.78335248422225	5.30451727744966	5.73953818878798	5.38082357588744	5.72357813732374	6.28696949438134	5.84625298845644	5.03948443370142	5.59869304352695	5.48514104319071	5.73117766884393	5.57469973640947	5.33358936572871
+"TEAD2"	5.48443078817688	4.2089284474662	4.13383460956522	4.75770544098972	4.65435723856728	5.54450087133998	5.01857896396447	5.28639730079577	4.71943392131389	4.86896454760695	4.10881133891305	4.68090610038749	4.85976682505217	4.5820946149771	4.72083029964895	4.35089602065438	4.32926451161778	4.31310377553295	4.80523419036077	4.66146725642774	4.68090610038749
+"TEAD3"	6.7675727151986	6.02157572737164	5.92215013472151	6.12642086271483	5.8692499132607	6.20370287999373	6.80047763985336	6.93603433491368	6.14847651817253	6.13282656842394	5.89000886198771	6.14847651817253	6.4480912912976	6.47409195015344	5.87206249979572	5.85641730009912	6.23953728319279	5.5884291757197	6.32341851743183	5.96590682256002	6.04583815938298
+"TEAD4"	5.88581245394652	4.39555800284339	4.2413760967947	4.50103277917804	4.36478441116006	5.04014215505011	4.91448973849642	5.18017505981597	4.59757466965515	4.74848777555723	4.18106139997512	4.73523829874275	4.87774543459683	4.78868838928378	4.54737313604507	4.01771628862738	4.5087446683322	4.32656660789194	4.46364881170442	4.91248930434261	4.96389142558172
+"TEC"	4.73017789025103	5.07499659046383	5.42210685631753	5.20217612202266	5.37374158101716	5.27428642912524	5.18705417517784	5.17016984291871	5.17016984291871	5.07967404461536	4.80343710514449	5.03185056224041	5.31832200862534	5.12906069912838	5.17016984291871	5.1906142381353	5.33439988121738	5.04157843854107	4.96211540351486	5.38603889439624	5.34161859037962
+"TECPR1"	9.75089288260925	9.88479968495951	10.2403176701541	9.65467147941844	10.0537982694622	10.2051642704397	9.90528231571864	9.58327339849977	9.8699725529372	9.76108644044366	9.33082110447541	9.59406042188875	9.8324336725479	9.93613244158391	9.42907077046636	9.30713006064863	9.83462224899395	9.55514861366945	9.48248402819735	10.0569238868775	9.82199670337398
+"TECPR2"	9.19829881817806	9.44573661245041	9.544139890504	8.80860086205893	9.1637478234857	9.23192637333485	8.98355398591949	8.88844045423835	8.82033627633123	8.9266740230005	9.34602369523218	8.91529164201588	8.65128512351355	9.18275147508584	8.19829727223836	9.31426923890274	8.78714517801619	9.36023391548798	8.44483101919349	8.84075661886756	8.71333577461648
+"TECR"	4.72427777985699	4.62149463652722	3.4055218322047	5.41877729700536	3.6092715809649	4.16247208293467	5.47914931660167	4.75612216900299	4.98464935754104	4.33789379744015	5.15599589748162	4.30271250939001	5.72196834190985	4.96541510028414	5.66696162927942	4.93779438031075	4.91518442952782	4.24801135314139	5.05370803096715	4.22186326915456	4.7096388695463
+"TECRL"	2.650293724073	2.66368370315715	2.73616944312954	2.77072192219387	2.74134699092481	2.77675190199122	2.87168763895824	2.91928741107058	2.81771761559079	2.63224263848732	2.63224263848732	2.77072192219387	2.80727337020919	2.97764726086413	2.7855079572659	2.80787515902799	2.71959508339628	2.83876879538088	2.89211951689595	2.65039967527242	2.7854662612509
+"TECTB"	6.68865595836221	6.75609679412622	6.54073036784031	6.61620117866378	6.69199942933383	6.52525872742826	6.61620117866378	6.55245495464542	6.48073839701362	6.70974255652573	6.29315813500628	6.82661848401573	6.80209305944143	6.68877574564659	6.38717597132085	6.57797197751965	6.68621710415884	6.25521580988758	6.65159556357649	6.61620117866378	6.68017332695675
+"TEDC1"	6.90615938449302	6.86469623532995	7.15346058206455	6.97498953989621	6.88581821430231	7.09625168976124	7.12921700039156	6.91742132610549	6.95808823116912	6.97498953989621	7.05367161595268	6.97498953989621	6.96769680368937	7.23760299733288	6.97498953989621	6.97498953989621	6.89813267029052	7.05841440111878	7.09587279379746	6.70876631937896	7.22887751667864
+"TEDC2-AS1"	3.12014452798903	3.12338376383117	2.94906970106365	3.19407322870612	3.09402523048826	3.12014452798903	3.0579163921828	3.09996333905018	3.18478628453647	2.98300977709343	3.16202952026934	2.98709474894248	3.41552321590138	3.12014452798903	3.20727955547696	3.09811789549874	3.02257456863885	2.95170610027921	3.19054094664267	3.12014452798903	3.18404779816901
+"TEDDM1"	3.77009496089724	3.88110234727291	3.47850683093614	3.77952063972948	3.87975300540971	3.84209493904933	3.82248156077009	3.72957245274403	3.86293206745484	3.64646847182225	3.76455447487328	3.67392577932605	3.86804889585085	3.79639706942021	3.76830071948764	3.7852544207972	3.85417370061853	3.25423569986754	3.75790143303712	3.49771513969776	3.97737911655965
+"TEF"	6.66381304645879	6.69788000210891	6.05168246474947	6.60086186402587	6.90353642988374	6.5023989155065	7.29395172724476	6.60492717555737	6.93153583734881	7.31991371044663	6.4204467450188	7.456508436787	6.49494737648363	6.64887516358037	5.93769285926254	6.80917814334223	7.02928903854145	6.65806454110958	7.0786757164947	7.65108728251169	7.61965351117263
+"TEFM"	7.05152375415468	7.04790349646579	7.65467981995919	7.04471501705567	6.97887939655147	7.1408155057696	6.9275785467286	6.79710788921635	6.86689467395817	6.59058100379148	6.9752181213705	6.39769236805229	6.69532639408647	6.95870016923919	7.17941826979763	6.96443221689184	6.4972844645876	7.46196290325471	7.05781657580975	6.53887246347587	6.8240006895091
+"TEK"	7.84166826791572	7.07020580166799	6.90529766290651	6.78918870630357	7.14990626607867	7.36898626974863	6.75791865608757	7.07756466685005	6.56697595963815	6.64154176170083	6.67278548531377	6.1703154023352	7.15608473544169	7.36056078172856	6.42321152205955	6.32032406766099	6.42217541481407	6.70164076838791	6.40412640423904	6.84077998819356	6.30360645076278
+"TEKT1"	6.10301861456815	5.6545712205523	5.45658220390133	5.72570676757145	5.68456896969586	5.48826228371695	5.51403668859576	5.66977002192482	5.5416937103325	5.93753873672931	5.91891513021583	5.71124082241903	5.65864677671019	5.50032728211336	5.51762034935146	5.60706860583396	5.66128153398499	5.57037719895887	5.4532867872455	5.55953811306529	5.71044739331995
+"TEKT3"	4.51108500060304	4.27128440667881	4.28708897919828	3.75182617157626	4.05535627221168	4.41861152900606	4.00587192660559	3.96038723106347	4.01734744721518	4.16325644402003	4.16822740928304	4.1338155390393	4.0058921276801	4.16164441390141	3.9742521642586	4.14839848269433	3.93147372672101	3.98984750796589	4.1406501684265	3.73007004815115	4.1338155390393
+"TEKT5"	5.5150821698887	5.56380593512626	5.53722856108606	5.83269073342758	5.64193125542561	5.89833956398587	5.74948659954807	5.59410987661858	5.82437424889059	5.73586417311183	5.62375493414658	5.70579059374464	5.91600082417919	6.22252446899197	5.89530392237439	5.52452179902841	5.96627042766213	5.61962417799888	5.76300738175715	5.50627906310253	5.80721348981571
+"TELO2"	7.33653590474333	7.19415747517753	7.45436722781136	7.16508777621845	6.86707101211519	7.21142272654486	6.96830764587146	7.09959479863922	7.00656276964388	7.00984501932559	7.45392713827852	6.98762125007567	7.16885154019807	7.19597102988529	6.94404352800825	7.24652335543905	7.00383391462591	7.11602911284445	7.16581513037224	7.19540050724735	7.17920055081271
+"TENM1"	5.72087946566561	6.45869464627097	6.93016246383629	6.27225131441596	6.35010296551006	6.49804472660575	5.61789469161107	6.42593821995991	5.94002697121238	6.24841141908848	6.24432853142872	6.65045503588868	6.3056732599643	6.04116219726755	6.60424680594401	6.0344368376703	6.64756156691624	6.57367439044908	6.24331958788514	6.76638237167312	6.44381988044402
+"TENM2"	7.97751674275361	9.25508046431373	9.77402730036624	8.76481926148918	9.42524794124347	8.58020405335008	8.22585142236291	9.29693023559854	9.09583082379818	9.12807148421975	8.86768875264851	9.41755694011145	8.80592513548272	8.66561528858936	8.99287179885854	7.85070399704768	9.15206169723117	8.67426822999576	8.85943114966137	9.38112336899683	8.87877514561301
+"TENM3"	7.09094971340934	7.31386441408894	7.75067731103022	7.44045933228764	7.65630761410666	7.09386443114306	6.91316581984442	7.37925791600435	7.49247051318232	7.3437997240649	7.31811384615841	7.81003283829661	7.16251581188795	7.06582053487343	7.1474279129002	6.69721810257157	7.39966603296975	7.13460360954549	7.23563716149139	7.81376868950974	7.0540075114363
+"TENM3-AS1"	4.41808910441791	4.53315037388182	4.53409844399683	4.78919420727312	4.55371322820724	4.62406050961579	4.92864652751556	4.39021554777348	4.61552486600255	4.72925831005952	4.62854743501637	4.56622116276481	4.76527412297395	4.86290187161955	4.70168990299192	4.49109089591443	4.55974308300449	4.29806685972698	4.67868554696718	4.69823616351216	4.74012697609963
+"TENM4"	7.5242497520056	7.69750657613351	8.08244560908772	7.51733912613151	7.69750657613351	7.76926857160987	7.76313944407244	7.70586536097609	7.54291374017722	7.48811084061213	7.48348123760534	7.84309852913033	7.68123223748113	7.77858671494019	8.01832997750288	6.94820308574779	7.82695604158675	7.37989208810029	7.41380869042887	8.04020351467161	7.65767144001011
+"TENT2"	7.1515265472762	7.77904977915139	7.16929530980547	7.1866105136463	6.962090372572	5.98265549146097	6.72171494221089	7.37600409044543	6.26459156734333	7.17692275422937	8.2022704173646	7.60628161623832	6.98943147130788	6.58865921224893	7.27392210649928	7.75468612227821	7.12787321988581	7.20373767369664	6.74512867875651	7.14898760459172	7.20904874364672
+"TENT4A"	8.69353145193707	8.65612032863917	8.92161355507202	8.42908357122536	8.750657744398	8.94900150658179	8.41716548414446	8.68272178733823	8.6808414624055	8.60746300394452	8.49220324960827	8.57225348324562	8.45931512573065	8.24545583028538	8.6808414624055	8.70494135058667	8.72388493367307	8.95267487423282	8.60802325806372	8.86058076543713	8.75608214246233
+"TENT4B"	8.15497172107253	7.96091158493096	8.30500191511592	8.49013070483222	8.33595765948118	8.46452875484268	8.20025794605212	8.51697063630592	8.70912071698156	7.90221191474443	8.14185383545424	8.06328308030896	8.75989050172972	8.02862443081431	9.32457994227768	7.52721001608317	8.35387144008943	8.38090453049063	8.53622472168476	8.12761712102595	8.08760275734545
+"TENT5A"	7.32840926855866	6.77788507480237	6.57011230636012	6.5896789266659	6.40348956426291	6.911373197088	7.04592161028734	6.83576567840652	6.67908084487315	6.94199345441386	6.60655690446163	6.18902872851675	7.10164443598136	7.03331686615669	6.62666752626276	6.64107386616984	5.7735212105353	6.54989650254595	6.93715314738685	7.8304058832321	6.0077724735066
+"TENT5B"	4.69392436485101	4.70735495688916	4.58299674018929	4.83253003256814	4.75357128378687	5.19022047852404	4.89399645132904	4.80007060014885	4.52002090455664	4.71957112727674	4.54404082815451	4.80309460968541	4.80419531992814	4.99169548668545	4.59124170527866	4.5456911877345	4.60968080067627	4.38335005836973	5.32288479715883	4.63221404057035	4.56277303139187
+"TENT5C"	5.05330400993269	4.12897941152772	4.10115781346427	3.97550817291774	4.04219299657401	4.891431597517	4.69629642509765	4.98401650760937	3.81870236288815	4.29679819879824	4.2493817728559	4.31739159785176	3.89650871958774	4.49635163310555	3.98430862124363	3.93856983158744	3.93954892188633	3.89366490090284	4.4434195288916	4.56459375405708	3.8517409048821
+"TENT5C-DT"	5.01897128501505	5.70712508833839	5.53147984400162	5.55511065408734	5.55890411844152	5.91038121646021	5.72372569711412	5.47627961230892	5.37567759431029	5.53147984400162	5.50816853495466	5.53147984400162	5.63316248108337	5.60037863916913	5.53147984400162	5.61002488433171	5.45304327848075	5.46935838270425	5.82224291946633	5.56524846601564	5.39998158247345
+"TENT5D"	3.42792899656541	3.34202258277284	3.324262402739	3.20374773172787	3.12741728870294	3.2979647842187	3.08687315194689	3.2851302850487	3.37180487276591	3.20653869460956	3.27420848537286	3.24965077554178	2.99674820922489	3.29110631138692	3.13329392502665	3.31893010948729	3.27258665127325	3.24723370187641	3.04039781127355	3.24723370187641	3.17918682868941
+"TEPP"	3.75183150257222	3.80005852962073	3.9346556799432	4.003977281991	3.56312798269483	3.72416289532846	4.24646991389704	3.81806132710744	3.80005852962073	3.8456475523751	3.70586502809446	3.82055721801001	4.12111016678412	3.85216886690786	3.65653059714466	3.92210554109285	3.75659157944086	3.35139645165448	3.49273290533484	3.93974087141125	3.63906509672344
+"TEPSIN"	7.36262369709599	7.07582647615095	7.11158832747319	7.05231601685948	6.7498716276438	7.26862707500322	7.23207981828464	6.69468004775904	7.02972354002215	6.86185196907264	7.1351661980859	6.48118117581136	7.05026211592617	7.29774872403266	7.24260302908112	7.31599695031502	6.9130828520083	7.43493953556206	6.83548986066946	7.06070700358474	7.02749157498171
+"TERB1"	4.50306392796066	4.61631053093441	4.34947452007875	5.00508640426262	4.46500825114756	4.62406267649096	4.55611960115014	4.64888687601474	4.3551052879075	4.48114687853783	4.17140838944195	4.53552366041602	4.53552366041602	4.79210893742798	4.72433025524069	4.49583045015904	4.474494598643	4.03369202619659	4.55974308300449	4.61552486600255	4.60918742653565
+"TERB2"	2.77066961235687	2.92593389251011	2.77129229170966	2.87718513789408	2.84966013688478	3.02828535289517	3.02828535289517	2.81653734395985	2.7831385465742	2.78697637892502	2.84456447417601	3.05538898389637	2.93664002297477	2.83021211122308	2.84966013688478	2.97452222011415	2.80935311903956	2.69883594377298	2.78015075287997	2.89799066069904	2.84966013688478
+"TERF1"	8.17867215491116	8.09304108320019	8.27015701792977	8.11878641527048	8.31809367651397	7.65177898859526	7.8964336672582	8.26512158928265	8.14120485834523	7.97501408854485	8.37142052915165	8.17375523915518	7.79631111952332	7.79414613097138	7.81930009198407	8.17798148980431	7.93067051828456	8.12900535078326	8.11012379635333	8.08177312734547	7.82376867638235
+"TERF2"	4.67335215152485	4.86665913206412	4.90556366578064	4.82462342051694	4.98172757029538	4.84046300204326	4.84046300204326	5.06726671867781	4.84046300204326	4.74243151448251	4.75062391456622	4.84399291097324	4.57943544316606	4.91751054545909	4.54391958812164	5.47886844845875	4.87687019804538	5.15871080022096	4.83752883378858	4.87598852855677	4.83026202809091
+"TERF2IP"	10.7138206586853	11.1969137473089	11.6708744561976	11.1969137473089	11.3495942141358	10.8935303391591	10.6472734500899	11.1926187597874	11.1969137473089	11.379862401976	11.0555658460578	11.3885876020471	10.9241372855063	10.7121444376463	11.1089949152085	11.057650415586	11.2827869213733	11.3131148694599	11.2127316893153	11.3871480119287	11.2445780950447
+"TERLR1"	3.76649585251223	3.47115147475991	3.77157034148299	3.71442257546242	3.60111769582681	4.02862270960725	3.97521665806832	3.82270779330111	3.81926430364097	3.76744859604674	3.72465645584783	3.63621894665532	3.82021510299314	4.11583767046236	3.76704322252342	3.69827400941782	3.7686236235222	3.68142942310939	4.0810594217195	3.79275084945877	3.74453742289559
+"TERT"	5.04040613638693	5.33141305867296	5.05497694948843	5.29093791528405	5.31076641129528	5.19404076426684	5.65564922480485	4.94721051893728	5.09216852066327	5.10529435675426	4.9471324859775	5.15239917715336	5.25696005727347	5.46701065162807	5.31165532800993	5.22431906041889	5.01213191880492	4.91728782833638	5.25577253233789	5.15239917715336	5.15239917715336
+"TES"	5.6432939340269	4.6343961061944	4.90182897406792	5.13787759776054	4.59179515955708	5.38245915753718	5.10741577686498	4.97111826279884	4.66968792925109	5.02135848583469	4.56180437985695	5.06017932876637	5.13495978793461	5.59140381272771	5.090113313955	4.73604546221197	5.05873631754446	4.2833753027289	4.89954698891328	5.27381400116383	5.58000635909925
+"TESC"	7.26129668435456	7.4962244095202	7.68093540085919	7.40393091381248	7.75552009690376	7.50492770560634	7.3489305097435	7.12909263414988	7.62523167282733	7.72742955607001	7.12805831900099	7.36520048978601	7.50742242341191	7.44733062040791	7.54306009983644	6.70709250325893	7.44733062040791	7.39198514904248	7.36595019943081	7.87273525182468	7.77647059712629
+"TESK1"	8.25482100175501	8.19047290279065	8.47653138146213	8.14097704674027	8.26151096157394	8.58799655737656	8.58265786712288	8.33132181854034	8.34956504785129	8.15781078295335	8.1241529391073	8.12293668040937	8.69480553433598	8.55346003415377	8.33887409747897	7.81179780517151	8.15821978258452	8.27866384563759	8.13950114216252	8.25965997980369	8.14687773338029
+"TESK2"	7.88262707305024	7.962637141173	7.51951731285589	7.43030418182391	7.50616837978081	7.50616837978081	7.3636512158865	7.84698942930537	7.30473796886089	7.02857298229553	8.36711805667171	7.50616837978081	7.23849245362255	7.2596887710881	7.2445310187634	8.88028944363631	7.33455875114931	8.58587809621825	7.25681124291576	7.23158832093467	7.50616837978081
+"TESMIN"	3.43001037813412	3.68328778291583	3.47570588336899	3.65514425805293	3.6415758774671	3.50251117806374	3.37809168709734	3.44796959281339	3.43278725681971	3.60683511117734	3.46200000980354	3.54448808703763	3.62589837570552	3.69068742859288	3.66525972080725	3.71829381331515	3.68494541966937	3.46391080648638	3.56641753981467	3.52526184980545	3.50995117845856
+"TESPA1"	7.71826086653964	8.70738024223102	8.70721588177175	8.90141240714847	9.62500384197532	8.88267030921077	7.73229896441617	8.94649069249303	10.1011598471289	9.63838475734068	7.44740032394614	9.36643739732653	9.37136776750814	8.67929073669259	9.29473672115825	8.31123301959719	9.64000749970532	8.83444974578717	9.30010412997052	10.1379575682061	9.88933218164841
+"TET1"	5.99657136624501	5.83966474579022	6.07795985883846	4.94326355452394	5.52247285635731	4.53552366041602	5.04220353945494	5.48688684441165	4.26517108790234	4.61706728915587	5.98435930316621	5.45701738455094	4.39008865707214	4.46166034850697	4.48105457441704	6.67796550264033	5.50075039566115	5.81160570389764	5.36977571548833	4.97376996779919	4.25522815760396
+"TET2"	6.91122457756937	6.84427696334854	6.93851296099587	6.3661183587177	6.80049618698002	6.51671750414073	6.15201870145956	6.81110916462199	6.31601944212345	6.32815040481673	7.13611589597474	6.37342441946028	6.10129356463059	6.36777208630861	6.26895315896377	7.51771123344203	6.6532877965015	7.55344065651879	6.36659373400318	6.51909500056419	6.28536941052191
+"TET3"	7.28193154751261	7.7215858621647	7.82254917325695	7.25789444570371	7.76395001579927	7.43632861587698	6.67657488446092	7.19349002098567	7.48799542780632	7.20575140902546	7.39667032998793	6.99914258036375	7.38327118215919	7.18658025600046	7.37085816896791	7.4424782501291	7.46937321097415	8.13569090937648	7.17137402909359	7.05766427471955	7.44556444228752
+"TEX10"	7.19114972111996	7.22797665676861	7.38183476793846	6.85331160211737	7.55134332205244	7.17732136817393	6.74100036860143	7.27545850572809	6.94375360551403	7.20768029041613	7.20845160048439	7.29921287196126	6.91793206142099	7.06666761084124	7.07533082713468	7.72768298932493	7.19645737591708	7.51813225705832	6.88530710199722	7.44851900276067	7.29892350121055
+"TEX101"	4.79562828160867	4.93858944075803	5.15569544685665	5.07226661140131	4.83157206275879	5.48993683620253	5.39514230622171	4.715358520815	5.2049994579345	4.95771342590708	4.82392846173956	5.15569544685665	5.21986443535772	5.54394896533204	5.17436350498547	5.268839412671	5.05526521944876	4.97790717952004	5.13101165380099	5.09036993269775	5.19369924762925
+"TEX11"	5.06315086046769	5.09831487676054	5.11397286680195	5.07882679166766	4.92934893035071	5.54450087133998	5.75511956007259	5.08853694762656	5.27018482984735	5.194685596795	5.02931799756969	5.21649756398984	5.42306567530775	5.66547632024081	5.15155900543356	4.77021590944701	5.16358260516384	4.71592776319562	5.26784683680282	5.2901178721788	5.0718147147269
+"TEX12"	3.24605304799299	3.13032480036888	3.07117934073475	3.06712701680334	3.00728105380958	3.45162589577018	3.14144254673153	3.52297715500412	3.13044038663158	3.20602939714353	2.99906659996069	3.17060261855207	3.19590375598962	3.40945846496584	3.17217433376996	3.30117009560465	3.06411400134427	3.22665666320098	3.20749178610184	3.13629132638261	3.21692878690033
+"TEX13A"	4.67329921604864	4.78057709465034	5.02379034953936	5.26385794013725	5.0178961763706	5.25627727999273	5.42399377811832	4.90039729203705	5.18568276812435	5.01941854096152	4.78507815576047	5.04551456262182	5.32692006831047	5.25344833809174	5.04551456262182	4.75669544039259	5.25816970009969	4.83067621880263	5.32264447919437	4.96168302333954	5.04551456262182
+"TEX13B"	5.85101017183288	5.98771813041675	5.92215122791235	6.27839445835276	6.1916797233892	6.0211382135471	6.00031489771062	5.9761655899854	6.14215216445542	6.05962834716509	5.63761412027955	5.9429349981251	6.0206432948513	6.56638929935023	6.14800735345141	5.94433504811639	6.30514986623698	5.76111308173194	6.21853418034747	6.0077724735066	6.0077724735066
+"TEX14"	4.9952103331499	4.16270873385012	4.40077145610909	4.55135170904206	4.35216212201076	4.83058124968118	3.89160745972658	4.57512919121534	4.31768367235238	4.07466605523523	4.77788253818204	4.26731843460554	4.27868642563921	4.54075187602639	4.46054087782756	5.18758820865464	4.4090407829715	5.14873718901971	4.26528641256563	4.13099961810088	4.12967914650621
+"TEX15"	5.09542338241816	5.37500012115509	4.83109730505632	5.32801993387116	5.1006703352708	5.00518074901948	5.62893956586	5.110968098653	5.34499275498943	5.05625041705801	4.98965351796721	5.00323563392762	5.2231117255669	5.27734572037317	5.18115322343544	5.16364227871192	5.11929917117006	4.65238838590816	5.20279842678053	5.02293318668239	5.17599228137398
+"TEX19"	3.72755303505779	3.75977659391126	3.77494989286325	3.8009251856734	3.75763767016553	3.72942618498381	3.86834686509364	3.82766761903912	3.91387869416087	3.94431014415433	3.50492985509095	3.8942992649742	3.8318562939454	3.66998158469869	3.76770711811611	3.86091548482478	3.67216776847921	3.76649585251223	3.78635284405553	3.87770128336122	3.754820408018
+"TEX2"	9.31230517945963	9.33444658822561	9.09070391143326	9.10982485407999	9.13212353399994	9.07368211604556	8.99035095565183	9.54240526154274	9.12521780009089	9.28704866474726	9.60164507039953	9.38765089883117	9.14006580840922	9.20975329145125	9.23418135543634	9.63551273246509	9.32043883180393	9.35646793157518	9.28495668800666	9.09282089660505	9.31807237305759
+"TEX22"	5.26628578162116	5.4165182969391	5.63651338835521	5.54436617919669	5.51324536723726	5.30738287223401	5.31841565146111	5.2729643910041	5.43483941310207	5.46825412028677	5.43857084481468	5.46148998581934	5.51507719467872	5.4762540283611	5.58114105436757	5.88041194569917	5.43483941310207	5.18204222626504	5.38439735221897	5.39576317200021	5.47331625478642
+"TEX26"	5.58667443671539	4.56970171110254	4.8100638882973	4.78841653642814	5.00498940348429	4.64563114550332	4.50904271211557	4.72083029964895	4.72083029964895	4.51538658764646	5.62259646278022	4.45342432480979	4.49497619638741	5.19913817388088	4.41016449365541	4.94668440291049	4.56024118490728	4.43179022823245	4.72083029964895	4.49652512072387	4.73602894040156
+"TEX26-AS1"	4.31665023085386	4.43990735208469	4.4742955018023	4.79701012046734	4.49497619638741	4.78902551441837	4.61284354163675	4.53263426176638	4.77562931361006	4.49120885745678	4.38830872520827	4.63567105576178	4.66827868176611	4.63828186744186	4.6354774939854	4.43301912930231	4.53665121237613	4.67214685448819	4.57983682838034	4.40612010843796	4.57173031516655
+"TEX261"	9.69672791971649	8.9229918638865	8.68294679038353	8.8538484240091	8.5147848953954	8.8619936442277	8.82259214694768	8.57727207696405	8.54730177332544	8.60752907921349	9.27085470195644	8.3347794662919	8.34606747568064	8.92555457713401	8.58349428583749	9.32033084798824	8.50803732452815	8.87369373211052	8.55735035748908	8.77787439345839	8.54674453391291
+"TEX264"	8.13094191639287	7.63284129359739	8.11659153240062	7.39761104728247	7.78399936102868	8.23503740291221	8.01072881498684	7.73702746587169	7.7463285397112	7.82332659901654	7.70217111745162	7.58926960532888	7.77583548953374	7.94640239335884	7.69765862162222	7.74735405224412	7.27904912485001	8.05969942675727	7.55171822489093	7.76410345079528	7.67982209707134
+"TEX29"	6.2149702109238	6.24521448109462	7.09720269165106	6.61969840473883	6.75361612019635	7.33467009161956	6.73967976777712	7.03381154287549	7.36980480908062	6.60472878022183	5.72560938723637	6.56153531818293	7.14984179562142	7.12192989494128	7.46339648784203	6.09685188038808	6.91181210524234	6.77397774035323	6.53292483020718	6.66811554709884	7.56016503296194
+"TEX30"	6.68533976275409	6.63981681369342	6.87532825603871	6.91950378822081	7.29900533550917	6.78270519489617	6.92812949266812	6.9497143620219	6.90744776040098	7.20754967376803	6.76996742715231	6.86044765259438	7.02558510049335	6.80316081869092	6.95796342546295	6.79216079379088	6.78206430457926	7.06894059365971	6.87532825603871	6.90209706521586	6.82960933243737
+"TEX33"	4.05187152311876	3.90365420064644	3.89079315830377	3.97870008578785	3.82646815557055	4.07792606942969	4.22347780242888	3.94847753638272	3.83916012898913	3.95398378773715	3.93800507852099	3.87298378530492	4.09138262493503	4.35079835061772	3.91933924959855	3.96877873949198	3.91026639780945	3.74092378356536	3.94847753638272	3.94847753638272	3.94847753638272
+"TEX35"	5.46233678473975	5.57524590755486	5.47689524176883	5.61564872595218	5.57906226751883	6.05944375070591	5.74264195727637	5.46245878855768	5.6127290325236	5.68766744728908	5.52942436280618	5.45716288289232	5.62263197618618	5.70882636421329	5.5941733389914	5.31730919846428	5.59566512931178	5.3262035269581	5.75071863843745	5.44151862396239	5.7761362133038
+"TEX36"	3.7561151003805	4.01427305640163	3.77163460973589	3.83272128523591	3.92282265094971	4.29216558276787	3.71942701797001	3.91312055141314	3.84937880734147	3.7430336700424	3.6544256340642	3.79721530739723	3.99078918257332	4.35915680352591	3.98916795112929	3.82377299355846	3.84235763259252	3.56692619011392	3.73271896577875	3.86737438180392	3.85047873917677
+"TEX36-AS1"	2.90002137391208	3.03553228901618	2.9581473437874	3.05957023985846	3.13172665864767	3.22761437737813	3.20961618298003	3.08324734880765	3.09996591464568	3.04788190756553	3.12034663994	3.04197158027447	3.05781822459365	3.05957023985846	3.0768461069553	3.08178352573302	2.98239520957764	3.05957023985846	2.98920501294193	3.15528063872126	3.24140654293985
+"TEX37"	5.43321795714399	5.58466650471109	5.5941733389914	5.67420937435962	5.4425713393086	5.80188931915911	5.84107797836699	5.72703583541285	5.67593138489352	5.5823727067163	5.40828611341075	5.55680584836904	5.56607771232083	5.65992938163506	5.37747923592003	5.5941733389914	5.68366646886013	5.24535824401491	5.6594988531503	5.58347373346525	5.6975026539229
+"TEX38"	4.57700438066453	4.62413417447745	4.74687803156437	4.74687803156437	4.82672754067684	5.06510777354421	5.03283002234108	4.83257792056697	4.46847157046538	4.71051614603793	4.56423676511215	4.59555897745202	5.00648206913637	5.1138352083103	4.74687803156437	4.64632248002326	4.84579908340048	4.43849514256785	4.63513544921456	4.91473298653792	4.93704378090238
+"TEX41"	4.72083029964895	4.91995170406115	4.74540980747132	5.18572128860119	5.15389348412187	5.22050617235819	4.79922731799888	5.01459611937108	4.97333392570002	4.88254958162903	4.71168954722052	5.03982063083724	4.84128815644294	4.98422081538499	4.95739399484251	4.90517160297063	4.90258562240547	4.90884255132285	4.75813608219914	4.90517160297063	5.16461936396127
+"TEX43"	3.58142744598621	3.73849756916576	3.71157500186246	3.74554865418955	4.01487234866294	4.22405682981182	3.91338565763891	3.95697914891371	3.95951204705685	3.57847808451308	3.84031806500698	3.87143605210546	4.41459714687191	4.05580394900455	4.17594578467768	3.94505165552306	3.64104991315548	3.81214418153349	4.02056641186408	3.81605589368837	3.82160468419081
+"TEX44"	5.60933262164254	6.01702065775428	5.76690594203444	5.96798070313421	5.64517838775663	6.11861947196445	6.2617576028019	5.8244433708189	6.00990179220662	5.89708195618327	5.64722905870738	6.07454077269014	5.80213224538691	5.96354157708547	5.99038254382844	6.15052617922929	6.04572116136375	5.8220465381623	5.66563886221119	5.74704685686238	6.09741853189153
+"TEX45"	6.29827298252913	6.15978974371115	6.26682411873071	6.25795535569888	6.11531425697778	6.48377113905815	6.60748262680869	6.14048922873333	6.16232568377777	6.26360329877904	6.0366108744323	5.99491693611972	6.35506410473913	6.66644459822475	5.92132302020114	6.3626679350465	6.24305184315905	6.07019938945838	6.33134605917365	6.23938301968654	6.22609927849358
+"TEX46"	3.25309811826045	3.10271875687885	3.39880289264525	3.56596877651276	3.3404377108901	3.5658632867537	3.50512351593215	3.2577172297933	3.34579322474469	3.41059809611413	3.49791605920134	3.1633120640867	3.1566848474751	3.78475474636013	3.4354385671537	3.31091796142386	3.3215322463848	3.20556471832523	3.02224076212283	3.08354583109477	3.29841855362567
+"TEX47"	5.09880973233862	5.28132819306146	4.93025287827655	4.87282952879054	5.08801357553159	5.11420289890575	5.5275913813891	5.18189778819201	5.08801357553159	4.92255772103347	5.0267137765965	4.96026120771948	5.17990928999384	5.32972464941236	5.20890532046544	5.07620031269047	5.22351896918495	4.89281243421088	4.93125127385787	4.97978100932071	4.97835553101913
+"TEX48"	6.36802863901552	6.61292062616227	6.63174542193384	7.03341649143562	6.87980403148404	6.82388840559751	6.67021681787484	6.5930140725917	6.65148123200678	6.60379376554451	6.32115017844666	6.79788216262802	6.70407730610137	6.86501338957203	6.75770233801005	6.6556004826905	6.64667337437825	6.38799863332809	6.50341294168609	6.68911813862444	6.7402439855887
+"TEX49"	3.56193985736511	3.58849460622507	3.53170292898117	3.57618400127975	3.79475902151136	3.55301093377748	3.64130077033341	3.53911278439894	3.58945722073492	3.63304471847518	3.52797112613354	3.47833276984927	3.63304471847518	3.51157862033781	3.58849460622507	3.58849460622507	3.67099010593345	3.37020911476328	3.613843930233	3.60862216840375	3.60242989218595
+"TEX51"	4.02265832335034	4.32987465882151	4.35794210178353	4.34081170294205	4.22474175106377	4.2694975132388	4.52806463188891	4.32361910692422	4.39380848385485	4.47088438817645	4.36115156654897	4.49097275896104	4.75583876151997	4.81891941227668	4.3457353707241	4.23210644741003	4.48690048373711	4.3222929461973	4.31396777181943	4.35794210178353	4.30291884282523
+"TEX53"	4.8247218486349	4.83551834745708	4.80649961343125	4.93371146767921	4.91485230919938	5.23291281916551	5.29550255848336	4.78913657369449	4.81204247851756	4.91401519017112	4.70117977852974	4.95124426867454	4.9890450162595	5.19292390883371	4.97198553863346	4.93724921850843	4.91708165502444	4.62544905801414	5.23403814306924	4.58004089003208	4.8665504366785
+"TEX56P"	3.59193313060784	3.70936926947116	3.68098855471298	3.76736251509134	3.53592162365235	4.08961446868886	4.03370460317926	4.00994032720174	3.71031846596918	3.56390327669211	3.62637755053131	3.56301130471397	3.72378166818575	3.8626856855479	3.82591718311615	3.6491010792795	3.66877751061852	3.50492751356389	3.76213282038295	3.48398519801189	3.67831778864882
+"TEX9"	4.41748563322919	3.06724623192689	3.37867097165171	3.25590657781491	3.3897063119245	3.09782467255632	3.15413843893707	3.44993713510913	3.15305660530783	3.09746081856149	3.73158625595564	3.3441493665079	3.03136381130831	3.17431928442203	2.99371280131716	3.30982114626302	3.01449908281559	3.1426245214829	3.17431928442203	3.14960772402675	3.01056311449298
+"TF"	11.7355183180169	12.5371374744822	11.6642184873289	11.5017467723228	11.9245230196584	13.0186603885696	10.8268825571344	11.010430403309	10.2637610674126	11.5229823607357	13.0209153296629	11.4332292301849	10.4940938441694	11.6808514078041	11.0062600702796	13.6007209110429	11.2576341799072	13.5518176944805	11.2679293645718	11.0099638016686	11.4900210099656
+"TFAM"	6.62367186465755	6.60703493039964	6.88123665417736	6.62837212937666	6.39631368300995	6.22908041376966	5.90677676355567	6.15339633760729	6.72996173520883	6.14386408997014	6.87818399297255	5.9545848804726	6.34338916586654	6.08792437498033	6.63551457432311	6.58656590488549	6.0003010285903	7.085706450326	6.37778598545494	6.40805515988309	6.43585852728136
+"TFAP2A"	4.00568494255537	4.14858152961373	4.06792153709456	4.02181591311593	4.2621335856444	4.3768566557207	4.02181591311593	4.08884733430682	4.01713233994368	4.0279067023867	3.77164186375406	3.97644501054935	4.20291963895711	4.54032703676533	4.37507507089168	4.06301072008893	4.36780235754554	4.01997046865709	3.7665187153106	3.99988129744098	3.89750769692117
+"TFAP2A-AS1"	4.06491362119675	4.28302621623858	4.39654015574996	4.19186231916286	4.74268467511062	4.52978540775525	4.3908498143725	4.53552366041602	4.42236112495982	4.35486820283911	3.81218236101113	4.2286421157111	4.3469521675696	4.41555451146876	4.22340269384067	4.50673054335726	4.20218445061582	3.98938566311561	4.06764298094987	4.5424247274066	4.49968498477984
+"TFAP2B"	4.68976542890107	4.70265173543614	4.90285197988628	4.95665788278532	4.73744475283547	5.03940278806897	5.02784185872482	4.62270192698683	4.81496704866489	4.91912212229306	4.54154534876543	4.87603680148361	4.80419531992814	4.91459999711976	4.94834738007231	4.81496704866489	4.68582682801238	4.74521602692656	5.03247820328263	4.81444247224026	4.93344591534064
+"TFAP2C"	6.07802789369973	5.46993446787539	5.19978169957382	5.43300576023898	5.34143856448056	4.891431597517	5.34589790096847	5.41580722690739	6.19846171982505	5.72273210126176	5.39256889886875	5.127449766616	5.53057571958916	5.69444761620488	5.71568444816828	5.34271393902452	5.24525614292414	5.0241655904793	5.65371294777939	5.55830912837496	5.3934931326492
+"TFAP2D"	4.81996583600388	4.8969466353586	5.47689524176883	4.89882025068546	4.96339898506716	5.36731647699016	5.30414423973762	4.81338965071074	4.9682147231146	5.00649748743279	4.67182517268179	5.0592670473295	4.92836165664422	5.30414423973762	4.83213000555978	4.76797632617367	5.03710571876954	4.48209159282511	4.58087276978366	4.78956778402479	4.91997083418696
+"TFAP2E"	7.48366741086679	7.6811421494844	7.64123909067369	7.21526131857002	7.44551599912723	7.08444738809043	6.97408590390447	7.59854118544847	7.06635783460557	7.2210707769658	7.93341527854519	7.34922798983833	7.14447783738587	6.9623467544632	7.25031046555676	7.7362203759232	7.30578979355469	7.75484137014799	7.30578979355469	6.85462988368799	7.36070309601428
+"TFAP4"	6.97330673753895	7.30628282032023	7.35051250207703	7.63838035845285	7.41304285346636	7.65847912156369	7.69686779892386	7.19962318396038	7.39359616184896	7.46897718884103	7.26642874921381	7.34704890464623	7.51778211679871	7.71686694767756	7.39359616184896	7.44417815933084	7.40344433598322	7.04362277297406	7.46897718884103	7.30732887996462	7.373436282229
+"TFB1M"	7.06467937067511	7.56116991492827	7.16406567870167	7.06917363898847	7.24151763227295	7.10967919556253	6.67798342719607	6.85786567117694	7.14354627410739	6.99874245187504	7.06917363898847	7.18564402986247	6.81673614565351	7.09008030506699	7.24680875702369	7.19037257058858	6.89088927413449	7.19787354298339	6.96487998472638	7.06917363898847	6.78455909971804
+"TFB2M"	7.02720289838742	7.00286273720588	7.32840926855866	6.87295173455505	7.40798965013451	6.39405854366102	6.49195141287381	6.63132016409969	7.33518826870665	7.12958902023083	6.93594656464824	6.96101795997462	6.81401962773738	6.49101313645312	7.20412028672126	7.30466563899555	6.88675871873975	7.51346559228453	7.01236032690963	7.22519825702725	7.22389751299887
+"TFCP2"	7.49672728995211	7.5575556819	7.08782285090185	7.2448607415168	7.43130675925083	6.76695145384202	7.05788937570124	7.112112357189	6.6428986585018	7.50510264129636	7.79366109856869	7.34721191729259	6.4883748390268	6.80203106033744	6.46654086522946	7.93484612425886	7.26934153715283	7.52836729680574	7.12046341216771	7.69552215918717	7.53568723072725
+"TFCP2L1"	6.04854992611747	5.95070511535684	5.52128938073434	5.89362698153177	6.01096729112887	6.38686718994028	6.88590368903263	5.71011156651643	6.23801787973558	5.82156101172896	5.81248690596246	6.09671510224502	6.04909796810854	6.65148123200678	5.90346549958118	5.56539321667444	6.27164651380978	5.55164005273765	6.23472520588166	5.86135520533213	5.97454743585396
+"TFDP1"	8.64485956112459	8.3197380175369	8.26847135773217	8.19666147452375	8.2913510705553	7.58814413707633	8.20464194894773	8.15271736083144	8.43901524701405	8.22299158326974	7.72200797253675	7.75630166766051	8.10139323189514	8.12576645693041	8.2998024811848	7.99232501485136	8.04386505706565	8.40161874111987	7.938867569507	8.2952151669812	8.20371545356815
+"TFDP2"	7.25111784661828	7.04204632642598	5.50439027635038	7.35037135494615	5.82287033003888	5.90112923083481	7.17046166110242	7.27574857265117	7.61405369788543	7.20346614286036	7.20346614286036	6.97814448669161	7.9163762138077	7.50824524180263	8.14751027080803	6.91044181677222	7.44145469168389	5.84446634237568	7.34500017177703	7.21443776775958	6.80263120048411
+"TFDP3"	5.27078475882974	5.29115639572597	5.29484309980181	5.24174021443267	5.2433044085661	5.39256889886875	5.59042627676965	5.40923780974584	5.29115639572597	5.23130176617424	5.1570301600749	5.38597416594557	5.364855960129	5.402303161665	5.36977890479449	5.29115639572597	5.29115639572597	4.90489936834587	5.17531102246592	5.16257148868367	5.38138497818962
+"TFEB"	8.37022089339842	8.02049787956764	7.86840276716445	7.96105799058974	7.56077340800883	8.65361718162792	8.28064059351349	8.08133986141484	7.50385123294301	7.08591367470083	8.55387240152104	7.53740065845991	7.81447192008503	8.28366892131372	7.81031232332092	9.04125801198933	7.83580845817064	9.06337022391739	7.91232221736057	7.25077268302288	7.69187989364569
+"TFEC"	4.69786255616084	4.10278130702715	3.68666002702843	3.59035006425724	3.7652714344117	3.91590708302498	3.9544074376938	4.25462480330718	3.68950924559466	3.8642824949718	3.81911182791024	3.49758290937981	3.91059434046839	3.66345619771347	4.1087938876021	3.74841427679884	3.75814547382501	3.72257459174832	3.93781811006097	4.23711235428333	4.18767952136142
+"TFF1"	5.68111013604488	5.73324223551372	5.69050004291591	5.69050004291591	5.52873807886563	5.69050004291591	6.14508475712276	5.53584279132252	5.44535819258836	5.6172809656618	5.57260041903614	5.73169255971747	6.03393102514949	6.09769715689335	5.68876305058347	5.73971809950586	5.73093690428613	5.70765503708253	5.82155267166036	5.38409256894503	5.86735535625992
+"TFF2"	4.19643746370795	4.19731609947727	4.26977257611218	4.26977257611218	4.07943505152184	4.33771980366453	4.62099827312493	4.0859111746893	4.11628104531374	4.16308230075077	4.03085198502996	4.53697986254453	4.58377437083036	4.60593863121095	4.32697409007904	4.36828512566372	4.34238124170454	4.1202097335202	4.19471185115651	4.26905780579384	4.25527397188028
+"TFF3"	5.6951106637023	5.86849735615511	5.96668269176176	5.95404045296336	5.83642641819493	5.66628246674204	5.79026824571201	5.91621884193253	6.12043163086628	6.11382262579228	5.86688856425779	6.04928021440439	6.15036486718359	5.83570810726265	6.05640060942879	5.98737603366594	6.05238646561986	5.6992293535917	6.16002017710846	5.98737603366594	6.11043391934661
+"TFG"	4.28310627513365	4.5508003869687	5.42829308775705	4.64396679909004	4.69983146672115	4.78970581657365	4.70453073156103	4.86907694378589	4.58463327809662	4.37253480609131	4.46347725732682	4.5397108159798	4.27818960989679	4.7407888783743	4.92371482610639	4.41617766451998	4.49698992542175	4.6668294867166	4.75743988746951	4.50265320321452	4.37033120469508
+"TFIP11"	5.71123712706566	5.55519996422713	5.270381771817	5.79042327066286	5.39810383710203	5.0437160735094	5.53978882598708	5.38802075742045	5.7255129509224	5.38895398778501	5.16304009926144	5.31321777903669	5.46651582407048	5.47778129696969	5.77773534279428	5.68285214380118	5.26078769333568	5.3052320584695	5.50042813270958	5.5723671345064	5.50132104113881
+"TFIP11-DT"	6.52327978238968	6.67532403451788	7.69821359920654	6.2611334482149	7.07861363987373	6.66918190779809	5.57067274410136	6.69619576897359	6.12624434509882	6.45322183253802	6.59828076826963	7.22241778413543	6.11342241761026	6.38485456454141	6.42706570901107	6.3763639172458	6.60340713786599	7.07181301668132	6.52404718005964	7.12245996088349	6.50530307373723
+"TFPI"	5.64526588472321	4.34057268666813	4.17993502911964	3.71047765310361	3.8001774438844	5.88326540249697	3.86445055960264	4.60680978544308	3.8221005930726	4.55933624917649	3.80477482181518	4.02014199060621	3.85656007854633	5.53241673326397	3.77216330589925	3.8111158528468	4.1050801947698	3.81013747848042	4.11123713662182	5.30710640340721	4.72538013221745
+"TFPI2"	3.73792776293488	3.69286536633351	3.49907232928224	3.49374594302703	3.64656370636376	4.4099608824757	3.51999925299784	3.95109139926485	3.67942792352333	3.47213927882587	3.52859305613149	3.62040779756508	3.60409854639938	3.64834579838244	3.55116329143444	3.64834579838244	3.82144812778394	3.55460191843498	3.57582716120701	3.62442407952889	4.09032475390482
+"TFR2"	5.64362272982916	6.25975585486541	6.89884018542102	6.02151367126148	7.11275032487337	6.22900132402988	5.59564628025635	6.29153006184312	6.46210552246979	6.6377393020294	6.08029139766332	6.51489966784019	6.18525411831997	6.17022214854221	6.51028807093938	5.52728800007365	6.04462879909585	6.27093382980731	6.18453902003622	6.63971623745267	6.25670833626928
+"TFRC"	7.11211613118282	6.90542891667138	5.03557815925086	6.27539761230585	6.19354845628195	6.1279595184582	6.92899028863708	7.21144141544733	6.67879991157495	7.42117092798287	6.19293110168133	6.41707721051554	6.27456400872745	6.19840989508872	5.63841255039531	5.69050004291591	6.93950497039731	6.51537781313163	6.49342277995852	6.07518917447192	6.13111045347412
+"TG"	5.33743169324086	5.48282569714903	5.65039837648751	5.88665230385279	5.68171930419195	6.03093158579141	6.02789736666907	5.42772577072352	5.85049401233193	5.9841263243859	5.49298883023171	5.67776428690467	6.03093158579141	6.07663880508211	5.66626412632809	5.71526505182296	5.6355314626734	5.40438913162816	5.8945638561491	5.3402470707006	6.56342586747504
+"TGDS"	7.16951811565107	6.87727912884787	6.75814606993319	6.64640251316153	6.80475374383048	6.38202809844544	6.71354303792129	6.88468871479501	6.69788000210891	6.47045430690573	6.96310920817226	6.47342271640754	6.59966560204446	6.71824969846691	6.80927260624733	7.04411847150513	6.40784099782628	7.17664631470507	6.74658737230998	6.60575206989028	6.29127683530031
+"TGFA"	7.16165345483746	7.41910882970235	6.88699363623928	6.91188848185152	7.13628905960133	7.66619859193549	6.72951075166507	7.20807016424371	6.11235227662577	6.35701700289806	7.98222015507551	6.84324511901322	6.4191613175982	6.95708555738234	6.53311972407569	8.73971710805478	6.74060104495936	8.68019190731985	6.80329272230104	5.93119722962425	6.08119431191172
+"TGFB1"	8.40307812495437	6.91963339600428	6.26117074851855	6.92426677826723	6.64475352806112	7.16555123589886	7.6182061274968	7.22696609555918	6.78648984825417	6.98321490044898	6.83528631670226	6.67315887845893	7.1634539118997	7.56732472546719	6.57915495706471	6.67251186063467	6.63970023136874	6.88620419596017	6.87039002578565	7.96279702764322	7.19819350556194
+"TGFB1I1"	8.86133604494433	6.65139342666491	6.0150795832304	6.42425022414248	6.41763424505918	7.74185426297233	7.28774325218157	6.54304053081691	6.09653922836303	6.52515063137414	6.51752904594005	6.14893618509495	7.01699053639487	8.01247872206499	6.53555580588306	6.03593369308926	6.30763067674503	6.50778859066959	6.40669850496331	6.9537847031509	7.11664451866082
+"TGFB2"	5.21209697712848	4.97195326123953	4.02434221062632	4.98165596086068	4.75730848833998	3.57128046001925	5.5941733389914	5.98914546338132	5.44961340711627	4.73150203762978	5.51662828015514	5.56868623639846	4.57496997812017	4.35566897327968	4.80042471686164	3.62139032975065	5.31380674534448	3.81679413091262	5.21535867134563	4.84433664295559	4.45012927780782
+"TGFB3"	8.49187752442428	7.86695355087912	7.67818207698051	8.4242919718128	7.7653102840979	9.3310566681665	8.82344870392788	8.3215262407368	7.76767375750531	7.62727052931851	7.93845932758749	7.6937799625268	8.19411908431007	8.57321656799361	8.04442754362018	8.13243110912404	8.02434268811414	8.78772160943278	8.28040571016449	7.45554901665019	7.90294596640048
+"TGFBI"	8.1782390822372	7.15331457586802	6.64246737983968	7.07891498113306	6.89634819609638	6.96093784516433	7.07384501484784	8.87693517359928	7.19223571362352	7.77109798598561	7.12626824906704	7.29153992311003	7.29336367154408	7.34368157046945	7.92940115981822	6.7893063631274	7.50714335388638	6.49403620024561	7.68565038651877	8.66718579329114	8.06746326831944
+"TGFBR1"	8.56008145316296	8.02385425012232	7.49971546160444	7.48999259323526	7.9683894967541	7.25564839614161	7.30606715966527	7.92943097530973	7.57536818681633	7.84097948008001	8.47635907426445	7.10986544585027	7.65608723031546	8.02688657538485	8.04757827172213	8.55646983703224	7.17882695201297	8.15607011314884	7.69462143046745	8.02546196353012	8.99127589746274
+"TGFBR2"	9.29825086704432	7.67888400522935	7.00413952366418	7.27775301194588	7.26442718416239	8.35283439784409	7.84223911570746	7.89369978844994	7.31672381300122	7.89467888339297	7.93388857297318	6.90109721856428	8.18161330270727	8.11276908498931	7.6213274006118	7.48826104847342	7.11444073022064	7.6023049279241	7.55869542929841	8.38545234999202	7.81529698791328
+"TGFBR3"	8.85325436348395	7.4329680550552	7.08509938848527	7.74637310656466	7.31826919688366	7.58740182023818	7.77567968175297	8.70824991055633	7.89985531058197	8.1135092256458	8.20731126115105	7.61572843221859	7.74407407896198	7.62334362433568	7.91351013947713	7.3207886933236	7.74407407896198	7.17931400082489	7.92620005145901	8.34240669649544	7.19952491289057
+"TGFBRAP1"	7.85236410231873	7.98711129228945	8.18526523501941	7.52357409104237	8.14258914382431	7.66131271141655	7.50997178787678	7.50234778760105	7.83455970649112	7.98031055360345	7.67440988461198	7.7627369474094	7.64488587774545	7.76155284882685	7.85236410231873	7.85236410231873	7.93377239652422	8.06615015020838	7.66263224254914	8.10434551572358	7.85989082433312
+"TGIF1"	7.79341797158645	6.07206537685658	6.14646156613576	6.28294159450355	5.72866059648732	6.841594450327	6.42465122061936	7.49878539419378	5.84164769563556	5.78796920210715	7.18062008867167	6.52852427637965	6.01280371770168	6.49768968664521	6.30997109772858	6.29079601809376	6.49830253658447	5.77464831192589	6.66925139290305	5.88479059590729	5.64301841118046
+"TGIF2"	7.05414780416004	6.5457500335224	6.77267021094113	6.89763142193251	6.41005133283253	6.72453817647071	7.49272626516836	6.75610901393384	6.7369147427798	6.69070776784095	6.81481081252195	6.63730189888186	6.80657662323745	7.01289236700537	6.55013158493172	6.82390002428263	6.71997631235299	6.77267021094113	6.84496929924392	6.88808352844215	6.68401694197402
+"TGM2"	8.75771501985268	6.42682493064664	5.77737765720381	7.20068007233508	7.02487560345108	7.73511588428005	7.35037992631883	7.54677203425928	6.77893973162015	7.03610603268792	6.52826298872132	7.05574372403349	7.45669446826955	7.4958563981742	6.43640838453589	6.15569693836323	7.03610603268792	6.07404071273048	6.30757597747274	7.54032048290594	7.10255778808091
+"TGM5"	6.50081203400153	6.43772152233007	6.22658796261283	6.5262603280745	6.50864653153082	6.41203964559773	6.47213974407132	6.44067483123101	6.44067483123101	6.46114747388012	6.34812944563854	6.37313099120252	6.71694416838411	6.73833579171416	6.10147085069684	6.20084563188453	6.46888833285798	6.22242225099953	6.46621311997131	6.357522600698	6.48723338307492
+"TGM6"	6.33234883638618	6.52515063137414	6.36651441046956	6.69536355613185	6.40382767411492	7.11405385793062	6.82409909934326	6.52515063137414	6.76351548819535	6.53405228108571	6.27002490452684	6.40701893884736	6.815385397274	6.78114311218681	6.58288414122718	6.45352892493634	6.44987176171674	6.17683508344735	6.49052020897711	6.55838846044336	6.56654236094398
+"TGM7"	4.15813909413588	4.27149447802223	4.66309177277099	4.53290769743185	4.29493992359004	4.42529225843782	4.51047502567572	4.32579816886981	4.47160030178342	4.54881000067704	4.17131092655197	4.23784962857333	4.46713048951182	4.34921545494278	4.50908632315786	4.32418958805842	4.65622193136854	4.04998835819957	4.31142538760372	4.27625652434195	4.25964472169835
+"TGOLN2"	5.72862629316784	5.72070777634969	5.78612537301991	6.04851219800565	5.83083520879646	6.09371719419481	6.26780063978684	5.92271785522116	6.18456074065884	5.91536334384264	5.72560938723637	5.80261784668444	6.09107219133014	6.01302435654797	6.14990382529167	5.99428410065936	5.92271785522116	5.84423632462291	5.92028419933211	5.80894390647117	5.92493630920866
+"TGS1"	6.50660264047666	6.83545302786408	6.80190290366883	6.79696877046717	6.58277511600519	6.54515299508737	6.42014382880528	6.62323799095265	6.61998415549309	6.17906363805731	6.55882565450551	6.2295063365034	6.94522307832503	6.59460238822299	6.97039440104734	6.58277511600519	6.36137753546644	6.524768235381	6.36402241778417	6.70064774051226	6.41272476421522
+"TH"	3.69608048160751	3.92693748190892	3.88356657775875	3.95253737486325	3.76649585251223	4.23836769882638	4.31253055480644	3.9236913051966	3.94123388306545	3.97525204337918	3.81322154274785	3.75695137157185	3.9583391443302	3.85878395155506	3.85878395155506	3.9049024292748	3.85873347104614	3.95498506575508	3.86561858094226	3.68738637135067	3.84746626312461
+"TH2LCRR"	3.69331106177495	3.9269201342255	3.8691389810309	4.30228355257827	3.98912696872988	4.10610717022793	3.79087188099122	4.06431945721985	3.7529858844998	3.90110799328933	3.85591259022425	3.96474155230472	3.92863245844822	3.69068742859288	4.00874338905967	3.96503918224313	3.98270285602192	3.76891136081282	4.17832192931214	4.00469379059507	4.08592229663943
+"THADA"	6.07649622389263	5.68928196005491	5.03638651876114	5.32161048407942	5.46049976254501	5.07707075459943	5.54207383945953	5.52113080825798	5.38680019814197	5.26265897708434	5.78420299572161	5.59868016307483	5.08597588528654	5.26590355278674	5.23371400879992	5.84481709166282	5.24261995955151	5.67042038484412	5.39096571044835	5.60077943861134	5.43121968433473
+"THAP1"	6.7922205661478	6.71824969846691	6.73777537812383	6.76218329615749	6.93775633722921	6.01482985102393	6.76972923389947	6.85161047065049	6.86099342194751	6.60088454964499	6.82070888741463	6.27837913328385	6.62602387252704	6.36922614933121	6.99397124276766	6.99686784019343	6.4897355151341	7.08393114061408	6.83534050479307	6.90003672651242	6.56154702480853
+"THAP10"	7.83201373950348	8.22679461394941	8.36019656499805	8.3916771875818	8.6249367667736	7.81135355577965	7.40984688685213	8.25580215936361	8.55975414398089	8.31584985216878	8.07799380389241	8.50931554813941	8.48748184055719	7.90613929455326	8.74067831918918	8.66869464508396	8.56927215882802	8.56680219022518	8.36019656499805	8.4973585368006	8.42908357122536
+"THAP11"	8.5519038249057	8.13773927165603	8.12999787147184	8.19631943791352	8.24904359343414	8.21299702880999	8.24491146952569	8.21778427153593	8.33969610311604	8.36863708793647	8.26494484074561	8.14848489354781	8.26337648561713	8.24469948672335	8.26676626343705	8.1999295916902	8.05940822227779	8.34363587852356	8.09105391397262	8.26903981278417	8.12496643523124
+"THAP12"	8.99066153611946	8.9076555924366	9.32098635512338	8.65158622746113	9.19559231631526	8.73605009348502	8.76725006476681	8.58513959286535	9.00428126075498	8.72478074889076	8.89268306783011	8.48807501488795	8.51520269415887	8.82869314312956	8.8050728404602	8.99676876417562	8.57068673715496	9.04421565086098	8.60197032125274	8.84266887825726	8.75289288632291
+"THAP2"	5.72648147953069	5.83076780924927	5.81179863693948	6.39648343438425	5.70127482116843	5.63001770046199	5.80429570782947	6.54369958446654	6.65934328658113	5.19447766257875	5.90525009350305	5.67477229276271	6.51316643701804	5.4027780677192	6.7755102597734	6.23108109616154	5.72164879480386	6.59219254372013	6.26269734491988	5.8646842007582	5.48940590755399
+"THAP3"	6.72465816402803	6.68498831706197	6.92071272532468	6.90639154552744	6.74973398482558	6.81139021746363	7.09608935253017	6.78296876425737	6.72169333073174	6.82176396166059	6.7716526142508	6.98863665714736	6.58669977259824	6.83898083849867	6.54415022685978	6.95065424892668	6.81139021746363	6.83471180753505	6.79258624074047	6.83236469371306	6.82191093124334
+"THAP4"	8.37546256202299	8.20125258227054	8.47479477118604	8.18820695976354	8.21804911694189	8.31651601242497	8.32658736366975	8.6306443308123	8.27655446747259	8.33881668627956	8.12996952232557	8.33467631469247	8.46042982086897	8.22198839958863	8.44928499119798	7.87853940874006	8.17203303846354	8.21261314954836	8.21296031788891	8.28124389677842	8.16785775108634
+"THAP5"	7.40704773204574	7.7239018943358	7.95131148502448	7.79566545033326	7.93821950438492	7.1212402403866	7.14644242155292	7.84851219529122	7.90625322569967	7.7460003569357	8.20455472242443	7.68180345771673	7.64013195939093	7.35768887005468	8.0198215580702	8.16358422507774	7.68995322712697	8.29037103162448	7.85683409563114	7.37505273766789	7.93707182093478
+"THAP6"	6.37863656844624	6.33258422606296	6.31178872158991	5.941475335137	6.30577866879702	5.77872950452485	5.77740977698064	6.2030763496523	6.0580826474935	5.86700215765752	6.74667647055699	5.87875975498096	5.62849518945503	6.1161669995327	5.7662511083396	6.5525192930915	5.81653511560524	6.37249534875646	6.07854110773496	6.31925796532298	5.7315730801996
+"THAP7"	7.96894876354346	7.76351179064648	8.43233047631934	7.694842018111	8.088757564989	7.97540540590718	7.57382280479135	7.76399156230291	7.6185793152268	7.96014212737502	7.76897974594175	7.80124749872009	7.80124749872009	8.07224378791622	7.54862160595638	7.75058818403833	7.53748066062126	8.16049246032812	7.67601287104092	8.09630815469382	7.66875954503119
+"THAP7-AS1"	4.99169548668545	4.82373136914706	4.98221622594401	4.77349469995525	4.83851391392687	5.37285482155332	5.44896343575263	4.80654738358536	5.08069832122653	4.90718520917642	4.90718520917642	5.02273175642329	5.01927668871185	5.16022950719595	4.92137899133309	4.89639566266592	4.92863584477282	4.82107741832633	4.87790299967646	4.9356575005256	4.75164585707624
+"THAP8"	7.18138088832435	7.07007445524757	7.10040218856548	7.01140422963626	7.18331954348491	7.1196317435969	7.25873357921991	7.00822546891172	6.91617650105779	7.10110197277995	7.27129780307389	7.03040361557095	6.961435084592	7.10110197277995	6.81844517417464	7.3116416970347	6.97093249966294	7.42606386318654	7.07845521305657	7.30034019927267	6.87922056530913
+"THAP9"	6.52799611231867	6.43106817354169	6.35578792129705	6.19583994998825	5.95512793351777	5.81077244369101	6.2683295084518	6.59593086117302	5.60241801704801	5.67856276946081	6.88565223791587	5.39614831721701	5.96960981388866	6.17342895156655	6.21218418979198	7.51184943181369	5.76194807916253	7.25797412952632	6.50852179467237	6.15853875527121	5.93824933556085
+"THAP9-AS1"	6.72533754503817	7.82247188656752	8.16029862343423	7.10194448005998	8.07474535351947	7.1806180627486	6.62709637562834	7.88938238202993	7.04706326911743	7.48529592220269	8.24125102570673	8.34625297353944	7.29839276560416	6.47632717752884	7.45347315020668	7.8688574481776	7.75206310145446	7.5523851811592	7.67043719014666	7.59179068951837	7.40967111907485
+"THBD"	5.69947180160406	4.21931061667933	4.31438692494029	4.29387008454903	4.40645283072902	4.86744584521067	4.17234250286727	5.46539412376542	3.8979789367206	4.19263533692679	4.26679438104899	4.65915049192384	4.16089863856463	4.38183860350394	4.02798199272278	4.08150023865255	4.89825885750441	3.90267842204017	4.46119781200011	5.18511338795425	4.97980363786354
+"THBS1"	3.94394184175239	3.05760354848614	3.29221104561511	3.48838002208046	3.52586688443315	3.16042978661564	3.27265162012443	4.98992038634439	3.3024339101175	3.33845617202225	3.09277765197846	3.57056584622944	2.90598666727836	3.12806306601049	3.42598080769835	2.94295319376341	3.48762766886964	3.17780555831648	3.3024339101175	3.76649585251223	4.14495670817185
+"THBS1-IT1"	3.18409066623528	3.43068845603874	3.44241137962561	3.46585515172828	3.56456157041146	3.55896655240977	3.42652252646321	3.5593869105882	3.09943422553317	3.38387829772325	3.31004217326611	3.41603442714824	3.534581799726	3.724225856519	3.36393536221712	3.47667891934303	3.51643326615601	3.33340085889091	3.17491997467122	3.41007459361582	3.41603442714824
+"THBS2"	8.38586917443342	8.9890957882095	8.33169652304191	9.18106473547142	8.57743764701422	9.0322229549556	8.10086434574947	8.77162739938574	7.62541001772462	8.51045218744234	9.7030077638568	8.12070925467599	8.33280360782817	8.69950044435322	9.05645758372314	10.2061318455751	8.74423922305177	9.78414119509113	8.29190054111875	8.83585157009963	8.4195549837632
+"THBS3"	6.73084687460606	7.18674192777573	7.12570097925948	6.92702640414891	6.77299852088055	7.41613511715464	6.68113613305994	6.50182324379099	6.72935493539655	7.10460047299542	6.97310410603503	6.72084846074642	7.0719406754751	7.21712029016143	6.71728223370083	6.50670396963773	6.58956057037793	6.82121404445439	6.60990379647343	7.0351213146602	6.88868768777096
+"THBS3-AS1"	6.63095588686362	6.10904482900498	6.00682628483792	6.12795283365706	5.92363874928854	5.5941733389914	6.32744084407457	6.42105288494929	5.83014051018019	5.87771472562873	6.39487517988831	5.85712787204676	6.16457155848296	6.20296790938918	5.68519644295041	5.66924473452819	5.88750235869896	5.80142199460466	5.63494821181617	5.55890411844152	5.52944499556113
+"THBS4"	9.36860816662238	8.47328832020146	8.00675519631007	7.98142519448798	8.40846526534975	8.36774642042766	8.93847742098339	9.08181540849419	8.07989509356072	7.92723241606084	8.42965834486241	8.23341424823444	8.4332632056598	8.62268435407352	8.29852251100601	7.74707939229981	8.27311932616289	7.82838763119335	8.22600377426204	8.23078723642124	7.77449728501597
+"THEG"	5.08296397565059	5.34989478864841	5.33384321935608	5.46049976254501	5.2288175163979	5.41822006753247	5.52188599071489	5.07925050603357	5.56465343039907	5.47238404453623	5.11961674003723	5.31419108846605	5.35163019897695	5.31290042790723	5.3205387468467	5.21481469268185	5.54876492815082	5.15491264938487	5.24767372154289	5.32204891893002	5.4002914053851
+"THEM4"	7.33662912858078	7.58935013868696	7.88826537774818	7.25881313492797	7.31034377569605	7.35711269170592	7.59237560781687	7.1860322399196	7.72800089256279	7.90045102846182	7.88826537774818	7.66942858954962	7.90862936174129	7.49752768803391	7.27102066884374	7.66306137875483	7.00870121945258	7.60332944175265	6.96123459834622	7.83744125129893	7.5621213217963
+"THEM5"	3.34440743816791	3.43561657898329	3.47115147475991	3.47525558425315	3.3496110799996	3.25221188360173	3.46117698507117	3.62482991418926	3.47115147475991	3.46438231673766	3.38613004288932	3.5957226456494	3.36403731028308	3.70149212832762	3.47115147475991	3.49721057267343	3.47115147475991	3.64098656709794	3.62281811372486	3.47179795549306	3.33943764650177
+"THEM6"	7.20685397924663	7.47813820879401	7.39645328495126	7.28694691126183	7.68687680758034	7.59687465928402	7.12245996088349	6.87454432148369	7.26302955572809	7.68983052377675	7.36456260266431	7.40238514183762	7.19632422917316	7.40552475945503	7.13160861766103	7.44386942667925	7.44225492190177	7.60440020828096	6.86090700694827	7.80586006433634	7.54923111373438
+"THEMIS2"	7.59276163879396	6.91000221320097	6.55711225049388	6.54964721383507	6.93315889207433	7.606177150408	6.11087952276653	7.65995460217954	6.29586315173148	7.07524590670309	6.84813062464097	7.24198076300682	6.33679980964203	6.64303759620561	6.64940574452916	8.33743892198314	8.04677500568803	8.13136838843258	7.7224775971538	7.13579117545623	7.35120642645252
+"THG1L"	5.49149821842214	5.48912877259595	5.38623391327171	5.53150123059708	5.59689368368501	5.44061319479109	5.45949716131033	5.49628814921526	5.63305688927925	5.67988540367425	5.51847879235537	5.48759924308144	5.40373706862165	5.12035844128474	5.50740324213744	5.74541744031831	5.23897278654052	5.58800159081351	5.73122774356228	5.78018485789578	5.57173129050939
+"THNSL1"	3.98668258684774	4.53983031100007	4.75058069060177	4.12827123181595	4.46463611799972	3.92273650380389	3.70488333666335	3.8560933389234	4.18352615252229	4.537699768961	4.39731245414249	4.49690467975798	4.14840081340773	3.81311201040575	3.94747017715023	4.3872282387107	4.18725802873877	4.45335112754089	4.05728680465789	4.68966246362145	4.14297280574182
+"THNSL2"	8.46432630651138	6.61647852189108	6.61271477960654	7.29817320098478	6.72540907508622	7.05011945987373	5.90292892164337	5.76069865375978	6.72107928321944	6.5288767861322	8.00687149971887	6.77615231036203	6.50409108048584	6.90409707035724	5.73380089990426	7.10160227823993	6.72107928321944	6.50205122626944	6.94551646144429	6.89584655738627	6.42172269719528
+"THOC1"	8.81931870941368	8.69077089416469	8.96154750528881	8.79721814270755	8.62189984278046	8.69725596625584	8.48843858206268	8.91884830402136	8.69288419378839	8.4102766231062	8.88422117821562	8.59759367644878	8.49973265419147	8.72017214262199	8.84103348215439	8.86971396482499	8.62623332759469	9.2778734764349	8.72063163621263	8.34479833735898	8.5657369988149
+"THOC2"	5.1752794935706	4.14079558080767	3.71031846596918	4.2791055430634	4.07792606942969	4.48050597596738	4.1844401784395	4.2901967453143	4.39583555998798	3.98957730185333	4.6417180094774	4.02946102951453	4.6115748194471	4.33216614085298	4.2791055430634	4.51388542793181	4.14194452143206	4.90323924091026	4.68162810401741	4.45999842058774	4.16976872469157
+"THOC5"	3.10846779120109	3.32628211245973	3.16659541821061	3.51833589141751	3.15132239352051	3.39076777906255	3.61149683786857	3.70785873511351	4.25144246883072	3.66113500863401	3.74235217017352	3.6363316173842	3.8180661332297	3.47666482194909	3.46508115912206	3.54320543255889	3.74047997052254	3.47076898464908	3.78517861633425	3.51261009967425	3.36110836394706
+"THOC6"	6.29722615439861	5.98737603366594	6.35109795545011	6.13518818161785	5.96320459582514	6.44302527112396	6.64243791014716	5.9837922288428	6.20412666513608	6.11362952760044	6.3250924469701	5.8704121990033	6.22312343597236	6.28491209847652	6.19934398970307	6.31335112230574	6.04462879909585	6.45522735725718	6.09612696059843	6.69299512353803	6.16715013385126
+"THOC7"	8.18054008600445	8.20125394401233	8.40982094156302	8.39836934095311	8.78921575721532	7.40484503915674	7.94448689653854	8.07384025547006	8.65857337704877	8.66365232171068	8.28790126411906	8.43822322415137	8.59663442315097	7.86282623141984	8.68887416558151	8.44059798949762	8.47565634019453	8.24397731857598	8.39836934095311	8.42553344051952	8.77398686521216
+"THOP1"	7.92119133055217	7.68669854138585	8.01896274853457	7.76505353686987	7.67059984455533	8.04487074896355	7.83504556482304	7.69250837476527	7.93339868449377	7.84420838067885	7.64862864755998	7.7834587340187	7.73515807898883	7.56374229594821	7.58221113338906	7.6007201498813	7.82789891269857	7.72978398878849	7.73571829757093	8.02236738274351	7.75647898296459
+"THORLNC"	5.93856385749741	6.20256505910618	5.83742153678311	6.10803952809565	6.04746006227718	5.77826492176873	5.97939668269277	6.26382807274656	6.46005427473709	6.04746006227718	5.88061144043316	6.13596256034856	5.99948294840676	6.12249967686553	6.10770753087399	6.14414565403874	5.70329530113205	5.60576580161821	5.80120059593988	6.11831600301312	6.11722193437739
+"THPO"	4.12641021682769	3.88943836458695	4.6021036227009	4.10179183639579	4.26425681760644	4.32382772230725	3.95102699221477	3.85780974491273	3.90979439467087	4.08313800261051	3.76689389870481	3.91159599861205	4.16554722347308	3.92095344901996	3.94324887270333	3.93668319481726	3.97764425416481	4.03979539245002	4.03194506520285	4.25595398063583	4.12659036759871
+"THRA"	6.60111944262718	6.58698187612217	6.82537421084855	7.20397161547767	6.89937638348978	7.13499885533716	6.66867445000872	6.75606644683713	6.87418988017935	6.81071809565809	6.71385659917688	6.7025309048949	7.33914827404357	7.23404554727577	7.1317526638831	6.38771489546634	6.81689022801477	6.63361196403545	6.85316710249845	6.35473144259052	6.59672013414346
+"THRAP3"	7.63959266171441	7.68660877078279	7.85169102579809	7.67468406518307	8.1284675508791	7.9840274039158	7.42843483482359	7.67583220712803	7.87791456757508	8.16343843485127	7.88674999814959	8.13525873810172	7.40288687131183	7.85916517195379	7.55397381460881	7.55302160242404	7.40937571843435	7.82051683107125	7.45243891190378	8.10615662790568	7.54880296613977
+"THRB"	7.61685632148309	8.65895672338864	9.40380702679847	9.09964802349246	9.13544833306141	8.24584136961962	7.95986026863767	8.65627021866008	9.17008437574354	8.83798105187038	7.98058257398728	8.91293843739691	8.9268815623949	8.35113344158026	9.1574225445711	7.90808159893257	9.03372616801176	8.51920953486611	9.01201507871928	8.82579934288916	8.96192686408722
+"THRB-IT1"	6.67563413386355	7.30811627161803	7.58608145937753	7.34049854184952	7.12823877935229	7.14496332710353	7.22254227724703	7.08259009711279	7.06281435610837	6.18946499356232	6.53481506144973	6.39106275538661	7.58589733979311	7.23816348077066	7.32751771271593	5.32729100816897	6.4964730545044	6.43981668266838	6.96395447747568	6.72671374996112	6.5611055188919
+"THRSP"	6.51770904601113	6.79405889256198	6.52846724479019	6.89937616740412	6.56321197511491	6.58862551567589	6.92317147129565	6.70724689523715	6.61199328951794	6.87881921298373	6.7838419366454	6.67850600670986	6.70058692789992	6.81200493497708	6.87142320310344	6.50311040075723	6.84995384580401	6.20560201338067	7.06690255271498	6.41755486876755	6.96648208502706
+"THSD4"	8.35723153795623	7.66199128690472	6.87226904969608	7.46299041873065	7.47174628106172	7.85364116935162	6.90829682451809	8.10843502391083	7.20834294080274	8.05796843576441	7.18831570188293	7.38005415432872	7.1360445917779	7.82039230390577	6.79328795074507	7.00054712194825	7.78710158178333	7.05782533427719	7.46337974406946	9.47852335926915	7.43103787246598
+"THSD4-AS1"	4.92856681436194	5.08414912402627	5.13088662530792	5.06676332743939	5.1380405831398	5.29320878791486	4.88544391777978	4.86187566742222	4.86361138153057	4.97735330485512	4.92212599121137	5.00715207407757	4.79648313193773	4.94799380571064	4.85324303049694	4.90776722571378	5.27388560501312	4.75963688559195	4.99532194402693	5.05624640692253	4.92792047193321
+"THSD7A"	7.23128863164009	7.27307554569634	8.21262348976215	6.99773856053128	7.34621684037936	7.15945256512089	7.21058897790756	7.52392546786423	6.86278930195412	7.32561339049699	7.38388517219196	7.67871937728493	6.85049093145373	7.14825289153937	7.10375441372777	6.93912648908755	7.15337989805127	7.21536990188714	7.24174408194418	7.69916042539788	7.50605434548597
+"THSD7B"	4.02387491675559	3.92035847850265	4.78672948028106	4.05111437114147	4.25831430301558	4.59147310182911	4.15876834471369	4.15550261918524	4.24456846891456	3.78470047345819	4.27079248286541	4.21281770775796	3.96977037193443	4.03022130427364	4.15550261918524	4.05111437114147	4.08760134636187	4.20291384464216	4.14689732922334	3.95148389406962	4.00338704930681
+"THUMPD1"	7.3353756418859	7.63975978183122	8.01974739890982	7.71479777329029	7.6512139848716	7.01592138747356	6.65432151236033	7.55793006727781	7.87240839737339	7.79266507944311	7.95636420852254	7.7473163941226	7.65519112645325	7.27897186358013	7.85131754344989	7.73732894155335	7.6572345422292	7.89543201754539	7.69321786237841	7.5097824528034	7.63312411931546
+"THUMPD2"	7.05591783823896	7.22625849957709	7.50158499798663	6.99966300309635	7.34371594189027	7.19426400816769	6.78085620408836	7.43471042768614	6.99011426439157	7.19611495018372	6.96055936413263	7.38697689437213	7.01393157485412	6.90882816405156	7.4750545938962	7.2199781129623	7.18717860379949	7.16857260378314	7.34938192899187	7.32197681951571	6.82609642069822
+"THUMPD3"	8.24963670862781	8.19596675172852	8.39419297177072	7.69120460121473	8.24240039215959	7.48079152586404	7.70251403404981	8.15871943546167	7.72358400868059	8.29910967079344	8.00061559303806	8.1886684910201	7.6758732944331	7.53971432972896	7.90520888884896	8.24642361981273	7.92723269584356	8.23835945008373	8.00191171117581	8.20605025990554	8.06365987617252
+"THUMPD3-AS1"	6.27053716593187	7.02507544696864	7.79256215330057	6.85176896764514	7.25225074400029	6.87492201247447	6.41748134324524	7.1533063950391	6.74528543450733	6.49875865809472	7.00926683512365	7.04023151313555	6.68394263760959	6.55635646294542	7.05927723978557	7.10380040779352	6.80522260724996	7.17220649507591	6.85176896764514	6.86863828341711	6.67272437216582
+"THY1"	9.25394924235731	10.1996919386159	10.8977201139626	10.3618411130227	11.4129945570513	10.7879110923544	9.34928024814461	10.0593762278647	10.9227714752686	11.4407487760007	9.60204736858527	11.2504167237866	10.3688069305204	9.58968436633527	10.7852003602323	10.3587150246761	11.0486217489562	10.5138437281705	10.5792238079719	11.6690909106355	11.4519256196053
+"THYN1"	8.67902603705211	8.98467976248036	9.31622073127538	8.93345861976151	9.38111824131998	8.3696811189065	8.16048617199251	8.88324382078814	9.09536404887318	9.29612212079279	8.9044451281695	9.28455670124174	8.76338829167995	8.53055223050398	8.80725206234823	9.18091788215225	9.02664931460067	9.2324791176755	9.03669115059292	9.29014268166753	9.23894153747776
+"TIA1"	7.87142600330871	8.26065940581463	7.51724885974248	7.411259595681	7.64726054490657	6.74239314689298	6.69892859987917	7.28948945943603	6.85171411138008	7.5394255877683	8.51816382005622	7.53402618330654	7.13729538733375	7.04584171336535	6.88245313030254	8.76009364318656	7.53875176628638	8.70508638800651	7.48029509257081	7.49101439408133	7.90468150903092
+"TIAL1"	7.37687773335902	7.37065162350994	7.09458333214449	7.1779436471778	7.13535490955667	6.93536168210032	6.96923427448183	7.07006412585372	7.2797226383436	7.28696681625437	7.70419436033333	7.15706716868733	7.19827370187867	7.0741530361741	7.26750089559289	7.68660800203983	7.14541357186534	8.33243695421668	6.94622727614407	7.0839875246391	6.96275809728706
+"TIAM1"	7.26296793431557	7.29758452782514	7.1327591669227	7.55431083962155	7.56848028994034	6.99954779877809	7.14738832808681	7.06924629756045	7.689963241836	7.77477733149784	7.42181441146155	7.71918619359065	7.42751376852352	6.97683531792307	7.12219863246185	7.79662013855612	7.50167327136157	7.43561710576085	7.42030151660267	7.58390562349441	7.61224827014017
+"TIAM1-AS1"	4.73413194366943	4.9938258469124	4.74625348420544	4.91912212229306	5.10205052695353	4.9742810867505	5.1716869876303	5.26825514725762	5.03381856037876	5.05809941562567	4.63323430782697	4.94567098411327	4.88991048165969	4.99541738862176	4.91912212229306	4.94781521760148	4.83280077923193	4.30692160198797	4.89894175244232	4.9000701254523	4.92706945310992
+"TIAM2"	7.46981585534422	8.42721330424914	8.58274657277823	8.89469196862941	9.07861270312562	8.37426804999207	7.54022979206213	8.24318496553331	9.46683933724325	8.97303042588836	7.40945672241379	8.84281033240392	8.90519048373299	8.26659663534689	8.90754621662492	7.33728311097482	8.89050002962938	8.42693605292991	8.93822827567864	8.80010706767668	8.8694982558699
+"TICAM1"	7.0839875246391	6.93295557350336	6.96112190653537	6.83560424547965	7.08252348756122	7.13051255348668	6.68797400296113	7.12527310748969	7.10010084106319	7.15973719738709	6.7632149462942	6.87759678379293	7.14464881573349	7.04818161479102	7.02550414708926	6.60971548429628	6.92799149083855	6.97351420367757	6.86473667172958	7.01172360312247	7.18150922477321
+"TICRR"	6.13910429076412	6.11971466917576	6.21461760625362	6.27123472422418	6.02987239790491	6.49257671828562	6.75808921838201	6.38205468545417	6.12928593300851	6.20525776598401	6.08779655417619	6.20525776598401	6.51204807168104	6.61491268290002	6.20525776598401	6.20525776598401	6.17738116943041	6.0755747572132	6.40381171599209	6.18052695927032	6.17314448935862
+"TIE1"	8.45417754731251	7.01143433555549	6.24240745207689	6.98387768123895	6.34983526045421	8.63388238758769	8.1642193928955	6.90110750224776	6.53484245559785	6.42011645987927	7.16570109709811	6.14893618509495	7.33677161179101	8.15115189296021	6.21966085522616	6.51059167024026	7.39015846394803	7.29206959252937	6.75640360599584	6.8260443006352	6.10007755940134
+"TIFA"	7.11055941045481	5.97761865345985	5.77857880890053	6.52141623116222	7.0058447874922	6.90237709266814	5.44307028677699	7.26824244467407	6.8995008453024	7.12245996088349	6.69988748388274	6.71404306279544	7.40692056737448	6.59258350170949	7.69296676702419	6.76566266377422	6.83236469371306	7.10101334451302	6.69386624702951	6.95427808557539	7.74599548289784
+"TIFAB"	6.65266501277481	6.57474144503207	6.53758637007994	6.8921265803763	6.46831033641762	7.16590279570604	7.15660958302651	6.54928939420248	6.82278504087694	6.62072114223447	6.41635687775821	6.69837946044753	6.88678728171805	7.03588466883351	6.65266501277481	6.64587905451977	6.64668965309118	6.42862088360323	6.96984965021231	6.66581551602439	6.65266501277481
+"TIGD1"	6.54073858398478	6.68525168888194	6.98431070545709	6.21351535139145	6.54301204431025	6.29087432252435	6.2695824894001	6.24680425167589	5.84633512487758	5.96826295141847	6.60363076712049	6.04224955365105	6.00217086992969	6.40056998698218	5.89224321676732	6.50608303417784	5.67214288896326	6.87761103223896	6.22528175453793	6.15598010549322	5.99907238152382
+"TIGD2"	5.39176268364791	5.63370260730982	5.94593596479807	5.23393090594895	6.03544953701663	5.39176268364791	5.16181186578062	4.92590234548174	5.33269389036619	5.14191367540821	5.90163761704166	5.00811450699451	5.1625938582174	5.39415588805401	5.37682447631082	6.28604605199743	4.95648917203772	6.04397663719253	5.42128742030356	5.93565744903606	5.06010470700665
+"TIGD3"	5.86853947246379	6.01703872234643	6.33252275665919	5.92895214164737	6.58792234780499	6.03246110653721	6.09084359266649	5.78316147768658	6.08067894177185	6.31335292164789	6.07447242365776	6.07650775961619	6.06967516126533	6.07927900387058	6.03638728917358	5.93117398469806	6.00033951322656	5.92725595455908	6.19883405836448	6.33486472787957	6.15798856230171
+"TIGD4"	4.92120508393802	4.7858763255273	4.55525681530825	4.54874964794493	4.19818030628423	4.67569487082649	4.72728651153249	4.54426353639513	4.52204581501129	4.77912180446098	4.78008770765935	4.67569487082649	4.52204581501129	4.76911351933912	4.66806620827783	4.77105702130309	4.78595728396968	4.80191437580423	4.67339963264004	4.5422035557415	4.66784483447504
+"TIGD6"	3.47115147475991	3.51404342798301	3.31434006626191	3.13803547728513	3.26645060891789	3.24923598741557	3.53741376891322	3.20220865645663	3.20307534151742	3.27605695764013	3.35433552680301	3.09728862383785	3.1553588094335	3.53741376891322	3.52162964963498	3.30684154884342	3.17227723135448	3.36169935150978	3.27605695764013	3.15864366335911	3.24460112798668
+"TIGD7"	7.04127549225207	7.34111952208608	7.02779627816416	7.10553038479729	6.70669777439769	6.33819692493264	7.10572416976616	7.09561491757677	6.97435004817921	6.92041823519783	7.07222874590305	6.90121250723551	6.99924383822955	6.85241088018718	7.42485845099087	7.50611798553702	6.86574410059389	7.03506270600902	7.14180797983752	7.26861050306496	6.80050199899022
+"TIGIT"	4.27438222413338	4.4752576076541	4.05795757451734	4.38580442493793	4.14995506986763	4.64274774244633	4.42121218055497	4.36685930570974	4.22090682291968	4.19291863953128	4.10911604597703	3.88345852193631	4.36261407759697	4.2204528129697	4.21452734201822	4.24558899283178	4.2072575342501	3.96779852709763	3.94509989970138	4.17959334323696	4.39893437511516
+"TIMD4"	3.77943448941705	3.98958488224664	4.02392067767685	4.10741151681258	4.16835967422935	3.95953992442689	4.09100721893202	3.96779852709763	3.9389101234089	3.80005852962073	3.85740893839161	3.91999541355185	3.93792562955534	3.95208915747376	3.70819585217069	3.89688479554271	3.94847753638272	3.72487291804672	4.01357870284736	3.94847753638272	4.07393579037921
+"TIMELESS"	6.39529621080056	5.47099865333773	5.5015681343493	5.89547764135487	5.78809201898332	6.34265925301375	5.70927990158864	5.713999060633	5.71262670422022	5.75518914118097	5.97341072308377	5.55342944800949	5.7249288068384	6.14970272770944	5.56718392562523	6.31677914382809	5.27902568481619	6.42393300509979	5.78356691749732	5.77337599775207	5.6545712205523
+"TIMM10"	8.4516547352432	8.84701303070627	9.01536786941343	8.22173175049494	8.88690381755249	8.6727900831355	8.47421360260492	8.47540058900601	8.80924247348305	8.84357524981835	8.87838682131072	8.72831545465558	8.17424290786581	8.37465210399513	8.40454067598533	8.68067405033247	8.45699107535849	9.08136864190812	8.56469846707942	9.07194628164169	8.84018255539499
+"TIMM10B"	7.34718768424577	7.72491615075991	7.77897819259653	7.63080559362416	7.62336624894094	6.74795538253272	7.55235391007965	7.5765322817102	7.42751376852352	8.1813601624018	7.90938883240103	7.77179996277208	7.07237373165643	7.26569255405403	7.69887889956096	8.02924018627595	7.66579352634338	8.20567151020285	7.78874667541711	8.47556523111535	8.02447770103545
+"TIMM17A"	7.51984570065251	7.67234032472831	7.70504806924345	7.5149781448272	8.44465457224594	7.10314370514792	7.22188100132313	7.64370931851384	7.72380586131572	8.44878484627609	7.64708594545546	8.18608556686651	7.43745621972055	7.21533864413895	7.5842455728905	8.22871396707954	7.75873986009699	8.27317961973952	7.45572319939688	8.38403449364504	8.62133400183531
+"TIMM17B"	5.11765288420004	5.35734932751264	5.2432257375913	5.32692006831047	5.26895628839238	5.31881367193239	5.30043212431745	5.04967562539869	5.31994241148028	5.21900663912818	4.95122328345722	5.20471094239814	5.26265897708434	5.38122273300133	5.53047219780185	5.3576319423075	5.26265897708434	5.16328372021891	5.34876166369072	5.40775653360045	5.32383488120122
+"TIMM21"	8.96456885723211	8.9964444218261	9.1506192668173	9.54553849397776	9.05959685983028	8.67011369075351	9.20377184598515	9.2338055929744	9.34917852895086	8.90454238553785	9.29025241210658	8.85903604557543	9.3551069820308	8.93265591253907	9.35941329052678	9.31989407342635	9.21092138565702	9.22298212712602	9.38817424251838	9.16666719287335	9.10590878920876
+"TIMM23"	9.61058139143343	9.80756693442756	9.99491421799753	9.71371264115984	9.9584580132892	9.23898162239799	8.85030169611445	9.75322150227185	9.94038289192337	10.1617728300981	9.55167088520648	9.82822176646017	9.7858372837976	9.22181806117757	9.92698234403772	9.59441627844509	9.74844273887546	9.76602254612113	9.67722199122843	10.0272856581039	9.9857062786179
+"TIMM23B"	8.43163076971001	8.77119521656468	8.05658835097153	8.38579161808956	8.07328174443331	7.41530127316961	7.74808992785732	8.03827622684133	8.18948316803688	8.56302909740305	8.73377328790245	8.68564217799045	7.96334102262453	8.06765931593009	8.1944161701303	8.72138396980111	8.64139538866502	7.83978057463131	8.2390603889675	8.08957507540505	8.77359421643186
+"TIMM29"	6.64236985077801	6.68064529727087	6.91388891255481	6.53189954509177	7.08178920548004	6.75439383107244	6.62649616161247	6.81835143555273	6.59635033674283	6.71626315409277	6.54301737527696	6.64330359972207	6.41988992351484	6.82220344693438	6.56209268405414	6.55004477521448	6.39057106187565	7.05437067168215	6.67970284380176	6.77015475387019	6.49804472660575
+"TIMM44"	7.52037458389548	7.36724865317816	7.60027184429739	7.41057870478028	7.17284581146475	7.83327062414988	7.9803902048144	7.59589385603302	7.71739537326581	7.0862725536941	7.36027562703233	7.12906575814942	7.63942803680686	7.85005196456402	7.8028681586482	7.13553857107557	7.36559812286323	7.39023700637025	7.29807908882899	7.37091528308157	7.11941917306688
+"TIMM50"	6.64536390723956	6.73128125440639	6.24940353170276	6.84575303062368	6.22287052286902	6.24624496249475	7.02537304680207	6.70838404772452	6.88214390635333	7.13883404396788	6.64339494258476	6.94250219104684	7.01661116399222	6.96106811995787	6.91270513640456	6.81999368831723	6.82150969655731	6.07447242365776	6.88299684817004	7.07676835502218	6.7390206449206
+"TIMM8A"	5.71864107332609	6.06992563460871	6.36374807127638	6.08248509662159	6.42006272078616	6.03238731863924	5.80639972169194	6.10172455145438	5.77007523454468	6.0268456023735	6.01584378468903	6.13455018479284	6.00647542334829	5.97294980866369	5.80067333301438	6.34518964370939	5.87291196562272	5.95477377947774	6.0268456023735	6.60184023743293	6.06173972366896
+"TIMM8B"	7.20818197123576	7.49424138599291	7.5341281918853	7.6895385663833	8.12116168085911	7.85964646211612	7.57922371027053	7.86917311451256	7.91192995658343	7.93084124218753	7.50972918283852	7.86541253785438	7.79910366566761	7.74648093064783	8.03536731763142	8.02556116233071	7.40296268250291	8.09981404542934	7.7613488267896	8.05646115602107	7.96833529109215
+"TIMM9"	7.69525800051214	7.46266889175166	8.05901971368433	7.50895732790545	8.06249429609146	7.73718679037731	7.6090101106312	7.63434559604694	7.79232218363292	7.75300996526917	7.49939229253281	7.73718679037731	7.51867918275097	7.55572133448957	7.7898063827149	7.77973807183086	7.72622039839918	7.97403988692155	7.73791090593849	7.92450545196877	7.73718679037731
+"TIMMDC1"	9.51506070775166	9.16603476816374	9.11314078356633	9.07775399881524	9.0417965966557	8.84717540924477	9.10607283780357	9.10092865984131	8.83693264172365	9.16254760114184	9.37329278427714	8.98110732460413	8.95283989759175	9.05272088936543	9.07511212773403	9.50705916399646	8.87368268203376	9.63913409279552	9.22421445416552	9.20715928879216	8.93046426184507
+"TIMP1"	10.1129461006618	8.33902429065818	8.02872922295006	8.21317171956756	7.96138832876166	9.35917478758688	8.92254657248198	9.27617386116403	7.48640396531011	9.02106363791675	8.61579364339392	8.67665032150039	8.24430682407693	8.75624786110803	8.05265603734459	7.89534746766719	8.06495148766809	7.74205126549151	8.48857568071047	10.0387763354312	9.43498755747605
+"TIMP2"	10.6036124973056	10.528467432046	10.1997674724425	10.1450861729428	10.1867955808617	9.45659491484944	9.63133638254986	10.1187585602698	9.46098893598593	10.2865583200056	11.4265354071939	10.2726715504253	9.83368354502833	9.52418148017641	9.09933298601941	11.0691341565789	10.0787648980889	10.7449721986366	10.2412429830641	10.5318055488422	10.2110315597354
+"TIMP3"	9.57115198200255	8.80112781818748	7.21039434683014	8.2355049659416	8.31645025249628	7.93049192465582	8.94607390383444	8.49362514867866	8.57292127095616	8.96914098153164	8.71356217930433	8.2923650028918	8.67698606119911	8.59407874582557	7.2397416010792	7.52808366121515	8.6770280558355	7.85189949798544	8.21675828742876	8.68968661719403	8.34583499334806
+"TIMP4"	6.26302385982612	5.63429362689349	4.98549797031751	5.47187682067978	5.27700745237001	6.36727943975541	6.15062143695403	5.83259323813904	5.30996771973012	5.38516191273047	5.29234882421223	5.25270525674987	5.76281471171136	6.10735031794439	5.01796642558272	5.41238307578362	5.12258400151695	5.30809628700272	5.29641509471047	5.70103433020766	4.76903463667074
+"TINAG"	3.68893326032148	3.71744461559989	3.74912505172842	3.85832294009244	3.61305999682579	4.18302405664009	4.00701966631289	3.68195443195835	3.74281832568234	3.83133671854873	3.53393881520459	3.60301937413771	3.8508947787798	3.92895800221222	3.74696452368772	3.71744461559989	3.52095904594164	3.60781220126581	3.83353097716374	3.76649585251223	3.59771761077589
+"TINAGL1"	7.32299257923178	6.78058295801798	6.64581497938329	6.90947814019455	6.36338347380373	6.96884916558198	7.15685000132576	6.9326641810861	6.84436529391855	6.89979205959837	6.7229927674805	6.7807595651939	7.30105638188306	7.22598718250547	6.78008321656254	6.76049791230575	7.02638289525648	6.91755326664315	6.89979205959837	6.75264696712555	6.9162444670884
+"TINCR"	6.54264922431103	6.42893132159123	6.62993115394644	6.56842053859571	6.47899027926284	6.44449522298942	6.66576122473134	7.21121967422533	6.48693958179469	6.29084436160376	6.18954977471894	6.44067483123101	6.2118276379452	6.54146808189856	6.6301039942495	6.05066321276495	6.54756555162045	6.18307166461188	6.3965188580008	6.13043238146735	6.44067483123101
+"TIPARP"	9.16326569317624	8.82702180919527	8.32697518678809	8.86791020624096	8.65184794999312	9.00049471092603	9.03156643983857	10.0662258534321	8.71021870083641	8.20883013465436	8.73404769398685	8.6187575246066	8.82912223326797	8.77072342013349	9.0324611148196	9.03987485345994	9.1189220557807	9.40659769198581	8.83528452146024	8.37896899863771	8.87885224504118
+"TIPIN"	5.47034324775688	5.17813663101413	5.06368394733501	4.81359915382224	5.15239917715336	4.57732417503525	5.09025187652653	5.1188888217947	4.95327899504258	5.26732597951829	5.50796275865652	5.444364744984	5.15239917715336	5.12533455983146	4.72083029964895	5.82420694590734	4.96176655289091	5.37292907175154	5.17531102246592	5.23772955174371	5.0374120118885
+"TIPRL"	5.25532384475976	6.52231741199252	6.37767478133502	6.03837270463874	6.52654575552226	5.86454874366612	5.35086527092946	6.16976529607283	6.62165430595111	6.1287278633159	6.13291579118521	5.89245492148771	5.92091334931271	5.75182647335439	6.01096729112887	5.5191330614856	6.214038890058	5.90016409577325	6.36017305149622	5.67708238355362	6.2651749558649
+"TIRAP"	5.99703440236306	6.04259792167467	5.90086650371606	6.01096729112887	6.01660589870284	5.49969804072007	6.03102379913108	5.80659382940336	6.12817701050143	6.286093108471	5.89443672540883	6.20732235167043	5.83184667234258	5.9548028445868	5.76211418724188	6.19174603112456	6.13969320775148	5.73067848774932	5.94975160580857	6.44252958635093	6.15184997989203
+"TJAP1"	9.57722899095761	9.48848140391073	9.19110126903166	9.46635513008551	8.84970771839796	9.50531099312219	9.16885303427832	8.95124906257585	8.84207795739762	8.66220381680671	9.98590323882047	8.76776638222788	9.12352966065768	9.49861252162835	9.14838544855731	10.5581325027727	9.06697747015851	10.3837925828379	9.40757444305409	8.55499022355269	9.27321710217221
+"TJP3"	6.33996187742872	6.33346534921178	6.30997109772858	6.41745486305972	6.10376049812508	6.52446342974676	6.87957711712945	6.18147351023272	6.36684748168555	6.49648255946213	6.11265652994222	6.42223811370785	6.49118793684738	6.86926536569357	6.38785653264574	6.19871900281629	6.32937696334714	6.15251564348966	6.40268597642553	6.21633412066846	6.29338195000171
+"TK1"	6.32843121271414	6.10720940664587	6.00503348253762	6.15410005016355	5.94570517050411	6.64625966157971	6.52037542865556	6.14141998932801	6.11135946542974	6.19409598415598	5.84359249276901	6.2030763496523	6.41637249493589	6.35366332256791	6.28121263002858	6.00500058637943	6.17990196908815	6.12908393840695	6.35886471559225	6.03399385664268	6.12547648840064
+"TK2"	5.82648687307589	5.79947062217396	5.79218304001325	5.95011370458371	5.92201477511128	5.58673661360537	5.82470305863087	5.82648687307589	6.05999986269151	5.91770593933091	5.72820027662638	5.83237556474057	5.82648687307589	5.51112247867788	5.75773379596575	5.82648687307589	5.78162512968286	5.43329224642121	6.05038349308416	6.1708923128941	5.8668976310647
+"TKFC"	5.96674835908371	6.1405953688327	6.18238014500753	5.98309464718421	6.21710212800672	6.03555666878309	5.98921966860226	6.13095626142799	5.9866516293604	6.37789474193109	6.33248522734289	6.30397759305884	6.10162430579076	6.17007248696622	5.84324430367431	6.54568399817407	5.98304933622009	6.28165710030219	6.17957947574882	6.58507708473002	6.30926094152584
+"TKT"	10.1109175652758	9.34991893744946	8.75389574997251	9.28157191013739	9.41917439387875	8.89469726110109	10.0232231430859	9.88767876933537	9.11963323534005	9.97689048760414	9.53445374948592	9.41716560224146	9.34449499957833	8.9339515617679	9.35997447564749	9.53140251331283	9.4938003163218	9.8199098700718	9.81599567223767	10.0566782535007	9.54860423113798
+"TKTL1"	4.49497619638741	4.66335215421191	4.39682735499649	4.49081929104685	4.49497619638741	4.90993695477025	4.5517800647804	4.68507922874941	4.22882466016903	4.09930123725189	4.19881550242854	4.2497757372142	4.32670928074492	4.70992645782955	4.58507809006039	4.61587051138091	4.50673944240864	4.10129259829695	4.2658048525984	4.45039330182818	4.48543397839065
+"TKTL2"	3.52380517533949	3.66085007104091	3.47298025610708	3.47139166665181	3.64364939599098	3.47298025610708	3.58181946881595	3.44991892898808	3.67142363560043	3.48414777471737	3.33386281446442	3.20211514893676	3.43797209514989	3.8079864565989	3.5043013474382	3.5564246871831	3.42563320860671	3.41603442714824	3.49467080719454	3.45543993057874	3.36948758187827
+"TLCD1"	6.54220541910782	7.22211743500723	6.86352642520324	6.58177706051104	6.97525058877752	5.77872950452485	7.0839875246391	7.2111408530425	6.37031518079698	6.44469638226588	6.47378187520878	6.70031157460147	6.02789736666907	6.54220541910782	6.12448919140016	6.41065078708621	6.51302447748887	6.23483382220071	6.25027291593403	6.88260107541205	6.514953743979
+"TLCD3A"	7.55428132278401	7.2964261357508	7.66223023767252	6.47172715274589	7.15367432031124	7.2193816556438	7.20372530687379	7.12244190531582	6.65489407316474	7.13228576612116	7.14554458539603	6.6597742321459	6.27763606936329	7.11851024828355	7.29196373374075	6.94053142860545	7.01714163905033	6.94037134013389	6.87462927890298	7.21974602686815	6.80412694050619
+"TLCD3B"	7.62098094414569	7.58398317620014	8.0449195373594	8.11882224776289	7.70333816254515	8.40228219541289	8.81553698159539	7.68791432706447	8.03222895886203	8.13136996508363	7.7141851706544	8.01364907317538	8.36371670971144	8.07535698041414	8.02596458667406	7.33868731009462	8.10872124541399	7.57171020407955	8.1154818995607	8.06165670597079	8.07884645245789
+"TLCD4"	6.92410257372628	7.13258436524467	7.5383447773744	7.91025307377003	7.60121474249883	6.77039952359044	6.87369404158746	7.90686152909611	8.15737697125935	7.27819111242473	6.93493984577632	7.3305449316845	7.74371250433833	7.17854792958793	8.11776031444213	7.00271305767493	7.71918187276984	7.55080079430741	7.6305300138976	7.25785103878282	7.00532424723347
+"TLCD5"	7.83513081953879	7.50106708015095	7.44747672269467	7.13452742442854	7.66813709447223	7.78887473582906	7.58144405885972	7.84529314551807	7.23417370802888	7.15820863870202	7.99378728361246	7.28410404324977	7.18016346814061	7.43329182614296	7.09614175234615	8.04692133439292	7.29018725095047	8.31995163665558	7.48996451264139	7.3967436261765	6.73217946311144
+"TLDC2"	5.2272095405193	5.38711010290986	5.23640516050578	5.50076182085259	5.26947084749132	5.79418040434464	5.49532495075286	5.30666472084095	5.26145117110467	5.41216254924695	5.38785708350719	5.7101917317196	5.47450413186705	5.51874962985543	5.39576317200021	5.14284931970252	5.51910681071428	5.13725764322298	5.60402420305511	5.32329142767808	5.50171407876691
+"TLE1"	9.5468388798426	8.99378372356675	9.35137345486558	9.3286886506022	8.94443359786037	9.09845962928066	9.61760988188406	8.90894303924918	9.41152394552703	9.00570204985982	8.87375852349519	8.71525055310357	9.36417500936568	9.4100897622789	9.44174866647441	8.13614639883423	8.9276812306272	8.71502318705422	9.05177297731056	8.93906057496805	8.62676728763632
+"TLE1-DT"	3.87798055011318	4.24499521422405	4.002344646468	4.32850738785791	4.19939694611748	4.1367229884382	4.23269133349763	4.06239889745532	3.99447499828984	4.01418804279501	3.89955851755826	4.30746877934303	4.28325896673586	4.18536865818976	4.15381695835824	4.26597786614738	4.11651072511832	3.94702738571509	4.01764502476674	4.08041012831918	4.22114032895499
+"TLE2"	8.81335632883005	8.88454437855249	9.12960795234979	8.97367315093816	8.96838225944285	9.09068486227429	9.06430369052486	9.11888587633303	9.27159113205779	8.86348016808337	8.50438205858012	8.80564229389454	9.23443121139307	9.28954758224925	9.041743775143	8.92535340385091	9.06958721406124	8.80118137323118	8.88008324454868	9.12888973683763	8.97189895384929
+"TLE3"	6.25312305618023	5.32539386699463	5.10362057723521	5.29970079716761	5.0745167762688	5.59619131564604	6.09507826712012	6.13600219114986	5.62756029293064	5.65367816969213	5.3279527787881	5.72859986910302	5.40740986425178	4.99403796149848	5.10702834528684	5.3778236154525	5.54466929380802	5.14873718901971	5.60573950893732	5.66650023613369	5.84492294340354
+"TLE4"	6.30557897377384	5.98912811153663	5.15702930580239	5.62052383583875	5.70619080171577	6.31215287013654	5.90739189760262	6.31266056263763	5.59408837041038	5.60525575485078	6.84897570341113	5.95509983627693	5.90739189760262	5.58332613919307	5.52666226369626	6.70200204950882	5.79623850180921	6.70382347147711	5.7924650952377	5.42106976092495	5.9254739561462
+"TLE5"	9.65225842615704	9.85652932779272	10.155674208903	10.1606794953511	10.0059301947197	10.0716698598796	10.3005111748506	10.0858422815751	10.2652547071217	10.3313151860846	9.86780297256225	10.1768583615457	10.2670721926047	9.95916265554765	10.2505131839696	9.32569503651797	10.2179342975179	9.77667823052543	10.1912172921837	10.3822188955368	10.1594841088125
+"TLE6"	6.04046004681891	6.21650073025011	6.24048473495781	6.22117453027929	6.01030803350074	6.57311918353548	6.6704890871591	6.14802044356195	6.0387294464486	6.35213633474108	6.14274839290532	6.20570237452818	6.41263742481769	6.3593364505816	6.47379369001989	5.91570003652808	6.15686562301859	6.22856531933547	6.24189143743083	5.80368971110302	6.30868018031818
+"TLK1"	5.13900438790069	5.53753664904751	6.43351141836549	6.10766825258371	6.59994967927728	5.61454549084702	5.21012840323172	6.79042308445323	5.3973348872181	6.98511853140831	5.46367819590892	6.65154552681885	5.12778359297813	5.78127463352691	5.983199039053	6.4215162585567	5.72202590196404	5.07798459745707	6.61115990404825	7.34753478347736	6.80275240213049
+"TLK2"	6.81961446150093	6.86455668932961	7.05443325343312	6.66576122473134	6.86946617464424	6.74510297964659	6.54195163083964	6.67453090427133	6.82598483418887	6.73231860636294	6.56552849451599	6.70885773697893	6.28593194110374	6.5537645740166	6.81153934796289	6.66004944470557	6.71236548598638	7.17597153848387	6.25195097486466	6.80355880572524	6.47457409739874
+"TLL1"	3.36995293812475	3.43561657898329	3.24058337637265	3.39747793913404	3.44264143281052	3.42211126494921	3.00584618168458	3.30916911314053	3.40195361544511	3.23905703290424	3.12405913958515	3.5012171331531	3.31163538639262	3.51041768452625	3.54119836486137	3.49481502135412	3.36995293812475	3.42788678387268	3.0012756944352	3.30935963091689	3.37917238182873
+"TLL2"	5.71771668957991	5.78810054773463	5.86461454950526	5.62052383583875	5.78583506334454	6.52895068862524	5.54351531927392	5.44061319479109	5.24539381825506	5.58435872996778	5.92964841165	5.5565709079839	5.3917950161201	5.89592973161603	5.71628240852258	7.40894853972664	5.54728239547416	6.60145401218201	5.50648173227513	5.72960859613894	5.58152084755564
+"TLN1"	8.70008225670545	7.54105626212492	7.33138730843557	7.77727783378324	7.26416484525954	8.1115402202109	8.24061201859202	7.59143452378558	7.02007441076793	7.60353199025479	8.24869116194969	7.51619596724192	7.81793431916108	7.9289982527356	7.00878457723022	7.9503561598362	7.42120241003179	7.9679873430082	7.55589593028379	7.90829389695383	7.82246749165093
+"TLN2"	9.03405638719969	9.56352574322582	9.83786246440123	9.60654022175105	9.76364256066602	9.63550863108256	9.0130185316442	9.68826386333938	9.76359974939507	9.44427116273883	9.07014630597939	9.63589374337787	9.62384642202012	9.53835754281197	9.27318013781124	9.02349606804617	9.81091873711103	9.46010618446043	9.41312873308973	9.72235518455499	9.41704006659677
+"TLNRD1"	5.67223870164189	5.81094035988521	6.30358385230283	5.77400206334999	6.70078588076712	6.04209970317822	5.84047378940134	5.91288503543687	5.8303961727819	5.56401871062328	5.38312290916764	5.59787514082714	5.85130451532012	5.74176815450085	6.32995271355266	5.51993507768667	5.63673712557431	5.76500536145535	5.32278437950463	5.76500536145535	5.76500536145535
+"TLR1"	6.53258206192493	4.80377403753674	3.40411754411942	4.70330590175963	4.80959751532319	4.13762090264126	4.49380146674785	5.51695369867202	4.16981713125735	5.03071737217704	4.67182517268179	4.04422326812654	4.14154578820109	4.88975051015112	4.53211389703106	4.73800516902303	4.10583970267379	4.61082356350749	4.65043867249673	5.56717606650741	5.38302566858081
+"TLR10"	5.84501898715901	5.58998915888436	4.80654451811263	5.26751470375224	5.60628826604406	4.93347038604309	5.35347842091683	5.39576317200021	5.44220983729097	5.4290297608335	5.26691183601047	4.63582940563718	5.17664672361635	5.30414423973762	5.63586128057943	5.77498884039206	4.83851391392687	5.30470347093126	5.38037706378936	5.98343305545443	5.27320936367552
+"TLR2"	8.25385773433482	6.64545302219923	5.78194680112221	7.10772608436958	6.63998456884907	6.11861947196445	6.80313380468457	7.79657714097321	6.97778510239842	6.75849396536225	6.61497583996569	6.89850474996078	6.42208722709679	7.27129780307389	6.54138141465886	6.56531759424733	6.88132362471869	6.88509951873797	6.59787768265175	7.47259530870897	7.61154502650805
+"TLR3"	4.93914317190325	5.01692763041067	3.74500581925535	4.09084122689731	4.14038877325518	3.93818255760432	4.36963887942302	4.2947976575029	4.06770197220956	4.23206120919571	4.58584452046065	3.72564277122338	4.16089863856462	4.58178710006428	3.9443379516093	4.34057268666813	4.09215501989246	4.63681751838428	4.32749972630285	4.71149592067358	4.17703289174759
+"TLR4"	8.4254153162537	7.88413517123139	6.40383782815105	7.34655688819618	7.30932713983776	6.53616426607174	7.88276126559586	7.70462427212978	7.57502891568543	7.67122778559451	7.81361079244236	6.63780324075877	6.99436147812916	7.07864468105729	7.18375514659856	7.44924760112275	7.10498706509165	7.1429538691935	8.14687252143649	7.50153231874638	6.72144195888828
+"TLR5"	8.5547243267646	6.99134697683717	6.49007718902895	7.04088639357835	6.46964488619953	7.21144968308836	7.26792472509577	7.91810748377696	6.87666070198723	6.57227761298846	6.63623901785963	6.42040016069855	6.79471380939108	7.86215865095267	7.28740159520246	6.59150036748443	6.77807347218748	6.96087756646466	7.69456219233259	6.95206666184795	7.31337044443014
+"TLR6"	5.40515670619483	5.28384815879639	5.20035752827199	5.28437882898049	4.89189375007036	5.51665993457365	5.28437882898049	5.25273043492376	5.39858503286381	5.42883918936461	5.66788609929258	4.87598852855677	5.14500899456321	5.39415588805401	5.53621931992709	5.39649584494388	5.02094301603887	5.02911786542874	5.48837036065537	5.15985317095197	5.26485181980435
+"TLR7"	5.88367368845247	5.30860361557668	4.45150007105205	5.01279420503595	5.00989123368279	3.97603699241907	4.86155682190146	5.09606200149127	5.22919280567392	5.21425042182617	5.12238930846154	4.02079660071194	5.13254939416289	5.51106357142161	5.48910811288582	5.43418161717178	4.24653472417244	5.30232641677755	5.19733354275281	5.53188639801125	5.48307128874345
+"TLR8"	5.67266353744461	3.90561036674988	3.3404377108901	3.84159473082621	3.74017183475514	3.82313197332569	3.76512331363439	4.63557456791113	3.72847190358512	4.25670924340798	3.63775940973702	3.79837933062487	3.74182127942007	3.71218701829036	4.11467839604725	3.75541239499757	3.92204063342377	3.88509171534632	3.79858155669578	3.98605873353467	3.94847753638272
+"TLR8-AS1"	3.79223899645424	3.92580685795907	3.68709969980178	4.00438219696336	3.78520938115237	3.78091828037228	3.78520938115237	3.87532494699329	3.85419232454268	3.64646847182225	3.66079083857518	3.9738405401462	3.9553967234574	3.86617979176475	3.77216330589925	3.80467523457304	3.78520938115237	3.55969993101081	3.80280273158737	3.70549251348007	3.70124444787101
+"TLX1"	5.67193313290703	5.85296098735097	5.82066442028085	6.09828670825497	5.95897888462817	6.07394383614537	6.49185529296908	5.87559548316129	5.924171577557	5.86096911839346	6.03787995807381	6.10075710238008	5.94012709463831	6.16769026356222	5.80322359198319	5.94012709463831	6.1062011242387	5.63396349649667	5.94012709463831	5.65611670866646	5.78335110631459
+"TLX2"	5.78222958633984	5.6844104843816	5.94685481892442	5.87053033891814	5.81522651544118	6.00752445992187	6.02967338529843	5.81002255186915	6.00990179220662	6.12590251679967	5.70666944651822	5.70822071684808	5.90653344735447	6.01261913928297	5.88225912691875	5.4684356160539	5.89206847900307	5.68044477906657	5.89824671396789	5.75319179555933	5.97136800003912
+"TLX3"	4.14757791152105	3.82873912943809	3.92915406643535	4.07324495392062	4.20735523788998	4.27358823543987	4.0289398230569	3.770344539824	4.41234498661318	4.24112505502692	3.65216405712578	3.91747881625649	4.5171429110058	4.45386144820282	3.96800425693567	4.00967676648148	3.9813554377429	3.88674922811473	3.72599933508056	3.9660072090085	3.87377741634987
+"TM2D1"	7.69677194618511	8.29998277530307	7.5692936255498	7.40901756023601	8.18529378997566	7.01645034611036	7.58726462982384	7.68063830401828	7.65566481113994	8.24413423466679	8.15140454509654	7.88886426789452	7.09977999698059	7.07634547731804	7.37922505096943	8.33635018726668	7.64186918049249	8.40851240172372	7.66353792403814	8.00432172488057	7.77813724766278
+"TM2D2"	8.53088115448988	8.56390052388546	8.75376328975907	8.30125240174705	8.81703925600535	8.06222372155625	7.87642744945345	8.47017627463295	8.26947770992189	9.04975066530575	8.51666214821845	8.62528119975597	8.18356295551513	7.76536170713579	8.27607928336819	8.95843098248901	8.45356433035786	8.81794843371482	8.64117936375969	8.99336665731791	8.79168768828397
+"TM2D3"	8.65123219424039	9.62273241482935	9.98617205984373	9.41414504252681	9.87087601957056	8.44074368535795	7.96746739324932	9.11469386852048	9.22510311900152	9.72169293712703	9.61212957052827	9.60686028709467	9.23531388510007	8.4548925812899	9.18961925968773	9.60509727172506	9.63309341470308	9.99137481350761	9.2857989553034	9.40311478654884	9.50078447584985
+"TM4SF1"	8.28286632277518	5.91536334384264	4.82210348077898	6.29430090802031	6.29430090802031	8.09056053723977	6.09207207549318	8.27386287038611	6.14117216891384	6.83156587085086	5.70716941711144	6.14139542343623	6.78412143076506	6.51683543711946	6.81797975991912	5.26023219148303	5.88019382819008	6.33996187742872	6.2916769325109	6.11466257638286	7.65078749181481
+"TM4SF18"	7.03400021180941	5.25531482060247	4.66309177277099	5.8668976310647	5.13696004820178	6.72341400755415	5.30871832132416	5.59509055997535	5.52228299947711	5.00988047354885	5.42499874309673	4.29940906397347	6.71605198554816	5.87882319101807	6.48842228765415	4.77228720666753	4.99340059674886	5.66885454766902	5.39096571044835	5.36724102242157	5.90773883549793
+"TM4SF20"	3.451217391326	3.7625283516532	3.7526443887234	3.68943683006932	3.74821195549696	3.99321485246642	3.9316347922618	3.68250570964803	3.79140046312288	3.83191339938399	3.58657035912302	3.7104660848949	3.86365793897983	4.2555511568328	3.79200753064465	3.54300354855708	3.59222776405588	3.67598192845794	3.86559830764782	3.53365693156187	3.62428601922182
+"TM4SF4"	5.65731982219093	5.57200544945516	5.50614792643724	5.7637414832805	5.71219922183265	5.73715070605808	6.00115126344069	5.54761567212071	5.57739796211377	5.62094654936733	5.20355653510864	5.47175945238128	5.62237978817738	5.88082200688925	5.49788519220354	5.54699023057725	5.68174000736455	5.48438812175251	5.57739796211377	5.33691139859507	5.56035088690433
+"TM4SF5"	4.5306913893439	4.80793477563014	4.63968204900087	4.82287385383227	4.80793477563014	5.4751229211239	5.61944661855694	4.75035063948203	4.74512961187359	4.86090742476258	4.50643129871752	4.8516419490105	4.90286723453207	5.17752023597671	4.80793477563014	4.8115459398719	4.80793477563014	4.61347393931368	4.78926671750133	4.8883843220902	4.77855526476059
+"TM6SF1"	8.25747516433762	8.40925733802731	7.87247599439044	7.76190844108125	8.78049960459601	7.22613764714633	6.99596785241391	7.59143452378558	7.85488000492614	8.45215572714927	7.7548065118107	8.19532801003197	7.88195998762436	7.87415975498914	8.08976659642705	8.18866005914185	8.40998214780102	8.2770390287198	8.15940468109979	8.7783396784264	8.7848278764953
+"TM6SF2"	5.83489135196075	5.93431981252943	6.02079664943756	6.23695679468989	6.04712660140063	6.3643480768716	6.43384861664332	5.86446359586438	6.07458707087788	6.00466421448382	5.76644316102869	5.87123689839804	6.31021602265468	6.29705698430189	6.15609640815553	5.66378776066495	5.97421219390099	5.89002308497439	6.02682812981479	6.00909013997186	6.15174236151746
+"TM7SF2"	8.08257904151433	8.34141518426861	8.20739286189236	7.7587260366551	8.13938388487511	8.11466194863212	7.97432920286844	7.73436271067183	7.72398276495313	8.03828710362291	8.21490979010922	7.96580247292042	7.50420164409869	7.76056912510609	7.65605670107411	8.65437861601293	7.49700117014388	8.36965988684648	7.84800147451085	8.38556842503984	8.02741304552121
+"TM7SF3"	7.30372918153603	7.24369904233374	7.4023255851805	5.93520532055846	7.01772261028026	6.63981681369342	6.82031043148918	6.90734446565686	7.18272760759359	7.04490675283889	6.83236469371306	7.06132932342058	6.1528761092072	6.04150327463393	5.99436899610866	6.54804259178693	6.83236469371306	7.15847569466876	6.92509195809674	6.92347093105779	6.20565052817262
+"TM9SF1"	6.77773937820348	6.54204455863102	6.25238048422733	6.63025998655075	6.31047679683679	6.28521398650256	6.65136811284777	6.43707322217869	6.62017154649572	6.44336681063994	6.54073036784031	6.39895132503548	6.48529742581211	6.69820783348189	6.751147711837	6.79267807817396	6.4016545793885	6.52782702483633	6.37618643334864	6.75290353949186	6.45637489141082
+"TM9SF2"	10.0227230710693	9.72961977746624	9.31914827826182	9.59457668351212	9.76164054289566	8.92541079906774	9.12130266328668	9.47815600006069	9.38604812108294	10.0058411678808	9.97601828566098	9.90620567917439	9.46129705927492	9.17489881155118	9.33201143374728	10.2339944980257	9.83969996432912	9.95446338324743	9.72025530422051	10.0140954430972	9.94163596802233
+"TM9SF3"	9.53325010690188	9.59649604224027	9.7871323995562	9.06802392306781	9.58537463432255	9.13059029022881	9.1989306378035	9.61889603319739	9.3423058767369	9.48219605289388	9.93453043135354	9.54263382565586	8.91615150853069	9.22743410207513	9.32551949452685	9.96729631873757	9.26090319966635	10.0434906754867	9.47526330562304	9.52788030328382	9.25158275666469
+"TM9SF4"	8.52535730730595	8.10027974107412	7.54020230435796	7.81689322153202	8.17705987406282	7.13823054910101	7.64725227945553	8.02223841690338	7.82648888307926	8.55868178309661	8.13667943429224	8.57327302964357	7.31703487153995	7.27696376129625	7.21897148864445	8.39377207210969	8.40271095644622	8.02872922295006	8.07634180216991	8.75052259712083	8.65422912427293
+"TMA16"	3.05395706112989	3.27605695764013	3.33736069345764	3.06774035464394	3.22632863259635	3.15860612673675	3.06533707983756	2.98760678776309	3.09409237300817	3.16194787934639	3.46008064852319	3.05719629697202	3.24195926066427	2.92254268923915	3.06609225166941	3.53834297047018	3.06719795867222	3.19252788411931	3.16194787934639	3.3757676756073	3.07662094124542
+"TMBIM1"	9.56980082966553	8.45129849167865	7.99291442495376	8.47984933796725	8.16387930239313	8.52336319693231	8.65140684622347	9.71053047751618	8.18168310299749	8.24423097881996	8.75420492834405	9.05064271326258	8.08451618635705	8.42047289392434	8.12673590294332	8.90520309681259	8.33345308893497	8.47730118057205	8.47730118057205	8.63102837334201	8.37627467794811
+"TMBIM4"	7.84523625676451	8.04221566433335	7.60643931006053	7.99662749066636	7.94675858496214	7.79662013855612	7.46413028615695	7.9140191676231	7.9277548749609	7.82994763054022	8.23870536177102	7.84223911570746	7.84720795234111	7.82049149662432	8.30427786957326	8.01152187278352	7.80391782792263	8.13941068352183	8.0417568268775	7.65284629383336	7.98278922126245
+"TMBIM6"	11.4429483797179	11.1561201849608	9.31396612608055	10.6030169116582	10.4795004765359	9.86999168969622	10.8078040541806	11.1155142480233	10.5981911537559	10.8520858242627	11.1680897600117	10.7022347877013	10.2807648343126	10.3192146137136	10.0554280070858	11.0692422698493	10.661020014905	10.7665289882889	10.779633638291	10.7783959566741	10.4293207512657
+"TMC1"	3.76649585251223	3.76649585251223	3.76649585251223	3.81749690073613	3.72532140631844	3.37460858558458	3.76649585251223	3.91585143846229	3.84631484727495	3.64646847182225	3.78964958564513	3.96909023763626	3.79380869277765	3.9197695121919	3.44999158959788	3.92071817790761	3.83268884249228	3.72761024808294	3.75757977571527	3.35996825542942	3.97433354773996
+"TMC2"	7.09589242428564	7.14644515292036	6.98977948824962	7.08954679982854	6.95066451803056	7.35074280106123	7.26416484525954	6.93071147928545	7.5247295454083	7.09085650392768	6.80814837739841	7.18015329215943	7.12683599156558	7.24742863396786	7.19602116298445	6.98857675245616	7.34795991761973	6.80620647061034	7.0839875246391	7.03703962836864	7.31024554323275
+"TMC3-AS1"	5.76032098384793	5.80337996286528	6.02383959522445	5.82427680582521	5.91650110363158	6.10801090812174	6.68449283836548	5.83918122241085	5.99246258753514	6.01109868924145	5.78557646617195	6.01839984652521	5.99777794269273	6.16107811698161	5.78497712649432	5.90735708765261	6.0105125226869	5.65239969354607	5.99320249873123	6.12950956420026	5.73843186413752
+"TMC5"	4.255727397313	4.6229743206928	4.74704341427116	4.87178155670733	4.69895205803882	5.14389561793501	5.72633221281102	4.83068978892188	4.83802676739506	4.73780036800828	4.54751080496412	4.64625961443099	4.9268281781189	5.25133147016583	4.79229011666081	4.56928075994309	4.75135059623101	4.40819827153293	4.73780036800828	4.7487386560607	4.62009906417498
+"TMC6"	7.0266569863129	6.29079601809376	6.11664998414522	6.28268266314462	5.6072809516328	7.47469288993072	6.70655604427615	6.39976519623215	6.1896212832668	5.64307023520829	6.9084264264726	5.69891345980826	6.20606607242234	6.91728664614218	6.83791261790921	7.23461408431165	6.39976519623215	7.77618037971629	6.56197236447677	5.83409292453644	6.07340052252721
+"TMC7"	5.59115650013751	6.21731774614925	5.49751542517331	5.54869360629105	5.53731103591558	5.99348652264872	5.14299792205949	5.50851636070132	5.42154112884794	5.36130831254287	6.4654338439979	5.43543692537301	5.34097703017663	5.79628269281512	5.17277432239952	7.04303837761522	5.53566626602594	6.84462580951433	5.6401972147176	5.34241001243678	5.46211811459726
+"TMC8"	7.50832127471823	7.02077346601285	6.95469096523138	6.94196493331079	6.66911471072779	7.94756832546813	7.37109246451362	7.1487105978626	6.94926121491928	7.02376480893298	6.69289378236569	6.69481805668259	6.63981681369342	7.61707105047582	7.1060972370486	7.16334808353746	6.93172384556448	7.07435057125242	7.13621807445263	7.10753225289638	7.30232592099742
+"TMCC1"	5.81919331775587	5.40806900197784	6.5258963533309	5.87879467967193	5.93796014616096	6.05106948248159	6.10375558720253	5.79484862190047	6.19285488707948	5.24238762536171	5.69170247649299	5.30374025592926	6.16440270859024	6.12850783168187	6.78953578471793	5.34449601307761	5.32239425672677	5.6698662526685	5.42351990677864	5.24791242986623	5.59323963663796
+"TMCC2"	7.69233111953238	7.55699276334996	7.28072695468762	7.75324861848967	7.8737394071183	8.21627470550494	7.83908898845873	8.0265028375526	7.79404505289521	8.24531374041264	8.13999519305573	8.08405678592961	7.71565845133103	7.30036233265622	7.63692162277842	8.34602825616919	7.8737394071183	8.1688757474798	8.04445835021914	7.68904232721024	8.21331682453804
+"TMCC2-AS1"	3.72612919785687	4.08137567543897	3.39106444647426	3.73536506118172	3.8076432731094	3.74684692488736	3.94196515632725	3.70340339942349	3.7281432151601	3.95038193695924	3.90159827477661	3.84054160309622	3.55621863380222	4.00513497378015	3.5940220400786	4.15593876666705	3.73686378027553	3.52970537206662	3.8445784677964	3.70045658427341	3.91541179632798
+"TMCC3"	7.25563751890948	7.5892956809123	6.92295125707882	6.99506861618692	6.95703483007389	7.90311309388131	6.57685833729677	7.09552512540451	6.27045506468107	6.39045418229528	8.36245867154551	6.3065442390962	6.84413613582548	7.38516728703179	6.95482136747765	8.52303998716379	6.70184373499668	9.2136935167412	6.91191155232717	6.46414762364679	6.59170268888637
+"TMCO1"	9.63055607681978	9.27974028677067	9.09340227673964	9.00386355746871	9.24896774907132	8.39477325286747	8.78440134365427	9.413775993927	9.06811093526599	9.14724406760177	9.42623046922563	8.90887067991404	8.46986211975451	8.34518767759501	8.89724575594518	9.5791111667718	8.71673660059103	9.26162561911605	9.09822077482627	9.11799443806371	8.70639379848409
+"TMCO2"	4.19321911127389	4.05944281556031	4.07056122160732	4.14347670895323	4.14504277228859	4.4685298666953	4.22089914179993	4.30464094954965	4.39299631519147	4.24163040532501	4.08813998116058	4.09487036055308	4.12111016678412	4.24403293087103	4.22246038321669	4.54860995355434	4.44906053516624	3.93107159884934	4.26323156289737	4.34072922482327	4.27652039661542
+"TMCO3"	7.68089969545206	7.3152665700858	7.00394264665828	6.99496256986418	7.66740659415327	7.29354325639904	7.64029997266249	7.17189326348289	7.09168316081184	7.31509712278742	7.32819710656916	6.83358686294944	6.69800722864772	7.40837329333414	6.64730918106424	7.66727880812498	6.99636665254748	7.50930172447399	7.30733319834713	7.29163884989818	7.42415795731731
+"TMCO4"	7.17176521972821	6.30790716082415	5.68751596250034	6.1324397392307	5.88385608574405	5.82201363401283	6.33133721741816	6.32905281032924	6.14117216891384	6.12816641069208	6.26634823661448	5.81855531023758	5.86061548901319	6.24443397539332	6.09385214108123	6.02649951231226	6.20135393262892	5.72532445222332	5.99369449342107	6.39342454031455	6.05499011353193
+"TMCO5A"	4.99670217387572	4.8026207569362	4.7971203751385	5.12302406591294	5.02390642551194	5.24695562449776	4.99765916032668	4.91106732335021	4.94399793316821	5.06081898486607	4.68377562655019	4.98200908134609	5.04189809275895	5.17782444763501	4.9404964370649	5.05978738860426	5.01616387640128	4.91744680425167	4.7592707669103	4.98200908134609	4.8925128739861
+"TMCO5B"	3.78880040347812	3.82779864430746	3.84425659268774	3.93452054510527	4.10179021136076	4.15421243666301	4.29839034506405	3.77112878392488	4.02720979947274	3.74292219652807	3.7792039216815	3.72714108677907	3.93433029881638	4.34902520865388	3.80074041459336	3.66291417558083	3.94406149584256	3.63734615191803	4.29839034506405	3.93433029881638	4.01464476803717
+"TMCO6"	6.73038688348464	6.44384579581425	6.40904203372448	6.10116276328746	6.14748684535198	6.17712296351365	5.94069155755874	5.89708195618327	5.93895287336465	6.16925349818328	6.39093108671051	6.02063266525868	6.11277603453346	6.26637385393615	6.16451986545815	6.82797468117774	5.94985629674587	6.6956502443281	6.25274331041087	6.13598486899569	6.18746802288895
+"TMED1"	7.64137242360923	7.58357654902623	7.36715874977635	7.44832238618707	7.41039471040991	7.70166439578834	7.6971168452116	7.58357654902623	7.59069709963128	7.72498943128149	7.62533722480317	7.58357654902623	7.70176902397107	7.30023621980803	7.37526463777677	7.68350373740097	7.45920256696187	7.9973484494739	7.50572017895162	7.58357654902623	7.49785064169929
+"TMED10"	9.83553376997888	9.56010694656673	8.80177726779347	9.30235842162463	9.13764845320824	9.0716593326702	9.16533017579531	9.71730032260841	9.13505225249653	9.32942771293162	9.98789068369846	9.40703693531232	8.88324382078814	9.045603338583	8.73813676072171	10.104511104238	9.1834102482131	9.91307664099686	9.38170618418729	9.28052997138856	8.98896431937631
+"TMED2"	9.1201920081948	8.86488937180041	8.160037356424	8.76267918414441	9.25614488700717	8.62219956368319	8.74417734655798	8.80690625640828	8.77082085697873	9.25089700458224	9.38017541782985	9.18212935282823	8.55603016457063	8.04607629252063	8.30946854705161	9.2140212789069	8.80673511590176	9.38309288073104	8.9011789923082	9.14700439441022	9.41997305969887
+"TMED3"	7.36685874122131	7.10437342959049	7.38625890780771	6.98803126854205	7.41016417242617	7.19727247937485	6.93798176453202	6.96650049575677	7.35450281764776	7.42446322275499	7.32728627989045	7.25855088628477	6.65375309410864	6.47368257861663	7.13914622132458	7.60067751811065	6.91093936815969	7.57613581331838	7.09933956678248	7.75565042609334	7.25325377855809
+"TMED4"	9.76243556545813	8.81330709174694	8.8514707127941	9.10832389871539	8.33485204781431	8.43659317144977	9.69987220961353	9.56482679052271	8.76615474917207	8.29228206718615	9.17245575749754	8.57397175784989	8.91239483800475	8.98393316129545	9.30992294097817	9.66081163722557	8.80992238392045	9.49281367265845	9.4121064786463	8.8340863393891	8.51756985548959
+"TMED5"	6.92911359612663	6.68654385577483	4.43351709020176	6.29698125788598	6.15721913694841	5.79763570081051	6.68598344095689	6.94714834445262	6.28816126081896	6.50285682267597	6.75304040391274	6.21708214479031	6.3590394622057	5.66509315559353	6.12080438305487	6.75239450674828	6.42223490252698	7.30595647917303	6.83108674342096	6.21827130316009	6.42955973830883
+"TMED6"	3.89540274379088	4.12359052740168	3.93990318794348	3.94660649025223	4.19243185151234	4.10023390128735	4.2145823624379	3.78773258312504	3.94301257156892	3.96691764028932	3.82932215415507	3.89717766049328	4.09549100328378	4.42813830244489	3.71635852067345	3.90518244534696	3.86414409876983	3.65373233202259	3.89717766049328	3.82687569594003	3.6607535539967
+"TMED7"	6.70036082248485	7.14623148706472	6.52768144326624	7.228307502725	6.84198263234922	6.47494944786781	6.40142530077663	6.94299904252933	6.97935897106405	6.77112855220938	7.8602322008257	6.64691271760616	6.974764487043	6.53890017324831	6.8734155808601	7.48849696414563	6.75678858169537	7.64552516911721	6.91100711624484	6.14332451870028	6.82970125773906
+"TMED8"	7.66933505406059	7.91500017794341	7.97633152654815	7.87138766246338	8.40264828491088	7.55573805426616	8.03352615068178	8.02832476059057	8.3570591316179	8.30580596660518	7.94726778239209	8.37410991019618	7.78620481532639	7.83560516250066	8.14631713113952	7.65791503815593	8.01032004997275	7.82769160215289	8.12471532787052	8.21252278796863	8.06661428984694
+"TMED9"	6.63004818502986	6.63089707532458	6.5258963533309	6.74437856736251	6.36544043702967	6.96066443593997	6.97776885291091	6.64446495923818	6.543873222934	6.65021749875031	6.65021749875031	6.50815699345309	6.50304080765972	7.20797222550218	6.91815746292097	6.28195716131006	6.70625150674398	6.49917441618501	6.71136370740794	6.64200418294415	6.88468905755048
+"TMEFF2"	8.49321279554011	9.5138346043122	9.70053289286201	9.25724506246564	9.50220017249423	9.6636954390467	7.92655423290238	9.06802526694122	9.01685938601447	9.53126765396335	9.93098265252619	9.41755127250663	8.96845356724056	8.59620421889083	9.49725970401953	10.1412776267233	9.36872766033607	10.1935595690978	9.32905319896942	9.20879044717408	9.41249812043091
+"TMEM100"	6.13720675758762	5.81738819320882	5.43710190512049	6.89487173059487	6.1273647313653	6.22900829100414	6.88874645884535	6.42584729780563	6.33083634251619	5.74481448934411	4.73407588182847	5.57357957605982	7.25820492251761	6.65034020927149	6.64556865423277	5.40511858314464	6.17567236414593	6.13824998540264	5.99287763752349	6.92006856963234	5.2272095405193
+"TMEM101"	6.89273964691779	6.64621858485158	6.61990728165092	6.66393129086153	6.44468997822693	6.70728437446266	6.67406805257259	6.37812432172489	6.53562350296015	6.68400898227605	7.04497779461961	6.75814035333575	6.58394715479822	6.7227528114449	6.40729074486393	7.21802333909416	6.6142686004182	7.00919210736444	6.9642179671003	6.83123458192604	6.48276293672999
+"TMEM104"	6.83369878824998	6.99664911423722	6.78215857472815	6.72374018799781	6.62732745505717	7.16286270115094	7.16936182209832	6.67453090427133	6.87552669967687	6.8008285010574	6.71381981972023	6.71136902319342	6.93145692479845	7.2289495095331	6.80252472767625	6.99660926001305	6.55630511650983	6.82053652510209	6.7555529813685	6.790029230777	6.5793184786918
+"TMEM105"	7.0689593583022	7.35592929390203	7.20095895120777	7.52525146048055	7.02654885981096	7.37011795583607	7.46192519935134	7.24479757016361	7.39698177666702	7.41166369093342	7.29024797104256	7.26605309925468	7.60174895407601	7.58261920418872	7.33251214468958	7.4160885654993	7.38507917262952	7.20657611189717	7.41045187796909	7.18187347361994	7.48593475784094
+"TMEM106A"	5.42649438944053	5.50002990732493	4.75969496657148	5.20225557403924	4.70534218984157	4.94549716866097	5.27412748673599	4.92766166590381	4.882711290646	4.88548364385296	5.39256889886875	4.85242735027153	5.01753770563787	5.3123983255477	5.06436994022802	5.27556835720124	4.90035449239154	5.02989500018661	5.07805914089427	5.50197933249627	5.47995452043826
+"TMEM106B"	9.84086246187187	10.2795624099695	10.2707394350222	10.5748404280509	10.065102848333	8.12513752431852	9.64874156772904	10.1860204474979	10.4470000938059	9.70196042245188	10.4760966414659	10.1927393859606	10.6208145383132	10.5741078210776	10.7550393779603	10.1476955869276	10.2514332911158	9.86475201179854	10.5318525314377	9.84992128131546	9.74195875151613
+"TMEM106C"	6.29287603588409	5.90471333012792	6.3401302671419	6.21806384487917	6.24173773509962	6.49432318843036	7.00295440487489	6.6651063042484	6.14117216891384	6.12113650935446	6.14329563295539	6.16735283625217	6.4472134068869	6.34152116742208	6.45141674550711	5.58457639920578	6.23151208579853	5.78128169489411	6.35287042390393	5.63777621180254	5.97399188301922
+"TMEM107"	8.35726917563258	8.3253865098611	8.63418625846931	7.95640124149703	8.81086898912083	7.87122014722704	7.8956085919337	8.17951580424961	8.0880778707947	8.31891110448845	8.58310686150172	8.54609986958769	7.61170102551551	7.96637157789182	7.76857154640778	8.15231503711649	8.24846208726212	7.978337768063	8.12572432721023	8.55778151684997	8.06945064834639
+"TMEM108"	7.63979787084946	8.07723309558293	8.80982939447402	8.12146994630299	8.50106708375018	7.71072113285907	7.44062338716213	8.241760626798	8.3127772473165	8.00670557515986	7.94052077747378	8.1600506663828	8.03173545494724	7.77380204556583	8.14212131595026	7.47820549876232	8.11123653308865	8.02366541624399	7.97212600064483	8.67273944431188	7.78803904278222
+"TMEM108-AS1"	4.52721594339018	4.79346853142324	4.61738986277418	4.89144684251814	4.66031579446923	4.57916418709945	4.75059004524906	4.71705012382951	4.94527485470168	4.88473110264312	4.58991090260346	4.69439369629525	4.39893437511516	4.56278127406879	4.83851391392687	4.63853049632597	4.72083029964895	4.53910614068377	4.45916251307886	4.84992409870341	4.77056400278679
+"TMEM109"	9.08233106242055	8.39685555815422	8.43974906158617	8.25739977115697	8.41866126691293	8.61894307512301	8.60158168059033	8.28710417387877	8.27160419707128	8.49389067704727	8.42611746514866	8.232507371962	8.29212128899116	8.56043824032723	8.03109488832686	8.38885183054228	8.337654656821	8.52972509864072	8.39622320128672	8.75805147824905	8.54563167680799
+"TMEM11"	7.75838589101316	7.38197484198455	7.40128941758113	7.39050911630146	7.49629002092164	7.67887109317742	7.68213872779086	7.66200216979795	7.63127458170187	7.60732252411339	7.37856587552608	7.56990205025351	7.56105481619152	7.41426087359593	7.59604082344568	7.80916087943954	7.45322298224708	7.9670357375834	7.56990205025351	7.92570898557497	7.58277120039877
+"TMEM115"	7.57360508147049	6.98713050202263	7.09306523314748	6.9987806523614	7.17694374906195	7.21485333592408	7.27431942931638	6.9993466927725	7.03448439955854	7.17166714193642	6.96392335246949	6.83633087081418	6.75737753181774	7.11014347038814	6.75769141681397	7.11961767832961	6.88526082055764	7.29487476793316	6.7327900830533	7.41823642288	7.0038208925016
+"TMEM116"	6.78771066365401	6.672882033582	6.42218310063841	6.30919246892826	6.62875171226049	6.28972517989327	6.62426036135051	7.37660866740048	6.34163517936483	5.80355405092939	6.79509987477652	6.21186966600708	6.09872038472331	6.60717590157006	6.20443034606333	7.29820572561305	6.18185728487923	7.02383730375408	6.58003672720706	6.48628085271025	5.60595041817619
+"TMEM117"	7.06765900624991	7.40706315580293	7.65845154287027	7.07633434990985	7.45395544747182	7.63406713910674	7.11710832028917	7.74137807068821	7.35526371197633	7.46492452614262	7.3851754944639	7.39282489616831	7.26914657166141	7.22572813725638	7.63782901866437	7.68697324831476	7.42527733097031	7.75865507190604	7.38907960111047	7.33688635411742	7.12766811566954
+"TMEM119"	7.39906253651163	6.55592833602556	5.68276429572891	6.62739550491561	6.5477254643577	6.50333357158166	7.42741545041985	5.70343530893433	6.53962705342088	6.77266667038897	6.64812556802768	5.74528380726854	6.8342659766006	7.23664223966811	6.62666752626276	6.89366409179414	6.2534501260526	6.66694473929721	6.55136254449623	7.03639439413139	6.90979499103913
+"TMEM120A"	8.85689628609585	8.38477756381287	8.68611290405301	8.44585930043569	8.53719590605559	8.8311851132426	8.70752936384761	8.59505175848444	8.57728795516043	8.66214281506043	8.53055664439038	8.52980637006856	8.51432312176177	8.4828542285594	8.67054607775938	8.58372588323454	8.34682261438924	8.73172917399925	8.61299839854912	8.67448950062523	8.4719726484041
+"TMEM120B"	7.05431537897466	7.29892881343168	7.52024576355272	7.12541516528508	7.0376794812935	7.02652499679048	6.9912557762406	7.08590738855314	7.30884299369851	7.04012365497883	7.16911672810924	7.11621230741956	6.56748720059983	7.01944390684103	7.06864075314621	6.8664559286437	7.22368759183926	7.2032815147671	7.13048481327156	7.17347422764283	7.09847895032627
+"TMEM121"	5.99529252183591	6.33518646185045	6.15337605350801	6.39976519623215	6.21606338732298	6.04308650912717	6.45494110444236	6.19350078094586	6.30173941417354	6.71731608108341	6.45953243011086	6.6166536620676	6.23659952439191	6.1348794924264	5.98266166521794	6.97889375259756	6.17031867426413	6.96250872754223	6.38098088671909	7.198483717709	6.85005156523695
+"TMEM121B"	6.36453496175142	6.82908830342344	7.46173171629265	6.60311575590385	7.12147354601354	6.75880374765977	6.56532687781435	6.02995113419812	6.83074147646876	6.95592852327784	6.41016561283488	6.74715337605724	6.76328600251956	6.61143730419282	6.52045944796859	6.19592527130049	6.64668965309118	6.68525168888194	6.43693652982545	7.3840512387453	7.19739384780881
+"TMEM123"	9.6197378593413	9.16129901354188	8.4723236723604	8.85156750999909	8.53672823814668	8.51870127925516	8.84764152463989	8.979558125465	8.83866302790682	8.54266981358592	9.87689370596199	8.34280990924388	9.01589665949071	8.94152819248563	9.23522890316107	9.72582931707607	9.05038855944505	9.48346996133261	9.00601329818673	8.24379417120666	8.41719894625708
+"TMEM123-DT"	6.32798599773226	5.99243579042294	6.15448656989408	5.97504261221983	5.93457817776786	6.04981717946903	6.46964488619953	5.96823674190961	6.1403147402565	6.01005821921699	6.4914758296221	6.08583776182024	6.10359966014894	6.15250710674684	6.02434414055996	6.14835682436815	5.8668976310647	6.07854110773496	6.33996187742872	6.11422883017515	6.10474225278471
+"TMEM125"	8.10111317521806	9.03305861670824	8.46287286160209	7.68291944102689	8.01617455689748	7.63934940601763	7.25324751760667	6.86048351790251	7.00006509874674	7.56940958562405	9.5151750852634	7.80823345176721	6.87421335665691	7.73119890473174	6.40960513232172	10.7103234127509	7.59000898091751	10.1386619588686	7.84010860276403	7.48922807496522	7.73119890473174
+"TMEM126A"	9.22223041167306	9.06153029505977	9.1742574387643	9.14978459767658	9.42179033454651	8.4585380409848	9.03029501890052	9.13454435042134	9.51616230259136	9.49767392615218	8.98582146748691	9.16300996911791	9.01597655454583	8.85293398900598	9.48414899942202	9.50686278226476	9.06533132339743	9.25185461996257	9.33764387796915	9.64791719442798	9.36927294116738
+"TMEM126B"	9.62464260612209	9.83286785477383	8.93269310591562	9.66837760424095	10.007637817485	8.56819024198043	8.94342426169517	9.83504439953501	9.88320838399835	9.94586096464337	9.66726115015377	9.78814611630949	9.41965051887378	9.1150256279406	9.78624246986365	10.0226683168968	9.48805960747787	9.91791585943947	9.77333706065621	9.97162076689564	9.80175673232311
+"TMEM127"	7.94269479282712	7.90005159869743	8.11933403053778	7.70616578774977	7.86215865095267	8.15548514034426	7.49550845504162	7.45769505821244	7.79135779181902	7.9287805197788	7.60949264488137	7.65783419924582	8.00180836010607	7.79414613097138	7.77294007692306	7.57399411275597	7.73071069549285	7.76259778617966	7.45552925776987	8.14920129095465	7.95370420796835
+"TMEM128"	7.40251002745543	8.0359932088633	8.03216687967712	6.89420949145962	8.02178020832799	6.95437339533548	5.93941942575449	7.4471588851811	7.26688132538416	7.93561078314767	8.52712471194002	7.43494632391986	7.36304106768531	6.80516682443108	6.84516534328448	8.34966147520771	7.13796041731866	8.4893320395402	7.21631249024084	7.28669649862686	7.29729629440843
+"TMEM129"	7.90164323157286	7.7561067048212	8.20893107900867	7.76853989504387	7.67350064255955	8.2184095696537	7.57000038212654	8.12591985618897	7.96044850993871	7.67193610579631	8.16869516685136	7.84913370067258	7.64190463561553	8.05645230944867	7.59854118544847	7.37372875834659	7.70985604643871	8.06989648895383	7.48922362467733	7.51870272914554	7.57703455423709
+"TMEM130"	8.16260196244243	9.52395142712164	10.2020958014548	9.74330196884717	10.2937889559874	9.02827178654707	8.85479160880915	9.29471226001134	10.3046027612335	10.4965510684963	9.26723485766599	10.3784404193941	9.84438293485467	8.93247271002237	9.53269251435499	8.96153107568594	10.2372741878847	9.40309999913547	9.35346203276979	10.4669851584036	10.2510367406048
+"TMEM131L"	6.18392467883819	6.53542980657788	6.64979464319177	6.77844750983747	6.49118793684738	6.83076695257335	6.19582708954735	6.49118793684738	6.49118793684738	6.40266592898955	6.43094482177275	6.23623834886148	6.49118793684738	6.31318669056023	6.60957868348512	6.65131460473977	6.37750104868183	6.93236753199247	6.61229057314353	6.52871352827401	6.41425323762906
+"TMEM132A"	7.12253660501625	7.41796308115241	6.84205323076756	7.39705330130761	7.27257827554518	6.63682050718748	7.90970957899337	7.33989779793054	7.18741311622535	7.46806831323221	7.53871959627453	7.92463802043137	7.12972669258746	6.98258765336686	7.18613769189067	7.22257303915866	7.27073495531232	7.29552338222934	7.26042168952182	7.93583250938263	7.58757236298129
+"TMEM132B"	8.07659381831432	8.79768135517213	9.42240529964776	8.51534849654331	9.47258073121587	8.30351020573634	8.16374412500668	8.52386695478417	8.95980366342432	9.02041602068736	8.13717031940316	9.01819297966607	8.39189865254961	8.15267801808648	8.53320920608923	8.1679240773005	9.04311018664953	8.79508939702115	8.64043947182696	9.03972014817315	8.97150193814278
+"TMEM132C"	8.23064955045114	8.05823663541489	8.31907931933412	8.19575990100699	8.1990387080145	8.83472786820583	8.32154209088541	8.29866701456073	8.26916950357409	8.20307806015848	8.14841016622674	7.95489334205037	8.61822345295682	8.48512923785295	8.25204816672844	7.70409265195661	8.3318313436668	7.86110489587258	8.09497982409572	8.70220161889658	8.03999700150261
+"TMEM132D"	6.65511052139497	7.62662239569482	8.16187301726639	7.44417815933084	8.2331924526441	6.88839944770874	6.00457456699752	7.16185335343875	7.78564917864399	7.77512267701601	6.93600701465827	8.02451399364903	7.32155382349049	6.92320587571187	7.320664198824	6.86148874161437	7.92722113736098	7.69164001925453	7.39332012820109	8.11956399999864	7.4093059974526
+"TMEM132D-AS1"	4.02976531729788	4.40422664719564	4.17205554038395	4.18155254220251	3.9702543233956	4.26949279192515	4.11353848116407	3.96147798791518	4.50150170146976	4.11972175441764	3.99434681271644	4.17205554038395	4.00598151078357	4.51877323788311	4.46708869784307	4.28908247954334	4.20184133436188	4.12285332806291	4.17068066205462	4.05770310869606	4.17205554038395
+"TMEM132D-AS2"	4.12590318330011	4.0973429775406	4.26485624553046	4.17130936413754	4.09010081362734	4.05779099833755	4.15643012813985	4.22757418902133	4.2947976575029	4.12590318330011	4.12590318330011	4.14733414476313	4.15703297611872	4.56949239170836	4.03839752231076	4.12590318330011	4.43339751465916	3.97371226285337	3.94541037677828	4.03974764065064	4.20798977963577
+"TMEM132E"	7.15614546506704	7.20343495120338	7.54971827887306	7.0142302301525	7.19196255515094	7.34020560238536	7.2900789522139	7.01714163905033	7.0839875246391	6.94860956116674	7.28582862324234	7.04755265065883	7.25538435842941	7.13032709359118	6.81502984755936	7.0839875246391	7.08554388363498	6.85456305586049	7.08316420921484	6.97456917497729	7.02939580104278
+"TMEM134"	8.12280136878109	8.18589864061433	8.36426518472381	7.8656922665651	7.864123459652	8.21685003790191	7.62600258854969	8.03398278536693	7.62305618760818	7.96911332589302	8.55753270870197	8.0762475266935	7.69402080743428	7.86151760808331	7.47277395637653	8.60292343806375	7.82821168895038	8.36414116322345	7.86673064861069	7.9445063000858	7.7407881952563
+"TMEM135"	8.13875721218198	7.91208611723845	7.74935411063324	7.43136928736462	8.07846076557593	7.08449379943379	7.14563111272596	7.63185815711945	7.55901408593781	7.93905728095678	7.42226035787724	7.84349712499919	7.00245821681069	6.97298166974515	7.13924356478408	8.16916369078271	7.69419317899003	8.36909760804014	7.09285356605239	7.74250214145525	7.69502980937342
+"TMEM138"	7.18291209932832	6.85449943154279	6.93642955029445	6.56655421126847	6.56206057198794	6.14872116588356	6.31930850214327	6.52228135853841	6.40559175230563	6.70974255652573	7.00335490325506	6.24355549932631	6.34210870391657	6.65156696551472	6.48984416650962	7.24880342255832	6.21328148546821	6.99544683201239	6.28593402746282	6.92768362820347	6.60513612267842
+"TMEM139"	4.89162667912047	5.02911786542874	4.81698225155606	5.12188137893181	4.9445443627106	5.12787593722006	5.2222624311155	4.73324662019374	4.49008176145483	4.77573778438068	5.60368473953721	4.84097765821953	4.97558128901649	5.09661254524757	5.09286875146243	6.94453683866212	4.66160031744748	6.36491900229199	4.70804050869112	4.85224828744342	5.03175280196427
+"TMEM140"	7.25685726280508	7.14104455575433	6.69790587581504	6.95445079823788	6.70000343261126	7.43007966776511	7.18203476296046	6.98496276993549	6.67333367543129	6.55468281999552	7.07933225847863	6.42716678958973	7.02316224103788	7.2183740279312	6.72365551717669	8.35380393392835	6.88361395920624	7.86922762651084	7.2489800550191	6.87718520901281	6.94902148182816
+"TMEM141"	7.95652634966456	7.90567998191965	8.13361310370563	7.84008252278621	7.976920271832	8.16954803484203	8.31396324548769	7.81486843085375	7.91326130406068	8.14545993712546	8.10530805767538	8.05995688405642	7.99280989517145	7.99515998050554	8.06026327260569	8.15983583958685	7.88616928892728	8.1506095033001	8.14948394735195	8.3544677181539	7.96463128627212
+"TMEM143"	7.14828227634292	7.62196623384773	7.64969747687725	7.51128760666104	7.51188438137669	7.46592347646512	7.32234496194238	7.40946699678505	7.26577741124692	7.52504745253642	7.50103282078558	7.54218272365327	7.59720307295602	7.50103282078558	7.33691605505318	7.62450725976433	7.37590499666092	7.75291464932446	7.45363217424473	7.65680174409222	7.67480846672606
+"TMEM144"	7.42356815483849	7.84611405754028	7.79179453396302	7.19723721167269	7.04790331219666	5.28167539862138	6.34536407468386	6.98957276452778	5.79608450905793	6.72185536486245	9.71833574805105	7.79859464920506	6.73678971255946	7.49631445915063	5.70819689511959	11.0831181258766	7.33108853415829	9.21906130969252	7.71002853761039	6.5028268753299	6.96949072186144
+"TMEM147"	9.87572218163297	9.63179448025562	9.65081187222035	9.39979485932242	9.74875637734901	9.71070680136673	9.71444611890695	9.58400076272639	9.37172602517558	9.89018118029131	9.66321113264453	9.60672716213509	9.52373372380888	9.47102901836572	9.38837900731533	10.0434436613728	9.48335377679424	9.92217499451974	9.68710910257892	9.93103914532604	9.51179105250057
+"TMEM147-AS1"	5.61754350724019	5.88560381803221	5.69140189738772	5.71656556366923	5.61248158425461	4.94187644981174	5.23929419197866	5.79261052499875	5.53057972483211	5.91536334384264	5.98160607017125	5.99049354931656	5.49321049559843	5.69966650863249	5.14975218824816	6.01250197566984	5.84354098088579	5.94137142564706	5.73372625667342	5.51942186081399	5.68748162876236
+"TMEM14A"	9.82694403751809	10.2673577065243	10.036851125988	10.3059147033697	10.6777515226154	9.23885145951597	9.07317412204839	10.1703612387515	10.4239476952353	10.6301922126254	10.0074549295399	10.4721053404847	10.2673577065243	9.39993965784573	10.4570897812102	10.2673577065243	10.5954408073332	10.2470974500875	10.4663977832659	10.5056274999832	10.5318077202169
+"TMEM14B"	8.65142533230012	8.85307303682266	8.86946957176627	8.58470348484363	8.97398996295157	8.073025585146	8.36575656910149	8.6257311824037	8.57181464476109	8.95432262937391	9.18991091279676	8.82649151741346	8.58858880495893	8.07529872468955	8.57135161064474	8.91481124469376	8.44480674678688	8.91366982647196	8.73408513074786	8.75393350759785	8.74650063946372
+"TMEM14B-DT"	4.06828997308042	4.10845213143928	4.30239062098542	4.12761737160828	4.54751080496412	3.91862748353493	3.75400035547402	4.29938893389525	4.00431922899597	4.17320011167535	4.37961600955648	4.13309692851038	4.21745719812129	4.0953431757979	4.04837929832394	4.38791564324808	3.98763678135463	4.21067518363637	4.18930490929758	4.10417298046777	4.07957833297698
+"TMEM150A"	6.79645388269735	6.32643725764805	6.5222524390435	6.68655277473251	6.29937453276316	7.20283255387834	7.26841688530865	6.33682183057481	6.57070232204308	6.63439874438207	6.66478039308357	6.23916729323344	6.91876860129782	7.02349911604158	6.76795713526105	6.28427976575598	6.62669033832165	6.49452223144577	6.80005458067239	6.55408129833101	6.66237402427022
+"TMEM150B"	4.32639189878372	4.33690660004736	4.31721052710574	4.6038409946239	4.5582145378799	4.40045670936991	4.49198377648289	4.4845656455122	4.50163044132233	4.64954247236761	4.73173409018647	4.49198377648289	4.54137198263651	4.38026155515961	4.43549259516245	4.42310020515855	4.52905383691635	4.4426267320324	4.49198377648289	4.49351171620813	4.66302169303191
+"TMEM150C"	8.69635908641334	8.46089927835207	8.55768552890864	8.24098804139759	8.56423453528325	7.31545931320867	7.5493914944513	8.19874881111275	8.33388284003265	8.09463711114706	8.56631464886433	8.23197131280976	8.2983082762545	7.72858949814755	8.01365591540623	7.98628318609856	8.34257299426098	8.17061782400692	8.12748280725098	8.34974793788663	8.12420881236953
+"TMEM151A"	7.771704248166	8.27975861923996	8.31797161884867	8.04131584160156	8.09052385576964	8.76481822423522	8.33434599851616	7.77192098589889	7.79317782128523	8.1928339330785	8.58864042269672	8.08101933160098	7.88328721608299	7.9645049414608	7.84783214737452	9.06265597482161	7.88120792719438	8.78964503661301	8.08183179572013	8.25394229336605	7.98894122236532
+"TMEM151B"	7.5934110254068	8.20666635676905	8.4809591175334	8.61190074466307	8.90596269958292	7.71306254348373	7.70445023941556	7.78519836981488	8.65105122570142	9.08969581390737	7.96839664534929	9.06788636969132	8.5176721450653	7.935551918309	8.17913593508298	8.40115861378896	8.71609221415559	7.94204725229376	8.63296284118402	9.51466205177035	9.46660499909646
+"TMEM154"	6.02717476995887	6.24435404214878	6.00696312123966	5.96777744796683	5.98151761906601	6.44628951524009	6.54385104521705	5.93521395077436	5.95232353548193	5.69858827977997	6.02022768907365	5.91542165410104	6.1103066797189	6.4779621732852	5.98133257378457	6.18041208412369	5.79480873092379	6.0250952465933	5.97252120094073	5.99616561384453	6.0250952465933
+"TMEM156"	4.38677451700709	4.38677451700709	4.41242854504604	4.29938893389525	4.234717699212	4.56518673776143	4.88186601319127	4.34227119376949	4.31112486492973	4.14497977489324	4.39567892813082	4.32509470928197	4.64820712904808	4.93892508243153	4.22892648722928	4.49095886693219	4.27468246467312	4.4362951241298	4.36761754867306	4.35155431278281	4.40133633306368
+"TMEM158"	7.37372799546882	8.89700355092464	9.24697288450929	8.69682324032896	9.17158833178162	8.78832572872772	8.28410473201223	8.60126733448904	9.0605967020786	8.74959837169526	8.38578418374742	8.62798913971924	8.99517873544352	8.25342617300445	8.31074875631996	7.72766460831144	8.60206784913104	8.54300342690323	8.46651381271089	9.13879458515121	8.74876730073127
+"TMEM160"	7.6509451774799	7.85715572653671	8.43661189405405	8.10506751915823	8.60556890584173	8.06765931593009	8.12886569858946	8.06353670236768	8.12163727881719	8.47519916416471	7.91163411794717	8.34332732452906	8.16301206714263	8.08246432526434	8.1020680876281	7.47026575224949	7.90427802207587	8.37320249803203	7.80159068156924	8.6032178531547	8.38724278909514
+"TMEM161A"	8.17045740593926	8.10891853540905	8.19558270922867	8.1692911810228	8.06473706518379	8.33181191092384	8.61441469409249	8.00466962617444	8.13711609935574	8.18446229679468	8.07035622942077	8.13470039887494	8.41228089109098	8.44035958693005	8.18677497674673	8.02773720179672	8.12661314338855	8.01528806877285	8.17045740593926	8.18083861387144	8.23736636947401
+"TMEM161B"	7.64405317562402	8.07816970146125	8.025611505537	7.70740135207226	8.27566059915377	7.47994694342987	7.36585276468374	8.16520775962435	7.95675304971684	8.09112425872616	7.89341088128319	7.95510608166168	7.51528910076487	7.31317942669032	7.68684918064281	8.26702679945099	7.92864481767305	8.16740920358938	7.8343780187096	7.93077350148386	7.75489272304726
+"TMEM161B-DT"	7.91893430251882	7.65387216254618	7.47755349853384	8.05160520432925	7.87484931677256	7.4576858069667	8.51469661255458	8.1524365882423	8.71270354451028	7.87800261253393	7.27399068329808	7.56817708957593	8.28017862657944	7.91893430251882	8.66562270647089	7.64821428819535	8.14153021526283	8.13872330979926	8.30014495302161	7.65177564584041	7.7858232154685
+"TMEM163"	7.46843143587616	7.42462492523164	8.19958665690046	7.24406701747307	8.2969114569425	7.42696813200525	6.72153040106351	7.50081779109163	7.44725294899263	7.78838123288937	7.0762723984246	7.76162000773407	7.5278699479945	6.97922702019066	7.50081779109163	7.11057823454536	7.72002260753982	7.63558643634752	6.94675688414771	8.01812543661172	7.99420399878143
+"TMEM164"	6.38676240817669	6.29079601809376	6.62225808016884	6.10047121408084	6.39037351660155	6.11590951719337	6.3643480768716	7.09744057628954	6.25019134691504	6.05962834716509	6.34431688741262	6.17814540488568	6.02875124092514	6.21173438822438	5.8365618795178	5.65100238408216	6.1208559002426	6.18592443361069	5.82336081133687	6.4535860059152	6.1305932933824
+"TMEM165"	5.88212538631497	6.00990179220662	5.41991333399993	5.92226069819326	6.00990179220662	5.78557750822895	6.17016408120992	5.78287762488945	6.00990179220662	5.93502281029185	9.12192242833011	5.73586417311183	5.74247826897663	6.17016408120992	6.20609724933507	7.33804022418568	6.53701575826639	8.00213732445532	6.18749815763657	5.65143812871602	5.82134898623344
+"TMEM167A"	9.25705204907511	8.58113485300976	7.63632370646767	8.48304647909621	8.46279488918322	6.9148554058393	8.40615346357059	9.00815178566048	8.59133241828229	8.61512832219616	8.63209848286546	8.49827488367958	8.38138154834799	7.85043826864079	8.58300753413271	8.5880632002324	8.33842819093294	8.57487338536983	8.87835433659917	8.49867337214051	8.66328924304929
+"TMEM167B"	9.8040036441421	9.67928589298247	9.6644792233769	9.46032207174233	9.62573173797238	9.20989578079907	9.48344986866619	9.65806817090373	9.69718506828618	9.68363320902612	9.70866366119374	9.83600480841493	9.35698333696418	9.43577098856685	9.72498747259244	10.0822877095056	9.74934363024323	9.82243892080248	9.68592750776977	9.67758998618985	9.47849381181869
+"TMEM167B-DT"	5.46381000149882	4.99748090550508	5.35937988821561	5.30802409680875	5.02589234703785	5.06601966220524	5.56508037585427	5.05792360503587	5.27894994465729	5.02911786542874	4.81745251447672	4.82051919478749	5.60477803819669	5.39702953079068	5.37682447631082	4.88843603321896	5.01970444137258	4.94041981626464	5.10916079329239	5.08961543800521	5.01920884470443
+"TMEM168"	6.96783708186166	7.10236406598777	6.01270911045144	6.0380563187168	6.62966624496535	5.68744992322599	6.36157130321321	6.46744464118555	6.23637575652016	6.76952520370632	6.97415615534754	6.38546603439544	5.47247578756849	6.12659551507856	5.37203455991607	7.37560850095392	6.55988645531853	6.99386242519462	6.44353275462745	6.45007347720694	6.45938929507034
+"TMEM169"	5.36686532822637	5.73421607148502	5.82230549767634	5.17321604608916	5.88669173449022	5.04784415921258	5.06425107227572	5.08329767668227	5.38803663949635	5.82699613173152	5.50076182085259	5.48637442057685	5.43328418578133	5.11395527876431	5.55729453652042	5.8188404961694	5.5211656849873	5.55824807814148	5.26941851614796	5.8746870196556	5.90979854674836
+"TMEM17"	6.86642316706641	7.31472525704741	7.54444730985034	6.86652717044657	7.51739168144368	6.08879267550725	6.62163884068232	6.81667610205271	6.94204423890361	7.3527848219053	7.76742191670813	7.20681149999357	6.7619490955557	6.14430974653676	6.35843355714197	7.51829038471318	6.96527109620526	7.33741663640465	6.83527194929246	7.76660787493763	7.10012104742446
+"TMEM170A"	6.95371336136924	6.99525053366428	5.65690728050701	6.65661763586195	5.98737603366594	5.93900793816728	6.60187287987713	7.0060080964471	6.40338888430321	6.70037701229483	7.38673845523825	6.36121962582443	6.65081207680154	6.51159857170219	6.50721908456879	7.53839205580708	6.53332262417476	7.05739845676295	7.02422289361018	6.62779146764375	6.28908627659709
+"TMEM170B"	8.46424955107519	8.76870054527139	8.67821198018358	9.11334074653617	8.82161562764158	7.97516002568928	8.41105896628044	8.75822450708685	9.41716774983628	8.9119785479378	8.73132781455843	9.04563748470696	9.21517289429191	8.40941688916107	9.59386370544943	8.16445885912276	9.0894998995591	8.82065437831921	9.15676774348439	8.58986039729717	9.08722647001214
+"TMEM171"	3.64412061090917	3.86879618799154	3.88967939337103	3.59949604199201	3.72596627775907	4.13859661408526	3.56268473378996	3.55321492352059	3.56290453240114	3.72819066052929	3.71325599028375	3.82912759087745	3.67147247682932	3.95499325207149	3.55857584035732	3.77876216172755	3.7657632192204	4.39702086524005	3.50619435210176	3.74371665201063	3.44657758174789
+"TMEM174"	4.80442264491133	4.93036055203013	5.07718233380097	4.64355403255667	5.14756797511369	5.27925740446105	4.98200908134609	4.68290417663131	4.91384284183014	4.98200908134609	4.98200908134609	5.04272744215373	5.3330012944465	5.18759721838582	4.84473398570456	5.14317736380665	4.98200908134609	4.50027435686551	4.90742570475828	5.0462509223416	5.242181014274
+"TMEM175"	7.17061067527166	7.34021692559292	7.45218075176247	7.05240755166145	6.94284105733706	7.59098486899189	7.014843864572	6.97863875659274	7.07450468425938	7.19552029575456	7.22352293972167	7.1509091863902	7.1509091863902	7.30209160968556	6.76605311162571	7.36027024931794	7.02554267380839	7.34646464130946	7.0399726974252	7.2743908312439	7.03982725250255
+"TMEM176A"	9.51895497805266	8.35600757151365	8.03712291266128	8.47000711636057	8.00428467315588	7.7628576599335	8.69558104803817	9.12978939799899	8.05412819968772	8.54982965728902	8.96846167856111	8.43747234844115	8.37295193925738	8.11010577747748	8.09558312377988	8.37606014023569	8.14859168770169	7.97813254213608	8.50399496115135	8.41284542233582	8.52215127448371
+"TMEM176B"	9.88154618701008	8.38123403946611	7.86740992953114	8.37547979676754	8.18842460952328	7.5959447233685	8.66326442939519	9.43909356994151	8.03249036505027	8.71497731183989	8.99448967282519	8.41365380593965	8.14531895223655	8.12651965588508	7.93455508962852	8.27812328084538	8.28611500856274	7.97042178845856	8.5591891337582	8.6377025274733	8.80706789480093
+"TMEM177"	5.76984883286829	6.04527421802098	6.71236548598638	5.81559383037049	6.95015708460635	5.77872950452485	5.76725704729512	5.4365532156191	5.87684585718997	6.92827573896026	5.78734899864997	6.27216974905539	5.59332931494885	6.04527421802098	5.64992325447951	5.89694624365496	5.97923849396156	6.11546873091175	5.87883766549909	6.90842574432571	6.25936689652631
+"TMEM178A"	9.16310026050849	10.3269313134509	10.9498566464034	10.2890860337038	10.4792640198352	10.386404907467	9.56853737012137	10.0582445405682	10.4524393975554	10.2514332911158	9.83156808260946	10.3403403957478	10.5717584411971	9.89522769997911	10.631174638956	9.92223421878384	10.4292039485094	10.0645774110326	10.2890860337038	10.3592118475031	10.4362869231866
+"TMEM178B"	7.68050990486702	8.59768008842519	9.21619193620618	8.56691404825448	9.31247210813435	7.5673873069837	7.16588332260028	8.23839025459585	9.20647795012978	9.24499424440717	8.05867391300974	9.12171260356024	8.38320277195285	7.70020293196642	8.67875662832367	8.30054397960401	9.05169922566753	8.6498122460694	8.48704280416166	9.50016950654421	9.11319361507169
+"TMEM18"	8.08729216958696	8.09258129746558	8.3563443588614	7.54107722648319	8.19326312547528	8.04398381476115	7.5060732715931	7.81585326662247	7.66035808194239	8.21915487179161	8.45742649454511	7.98085454309129	7.3907333692508	7.89071055652326	7.5893152226757	8.59860823049781	7.86533596135461	8.5537192073097	7.78280849693167	8.2821467727952	8.11373296241103
+"TMEM181"	8.97383196156029	9.02612888451689	9.34140653409232	9.15664032718958	9.48326996546119	8.83210278290685	8.00458925583692	8.96199918510109	9.42247815178562	9.37069289970064	9.08962430967428	9.28387864652537	8.81578863014698	8.45738319072204	9.00228349098083	9.1573888263618	9.24527406443924	9.44734096532842	9.17143821691034	9.46975431873508	9.32480830162765
+"TMEM182"	3.58971815672696	3.87417220968587	4.26217860760155	4.08199085435413	4.15647310390295	3.92835571035058	3.88448835639649	3.97114106561385	4.11484515663445	4.42977264384074	4.1129157976824	4.26410590767628	4.1129157976824	4.00618612678888	4.29524933658778	4.41457212293884	4.00761898835447	4.10611850979369	4.2927005596354	4.37242792085347	4.32452939629932
+"TMEM183A"	6.84861691175774	7.5528834406651	7.93025903832893	7.45065765728253	8.36024835867298	6.45493197416484	7.09021183173498	7.14024172047506	8.04822017811188	8.27388733098438	7.22053528958531	8.02951820916637	7.40133808450103	6.77282690874934	7.88166349068859	7.48084294059273	7.88286641484011	7.88847587051943	7.59532862234724	7.90262694948547	8.43540665377312
+"TMEM184A"	4.27265252343554	4.18709015391907	4.32351478355936	4.67355250347093	4.43258834904461	4.44840937374849	4.5010609343518	4.53552366041602	4.646668364331	4.50374861255094	4.38546637533436	4.46039630602082	4.66525327106896	4.69507354357578	4.62020560069298	4.17680770257407	4.3892916641767	4.29280278135118	4.98536720880395	4.48807635425756	4.77309794469084
+"TMEM184B"	9.24900013243257	9.16043847672761	9.33217749772261	9.21983947199449	9.09673759513215	9.35026942260552	9.35211806818358	8.78979591788828	9.32785305683237	8.98386121262577	9.19783599753839	8.94685454956845	9.56083823243853	9.38980385757588	9.22134796210851	9.44206754928251	9.23762294767122	9.52472760893165	9.07937410369128	9.12865932727401	8.9790360101531
+"TMEM184C"	8.14738279487982	8.05485396116489	8.13659663064376	8.12485041352239	8.13609624888102	7.83038648028599	7.8740198294806	8.14818494426817	8.08446129066347	8.12679596992388	7.94396005904429	7.89430786666696	8.32352493814929	8.12944297901059	8.29250750187357	8.00111862437879	8.04788794087045	8.23285904069134	8.05225313840736	7.98073916544311	8.0024870407272
+"TMEM185A"	7.20151300377915	7.11321124220889	6.54216936249614	6.90746067578517	7.30370417372676	6.56593750552493	6.75522529331141	7.31034377569606	6.83546923259327	7.29893709635754	7.17538007568301	7.46563574071579	6.93766718585206	6.79442901976401	6.8642636288858	7.39580055837002	7.35614216744679	6.82996185660448	7.05597962175673	7.01642870862821	7.19126402229299
+"TMEM185B"	6.30818436939862	6.12315561996038	5.498378907074	5.17330402062747	5.67512182277532	4.91983668232466	5.5941733389914	5.98966779751611	4.969757311356	5.36042108644927	6.49118793684738	5.12107839514312	4.94905139852274	5.08874211816076	4.62851100081222	6.55859692668903	4.99169548668545	6.24637446975247	5.20121106206615	5.82071927253507	5.61302649704617
+"TMEM186"	7.41820226297514	7.14886204177567	7.41061588460585	7.40342333109351	7.44169429901621	6.86870327904676	7.1957543476904	7.18457335511512	7.25504608251499	7.41898865958045	7.28104838965062	7.17161550333543	7.29331896155871	7.24902024461767	7.36124313317018	7.28966866837778	7.06204790862196	7.76266829270154	6.94816053035147	7.41723024178333	7.17367695130095
+"TMEM187"	7.58082946311642	6.94530164611395	7.20890879753756	6.98387768123895	7.06735637875853	6.94795391819316	6.90770636582508	6.78522448099811	6.95238294538237	7.132861992479	7.05492591701027	6.68375115260408	6.47207720923585	7.07886670751566	6.72251725898525	7.27540676265473	6.5638307489817	7.50972918283852	6.9427754569104	7.31932359607633	6.69972131516792
+"TMEM19"	7.61792008188818	7.62829868784574	8.13860643650586	7.68648497909242	8.10346244435374	7.67794304177862	7.63196485533793	7.72569196903203	7.9003545454721	7.76881917363123	7.72569196903203	7.57369259202739	7.66266954337312	7.50522672021738	7.85202276735545	7.67884735003385	7.57058465831174	8.37231057415203	7.7080873349266	7.94193530882108	7.62461282150994
+"TMEM190"	6.21425361051752	6.18487237926674	6.16279762026193	6.09932124229819	6.16434051166014	6.19550573297918	6.4547056883936	6.13163466653856	6.10391645411252	6.20958867201295	5.96954438515901	6.23716759460518	6.17961512200075	6.37082100340964	6.14529659316257	6.12059484398192	6.00670622707959	5.80642788586907	6.16434051166014	6.08707266829756	6.28710456300635
+"TMEM192"	8.89706846361237	8.83985082371508	8.46518133553395	8.7388247519227	9.31702204836449	7.86216125004391	8.80307453995286	9.06099107198342	8.77605357073202	8.78317909773483	8.79327288326023	8.84846881842958	8.58662723140447	8.2708589601875	8.56611797002323	8.87268841748559	8.8327133014275	8.98978352453245	8.82004443697195	8.96070923441325	8.69364266710415
+"TMEM196"	3.70632310137397	4.22494202394421	5.00034873534284	4.02588444246102	4.71138307259325	4.1068962686683	3.81304310971496	4.45287127592907	5.28194218843164	4.90171293481678	4.00027047906193	4.88090880442319	4.29347649733837	4.1202566360023	4.24879914557332	4.3503469807333	4.56075382691521	4.6405005382512	4.36227874560824	4.68966246362145	4.92539958727985
+"TMEM198"	7.69840649634354	8.04208365749965	8.3874829600048	7.74599548289784	8.02038350756097	7.87392110722685	8.10380012148942	7.55389928771882	8.00867072717504	8.08594063360136	7.85532780029406	7.73216853859339	7.77497023171141	8.03462139715214	7.78430392931903	7.62871530051349	7.88151129836278	7.72472961414388	7.70898922701794	8.37893514247543	8.02820299232406
+"TMEM198B"	8.66744418506172	8.1667143989906	7.85801902957153	7.83130599625104	7.48328998664143	7.84764397787234	7.87055121187244	7.58400161986778	7.54356233255041	7.66109155027897	8.27615286985574	7.64015274532477	7.09825817374208	7.97813254213608	7.63759388576256	8.78751578744014	7.55839319090207	8.13906430005236	7.84223911570746	7.74309036113499	7.59321998892144
+"TMEM199"	6.77015475387019	6.86868774480027	6.9317030303295	6.71075591131312	7.22347918288052	6.95389725295096	6.77015475387019	6.55574653594533	6.83125208802648	6.8176937519194	6.68517535584771	6.50849698243823	6.59896253610398	6.77199500117397	6.657178063056	6.69033137053735	6.61760108656451	6.78663697200056	6.3284310095276	6.85033774279691	6.7509763544796
+"TMEM200A"	5.55890411844152	4.85009794165314	5.50136920972502	5.13979008748107	5.92582704067787	4.30291884282523	4.82192586394465	5.17755659541411	5.58810183644037	5.06292957862388	5.40375629907843	5.00457285500678	5.09122390903668	4.36554090315848	4.82593182035398	4.83532167169603	5.04307218057434	5.0487726970868	4.53916300385907	5.9403939116837	4.9749924834084
+"TMEM200B"	5.78929569633625	5.35529404548803	5.16304009926144	4.95236011586725	5.263620159914	5.54085638323006	5.44822328042423	5.31403987738335	5.43829762453983	5.35929306359244	5.15670975312863	5.03583505533833	5.34227345670284	5.50727272527636	5.11512828364561	4.91083668130107	5.20573606750246	4.69017851501563	5.15875777789268	5.61271654795905	4.9595491067216
+"TMEM200C"	6.56435403783719	7.53254893482643	7.62879894480327	7.60618746941094	7.34920368242437	7.08615840374495	6.77913164993613	7.22337126532421	7.61393661301587	7.13211922254119	6.77952360276174	7.35864201376182	7.55394223724088	7.00543950085549	7.35992333338827	6.1994990494524	7.28168359575886	6.94918897250146	7.22337126532421	7.69419317899003	6.95042687707461
+"TMEM201"	8.24965113797493	8.23296412856134	8.51027031988489	8.08699006004052	8.38679510433627	8.78742558399821	7.87455434502806	7.76022814267642	8.06244807681546	8.42769529452396	8.38179621866158	8.09009102275174	8.14723726358066	8.60118915684759	8.00392001832878	8.63142446266487	8.09047630858492	8.50972518239953	7.57296367760342	8.33179742661421	8.1094907897515
+"TMEM202-AS1"	6.64668373114044	6.80750139804889	6.60004566451967	6.76009270323233	6.50955434823768	7.07319505578367	7.53570130524236	6.66472927490629	6.78066551177491	6.82161637833404	6.55690142924852	6.74163882530366	6.92820888016318	6.8600519747036	6.93098878923678	6.49022754502324	6.75662205256551	6.66214692922845	6.86844031906278	6.77501969924689	6.75751125677883
+"TMEM203"	8.8150804970415	8.61622733197636	8.89440326010346	8.50596170734697	8.82741650826445	7.87555602485248	8.5573570672941	8.39058068358215	8.69369934849296	9.06272205676622	8.4890884923251	8.71067958988215	7.9515482937533	8.32466985722536	8.39810996951557	8.91498280839317	8.6714363401259	8.85206550807828	8.69168178683576	9.26835738878746	8.92218410371468
+"TMEM204"	9.34100074058713	8.05553404459884	7.45130044795307	8.05618977762037	8.17476367554773	8.38022322775543	8.82782045556842	7.58666866563049	7.81270064271402	8.01979881557863	7.89155638047888	7.15384441311328	8.53170780503376	9.30392036759658	7.74936409929802	7.53985877848304	7.26181667955654	7.91424917369451	7.23829708278011	8.06890420052022	7.61194815146463
+"TMEM205"	9.70062027600746	9.46980847804644	9.72188609157872	9.39640182154237	9.5074735628187	9.12655045990451	9.39728527296525	9.50379953644712	9.39483133953751	9.71508529455011	9.62145484672181	9.70015183251483	9.21187940389065	9.112206232219	9.2835912673699	9.77084706133023	9.33176650089561	9.62641553352065	9.49483269139341	10.0119142336402	9.52159969293811
+"TMEM207"	4.89215823721706	5.23182329357005	5.26590355278674	5.19077037196686	5.21653434671362	5.52590708232247	5.2695949445032	4.86875131529623	5.21653434671362	5.24767245885925	5.0096538051858	5.33048782232104	5.021094956621	5.51366214940065	5.11411820684435	5.29427149530202	5.32958572662845	4.92867279098131	5.07233709530229	5.33929009668214	5.24981007480309
+"TMEM208"	8.21626894022115	8.16417501382208	8.31162595567968	8.03042084209728	8.27641321235538	8.09337835025669	7.83833610648071	8.03135750074404	7.79456109801404	8.25867555152651	8.25944430562776	8.15491311879732	7.84648118992761	7.72805338754044	7.88718994079357	8.47439176673179	7.78396574087624	8.34503821642797	8.07522696713504	8.46200711163919	8.15698599645407
+"TMEM209"	6.76447888805107	6.45965249631338	6.65149795159565	6.24573836776085	6.67335093396465	6.27795779120065	6.06744705678431	5.86966915762073	5.81506265687213	6.25813615513029	7.01397519670318	6.05586488307235	5.67460286609863	6.26601642296342	5.99504490093538	7.54339390756637	5.95049450390242	7.5693312220528	5.76269267076566	6.27981305477405	6.0077724735066
+"TMEM212"	5.91753438000495	6.15783245821811	6.26158940100483	6.26717878915195	5.95897888462817	6.38631796743589	6.60089747472376	6.18553219608623	6.44508307150491	6.10271985819724	6.18659739963791	6.06043826817927	6.44377888844436	6.40783769279553	6.44067483123101	5.44631785979391	6.08437902981338	5.72497138595705	6.22342351424372	5.67857479503978	6.09842621097365
+"TMEM213"	5.28028394020572	5.20819964996157	5.26786525307005	5.32692006831047	5.20725721105552	5.33358936572871	5.32692006831047	5.22954880980342	5.4754965035799	5.32742484879943	5.24826510377541	5.208507137042	5.51497448281489	5.44732224817999	5.15337372710513	5.21381163941382	5.44231689953665	5.09315295345221	5.59341153814895	5.13533258844291	5.39750710621255
+"TMEM214"	8.29986297748743	8.02238771543295	8.33255459526158	8.12280202840787	8.20425264821085	8.6864017019043	8.25919221034947	8.0730033755063	7.98947358730401	8.1557388944045	8.01913786372179	8.01197721428808	8.2543168812726	8.32145786967788	7.89656200482207	7.98384396300425	7.91390425998642	8.23759981943754	7.83555837186691	8.26131897299051	8.17305327765031
+"TMEM216"	8.75975854032713	8.21734574542009	8.29626541960404	8.40029566379794	8.15140554405423	8.0319471285612	8.6456173345605	8.37225580976135	8.37991384414069	8.02775655718518	8.22403118596085	7.69305125953124	8.22403118596085	8.38064008599395	8.31673278951891	7.92907986833848	7.98354694714884	8.11781189083298	8.46131181508083	8.12717574845966	8.0497607442568
+"TMEM218"	9.24220991549062	8.50185643424963	8.13999313751919	8.33945311057889	7.98844893658005	7.58494477091656	8.53937523970215	8.29057773773564	8.51731655113168	8.08026191303433	8.89672412327441	7.98531642112237	7.94450387479617	8.11739333290327	7.97944496536247	8.86936468523039	7.99192471242268	8.37672044624786	8.36912595702245	8.4069985363914	8.16577436988223
+"TMEM219"	6.744846100949	6.5983862702564	6.34834817343575	6.05473309000315	6.00168786606337	6.54444122437298	6.39777168381511	5.37208415959106	6.07673593450879	6.10330591908423	6.22908548587799	5.97118204826989	6.16921080097492	6.10477111816032	5.82361586235845	6.79693571871505	5.95609244869853	6.42513694631454	6.26411444140735	6.33486472787957	5.93394190117622
+"TMEM220"	6.91199342705983	6.89276212664926	6.29211345570306	6.5784694309273	6.27225131441596	5.96080753220035	6.17415083912315	6.48093816115622	6.05355467421106	6.68942917305753	6.93509341599083	6.62458032257381	6.19939534008086	6.45150584216961	6.17192260606907	6.47465837800624	6.45150584216961	6.5916914165869	6.3917219449675	6.86141895002206	6.33820462560644
+"TMEM221"	5.73570778381404	5.84324430367431	5.80310345379274	5.87651194645477	5.92023406212225	5.84324430367431	6.27517364499321	5.71453753454065	6.05088207706992	5.84324430367431	5.74988123258855	5.9422992214316	5.80892570967558	6.2002474685047	5.86846207981488	5.68473460786074	5.96175519493341	5.45904785822361	5.70491146600838	5.71294961147818	5.84324430367431
+"TMEM222"	8.99165888941806	8.88565973975268	9.26098990519719	8.68290288838757	8.90321425297999	9.10940220076958	8.79933510815945	8.76883616859747	8.61849515017593	8.72914704773271	9.10874381592894	8.84818724449821	8.56870405398551	8.88815673119146	8.54624565606693	8.93184000799415	8.48741923339298	8.9890746886723	8.47686374186365	9.07401698908062	8.78022608708025
+"TMEM223"	5.1258380432364	5.59372244481272	5.48623299020657	5.53584279132252	5.66058665451073	5.530948707	5.62223650352502	5.39429208298461	5.23314083027799	5.6437069118811	5.6790737416002	5.53584279132252	5.56035088690433	5.59140381272771	5.50754970494377	5.49098677631793	5.53584279132252	5.3575640242114	5.34948158371078	5.64117730453537	5.8713162344373
+"TMEM225"	4.39694961988153	4.40576447086313	4.00489083107228	4.31057384088201	4.13482130042528	3.91747881625649	4.2662823467472	4.20661007777475	4.49848720750382	4.22433379091339	4.25128232534508	4.3178936720313	4.43925101565693	4.16383965280639	4.34634699370544	4.30884542150473	4.27307834331231	4.29926615569817	4.12491165589109	4.22152900710977	4.26329842602899
+"TMEM225B"	5.5978470654774	5.5978470654774	5.71656556366923	5.57174551437652	6.05483904718036	4.79773787311812	5.48684652005895	5.7662511083396	5.75980551767976	5.5978470654774	5.73939492939277	5.54907680559853	5.18431675359454	5.5978470654774	5.42207181011688	5.8046063198732	5.45452558481447	5.87514505082876	5.48691621102853	5.06619917597551	5.4301425816398
+"TMEM229B"	7.64671279024638	7.61050059556914	7.94669139638557	7.87304224188598	8.21078831519923	8.05242909848687	7.79126650802087	7.52123869729216	7.95568879964175	7.96911332589302	7.50972918283852	7.86127258862308	8.2414505153125	7.95245168803442	8.00200183709471	7.56428700494015	7.80437699181009	7.8375089618442	7.75105962313442	8.1060676980143	8.13076213982761
+"TMEM231"	7.33699541708625	7.37408909257186	7.4521367002576	6.87436660916177	7.40572844955741	6.68458396877338	6.62653158482042	7.01714163905033	7.06956537040401	7.37146097091016	7.83154539047142	7.5385541717237	6.35841055346231	6.81239213404228	6.34444159450723	7.50539955549707	7.13425385571864	7.19320861349774	6.96851769414738	7.46003895350859	6.99621682564693
+"TMEM232"	5.64583674366907	5.89708195618327	6.3851545895263	5.81880874969781	6.10055423809741	6.30567362578396	5.5031297388873	6.33587421953809	6.03921914468118	5.84268102235359	5.50995860698327	6.06062917362115	5.91865987405713	5.50309719849627	6.09104889031066	5.49243954783937	6.19335886005509	5.89960910762201	6.22528175453793	6.04216473009858	5.70770570243662
+"TMEM234"	5.98706660565473	6.27580215003386	6.19690399301396	6.03837270463874	6.03899423126537	6.18056718723882	6.13442828300413	5.84403318350539	5.78159273107938	5.99885535507953	6.01459545128162	5.96427464688933	5.8934494707509	6.21993659345396	5.78177240083617	5.93659099679891	5.92811630192731	5.9417304259778	6.16382100799708	6.05910584847628	6.10940467494092
+"TMEM235"	8.34643531083573	9.03655315534076	8.7603507120655	7.97020957202418	7.81079052105138	8.28598806624215	6.64806030103261	6.49306369053311	6.2680405668634	6.22915455629159	8.98530729045036	7.88243203357752	5.96012459432978	8.22700387726535	7.54013943391935	10.254121046787	8.08286251558121	9.49877304038931	7.83093543520486	7.26518061205253	8.38592666601041
+"TMEM237"	5.89374324662381	6.08256382418607	5.95504751095061	5.92931617965672	6.28092346886863	5.20834124681759	5.30303217513982	5.93228183266113	5.80677903951739	6.09763919062594	5.96118582928058	6.08533584164522	5.5696821567036	5.3971211361827	5.4546513810783	6.1725804830388	6.01381045338474	5.93908863067455	6.01283601352874	6.04188084694709	5.99188751379301
+"TMEM239"	4.8605259371437	4.62359580589538	4.61702100003843	4.78268275894709	4.42795559931947	4.67569487082649	4.55747184814088	4.49237313738553	4.74797600118137	4.88348477652338	4.59378593082793	4.51272358732854	4.75281293656299	4.76460667773135	4.77803043743532	4.46130392825757	4.56462940244763	4.90441527374624	4.64237032404636	4.65449201055052	4.6582347370163
+"TMEM241"	8.41365380593965	8.56295855983746	8.26335856173194	8.6604043746519	8.26905040184184	8.04056839275901	8.19845911884556	8.31300809086703	8.78745616639173	8.66018883375654	8.42962998200142	8.65312289344365	8.8503968639845	8.33920602430207	8.4752502476631	8.4865742952527	8.55006823571131	8.19632021666788	8.73375728609761	8.4947532401961	8.60797353180465
+"TMEM242"	6.38257691374792	6.76540478295228	6.67949894880715	6.99021852149608	6.78028173607257	7.15644751984347	6.52003340503228	6.89777969900352	7.07512409575672	6.48847229270651	6.57689848815241	6.47629702180954	6.67086546721609	6.91910070219015	6.86758224175393	5.96405290854714	6.93247808392398	6.94054982952223	6.73355896220588	6.61506818251129	6.68364204752824
+"TMEM243"	8.37012690930846	7.8686398663505	7.88355345441636	8.33006777589957	8.38123378747878	8.14421360587883	7.89629735276579	8.39147563957166	8.77515375651415	8.54216420305442	7.85630582903693	7.97165607624675	8.61474494477583	8.14073077624473	8.69649625908631	7.72797195111818	8.09000146887175	8.27390756610605	8.34536561783392	8.3022743700421	8.41209256292491
+"TMEM245"	9.16379082864015	9.20920382950122	8.33070666775102	8.99791511339057	9.48107704284185	8.49821733418427	8.61140024318188	9.02258924346377	9.2878445523045	9.7751155761732	9.12990892670202	9.64201157023358	8.33367593522484	8.27983512097872	8.69582954925407	9.59284835782364	9.49224696361965	9.52222548407611	9.26063751562857	9.52418606366566	9.61151201199857
+"TMEM248"	8.23099971386729	7.97900674473465	7.22521196292344	7.67981034390238	7.71857098654695	7.21414721982182	7.68014694797655	8.21335497444047	7.63263855447751	8.19244831461173	8.1905008114294	8.24047408983645	7.45146498679638	7.2740085429574	7.52913849004434	8.19508070615753	7.89757357654097	8.03116316430825	7.87092672512106	8.33603445378241	8.03234449554731
+"TMEM25"	5.92862625686203	5.71848890048097	6.09454482396945	5.43435801381701	6.47053025971338	6.1468586598821	6.18116885406014	5.84622559888828	5.96389113887748	6.5762478225954	5.8208277579261	6.52509359790625	5.92907062401921	5.65672055109263	5.66027565734024	6.16765977565185	6.08462548424215	6.03194567569963	6.03937348291895	6.80406934776358	6.52713528879631
+"TMEM250"	8.00918934608333	7.86297191320334	8.21418309603421	7.86557593211581	7.99955102080438	8.15042431031387	8.02398622296589	7.65761813617317	8.07198611400021	7.98700845079182	7.73523704748733	7.80155546232136	7.96940695174368	8.09535795422357	7.91946734067482	7.48166273928166	7.91946734067482	7.78519821889577	7.60098810376186	8.12316768149471	8.03094955025793
+"TMEM252"	5.08961543800521	5.01676014759949	5.12906069912838	5.36476084059944	4.91489566643225	5.07018740071533	5.53589187158381	5.00037037143522	5.08241196630456	5.03852527017355	4.90347355322231	5.10682424426792	5.23986395237466	5.50522406427479	5.20024933739754	5.09122390903668	5.14055876146334	4.84627472264241	5.09122390903668	4.83122206500927	5.09688131396954
+"TMEM252-DT"	4.24557329400678	4.54287698282007	4.71779482212013	4.7242659203652	4.32418826339114	4.32418826339114	4.76090320940132	4.47880933064675	4.62937055569394	4.48626871165469	4.11341555226169	4.62780143362636	4.50621256386574	4.52791947567057	4.59355885509711	4.48242841800258	4.72609470171237	4.08022174867621	4.7096388695463	4.68282387464261	4.80095211598037
+"TMEM254"	6.09185015456666	6.31781821510965	6.16475206248111	6.03941758520597	5.88498735376439	5.93694858498565	6.26100119040855	5.99680414945524	6.05359707122008	5.85037860556996	6.22436321691284	6.03941758520597	6.06406408476878	6.08564511783393	5.99101560696019	6.01033938023993	5.94854209563231	6.28053654739005	6.0841424327677	6.16060739201279	5.89878026149042
+"TMEM254-AS1"	6.7257344122949	6.98999826127628	6.72517692082781	7.07518727543041	6.5998567916967	6.58899448161164	6.67029276658425	6.74539642359874	6.60783432487935	6.89919675532993	6.84984430146008	6.83166404046373	6.77080612427638	6.88113775045751	6.75600067703628	7.08565033910794	6.78444875208338	6.88652065058121	6.8409388946375	6.80984608706659	6.86821003859266
+"TMEM255A"	6.30894939293869	5.50773048975403	5.2049894248713	5.52956301443567	4.97820970467909	4.94601617395235	5.28950129985932	5.54990837829614	4.81466088127262	5.39096571044835	7.40147316822248	5.35475304492777	5.36082033345385	5.18257574956253	5.65283054820219	5.78493440248871	5.08042793093802	5.81247869592512	5.39096571044835	4.12283406773476	5.12398348440079
+"TMEM255B"	6.05436681521698	5.85808433100139	5.96048139940859	5.98540972666081	5.67937258996069	6.8069957446863	6.4912439534037	5.97081520828498	5.93869253936758	6.07380313615073	5.72560938723637	5.96048139940859	6.03884710578637	6.19488143954044	6.01096729112887	5.35709512794203	5.62378363959916	5.83402774542455	5.70406218925437	5.89612361711681	6.18381444382764
+"TMEM258"	10.71110466661	10.635748987457	10.4360221681131	10.4173440726155	10.5505002727144	10.3428154349675	9.97348062965229	10.3599558883898	10.0783807864834	10.5731804089228	10.8542240151717	10.4802162863255	10.0782194208035	10.1769374808833	10.1960768130418	11.3211667058967	10.2690224813669	11.3162562209311	10.4502847634896	10.4798738573792	10.3178249129594
+"TMEM259"	8.35548469044295	8.1230144905657	7.77519008569167	7.90166301964229	7.78020800478207	7.69069715794017	8.22011996224001	7.98827048535736	7.94401025478674	8.25539472221498	8.74116654525917	8.42428237366304	7.54046048134422	7.40496428435011	7.22972686253201	8.89905222498916	8.14513918372824	8.40892264366229	7.89394776286819	8.43517620206165	8.16845135543431
+"TMEM26"	3.25112209558334	3.11188050561498	3.13940155005743	3.02471288538393	3.33534682679906	3.27605695764013	3.32854401544164	3.14095900406691	3.14437558589497	3.14824377345923	3.02848277529925	3.18877549707776	3.09782467255632	2.97003449431168	3.32577319150511	3.09558852040726	2.95974200217036	2.89549100946769	3.13488632007837	3.16612667867048	3.07630746450081
+"TMEM260"	7.60922960705878	8.12898074474273	8.22533918007323	7.75487645802261	8.16805747400563	7.10110197277995	7.1100810326869	7.77266452937626	7.74439449070916	7.50555959345384	8.28871779353847	7.55818164440123	7.6277270773521	7.44471046327605	7.84564958496049	8.49417797073276	7.71250688814713	8.36827291756387	7.93301062901501	7.75258978739112	7.6354221531136
+"TMEM262"	5.93527600911224	5.85024678590331	6.13607843033197	6.42274473910113	5.79481989457695	6.51356111862831	6.97941993944989	6.09836945263168	6.41835831675987	6.41110585179884	5.97940002930826	6.39338700100472	6.47973866654124	6.47249155988922	6.3643480768716	5.86884470513269	6.1096150406012	5.91108326632236	6.40597121675645	6.13341071175683	6.303897164781
+"TMEM263"	8.10658808021982	7.82779738781134	8.14654640234989	7.84434331538017	8.12557265685959	7.1808686610789	8.06716371425103	8.27322036199806	7.99470001706875	8.06321995264967	7.86808778147391	7.83724688839032	7.8210616702709	7.49304662138133	8.18608556686651	8.12513752431852	7.49545175534874	8.30467801075392	7.82610081766035	8.06972093997661	7.77698306641967
+"TMEM263-DT"	3.69343160425746	3.85551955591284	4.09933392269428	3.59893302549007	3.92522869245014	3.53123230810486	3.16596665515108	3.48670582365182	3.49450953577812	3.35508877651106	3.99048721514932	3.71060737407459	3.38595326786431	3.58481942097683	3.5940220400786	4.10718142228922	3.444985866612	4.60683070066846	3.51827082276774	3.54271109711733	3.49605990081573
+"TMEM266"	6.2695824894001	6.84970203198619	6.69529310483194	6.63636807590223	6.82014310002384	6.8823237523156	6.50819172022787	6.53734351608679	6.73706277138244	6.69529310483194	6.2512297400863	6.58826708741339	6.90830213101501	6.96774228640614	6.96695397109386	6.37333461941914	6.84999486816454	6.25113377850049	6.6946410581926	6.75500467997655	6.73613516454091
+"TMEM267"	4.99169548668545	4.59176382200919	5.09230953536676	4.74575989624927	5.39576317200021	4.48993414276446	4.49557567950409	4.80786043023811	4.80456950447402	5.13727770769636	5.37777541445771	4.99169548668545	4.98489713609489	4.49992060406409	4.99169548668545	5.0265395649868	4.85626411671993	5.62356078728177	5.08416123673075	5.10266857830755	5.19446757742507
+"TMEM268"	7.30172093843167	7.79913305396501	8.71593440092941	7.74718914041063	8.48449826297651	7.64062034328842	7.31395236501619	7.75002346163092	8.41697694803143	8.37540495610507	7.49720631038452	8.50297380217689	7.92986444185705	7.69783746900276	8.30128431399978	7.41139683223275	8.56571474914738	8.27393508839715	7.97987620224156	8.74407588761011	8.43264826090755
+"TMEM270"	3.98205363296183	3.8851578113288	4.08571531516523	3.83302458975743	3.72759911544408	4.44153910643314	4.42784833219707	3.82851967799172	4.2894848915929	3.93235822407633	4.00294424462906	4.06500863988849	4.15169265880167	4.0454201003321	4.1085475253113	3.88000502615246	4.0651193744311	3.92309917017049	4.12633834733816	4.00469379059507	3.9472273814745
+"TMEM272"	4.83851391392687	4.87073553488662	5.18327592166224	5.02323527328142	4.72423247387559	4.94323406769489	5.16993619423744	4.56251000340764	5.14785645014479	4.88548364385296	4.62373925667104	4.56222956494203	4.88175692707423	5.0379685591844	4.79042799791612	4.79810719975436	5.05070006742166	5.0795497702649	4.92549835529543	4.65709218013477	4.57808360713385
+"TMEM273"	7.46416965231942	7.22670440336314	6.57344845203908	7.17237133425282	6.6943415731943	8.04402988696765	7.23207981828464	6.6599116761371	6.26563356520649	6.38090327974757	7.57872015779827	5.8041338320426	6.79572087366138	7.26979225325104	7.1433455007053	8.67633899077514	6.68043955419742	8.69530531707412	7.23818516008951	6.486467771619	6.76684983075867
+"TMEM275"	5.6563157169222	5.67041424414246	5.48180447826444	5.70750606593993	5.61558174460996	5.42496772474442	6.03113073399361	5.6563157169222	5.62029979363678	5.71080592567388	5.45548919296239	5.82049001245863	5.52762489886658	5.61895227541988	5.94773731982077	5.83352608811365	5.91536334384264	5.414241656631	5.48213187671448	5.60324199549005	5.50161556611409
+"TMEM276"	8.71256635018925	8.6559168744702	8.97902268539074	8.57791976577483	8.43576585612078	8.54029014882972	8.62591241477914	8.63012092980062	8.26251980942587	8.63798304039625	8.76836212086474	8.59339698863523	8.44163901763189	8.57284722226879	8.24637380131947	8.57791976577483	8.40544328662647	8.79601726815748	8.60538766648657	8.73035458079183	8.45930859326145
+"TMEM277P"	6.90875392505756	7.1224583492739	6.97736581563413	7.32558194353406	7.05450818599944	7.22868285986786	7.46150585589577	7.18218331218341	7.36871252741497	7.22887751667864	7.0451056666158	7.24429823985194	7.42791278492474	7.5009772755145	7.39873907596868	7.23982737143772	7.24355405657466	6.66383591480286	7.23982737143772	7.03488696296458	7.35178577464467
+"TMEM30A"	8.83257541961802	9.02766814240399	7.1662672746394	8.40799660650397	9.00646698074678	7.56535909094995	8.50399632473265	8.95062118398554	8.47203384786659	9.33280226025392	8.98485580423026	9.18749528270654	8.05598374319121	7.8584430883772	7.93731090376576	9.30496312361954	8.98375737857122	8.94125704207632	8.85013348141449	8.94292885254151	9.46241135165542
+"TMEM30B"	3.65036790312336	3.89383773378805	3.41163377601394	3.50934964009748	3.50117372901666	3.58574164183708	3.98866967075175	3.71836237220369	3.55051465635281	3.90566977542816	3.54751796359271	3.67084868586373	3.58055629462935	3.74317615456427	3.68898531255841	3.49846017286909	3.68793421054137	3.45941812658258	3.77840740537392	5.83738812444044	3.67084868586373
+"TMEM31"	5.12906069912838	5.10815403304986	4.9170008188296	5.16116112576061	5.4491629633289	5.82988402927147	5.19452278366528	5.05998429416693	4.78039413048135	5.12906069912838	4.94353236858526	5.05218926699096	5.1782760169882	5.24169793033819	5.05303846764067	5.39162813787297	5.20981235130957	5.80948949124422	4.98962432023082	4.63025272792707	4.84700408198923
+"TMEM33"	4.59402772566707	4.72999715075062	5.84369982017976	4.93989356991816	5.78479003369667	4.71495163450504	4.73518459899537	4.93891127217853	5.46700628730236	4.80723706312749	4.80844444992704	4.83851391392687	4.83851391392687	4.65990288590294	5.09209824311537	4.38117206342254	4.82447961295599	5.37522421249729	4.83851391392687	4.89359900483281	4.47223212119179
+"TMEM35A"	7.54919606640342	8.78614531896147	8.5961245112584	8.96699650636671	9.33970332476192	7.99209802467692	7.49469551688389	8.66527690606062	9.08866511706348	9.59948822951137	8.05949969276611	9.54586395357434	8.89360839722444	7.86947172812638	9.13725081096937	8.70049529310815	9.33303803323261	8.17598541214443	8.77652482508607	9.45548446908935	9.4332304819374
+"TMEM37"	5.70275220526148	5.79356525931239	5.61565312172274	5.84148146121396	5.76074267578504	6.44828141788377	6.45134469309623	5.7399488631932	5.80678956058616	5.82767518346872	5.625581462499	5.83443009590509	5.9219966600794	6.2290948765602	5.88549771331704	5.69206155328989	5.78211144524458	5.50685596808363	5.82590828508982	5.93565744903606	5.8248471064294
+"TMEM38A"	7.51573038487295	7.8319872736286	8.19306482521044	7.72140961783097	8.27836724726427	8.09782032582082	7.63356914661562	7.48067553522339	8.0365159531181	7.9976515253781	7.54243877569786	8.1665627798499	7.91166453852026	7.32045793263241	7.93366574079742	7.55916379995212	7.89109753879693	7.89109753879693	7.77827380856226	8.25740408258282	8.14827564666912
+"TMEM38B"	6.65295306097151	7.06016851224728	6.2966101392759	6.61912555602261	6.63927400461861	6.73995067972898	6.46624519145272	6.90025543775883	6.36095791627827	6.60485205314491	7.37513875446288	6.30121943732232	6.32280858531374	6.53499323259277	6.4000958119851	7.77812691150428	6.34244196121111	7.83255875197618	6.78679204079771	5.84343530418334	6.12059484398192
+"TMEM39A"	6.96524884517362	6.87972713696134	6.83407525467582	6.85173638175011	6.6143598763493	6.99243680763178	6.83253285851762	6.6905331818431	6.70234669833375	6.61153959430819	7.06769220551436	5.72695414668096	6.97624136585509	6.71472034252698	7.0017433358439	7.26034786413557	6.67385820263704	7.12846057663851	6.78272616363221	6.99415322081466	6.93413179957946
+"TMEM39B"	7.66691679442171	7.7702920597839	8.11463100711306	7.77286671986488	7.67258051046171	8.0362252136061	7.46843143587616	7.69692793144941	7.49025992283827	7.75010653604532	7.53006684542112	7.45752880348457	7.55607717641093	7.52354919568653	7.41216595780456	7.73096229373594	7.59531199879125	7.78936995181575	7.48175696284191	7.8411922185065	7.53131431463507
+"TMEM40"	4.91897358725269	5.42673630741339	5.28472655824206	5.42673630741339	5.30685978187785	5.40260038442491	5.6495807319844	5.42390905671531	5.45124121372987	5.50774119035132	5.18659289685849	5.52301406914883	5.72119075956558	5.51092605263306	5.53920805609797	5.43935693173865	5.55164005273765	5.43658826782284	5.6674588007133	5.08961543800521	5.49303524880114
+"TMEM41A"	7.60384830214911	7.7483186361485	7.64709289047265	7.54469113962421	7.51286173050248	6.99538497029856	7.529715330993	7.87947783262862	7.62579865279673	7.70978170508091	7.59352255412479	7.59783393408908	7.81105980106719	7.8800908157157	7.62451980431136	7.73897821704885	7.41148465349316	7.66131271141655	7.51982308429078	7.61434098132598	7.59335573587785
+"TMEM41B"	8.84389007828684	9.24607155183502	8.98339780509923	8.90715954382568	9.26275637264551	8.60084400870694	8.22011996224001	8.82497955730368	8.81746009312261	9.11278462221953	9.10205479362143	9.16099063811336	8.42117154273047	8.17095433524295	8.73276255912291	9.66065848952593	8.90359054467162	9.65317146599715	8.98181118568715	8.90900367256996	9.19881212837741
+"TMEM43"	8.98592270911609	8.32289459155436	8.04797504849739	8.30638618296514	8.24506994040765	8.44174227654412	8.49625140612965	8.54416005129871	8.32067918656808	8.13744027753609	8.43366063528134	8.02792851144761	8.03328091979605	8.51974897012865	8.12785798199073	8.44077855731528	8.33796434174179	8.53622472168476	8.25150389867413	8.45934212576595	8.32696725080968
+"TMEM44"	5.81642999405207	6.30685687371646	5.71326436862809	6.35069408007984	5.6045444808192	6.03796750983325	6.48379083499079	6.15839222372231	6.45935604663127	6.21364894588911	6.17887294605071	6.01939503572294	6.68561290901815	6.55743767881462	6.26646612416007	5.6138372821381	6.44743431982497	5.58725905650964	6.52440452384347	5.9271205113754	6.30178572904639
+"TMEM44-AS1"	5.54582179972561	5.49908957015192	5.53622820731433	5.05236453682223	5.08264985864548	5.60260113733055	5.30414423973762	4.94089653181122	4.76880745663817	5.21427901842316	5.37384484701008	5.05061747158825	4.99628950375632	5.42188692434188	5.08522443589211	5.56458709019212	5.0601960389854	5.46212714089661	5.37911094414269	5.058251476517	4.93949435145166
+"TMEM45A"	4.65281623861052	4.66424086908061	4.00392965264029	4.72083029964895	4.3272494003962	5.39256889886875	4.40804564476104	4.54355848342345	4.46324753542993	4.9724241566554	4.98894985914424	4.21395259507233	4.71923938935518	4.92768765011517	4.7124618226097	6.04778139836804	4.35316418246947	5.42722329926288	4.99185203433708	5.42104921211318	3.69681260621839
+"TMEM45B"	6.22436321691284	5.80494206342862	5.57701504473975	5.71521364286032	5.46971285503265	5.90506839508861	5.91933998608376	5.66734266710132	5.70133619015916	5.8046063198732	5.47231355648881	5.53294215327753	5.7439667170245	6.17507581598132	5.7295046748709	5.47962260623971	5.78600705253702	5.52736286252668	5.66105742402109	5.7662511083396	5.69615748321871
+"TMEM47"	9.69276716070902	9.28659801520375	8.78418790398385	9.0854258052364	9.23024795546658	7.61543139145054	9.12999020319901	9.7030077638568	9.55391767042751	9.22629743154044	9.85075863363639	8.83343178842582	8.79581965372031	8.91194296224251	9.43808450859063	8.72372244291772	8.99702930183766	9.2977607627566	9.33992975011769	8.70510269490272	8.32816807219926
+"TMEM50A"	10.4469031317022	9.96934533997072	9.46722983033243	9.96461887655424	9.95685074000287	9.8481764699456	9.67687440144298	10.2380138964544	9.95938988080447	10.1470915382817	10.3539185882081	10.055763116185	9.82146682558789	9.79495131242173	9.75135579307201	10.3718792305418	9.73141976336934	10.3993607608965	9.96193905972648	9.98007128083506	9.94098669390868
+"TMEM51"	7.19933168841593	7.11139606669479	6.82390002428263	6.76981109160159	6.56632847837282	6.84700679503169	7.26020337014528	6.84653365508375	6.78225297438878	6.92888845785403	6.77267021094113	6.3940088392032	6.817849751293	6.95785605105928	6.95482136747765	6.59001397307026	6.69739107137757	6.39348865465054	6.74612757702364	7.1295517071238	6.98771180289723
+"TMEM51-AS1"	3.75230625694105	3.78909981620969	3.91997016157902	3.67420601036309	3.86175116699903	3.72421426249425	3.80781759406872	3.47842624366239	3.7501778080959	3.68459198651636	3.83017420752727	3.65696054435095	3.72421426249425	3.86280679573587	3.65026623097216	3.62939996765605	3.94563102201818	3.72904760215299	3.52908348689761	3.66758985714757	3.72421426249425
+"TMEM52"	5.08961543800521	5.13337398348614	5.1041071277994	5.14510208336765	5.0868445359544	5.30994169831492	5.40809919847626	5.05875665797918	5.06493116494638	5.03827818908804	5.09821407608839	5.0987859834324	5.25061484982365	5.35847009106694	5.16047540940619	4.91434330587073	5.0987859834324	4.72032927833	4.85833086469242	5.00631327598168	5.0570507509472
+"TMEM52B"	3.17431928442203	3.2677801504801	3.07068081251877	3.09169806806257	3.28703769404833	3.09832186466827	3.206821537511	3.03174601540655	3.06125543150806	3.09455517538494	3.14474477659432	2.92418978863666	3.20901276928803	3.2678073420518	3.17431928442203	3.38330917249537	2.94848164787661	3.2599418976663	3.17431928442203	3.42653370416587	3.41484989717528
+"TMEM53"	7.10854074651684	6.72460240604464	7.03510320830548	6.74336264378832	6.8654983581062	6.74009416699651	6.82136557770937	6.88550544603449	6.80754457683984	7.20768874482089	6.89599188716549	7.11919459347633	6.3631684804834	6.19206773855465	6.09834141615131	7.0954537939762	6.87094538028755	7.2985121677988	6.84745047101396	7.38593757385748	6.70254170938431
+"TMEM54"	9.06104996238795	7.93734243043505	8.02696816678527	7.89069060429213	7.85662720047324	7.90016952584573	8.69417187499497	8.10872921526524	8.04684526241419	7.94418724183822	7.83773724323455	7.84881023408154	7.89212813292636	8.43031099742572	8.07000791502913	8.08998808102845	7.71274955931188	7.98363403098485	7.86919313339853	8.15896545670086	7.80343235176042
+"TMEM59"	6.89104416722431	8.08399355058583	8.32716720853557	8.04338628655228	8.70114540621604	7.60071946761309	6.26121057836201	7.44626708052557	8.07084422480849	8.23489154726839	7.94440202188223	8.34381690014343	8.09404712420036	7.43935998349993	7.99428004988578	8.30467801075392	8.17748252770409	8.34411166336217	7.50403838665922	8.29245934230357	8.4133986039663
+"TMEM59L"	8.22011996224001	8.57330817668766	9.21981098268259	8.66173453788951	8.94313573133668	8.94830758036134	8.75386991054904	8.66536933065577	8.92781135508855	9.04519129053578	8.21903907672036	9.04121222205587	8.80758553276579	8.58284776203943	8.39397843711332	8.21888033876315	9.01390465201716	8.52759427348853	8.5056923802019	9.21709947036988	9.04842409140014
+"TMEM60"	8.37064000431308	8.58829273627473	8.41121460134122	8.48047050114369	8.73344908676505	8.1356786297326	8.0422140191946	8.2842273865278	8.58131844750007	8.62907434230196	8.28308088831518	8.41543305452321	8.54029014882972	8.15751309616142	8.48047050114369	8.58515201909033	8.38077581753425	8.62433914496274	8.35389627726335	8.80613348219141	8.67514100780138
+"TMEM61"	5.68708793690962	5.8557234844185	5.94301062339899	5.94347749257532	5.87548206858956	5.96301475347199	6.00658243723015	5.96631190421608	5.76851558090648	6.09028478576703	5.93900793816728	6.19355448211673	5.9674476630691	5.90335593682149	5.84360590901409	5.56458709019212	5.97523239890532	5.5944060515509	5.99516082079339	5.95031555638534	6.16972334745169
+"TMEM62"	4.45576733260764	4.52030519056746	4.36448959763263	4.39537741216068	4.46620611263922	4.20062850571453	4.49040303694868	4.40625927778887	4.51322889744199	4.5204826870086	4.50264997642788	4.55858374547314	4.29149515492506	4.75528599666341	4.27138196731232	4.6833247645887	4.57911097132171	4.35166824047572	4.35498533899911	4.35995429358052	4.72450247389974
+"TMEM63A"	8.949615340795	9.15473896401296	8.36720858896017	8.25354875081548	8.26401482458133	8.93026916189951	7.72601648896549	7.68987435462424	7.35859325567123	8.0155101979021	9.86314451355475	8.03298567129123	7.26282348057846	8.27357784636907	7.58822010190533	10.4319033723361	8.53226668969128	10.577871711994	8.86142861278365	7.8355895033877	8.61770856242855
+"TMEM63B"	8.30040600561687	8.39870776552203	8.60330222498023	8.35436558031986	8.41342342276629	8.63041802716505	8.60031448661429	8.25831441816171	8.40820584674046	8.43703437398877	8.33626817786639	8.40090554287235	8.60873341116923	8.70013060949921	8.45389403708077	8.35672143880035	8.51140706623151	8.28027370785462	8.43008781357362	8.63576263165307	8.58476155296469
+"TMEM63C"	7.81788197892285	8.00260083591403	8.45426446949517	8.0165389059147	8.32981989013917	8.44004601983437	7.73715762263008	7.99233712566956	8.18480001060205	8.33290363408528	7.62372344953239	8.40516749271661	8.27758630475664	8.25781893126736	7.76761295728105	7.33237353832738	8.67359162118589	7.91857554987198	7.6915444566724	8.14227325623049	8.35638761317959
+"TMEM64"	7.05022220123425	6.85768005144474	6.53198114479371	6.7211686613308	6.70331173185262	6.45240191748062	6.28917700249364	6.37017332102002	6.34358866670572	6.82571806762229	7.49204624307621	5.84680436663177	6.50866873486169	6.4997806702553	6.5554388612426	8.31878913647208	6.14836115565366	8.23699415673672	6.78548955164142	6.96973363451729	6.61779344611671
+"TMEM65"	7.44851101963014	8.17511428637022	8.49234997251765	8.03432311565764	8.62986869091336	7.24970693669782	7.18564402986247	7.85615015219143	8.45799143727338	8.23137639839427	8.11826856908958	8.12910702375969	7.8227411613124	7.43696775710493	8.15870477879585	7.64488367777709	8.23034693224152	8.38522058976283	8.17684804668829	8.46861640183554	8.3021243520941
+"TMEM67"	5.97904005863574	5.79700882807365	5.36038033915747	4.86207788746206	5.31085921744476	4.52830194726578	3.90938860892599	5.31085921744476	4.69935657162436	5.51428603022743	5.50635436081365	5.76228697218687	4.54137198263651	4.55071325170297	5.14773315461074	5.52390318088001	5.1341330942068	5.46453147573393	5.21565759317081	5.71921602428571	5.50037138139403
+"TMEM68"	5.2272095405193	4.88898016912904	5.38996377986203	4.60025531727108	5.23840230046313	4.55530813343553	4.37526247373332	5.06134641460381	4.92118279429858	5.25148893166189	5.15042912281672	5.03950555291495	4.4580283950892	4.43302767338816	4.83006066227187	5.22881527915291	4.67576280572603	5.44881922502102	4.26233723732438	4.98562281697558	4.73712410917927
+"TMEM69"	7.42105899966826	7.28054426192939	7.54860113653351	7.32172554677867	7.44718851103353	6.69288239514115	6.33784807044792	7.17189326348289	6.96409078550676	7.47823575074484	7.5885278473876	7.25366040380456	7.36762043548378	6.92611761503801	6.8504945917763	7.31610346239153	7.27089590493597	7.42438490576265	7.07787379332257	7.27729542276518	7.21333690430541
+"TMEM70"	8.69365849123308	8.87663438689585	8.86870980896841	9.04376234188919	9.56670506456521	8.52821445518126	7.9193746175573	9.21140009680499	9.46081497690628	9.57368905956084	8.55428145267025	9.33318235868338	8.91674640754283	8.32923647748747	9.30335984034606	8.79624927519494	9.30297075429002	9.26381553843938	9.06918289985602	9.52606773003963	9.49452998239248
+"TMEM71"	4.44562952459806	3.89573445597253	3.58536621559786	3.4814175874508	3.74948742102515	3.69067670877365	3.78268547668934	4.07859318783659	3.95303414592508	3.72421426249425	3.70694857870159	3.73912030380447	3.86576585044214	4.09018194308052	3.64668846175746	3.57579006275111	3.73287815810043	3.58103421878484	3.78012944886912	3.9730035172244	3.55180795021239
+"TMEM72"	5.26101071291473	5.37682447631082	5.20811990263409	5.54625242362341	5.31279130637501	5.42212230049504	5.46317865039909	5.36987198464882	5.59714543449476	5.34240543282274	5.17150799063521	5.43016499882625	5.64863704530252	5.50411970452151	5.18799951260747	5.37682447631082	5.47029741229543	5.20023544030304	5.29815138012422	5.40774166871131	5.25523404596078
+"TMEM72-AS1"	6.14505941677971	6.31455411902001	6.37286259009686	6.32664397363942	6.24025829720116	6.01807169271591	6.32657599653101	6.27517376722874	6.3646178135957	6.26232669933877	6.15652485668148	6.30831747680272	6.27129255641629	6.26232669933877	6.26232669933877	6.40071421682201	6.21028020532373	6.13940393525186	6.23458656788813	6.22323556971771	6.36017278949439
+"TMEM74"	4.40460864890839	4.37512711203909	4.26878531468922	4.50929107856676	4.46840097242003	4.24022918582206	4.19649424862144	4.33168230664087	4.86361138153057	4.56145118375398	5.47960571148812	4.54266668207185	4.44513905779915	4.39834976742823	4.46588636407314	4.64821805276604	4.52873611946606	4.53902780531062	4.80806985741842	4.31534386653313	4.08022174867621
+"TMEM74B"	7.29402749673083	7.74850220227608	8.31915606077693	7.74101942791183	8.09365273143135	7.6879367116422	7.44399907319636	7.7635230541807	8.00604825754241	7.86093138881925	7.4048849624293	7.89138690954764	7.99096936968101	8.05535059594859	7.83757470771526	7.31828133296124	8.1068128658924	7.52771099244633	7.46496441532637	8.04311133001068	7.8068005553852
+"TMEM79"	5.77001484075164	5.90279728309574	6.01416595407341	6.01575059095038	5.93117398469806	6.04399664043729	6.33171136714754	5.81928464030472	6.00728710254094	5.65651393512357	6.01502992727844	5.93091905415482	6.16338232955149	6.22910480615093	6.17007248696622	6.2371430838583	5.46049976254501	6.37194357139844	5.88250317790232	5.9841263243859	5.82770128409262
+"TMEM80"	6.54972154300579	6.80304076598962	6.62309378799134	6.3904869876171	6.45835399296836	6.63092970817801	6.19245842298216	5.94777701325847	6.29665138601506	6.55712720245655	6.9112582027103	6.01766324618057	6.4624790826095	6.12583859304361	6.42559170951241	6.47933191418131	6.29761988036981	6.77788346765389	6.67041301929855	6.58286249364183	6.08292739953653
+"TMEM86A"	6.03451333083008	6.11090940538159	5.8123399896577	5.71350265670153	5.76324578379197	6.33130910714231	6.6105879267926	5.59557551935096	5.76223624798641	6.02301849038015	5.89592973161603	5.7637414832805	6.09872038472331	6.34095512869895	5.89811508455637	5.8102676993143	5.8574750608798	5.62673514023809	5.8574750608798	6.0359851317476	5.8324081357995
+"TMEM87A"	8.90419414491332	8.92275347007235	9.00979646647631	8.89645224803708	8.68391094379701	9.01978766874847	8.48836940752978	8.65136212349411	8.1933447046126	8.45580546769846	9.49995123650445	8.43204480250986	8.49234426018448	8.42597187617373	8.49349661086968	9.91598928448011	8.43067724104069	9.69344133266948	8.88008182573948	8.48218403125824	8.3290704998321
+"TMEM87B"	6.69265183076778	6.0610503183403	6.34078085850393	5.8698342989855	6.3850449786764	5.77669868546646	5.50917395804316	6.53523717790428	6.15408404566283	6.2778938994509	6.23619815152167	6.14117216891384	5.96008998113876	6.03701107825015	6.0080917440009	6.15277114060092	6.25526390373098	6.45718866223775	6.14117216891384	5.81084289979819	6.57465713469154
+"TMEM88B"	7.94364199582331	8.59975909659108	7.65213021926863	8.37029890912459	7.17079046062734	7.78015022964391	7.07099111731928	7.13758151685503	5.84351288035491	6.80284059919508	9.52744600369543	7.68571486068538	6.09141960221032	7.68454106860051	7.46209090331454	9.9300775313287	7.68454106860051	9.11568233294958	7.82378166645476	6.10519265365721	8.22724425090206
+"TMEM8B"	7.27520289770723	7.1823526637131	7.58800187551933	6.83958080439561	7.06937752364021	6.25723190062419	6.85446293401195	6.72884012119784	6.59183577687562	6.84496929924392	6.98143324359892	6.5605939633682	6.64997878728532	7.1772585993724	6.14312711891243	6.83081173596608	6.91737512694809	6.6407605955057	6.73980775665658	7.05895986834075	6.41571630227198
+"TMEM9"	8.99180505747315	8.8357538886282	8.83925037669692	8.51656350117338	8.99695261189014	8.33287668745548	8.75288425783861	8.8419089571022	8.8419089571022	9.3094801719169	8.86385854278381	9.12834169742062	8.39490272813165	8.40637721538363	8.45025370901704	9.04258566642233	8.76204636267565	8.87173538972943	8.9364575102745	9.17579989518207	9.01682532254219
+"TMEM91"	7.26293702784848	6.82308574719112	7.44523419936677	7.15816201215405	6.98333483069079	7.32435686323407	7.85442393430256	6.97298166974515	7.27525504290631	7.16369527334838	7.23889073114266	7.25238540888235	7.27689717652882	7.5081072132875	7.12155112055709	6.75367312899476	7.05224635229932	6.94029526945975	7.1749291137453	7.12303532828791	7.15173726579655
+"TMEM92"	4.54751080496412	4.44590683112894	4.57854756751262	4.88072300767135	4.7929374835184	4.6730029659719	5.21046668921416	4.81254946121856	4.72996175993767	4.76017111968277	4.41456733065823	4.71790577578273	4.75299319938694	4.57763933424769	4.69705227659831	4.90122496205643	4.57155140236706	4.05052399282884	4.65344775816703	4.40860766822786	4.73849346350281
+"TMEM97"	7.14919825618054	7.46757858819053	7.77171251374969	6.98387768123895	7.72332821034581	6.92007119124133	6.6520306845838	7.11952389381831	6.87710629315657	8.09404712420036	7.29064747923861	7.79745907475322	7.04029151883567	6.52875660328869	7.67616813724772	7.47283036433159	7.04201966719221	7.8840309833104	7.40513135568054	8.26623933765596	7.4537398006971
+"TMEM98"	9.94648550395915	9.93430847561411	8.66743571483966	9.00733713012764	9.37370650567777	10.2917260489748	8.94284812108682	9.42962439529504	7.97477072902758	8.90578169034476	10.4447094058596	8.95213501523113	8.55773122552134	8.99186864802196	9.31217667947215	11.5972766141541	9.22020632270497	10.9259129636085	9.34098373750622	8.74607955618439	8.53004103654536
+"TMEM9B"	8.97101362606277	8.94692587724952	8.28135096972959	8.28465733610864	8.72660910637462	7.676847557179	8.40759850504605	8.8078737875985	8.34534312747004	8.84207019547389	9.06918057167175	8.72972244547882	7.81827966831771	7.67902657335168	7.74340124760459	9.26026424970472	8.27918719791164	9.10646177410104	8.5764663910733	8.93007829548742	8.49440033433233
+"TMF1"	3.77927916623099	4.08950244132383	4.30369846824799	4.21225177117133	4.5015895563488	4.80964816388603	3.80045437123965	4.58440988386296	3.81963308759375	3.64221445082043	3.77216330589925	4.11712705914615	4.30557384290115	3.95190820173259	4.08950244132383	3.77216330589925	4.17973803884464	3.96074554254478	4.20746099893185	3.86941426210252	3.61119164143998
+"TMIE"	7.06471895671269	5.4360112856222	5.94570517050411	5.84148146121396	5.53839301885644	5.2926163478013	4.92513686295276	6.05913095048782	5.06588310982765	5.51853912679612	6.09380383584763	5.31117601863224	5.56148054570661	5.43984066014456	5.43153145627199	5.34061176407668	5.24141583028864	5.12781372860846	5.51853912679612	5.96341259949351	5.15154446337874
+"TMIGD2"	8.20340540660972	8.40009231346684	8.27987610690517	8.54664249794434	7.99874244637653	8.2034887447415	8.68985298675792	8.44797805455415	8.60538778580026	8.34696308202594	8.60680563142954	8.38527879466414	8.76058654974538	8.55381921104279	8.39397843711332	8.09429852487188	8.49026029316458	7.91190218059748	8.60516124166997	8.33881668627956	8.50179961317405
+"TMIGD3"	7.26721996107329	6.28374092936371	5.9868510891444	7.2080065397484	7.04204220430131	7.37048234779497	7.32439306018622	6.46964488619953	7.35784024141897	6.9343480054284	6.73595671574384	5.95907410891505	7.49170270485039	7.57648265755756	7.60797748131215	7.20478077696384	6.78707333389385	8.15136804481017	7.19223571362352	7.3829341742671	7.88283665250964
+"TMOD1"	7.99302789959834	8.38856517449448	8.57148031644513	8.359418920608	8.8949276366647	7.80255814398763	7.56559465457268	8.45999216600944	8.75628852970686	8.99854052511952	7.87195458001297	9.01586387962349	8.44419552339245	7.72046179232046	8.18817071839569	8.16954454858645	8.70052261417252	8.633046906953	8.75468675244957	9.47622818169404	8.45999216600944
+"TMOD2"	5.97050790945136	6.38763401874124	5.6354143656423	5.6392644869003	6.17745754361468	5.69050004291591	6.1724538769597	6.59573163596945	5.9958531165037	6.30083510239655	5.44987479964712	5.8394109690784	5.93541164691514	5.68870881332624	5.92238952026631	5.98092978457153	6.16237961893294	6.26733031372004	5.94570517050411	5.77580075208923	6.19488012782616
+"TMOD3"	6.01761258070123	5.09651911665114	3.85199630608935	5.11261557854672	4.81264835410522	4.50905802691254	5.09500082494589	5.40274890773047	5.06570496485253	5.14729963935056	5.66180885447329	4.81245902487653	5.10910979137206	5.10677800771456	4.91519576815742	4.67747526516641	5.31194219941026	4.99169548668545	5.23085915218049	5.09484864063938	4.93497416609422
+"TMOD4"	4.29507974825726	4.36543195274556	4.29824718455888	4.20503987930845	4.2986935662422	4.38195702000894	4.53788132934165	4.34227119376949	4.41385566839099	4.24706220698642	4.16547427429933	4.28227903934797	4.56674701277631	4.63180778220079	4.63385932373059	4.26915125604929	4.328657069719	4.47216254851557	4.34143708820893	4.45127789550952	4.29971234429761
+"TMPO"	5.50054357135967	5.10747945322332	5.1285621036151	5.71670654858949	5.94316678815871	5.44325283370635	5.04181621172445	5.44018659977491	5.51670605395639	5.69279310823745	5.74695332082756	5.59898154144403	5.37935530237875	5.05783224853386	5.505060390658	5.48015244636248	5.55164005273765	6.62840394371232	5.70115205723699	5.77749953810185	5.57293356702331
+"TMPO-AS1"	4.00260469263107	3.94455582282733	3.75714810291262	3.89737205187899	3.59221599579651	4.27908930014031	4.22458867875127	3.65420422339337	3.83695692998	3.97468297141488	3.9076722466312	3.87087374411467	3.95085357329504	4.06281146622732	3.52394781251261	3.9846279858921	3.65194410082553	3.87189092876126	3.87189092876126	3.86073226012022	3.63655539194387
+"TMPRSS11B"	3.47200629758198	3.42070376931338	3.17594720027208	3.31884718131135	3.17008276241272	3.35938357038549	3.48912728833427	3.34215571292522	3.27420848537286	3.30133035509163	3.17995310407052	3.13156678497383	3.13083641132416	3.27178155679155	3.42897527217813	3.27420848537286	3.27754399977805	3.41461287522102	3.16101548390795	3.17355394919997	3.14546195475318
+"TMPRSS11D"	5.65760797270869	5.79705968640272	5.86886794574689	5.89362698153177	5.75331068427105	6.00716072835099	5.71492356642802	5.82287033003888	5.88092815870652	5.78833668366796	5.52609454586365	5.85428442711127	5.70428188776599	5.87122951513199	5.82287033003888	5.94571656866159	5.79764970343217	5.8016524625949	5.79175499775851	5.72074501341844	5.8936652357221
+"TMPRSS12"	3.33017574069097	3.25068730176274	3.09877876376137	3.42882627461371	3.1388381577542	3.27605695764013	3.3010374539068	3.43422445479009	3.34223694681703	3.34077809406234	3.26145417019311	3.26688740184302	3.3010374539068	3.49014677358782	3.37478969422951	3.47585474308034	3.27219391008799	3.13039884969298	3.28172318822908	3.30956083095372	3.16171367442374
+"TMPRSS13"	6.90756513105051	6.88846605476841	6.97787748192266	7.30838651823081	6.78317223927851	7.37953759876488	7.73067311292495	7.05431537897466	7.20641191849057	7.14156146319423	6.93967719286857	7.04477421386252	7.39819030693614	7.54384645096232	7.16742260087964	6.78336503098211	7.12956844736485	6.52796696721778	7.41342852752486	7.05879109702023	7.05056977779068
+"TMPRSS15"	6.41120075356336	6.92223728995056	6.6528473374998	6.89431451881217	6.67750064309209	6.95455874006275	7.06254392576133	6.7379063963321	7.00114192010537	6.90403277435965	6.68917100026434	6.87775288593978	7.09095754196756	6.91419588595465	6.91569265000782	6.78476287835361	6.86337711503178	6.36743570470418	6.95266041392527	6.87626207590362	7.01192324036534
+"TMPRSS3"	5.9091632173355	4.46215933716299	3.98552452600727	4.56962727782686	4.4133430674389	3.94965309839257	5.12101528636483	5.46196364063581	4.48000234540562	4.57016625865221	4.37030048732985	5.06754877829917	4.03452254432755	4.29938893389525	4.11574766313431	3.98160486073742	4.6058805488052	3.99465291810628	3.88509171534632	4.78884217316203	4.51033196923212
+"TMPRSS4"	5.07690485076469	5.2894257943771	5.25889285257411	5.55890411844152	5.23083308609912	5.5927584505949	5.179476971225	5.27904039212269	5.23448260628192	5.36367636699589	5.08961543800521	5.30145881595147	5.63888200544065	5.44494403953038	5.33358936572871	5.52460492024104	5.52517283529843	5.08411907857354	5.14223758743732	5.13635835135713	5.33358936572871
+"TMPRSS5"	7.49064365336963	6.554081515686	6.78100623465521	6.50170832736844	6.32565372306249	7.69492467658489	6.8265351019331	6.49774759621113	6.8279723410852	6.60357234785037	7.01753595161156	6.76110696949226	6.5764419027422	7.6062446384988	7.05716501811192	7.07974707277948	7.47912390221584	7.47345966434639	6.59187759805384	6.64686877662567	6.7004192193634
+"TMPRSS6"	5.16597351498656	5.18555566682161	5.42210685631753	5.72515574590665	5.68519644295041	5.39916399659322	5.90202801324807	5.36584611351892	5.61163775346747	5.35708267357167	5.16383338654248	5.51776725629593	5.39271654163113	5.60911123008664	5.57182950065868	5.22876944948332	5.41775893929259	5.28735691956125	5.45045633988825	5.44027556253989	5.49489827850558
+"TMSB10"	12.5638162581542	12.0261265932948	12.6862834430198	12.1586169751781	12.5568667112265	12.6863840091097	12.0020237814007	12.3384482892891	12.3414544668886	12.580039710812	11.6187378829891	12.4621514988554	12.09446887865	12.1463808688024	12.2556104377974	11.8054221862709	12.3097138910392	12.1684721918152	12.256865854933	12.8227422493337	12.4931482623507
+"TMSB15A"	4.14793164604737	4.20841126372234	4.17966438912618	4.08385848461383	4.17962482397276	4.40924422421076	4.02724391324706	4.07701208153091	4.21971147402758	4.25220363223773	4.20154718318819	4.26086036055498	4.56866860275485	4.57512919121534	4.30656352702288	4.33865833638583	4.30359013181553	4.05224330641865	4.18423538776208	4.09986903396661	3.95692006255044
+"TMSB15B-AS1"	3.87064249996299	4.19567350222333	4.48025547022219	4.15333575022088	4.21912522140587	4.36286712179509	3.82903037990618	4.25278378554763	4.35543529772263	4.10475552358825	3.74844518552796	4.21762342591483	4.15839183450372	4.08129729311795	4.15839183450372	4.27625917975307	4.1313087349784	4.12111016678412	4.20959330107539	4.33844436933875	4.06250019574884
+"TMTC1"	8.26130585401491	7.15372818718965	7.94276474764799	8.41249119444736	8.4127351167353	7.71719899647979	7.60959118705515	8.28980750241092	8.7464437641819	8.23058675460603	7.74287662354782	7.95419091725474	7.78243636317347	7.48129567861778	8.78706686974298	7.39093705583333	8.62427415164573	7.83300318866318	8.4994906626353	8.25448917237989	8.50568430951351
+"TMTC2"	8.162017740372	8.95031153830692	8.24672410635951	8.37547979676754	8.11700471247271	8.63578699944419	8.12678224566271	8.11334654933345	7.38030670876195	7.64198917610277	9.72970501705701	7.91922252985748	7.62038558684855	8.02612012090426	7.46252531269468	9.84662332756545	7.89041147331878	9.81577176400594	7.91946734067482	7.62974810166255	7.76190844108125
+"TMTC3"	8.30825206108651	8.52000175211157	8.84655427236099	8.89872783326163	8.59230191064715	8.48793792127951	8.34887110641622	8.5231923419456	9.01371375029285	8.49365580228526	8.39091941863313	8.16559726335803	9.11400608348749	8.59890396850342	9.39889654813451	8.35407474373067	8.57590838640738	8.83432228011006	8.59230191064715	8.746614438797	8.60649221907999
+"TMTC4"	6.03671332606875	7.50562217751229	6.10436898983415	6.86539896527181	7.42416606417458	7.92679250441959	6.09707416269504	6.92403677627436	5.89874905382977	6.69213332958439	8.34186496739833	7.44132451459282	6.06189826067529	6.09127382450583	6.49441669112488	9.06138256826704	6.73844460777406	9.34207805577162	6.3617861690178	6.45344194148759	6.25652067893622
+"TMUB1"	8.31179586991524	8.00267619030963	8.15571510540487	8.0430191317898	7.73309601853529	8.57294892156323	8.69421448511641	7.98752552587746	8.03564186425032	8.00952985470321	7.98058257398728	8.13904696180559	8.13917898615495	8.31848027887077	8.10330314769974	7.98888770727966	7.93068710040077	7.98191934640193	7.99465742001226	8.14856149575061	8.07379178943939
+"TMUB2"	7.33948035271429	7.28897674141157	7.69256639056317	7.05683967025547	7.27837171637342	7.57486551897959	7.32926391322446	7.21275851227008	7.06131471952582	7.20828274119585	7.24823647834162	7.14787283952984	7.20765332122838	7.31446458599189	7.08443050442235	7.24793714050755	7.12332948837739	7.21275851227008	6.90957238331238	7.19879741686453	7.20875575310735
+"TMX1"	8.11624439544728	7.79070237089257	6.02149277173152	7.51605722387461	7.24436539579128	6.48581740475645	7.47991640847564	7.55484185704851	7.41636396687804	7.66387270401787	8.0606970012037	7.14635234243315	7.33767523070094	6.76840030028227	7.07759666888501	7.87724183170887	7.23618664625759	8.27441150837449	7.73808216532539	7.2748180273807	7.36078984015748
+"TMX2"	10.3015317204044	10.2494029248432	10.2879117843929	9.99617945502255	10.2388786725098	9.98571513121335	9.96596025459828	10.0673600267284	9.93702085843145	10.4305489453646	10.3151284246998	10.2687486467629	9.68133695872479	9.68747244338246	9.79950384054223	10.8142111301001	9.86337138173381	10.5466728817717	10.1183888407191	10.3531943092276	10.3638921434721
+"TMX3"	7.98047840076775	8.39025922345203	8.69296162724901	8.31312672044767	8.7421512404452	8.11510831219065	7.34856324110587	8.23322283103845	8.62905907992558	8.67261533894819	8.40355458464857	8.20781522484426	8.57546323223644	7.82183809401701	8.69907226517269	7.88782348968405	8.6580759390585	8.46529982986166	8.50004085253429	8.62310341953898	8.77103796823021
+"TMX4"	8.53763641687715	9.11977535821569	9.27576164047782	8.67574031503523	9.74890100474256	7.99243029627673	8.0297221517847	8.88508428549525	9.54727358541935	9.88485318025126	8.83396356738447	9.55921629222596	8.96890630091234	8.22173175049494	9.42315747466825	9.11977535821569	9.77732830166488	9.03921543096727	9.11977535821569	9.9857213157069	9.62558963552721
+"TMX4-AS1"	4.50103843637025	4.89916094774921	4.83942616248305	4.76773540631376	4.94888002210447	4.71362247237558	4.43388089173696	4.70306359739589	4.82851180639529	4.58510922311208	4.53737174397982	4.76764009535909	4.64841549530831	4.792041545333	4.72083029964895	4.58913924171313	4.9488718613844	4.70074536338803	4.76706660443257	4.76773540631376	4.80626759506742
+"TNC"	5.24233529255348	5.58176119569067	5.22313335739181	4.8401317029865	5.36769874307865	5.12575224184902	4.7228830427869	4.9068442528955	4.68969144205726	4.4888391161137	8.35767344002378	4.7714656959306	4.59462323477728	4.58166029397811	4.71776946447268	7.37126463556594	4.70779426826067	6.77687621730192	4.83405729584195	4.83851391392687	5.00750034975612
+"TNFAIP1"	9.37639710712844	8.79034237979069	8.86323678372558	8.63392781512733	8.88242529432847	8.84744941771224	8.55986049408794	8.88343540013274	8.71880348785195	8.89626054272082	8.62868480977582	8.78979208201028	8.7040998021288	8.94742810713134	8.77695135903249	8.82319644912381	8.82880862086019	8.85699170595634	8.60647204531526	9.11373214876925	8.72455977613228
+"TNFAIP2"	7.3355915714525	7.53222047605125	7.15319175363745	6.89431451881217	7.08235074768419	6.87376332548409	7.31100837928424	7.25586170914239	7.2385201691835	7.13794379829908	7.62488992008923	6.94749992896124	6.59583898714963	7.30213443250122	6.72716545531608	7.29598903867181	7.22704443361305	6.82571806762229	7.15730841628496	7.29729993282395	7.46023791263564
+"TNFAIP3"	6.85773575792801	5.7637414832805	5.05710442133279	5.4833885148593	5.67551984739961	6.30017109773803	5.97473328894334	6.049476060105	5.5460175641164	5.61201571982174	5.51264523245923	5.53323662445692	5.40903653442596	6.06044105674418	5.48746771082877	5.45521618894994	6.11306612660928	5.22722099681145	5.6070472614478	6.35039353323952	6.05019069179085
+"TNFAIP6"	4.86111716189013	4.3838647807405	5.71281358824345	4.72690960539485	4.83851391392687	6.85437983715415	4.40694986093739	5.26590355278674	4.63198665180936	4.53178651738445	5.41593936810336	4.7751250561702	6.28258615144788	5.32533211165912	5.23045797676844	4.95978133354554	4.82240818963111	5.85212159220005	4.6342478328888	4.47691148943622	4.88785191526274
+"TNFAIP8"	6.21437286871437	4.9541061972008	4.36925313452123	4.62406993073453	4.78940107313117	4.73565723736502	5.30455120170255	5.3528279662082	5.00210808881649	4.82378496651802	4.83851391392687	4.73661197540313	4.9541061972008	4.88777994906477	5.591345391962	4.51364013368605	5.21294959595792	4.57958882596064	5.17991812843589	5.53720391281881	5.24485365283179
+"TNFAIP8L1"	7.79055156115436	7.78779032388245	8.35277502912005	7.84833966639911	8.05276259562828	8.31396277251491	7.42392253348013	7.76664830227274	7.92360269570282	8.1178358930052	7.22245151013071	7.77176978626461	7.95531314258443	8.13642625024147	7.80982047417327	7.09908953492887	7.97062410802024	7.88123857324247	7.56477233425807	8.17134656036003	7.90883373129943
+"TNFAIP8L2"	6.6324691032483	5.94950642736245	5.64281212700385	5.82982557194079	5.76282064440326	5.38773321153401	6.07423727540415	5.6034143530218	5.51307830726445	5.65859722592425	5.50963318038434	5.65064739520726	6.09969567800568	5.92474136223609	5.76282064440326	5.65743947604871	5.53608769391737	5.49485083236997	5.766442297729	6.09233855840038	6.02389702994808
+"TNFRSF10A"	6.23065651199704	5.79553902740296	4.9177301492151	6.14231462357713	5.80474482599765	6.04976437735787	6.00987462359868	6.07854110773496	5.93881305089795	5.49072474716321	5.46709867973515	5.72488199303994	5.90958699652614	6.16545122622629	5.82629598841003	5.6557547252683	5.7637414832805	5.59538594250611	5.56876082013031	5.7637414832805	5.63604771911918
+"TNFRSF10A-DT"	5.14499874206658	5.42495560511835	5.34291813180749	5.49805163645197	5.35907976724883	5.34092662796203	5.54991477859861	5.34972815516165	5.62755935847884	5.48219463670965	5.46281443372514	5.55291638560784	5.67339109786221	5.36076000201452	5.40121864531845	5.46959694251542	5.58402830993384	5.46959694251542	5.46959694251542	5.53288494501578	5.6545712205523
+"TNFRSF10B"	7.6245247385805	6.4784212580403	6.10271985819724	6.66576122473134	6.19591610408701	7.11640387047118	7.37654282845773	7.70238983710298	6.59931852687179	6.15214996292444	6.70995511058871	6.82437265299414	6.68658620267005	7.35144846089787	7.10425393940838	6.85281775913258	6.87260385580735	6.63583747855983	6.96562588828479	6.70794218640941	7.22887751667864
+"TNFRSF10C"	5.34160091033498	4.61099825038364	4.93653871037904	4.94936370266715	4.52112080090582	5.36441310381931	4.82614822850747	4.99559230661956	4.53207234293258	4.85079462616242	4.64100061373361	4.76548925759198	5.13543866255267	5.07224414375131	4.67469582973987	4.45336474029221	4.85996816550386	4.35376816797879	4.47328128361226	4.96659715383065	4.95252800302198
+"TNFRSF10D"	6.56201391818476	4.80793477563014	5.12906069912838	6.02303778899041	4.91340809631192	7.03775070942098	6.57625336479878	6.37662174242369	5.78452766519454	5.36558654037075	5.05402968236079	5.5890179263151	6.22825784173237	6.36178438413903	6.20295305343625	5.04754992480164	5.85939552064372	5.11422771224069	5.31232924856748	5.70540569203314	5.65891584989084
+"TNFRSF11A"	4.24072678306853	4.48028453006824	4.96090240356728	4.47002648905871	5.14510208336765	3.64363681768857	3.57684867851781	4.06191690990163	4.52802366506982	4.41604378013086	4.09276101712603	4.15205916689185	4.10377298422428	3.87229406518746	3.98005906919671	4.06228300468386	3.98755041606924	4.60611640835275	4.29902452129336	4.80120909130218	4.81390538402993
+"TNFRSF11B"	6.54606065935345	5.0271248557798	4.86986392122983	5.59946610528836	5.05080829798485	4.62020206155132	5.03440699198494	7.11725675057911	5.14228864658414	6.79691459458343	5.56548793948029	5.5312560077146	5.06825778054046	5.20292166398187	5.40641331959685	4.95703595928753	5.23384216901224	4.55532180265289	6.24397000692583	7.90795757470118	5.39155494471734
+"TNFRSF12A"	7.9741032983529	7.5265901904649	7.37336782063052	7.45870774244705	7.30892494021286	8.54106889139928	8.57952950418374	8.13594343796616	7.88712199220259	7.7814087927259	7.49603879848609	7.78345764620161	7.95315629715485	8.17445882230773	7.75582459109105	7.39032393475074	7.64158355900055	7.50100458113949	7.6486880043808	7.72516290523433	8.06128975532114
+"TNFRSF13B"	6.36197322938905	6.58935827515717	6.62519127280098	6.65545431894843	6.53851495905203	7.00885140123182	6.90435094342298	6.59095434262724	6.81187591954505	6.71191828202241	6.46357129637952	6.57211625616677	6.85377402851899	7.05063918052411	6.70375834958358	6.53680050998386	6.64711076909335	6.33838019566385	7.01086271637895	6.39997999330778	6.7694624328316
+"TNFRSF13C"	6.03568226989693	6.23316202880608	5.90033502322157	6.34370677975942	5.84451663775697	6.13240525228278	6.4501344114403	5.98060338372196	6.32158497624934	6.33694428256463	6.14440085609841	6.43056442274699	6.36838115517867	6.12795893267927	6.31508126389583	6.41514035859638	6.41755486876755	6.09878632004099	6.18111900635507	6.0662299972889	6.3476427282146
+"TNFRSF17"	3.65856117004805	3.67093302234567	3.73049670126059	3.76700070507296	3.70001714303452	4.07792606942969	3.83728361099221	3.55411923877379	3.58657035912302	3.70001714303452	3.39852618737765	3.55416780455683	3.45543993057874	3.69099711295032	3.72682742266048	3.69834232215837	3.50119328391544	3.64412061090917	3.746677934698	3.50397468579685	3.42796202272336
+"TNFRSF18"	4.77413915813178	4.80417177927405	5.01467530303184	4.97249745629164	4.99062790069074	5.14811409795875	5.09240058426822	5.12409529382475	5.09122390903668	5.10534616866883	5.01467530303184	5.0608778203699	5.31165944993019	5.22905138289642	5.26264964965159	4.74329339553909	4.99111723678465	4.69437377823058	4.77091897077031	4.80560886740647	5.04229368928306
+"TNFRSF19"	4.21324372720324	4.25189720859776	4.29290632427417	3.80626398822541	4.09816290579725	4.47212392979921	3.79169811484488	4.1112004030439	4.43819953344917	3.92625247103274	4.1112004030439	3.94129939087978	4.26339635559772	4.10940908495477	4.14985759390471	3.81269374840752	3.8469214651412	4.05472407928449	3.99517706699746	4.20479628536753	4.17413156917369
+"TNFRSF1A"	9.29212235599032	7.76469967044761	7.67818207698051	8.08716473241083	7.65474082734421	8.42394761488872	8.68201703587332	8.88344532656907	8.05450711197765	8.10681382224437	8.38896355345156	8.2519494894976	8.20366925240836	8.33829177466594	8.110772563948	7.57886640353676	7.91081614269886	7.69626288572213	8.16076376130049	8.45517719921358	8.52395924818275
+"TNFRSF1B"	8.49218602671146	7.17179881498183	6.82445625083239	7.05862315588117	6.85852016048749	8.25294219892437	7.19598891191905	8.41825119077914	6.95344827391181	7.11145080096375	7.08885104500589	7.49495211114579	7.15091906155847	7.69455027408075	7.16922613044864	6.88422827767628	8.0103700893115	6.99864310163899	7.78765269415324	7.49081610417223	7.44173235008358
+"TNFRSF21"	6.04025309521107	7.05623194740855	6.75894219815645	6.9577568984279	7.68687680758034	6.83544123164069	5.94748891223172	6.82551101998918	7.27114773544148	7.88275684570251	7.14496332710353	7.48079152586404	6.81375774140121	6.28039031574828	6.55103670027296	8.37417546363373	7.81277770589948	7.82607085431062	6.56835153317795	7.66774632832548	8.11704807333897
+"TNFRSF25"	7.65631789661516	7.56576947979704	8.32255723259897	8.31971793282714	7.41347820996767	7.89085540216533	7.5288794021549	7.81904552949161	8.09162323168409	7.20355015310173	7.06515000683442	7.14404770588526	8.36551600433261	7.78911892697852	8.23581294945553	5.92311327181488	7.75496605484209	7.48392874550488	7.72202753312701	7.32618146254686	6.97348829061967
+"TNFRSF4"	5.40673789049228	5.26278149729998	5.30033138960903	5.50076182085259	5.23588798417465	5.39256889886875	5.61775617541692	5.37058336951461	5.54533925096112	5.45683206873142	5.19191488045492	5.52922593453702	5.74660223876908	5.53063169582716	5.48552992873359	5.22720664385735	5.25574282668616	5.08506379106285	5.41767684466039	5.29646883166884	5.48552992873359
+"TNFRSF8"	5.55712293562162	5.20011981115257	5.31243743284432	5.16667554478691	5.33358936572871	5.30748461788007	5.88662690435064	5.52458118025902	5.58998915888436	5.57530622600149	5.3507299556639	5.58719847942958	5.71262151714336	5.73452806441586	5.64508586291976	5.5416937103325	5.46049976254501	5.43703376997539	5.84714029618241	5.66129578558125	5.66456828084062
+"TNFRSF9"	4.93393263134178	4.90891536730434	5.23567702018931	5.23073033018264	5.3624816484931	5.51428943642958	5.54339691333908	5.01921398462774	5.3456591359155	5.27979263210615	5.08961543800521	5.10113669474567	5.30606167027228	5.72675968748409	5.42863237787724	5.20564275001894	5.21356584763359	5.04913224793254	5.17602201472781	5.35140123942207	5.29128757847394
+"TNFSF10"	7.85671730564401	7.54880856491384	6.89538923075728	5.96353651607348	6.27225131441596	6.0518521824262	6.52917369494679	7.39597147667297	5.22023743373132	6.47759836426299	7.44169120281331	4.24519578921456	6.78107518078987	6.65148123200678	6.60051752243083	6.91974104408562	5.43724679239136	6.25808304669758	6.3886577789094	6.90692413104365	5.57091645074689
+"TNFSF11"	3.75956622889746	4.01427305640163	4.10246670667322	4.01805783391373	4.25419394394945	4.26101061800571	4.34503482630037	4.18251177019711	4.15012339217757	3.84874399203433	3.65425495767341	4.07620013150267	3.97976639690784	4.31567887176059	4.11569510764846	4.0739503694837	3.90360798980208	3.61234373421811	3.94518468994474	4.25585651406885	4.01805783391373
+"TNFSF13B"	7.60751992327292	7.12950860924602	6.89119319136536	6.30272735969475	7.14342624919127	6.650232486153	6.26399041645933	8.18094528280691	6.95845579083418	6.55468281999552	6.54373598325668	6.88168218290455	6.96620332621536	6.55067289539437	7.55759961559155	6.91549249260301	7.04029151883566	7.26699634846811	6.94692888680097	7.10512207615677	7.46364008360606
+"TNFSF14"	5.40273641273937	5.46626851205326	5.52818788821178	5.63302872696356	5.1910206817956	5.8203544187607	5.97145459247684	5.37559113204516	5.41764343906175	5.79093462098187	5.49632777301201	5.50857754592977	5.65724316811554	5.64365696437015	5.50857754592977	5.22494575724775	5.71073575206301	4.91038099974275	5.70491146600838	5.37176430761441	5.52340186325978
+"TNFSF15"	4.72605830901626	5.09117633322635	4.75343105455072	4.88548364385296	4.77747617051998	5.17962233865547	5.14285580026254	5.04240251990474	5.10747176105467	4.8709464514605	4.8163086790893	4.44759584713336	5.21135773892219	5.48249769513057	5.21747913538101	4.56671044099517	4.98060544417278	4.72107533312985	4.74345561019762	4.98994475841059	5.14505283414637
+"TNFSF18"	4.55980546394088	4.98200908134609	4.98200908134609	4.96303536946041	5.13034263251562	4.82833850774804	5.25433200564844	5.12412882071819	4.73772401268697	5.01984587143779	4.85876851855749	4.98200908134609	4.92299570968057	5.15248351349353	5.26572031302993	5.00809430011421	4.99327014631349	4.43917792016207	4.86435953236482	5.12957636734614	5.0899373338338
+"TNFSF4"	5.68425803008783	5.36278535429486	5.1823177256366	5.14510208336765	5.13034599962092	5.07384547845483	5.26338545690637	5.51122274409698	4.9714173444684	4.61129658681041	5.5299748467761	5.21711477319095	4.97537751140321	5.18977405959064	4.87764891471141	5.43927167241194	5.41374842995747	5.30243839208906	5.30097962000209	5.22354167625955	5.14930905521709
+"TNFSF8"	4.22177775595647	4.08479537668333	3.97019206634787	4.08763843663084	4.14874374790569	4.2128598292905	4.44889312014662	4.32617666776972	4.22177775595647	4.16115015422789	4.12368619966565	4.07792606942969	4.44101922237357	4.54029467217794	4.08713557613581	3.94156138119898	4.15841902483787	4.11061307092602	4.29343125161402	4.48911247043022	4.28410577200509
+"TNFSF9"	5.36831226813537	5.89349546310132	6.01669455221393	5.78950001304342	5.98838998118482	5.86886167368695	5.75800963602659	5.77204319173082	5.79608450905793	6.08896865847492	5.7849138345942	6.02930892686015	5.94158731744068	5.96034209591052	5.58615413575526	5.97140655866649	6.10921290249957	6.24379085172423	6.18404841667203	5.95961447626438	5.93900793816728
+"TNIK"	9.554500558851	9.63493624915299	9.65579732250949	8.80668004298533	9.3461736692802	8.968787520609	8.86227963207484	9.4717426932078	8.67174205121447	9.12309810267745	9.24045943096427	9.37763317758956	8.10734852023101	8.59248619572976	8.1547096918725	8.45710840262169	9.08926118017408	8.911786653204	9.04050219114025	8.88353477094651	8.5926157568113
+"TNIP1"	6.26336201250207	6.3727876733746	6.14749245909639	6.3245222048398	6.78013593183198	6.87243123400596	6.90606805218039	6.2979207142321	6.34632737295534	6.38775093934406	5.85800582108539	6.55952988010083	6.34632737295534	6.73904988461354	6.34632737295534	6.3284342257703	6.46962583025709	5.96048092149428	6.29430090802031	6.19787588295145	6.34553187524077
+"TNIP2"	8.21687390618372	7.03652757148622	7.09867860663493	7.5046363999765	6.89785975191876	8.32899937321879	7.86880637361183	7.97122221240969	7.51702705389899	6.97478214282387	7.35283537068857	6.86003177861852	7.73084242517631	7.78255863871452	7.75086675772097	7.05572960209361	7.06637415034135	7.33607592166019	7.25722981877809	7.16459840983312	7.61483259517105
+"TNIP3"	3.35232999120784	3.60991546566368	3.31394912552841	3.32420391140386	3.24090645698774	3.49257434153879	3.43488397745493	3.26499456959597	3.19252788411931	3.08964156846707	3.31394912552841	3.4351441049238	3.18920262355665	3.29015270172338	3.42598080769835	3.26961732291602	3.31394912552841	3.17763175687246	3.30616472105794	3.47071142720213	3.81420549531364
+"TNK2"	7.49878155904076	7.23101932842866	6.61772448605015	7.57783465509348	6.85478949618986	6.28196910451936	7.62071297107509	7.32432851983589	7.53624849049879	7.81771968993444	7.03691448173111	7.74830502243401	7.54029926439533	7.34209406239527	6.80971856397573	7.11214677817529	7.71139104772309	6.85294267180194	7.53194890048391	7.56704606031151	7.85542639317451
+"TNK2-AS1"	4.4338526546948	4.77874058179466	4.73563657601757	4.87178155670733	4.52284055800072	4.76708381081279	4.9288283931948	4.54023066096301	5.06346410539829	4.68396987770369	4.55846330887534	4.43861280041076	4.95791308679748	4.73563657601757	4.89998728795581	4.73563657601757	4.75654324209609	4.44250966999321	4.99181940748616	4.75446704386685	4.71575828974535
+"TNKS1BP1"	7.3923637131112	6.69614516063503	6.97634937545465	6.75818310855822	6.56632847837282	7.36646656904156	7.27744011469062	6.73061017401218	6.6328691587854	6.79009672274216	6.72505012782409	6.7365609022853	6.97430013267508	7.16600380068422	6.58880295289226	6.34562217449251	6.6308328899224	6.49335482948097	6.53676780162888	6.76495226658048	6.81151472925406
+"TNKS2"	7.91300923285763	7.58255764699753	6.5143144476374	7.30287065209713	7.51864059665881	6.65287697340534	7.13820075369934	7.82143338664233	7.43361345509908	7.61785006550877	7.82714802410141	7.66827233927547	6.94225053123889	6.97228408099215	7.04962014253746	7.68836434514644	7.50832253381696	6.59897140495714	7.52347391105567	7.54105177796205	7.38966183184398
+"TNMD"	4.1320733223825	4.01984023460207	4.10246670667321	3.95817003543341	4.04487465818092	4.23178426476012	4.27187285307472	4.11518042169264	4.46629282992259	4.12590318330011	3.93471042771734	4.15604822855018	4.09678642167204	4.10246670667321	3.96779852709763	4.13771095975524	4.14258365491163	4.1265231484159	4.00271212664868	4.15450185793659	3.97154233651253
+"TNN"	5.2363200399331	5.28307860187863	5.18422709926287	5.25933259883504	5.12652174650545	4.96260541310768	5.06926277843962	4.99125099806784	5.20116182291084	5.17531102246592	5.08246861535552	5.30931491937063	5.38728470157763	5.18409676050143	4.99002865418758	5.34866967097039	5.43279108359437	5.05571355682823	5.17531102246592	5.03668744268101	5.15954824693267
+"TNNC1"	4.46135677024525	4.51320004561565	4.57512919121534	4.67550921732839	4.3003398590957	4.87145358463439	4.64657282538647	4.57512919121534	4.50643040684807	4.87145358463439	4.45521526123722	4.49855436719496	4.57512919121534	4.66777533713978	4.54163784026619	4.38660831761512	4.44406319437092	4.57512919121534	4.64480939263355	4.65367796039442	4.4992596159613
+"TNNC2"	5.84128005304748	6.05947873586506	6.44183344327605	5.81559383037049	6.30026551693178	6.47754405715852	6.02170719144796	6.0073911245609	6.12418642110455	6.29934238271902	5.6359834139058	6.17906655951756	6.32606426931238	6.20513934405073	5.74582057419168	5.81667752095767	6.09387566103992	5.92451528094885	6.20576995958825	6.20240944564493	6.24097935814572
+"TNNI1"	4.99169548668545	5.10405116441699	5.50528692233858	5.43720225844762	4.99743488700401	5.55470378360706	5.83287690217932	5.1611850128625	5.30799701196964	5.31934568940282	5.07253788280481	5.30799701196964	5.39842075012141	5.67973121956923	5.26183923189623	5.28057054237282	5.29874414976136	5.0355952388106	5.3917809144738	5.27401778703736	5.35074103216601
+"TNNI3"	4.26361603026716	4.4752576076541	4.42360192960139	4.36942833565584	4.41517494813977	4.08569166176569	4.39536636146146	4.16100240892371	4.41597839613209	4.35467135419461	4.30788765901303	4.25018569460954	4.52577804885525	4.40902360280632	4.35023030584289	4.2990429222764	4.46008265023579	4.08222145439194	4.25329988355653	4.41517494813977	4.32731948827445
+"TNNT1"	8.46384683701582	8.33515178232762	8.27393508839715	8.20980543167261	8.05196560764876	7.24300548667257	8.37670959742105	8.82701784966754	8.05344908003529	7.66278165506894	7.48333400556186	7.84696200198576	7.99746060677882	8.06703000115631	8.15745527021607	7.4840609501029	7.75598328120958	7.63565824824189	7.9007911146955	8.2909978944474	7.42354350933772
+"TNNT2"	5.58467478524679	5.56096455685556	5.32876618117549	5.66128153398499	5.50076182085259	5.30219090806979	5.59537554772584	5.68252365059641	5.77180997276839	5.74572436574252	5.34023469439184	5.92840136471704	5.58567814520056	5.8668976310647	5.87892963929403	5.64100747123656	5.81013119706112	5.44378239205101	5.67957175202488	5.66128153398499	5.72421270011478
+"TNP1"	5.5785060925611	5.36661296089114	5.558408969038	5.33041443837449	5.23668463716478	5.48377819030468	5.65614365028643	5.42683236134584	5.36253585539294	5.45096319985792	5.30355728761661	5.52490473065453	5.45955826444141	5.72762746145924	5.46655826977571	5.24011190659489	5.25101778788958	5.32874083094462	5.47175958287274	5.23175070550011	5.45278634105106
+"TNP2"	4.28199379428801	4.42317390720059	4.21209455282735	4.48862051230955	4.39714652916156	4.56125978548943	4.54781190772891	4.34646942408029	4.26222810123254	4.45503733336714	4.31306157101569	4.5011657985545	4.39893437511516	4.39893437511516	4.28811339558514	4.21145523463627	4.42245900338303	4.28388462249212	4.41664590904302	4.14300066845367	4.46363809696603
+"TNPO1"	10.2752104964017	9.9698034677138	10.2469020494596	10.2722074295234	9.92866935219837	10.7992128022528	10.3771130862347	10.4793782125033	10.4335837358485	9.73027115702222	10.3843535259773	9.96170753760294	10.575084531992	10.5118853785666	10.7684243174702	9.95500719405081	9.98978810328933	9.76306440132077	10.3815803297279	9.71537548170837	9.72573003973658
+"TNPO2"	6.75991739025903	6.89913166316803	6.9500499865679	6.76704167892109	7.3193023746519	6.85910008357985	7.00003456935573	6.93699033670033	7.19243837171558	7.84315948527281	7.13033288819967	7.32761920732556	6.66395191014769	6.75143392150172	6.63485158449819	7.15336474348715	7.23291262097536	6.51253596122961	7.19355896537328	7.23883157950115	7.35383090642572
+"TNPO3"	8.82644902604244	8.73020784028813	9.32290764036833	8.93539357849581	8.98527527477127	9.30280895576472	8.97266621475151	9.0123972587606	8.97308480929379	8.79910879427096	8.60562755880459	8.91182086952589	9.03278416792037	9.10255344984131	9.18388996705455	8.58142487801535	8.94457708668471	8.60549249850042	8.94331362419918	9.032049326023	8.75568004060702
+"TNR"	10.5929448342832	10.5955296100747	10.7920201838429	10.7628015467095	10.5527815942724	10.9720755901168	11.2810212525447	10.894780163459	10.7360775812579	10.1752007194697	10.3088982800234	10.1056642503748	11.0207749450522	11.0833973494521	10.6337056520483	10.2194786214357	10.4915146956437	10.4446802572274	10.2994282062161	10.5417463032894	9.812979067907
+"TNRC18"	6.64188210616937	7.56374229594821	6.92573298154689	7.52114130317475	6.89134800722906	6.78747223205696	7.19086429071165	7.17949103537273	7.59759455519614	7.00649489947399	7.34209823044126	7.29225806978952	7.42951687714061	7.63605952663993	7.00160475865977	7.13172373604049	7.59302284304464	6.72200077854545	7.0946411454697	7.08913000594758	7.06410293610853
+"TNRC6A"	6.51651823421887	7.4439354720456	6.5277038290204	7.02032039977487	7.12221672557978	6.44657580032349	6.14117216891384	6.60204643474137	6.89602113620535	7.56954796528643	7.09793548567835	7.3767568820102	6.75470580296755	5.55318223713298	5.78998342192152	7.37942015721354	7.09639456109137	7.09132252753888	6.54528120006836	6.54739011132657	6.52479269851444
+"TNRC6B"	8.99076432203887	9.0947782096485	9.28171003047072	9.72330146402757	8.97050664284341	9.05806935950592	8.94991401648793	9.22891189586105	9.38761741353611	8.79901860875453	9.3305422554569	8.86059356885625	9.84333798321999	9.29660831544988	9.72474823249038	8.59796472021648	9.13054684960905	9.06539292948415	9.11861811444082	8.29030052888617	8.87403621513235
+"TNRC6B-DT"	3.65537837586124	3.73538599010638	3.7517639986915	3.66972833909344	3.73538599010638	4.02071723644446	3.88804826372605	3.72974486969362	3.86628388819961	3.63702922643393	3.49457473320179	3.7324859822134	3.80251250789886	4.19096073434697	3.93772422221817	3.63731858919651	3.75714810291262	3.5940220400786	3.81989283780867	3.72811680288304	3.68570663991929
+"TNRC6C"	7.2759312378148	7.18088930447487	7.28402384597964	7.19415442521333	7.18789907385964	6.98767192649807	6.93338407661725	6.95712894996133	6.9921521978407	7.25671826831045	7.84865125410171	7.61275875089606	6.7027159475497	6.24443397539332	6.60424680594401	7.6590207992387	7.30637958884694	7.69160497548075	7.07552030763888	7.0440414012322	7.16472903574631
+"TNS1"	10.580312321691	9.59554375379533	9.35137345486558	10.0251693949521	9.57218589492348	10.8031266330761	10.2852326707353	9.84333120016175	9.16961935589874	9.48490225382031	10.3002071750634	9.23229715171673	10.1426526042075	10.8138432685515	9.49033988145755	10.2259033603572	10.0268612006079	10.2269838836084	9.52273362895162	9.80176840090669	9.88439793335178
+"TNS2"	10.005469675099	8.82080681333004	8.59389577352066	8.71331249287289	8.62499639357349	9.56506838057454	9.30861368595008	9.12443053746683	8.66944287427054	8.53733327653652	9.09574999015202	8.65077233329064	8.88696562947732	9.50808983444534	8.33433328198248	8.95777841067006	8.60833097602256	9.06953257503677	8.52526508619244	8.79042753341263	8.67289725633051
+"TNS2-AS1"	7.23313014113655	7.26379041516895	7.21917935265187	7.2380867588541	6.91197008414042	7.471442937699	7.471442937699	7.33777870574393	7.41870522627093	7.36963248816384	7.55837308089559	7.59757054156363	7.55427032898324	7.64912501469947	7.17809224582319	7.27234969522415	7.3852633452682	7.04980595309028	7.61459098730722	7.01333674757732	7.3599462410748
+"TNS3"	11.3884768255429	10.7886625880306	10.7584266200906	10.5376403590018	9.92056888057012	9.96545142854662	10.8746201876853	10.5450826060263	10.6562831965087	9.97718640671767	10.5470936349416	9.45058281213398	10.4444945532248	11.1131880110594	10.5425802079258	9.28727597287055	9.86495210146522	9.69699732188171	10.3656469456551	9.69716650238154	9.7940249520966
+"TNS4"	6.21450149701492	6.14019872511372	6.14104110721875	6.53261367458188	6.02688488881773	6.77645230395536	6.81262592163906	6.29217082443897	6.67545268239757	6.54658012660573	6.22934657271989	6.51471528511314	6.78967204875193	6.56592680682585	6.65202395612018	5.97409310230191	6.40421018266389	6.10258218920295	6.55205854318585	6.35115800372332	6.54588646081211
+"TOB1"	9.62153273718228	8.96037470114246	9.12804258143458	9.4385639537026	8.89097337384873	8.96540827589992	9.30428330903274	9.6561015364149	9.33660467672893	8.8033821138348	9.69816412097995	9.13321101293225	9.35547493955903	9.1195007126301	9.23000852651366	9.52243676452304	9.29067830781166	9.20860615193556	9.44951679769997	8.69177269247243	8.62392193515685
+"TOB1-AS1"	4.71138486886835	4.91856791799509	5.29905891762745	5.32224574056869	5.30258928066015	5.25448454842592	5.34810385551279	4.93535607875171	5.14895805115143	5.03990347472613	4.79390026408876	5.12944566694535	5.52045547553175	5.08761678894997	5.33358936572871	4.78616101112469	5.13449612325385	4.93672499525078	5.30094437569611	5.09491543022224	5.28564032232372
+"TOB2"	8.50411195612227	7.50775822727887	8.48203999875883	8.33387531666862	7.87495586624079	9.52468036010191	8.45420038542349	8.03088594338871	7.62421646938709	7.82212831489495	8.31031887502105	7.92155800609462	8.05892677907651	8.40157815651623	7.94980340596147	8.0157809917199	7.83883177406449	8.24403914903997	8.05892677907651	7.752426916527	7.24879353042879
+"TOE1"	7.46843143587616	7.50011423459239	7.62777217135358	7.37447754760978	7.48732266262794	7.6061311021607	7.60172779763256	7.3651261113759	7.38195016055013	7.4478106810172	7.40270919677667	7.29076099389734	7.50872308081119	7.70492634867768	7.32003866525381	7.59924993000889	7.33301613341553	7.55887936590504	7.40597055239519	7.51847353865461	7.22046879441133
+"TOGARAM1"	8.73689754890641	9.26263865895928	9.19981846413462	9.20338601716121	9.49048200806964	8.58019522796629	7.94860221358693	8.90742038707976	9.28485789185607	9.15689901669125	9.09925436023463	8.97444551758896	8.93562236747422	8.43126513320155	9.39261437595544	9.33127228744764	9.14631744173217	9.59004311997869	9.21526002814518	9.17279994479539	9.19892586077332
+"TOGARAM2"	7.59543818759589	6.96860011833583	7.42509371066073	6.9607398868938	6.80381780594361	7.93407862102904	7.2114982631865	6.94141706743537	8.15564047239048	6.72365107917592	7.52132004688217	6.51061059125432	6.4738301919816	7.32051968142304	6.78163688771582	6.83771331193693	7.55595752932739	6.31783583883112	7.28080459258255	7.73994756291938	6.02579164134893
+"TOM1"	7.55544468027282	7.56500815223181	7.94338791325833	7.56917873683245	7.80386732024256	8.00244308268801	7.51977109209157	7.69506644979891	7.68756467191155	8.00187139600624	7.58570720899073	7.85495930603882	7.79620780715821	7.61880846849467	7.72022780502	7.50760024151887	7.63425043570484	7.61044226476688	7.42758399469684	7.9919613616468	7.7554221674777
+"TOM1L1"	5.77475741631192	6.16338232955149	6.09799784769112	6.23039691907352	5.9633664340937	6.03565312537586	5.92949218740602	6.16338232955149	6.33482819477836	6.40302789462717	5.78608629353418	6.23170934773408	6.52898222049634	5.86053742106144	6.71103037146471	5.75735523965434	6.29245108166004	5.52095447790104	6.52440452384347	6.70579919937004	6.1710304965377
+"TOM1L2"	8.43532690768164	8.54092907925969	8.23649564160911	8.32669766905498	8.49130132749359	8.05610522010639	8.32148891029936	8.3589988089288	8.26925324168408	8.7150841379901	8.62289769898674	8.95878699809309	8.10904908723481	8.06519026263148	7.80664612327354	8.72723272322572	8.65142277796592	8.61159423355012	8.56690003754804	8.71967084133444	8.86708016334198
+"TOMM20"	10.0315289927003	10.9042891556108	11.30531874932	10.6470803800632	11.5771016152003	10.0669137387745	9.48579694136972	10.7225688283014	10.9189741357978	11.3781249847282	10.7278801619084	11.348140084334	10.2804141434655	9.81321377539809	10.6067757895813	10.9526789180939	11.1113733425475	11.0595792969025	10.8333516745768	11.3062965408105	11.2497508110449
+"TOMM22"	7.86453668253656	7.60701970891785	7.51724885974248	7.59897095648119	7.92836771440601	7.08444077842625	7.46856636292791	7.47667389654666	7.75476932244074	8.61349241042457	7.72443544113072	8.1306915663393	7.59673112484689	7.2818889810977	7.52922227669084	8.08350762172866	7.75101312765321	7.85153828076995	7.93970803636872	8.29718221946229	8.34363727702375
+"TOMM34"	8.32966361815941	8.46029014433534	8.78737956064864	8.58304161110599	9.04638850822157	8.37543432066788	7.81335969229558	8.26301840364395	9.22116440865213	9.21996676116867	8.22303410461104	8.95763350118343	8.81716285354838	8.22724425090206	8.95210279400326	8.59415777861454	9.15591790375151	8.63958070199001	8.73911725482485	9.13706110497027	9.3260195458557
+"TOMM40"	8.17569084809618	8.37170314823265	8.46434888910066	8.40529414164417	8.15616368373479	8.61884313096327	8.36006861519517	8.1524365882423	8.29672908718676	8.47301541898099	8.41466076429227	8.54691805356454	8.55410877313956	8.47903504372564	8.41466076429227	8.13396868387171	8.41466076429227	8.27393508839715	8.27203554010401	8.524723097226	8.43626500911785
+"TOMM40L"	7.81205275016035	7.64265664213036	8.60709118329658	7.92972339893934	8.24773054060123	7.62354464727825	7.21494924582709	7.86920279508396	7.84075961748218	8.24229591120592	7.41310839070271	7.94145642327067	7.73438202125098	7.73273448543628	7.95118157683752	7.50191607195813	7.72991805142435	7.93739955523034	7.78836669805146	8.5590282634697	8.21056234749816
+"TOMM70"	7.65296313183275	7.61010322286961	7.0526426691242	7.1975132805903	7.85504821577731	6.73033514685322	6.81260765832837	7.33915224903222	7.11333383987745	8.04814939295891	7.57243079523119	7.97808343926909	6.95447435046732	6.14981334200714	7.12630080474414	8.05249180096222	7.63625640262617	7.77430463435545	7.50500293661653	8.03280320212698	8.32029219085674
+"TONSL"	6.01025610241418	6.00468481278106	6.20866008511568	6.02745947306869	6.04741860535531	5.94834280348838	6.3605098807782	6.01358487993819	6.05911335515184	6.16117796404912	5.66444882646616	6.09671510224502	5.95842913379624	6.00420678995982	6.0629316250292	6.1134868326608	6.08407998090895	5.957914876836	6.202143603654	6.05911335515184	5.8668976310647
+"TOP1"	8.22592732264715	8.20506673245737	8.45323592362578	8.77774736766795	8.5793692532061	8.64325437808068	8.46116285166641	8.65960652188059	8.7385515127737	8.53733461117227	8.53970644319358	8.7137884516018	8.88390489704107	8.94278828427685	8.53640976257175	7.71750023902225	8.19923494717588	8.14103141871057	8.60118346184192	8.55236777215743	8.25270602718991
+"TOP1MT"	6.79548037694832	6.81594917458919	6.9310527073213	6.6762061643555	6.63877188027501	7.36642647673158	7.41991141303164	6.60395744456506	6.92511390727627	7.02072609589901	6.86847341531107	6.66496568842425	7.17192557327474	6.96409125555571	7.21483434532551	6.66120991769005	6.90306234927984	6.77533238895248	6.93154650558564	6.95747886612132	6.94202762924746
+"TOP2A"	3.23610631642179	2.94362549039198	2.87186272194165	2.93910323547474	3.03494250516311	3.48174617491307	2.99280892852246	2.89687865889201	3.13645256648828	3.39996394796128	2.87339028244267	3.02892607699516	3.0579037973092	3.38613004288932	3.32022494417729	2.89316146638166	2.94906970106365	3.05251165105041	3.07971771714713	3.03494250516311	2.91205334004847
+"TOP2B"	9.04205948859533	9.26804689883882	9.31246365305418	8.84080460580776	9.2664232667819	8.37393387190414	8.52643156156425	9.15186533499884	9.03823107049487	8.97875905211578	9.22459072270181	9.05367879657847	8.65426993635155	8.52973077046646	8.83543560963658	9.15507440111577	9.09778256050976	9.44411257812137	8.96177349116348	9.01722313807166	8.96163060778439
+"TOP3B"	5.99441160157853	5.49477410962731	5.33568234520326	5.47353246241485	5.76747587388764	5.89257265061097	5.55245742535899	5.59279580837702	5.76747587388764	5.91935317776374	5.60371127593527	5.65298737682431	5.48674724523295	5.7952092496131	5.47298401119797	5.89066365781748	5.98195862516118	6.42140462372954	5.78454324560644	5.78898236639202	5.81178653486851
+"TOPBP1"	7.78928044723299	7.92102834541583	8.34792107320797	7.81368603905328	8.41447102432459	7.75749860821674	7.57215257464611	7.90741436074776	8.09263281001456	8.00646058472421	7.76770898753066	7.98798753888961	7.63113493234679	7.75626478643234	8.16998623100623	8.31627752406678	8.25377397418255	8.47787936652032	7.77948144650129	8.05502012025671	8.19548493264756
+"TOPORS"	6.74795538253272	6.80632325728306	6.95315099140148	7.15945256512089	6.86688743573217	6.86474748904485	6.7428355924169	7.02058465027157	7.02359082883365	6.44381354367044	7.22245151013071	6.47887254475837	7.13958936961131	6.60412565142603	7.52632372319917	6.93445800740018	6.79823336763811	7.85052623587264	6.97850489861303	6.62736259047128	6.53264911597051
+"TOR1A"	7.34384222600948	7.17807361292493	7.34286981828776	7.02752012725128	7.70659231973199	6.88706047129744	6.51166132831683	7.01870472159077	6.98875327773237	7.61308762247361	7.1712330352494	7.49786129472827	6.88380340168317	6.46888726441953	7.12297332785892	7.49673316804941	7.17831961137153	7.70803131809023	7.12537270203647	7.79616724701649	7.60448537388709
+"TOR1AIP1"	7.19842128817839	6.59192543337004	5.65904127862358	6.34449334772348	6.18895305798528	5.02911786542874	6.42955973830883	6.52977321968927	6.25309758460484	6.89986489942964	6.94698678686384	6.27102640524296	5.92935146540044	6.11885419522503	6.14117216891384	6.84706400083446	6.41048737430987	6.79661836487129	6.49985387737512	6.40889243827097	6.16677293096581
+"TOR1AIP2"	7.46097540445146	7.33218673798395	8.0247762640014	7.15945256512089	7.31338353475673	7.00562988397827	7.018121051917	7.08601155870924	6.99537795040044	7.24150047485564	7.32004211654557	7.07315377194452	7.12145133933876	7.05436693530962	6.74046646571323	7.47683444602815	7.09440721339879	7.45291861549073	6.95465315856586	7.40944284171757	7.15945256512089
+"TOR1B"	8.36513540647022	7.93000093117186	8.18678266431643	8.08053420010768	7.97268530239682	7.97268530239682	7.90751550313232	7.97268530239682	8.14941530128369	8.04163962699074	8.14317217874571	7.77670825786755	7.90927477151773	7.89167622226901	7.86336079841027	7.9404172861534	7.91997354097204	8.02835281811368	7.83338249242885	8.06670073241844	7.83563793051857
+"TOR2A"	6.98442032760267	6.6782880741914	6.88259230009206	6.73970177662743	6.71385385980513	6.58606993417592	6.82400225695694	6.66436105325496	6.81037760231783	6.63868292482687	6.76651188383839	6.61709631509494	6.76752141912944	6.83057267451044	6.79730639898723	6.43427131024103	6.6308328899224	6.73511495515572	6.68458396877338	6.73970177662743	6.76430776869814
+"TOR3A"	8.02308435550297	7.15065708963155	7.3828775761589	6.99647775754888	6.7968722570428	6.75832572425955	7.20940152876511	7.24827687219795	7.08475570820635	7.37873810055287	7.1700345257333	7.11157212449927	6.68658620267005	6.76204152490524	6.98929498185345	7.11157212449927	6.90814260093982	7.2049107204487	6.96276122260283	7.31394927793842	7.14385340584095
+"TOR4A"	5.64995141213113	5.24623430380711	5.24985732445979	5.59140381272771	5.16726058396207	5.60716257514915	5.78251261450902	5.47061025414805	5.57981520145038	5.65787809481119	5.4311004187266	5.28108877672064	5.51459832559669	5.74250948199843	5.24942709502972	5.33492071097497	5.33541600079315	5.33187669767675	5.6038505544098	5.55552170340891	5.75937160904994
+"TOX"	5.90785323024849	6.36512202726771	7.12885527027867	5.9979602813497	6.80988505218093	6.19645440809899	5.85122041477822	5.94888134592232	6.2030763496523	6.39215111625554	6.14397221209283	6.90001005484714	6.09271519229969	5.71072024071509	6.3643480768716	5.83575089061213	6.37688414592551	6.20528723101159	6.37143544700477	6.27827228189526	6.22745312822523
+"TOX-DT"	7.5114799458942	6.87693035395549	7.14061320426609	6.80820560369801	7.28952154671184	6.17856338764201	7.28543476177154	7.18410613023611	7.11133726007454	7.02972489303127	6.69723002704012	6.8963844201285	6.56405840908431	6.83898083849867	7.29598903867181	6.36145821600092	6.8963844201285	6.6600891301219	6.86663174763705	6.97370329757577	6.57532938329033
+"TOX2"	6.42773851435575	7.23456736706165	7.68497256691371	6.71356161695451	7.915568267284	6.74126322036922	6.59777116326763	6.90602984114535	7.07248488463744	7.50869706650442	6.68839999904035	7.2840450362442	7.33854431612342	6.94603710021943	6.73253309867692	6.02502066698582	7.59000898091751	7.1196802748454	6.66659205707649	7.71260810561244	7.40757193614987
+"TOX3"	5.69937232468134	5.79976601284619	7.19619266938512	6.01639239309985	6.3463217436173	4.75391176901744	4.75210234941096	5.67693317195879	5.76033448440646	5.7714366018796	5.83241838818425	5.98335715496203	5.95678306536732	5.55246930516342	6.11551090985799	7.30626818660553	5.73088444474134	6.76308551472845	5.69970862907842	6.59361593165903	5.99441989497944
+"TOX4"	7.89369978844994	7.75810530794753	7.87242556876563	7.56578433186498	8.03128406671492	6.77782766997907	7.42871048680333	7.66284411434514	7.45497719229498	7.90360013398119	7.95699931849038	7.81128395048319	7.25659170143571	7.13394703367247	7.4315602147913	7.89547954636913	7.66867804782225	8.19371420021059	7.46197449570752	8.12060757686132	7.73829446553951
+"TP53"	6.39026772582758	5.68955960594886	5.46412560990203	5.25388425895058	4.97190096762326	5.48440143371489	5.75811348804289	5.85791149979992	4.80197848492504	5.23068388401511	6.07063276339977	5.77964900318267	5.46412560990203	5.97206974439749	4.79732631613151	5.98078674326306	4.70552804381681	5.53188105978697	5.25717464897541	5.88100807240553	5.76346113640308
+"TP53AIP1"	5.30918070843266	5.43317540942939	5.19722417409752	5.55120546743258	5.21338332803479	5.16083568209097	5.80704814905133	5.13769880933279	5.48608669478983	5.40146937751743	5.20369846026525	4.9642237372197	5.40225826694045	5.30647281532897	5.65501837307414	5.14801312968023	5.31477433955515	4.9288283931948	5.13050952245925	5.30918070843266	5.30918070843266
+"TP53BP1"	6.89717129273063	6.53259787819289	5.58998915888436	6.45484107198593	5.96694210087198	5.4949282605965	6.22588446695832	6.63959896476785	6.49423943161767	6.79501672583578	6.94931339138252	6.82245834201553	6.14064910513154	6.48880626321537	6.38750883584766	6.53189327546056	6.67193661726293	5.72538806112135	6.37898191018596	6.71580489193099	6.74311463514217
+"TP53BP2"	10.262294076991	9.33123143948102	9.28231423742941	9.28816458396207	8.90021978161502	7.69882980718289	10.0005156936083	10.3400041550263	9.51082334969131	8.9501646130798	9.47295934548123	9.01375013645281	8.82073857780556	9.12345598561463	9.12598269218419	8.9343122654031	9.12513816084009	8.96286979109054	9.37681065470988	8.83351186074785	8.53270442794367
+"TP53I11"	5.88781966198279	6.00549404556986	6.12059484398192	5.9853584735676	6.17236451227445	6.24787064200063	6.42476980751571	5.74461954653801	5.81158713888991	6.92688428382851	6.00915026307875	6.30582049297077	6.49801141021722	6.09470636228604	5.94801349814027	5.95121583370151	6.09390200001055	5.60060602763099	6.42476980751571	7.32090769514366	6.18748624307397
+"TP53I13"	8.14067288436681	7.48175455648204	7.66310255491526	7.58381787507528	7.40147122498131	8.02266595095597	8.26090613960298	7.78794248692631	7.51979316509235	7.58224748944597	7.85263748546783	7.63974938331872	7.65519112645325	8.16338291723052	7.53038183892997	7.47269217146923	7.50256176850353	7.79690372782816	7.77504541337306	7.64527360906706	7.39814700617842
+"TP53I3"	6.35279688291618	5.89892661034653	5.66527197731348	5.84431095644004	5.41002368970881	5.83437622945388	5.93790816134892	5.57113744707108	5.57888051281972	6.1561456116	5.67593138489352	5.71415126125732	5.90821279617441	6.0088375330385	5.88145104486572	5.81208710428537	5.74376871162813	5.74867398490177	5.92084447923522	6.28520821598335	5.84431095644004
+"TP53INP1"	8.27890564003869	7.66774632832548	7.4914895079926	7.15414441832733	6.87472729392546	7.76642455116816	7.5621232801201	7.93040956075132	6.98596451098958	6.87446082301551	8.03146232223765	7.08846103791639	6.83236469371306	7.87743122445629	7.15070379578815	8.28754271913054	7.21602077117078	7.87019868753661	7.32813355659561	6.96633527068204	6.7351004690335
+"TP53INP2"	10.9732578480695	11.0370358703121	10.8795894122066	10.6362848983853	10.352218458711	11.8168481360358	10.9968050232217	10.4114165829994	9.61568466968421	9.52613680049482	11.4463608833032	9.99643373571206	10.46080119696	11.0218837482503	10.1937208670222	11.9380203309171	10.1003042172772	11.5863288813632	10.3247767740309	9.60680174067613	11.2556797039172
+"TP53RK"	5.82183983675111	5.8068459686912	5.56174452095661	5.71454093841471	6.05917502763776	5.70380080898035	5.70491146600838	6.11628198218009	5.79000085484379	6.13948200923323	5.43342540430563	5.45863160722123	5.71267382577087	5.57156657244936	5.81814446525885	6.45467355266463	5.56174452095661	6.05059136074555	5.75432696530888	6.09771761296288	5.98347489495572
+"TP53TG1"	7.60804955286233	6.45818991572681	6.52930208408607	6.73253309867692	6.46619501804291	6.69321945143592	6.97058072468237	6.75403961042004	6.85687216044895	6.60560204725497	6.74409155126421	6.38820323345516	6.75745174827804	6.90743839012388	6.76296462419122	7.15021462037487	6.49544816093895	7.0353017495452	6.91363636880939	6.76412387285228	6.34384535513589
+"TP53TG5"	7.16871463964706	7.41086881271756	7.37069524844508	7.41584741431557	7.19877520524905	7.52780759079446	7.55556599407585	7.16832468443662	7.32155365184032	7.25998741282673	7.36813744797619	7.24447806874135	7.44733062040791	7.66774875919368	7.42656524064086	7.30920310646752	7.17220378110427	7.34803365513703	7.38797801677569	6.88686494233267	7.24290040123102
+"TP63"	4.84598534863446	4.65885410302567	4.82799329084439	5.06162444690805	4.65306570631688	5.21852300896543	5.30404022955376	4.71844489185662	4.95029494330538	4.81841372436882	4.76135263512837	4.78090135653028	5.1152110442356	4.97940907785764	4.94670001710173	4.77774505971015	4.56455164965578	4.43548160536219	4.73133946847113	4.67148863036034	4.71247520490197
+"TP73"	4.80896096500468	4.71721641242413	5.09122390903668	5.00347794853978	4.67475616224492	5.46091602680283	5.42420971183787	4.76230208766001	5.31065985762474	5.13483914061501	4.81881284583953	5.10005356805303	4.97189727389247	5.37441534323647	5.17063105427752	4.93088826247986	4.91250595908575	4.59361793576117	5.18966731094277	5.01192516548235	4.94072713869182
+"TP73-AS1"	7.85454822070217	7.56921459007125	7.57549908760215	7.14211580682716	7.22297280403071	7.59968009297547	6.97144308461575	7.36245114743746	7.25456607483155	7.37380843220427	8.01661936891677	7.35582972177854	7.06212527444307	7.32367122407714	7.33604351474818	8.05973415849139	7.41146193676031	7.98720000923193	7.36843837871482	7.26368496830107	7.42613636974273
+"TPBG"	3.84176362698855	3.49275829355498	4.4763253322869	4.00992096766605	4.78687870742188	3.69364002365319	4.09554721634372	3.99575195545966	4.69331601774052	4.36772306077481	3.64360420836182	4.09554721634372	3.97723544643212	3.714623171407	4.83851391392687	3.79298279096004	4.35978735910316	4.11229838320953	3.76811324981866	4.55200064025715	4.25045275112918
+"TPBGL"	5.73971809950586	6.17473291513009	6.62677789985658	5.91076670353274	6.41171022986187	5.99558584055479	6.20829017519542	5.86782530705467	6.03707629775733	6.14790892988607	5.6103538592739	6.03572323471169	6.1159876119967	6.33168254023296	5.99694844801098	6.02153635661754	6.12459142497306	6.05458795122127	5.69999383633795	6.45192994336916	6.26870041315207
+"TPCN1"	8.14728027088594	8.15451041210418	7.35996463923014	7.89173554719144	7.48976414490272	7.16622946512126	8.30441238059103	8.23019710103099	7.65680120446012	7.85703326170076	8.24370421623898	7.9973484494739	7.74873913502734	7.8501323634036	7.46323435022918	8.40326650147353	8.03214505129878	8.0737140449	8.07954574634224	7.84683172598036	7.80372685029914
+"TPCN2"	6.37473898649267	6.32390551670952	6.24050580454272	5.74335189326298	5.98632977618714	6.2395990560481	5.90853447574668	6.06137334274845	6.00575752877026	6.17483474824185	5.71907958843406	6.01286543130316	6.23558980256724	6.2142533063059	5.86344449005643	6.0085551621326	6.0001871842285	5.79068701091287	5.95259255329311	6.08058109401462	5.95444183777933
+"TPD52L1"	10.5231162997501	9.00889069449382	8.25967865722406	9.54355661472195	9.15902857005878	8.97852612649169	10.4149456318379	10.278453384365	10.0835578796755	9.46876939798194	9.398577212116	9.29440611007734	9.87090758175473	9.43717192471799	9.92461046700047	7.89361722839992	9.29024123679947	9.13480869552026	9.69113998965147	9.13404766269586	8.25182097731815
+"TPD52L2"	9.53060951451283	9.17196647320605	9.42045427119971	9.19242656972271	9.17845561979154	9.45039541657379	9.34758931716095	9.31620923547106	9.252318143461	9.05720335929298	9.37556134956158	9.14385823352949	9.39125673025712	9.14079496243041	9.45627834665302	9.28247055786133	9.21516944386584	9.51877492261952	9.32233538195429	9.31569125283035	9.18040880825004
+"TPD52L3"	5.68900681601598	5.79976601284619	5.6527912639432	6.23412654303919	5.9303524848219	6.14057524374782	6.4695258816671	5.71726991714099	6.24331980144273	5.78991723127255	5.43478411409839	5.73586417311183	5.95202342221865	6.38919011482829	5.70793325030193	5.69594503988649	5.84892531619668	5.32759994866644	5.99822593955671	5.68308973551808	5.65742232780482
+"TPGS1"	6.48460924559189	6.45620086243248	6.91495651248815	6.40382767411492	6.77182498950631	6.70818669641416	6.6742509174853	6.512643630682	6.40549347535048	6.86721906468295	6.70237585257946	6.78587765468339	6.53427019486912	6.09283418442988	6.32435776359332	6.38145309780769	6.38741621652802	7.14891239314787	6.45298800453807	6.95758766550207	6.63994851033822
+"TPGS2"	8.59440349106503	8.4282756965312	8.40173920511897	8.26935295933451	9.10117252525	7.83541470123449	8.17299547915433	8.50347149224775	8.6100119255572	9.29903739657726	8.62175932734767	8.87354177001024	8.36282866775339	7.93350748833291	8.53123239216492	8.69798168220259	8.6775173359058	8.90864395128732	8.5574391961819	9.19167650260395	8.89745932319669
+"TPH1"	3.81029014494376	3.68213998571144	3.7333056415921	3.45643916495828	3.68371124423917	3.9903955799536	3.64412061090917	3.41306696162433	3.83406544935707	3.70913186866888	3.58288201738339	3.641745966655	3.59979354609758	3.9660072090085	3.94822303927523	3.69834232215837	3.70730258517274	3.58692996012528	3.65227154059627	3.76738855929809	3.61736130795388
+"TPH2"	3.18498321014931	3.2846051640802	3.17014180793401	3.33394788611109	3.35275869443406	3.49413653565441	3.18301069726134	3.10745285620165	3.29454809437858	3.09076885668633	3.33995905576855	3.32707909526694	3.38700846308912	3.16919278142862	3.43165566245812	3.50310234788329	3.32744718175228	3.22749630259084	3.47135455726816	3.2846051640802	3.12055369013396
+"TPI1"	11.1023199609431	11.2479213064523	11.4549490940696	11.4752436939673	11.98417718731	11.427568539258	11.6246180071105	11.5580135697358	11.6532250088381	12.0450466267631	10.9849316738787	11.8315076062953	11.5841196977132	11.1025044057888	11.5258282391368	11.4903764515673	11.714843172261	11.4456758020194	11.5008352146736	12.1318436192689	12.0854744895773
+"TPK1"	6.86848662676456	7.34102829654936	7.44250095231524	6.46141456723554	7.41865479230211	7.05822484882788	6.49519131386396	7.09238654444041	6.59148032307955	7.0376794812935	6.79382075338424	6.84902014865161	6.56675020976186	6.65488075160627	6.28742619808258	6.805587739553	6.83974345814281	6.91398226879728	6.76588660650022	7.47821020138444	6.86848662676456
+"TPM1"	8.51991481755505	7.45099208330964	7.54211429967293	7.34407305646701	7.91307938475663	6.90560891614484	7.50712905051192	7.5227738854842	7.29384192119711	8.36506491740951	7.37785015465789	7.84546063253919	7.37393837254219	7.4023190941254	7.0469554915899	7.50712905051192	7.52310550176941	7.74855338068211	7.60388091994948	8.60035146355736	8.33015464891472
+"TPM2"	7.68988287674572	6.682611891482	6.66825872075209	7.12541516528508	5.91363204030244	6.8086599002106	7.2445984771438	7.27571106890674	6.88372211211512	7.60269062832144	6.89179040293203	6.73398927754634	7.17650187329029	7.10202167659784	6.36348466965877	5.58903542139348	6.31984866841095	6.41422413497704	7.66800279027026	7.8199100367329	6.60138694027778
+"TPM3"	7.69035440671864	8.49359405097463	9.15566023377986	8.65585070922694	9.19430620897811	8.62084338495506	8.40649892353886	8.379684591328	9.10786303759019	8.80890726014086	7.75715295610344	9.03878955878813	8.33350220397031	8.48445657922599	8.48652595356744	8.41111550532821	9.01405970196205	8.34033709539113	8.70179125836366	9.20033058375406	8.84369222257618
+"TPM3P4"	3.52565063778024	3.2652520593488	3.62856787483983	3.43689401923837	3.43781549496149	3.61585415982041	3.68824014381228	3.14668284851346	3.5577578252827	3.42568946887875	3.28146539360209	3.53932555628666	3.6458591406516	3.48722452225946	3.13079051121427	3.31882065506304	3.38235501395466	3.47734068818697	3.54145096417881	3.44673157175844	3.26936260081949
+"TPM4"	8.15537566818342	7.25789444570371	6.57768150516728	7.53772812911877	7.31111532662277	7.61908879443231	7.59157853214965	7.77350313975787	6.8663514914756	7.79016376853307	7.43507627291899	8.05484540378261	7.53772812911877	7.49343674245916	6.95548274701498	7.29713190643808	7.51585377425647	7.38642967288995	7.55263739522228	7.94649616819763	8.02738082004863
+"TPM4P2"	4.69492829569337	5.00085833622707	4.5853030242882	4.52674374411944	4.58858533764721	4.63859497212049	4.70223754074535	4.71047301192821	4.3920683287425	5.31166370446265	4.70688538739193	4.81731573385695	4.74964789638623	4.73563657601757	4.84529016590942	4.71047301192821	4.66115404830154	4.58197542443235	4.65747018534606	4.68165629655179	4.44513905779915
+"TPMT"	7.73249160511467	7.94991780475802	7.85928046559407	7.95699931849038	8.00181000924513	7.3305449316845	7.68351812390721	7.79288912206695	8.09492338658839	8.60922883498068	7.63155238114344	7.83556483588191	8.45358978202599	7.46245975189945	7.94194662345573	8.03816869846969	8.00646535244331	7.98601223854604	7.96257844764532	8.18948269826705	8.48691704027515
+"TPO"	4.30291884282523	4.1994024045723	4.53370930958006	4.40390841076677	4.15077365926031	5.13410329003	4.85502961053924	4.79407722157858	4.11183226899244	4.537699768961	4.20708323747215	4.17763260739499	4.09528624136702	4.68090610038749	4.30291884282523	4.83516528381671	4.0178372715443	4.07768201590392	4.15766604361166	4.31778308193091	4.26861928645426
+"TPP1"	11.0984193700942	10.7243144498673	9.42460811157321	10.2145713581796	10.1306727650252	9.46540072532195	10.6605497816963	10.68571125326	10.0764416545108	10.3232225284155	10.5932189604498	10.1500674319667	9.83590913932112	10.0195992293996	9.24466729245187	11.0541205039213	10.4075777623733	10.4873450646727	10.2957435487287	10.4386472753944	10.1230930998501
+"TPP2"	7.58799756055636	7.71526647821136	7.94338791325833	7.80999690297537	7.99273853382555	7.37390267903191	7.80012819983462	7.9355665932621	7.9355665932621	8.08863079436614	8.10638731476339	8.36863708793647	8.19232618230176	7.68454106860051	7.62136952437771	8.46524419503683	8.01313649243851	8.57512084844992	7.66042755947541	7.83373785385111	7.96968368264852
+"TPPP"	8.76978784007942	9.25508506771043	8.94377177394458	9.08173934059066	9.17517864239009	9.3648646736773	8.62466108253888	8.81720348182799	8.88687648720123	9.51861835528828	9.76787162358792	9.65181655046026	8.78280300849438	8.65653185804433	8.55256827065719	10.1408372485226	9.38330482053306	9.97258007518931	9.32121623867245	9.42252462003633	9.65462754504745
+"TPPP2"	3.84503805636065	4.06368880839527	3.92755322350789	4.15122221826909	4.253369246963	4.09831953954088	4.34454043665631	4.18944315847092	4.18768314016161	3.89260303914966	3.65424883627363	3.98831307176548	4.01973093454807	4.41607567936175	4.16587960389551	4.00124766259218	4.11063705902407	3.51383780153609	4.09606765241242	3.76649585251223	4.21749257809528
+"TPR"	5.84330045428593	6.1285570619222	6.19473230852274	5.59140381272771	6.40913497938405	5.29909579555426	5.49204424104568	6.03419139609067	5.29777482175075	5.72500686133157	6.34335017104122	5.87317204736438	4.87355205997213	5.48068565740384	4.76956222679838	6.46026982537078	5.27283439316228	6.38708072165273	5.26265897708434	6.12230316848707	6.09112763966786
+"TPRA1"	7.52977021127825	7.23516340874366	7.39646336548879	7.09731996641947	7.09773555504034	7.65037798980252	7.71389804199818	7.48897400385261	7.2524559158279	7.24868921222689	7.38604998638046	7.03973121021028	7.16807676981549	7.41297298979999	7.31034377569606	7.2346662684181	6.95032891015018	7.25738142950528	7.31983486011401	7.357996024718	7.15569127282227
+"TPRG1"	3.86834686509364	3.74964006323246	3.85768593196448	3.90731832527271	3.91747881625649	3.92730328772195	3.86834686509364	3.87605973879338	3.89750769692117	3.94225592558425	3.60938600923187	3.84631902205485	3.93888427974776	4.10837435205232	4.11683077887483	3.8741196366809	3.88910058310066	3.62440731398438	3.84820241912441	3.61196871833439	3.98704558461928
+"TPRG1L"	9.49721826687683	9.47400800121704	10.2131529782097	9.54284930855546	10.2294069964453	9.68090463917627	9.3060655992366	9.6209983393134	10.1195209689412	10.177394512818	9.22147349808725	9.93527931857475	9.5099231489364	9.17934625080426	9.77328580235819	9.47371816040614	10.0215124300935	9.76143392252762	9.70189398110152	10.2719767957115	10.1681678538267
+"TPRN"	7.43176187045649	7.6616271702185	7.86475140743772	7.59378887807442	7.5644215774093	8.37460466569691	7.74524547554506	7.48542182642625	7.1750856160554	7.35844512981472	8.23100646364508	7.42108787148657	7.52885161071949	7.6255795928465	7.50061275885007	8.53126858176029	7.4081085430661	8.71338011360674	7.29991730331053	7.3008936904954	7.29714419667687
+"TPRXL"	5.63282737911643	5.52925805062693	5.25061547416145	5.8668976310647	5.69880550718356	5.68013406290001	5.30414423973762	5.65859722592425	5.76396075332034	5.67080365352932	5.33780351135345	5.79492302779817	5.98569070706763	5.85905807375726	5.63058952454067	5.70308107850864	5.79578343529406	5.29414108650271	5.7473371763245	5.67080365352932	5.73071914039563
+"TPSG1"	6.84781656830463	6.8539208758254	6.87825809199379	7.03882637895623	6.89546907740355	6.97298166974515	6.91862369620776	6.79010585923389	7.19887584683016	6.97528252986921	6.86959613169551	6.96077493868573	7.12233680589976	7.14340167371273	7.03679160807065	6.97471022464661	7.08725632596531	6.83333396726691	6.80827367212472	6.85906987293734	6.99920147217399
+"TPST1"	7.97349332130061	7.71355614534869	8.02478698840822	7.43075026056812	7.72620498555872	7.19785037915598	7.07726855247173	9.33492531083258	7.71351256061934	7.7596974332826	8.18632143129038	8.3769271174745	7.57485633111583	6.89941543736566	7.86888530611566	7.83353120339158	7.83307962812611	7.90314060622755	7.83353120339158	7.99530620539329	8.24886018283389
+"TPST2"	8.9054770418107	7.49487478633723	7.79728232176285	8.01136162656096	7.86648665667444	8.29446465122688	7.93904931994399	8.07683221876546	7.91918354828888	7.74150821995822	7.55885208262681	7.72713858855779	8.26726121465973	7.75640366929617	8.32464079542821	7.10207590261457	7.84960761467593	7.74672673489971	7.67639267333957	8.17590674388113	7.51711301571213
+"TPT1"	13.1852648688206	12.8497687165181	12.2828927723505	12.942777415455	12.7690930600937	12.7146070242135	13.2055321279311	13.0760634935993	12.7710634735301	12.9083133426113	12.9764752664068	12.8223617352468	12.9183479079364	12.9280083104743	13.0517183862389	12.7895408076817	12.8511471534063	12.981952336051	13.2878527307238	12.8934304453729	12.9573710788735
+"TPT1-AS1"	7.6224032715824	7.5541660438447	7.31337044443014	7.23975722104964	6.978048421038	7.48572246799228	7.27321582417541	7.44242713699974	7.36095300623976	6.96088285615652	7.88075734212212	7.35752524780598	6.72023904044539	7.20503597001873	7.15608193481546	7.90980853163424	7.34145813545406	7.78688654181676	7.44197643633389	7.14078909858848	7.04029151883567
+"TPT1P8"	3.80031496873554	3.97521665806832	3.99424828030906	4.2493817728559	4.0587479972165	4.56991605288866	4.21989702434482	4.31796985689507	4.14322397661144	4.19708785038947	3.99241378745891	3.99550469525468	4.37482204338142	4.38864274218745	4.0415581163557	4.20941325311358	4.02871000583383	4.06485064241853	4.12354044901411	3.80031496873554	4.16692959635195
+"TPTEP1"	5.94079284344502	5.69013380899877	4.96612471193166	5.6576931132746	5.00044279017415	5.89698366041458	5.35561255989926	5.19620469390342	5.2353552200712	5.42771954196497	6.15913924520568	5.59918212280746	5.26052362799318	4.99169548668545	5.27416886403019	7.06982182387253	5.8553289405291	6.29849010457279	5.57665304053928	5.32554058995937	5.50076182085259
+"TPX2"	5.39402992599995	5.39096571044835	5.53959491313032	5.26021642396245	5.74167975360796	5.72305645369686	5.30207432756064	5.19620469390342	5.40497711917075	5.38323808390982	5.04478010055517	5.50014920592433	5.52140156268256	5.28033410916276	5.39096571044835	5.20632662109109	5.61844384975748	5.14873718901971	5.39096571044835	6.06363659391677	5.71193957616875
+"TRA2A"	8.4392830297431	8.43369968741893	8.31183013502396	8.61753366122499	8.10984339552879	7.56483122423134	7.29758123711707	8.1756608138704	8.32541296121836	7.92428328959733	8.8740213251303	8.27717348093489	8.36022245152606	7.45638565554565	8.38492098494101	8.87966986536451	8.18957029275437	8.59929019039779	8.59800532853064	8.17497090653099	8.26507208653456
+"TRA2B"	8.70853870861852	8.95014060612507	8.33176142208034	8.49834094911948	8.92327336474218	8.4341834013156	8.49339035229078	8.67345689145547	8.3421157588374	8.83907304929873	9.09628675705081	8.65722105093324	8.44117663048991	8.1768111505855	8.49478793066413	9.16815017345851	8.39653629970858	8.9528283767234	8.64731490079032	8.72984051823281	9.00176541156952
+"TRABD"	7.90012043652049	7.86100117954948	8.14488330161231	8.09919220122195	7.64651293935277	8.77973442102226	8.82141388111648	7.91064543109083	8.2941402274822	7.87159996497972	7.83081802593841	7.81790192100959	8.22978945634973	8.44227528458494	8.23205047070794	7.51166929482644	7.70195892433059	7.58861483190498	8.15725771391345	7.88980240826664	7.85683409563114
+"TRABD2B"	4.70009268391859	4.80229560596326	4.89107398382853	4.62786932174738	4.7080120729491	4.86424405150949	5.1716869876303	4.77531428416312	4.67569487082649	4.78447994247241	4.55340174171075	4.75281075142491	4.88007732451947	4.93698049688839	4.95359806070448	4.74215346878803	4.78447994247241	4.53377599821401	4.91664660480513	4.83901664850207	4.7096388695463
+"TRAC"	5.60171727146182	5.85145019088775	5.55611914802367	5.7637414832805	5.94141690073013	5.39160899156277	5.49106163174334	5.73587528882951	5.76125936971348	5.94197780597467	5.61972534079682	5.70172125026624	5.70590543037328	5.66327328182271	5.6839934471517	5.77913435549817	5.99130531144341	5.37522421249729	6.06236718563116	5.8208521990127	6.18900240523806
+"TRADD"	8.25221123280964	7.7178096454879	7.80739431485602	8.12770817026018	7.82759331212396	8.34208388110999	7.9835583923397	7.71787789642984	7.89904414479611	7.79464933163759	7.85457877625173	7.83744125129893	7.89904414479611	8.12636301827638	8.04433219089398	8.17189984426395	7.707023420694	8.22601310757308	7.89365673267242	7.9468166287319	7.90715152737953
+"TRAF1"	4.2413866905675	4.30291884282523	4.33212290969776	4.52987347787395	4.20504563291817	4.30291884282523	4.42007876539595	4.23379802778484	4.43400473464399	4.15955514128184	4.01853160444106	4.42583532439962	4.00193264248674	4.30856787391516	4.06033800835388	5.20488825392586	4.33806338839525	4.7939943459758	4.49661914688995	4.08193599403084	4.30291884282523
+"TRAF2"	7.4940547133495	7.53809780178152	7.74144479134036	7.67141092095863	7.5408961315987	8.08363738900428	8.2198167576084	7.50565585902234	7.52918988098155	7.55109186429817	7.55835630412059	7.53265270189696	7.72767508172245	7.97606352471873	7.69365289954596	7.83270064057389	7.35382562973027	7.62548352148844	7.84178868307781	7.75323996784569	7.42100423507201
+"TRAF3"	8.33730735101587	8.26846668697491	8.76651724714316	8.28938843706445	8.45889475393342	8.16285980400185	8.47804442647856	8.12907913648276	8.80189961731447	8.21933283637516	7.81835260684948	7.72026210348847	8.55826088224401	8.22322288490172	8.77451727281176	7.95138761879744	8.30264771013571	8.28938843706445	8.17666073998321	8.54432529930681	8.52025644869114
+"TRAF3IP1"	8.08450139715759	8.23079606753361	8.7400273500287	7.75410738204039	8.58246931618282	8.25272668813571	7.84100376342374	7.52496419539787	8.2331924526441	8.1498393059429	8.04657307086929	7.68324075814328	7.99492726389948	8.42512266595256	7.59225879332195	7.60835540596854	7.8742139434052	8.11022487296248	7.7772488394591	8.05273065553574	8.06870389402621
+"TRAF3IP2"	9.50706399304377	7.66555143934982	7.555410850579	7.90919576722457	7.39236994627095	7.65500353481066	7.95994378560286	8.96110152113045	7.91918354828888	7.74150821995822	7.98666623099638	8.02638147423705	7.44699569813148	7.99249473135242	7.92893785301185	7.64453552285522	7.63793334994407	7.50986622046402	7.83188462080377	7.85888039112411	7.59706509446113
+"TRAF3IP2-AS1"	5.81060124929582	5.74840129784677	6.09312861548858	5.49818214392163	5.81462302006705	5.86146402773671	7.05398261755604	5.78718297554805	6.05359130920706	5.91018059178172	5.75282429643904	5.85151308197443	6.11369834314617	6.24195346278423	6.01400995995731	5.71593893393917	6.15452710203545	6.00778311416591	6.14999469121445	5.97467025016101	5.88123293207465
+"TRAF3IP3"	5.22876112969792	4.71008909128706	4.84221627965717	4.48946529999433	4.76391092785489	4.59065355656803	4.67030207321553	4.75954439176871	4.7905495813433	4.92104541220025	4.62622683478018	4.47088397927323	4.82266929279426	4.99169548668545	5.04552124305028	5.35880507290786	4.84221627965717	4.99387057715608	4.87600521965247	4.82724827574208	5.05858179095161
+"TRAF4"	6.52476372862563	6.59072472020395	5.96050411693726	6.37491214426367	6.23486468309915	6.83318507191688	6.46964488619953	6.75363126882362	6.25134354528403	6.21293569885859	6.58444752140482	6.38759728352874	6.09249714340141	6.22208120018913	6.03687453164408	7.11483463016347	6.22798999153691	6.78332451607248	6.14335953355822	6.07814149934757	6.12968789357356
+"TRAF5"	7.30557471563855	7.04081558764194	7.35123647422303	6.40255312306118	6.94688523476063	6.25617530883197	6.36714449260219	6.38838688230626	6.59459561450799	6.91645344116	6.88421528177165	6.92151647648868	6.62388391630392	6.36461093409478	6.76534685082011	6.41365559011158	6.5345460073386	6.68936209775063	6.51309594991216	7.48942297905769	7.09960305188163
+"TRAF6"	6.84384927719985	7.21006324491138	6.83674863214175	6.77349298612404	6.91627188516501	6.64073920634567	6.79081537007628	7.04762600274717	6.97605861733065	6.98192152637146	6.96312791121185	6.98103065871654	6.88678728171805	6.71442900747348	6.77818612804735	7.25694845021401	7.10422357056357	7.28733728758479	6.82880973705232	7.01374091376847	6.91027093341401
+"TRAF7"	8.02205970170334	7.49342792072677	7.64823344061369	7.80538991277282	7.4059237373239	8.02266595095597	7.75342253511546	7.75737141550673	7.95591686319947	7.62511389227811	7.61554865110855	7.55185852399655	8.11119058234974	7.8459365785346	7.51433080348655	7.08146976149261	7.68059621652999	7.51016949675696	7.4565218296769	7.20698692750688	7.48145728120027
+"TRAFD1"	8.12485266005864	7.71062692778892	7.87754066334229	7.59281082414575	7.50706120894896	7.9466315549218	7.70052637486879	7.67939130856791	7.53092932612906	7.44249209000136	7.97767485689508	7.55644888129536	7.36527704669042	7.69649698731032	7.58694213540114	8.48751980808622	7.47356658889905	8.4389153616646	7.79074420589682	7.49559699924361	7.47313419998226
+"TRAIP"	4.75569649737827	4.79226714967239	5.12142542510239	4.68541415856735	4.72202344285031	4.67569487082649	4.83642936811095	4.53732446339617	4.97198589388406	4.69663078877543	4.67150668349238	4.74619189585595	4.90601069855757	4.99264100022112	4.83851391392687	5.01275809186803	4.51444464327239	4.75799280259008	4.75799280259008	4.8178379336678	4.44534204474065
+"TRAK1"	8.01822971665206	7.06784818368232	6.54861388480385	7.25771069158167	6.93500926013524	7.02309380653332	7.58158682573809	7.69364655647871	6.99974787576052	7.40930668471072	7.57999054424517	7.49455493104341	6.77643519189656	6.8534188895	6.8716724987802	7.00541719285985	7.2505423545848	7.25204742771898	7.39203506594574	7.19879741686453	7.08550581634435
+"TRAK2"	9.28606026166615	9.14762532085273	9.15832523921812	8.96121232202935	9.24460527931403	10.2560217178215	8.89089738673279	8.58004891519922	9.05756625273535	8.85815876634757	9.39443995149118	8.65036474245252	9.35787959455509	9.39285338779929	9.44858326553335	9.5976733924595	8.84331255234597	9.55633529367619	8.80223518933967	9.13211225490296	9.40457021391743
+"TRAM1"	9.59178207981046	9.07924710173441	7.9034829786356	8.69054521640107	8.74936877617347	8.6431887939212	8.74377664754478	9.15072387977784	8.56840706765058	8.99288823564014	9.25391397881535	8.85333776312922	8.53232669210827	8.49229363531663	8.38922237364805	9.31546879596971	8.77867275951279	9.33529101209258	9.00009139851321	8.74999642466508	8.73607318253755
+"TRAM1L1"	7.2317208864426	7.3985100902033	7.69503376879092	6.95681472082295	7.48451290580389	6.95482136747765	6.14117216891384	6.33486472787957	6.68631195509878	7.04654118122876	7.63040512995956	6.8488570357636	6.07650775961619	6.73625846174434	6.33149963332512	8.48573292902384	6.801228053461	7.85148981615214	6.96718584099692	7.02783847068144	6.82511230770062
+"TRAM2"	6.95338169589736	6.42588313253326	6.443834933189	6.58540796937795	6.18808342344758	7.25601428486082	6.7842949681185	6.54335045304983	6.69819577594531	6.58458907465393	6.29684398930162	6.07054922146807	6.79227923180343	6.80476826919882	6.55760306617614	6.25975585486541	6.33777053688161	6.17230864902826	6.21883631030715	6.96796596410767	6.58685473784075
+"TRAM2-AS1"	6.77290292819135	6.89952843826907	7.01371206709061	6.55083910806945	6.84906844929143	6.68458396877338	6.71147909131458	6.60883061168465	6.80005458067239	6.815152130165	7.24039590942715	6.64737603414905	6.60519119989732	6.79716907303222	6.48590847380285	7.01071062106298	6.3491108826468	6.82571806762229	6.47640610460514	6.73321222862832	6.40159202616309
+"TRANK1"	7.07479332145157	8.09531502132057	8.50022947217631	7.44001340116411	7.97952661055203	7.14180289970862	6.95193398257553	7.77786526945459	7.56579989722148	7.67949374248217	7.54136001289159	8.16234776510294	7.49416221435896	7.36047253950659	7.41534921440778	7.3116416970347	8.30976554871761	7.67562838739869	7.65665085827371	8.00958087813725	7.86135342175673
+"TRAP1"	8.3005713938228	8.86470675073882	9.324815271111	8.69267833790507	9.29931422758228	8.51235523233769	8.39221170949189	8.74055458353821	8.87815787093923	9.09798921906877	8.81300283325501	9.19826811564618	8.58473124308924	8.28142618075571	8.63115827688841	8.80768517530032	8.74473810867237	9.17745235525737	8.72129852847393	9.35186039771185	9.06308094624552
+"TRAPPC1"	9.12919342132237	8.97897464953693	8.94078888818225	8.68263446046238	9.41270893398673	8.97266807250907	8.66491803150856	8.80346496097442	8.60375928241422	9.20486038140942	8.90149776353023	9.13892713781669	8.64222370247357	8.76083774986963	8.53287605197522	9.01872050311544	8.80708311919751	9.06377490381352	8.68151740276114	9.37261038797701	9.13101522804621
+"TRAPPC10"	6.03526868366867	5.89708195618327	6.46856263677671	6.03837270463874	6.70375024316838	6.11921517761705	5.63420737165684	5.6781001023154	5.78194032032944	5.31754997325187	6.03526868366867	5.83450542334236	5.97988115689311	6.18732928794457	6.10738192109627	6.51334202332121	5.84685632246231	7.34567826787304	5.84809011477839	5.83476492927618	6.14164850887808
+"TRAPPC11"	7.28011261854408	7.54708696011293	6.95490749425201	6.56291962499539	7.69806880542557	6.20809498523041	6.02789736666907	7.11080824551553	6.8469374244998	7.52426423669083	7.11471664911895	7.25268614622517	6.02556818921992	6.16552442399952	6.19441236532768	7.61508415712443	7.16327241209703	7.4829725017151	6.88910754040668	7.71727772978194	7.39171098631655
+"TRAPPC12"	6.22416423651093	6.30857303965345	6.84496929924392	6.75865184247903	6.06593715547878	6.99911640655902	6.51671227101228	6.48089194771297	6.3416570284169	6.37597512361054	6.49890433471339	5.98876857071834	7.38761530387546	6.70348136960212	6.78812426064006	5.75450486079381	6.05133670631925	6.81582247236268	6.54494685587232	6.33501133666268	6.73901350597326
+"TRAPPC13"	5.17938061689554	6.32945685305876	6.37055041629703	6.10675023502241	6.74397741087885	5.41607812500801	4.55391693439172	5.74971892075662	5.94237011939588	6.24238539028756	6.36351397131103	6.09671510224502	5.71267382577087	5.320372617447	5.92855943039758	6.03374443539102	5.86328670891606	6.74397741087885	5.56793871427307	5.93961992545887	6.35289141298771
+"TRAPPC14"	7.67857358352766	7.75366756422903	7.93705384490707	7.66565770477692	7.76190844108125	8.15325864589864	7.69571087973606	7.37381919739904	7.82869772044286	7.86479928129039	7.53719298613732	7.58744626334532	8.01610602108073	8.19292847564644	7.76190844108125	7.37488565342499	7.59529957168881	7.62443941475084	7.53803963720646	7.86383912156845	7.9668127258484
+"TRAPPC2"	7.71328152015278	8.00939634900932	8.23628822816913	8.11629089280971	8.18580275813019	7.87950016289249	7.45909236369373	7.99088152599298	8.31973937252246	7.94756832546813	7.70330262209373	7.9659601046963	8.30126359862365	7.84076540347809	8.10761455894428	7.71879695202993	8.26952127495182	7.98219490559026	8.07199313712406	7.88728436133687	7.85222285939156
+"TRAPPC2L"	8.74574208743431	8.9634347079381	9.17070099818238	8.07430165418978	9.11898450651307	8.77733121072981	8.06825047810467	8.72797615269025	8.56173848777043	9.28378633190779	9.17279994479539	9.02169128762821	7.86795558535701	8.10106983610596	7.80984060350598	9.52221129080337	8.13225574239861	9.21650868665888	8.56770776540881	9.34125638251118	9.06905054956358
+"TRAPPC3"	8.31408660890322	8.22344392509079	7.57929893460958	8.10634049607008	8.3897817421973	8.06673936624494	8.17132452688197	8.23793592664691	8.41264614426904	8.82271290268188	8.34411166336217	8.52553620032449	8.34411166336217	8.2639126645281	8.31359546574485	8.76266845331806	8.44627329708177	7.88870733424445	8.41365380593965	8.92250985542507	8.78519109499938
+"TRAPPC3L"	3.23203352721585	3.28085765177389	3.58588708334505	3.5448582959148	3.376283575962	3.95283342676049	3.39060328551423	3.44830343059895	3.84989373708418	3.53477083195911	3.58038711302315	3.53563885221081	3.64123371261424	3.57041485204921	3.49455709255755	3.35491871050565	3.72761132919089	3.3404377108901	3.6160518666352	3.42881371156683	3.58697366166915
+"TRAPPC6A"	7.82601342172562	7.8896415612522	8.20739286189236	7.40840590919074	7.95841590526477	7.63188249022872	7.5041899556839	7.76063237862624	7.33814651886314	7.72471797101642	8.49148843856282	7.85633922301187	7.43212520460169	7.75233903995546	7.3651261113759	8.49417061564995	7.48807108802116	8.32487609874409	7.58393282877774	7.95682845374794	7.72471797101642
+"TRAPPC6B"	6.9752077246901	7.83367027469898	8.38834343008016	7.78093376431141	8.28167231996392	6.98756781467798	6.57211625616677	7.42331969738921	7.93720679410653	8.19296135133931	7.66869594777484	8.24649718793726	7.35299069610454	7.03431246301048	7.85439281015632	7.92986787003442	8.14830309101057	8.12295337778824	8.02985484286243	8.3876958587432	8.18191481403159
+"TRAPPC8"	9.33886090920505	9.31634925406139	9.49366702361838	9.31847876574031	9.52745590890556	8.98068847148935	8.7845099860218	9.29479903453523	9.5093448336857	9.311922381893	9.31634925406139	9.21997709036809	9.23093192071559	8.96771305494226	9.37803711378773	9.4937782519412	9.26533729761886	9.60270055026349	9.41484914408279	9.41413923247369	9.25317161276303
+"TRAPPC9"	7.30959633297187	6.80985216046277	7.17123012238092	6.96696934010832	6.91552570639217	7.56483122423134	7.67347850354898	7.00077624240136	7.31513768438723	6.82165147626357	7.1562823902843	7.00103422957629	6.91819364502612	7.0984910687502	6.99005222248216	6.87964129581333	7.17262423782395	7.12868217606785	6.57187676744405	7.09809649106526	6.97972174923596
+"TRAT1"	2.99457077087388	3.24017848311743	2.96367112650418	3.14260852376725	3.42229273680203	3.34215571292522	3.12884954651652	3.33981105607343	3.33428819183538	3.21827741751263	2.94906970106365	2.9497944329363	3.47733081771105	3.34297336177806	3.20517262208258	3.08171856830433	3.20828911430266	3.1030301159804	3.24755095216235	3.33428819183538	3.31941961212769
+"TRAV10"	5.24305812023422	5.35657186417114	4.99514255845351	5.33725742818241	5.24305812023422	5.24305812023422	5.25832200887208	5.09179560625565	5.30382701892482	5.29433732872115	5.0985965617795	5.22025635773318	5.28850993684895	5.3644374619992	5.34229175598415	5.30264878586227	5.09949182941149	5.23109841622361	5.24305812023422	5.21435123615311	5.28591990723355
+"TRAV12-1"	3.69571896687875	3.93624467872538	3.63126431062931	3.85325240063299	3.78664536222735	3.78775336833576	3.87806802348596	3.64646847182225	3.8309761413622	3.69178084392767	3.81940810873561	3.73198060580848	3.77216330589925	3.63734615191803	3.77216330589925	3.96819555184875	3.73670495888419	3.77216330589925	3.77216330589925	3.53911045515046	3.73386501192736
+"TRAV12-2"	3.30627270553787	3.27755090948256	3.34193166273252	3.51328302116936	3.53713280405324	3.77426782225321	3.68831846680737	3.35774628657865	3.6411124934981	3.57289375952699	3.26580876533426	3.57454372131139	3.53932555628666	3.63734615191803	3.65802454898708	3.39476804809145	3.64511202344104	3.23826651894816	3.45888155348662	3.62582550234531	3.57731190201391
+"TRAV12-3"	3.12796065126047	3.25205978902035	3.18415804721972	3.02471288538393	3.20794456339673	3.04396229092892	2.95159535710411	2.91755760252305	3.22659953757796	3.03467968798165	3.0893691663233	3.09205465304785	3.06872775303772	3.08360357775851	3.19992656744899	3.10833242390145	3.15634714143653	3.20474359778743	3.20901276928803	2.94906970106365	3.06350698304717
+"TRAV13-1"	3.77744150333692	3.76480269926963	3.6335441677504	3.80178679885111	3.70632310137397	3.82410172034442	3.90465992352544	3.77725052311243	3.88971146008469	3.77134575187316	3.54612745361655	3.8534277623278	3.93668319481726	3.95514084183664	3.86457653082484	3.67354209725185	3.79783651683346	3.61236532599278	3.81467025889524	3.76649585251223	3.80178679885111
+"TRAV13-2"	3.31155099685005	3.11759172511718	3.15143028918222	3.35831571041276	3.15860066892074	3.34377042028985	3.42876622856567	3.14884182684994	3.04007333930752	3.19974090533624	3.10584958096888	3.19974090533624	3.20901276928803	3.40322026415034	2.99192353886453	3.26267207146602	3.19238294052514	3.03793866910946	3.47040322892416	3.30145501654828	3.11515845212953
+"TRAV16"	3.81349437050548	3.85126867170533	3.81349437050548	3.8640943161805	3.95552220882654	4.06105722465357	4.01022585326327	3.64646847182225	3.62543040240081	3.74100933472506	3.74172486293756	3.76759559277977	3.92833967634483	3.85198937930872	3.98680653328994	3.93310188288317	3.80727035348373	3.39707006367657	3.89408851567558	3.93885748988494	3.85688351784332
+"TRAV17"	3.86652518261695	3.90785186101817	3.64088823609489	4.09987984440911	3.70814503281387	4.21205783899402	4.12987543350959	3.91541785923474	3.97208355332444	3.78467243328471	3.76440768123039	3.99550469525468	3.85615788008129	3.9552127371417	3.74602869423634	3.9518379790963	3.63380446419854	3.8566800732177	3.74618268011058	3.88815572868565	3.81993467167792
+"TRAV20"	5.15513001767012	5.34504778529564	5.19003961603347	5.28380834821866	5.23046885210629	5.35499458883709	5.29274730601974	5.28230119996159	5.29274730601974	5.59333861990307	5.16304009926144	5.55247337016228	5.43141547223631	5.46992057316196	5.51260288124475	5.50920616105642	5.3813139916446	5.29274730601974	5.46049976254501	5.26749396622368	5.30283626201264
+"TRAV21"	4.06290326078796	4.16908295817412	4.43536156756455	4.34057268666813	4.44332142278762	4.38195702000894	4.46931594280112	4.13384690606248	4.04160397674303	4.16325644402003	4.2493817728559	4.34634699370544	4.33862757157627	4.39433617085732	4.47230081843627	4.48704832394543	4.65320424025745	4.12111016678412	4.36078894299125	4.11022278325533	4.59232068623286
+"TRAV22"	3.42001787898403	3.58257499452781	3.60261519443895	3.73694812830661	3.58257499452781	3.67080648592895	3.80375808432641	3.64716366633088	3.58657035912302	3.58257499452781	3.30437826046708	3.35080678835328	3.48717356173444	3.60402905828099	3.52671547700786	3.57327116739448	3.46847965720972	3.48412550612507	3.65324759133482	3.865656716151	3.46127511435474
+"TRAV23DV6"	3.00500106671525	3.09782467255632	3.09782467255632	3.09436293317502	3.13224782596598	3.38801836986416	3.09782467255632	2.97325350166683	3.1657519358027	3.19041865708454	3.02615316058584	3.19034379311665	3.11186988790546	3.26033847108305	2.93742403776526	3.11475559163717	3.01529261080564	2.95508790029919	3.15781070910584	3.09782467255632	3.02551125930039
+"TRAV24"	4.06292275519201	4.0665971600375	4.10093448757744	3.91839344695716	4.1112004030439	4.34874074912882	3.85485119675128	4.1112004030439	3.91923650449527	4.09726393773428	4.07960530292593	4.17819440313924	4.31269703462691	4.07975369338309	4.01209093990737	4.21145523463627	4.21749257809528	4.02653353159083	4.17042484995685	4.11388361125718	4.33474414669088
+"TRAV25"	3.45969161314398	3.09841126240908	3.17835814058077	3.24972183202377	3.2654931680687	3.67186949936247	3.44292067427572	3.12172653333528	3.19252788411931	3.30358696935582	2.98400369984491	3.27071176512886	3.13730976571747	3.54014616951334	3.22475767634177	3.45077553634703	3.27007228906728	3.28055520335447	3.21249034148655	3.54855883470347	3.15189265103796
+"TRAV26-2"	4.52750404804332	4.68379489221637	4.64529180416063	4.83411896679892	5.13592730873496	4.891431597517	5.31799600153689	4.70934035112471	4.44364945907986	4.58809735525117	4.2493817728559	4.59353712411291	4.91227993173435	5.12661948797981	4.74964736896992	4.62889026273822	4.70934035112471	4.54076834168014	4.77973676977835	4.78991817162112	4.62484315643133
+"TRAV27"	5.88635285307586	6.02080653926967	5.947911724022	6.01096729112887	6.0241438602092	5.86771354221646	6.33644420250082	5.7216810706134	6.07665477491139	5.98727913008948	5.70046841132485	5.85440906480713	6.00907405826162	6.33571552327933	6.12710113958113	6.03999238018087	6.07425589937569	5.62950024484381	5.75083002443572	6.04883491880867	6.0876501242067
+"TRAV30"	5.81356839391006	5.90857142676685	5.51437956003144	5.96567191820835	5.71017150879601	5.73697798555079	5.9890851104147	5.53584279132252	5.89475906432949	5.88685820187039	5.74504536346527	5.82287033003888	5.94108749755382	5.82287033003888	5.8714910854582	5.89437041227671	5.94108749755382	5.35738792302596	5.91826620052661	5.85799882488189	6.04182035530528
+"TRAV34"	4.0014740797915	3.7729218872909	3.79175919274718	3.61886254788438	3.80649995104861	3.84259943951359	3.91977967638055	3.87473717920797	3.64244440333094	3.69314647573125	3.6470004571553	3.79340624972589	3.88509171534632	3.7918258487271	3.66291288254649	3.87724216937067	3.85901598946616	3.70128877671037	3.73481200597261	3.72117451034394	3.89750769692117
+"TRAV36DV7"	3.49364466704848	3.71262022329842	3.72476062002703	3.94784699046377	3.67313952040328	4.01442283972549	3.91977967638055	3.75901232450275	3.76649585251223	3.81256305699805	3.57879838158518	3.83216253739715	3.70277904658152	3.81710980191311	3.78923136246698	3.69834232215837	3.65440380017826	3.70432824492612	4.28326132578679	3.72601277903674	3.84497386578943
+"TRAV39"	3.93331092246054	4.1801207926579	4.17885212511079	4.58520080337788	4.25557478742518	4.38407983066379	4.61372515219217	4.15853068389292	4.31211430911878	4.24201718770593	4.02895764353401	3.95495815651678	4.4093123802323	4.3951126098909	4.15871293994809	4.21199712828483	4.05944360983528	3.9265364634694	4.12556971745199	3.92545854851869	4.21353348467421
+"TRAV40"	3.50477575066234	3.62735414235701	3.75714810291262	3.65953309310106	3.56910116621858	3.88530638087206	3.94200451769307	3.61807269560721	3.80928048757696	3.71817940493413	3.50117372901666	3.79789751493351	3.99024003591391	4.22993451564431	3.61822869997396	3.4215618646729	3.88610951089073	3.45491996374163	3.81050836342057	3.66245077837089	3.49468180239311
+"TRAV5"	3.18777327440958	3.30836677292992	3.67391460011201	3.51932528510065	3.55583020166966	3.65222722098228	3.52077205356345	3.38656627385844	3.52077205356345	3.41528980539605	3.61443928122423	3.52181403852913	3.52077205356345	3.74325838175085	3.5940220400786	3.60664485766292	3.43499204881392	3.28273631701291	3.60664485766292	3.52077205356345	3.49190101066074
+"TRAV6"	3.90882538535162	3.94455582282733	3.85897613199259	3.71714190319448	3.91048543816535	4.32262857707255	4.32505693610243	3.74535146436994	3.90882538535162	3.91977967638055	3.55027468808496	3.80297599038648	4.06380271329595	3.90882538535162	3.82417376140129	3.82951318031937	4.0242377680032	3.73596925727004	3.91977967638055	3.90882538535162	4.0242377680032
+"TRAV8-1"	5.32979768047529	5.51769724577886	5.48206083978957	5.47637709106117	5.46737753493772	6.30381048769867	6.05304996570798	5.53584279132252	5.51769724577886	5.57307527263995	5.27322178507138	5.51769724577886	5.69096245090512	5.73209776170372	5.52773061270121	5.30826390017415	5.37511149986961	5.17089926314862	5.56876082013031	5.32347345329833	5.51769724577886
+"TRAV8-3"	4.32515005439862	4.44459322857058	4.55343864012788	4.46047935510234	4.49353432848275	4.82758007652685	4.58629961510945	4.55807371956104	4.50503310717708	4.64918377763747	4.39664084631229	4.67365042185128	4.57173418907137	4.77358756292033	4.79209722962566	4.849411486459	4.4315661298355	4.16089863856463	4.57512919121534	4.67577770110318	4.68483347876082
+"TRAV8-6"	5.44216632379867	5.76895494937256	5.48310406246356	5.84353374952268	5.73146226410539	5.48610175843508	5.60474194334154	5.47557255776058	5.44983146351611	5.62495731519105	5.4856192907895	5.76632678037202	5.89854051137503	5.75421980579515	5.89949168900673	5.58060467445398	5.84032266449854	5.31354182717889	5.68252365059641	5.6545712205523	5.85232753403982
+"TRAV9-2"	3.45907037303084	3.80075567893912	3.81798680243028	3.77061380119541	3.83635289148054	3.78153905879109	3.59994100505479	3.70892875581485	3.77795251124229	3.85497287840624	3.64269067556315	3.83593931535431	3.78510548315213	3.8432819115794	4.01441677209272	3.81392219852855	3.72127300602918	3.55969993101081	4.02307347588553	3.80320676614836	3.76444161887163
+"TRDC"	4.00967676648148	4.44171846673464	4.07221863766968	4.37521626930826	4.25826894517036	4.53552366041602	4.51545420871161	4.23123016234815	4.04024903477787	4.12435416412966	4.40727537766093	4.39055224116734	4.18765528186184	4.1106142616944	4.53950263451484	4.55564565221003	4.2432115473522	4.21383202387667	4.12227190523	4.23663721524682	4.61979944396783
+"TRDMT1"	6.10203728267834	6.12048225264312	6.16769154280225	5.76924955469496	6.33996187742872	5.48812365596588	5.74779520626838	5.9618642827655	5.68538945895347	5.96312011566045	6.95703483007389	5.85317317842959	5.50076182085259	5.82760544354008	5.63743597293826	6.50089853621797	5.73984836076168	6.16370088517588	5.72911424281667	6.25246786461681	6.02215813302879
+"TRDN"	3.27727066658511	3.25490737361974	3.34912999074074	3.34912999074074	3.39760469609603	3.31752822430894	3.30878570605709	3.48082631888786	3.2210079161274	3.38815919666752	3.24390376928609	3.27426987879588	3.34912999074074	3.39701051013363	3.34912999074074	3.20006628110011	3.36177386466716	3.48401303533419	3.30465681402365	3.84232318792524	3.17489891942014
+"TRDN-AS1"	3.41031784347295	3.67898738518462	3.2998239003628	3.51019661132241	3.65878089320968	3.26351906352193	3.17514723192333	3.19549462349021	3.61038687919077	3.44528089326575	3.19091116934315	3.49624137596409	3.38272049677765	3.60187988569658	3.43067354614429	3.64231952504707	3.53744637289044	3.27391885577384	3.16367633608087	3.45543993057874	3.24624800512149
+"TRDV3"	3.93120571919796	3.97081277864275	3.95072126198782	4.08743092647618	4.05769484884122	4.20696985944412	4.44650834020904	4.18753709470731	4.38613780179123	4.2493817728559	3.9526432462815	4.00889942964986	3.91108730877098	4.52306533275038	3.89309077253934	4.06508573328563	4.09416393825168	3.92960440415391	4.43885206203976	3.83783802223719	4.17463593013357
+"TREH"	4.57367521014873	4.26828687525079	4.56979154930654	4.6976377986211	4.28811339558514	4.76242436347761	5.11300660673253	4.49729999533857	4.33150198840899	4.5817757954817	4.56979154930654	4.38340241175346	4.82549057454904	4.63309634638029	4.39377716314207	4.39489016659782	4.62293708858559	4.53330795292336	4.52744602056457	4.52210658514015	4.59574552901176
+"TREM1"	4.50920750751988	4.58474300092831	4.15208892540975	4.62931931261911	4.46212474649496	4.64042987690044	4.63934775616989	4.4978039551459	4.54107067684482	4.62850473336566	4.25368291970367	4.70263609501785	4.56079898699081	4.72148883632997	4.61114870373421	4.43885789341549	4.77709396218413	4.30138944834892	4.38941784136861	4.77323842537407	4.70433754084976
+"TREM2"	8.51173957183805	8.32978540671269	6.92423093079594	7.30205864258496	7.54215796154071	7.37229110932734	7.65274038216472	7.35273795659504	7.8314548000244	7.458339294263	8.24263429002141	6.99781921042239	7.62834082287684	7.94659737068498	7.95942449820016	8.26661895949237	7.3026774021695	7.82785545864457	8.14055675788306	7.79135779181902	8.43909731938312
+"TREML1"	6.31316276627168	5.99098294060028	5.914818788211	6.05380778675978	5.97617749336019	5.79917258076304	6.16536096096393	5.52450542219834	6.07854110773496	6.04188247040703	6.15206064046175	5.65360762690319	5.87942681476256	6.48010564310804	6.11677231850909	6.02360898295525	5.8668976310647	5.89708195618327	5.95851390586442	5.8771647911474	6.18839170908946
+"TREML2"	5.86810799885305	5.95070511535684	5.92318518979205	5.98843055016656	6.03105185904622	6.08264760265739	6.47545268291144	6.23453168515118	6.0077724735066	6.22593874040302	5.81902860597432	6.0077724735066	6.23774836149425	6.39561075383917	5.91423351962887	5.8946381469161	6.01290658830932	5.65837225509999	5.97096399837435	5.80252927634952	6.11532634205831
+"TREML4"	5.14594722920338	5.44500548138582	5.21513330778003	5.41585786629714	5.31085921744476	4.9683971041549	5.62515232406187	5.31085921744476	5.39835724728554	5.23776769586087	5.23776769586087	5.39199410484261	5.41615889950275	5.26161410298976	5.52903003395699	5.40167175894012	5.67867028259066	5.22733014392393	5.20645104097197	5.40170822596172	5.27863979400495
+"TRERF1"	6.67306736311023	7.53143675108786	7.79743783512929	7.66626454649977	7.54478176744763	7.23837425018728	7.00724801348983	6.92938438379981	8.02843933480629	6.91418311583508	6.77340445273877	6.98346883418287	7.90225485130682	7.49739968036875	8.01644262115835	6.34872480699202	7.32069459781919	7.1556028658394	6.99671528030876	7.33138015249146	7.22887751667864
+"TREX2"	4.3468335503995	4.52471872597016	4.25899632828545	4.52471872597016	4.07294434546845	4.76699381308359	5.1716869876303	4.4298377513181	4.45599683129903	4.61430334631062	4.45666376829984	4.51059883684188	4.69403256784956	4.8750229182798	4.62324917756429	4.38460063405824	4.63585257317827	4.37704986832235	4.38093610634336	4.45465033862235	4.51254236444372
+"TRG-AS1"	4.20763990877013	4.45022110915582	4.30645154629568	4.40088972276866	4.57268745176158	4.28891065199395	4.08760134636187	4.26823321597798	4.25487906152904	4.49246402219377	4.0290281731001	4.29096973596142	4.22233011421992	4.35991873220153	4.22947881308073	4.44113749935501	4.31292264454075	4.17023821122959	4.31129946468548	4.65981295192481	4.46470703663417
+"TRGV5P"	4.65385103696205	5.06191359607645	4.7734531122108	4.85954020753952	4.57322090687614	4.93805946353758	4.50456022789492	4.80727852729705	4.85826176293956	4.73131251062998	4.6047394602522	4.87922619357732	4.86978999983082	4.78491703380647	4.79778035162273	4.79037311117303	4.76891285391643	4.31879295703856	4.84809806391345	4.63989622107425	4.91479978994685
+"TRGV7"	4.94729910807278	4.9558025924877	4.94353236858526	5.178582923094	4.93428775303573	4.891431597517	5.63282737911643	5.04485256587703	4.97001989690439	5.02320467746486	5.16448506295285	4.83305835806892	5.32748948587242	5.43340777705001	5.20926076132275	5.17081220672416	5.24389543726114	4.89578365355963	5.31754147627178	5.09113631612076	5.07330773317249
+"TRH"	5.67852116393128	6.25300601550325	5.93268750040217	6.03099534431925	6.11326833558396	6.35192953068471	6.00457456699752	5.91327634982839	6.11006596411751	6.14511905573225	5.79581859885401	6.18325843670839	6.1427534973223	6.10952957216328	5.90400529001113	6.04096429464964	5.90924400996789	5.82393745852436	6.11746684332363	6.0420473184267	6.28557377057957
+"TRHDE"	5.85488419206162	7.60654821120113	8.17899164336945	7.96153313443766	8.255117385272	6.77610647328958	5.68240478283933	7.52820715136438	8.22010242825545	8.10408305033329	6.64314116175972	7.8281918403814	8.04139710145499	6.64560748177965	7.94182506802774	7.20178186724745	8.27015598360881	7.40551610989375	7.82303422069926	8.05657912372454	7.90611553216205
+"TRHDE-AS1"	5.15148669465051	5.60979681945511	6.3850449786764	6.24641654064655	6.01451572113786	6.04406066746272	5.44010209459282	5.93541422466718	6.11401699645559	5.46080333645945	4.9020380367253	5.96740477216183	6.21394517663202	5.76783931109461	6.29460788025524	5.11958224428158	6.54111637895144	5.49488763681367	5.97363168080404	6.1764652527728	5.57950043422916
+"TRHR"	4.56596275229654	4.71249182735904	4.40977735779017	4.58523106067245	4.55260803673306	4.46736127298256	4.76108227118258	4.61874429040129	4.52443338013959	4.73558371374568	4.74423600567167	4.44111084304082	4.66449574322661	4.45856571459044	5.10689568143257	4.83147713237071	4.38368528461501	4.38868458282386	4.40027309915665	4.12989232154834	4.63995977443146
+"TRIAP1"	8.18490566598244	8.38254913223955	8.62685845434308	8.3769271174745	8.48866214232846	8.31014756421715	8.20711427110764	8.28720152715729	8.58373261663865	8.33863300695279	8.27442103917999	8.31826161857392	8.26731966189868	8.26285484708849	8.59338163983557	8.65103336515731	8.14711488412681	8.65022888412795	8.535573500348	8.3096322287845	8.46079866848489
+"TRIB1"	4.96600634389909	4.27870300633036	3.67607465532301	4.06462059852879	4.47122376565165	4.07519055043807	5.05925909157524	4.96227962712036	4.2911189879052	4.51004206059155	4.26615934317911	4.42553234523078	4.04092534092284	3.57372766467816	3.71724314579447	3.83458668728087	4.30293371984358	3.95331122199485	4.03227584503964	4.32990447290203	4.33097589484894
+"TRIB2"	8.20874482991225	8.10163814396233	7.43801720808923	7.94974425918851	7.90081677970656	7.16650673448014	8.43400712599892	8.01297629260113	7.85887842227187	8.06216487225779	7.82810862618842	7.66858378157836	8.04567713588119	7.98981346140535	7.62874310697636	7.29491414806822	7.94268625403653	7.22136311089205	7.63522907238992	8.363853247334	7.54436778745283
+"TRIB3"	6.71498365542297	6.48939543307134	6.77696824263625	6.5347062800463	6.3592037409861	7.29916049243241	6.60141955524593	6.47566782281318	6.78607357911445	6.70974255652573	6.3789572090074	6.52983464603304	6.78019094756123	6.82050579680636	7.03717988665461	6.39193481315917	6.49689000889785	6.15119513069273	6.35233227675232	6.84119062831798	6.59641066429033
+"TRIL"	9.4626532344562	10.159278781773	9.44277420464576	9.06996313671941	9.24710084340907	6.88950587014985	10.2924973873801	9.63335062453399	8.4270673670593	8.95512043855626	10.5871740961731	9.10679128570188	8.11971397140437	8.28327188239751	8.17804314591019	9.52924933237373	8.80845110852326	9.80863409382076	9.37225652383128	9.09467767510844	8.18392123031963
+"TRIM11"	7.44062338716213	7.44062338716213	8.01232140597944	7.50897505495459	7.44062338716213	7.62620332491943	7.35572714789875	7.27166709109577	7.59307645778069	7.3044877411754	7.35188786312805	7.42906466909968	7.53298723297244	7.60609366865687	7.59854118544847	7.22324455174934	7.38798266568631	7.50416453770087	7.48450833534388	7.64222305591281	7.18834752276434
+"TRIM13"	8.40897408737536	7.2029706816382	8.82561710519173	8.85185559887909	8.27144696410275	8.26854138016163	8.37032004725034	7.57656331733744	8.57797746064468	8.31015400480995	7.75715295610344	8.07021768187822	8.94972556395115	7.63839203011609	8.68552113055725	8.58183479588326	7.26639390618217	8.69400600276305	8.50670675106577	7.83543820264659	8.10955869321077
+"TRIM14"	7.18221600607801	6.22571433987532	5.93390873143114	5.56880434410696	5.43765833952424	5.87453957792873	6.35399965828945	6.1921913263502	5.66286566838883	5.72939386487947	6.21168175207083	5.64732692681893	5.60194863667098	5.90469081665895	5.75079135294044	5.66628517354336	5.52269681306219	5.83093002560712	5.6038505544098	6.16058993452116	5.8258148403415
+"TRIM2"	5.37563154476032	5.60368453842332	4.56089350094268	4.88548364385296	4.46166034850697	3.99321485246642	4.16876781080549	4.75282713706228	4.43419347516414	4.16841593248765	6.7850505391968	5.10295280394682	4.67147220972827	4.32644074891511	5.23045797676844	7.49517961452613	4.98338836811329	6.45063595283735	5.23494560701738	3.99282900444135	4.93597202147542
+"TRIM21"	6.70649530772651	5.91937392374696	5.89937959054926	6.35161882980999	5.89227870300098	5.79433628287386	6.08115623292668	6.47697521657185	6.10874793854761	6.05261502321028	5.91588158171434	5.72790671256627	6.16261891496066	6.38852481811776	6.15543045494365	6.01966329571214	6.08045358727233	6.0071747629632	5.81942378633597	6.14010755888636	6.06978994571059
+"TRIM22"	9.63761420556771	8.70452099763403	7.60273680208454	8.62538329894432	8.32779579401357	8.87624399011216	8.39343578408714	9.18755221740356	8.20648864183629	8.32234633044024	8.72602851283823	8.59905926082789	8.73187569733487	9.06604032528767	8.44573916500797	8.70984340477048	8.38690596946	8.70300889882522	8.70648222698779	8.59601788733765	9.24870505032406
+"TRIM23"	6.82697126300889	7.05119791872915	6.29620550286922	6.90639154552744	7.96196734953714	5.9438680675221	6.49195141287381	7.24913819706468	6.86201967611725	7.88085382542748	7.18545258487433	7.67629209230343	6.19732210292497	5.99565409617967	6.62962075797724	7.83566648089798	7.13743448033042	7.95239248365358	7.25960501143346	7.4583103012563	7.98167764525445
+"TRIM24"	3.53932555628666	3.50714997308077	3.86993775534385	3.32587132017676	3.72299642828416	3.54127067137852	3.65075851750153	3.2540913530867	3.46924752939726	3.75872491640791	3.49660627829906	3.63758548225132	3.30648586304042	3.43808624645931	3.53046060748835	4.45098570805465	3.27283408644818	4.35171500949099	3.53932555628666	3.60911062840844	3.34342112435026
+"TRIM25"	8.69580536540943	7.77495904944029	8.24201384331531	7.90808127615063	8.11565652530105	8.34979379316751	8.02572890007834	8.19760585713158	7.81259665536764	7.69329597491068	7.7306328608348	7.90860560594906	7.84970753520154	7.89688215461185	8.03947486559095	7.70158316039618	7.7114834375124	7.61417706399625	7.59508780108556	8.28653101729714	7.83470197315014
+"TRIM29"	5.85078367833976	6.11178336122963	5.72961088577845	6.15951729455404	6.23716759460518	6.04566898624723	6.24250743802053	6.04622978665275	6.04566898624723	6.1832451387514	5.85386475991751	5.88324012709492	6.12149815695011	6.0766654351118	5.89908184109643	6.04802126844323	6.04566898624723	5.65063312726934	5.91720321932005	6.23010844130998	6.48936582933437
+"TRIM3"	5.30879553938996	5.47099865333773	5.44969832233166	5.55888784173194	5.86820250052534	5.61888097055585	5.37363643851948	5.35412952221109	5.49384803492241	5.9771410719295	5.63818208359004	6.14076632759754	5.41158529226267	5.5226901772526	5.0300432217175	5.36471737895261	5.66802006363088	6.00617388623047	5.34383065329228	6.50735269009556	6.22189035308779
+"TRIM32"	7.94883222737581	7.63321268195457	7.82809647890839	7.76688351848416	8.0324635903323	7.25548675518489	7.25470156345567	6.9627837347284	7.62107257923369	8.0148487114947	7.46982633220656	7.65843719342073	7.34219853313146	7.25056439639705	7.56879434567857	8.11889751952565	7.59406547531856	7.96731795250511	7.39167013035535	8.2542775380336	8.04669165538844
+"TRIM33"	4.34482426912406	4.84082728873014	4.90718520917642	4.70784087484553	4.71445169649251	4.84082728873014	4.59989285354111	5.04384294345482	4.91498017209618	4.82060701444317	5.20837067339797	4.84082728873014	4.84082728873014	4.66751611881665	5.1565572647779	4.65957366997427	4.98338101638845	4.50236915073579	4.9749009784483	4.48700566528285	4.64780046961336
+"TRIM35"	6.86278696602064	6.90441784877413	7.2084289554151	6.76889537870552	7.18186864512627	7.16394317759635	6.57748930568427	6.58117775956705	6.63631453584164	6.80112272581393	6.75499769086761	6.74956670922315	6.90071243686313	6.99243431052131	6.79492596660607	7.21665642768774	6.82878023017204	7.19705080455207	6.56197236447677	7.10093678350926	6.87337288836361
+"TRIM36"	6.32887465206326	7.20346614286036	7.78798815968387	7.17202778420746	7.96184666169601	6.5102111134989	5.99605234815473	7.08428733217738	7.67543163827832	7.65001428755347	6.90271251900884	7.20346614286036	7.31543330853188	6.45915776691304	7.72386351543865	7.23320143125022	7.84525083733197	7.58672269404496	7.53689617299744	7.79042324351656	7.94714610864849
+"TRIM37"	10.1008947326919	11.0123295068765	11.2686523484924	10.8249659849248	11.4019662792213	10.6176529977511	9.75948412828974	10.5897006538282	11.1554220551554	11.2928193919725	10.2704217824708	11.0816151138151	10.9600753356399	10.4070145053664	11.1416067901184	10.5832676468968	11.2273747200753	10.8741132517037	10.9962092052718	11.1379861358456	11.2494560027242
+"TRIM38"	8.11408062043883	7.05976257355469	6.47905589500972	6.79959527476853	6.77526670367789	7.79389919575876	7.04601776315218	7.62307223518112	6.7525040072187	6.87748009978106	6.79523238345592	6.87828654993174	7.07046715179331	7.68424312053617	6.82904016663405	7.09519610763253	6.73296554000109	6.92063837119347	6.98184744627175	7.46066097481509	7.38824531479144
+"TRIM4"	8.7922154015436	8.93461464845346	8.25107831185264	9.18116616738921	8.35464367089967	8.500064807834	8.43988813438855	8.61463581093326	9.00256641940356	8.71389985220137	9.0235780476103	8.94029336608515	9.17737311885696	8.39441143282113	9.03242214582387	8.97774865396081	9.14998377599506	8.55643825553672	8.87779517732117	8.33233734314109	9.022833970944
+"TRIM41"	9.17956892028617	9.04026288684448	9.34966899225806	9.01804769570688	9.03648078813491	10.1488255621532	9.51881636236764	8.79001282671565	9.00220831290822	8.99797107788659	9.25921854474996	8.85315572889035	9.37745646901694	9.7123197083717	9.2417140489549	9.22679419930852	8.81465596230118	9.56090536290874	9.17956892028617	8.88608732025819	9.24335980201069
+"TRIM42"	3.27787724009395	3.31394912552841	3.33025038764015	3.38815919666752	3.2067183966537	3.52232563452253	3.39258594095506	3.31394912552841	3.24700014254238	3.31394912552841	3.05354204709159	3.24855050757998	3.5350884629494	3.40978348204787	3.37332877262536	3.49075144687528	3.11471445240891	3.19031656445006	3.30616472105794	3.18530149031099	3.16724638349924
+"TRIM44"	6.58903285182029	6.97802679882026	7.37461946167336	6.65528260534603	7.50821264589264	7.00435609054062	6.89808339866884	6.79974629653748	6.78244903598662	6.88570043572362	6.74407869219782	7.67748357620604	6.56311857732287	6.67555666809446	6.8989753034668	7.22674010828353	7.18571023669775	7.18935961961359	6.88726450933849	7.30514038197484	7.14131563590005
+"TRIM45"	6.78206430457926	7.01560138879384	7.14726880174002	6.32649989624807	6.66698065436725	6.33569878556667	6.42650233307659	6.36823611070444	6.36684748168555	6.49576276296102	7.19683666124894	6.27374699187575	6.13160686401451	6.43119657586504	6.20715856019105	7.05554989177074	6.26964998557487	6.75215691468486	6.39503212440833	6.21144385249889	6.28552169706969
+"TRIM46"	5.27454422119408	5.74167183330951	5.67060641327029	5.78900950268731	6.29742186390387	5.22145375335643	5.56305611616436	5.73971809950586	5.70791683712279	6.22480464999562	5.6465665296646	6.15934735437695	6.17593334163855	5.59513596282728	5.74311837411655	5.97874712010825	5.93972355229104	5.76565676681873	5.86784876243613	6.2656734052901	6.37086907102612
+"TRIM47"	9.01885442002577	8.78576466087865	8.35985458357374	8.62382076178663	8.3046149808297	9.84584979803119	8.82506600939295	9.89149473884099	7.81565119071814	8.42168294596736	9.35961362524344	8.72849467151934	9.22665514658302	9.18151143867351	8.60709435950666	8.80857514783947	8.27352702572302	8.8303459480698	8.2616830538831	8.48479958400084	9.20007626232958
+"TRIM5"	4.10599213628555	3.69033740988266	3.43675308069416	3.93452054510527	3.73649454617468	4.30291884282523	3.83739872295938	4.15208109972932	3.87714071996861	3.79516700493723	4.01443171962958	3.80097390685328	4.34573551848885	4.24000549025367	3.99440050714487	3.62691481943111	3.56929562591115	3.96302017819457	3.68102971060272	3.72569737327277	4.19640458568466
+"TRIM50"	5.52017440186668	5.7518519590187	5.7598409212537	6.06226047649254	5.75999274188423	5.71032027423281	6.11428527450862	5.75680114870308	5.75999274188423	5.77776439321604	5.58457400872478	5.74981895305327	5.8299791344838	6.0232621234077	5.94050900806739	5.84337250635021	5.80819497864271	5.69291469278178	6.05064649313896	5.75999274188423	5.51227413533078
+"TRIM51"	4.30354022859599	4.56513167760669	4.78672948028106	4.80964424700003	4.66387770461106	4.92441574819281	4.92441574819281	4.57525299233169	4.84333526379979	4.94717281486126	4.47553854114944	4.80626181999864	4.9506392156946	5.10423116780138	4.6636332229616	5.17042218120728	4.81044826587404	4.98192272954824	4.57814174011456	4.90395634576047	4.70957003661028
+"TRIM52"	6.89272988303354	7.16737721375877	7.40174440554334	7.40132827582175	6.88882375588731	7.3085434063204	7.1082545911968	7.54197215280984	7.52245646859167	6.96788243555346	7.32837754853407	7.3008602685927	7.10170553115554	7.20281499614564	7.79770319402181	7.22900241603357	7.17286605695631	6.81007194789883	7.34004304349482	7.42031253732692	7.09277260385584
+"TRIM52-AS1"	7.73350306042127	7.22868890714598	7.25996253064526	6.93442450454184	7.36464577726073	7.59656185053866	7.40133808450103	7.33715666468701	7.21881294553409	7.5857238812094	6.98878962276972	7.3057436368009	6.45032574286507	7.4444321204431	6.6788611921561	7.4745160417017	6.95320526231755	7.36363472491898	6.83662459483932	7.29161076883364	7.13041673834415
+"TRIM54"	5.15049389671619	5.86444263045642	5.83307840718452	5.45226470159291	5.53964866685101	5.9837825556982	6.18044146746014	5.45006951851607	5.55056468594009	5.65215805192751	5.25490662810968	5.75972258308022	5.57955799098799	5.69966650863249	5.42410472493644	5.34761271148487	5.47479175657585	5.28082923459659	5.6355314626734	5.5646264680287	5.49803316359069
+"TRIM55"	3.28802764660957	3.62150462887649	3.51767760204841	3.84232318792524	3.9274752366159	3.62990504746595	4.25785863896269	3.56756802496798	3.69750539487044	3.50256395921346	3.54127067137852	3.42420190102902	3.72623161015323	3.67542008729504	3.8301782993022	3.75377970684807	3.5940220400786	3.4032213560495	3.62838609998472	3.5940220400786	3.55844570506376
+"TRIM56"	7.72330626408017	6.38571609185807	6.60424680594401	5.99066518514105	5.98737603366594	7.44865687906027	7.00114192010537	6.85900479935044	6.30091216066544	5.99702604188658	6.86337711503178	5.94556862873204	6.18037228811739	6.92911942099716	6.40304895304817	6.73730971859706	6.22436321691284	7.52436138247908	6.3005752450683	6.18013384405285	6.07752419170842
+"TRIM58"	3.72411025622112	3.94999675195281	3.52692867126452	3.88794258936629	4.019662264578	4.04244279082215	3.95755622097006	3.77787485884828	4.15505299431396	4.29264057609404	3.76695226946819	3.58404169619719	4.29875313292645	4.09221918035013	4.12508773889136	3.39965553779288	4.04944455457107	3.58985633017982	4.09300812870169	4.07948032120571	3.94847753638272
+"TRIM59"	6.51850236132826	6.97269692767996	6.14155771656134	6.05090967789313	6.18308890319696	6.22414941880654	4.96379206411703	5.48390793445162	5.14785645014479	4.77319616086008	8.16062262154394	5.25130741084429	4.47576420263011	5.59317013815161	5.10926610880052	8.56090673940449	5.8177186416415	8.18827810843082	6.19842498757959	4.75235246468052	5.68605715656749
+"TRIM6"	4.59548420342717	4.08704899298002	4.03235250918808	3.87836611499514	3.76649585251223	4.34598848773675	3.9660072090085	3.75802152249739	3.93301968401327	3.9660072090085	4.3278950132667	3.84147003895898	3.82320687536392	3.90716366807258	3.93453555813326	4.38881340053819	3.59924695640128	4.17186970401175	3.9660072090085	4.13822259328705	4.0535318446846
+"TRIM61"	5.3453953989963	5.39576317200021	5.40289180474062	5.52252528297767	5.55050036941202	5.09131988035325	5.28421309072393	5.55319513880774	5.28614472993138	5.22215632988417	5.64644444909643	5.47758904684053	5.49753289905158	5.53090897671014	5.90066592134245	5.22881527915291	5.33300976519366	5.32044159804188	5.1810422294334	5.56414680577937	5.1810422294334
+"TRIM62"	7.21742916436323	7.4153144963423	7.36063483200296	7.4106871911114	7.28435874817521	8.13918297354759	7.70849605542177	7.22581907772014	7.16338121431626	7.37097571431784	7.52117611999185	7.18736922460632	7.53353874603706	7.88554109013135	7.15343021612833	7.86839700424705	7.29555982553928	8.10526039726833	7.21352147795104	7.29793250349818	7.24064219465139
+"TRIM63"	4.16323146629887	4.28453765950996	4.42171537832551	4.59373672701496	4.33250745783794	4.93359820334073	4.87134225790996	4.41197172019015	4.44844349490358	4.64199500636017	4.38955389030149	4.5317697982095	4.63708728563185	4.78129091742272	4.58554949064929	4.42271405628932	4.40426869549589	4.45073233666808	4.44844349490358	4.41644281758322	4.32075179576812
+"TRIM65"	6.87057454753501	6.89338164762676	6.47230251633134	7.04895780507463	6.63774856055973	6.77653621679848	6.91208762984889	6.72177657915454	7.10763959372639	6.89338164762676	6.95869794246567	6.85047895603602	7.14011080291466	6.72030589567313	6.66846527075555	7.12042703786991	7.01722921766923	6.87999676145264	6.95948040291184	6.56703609010806	7.01351755988366
+"TRIM66"	6.46010609548702	6.82759740262702	7.15426844430258	6.6081807407527	7.23568283511639	6.84795423378298	6.220633647766	6.60818183526669	6.83055870312139	6.63145972672778	6.83407067279701	6.72042562788805	6.26495749264539	6.62875113814489	6.41725829234193	6.83275307575226	6.84681440283347	6.58345434520789	6.40382767411492	6.77230749791147	6.66101691426689
+"TRIM67"	6.90267123062436	6.91288352893382	6.88328160903599	6.76814110177158	6.96805148757346	6.90267123062436	7.05121545531378	6.89889062253711	6.82079429228261	6.88872171891403	6.74013080836861	7.0429168028607	7.15473537394232	6.90267123062436	7.10044226764807	6.75325221284542	6.92235022453807	6.41410124547636	7.08757972010123	6.84288924004667	6.98303970934623
+"TRIM67-AS1"	5.4675713506471	5.5434023595541	5.38271629139111	5.74569839335647	5.66924473452819	5.80207112058497	5.90979453110233	5.50487304763304	5.56346007100093	5.52218559757601	5.35521124444324	5.61383230247342	5.67685945339312	5.89733877091617	5.69405464023164	5.71402195633425	5.63344496753151	5.2132113963162	5.43441179675256	5.22309478594107	5.77166473902068
+"TRIM68"	8.04645830020206	7.76721362233669	7.81259859577478	7.52532515146525	7.65450934418381	7.35695670811857	7.66132717943981	7.66252789404464	7.68897082104073	7.46454709010307	7.74343304190543	7.4998269077891	7.17075319239534	7.56499582737185	7.36308238680871	8.21859509897108	7.5750658270126	8.17590674388113	7.34479804415005	7.774193048691	7.53587834360835
+"TRIM7"	5.29021831818679	5.45011952744087	5.80261834247424	5.42369108315548	5.78819461145332	5.4088827919636	5.77413679456008	5.6042021175661	5.63537941352477	5.57892438351722	5.28520976843225	5.76201493320262	5.99506798020954	5.90896915316738	5.37682447631082	5.53840305051408	5.52269681306219	5.63828899016293	5.51553267270212	5.83158424061056	5.60601713038008
+"TRIM72"	5.67622733946628	6.04329647282764	5.92521495046112	6.0709816779277	5.98690154678842	6.05393994907892	6.087053608223	6.01485532131377	5.9723301030307	6.12059484398192	5.98775010793472	6.03322788174601	6.17150909997925	6.22252446899197	6.2548013431733	5.97054472187336	6.17061366210452	5.60202709598026	6.07715687163184	5.85509981716277	6.11032200669637
+"TRIM8"	7.46603075705744	6.8543669487197	5.8140392058051	8.00708760668019	6.61199328951794	6.3643480768716	7.84966232748149	7.28128557990104	7.25737843942314	7.15507793911858	7.53352573793506	7.42751376852352	7.53904177068739	6.6819527570061	6.73763483861844	7.00511106922898	7.00342868300892	6.79473037046844	7.20559139637832	7.26905503304995	7.02277230470955
+"TRIM9"	7.52760983045436	8.16134269353849	8.40720674351936	8.09354419139366	8.5745130980464	7.92574970411561	7.08774064761533	8.26609160350104	8.14910577579959	8.50491812455548	7.77054150697819	8.635610724586	8.09042425420366	7.26461798892823	7.74855338068211	7.84809664650916	8.31230874228985	7.99465742001226	7.87591602212121	8.59313713021666	8.20487702212248
+"TRIML1"	4.54718254244742	4.73258142501984	4.75622459314578	4.83328452202141	4.66784483447504	4.9899468017748	4.40074785055069	4.73258142501984	4.49940565174769	4.67484196181746	4.63296254719695	4.84617446555677	5.00066836476003	4.60444532242018	4.67211657454676	4.93482188801462	4.57852309739304	4.55246436723073	4.78351293193205	4.67164005030881	4.83428872472705
+"TRIML2"	5.64446418849825	5.7637414832805	5.97402330631566	5.6908597248903	5.6158125814779	5.77001484075164	6.11971436468866	5.47389764126414	5.5946625146383	6.02506817381098	5.83504086166707	5.75405932367032	5.81004247696961	6.12913551924416	5.84740780049052	5.37872322238376	5.79337365664003	5.64284336992517	5.99798805310273	5.87781461378233	5.78052536235352
+"TRIO"	7.32055665753943	7.35344322921877	8.06338879094227	7.77156660460735	7.42029028897291	7.39084470835742	7.30852863898008	7.8520351826586	8.07659381831432	7.30495340084343	7.22022069845884	7.71918619359065	7.85332936379931	7.66193752052556	8.13380836611424	6.09423219991745	7.8199654219135	7.18625150301614	7.81116785849565	7.07012311284849	7.22465816658706
+"TRIOBP"	8.61475142430695	7.16004546647433	6.97534241090504	7.28301642972853	6.91663896842551	7.55306610660573	7.41229951170628	7.31202253642898	6.75944916014033	7.19026900709797	7.53942231481781	6.84031478503584	7.05181374559004	7.54783840033964	6.92063837119347	7.00693217964373	6.72623993995935	7.35013725962998	6.86430286655359	7.4534546890504	7.3662119129901
+"TRIP10"	8.03224683921008	6.72956570538904	6.31887538868489	7.42437851865565	6.73321291682563	8.47823024197419	8.05724821832658	8.16384858385731	7.3335307142617	7.01207585087092	6.9087163154104	7.21263954206261	8.20332378706435	8.1020761731	7.73148465357655	6.63631020502985	7.15974454049065	7.07237266471225	7.60315905839421	7.10938666770312	7.13497259979423
+"TRIP11"	6.54009249102074	6.23215096981965	5.72034498343114	5.93625310994665	5.97552168515805	5.4441217280283	5.90369248468898	5.73289950591789	5.60699841762584	5.73586417311183	6.28213707297629	5.68158015799878	5.72472313791228	6.0088375330385	5.68519644295041	6.75172182254693	6.0088375330385	6.45990148830216	6.06861343373949	6.12324982893769	6.08073463556325
+"TRIP12"	9.99829640156288	9.72433958773254	9.65727658664227	9.62643958300055	9.81951629820995	9.54933997352827	9.49276263570986	10.0507979033658	9.57437983898528	9.73181054164204	9.71100318362149	9.70475431755132	9.41012903857679	9.37697043695424	9.76868599615695	10.1609776944714	9.72660233114078	10.1038675770303	9.85621270258929	9.86740861078163	9.72680834372091
+"TRIP13"	5.30462633288258	5.43683804835429	6.32339799685332	5.61528739208645	5.92275536112727	5.26349931215996	5.57777148346966	5.63428142237491	5.874977497495	5.75625533553128	5.23985471783532	5.91497449444146	5.57421870145968	5.12906069912838	5.5403782203055	5.32481712655226	5.93677191233105	5.46792708789613	5.82641487637499	6.22652815031014	5.8668976310647
+"TRIP4"	7.68153259482798	7.37188772470777	7.28372018572267	7.22543857310561	7.03520378422674	7.23370613611846	6.79997231668024	7.39675184174383	7.20606664021634	6.99728121221048	7.39402748193178	6.75431646841139	7.25439197302773	7.22612701792402	7.45846945317741	7.76430616929638	6.92799149083855	7.63861142087371	7.23982737143772	7.13387618824127	7.05572851241444
+"TRIP6"	9.36331382366261	8.13212158930543	8.05958257435797	8.00539155117176	7.63792466567612	7.74321199760945	8.31335262926973	8.40408391886895	7.6661315468114	8.00539155117176	8.9039002675545	7.9200347580273	7.63942803680686	8.04104070675799	7.60374559183365	8.31755362520751	7.69500637340313	8.00539155117176	8.17223863109277	8.0602473130085	7.7212493706053
+"TRIQK"	8.01196878797439	7.86763979662735	7.28279128188224	7.6905008318476	7.87850891504369	7.05449738112728	7.46730889166541	8.08496181989203	7.75495573590002	8.10001520608419	8.06588637575506	7.82964012766324	7.07958220812009	6.90954562446432	7.4180579811716	8.19761810272197	7.83862294297688	8.07572463243478	7.94171235073384	7.90315950760178	8.01566285006468
+"TRIR"	10.1024493779279	9.84423079549003	10.1498289662744	10.0671864597311	10.1043986144378	10.3152399461367	10.074312840906	9.99831067857117	10.0153127025723	10.1158858202898	9.9178541996486	9.92591892651641	10.0319001090394	10.0222268066056	10.0222268066056	9.79225364760538	9.93911430078916	10.1070639990177	9.96328240707357	10.1572109863545	9.98687164176228
+"TRIT1"	7.38577380215919	7.71804466805052	7.84175578156729	7.49525393686157	7.55136841708006	7.48244383593953	6.93903203608	7.63212142989801	7.37068768295681	7.55136841708006	7.59676625738462	7.70314314306713	7.45343554084581	7.27831403434202	7.65260307039021	7.63419990059927	7.59373459534728	7.98087602168399	7.37805703873717	7.40640521367918	7.62650088328135
+"TRMO"	7.23573090892828	7.34117608090147	7.32176460976233	7.0532834937894	7.37996581921046	6.71333122215981	7.4079517716207	7.02529568695731	7.23573090892828	7.27276423050784	7.49355690109221	7.37266422773094	7.1612078365093	7.21275851227008	6.96140889404221	7.64524148235947	7.17631177540421	7.44867847137104	7.11000701800561	7.41354960736811	7.02744488184817
+"TRMT1"	8.46680979610538	8.39230471879847	8.67778336788919	8.35266322870603	8.23805990074453	8.62368382739713	8.50877766741801	8.35862576020049	8.14319269964466	7.97566388565484	8.42348474597722	8.20610642755752	8.35266322870603	8.62177568742446	8.23617156446652	8.3126946547683	8.1814131665721	8.58736589417211	8.40443105568637	8.39470773660739	8.30042671823518
+"TRMT10A"	5.18688560948389	5.17897583377368	5.31368588267293	4.9615462382249	5.52732616180023	5.53351126875625	5.05945367312516	5.14627395858745	5.13160624054223	5.06149332048104	5.7101018959123	4.95979257569473	4.95184455070648	5.10549360652168	5.00038051219841	6.12971613204503	4.86906348018806	5.86923350303498	5.01744074131574	4.83851391392687	4.7096388695463
+"TRMT10B"	3.66952691781992	3.66862166259962	3.66862166259962	3.60360097706167	3.6669036605645	3.86773662105292	3.73525418465137	3.66862166259962	3.94906498984908	3.94508584443588	3.81400635126166	3.58020721668009	3.38608774901872	4.09377193979152	3.6932892787747	4.12050005789674	3.6088136353692	4.40668769835061	3.60872354990039	3.59719020335611	3.47951234291859
+"TRMT10C"	7.02820570386203	7.21551436407051	7.57423433179564	7.16944555847833	7.82172648426134	6.65613226679332	6.78215236820541	6.97799028627471	7.41374595138043	7.7093464062005	6.99004031895912	7.23755299509616	6.87002360138339	6.64035499555839	7.37560762577716	7.49128569400969	7.16376272477535	7.47778477592787	7.22073506291054	7.88120711738599	7.53380534600331
+"TRMT11"	7.65805443104775	8.17140442093973	8.44907560840621	7.57747822928095	8.21283298576701	7.68587221444816	7.14992008301038	8.07174977941588	7.56458211423243	7.88201598036648	8.34461933214982	8.22746286454007	7.6908476895744	7.33879247415886	7.68014785422428	8.16060555207341	7.87842664110763	8.32945006363145	7.60673288285198	7.78859997238922	7.85891071756485
+"TRMT112"	10.2774925086855	10.2623275475388	10.3930642952227	10.3028875240469	10.3197885266555	10.1624420596183	10.1592561547432	9.93554308623305	10.353727593458	10.725014702177	10.4025664720597	10.3872889344517	10.0500959953952	10.1513476848056	10.2113632678655	10.5205969539256	10.2100989319054	10.5709551275061	10.5654089499447	10.5995215649975	10.3667717661547
+"TRMT12"	6.97860526800384	6.82811244491149	7.17681223646773	7.06675514572769	6.97703441934946	6.43575631296485	6.7240383678156	6.7381158502944	7.10063888785033	7.06275452924511	6.89129037853189	6.88591308660827	6.87416853140214	6.6065472235076	7.08389677339466	7.08682552536858	6.90696431910485	7.37529337697304	7.0019029876701	6.9842868053619	6.89797994867501
+"TRMT13"	5.92553634732532	6.36409644975568	6.84736633020553	6.49542335596164	6.43028756293809	5.82758144054169	5.7150041910834	5.52367337356607	6.11874015205373	5.10302205911188	7.06857594618513	5.66749313551821	5.64468785979478	5.96208638964499	6.46654086522946	7.1840192652587	5.21257450305648	6.81044267234089	6.33996187742872	5.69112809049374	6.25170139163382
+"TRMT1L"	6.3619477779275	6.51268877098212	5.80934802385753	6.0723029384691	6.87280681274816	6.66237402427022	6.08774907774815	7.0459213342517	6.60183440260367	6.48199457666455	6.43947991125544	6.79758646077907	6.00949181742132	5.94263473420679	5.90931183960066	7.0758382735572	6.57428070025303	6.9938374925481	6.40933705127633	6.79780327280218	7.14671621057322
+"TRMT2A"	7.66064627778599	7.42525352644022	7.74104491601955	7.54105177796205	7.56210645629866	7.41113117251118	7.37413649049256	7.49299737486934	7.41015802255955	7.66769341584209	7.57459333383701	7.44180928469449	7.59506295151707	7.5623105017394	7.5199355431158	7.51724885974248	7.54289494633838	7.54105177796205	7.54105177796205	7.54105177796205	7.62491242154727
+"TRMT2B"	7.55747673326572	7.79631111952332	6.08456024302436	7.63590478459505	6.63263647936287	5.66733109585491	7.45076916108396	7.52152838230004	7.74149676273626	8.07403155852732	7.38551254377809	7.8964307836473	7.5634839385395	7.59995832655937	8.00128722351531	7.49589809635006	7.74657159154211	6.29568825093692	7.83994718611895	7.68916985630225	7.65849281371521
+"TRMT44"	6.88703827461232	7.11422275699875	6.74062670768673	7.10956922329763	7.03739576899221	7.03749407477784	7.02408366529991	6.93522813171433	7.02127530453841	7.29879224302021	6.9626087342813	7.14010106234666	7.1896644005847	6.95874659613867	6.7543794577308	7.0839875246391	7.15001379869733	6.84992787287058	7.15704777499168	7.01586344517791	7.24558855304239
+"TRMT5"	6.10621928226464	6.05301517822095	5.56340202609441	5.50076182085259	6.05202498827358	5.02911786542874	5.57115474794495	6.07874405271421	5.70735587560714	5.9841263243859	5.77350757655182	5.62781283460412	5.29115639572597	5.19348183073671	5.51932660407939	5.90253023672403	5.26561215337844	5.87806876980514	5.68293037325427	6.07341161806161	6.03909919478998
+"TRMT6"	6.59060676822724	7.19270943549623	7.25628707635479	6.93222000010971	7.4403159156875	6.95615867330208	5.82036331752396	6.4967498662513	7.03952649262424	7.56348686925396	7.08589866245189	7.14733448114595	7.15671816746433	6.72215921664424	6.76360135492554	7.00339755171611	6.97516746539439	7.46557266168818	6.87109983541313	7.06446251499217	7.25722320706878
+"TRMT61A"	6.54809057595236	6.31527241507338	6.29594809017507	6.20247364163779	6.08674752032131	6.00534684716015	6.33996187742872	6.07348306034248	6.14151398979304	6.66101691426689	6.57787340137177	6.33996187742872	6.33996187742872	6.21330292485421	6.06968439650584	6.71890202098195	6.2022701456271	6.21885863131411	6.4596899107826	6.52793214030612	6.48241501827355
+"TRMT61B"	8.01349518306527	7.83607051044037	8.12446588079731	7.28689157683067	7.97057179369589	7.51974874510549	6.59246805030197	7.41815787069686	7.58760436962246	7.81938437832501	7.4757830037513	7.55992953689829	7.53679129793542	7.37592002781289	7.43219720413864	7.70100858662735	7.704170056819	8.0268167029092	7.51748902525875	8.11351620209962	7.60314181356076
+"TRMT9B"	5.38338555241052	5.88079086641175	5.59707009383553	5.14506253316503	6.02125372813245	5.00330548996474	4.64590074990127	5.62300062828021	5.7801991506203	5.80356432500126	5.41292489904262	6.29109203044944	5.29115639572597	4.90578862671273	5.41503902535833	5.74376843479815	5.91327356501492	5.27700673170126	5.47212694423686	6.54222442156856	5.95594259241018
+"TRMU"	4.78057709465034	4.78057709465034	4.99522032204103	4.9376522829495	4.57523674974964	4.95943014296011	4.81509292191155	4.54599495926006	4.62072184000544	4.70845927088612	4.78057709465034	4.77066685788699	4.71861902869562	5.1367263430002	4.69689395133968	5.12671747950237	4.70509395794148	4.68375780416441	4.9183433703079	4.9073420189136	4.8342593096189
+"TRNAU1AP"	7.09558713127764	6.5082653121406	6.64540772596642	6.54073036784031	6.13544274765477	7.0447987375273	6.60150580192883	6.74539642359874	6.77001790756302	6.42335903244632	6.86268458362597	6.26477259006815	6.492024407039	6.87470913894723	6.7852066665476	6.87613428647154	6.36194854406358	7.09184731113329	6.54991061418118	6.30098527817548	6.43935949810204
+"TRNP1"	7.77874515532152	8.03240747264272	8.82773098533913	8.73557221651765	8.94010704940422	8.06077178650535	7.93388709921645	8.2399921123709	8.32896285004281	8.92810205058678	7.62726633909465	8.69774752092804	8.86491176877345	8.1275960516048	8.79882966552372	8.02583784839669	8.91233741542636	8.40653324613922	8.72820612174154	8.96881944859024	8.91019409925251
+"TRNT1"	6.70449545081739	6.96457277420127	7.18711775086237	6.92794252234555	7.17893871773485	6.51192740528354	6.04677082348989	6.72153972983826	6.8986047527715	6.48986542675591	6.94873532848141	6.87337288836361	6.87337288836361	6.22367429251234	7.04865389818253	7.2843780627788	6.85059978583388	7.23515178232888	6.88023038136747	6.97906688653743	7.08742666593097
+"TRO"	6.1549000541309	6.72541313034226	7.51161022353707	7.08073469431306	7.48446535485074	7.1749289851723	5.92192321483361	7.09353018923324	7.01480847729082	7.80510273316204	6.52066819169955	7.83277905228443	6.70155870541378	6.15268979948979	6.79073169387024	7.13032709359118	7.64065780704088	7.48186618676671	7.13032709359118	8.0281777735797	7.3396664863318
+"TROAP"	6.29051509314462	6.22436321691284	6.08323762079316	6.28547839490037	5.93117398469806	6.33826500249025	6.61738703766382	6.31887150810816	6.26615595937059	6.13356319632092	6.17009288973757	6.03460186236503	6.34569689573153	6.59645849546553	6.38659029822257	5.98737116145469	6.19628551967303	5.90447813746558	6.00043939240283	6.01656730871576	6.42864120068373
+"TRPA1"	4.78733670110906	4.54434013780727	4.6286386280835	4.69776782187577	4.64530715599562	4.52082165443956	4.70432052766114	4.53552366041602	4.68697150964615	4.49702863265887	4.43659883481291	4.68843594150375	4.67609510014369	4.94184260902783	4.76379215910594	4.61042920329378	4.65575115755826	4.61384162977058	4.57962974038981	4.74762065774256	4.5378818252792
+"TRPC1"	5.51749837460139	6.23215096981965	5.96512516884181	4.57018250120868	6.4897429800096	5.09041752061999	4.42097834857362	5.54114218648136	5.19614471433793	6.03014705112825	6.11175773330908	6.00473567730998	4.16495331351696	4.46255106843461	4.68473159208767	6.47745994618691	5.87407382674097	6.64550332745027	5.43880539540108	6.28321440800506	6.41193048619796
+"TRPC3"	4.1693497821183	4.58257030316848	4.54215003956338	4.56181731724535	4.37499794456405	4.45990108446543	4.49852897839739	4.39701891707222	4.65620408532316	4.56789045250392	4.21701750148738	4.73420723165542	4.72931584021819	4.53595908194794	4.46414605005156	4.61222961851398	4.52709742049743	4.27181983866528	4.31616944543889	4.84417164065205	4.44049675076155
+"TRPC4"	7.09380704271769	7.0059604944301	7.13316513816564	6.99244268280174	6.88238366756853	7.58878770334873	7.48271700651073	7.19364430745277	7.20206711077248	7.25242763321323	6.91772945250165	7.33264625602906	7.40272220710434	7.6576995086726	7.22005140533794	6.83791847071605	7.20206711077248	6.7941825549208	7.15048139652211	7.20568084640197	7.36739252263457
+"TRPC4AP"	7.97980253109498	7.8277104426854	7.88616933493008	7.71931932749282	7.88616933493008	8.15303282654863	7.68153240827658	7.78702938687126	7.77896312210851	8.03905039517159	8.06607060601328	8.01525482468252	7.54843161322666	7.79338438065043	7.69969843955434	7.97108216560046	7.95681534637821	8.1739251549904	7.71002853761039	8.15485580022754	8.00364676428321
+"TRPC5"	4.35071385835383	4.34057268666813	4.57243801008093	3.73126527756768	4.09391951106331	4.56369885965417	4.25380631096832	4.11194898855935	4.28920226829443	3.99644690867784	4.12590318330011	4.07411652337135	4.44156948787315	4.60728810440547	4.13023307873187	4.299259855964	4.17928675126476	4.17253471952099	4.24148750931088	3.87838929135557	4.00154188711949
+"TRPC5OS"	3.44859369539056	3.53955655646185	3.6490022710919	3.64955607090818	3.35497191669219	3.36223251372254	3.71643649790487	3.54432104023343	3.46040061909796	3.40674274699271	3.76378354540524	3.4547989907513	3.37731354687161	3.45618424654	3.37819224201309	3.48223187603192	3.36937865708776	3.44859369539056	3.44859369539056	3.29685011421186	3.38375185377975
+"TRPC6"	4.43554823325822	4.44943034257845	4.40173624815529	4.22789001161004	4.17311383851756	4.18648384300495	4.4021716333042	4.36631870340393	4.40442764126614	4.64864119326329	4.2066382676219	4.38708331843874	4.5281757481123	4.42677490811336	4.52645182232763	4.2947976575029	4.45285001358535	4.41644281758322	4.40442764126614	4.41644281758322	4.89807903081933
+"TRPC7"	3.72094605131201	3.75868900157223	4.10246670667321	4.0642817558582	3.93490476277789	4.22418977974962	4.25964472169835	3.96779852709763	3.89921961057697	3.88246239543316	3.84658664238838	3.80802506515342	3.92271562243758	4.25939872474527	3.85559197192185	3.84746626312461	3.92400223678065	4.0983945141524	3.90900339242868	3.77535600768812	3.89709183956699
+"TRPM1"	2.8134993622306	2.81641428639624	2.83964968263116	2.87463861681306	2.74823149033041	3.04048422142886	3.13645256648828	2.70028253149118	2.89823623128049	2.93761109675452	2.77650572473585	2.69020693155947	2.88402928747081	2.95608851996989	2.84966013688478	2.63428040779759	2.76635194826419	2.95230893690578	2.71096664415543	2.81641428639624	2.9301186228039
+"TRPM2"	7.383978048107	7.62893921626299	7.85385166228506	7.51913114798449	7.62893921626299	8.03764590032459	7.60803382769739	7.47319828152914	7.36696556311399	7.81102525901199	7.40167378561954	7.68195090176335	7.86400977182827	7.80004079391955	7.62893921626299	7.20326210237174	7.79962381505406	7.60110421519563	7.53370543146467	7.99409948165826	7.97453295560904
+"TRPM2-AS"	6.10736536740358	6.13680773562932	6.35020619525228	6.33655653743971	6.12788546323276	6.13513412819945	6.21491503450691	6.26971257758778	6.4102046880714	6.3105120045202	6.45404038310309	6.37525506961485	6.62943280016411	6.65125271824947	6.42167291970656	5.98342270016154	6.52813120898041	6.24119598367309	6.50486911363902	5.9721574541798	6.41894256411801
+"TRPM3"	6.88714861515482	6.07447242365776	6.11171525935832	6.15066851200164	6.66946972157606	5.42056107287557	7.31932738688841	7.33778262904079	6.26869713895271	6.70188949766506	6.54809057595236	6.43476188974899	5.52614891507397	5.98858687933335	5.7978075695327	6.36162284047981	6.64576070704879	6.49423943161767	6.38967626840586	7.24288998016833	6.20209524926746
+"TRPM4"	6.25940981860363	6.07447242365776	6.0558713242961	5.45654607945885	5.98393347795697	6.69776733774333	6.38569560078144	5.9960193302303	5.6193825238352	5.9841263243859	5.72903924455184	5.85904090297896	6.12185849228908	6.49083280170394	5.9385088584255	5.33679689184214	5.9175982773009	5.78617945977011	5.9883222709216	6.05478847491465	5.87443225598297
+"TRPM5"	5.12692561051345	5.21283146227815	5.48794589885137	5.39576317200021	5.18364389860517	5.5075575899651	5.66924473452819	5.3232114155945	5.54880935574919	5.38558345644738	5.17969236266113	5.40757758649822	5.73856971362421	5.68604312593152	5.40224793912775	5.03828058662455	5.37529849984082	5.03443942587283	5.58611074292671	5.3577697361963	5.38335350125107
+"TRPM6"	4.94296630836565	5.16653478438926	4.71677975292429	4.17505849700442	4.78022337594593	5.24470157969838	3.74810184998137	4.65900729406209	4.12854785529764	4.26878260524226	5.91287738849652	4.192874635882	4.06907633426825	4.38726059521497	4.02902103000701	6.34983139958389	4.91708165502444	6.82431893349174	4.27593595135587	4.08717718746205	4.47665717963971
+"TRPM7"	6.48682272412193	6.75844529288893	6.80190290366883	6.42166512332751	7.04321819807545	7.230154728573	6.72449284205101	6.86337711503178	7.05224635229932	6.83975949649852	6.62762644926524	6.98218212263473	6.71678823794767	7.12337068997426	6.86337711503178	6.86337711503178	7.01695064606048	6.866719309477	6.62912585206048	7.14240530284476	6.53036259315506
+"TRPM8"	5.61169426626461	5.50006978236724	5.6511717476658	5.59824563850435	5.55890411844152	6.10243360580203	6.25299172797238	5.62976239055106	5.53111381325448	5.5741556479849	5.33791636608029	5.64837741800633	5.60036618633465	6.18326506685079	5.70498913698645	5.62052383583875	5.7252295854761	5.39416392341176	5.80606933277158	5.63006588910225	5.5214992453031
+"TRPS1"	8.49945604300241	7.62812222625218	7.06666761084124	7.59065647262725	7.42663205346132	6.9886984352826	8.18159965514618	8.19876738437387	7.49089491258119	7.28193154751261	8.02108002801461	7.28607603162379	7.1152916783136	6.75626772820235	7.11687633516572	7.46568661546268	7.53994508925482	7.44320575621461	7.85252344310188	7.44642709254544	6.4849532165841
+"TRPT1"	8.45752233035795	8.43239367221162	8.46967609578454	8.17162222951088	8.33086996737354	8.55680316551857	8.28580341271873	8.18502315248269	8.08321362567549	8.68267115363419	8.48348777006112	8.32545570942255	8.26280173260766	8.47230582597497	8.10278316042182	8.34959790171069	8.17278499383624	8.40585781921214	8.19946867176452	8.53061042736329	8.44933764868861
+"TRPV1"	7.46142043358199	7.06538584337665	7.71376757578776	7.1267932939998	6.9679591355139	7.15472016844994	7.87769567150335	6.85249441145176	7.06538584337665	6.22990559241145	7.25101615882117	6.8555791353892	7.0598602430403	7.23950630956519	7.05936596819668	7.40892269816793	6.99576787652922	7.66634196469318	6.79556322807354	6.61647191780254	6.71563745604977
+"TRPV2"	6.75832977654176	6.33671627617288	6.45640655648192	6.59891514943945	6.71724108766306	6.91200912325573	6.55756783171865	6.03189188016715	6.35160513378955	6.9172627879237	6.16505655186855	6.76466538701557	6.34685411253733	6.59255320606239	5.96259195827653	6.24142340862724	6.45640655648192	6.3632865137152	6.42476980751571	6.47261077526039	6.80613966879681
+"TRPV3"	4.05379707591053	3.95183462895785	4.01389985017567	4.33801317650768	3.84746626312461	3.88149646306072	4.03212208537932	3.98884487192532	4.15615654479283	4.23447070656901	4.23785010629626	3.89110382235343	4.10464597201645	4.17230430887985	4.27093213814974	4.23546773759476	4.36066086341105	3.71944685806819	4.09752107988901	4.00469379059507	4.03568421550077
+"TRPV4"	5.61400712358843	5.52250183452658	5.6211699392222	5.62052383583875	5.46335616513204	5.70557204417467	6.07835654457557	5.44045168632011	5.73118739234507	5.61400712358843	5.4605734620869	5.68386064962048	5.82686599125137	5.86365374132787	5.75491099937761	5.5416937103325	5.56745186103018	5.48458347062577	5.81078762263056	5.45124121372987	5.73022844280886
+"TRRAP"	7.67089103644004	7.22374804961951	7.01725606287036	6.92163593440758	7.42419460371882	7.1348122682119	7.09568892391845	7.30594476476637	7.02921791955541	7.21239426241197	7.46525200988601	7.25616530469514	6.89239947794157	6.78137171827838	6.52967209086418	7.7391648520282	7.32767596571495	8.03240747264272	6.65320162575664	7.46956328819613	7.28193154751261
+"TRUB1"	7.24424255920859	8.25515749177113	8.63493807673337	8.18230648231339	8.59888771684937	7.66369174815657	7.08790405815327	7.84168435737968	8.22033925024156	8.45733700851145	7.86302772177713	8.22265196452185	8.4003014147964	7.61855008254992	8.19361416749723	7.9754676189153	8.13763243849025	8.15891859479106	8.19610556714534	8.24133738435396	8.30612815610539
+"TRUB2"	6.82494663910179	6.87188024208238	6.72099889391691	7.12148652287948	6.97001053131014	7.13848713389856	6.707358910692	6.68991709560082	6.90661789888129	6.77926924736821	6.71112220405722	6.36487635639209	7.07579077388561	7.02970344100281	6.99063634934626	7.21997523580422	6.46745915994046	7.03780974611437	6.50086186673893	7.00987501892502	6.81345727859171
+"TSACC"	5.80512444749474	6.07447242365776	5.81724777931241	6.03837270463874	6.00142828270233	6.2454729664849	6.35095776296466	5.88996636247565	6.03765423577241	5.96228722742972	5.79974406421668	6.14295732854809	6.03404421644917	6.38498853726603	5.86429786240722	5.81500460673192	5.98776858330386	5.71512198125877	5.78283018204355	5.98776858330386	6.04406243146055
+"TSC1"	9.27791042885246	9.19332408015515	9.46492315127986	9.17837338046042	9.22033553447949	9.22997579177727	9.07978986854181	9.12696602987437	9.31848695158155	9.09185173310353	9.15941433102189	9.10248683360356	9.03149701163107	9.02407097542433	9.17601026084845	9.01759477184035	9.18560742537337	9.24737200888908	9.11535993791145	9.17805648688956	9.10912883421567
+"TSC2"	6.78492748540351	6.6123439640095	6.16325792590496	6.73529221840853	6.06277464416471	5.86454874366612	5.64471023757182	6.71595134277743	6.34981118592788	6.36285638905986	7.27303181986199	6.35340757857159	6.66176325593074	6.54759229451686	6.51605127902005	7.24953904273677	6.6537572197346	6.83417210797332	6.73780184346764	6.00596425601758	6.3387917575496
+"TSC22D1"	5.36082033345385	5.1522503023784	5.96599429559704	4.52577697602477	5.48305425746744	4.61793313063386	4.095826909909	4.67335339807159	4.20890086919533	4.83786772955503	4.98758641227899	4.75986273895593	4.33503020862413	4.59883643787819	4.40104223651612	5.46282285739704	4.41653525909326	4.99314122256328	4.43764153764983	5.1924404551035	4.70513294260422
+"TSC22D1-AS1"	5.67293601445166	6.62809983785803	6.90516710239187	6.36461611837483	6.73697517711338	6.3643480768716	5.71748496772817	6.35633490836098	6.62539362990812	6.85746473341847	6.56798730320231	6.66409315379829	6.11892682034451	6.0088375330385	6.1310330313129	6.09780613189431	6.54883092833752	6.21329659479243	6.3392044449913	6.7492331620295	6.35252293653518
+"TSC22D2"	6.66169562882496	7.02507544696864	7.07589276013934	7.46207183784907	7.61265034176549	6.94112942286746	7.04991850469186	7.57774257917539	7.83453814333132	7.91123149766043	7.06928352225644	7.94126538910767	7.74890075367829	7.36698349893284	7.83482025068103	7.15608473544169	7.9005399588692	8.04118497492025	7.57774257917539	8.02343096805109	8.03177610509842
+"TSC22D3"	8.70608099565313	7.2729340209992	6.93645494146206	7.85505486792087	7.53969278450018	7.85505486792087	8.37610025487018	7.5558486338078	7.89649117468813	8.32807139092028	7.36925260904144	8.08825233352037	7.67645354981659	7.9260034977381	7.77519666754331	7.48957406586967	7.96891517027098	7.59476056339908	8.15921449159786	8.31362325095037	7.93692507552334
+"TSC22D4"	6.62797182702179	5.6957520216842	5.97427028195732	6.22705020596541	5.71556785660368	6.9628190579804	6.50172899363289	6.18290660499876	6.05541203191158	5.43988249790719	6.04111186939246	5.7891377002014	6.4959570201457	6.50486911363902	6.41852932965281	6.26479233211695	5.89255132128376	5.87483978735589	6.00139507516414	5.62801078831105	5.64441116450753
+"TSEN15"	7.66445711232493	7.99187058595552	7.75523836455218	7.59392583938937	7.78825330349936	7.5142854703533	6.98395440058415	6.8736604841383	7.09923698812092	7.58051585177865	8.40352100918735	7.31899930205579	7.02267067282142	7.11044623683804	7.288775139763	8.63311529171263	7.06218643203759	8.64177203982619	7.3356525817216	7.41347820996767	7.39944510078124
+"TSEN2"	6.18261102955636	6.44453907261105	6.28228486609458	6.38279575012612	6.36997404815556	6.02045808450404	5.76792663425332	5.88850040111364	6.43375317582667	6.4463595939652	6.58978409372785	6.43893188273325	6.31236329269714	6.24097188956191	6.55760306617614	6.56290402350397	6.57436108505947	6.51742423699398	6.29073715888671	6.42049427002829	6.49845323009566
+"TSEN54"	7.35388924815413	7.30243137886105	7.62858470382536	7.54260372858672	7.499515044419	8.11144633663778	7.84071655793217	7.40827807340574	7.62523167282733	7.07206354137827	7.47899252443865	7.3355140071216	7.68754346758596	7.66176214422215	7.73286237277665	7.45981783785654	7.3355140071216	7.60923217816172	7.47641901263712	7.07633591613448	7.39496981828417
+"TSG101"	9.72434200006224	9.54004974445069	9.50154605532698	9.4196731835751	9.66610676593566	9.28975196860515	9.18263673106868	9.5913537621586	9.46213978636686	9.53677898517915	9.44255558222177	9.38843047439124	9.17814283354336	9.25805945904724	9.37214477408018	9.64644114386912	9.28880717598241	9.74290978844059	9.38993390106264	9.50507174197785	9.29034808136645
+"TSGA10"	5.69314783435311	5.38755227611104	5.29124458685199	5.25933259883504	5.20970285250802	4.73116545577472	5.37301685875749	5.22489928667241	5.10548573310785	4.56413515717574	5.55974002682877	5.04444303002977	5.100578141253	5.36506188567024	5.48494779037172	5.60121407503711	5.17682121916192	6.3540011158175	5.14658318337478	4.80090246082964	5.13627316405184
+"TSGA10IP"	5.81132621166504	5.85724930905678	5.89927109022614	5.95216490899095	5.83295369803163	5.90203526817882	5.96013287397383	5.84342066118077	5.88427781423796	5.91960168955038	5.72560938723637	5.83582746028158	6.25634262446737	6.17387130042598	6.09542141381074	5.77051174181598	5.84541604647954	5.73515974242537	5.87584049702047	5.5829262098017	6.04612701503684
+"TSGA13"	4.90966907379392	5.23220688750806	5.30532930440443	5.57539053611707	5.3426957481241	5.51641542581485	5.34438847121149	5.22521952286122	5.26687464666233	5.49108186827072	5.29921780414993	5.35084824991537	5.59028812007241	5.5380155197542	5.16230882908079	5.30532930440443	5.36561879425907	4.96114695348301	5.3018687586173	5.12451532334009	5.41283941665355
+"TSHB"	4.73191166355421	4.89387827184818	4.57340194582536	5.178677730901	4.97078882060693	4.99078106284729	4.90201905471371	5.04384294345482	5.09204841971215	4.94965240767156	4.66169168085484	4.92743259527469	4.98585954832807	5.051721748835	5.15072307470389	5.02908177318823	4.99011901402059	4.5955126758551	5.1469378727493	4.98548198499232	5.15230080894951
+"TSHR"	3.80518927498448	4.13178075018322	3.72721251052846	3.99978402594071	3.84305022481491	4.29500633143294	4.083937893297	3.85017154372963	4.08689322977618	3.87885219164285	3.64276540811055	3.79348697927371	4.17136251785277	4.2413577429895	3.97445999326676	4.01427305640163	3.93823678486339	3.66176878489683	3.82979858978955	3.87731262497077	4.0114082221943
+"TSHZ1"	8.68734430909411	8.7629381304336	8.73572031062932	8.80873967859648	8.49244998227919	8.57985548261144	8.81377829726	9.01057851518181	9.04642615438205	8.2142331728716	8.48589471342927	8.55406408820772	9.23552332567471	8.84538073577545	9.37701247228659	7.76190488546742	8.7120892010076	8.56674988025328	8.8615490328306	8.12621362970379	8.00487885472851
+"TSHZ2"	5.57421806382543	5.94705695515602	6.67587536726571	5.64100980224422	6.78479765507713	6.3930563933706	5.29163686495796	6.02434567107713	5.68715080071309	5.91575069749849	5.4538507408563	6.88126555940572	5.21453432812371	5.66278431995249	5.65214264370582	5.30274318513879	6.1098591621513	5.84324430367431	5.89567068548948	6.22190727837167	5.84324430367431
+"TSHZ3"	7.28120490122252	8.18285254844397	8.47333199027256	7.54935125750959	7.9600314597556	7.82325453906769	7.22735943700059	7.3638682944113	7.3414904792677	7.30643210767319	7.29362224581411	7.76901989659641	7.2980295077805	7.71657564661805	7.59887401569322	7.08446573385607	7.34458226581276	7.53477670175349	7.52112017270361	7.72209183582626	7.01307620688239
+"TSIX"	7.10486066171196	8.01810789390836	5.22819283757701	7.62065772482069	6.35475465753203	7.05024671894547	6.75369649905545	7.7552356283709	7.97763803609003	7.02771038350416	8.14449567251789	5.46367944987221	7.94450387479617	7.01816010950617	5.27127035743707	5.53286781123356	5.37834768328332	5.33750822981331	5.45150277607622	5.41689409007553	5.42138197756325
+"TSKS"	4.67295529590689	4.81726437116626	5.0993309162905	4.98569341183118	5.08820513355277	6.03507328894736	5.19341459028265	4.94895128951279	5.19175224444299	4.98272625749488	4.7980166072026	4.83851391392687	5.23746488733039	5.75867571744754	5.07606525095748	4.74257101653972	4.76684291613918	4.50005287536415	5.20608796606006	4.94895128951279	4.95943014296011
+"TSKU"	6.8135542779583	7.00021261384507	6.94006556678638	7.0415823047325	6.96932923972952	7.11913972995475	7.11192807400853	6.79180447483035	6.93019608448921	7.33424271403817	7.0031585654504	7.03499038552538	7.11424164043146	7.29994658964861	6.7737695127069	6.79019499844096	7.16486077860844	6.76700425227989	7.43636516944789	7.39479012605179	7.02597228709054
+"TSKU-AS1"	5.11170772002596	5.13880052316993	5.18513668125492	5.19223699402864	5.29231407216037	5.76217778662131	5.62117208697205	5.26265897708434	5.29958414193604	5.33275480096212	5.26265897708434	5.11158637220784	5.17889664628048	5.52470619358105	5.26265897708434	5.31585044512473	5.54536333596762	5.16523816073739	5.17152538178781	5.26265897708434	5.0386884328721
+"TSLP"	3.99751656002236	3.21505883175343	3.27064795408441	3.22910404710256	3.18775479676397	3.15706351012566	3.21663085427145	3.22870329055168	3.45962590611513	3.32253579267223	3.27420848537286	3.09713414230347	3.09041134929371	3.34008882569474	3.01091179157759	3.15828382342225	3.23796700804851	3.13699138935492	3.32573891643949	3.10445188916792	3.00549967262218
+"TSN"	8.00448023048828	8.18022743566606	7.3833137101527	7.81090262346546	8.16565200311455	7.20514260899877	7.63455739476763	7.79146338259091	7.66291214573444	8.23416086872944	8.21441732523097	8.17005851792397	7.10426339099072	6.96844301805026	7.19510651236602	8.44730534054665	7.7164587160052	8.29945410492559	7.77061916494777	8.21721351359253	8.04543498811624
+"TSNARE1"	6.91552570639217	6.55581394706274	6.81350368219709	6.85085309928052	6.82342487720973	7.53941405043255	7.41991141303164	6.71829280836833	6.76171630669246	6.94347813643628	6.85830944792044	6.99057315471968	6.98200019796774	7.03042138475091	6.61661921980846	7.09957917670247	6.91552570639217	6.91552570639217	6.99389337279622	6.95465886163249	6.99057315471968
+"TSNAX"	8.47954676060237	9.02855092267901	9.53380512350925	8.6754418880243	9.31506165733209	8.3585648673298	7.57353306079929	8.59355010620516	8.79454456516427	9.18847070635323	9.04675348072191	9.0578325775839	8.3373840403949	8.01498912764732	8.54535247881531	8.99483568211966	8.83136108709197	9.19753240025196	8.46682678008479	8.90701925857091	9.03700957630003
+"TSNAXIP1"	6.955066796848	6.7887797418346	7.02118857868304	6.77530691036151	6.89546907740355	6.95204307458399	6.53056853279707	6.68008003415437	6.8583718968669	6.88610712675121	6.45389003337116	6.60504814312052	6.86992134015277	6.92201993182034	6.4314782657069	6.48659855365978	6.63944444119353	6.44699986134939	6.55595845128114	6.72214061521308	6.86380322923566
+"TSPAN1"	5.89708195618327	6.09298209381001	5.81195415408142	6.31462708235046	6.04374592307727	6.15186906019736	5.80704814905133	5.87105921571572	6.26758911772953	6.16873032777558	5.9468878650394	6.26757231100458	6.25337164865262	6.2847613940291	5.8046063198732	6.66215578272069	6.19283196069924	5.80821451133392	6.13841802092116	6.08449103950697	6.04571142060129
+"TSPAN10"	6.99212373249877	6.76665350615792	6.96708915980714	7.12584469622262	6.73576322179175	7.18562825088836	7.74397746555759	6.9464238240731	7.28140029655133	7.0725294476853	6.82591580166575	6.98442032760267	7.35378537666153	6.92473254182441	7.03263282007603	6.90237709266814	6.99630719788409	6.7531145353588	7.43338370934773	6.94202762924746	7.03664955949524
+"TSPAN11"	7.46843143587616	6.66919188859904	6.25353688825392	6.66881983256957	6.35357267495829	6.7882932219884	7.16576974116599	6.69774490198361	6.65489407316474	6.80799311910622	7.78830428695469	6.21624661446692	6.55684731419482	7.01777452822808	6.23291704418188	8.13969258754602	6.48353307131845	6.39960033925456	6.45999242345617	5.90098227109357	5.82113325162121
+"TSPAN12"	5.40063837995025	6.0608381579214	5.41729273443449	5.81559383037049	5.65361467177318	5.15377603782568	5.82930878260589	5.9226921935971	5.77422183430963	5.54688967020461	5.98110509175132	5.05031949705151	6.2030763496523	5.79899151818911	5.89683307973149	5.33430587599462	5.2980708728116	5.89937198454918	5.22171005218265	5.54384770521433	5.27907631188572
+"TSPAN13"	9.63011070364738	10.7799961223151	11.127265438028	10.9186130821283	11.0480730448665	10.4803915385165	9.30625496952511	10.493685544014	11.003938835854	10.9684521464048	10.1742727364492	10.9272181141916	11.0043948277546	10.2183049749607	11.1178879670479	9.98085332846562	10.760842853286	10.6060029046962	10.8611136119092	10.8983548966532	10.9171254442899
+"TSPAN14"	8.36043793272719	7.55877937963906	7.69525407638593	7.9141220956546	7.53642264112633	8.13933901174988	8.40938240676369	7.78538848006192	8.38963635288881	8.03945314482183	7.32080333537218	7.74056560263016	8.04738309672598	8.28719092435466	8.11972845140633	7.41254760733712	8.15687873783165	7.60798219473288	7.71792718820791	8.213709784715	7.87285021715603
+"TSPAN15"	7.75847668586995	7.65646349787848	7.59137770239885	7.57263531505836	7.37405729788023	7.94527051207517	7.61402751776347	7.3664839395848	6.95933195069628	7.06355901910326	9.57682979776444	7.25900518473722	7.0227452242066	7.18741153212845	7.20952453761938	8.72400025202754	7.46904960903012	8.3980845847006	7.90434888392339	6.91158274494581	7.62890334248425
+"TSPAN16"	4.69155544396472	5.14919597851991	5.1458399072715	5.16967174337846	5.01693928545917	5.07050630644142	5.1089853975117	4.95983883585044	5.11448304435793	5.25491512768786	5.16304009926144	5.25344989755715	5.25255474757163	5.11702039531402	5.23311812615084	5.28591811240559	5.16304009926144	5.03408665615002	5.37136299083405	4.86177304924812	5.39050015774282
+"TSPAN17"	8.45945668690619	7.92400759896919	8.52623292337667	8.42250555192774	8.14311914797061	8.17527151196039	8.24260222123204	8.12441842563981	8.45820246982277	8.30657168134426	7.98180272070226	8.20626290468853	8.4662611192553	8.14137150660173	8.64567226672957	7.9462526090282	8.15393630028056	8.04501265465156	8.3282627679626	8.55292705360898	8.36738881799922
+"TSPAN18"	6.67454884684002	6.87395872382028	6.79793359194669	6.80908058322378	6.66027835029424	7.27337173857932	7.08352127379608	6.56755422397857	6.63910236793115	6.87920003825735	6.52953491163316	6.5812403796642	6.45369944628145	6.98763805863295	6.15867402987248	6.78915588647046	6.79468273654238	6.6919119467478	6.50629634029434	7.4802340276286	6.42971689894122
+"TSPAN2"	4.78057709465034	4.85229128316039	4.78540962639785	4.73463254071747	5.05320712656839	4.82434492230334	4.59752027746617	5.21364164122494	4.73780036800828	4.93374861201969	4.64667686767597	4.62793214295687	4.75869609174505	4.80245867872647	4.7179122702202	4.906233492255	5.08132729494179	4.80685699221364	4.76270962013257	4.82461806415239	5.27560941912158
+"TSPAN3"	10.0854865789624	9.92909160270864	9.45610784859101	9.71846079003734	10.0497944883292	8.83301506179715	9.94009282805194	10.0670135783991	9.6104384680573	10.1798418408936	10.6313359786074	10.2215075424173	9.56212140612799	9.04190284692469	9.42339125502937	10.015763292012	9.68925508830807	10.3154414377366	10.0125988507346	10.2174638077961	9.84075008714918
+"TSPAN31"	8.60461541153632	8.47214698240185	7.97443580674553	8.26256867706465	8.07421948313227	7.23624858114143	8.38862158580171	8.51094873224829	8.39871500440427	8.65142719919541	8.63666022627127	8.48901232256588	8.32738999128364	8.16238360214754	8.03515306072814	9.06809265050792	8.41334490363227	8.44582492064332	8.27996320222566	8.71485700786839	8.35999802403881
+"TSPAN32"	5.64608071586796	5.72983801364259	6.00137853347751	5.86850382597422	5.67408620896691	6.20063630704504	6.67524346803076	6.02686897470054	6.26824324889563	6.05348054362635	5.6228232214911	5.82464520969745	6.034174944204	6.17007248696622	6.02996869699388	5.73463074120702	5.98195862516118	5.85794674094404	6.1526159381389	6.19840989508872	6.0931864976098
+"TSPAN33"	9.3235972920503	8.22540909011863	8.67910610875248	8.27145690449754	8.38792798387593	8.05811536188731	8.91450420107491	8.46206282340233	8.42813781754644	8.35638552986054	8.37045223106838	8.44723111683945	8.30493124301105	8.24441624158813	8.39012522538746	8.41968504055255	8.32410090081778	8.32858374249082	8.46568853256576	8.71492065291518	8.28346202578183
+"TSPAN4"	7.84741309165363	6.73376679990306	6.69671705207518	6.37509720400843	6.17648065154444	6.99755965619414	6.95193019575189	6.64966123785091	6.39487517988831	7.0454357777079	6.54799834974561	6.15336366940325	6.36310698918392	6.63768013766057	6.32594448624279	5.99169542015369	6.08462548424215	6.54367896325785	6.56197236447677	7.78162557733463	6.53036259315506
+"TSPAN5"	8.92514232613994	9.0895957297492	9.60841837754425	9.34175028727636	9.85879474781055	9.27531437539775	8.2385124303363	9.42637743034725	9.95015259647805	9.74594870531915	9.41313291349786	9.8438722906753	9.29696955444704	8.77781388764588	9.60309106955579	9.18129082824546	9.56570310505977	9.28456887735745	9.41781220746413	9.79226817264305	9.58695622978982
+"TSPAN6"	9.08551837782635	7.88356871589796	7.08933339054119	7.51572744998885	7.385264877717	6.81118634573623	7.20830991384932	7.82809973638331	7.66894317737064	8.11278164800454	8.43169165313967	7.46101620463614	7.065400123067	7.41546549800884	7.04812137152982	7.72359930402272	7.20130680207886	7.30861139552726	7.75123151878101	7.46101620463614	7.01661116399222
+"TSPAN7"	11.0666819560845	12.0898008678815	11.8576478825464	11.7335857352664	11.8992983228195	11.2995519616999	11.5185100703908	11.7883899638816	11.799812152104	11.7502110656718	11.5386474435436	11.956827777035	11.7244840252246	11.3446898057332	11.5837372876322	11.0202790346333	12.0662839809179	11.6260153799858	11.6833750732043	11.8599716634847	11.9221143108727
+"TSPAN8"	4.83851391392687	5.33051498669892	4.48518022574943	4.80369357679294	5.01799662054868	5.57516954306023	4.58742465922657	4.15930333429623	4.13689251224328	4.47888019432175	6.2812998362894	5.43528507820511	4.27886975681276	5.55754929762142	4.12228660255439	7.34808128370081	4.45800449321841	7.60774944069063	4.24938177285589	4.62949409957454	4.79526235445429
+"TSPAN9"	5.80337704455406	5.4721187756433	5.66894494754109	5.66308502181449	5.49867037220208	6.00829107571519	5.88788453869927	5.46750760717106	5.59303439462982	5.77898447289193	5.5068146799642	5.66894494754109	5.79016145343472	6.00008616805085	5.7288717988625	5.55540106449823	5.61663575060676	5.46956770477442	5.80745676424111	5.78356342441572	5.6525631508941
+"TSPEAR"	4.54751080496412	4.58872450821284	4.54751080496412	4.70330590175963	4.18732596599318	4.69648062376911	4.6928040370755	4.52040754706711	4.26986721015314	4.54296046971217	4.36989285089252	4.5732417040772	4.80815883019822	4.77533023882188	4.77980606813269	4.34057268666813	4.74320476139925	4.41077042165618	4.61284354163675	4.27438818704312	4.54593801163666
+"TSPEAR-AS2"	4.51674326283677	4.62322640890397	4.61229008666324	5.00429907287467	4.66848550428749	4.75391176901744	4.77450770975157	4.74338849406759	4.67569487082649	4.91517539487397	4.50670783780675	4.61552486600255	4.74932180691707	4.66848550428749	4.9882963592664	4.70458566453121	4.80663156055481	4.32591388180926	4.833913001849	4.66848550428749	4.51059954494868
+"TSPO"	9.31574784407014	8.12768253944486	7.62640565166676	8.23733896199248	7.69957475126272	8.14663011802409	8.46365379055804	8.567241755991	8.05087184855599	8.18700298980937	8.42449673239584	8.00806265123508	8.19946867176452	8.22854287802751	8.26101562655507	8.52973329302454	7.9059994313238	8.28072112178743	8.19946867176452	8.36870153586219	7.91932141840022
+"TSPO2"	5.75292557047411	5.93067238932281	6.12223020787825	6.04772584931579	5.94570517050411	6.11537022994367	6.16625421708886	5.55547269289178	5.80043700058701	5.93865330418962	5.75212969728108	5.84132372542324	6.07650775961619	6.29694824633929	5.86272838357671	5.96771461929435	5.90961367109126	5.59403614087861	5.70034246912387	5.9492627416486	5.77156330950769
+"TSPOAP1"	8.28544905230375	8.52550141632424	9.04805136147511	8.46925961263772	8.70244126481314	8.40674749147586	8.78555463713305	8.62069495835511	8.56204236405405	8.09713217117822	7.95817513249939	8.30099680658119	8.29616794906439	8.56819509500301	8.33258593560176	7.68189555287444	8.34201224375273	8.04870773337268	8.40674749147586	8.53477754227532	8.34368877961816
+"TSPOAP1-AS1"	5.52560477454462	5.9749026607912	6.21349432312776	5.36481485839358	6.19114412160031	5.67037643117577	5.14399845616859	5.16745442520081	5.79942101259204	5.76159750412278	5.79976601284619	5.59275638880502	5.68252365059641	6.00379292955666	5.71862523675484	5.00053623157793	5.42549949810215	5.63941393712478	5.32302991183882	6.00656143313757	5.68160410826992
+"TSPY26P"	7.03489683249524	7.32674984257209	7.9108107817074	7.35760580914717	7.74561969601273	7.05632885587023	7.19812036688232	7.06915757274188	7.27653382773139	7.34433469852894	6.8944558327764	7.15170647382478	7.34056028961238	7.3309543402056	7.22674940002003	7.03099166947881	7.19653402535086	7.16737588937257	7.3876268528721	7.30224451112204	7.094256890765
+"TSPYL1"	6.79906331827763	8.38499496490418	8.61683435424268	7.79135779181902	8.70490537270581	7.49857992187079	6.50913358654581	7.780775161387	8.14941530128369	8.46467871005569	7.50139246359161	8.42354524987967	8.14879342991357	7.58055461804163	7.95753819478084	7.35827303188025	8.11653452246082	8.02477359225853	7.87311268615288	8.64347389161464	7.98695631426789
+"TSPYL2"	9.75596614379368	10.297419475858	10.8533804524422	10.3842250231458	10.5742787150904	10.5564362840581	9.85894138573742	10.2203307234189	10.2852661044562	10.3768980387296	9.99806200214392	10.618430155143	10.5345242606472	10.2945576569356	10.0366437814843	9.77134235053464	10.4409885790352	9.95286821301724	10.1803904081802	10.514915130975	10.3121163664312
+"TSPYL4"	10.0703645500193	11.3179751582859	11.4235174165484	11.4941579507868	11.2704694443797	10.5174777423027	10.3470140082141	11.260223814066	11.3738803886471	11.2265925019912	10.8620612532117	11.3808963787449	11.3822508646227	10.8951858460732	11.4397347559966	10.8234046148722	11.4490123968079	10.9982135896846	11.4132934168318	11.2549288678294	11.4440320267991
+"TSPYL5"	8.39500029626588	8.92899132129237	9.1765550637106	8.67516331468249	9.18694078903787	8.22398410699692	7.27896321297068	8.2825652235122	8.70782465654307	9.1196422896757	8.45758773942772	8.99668536081759	8.08823506793975	8.16921084960538	8.29115970480947	8.92990190590994	8.8303459480698	8.95291313391349	8.34119420724937	9.19358924363981	8.88372699031665
+"TSPYL6"	3.38528179456663	3.6097792895896	3.15132839120907	3.2791456761542	3.61094137008909	3.54127067137852	3.48455141929621	3.27157166167045	3.74242881450584	3.14499996955592	3.32119753437453	3.38167829462187	3.39766801692372	3.48611445406422	3.22141600561857	3.1541467900332	3.42658593700223	3.45802273265206	3.38167829462187	3.41262863958271	3.29387136506116
+"TSR1"	7.44050675685688	7.29588376819522	6.92947024106366	6.77865074886856	7.12073957526332	6.63571879287546	6.97785458798579	6.83207850969461	6.40324410861994	7.34771884671458	7.484159181433	7.04433154372646	6.65391781253721	6.78143421249354	6.64737513990755	7.52060695127476	6.78588212329209	7.42363627184454	6.91164459262088	7.66408467482221	7.60544124121981
+"TSR2"	7.80306958483477	7.02534438865804	7.03436304908255	6.98068452745839	6.90634171765397	7.0376794812935	7.32926391322446	7.03989618501858	6.83341948565729	6.90593113751251	7.53202098466371	6.86486308847339	7.07151775231622	7.40774821329973	6.63129491854579	7.10885685454851	6.79392576569895	7.15321110604024	7.10858839816785	7.06031075179024	6.92776031236749
+"TSR3"	8.14490435111754	7.70462459523089	7.89946581535078	7.84014356729543	7.48611257797749	7.80589975144823	8.01561110941462	7.84930071402015	7.74693107182142	7.87896190769211	7.99986107601192	7.69170311633463	7.91910222988389	7.98697999099114	8.23234671096165	8.18236740559986	7.70227573920644	8.05607457002512	7.92877639266317	7.50231069928527	7.81382040893872
+"TSSC4"	7.5049259765875	7.22704443361305	7.46237784714848	7.04928906910649	7.26321421099361	7.5247295454083	7.45722046317787	7.15215994700042	7.30099391007668	7.45415539176931	7.21469228479039	7.30246383441244	7.28417076086714	7.38328627780049	6.98567959597459	7.35488042597408	6.99726408201913	7.31688670987377	7.27351963928135	7.55878073266383	7.28006039560244
+"TSSK1B"	4.24827661951213	4.04920367886506	4.37145845383104	4.27566565158062	3.96848249371934	4.30451392351691	4.29705634772093	4.15451915766316	4.20171580388558	4.2334009932761	4.35314294910548	4.20599502949415	4.46048634140171	4.6204907812781	4.41859380720137	4.4649442667963	4.17632492469233	4.05111724294357	4.49290198832969	4.34885906930491	4.3022664665994
+"TSSK2"	4.07305684173251	3.96438203094336	3.98485962962142	4.34195039842687	4.13067308317719	4.43389615990491	4.36689476475172	4.23753195493959	3.94797878047332	4.16679226997927	4.02839397176423	4.07105274666616	4.21663828350208	4.63493595477993	4.12807809122227	3.97019206634787	4.17571899361619	4.26788272002772	4.11313296780127	4.16679226997927	4.20424791387603
+"TSSK3"	7.06769220551436	7.18983608205914	6.92190376123784	7.3373213578395	7.24314839066627	6.94916001410096	7.21151863278298	7.03156808216875	7.23009149357801	7.2012028801764	7.1823368594283	7.17091025110058	7.2126048440732	7.14778190224593	7.13677356873062	7.46097506167776	7.25918415343474	6.93175443264992	7.13239989102713	7.1514252599312	7.21935900395524
+"TSSK6"	6.1859557999184	6.22255951710372	6.29820916918108	6.27862001719453	6.04036049607324	6.63981681369342	7.09485406000067	6.14910387617518	6.37122881926296	6.36557733124639	6.26196912928453	6.22255951710372	6.56304250020949	6.56483097803297	6.29820916918108	5.88825018463908	6.24262071888236	6.10177664660918	6.48113484526116	6.41580933110225	6.38051952920042
+"TST"	9.3394009175606	8.44636698988723	8.42794363794133	7.98993542003131	7.83648362108214	7.90272845563301	8.47904432378564	8.12566556743587	8.02212158391823	8.37237349733648	8.89304966063377	7.79221820192893	7.23582026253645	8.07817284194983	7.50705236774151	8.89659700691277	7.75492381773853	8.61314476686203	8.10558157671645	8.19270387097401	7.25854515458678
+"TSTD1"	6.96839886123308	7.75810530794753	8.46295015338731	7.75584096067504	8.29376422977935	7.58724870213841	7.31854429215667	7.70092999603387	7.94897544431737	8.20944321224648	8.21810645432384	8.4875259470097	7.59955703219321	7.36444075377926	7.88096609888339	8.2511331569731	7.85103489695047	7.95245489692121	7.89885368733029	8.39983734835291	7.98216723331797
+"TSTD2"	8.88081561873613	8.81578960539929	8.59656754552562	8.52351484747079	8.68209563942168	8.23774716583716	8.2703333434678	8.6609147371118	8.58873560429363	8.49301183684083	8.81111276192417	8.41524663474668	8.31700949970741	8.62268435407351	8.52284740687215	8.99309273276058	8.4092148205164	8.9935678464931	8.59656754552562	8.68831159230763	8.4868725088793
+"TSTD3"	5.13500336119638	5.175498617754	5.27170167301211	5.4593880653383	5.26174037022093	6.01237992216948	6.33139052500215	5.35997157845766	5.52701629894249	5.34424289749676	5.19258735913729	5.24555047556606	5.47297993495998	5.73359830149672	5.46993773157376	5.09393895864946	5.41407965958038	5.1817874610087	5.67771513835934	5.19114766026575	5.20024917940997
+"TTBK1"	8.22113608665396	8.49843988404345	8.60119196449489	8.62120214109263	8.584258171123	8.91668292415212	8.76190438431646	8.42669230668243	8.68954792104176	8.62961722517578	8.23531669740824	8.59425855901182	8.90420086608953	8.83922672304424	8.45773280471727	8.23991260522489	8.64894347642677	8.18934916295442	8.55186907592256	8.584258171123	8.68725984948028
+"TTBK2"	7.94553233379252	8.19944093800719	8.60992811518137	8.54018500866502	9.31563115698151	9.18407417791508	7.95756726381995	8.35862576020049	9.12864473016642	8.64496825610792	8.39597132906435	8.89360053575074	8.93238996255302	8.26422371852373	9.25157224001423	7.55416439155966	8.87925018617984	8.38143420805156	8.65226939219685	8.63014589523605	8.54785114285051
+"TTBK2-AS1"	5.26503729254193	5.44576600239426	5.20281259182311	5.50642345483448	5.56830094803745	5.19125500214715	5.28339512294694	5.221603669693	5.5278696787125	5.45124121372987	5.45124121372987	5.38220966715341	5.42291971593905	5.51567472653601	5.57228299770139	5.44346791731854	5.62811182510314	5.43600867682803	5.4303436940182	5.45921813972923	5.90070870697939
+"TTC1"	9.10834451438418	9.26550310883127	9.35003361037285	9.2207766125021	9.43468415393991	9.17339498697949	9.07657747477007	9.07168107877855	9.49567693359556	9.46121979107315	9.12923547705909	9.26835179795819	9.29066585079542	8.96631271217765	9.37994006511042	9.35781031295327	9.31102741845192	9.38587665267979	9.21206394100241	9.40583958236712	8.77258323723996
+"TTC12"	6.04046004681891	5.32453523036245	5.42250754270105	4.74413687552112	5.63498216755211	5.21852300896543	5.03724458657927	5.56458709019212	4.97197230636429	5.22284368394087	5.84218357972769	5.00925397408389	4.47945983896131	5.1444973796847	5.18991798302898	5.47718273916815	4.7357563263959	5.65644619924995	5.40137117929611	5.28079444600876	5.1192112178789
+"TTC12-DT"	6.84853559658877	6.84853559658877	7.23118486124552	6.80366322724181	6.70187421540293	7.02644126774663	6.35620721961923	6.85033774279691	6.9794597678995	6.72609670118363	7.22807621745095	6.60333513741557	7.03687630045761	6.43937184540111	6.98396017463074	7.12123986449549	6.78053748287011	6.99655026856677	6.49663501156203	6.8549562855565	6.80531054666148
+"TTC13"	6.78203122661837	6.96977955513721	7.45435063503999	6.65451972992729	7.29248748641523	6.54020251908585	6.54976029756181	6.60197497055783	6.55849885700857	6.79419501628236	7.06754659414505	6.67614643767105	6.33871736186589	6.45665149015674	6.55264986037763	7.25000061616199	6.99820439158686	7.44734417704287	6.50610727710523	7.02617906641342	6.83577016077359
+"TTC14"	9.21295670399077	9.670515959645	9.97344045837147	9.05736367854959	9.33298035271811	8.59135776747142	8.71065064051113	9.55625528886703	9.07156110111177	8.90384103227862	9.6850872332452	9.28893509567898	8.84452373425955	8.73175910183061	8.87703392458478	10.095880251852	9.4961453507282	9.70087778226123	9.34489066654663	9.3091648505624	9.24420991625711
+"TTC16"	5.27150493287093	5.19639023675754	5.43749928989593	5.25754498073157	5.27150493287093	5.78546803305243	5.54560087835408	5.29413980020944	5.34747101407323	5.57768934796192	5.24052527917022	5.15452047513348	5.48202335470433	5.83248475931933	5.15266190010678	5.28234545864398	5.30554687612189	5.24052527917022	5.34297383050994	5.24021421882002	5.26427929001776
+"TTC17"	8.25925208823843	8.23053576132179	7.61229928933642	7.64981974794914	7.77079794378065	7.42457060183365	7.46250147400768	8.09923245640092	7.52685016229471	7.65883625939129	8.42275871693993	8.10403330643553	7.00019532957285	7.52683760858567	7.33611304965684	8.57278217648761	8.33913190137614	8.33071496216431	7.88575860243451	7.61378153144952	7.50753291684167
+"TTC19"	9.95843054016828	10.0247524644226	10.3793162376211	9.66295784335902	10.4126886877614	9.75933573861242	9.45947974023566	10.0577003209536	9.80597129408987	10.3772756952005	9.88486514558897	10.4054889502558	9.49468516153511	9.29654024807812	9.71059831718998	10.0084209412892	10.0543865064407	10.0700494772085	9.76665189507595	10.2773087507515	10.2513205679215
+"TTC21A"	6.81898152010585	6.86935358326645	7.35174826675082	6.59629221184189	6.76216481379945	7.18944882269917	6.71955404869417	6.8664234055585	6.62038119493041	6.72235142952055	6.89217585862045	6.64752677312425	6.49466845226863	6.96064650333823	6.45781423989564	6.71824969846691	6.39830932462413	6.54220571607783	6.60463428086203	6.62312935274186	6.4605782053677
+"TTC21B"	5.52560477454462	5.83184412705836	5.76133119003581	5.40635368968958	6.02568686322404	5.55989233897789	5.54826488693699	5.93384667654611	5.72643951376151	5.9098948856165	5.36351967375157	5.75911832667681	5.60476385668078	5.49919717983063	5.6202323394049	5.66243038616348	5.77604003054624	5.78219361662492	5.38179241480802	5.8560265368189	5.58063138098706
+"TTC22"	5.12995157143419	5.0006423158508	4.8757067790508	5.0424769616394	5.31085921744476	5.59790159615512	5.43016558671671	5.19620469390342	5.25122795286172	4.93308124352821	5.05204655490962	5.15817287780574	5.32393110847109	5.70375833815985	5.32090443973701	5.00650544938336	5.26766210204047	4.99478891886529	5.39971714979571	5.1413780319165	5.16946557221782
+"TTC23"	5.36888449177359	4.17583667884325	4.13637804377849	4.46127711863192	4.23376042613641	4.07171442005384	4.49852897839739	4.8083526903037	4.7842307753685	4.35315398151183	4.05712162180931	3.97116461404879	4.77528841905886	4.54041979142567	5.23183086191249	4.47882593869829	4.30125304533819	4.11737202415899	4.85767062606504	4.38784194254605	4.30222420086799
+"TTC23-AS1"	6.03910544685866	6.15385737925598	5.91358688976557	6.32234226643887	5.95910574313229	6.03719257306958	6.17186077207907	6.08261153758847	6.3416570284169	6.13816052857595	5.87672305409796	6.13816052857595	6.40361608892287	6.22181525288647	6.4159466304982	6.00449149107434	6.25982798203084	5.93459302324221	6.27254340741208	5.98737603366594	6.23621109187196
+"TTC23L"	5.44124693293139	5.18572128860119	5.27631381892201	5.18572128860119	5.30870926496504	4.98643007897965	4.87381229298532	5.06115011771169	5.21014679095406	5.11064410310714	5.0775965471553	5.38460913399775	5.27941389797672	4.80197558790317	5.0692414704201	5.33471199988483	5.35484387666315	5.18572128860119	5.3390426668602	5.18572128860119	5.18572128860119
+"TTC26"	5.09672616468974	4.82253250561113	5.06129911507947	4.92862993545616	4.99532194402693	4.49308977520943	4.73797270779447	4.81270141182735	5.03917591290359	4.80589088998748	5.13785801319944	4.73071882901827	4.7624845922708	4.49369892230114	4.8688088104777	5.10638016805977	4.72953184181273	4.82381108625446	4.65341344950284	5.11673549015848	4.77340172727284
+"TTC27"	6.87805292457172	6.48433318658588	6.5143049510407	6.16932537465457	6.80238469617277	6.61299048173734	6.36063717664231	6.3980983250367	6.38571904168906	6.10046881339424	6.38571904168906	6.37392333793623	5.79848190353216	6.33571552327933	6.29166833321717	6.94370282585637	6.23509372178702	6.90237709266814	6.28673158077397	6.55951853167377	6.36813095477179
+"TTC28"	7.85637641554591	7.45420413905285	7.68420708268809	7.64847850669978	7.49047875410775	7.29339083643343	7.2373716133354	7.31358071111775	7.56500508738081	7.12151144219343	7.5530873640749	7.0994660697478	7.39845059242674	7.63708074774685	7.18375514659856	7.40640262548635	7.30104124248915	7.49579486398402	7.16765018357666	7.40640262548635	7.12678221117132
+"TTC28-AS1"	5.141981699088	5.6686620559772	5.82110391529326	4.82173537018658	5.43298316635231	5.44807848829248	4.6656478005912	5.36183466926458	4.87772712202115	5.47015767054438	6.00531302011992	5.42731945031232	5.39810521365047	4.76655291294131	4.85566613502204	5.51403668859576	5.41882953421204	5.74580300223552	5.40609111155826	5.23383293462316	5.4456343289979
+"TTC29"	3.09214391763982	3.04385858196007	3.08169856416769	3.11028584406044	3.22871559900489	3.10795459614721	3.10882141220284	3.02928937725537	3.31440734446593	3.10271875687885	2.99848179350171	3.01329088588274	3.40002562630894	3.25077866315098	2.8808756188165	3.1567248034757	3.07950172427463	3.00554233261693	3.33112594831722	3.20390135521692	3.01179135987886
+"TTC3"	8.75483308004633	8.96655964004806	8.7129747095335	8.64108934378215	9.41120574798099	7.82777797298901	8.41458983227139	8.47649703864269	8.82608699054249	9.51458523698854	8.9761168184166	9.43970864482144	8.6293789030068	7.96111428844646	8.51005470324395	9.04795598886011	9.11250982005549	9.08779131504895	9.03284092813602	9.38114413302446	9.42766653643815
+"TTC30A"	4.49497619638741	3.82451684678836	4.01257416482248	3.31541533652728	4.27200441628822	3.20607167016187	3.50376998738049	3.46658222786651	3.34385089013225	4.10231422847403	4.12590318330011	3.65368602685339	3.04168614522306	3.54685775906763	3.09734334941767	3.95469785799273	3.34003045675249	3.98262440011399	3.29146071179524	3.72377149731778	3.62677150000155
+"TTC30B"	3.60539485515823	3.59222776405588	3.57015195424239	3.65181312834054	3.88990504775663	3.41222410027302	3.77760082268173	3.56391882008315	3.30042176578684	3.65666127686202	4.19514106508953	3.33298065132076	3.31949177665053	3.34406322838434	3.59222776405588	4.23444931582189	3.25828322363481	3.91155934368382	3.67577383114443	3.71510785821967	3.52072307358805
+"TTC31"	7.58975964638282	7.30851323900704	6.92573298154689	7.24769858469841	7.06370082167815	7.22397589352096	7.150198214973	7.00182905281354	6.93193539437146	6.98560686857407	7.69885865463767	6.86561567617405	6.90752856030156	7.45614413064143	7.03646733686201	7.63349727141664	7.14606316542021	7.58227624733961	7.31311978208508	6.92302248646777	6.83357391486916
+"TTC32"	7.60702322642022	8.37869309742601	8.49392275949115	7.39364562138356	7.96282171869788	8.61227674103887	7.50090919815668	8.63184108029238	7.69842644175279	8.06741142862085	8.84107060696611	8.07012515669314	7.22697188713376	7.65893774415328	7.22099154063592	7.96554476215375	8.44242571722355	8.77925793315094	7.53203824280324	7.16002137996405	6.94776217857726
+"TTC33"	6.96784016014608	6.94469284203672	7.26154102438304	7.13024276553711	7.20957312144509	6.38920042976306	5.80644724510182	7.12641276333916	7.06630676469431	7.42751376852352	6.88725194312715	7.30099455113811	6.36888057399813	6.3230664244189	6.94040049050488	7.17267752498506	7.10460047299542	7.45162153187184	6.90450417189713	7.0355864409104	7.43548726545387
+"TTC38"	8.38753032890123	7.42861652537077	7.28844565003442	7.46299041873065	7.11228860773585	7.83984217799022	8.00538678704639	7.64165215286198	7.27957805898601	7.20856239509965	7.34597786700371	7.337081225456	6.93626383411898	7.47727911279588	7.44614925460347	7.27590500447592	7.44614925460347	7.60419711532737	7.71002853761039	7.61768047857523	7.28193154751261
+"TTC39A"	5.55343827883687	5.94436658994801	6.443834933189	6.15376855769166	6.58371060180662	6.45783041621175	5.79213775881008	5.62805014637453	6.38797131257423	6.57330302394126	5.32073344726619	6.15376855769166	6.51337167085216	6.01264494214414	6.71827297683086	5.81836964810382	6.17785962040005	6.29823458488036	5.58715548105505	6.26979775819815	6.7993023546901
+"TTC39B"	5.74741046201922	6.1748609061199	6.79365178002604	6.0842123188107	6.79328369972128	5.99454323668774	5.13665539145494	6.19457179222297	6.44437466332553	6.07807209255004	5.74988123258855	6.3527837728069	6.68078732649128	5.971416946148	6.44067483123101	5.31396359561971	6.48199457666455	5.97535767055114	6.38302246452732	6.35865039108345	6.41722636281194
+"TTC39C"	6.38852627965032	7.26037107672375	7.81203188397811	7.03191629759844	7.82923981877591	7.26974460849786	6.08342735934864	7.13743793287968	7.28562431085266	7.36369318017919	6.61586530869847	7.43327064375598	7.12099950225712	6.54815072977572	7.2270056358928	6.46169191810433	7.29131459005255	7.14591863882706	6.86312732881812	7.40130093420475	7.31172955000205
+"TTC41P"	4.22767128836565	4.03076382114616	3.81639910959232	4.0352329842648	3.95634108799089	4.38195702000894	4.15850697878638	4.02411733970663	4.08771966020911	4.02411733970663	3.76498603572402	3.91771607720923	4.16273372594525	4.50816005676378	3.95129595708776	4.17362641449332	4.15591826015905	3.71944685806819	3.96538472782332	4.07342489244436	3.98762508073682
+"TTC6"	4.82131240089839	5.21111554553228	5.06047939210766	5.16313427858732	5.39990818393867	4.891431597517	5.14543335488858	5.39848222584301	5.04204684897726	5.69184215278319	4.96318447156072	5.28619447611581	5.28339815190948	5.16988491449064	5.40054828949331	5.24189760431393	5.1744857930967	4.8887492931458	5.47980332518593	5.29399547178418	5.27831486159794
+"TTC7A"	7.48999259323526	7.28089276876025	7.21016195056444	6.99469201665118	6.99749585380732	7.98547019073604	7.79769946464298	7.21275851227008	6.81990614773059	6.82874726747295	7.1567136190812	7.0839875246391	7.17807361292493	7.51539115781946	7.30015628220173	7.3009134464394	7.20272651536867	7.30015628220173	7.35625121408008	7.05432400980339	7.13839866721657
+"TTC7B"	8.24495356813071	8.91521089770045	9.33979818756509	9.13380040246153	9.31446437247516	8.67456454519577	8.38675263626397	8.92868048268641	9.30457529593354	9.16023243046568	8.66397926540231	9.05931255888173	9.38491064522275	8.8002130158476	8.98528959834868	8.62192335991369	9.25712612927723	8.78221510381352	8.88881329063105	9.18169197250638	9.43622852519649
+"TTC7B-AS1"	4.00967676648148	3.8235293727122	3.58387896601217	3.5651225482436	3.21364373619236	3.62160727492543	3.66386863137731	3.63994220670516	3.66386863137731	3.65360568253486	3.95173471464309	3.70340062268587	3.75924473472407	3.49062904825146	3.64692429892646	3.75316738010617	3.77496635673934	3.65206170766992	3.70888236488117	3.66386863137731	3.72421426249425
+"TTC8"	7.42551281781774	7.77980105980577	7.43651265383894	7.0888913663712	7.5341173966907	6.09048548105013	6.37688287206661	7.0880697756347	7.29942876823087	8.13535386429617	7.69419317899003	7.4695432907355	7.01209176864476	6.47659018905227	6.83320241159002	7.01661116399222	7.23225896510638	6.91244048487435	7.08011993376517	7.50325504372824	7.36345694360896
+"TTC9"	5.86788719420045	7.14520088553081	7.85929045850771	7.28147725406965	7.71167250468507	6.89876690802728	5.92491628005112	6.87454432148369	7.13680196172309	7.00469261782231	6.79200463760288	7.18077608393782	7.19076805231935	6.47162117342242	7.00900460384427	6.51770262964804	7.34185892335503	6.94248773200753	7.09553298391283	7.34104758168253	7.23262072315263
+"TTC9B"	8.11226092257869	8.8005182259471	9.72377110311682	9.0737116676324	9.24311758540875	9.3210738853185	9.10906089217422	8.88512305142854	9.2031579402026	9.21405854809193	8.34176083852117	9.17543855324337	9.17189997298254	9.12700534576766	9.27156797373513	8.51674035617402	8.91005648598502	8.62997394186834	9.16680602144732	9.66906023064222	9.13444175972158
+"TTC9C"	7.19973237152849	7.2945788811916	7.64528878183583	7.462422722618	7.7331472714328	7.22846948405392	7.07270664524133	7.52055597268476	7.51355041568438	7.53492475429746	7.18129228681442	7.53296327862495	7.49169271057795	7.23486974350546	7.49169271057795	7.58684580811315	7.43728217793699	7.66768390829624	7.50875089533092	7.86167909894609	7.64064211690416
+"TTF1"	6.82701444327033	6.60353609799022	6.69259027317402	6.38373205568564	6.88559555202705	5.83077618118979	6.51207211094118	6.68034377470083	6.39503171671635	7.04193367865455	6.72159008573061	6.84177419474475	6.18525411831997	6.30765250809329	6.37780671782662	7.11353281002018	6.71524407242306	7.08536530541917	6.91302605020262	6.93237626896899	6.78455909971804
+"TTF2"	4.01119398551212	4.05845991932818	3.7488595556311	3.50310234788329	3.5994352838774	3.42848087468914	3.31314593674922	3.74501373143593	3.52465298858704	3.552217205152	3.9526432462815	3.65653059714466	3.41536599282583	3.45563627189331	3.65653059714466	4.73443121234677	3.75714810291262	4.02513415811176	3.73601423860386	3.43657699363566	3.74815889528516
+"TTI1"	7.43327299409316	7.5999216122576	7.80809916405043	7.68729456802218	7.68474316362159	7.53322003891627	7.3077444247307	7.4323133981304	7.69682658561683	7.18403429853655	7.77083158312252	7.35241617434739	7.58431577319778	7.53322003891627	7.53138051823284	7.59995175783606	7.52322604913202	7.88497049234769	7.53322003891627	7.48636743742404	7.49559314045326
+"TTI2"	6.72433629456463	6.42614199069161	6.63694009791232	6.64262306966291	6.96384314276934	6.53660177283915	6.50270175449657	6.70448234812973	6.64262306966291	6.53925380671176	6.61954085718077	6.56917340239548	6.40576437217239	6.54426514969446	6.69192459800304	6.73381355924153	6.42153723968219	6.77485706378002	6.55255821605969	6.89512657288676	6.67134021612403
+"TTK"	3.17116692898528	3.30403107668096	3.19649972216444	3.47750350952614	3.22998532609697	3.34215571292522	3.43870613165306	3.28275092303191	3.41726879097077	3.49151167747377	3.2517231308932	3.2136234704544	3.37836189052196	3.40596858066552	3.4335759400173	3.43180880806224	3.68009550303491	3.18892175431107	3.29424633299618	3.41796000671952	3.12808293808839
+"TTL"	7.99519602761616	8.14270961610794	8.392292025282	7.93962493254897	8.33902885890858	8.38559255158832	7.65406934141006	7.73697083462431	8.01308419968113	8.18946060585606	8.57206203619979	8.0932914330973	7.92355218250942	7.91898695475167	8.36019461688834	8.55158783330764	7.92026447784036	8.89888329019378	7.98808023202311	8.14157282736784	8.19986698808539
+"TTLL1"	7.86547939296611	7.54038526055582	7.99699259139909	7.39254063094175	7.73806311463363	7.49788063793254	7.52418970675173	7.39659033326476	7.40454279556816	7.67524735999297	7.69503625038774	7.66346587358109	7.25433099588244	7.49304662138133	7.17997533157727	7.65143733053403	7.36159975884434	7.64722333541865	7.38197542781221	7.77411553960905	7.45752880348457
+"TTLL1-AS1"	5.53937896345755	5.71656556366923	5.35350279462453	5.90486573911504	5.50042935529919	5.71656556366923	5.77026381937056	5.48831460016593	5.79300468463478	5.85119178434035	5.79976601284619	5.7718658630527	5.82383328764749	6.0663665059746	5.89479803530628	5.57035589033147	5.69050004291591	5.39021673364942	6.0350888571803	5.39833654613391	5.71656556366923
+"TTLL10"	4.50176699279978	4.40018647972021	4.50863170713464	4.3943035149239	4.44511463650818	4.7732878190565	4.85242877678571	4.29938893389525	4.54276592724348	4.66465631750857	4.5406381562335	4.58556892029491	4.72401414472233	4.68296768907289	4.21749257809528	4.29938893389525	4.50863170713464	4.5406381562335	4.6592340190676	4.27247888034999	4.95753966217606
+"TTLL11"	5.44824183515575	5.98737603366594	5.45159749216173	5.20065441894358	5.82287033003888	6.26154473120063	4.9600218742057	5.22543059544703	4.65137065518503	5.66659507969109	6.53106078850307	5.50976825371786	5.45508618719624	4.92431414836541	4.81067161733645	6.92852459187326	5.1716869876303	6.67251186063467	5.31785873706029	5.50161930536508	5.51803569071735
+"TTLL12"	8.35377872438252	8.03635779102687	8.30771657668618	7.9180444281522	8.14022541396731	8.43297500409998	8.32740202563694	8.08866737461086	8.34571728025975	8.30301749002129	7.71243850504912	8.01868872743839	8.18131572005715	8.23141131454553	8.14663011802409	7.61626496936793	8.05550097705955	8.05211474799875	8.05037791411881	8.30044723321615	8.22489105051029
+"TTLL2"	3.94979786839823	4.14671491951206	3.92623479393025	4.11277923061896	3.89196939312536	3.88630234459667	3.98750022816995	3.99410487656858	4.49305017095491	3.99526308405571	3.9526432462815	4.11109096505701	3.72919817142769	4.15886001645004	4.02902103000701	4.26764118061077	3.97012668868769	4.03979539245002	4.03818931566981	3.89057384760547	4.03370460317926
+"TTLL3"	5.00886459335419	5.09122390903668	5.09122390903668	5.26743738066831	4.77882810054864	5.21852300896543	5.27081154563951	4.99291990031019	5.19973652481879	5.08901758818211	5.6257934845816	5.23718543288804	5.13909209008382	5.2767522395798	4.89882445484916	4.96333100566437	5.20793394717855	4.56238040047344	5.48923756854619	5.1212184408284	5.10712168341153
+"TTLL4"	8.06065421351512	7.85525739365406	7.78509621645441	7.31511948941581	7.57728970998181	7.52225805242723	7.57728970998181	7.55937834506203	7.34059936483335	7.30660563977244	7.97194730168356	7.54105177796205	6.94625419485009	7.55570226216318	7.05961356195389	8.19396038806282	7.44496692063254	8.17977642136307	7.36474765085598	7.56121662312285	7.44376891155079
+"TTLL5"	5.9841263243859	6.07003922992851	5.77453184272658	6.20417220029513	5.59157910742574	6.14216209307817	6.1632266555785	6.06728696392738	5.66803738035907	5.72712913234747	5.96657371871642	5.72482827222341	5.85510388989634	6.1257520409486	6.23003823429358	6.22558951212879	5.99681222663191	5.56594113335209	6.10345924649283	5.26787547192496	5.76500536145535
+"TTLL6"	6.46406320561683	6.20249351047937	5.97229915234003	5.90839248746869	5.96617236933734	5.90839248746869	6.20652151957691	5.90839248746869	5.96357699646462	5.86327710780782	5.85907912696116	6.16211484835245	6.03453048877726	6.35687512669256	5.81772365456088	5.60907284810053	5.90839248746869	5.48110999315339	5.77055709568021	5.7902835620377	5.89362698153177
+"TTLL7"	10.0180110919115	9.85229187316369	8.9039002675545	9.78899494852364	9.34077324272214	8.63512773412289	8.62650297409785	9.28055816678198	9.18429139573661	9.37949476458458	10.4218077427973	9.85648247155103	9.15783293040258	9.16342264894545	9.47709069182705	10.5571314846736	9.64762929752654	10.4329248652763	9.86911227192305	9.22822823258373	9.8266338634774
+"TTLL7-IT1"	4.84646093754772	5.00633411524085	4.57548349103039	4.58876369757963	4.73138011614173	4.97016705588534	5.06236951581461	4.57512919121534	4.80034306955918	4.89619723335886	5.12648788009003	4.86067164368755	4.72685651248515	4.89931669156198	4.77153623489985	5.21187761032946	4.63742361116423	4.86787663311833	4.56552383173051	4.78283515558692	4.65377439435068
+"TTLL9"	5.55240909251506	5.58998915888436	5.63231299828939	5.94944010611577	5.88479719295654	5.87595663303723	6.41477475917262	5.59116578859819	5.63799545734335	5.76618870903743	5.78493440248871	5.86846970121629	5.73003360915519	6.1845885414418	5.81695545425723	5.78493440248871	5.93677191233105	5.37817963942046	6.05119212634338	5.28668490374582	5.91277918151132
+"TTN"	5.20769236943048	5.1088193010669	5.22222278033797	5.29151815173177	5.15954824693267	5.15954824693267	5.18655688190993	5.05498736681257	5.13185058570305	4.84129843432414	5.50459382698009	5.03660893569684	5.25676815487286	5.12703207896715	5.23045797676844	5.58324206645648	4.99015893420195	5.71762738975675	5.1165696686657	4.93443632090618	5.08029764954798
+"TTPA"	4.66784483447504	4.58499452258293	4.38786901362524	4.62077290546703	4.12850778713205	4.31370615764519	5.10258883127145	5.07429400214237	4.7635250544002	4.49665310682498	4.64321364098059	4.27293949638912	4.31041991425087	4.63225009009739	4.17608195191845	4.41346542206068	4.40458728044547	4.35455379189679	4.46181509484947	4.2547190747541	4.14653246667464
+"TTPAL"	7.18551828749827	6.85487250176582	6.8648444225873	6.75369649905545	7.14564167968407	6.37970955147357	6.9090670277738	6.48240369146687	6.92683864735196	7.2210707769658	6.82450629332652	6.88746582469945	6.86635392293998	6.60581731453801	6.751147711837	7.02162558100229	6.93942689822927	6.95564208476249	6.81096335664592	7.63057063144952	6.93687003266666
+"TTR"	6.90925218805527	6.60424680594401	6.38512790056155	6.60111414831532	6.5139865189731	6.33826500249025	6.26780063978684	7.82746531513244	6.56632847837282	6.46980519089247	6.4739612785145	6.37011208340974	6.58986795950207	6.92911942099716	6.19657369638016	6.44623045835949	6.53025048831901	6.36949002659952	7.14334700847799	6.75110542371009	6.53250602628575
+"TTTY10"	3.84365807892213	4.10867257024295	4.67640661132835	3.83998362459038	4.39995942418654	4.20347814206792	4.08260882713806	3.91977967638055	4.02902103000701	4.0658966406559	4.08974754664167	5.38527645845777	3.71989269102615	3.9892155569242	4.80763360166157	4.97071806008769	5.02911786542874	4.95517952957977	4.4461619415246	4.46795476097133	4.85289032187947
+"TTTY11"	5.54924693479819	5.87623419137468	5.42883762494615	5.65808103104375	5.66460590285337	5.7048152720238	5.69013465765253	5.51946464480512	5.56993995501278	5.67855961462717	5.59671409774882	5.73586417311183	5.79349162673958	5.76544087619239	5.87392215693814	5.6687228349911	5.91505961431785	5.51312012344513	5.61567744723396	5.80407858895146	5.94817390816997
+"TTTY12"	3.43337066989256	3.55952255564571	3.55420103619445	3.72874935780491	3.69458490433391	3.79725167384778	3.81784761458191	3.64691667945415	3.91409365795827	3.91977967638055	3.59578479343812	3.81758575890598	3.96331640309632	3.81758575890598	3.91448651951216	3.70578806565882	3.59013297156628	3.63146023088728	3.83039277455316	3.66873430860056	3.80243895024425
+"TTTY13"	4.4338526546948	4.57512919121534	4.57512919121534	4.57512919121534	4.89626840357015	4.65951865833014	5.06389982162077	4.53368997420221	4.63410233296135	4.41464165857992	4.30017701188092	4.60515156709003	4.62108151291076	4.57512919121534	4.66297869589258	4.57512919121534	4.70236298692073	4.47946855220269	4.91528693378784	4.57512919121534	4.71351609423023
+"TTTY14"	3.80572978350515	3.94956699155313	6.57376293271163	3.84340959245183	5.36736875810003	4.14652503563437	4.04216097608135	3.77378231826603	4.08014042097444	4.13134710471567	3.62741218401347	5.7099037295212	4.20954984641821	4.34921545494278	6.32032874907023	5.95117496357262	5.80532665338419	6.10973507488287	5.97723976463044	6.02983723031126	5.84324430367431
+"TTTY5"	4.59653416167271	4.74510219924841	4.63278954344499	4.68790100091117	4.75799280259008	4.53729886348647	5.06477626598082	4.66251869835859	4.90402841226586	4.81851904104339	4.48520414929178	4.8308501672143	5.03372709890328	5.07108689163598	4.72083029964895	4.72083029964895	4.61619158529974	4.34138533821256	4.53683235412935	4.43310103561434	4.77357192472502
+"TTYH2"	10.129292240187	9.81768863214119	9.247018351944	9.53268784691025	9.34069899356388	10.2051196536422	9.34253284080602	9.03020322160189	8.45945916084936	8.92925124897388	10.5485625961556	9.11920404090502	8.36551600433261	9.32932955746336	9.00370047345595	10.8043510832766	9.38727637985721	11.045454613399	9.66090411563267	8.67984574367452	8.90522574729065
+"TTYH3"	9.17402735573296	9.50316688836909	9.35189599982946	9.49443245760672	9.48094676888123	9.32895847982648	9.09178785873552	9.36812213885645	9.33135721954473	9.46310927329505	9.24634669569184	9.53419540438719	9.55787237329739	9.30652714088656	8.94163571741315	9.07837490439938	9.46886046838319	9.01551973606203	8.97964137778693	9.50267355449822	9.55157820720784
+"TUB"	9.65046236609316	9.87992386191164	10.3849393516793	9.69739194925187	10.0135820996017	9.09428238067052	9.62246398581108	9.91499449097063	10.1351858275935	10.0109029217676	9.5362128371309	9.95594315037482	9.65217375217277	9.68767798442651	9.78275154466608	9.24539040511393	9.86453711187676	9.63690664219448	9.72456661334134	10.2050741708677	9.94188854039427
+"TUBA1A"	12.3033680074393	12.4164224540575	12.3909638581593	12.1729055959184	12.1729055959184	11.8478267593518	11.7370048532019	12.1557156762073	11.4893732052919	12.0800924522058	12.9124494029119	12.1729055959184	12.194768168086	11.5697783376114	12.038254370677	12.9522893188932	11.9287991471005	12.837274914467	11.8109256956821	12.2631839134703	12.3749634928883
+"TUBA1C"	13.2871218844509	13.4707107684102	13.4732051256688	13.1901105775179	13.6415331117638	12.9314497059082	12.7964254440174	13.148561451815	12.7581241924002	13.6492139262376	13.4135124724964	13.7164284941239	13.1006798229542	12.5871936260633	13.1010196951568	13.8811230733029	13.4194919898428	13.6739848908626	13.3284153329512	13.727264648839	13.7861227195396
+"TUBA3C"	7.92250982275605	8.02311344071781	8.25319335808846	7.98418466160505	8.1619158296362	7.83984217799022	7.72067068989889	7.79630955006602	7.3800221553446	8.41992404904766	8.01924361313163	8.23194960692321	8.11018332838105	7.62676083471259	8.07624338593166	8.12505950404695	8.36679577186838	8.18561012858401	8.18609159914109	8.49275015381832	8.59882857878437
+"TUBA4A"	9.72278746427885	10.4271668102975	10.8123609723333	9.94419084212018	10.6236150986034	9.20853960671605	8.48873546683931	9.92861323383481	9.63836411400893	11.0609995447586	10.0549643920564	10.9037935381971	10.0906754400935	8.99636252815112	9.9383298537419	10.0714184372631	10.4841403106881	10.6162013193259	10.1091166224529	11.0009432548061	11.1939875042396
+"TUBA4B"	6.65432842948399	6.91915103953051	6.74713820547345	6.72182770688147	6.93973847902769	6.38331179286149	6.84171129490863	6.71101011722358	6.8430548868544	7.18241635255254	6.89654968321875	7.16712106679049	6.86459793750225	6.90139613381182	6.86016579248623	6.94497942729136	6.93607599507408	6.89258094662091	6.89918021919639	7.01153143395821	7.21812727222631
+"TUBAL3"	4.63462418157906	3.78421494631924	3.69828443292569	4.01339690527071	3.92141062163121	4.45174795664279	4.38647615749834	3.72244256620832	4.03347913026375	4.12590318330011	3.74143141073951	3.88924243736798	4.35601274283148	4.47307248571099	3.98775742436402	4.07959760798349	3.91352316830719	3.60468547199911	3.85749389399058	3.9635615283924	3.80301016537692
+"TUBB1"	4.84416396075792	4.46394803380393	4.26499032644626	4.45813165979104	4.31213305108108	4.57859682756603	4.49410926044242	4.42917981069123	4.67813489877582	4.31333244899108	4.35091729880507	4.44326821231141	4.59135965599291	4.57981996780704	4.55281703724967	4.39247295320148	4.1286820326228	4.28822371408737	4.34024935556896	4.67083959007813	4.57512919121534
+"TUBB2A"	12.2592869285186	12.5980626134571	12.8441058715162	12.4764791279882	12.6336742086768	11.2720908977747	11.3921679220477	12.3138961381957	11.824744871963	12.6344695383551	12.1658959187368	12.6736607926735	12.4801771856362	11.7464810983217	12.2269321373857	12.0898034059074	12.5109044578105	12.3080564716115	11.9839313142727	12.6526373719447	12.7869156942009
+"TUBB2B"	10.9094273452568	10.2449958855291	10.2620780277209	10.2024875839837	9.85027082639399	8.40205450235631	10.3687660117586	10.9227655874162	9.81643329376837	9.54222988339654	10.3509798148204	10.3210649335828	10.1157947812585	9.08401969782517	9.48397071713349	9.92946159203441	9.77909036041561	9.3552596803125	9.39538364533536	9.64554062507196	9.36115700371239
+"TUBB4A"	10.1166424328139	11.5745301986085	11.3247604083019	11.3565607727966	11.6561296123162	11.5452849457475	10.6791503215712	10.6616428101233	9.86169413972212	11.6234885712352	11.850378998451	11.7103164550253	11.4556752308161	10.8131562103111	9.91820811495686	12.4017569194573	11.5361197867101	12.1866604666352	10.7509622808507	11.3961238139981	11.5416565673678
+"TUBB4B"	12.0012805129446	11.7627258371429	12.0526056319454	11.5368484547803	12.0704638294104	11.1869802702363	11.074426186869	11.8765010221004	10.9429123907884	12.0918839357337	11.6119104792253	12.1657598885974	11.5093499927591	10.816627271376	10.8801156575246	11.5330777287541	11.6945413987667	11.6657570973176	11.2113579549523	12.3119511153571	12.1374513319815
+"TUBB4BP7"	5.38284043683785	5.39534478133447	5.33879661261565	5.65724005846962	5.44617825111762	5.6622839427269	5.76534256627603	5.51575086194034	5.75999274188423	5.57125555374584	5.30851702044293	5.54943267081053	5.4951802510774	5.48782292207874	5.67255271649484	5.61640739783502	5.59167974967281	5.19047604884012	5.15052201538971	5.52688328042855	5.74311573715621
+"TUBB6"	9.04198663986071	6.5396794143583	6.15680420129152	7.26724609018767	6.90824959203242	8.48043631310996	7.17233449769772	8.13795720425401	6.6875134625788	7.0376794812935	6.99775291061264	7.28845561164584	7.30661205287869	7.62916117987086	6.73253309867692	6.33547206283565	6.89075812754754	6.81098864922991	6.84130034780726	8.19511064463079	8.36644487983173
+"TUBB8P2"	5.07760266696635	5.44646406862357	5.23044422592474	5.157359011768	5.30702312510783	5.40031179585997	5.2399810825161	5.2618529457662	5.3973348872181	5.31852837647834	5.11265316368213	5.31139382302921	5.22936341128848	5.44646406862357	5.29024085234403	5.38625624243652	5.2618529457662	5.1805457763234	5.03208408351933	5.36925806261815	5.08249697918675
+"TUBD1"	6.74638982854636	6.44564788123332	5.83337887079316	6.59362761362479	6.23154423441401	5.98828096359123	6.63915214950448	6.58048153077635	6.46964488619953	6.07627557869625	6.71349370966815	6.15520567512718	6.49360738899002	6.31912807421245	6.60469251222725	6.37102842538345	6.24828630826449	6.84417976713009	6.47815808877965	6.24117918676326	6.43291781713605
+"TUBE1"	6.90878751804009	7.64893305454044	7.69091310221894	7.517938123458	7.61209297349152	6.97918550852319	6.34281708180547	7.14201635517606	7.17574595418818	6.80954483192666	7.8686398663505	7.432876765389	7.43587002483136	7.13923066959376	7.64294226348458	7.92534427938622	7.68073167231395	7.97899750588064	7.6130013087934	6.84885803915972	7.58503101613474
+"TUBG1"	8.05759542030756	7.98196118862476	8.48479958400084	7.5857238812094	8.7687394794701	8.06157042234062	7.50899536061734	7.99385051838441	7.57023168579046	8.26815285029346	7.53051451113736	8.22777667402932	7.95477257512562	7.65429319876818	7.61019117900755	7.73790441000616	7.92400044306945	8.35469948890583	7.37447348856639	8.81374061219346	8.45428973230733
+"TUBG2"	7.33275464967053	7.85469119710743	8.35428346181427	7.74023985120789	8.30540438525291	7.76477232503748	7.24205557613242	7.26597804753441	7.4862894217669	7.76422199101013	7.58148607025671	7.77233063952084	7.76594971655891	7.34076693376376	7.70611494049829	7.74836845116328	7.71829963474575	8.27158220547955	7.43467923313574	8.02875562280567	8.06768276096752
+"TUBGCP2"	8.16185794610918	8.23098916407792	7.76903377798962	8.27489866460711	7.60620119432805	8.11755570634086	8.5099991557689	8.62451560587683	8.36345383096565	7.94997861760192	8.49397341059559	8.37166548226387	8.46438582708668	8.65653185804433	8.14772159925208	8.00109039540011	8.29906465576528	7.6467399580949	8.4241237687791	7.90721620580614	8.10690687874606
+"TUBGCP3"	4.42998550848365	4.34057268666813	3.97340401086203	4.57018250120868	4.18010846957907	4.52994664546917	4.35552533001909	4.33515274560116	4.37290243992198	4.27970559746956	3.98185606372944	4.79437243849944	4.32557879239559	4.07071140773092	4.25535622843876	4.44160277727052	4.45719547384408	4.12779673340678	4.18885984200013	4.52559810658393	4.2224347795547
+"TUBGCP4"	7.60659279012383	7.77516033296391	7.2314603033336	7.65652505636946	7.89393155641368	6.76990994505821	7.38853425731972	7.61496600633743	7.69582476435455	8.1462558462442	7.66037547781696	7.90765685638273	7.41910882970235	7.21553611347754	7.44417815933084	7.79550382019148	7.75445340301291	7.92422626779133	7.65260094387589	8.24670791904119	8.30749974837128
+"TUBGCP6"	7.09479233136552	7.04469086887428	7.53134046653854	6.88537714162578	7.20491969417849	7.6206057967054	6.99942878287237	6.53159734728298	6.93519617331602	6.68892356029662	6.91438709392853	6.5010817744764	6.94272805501161	7.22799284867952	6.46654086522946	6.61969840473883	6.61384984695535	7.55816555656388	6.69584077437209	7.01693133668665	6.84292571737707
+"TUFM"	5.1935275250177	5.47533827345331	5.42210685631753	5.10532620631548	4.90010121067192	4.93642611119991	5.25107633021939	5.19096556286337	5.34014217994871	5.15631505312578	5.40780639277059	5.20669541857978	5.25107633021939	5.20452162300092	5.41438506645171	5.17827593226923	5.12562056757986	5.35001054504518	5.1888792797022	5.15656078324408	5.25107633021939
+"TUFT1"	6.60495275352204	7.20936095477915	7.76380625465938	6.98928686931404	7.40304269177906	7.42856347630164	6.86706578878041	7.46347689596099	7.18120886076728	7.07637200547968	6.65978355307513	7.05612613512541	7.05102908956165	6.93060693931915	7.06797370879303	6.92347093105779	7.19903013156264	7.19831474634361	6.92073034326024	7.32984240454817	7.17585693283047
+"TUG1"	6.38873777457189	5.69286176059613	6.06236626493425	5.89415191234558	5.6932886860914	5.91780289621592	5.63045591462457	6.45135546366717	5.80548372810979	5.41769755632445	6.36017665667696	5.74537470076509	5.97856216904267	5.90664427257045	6.17350976559249	6.26574426031169	5.68665449352912	6.27225131441596	5.7405848750897	5.55533340587737	5.55319827871926
+"TULP1"	4.82948167474574	4.95980922294726	5.09122390903668	5.09122390903668	4.94415075138786	5.36651736233812	5.24670958940232	5.03768683906734	5.01348676044828	4.99310135157897	4.90891536730434	5.12657282980197	5.26006108558188	5.37619241904706	5.19846955986686	5.08310272371435	5.3035137160345	5.04081710194199	4.98515403462232	5.10849771573772	5.00226288865162
+"TULP2"	5.2795246026911	5.00380127755388	5.3259715523188	5.14195914812903	5.31046419878667	4.95885712156498	5.47850691994512	5.15674759983789	5.29780289128627	5.16304009926144	4.81785511497356	5.14871290591794	5.16176887829505	5.17837153608858	5.20648482804928	5.11408255157543	5.11408255157543	4.65438562126501	5.1506102463529	5.44019260292493	5.41041145746072
+"TULP3"	8.87776684441996	8.54275969186426	8.40029566379794	8.40029566379794	8.33764638279602	8.69368411868517	8.80896162351646	8.70526078100393	7.49593273954064	7.59038894065907	8.9660517544723	7.77735064515861	7.97502273412097	8.53928783633005	8.2910017566282	8.60500737617322	7.77854737168864	8.78340602248472	8.42226616694856	7.50284494592883	7.90400605160326
+"TULP4"	8.9119086731164	9.12302865126206	9.64155784705865	9.24814754803381	9.71183973343652	9.96397167030736	9.29953014204914	9.04107870431461	9.60751776776957	9.31169846898845	9.37615862643487	9.2096539074017	9.50723853248054	9.4681863863742	9.63446412457311	8.75657137004468	9.28510706266525	9.27622996743752	9.0954050825219	8.99553236459196	8.63212259344372
+"TUNAR"	6.18151943320803	6.60575993392075	7.32314181384348	7.47128240065795	7.61265034176549	6.23521345508592	6.22973445632057	6.68514876118574	8.32073842525226	7.8570583995983	6.20865895043866	7.40961740825915	7.48838046602274	6.38387379800767	7.60330039254668	6.73442172838176	7.51496555000094	7.20904874364672	6.90826726225786	7.92032071809191	7.26718338785826
+"TUSC1"	9.38442383510374	9.42721149640058	9.81211070146698	9.49488082158314	9.65293946031842	9.35373794720656	9.45268343671364	9.47059416995538	9.64085366136837	9.59912722398276	9.59604777161912	9.39763678845693	9.45635147605451	9.31563130994169	9.50677203450214	9.64126118402794	9.47060478191487	9.95942332235235	9.34021151090808	9.5483032352143	9.29097404154284
+"TUSC2"	8.31222099764356	7.79939571732011	7.98158281629528	8.02119915969532	8.33621193293463	8.17069726374781	8.23405106491909	8.04429465843744	8.20763971521918	8.6198502219213	7.83862315986174	8.27902767560747	8.2171502666352	8.07518298208199	8.31721323925892	8.04002192177774	8.14083707272295	8.1830032261409	8.33974610189042	8.75824359358352	8.60506116395108
+"TUSC3"	8.03904350682332	8.56339891496886	8.62028944156844	8.34829014001059	9.04800367892171	7.42631605673945	7.22570395818356	8.67958540098734	8.42538617305307	9.29074097766034	8.33699986134474	9.20062173003975	7.89860237907184	7.33454392876386	8.08770909513501	8.86839200061307	8.73704894082514	8.71588253431459	8.48079435973008	9.50310307635753	9.15237262508351
+"TUSC8"	3.41603442714824	3.33484084881778	3.29920758260776	3.57629123454163	3.44324301598283	3.50817904957906	3.52475854582368	3.3324534330963	3.47199830915345	3.34894059396598	3.28463374298934	3.47361866557034	3.41603442714824	3.54329595849003	3.60230153024895	3.44021889307858	3.46786367344215	3.2512565141703	3.59907312960718	3.43186299727517	3.43186299727517
+"TUT1"	6.96860011833583	6.90487997714076	6.97608261241563	7.11646543348036	6.76212639144808	7.06263835665032	7.49495211114579	7.021147576022	7.07519628345234	7.05481546600483	7.00177225835197	7.00177225835197	7.17052875350395	7.20477897261851	6.97298166974515	6.92623672507009	6.94892563257721	6.8735890691728	7.14670536572798	6.64904101911761	7.06195547446218
+"TUT4"	4.62250374464889	4.93956363198741	4.56993494281627	4.68378422786826	4.50433301882686	4.24228840073331	4.6792369521356	4.60716583562647	4.67569487082649	4.60754010906391	5.18925332424605	4.85868221378145	4.58377437083036	4.52390156773307	4.66637174302544	5.23697261111668	4.71799380101669	4.68908782100677	4.66443685099924	4.74609128948014	4.46495016789132
+"TUT7"	5.45761268795049	5.41888031509566	4.537699768961	4.99363284265199	5.2580561070042	5.41641404895455	5.11374788322903	5.71011156651643	5.02737781235054	5.57176529621824	5.17446176806865	5.50645018576102	4.92659318105671	5.02218424685572	4.72249988866238	5.10611008404374	5.49722571012953	5.68367031852101	5.22025635773318	5.39846832545819	5.51656600272425
+"TVP23A"	6.00721354464526	6.52250349865626	6.6106682101081	6.06592980164534	6.63774856055973	6.42423481302068	6.10545997695384	6.44399989797238	6.42136204481563	6.29079601809376	6.0002172038634	6.28975355648082	6.38190678733749	6.40591542228115	6.17214039773303	5.45120579085545	6.24594546213118	6.04857325662521	5.70317804137116	6.48627014398722	6.52107468260072
+"TVP23C"	7.17265276354534	7.38256831466753	6.85501284438979	7.13144454268708	6.8668292384694	7.29423932486654	7.36317107323381	7.19651347009917	7.12665081784644	7.23061661638247	7.34389251426972	7.12412345915723	7.24669131305653	7.36048251728593	6.95482136747765	7.62403250104843	7.18725391613593	6.89619492216098	7.24417651996196	7.17018646248043	7.27391534281689
+"TWF1"	8.56986953038252	8.55484428909424	8.18254296533432	8.48153583964727	8.17042109317031	8.33179742661421	8.27215840527206	8.27713121488192	8.31842132662996	7.86758749179141	9.04193658916226	7.7713393409512	8.5968496940096	8.3638486614475	8.78605619048276	8.92627902048836	8.05505732148588	8.76204636267565	8.43244259951997	7.74837650009424	8.20596343327119
+"TWF2"	7.82833708177792	7.80469870795222	8.02837305562696	7.63167939493954	7.75221027123703	8.18101288738204	8.00023171359971	7.79848774909025	7.82566341915307	7.99573443421439	7.62405325457966	7.82221146402695	7.82566341915307	8.02688657538485	7.75809858208089	7.50923676233331	7.79484300902736	7.70372481749285	7.81323490154955	8.15850240327849	7.90302333484534
+"TWF2-DT"	5.98575069183642	6.42374042984178	6.06224819490377	6.69032488149763	6.23680514818202	5.97789867235401	6.26780063978684	6.09195347701838	6.42414069274091	6.25679252995009	6.34335017104122	6.35836139175605	6.47775160381912	6.42079547175271	6.4017175592868	6.40362304905127	6.4962990795819	5.78467418954958	6.29430090802031	6.16436421986524	6.59336911442594
+"TWIST1"	5.67193313290703	5.33085949379305	6.02674251762511	6.15450233416896	5.81748742813953	5.83734475848221	5.99120125396182	5.98487435963931	5.96388712343044	6.27594509344054	5.45218628948188	5.24969848475891	6.90108244553161	6.15862158485268	6.11893558708511	4.92997844461701	6.19593782998354	5.48494380006008	5.77392646241826	6.40042472709596	5.53011581441658
+"TWNK"	6.76447888805107	6.49139802470667	6.50752457237687	6.71990169065276	6.59421466185784	6.95837854167714	6.98713050202263	6.31060612754222	6.76488718353332	6.3134304061746	6.35763374452138	6.30899090610393	6.65756305984927	6.91382115576175	6.99094819511729	6.15332095477238	6.28638487141919	6.87669209790005	6.7182519880486	6.64114961833362	6.3463330942541
+"TWSG1"	6.52669284132094	6.13772220111848	5.98041359686924	5.84225443461195	6.36890867592911	6.61408971293866	6.62366213179723	6.74569638597467	6.37559293784687	6.4725196579878	6.87071537948472	6.14803968805365	5.59502540599083	6.3573754194571	6.02528768180917	5.98737603366594	6.01521468934552	7.29139364682706	6.61550071492461	5.88838998365791	6.1556115286877
+"TXK"	3.30627270553787	3.57655274450764	3.35482665382108	3.21527815368303	3.43561918328153	3.50060940002111	3.18651751553008	3.38749429401861	3.46397759965969	3.44654865271376	3.27400072250838	3.52054441839452	3.25811001017292	3.4981374971316	3.50512171201555	3.31610632446964	3.50512171201555	3.37322600748182	3.39415335779887	3.61460785166825	3.38613004288932
+"TXLNA"	8.10000473862431	7.59392335754372	7.90198197267866	7.77232674583309	7.58863112385491	8.23273204145195	8.00246361178396	7.77232674583309	7.77232674583309	7.41555604369731	7.93779512035476	7.36387544680352	7.777742958923	7.74759470039753	7.71555663751021	7.9176994241143	7.52886470033375	8.04211949607643	7.50619621400265	7.96966135868977	7.75788375372932
+"TXLNB"	3.36697647359702	2.981742755801	3.67055357187427	3.35779753413196	3.30204702384582	3.26601075683265	3.06020147197269	3.02904525331306	3.21311656872356	3.30463865076461	3.41944271410638	3.07620343659097	3.22608988158553	3.23470708001842	3.26601075683265	3.26601075683265	3.27574195385882	3.68677694733633	3.33640717548629	3.20306185956083	3.18404779816901
+"TXLNG"	5.83372126594728	5.70486285588282	5.03435711006423	5.56220138494011	5.78906081317803	5.54146903145607	5.70491146600838	5.73715070605808	5.62930315596019	5.79381019799969	5.83062704148695	5.80828907381088	5.73715070605808	5.48926526182086	5.19207745292029	5.94622215023374	5.67062047432874	6.22706601678286	5.86380163491864	5.64041960441393	5.85418431684163
+"TXN"	9.22368864651247	9.25762675041841	9.25762675041841	9.08832611415845	9.57678960215842	8.97631880776879	8.82428684024516	9.14806837453663	9.44862551911285	9.56873685500944	9.52293124990415	9.25762675041841	9.01532166162872	8.70791887065232	9.25175573801674	9.2256548521031	9.02320666049536	9.48119426509184	9.25762675041841	9.454571843202	9.45950877399506
+"TXN2"	8.80478848489941	8.80478848489941	8.80522391267267	8.68595658962587	8.86787665868311	8.49926458534951	8.87536254816838	8.9070135193721	8.694704515999	9.05632501442377	8.9588108306843	9.15996946827565	8.44198953944832	8.45768119972125	8.68017169752162	8.82332517422932	8.62616857747898	8.91916841848595	8.7431853857305	9.29002278313277	8.6045891859686
+"TXNDC11"	7.99178790268265	7.64141447172588	8.07225065027689	7.6826605624531	7.85097307233117	8.05615632791682	7.64515155881086	7.91226559530199	7.75455394681453	7.73539595288464	7.77137264200336	7.66010424172913	7.46195562245184	7.87936271749964	7.58580747560949	7.71480692934244	7.58685763858141	7.9919565812061	7.52308718190417	7.82325453906769	7.87510499653623
+"TXNDC11-AS1"	3.52077396743653	3.59656321394136	3.66838617116164	3.50310234788329	3.73362507966207	3.43114519572978	3.32086018586568	3.62385310468459	3.8312125609749	3.4156043180425	3.43515512033093	3.68399035017012	3.50310234788329	3.36937683849083	3.75707359185648	3.50502659498534	3.44082047266196	3.44927333376118	3.71025835424233	3.50310234788329	3.32732281357384
+"TXNDC15"	8.52250953795579	8.11724196379251	7.88265927262645	7.93639352786569	8.32585452965986	7.62264286601846	7.97065643643902	8.31924760016308	7.8564292646709	8.47507119946766	8.78679214996622	8.29417867277812	7.63113493234679	7.48189022599674	7.51991203047986	8.45971536534874	8.14320082156634	8.75289970359291	8.09010342795544	8.67005029035773	7.98970197256062
+"TXNDC16"	7.8767226463426	8.4639370352169	8.5283970316734	8.12296088237444	8.51887013460243	7.84505019801536	7.43421127762291	8.3095455013288	8.07829155481129	7.97830352938305	8.28102002149569	8.34991966638657	7.50825597413032	7.86263934900042	7.90520888884896	8.79459045909864	8.51202599619567	8.67508272807373	8.18655725715937	8.2590862335988	7.84922904494414
+"TXNDC17"	7.56022393617503	7.91190281916323	7.21587610270679	7.67566219951976	7.71834083817047	7.37963764700976	7.3653729604022	7.78947250432184	7.91045927947483	7.76611400988589	7.56287800699069	7.71107880914582	7.31512717811927	7.53053830425384	7.6924512928127	8.00137560540562	7.62070152223047	8.00794958945171	7.75955588364214	8.07871712541582	7.40289489177712
+"TXNDC2"	6.21691288440972	6.33486472787957	6.43256803053907	6.68996887189187	6.07715031335132	6.82632357330451	6.88655670475248	6.35183401566075	6.31127918215481	6.33604259304594	6.22112289710543	6.54852670998829	6.53306105198001	6.83435916487678	6.28552169706969	6.55884429206258	6.61115260110491	6.02751920034256	6.50383313103317	6.45334407698592	6.47457766685189
+"TXNDC8"	4.64818917493839	4.881134124695	4.78386978667608	4.80067385664358	4.84748599767456	4.95943014296011	4.79524019669337	4.78476031009569	4.9197432093064	4.97087273077305	4.83347237633545	4.91521011558783	4.85896680922487	5.03024374810122	4.95111299773682	4.97078882060694	4.85896680922487	4.72954192843858	5.03178114488054	4.76455629243303	4.92961970973493
+"TXNDC9"	7.41540609832164	7.59270999778809	7.82923784212547	7.17017514887818	7.67633046540261	6.71909353024979	6.17536215321133	6.94983245212931	7.07961626357236	8.16363932600908	7.48434069185731	7.04557646244241	6.64158764712257	6.41483478228626	6.88966902452657	7.94171235073384	7.00587997460992	7.60869837587279	7.16074020414532	7.64896926157542	7.49644927321163
+"TXNIP"	11.8177516300018	9.59556689275574	8.87448791915865	9.86053127019259	9.11920766239722	9.73468507843649	10.5135283466638	10.3886389583036	9.45331642715538	10.0854732132299	10.3877291198107	10.4750640533804	8.60256866655617	10.2565119100787	8.37970079664897	10.6868512220341	9.87825541702151	9.89459635405976	10.3828544342204	9.97824500384895	8.53240650215003
+"TXNL1"	7.29155582129121	8.07016370420414	8.73164741390269	7.95828593143877	8.50537368642009	8.26189979747399	7.76513019349488	8.06618875767889	8.4536434710575	8.24837223053675	8.37258079217339	8.15175674853652	8.4114711767857	8.37006362332357	8.50942443678629	7.85616542762579	8.14854761958655	8.54866213597418	8.03348462226128	8.07882567831957	8.14638767387592
+"TXNL4A"	5.68864541146928	5.8816144966087	6.54905952446849	5.9736011148389	6.73654830038912	5.96430447694065	5.47730136696116	5.30295204656413	6.1190980748216	6.56312559029803	5.67593138489352	6.07650775961619	5.88893782099972	5.71213812091815	6.29038320114565	5.78503067665531	5.71669256903932	6.01947306365348	5.4246663908821	6.69273847644819	6.2162831893999
+"TXNL4B"	6.17061939210276	6.18711805445161	5.58481501820745	6.23085944091476	6.0342874408496	5.40630180660305	5.92370848092724	6.02126759234835	6.18948070731009	6.01221918744254	6.46233396934555	6.10022324014122	6.0518882389905	5.7662511083396	5.78729665202394	6.99941094504478	5.80400181566381	5.86256420268302	5.96065573308425	6.63609515032401	6.16338232955149
+"TXNRD1"	9.44226506877292	8.76522773661029	9.03799634624823	8.7046204525328	8.99448964831358	8.68218006008813	9.06509470940661	9.40373521370968	8.97942146702145	8.98916119908158	8.89724264761203	8.782712914147	8.73553643237992	8.55365985199757	9.12292054231897	8.80144170622745	8.82965326853805	8.84864860118136	9.23204790027635	9.01312011035936	8.81091397594055
+"TXNRD2"	5.13449612325385	5.10439224731102	5.22736837547363	5.2742957445765	5.35525792262215	5.21852300896543	5.05770327857288	4.8038450310448	5.42464951677646	5.21395003132065	4.95394263472053	5.33586981191812	4.94820464644602	5.18572128860119	4.87992023014098	5.30043645219745	5.0982624546561	5.12789779146365	5.34810385551279	5.20452600491172	5.29500262822547
+"TXNRD3"	6.86055225266097	6.40220405043551	6.24213268729278	6.20350695950269	6.26059506804332	6.46964488619953	6.36460995780984	6.30494889005302	6.44289230244254	6.33919572577777	6.24171315803831	6.25256561523732	6.25441345354183	6.59739217658237	6.10536341393424	6.53625207087407	6.41377664080191	6.48368466713607	6.51025850058227	6.45597314739984	6.02079176824292
+"TYK2"	9.23585720190382	8.65002121773632	8.79226878884529	8.7956320146151	8.62719964543496	9.27704260101283	8.80918984024741	8.56915550441301	8.5167874244159	8.37983540912081	8.8391342387788	8.36737015000315	8.64284740097513	8.95118060612121	8.55967120228892	8.74417389496965	8.40423590979592	8.85581566714135	8.73907906715801	8.42865876975751	8.49718977054068
+"TYMP"	5.01380571944523	4.50643129871752	4.32351478355936	4.63023087942772	4.17412599582956	5.11207916441751	4.35730115137425	6.04467510862829	4.66342768484462	4.42634453996957	4.55501258357615	4.73339692500736	4.73734021270901	4.59958911587891	4.90544773837464	4.4654753110671	5.28270322512242	4.4546821920374	5.10267678264469	4.57512919121534	5.45424197097629
+"TYMS"	7.45395083716399	8.21764614122204	7.53571310744764	6.95875115689839	7.865938092418	7.35609417738861	6.7683235596333	6.82390002428263	6.59148032307955	7.23691011842593	9.86865926872198	7.25029456084822	6.51704819343851	7.13701488983664	6.37302823713549	9.99906906241679	6.79565036527986	9.82443125850238	6.94816053035147	6.80106777378462	7.12098008554743
+"TYMSOS"	5.65876815856068	6.17870016965875	6.16591459762223	6.03037855056524	6.36411880158556	6.68384436755096	6.11633085415109	5.7834460086006	6.09373026740716	6.03934822648113	6.88946868164259	6.01839984652521	5.64686608570084	6.44013853688685	5.99714821023095	7.14344940185319	6.19662110012893	7.32109702106169	6.08640404352387	5.70380056381709	5.88044640885329
+"TYR"	3.51649162288939	3.85595958811888	4.04158714178577	3.46313440996518	3.88215094660477	3.92439640930864	3.64035265910472	3.60554921755416	3.97371197059812	3.76649585251223	3.58564424175131	3.76649585251223	3.90809703307681	3.86170752425724	3.65686829965917	3.89580256138039	3.76649585251223	3.68897355668281	3.65805765743839	3.57543344875606	3.83801900618742
+"TYRO3"	7.57034621351744	7.06023663373755	6.90301723487201	7.3371552212933	7.41367965052258	7.51896821160725	7.11631353090959	7.58708461900172	7.50432047920345	7.83091220270463	7.47252566651492	7.81744233300999	6.9647464516674	6.92905468535327	6.89934645310194	7.81113363132562	7.57266517892192	7.75301881803266	7.39516095848479	8.03038840740721	7.63245777023991
+"TYRO3P"	4.90559184762656	5.00142037990925	4.94374742747762	5.00364274452141	4.9028063733552	5.01878792753836	5.13074241941932	4.96530284883724	4.87901004326573	4.97354306974058	4.82577234722605	5.19724774551714	4.99423511575618	5.12948097931366	4.88594484219211	4.86427291010414	4.96530284883724	4.84039135918746	4.98967121182665	4.91816316953669	4.9025131168635
+"TYROBP"	9.4139015655609	8.50189959348709	7.12517413018577	7.96294340764857	7.869691442304	7.61745848569879	8.30736600177133	8.74869602941078	7.93158401101985	8.36155291404462	8.50043947599862	7.84362057100008	8.24822697340849	8.61383813499695	8.19988251622797	8.32538958294831	8.35496477909755	8.39814553029475	9.05696009335362	8.82259185462125	9.07044396879293
+"TYRP1"	3.64412061090917	4.61093061594791	4.64371309140445	3.88841456879972	5.15377115989374	3.76649585251223	3.88134412682472	4.14678057272565	4.00235565078889	4.65915049192384	3.47410512919882	4.50864399337591	4.37671756776997	3.8694341949278	4.05671454201602	3.97824174993501	4.19975232880224	4.24622172431776	4.09799506597552	5.46977826684171	4.31378348780783
+"TYSND1"	6.54550081089423	6.4239716868913	6.29247056503749	6.32127710703211	6.40918803371079	7.04330810067763	6.90156061404993	6.36693021310927	6.28335877946092	6.37597512361054	6.10081365818494	6.39350538457649	6.32480338947418	6.75510228968426	6.06115683679684	6.41755486876755	6.41755486876755	6.45214525624382	6.24143482493157	6.57627129451789	6.20827017678281
+"TYW3"	7.91219735660787	7.387042545836	7.10160227823993	7.05214684036912	7.49258075290862	6.581924727316	7.34708032509075	7.5464048213911	7.26759897405493	7.52688980566118	7.59407335526652	7.48605732582922	6.70440370970772	7.085400559608	7.40087713565078	7.93545805113027	7.16009607226317	7.33621655552758	7.70246244704593	7.55501386241726	7.49757901818173
+"TYW5"	7.21461246414576	7.09458216397847	7.37247322418442	6.9633946692341	7.24210133455955	7.05554272434693	7.12245996088349	7.26416293567817	6.83442115261335	6.92780118568082	7.22195623331785	7.10571357377211	6.60777308838608	7.09357598057833	6.80341097639811	7.43933381027709	6.95804948271756	7.38077222102798	6.98129759262413	7.01400990013124	6.75201700828922
+"U2AF2"	4.96211367200479	4.94594682708956	5.18443974000626	5.09964134597974	4.782400391756	5.3515272460513	5.90118037283773	5.1617886140737	5.30595482685121	5.28270713371307	4.98731823794361	5.23592921564116	5.2035639649839	5.47305680512263	5.04481924210699	4.94196842214792	5.31650843929104	5.19848365664598	5.57845803145688	5.32773287841979	5.37727070279131
+"U2SURP"	6.5376849323061	6.90083260291745	7.22244613934183	6.48919918478496	7.19739384780881	5.64372325546358	5.69337659611274	6.21918350104636	6.43610439982878	6.79684088682227	7.53122670342152	6.9249391998302	6.02120799474229	6.14695562874702	6.04854463931974	7.04178158526318	6.59901068780352	7.32112427462095	6.32595709388822	6.73341149604447	6.84774003256817
+"UACA"	7.58822506920986	7.20161031992035	6.75027543951929	6.41863344825985	6.38169551282595	7.16641712056099	6.93024647000702	6.80947343573509	5.95950530014057	6.79635111880627	7.44816722538101	6.4642841490543	6.43687750762128	6.97298166974515	6.01045240623346	7.81182431480733	6.47224788718525	7.64326738287325	6.95562875013623	7.05224635229932	6.34280669168089
+"UAP1"	8.28310798450915	8.31816916493903	8.79629127136249	8.10526569374976	8.69990818571309	8.28719092435466	7.60205863286633	8.83690778009632	8.62009566936998	8.69831746130725	8.2198021211212	8.54574715257748	8.48663307761997	8.14684208971535	8.81892752175063	8.03769796732258	8.46017197490234	8.47352002478507	8.53030756912997	8.71209498599906	8.67035715921441
+"UAP1-DT"	3.79006757908458	3.75374731965277	3.53188507085966	3.55254477930649	3.84619620760385	3.50371137929673	3.77774485766865	3.87412289347884	3.81588611378673	3.59228541946203	3.48399299604918	3.61450640251358	3.62769746531757	3.59457303394932	3.55936933902278	4.05049959983287	3.70063467776367	3.45334348568984	3.87136237908795	3.6830963376582	3.7640967262578
+"UAP1L1"	6.63448365926442	6.76829384119813	6.90060445727972	6.52875157003693	5.74689780290526	5.96562777942097	6.69794131272631	6.21791162728699	5.67073537135357	6.41383684296402	7.57243079523119	6.05008465710882	6.27964169655619	6.64954380556149	6.19934398970307	7.88939824413077	6.56099044844507	7.30556468530038	6.54538873683889	6.16338232955149	6.51617177992197
+"UBA1"	11.1549603117008	11.0278644977904	11.2217346526352	11.0252341028047	11.1411741367326	10.9973638973581	10.7427480206335	10.9336728266094	10.8069052081093	11.2774623826701	11.08915800596	11.1142531729675	10.8549844279445	10.6550073659295	10.3142398706339	10.9361274989577	11.0077996168594	11.2966086156799	10.605352891719	11.3092145916227	11.1185192105955
+"UBA2"	6.14210178640182	6.43664882356691	6.12478187260396	6.36524554703222	6.3173591348215	6.22532454009807	6.29251709357529	6.23886392633253	6.32227910702226	6.32203034669228	6.10770753087399	6.29430090802031	6.49118793684738	6.18844135535389	6.31515683512173	6.16461871199315	6.36515684120114	6.17168636689654	6.16549403132905	6.29965139547093	6.52421634539634
+"UBA3"	9.00033647110196	8.86261758997665	8.82702180919527	8.81477737485557	8.97110619285585	8.50661236398969	8.39561160240465	8.85115304546028	8.90919462626845	8.87139467482984	8.98999663305466	8.5956433155046	8.97267978349922	8.58031934351586	9.03134063661913	9.08386965163712	8.81306851011444	9.33857009294803	8.80604684808782	8.60012353841028	8.82702180919527
+"UBA5"	8.28761773161992	8.74713584912929	8.82149998021233	8.65621615693397	9.14677356284815	7.89399710316316	7.79657785942445	8.51609930110447	8.71351648318693	9.12389842450413	8.73779111479585	8.943505971702	8.49062816090023	8.16761289186627	8.46558705131356	8.96232474850828	8.78691827324923	8.83609886976875	8.79765800407536	8.95542282113909	9.0784766404846
+"UBA52"	11.5972457616495	11.3027292525512	11.2467592619863	11.2071528954823	11.3062325968059	11.4938709326165	11.7522461061621	11.5538356792456	11.2461766781139	11.4337071003033	11.4469316923806	11.4163354723646	11.1075013277235	11.2933316414277	11.3082997802968	11.5543431292775	11.1075483542155	11.5103476337177	11.6179504635702	11.7155969703475	11.2473805487424
+"UBA6"	7.38207336076288	8.12464531570571	7.52187583671	7.22593514985682	7.60369053687007	6.79377104036901	6.62033793309385	8.16238137396002	7.21571157015637	7.1675451253857	5.63364059403682	7.46018619359642	6.97625912260208	7.21856802911137	6.61536062528593	8.67593453695286	7.8419397161869	7.87946773648505	7.30272714616458	7.34996651060887	8.11792103924762
+"UBA6-DT"	5.21563148208812	5.56261816847981	5.31147215825836	5.62181474004635	5.66450417715427	5.81574660803776	5.6264884393	5.20302076416501	5.20710069857162	5.4105796609044	5.65003669053899	5.53294215327753	5.12785501568469	5.65098240769748	5.49196259135231	6.62581127513063	5.501464972036	5.87646839716194	5.46064593646341	5.46488111038702	5.53294215327753
+"UBAC1"	9.2946347999495	8.79973232671087	9.1280029542746	8.72846657497661	9.02489275533296	8.79997104135717	9.18997631287067	9.15893248433741	8.83245732826866	9.06327553384143	8.99813214264248	8.75346254829726	8.88629236767085	9.03382514386203	9.01006601576111	8.97101362606277	8.78715277989403	9.05531807771736	9.02468143311859	9.04874858389028	8.85115861319603
+"UBAC2"	8.42888945876403	8.11448455301838	8.53200844788427	8.14836427449729	8.32923647748747	8.37691448088304	8.09055102615512	8.3178950546472	8.18461634439126	8.32914508332794	8.20741907046952	8.26421843942682	7.9011235306269	7.84100453413634	7.95316404579269	7.9592615211073	8.22566589398051	8.3490278476623	8.20255354949377	8.27685994570842	8.15745067671859
+"UBAC2-AS1"	5.777067265455	5.65257220673801	5.54446652702707	5.76838457652963	5.82610834633992	5.59704093980975	5.3161802927346	5.68252365059641	5.70002142263549	5.52040784458978	5.69761742003743	5.54507622896228	5.52045863742349	5.52802256494292	5.6028871228504	5.93117398469806	5.61286626627574	5.48335539707815	5.69302880199452	5.65055316310135	5.48020530957572
+"UBALD1"	5.97740172414219	6.01956729288299	5.83652226918115	6.29328450385999	5.67588706264012	6.75368557107334	6.57211625616677	6.62196798539474	6.4969378684004	6.09571560882195	6.12334867929942	6.11010841461362	6.5005676933174	6.15390030643983	6.41928335959186	5.81700310350549	6.29531700684928	5.758394754642	6.24833702702599	6.07175747914876	5.96619972266651
+"UBALD2"	8.04372430137856	7.66894786369264	7.58731170060135	7.87338709394008	7.46072166166547	8.55585871561289	8.86634224586077	8.55311295861275	7.7548900897018	7.85725566892114	7.89946581535078	7.993195900282	7.86250357056984	7.84183237113151	7.91094525534168	7.24610381199126	7.93415637604586	7.94041180083809	7.95694211804698	7.76119542948961	7.98334843409882
+"UBAP1"	8.74435959121335	8.58973487030454	8.51695554394503	8.73522892636095	8.69556472181203	8.54586981719863	8.73967157502217	8.7417683955709	8.94533479810728	8.69628300882992	8.54456298161099	8.52514194911408	8.91817944361756	8.707395956572	8.80951305372248	8.55838368949999	8.61179385912304	8.82612790263963	8.70781745621881	8.64125850129988	8.63416643054627
+"UBAP1L"	7.12082450203268	7.64728313518074	7.84201268779681	7.19659249357186	7.55798303962197	7.38234273958769	7.00248104895173	6.97298166974515	7.23890808210522	7.42593045031973	7.49777021683057	7.44180928469449	7.17334309108109	7.30137361793984	7.08174149948981	7.66368582749486	7.45526984938054	7.9305122055605	7.19573305625581	7.37662893337441	7.39254899689019
+"UBAP2"	8.1064993756742	7.93819125277789	8.50379618163307	7.71990663201314	8.04482280257244	7.98024045781155	7.5979331341724	8.0401121316318	7.46203786118389	7.41831460502799	7.92940389028088	7.68620983937304	7.6398775425047	8.058146199797	7.78440941971436	7.39317464520167	7.60083569842725	7.86052661124274	7.63275230409049	7.74243557460632	7.44451984614912
+"UBAP2L"	9.25817882538031	8.80307453995286	8.77432561586623	8.76267918414441	9.0510709034169	8.93708420175443	8.56688745633774	8.83116569505846	8.8857512457904	9.08616126450926	8.95696377729643	9.34882292116407	8.40622385816684	8.27142770710451	8.17804314591019	9.01771375944098	9.10667241280875	8.95236262596572	8.83846863997572	9.18805307250993	8.85211611316213
+"UBASH3A"	4.50643129871752	4.17776051795061	4.58011460847426	4.65915049192384	4.52346340262301	4.65910454808773	5.23632345865411	4.49318581934433	4.56909812052368	4.65021682089542	4.50643129871752	4.54711351386073	4.68432693318052	4.68204740781205	4.33375313656528	4.16497822842587	4.3761240432902	4.14227811981623	4.63543947548863	4.40118775696327	4.64058647061439
+"UBASH3B"	4.5157507854754	4.5723773908058	5.84659438989154	4.51370431912373	5.47587681894564	4.37362918066763	3.99113858569858	4.55826862327005	4.96818679497309	5.34909813118306	4.4809159381943	5.08771697782503	5.049411390601	4.80906416562296	4.90292298300822	4.88175692707423	4.92189904228117	4.75000397638411	4.50978676687257	6.29462990691819	5.78576142990589
+"UBB"	13.1368610275807	13.2170569096814	13.2306774543344	13.1851314905552	13.2614351822188	12.8949332138519	13.1953365273547	13.1476966677491	13.2594600317005	13.306822073297	13.1734487377975	13.1815377794061	13.1908712651004	12.9505130816232	13.2901579421758	13.4536549124023	13.175491010008	13.3929163024948	13.1915095420607	13.3254514802961	13.2427297796864
+"UBBP1"	8.05873596944225	8.38986029841972	7.81856047355022	8.73508890913935	8.23719299739797	7.41717561564085	8.31279194410435	8.3249563279054	8.53645908351251	8.64164381224054	8.52515514390699	8.36563936694438	8.84406028427745	7.935551918309	9.0128548222384	8.75476389341681	8.35808510718903	8.29932180305655	8.42288795871661	8.089455868068	8.71410294953502
+"UBBP2"	4.99993281173398	5.37694277694813	4.98200908134609	5.39624407695985	5.30622428133295	4.31213706151957	5.3858344605688	5.27655799571179	5.3973348872181	5.44771021747319	5.33073790551606	5.28401737671973	5.61325918895891	5.20180079162101	5.60198397036571	5.61661260247798	5.28591589861685	5.55887812781221	5.18503130100651	5.30918070843266	5.43604477956549
+"UBC"	12.960508526403	12.8482331801323	12.5897296653239	12.7783788311679	12.886523369697	12.6181441031173	12.7382767154642	13.1993993466954	12.7471293903305	13.1475803510837	13.020731522672	13.0140340045054	12.7862231047157	12.603730759648	12.7142138386377	12.9221691992254	13.0343752530239	12.986257245341	12.9386315989883	13.2136629493792	12.960737195536
+"UBE2A"	8.57294892156323	8.38753407274037	7.94942455138765	8.31591302324072	8.44438301495632	7.7263258442978	8.32407972646452	8.43842127063434	8.18581089008352	8.53956527809866	8.70455050383782	8.35549750101772	8.15618209868524	7.97151572085471	7.82667772958748	8.8582991397843	8.17405658251915	8.91283917456777	8.3376302952421	8.56165144477175	8.57622676277808
+"UBE2B"	9.27721719100246	9.42137644712992	9.67615779883298	9.58144163237049	9.97941185575901	9.18633324273018	8.88411606735138	9.29586152755828	9.54545763288741	9.705435761947	9.28296115795567	9.61047984293381	9.29485357028747	8.69932945873425	9.48411591838591	9.75043809864303	9.61717255919541	9.51410132346578	9.61361868565374	9.85600566621297	9.69844418196362
+"UBE2C"	5.60409286193072	5.81132972060323	5.73971809950586	6.276884231741	5.83291261604277	5.97238447550679	5.91178319951445	5.70959458301848	5.97335136045598	5.75004451247571	5.74057497828102	5.8692499132607	6.21628867458171	6.30241308637837	6.21146252278495	5.89113046646339	5.95091557217761	5.45114259895612	5.9264870176931	5.65452125911812	5.68252365059641
+"UBE2D1"	6.91518686677056	6.87395872382028	6.70464834345044	7.05168156316591	7.05224635229932	6.3643480768716	6.5022819457688	6.68912176805662	6.72437668591465	6.59631549185054	6.92362397006223	6.58011315540361	7.04029151883567	6.62991685540782	6.98969311165478	6.99978264432628	6.73187639713775	7.10146972439346	6.81785559897437	6.89994831162501	6.84077998819356
+"UBE2D2"	7.43284138780785	7.51018164108337	7.99193181890187	7.40877939349129	7.98476384536979	7.49304662138133	7.20472891713106	7.53118561302356	7.83330590835849	7.64011698180338	7.40097642495641	7.52382105189402	7.42617125028549	7.19806084291432	8.00284745493673	7.85683409563114	7.64239510605825	8.07496096772303	7.70149072653704	7.81395019175362	7.58262307908799
+"UBE2D3"	7.39773022562488	7.52796810681122	7.08581303762978	8.23380229241755	6.71812202760026	6.50883416625697	6.59441786216446	8.10267331584463	7.54505819471723	6.59170546359216	7.95091857983862	7.40782532075321	8.23843395792759	7.24184737138385	8.56886474561043	7.19525915477409	7.63425043570484	6.4397664762477	7.58094053642898	6.83894107450383	7.28214408336487
+"UBE2D3-AS1"	6.43430044576561	6.44620043156737	6.08985841874345	6.74182751557035	6.28287738921389	6.10255238623347	7.0428988357604	6.60652293532759	6.44620043156737	6.15135432088614	6.36167261668292	6.27031129257144	6.49118793684738	6.56084441586085	6.83047230149999	6.80133693353563	6.53312421208649	6.2804928666705	6.70704012640777	6.48583228849031	6.1545762691176
+"UBE2D4"	7.22433371159008	7.10697561393259	7.47739633761339	6.65465669774944	7.17462900200661	7.17332184971239	6.65141161567267	6.79974629653748	7.02330871803359	7.08198150066413	7.19361436927696	6.75572195886428	7.0787832852445	7.22612701792402	6.87600579324588	7.24268299988332	6.81415086361518	6.92274882201685	6.70124326161657	6.85430131455844	6.73854986581298
+"UBE2DNL"	4.27525941005054	4.15486496664628	4.13104267290616	4.4136634208766	4.28119751861247	4.54320847736464	4.64110134657743	4.29032210261746	4.46330145472139	4.29032210261746	4.00294424462905	3.88122381823942	4.53588810110399	4.40785235660281	4.23938329729926	4.1611261199528	4.53255000741598	4.37534949143246	4.204449298518	4.04423201509288	4.35983148662227
+"UBE2E1"	10.7095703110814	10.5364795780335	10.3497544030945	10.4296403692081	10.5631566975454	10.1610172492399	10.0395975359006	10.5444661022173	10.4028351661962	10.526132566101	10.9330669329406	10.4642686724903	10.4387753012548	10.006911659045	10.5059239836893	10.9945427009912	10.3456098306311	10.9092974825963	10.6421884154903	10.2257200004516	10.4398001094395
+"UBE2E2"	8.28161192953215	8.9834837728144	9.49238417706144	9.16414513677283	9.45453510761095	9.07917937254603	8.37226911484511	9.1867779028505	9.29425512285866	9.35071558942779	8.74477190163004	9.17048142424966	9.35533564396362	8.61905008096835	9.32848639386076	8.92856017612589	9.41044071801099	9.26901292554844	9.17046699783577	9.38231907128086	9.07599339942937
+"UBE2E2-DT"	4.67021906655585	4.79749209607261	4.66344460756471	4.70363716601282	4.73242155702065	4.95115313362215	4.95529080216542	4.80813902439375	4.68165320726199	4.60887177721352	4.39289894133917	4.42764418536644	4.66344460756471	4.77794510920969	4.64940353585554	4.48663113098075	4.63725679517885	4.66344460756471	4.44421213898017	4.59357721231061	4.70494120675701
+"UBE2F"	8.35132135423159	8.3215262407368	8.41020500219676	8.47329521320734	8.64768487892335	8.11850410644612	7.86058999774756	8.21411750517644	8.45528416554636	8.71291276829723	8.36769634690165	8.22239434754116	8.49288933095111	7.87511366846397	8.59016435426978	8.75998777376183	8.30514185156459	8.63928869138046	8.37237349733648	8.47412945130248	8.6927826543477
+"UBE2FP1"	6.46635578255136	6.55232387370616	5.85519973552946	6.5900548257363	5.58063578457405	6.5728380978364	6.05026483375244	7.08343809240191	6.52730286904719	6.36509105530081	6.58815088037366	7.16371520240293	6.57047148188964	6.29578187493405	6.61960550780849	6.78611358125254	7.19556145268236	5.93821205740215	6.64565796316981	6.47588398746497	6.52730286904719
+"UBE2G1"	7.5204707206355	7.03081320763071	7.33693301742795	6.52526141193827	7.21044102501319	7.02084951295858	7.24255189862293	6.75423220682049	6.75050155911761	7.09139404580585	7.10110197277995	6.51692215593317	6.68827710520601	6.83185385919573	7.07382453951793	7.57520402419283	6.72949554287798	7.83116827881112	6.75050155911761	7.12900072007183	6.9947454472115
+"UBE2G2"	7.83452771751781	7.58063827419487	7.43993354352591	7.68964866664722	8.01463028820467	7.23299511006674	7.84847495458636	7.65748009089554	7.91346445110448	8.20462249289724	7.97890323412616	7.91487055570521	7.71200130660512	7.59701430230061	7.42247120556176	7.95311777051562	7.87625288419649	7.97111166848527	7.77827380856226	8.00916982009018	7.98930739509733
+"UBE2H"	8.51903660963706	8.209251068823	7.0080506014936	7.7507271265972	8.17139204741489	7.43666334027197	8.25179756514351	8.79707404207842	7.9121781267917	8.23697763247496	8.1623730182434	8.3347794662919	7.93681079705761	7.77620466103977	7.66350051462714	8.0713014150236	8.01636145709608	7.96968317505066	8.09516899653549	8.12875294223933	8.10473187366423
+"UBE2I"	5.82482936947348	5.60681107031851	5.61365293098007	6.14505941677971	5.19563440780636	6.31327863518815	5.22554142192682	6.35943033011934	5.64670340548926	5.29274730601974	5.93482328149668	5.7826817101516	5.69655736932295	5.53272178772877	5.48063688359362	5.54576269404347	5.82359041192924	5.74527320429515	5.73143532202479	5.08193952581518	5.23156591891071
+"UBE2J1"	8.49721096138723	7.66784520159595	6.94647576020902	7.6706027320305	7.69849911318372	7.64704132750934	7.4565996043708	8.05142946751081	7.47829212859456	7.9088654262063	7.95713949643754	7.47935042331279	7.73454515947082	7.38168107093042	7.55463352402205	8.21926812412277	7.3582741423652	8.28939516125396	7.70962498379363	7.63652580004457	7.99254459286329
+"UBE2J2"	7.35127932958529	7.35793909454355	7.55394888368449	7.49263850395317	7.51143116523434	7.80709260685019	8.22837471362744	7.58357654902623	7.69875321796389	7.71892146119061	7.44666541566914	7.61265034176549	7.54357753037747	7.65969933787271	7.52053298413426	7.32732872830197	7.42751376852352	7.28762074343005	7.65898882082755	7.57039346576188	7.52995342046931
+"UBE2K"	9.99819478775588	10.6821639485188	10.9613861142081	10.638783014213	10.8631807555518	10.1846155512229	9.79006252600993	10.5581667647872	10.9242477908197	10.896822785553	10.1864555956047	10.9308651597955	10.5411928497179	10.0615396265343	10.8054797041545	10.3856122483785	10.8499468865288	10.0904530957003	10.7977567908747	10.9040316226031	10.8359048472018
+"UBE2L3"	10.0694636377216	9.41734614136198	9.23682610676751	9.48576668242206	9.40889868347404	9.09012861059603	9.64696423464733	9.67290102724889	9.43418136984508	9.73265402493273	9.54533980460534	9.69107414764671	9.09767204682719	9.29704359908914	9.33526747938075	9.78613567695555	9.51326266917733	9.59220866496544	9.63141897498618	9.85662770891915	9.80702960334972
+"UBE2L6"	9.5993579193544	8.91434688509129	9.01789443599347	8.92577506017735	8.93786056328812	8.86479790594357	9.13043054569039	9.61424008600207	8.84140116052333	9.08289241371312	8.88500344502607	8.92545178203295	8.95794363153574	8.87138752971184	8.95794363153574	8.46122779342356	8.70546168523274	8.89497747948184	9.00528507803966	9.30359356229296	8.91418983284701
+"UBE2M"	9.37116764868701	9.52937305576163	9.95535907052088	9.60260743104707	10.2984644533706	9.67633443901353	9.9502851450863	9.64311565090197	9.86732423930306	10.0087716781833	9.35905104703562	9.94836700176548	9.52585899642942	9.46828354596297	9.38579386707748	9.44590829571801	9.71284459973685	9.75717006286398	9.57267443643836	10.0709346376973	9.93285111688514
+"UBE2N"	8.65906185394488	9.58777939992765	9.95560238094865	9.16865652505877	9.9920498490565	8.46275499419013	8.22949465144525	9.11902033951785	9.29802201786462	9.7333533836866	9.13794456813021	9.79031865457664	8.98144318718086	8.37979347798374	8.8648679485512	9.69922868669549	9.49845627540434	9.42087539403233	9.26850926854019	10.0042606254686	9.69109318864069
+"UBE2O"	7.98625087271675	8.28469419104905	8.57532391014315	8.465606759084	8.80959510192509	8.71612109087186	7.94759422051247	8.23333152388955	8.65305786267001	8.6779334852372	8.23684073213734	8.64598401127685	8.59474457866901	8.28719092435466	8.30203951042168	7.91622152096561	8.74687530587206	8.4246552100431	8.05570968003668	8.90515923480091	8.66078353191803
+"UBE2Q1"	6.01107135710643	5.6697215475568	6.3995011742869	6.13946508091129	5.96772879792829	6.4191613175982	5.79795987942099	5.5524450347103	6.66601689487179	5.86342588380956	5.93190854970927	5.67880864808736	6.19421133568355	6.01107135710643	6.46075812851275	5.78069881339166	5.56073378530309	5.98759400351964	6.20283760739301	6.45330170756546	5.89362698153177
+"UBE2Q2"	8.41894430514849	8.43485226767105	8.18713511828143	8.1127555709483	8.56537738024405	7.73534002078842	7.80032321328468	8.18043541889944	8.5108393223173	8.46498461812712	8.42199109871409	8.22265196452185	8.45584865915329	8.05572219907896	8.60928296637366	8.32088533977927	8.10812356588058	8.61290321341241	8.29448440266787	8.25532155694931	8.33294196874642
+"UBE2R2"	10.7297225578022	10.4921454435755	10.5452071051172	10.5310782130871	10.7386799429211	10.9135643863894	10.572913453101	10.5904000725731	10.5827964541754	10.5565799039435	10.7608907537283	10.6596122649567	10.5712286935441	10.6509708526553	10.3133247984575	10.992425981894	10.6379241713841	10.6986260647476	10.546995930036	10.5480479546496	10.4642750852008
+"UBE2T"	6.12566005706399	6.68511077256354	6.91390615584806	6.86455668932961	7.69485646748125	6.61899963734308	6.12088033311727	6.70606832213362	6.91602916049187	6.76784742958596	5.76514691290461	7.35560261154512	6.70342884156848	6.32436082474709	6.86455668932961	6.79298763620869	7.03381882972912	7.01714163905033	6.96002287355492	7.62536009981523	7.33395543039673
+"UBE2U"	3.09263286924698	2.91957099342288	3.04441319454705	3.15180530314432	2.96851618981712	3.03045557976253	3.03988888821234	3.03494250516311	3.06205734619433	2.90697653678258	2.84358745289624	2.92039217624436	3.08788392923806	3.03494250516311	3.08348237948715	3.09943728697917	3.12123531073463	2.94676722064004	3.16896739646255	3.14374965385803	2.88829330098211
+"UBE2V2"	7.11368279722536	8.05565950533614	8.78778279291235	7.64173614909059	8.81984022306084	7.36243142435833	7.09242566128325	7.76645795859735	7.98831768283627	8.62746934251176	7.49947801638376	8.58355354731049	7.78637413843301	7.41415528129927	7.96818216410147	8.28251795906752	8.39213921041342	8.32023718559917	8.09375378808515	8.72259539603486	8.6032073007705
+"UBE2V2P3"	6.01520638391855	6.01326942072359	5.93794289484015	6.20960877373066	5.99714089105595	6.41372420010915	6.57211625616677	6.11807255645046	6.36632025864914	6.3864657513777	5.95808035963152	6.2715736571401	6.36034878462568	6.70499119196716	6.3458656458013	5.98484229724733	6.21255237245026	5.93677191233105	6.29430090802031	6.16732255778693	6.1254418378158
+"UBE2W"	7.35051042175018	7.58577671363008	7.02846047243171	7.9988412228137	7.55134332205244	6.95117249975474	7.33497128333683	8.10488583687893	8.39773524349969	7.99704513850674	7.75810530794753	8.1375725782801	7.75810530794753	7.41222637358309	8.20586492177645	7.16747300715834	7.9362602271088	7.13430805714225	8.02451986259194	7.98655408277492	7.81895336098468
+"UBE2Z"	6.9910030349897	6.44106317850742	6.39008794296871	7.12541516528508	6.6072867100354	7.4834998300331	7.35433024957283	7.49042550133593	7.02943303433523	6.57889290545062	7.02753910453317	6.865981311852	7.37158562945499	6.93574008668393	7.33425516866716	7.86548835361168	7.05063281079173	6.97878958312208	6.91677553102537	6.95754522378937	6.29469346397279
+"UBE3A"	8.54541468943417	8.79660417009109	8.90187602592378	8.6029002078214	9.03188839309049	7.78029812792075	7.72742792707948	8.73667721146889	8.77807559546972	9.13053280013549	8.7647544717949	8.98593221222568	8.42788716250812	7.92231938311501	8.6187575246066	8.99544950674242	9.06487500808913	9.09489153730424	8.86292019109542	9.03236407077004	9.13896996590253
+"UBE3B"	6.67931192292754	6.91265035305033	6.76312004234694	6.48925088628931	7.79197788863358	6.99464151619272	6.55971937874517	7.0730494544134	6.79762163001652	7.08463787303657	7.00886705587237	7.22616951847767	6.38521841269184	6.38003822828087	7.49392194615682	8.10720521169936	7.26918836626666	7.08347664077966	6.82874305789312	6.94982862491583	6.75377712956885
+"UBE3C"	7.80661203895186	7.76750787206059	7.82843188065574	7.8644640457157	8.15933882982189	7.20184939927035	6.97742457172818	7.57792669506509	7.62609735172482	7.89622356250037	7.74781925432525	7.73518645722986	7.67402248190763	7.20766030812449	7.88987272124163	8.02718752526391	7.77202703940535	8.07430165418978	7.59409932913635	7.98372358914265	7.98297980199667
+"UBE3D"	5.22902995513325	5.64228329087153	5.75140063796298	5.56909221423031	6.03742551263737	5.55229628671345	5.23272275631424	5.31483217670649	5.8704121990033	5.9943159210972	5.45124121372987	5.75889676213312	5.56013431914535	5.66260655794956	5.79742371193077	5.4524287415067	5.90072646921704	6.17397999157225	5.68601528231276	5.81232967680223	5.60462944702863
+"UBE4A"	9.95170992774314	9.83189954379055	10.1237674917437	9.79708206191044	9.96602193740262	9.86460921111936	9.55416751238165	9.85339886077863	10.0122244393557	9.83370278404958	9.97200842091576	9.76151788605588	9.79936862661009	9.71389969133262	10.1880027615836	10.2167557258251	9.85951914965956	10.4225968631003	9.8175590510426	9.985539424441	9.825083954817
+"UBE4B"	8.217758584253	7.97003736753323	7.73029392061459	7.61881071405688	8.08861102526667	7.8376330233072	7.44217754517647	7.80465832654722	7.5723494415357	8.19080311561227	8.25353344804755	8.25773341383393	7.27764726348357	7.30606387148822	7.2865861678706	8.53951936483594	8.1555828190236	8.65840152911193	7.81536709922047	8.26479686471723	8.26740108552087
+"UBFD1"	8.60648921049935	8.90536777268898	9.26845894064621	9.02396927245475	9.36899518266484	8.57701827231967	8.33416846914499	8.67496577575746	9.14818946056533	9.13730752368677	8.63870792492215	9.17682009581081	8.88137525001608	8.45381542028128	9.07000597384513	8.73758995929882	8.95295037693791	8.90619318808695	8.82943519367768	9.25098958678373	9.35699238466326
+"UBIAD1"	6.82930422210577	6.54588504367264	6.4456807472116	6.41260919727824	6.50398205153141	6.65550632067371	6.58414077803942	6.33623297077324	6.57706063092088	6.56370482675068	6.54809057595236	6.40022249882483	6.42003823160172	6.68688525475988	6.39668854658433	6.94114954510492	6.54809057595236	6.99091621329748	6.44462388154056	6.53525129923392	6.6054604713271
+"UBL3"	10.3982748031983	10.8264513116896	10.6899728423687	10.648919056741	10.8387692248334	10.6555854016588	10.4005947522349	10.7743940948096	10.9019489423204	10.8080361682555	10.8019138338682	10.6219256377471	10.5519289309201	10.4489960630571	10.76004689399	11.3100531206059	10.8061057812478	11.2714488077967	10.7654687777893	10.8218268757178	10.7425379812086
+"UBL4A"	8.17541984952804	8.0909476578158	8.23227893942254	8.2495758556923	8.30645554810645	8.17596203480648	8.07459156751925	8.12443608976247	8.49783943149393	8.80507011609763	8.16894147101094	8.40939414258296	8.17325079992865	7.89544296701058	8.2616759721238	8.26199868195978	8.42613912397924	8.24460602986898	8.26199868195978	8.52161399849004	8.62959040643821
+"UBL4B"	6.62222851750226	6.93249793007217	6.80878770887691	6.88906415730474	6.69417171262584	6.80236043382698	6.96874320238008	6.77141303064289	7.01597117411693	7.03668308796688	6.67540735051601	6.90217808720253	7.02771038350416	6.94517421566731	7.13815155875253	7.02018491156779	7.04405740043193	6.56683618531581	6.76065249720695	6.72391474407415	7.02534134889306
+"UBL5"	9.9223932857309	9.75800263486812	9.80180269336306	9.64665094080889	9.84004212777029	9.52308358158719	9.93550452665976	9.82817259439683	9.87436856288524	10.0668021872931	9.95537321555516	9.82265078606127	9.7109057999481	9.53982613533153	9.7446590124856	9.81698771845071	9.57345093966114	9.96643595482759	9.85795602753222	9.96105509293106	9.76993767682591
+"UBLCP1"	7.77991234484391	8.21917456261395	8.71273186911612	7.49920985803787	8.52929164563958	7.41347820996767	6.87997845233458	7.41718858695826	7.66896730261977	8.07751506359733	7.88707075621462	7.94212486251503	7.25380907204125	7.19474080943726	7.55344270039955	8.40496482796813	7.75206310145446	8.54263290678207	7.63233598315545	8.30576394768465	8.23878629102315
+"UBN1"	8.54616118654289	8.5781711060614	8.99252461754791	8.78389072775078	8.90175156476461	8.7490596693438	8.28448230557438	8.677959533919	8.96193080265463	9.05069403392299	8.70124451392659	8.90395764965344	9.0056417166157	8.97167119210216	8.72455309230399	8.38352501290249	8.74365429981744	8.55819027738105	8.71144829806034	9.0767152361546	8.77960223715069
+"UBN2"	6.69530775478682	6.23497097108948	7.44103325756096	6.90293214056308	7.48266679979679	8.07297581577647	6.71955404869417	6.77298850631039	6.78597322939123	6.37597512361054	6.57889580950018	6.76776627593274	7.06619878922141	7.04504535206952	6.85885548291177	5.64428730040742	6.46254177348072	6.87462705939126	6.41013514512113	6.31245579642575	5.92377392444626
+"UBOX5"	7.55904611369582	7.76853989504387	7.80586006433634	7.78272973181848	7.79479496290341	8.20040319165624	7.79479496290341	7.97054079783029	7.9506417300491	7.62202812660791	7.61965351117263	7.82935809834427	7.97814532017049	8.14416144670414	7.80661035404702	7.77161329962484	7.82780566242881	7.72693131542715	7.58879728579037	7.80586006433634	7.69060244540039
+"UBP1"	8.76307678303495	9.23069576455025	9.34356254736628	9.16908120673806	9.36007665170104	8.63465451573508	8.36937172505569	8.76514706751941	9.2079902169933	9.09547165481137	8.87496443378794	9.03116728347864	9.19322233801149	8.73827380293106	9.27850027101488	8.88370277124983	9.2517855900709	9.00629076187177	9.11147281745416	9.12745744749333	9.32078875689347
+"UBQLN1"	9.31426384543987	9.80044282851413	10.0283552590721	9.73641025790775	10.2843687977836	9.38583125521823	9.19015540875906	9.73484167454416	9.74906948736771	10.2647467530793	9.79629122600358	10.3188582314715	9.40815198617222	8.95352140514511	9.80452407046924	10.308944184037	10.0496902778074	10.0847764810681	9.98545764148112	10.1482366887406	10.2674672217986
+"UBQLN2"	9.56518452627354	10.1163930333621	10.3463102765945	10.2947271771664	10.2211319726931	9.6697487244706	8.69304891436531	10.0786773733733	10.0264200435321	10.0412111938259	9.98042869449705	10.194698630718	9.8661106233745	9.44874154589293	9.96630229475072	9.96080824836273	10.1821023214302	10.1894752812297	10.1203476007897	9.90383192164941	10.0617294080918
+"UBQLN3"	4.00967676648148	4.19818030628423	4.25609474989185	4.19238585480185	4.17684415250716	4.31889294685792	4.47796625175984	4.33123638040911	3.96779852709763	4.05451514831629	4.01880818857819	4.17486261363931	4.35693956383546	4.06746654241442	4.19238585480185	4.46144120550494	4.26111194855138	4.10232776694563	4.51170365925201	4.11977798840462	4.3112633430183
+"UBQLN4"	8.67436808852177	8.59097833672635	9.00834053164277	8.80892515345269	8.77459279769278	8.90495019590824	8.8609296561822	8.82976799164113	9.0053577577883	8.62082187101739	8.45262452004858	8.54189097036902	8.91503690602182	8.94382736615414	8.93125627303027	8.3347794662919	8.74871231721059	8.72899884910454	8.91148165066305	8.88492411421537	8.68947978294191
+"UBQLNL"	4.83851391392687	4.80980832710333	4.67874573354894	4.99169548668545	4.7859231244544	5.79334535602598	5.11774428176158	4.96530284883724	5.23474016936674	4.79310269692523	4.83492274129084	4.64611064199443	4.9765988313793	5.30012140375168	5.07132118929217	5.06579375543864	4.62256879834118	5.34004560301314	4.96686721986229	4.94095205228132	4.9763714784958
+"UBR1"	8.35251222796793	8.63622459213915	9.08580808253951	8.6014681660263	8.78196993292359	8.11680023685357	7.57144012215455	8.54004775566452	8.70654377412808	8.54099185355087	8.59686139315077	8.65959305423498	8.76610018426668	7.94271569318688	8.89281432964393	8.57222713449953	8.65477083332607	8.95567550189392	8.47534097860725	8.56620468050437	8.71617072204644
+"UBR2"	7.60036839991908	7.78456375743295	7.52957127284894	7.38103001458096	7.66156702311535	7.56700661816651	7.22563853096608	8.48220759219442	7.11991748307225	7.39498246673617	7.58786802201582	7.98380780169238	7.44004546317597	7.03290139416036	7.62781239493517	7.75085413660778	7.71551877932233	7.65397898874248	7.56700661816651	7.52209979289791	7.29292564549583
+"UBR3"	7.808105505422	8.28830821034089	8.41263346992248	8.28830821034089	8.68794648763266	7.74424983248219	7.33926078680189	8.15156041609405	8.30771657668618	8.39517776823444	8.13643282075914	8.43654979070569	8.0647616111739	7.58982895677613	8.43231011970776	8.37346211891374	8.47813445487671	8.71327272073464	8.25182481360435	8.17489906622435	8.59396693099727
+"UBR4"	5.54629984398075	5.59092745626475	5.59092745626475	5.76769420996209	5.04329786070256	5.53362577932845	5.51403668859576	5.8652839018086	5.59092745626475	5.56874945033364	5.7489344112617	5.58903255081388	6.00612496148247	5.83693454646815	5.79822667338739	5.36058466646445	5.66280647085062	5.3988578646497	5.67461059957541	5.3159843417535	5.28794015104784
+"UBR5"	8.7951068700581	8.85175539931596	8.81062588880186	8.68985298675792	8.51952273889343	8.84208349843261	8.44040024161968	8.94225314951205	8.71599532758959	8.18006457926387	8.75395455624181	8.61927254676842	8.89243657138523	8.81417790319079	8.88225253389449	8.29295034325311	8.74078819320673	8.68985298675792	8.49996187439655	8.3293791958072	8.36863672185692
+"UBR5-DT"	6.37488719318733	5.57948793742843	5.81746381146874	5.42817948497522	5.93613319779425	5.33358936572871	4.77708356235276	6.16180357008437	5.66493993625711	5.45379601892803	5.97629272967199	5.84483479186965	5.38197534067527	5.2720817124564	5.55857010550383	6.21812746940911	5.98240389302243	5.98870602301752	5.66160082590207	5.61651506382666	5.52229348851897
+"UBTD1"	6.86567251784273	6.61760108656451	6.53838604675525	6.73467265853857	6.45038249250341	6.94818372833127	7.09884005465097	6.85782637742905	6.72052733115113	6.73467265853857	6.73467265853857	6.75764299461924	6.79869530852883	6.90209298942943	6.78213927964493	6.56362915576905	6.75433299290439	6.39476510397735	6.73467265853857	6.76274058849816	6.73288826097018
+"UBTD2"	7.63647514326389	7.31803092964797	7.72193798534155	7.46573128554351	7.75917253365666	7.47469372312864	7.17189326348289	7.51949714109775	7.74425638688186	7.26318524733472	7.78989440366878	6.66237402427022	7.48810163968207	7.61080373378149	7.78137486335137	7.3873875555615	7.26695080311603	7.84777834570195	7.1786285747077	7.27018793257603	7.06066824819169
+"UBTF"	7.92520094198482	7.89036701486236	8.08415484840862	7.9900773233251	7.7370069565763	7.99251256109233	8.57413204894382	7.40680100104398	8.10644926295648	7.6633938521783	7.82342042399868	7.41856769120966	7.64630272644234	8.13020858987095	7.89574742380045	7.77761687419904	7.78556666877896	7.82576250009763	7.72479079263812	7.84605660529105	7.4747663850596
+"UBXN1"	8.97309058910333	8.77993827429616	9.10556964230878	8.58437197532718	8.9323920976548	9.08625523859318	8.8456270997726	8.72575784497274	8.68394230906077	8.81471649395071	8.99891023912218	8.74808514860572	8.52687687108974	8.73732631127892	8.62439535789833	9.08441567696526	8.72127961602617	9.40013763230893	8.94091713521938	8.94138880981607	8.60898610292335
+"UBXN10"	4.84690948401382	4.70030163408984	4.58130382632248	4.4928922686797	4.90750820083837	4.47690292721083	4.31798167459899	4.64746806487644	4.54751080496412	4.89064777159726	4.47378528458524	4.79338753037872	4.39266086715789	4.63645699569337	4.1536124180401	4.81453570541392	4.81903446077358	4.36497776225978	4.59019330735778	4.99672195828623	4.80785335901796
+"UBXN11"	7.82314469573251	7.5568265977061	7.89906666912877	7.54877197030983	7.74891351774689	7.41856849797611	7.23598134890585	7.42606399142177	7.5568265977061	7.82154047242899	7.6476548371689	7.91304789993478	7.54872120277899	7.32031754904244	7.39887741066959	7.33681726020987	7.38747809785795	7.24114579594452	7.39353083485199	7.82325453906769	7.75080788825571
+"UBXN2A"	9.15755526730132	9.10077996735134	8.59887284248579	9.48991128322062	8.48121180074871	8.69428089765191	9.58720856158365	9.36872766033607	9.48542303956413	8.80640121725876	9.39712309736358	8.82641659655637	9.62474581307833	9.60084416656858	9.68683248997602	8.60026808924776	9.0951007968453	8.56384104734346	9.07561426096395	8.39683480400423	8.90748135622749
+"UBXN2B"	5.77843646280946	5.93140713872676	5.8606733312385	5.67713838576833	5.93286772831237	6.08361367529484	5.51403668859576	6.1104592698009	5.94609590321479	5.68800084154004	5.97364985201748	5.95082713588859	5.7015724973925	5.89016985727448	5.73169104724745	5.73676300376072	5.96384253736053	5.72560938723637	5.8668976310647	5.94609590321479	6.00736499246731
+"UBXN4"	9.22735827434998	9.11552389968111	7.8509602256239	8.47266733213037	8.92635234777724	7.91406571608329	8.34879970067733	9.03410671235253	8.4071057310125	8.90431927664659	9.13419752019214	9.07982173989915	8.15119186265827	8.18075823470475	8.2106485107145	9.2390402973882	8.74028608401911	9.35771885768041	8.8509811948046	8.64112351694214	8.99510921659002
+"UBXN6"	8.33615472401448	8.34182656378167	8.80706954511616	8.20789882870182	8.58025008461532	8.57888992618527	8.2510871321032	8.36353276585507	8.3815919697679	8.83426380908142	8.4473286637324	8.73148777333495	8.18227190057107	8.29237269719842	8.15607053542766	8.33179886959369	8.34196276722292	8.27945479340975	8.31885568171426	8.88353477094652	8.59230191064715
+"UBXN7"	8.8138008170219	8.9470763116967	8.09509216974981	8.62273724263295	7.94678219665365	7.30126323084501	8.74208488525841	8.80400066129128	8.62695604389891	8.93679614231008	9.2546828572339	8.68685539527064	8.46660210062237	8.59920143588954	8.68685539527064	9.24407134445709	8.7899416630123	8.65194489196346	8.6814913817259	8.74761737187675	8.37491641913714
+"UBXN7-AS1"	4.36401732176074	4.43237517532414	4.43425983111326	4.04038849448037	3.97521665806832	3.95009675458203	4.17309924181641	3.84823639943028	3.88734964831978	3.94399779919504	4.80005913893146	4.21832007743138	3.70004504527513	4.29948693623095	3.95742767520917	4.46860171875539	3.97580792009507	4.20638462418079	3.93088270852743	4.1129157976824	4.08022174867621
+"UBXN8"	6.59916523867382	6.74067545315954	6.78206430457926	6.28946713379913	6.87047658554925	5.74577654921942	6.61389973269031	6.42530707859862	6.58980371410007	6.80313380468457	6.93355410390289	6.51339862726569	6.18462911170026	6.00845317638723	6.55750989547481	7.04552175815433	6.28946713379913	7.42570141871987	6.64077355356162	6.72760304890992	6.68049033333658
+"UCHL1"	10.9787197554273	12.0656623685194	12.6094860945833	12.0694840198794	12.9712183843239	11.88172998645	10.924353248338	11.9417098934833	12.2991317331142	12.9748113515535	11.5047936207794	12.8192728036256	11.9730302171564	11.3142771394543	12.2372459320839	12.301727531258	12.6884732939251	12.451641996738	12.1966467553727	13.0478130192602	12.8714664350005
+"UCHL5"	7.3829341742671	8.14909000943624	7.80302196126777	7.87306256100354	8.96070643689734	7.10745961946187	6.9550428835809	7.75724097697092	8.06151660609426	8.4162283486823	7.76606344325756	8.47928579977282	7.92209139101524	7.22112129635885	7.87230965317798	8.25264838446367	8.29095648373113	8.25825442856349	7.85433520664266	8.49702082357888	8.61188017276734
+"UCK1"	8.54763578630756	7.91380231482529	7.83345843791232	8.02978110871569	7.83808210579981	8.0383420709731	8.67811412606419	8.04591731503623	8.02978110871569	7.99019730508402	8.22887304915962	7.90487980108102	7.61052257103705	8.02879171941033	7.99591906415634	8.09281754009769	7.74407407896198	8.10316462577964	7.98017277258183	8.23101636734281	8.02476087888194
+"UCK2"	7.12309115345701	7.00758367387529	6.74731606813165	6.64942964815253	7.40635164303978	6.96343736436653	6.79290977612847	6.98541708080388	6.65564871112158	7.08097347861643	6.78296185557875	7.34788098083773	6.98403740601637	6.79209815343918	6.89607579825983	7.36554275875059	6.75625485296868	7.50819208999025	6.9547312667558	7.57037566438997	7.60292730462754
+"UCKL1"	6.44462388154056	6.39612822160399	6.08246086638623	6.58026092940038	6.44698808816002	6.25534417246666	6.42866176984534	6.23248645115887	6.34346677844746	6.59225245417842	6.45864653310121	6.44698808816002	6.26170873254534	6.13991943809017	6.22564123239848	6.56412766475161	6.43119441425215	7.10958365941667	6.42444378776513	6.75242991354955	6.67369722789213
+"UCMA"	4.4315661298355	4.40422664719564	4.04462033535496	4.71758880170216	4.30706491057188	4.2711555351671	4.58964647842991	4.50155871105193	4.70651830916992	4.44945729095578	4.13431780672053	4.81958943498643	4.34720182657643	4.46759519863505	4.5770670586099	4.46344491625637	4.4315661298355	4.02260832194552	4.51076105559251	4.02627406150606	4.56989896750143
+"UCN"	6.78923756561847	6.73396019559315	7.28789750112769	6.75948576652313	6.9678895842691	7.31533764481626	7.59321447381511	6.64987719162064	6.82822352122745	6.46634907702768	6.87584035550737	6.5698621050297	6.91015734739303	7.19930827313799	6.85378257365099	6.74612792916948	6.69010833660707	6.95037758548542	6.91353444752443	6.71913276092741	6.59768331692242
+"UCN3"	6.32580786821831	6.40220405043551	6.65077429551412	6.7613624592456	6.44635573288845	6.70579919937004	6.92707677153804	6.31691080670419	6.66210234879622	6.6486667116486	6.26912618040015	6.57211625616677	6.65706712024498	6.58153115048122	6.50308140962068	6.40275162079639	6.43926390967071	6.21544143861722	6.68930016618063	6.58413607500988	6.60604128941035
+"UCP1"	4.77565054386379	4.94353236858526	4.81160243235578	5.231448522725	4.86787663311833	5.31628704343358	5.33217866753056	4.94353236858526	4.80034306955918	4.94455734280726	4.70196460844516	5.11242924397109	5.09653838904649	5.03521788480881	4.96220042671407	4.91735236574274	5.05206164943937	4.81829612435498	4.92256916062844	4.94276148502216	4.99448946126262
+"UCP2"	9.11167563917754	7.85944117717854	7.69891173238482	7.39539202508868	7.69667401119898	8.01692540468063	6.29693039805293	7.63315777803538	6.81151704963914	7.85407091790586	8.27754290325087	7.4843466961285	7.66544760304142	7.83078798729917	7.34928145790829	7.89666060218009	6.62373546652367	8.16352596570443	7.54635632237205	8.088757564989	8.57273149853047
+"UCP3"	7.25788577631635	7.25069474395748	7.456355762506	7.53913970044294	7.17529724829068	7.44584350568097	7.98938862707156	7.11999265797565	7.56157959790824	7.37669681711368	7.09038881346393	7.38147139227179	7.710792140089	7.84614785730341	7.50068949344149	7.07038271966782	7.34353058505028	7.07570905525642	7.41650938952175	7.38072997929747	7.4625146164572
+"UEVLD"	8.01657824441353	7.54569063967332	5.72439940010749	6.87352158512433	7.18308877936881	5.57325538936359	7.02014611907788	7.44303235047725	7.32811607413038	7.42520399881102	7.59686240524904	6.95095197841807	6.40138719728604	7.08725568068073	6.51722764588817	7.80276888433522	6.73824844348212	7.41428393090215	6.9676163692254	7.26683066109651	7.02771038350416
+"UFC1"	10.1751819390006	9.98354394495842	9.98588560750874	10.0305442099581	10.0066872207625	9.38752463099483	9.98207798692944	10.2330445491737	10.1257521202264	10.2179717807651	9.98854692743716	9.95538494725779	9.93965913093693	9.84765966235555	10.08851288525	9.92955889649597	9.90722866161896	10.1213123439519	10.1659913794922	10.1521237937019	9.98450277932937
+"UFD1"	8.51694891359899	8.09514033762216	7.97157870932847	7.96359356214785	8.21653446665266	8.40231648172248	8.02576903465024	8.10855642782723	8.15442339830084	8.3955524458605	8.28504739529255	8.1499278471739	7.94340596708821	8.14097436184287	8.07377675565253	8.37091438144436	8.12876349783475	8.67459144130642	8.12515720952671	8.36551600433261	8.30346448056437
+"UFL1"	4.12170848581308	4.2193498004793	4.39686225827804	3.60631442787022	4.26510603489369	3.92822534652748	3.58822043166326	4.14576956461308	3.55238120543339	3.2785266807511	4.17263999272529	4.817450002504	3.52024182347731	3.52229312716172	3.59040852520809	4.15470699616194	4.24552229306736	4.97432792736786	4.34634699370544	3.84232318792524	3.52427184207836
+"UFM1"	7.64676698229237	7.89427742927587	6.90933274197095	7.55234280151711	7.65621319612487	6.60820636898676	7.60194180136055	7.57994637321044	7.38587332519562	7.88609211315495	8.08866125382562	7.78741547048671	7.29336367154408	7.03450688181046	7.11154746531168	8.05669167392084	7.61773957549007	8.0618316145917	7.59113775856434	7.68764810222339	8.10600891507839
+"UFSP2"	8.25032466093717	8.2519708360024	7.93175932317503	8.02293010203464	8.21951083571133	7.5070080323095	7.7857979394494	8.36730764449835	7.67455943838549	8.2357806012318	8.3644749517859	8.3554829193769	7.43394352047439	7.66808414629917	7.67239533511808	8.53583447615209	7.34408815102696	8.82742645004444	7.74981574161488	8.0801791411968	8.05995688405642
+"UGCG"	8.91553509521843	9.09188272814662	9.49867148249567	9.01449697080037	9.78877603312391	8.92994510872753	8.02398622296589	9.97540549052573	9.30575000460209	9.5362128371309	9.15721173796043	9.73099335226113	8.91499149773782	8.50658642936945	9.36941034048466	9.19488914165256	9.54583395917044	9.20425480937884	9.43766748761699	9.84143774575847	9.90992622659475
+"UGDH"	7.24629350604277	6.93582913931455	6.89340160066743	6.85726241616175	6.57465511772357	6.79530739622229	6.63790500478267	6.88189987438243	6.8288936570774	6.50558129016763	6.57574426074371	6.38340007371235	7.10429877024409	6.99500813372835	7.23113755084702	6.86646583948885	6.56678850619119	6.74028804428567	6.62740022756342	6.98206313503012	6.71660989640104
+"UGGT1"	7.06701254589327	7.08483855134685	6.1789288422166	6.68407156784958	6.28731789474983	6.1242492824757	6.69268708699326	6.81110916462199	6.87054442922949	7.00862771628657	7.23299345755831	7.0004408997414	6.79860255196112	6.32465293397341	6.81343762990605	7.49359860055677	7.04397646617143	6.94493009158572	6.88292766607702	7.2210707769658	6.93142431392988
+"UGGT2"	7.84816497117588	8.54631384890956	8.6343229143474	7.90965427793714	8.67886462176819	8.1447363782051	7.16445587632026	7.78999442421868	7.75425445324233	7.95367776793339	8.37244501701047	8.17941312131397	7.45907410534169	7.74864287313395	7.43371387941913	8.10237734828612	7.94110552701675	8.54476747168124	8.02406544957462	7.90163988821345	8.0544846434031
+"UGP2"	11.0960979746621	11.1896686022103	10.5797833240918	11.0844000783589	11.5955593302736	9.83485421140906	11.0930599808652	11.2738685269013	11.5785795405658	11.7240928988678	10.5856789412989	11.6149568464888	10.8576841773707	10.5433585828877	11.3370324122731	10.9829023165559	11.5328623646932	10.9612933784472	11.4017354953634	11.6140010054221	11.8308165473398
+"UGT2B17"	3.2858871993477	3.15132839120907	3.05964292558864	3.15132839120907	3.30603206831277	3.34116040695378	3.33670144983492	3.09976765302649	3.35173792119535	3.32638824320569	2.94027224392678	3.06832812301464	3.16728390829039	3.34239858697119	3.14644154519354	3.06607186783462	3.0658333786366	2.96094901171801	3.01931499209684	3.35760700135888	3.15132839120907
+"UGT2B4"	2.82603773612848	2.87234221496073	2.73040239062887	2.76762985873466	2.76846321795878	2.94265505824878	2.92789147376682	2.77758780196377	2.89823623128049	2.92518343549224	2.85124053788357	2.76252510939685	3.19577460404335	2.79540981784409	2.85124053788357	2.85124053788357	2.91928741107058	2.88829330098211	2.74307100588231	2.7003478199124	2.86745778507244
+"UGT3A1"	4.21456123928771	4.08496302402067	3.91261204060448	4.20806393062034	4.26864578055358	4.30282520771394	4.29558638652558	4.23793255136626	4.36894468708768	4.08228612514886	4.00235971807206	4.17112161751641	4.39893437511516	4.63325507130639	4.5953550675998	4.1338155390393	4.30175543970052	4.08474819820932	4.15917889933079	4.09990098383265	4.39893437511516
+"UGT8"	9.73922837047918	10.4131810315394	9.15057195120804	10.1325374683335	9.35873053969702	10.0306995367137	8.7595506897318	8.9985357842157	8.09198468426406	8.69723477184456	11.3937851767862	9.15480798304529	9.08426531215395	9.68258521777316	9.67437857013543	11.7694502965652	9.16611865067451	11.3139969901295	9.85676870049822	8.14455314408772	9.1152719530443
+"UHMK1"	6.69375042134716	6.58553753886329	7.02702672404371	6.83681014728571	7.79536731402929	5.66638103321933	6.43341985215358	7.17111119570125	7.54251722821395	7.31518048868489	6.64177313516818	7.34226893893418	6.70800251184262	6.06154894398278	7.4208179786813	6.52420986855051	7.25564839614161	7.2591957085076	7.09505611023465	7.61771164752335	7.49304662138133
+"UHRF2"	8.75317796448059	8.93081302753981	8.99920773454446	9.12413712555491	8.73730826511172	8.88241147989128	8.35124698369757	9.06180624242202	8.83474019484029	8.58484267517372	9.03376686369575	9.00015140586583	8.90310468569198	8.41773034536967	9.10558928628646	9.34471354906841	8.92228401005899	9.16519326857394	9.09883906945449	8.92228401005899	8.84132298533537
+"UICLM"	5.95918110311094	5.74443562932688	6.00811585983415	5.88732405719622	5.75175607424371	6.23688891966252	6.36449225566473	5.71011156651643	5.66570027108431	5.79581484322431	5.40961984097862	5.577398961824	5.89679367052223	6.30784696020363	5.78330205044947	5.60984429024007	5.60442297553508	5.64488955559465	5.81278956821932	5.80819829182698	5.83702800576721
+"UIMC1"	8.31681431948879	8.1251417739926	8.28653101729714	8.0123911113067	8.16750720528936	8.58558247412626	8.03632550495275	8.35380393392835	8.15296911733223	8.0285461168773	8.20337723872187	8.28703342490767	8.1697656059274	8.18961949068798	8.25880552359672	8.20983513062362	8.14153021526283	8.57942880633926	8.14962900040016	8.00771545258511	8.04590496461808
+"ULBP1"	4.88354624261853	5.0112846217952	4.91939020255418	5.06299809913825	5.02810657621012	5.17051873513838	5.20303645929608	4.9370721945124	5.14785645014479	4.81190783506229	4.78739017554371	4.94353236858526	5.11491400070729	5.26590355278674	5.01728460890796	5.32385807134427	5.01343029216099	4.82181257845078	4.85116161776225	4.65486503442942	5.11582979974309
+"ULBP2"	5.13668065849408	5.1595046900277	6.32032406766099	5.65933107470485	6.24219325508748	5.8234716124294	5.22025635773318	5.7530172813314	6.24406673262911	5.72242414054489	5.04847984436411	5.48023696440522	6.00051672868624	5.80539220848748	5.81098428727135	5.12787734805301	5.42557616502044	4.95212827011234	5.41941563153632	5.78095374468103	5.43244144529565
+"ULBP3"	4.255727397313	4.05019712628734	4.19818030628423	4.19818030628423	4.03539560445424	4.19818030628423	4.8248466676815	4.27765482365771	4.17854662600766	4.31229248113983	4.08327599868495	4.30873097492497	4.08327599868495	4.42833792490414	4.02902103000701	4.05922969340549	4.30756970271612	4.08022174867621	4.08722174222757	4.41420327292266	4.22542437056361
+"ULK1"	8.72026111025031	8.68507405528759	9.37998643259889	8.89372530067239	9.12708359906238	9.38911142419978	9.0855948208425	8.9911796948374	9.34969430475824	9.23798932616362	8.52854146635736	9.16108729578945	8.94264017471051	8.92817432505988	8.92659720819826	8.17327386407408	9.36181993348654	8.71157865923755	9.2217353746139	9.29229499057428	9.20890883571975
+"ULK2"	8.67105038875825	8.45577323703341	8.69020480307936	7.84121391007372	8.64705296947151	7.77263446778684	7.53936458468024	8.02668945534819	7.8776653780317	8.06186892472897	8.55413892295838	8.09573937450253	7.09162983747797	7.57896316247214	7.7898063827149	9.28093249999125	8.16781334856163	8.86204175435114	7.92556232680054	8.33908505343993	8.05195426563457
+"ULK3"	8.8568150629086	8.91033984078272	9.13801153835986	8.97845557946637	8.73966514737354	9.27585119678533	8.83811084198385	8.68883973096987	8.98095088920767	8.91033984078272	8.9461426307415	8.787922523297	9.24114681311813	9.12694735134881	9.14102793918715	8.48786461329978	8.8366601052601	8.78246615411504	8.75652906312714	8.87205659003444	9.1148290938423
+"ULK4"	5.03874935512817	5.14176684190827	5.16074895809914	5.02694195070396	5.16091270860739	5.21721292681407	5.1596653192945	4.97236050121182	5.17692810826902	4.92591395576561	4.70539716623596	5.16069427334481	5.25255474757163	4.50710181621462	5.06485735504801	4.86986392122983	5.10201985798914	4.81805743595102	5.24560333909687	5.51187563900085	4.81180178091
+"UMAD1"	4.68328152632686	4.92813872838142	4.8808872100916	4.63293241564203	5.33801326997749	4.32499549225188	4.22628978836518	4.44050808046782	4.54751080496412	4.8168284402231	5.32188987365896	4.61552486600255	5.05855441755871	4.36036823079876	4.91023561534699	4.86058947828227	4.79310370938227	5.63828899016293	4.52223062485698	4.61552486600255	4.7436171732883
+"UMOD"	5.50963852447382	5.75064415170265	5.69254909522024	5.73074127924976	5.48868587159988	5.8072097715919	5.58884696356901	5.67065079123411	5.77467929879402	5.67786253831046	5.59348993131414	5.86049486930327	5.67786253831046	5.84044426331616	5.50556571707784	5.67786253831046	5.66977017799847	5.14029233179249	6.02048267401878	5.69942670498921	5.60115458034174
+"UMODL1"	3.26680091437517	3.35237848785361	3.38211077288104	3.30060259005303	3.38545562043098	3.33845617202225	3.34983619072992	3.14801806664477	3.41055024060584	3.49095344883698	3.31154917518751	3.33845617202225	3.27001588290907	3.49210522783745	3.30852484024563	3.14511294604392	3.35529993665281	3.55678745602873	3.2634149708328	3.18668384969676	3.22049761441423
+"UMODL1-AS1"	4.45966982828566	4.61552486600255	4.38301392766812	4.50006299066514	4.700595411925	4.52879667386816	4.39534013642554	4.38425038868295	4.8059703014711	4.56399370952052	4.49652579890658	4.83851391392687	4.57207046606125	4.89180728390951	4.77558592621901	4.41103073810186	4.66833254417854	4.36460674071586	4.61552486600255	4.57354250732862	4.66184687821852
+"UMPS"	7.36904367582031	7.31983486011401	7.25721861364519	6.96459731664763	7.15307891958563	6.50580916419734	7.04090099292764	6.85753065600217	6.63745652901394	6.97652010958386	7.29073351815178	6.88736769632646	6.42103699414611	6.49825675815299	6.66292146073939	7.85869800405191	6.49826802071695	7.07464235406476	7.01445468920925	7.26885926426138	6.85136401040938
+"UNC119"	8.69625957474044	8.31087223583003	8.42292521042159	8.61702797092507	8.47122271422031	8.84597062436964	9.03566690463137	8.61702797092507	8.83054324534115	8.64545687630862	8.06112543757944	8.55275931261496	8.79094952367135	8.71749280345763	8.89465074365457	7.9683456906257	8.6234522032076	8.18032185154379	8.70178145512697	8.77279452601286	8.64668922432732
+"UNC13A"	8.55277404495847	9.81410532787732	9.95672932874161	9.45131842516787	9.70040712215461	9.10229225007273	8.93220195384549	9.43187895972247	9.78203316097732	9.61270247500302	8.99309926954336	9.85612348738328	9.40763207466428	9.00949304143767	9.32905781213816	8.81810104671639	9.72125727453259	9.11894455080182	9.38543985146678	10.092241148082	9.64203342539305
+"UNC13B"	8.76477434105366	8.65686183894157	8.87374592379838	8.18230648231339	8.61508382857177	8.66334251434132	8.39967528833034	8.58596206213732	8.37816652348579	8.3050776776269	8.25731313560589	8.50302031083042	8.19853354613596	8.54484288092451	8.30214468810554	8.19746976101698	8.61342338647568	8.70513591451559	8.2263766692667	8.72774721345557	8.14325255823107
+"UNC13C"	5.34980277005137	6.66250140316886	6.07976881024066	6.27865223209112	7.15288903134424	5.2286060978963	6.54679874112668	6.8142583705681	6.85687216044895	6.51580051582722	5.16612795575126	6.02033078409591	6.4795695860304	5.6682451368125	6.2154157874822	5.09054690653592	6.91890286452622	6.16827989946709	6.43665969956785	6.16198768177115	7.01682693434389
+"UNC13D"	6.29995549413739	6.3861216998015	6.49868139959446	6.71039873609301	6.37926043142539	6.74748074045166	7.20360350527228	6.31346492619645	6.83265026326279	6.65997521979429	6.44858571153095	6.69936265952143	6.90323842872185	6.62452084035445	6.82386528551283	6.6602038839762	6.49592452034209	6.31088267833677	6.87267040909186	6.63785913989746	6.64953680301117
+"UNC45A"	7.04036248357966	7.18371154054039	6.78206430457926	7.36106419862224	6.67081666570648	6.86380855315528	6.91396074289212	7.1828277783006	6.91939193649112	7.55526013030823	7.26618468633386	7.35110421002808	7.40637721475882	7.19705139049659	7.45768594149701	6.95275079639193	7.29914992778905	6.54050322458512	7.22215581662722	6.61439192838175	7.16905966812694
+"UNC45B"	3.60539558488029	3.66460139364954	3.80555708055674	3.84414286247751	3.8165512997628	3.74139567143156	3.78431660067337	3.63555290080502	3.86913400851014	3.80978314298885	3.61725990494315	3.71631476200356	3.81279054344935	3.8316012639583	3.71230996552212	3.734901145546	3.63380446419854	3.58600911959897	3.88585492568573	3.71631476200356	3.54612741969853
+"UNC50"	9.07369823570353	9.1902327488931	8.97566081477881	9.00931984560686	9.01670605301192	8.54112376987866	8.81947603797142	8.93919721017611	8.92355789699427	9.12987390642568	9.28319400352799	8.91654065336308	8.8647051878441	8.59924548626862	8.69313561627678	9.60817151048083	9.00055149814686	9.36282066540939	9.08154742937336	9.06051882982355	8.97500496295379
+"UNC5A"	9.20521396435292	9.81221060341303	10.1695829193415	9.98001050192193	10.0539669276466	10.3795359802841	9.61898936801437	9.67265833473967	10.0957131030881	10.022574455343	9.01926805829113	9.95581377237575	10.2156636771529	9.96860274574753	9.44601206589364	8.43244204497461	10.2544179805316	9.38399376875203	9.72026775097844	10.0014907670581	9.89569245448695
+"UNC5B"	8.00329295624186	8.23162270143558	7.93061000750067	8.10488477109263	7.9663430163476	8.74623899133737	8.0904859354444	7.88480345345859	7.68974323355883	7.90648034054454	8.96175676019397	7.82854317660742	8.06825730387674	8.25381571931815	8.08794742036144	9.22302627901307	7.91804782016773	9.3589202835742	7.9651941977995	7.62930834489898	7.93528975004234
+"UNC5B-AS1"	5.70912517850256	5.72615055825054	6.05520524351803	5.91969443170874	6.06764842524555	6.54369575134023	6.3713322794785	5.82287033003888	5.69481305336471	5.93241567201946	5.58362229257291	6.12982370742466	6.00017758662406	6.1823927578819	6.04566898624723	5.67525395955758	6.09654593474715	5.76289362547326	5.98620040578955	6.0074027027854	5.91007905818307
+"UNC5C"	6.35671479847317	6.59047276366174	6.07195102120451	6.17937888619018	6.37183337383374	6.72675776599498	5.82534804712824	7.15472081615073	5.50076182085259	5.9841263243859	7.22841390809225	6.9420731909424	5.79317091846158	5.98701067407616	5.78350516933553	8.24661959083704	6.3643480768716	7.80469840388881	6.25294598381026	6.25577802873532	6.24166167684906
+"UNC5C-AS1"	6.02979314327509	6.70044517606105	7.00901544738309	4.61552486600255	6.46429627183118	4.9109906170043	3.96021897143842	5.51337962779268	4.02902103000701	5.47081737264737	6.71955404869417	6.25638645558529	4.21080389131553	4.63400106723686	4.35753448752801	7.38968588495184	5.27123209439274	7.20872886137178	5.20154144003405	5.96010567732334	5.35547354811606
+"UNC5CL"	5.42691532295756	5.38492628669319	5.2838192262318	5.21537439970672	5.1703478806415	5.39706688059569	5.11343154671053	5.44521684966476	5.14742718432256	5.28894374347559	5.44412037365903	5.20391966337286	4.74471540569794	5.47395518024727	5.23003350504085	5.59289025912843	5.22980506388005	5.99927784498964	5.42524687603376	4.75435675633174	5.2205702089628
+"UNC5D"	6.45016830621276	7.73342124298556	8.4300632496799	7.79135779181902	8.36489097654591	7.26088541119809	6.70980646919057	7.92484881634761	7.80858706206499	7.76064184366098	7.54746503819327	8.14085258965897	7.75313782939578	7.22661234867397	7.83650108385418	6.88260151607334	8.03339321950909	7.49109903046829	8.08983094080276	7.96636906067081	7.65729313650213
+"UNC80"	5.04003097162902	5.38485002397396	4.82458228907832	4.62375227431938	6.23716759460518	4.73094985390977	4.25055162325492	4.77471817705767	4.84989619585389	5.79141401317789	4.8222663716668	6.10865973622806	4.51554412331728	4.6974781950063	4.53950263451484	5.25980244655992	5.52974191356709	4.9964842915909	4.68208569265884	6.15409556445512	5.88969051087906
+"UNC93A"	3.42267002736652	3.43561657898329	3.46049609498199	3.31740567962391	3.45783242417659	3.35982472372636	3.48401303533419	3.32709641897717	3.51667013227288	3.48401303533419	3.53339404094886	3.35626744072083	3.48089906028014	3.36475384553605	3.5566263303523	3.81871194360581	3.48401303533419	3.61076410071054	3.47172012081509	3.89026436695997	3.63257189156312
+"UNC93B1"	7.485246032382	6.68911668223671	5.82144579085078	6.47767994764285	6.47765864764668	6.7635804436739	6.87022779196444	6.62320458575523	6.18855721209585	7.00446148040818	6.54809057595236	6.20778761978723	6.07650775961619	6.58971330012022	6.05793250193767	6.443834933189	6.49806557270923	6.63255249600504	6.24624496249475	6.84493438649914	6.71564660612157
+"UNG"	9.01844114782951	8.07054876268603	7.93990473334004	8.34134810714268	7.83490221440529	7.70673543725165	8.51361550242915	8.50555003985708	8.11439654458641	8.05219110970432	8.20767165799602	7.88974061257974	8.10596594326526	8.06958335661647	8.33179742661421	7.51322397452388	8.17348507856371	8.2543567685434	8.20780448043936	7.91804194471536	7.54089464742201
+"UNK"	6.38810051366323	6.15744336929336	5.76641388113647	6.08361367529484	6.13034814854738	5.47883065006294	6.06015095406006	6.15569693836323	6.49615192393663	6.00498963281909	6.89950277173478	6.08251082181079	6.14423306990091	6.26601642296342	6.04064987835383	6.96827713346001	6.15569693836323	6.11858798161243	6.47243238573511	6.32616992575915	5.83157602434972
+"UNKL"	8.11741510707537	8.0020759725662	8.28058626419645	7.77003134263525	8.09077519999637	7.52914834210285	7.9034883660345	8.04907230714682	7.72554186690743	7.89441068378636	8.26184334434183	7.97865030698831	7.91879053683882	7.5435184225242	7.95002480783282	7.92046838115227	7.86659774120933	8.13688189733941	7.88580034644448	7.79975334969253	8.10172199990814
+"UPB1"	3.64691380421434	3.62537891586236	3.68446211632329	3.80005852962073	3.59035006425724	3.8245300834222	4.205468711338	3.80005852962073	3.84765663366659	3.8364798050929	3.75706628373967	3.63716920491193	4.12111016678412	4.49801570783317	3.83115409796054	3.57635072339167	3.78739452199702	3.73532492154227	4.01878815171789	3.92082440370776	3.78489366973337
+"UPF1"	7.47373353059575	7.02440060138148	6.92724803408665	7.17111676716415	7.23982737143772	7.33855043204824	7.3984797474159	7.08541957540919	7.2210707769658	7.26612930118983	7.19270539772748	7.30155331719081	6.88678728171805	7.21140013325914	6.47632816487628	7.19270539772748	7.07455318100805	7.21553459191859	6.94417538515138	7.37122785239018	7.31166396686447
+"UPF2"	8.89771992505895	8.49084018595898	8.92697789051232	8.85788914632781	9.17544753951438	8.69317635541822	8.41934392822636	8.67563233693216	9.1712556899745	8.67145026255673	8.53659477972833	8.53159096927923	8.53430607244547	8.44257397893184	9.04349976220094	8.76303544767566	8.84042253565539	8.94745194023755	8.96658485269589	8.84938585234123	8.69834396288283
+"UPF3A"	5.48702394405549	5.68958646265251	5.82926772696082	5.43752214495123	5.40326620795994	5.2847698352077	5.11412085954837	5.84678509392761	5.57930592944795	5.72055798996374	5.86370578194819	5.84536181415636	5.21681274073143	5.74700115817447	5.58281888233026	5.84115889806359	5.80509831179342	5.61680094310863	5.57918571895711	5.57129178006501	5.58453559938329
+"UPF3B"	8.75092681581864	8.62978549972078	8.92308224099382	8.76954079880366	8.79772732376337	8.37063754989828	8.07464793572953	8.52615382272702	8.72432394808476	8.47251261307512	8.78567336977126	8.66124134027281	8.62589974320059	8.45717358805885	8.66124134027281	8.83501699986007	8.55367044780865	8.81069130949894	8.62978549972078	8.53699672729754	8.64377578535529
+"UPK1A"	4.60239490173447	4.50643129871752	4.20357813010276	4.95544410321556	4.5595850530133	4.5595850530133	4.68970919318849	4.5595850530133	4.49008176145483	4.58567712618845	4.28977734964366	4.38265331788096	4.94944551627002	5.02550356367398	4.96614825484682	4.59208916009232	4.65371452396756	4.42704250779632	4.40187645130486	4.48468992830362	4.63859649987134
+"UPK1B"	4.6306594275378	4.61447052489072	4.56010520465115	4.66526073992558	4.75150943914239	4.75066257415777	4.697267376594	4.6999487009598	4.74796755167689	4.98258321054755	4.27896065419668	4.76702085653522	4.83269900316786	4.68661231053164	4.73168817806743	4.53534384579397	4.6999487009598	4.38862044251118	4.50643129871752	6.85033774279691	4.83851391392687
+"UPK2"	4.43532059520045	4.51033816262128	4.61858903830371	4.74869571526597	4.69957613837212	4.61046419147135	4.75004581539269	4.67014751559013	4.70959513304959	4.62717568523038	4.27152353508013	4.57512919121534	4.57512919121534	4.62142070330257	4.56102003489832	4.57512919121534	4.57512919121534	4.52189977816231	4.35574193659257	4.58974040757606	4.57512919121534
+"UPK3A"	5.12830940519978	5.07196255831116	5.24719405100581	5.41659547060991	5.10418166522556	5.63994235556793	5.85401933308106	5.16234089721393	5.38831607889559	5.37495696455329	5.13888116465017	5.15058164026976	5.26766210204047	5.40399693931	5.27749851777782	5.30848493539186	5.07965489144309	5.35942927371672	5.23098392366382	5.22539744373595	5.38560270716726
+"UPP1"	8.21241871954714	7.76349012571413	8.42960879210157	7.74589001546556	7.92541412150206	8.34794097147203	7.78376441344105	8.18447321374812	7.85745264694331	7.88559033129896	7.65074981652114	7.99074349561308	7.8908130409229	8.12744562863448	7.97127183663144	7.51291442473266	7.90147849266155	7.60128546035285	7.53926755799029	8.2359708554908	8.20016961842823
+"UPP2"	5.24568894032613	5.20956760425697	6.24443397539332	5.25933259883504	5.43604477956549	5.08509575344303	5.39576317200021	5.49745463930687	5.64786727167122	5.39634945320952	5.11016261481226	5.49195735334611	5.09148790147508	5.63171300534686	5.39576317200021	4.97196686692656	5.63093777390204	5.52774353979171	5.64239110219569	5.57810090240694	5.17075448244622
+"UPRT"	7.27776035708396	7.43467923313574	7.87647893477384	7.30817797525348	7.84927521292339	6.92008361117824	6.55290852034626	7.43467923313574	7.43314448598471	7.66086793009916	7.30010301274286	7.53419846149415	6.87639630739826	7.11459924588666	7.07900456080255	7.59585341766121	7.32069459781919	7.74323316722916	7.43467923313574	7.83408278900146	7.43467923313574
+"UQCC1"	7.08446919849396	7.29152630684815	7.57999054424517	6.63647539771843	7.07702234968935	7.13081736787554	6.26121096837292	6.90216886776761	6.04544370830178	6.83849162620869	7.12224299905282	7.44182951862153	6.19367616231918	6.64654308901108	6.6416640471193	7.38525258855377	6.85875953830874	7.47351450511078	6.81683157365199	7.40800093292333	7.25175912343341
+"UQCC2"	7.12196683775377	6.95569544376056	7.48504498976819	7.18042559217535	6.78133994970245	7.08449379943379	7.25589210360574	6.92315722433138	7.20925082684513	6.96922471838034	6.98980116027087	6.51805275487881	7.19122630919887	7.56669973739047	7.25186960541566	6.89136858883801	6.59439726152235	6.99044068787334	7.07541824339016	7.39939137210245	6.755351319722
+"UQCC3"	6.90067316982696	6.1028579817755	6.97118807382465	6.56631733018795	6.62452366214955	6.67269633540757	6.98660536871958	6.53851495905203	6.95140103149191	6.94032010128775	6.38915445937354	6.41514183788059	6.68458396877338	6.31248874848779	6.91874861079657	6.55952340693527	6.3408204706125	7.21043547037295	6.8458588690047	6.82786859291158	6.05532998387192
+"UQCC4"	7.58753844336294	7.75334305926499	7.89247659584946	7.49113188013099	8.01187432782611	7.32698262279736	7.83779562393775	7.85611919637656	7.89254381248969	7.99209139547282	7.77841507102073	7.94844344437504	7.50524291233334	7.66204039381054	7.66851212524614	7.92597920523429	7.78732065281957	7.93197986693185	7.56891191931334	8.13090612129863	8.04233007144732
+"UQCC5"	5.73914295127678	5.72328087946976	6.35430717119677	5.97530556750018	5.82440180228141	6.13434898784708	6.26780063978684	5.91090637720807	6.25544070067864	6.20587671232086	6.07575799107351	6.20310708045828	6.09872038472331	6.3490881567287	6.03869565842174	5.89017328272899	6.13434898784708	6.25885901300784	6.33994166170187	6.26034974355238	6.15909341175038
+"UQCC6"	6.92966352199667	7.46889747043392	7.99192711698316	7.38685114338739	7.81428443648101	6.84795423378298	7.46124695119802	7.72699885955394	7.85157931268978	7.91850843251481	7.6195826890612	7.90742317831041	7.52446394065572	7.24541337582127	7.56135222954592	7.81000808049046	7.61265034176549	8.18958764388979	7.40013171818846	7.70660798962729	7.68026442163149
+"UQCR10"	8.32443515034658	8.34368877961816	8.3634277328263	8.24007315133288	8.63504233204995	7.8500390241567	7.80453812221575	8.25643201023146	8.48268364318348	8.84363488127479	8.35762771797095	8.52984911111417	8.46338856328069	7.83018615646852	8.46427893096488	8.4154509952894	8.24840843207759	8.40131198573691	8.28047105587663	8.85911252953784	8.85247555002078
+"UQCR11"	8.41287969048728	8.08381957875271	8.14704114823931	8.21027580447153	8.21374196564853	8.65040529396479	8.38096594740381	8.01683425207138	8.27193616595937	8.176351227576	8.02122821878729	8.08314373444243	8.19876738437387	8.4309550307385	8.56490667511774	8.25502592553449	8.05572767322311	8.07430165418978	8.37237349733647	8.16179710934526	8.09016637011369
+"UQCRB"	8.63286686425221	8.85970915143316	9.42197675718581	9.33767663156448	9.6290207540324	8.8195392542367	8.93582916447964	9.21376406071892	9.84687130985148	9.87918841446114	8.82203754962619	9.56884997463178	9.61404218392585	9.05741667708206	9.78462776093494	8.65976293038722	9.41080757085405	8.95838839886334	9.43265774964148	9.65618725715395	9.49975229311006
+"UQCRC1"	10.0738967392105	10.1324467755304	10.5652738101674	10.1089754083366	10.9641075730084	10.295968762297	9.97046620743551	10.0778011169019	10.2281388861419	10.9223343913164	10.1911138162834	10.6804523557283	10.101827671885	9.88399388465029	10.098633291681	10.3644164040046	10.3716736335791	10.7105794169318	10.1612242309504	11.0530249562233	10.6878957453294
+"UQCRC2"	8.59447306235647	9.09751062173684	8.4773254320307	8.73038494649382	9.53092912648841	7.72915505255348	8.34314451310629	9.10492642450942	9.0122535100111	9.57203503820116	8.876808596293	9.57004098851041	8.44692589952271	8.03511222426855	8.50633805138335	9.41731290434318	9.27631859028864	9.36148728080753	8.94779817959975	9.57001321686419	9.59627626637162
+"UQCRQ"	10.7491104085341	10.7709835038868	10.7726055360065	10.6660144064994	11.0003878947275	10.3466273984536	10.7115962632346	10.6182270621251	10.8480721927431	11.1301981024184	10.7556477876884	10.8322614351711	10.8437637650338	10.4889148405592	10.8896054611091	10.7270074319889	10.6653218624734	10.8660390420358	10.8847511728616	11.1750738492521	10.9868279732523
+"URB1"	7.23686401246399	7.62181537689785	7.89946581535078	7.43102349062459	7.76190844108125	7.5891595696771	6.70184503480271	7.30108430767464	7.52366313654944	7.55134332205244	7.4838203641046	7.36224806543782	7.38118916117773	7.39551909342897	7.38124860992391	7.88333778227237	7.46111335486813	8.02658369300018	7.24007186485793	7.64917477816574	7.45980037766219
+"URB1-AS1"	7.00991225978624	6.45371515041448	7.09379600676211	6.44168861142277	6.68991709560082	6.4629854630892	6.7519903246276	6.76078032434426	6.93250015343537	6.98208237553377	6.51090356451156	6.82583518641828	6.44165701033936	6.89459816696154	6.751147711837	6.81590532152324	6.15413013573566	6.87758031099508	6.77267021094113	6.79761548170326	6.51430145331335
+"URB2"	6.67218058918059	6.70220246182861	6.88702003390553	6.66417220089544	6.91093779234399	6.82572629554972	6.50620764901916	6.36778437384499	6.66156820855575	6.65272434511025	6.69058235251189	6.19782195452666	6.65738417794438	6.66959752995613	6.62401201175016	7.05742183209205	6.25172002667046	6.89065575882787	6.53931470761118	6.94982862491583	6.35078935241032
+"URGCP"	8.90770473797047	9.04047522717133	9.55434751883099	9.09113668390507	9.37662470560501	9.29034614093174	8.76217704403526	9.15534136560569	9.17413450723329	9.11664310145142	8.88148697125276	9.16826958575863	9.0093460888931	9.11664615465291	9.00537243676357	8.89182580505729	9.08753198919498	9.09175643878021	8.88521073425242	9.26948493687517	9.23244519305378
+"URI1"	7.71789482126148	7.46236866712553	7.07558319686602	7.19317492897073	7.31152861017888	7.16972264775693	7.28730492100656	7.46827669676071	7.29304636148587	7.15482127015035	7.69654036172223	6.93922510216569	7.35615176055392	7.17854792958793	7.28193154751261	7.70180264704951	7.14051553983302	8.16024406423079	7.19252767858708	7.31525479846823	7.25019551910339
+"URM1"	6.94352776497734	6.62987636603029	7.0150556752546	6.68770344652302	6.58303961998744	7.388888331863	7.35525342102821	6.81833164065331	6.74518674216	6.50556180167084	6.58789393264121	6.65755887500842	6.73563779734697	7.19741671365033	7.15115057459258	6.8197706887548	6.81894271384219	6.73142668008685	6.73563779734697	6.73563779734697	6.65557567367966
+"UROC1"	3.76649585251223	3.89504005908981	3.90882538535162	3.90882538535162	3.70477732032995	3.9336658594135	4.22738333359763	3.90882538535162	3.90587924016539	3.91193936040566	3.82678972575356	3.93438935145737	3.87706958024746	4.15635947402015	3.79303488625652	3.90882538535162	4.08760134636187	3.85833737120096	3.98089720824737	3.88056081364405	3.97108233504453
+"UROD"	7.79180074998935	7.79856788020501	7.87730024484573	7.79170521124759	8.00652970799356	7.50656839267499	7.37730123767702	7.6691620845309	7.87447743460319	8.26177868664915	7.88107697718258	7.90291440215995	7.36490966394488	7.35717758274603	7.52728614697781	8.1409670133925	7.59580227234802	7.79180074998935	7.79131535518005	8.22981155734674	8.11665908817122
+"UROS"	4.42954146759117	5.23844656273897	5.64164418570938	5.22028219655173	5.5217134999333	5.79904254552712	5.12740673500409	5.03130628868145	5.68632499171078	6.13243752629275	5.42265769594855	5.21317628087309	6.11025103373765	5.47238404453623	4.64279851421352	4.87629164417289	5.52409191955064	5.51195334487716	4.75707322625185	5.7435945168808	5.23269061922023
+"USB1"	7.95546437290357	7.66774632832548	7.75887824814581	7.5997847063449	7.82583376098606	8.01082778928939	7.68280535864358	7.58357654902623	7.54687831456214	7.95009080437895	7.3890964093946	7.70763170124403	7.90170620589754	7.94159458324579	7.37775480223773	7.53766945552604	7.71772963192538	7.44133319762993	7.6426018108714	7.7799071231623	7.91804782016773
+"USE1"	7.20299994955822	6.81964629860783	7.31470453702313	7.06787969746456	7.22671058609778	7.27733022855927	7.27341382514043	6.96377750644716	7.38486373405696	7.4047136801199	6.94519344685576	7.12749708864982	7.04012353317876	7.15218521067036	7.34296961755639	7.3917147999687	6.85958556604001	7.36351203320609	7.22159824591139	7.52842575525644	7.30427132217271
+"USF1"	5.4617605162431	5.63224193627626	5.70752475470538	5.84858306211583	6.61179617351062	6.95550326876798	5.74016357285643	5.83019891335211	6.04368138086452	5.95960888418627	5.51350729339618	5.73139750562665	5.82648687307589	5.65355948517178	5.89122524070203	5.8692499132607	5.84858306211583	5.55697881117916	5.84201879023809	5.67323579545653	5.88976737354548
+"USF2"	9.38115930808321	9.27865136282072	9.39330212167991	9.44140611063142	9.27198767288083	9.59853233634495	9.8494801455594	9.25229363131507	9.35964242157002	9.32923143928204	9.38157771173916	9.27291666274327	9.60295909139708	9.75752067957099	9.35964242157002	8.9911072003649	9.35325410592188	9.29643866389414	9.54985396692986	9.10479352429608	9.27149753983574
+"USF3"	7.75810530794753	8.08819696493285	8.57727207696405	7.9181513338741	7.98139832753716	7.85887785148403	7.69925189804956	7.79366445561759	8.22903025334859	7.91460435652203	8.05484653183544	7.69377081128673	7.90664109213263	7.83872208400564	7.93555731886786	7.93667236422669	7.72302705481807	8.48805596159415	7.8155743741306	7.72816812478478	7.76853989504387
+"USH1C"	6.95371336136924	6.99287693127342	6.6088211815359	6.47241087072454	6.19830022432609	6.5721036068305	6.49673809134419	5.88752082128241	6.31601944212345	6.42316959745497	7.30571563925837	6.22692274229133	6.02795546298357	6.37820822644241	6.18366487207692	8.80785041322288	6.53550733834693	7.43921483234021	6.54913202973496	6.98689926854142	6.43065758473827
+"USH1G"	6.95221788774784	7.17809276771281	7.0266308070273	7.40297109697337	7.17809276771281	7.01589347156021	7.14371900185332	7.19506292838212	7.21918538740006	7.31809751508135	7.17809276771281	7.3453700865256	7.22201794121247	7.04029151883567	7.12147354601354	7.52755156552111	7.30064129090818	6.82904785689812	7.09304968298003	7.17809276771281	7.4386447224559
+"USH2A"	3.0959515226303	3.18606299360894	3.24664400247225	3.04617535216723	3.30465885644304	3.29547666973042	3.27542346233078	3.14722132818679	3.3247974611618	3.30465885644304	3.16399050111591	3.25309811826045	3.25309811826045	3.32839252644833	3.70834697312859	3.22236633122201	3.2129733908226	3.36702569054566	3.25309811826045	3.31960389566698	3.06730591398135
+"USHBP1"	6.76739913145257	6.45718866223775	6.39895132503548	6.55888984386914	6.1811003121724	7.15458965072747	7.0839875246391	6.44483331508842	6.46240481562085	6.53314456017961	6.42535094228955	6.37775028912226	6.82127708971515	7.02298971038357	6.62310067679335	6.31747850863488	6.43851920718976	6.21041735831504	6.64942964815253	6.63944553634976	6.33696171107312
+"USO1"	8.7468321019282	8.96647329520431	8.17367963803564	8.96194921282891	8.89224375573396	8.20711643854064	8.22232478604752	8.88323632670447	8.99913763887933	9.41340453120168	9.1620419980838	9.2117248126435	8.91205221690318	8.58779099896038	8.87342127941739	9.16956311513364	8.91205221690318	8.50725257358371	9.09162515312992	9.38074014961309	9.38753600229668
+"USP1"	7.9878150491818	7.88303872526171	8.09177671196814	7.80999755054655	8.57763342026452	8.62342453999966	7.71008207653553	7.83365562146076	7.98062773113621	8.15928436624137	8.18234817312618	8.08334730074442	7.67027528074466	7.45518176696328	7.55364011453507	8.03077477983936	7.66614706077269	8.24946159721382	7.90697051558069	8.01445066223108	7.28191385715052
+"USP10"	8.08375557244978	8.10657952772821	8.30968692793013	7.88616933493008	8.80031234853578	7.97125343047564	7.80322871452237	8.15773873418163	7.87824364590554	8.23918281959433	8.03821547913904	8.13702980247686	7.70545549129421	7.64189456322734	7.60225475362868	8.1082097440549	7.83625867127835	8.29674173218172	7.84328540285802	8.16062262154394	8.2173965859245
+"USP11"	10.9295979131226	11.5830856436759	11.8718563650402	11.3315754749244	11.9406197010558	11.6246473318927	11.0057643758798	11.3822127454501	11.3653896883589	11.7215951182771	11.3165325497256	11.7650678130337	11.1327193614847	11.0651538219997	10.6695335499876	11.2349394128057	11.7922947642081	11.285017422898	11.0948732754055	12.0494578864822	11.6660365795833
+"USP12"	7.77794961336452	7.76558796310417	8.00110747779564	7.91696857016664	7.99229842337855	7.94311237977116	7.88745460298576	7.66859997499969	7.96554476215375	7.76607331048029	7.99046446998904	7.68578001076591	8.19671203627811	7.81309311455865	8.28304999430668	7.95079981485892	7.91846944977048	8.15132401412908	7.90881266914873	7.85196884525638	7.99203113016152
+"USP13"	6.7953272328651	7.17949929503132	7.54794539405246	6.52687793888765	7.28143298577224	7.09972375064518	6.67623168168355	6.79406254406133	6.89110750877168	7.25766825416721	7.28675356072118	7.32352652250274	6.815385397274	7.027183781052	6.81631120983785	7.42841750910698	7.1139684955098	7.41378603725617	6.75833392364962	7.05841449368048	7.05224635229932
+"USP14"	8.9024092692165	9.21612978767011	9.30563843541135	8.81683599861563	9.17301548902446	8.34172047117533	8.37103407569458	8.93160475853818	9.26286103470636	9.5162429877091	9.22252219876568	9.28212639611847	8.9410385619254	8.78737473674986	9.41682593810394	9.42737795907963	9.33371449169023	9.07735670313088	9.06249268418971	9.258046469064	9.45683728221664
+"USP15"	7.69697763230319	7.13209611045042	6.50644561837411	6.67630484245723	7.19911044684101	6.99574901414876	6.59252825843512	7.58584314094376	6.63984152629656	7.20182503068834	6.93362234386915	7.29278837834535	6.95315903904111	6.65921053720186	7.09617439865802	7.38733358035753	7.2173823484406	7.59813184815675	7.18950441683852	7.25807343527399	7.2994787826152
+"USP19"	6.89431451881217	7.05841999234703	7.18881720386129	6.84255686981964	7.02778357205441	7.41098031703045	6.9416439748433	6.81955845220987	6.93481446780886	7.33722453748036	6.75864937126308	7.16671217794717	6.98367008828949	7.0532812365462	6.80757119566114	7.02389214826736	6.92586950101456	7.0428988357604	6.84255686981964	6.89735459328989	7.08550581634435
+"USP2"	6.78836217838692	6.89151281289058	7.40030184705045	7.12790697422866	7.65621319612487	7.32432527416348	6.89950277173478	7.16207868712992	7.16185335343875	7.13228719185455	7.1767522352105	7.89632149236124	7.13228719185455	7.23664223966811	6.8231759712025	6.74378598955721	7.06699406641753	7.26990664059171	7.11278731183798	7.32879041965299	6.99051694884807
+"USP2-AS1"	5.13449612325385	5.30608370736511	5.0442190553646	5.38156033161554	5.22744390475199	5.3724458036678	5.52354597738395	5.29554840793861	5.19670609727236	5.11098919024534	5.12746650795198	5.19670609727236	5.35335694358062	5.1798623326418	5.3523917623981	5.18066392856585	5.19670609727236	5.02746011672451	5.19886881982985	5.01527694784824	5.11048471956503
+"USP20"	7.80521797049502	7.6808749197982	8.26174888086006	7.48079152586404	7.86976734353063	7.78015022964391	7.64007554211804	7.63527546787159	7.6338990992765	7.82605164624983	7.65142774195073	7.82771082603097	7.66894974098361	7.62514065841677	7.5436344726704	7.63406476890616	7.86965272658376	7.72493638499117	7.52119118143989	7.95177123136264	7.76190844108125
+"USP21"	8.75307505675126	8.41385525384419	8.49894744550653	8.60389087041466	8.3982055756521	8.66771029147392	8.71758936720225	8.59394474083124	8.64528236033811	8.13642500115968	8.40200372531704	8.20806512498746	8.67001306382836	8.66654162616051	8.7093507309459	8.48273129332643	8.41432058813173	8.66637750477739	8.62167402077397	8.503353768639	8.36381413921166
+"USP22"	9.80443491280157	9.91113904981347	10.386470765131	10.0196608401086	10.1524736905777	10.202698967214	9.46381770467447	10.1025000954683	9.92124790398324	9.99454612817052	10.052478288259	10.2482877382297	9.96863068993626	9.90268017189166	9.79127625744375	9.73852024283993	10.1539517766488	10.0284954637423	9.861102756024	10.1549152550308	10.0478568031654
+"USP24"	6.94582668337602	6.93975892964144	7.29729993282395	6.74499097178613	6.7821193807291	7.54627224955798	6.42588338873427	7.10406243709261	6.81904067814388	6.71361577705361	6.71127041926561	7.30557471563855	6.56932336271225	6.76300835498381	6.8857882862115	6.76228648403978	6.8866144703568	6.95592852327784	6.91008567388844	6.79631652279229	6.53012394512729
+"USP25"	8.62977087413132	9.09009667086401	8.40940979943489	8.64890677075317	9.34842822382989	8.38965260823361	8.15191060793815	9.09951724117756	9.15681036495217	9.13402833041471	8.57293139112176	9.2569531776314	9.01848009653412	8.39577434967493	9.12002038991235	8.80446280490971	9.13668787870285	9.13243443208205	9.03837810538488	9.32573501577021	9.09362908726641
+"USP26"	4.08862783823273	3.89678805292796	4.26750749583989	4.35745122670418	4.09712820477036	4.54873330812169	4.27804346961634	3.96779852709763	4.20891748928171	4.07424157914795	3.83790622525182	4.24197059595203	3.97723544643213	4.12594492014678	4.01738920098637	4.32937776543736	3.59762614749042	4.26547570992807	4.33683321114477	4.29286885792877	4.19384426739312
+"USP27X"	5.19320222382379	5.26265897708434	5.64992093458432	5.1331592550122	6.28295726547251	5.50290994635383	5.05124286084036	5.4482173916362	6.07153059345062	6.23036656167658	5.08030023420141	5.55473301924689	5.42847120585471	5.51597531973043	5.7662511083396	5.1065031627197	5.57681449205147	5.4990662889621	5.34441102701521	6.0547400241274	5.72546985030098
+"USP27X-DT"	5.13815625997712	5.44501559880975	5.42210685631753	5.34150685286525	5.42210685631753	5.26361602904303	6.02683834804816	5.48209964240943	5.69817723497855	5.45870673819127	5.42210685631753	5.38349563752794	5.40194664758151	5.70265145160048	5.1914831646262	5.3519315858724	5.3867723870243	5.30506547624991	5.58317523755233	5.36724102242157	5.42210685631753
+"USP28"	7.01807857888661	7.3259019518928	6.49410126428004	7.07804852072483	6.92257660145895	6.3643480768716	6.84410960287879	7.07637200547968	7.15430324726559	7.14332605167806	6.83435511184195	7.36589645720852	6.87652744701935	6.91366648056606	6.91921998342107	7.19317492897073	7.50985345233089	6.79487579664318	7.07637200547968	7.39241749976622	7.25672300190253
+"USP29"	4.32724471579921	4.37831078965098	4.34519891272226	4.38868458282386	4.50827282249572	4.78932025593347	4.74775655049458	4.61569372949638	4.61328778938844	4.56336566543392	4.49601606563551	4.43941195039735	4.49497619638741	4.58985425079561	4.44332768096112	4.68090610038749	4.53823632597252	4.19932226215126	4.28435904506863	4.38855048245705	4.35584077230724
+"USP3"	7.44564402913216	6.9542620326686	6.46964488619953	6.73521208896329	6.703927573728	6.95132418277551	7.15543564353749	7.43095064581725	6.75883377475096	6.51243520384558	6.99199602299839	6.57270302993461	6.72323584564915	6.76772458767691	6.82632357330451	6.98188747375911	6.82601111329589	7.05491725448764	6.70184503480271	6.63120414268405	6.14100315842046
+"USP3-AS1"	3.30768198554986	3.5892194123851	3.70079742822329	3.30275253076609	3.70632310137397	3.42868802487188	3.26041925826279	3.58806593737777	3.30042176578684	3.26080548350871	3.50397885054569	3.46975484749387	3.45543993057874	3.32565451282938	3.48919713915757	3.48919713915757	3.39674315805496	3.51742256390221	3.62062594729651	3.66041567135162	3.48919713915757
+"USP30"	7.1348366744919	7.36138238834547	6.56700066290213	6.77599341499976	7.16712106679049	6.49535687052271	6.81112872928832	6.84807140273659	6.66382475445779	7.2331282270573	7.48670883330894	7.07316340752797	6.47684088038837	6.36870407113169	6.22826162584093	7.89246569720011	6.89200262600433	7.90669346212521	6.88638525600729	6.79372542132602	6.97819367840482
+"USP30-AS1"	5.32614281853333	5.35211563644804	5.11177218549549	5.56931550516336	5.2658177851203	5.54450087133998	5.4178595284261	5.46264110867786	5.50076182085259	5.51697014024947	5.37378408949632	5.53507247088237	5.54974089351274	5.71222819623747	5.58581603054566	5.39757547285769	5.6643642428873	5.08708257517922	5.77721118742238	5.53147984400162	5.6007952350226
+"USP31"	9.36338163847563	9.36841587521973	9.77832189624094	9.89417741768192	10.1070160747046	10.0796826380299	9.21747405140957	9.46965426303536	10.2867202277793	9.48726184150153	9.69110554332796	9.65752751922091	9.77832189624094	9.91213003618556	10.4188703593088	10.2330879662171	10.1015596377517	10.5603598581672	10.0120445132175	9.54033835947329	9.7298738702254
+"USP32"	7.42787320179418	7.40071973647303	7.45884566654714	7.30503151046498	7.32122118687843	8.57686052237804	7.12975882811076	7.83443446317354	6.88942610486934	7.08896021316015	7.52548777749505	7.4783583220414	7.18663769435347	7.26981485388896	7.31851411732955	7.52306664866433	7.3947516729121	7.81991400155238	7.19742317032615	7.10814834045859	7.20899228410823
+"USP33"	9.96841271065851	10.2827360957821	10.5256477808341	10.1654484137228	10.3682844169603	9.51872795701658	9.21696899824824	10.1312524012193	10.1608999977113	10.1608999977113	10.2265285241606	10.3162387613551	10.2007893609531	9.76805199212381	10.3514535322679	10.1065145512976	10.3392865434973	10.4398821064059	10.2102439183476	9.98752714918235	10.3196834673014
+"USP34"	9.87988430435926	10.096711643114	9.54461560279663	10.2731817851506	9.22298212712602	10.1742639962504	10.0071026039659	10.15021500671	10.131838553599	9.68816662183627	10.1941142489126	9.99686955273199	10.1544002352597	10.2628421512911	10.4094194563545	9.89049186522903	10.2160135839606	9.24660664483608	10.0699054632076	9.41777054526371	9.8046082595232
+"USP34-DT"	7.17523863253289	6.17258396437123	6.13430135649852	5.99196417385306	5.89299259614611	5.54008966548093	5.76103617798504	6.2373193574867	6.01280900931959	5.84440242437796	6.48860522167587	5.77814116923581	5.98283543507961	7.10764487693535	6.01280900931959	6.32641137972196	5.52520740406804	6.33927269346607	6.12218563508812	5.86061808887284	5.56837601691049
+"USP35"	7.92996429076285	7.66205432749441	7.92816881838511	7.72053983991298	7.42374922163637	7.9449102476588	7.83042753341397	7.60615447626554	7.61787524944562	7.72394061813994	7.37835427937898	7.75289711283136	7.64630272644234	7.86502648551239	7.7397695618539	7.34322892183599	7.89541527405709	7.58714087474229	7.64485579676996	7.86514527681134	7.78252239932296
+"USP36"	6.10403653169219	5.42968762872271	5.77252983004221	5.53691315404297	5.24540055506153	5.73442303936744	5.11121104635833	6.10181114945522	5.68703919768308	5.39332574319627	6.11554442697092	5.79008491512801	5.94442218067474	5.68703919768308	5.28403853886264	5.79852145621394	5.56979509488789	5.95347681402656	5.85067293906632	5.63006588910225	5.27570790696106
+"USP37"	6.93811125598975	6.70078685226703	6.30854999379355	6.95493940533581	6.29745231092945	6.19443186245438	6.41322595161307	6.67515190364471	6.72424491995702	6.31492164502352	7.12254968243597	6.30181437330316	6.27367969422835	6.59645849546553	6.82632357330451	7.47153245388717	6.46298480369224	7.20160046509388	6.63456412077938	6.39999293431182	6.43826740913247
+"USP38"	7.36149824160448	7.27090611443981	7.11038645110432	7.18627839359242	7.34316642299093	6.79173544777481	6.73390694868002	7.5614957910377	7.17664972656744	6.8753601180442	7.57253171592917	6.77226952608313	7.0080704417266	6.87511805775774	7.49428259317714	8.04670660418133	7.23963507246045	8.08287376912117	6.96389309815422	6.86947354099121	6.93018889376329
+"USP39"	7.60971324591253	7.42751376852352	7.45034832144363	7.30391286269029	7.4749839094631	7.37254610267262	7.49411126218858	7.39196097603124	7.45256734836975	7.40231693037376	7.42098499375818	7.3146656468996	7.28210302578067	7.44019449501581	7.39029052493661	7.4280760849658	7.42751376852352	7.59003185498308	7.49547312832559	7.45260350395342	7.18987508599544
+"USP4"	9.5941853674727	9.40838573949284	9.59064917591676	9.39057310052014	9.27237936792329	9.80827688297434	9.79287164203921	9.48421184462815	9.30826567243365	8.87606571517961	9.26210275226336	8.83182249929673	9.65366625938401	9.87797571740976	9.75277268730538	8.78803690577393	9.08476137824545	9.08647875914033	9.17708141189312	9.15346200435292	8.76731048632463
+"USP40"	8.63804892401809	8.13274536181495	8.17073889392686	7.73241428992176	7.66406942871372	7.79059373159051	7.62642105887229	7.72085500368816	7.35777604961445	7.40525380693967	8.46099281705449	7.75906044593604	7.3121269372333	7.92835634883619	7.20434925663605	8.69209358737804	7.59353634622782	8.45606781558889	8.02045023385966	7.63001417004054	7.70138179741743
+"USP42"	7.40458545312609	7.20346614286036	7.58922617029174	7.31811384615841	7.0782629656651	8.36720393913192	7.6003657571996	7.64636301553827	6.97516172279269	6.71291413420751	7.36729172811809	6.64636043072335	7.54334626968684	7.91956895835847	7.28450176386733	6.5778117301921	6.67385820263704	7.20924241326542	6.66601991736694	6.82942679025382	6.85824550488168
+"USP43"	4.71922451477615	5.1110656300669	5.05158151214446	5.21392053706286	5.34935740889036	5.03752294891406	4.96233919359129	5.41144428262407	4.79905982191877	5.01318595678727	5.12204082646889	5.48137189384523	5.20587278763636	5.11202826745351	5.07490007048084	5.03890831437936	5.18628068896424	5.00642385077159	5.12758183115398	4.76764009535909	5.26427929001776
+"USP44"	4.91689467912635	4.551990190859	4.70311317666414	4.62309186505687	4.57572011168189	4.77420096376026	4.95043048310914	4.58449589856536	4.61837332290305	4.37651427578994	4.36078367182099	4.79829881629226	4.62403072783591	4.82077050342245	4.81341461817156	4.65029288499483	4.57289003953711	5.00331280649785	4.56117939864617	4.63132782162162	4.55858577892819
+"USP45"	5.35373189526845	5.22298205878354	5.55296084068005	5.37742250385156	5.42831548663388	5.27431936243216	4.9843392386146	5.55690960039431	5.35831843002146	5.28747087650977	5.26807160755962	5.15058164026976	5.76505973300629	5.0989401429853	6.13863948115437	5.3021440435221	5.50425316892161	5.72873138808592	5.33741404278269	4.89371573751588	5.65892428706794
+"USP46"	5.46037079344309	5.81754583382026	6.51815187712638	5.36582301745094	6.64207508345112	5.21852300896543	5.03082593322649	5.03423261065332	5.58576552930125	6.27430956989254	5.523676183682	5.98729881694201	5.16033894344599	5.13773923160154	5.22514702350377	5.27580775633188	5.87793000528361	5.82760692726807	5.24602355419926	5.99677319615426	5.77980070652564
+"USP46-DT"	3.57522672693335	3.32186379643245	3.28257479121053	3.26267207146602	3.49697361537836	3.06932030401197	3.22783689798191	3.26267207146602	3.08100605967911	3.19978511241299	3.25679495168092	3.26267207146602	3.21012325679801	3.26267207146602	3.15215489619944	3.281843580483	3.26267207146602	3.26267207146602	3.26267207146602	3.13147599456747	3.27761942241292
+"USP47"	9.21213485633403	9.16028063428671	9.25143704800761	9.42417938031876	8.63238157159507	8.95304385770509	8.80411973803136	9.43488639730441	10.1832470179332	9.22421162552948	9.38366976211972	9.1325503962246	9.87553736097452	9.25200401122263	9.99360177069791	8.65381363534705	9.46773294268036	9.04098606008851	9.37015230696431	8.70125866456171	9.37363353564364
+"USP48"	7.52310192567814	7.70277746500647	8.34286888908097	7.05337074957177	8.20618774534995	8.4462400836286	7.23207981828464	7.62273241267083	7.06037095050581	7.25609788588084	7.71564100286698	7.04631352101794	6.79015666489124	7.21273817008454	7.46843143587616	7.92532756133059	7.24559072045561	8.78836277476961	7.22886493666222	7.52286300731435	7.47579971980566
+"USP5"	7.82707702737253	7.86800478518901	8.09938217060355	7.94895910867927	7.93860583132687	7.81148145420426	8.16820144503419	7.92984068868129	7.86575833214813	8.35383149296345	7.85955513269915	8.13999486380934	7.70011983123288	7.74683784067319	7.66067118948723	7.93952913720959	7.99565658848285	7.93952913720959	7.89101555674731	8.3415205824311	8.2761444568982
+"USP51"	7.11029080159371	7.33680168093017	7.82809973638331	7.37578470254113	7.66504093305682	7.47303101476895	6.75459894329058	7.18800363368337	6.68241749293191	7.27307554569634	7.10749017719932	7.27307554569634	7.08601155870924	7.21610791877027	6.97835072849248	7.49120333407927	7.10699354878448	7.37364981756434	7.03988627147044	7.86761057139514	7.05938155657744
+"USP53"	5.91552528956396	5.16105161457705	4.98047933554667	4.84624121859087	5.03358343139029	5.09122390903668	4.93563183417309	5.33853103959405	4.73639829352725	5.56124819408499	5.13310525371999	5.3509316418768	4.97510113004431	5.31856553964762	4.28003898936608	4.63776181529698	4.98303405781668	4.89180804398337	5.24129817570383	5.65319134144221	4.91912212229306
+"USP54"	10.5231088421228	10.1495913311917	9.73773505884323	10.0783496130916	9.65586179754662	11.0553048239019	10.5406859744354	10.1151311483591	9.55164854719487	9.41936376515475	10.4753571974136	9.66103429705909	10.0546843008464	10.5178628425317	9.9141784690745	11.1087567803444	9.89631968929089	11.259148400371	9.89186924061828	9.35142888970847	9.27937783517273
+"USP6"	5.90583137841102	5.85399344804687	6.08118000825632	6.56067375045907	5.72431138520103	6.76238637046862	6.35707033320518	6.11720669333325	5.91505156633018	6.25080603459054	5.54886709818613	6.23716759460518	6.37818365560147	6.26607821799836	5.94503254602978	5.89245484812012	6.49409851226586	5.21539493620994	6.62969498215494	6.08501880367669	6.27100658226974
+"USP6NL"	5.37348254447229	5.12593684319866	5.31730919846428	5.63013783768292	5.31730919846428	5.12187221703837	5.47542763050103	5.38599044251848	5.22768593652439	5.07379447278057	5.44492763294767	5.34010532589805	5.13753877663619	5.24986409700876	5.17219192787951	5.7551983870132	5.43206587769717	4.98593864438324	5.181195512983	5.52355816270027	5.31730919846428
+"USP6NL-AS1"	4.36340664427164	4.67697276930426	4.51955865265074	4.87636619916029	4.78009734604151	4.48434149619816	4.72083029964895	4.65343761631106	4.77511145389331	4.41644281758322	4.80062244021102	4.78634314547754	4.69870620743111	4.71547634371374	4.7623124355056	4.88600197044523	4.85507132779243	4.46859548736744	4.7096388695463	4.72083029964895	4.85654697165036
+"USP7"	6.93205058730684	6.84855495360914	7.10092933429578	6.75479850066242	6.99975018754709	7.65177898859526	6.7852096150797	7.1412140279669	6.86461170156073	6.42742074432945	6.73317899584138	6.78455909971804	7.07165698703929	7.00522845976853	6.97243919563532	6.85746473341847	7.18006974537717	6.7852096150797	6.74239250694684	6.50901308160006	6.50526975407849
+"USP7-AS1"	4.87216534705146	5.04810859610081	4.99808664397491	5.40842735573902	4.90120580759616	4.70726024927705	4.78763331263162	4.79624226894742	5.06720356115923	4.97970553131844	4.84226096279254	4.9139555771343	4.99277312338987	5.0174038143457	4.97665822429192	5.00085833622707	4.87173700731732	4.77068908952479	4.89134355739823	5.19190039730582	5.15541755413117
+"USP8"	8.1783898304538	8.04208365749965	7.99566764843333	8.085822350724	8.04208365749965	7.19811692618705	7.99479385136018	8.05892677907651	8.11421867408423	8.04208365749965	8.3147753980652	7.8852979016625	7.95416336378454	7.77598438380141	8.2794735079864	8.21381147726304	8.0450525479622	8.20125621670821	8.07682990306527	7.81940128762953	8.0769265414387
+"USP9X"	9.32948892561707	9.16905721193698	8.99234876560753	9.00019314561937	9.16338153589342	8.66191570237161	8.51703725767207	9.07919529427928	9.23626824803553	9.07899306427539	9.28805621601124	8.86797222949913	8.74898422735179	8.6659560773181	8.79925854575017	9.09371184591051	8.95199630293603	9.09772144542136	8.85949028847707	9.04837210872797	8.87864401185273
+"USPL1"	7.53166486840591	7.76349012571413	7.51940540447072	7.53402618330654	7.83821506053568	7.71209924133678	7.66131271141655	7.97041938538903	7.63793533282988	7.59895707885948	7.68193866055559	7.54478128657353	7.70383110205424	7.57637634679754	7.89833031417596	7.7730873770716	7.41611521515098	7.9592760644865	7.60941617132553	7.66199128690472	7.66279581018501
+"UST"	6.94605255410148	7.2964261357508	6.89703253156954	6.58042855723392	7.00737040270497	6.97130130942818	6.61408524878349	7.22440715343847	6.70619366863005	6.52078111302556	7.33069154104845	6.34089761818524	7.18722788253258	6.92436289121328	6.68991709560082	6.16201235423525	6.84317536960288	6.86163477613481	6.34285705090927	7.20532941106803	6.23202005745016
+"UST-AS1"	3.17737156758115	3.16129279559156	3.05249464336892	3.05897504000636	3.05609982618925	3.07515105162803	3.0368997514818	2.85503529484999	2.98920501294193	3.05897504000636	2.87859240380372	3.05061124629935	3.18124163469475	3.02034187590903	3.30025166174494	2.93603699093467	3.05897504000636	3.17724388161294	3.18853391425721	3.07791734965246	3.3024339101175
+"UTF1"	5.07407892338062	5.09158963789459	5.41372473412735	5.10987774282196	4.99728486161457	5.12640100902974	5.19354470837927	5.33754687777588	5.22955810506846	5.21745501992767	4.9703054377825	5.10987774282196	5.02389111442574	5.30421965672338	5.12746650795198	4.86443003255094	5.27911031651928	5.04974630127277	5.31349087567623	5.07195462522037	4.95943014296011
+"UTP11"	8.2163381958079	8.43789987528731	8.75982929903375	8.1183113142688	8.67611611299647	8.11142383441141	7.96336470153748	8.22917347125427	8.42166812175453	8.48820481069057	8.32731277792407	8.40516749271661	8.39371007138655	8.12778701128696	8.40200030771445	8.26210436126353	8.31144455800961	8.78657891351741	8.23922653575632	8.86121098473561	8.52077236693469
+"UTP14A"	6.47177094875095	6.29079601809376	6.87677995130363	6.30662383561806	6.74444441393699	6.22904819100742	5.99168188401704	6.22402657808663	6.46964488619953	6.58250536095027	6.24044044808649	6.4191613175982	6.4191613175982	6.15376416816556	6.26497565810234	6.55012577518813	6.52813120898041	6.66369448134482	6.56827355310124	6.73470232715314	6.66483614016661
+"UTP15"	4.95376740652702	5.23250488274211	4.97658325685204	5.09704242193185	5.19142333685408	4.81821489357709	4.83813468968641	4.67342534782662	5.02911786542874	5.16304009926144	5.2080709054447	4.7291769000161	4.85345701770693	4.792041545333	5.01745254812095	5.37828719769731	4.78981123387259	5.02420397336702	4.80975762061814	5.32303368795337	5.05394019527164
+"UTP18"	8.1788912213803	8.37901757910221	8.46221359237954	8.07196508452707	8.72608813534801	8.13413541920497	7.91883502656676	8.35580410632758	8.21041123393379	8.48994418415953	8.34484809936567	8.35652796106921	7.96722689966206	7.75708184361717	8.16135949770313	8.90742179692298	8.20184239254906	8.70083570528928	8.25093256624142	8.70574748247883	8.42831141302566
+"UTP20"	6.36168476749446	6.52526339131616	6.40563872074045	6.15943273732832	6.45073525184743	6.37524621838529	6.1640500304863	6.12334717307495	6.07854110773496	6.22253418157386	6.55191686100112	6.303897164781	6.20989775081099	6.0918221100359	5.82996448786346	6.83518029389792	6.06894757306144	6.51776266090711	6.18483067904863	6.89636658340574	6.2972421993444
+"UTP23"	8.00782805120229	7.78683045557872	7.81658146323389	7.00545642988195	7.76448069216563	7.1579298273738	7.04319295330638	7.2392326030898	7.26416484525954	7.61265034176549	7.8645537107972	6.91381555579294	6.27805726287257	7.39223857087417	6.78385613069922	8.07103101186908	7.10061540939887	8.2054852953667	7.45322298224708	7.48613000289554	7.28709220774889
+"UTP25"	6.67923105339378	7.13110660890231	7.55784509811386	7.30470591751249	7.70002528453682	7.33076376979038	6.5437141903881	6.91578052841858	7.52582567892289	7.37854516593585	6.70579919937004	7.30470591751249	7.40830251801175	6.80513071829467	7.50512655577985	7.22772039826179	7.2173823484406	7.58860007562672	7.23160684115147	7.5999035820545	7.32941338985866
+"UTP3"	8.27122058349549	8.10996853918076	7.83918802417082	7.88240281943384	8.19840319132855	7.48803440546421	7.37011795583607	8.05658729925386	8.24553644496458	8.11983535738864	8.43115619101453	7.8962784469138	7.78788129010112	7.8240948878173	7.94437066101287	8.47972284701416	7.73876829299514	8.57050656464456	7.88789877102305	8.24750057459941	8.23820646193717
+"UTP6"	8.52729764963052	8.58963624375766	8.87874317194164	8.31119946694004	8.40415388415781	8.2237614272381	7.96646511888919	8.33987723752668	8.42569116632044	8.13660206473206	8.63343086896894	8.30580094991586	8.01519358936256	7.90474549734584	8.2959630203856	8.52656974330741	8.07347572013359	8.72999437017292	8.28534558276399	8.38043536394712	8.29577710808098
+"UTRN"	7.48445140858722	7.16574317877129	6.13047943325523	6.39991577692239	6.59415427079186	6.40823691383145	7.13040279611525	6.93573197279193	6.49001061537115	6.79575538541076	6.85519971208764	6.7920658165583	6.58337802594221	7.06120117066111	5.84324430367431	6.31023702067031	6.96585487579743	6.53203895073184	6.65570695164538	6.64857434453254	6.67175072565914
+"UTS2"	2.75542200327689	2.99245884840149	3.04385858196007	3.01172488555998	3.1011321347521	3.16502393342434	3.17457996976248	3.14569671212439	2.93298285734745	2.99245884840149	2.95434165985752	3.026013171828	2.93602492738565	3.01449908281559	2.80861312945448	2.99245884840149	3.04543060447808	2.8786859243906	3.1727032524516	2.92434345035511	2.83180619946313
+"UTS2B"	3.51720260978119	3.5571811070843	3.49513129828074	3.42598080769835	3.58031691563784	3.67173193409578	3.87056071965311	3.50666946286845	3.48401303533419	3.48222518938059	3.29478528376101	3.38263259499084	3.4919107977398	3.66968888305206	3.3171506505848	3.48401303533419	3.75329011392435	3.2012388165469	3.37584350333293	3.49337323459124	3.42598080769835
+"UTS2R"	7.23896773669136	7.46550454330678	7.22573533830038	7.47153140004334	7.32275962844438	7.44509503612066	7.57430253822211	7.50813163739586	7.52164845291713	7.4788672283828	7.44743232228428	7.47578498691077	7.47027796116763	7.52289092168144	7.42721919139885	7.5857238812094	7.38910796047754	7.02904507170765	7.38802355286066	7.48194487355545	7.58367045620829
+"UTY"	2.94082799864182	2.96990687238165	3.82375293494521	2.93892466909434	3.57692000795239	3.25441649535476	3.09436293317502	2.96029050099122	3.01338472315376	2.98855377135628	2.85019630674704	3.87028534082919	2.84358745289624	3.10271875687885	3.49251112773148	4.43765533634065	3.94072100350168	4.32009571760925	3.83353097716374	3.67157537724357	3.58031167982313
+"UVRAG"	7.69293996987749	7.80657402415745	7.74709311283144	7.31668174319935	8.14021702208314	7.9493269390808	7.26427862347649	7.24798869149402	7.5964590081672	7.81163267986347	8.13700043139693	7.85792840979143	7.45457861786024	7.42097893991948	7.49358107382926	8.51105949333201	7.59712265092893	8.6609453120953	7.54013512578963	7.78638739882448	7.76181020350742
+"UVRAG-DT"	4.57774676345277	4.83851391392687	4.78672948028106	5.08625547419221	4.91708165502444	4.88911978118468	5.24179699430459	4.54248973329087	5.08036084405654	4.83851391392687	4.66433072383973	4.83851391392687	4.84202084513852	4.91933277527552	4.95771342590708	4.64390483374882	4.95006034008475	4.50878973869192	5.22025635773318	4.51870035922113	4.83057768019726
+"UVSSA"	8.40238987526546	8.62920197133345	8.5244199668817	7.84592397924081	8.14608765401927	8.75001045082653	7.99189957765758	7.90758622280885	8.24161514081477	7.84819673741805	8.65830731339874	7.74513750518637	7.95025008745854	8.5806541185226	8.09760789217238	8.71846662097426	7.7864075339762	8.13683532820449	7.97365991495055	7.81565119071814	7.93999413241776
+"UXS1"	7.20342561483226	7.10260236896477	7.44158333361957	7.02854369438537	7.34693271976288	7.10253174545594	6.65025290241307	7.02737476473368	7.23573090892828	7.39026198988003	7.3563345010227	7.09789391735896	7.42586168970503	6.69357754146309	7.39012345691403	7.12974461971103	7.42455171575752	7.40720626323142	7.10306976127664	7.46612860968064	7.12759827941925
+"UXT"	9.33576574570429	8.84339046912759	8.81659313899571	8.75000570973855	8.88145029183335	9.17359877093281	9.16141097056569	9.08399567276849	8.99136862943283	9.15329609138069	9.11958656792691	8.86529874063828	8.64518208916908	8.85023874053138	9.02481582794752	9.31291652923044	8.64129974523578	9.44292209343032	9.25054639044923	9.0490109775494	8.8721284337546
+"VAC14"	8.36217938936102	8.41737716511934	8.74908454677042	8.37092928809882	8.31037870889928	8.61790742861634	8.63923625595026	8.23993619763914	8.13619434594574	8.55095194837804	8.3850017761651	8.52455932592224	8.34120340058803	8.30075615008617	8.2408048412006	8.44202230003222	8.45202123622646	8.29377051005539	8.43304414407137	8.79415259026715	8.4627501648317
+"VAC14-AS1"	7.97925768848168	6.15376855769166	6.52563005840164	6.55636058722595	5.7184499668566	5.0116623658398	7.18895567605753	6.43457357019611	6.96750264809739	5.74856859282514	6.7833696263555	5.89645634147062	6.09382029950324	6.56736833060749	6.72917026512019	5.75103985974083	6.33407743116639	5.98737603366594	7.23982737143772	5.49932135000548	5.267079422129
+"VAMP1"	5.67899418184387	5.96975810882913	6.26065213410191	6.1271460141049	7.71692239236055	6.02191487530606	5.90743063837504	6.12686633847515	6.27510141287871	8.17740796432626	6.40526696837883	7.75364002355281	6.29367393068794	5.78596158699587	6.37091443631847	7.32081538268429	6.70878236743115	6.62812725499009	6.76352187680416	7.53965901785108	8.70143481686976
+"VAMP2"	8.36601864807025	9.23598899228529	9.87286236461764	10.1316905331768	10.0950144609665	10.1416284168474	9.0607938483438	9.13281143672841	9.39993910217021	10.2013992208325	9.49187344143925	10.3072467390786	10.0074724953076	9.38045777419632	8.87434153630237	9.4336216316326	10.0378304893678	9.52710291605532	9.66626326803087	9.75336261976151	9.80647376621038
+"VAMP3"	9.2323173877535	9.17992687053823	7.58478948952949	8.46907180038698	8.69438019115976	7.88047094282599	8.83966836713135	9.0767047119442	8.31190491561762	8.83853004459047	9.7318596762833	8.55788014885223	8.22660874502047	8.51102377118637	8.00380023113387	9.82232241477654	8.58870533023938	9.6864996036201	8.94422668947652	8.12047366406305	8.11910597590465
+"VAMP4"	6.66584147745806	6.36962754740352	5.26220259366148	6.42089635909781	6.44067483123101	5.42196634435232	6.05465739819425	6.44067483123101	6.45131560033665	6.87200744432141	6.39082029944295	6.69162083610768	6.39860325893058	5.8689878242808	6.03024397932165	6.36193714215561	6.38416474662266	6.50038370889869	6.52440452384347	6.68096853783235	7.06778330178605
+"VAMP5"	7.93038504658877	6.72565457052324	6.93725425914254	6.87295132486769	6.54756274631459	7.50588018963404	7.12586814104417	7.34113230777554	6.54756274631459	7.41026685233267	7.03333395845512	6.74497903724442	7.00604210753029	7.22385529880767	6.93811125598975	6.60302038991823	6.22558632894372	6.9522152654768	7.00836236621893	7.34072826264098	6.66686750280677
+"VAMP8"	7.71887428820401	6.1975712838921	5.74027146735078	6.01083996657303	5.89708195618327	7.40296268250291	5.94979554506507	6.6210532534471	5.77814557454005	6.22619955772884	6.56815635059675	6.10736363184088	6.65962203288401	6.24061902290365	6.48337832771756	6.18802654120128	5.52031918770068	6.3843131529846	6.3843131529846	7.46928197973915	6.92672977320573
+"VANGL1"	5.26609216075863	4.91299372058592	4.35099851965982	4.2493817728559	4.45387164433415	4.35662212542143	4.84398493167984	4.16564126364933	4.18799769859931	4.38350252626147	5.23511250705792	4.3736893801486	4.27401467963334	4.45387164433415	4.54327927027046	4.88553980347501	4.34634699370544	4.65620767971754	4.29710934266043	4.71944793554903	4.50227673091832
+"VANGL2"	8.18797030477723	7.12172890982987	7.33677714209089	7.01036097937748	6.83049463081434	7.48630390406926	7.26124689143057	7.18869675489067	6.58282277142866	6.87764448414051	7.83658052178688	6.55517426975988	6.63649146680139	6.9709358129325	6.12557848283624	7.44276620810564	6.64345838953813	7.6629793680576	6.66846527075555	6.61750312491403	6.09495326043814
+"VAPA"	9.65360459360659	9.48777297933076	9.40529850669382	9.07862290104864	9.48773375524919	8.55718287941038	8.69458242423953	9.44795498486004	8.88711365151785	9.39998946685973	9.48963003989037	9.48939613835919	8.5559779830971	8.49549881831654	8.82037232819192	9.88068822418151	9.25278827602218	9.73737841352714	9.21875564297187	9.38833803088014	9.28514491350071
+"VAPB"	6.13838260527859	5.94667893726946	6.4222184140347	5.92381837033733	6.88757580079464	6.67690562181742	5.70491146600838	5.9750730164336	5.90003234144249	6.38995339420073	5.80722530058272	6.45755793739347	6.14821661283845	5.8149362913756	6.16952071561976	6.14510775291335	6.14505941677971	6.24827436765524	6.16952071561976	6.44172357579488	6.53865054790884
+"VASH1"	5.8045501707194	6.23215096981965	6.40550731223193	6.32775124423284	5.99754465917926	6.55890516131218	6.08361367529484	6.18935449536304	6.3101807251125	6.37597512361054	6.18619783200992	6.23009545518115	6.51364628800436	6.16770382518146	6.3409107305683	6.01184846838548	6.45507129818042	6.23215096981965	6.33900515321343	5.89011051965167	6.52019523156467
+"VASH1-AS1"	7.98793158449389	7.72095893273932	8.00541994009811	7.74590782697026	7.53282843466469	8.11462804664261	7.73725607572319	7.45046830125153	8.030667712913	7.78611933763646	7.82721317510102	7.7641223143484	7.84619247506354	8.08945159197153	7.43174186016276	7.74919214713835	7.84073405014244	7.62974810166255	7.70608475189741	7.72775208960379	7.86505409609866
+"VASH2"	3.37940995794035	3.27989992529035	3.32986574468777	3.30983282507949	3.44761510179555	3.82835468929657	3.28118763465509	3.19395124417272	3.40976196403038	3.10251761625555	3.22907587158557	3.24459812182151	4.07424750090587	3.60748401537841	4.15920583240762	3.02714187962576	3.30598454587514	3.44809567905193	2.90241115155536	3.30266792915631	3.57331773969824
+"VASP"	8.34129698731742	7.07738973369125	7.25423826885658	7.54896576241542	7.36668406105913	8.19395816901729	8.34037171999276	7.39196097603124	7.3102302403564	7.42253288985212	7.18386451679415	7.23435335438563	7.94469347924951	7.84764864501885	7.58822600824069	6.71118643762048	7.22433046676127	7.17980096332694	7.40521575110622	7.5531525737424	7.71193142891617
+"VAT1"	10.1690975310381	9.28003141984043	9.02747335300642	9.36083109223437	9.02403213124692	10.0581006955227	9.51601430020707	9.2196391880286	9.08645010394454	9.51327149955241	9.84852339318481	9.21212677964094	9.39695035473979	9.60258710788462	9.16913110365072	9.7692645794368	9.19695939339181	9.45289116192885	9.27810425719561	9.43591725087882	9.23114397138632
+"VAT1L"	8.12217647115305	8.97903798678053	9.20074653394811	9.10648438956853	9.26390779126489	8.72679483648443	7.48652149378647	8.8938207655507	8.74443783782548	9.14719498954908	8.63325049152232	9.16481628061209	9.10917410130983	8.60378198015377	9.25311856860538	8.71699245108405	9.30509853423898	8.74984246959461	8.93581449083129	9.27648112328019	9.12433804969153
+"VAV1"	6.1042374314162	5.85698124456092	5.85629004392639	5.89078891813941	5.70713502839266	5.67705778787234	6.15069966125637	5.9242946203078	6.10914797158383	5.81657884700029	5.52447215883518	5.60708161063981	5.89281700888897	6.0088375330385	6.06675458525195	5.83311226048874	5.62667662474729	5.89078891813941	5.8447854343971	6.17070250169561	6.30223543002755
+"VAV2"	6.02810237299345	6.23302321814387	5.97948255899747	6.55951360784926	6.201868610311	6.2271956154683	6.64586581607177	6.35346723828212	6.06608458441411	6.51113339881913	6.22301118902962	6.23302321814387	6.49981534062179	6.3659377592842	6.17007248696622	6.01913778606222	6.23302321814387	5.84464526272277	6.71412718284272	6.23211589939017	6.60413558128613
+"VAV3"	6.56635663522199	6.60320563255812	6.90692095296985	7.10629154654827	6.92247083612069	6.2609304038287	7.56305350205963	6.77715155930306	7.0670189564331	6.93920346794098	6.62238528174149	6.51698480621496	7.29076992178637	7.01012243449457	7.74420613046911	6.36022682037422	7.01635351300207	6.64909702432516	6.0710038798077	7.04262516055413	6.80485213539658
+"VAX2"	5.30082464979806	5.02129337313613	5.46745016674906	5.22209266910451	4.91156220351588	5.22209266910451	5.39435378510936	5.59557551935096	5.55608932293692	5.20574439226908	5.28151892137503	5.37136497698157	5.39063025235564	5.26071913453133	5.11314663406351	5.19850141164158	5.26766210204047	5.01357729263567	5.43634090070977	5.14503582882413	5.14902734428388
+"VBP1"	10.2625319321335	10.5124393343411	10.6016200905748	10.5180426657543	10.6638377254931	10.0735687676018	10.1540920994217	10.649411607375	10.5356516228504	10.6398758831072	10.7096222921214	10.6195881752826	10.2809042067184	9.915904689091	10.5880637386399	10.9132741769088	10.315642114195	11.0096553731686	10.4965191081179	10.5559615325579	10.4414683068458
+"VCAM1"	7.0839875246391	5.43771585873246	5.43771585873246	4.71273956721067	5.62213936884226	5.38672057664826	4.6107376242388	6.87454432148369	4.26342101650526	7.75988457751747	7.32840926855866	5.17544326537758	4.33812488521011	5.30414423973762	4.20734686946377	6.27100306877301	4.57703170464128	5.39256889886875	6.54987656325499	7.20494115345985	4.86077855660815
+"VCAN"	9.05514617971217	8.30587851480202	7.0004528462131	8.48425006587189	7.75021231917615	7.84851219529122	8.88680154054546	8.40009231346684	8.06216691753494	7.70651133602317	9.57753392826722	7.75016197756643	8.87269747617338	8.05007070523476	8.22807857796671	8.69817985189734	7.84151669712995	9.06483422290079	8.36679263885604	7.66155319784178	6.5458724981488
+"VCL"	10.1610347852985	8.95264816490648	8.91082739663294	8.94288749477337	8.87445299857075	9.22463021856631	8.84640502745617	9.81574608768194	9.09064095406879	9.07486248360574	8.93073529201391	8.97286265762265	9.08291437107149	9.04780059443957	9.01126237473829	8.37961115270764	8.81327475100021	8.8245915238354	9.07937410369128	9.47379243015471	9.35976299116897
+"VCP"	9.68963996888536	9.26728990019344	9.27336714911096	9.16697886011526	9.63419805487174	9.25725729611109	9.04114267063509	9.28068515224056	9.01824996675787	9.75746268532313	9.50678516533248	9.64952386225084	9.14825063059051	8.88699950876485	8.74141258236812	9.50458018887002	9.37293321216972	9.48806805923353	8.91454913411245	9.83048163944364	9.5874327840141
+"VCPIP1"	7.01236032690963	7.48665614638915	7.81971085289909	7.29301441880742	7.9281981475378	7.48451317680809	6.91494743860105	7.28868313691997	7.89035021574737	7.78582828555083	6.98716241843314	7.43388141653406	7.48348123760534	7.20587696946868	7.49419987491993	7.03663334067087	7.57748630520611	7.56180605797419	7.36947659219043	7.76087582037699	7.53641511474241
+"VCPKMT"	6.71770749440527	7.04235034071964	7.98198233489927	6.99396108460977	7.82261966681321	7.07616811086009	5.72809630429245	7.19603435753766	7.33048505384627	7.74791433128087	7.11010657362243	7.57217861171614	7.35725245022231	6.75474479215231	7.91666485981657	7.48909303082873	7.87543906564177	7.58327368976128	7.46611699191037	7.1235173781888	7.40094283011942
+"VDAC1"	9.56853929018349	10.0395802652325	10.1185442444627	10.1116259062159	10.3101617781362	9.0660583339358	9.20360799077167	9.97547438924485	10.0553426871136	10.7659620219982	10.0380671849126	10.6014846149874	10.3620064963491	9.11804455292232	9.85746560944855	10.2274514009336	10.4634689543334	10.3403338121708	10.1140176245983	10.632005392652	10.8589966026307
+"VDAC1P8"	5.57536980617203	5.71281853018286	6.25047693736207	5.87214889507059	5.8774307198539	6.25730736407092	5.85852521101077	5.90995276349917	5.67916497042814	5.68767902342252	6.09240628998697	6.0497376253277	5.82397647147675	5.96557761195913	6.16478968733591	5.83205770219116	5.7662511083396	6.31620360126824	6.0721835447577	5.72743718068217	5.84339862103957
+"VDAC3"	8.70853096829021	9.12087084345764	9.01843549374066	9.02484072410686	9.72221042277901	8.48403230814029	8.20448461742336	9.06056104175912	9.21566820537316	9.86903803096334	8.88847196723305	9.57310801458423	8.90702884217857	8.35778833852535	9.15841256559173	9.3739659546417	9.31008563857498	9.35227748325716	9.21492228751412	9.76196792801871	9.74423615075183
+"VDR"	6.18518108535257	6.28800092646793	6.28204476004523	6.47032521718064	6.04905816372829	6.56892564376871	6.82568089803341	6.40514182267509	6.57540386011148	6.60256085426363	6.10242498937749	6.37709279601536	6.71543985840314	6.65148123200678	6.50173002723549	6.12620707898492	6.35453770134021	5.93994769909095	6.42958382242583	6.37709279601536	6.34053525743752
+"VEGFA"	7.612718670844	8.29265569533735	8.71003291584214	8.8297862722281	8.77214061421347	8.56538302374015	10.009037349923	9.20539909484432	8.7549582002107	8.29692181528265	7.57243079523119	8.03482811491397	9.56960150170059	8.66941617178237	9.81537801630448	9.17852801865102	9.51618107348653	8.33541767365296	8.56940502453871	9.45735705967185	8.81015436132044
+"VEGFB"	8.37902200751726	8.16963868021312	7.93095935134046	8.38780835873483	8.06285847123527	7.95237070883916	8.96857509597527	8.46510666579104	7.81735639276451	8.13640868428261	8.4885552657903	8.11650831358013	8.39772297091582	8.28185385088318	8.15436689667371	8.05402656985203	7.61277149977362	8.19036577171305	8.36551600433261	8.30937561315815	7.84670397878195
+"VEGFC"	6.24743970590277	5.53877296903047	5.5348142273367	5.34700252434239	5.50076182085259	6.33945513909186	5.47301371075068	6.26337544673218	5.05479089947168	5.34873058353025	5.51747875410663	5.02137038904013	5.13248664222914	5.68769320060277	5.35068610359166	4.97014440763211	5.4739845608934	5.44674898620294	5.17817561933471	5.89116096357749	5.64768813543536
+"VEGFD"	5.79515764709461	5.81426574762809	6.12951257805712	5.75528643340928	6.23730548460107	6.17383333820604	5.31566535499894	5.81426574762809	5.70012828069488	5.64482199146088	5.72046146337674	5.74735498643562	5.91090718967554	5.91810933822367	6.4173544547862	5.71010789370716	5.84390111833831	6.32632885493423	5.94586435765714	5.63112666846731	5.23543210148054
+"VENTX"	5.12237047209283	5.00426819530885	5.10888094427203	5.13594312648559	5.01004969772062	5.04143466787865	5.63438000778714	5.0902206464121	5.01143628628174	4.90558689131661	4.83031748296699	5.03770054560828	5.15133917150578	5.33797891642025	5.40102013427098	5.24028579958823	4.97876082784198	4.77241480463638	5.01572389019166	5.18176374541306	5.15428468289757
+"VENTXP1"	3.11118186908333	3.18588960563488	3.25330066725408	3.66141024641117	3.15661021599238	3.65356038545004	3.25647510119471	3.24085087686703	3.14194371737939	3.10445188916792	2.97888115000451	3.07146436417269	3.05566539867474	3.06325594982418	3.09336762298368	2.92857170234878	3.06548571750943	2.88334623960123	3.11040031630315	3.11274532973572	2.83696555288335
+"VEPH1"	4.44112795701795	4.65580775462417	4.77746652015648	4.86842084981779	4.87111979623796	4.94658910821845	4.7790385426745	4.57512919121534	4.85561840418512	4.6044942983923	4.4739702110914	4.78697235059281	4.57728230089817	5.06660282113666	4.85144370345271	4.78358548600545	4.81922916078131	4.50403949633773	5.03107383925642	4.65736598102772	4.90685459004374
+"VEZF1"	8.81603033818752	8.28658206107528	7.52536529644051	8.14895875906493	7.96059252354044	8.08673738246989	8.36541621911188	8.19354682360018	7.56894445090326	7.72439315882985	9.18489050452503	7.5280349657089	8.08192808105176	8.14388040311776	8.17435638120272	9.28483617751966	7.51848302623323	9.15153560042178	8.09786999941538	7.55575007409323	7.33359153127407
+"VEZT"	5.94042940888823	6.85931669167069	6.94842417509011	6.05181701626497	7.28834955001534	6.04200215735433	5.57061811985423	5.81522942881079	5.92968962361048	6.62871426542886	6.54423590419296	6.69796995592836	6.26690882677525	5.88493178798363	6.15570901058787	6.47632255367491	6.51785153174697	6.93367708429887	6.08485321167175	6.89311471725818	7.10464268084116
+"VGLL1"	3.31355512681295	3.55610600356019	3.85632311735585	3.59035006425724	3.73425107147365	3.63837543728461	3.86327875858102	3.51717862692633	3.59035006425724	3.32828654567411	3.69031738909691	3.59035006425724	3.47648361965948	3.7068222473572	4.19191325593436	3.59035006425724	3.77253442123685	3.48384345180841	3.59035006425724	3.24318169575226	3.59035006425724
+"VGLL2"	4.80522097790331	5.05816394830878	4.81666598681042	5.18715368225819	4.98991333152959	5.1786117449444	5.3324650402353	4.88953473323975	5.19973652481879	4.89662684766986	4.94115426475679	4.90580771844671	5.12971857937085	5.14733783037698	5.07911443474994	5.04783158517034	4.95040889366989	4.9288283931948	5.02137038904013	4.91967124195713	5.08013396098645
+"VGLL3"	3.16461018294977	2.87467691564943	2.92754510060461	3.13482789295671	3.0579037973092	3.20140374221842	2.87789833428577	2.89073016967111	3.23169390444366	2.99948092337776	2.83318609900769	3.00241088679717	2.97262368113724	2.84782479109096	3.08547890500693	2.81619526070598	2.98400369984491	2.98400369984491	2.97806559128298	2.77792404158741	3.10374275768555
+"VGLL4"	8.9644272996162	8.72691665585491	9.28970574356912	9.02361371667884	8.92327490820036	9.45416142268198	9.34134202442937	9.2180634789075	9.09594483064917	8.60880226875861	8.90646113614643	8.77872305134797	9.42164429538621	9.13818841627708	9.22872409580687	8.45556563668139	8.6957743697112	8.67530228953754	8.77459808841444	8.76852978131104	8.42549398637902
+"VHL"	6.82934729556851	6.93483246620749	6.21716044325404	7.01510804527898	6.47891707348748	6.04981717946903	6.96357015187181	6.72127998824495	6.99686322121146	7.09062292006311	6.98508483892723	6.81672375888818	6.96158456811584	6.82107451366864	7.01292408503497	7.03663334067087	6.9162260409305	6.26959807353374	6.97709241910809	6.97921522323338	6.91120496268047
+"VIL1"	4.78955496787751	4.76481487221742	4.78672948028106	4.86573217374719	5.02719697920636	5.41783146834494	5.33313596651586	4.97124441547701	4.86330952096067	5.03122239496046	4.76165478642785	4.90866436922447	5.00150898169067	5.0415438242939	4.94677225353791	4.82397622571568	4.98304007029837	4.31589947521513	4.94677225353791	4.71157027209514	5.12057429431316
+"VILL"	6.95952924993675	7.58357654902623	7.55362169501862	6.66632085415494	6.86004026889801	8.22270297301683	7.16917296909991	6.85638532195396	6.81001158716189	7.00280966003336	6.99673200139643	6.76496913531325	7.00034854443344	7.16141949795998	6.80741960140722	6.55801807710865	6.85142466280592	6.44835353419734	7.19765137200214	7.09578428360592	7.26147263656425
+"VIM"	13.1047741878717	12.2077101225223	11.0456423405464	11.6766314524664	11.852432723312	11.2091455360265	11.650876293007	12.1770915171622	12.074017601332	12.1628192325254	12.6577770321005	12.063747038493	11.4608300169866	11.957198185954	11.4037398834729	10.9605983653595	11.521520112215	10.8121850749479	12.0843886953178	12.7697175638223	11.4147741226723
+"VIP"	4.78890583211259	5.29377545189874	7.05766293088373	6.37136488835433	5.91354885670491	5.53321240794511	5.33333198211706	5.46400382226717	6.4727620669853	5.62712824560955	5.38936890630202	5.79693285634808	5.84655721982072	5.71260854953244	5.95220509556915	5.45383178029038	5.53415612163506	5.67329201469446	5.50076182085259	6.63912772530551	6.12930988296108
+"VIPAS39"	7.57847085586934	7.4414024204376	6.9211961837795	7.15945256512089	7.58071634006628	6.87134785882244	7.45780586354094	7.14853298191224	7.12989482066912	7.45167922079854	7.22059293311555	7.45580588323939	6.85444618086436	7.34204524367401	6.88388170087791	7.97273495264298	7.38096756096095	7.64691564462842	7.340752335675	7.75325703710914	7.57847085586934
+"VIPR1"	7.61216785581266	8.4459647081784	8.85131946475005	8.19361416749723	8.63405099464313	8.28719092435466	7.95450887278054	7.9506896139148	8.29110385355994	8.08848166771157	7.77579008417059	8.19361416749723	8.39067835339832	8.19689561636743	7.90520888884896	7.76687531800835	8.3032233658312	8.22471560926546	7.94741382840195	8.59220988920196	8.23406364322804
+"VIPR2"	7.52127490191866	7.82779738781134	7.61229928933642	7.46410067344152	7.66724801132341	7.78887473582906	7.91910027282483	7.53025318807704	7.60630027478344	7.53680694281172	7.33313346432623	7.56195857190874	7.915541919554	7.75985327768266	7.59565572191535	7.34545965092009	7.73032674310155	7.59626748189985	7.40812014415693	7.71092700380489	7.60828850382172
+"VIRMA"	6.72013987819174	6.7765929133591	7.1666334981428	6.68295478754237	6.86512676644653	6.76387156959048	6.41239162307721	6.14311711861758	6.81675532397339	6.68525168888194	6.65446391295006	6.30501149251473	6.44099586545318	6.7083354518086	6.78959955960961	7.02633365428207	6.20467878207631	7.10271243340322	6.4865461865868	6.90401204728247	6.61703547412317
+"VIT"	5.78204442254419	6.04150327463393	6.01907982642668	5.98383131545638	6.15976132272306	5.97652212446285	6.02263260843666	5.85569565434379	6.02632306849245	6.23202055027242	5.86062931877241	5.9517478154057	6.06547561267578	6.2175306243471	6.02263260843666	5.82648687307589	5.83253535561123	5.81737783768743	5.75636896380058	6.48281626457827	6.34162450051838
+"VKORC1L1"	4.88548364385296	4.68147033341284	4.48270464216472	4.66635717730829	5.1626383272475	4.37238843717201	4.81083287603941	4.7554524675687	4.39916889358202	5.199020941567	4.8314386666641	4.99134251977999	4.75799280259008	4.37859812738127	4.60432838805109	5.10483316716049	4.59248351111189	5.34810385551279	4.79825438003715	5.14787803085059	5.12406923422988
+"VLDLR"	6.44293406826779	7.15206640251702	7.20618501577838	6.69946038713848	7.42824609603338	6.81192830055491	5.79532867719912	6.77155286356023	6.69700905682103	6.68391901233326	7.5181016563044	6.76161802306224	6.0894876808015	5.80787847434791	6.46654086522946	8.2434179759125	6.82862388007729	8.37553028781153	6.70134076573377	7.32036493894211	7.02719659484671
+"VLDLR-AS1"	5.7477312875533	6.23436927287974	5.75259051051478	6.10496055170408	6.1389055754026	6.0382933943075	5.84579934439282	5.95253591105841	6.14117216891384	5.90300669366799	5.81998188510587	6.03941758520597	5.97280822620459	6.05806485477617	6.21968772202815	6.09480350366211	6.13892118547075	6.04151483119601	6.01915283315165	6.03941758520597	6.11297798335407
+"VMA21"	3.03212032829707	3.2595716850377	2.91251825304832	3.03526998121244	2.69452311909391	2.84917673718134	2.76874940110787	2.90554143621665	3.14700966231679	3.64566022732048	3.54083520891225	3.23940238523182	2.96951212504349	2.91182774696454	2.76846321795878	3.02243820676907	3.0533986850545	3.20454045518556	2.97419163112749	3.10381281542541	3.30233355136161
+"VMO1"	5.45173286381669	5.35170540294007	5.3816798152849	5.16334918464895	5.09325428907401	5.78856933219304	6.26747227329037	5.45785788523474	5.48971518537373	5.25093043272984	5.42210685631753	5.6411658794238	5.61177054167374	5.83929017871812	5.23604575371523	5.12719559353289	5.24318777250349	5.27118429160328	5.39096571044835	5.43210629312288	5.36888895562427
+"VMP1"	8.56721599566863	8.55007149923938	8.34223335787045	8.08295905505249	8.83001327999331	8.32521568017053	7.28589908118514	8.50830987746609	8.23320790920812	8.76661943417419	8.52526508619244	8.48591901089339	8.0871776519062	7.71832818496329	8.08954158003304	8.88389144080956	8.4049052073891	8.90447869254498	8.23835028137745	8.58891719754529	8.77540616965155
+"VN1R108P"	3.18493066660906	2.99795774266102	2.87450721072161	2.98250386514321	3.11759310771466	2.97044544412017	2.89249608818922	3.11220631714535	2.80362673477552	3.11044838235528	3.24369261374448	3.11747891235511	2.97579677686021	2.98338732800965	3.22395789270902	3.0957006772909	3.07246210494845	3.27785456475874	3.1287029381882	3.00730534348612	3.0685447805631
+"VN1R10P"	3.72507417438446	3.90882538535162	3.80303805000076	3.71442257546242	3.76066770186956	3.71946959604029	3.80613553128221	3.65592154111327	3.68384705240977	3.55390286233002	3.56489661583762	3.63614400629955	3.71620416029145	3.61623314253973	4.02874357302087	3.68771679131859	3.71442257546242	3.45047592869553	3.63899564886701	3.77744856869048	3.67631798095394
+"VN1R2"	4.4149429444359	4.61817345221107	4.26804644416472	4.56541027197576	4.42961627802343	4.32030122088799	4.44951717066666	4.41145986801544	4.50810647164725	4.34060035668143	4.17865707363077	4.38273600276136	4.73228395520857	4.5126977480396	4.3574774970722	4.2530380066629	4.25683764455881	4.29984793498527	4.40187645130486	4.34442844682456	4.44445249975432
+"VN1R3"	3.12512740810554	3.39412946057184	3.3634635002117	3.52979266063558	3.38061239972114	3.38238731642354	3.43532361176757	3.34097270116451	3.31909897757559	3.40460712882041	3.38238731642354	3.38238731642354	3.41967785654154	3.38238731642354	3.683704266955	3.58849460622507	3.38052775593615	3.2508955996908	3.26291218904949	3.38238731642354	3.67785268400194
+"VNN1"	4.42672224917887	3.19524123051647	2.98633351393357	3.15786615839622	3.03419073500706	3.30065451149201	3.53741376891322	3.45572852855664	3.2692245029023	3.3906457443114	3.31380501474159	3.18114850795092	3.28881978606701	3.28337864439518	3.30065451149201	3.19808090735545	3.34839282052578	3.31144892858978	3.41885233170821	3.43332003770759	3.40785620270573
+"VNN2"	6.37906284511236	5.57559081597706	5.12204537094094	5.11388353065492	5.07508829750431	5.28139188528132	5.25296230303637	6.07425733753369	5.06987452475612	5.29324391060165	4.55093019677209	5.24614258173081	5.84024264870354	5.1383831328868	5.39921609012026	4.68995450031841	5.37925096115833	5.56745197670294	5.41870193339875	6.00630619917351	5.29324391060165
+"VNN3P"	4.81744815017325	5.16957133417603	5.10454187638947	5.46049976254501	5.07508829750431	5.38362211696406	5.56234315204657	5.29639400529757	5.3973348872181	5.30028090663581	5.12651162509388	5.3866222508789	5.55886037228652	5.36570830967656	5.27078080901385	5.16551039802895	5.29896822533515	5.03824618074757	5.37883818046019	5.30144744019776	5.36609140646707
+"VOPP1"	7.15105491217675	7.01408700639345	7.21285865759024	7.11422350859985	7.0241554527607	7.61123042475715	7.81445743596229	7.21285865759024	7.40126999720585	7.20852380047654	7.13130747560549	7.30815842182906	7.3089321620161	7.39556150327551	7.21488708317009	7.21285865759024	7.09544323452273	6.92969866294618	7.44828490918595	7.11040974848021	7.26975666412001
+"VPREB1"	3.53563885221081	3.31855529697347	3.4060567419118	3.38044337457069	3.15141912293056	3.63868190603603	3.67891350953436	3.11139011446945	3.58657035912302	3.45461165546661	3.43027352968179	3.37022399436682	3.59808368419745	3.37204426323758	3.41603442714824	3.40828007953979	3.47800320679613	3.28806351663846	3.47586250409931	3.41603442714824	3.43997442686018
+"VPREB3"	4.8476005571382	4.90734735213958	5.2319267329839	5.50129801449484	5.25301479336306	5.3075555488239	5.75502800644194	5.21111189009913	5.28608157476675	5.21799416652592	5.00959752849074	5.37101051932975	5.24078188702225	5.46061118398684	5.36202403505394	5.0917272044476	5.33331567984227	5.07784257745582	5.29921731070112	5.24078188702225	5.51140793638613
+"VPS13A"	7.49997656355987	8.33137091732818	8.34245576454089	8.46179678473178	8.72166840242564	8.00847116277527	7.53453253722286	8.26258412471496	8.91620803909067	8.57966642766198	7.8618283124152	8.50723299027017	8.52001992187477	7.80348324857359	8.77559122567957	7.40137224848807	8.77223512548027	8.01199401717124	8.61245228067452	8.35338388207964	8.48582864999152
+"VPS13A-AS1"	6.34896048774946	6.61034026056611	6.45114075059538	6.69644161085859	6.43815548402638	6.69179500227448	6.96544759579159	6.60141955524593	6.84766050333029	6.65221036937252	6.21273953625718	6.59938469915686	6.92997190252643	6.92829754548677	6.84522163456104	6.42164034627775	6.68791948317856	6.19665411310084	6.79472562586143	6.41951202894837	6.65619685082496
+"VPS13B"	4.82631385518149	4.78073790856255	4.67704514463134	4.20479628536753	5.00698269440533	4.73411590495649	4.43614963165172	5.09838165071059	4.51184643243809	4.98287161228554	4.97920333513326	5.17296805668144	4.38746164023939	4.63136831056289	4.10122185944568	5.07380680000203	4.7669088301253	5.01955093334217	4.48073110015772	5.31020792919301	5.03412966679529
+"VPS13B-DT"	7.45767044672936	7.81980815758077	8.19490842618567	7.75307759293889	8.0798771161968	7.74978832383128	8.39232262006016	8.10381943275898	7.86663800081721	7.79210598643225	7.69148585843057	7.82949994893674	7.84821248782843	8.04126912086228	7.88890087545689	7.5192858327653	7.79476503072079	8.10301214383843	7.86893001810068	7.52667519505826	7.51779648789015
+"VPS13C"	6.17594078398746	6.28929242302934	6.04309502153487	6.20866008511568	6.27777163632063	6.95834906261195	6.16502767778719	6.49361591438574	6.29894991161989	6.48199457666455	6.70684176245852	6.55770251154164	6.4074651271423	6.70355237086862	6.40897482554281	6.16686918303311	6.20603640770366	5.65027524828949	5.99582207743689	6.19185587674581	5.27465994000837
+"VPS13C-DT"	4.05277730716456	4.78057709465034	4.16533543724297	4.24932857498772	4.50535297589699	4.12882017851648	4.25964472169835	4.6952778324387	3.96726203198452	4.02592137280695	4.23026379509442	4.20753804704542	4.46832976517967	4.59868518316448	4.11497393141425	4.25964472169835	4.55253981514327	3.89260346962806	4.31561726429558	4.25964472169835	4.32234852776754
+"VPS13D"	6.67732416786566	6.73697306657938	6.83047733630073	6.72647417578665	6.45476130894196	7.09295051061086	6.83321860381508	7.66127810474026	6.34464428948097	6.15810219815416	6.47255030715494	7.16386194640928	6.42313396840888	6.8039366598189	6.93674480798352	6.30180583947034	6.95592014497298	6.49145514502202	6.71135151648125	6.16338232955149	6.21833728456228
+"VPS16"	8.4006704332851	8.20172578100651	8.62889672035666	8.06917780231378	8.41700453449166	8.37687927934642	7.98058257398728	8.15982934544758	8.17929850315631	8.47919438644334	8.33181931835516	8.40418732215993	8.1044790882618	8.2564704227489	8.09157314993699	8.54257822717584	8.24840843207759	8.58466527099402	8.26279475178488	8.60462246563423	8.33350220397031
+"VPS18"	7.57495511559805	7.39614958657938	7.80246244320485	7.4739194935316	7.72725235688846	7.56495567905574	7.32926391322446	7.16334780628633	7.55774470748903	8.05465492265703	7.57495511559805	7.60643995086045	7.25204742771898	7.31456241386502	7.2038227896995	7.8134010359449	7.61921218242188	7.31433904981216	7.50472104098398	8.31225664153657	7.74859789128641
+"VPS25"	8.13370947014107	7.69987619518431	7.61303056241275	7.49058760012015	7.80663823494571	7.2153817284191	7.48446287768579	7.63643350537332	7.61582810630913	7.9510086922515	7.67496287075629	7.8269572519586	7.04029151883567	7.25372419931351	7.43889860640744	7.90884747046845	7.55310617538654	7.91634254983271	7.71354379704528	8.17311678100081	7.71370723419087
+"VPS26A"	10.1788206437306	10.025051017443	10.1907658732993	9.99038281907202	10.2542120568642	10.1969417974892	10.0270427109486	10.2767588446333	10.2496057999217	10.1904711447608	10.0070437397624	10.0164568072049	9.91301300699565	9.92333657303971	10.4269406344538	10.2760761176464	10.1535244408747	10.391975252549	10.3126837072672	10.1626813719362	10.1657327467527
+"VPS26B"	7.72026603570562	7.63001052704338	7.71853874276278	7.50568031026949	7.8296105295157	7.3038756354639	7.42871048680333	7.65012033892654	7.62040292325188	7.84256171695156	7.53972561905814	7.81296028076988	7.5211736168866	7.17261361868978	7.66082123399036	7.67885276595946	7.62130872938578	7.84256171695156	7.71799923850179	8.30195011295924	8.02345139640879
+"VPS26C"	5.81546380791782	6.16265659127137	5.7916254581052	5.83610989153036	5.858908997176	5.29533062743991	6.38586673202084	5.97005699501791	5.87530737448587	6.15810219815416	6.12047584150505	6.05655639542114	5.93610047476494	5.63793043971852	5.94679044054987	6.4159466304982	6.04428048328214	6.18173269834706	6.21250397177394	6.5248213254963	6.1802870975398
+"VPS29"	9.13746669959765	9.01010372659456	8.85359610799009	8.93984072022625	9.3620814516667	8.41745932250452	8.75535054598141	9.20842895892028	9.11093544906181	9.61984223494725	9.00613285596837	9.28075402304034	8.76126819002288	8.46879438975616	8.98287127580809	9.19530415158449	9.06076730115829	9.1754239318016	9.23158657576431	9.41016913337703	9.33322750003021
+"VPS33A"	4.59855090532415	4.74117096134304	4.94019041564634	4.72406882305264	4.76305436081287	5.15030694035802	5.57352690206648	4.76780053845137	5.12879424914798	4.97367961359653	4.75632183896044	4.92531459092555	5.00617846321356	5.01911594498049	4.99581131477594	4.59967191883933	4.95725219445867	4.43372397297314	4.98402016932819	4.87781037766043	4.70185513071411
+"VPS33B"	7.63307943106056	7.74658980235597	8.25842855228314	7.36357965451742	8.03139471993927	7.63455204015882	7.10598158165027	7.76990071821877	7.19641498780218	7.75766898111319	7.61860520048755	7.80059163470521	7.38169885909152	7.38690027964108	7.22319888793875	7.47293541658416	7.60833561591106	7.8918211725305	7.26884989846601	7.9959538457975	7.61860520048755
+"VPS35L"	3.41603442714824	3.83229958540165	3.32195670835439	3.54990748275218	3.07787019901964	3.33405008665876	3.79164277335737	3.55416321940585	3.84929053361918	3.59320231085315	3.95918917130567	3.66426985235727	3.95121841566213	3.53036535028842	3.89193888367216	3.79076664720826	3.57226946340517	3.36054888694894	3.7300145389108	3.45232501509546	3.6608290000517
+"VPS36"	8.42207556504598	9.0838780687048	9.20762193353208	8.92023826537655	9.24132217703519	8.73576134203524	7.97921625854622	8.84229473063255	9.00564171661569	9.23921531034015	8.73255515629137	9.15528010853035	8.87609124625305	8.3497619944608	9.09655291988338	9.09443935777615	9.28599142035221	9.25878570735762	8.91136020886126	9.34688079781338	9.26231612588101
+"VPS37A"	7.18869988101171	7.09724184794797	7.16443352407814	6.68356229685399	7.28131585633121	6.29938033054825	7.31706259387203	7.08478232597881	7.01908245451802	7.10864630648644	7.22245151013071	6.99244204943518	6.41945555954088	6.92502025054974	6.97210240263173	7.80773149060786	6.91178380104319	7.57749642549497	7.05638144262496	6.97880014465174	6.88181683420892
+"VPS37B"	7.97851990575778	7.49552531367076	8.15240525532769	7.31327251113777	7.28238528760977	7.70613455236094	7.55498580128273	7.6020622809586	7.44423840168496	6.82716548421378	7.5247295454083	7.18324409147073	7.1271044841175	7.39767603627943	7.31185455093539	7.39767603627943	7.32069459781919	7.43864804706912	7.14883410047926	7.45755098371439	6.6043943008653
+"VPS37C"	9.16765372558102	8.93413010416977	9.38449698359699	9.23870511312245	9.11618548359373	9.2081941138721	9.11920415301723	9.0850632227683	8.99074848832172	8.67028107540385	9.07397398431058	8.42229076558749	9.07397398431058	9.10561907170432	9.41290751644434	9.23970409202372	8.83636645164731	9.29980590844116	8.91094069292155	9.05722909521099	8.86384569615789
+"VPS37D"	7.38309920616539	7.33103248943522	7.67137864602584	7.63494185706303	7.31516825913073	7.75866962542793	7.83285958554435	7.50254900206502	7.72026457029953	7.61857538609463	7.32839068174538	7.48523491319185	7.63249268341701	7.69704721849615	7.65270471843912	7.30266387049222	7.50756037674418	7.27333456475069	7.35996709312233	7.54695767574754	7.39179471745281
+"VPS39"	8.97587054273218	8.63392250036791	8.76452459393995	8.6293789030068	8.77815373789105	8.58298268980665	8.40342306472754	8.66806852353532	8.58623214027735	8.81732330867339	8.68146890459304	8.78510991675813	8.3514078701309	8.76704202705877	8.22933617239564	8.70087233376434	8.69411878175357	8.67708115282973	8.37001748508411	9.03492116616385	8.84922156134861
+"VPS41"	5.89449732499605	6.55139224931984	6.23280997139748	6.08404713204329	6.60153041182858	5.73540622985804	5.37564778368345	5.65859722592425	6.06363196541794	6.37597512361054	6.43621412965769	6.25321243761645	6.04320367797205	5.79843423287394	6.17655783659591	6.1090623509212	6.54408324785731	6.17655783659591	6.29293424042416	6.04784985821654	6.27104945715858
+"VPS45"	9.22699515660247	9.05133079390034	9.4385727288098	8.91529870836262	9.10017163685551	8.89438674136146	8.91649227312586	9.18001946034075	9.01390465201716	9.03325416491981	8.99718551253375	8.95213501523113	9.04353031728247	9.03803903833964	8.86021917310056	8.714430086505	8.90779110135651	9.0105039034802	9.04078431965818	9.02662736402514	8.90348108087225
+"VPS4A"	9.49895761061732	9.3301668704847	9.76983239139079	9.35581320000905	9.51812747318571	9.73753937355226	9.6475906480301	9.33107504692457	9.50619632430579	9.68180280734264	9.35725124890507	9.49234235075903	9.44101687161648	9.56948384942272	9.51207165339269	9.363835268583	9.47786699147896	9.52451462850445	9.33845074896587	9.54783783744105	9.51931348644018
+"VPS4B"	8.90318298189631	9.22667249242946	9.44437591371297	8.66595740047725	9.21326893722346	8.74840723889879	8.11700424918211	8.30749974837128	8.86501213752862	9.04147080253664	9.38171756105799	8.83230916332853	8.55143215153794	8.65316634938963	8.65009162847294	9.61887945859363	8.90318298189631	9.73793654457074	8.62353112911223	8.91217344860006	9.04855624249084
+"VPS50"	9.18537917853293	9.58506343973053	9.7726586328015	9.19248866418724	9.97489316470859	8.68014714348567	8.49591706696413	9.1678669981073	9.58789649212934	9.92859792552352	9.12914469755592	9.70002249275233	8.99150822410554	8.47987629069623	9.58789649212934	9.90239471361319	9.79618200838206	9.63529734909368	9.61915584798074	10.0614372537726	9.85385143192919
+"VPS51"	9.91311226858866	9.56349395630633	10.0714843991338	9.43370952456681	9.90262264926272	9.77624724476725	9.45020080969262	9.87700612557451	9.85918973924231	9.94337186598265	9.62137102301794	9.77624724476725	9.29717230923288	9.425378619582	9.55872791394428	9.83142748854796	9.77624724476725	9.83183651442879	9.4534792118496	10.0943163778534	9.84058878450832
+"VPS54"	7.22290365310127	6.84844367294755	6.75522303379118	6.41904825868311	6.56124222301231	6.88237069906306	6.50563742109981	6.98063128797189	6.41835831675987	6.36974151254605	7.11008652640126	6.47097612361396	6.41240330791899	6.4728485737688	6.82632357330451	7.01195525398096	6.62912403318696	7.51820449315262	6.62953374578703	6.77839366547957	6.42535955367162
+"VPS72"	8.63699196983902	9.25739487842309	9.30987890745216	9.26634919580768	9.29431673556724	9.2803970422631	9.2280608775228	9.26651555566206	9.41598242723321	9.37949476458458	9.27354629557011	9.16709955190491	9.37717214525443	9.34575738834101	9.29288344194217	9.50637711355608	9.27870031633441	9.44974691729318	9.29288344194217	9.42407913093572	9.16040386565106
+"VPS8"	5.98467894655653	6.52902517250597	6.3473525706944	6.61298137170458	6.23906339463957	6.06870583226811	5.98691197424325	6.17255164496381	6.36684748168555	5.55890411844152	6.53663007256479	6.33202338753001	6.2020107678442	6.21900962871084	6.40504264469002	6.34462503221588	6.70560584303928	5.88101824056865	6.22488096027554	6.12879062563872	6.06238281913891
+"VPS9D1"	7.92428328959733	7.73019211315993	8.09498543184855	7.80583881982792	7.55316539933095	7.86470365836698	7.67455044639365	7.54353078830158	7.84616654076255	7.92428328959733	7.72346999517941	7.74559534663724	7.93136127387388	7.77237840632542	7.66209620003714	7.66982969680511	7.78612157957668	7.85418686505926	7.81625533076971	7.93237088947799	7.90018253917774
+"VPS9D1-AS1"	6.80238654379214	7.01608049380812	7.05638144262496	7.13766377095846	6.99066504282434	7.22114489096296	7.33310267471778	7.0248829948374	7.15812459587524	7.05638144262496	6.73032885980342	7.12862903389247	7.14332523987166	7.16712106679049	7.1060972370486	7.05096154522816	6.98444653367136	6.7805631613285	7.19601009872828	6.92580342502414	7.05144956421477
+"VRK1"	6.99043544677253	7.09935033673718	8.0226617755178	7.0353065917163	7.954231891026	7.31476351125471	5.86070311307195	7.20946156112459	7.05446775508841	7.3647076780105	7.18348096273587	7.35543427094687	6.73253309867692	6.38754276832446	7.11132731238898	7.09184648900617	7.07140317782625	7.80173237038274	6.95071071005289	7.3551836987626	7.34548153440374
+"VRK2"	8.50439625883376	8.52310303398532	7.94354339786716	8.03784020499502	7.64176313500617	8.25302099019028	7.4857000396533	8.28814768546901	7.6842981090488	7.44625490082579	8.97046591252043	7.71569605585689	7.90288722713699	7.92154617113124	8.04508998767628	9.44488538316544	7.8949215738621	9.05122858121897	8.28758965502882	7.47152168167883	7.92168790248526
+"VRK3"	6.0088375330385	6.44983028815251	6.96523954114404	6.44045973128449	6.69898638383029	6.6428181737418	5.82383092135293	5.93414750214332	6.10119710516997	6.74810513805733	6.34356716862497	6.54238637772571	6.35841825843212	6.2919271099856	6.23804536928579	6.9762570062399	6.27041519775402	7.05435434430464	5.98778467492582	6.71625022993013	6.73373671776674
+"VRTN"	6.98946927104174	6.92193535264595	7.09927528119721	6.91472110037082	6.72497873103009	7.34599328193161	7.44506934334969	6.86337711503178	7.0991318361852	7.07297357928407	6.84526624729531	6.95403117638974	7.16815737273815	7.36218068422238	7.14624106817585	6.81411986930569	7.11328824350407	6.71563745604977	7.14443640383834	6.95466816104588	7.0184931634251
+"VSIG1"	4.44511398800421	4.61552486600255	4.59914826440447	4.32475908740977	4.7354527823432	4.56214363539595	4.39072434058884	4.4182111102211	4.45587432094923	4.46329493399814	4.35503769606738	4.51976508392598	4.35601274283148	4.79564957215908	4.72942034664184	4.44423424820034	4.62402402225616	4.37003231101841	4.49015436643209	4.58027769521735	4.49008176145483
+"VSIG10"	7.69694445235706	6.71411302305742	7.02959820359232	6.82206999744528	6.78367948527199	7.50291384110845	7.61541028669197	6.99143030605882	7.14812904480477	6.88784697425852	6.7087842562135	6.39103899978792	7.32670545615701	7.28381290640091	7.15743157799675	6.80280291012598	6.72800370118402	6.81673102708027	6.96138834023059	6.65503969889322	6.4638115242156
+"VSIG10L"	6.69288591644564	6.21517979355365	6.29038863574962	5.84334780019229	6.49232595239601	6.09942783449878	6.75512670169194	6.46964488619953	6.27415972342559	6.58741400563185	5.79976601284619	6.08951925148521	6.59807081305298	6.77079229509936	6.17007248696622	6.21537998671117	6.41083659449093	6.528103998911	6.46590778641052	6.82833249583084	6.41272476421522
+"VSIG10L2"	3.57597578551561	4.00012084867308	3.95600523675623	4.16432215263158	3.9010524702057	3.88278471584162	4.00486515913753	4.00012084867308	4.0765847217509	4.09850280666017	3.75102219608439	3.97616241775433	4.01209699248388	4.24993579170843	4.02902103000701	3.98167083532554	4.06498274203107	3.66510131812521	3.98517572525209	3.8916284622706	4.26991359891641
+"VSIG2"	5.50588697686377	5.036623100325	5.13996837949844	5.17072555565572	4.92983108013026	5.84080570823166	5.59186963863976	5.13966609700777	5.03503094423517	5.20712375706974	5.30804789577334	5.24740494440675	5.46761231057562	5.59140381272771	5.37491308068898	5.21258863783921	5.0987859834324	5.28575268416605	5.43918195014941	5.2309837660283	5.21238470267728
+"VSIG4"	10.5378304536447	7.56429414144702	6.04997172361959	8.35641286215501	7.29773663297839	7.63124638601532	8.67698606119911	8.57294892156323	7.87194644591157	8.73592831550138	7.16040559156868	7.48015816647821	8.52247764947187	8.4934443549499	8.28633915064631	7.58366071653686	7.49419021722244	6.6485438312737	8.64250362092762	9.15054860910484	9.41856168529789
+"VSIR"	8.94608385689337	6.26495553794257	6.33810717843993	6.97503140064981	6.20048781782863	7.02836678680942	7.9690401141725	7.03991707339005	7.00114192010537	6.58104374897883	6.07940015598979	6.31901882232042	7.18948456934641	7.86672261618422	6.64737513990755	5.99242020766066	7.24470350959223	6.7679453347504	6.76857785268223	7.01080632295559	6.47763275213723
+"VSNL1"	8.23984768582027	10.7471097821297	10.3734552340728	10.7370231125418	11.5488703267032	8.60752279584781	7.2959568586608	10.2999342025245	11.2415559191517	11.8120521699686	9.56896763043366	11.7308374322705	10.6188514518701	9.20149789128897	10.6285625671161	10.7711433244249	11.5122731827669	10.7394583946362	10.7874413535332	11.8006069337983	12.0628760183281
+"VSTM2A"	5.97453648792343	7.35592929390203	8.00740069280327	7.9132339203975	8.66349515395461	6.54031206806075	5.6362535615843	7.31678086480409	8.62680315373994	8.58047686836673	6.91310355205641	8.21402619102268	8.15826840345854	6.64628035227063	7.94239840875846	7.35130880604695	8.47916889782967	7.85047297270554	7.92745018475706	8.63383525429848	8.82130521071528
+"VSTM2B-DT"	6.81053264291364	7.0491798634123	7.03482080779527	7.23954963242977	6.96258077653306	6.95192153463841	6.58866184659173	7.09809649106526	6.75193460401317	6.9393478328816	6.97954215672342	7.08229529048111	6.60130612068858	7.03422142233074	6.62451217795691	6.96969675435399	6.98604704312176	6.87454432148369	6.91345089857915	6.96642706044604	7.16472903574631
+"VSTM2L"	8.88953559434576	9.47236716443549	9.80517298861623	9.41166017596272	9.77402253509804	9.31397296037513	9.54073668392695	9.01768464751309	9.47342826135384	9.69018612753026	8.94049571170162	9.71815083030253	9.50624564011895	9.2570749663363	9.46951651769815	8.45504575875712	9.60184725134298	9.01216721819875	9.10218726231014	9.84979843848396	9.44953734097
+"VSTM4"	6.949436334907	6.59175732460092	6.13651753220543	6.36518168044999	6.29312549137493	6.0456840618193	6.88941230095522	6.38998441939724	6.41033786393271	6.49576276296102	6.58243955685283	5.97898349857646	6.03991951111795	6.15937800887777	5.98195862516118	6.68066732897203	6.36620349802969	6.38363322246679	6.36518168044999	6.82329350035695	6.23936186949504
+"VSX1"	4.49896923128459	4.36649735673282	4.32992154143612	4.48090944461985	4.10658921206763	4.56062201009755	4.86447672061213	4.87901988132251	4.54363558563784	4.2193855709791	4.84813337469289	4.3756937300732	4.30291884282523	4.49440881546408	4.53051675602586	4.23630091944659	4.49860334656829	4.4449733741413	4.8725540029346	4.22944408556463	4.12297314971309
+"VTA1"	7.37265501198504	7.34420041069412	7.07816833886102	6.9550533166466	7.73737336608463	6.07115662035437	6.68458396877338	7.36336789596591	6.81904067814388	7.66992319139537	7.37628080238368	7.42202120057805	6.64271435611798	6.46318016050508	6.87052192316111	7.8686398663505	7.11554085140586	7.69920525296735	7.33718513845968	7.60291783068525	7.60862222026863
+"VTCN1"	4.5942208001273	4.60584985032794	4.64255872935873	5.0033981145972	4.70580919340464	4.75799280259008	4.75799280259008	4.72230991398954	4.77159084654464	4.91912212229306	4.42499266041421	4.75799280259008	4.75799280259008	4.93689264980239	4.82637109978705	4.91621298488818	4.79499117403418	4.51878533549781	4.70209933839928	4.64114767267446	4.80486930463123
+"VTI1A"	5.60306373371067	5.77707247499844	5.813334572787	5.72625085934678	5.51546939452593	5.50024439392339	5.72708496490734	5.58068375858016	5.76501915499466	5.26319016720552	5.70608705907696	5.60360368577692	6.0659520224066	6.21664252711434	6.58858481771803	5.54162306415653	5.56499319862635	5.72625085934678	5.7919376111118	5.46723291428096	5.7418834126652
+"VTI1B"	7.59387843055428	7.54534731870237	7.10951423136651	7.00534674963503	7.62389655564286	6.66237402427022	7.36704575977478	7.45936569893894	7.46020050476742	7.5190548883039	7.37433785045498	7.4113794889182	7.04645937155128	7.3146656468996	7.05831215529791	7.64189455418048	7.3558025252348	7.69572730767593	7.85052266209875	7.78746004089674	7.61965351117263
+"VWA1"	8.62667444537863	8.73540264202882	8.29772887077306	8.40029566379794	8.27084178708868	9.27866321617581	8.39882083247534	8.42292446923177	7.63471018302944	8.02806584277261	9.653451855526	8.51859740308329	8.0684210392684	8.53180539156597	7.58257464129401	9.72385046222185	8.05342221254055	9.43704979175116	8.19915789547099	8.06741875225216	8.35338388207964
+"VWA3A"	7.20792137924898	7.15367432031124	7.28889910556663	6.84143947556799	6.95701279666362	7.15633612948797	7.21809452254777	7.02981487324759	7.16437945208358	7.02492151042605	6.97574399694314	7.19411353327294	7.09809649106526	7.06957863323765	6.70863279727838	6.58102958916823	7.02981487324759	6.7843704948701	7.04109698736089	6.79077598545478	6.97977548359052
+"VWA3B"	4.73014365269115	3.73389622926277	3.97483823486618	3.63145357447074	3.88706854892907	3.78508875766133	3.99359838816825	3.72177308559248	3.75660638504188	3.76447019232421	4.29873652252318	3.79789751493351	3.47933841970533	3.80568157847331	3.63927440185298	4.2947976575029	3.90493155731364	3.55335781615366	3.79243194136235	3.65702121978662	3.51269541405224
+"VWA5A"	7.59937528708762	6.4933385663013	7.07991892022415	6.78407223777737	6.95664045411713	7.43067803324149	6.4501344114403	8.51195646877224	6.50150401071194	6.87576545213673	7.09429025532596	7.39127168368048	6.4589075271443	6.5793184786918	6.66832993240784	6.69458604128101	7.1271686747215	7.09062567283792	6.73144141006955	6.80190290366883	6.74101917634232
+"VWA5B1"	4.51328178566482	4.80095776921581	5.20089642445963	4.87641159700464	5.03326409836693	5.33454067658694	5.47156453122223	4.60892395877992	4.4662810553552	4.84980580596959	4.33465573733469	4.96122173576645	4.85082147185659	5.22052640498005	4.86746522416968	4.43032302418667	4.879755604757	4.49847596900381	5.13465777622254	4.93997514221896	4.7277231366928
+"VWA5B2"	5.34644920503107	5.32177966705416	5.55739290477406	5.61326007717539	5.44300524618506	5.49808996817059	5.44495435270782	5.47212224803682	5.8519793444757	5.75089882893429	5.19258735913729	5.71219753205425	5.80223272539873	5.854649221953	5.63593835558234	5.48704329066968	5.85933500171876	5.21252318671182	5.82369577468383	5.416024847577	5.76895904653107
+"VWA8"	4.1307898764974	4.05372869515897	4.38936520465483	4.08626831799575	4.0958991083002	3.81633469837364	3.84143195331595	4.00621870560791	4.03600099560098	4.21592648899019	4.22252587021432	4.15525916883327	3.76012205688331	3.55211770739597	3.91064182884037	4.08871424569236	4.04165840053384	4.03600099560098	3.7300145389108	4.16325644402003	4.03600099560098
+"VWA8-AS1"	3.2371083959586	3.10985147195718	3.35936605223008	3.24452652692929	3.2371083959586	3.34723593829066	3.42881209157731	3.07839175318811	3.42940876524069	3.14621821319613	3.18835881477695	3.1613840312805	3.35317569036547	3.53415352642021	3.2808900348216	3.21551356533582	3.27167478808134	2.98761527559711	3.09196433272611	3.22753476066465	3.17408240273054
+"VWC2"	3.17349134265855	3.06318388583047	3.74888435112786	3.2371083959586	3.26753967731285	3.27605695764013	3.1429158196059	3.20279204108583	3.30920246454219	3.27568365169772	3.13218630314077	3.2371083959586	3.34433081765476	3.19357502789289	3.36918179572053	3.19741518570163	3.33025364433228	3.27064694275912	3.22899410277938	3.42476486118671	3.21312963197356
+"VWCE"	6.43857881303769	6.75360966899187	7.21169827086172	6.50604877823225	6.48784043859877	6.40668401176078	6.49557344026258	6.41254746709796	6.63774856055973	6.78206430457926	6.63774856055973	6.8687133181087	6.55073927287541	6.83898083849867	6.69295782813144	6.43114547867968	6.36258362795164	6.5845191475067	6.48583228849031	6.66949777799363	6.80329812045641
+"VWDE"	3.20047018962325	3.53563885221081	3.97749540194046	3.23514391411616	3.69794286242351	3.60993405495133	3.47115147475991	3.44687190615951	3.69426310595158	3.57847808451308	3.26332781825971	3.4817799110148	3.41849157216684	3.37169017812971	3.43699464331169	3.44032282910081	3.44678637392884	3.40668464845945	3.47268482130854	3.51809667086976	3.23883195477554
+"VWF"	10.9408154318564	8.66343594047352	8.89997045743266	8.03913338247987	9.07645765103277	11.2427670697796	8.75709054152976	9.34858801855915	8.53186396260829	9.12417146555489	8.91114807463705	9.02140236741203	9.33156668420123	10.148026699982	7.92569998749121	8.59952817038217	9.74252024790448	8.56387169408412	8.00191171117581	9.8728073560581	9.2649743017621
+"VXN"	7.17845932318253	7.74996302494079	6.35435313540811	7.58787186249734	8.06453311660906	7.35187003694466	7.37259044456393	7.71015069446533	7.76300763216545	8.56571474914738	7.64183012789407	8.0726108497818	7.68166024923946	7.02332233271968	7.43581085349952	8.56814994617413	7.97824506581173	8.11501352961771	7.61878334413638	8.515243683342	8.77471812668284
+"WAC"	7.38079605137397	8.36176176937826	8.81120317391551	8.10341793393014	8.64019724122602	7.96794339033185	7.40810496437671	7.7395808265114	8.20782120819909	8.50623179508366	7.61210194828513	8.22819714431209	8.11173688509614	7.72696416420161	8.2259048784642	8.03864507791994	8.1613713399868	8.39540280292229	8.17117283644639	8.32617169948595	8.38571533061146
+"WAC-AS1"	7.38098399326778	7.66774632832548	7.7409940418366	7.49493743299284	7.93352705041965	7.24535879952857	7.30113874452349	7.53730744035102	7.63019747387329	8.2022002358618	7.87432318919094	7.78776401433816	7.56555368413766	7.4025513099878	7.25519876631456	7.44050377752357	7.60531148547066	7.47230535142241	7.63119646031666	7.54105177796205	7.56431420439347
+"WAKMAR2"	3.38107844379725	3.39467353213441	3.341556838676	3.19974090533624	3.25650753063768	3.41638940804206	3.277521835823	3.2374664497622	3.52828967571682	3.26705323954867	3.32797334846151	3.30891008393333	3.28881978606701	3.30891008393333	3.41931811855046	3.24507852131307	3.30891008393333	3.31706668009441	3.25072213509767	3.44997925456759	3.29605701192665
+"WAPL"	7.87259649386743	7.61120785882655	6.48034163615498	7.173014670531	7.57172096103564	6.91848308923785	7.75063048168843	7.62060094277161	7.36266600006468	7.39318753911416	7.67578632596177	7.21599641492151	7.12931168457664	7.01103216927187	7.12719361190083	7.82669385484399	7.39318753911416	7.89120357892705	7.580929254459	7.37426952258918	7.38224326622124
+"WARS1"	8.93288366259482	7.93529529663783	7.57423433179564	7.47676003432534	8.41647152009604	8.26541833871208	6.95017856630536	9.00229645273761	7.58805603118809	8.53644511756375	7.49088341637183	8.61848244309184	8.01532436423399	7.47681357745284	7.64445084592971	7.89126869426286	7.99088152599298	8.09612683415322	7.56634319282893	8.90117268273948	9.06225365102133
+"WARS2"	6.61613232600571	6.25807360399152	6.80815527630454	5.34432057718486	6.69986388061975	5.32778449335235	4.95165044823709	6.20659045388966	6.11193097955379	5.61299732750215	6.60847731322271	6.10377179611921	5.17531102246592	5.59906468844691	5.8542522253649	6.65951622511744	6.2645449179226	6.8327913354874	5.39027881854465	6.46797592239559	6.2910774666776
+"WARS2-AS1"	5.08414628303032	4.78415034480752	4.57512919121534	4.84060997467291	4.69133475589572	4.41143792829756	4.46053385073455	4.67509352401819	4.98291431724235	4.53030857176974	4.71512284947141	4.31860263804806	4.75507572464017	4.60481217089707	4.96794600548607	5.03171439943546	4.85963982443487	4.55259713934156	4.38739642824976	4.53937540865381	4.89770315681047
+"WAS"	6.30594788135768	5.97732882481919	6.02211043030173	5.98737603366594	5.82306318104873	6.69344853636528	6.67725345475316	6.14775844912607	5.9108134942298	5.99014716450497	5.84680436663177	6.03068992857932	5.94972014285125	6.52539429655065	6.04150327463393	5.74038089401366	6.00783222659795	5.61205015099674	6.1864414098354	6.19291886689217	6.56400000331831
+"WASF1"	9.26990823732375	10.7202325898103	10.8705529139998	10.7251736660825	11.0612137949541	10.4193808715806	9.03287914604869	10.2514332911158	10.8968680600973	10.8734121955011	10.1916813170263	10.8955500304568	10.84100974478	10.193226904057	10.7754389500902	10.0923877030764	10.8869025303826	10.486897326739	10.6070744999329	10.6242568225456	11.0021150670354
+"WASF2"	11.062966322691	10.061337425567	9.75410229685561	10.0258392788172	9.48450216941164	10.6374929643084	10.5774018944641	10.3203215521661	9.58343404380423	9.69730039054135	10.4590920173187	10.0408598051166	9.74299494732877	10.2616477023642	9.58842255471811	10.5768020556088	9.99443051372335	10.357379596944	10.0353796134675	9.86050287391068	9.68804996296037
+"WASF3"	11.288168072014	11.0734182666865	10.924346056695	10.9824290357423	10.9873944275482	10.2146703007975	11.363686079712	11.2284891098361	10.9879169238141	10.8082413230649	10.8981640703661	10.76472640691	10.9033380157598	11.1667022146545	11.1565055948691	10.5784009278335	10.8149099414204	10.7534009098963	11.0793762209321	10.7306475916003	10.7406668353853
+"WASH5P"	7.65581596160298	7.32570590144789	6.68858566078218	7.60748846513545	7.14844502994332	7.12908185220621	6.87499939192191	7.48346733521092	7.08299496722169	7.30045105858343	7.68588425016293	7.56201045396198	7.00139869647393	7.62867225233778	6.82814346980914	8.04771407617306	7.68314448391519	7.61340392756952	7.51178763283201	7.48778726717803	7.62835993656594
+"WASHC3"	9.26799062129404	8.93087969970809	8.72501461161198	8.66187790062152	9.01232564907265	8.44887901921328	8.52246541314736	8.53372538465888	8.8250575115317	9.15220225670672	9.17077883051983	8.88069254249702	8.61257841104497	8.63286142004238	8.7846937418396	8.96978097805109	8.45865653134805	8.9737490790499	8.93931625358345	8.84591156911701	8.75554428112057
+"WASHC4"	7.81787447306931	7.81184142150073	6.3235353504059	7.63494185706303	7.50774870583684	6.80141734152685	7.49072815701856	7.60925751281038	7.30600891858235	7.53606143856834	8.169450582792	7.41309651975001	7.26990610972566	6.99608795769229	7.00649489947399	8.01244962966617	7.34499312903634	7.93500910473803	7.77827380856226	7.61663090244845	7.52845539248031
+"WASHC5"	8.63408811476989	8.54373522433129	8.19899099675297	8.19028505260103	8.38874806140965	8.09375997505047	8.02942175489374	7.9653623620377	8.02266769089418	8.22747348195004	8.74552979259687	7.92033664553882	7.82648076629028	7.96103429352728	8.00303401712436	9.21513544018806	7.75925468283459	8.91893011079661	8.01173913302404	8.14127481867104	8.14921344676829
+"WASL"	7.74150821995823	7.73451986187575	8.8494053013783	8.2641060467378	9.28350280675087	8.8825972631186	7.56238879121438	8.15674039407315	8.62053212917176	8.8049574591954	8.10430859893577	9.05295866169573	8.47799572589967	8.07151888481656	8.366340515607	7.51817986110623	8.44769892116954	8.43960897894658	8.47409432932921	8.7446773085679	8.43012443349944
+"WASL-DT"	6.61490905841642	6.49638728114082	6.13665407634906	6.09937240862946	6.48598457502895	6.16266354981446	6.39271497972408	6.66447167382109	6.33609370710959	6.5574676984881	6.5793184786918	6.58477770677402	6.13678003246441	6.49749099663786	6.13219753887863	6.6888645670747	6.31014969575232	6.89026113271966	6.43145789024163	6.35073462797271	6.20666851426279
+"WBP11"	8.59894744042333	8.46816477567709	8.24423456142151	8.15584309667616	8.92171747683008	8.28733246669173	8.27461863250364	8.43718373761162	7.8722760207609	8.61182173855353	8.67461239902513	8.71458743878193	7.76176489739764	8.20504349036728	7.42446256597315	8.830449457375	8.30950730088158	8.90416006345888	8.21859489409001	8.78253066217696	8.55660228298729
+"WBP1LP2"	4.79765379490156	4.8559680255544	4.75199271562668	5.22244762657809	4.67956658954093	5.01974504358851	5.54017204560893	4.75965398306164	4.86361138153057	4.94128801647735	4.77036698264175	4.88015231948559	5.09992263486948	5.30632603910262	5.21989361939637	4.88721776096917	4.96692735226082	4.97614924100856	4.91604912037576	5.27941117347017	4.90328421570475
+"WBP2"	10.3546463423025	10.6979243887715	10.5770813669527	10.5293884130752	10.8454140267273	10.4312161410778	10.2929288125186	10.7516853251134	10.0755578825138	10.8285706129018	10.9139508443684	11.125397674617	10.3963157536248	10.1929564303179	10.0584545767882	10.9064310118416	10.7842537979285	10.6778089084977	10.3301917032479	11.0014954386247	10.6816732782533
+"WBP2NL"	5.872152268849	6.04198944220244	5.15907349146795	4.66384457764048	5.1067522109704	4.55024426390065	5.0471453805196	5.0471453805196	4.94490881416164	5.36539359201042	5.78939437808578	5.71570063160376	4.4618757267985	4.34902431635205	4.56384823151247	6.19129230802577	4.77342305040321	5.02911786542874	5.40705015177687	5.22726538982387	4.49008176145483
+"WBP4"	6.53866369193738	6.30721544322598	6.36709141562551	6.39297506663297	6.41485345443885	6.10989373971629	5.84324430367431	6.2046851209808	6.443834933189	6.60361288950177	6.86599653600674	6.43037549378266	6.443834933189	6.03527305548853	6.22562405412453	6.63704283236649	6.3484177062266	7.02886815787884	6.53114917806047	6.25975585486541	6.60962211564135
+"WDCP"	5.85880750678444	6.15853364066528	6.05076175719719	6.16944993353917	5.93585647084787	5.92215013472151	5.95746911986231	5.7489746318854	5.92423141912933	5.92215013472151	5.92215013472151	5.64961331566959	5.97304966452826	5.86627346125751	6.11642428797918	6.27014440052595	5.26738659641037	5.82287033003888	5.85110886463249	5.9978197470666	5.91177896083126
+"WDFY1"	8.0031475576035	8.13176595675963	8.33784803847613	8.20446150204968	8.34573951848285	8.12175632196539	7.67607110980357	8.17869524299977	8.13364130006216	8.00268492021621	8.27242002553785	8.13176595675963	8.08696667700019	7.95888560050267	8.22523703765563	8.42042980621347	8.10759395707751	8.61300623707466	8.07052197169589	8.20797507489356	7.94444230319853
+"WDFY2"	7.61685632148309	7.39602527695532	7.00041603917896	6.94668670521843	6.75814015717909	7.43856948479211	7.03845772605685	7.41757528958336	6.49415459850042	6.77497537576862	8.37557408257371	7.38774917690472	6.98777633608714	7.13389878980543	7.31948616946726	8.20686426143624	7.01857208991567	7.39740785348257	7.14271758369477	6.83914197699927	6.8143858232544
+"WDFY3"	5.81416145322602	6.41666583732729	5.93108779734253	5.99038291817055	6.43909217491704	5.78904547376632	5.37120508562445	6.35346723828212	5.79915591538616	6.00167065389125	6.30218086302538	6.51692215593317	5.77471740880448	5.5053637117265	5.96506846685001	6.22865773127806	6.45505001753566	5.84461641740934	5.74746438695082	5.9375349826779	6.12276983498841
+"WDFY3-AS2"	8.41730219037771	7.74759470039753	7.61339064296526	7.45613288955176	7.60125858462557	6.24624496249475	7.92626417744537	8.04208365749965	6.88583141907202	7.28380003487939	8.15472935829457	6.90625155198257	7.27698582412769	7.21520142975002	7.39365839084788	7.61030237675034	7.13197895994347	7.50827576964361	7.68564768472798	7.22512712349233	7.16874340522318
+"WDFY4"	5.87138230788522	5.56174979903105	5.33550003440133	5.40860158147098	5.27202521478852	5.67638740262149	5.51403668859576	5.64953704303118	5.3176021718925	5.39554230409918	5.38592039213124	5.36561860048561	5.66344945607777	5.92489472500007	5.4826866812928	5.42709155300047	5.3216662763022	5.36233969405645	5.5305293923403	5.70073193469393	5.58715358972081
+"WDHD1"	4.07765337756464	4.62824646560601	4.29006862786426	4.20479628536753	4.62824646560601	4.29006862786426	4.02713245941242	4.35914075716826	4.24642110291802	4.37253480609131	4.36681609876806	4.45285332969425	3.84232318792524	4.13442022839238	3.98595699866015	4.53522985560964	4.47525760765411	4.54188094715637	4.25355336913777	4.50648354224142	4.38614410840378
+"WDPCP"	6.92331491846201	6.90295127030387	7.16265692291254	6.83958080439561	7.31466983340174	6.94712925239934	6.54470276243178	6.92403677627436	6.74884551998913	6.78927554147866	7.07819239383982	7.05063097107107	6.60404148788443	6.57885644253063	6.69628690629284	7.19115597158518	7.01524522631177	7.21211974362144	6.90295127030387	6.78848019381871	6.82830862152167
+"WDR1"	7.3256807366525	6.50864653153082	5.16984160315881	6.11151768702797	6.3214158712651	5.59490430080355	6.66322629563816	6.95748438262291	6.07854110773496	6.76433276171193	7.05683991530061	6.71373963684607	6.37369542306394	6.17296525069395	5.35812594304588	6.54289702595712	6.38340007371235	6.42767768216957	6.4961673258647	7.02117836076881	6.96831284948143
+"WDR11"	8.04360465552358	8.86544568829639	9.32343564162685	8.36729299234211	8.43366063528134	8.22391981129263	7.95941255762955	7.77175597884002	8.05169537612505	8.17101113493052	9.18895402980714	8.30684842604338	7.97047267187394	7.58072527266558	8.5343917786947	8.8292449015385	8.15516926263357	8.89979567778312	7.89284985578541	7.82220690356382	7.66626341575794
+"WDR11-DT"	5.11488851303319	5.51698186140246	5.26590355278674	5.67472552921448	5.54552208663401	5.3898201874573	5.65606959694545	5.28467881049196	5.3973348872181	5.51762504733301	5.12019796180712	5.3473606746411	5.73971809950586	5.7608411126145	5.7662511083396	5.46069973908518	5.50076054094501	4.9786777832375	5.29904739614876	5.51552185290878	5.47882320745817
+"WDR12"	5.47556301033432	5.99658448651681	6.01880935686044	6.00670622707959	6.3467918655015	5.71895785789976	5.41376851063394	5.51823782839755	6.24279377211611	6.39060292027802	5.68139010547415	6.24622898327079	6.21754317743384	5.58441767135286	6.31453808742188	6.00007477311696	6.03770033716805	6.10390426044079	5.94570517050411	6.12959539219424	6.31612510502246
+"WDR13"	7.71401375700515	8.26219730846151	8.60107341348818	8.21332156638168	8.37958482702139	7.63884970012259	7.5247295454083	8.21580795723628	8.45787844246282	8.20791321321204	8.05428218301279	8.08930753543048	8.29816294069774	7.95012525537172	7.96250292497834	7.57687260432773	8.23157412488474	8.08143523600926	7.93228999803759	8.18620758853279	8.36176988556704
+"WDR17"	5.09855087253676	5.56003656955977	5.9023552675737	5.69050004291591	6.04555050452562	4.30291884282523	4.6500226526266	5.62229760334688	6.19670033275366	6.53925380671176	5.76862291701906	6.32371905019042	5.44318107301321	4.99169548668545	5.7366164679202	5.34140470038518	5.88126865293785	4.83036455801452	5.58131263858427	5.93978468982804	5.96042016056421
+"WDR18"	7.15641117604219	6.97290162709604	7.41833314149847	6.58688578802417	6.92400293690421	7.13862426106395	6.84112895066677	6.72544410693484	6.64635994430065	7.03790339140217	7.07321741911702	6.48839649434842	6.65347796095223	6.86636529708259	6.62061837496489	6.83417210797332	6.43666787717338	7.07873978968527	6.40651948493928	6.9286375200452	6.86636529708259
+"WDR19"	6.24891680496805	6.09347657855843	5.95571515483395	5.86164879859861	5.79204083936108	5.85149609486225	5.69579216452499	6.54976092974054	6.41835831675987	6.28971688314095	5.73554838210542	6.4425859632218	6.05691005562985	6.19518387826565	6.32576369376548	5.76814774221685	6.49299082141766	5.75036561046693	6.40631637422527	6.30563521106612	6.05691005562985
+"WDR20"	7.5141725897569	6.95038422811034	6.98195707414698	6.8505317195458	6.86205910194763	7.70627826023571	7.38098684759372	7.33847508752029	6.62010972393892	6.59782914066173	7.33570396834519	6.49059964047129	7.02115246046865	7.11489000632543	7.12842267290538	8.06216718208289	6.84486372755297	8.58998608153026	6.70621681682689	6.52575396109214	6.48721331110487
+"WDR24"	7.05431537897466	6.84377359403695	7.36469947047295	6.77517361124053	7.19104717090704	7.14496332710353	7.2210707769658	6.69626926805714	6.92338161017531	7.14770569966436	7.01709039838156	7.18564402986247	6.8824387010666	7.16347305335212	6.91323159506684	6.81772588212031	6.8902549965827	7.44449101704903	6.82991182949128	7.37037991556846	7.16120073955639
+"WDR25"	6.31700670818121	6.25764211149123	6.49804472660575	6.22847370768891	6.68243048333095	6.81964433417744	6.53391315689676	6.48812997227037	6.49653491109154	6.7108449617712	6.16721046927294	6.63705848334814	6.48812997227037	6.48812997227037	6.42854055571286	6.42756671117236	6.44636892678361	6.48812997227037	6.42809452913746	6.48812997227037	6.35478381185225
+"WDR26"	7.57920475132133	7.19166935055183	6.70209203734342	6.64277114365643	7.42122100650579	6.53659678688877	6.48009779740793	7.19234604806847	6.97950621958434	7.50101956964298	7.26065778263882	7.33353653152545	6.62388391630392	6.35062107057132	6.81885958729357	7.55973553557942	7.29054555965888	7.73765085468487	7.20034312743873	7.37469802584173	7.55997719479315
+"WDR27"	7.70736250477234	7.30376815245413	7.79004599344797	7.72947400041566	7.51055621767226	8.04649284866249	7.79710536949916	7.6019358760715	7.5477341690933	7.32390726000702	7.60786499507206	7.27218694821019	7.67213180399088	8.09721445105049	7.53533763967584	7.71952575208511	7.62697043448654	7.62770484041671	7.7178284339171	6.80985176694305	7.22887751667864
+"WDR3"	7.17123497531747	7.01714163905033	7.51724885974248	7.07891498113306	7.26301621451834	6.76889537870552	6.92929041149582	6.76699078019426	7.01714163905033	6.86859272505362	7.12683757889677	6.73084208749354	6.70165829204329	7.01714163905033	7.13189229942008	7.23978766995181	6.57314545904842	7.06909457696813	6.54367896325785	7.35866416474804	7.09943150010982
+"WDR31"	5.58566542933841	5.85546399371765	5.85979627525977	5.72934556037106	5.71841273824047	5.44786488337263	5.45745520694703	5.73666244034182	5.85546399371765	6.05009754508758	5.8976486784442	5.90344312992658	5.40544846473298	5.63544016910553	5.75229555443008	6.132756547168	5.66174031498833	5.5941733389914	5.89721140287499	5.82519379366331	5.63773584835205
+"WDR33"	7.37296461588233	7.58357654902623	8.15529392904184	7.3176685082826	7.70532547733682	7.5472879085206	7.1100810326869	7.50254900206502	7.61845373543562	7.03511248665735	7.24978116873904	7.4194766253162	7.09643630914956	7.22612701792402	7.60953813263385	7.20270571094418	7.5939827144156	7.88455216079067	7.28402462105193	7.37492127371251	7.30977506188248
+"WDR35"	5.64039110661582	4.82143512625384	4.5431167122864	4.35380334827565	4.74289468747002	4.72681942222804	4.85288859949322	5.00464271214721	4.79498902654372	4.76968755238661	5.12746650795198	4.76705102572636	4.61646171957037	4.88474765360121	4.56773914461912	5.15682701520207	4.88871069830981	5.1603038313047	4.73315655234248	4.91904047572501	4.75391176901744
+"WDR35-DT"	5.24955172658971	5.28546375460357	5.7939494035236	5.45559074305478	5.61365293098007	5.42838025138443	5.82717306622843	5.5545411184375	5.50978560287288	5.47244240375869	5.29012420926609	4.95618018735053	5.32483262574961	5.762624535213	5.33698726291267	5.34040435431727	5.50902409891869	5.26287946254331	5.01334217801879	5.41933310627026	5.32929886557376
+"WDR36"	7.16537332115331	7.02236570829067	7.2668438389552	6.52346211305539	7.18265139269367	6.84738971423164	7.01343023186908	6.9298366099501	6.93841190519119	6.85559852735682	7.09403441259334	6.59510225029453	6.37869278182947	6.90499110528702	7.14988289231819	7.19012847472825	6.91961288289657	7.66620685911568	6.96034866943324	7.34690305730005	6.77080354253895
+"WDR37"	8.67558086195851	8.85325436348395	9.07246151577326	8.63277763462627	9.25554991160101	8.53794004373154	8.58713071767159	8.96019296847425	8.88034716443886	9.24999475530479	8.58748794736235	9.0532071201573	8.68413998653588	8.51025658871838	8.66111527706992	8.78921478808831	9.16428272841098	8.97971227376201	8.85325436348395	9.18205373794118	9.22841932780586
+"WDR38"	6.10803299267713	5.83303754868559	5.96018260339128	5.98737603366594	5.6758176954003	5.7549947689506	5.92701828187955	5.82287033003888	6.2049035025898	5.85469672236466	5.8117746030747	5.95033453919123	5.861916561692	5.97480843237968	5.72426184233036	5.76263609530812	5.61822637050856	5.5322137052773	5.85201539799886	5.45681827689813	6.03257607223977
+"WDR4"	6.72124047251961	6.82589636562595	7.4143004492129	6.5770657187044	6.77540027041782	6.66728092459874	6.78181288408709	6.73253309867692	6.79686749586003	6.57956422474153	6.24189469874988	6.63289829656147	5.86687275822067	6.54051795301975	7.18212197503074	7.02610532839315	6.36242299743206	6.80608512893477	6.66992001302938	7.45799121303609	7.05923489238092
+"WDR41"	8.41271059225353	8.4039510769611	7.89768590594086	8.04674866599979	8.42072658756685	7.65929598723963	7.4965942761898	8.34378892362993	8.06437849607719	8.37357362803179	8.18789847502696	8.45606472428579	7.98624615479573	7.56955685942804	8.13908193102161	8.74745995302511	8.21450035303373	8.5829962042566	8.41968504055255	8.70056205148684	8.38208429943166
+"WDR43"	6.48659855365978	6.33297313217076	6.90270827148668	6.4229999382494	6.3882952755616	6.05801630776443	6.31601944212345	6.39927174576525	6.39718670318265	6.32939467097605	6.56415207020101	5.91594751084693	6.17098768340996	6.43330233738888	6.28155638959725	6.5679693236651	6.06455224108601	6.76718239947448	6.05205807747624	6.47643752675588	6.20881484819822
+"WDR44"	7.25047922999175	7.36934443421168	7.6421596466613	7.20803190357374	7.31997285626258	7.28842604198806	6.7667229993696	7.0811748569632	7.2170311535353	7.23745697525539	7.78384758365368	7.2484051436241	7.063589453602	7.18461180493242	7.2484051436241	7.77511342054464	7.19983153070879	8.13134610188184	7.12048645623999	7.15312313827145	7.15496731741068
+"WDR45B"	10.5627625288859	10.2773575770838	10.1811257504575	10.2866748294241	10.0714248049786	10.1435008389703	10.246982420167	10.2159080233646	10.2531367325265	10.1712566900774	10.4774090870657	10.0466206939489	10.1817861340397	10.0882239737121	10.3526402714809	10.4999578729252	10.1387953122064	10.3806907512225	10.2888805252409	9.83462691073	10.1168018124253
+"WDR47"	9.62554230913834	10.7942984780103	10.9085401799093	10.8044750903999	10.9559058525091	10.07031782694	9.49816362334151	10.5132421480001	10.9362642810914	10.7098845338749	10.3289631434433	10.8638199606262	10.7812109240377	10.0536451093782	10.9194754369756	10.3467710653298	10.9520512874737	10.5209052570545	10.7367830492098	10.6154305285522	10.8700000628004
+"WDR48"	9.03641205693124	8.95304080761506	8.2722010490677	8.68181827804923	8.95479494741542	8.52258264602764	8.58380503090826	8.9032119283075	8.99050946073437	9.07200173017311	9.03680662999044	9.18521284807309	8.54961730836646	8.18213261447563	8.56642922173361	9.30172238745413	9.17438547447457	9.06021047090221	9.28096641850405	8.98533973586108	8.96527374556366
+"WDR49"	6.21762739123481	4.65611695150074	4.55448247579148	4.619776588539	4.53312924671754	4.39228317963888	4.49852897839739	4.84786760992744	4.47805114145339	4.52912148143213	5.0746603041251	4.63591977927801	4.54137198263651	4.56735140284137	4.4752576076541	4.80402892897521	4.78023117301353	4.30692160198797	4.68512217062536	4.67266215235771	4.42478456538773
+"WDR5"	6.79758646077907	6.6607484530941	6.53481743314806	6.7336130870147	6.72143518629199	6.35060109757761	6.60225762775535	6.79420379351538	6.55548711564941	6.85225388544049	6.74433332640986	6.89777542638619	6.55906097447666	6.76501744574795	6.65181662852181	7.2393995481267	6.71332090509115	6.86642402353666	6.76805991235543	6.91654265228848	7.0783500591869
+"WDR53"	5.16733040333538	4.94126120383711	5.25222490981213	5.43141547223631	4.93958759640724	5.42294558004962	6.09058436155768	5.25595763652194	5.50913859324755	5.17113657708238	4.9827182857511	5.25895616395079	5.014317607845	5.07179716648187	5.54621716223024	5.10635624854974	5.20513611324085	5.42032353233289	5.4074592041643	5.32363292567454	5.02326382064889
+"WDR54"	7.60908609009785	8.09868788128702	8.70244126481314	7.78754311228428	8.52458600131501	7.95820269660132	6.83896693483966	7.87118114190247	7.90094009133897	8.51110729101924	7.98655364054008	8.37703617955833	7.77377123859884	7.65939536329774	7.48040687164655	8.08618882646778	8.00527070005247	8.35049487356308	7.53883686305624	8.56743235960335	8.14432973892208
+"WDR55"	7.86671843967203	7.7172237423489	7.72515795808353	7.71777252797204	8.0005955162451	7.36740864186392	7.6427802153979	7.32709700207685	7.63295116702232	7.8709425495072	7.69419317899003	7.75813237644665	7.65041246880843	7.67577142396195	7.56360183006569	7.93084058672452	7.50254900206502	8.02115995355161	7.90471555626513	7.79135779181902	7.91630816806717
+"WDR59"	7.28937088391846	6.82385124065692	5.73971809950586	7.14108687175581	6.09888803957966	5.99478580045165	7.37989942974025	6.99851141797603	7.0907489149198	6.7566372758215	7.28544301453695	6.41626466757508	6.88388170087791	6.98242451032064	6.88806323396185	7.61890655730792	7.06072547987945	6.79134513764623	7.27194992754002	6.46759871692048	6.44698808816002
+"WDR5B"	6.98996047150526	6.26069737041297	5.86442452845234	6.18902521443021	6.04462879909585	6.1447335222326	6.3147312588962	5.86613620367936	5.98535003668934	5.71510919688002	6.73753738269582	5.27848351297496	5.94861770934973	6.12551114091931	5.95545984980371	6.96298012928196	5.82386950952805	7.1656324833294	6.26585950184996	5.82723471066669	5.99885187532784
+"WDR6"	7.17910184766333	6.66173560202627	5.96611896102544	6.49515066638154	6.01896254513315	6.01543792465211	6.64104404333174	6.64041246593075	6.41835831675987	6.71942338280111	6.8160450614689	6.5111988340538	6.35877941389571	6.10045843168621	6.01981267894675	6.62577124766179	6.51167329753387	6.31369631264803	6.44380261863769	6.60109702569059	6.44380261863769
+"WDR62"	6.17343144060063	6.23215096981965	6.56292581200572	6.57247562053629	6.16005380807379	6.49804472660575	6.86114692867484	6.14042066075822	6.58025102824561	6.58880980895566	6.31116735375592	6.44067483123101	6.53696625408424	6.61620117866378	6.44067483123101	6.316512740787	6.30443184447685	6.3735020798588	6.5143607640713	6.33131833785659	6.51802979848915
+"WDR64"	3.95512378582719	4.35297100824378	3.97225811858088	4.1129157976824	4.11125585141375	4.8961515565624	4.28003645441653	4.20061906936911	5.33321539086826	5.27136874997683	4.00697911962589	4.34634699370544	4.59392093401585	4.87149032277732	4.85215238431466	3.96586006321097	4.9662916105351	4.32340203860586	4.2493817728559	4.11403774467624	4.29219388828017
+"WDR7"	9.40235493764699	10.1559702630324	10.5613392505869	10.2593851962412	10.6135897753496	10.1579166140599	9.19735262723964	9.92947882605349	10.5861765365769	10.5303613048906	9.78973977935336	10.4373078679593	10.1926415360155	9.84674270021678	10.4362916838139	9.96204647437412	10.5602035255552	10.362708412137	10.3660523124346	10.6430312006411	10.4155148324173
+"WDR70"	7.68477490010744	7.67921245715635	7.72347903139272	7.33717211731542	7.96801624613489	7.5850084588814	7.40984688685213	7.62070106067301	7.4047331304695	7.84811487456698	7.57140304044696	7.897674317965	7.18574610064494	7.30078778978792	7.21677473463905	7.73236794915363	7.64784380974745	7.87911526029994	7.47443799064356	7.98135805817155	7.66063381660838
+"WDR72"	4.29957703668212	4.50643129871752	4.37411657081759	4.33041839943954	4.50643129871752	5.11461734351133	4.99068722071329	4.40308782780755	4.44586106457638	4.57409423634673	4.32412275698518	4.42393579900914	4.67792746635824	4.98337197371777	4.86760260189424	4.55737010403573	4.50643129871752	4.4069028763663	4.45523836130986	4.53858697671739	4.4512498679651
+"WDR74"	7.17365881904805	7.28581445557575	7.43426066534655	7.18378862489468	7.60249275639309	7.36398561159745	6.91562221258793	6.85008000271026	7.25243962037304	7.6309041181426	7.31773328550103	7.43058558533825	7.1100810326869	7.06184116358377	7.33820724729287	7.44271509223599	7.0899008013372	7.78158506102002	7.27178111093449	7.57073998135268	7.66092923168601
+"WDR75"	7.5462027827146	7.78360425778839	7.95732089325873	7.50791234189168	7.75434429418564	7.3907333692508	7.42318372241125	7.77786744273972	7.46594813554194	7.29375368784121	7.8987425690502	7.55500220257643	7.58115945028216	7.65441761605958	7.74941659993952	7.68109447678801	7.62312627561985	7.84686046029971	7.69064775761532	7.46493599564205	7.56954043887327
+"WDR76"	5.21470356548376	4.77657552991043	4.97101041166084	4.86302917181401	4.6479122576427	4.891431597517	5.67595614326061	4.78060153528238	4.89477335012663	5.24075605665858	4.81976008554651	5.20945006100226	4.75587730567062	5.39415588805401	4.81629733271815	4.82298592379707	4.91562568531657	4.86787663311833	5.04420720845843	5.15187726213101	4.75680887506827
+"WDR77"	7.73518963398564	7.49670898902934	7.59629116690501	7.37228166588206	7.54098997926776	7.47741907877277	7.35070713743599	7.28193154751261	7.31164157864984	7.45952797684611	7.47067553914792	7.29657773986976	7.48604328346737	7.47375962173053	7.30937515359344	7.30336062173582	7.3087337031502	7.35437911325734	7.22353322488469	7.70627168709962	7.66399009708164
+"WDR82"	9.9555204199246	10.2771990030402	10.3133724805288	10.3273865495042	10.1811059787594	10.1414629622901	10.0228132687619	10.2259161664222	10.2655184653898	10.1812288761766	10.1309067309196	10.2105628372408	10.4610400989735	10.4495904917458	10.4155888685668	9.79589190601518	10.3665891008664	9.84643491237017	10.2862751564377	10.2327741992091	10.1171704192933
+"WDR83"	7.27830288918799	7.01211907570536	7.37253676414033	7.3200236389098	7.23099307630116	7.6917252769634	7.74182920200705	7.17836973485164	7.35827645024188	7.41613462179311	7.1506844547046	7.19971500585099	7.43182714312028	7.29292564549583	7.50145155832831	7.18072223532593	7.26811762684762	7.17842459152054	7.25681522889381	7.20919709351161	7.3821565198651
+"WDR86"	5.21856762591928	5.38710758028322	5.74686538659589	5.43141547223631	5.59690869471712	5.79067295973962	5.19950784010852	5.17470895472735	5.37557131289694	5.64345678657584	5.35937988821561	5.41759730121164	5.37282787683308	5.30414423973762	5.43235428267287	5.24302523333459	5.30442799464442	5.32300707958684	5.48157912704018	6.41444510508731	5.45998260402477
+"WDR87"	5.16005164334122	5.17407336014623	5.00028841920275	5.43141547223631	5.14510208336765	5.48576483861688	5.22213589072782	5.00875152991196	5.19061058566206	5.28524051083326	4.72439673047733	5.05613327136131	5.18487046893464	5.57981896877102	5.08187824584539	5.22058145283184	4.89415478007725	5.03771784145709	5.30108578174974	4.93370954015723	5.24232416241816
+"WDR88"	4.41033534091677	4.20636985703115	4.61738986277418	4.26256092316119	4.59088414202039	4.3703964778965	4.37256855525524	4.3703964778965	4.40544090598419	4.38303136389657	4.20919507377747	4.41563350139487	4.46089712723571	4.32680818845087	4.4548617790442	4.27990885935003	4.30405117771692	4.30692160198797	4.51208204825829	4.18152406615675	4.34445220071904
+"WDR89"	5.97976979698409	6.24624496249475	6.20781220538903	6.24155497073784	6.19464656118474	6.33548033873552	6.02789736666907	6.1687758583289	6.13863968427883	6.29465527162036	6.52013141789369	6.33153803452586	5.84916539552271	5.98322520349059	6.12508617666389	6.73334573018445	6.06350798153689	6.30217572174694	6.26642308024788	6.14505941677971	5.9837255193602
+"WDR90"	5.64466854978881	5.64321636684826	6.11686123324582	6.04368990262894	5.76026721030469	6.43062015665362	6.66877940800222	5.89663318207286	6.22894975166585	6.06606050435042	5.82983190159098	6.16614988205668	6.39736328185325	6.39847043969941	6.30047100064204	5.47540112393472	5.97782708179069	5.97279712717914	6.18204317778682	6.11686123324582	6.14351440799277
+"WDR91"	6.63805135856013	6.3658968299304	6.443834933189	6.04414910634967	6.51842515130789	6.12824517855796	6.09778099581374	6.10455831630847	6.05810069059771	6.48337152955048	6.49432102796361	6.41130268747488	6.03729687862324	5.95236830550127	5.93385120521226	6.86926536569357	6.67093434430512	6.76396893166696	6.13219869201458	6.63354349545955	6.40579628807953
+"WDR93"	5.85011208732952	5.69111926042128	5.75307597999801	6.07950498811324	5.69633275159622	5.93118483838318	5.90360808405691	5.86312439133257	6.1082700327308	5.71870847373014	5.73408330960736	5.75575371349326	5.91103744013242	5.77058511672954	5.9545056740833	5.60660378022875	6.05347562474753	5.52760201081536	5.81589497470301	5.80053590619709	5.89301651488794
+"WDR97"	4.255727397313	4.9380336526241	5.10777948016356	4.70232883801182	4.44081581720202	5.06914026708892	4.83980014929521	4.55926979855817	4.85677021765454	5.1385314578876	5.2216499901737	4.91946878540627	4.95971261493415	4.78612403149743	4.52503289579299	4.6160472813343	4.66647053859039	5.20911773659703	4.29938893389525	4.63014472859252	4.99695643229299
+"WDSUB1"	7.13319401817433	6.93804578667883	6.89160026970529	7.12321856419488	7.01471484448036	6.7647051326739	6.71390477656473	7.1736269535999	6.96750264809739	6.85532970670155	6.89036282521817	6.77800150855186	6.82156349043948	6.60183160997421	7.46247230882429	6.83417210797332	6.66824093792106	7.5903060558956	7.37698600494018	6.96750264809739	6.7299466130564
+"WDTC1"	7.84845425278539	7.68751946608906	7.67056032219881	7.69576569562398	7.58645375511385	7.84756353695359	8.05717484270985	7.73589238696927	7.95155262534292	7.52358266731406	7.16315016145416	7.52243932376005	7.89577536836115	7.74565751242278	7.82900640210215	7.51146024934391	7.82395633497614	7.68843629876042	7.67732527072409	7.46266959406327	7.68397604974117
+"WEE1"	5.91481517467104	5.72212408694139	5.31730171912649	5.92053337298467	5.86858203225715	6.22610121559123	5.76313591886295	5.58965814404933	5.70627576367102	5.6185968121947	5.68028633543581	5.61226127972902	6.0019253510644	6.12951798271747	5.7481374312297	5.46177963096176	5.29657285364436	5.28975312768686	5.69540839115126	5.73971809950586	5.3973348872181
+"WFDC1"	7.83002913888089	8.37484340069643	8.60958938863363	8.29223245682138	8.61761200343075	8.07318244606041	8.12170155530849	8.40580638229928	8.73066328228194	8.5591760358857	7.4793577138087	7.67314194649345	8.47826469512684	8.33754557112152	9.04355362436039	7.87392110722685	8.22270564566563	7.98638543806639	7.74959167680152	8.4032260224942	8.0331944503947
+"WFDC10A"	4.29122560746974	4.46883250787411	4.46764749092069	4.50749462243941	4.26477709477666	4.49696240719585	4.72977903081433	4.20921912540102	4.71383399526906	4.45503733336714	4.1571683961859	4.2068643447167	4.66071526842976	4.792041545333	4.69838354711802	3.92186001532876	4.38741406180916	4.32084967190922	4.63112718351775	4.50613310311687	4.45503733336714
+"WFDC10B"	4.03401695442484	4.10322804777576	3.99913177569798	3.62038347012249	3.96111924750752	3.89162654853919	4.15244916434415	3.84615568908773	4.29800628867252	3.96089851493637	3.69772112730411	3.93245986259287	3.74134918584505	4.00717024387921	3.84424282889753	3.98606090811199	3.99474788158172	3.76117789161937	4.2481324976478	4.14570425560649	3.78663042648002
+"WFDC11"	4.95051990369136	5.10227646062891	4.80350286885416	4.83253003256814	5.0625129444578	4.82255418563632	5.01075939318457	4.91524504953274	4.91791015796474	5.03588708092426	4.86289217340351	5.01788352209486	4.94392431562217	4.892343101518	4.94137769104682	4.93779438031075	4.97256013810546	4.71898805052482	4.95051990369136	4.7314748964841	5.11871051175324
+"WFDC12"	6.10719021594259	6.47907508170073	5.91936918654198	6.60773552230997	6.2881358420418	6.18525411831997	6.33571552327933	6.24449096491133	6.40282168463664	6.38801056872	6.12768043801339	6.34531178004002	6.46358969157007	6.41938340742147	6.55379978318518	6.33571552327933	6.51828722235684	5.7409966801492	6.39367952417126	6.15875142101635	6.53096131856416
+"WFDC13"	3.8803008028269	3.87146460391109	3.83489565969599	4.12495035038401	3.8208204527586	3.92872668386153	4.00822471846712	3.85448434790811	3.72387640234688	3.82536280065959	3.7526097440088	3.76649585251223	4.21096549574868	4.28946563075842	3.8208204527586	3.83318846340951	4.05215908979192	3.8340422251678	3.91023485819425	3.89743513558059	3.94065053578194
+"WFDC2"	5.79726252559554	5.83150453569073	6.02202570472745	5.89477565612256	5.89477565612256	5.97402743596753	5.90198124045058	5.84636632449575	5.8704121990033	5.76125936971348	5.77674644672465	6.20444266683052	5.96347444048983	5.61024642664712	5.7642050246467	5.92152779256938	6.10431651660158	5.53020449555043	6.22480940530754	5.89477565612256	6.17920371975258
+"WFDC21P"	6.0961413770981	6.34725435117387	6.09011161631183	6.58499838769082	6.00724578293983	6.6982323871555	6.67190348846736	6.16751961175899	6.42839496451838	6.78359176769206	6.24263381050259	6.37249049123665	6.4191613175982	6.72183564926527	6.35441372779318	6.12144596296447	6.35667797424631	5.88589635074197	6.84768784951944	6.37852129543596	6.42388393971898
+"WFDC3"	6.72468932204493	6.72407628385053	6.8498732607196	6.72130323016544	6.54861665116588	6.62135614050489	6.91178579681848	6.73168455918801	6.94089448104981	6.92015294943805	6.79752240044193	6.58068316673058	6.90949159366339	6.83544496589006	6.73670798576139	6.83357378752804	6.91552570639217	6.48250323332593	6.81590240672516	6.61760108656451	6.8752281504976
+"WFDC5"	4.14427171676923	4.19255788092932	4.42927786725897	4.38868458282386	4.22536606162493	4.52984354687012	4.79621779671224	4.35515817113171	4.47175374405311	4.36214436412814	4.1648425815334	4.39859804686122	4.65190174793316	4.46039680853036	4.30757126047646	4.09923284179312	4.19793697122871	3.89070715836366	4.47171543826594	4.18244475731755	4.16950418834266
+"WFDC8"	5.01482403465029	5.06638477283287	4.90718520917642	5.12967311168083	5.07508829750431	4.68232231111129	5.07449056728342	5.2018851272683	5.06638477283287	5.06638477283287	4.8441239547064	5.21327601654264	5.35465753246753	4.96988619335334	5.19128001182538	5.22472207230879	5.18231411813342	4.78804853465083	5.18868141801293	5.10852537441369	5.11053812020382
+"WFDC9"	4.06236027996863	4.27871562071341	3.95262954914409	4.39464028266402	4.08088151706247	4.25964096203658	4.33288105545103	4.18086259242505	4.53265589756418	4.2330209192495	4.06312649976194	4.2330209192495	4.28154513911988	4.2277390944662	4.29667056207296	4.3185127046466	4.32205615568747	4.2330209192495	4.22505059417708	4.1023555634361	4.50200909786104
+"WFIKKN1"	6.48216825723695	6.58188046513298	6.79431448635932	7.03415934807443	6.65679892578575	6.58749117355351	7.26733646497679	6.54027764970875	6.94494048707269	6.79839058674551	6.71837827712686	6.45848619527936	6.87337288836361	6.86926536569357	6.83919357061397	6.5039369186402	6.85769754800753	6.19840989508872	6.66846527075555	6.58120860566763	6.77269625390323
+"WFIKKN2"	7.18373216776919	5.23830046246254	4.8460317545893	5.11348212676274	4.93896605460707	5.41392122864827	5.1716869876303	5.0192997257161	5.20627819426943	5.52321755827405	5.03499283288332	5.20061135868778	5.08667837202109	5.13715161756556	5.07132118929217	5.0937862529174	5.26766210204047	4.87711351891039	5.21984981460913	5.5829262098017	5.30290261823629
+"WFS1"	9.77229166281862	8.62223062465773	8.72177112500813	8.60840945540789	8.61770856242855	8.34635461548228	8.87947385486562	8.97393297719099	8.79816125436419	9.04068815747695	9.07224472044273	8.72119128969489	8.20948317649431	8.34072511754786	8.10191968075389	8.29136376361159	8.54442520453734	8.75004831928053	8.48805596159415	8.99150829170691	8.18919793442516
+"WHAMM"	6.84384197889865	6.64402603146677	7.14544865350116	6.95206294414551	7.00301224262708	7.02306623103824	6.77618594978824	7.11991671812759	6.62275585874155	6.95592852327784	6.94223562542003	6.98442032760267	7.0892143998577	6.94336813331992	7.11293856191892	6.94561133536567	6.77904281238073	7.39780703080641	6.71850626918702	6.99608716459866	6.90409894047966
+"WHRN"	7.8603803150898	7.71692493635903	7.49840891817253	8.30802593638747	7.4692176517536	8.47240328371432	7.93046276068535	7.80995664790934	6.83720440451185	6.5010374494763	8.71670448133054	7.34496632145016	7.76277243267212	7.99296172406584	7.71518370730884	8.89933862010179	7.51807137101521	9.18423329038818	7.90559208228813	6.56986628591998	6.98448779383298
+"WIF1"	8.53281016693674	8.49500165701616	8.64997780174474	9.20886878799798	9.45394200892559	6.15519023694589	8.87781398154459	9.67986101750343	9.15397344799886	8.55406408820772	7.71732055183574	7.71134732955134	8.75683705435756	8.49094076035933	8.72424235057194	7.68243173259369	9.16477058992175	7.44603193591713	8.0612042959087	8.3331002586506	8.70813986079861
+"WIPF1"	7.37831250420212	7.11106845412184	7.16998627866397	6.77780326809326	6.99829093221716	6.9129480308151	6.52728637646986	7.15823782303179	6.13097773145727	5.94989076848725	7.75473679126026	6.29886072079962	6.4882750268832	7.06512702447189	6.62603094576778	8.8884400268672	6.25155660825121	8.71727458262815	6.93812917967796	6.33793362658695	6.77967021002657
+"WIPF2"	7.89348836121347	8.03270240584264	8.80059582217109	8.03491849646139	8.60167565991505	7.99337989796059	8.24217422888472	8.37159891301974	8.53020273123518	8.22682818651309	7.78514212032369	8.32107206621687	7.87626213403568	7.97013026789114	8.19138718873529	8.07946057716444	8.46666841972164	8.35457573211696	8.25674300846037	8.55946930754333	8.13078918556961
+"WIPF3"	8.99756611741773	9.70348978019168	10.0862499102426	10.3175696453145	10.1306445547994	10.5914490692013	9.43704928170053	9.91223083708391	10.7485574093281	10.0335403483517	8.9113112822064	10.1429696776571	10.5680283054072	9.93113500722502	10.3323825371409	8.78228578936021	10.5702044064966	9.57836087215756	10.1301386846388	10.4294012106802	10.2118179065829
+"WIPI1"	6.54221466547036	5.97560795807348	6.17814587155317	5.98991939535555	6.30997109772858	7.08796979516836	6.34534555942719	6.1937792073182	5.79434001363406	6.63840692968714	6.45953243011086	6.47200150000979	6.0696914139316	6.52220104217193	6.54330930848589	6.15915946910647	6.55263951858846	6.55088088818193	6.65647397741649	6.60495275352204	6.17943064953164
+"WIPI2"	9.9615116797913	9.49547221558035	10.0055003169271	9.51180801456673	9.74270034323687	9.60547651392857	9.44134005699537	9.55894405010996	9.98522886515285	9.94882962639378	9.61846052782509	9.83194789126065	9.531760528183	9.4321755801666	9.65251871164909	9.76107216258547	9.80971066918736	9.98058612491239	9.62642515187981	9.97320005653074	9.7996769915015
+"WIZ"	7.96581093776685	7.69102484552134	6.9664043423685	7.80247020243455	7.57848597644665	7.12833781135224	7.73203621950526	8.07532894410129	7.82162247021246	8.24948797574496	7.67885276595946	8.00728920272774	7.73993348985708	7.60595250770568	7.29080076688966	7.35778093032791	7.90803296915827	7.47709859145949	7.98000654997004	7.96262160069516	8.08364187962679
+"WLS"	10.7922119310133	9.49974711368344	7.58791376992262	9.26912592826845	8.14953627432172	7.48814795811121	9.28124329202915	9.90146734795428	9.07838215602647	9.43121783326471	10.0705512208839	9.38408139992335	8.19712100812204	8.3101747052633	8.24394547974606	9.07924267431438	9.16924493257133	7.27307554569634	9.01184239057593	9.517829284461	8.61570751476373
+"WNK1"	6.66116329858741	6.5491446669352	6.86260750375046	7.27925946221653	6.29218808635732	7.14323661827422	6.53976551298513	7.47650787957731	7.44737222456139	5.9158711560355	6.97154458816559	6.76220072821062	7.14767117504638	7.0263928799544	8.04396083971411	6.33654509898099	7.0627468256802	6.67143388112564	6.98931928812193	6.40911681474175	6.40007331402406
+"WNK2"	7.82817894088847	8.46346281282237	8.94627494335198	8.29097504287629	8.82399320392535	8.84834622556874	7.93649754220766	8.13153669732772	8.57944397451909	8.72503531263499	8.19150071649554	8.53714385051038	8.67394376449644	8.3699128352339	8.23443855399438	7.82537713087341	8.68231696885955	8.39879045431282	8.041802004227	8.62259720721591	8.74760994741188
+"WNK3"	7.13497798605798	7.47477272642737	7.86893838605892	7.61480355631337	7.99928533925724	7.53586638310685	7.19598891191905	7.34832564576197	7.94756832546813	7.35592929390203	6.84268498291496	7.35592929390203	7.42005963660916	7.23664223966811	7.71564050532679	7.18211848363157	7.78398395153068	7.54391939300085	7.32969104577475	7.63186896532705	7.29935309805895
+"WNK4"	4.72083029964895	4.98635104894488	4.95502500724909	5.13601875840606	4.67455573355264	4.21126078878481	4.70415538207568	4.71983926811192	4.90355127404917	5.13536323021549	4.97053860755856	5.03215536502535	5.03259745192355	5.10638687955532	5.16281026678559	5.04159782666796	5.00639972803416	4.7325780903288	4.97603873890847	4.86772132994772	5.14727506926991
+"WNT1"	4.03875432520594	3.97765798335059	4.02589809715195	4.03236919539702	4.2204265365137	4.56433181347126	4.82614822850747	4.22405969988685	4.29856094444053	4.0995884364035	4.27599972184729	4.22752560908098	4.2204265365137	4.4926368849038	4.34473064993898	4.32485017178646	4.03131721683267	3.99358625333501	4.36922976339704	4.08193599403084	4.21749257809528
+"WNT10A"	5.5185176920068	5.7662511083396	5.90350992210349	5.91536334384264	5.84756911923376	5.79799967375451	5.81142599761922	5.53751078613089	5.83209987534692	5.85346608267819	5.34896314347101	5.78221334530911	5.86555911282712	5.7662511083396	5.73669172668029	5.78225525119658	5.82413939130244	5.39712626157121	5.59947508812405	5.83833337414818	5.83477884774315
+"WNT10B"	7.75225502668984	8.32338731324696	8.61835236942591	8.46179678473178	8.7090789477811	8.47417270784964	7.91719983651292	8.11492892537198	8.44471630939694	8.64191728399668	7.8297394098308	8.31576334056593	8.40076423841783	8.42476861053682	8.18167312233669	7.77263946655033	8.25493826673872	7.84640971231585	8.20675897888677	8.56135612516684	8.50311693944947
+"WNT11"	5.23194525016271	5.29115639572597	5.2069431410373	5.4439109156139	5.3619948428468	5.69291494582509	5.77165164718011	5.2734931666647	5.42659902933635	5.43660867450782	4.98200908134609	5.38170884940699	5.32440578916011	5.82475729611807	5.19019382458169	5.10325045331531	5.4500458112158	5.04456220393717	5.29870037982771	5.46749836804322	5.3621210580466
+"WNT16"	5.68665735451296	5.53410965903345	5.66779529595593	5.53584279132252	5.3804837581603	5.4889398499348	5.35067831322518	5.31928887043598	5.42059591509653	5.74904529846801	5.37934167308491	5.56560029849921	5.53584279132252	6.06873705407263	5.3108337218794	5.73971809950586	5.51165668011679	5.5193579061538	5.53584279132252	6.3973981111631	5.62757650443127
+"WNT2"	5.32035509192317	5.69218185948631	5.70899792441721	5.73819112389759	6.05431498353235	5.49650088017815	5.37587389797202	5.53227287321103	5.8992490235007	5.64263478067232	5.35590340337145	5.68665478626652	6.12037881394419	5.75518870151672	5.79703763022211	5.52794166378107	5.72345676449297	5.34905416488437	5.52403925289144	5.97467916951503	5.71847390293648
+"WNT2B"	6.33826500249025	6.3219337841074	5.767862037037	5.48162943105431	6.69197133751294	6.6104539709444	5.86438713394646	5.78230080339746	5.61124471997527	6.23368212771284	5.46921668631993	6.05947254154295	5.98870150166413	5.93329425753904	5.89685102256811	5.73971809950586	5.87576166945553	6.53532660945187	5.84319396224453	6.17141505641059	5.87170397535704
+"WNT4"	4.38904077778972	4.89134596598799	4.86823590040891	4.59490285337841	4.69576227039289	4.82255418563632	5.13672455271835	4.715358520815	4.71025184146036	5.14642450330568	4.51941612903668	4.715358520815	4.56799536905734	4.83547023083002	4.60432838805109	4.43825798903728	4.57452467062465	4.57349141328628	4.93342068544912	5.7721775386624	4.42615801364863
+"WNT5A"	6.8135542779583	6.05770423932827	6.3093070874939	6.56630074259768	6.84183320287674	5.86454874366612	5.68050798569536	6.11879948471685	6.46707482099742	6.33826500249025	6.03507268125266	6.05007429872668	6.74190435541437	6.26456663780438	6.56293029560717	6.14803034544129	6.70056929079503	6.00670622707959	6.45969814433952	6.97544045714699	7.05929162203754
+"WNT5B"	5.49871196254951	5.62054692658263	5.9116457555754	5.83801165960728	5.71444789566728	6.01579288549936	5.91710628392054	5.5258934698799	5.79116558597267	5.70417096347096	5.43472723150592	5.66578997023048	5.68889003569062	5.89098041984137	5.61760175377593	5.43300576023898	5.59699099172665	5.49307099591927	5.79251860275597	6.18475499077051	5.6708871720387
+"WNT6"	5.9053741552137	5.19273958540919	5.43576033502157	5.42178658139248	5.17556243162888	5.72669600040451	5.55890411844152	5.26584273773549	5.36232154461899	5.54843283931733	5.27904703621968	5.43725953743426	5.59469127844844	5.64379451569132	5.20547478072558	5.00085833622707	5.42178658139248	5.16300949540323	5.73843186413752	5.67031943326668	5.31470116082496
+"WNT7A"	5.95014113402314	6.62875171226049	6.83254104714603	6.4187570670976	6.35434995144928	6.83880185862947	7.1048155201876	6.34371285032935	6.95940934160115	6.8485504803115	6.49854954852918	6.49844164539649	6.96369679334607	6.71369474917574	6.58879340460275	6.59361593165903	6.11733462955943	6.58239796692179	6.4165374021741	6.62917791842441	6.65557567367966
+"WNT7B"	5.82508331783038	6.00717989628495	6.12059484398192	5.87376686085293	6.29614695575858	6.12199525843707	6.60822543661647	5.89923852372266	6.25975585486541	6.02217366558806	5.70970108782244	6.0088375330385	6.69242260959531	6.39325903795675	5.91423351962887	6.04405424132987	5.84210038329378	5.77120298485463	6.09740713685942	5.80627420108068	5.98236697648296
+"WNT8A"	4.99037774534157	5.13199534660555	4.85792876103852	5.10826167660026	4.85546559299216	5.09122390903668	5.37618993783739	5.00464271214721	5.01808168599099	5.1447756166061	4.80642257685339	5.02133660164951	5.48787930721284	5.39949861383614	5.00006723772843	4.96137184904877	5.30785661008374	4.64771232471804	4.93621468656685	5.05497694948843	4.99695643229299
+"WNT8B"	5.91885607998645	5.89858783531331	6.01209602942421	5.88903440766617	5.7460137352896	6.03451944298322	6.31891021086279	5.83193963191494	5.56453037648622	5.7646286685059	5.74226566979445	5.78518046720621	5.93126745891811	6.14505941677971	5.79608450905793	5.74618974413662	5.61170698233923	5.72493256234573	5.81587245132149	5.79608450905793	5.79051085219814
+"WNT9A"	5.2389106777575	5.43271701275178	5.71187097243002	5.44401849328509	5.55464814576592	5.92126475043984	5.58080231271254	5.26730925178725	5.53638282651979	5.51635557737062	5.58249910180194	5.55912413923443	5.5941733389914	5.68585885521495	5.45931536596831	5.70444239781484	5.62697939063213	5.58181241987728	5.61508130449312	5.96630227025701	5.5941733389914
+"WRAP53"	7.05706357952212	6.84043962954085	7.06218246320088	6.93647590252976	6.95004298562163	6.95975480212232	6.7609262631935	7.02030316671162	6.97898465718357	7.11476105848417	7.08954679982854	7.04730467493578	6.98745244130484	7.10161463512113	6.76139273557202	7.07671268103833	7.02293558981763	7.00060552815114	7.00871590059726	6.7981946506933	6.99855145232091
+"WRAP73"	7.07295043028129	6.89573129699658	7.1471111200874	7.19933083565138	7.25438344480943	7.39037432799778	6.98083629129788	6.68991709560082	6.87859972493993	6.83462050137827	7.23950634540119	6.58562798111387	7.17472041818179	6.64899170107828	6.90890317916123	7.19801503700728	6.42453314486716	7.48878693414024	6.75593097900737	7.10989449370707	7.06220955966368
+"WRN"	6.67555803262283	6.30686503937886	6.40135468503507	6.20623475565403	6.44693630601175	6.21897075451016	6.34611761725555	6.53082418801619	6.45750922508785	6.27488466450409	6.41831827458275	6.14144821361659	6.12480056151128	6.11984033701908	6.03640368377426	6.57684853719223	6.23836827615898	6.55493208468571	6.10960255641353	6.12908151914711	6.37845446668022
+"WRNIP1"	8.77605221381862	8.76918428539484	9.19169585977643	8.96453555416108	8.8957531883749	9.1007697653253	8.68661531233236	8.88651657064622	8.97569618475518	8.91027559936575	8.81457086359912	8.87894781487552	8.95626783381523	8.70703283590137	8.95754527042569	8.67135457676753	8.8957531883749	9.03880361480507	8.89701724047432	8.99940554080955	8.86695586267711
+"WSB1"	7.60341911021428	8.64752533849296	7.17519636027838	7.62105721273562	7.90436393538751	6.95488822229813	6.20361623938499	7.53669759038367	6.69419420828189	8.16893958665449	9.32039448045255	8.07021768187822	7.51222311649007	7.22863519320921	6.83395944156538	9.13675768536001	8.00152648018595	8.79495020289236	7.67751107606251	7.43587594851605	8.23167699882173
+"WSB2"	10.5916464519475	11.3582359194556	11.4018028564793	11.6226472431899	11.5553953979313	10.9391297852313	10.9914879618753	11.2014830404207	11.6851416863901	11.5018159394326	11.0985667015467	11.2624693750307	11.6755736600635	11.1127030844001	11.7282628666922	11.1607502887831	11.5410383870285	11.400832917184	11.5309433969191	11.3651927669635	11.4438891637379
+"WSCD1"	8.38825391611769	7.69706331052742	7.86873038263358	8.19783498278955	7.46802355990027	8.42664326556078	8.38219404517505	7.89657568395635	8.00049301084807	6.67868038062345	7.89237768018203	6.90824049145302	8.26092428691335	8.2806836905424	8.40090061495667	8.28938843706445	7.54615674794965	8.05065985391889	7.94096193473378	7.35245447812101	7.06225185617062
+"WSCD2"	7.32362600773043	7.88019817203637	8.80485766164829	8.20185582019593	8.14555126555319	8.32059873598604	7.61603800265121	7.75926658236637	8.06869565610699	8.03692673757482	7.20642376671924	8.27340222110744	7.9300484006917	7.75813022611088	7.9959568378267	7.37753499963992	8.07771786638224	7.60977636312583	7.58090828546913	8.4480792580183	7.98844893658005
+"WT1"	3.24667907412252	3.24203055393888	3.22223940320753	3.31023299350791	3.27323995764134	3.68171549482649	3.43177525918073	3.38815919666752	3.83858244867324	3.351154684483	2.99323461242359	3.37231407745515	3.56370776261084	3.24234913183469	3.48218005813185	3.1940979692447	3.25309811826045	3.0368654317547	3.2843771764607	3.32182047401809	3.24433757765896
+"WTAP"	8.89620715551724	8.60790613768938	9.11239338901715	8.45694829793592	8.89214551398204	8.26241592399891	7.82809973638331	8.23939721686736	8.53845177534346	8.79019075502587	8.86487357152043	8.72013831932257	7.98839678432393	8.40298341157017	8.59670965973791	8.78908066480609	8.23939721686736	9.25613698275781	8.75037407427691	8.94412388898707	8.88945888421786
+"WTIP"	7.2596887710881	7.04492516393955	7.43587002483136	7.32749999855986	6.93989091275495	7.63883728242683	7.80060355659331	7.27572950089757	7.51131160201414	7.19684928108136	7.00145666542529	7.13218855839443	7.63168358161404	7.561244842357	7.32970117004318	6.63350791271182	7.04492516393955	6.82230877727014	7.20346614286036	7.68848884049504	7.22545568582806
+"WWC1"	8.20178563668472	7.44693693928261	7.75970066671158	7.38745463511463	7.60249773109746	6.91573645458854	7.81303472126992	7.94649906204414	7.6983728750415	7.75857826070271	7.67101144362313	7.47867944998972	7.15998868266775	7.5773678908711	7.33407023471646	6.8914915218074	7.14361270741987	7.65689417386088	7.49312839323185	7.77340036810245	6.95916136517652
+"WWC2"	4.91179433053563	5.20046513831014	5.66151084841624	5.15213803202153	5.18413751435156	5.08836644941691	5.18972989951753	5.55083121732587	5.35004597302961	4.77106520655933	5.15036725898519	4.86721837280708	5.15509565991269	5.24480045639372	5.65904546498079	5.26074622212465	5.36421886368133	5.50367391608694	5.09446747087096	5.01199381587344	4.79265604648574
+"WWC2-AS2"	5.52686935168442	5.49839924234245	5.87537211058182	5.62052383583875	5.70375815592742	5.78757647899052	6.08106390313897	5.79829356574587	6.03153243235875	5.7689111768609	5.74988123258855	6.0059263231581	5.80455383409674	5.87268002678188	5.86050675027047	5.56458709019212	6.08807706291087	5.35276626083186	6.0528602344316	5.86065679234872	5.9377934740997
+"WWC3"	8.62326414259718	8.25622563199438	8.45728643448046	8.37547979676754	8.24496359932807	9.16689781087416	8.84016805941608	8.42488233272883	7.95474974927441	7.80084196482132	8.56497941191909	7.79425439677829	8.3426994158919	8.8494851438054	8.15386989341377	8.51577397322133	8.18135878463471	8.81376087051502	8.18311183123247	7.91696883919232	7.81120115634603
+"WWOX"	7.80160266086377	7.37808351750931	6.40976396053815	7.08539607090049	7.32032680540495	6.82632357330451	7.02086658170804	7.1593170939212	7.3559885402148	7.45782452042697	7.51623222868621	7.26802271070218	6.51771318335308	7.15388778907685	6.7766193457597	7.51889088845299	7.27919771716993	7.13911755827006	7.10609844446702	7.35716196276395	7.01705618521312
+"WWP1"	4.7598034211878	4.578905715337	4.93309287154517	4.8248548238255	5.01943302572842	4.37934313475073	3.92083745492844	4.80034306955918	5.11419826433951	4.80034306955918	4.91900299526775	4.57512919121534	4.95518321173391	4.11814048360452	5.53303487716575	4.61284354163675	4.80034306955918	5.1115657405295	4.80034306955918	4.65736598102772	5.15954824693267
+"WWP1-AS1"	3.85877185460429	3.94455582282733	4.00169184168389	4.08530769473577	4.20108124181181	4.39398708616251	4.04587517867222	3.90727970343246	3.85404145912284	3.79992645569884	3.82558067592514	3.75232642386256	4.189710245406	4.14382612407278	3.93646048028069	3.91588772555076	3.82860403500533	3.81080493202029	4.0783786015775	3.9660072090085	3.94686813014301
+"WWP2"	6.90358274916642	6.13857342042497	5.79114734971711	6.25234982761262	6.50175422132716	6.37375434938332	6.36289694798504	6.29430090802031	5.82060596338477	6.34950060532145	6.54809057595236	6.29430090802031	5.69606543000874	6.07520766425193	5.17897583377368	6.94695382532179	5.97695034815838	6.80293920636542	5.80100464715684	6.65212091945162	6.32347895180115
+"WWTR1"	8.67548268187696	7.08100431712707	6.78116479685731	7.31077654589697	6.99103558831247	8.56186018862367	7.60061898163305	8.39259225056335	7.20748848086456	6.57874359805505	8.35879957067391	7.21415736724004	7.32032463705479	7.97177265478806	7.56519401775571	6.75031185392623	7.05021230139957	7.31077654589697	7.46510673501166	7.31077654589697	7.14459827463247
+"WWTR1-AS1"	4.92957404440893	4.5488710140458	4.59412456689271	4.6018477984024	4.61738986277418	4.61738986277418	4.89779284208261	4.64482744495081	4.65330753090111	4.61738986277418	4.42768146184817	4.57984254512488	4.32355573888803	4.9095176842141	4.83892223949454	4.37849612582103	4.39425052079174	4.4822761150251	4.72504374518953	4.54595961511456	4.88494794777817
+"XAB2"	6.31708552440645	5.9380760652679	6.7230663170722	6.5043828092872	6.33347555245296	6.96453655197007	6.42035563040947	6.18950073033144	5.8710293746803	6.13061873011982	6.53531600066908	6.72174857626786	6.17298629621396	6.16929774631253	6.04051925173999	6.11040309106394	6.16605402833856	6.66098526557663	6.24624496249475	6.32064747487904	6.16338232955149
+"XACT"	3.73675170140498	4.09581060863842	3.9660072090085	4.07605302923454	3.92353690692893	4.14316629531917	4.34705574426472	3.94942225628791	3.96271316906612	4.02522463253554	3.71753152565259	4.01678587469141	3.94306934158935	3.95006036933723	3.90788862395329	4.00209809930776	3.92101703010189	3.68745373739994	4.16205737942429	4.121295144262	3.92636163470236
+"XAF1"	8.32271477979207	8.25050673398603	7.85149539758409	7.55640463698888	7.41347820996767	7.76882628232041	8.00609003582538	8.26301840364395	7.91035818032352	7.16269660877815	7.94822987070833	7.20528523069244	7.76593600856309	8.54347678030037	8.45553615124873	7.82307868365092	7.29956659438613	7.82681793881855	7.55899112023083	7.70460206836919	7.91637905508848
+"XAGE2"	6.09055840374601	6.32244983093696	6.24416469140588	6.36471336102102	6.21753284503534	6.39405854366102	6.4801423960161	6.26294928305705	6.37393204069825	6.31425082984655	6.00645615707243	6.37993865453275	6.53348188719242	6.61384505570616	6.22662693327582	6.29067377623043	6.35971486227732	6.13804876573624	6.58146691602079	6.230507283137	6.14389118919321
+"XAGE3"	5.4208265314242	5.4073447831379	5.4993670189732	5.66206064467901	5.37443479094094	5.41039244918888	5.43329317400825	5.09372035684869	5.47046542559665	5.64140091448976	5.57516357590003	5.41850552591981	5.68252365059641	5.81053602109764	5.66162118877673	5.47014512124164	5.78640879516107	5.76271163882518	5.57905481927393	5.2146706264792	5.60256282253853
+"XCL1"	3.80115135039306	3.62510678838782	3.82695580665846	3.74435464135105	3.79789751493351	3.74861792065407	3.79963086370125	3.64646847182225	3.9582961355702	3.78482212023365	3.86723461202366	3.79337526001628	3.79789751493351	3.79789751493351	3.84054160309622	3.96160481758043	3.78351461381228	3.68290077156891	3.9949130401157	3.76649585251223	3.98401024329239
+"XCR1"	3.85997280375404	4.02485157297609	4.03771313355036	4.24664261950111	4.27752930812873	4.35049994684421	4.08760134636187	4.54514363189139	4.07472841305947	3.85268502532043	3.75186211088401	4.2596851134417	3.96368836626138	3.98823679849178	4.02902103000701	4.30037331829924	4.41125610267827	3.67919427551426	4.03771313355036	3.973310807334	3.98252623450325
+"XDH"	5.65148871456324	5.9721574541798	5.68717885271716	6.26786990230702	5.8534907767121	5.84436768743876	6.11065370456721	6.07160375235341	5.95406729995189	5.89987224036072	5.62712470546646	5.85947656557351	5.73971809950586	6.04495290162299	6.12286128828504	5.90162588006624	5.9130329559787	5.27313037244512	5.85344352775148	6.05911335515184	5.94124552753488
+"XG"	3.13098236176536	3.55051785541504	3.40284030249077	3.2371083959586	3.44065784827522	4.04350055988396	3.58224038021801	3.33286969865652	3.48474468896825	3.18056713294257	3.23683457423183	3.41747718923081	3.5685616099488	3.42516021831576	3.36369766363052	3.54300354855708	3.56729336795308	3.41016558315821	3.5890712396402	3.41796000671952	3.37891278694283
+"XIAP"	8.04633292138892	8.07875177611096	7.17855189509197	8.12980514971768	7.04366466777407	6.15708677428923	7.51643037514633	8.13207927500164	8.12101573554622	8.21853998864119	8.17215832907732	8.34573367573068	7.98591119074481	7.60881583429664	8.12101573554622	8.67921328375465	8.2061074058225	7.48856537288407	8.37307455090831	8.34523337027069	8.2116549827584
+"XIRP1"	6.09180265119882	6.0904484220069	5.62168504320334	6.11409912413658	6.01294807120757	6.03492810811668	5.80994463715127	6.13361500610227	6.3002712755613	5.84689356547846	5.75264241880751	5.97828818578895	6.07053053028614	5.81102810311	6.18500143598569	6.15279055716098	5.90608255562195	5.64096982760705	6.16948098164822	6.0619883509849	6.18735874721935
+"XIRP2"	3.46257411374929	3.59512779844722	3.59872191331205	3.6103210936261	3.53741376891322	3.22160364637113	3.64412061090917	3.53741376891322	3.56713060246331	3.5208818638159	3.50528024848309	3.44746096256088	3.64412061090917	3.65236374700187	3.60356449829736	3.43554989523241	3.52895862035663	3.49726385741751	3.53741376891322	3.48866130579941	3.46733574202382
+"XIST"	12.476651902316	12.7797388074163	4.89541272539882	12.5831095452972	11.4593577559708	12.9800199174322	12.5590736385789	12.5867574669979	12.2635572676596	11.9476212047141	12.7068876963149	4.81280804670949	12.6003776555773	12.8060200538694	4.29703027325446	6.1443742176521	5.90058008332161	4.4755664154233	4.16666589204944	5.15491631867533	4.45670893053575
+"XK"	5.96468613793783	7.4146889173743	7.84851219529122	7.01002035340086	7.78113887913686	6.20550439455873	5.69551366682769	6.82481079334912	7.47117929666957	7.53275838695389	6.49809826302613	7.65132143767712	6.9438268950294	6.29070447391512	7.29629947901457	6.78609300981237	7.76962641278424	7.32705502620092	7.35171907217787	7.81942699155188	7.26829707463076
+"XKR4"	7.56203860740775	8.76133162731252	9.16394462754167	8.69585270946536	8.74832779917062	9.05232125643486	7.69680137183521	8.40254519486879	8.32822430726934	8.34865363940957	8.22655633914077	8.44609626218734	8.50630581065116	8.45063380615387	8.67899358616814	7.92526271587242	8.28475245112682	8.14400748407518	8.44609626218734	8.74909389382592	8.18658371778989
+"XKR6"	5.39463080366112	5.45054441808522	5.52420923708888	5.48755393055607	5.66632024998284	5.03774350185918	5.51658428733382	5.55011892613435	5.47530769354954	5.39463080366112	5.19947438997717	5.54720178091094	5.26256524539728	5.39271901628768	5.31755575861079	5.28460112133278	5.3973348872181	5.35420444743493	5.20519277953708	5.3107451779532	5.33292531729584
+"XKR7"	5.65389390659246	5.91687640859875	6.05709772376783	5.967020440929	5.82927771156358	6.04300421090921	6.41390469249758	5.74157945841836	5.79608450905793	5.84940058594332	5.71145058291114	5.78984165404022	6.06071898521797	6.24025350069893	5.91423351962887	5.72811872651041	5.82686436143411	5.75243784071079	5.73005505371993	5.50306122905999	5.87433861905772
+"XKR8"	9.02385117511263	8.89452511856162	8.77240084674828	8.94012425172485	8.75093811637156	9.06396126214453	9.12806018692483	8.89452511856162	8.89452511856162	8.87794757090067	8.79590521135271	8.72435319106773	8.95538581647984	9.1093444477541	8.94462540046901	9.05155860852921	8.83121589777959	8.92727192924343	8.74349259911686	8.91014948056254	8.81922552451409
+"XKRX"	4.63473733731285	4.82496601961588	4.57552562494912	4.70330590175963	4.70330590175963	4.5790443221943	4.82337661871188	4.69402329881236	4.67569487082649	4.73419694203331	4.56632932697859	4.79816460977237	4.72083029964895	4.80879907140073	4.72223991569821	4.65953064924319	4.74466402544164	4.7134977383193	4.71452992759273	4.61552486600255	4.47415401187219
+"XNDC1N"	6.62994665041855	6.73607504838668	6.86213221404391	6.39511453960962	6.73317899584138	7.09584273443821	6.89112395554819	6.50436084835717	6.57488098429069	6.37509758028774	6.77029534900496	6.45771486606088	6.5331848697006	7.05991143227615	6.47740613911787	6.71216848748739	6.38838587975331	6.85742619544628	6.4317512328449	6.44764589130985	6.55660782085191
+"XPA"	8.16019069059627	8.04124154042693	8.39236065700488	7.48171615321663	7.97748089088396	7.96625958017626	7.62468829113517	7.82697487207959	7.6625096821318	7.89485951550996	8.05461341844962	7.73242430041182	7.15260031867655	7.54195388796925	7.65944094203914	8.20553225848392	7.64252570171878	8.1904581218282	7.89347778995096	7.92618277016054	7.8835334547521
+"XPC"	8.91069075194681	8.80814114289053	8.637345411856	8.43256118498814	8.66233129177281	8.6004138046008	8.44043565906145	8.53918125462086	8.27193616595937	8.70351354217108	8.99440291781143	8.56016099800053	8.32620689250434	8.66823687230753	8.15521289599081	9.09167085994516	8.41971007990032	9.1578755545473	8.45318947646287	8.45811532932511	8.54678496610868
+"XPNPEP1"	8.13941844338256	8.20285865797717	7.97225257575005	7.72072579677453	8.28760775575795	8.03790226115858	7.50969262392211	8.0980642873723	7.87104985068961	8.37461771322178	8.16450926428115	8.31800112718316	7.31865975341607	7.43548622870176	7.47576202866536	8.44275519322829	8.23476783197559	8.25864039179511	7.9489065434502	8.44887901921328	8.17994704658922
+"XPNPEP2"	5.14815132489992	5.31930311424367	5.4409137969198	5.47252464623632	5.26325073768503	5.56993507339946	5.82095549171244	5.39713552779033	5.12643347211908	5.31766101041685	5.05731636832927	5.27752016053529	5.62735506388359	5.62501074647062	5.29762877816066	5.24592368893095	5.4456951090605	4.91208435781266	5.31766101041685	5.31766101041685	5.56035088690433
+"XPNPEP3"	7.24209816791887	7.07297014617975	6.28095958916542	7.35615358332314	6.56183914688111	5.69427303874825	7.86457337752334	7.46941935541676	7.3633817996237	7.42936662296344	7.52962771853981	7.24209816791887	7.02213176541964	7.04588186393826	7.37670008766335	7.54978215802728	7.3338612943233	6.51917094596604	7.29575725438997	7.24209816791887	6.89304812570127
+"XPO1"	7.76601721979927	7.86575228881982	8.27569542486097	7.25971952982552	7.42307069415745	7.26805487861378	7.35887501959302	7.77986999843974	7.04252901123713	6.56795313313846	7.93960464418572	7.61586064066991	7.31193606017779	7.04544254196725	7.38372062461175	7.80770096926312	7.61022610025281	7.29041239564849	7.72614769807991	7.31792571825799	6.90409894047966
+"XPO4"	4.92204121477679	4.65328026695019	4.20780685882511	4.34227119376949	4.75993536475322	4.51371473439476	4.23588567779921	4.537699768961	4.12520533220146	4.27009618807641	4.80699457422493	4.25676005552685	4.44513905779915	4.537699768961	3.86226050213793	5.21042263519647	4.37803759679653	5.05337096921914	4.54213418959515	4.70498398853389	4.537699768961
+"XPO5"	7.05431537897466	6.89889277362511	6.49757238221413	6.78823813674463	6.81690505903529	6.75976722431251	6.83140961655837	6.63238418775554	6.63291107424417	6.65120682068078	6.75878060415813	6.67703917545414	6.74578083211541	6.61676306317059	6.32136157489099	6.74969543374092	6.75433299290439	7.07309288384293	6.76826527863109	7.02962858940913	6.85881330276261
+"XPO6"	9.63101490860948	9.7043259611582	9.8214800570612	9.4582951129905	9.64171139421416	9.87330807164615	9.36693483809414	9.45924163397118	9.44123522353966	9.37949476458458	9.85293098581933	9.42013167250661	9.36962183125951	9.59531329677429	9.42578801223498	9.92313808437759	9.52444999901898	9.91049917340584	9.42290824779773	9.5844663471968	9.62551565298114
+"XPO7"	8.96139848832475	8.63837185792701	7.80146352151452	8.4366596517119	8.13225574239861	7.94506155878663	8.81069398822665	8.92110189270741	8.54428092909216	8.71303289831277	8.77623954913921	8.76520046128033	8.10227157025269	8.35778833852535	8.28916883635859	8.78011996763298	8.65107364152765	8.46389069059017	8.68134358209595	8.86788708297196	8.70433970559563
+"XPOT"	9.18759977883998	9.01690885347042	9.20981636623919	9.05961678352828	9.16552059914765	8.87500524885252	8.87008995961692	9.04582578223889	9.08906295631643	8.87944078930043	9.07530448546129	8.91719349566459	8.82523205616511	8.85078542709188	9.35708023498506	9.15319499182491	8.82961126890285	9.22096990638317	9.06175157013397	8.98124205171105	8.90730052140296
+"XPR1"	7.58779631138715	8.35871550427418	8.71999587536749	8.36447414086814	8.73091692435993	7.77161629445567	7.54289494633838	8.1543807630535	8.53201694848661	8.37686883541011	7.9134763072934	8.34675124695841	8.50814183557473	7.72065732940902	8.68488094056536	7.75731468559342	8.61116362336677	8.39437451247207	8.39179245528218	8.67578293582886	8.40114337913171
+"XRCC1"	7.8931339527905	7.5892956809123	7.85025810617101	7.69823027278403	7.49205953239864	8.06641498170813	8.26098440692138	7.65177898859526	7.62299958066503	7.84433317440916	7.73940672330047	7.78970408915267	7.5967920329877	8.1195697452275	7.65559602908194	7.53809780178152	7.76437815459716	7.73765085468487	7.93013299024138	7.81294700312016	7.65980338978773
+"XRCC2"	6.95566440786911	7.21981362168959	6.91647277581859	7.48537317450008	6.6239360149586	7.08540606214367	7.34177837970259	7.29182999818188	7.34678902875304	7.00701182828957	7.4806505114081	7.13936834812975	7.456355762506	7.44614925460347	7.51687922372381	7.02214884012908	7.45551222620573	6.49831034148263	7.27351963928135	6.6390517059029	7.06950500202808
+"XRCC3"	5.58966802541523	5.88214773559248	5.94457397322377	5.92924032974049	5.51535783521247	6.04981717946903	6.00457456699752	5.84327211858237	5.99372918752068	6.03392174596878	6.06772936633564	5.97548221768293	6.22794138035113	5.70722452870526	5.88622930518672	6.05632808213851	5.97060925141679	5.67434884072051	6.20770842983421	5.8031252360188	6.02320979838457
+"XRCC4"	5.08961543800521	4.3703964778965	4.1245437502968	4.03939246315078	4.32306681520872	4.32681180407788	4.25964472169835	4.61381939416922	4.3221135442654	4.40519364603505	4.67642041764121	4.53829784095092	4.20881477822741	4.10346786740494	3.87239178676456	4.72270726776098	4.13423015563616	4.94695998158874	4.34227119376949	4.46026691973618	4.17208385146446
+"XRCC5"	9.81895798618414	9.88614136040422	9.39694900453151	9.55751657994369	9.94703714673232	9.16976871880233	9.41090912146115	9.90449711030209	9.74328393439882	10.1905749932613	10.0124284157419	10.0538875061045	9.27412898125148	9.06125766387602	9.21717490734836	10.3315456615787	9.82261850988537	10.2583640997497	9.81980869951656	10.1191002413607	9.94714544400909
+"XRCC6"	10.3884901438118	10.1894371184959	10.4133697010141	10.1186075003348	10.5458637157312	10.2248130018762	9.92547933882808	10.3021018693404	10.2853088908802	10.6920850883212	10.3625301676284	10.5731492936036	9.97658377102203	9.87619741668265	10.1435284259571	10.3755989531443	10.3175249578369	10.5288269753971	10.0715982517282	10.7313051102042	10.4847916445313
+"XRN1"	3.73165349897578	3.97521665806832	3.31395855647172	3.8944539031093	3.89585437087769	3.70301184353163	3.59035006425724	3.9426453942889	4.06114787552274	4.81479594080073	4.16958240098831	4.52813473154589	3.61389492463081	3.69210331452354	3.82644687748366	4.16243134019978	4.0462173732322	3.76179738696769	3.75105922811081	4.01304579619083	4.10068431194039
+"XRN2"	8.05648804917404	7.31577837994808	6.83575558960183	6.90476406010233	7.1891345340933	6.80152820007122	6.95561803246471	7.51205937432118	7.12728883601344	7.23769176352422	7.38625688667207	7.3678834973906	6.71958382412779	6.95218577673782	6.71458822158726	7.31276564447204	7.22202157381594	7.85113897076163	7.05482097254221	7.40928044885204	7.39277880061003
+"XRRA1"	5.63282737911643	6.049801240366	6.07526824947254	5.52816628969541	5.84308187704603	5.90867307234423	5.85206844667309	6.06828207387565	5.55536887123637	6.09807135682733	6.47136280251535	6.1802841484407	5.79976601284619	6.0861721474459	6.02493961888676	5.87369296636754	5.81800873778879	5.99378602444086	6.1437931891796	6.1898769223045	5.84637534485406
+"XXYLT1"	6.69721898786591	6.74859441373745	6.64986401645225	6.59523016409919	6.78588740033768	6.88698131675234	6.59219254372013	6.86337711503178	6.82325557334205	7.05219167002796	6.70579919937004	6.75369431649871	6.41520507220013	6.73011986430941	6.48736446627437	6.36294637340391	6.7597422165611	6.76599703744181	6.72887100982469	6.84793749555705	6.90177735660944
+"XYLB"	4.89457120092094	5.06111813829313	4.94830185638279	5.07036396712158	5.04398923813979	4.76759972712635	5.02574752229231	4.9663367316451	4.91912212229306	5.09122390903668	5.34268452940572	5.15058164026976	5.04398923813979	5.05415478510077	5.02724438788711	5.64690264545189	4.79270198699201	4.96463082461312	5.0848364363794	5.02724438788711	5.00271659883261
+"XYLT2"	7.04242796061501	6.97218642490699	7.30889949120732	6.96969675435399	7.02157297135436	7.55939030411713	7.45016253875835	6.98512356303049	7.30414749805392	7.17304550380306	7.07806785808507	7.1127619741543	7.20435612273683	7.32380981700413	6.98562712499898	6.90237709266814	6.9990067347789	7.29656209345111	7.05534878064744	7.36150013005599	7.02959696541907
+"YAE1"	8.01584753889231	7.90118823370882	7.73193240281627	7.7418942809172	7.96526370668958	7.10026831377161	7.39996772333862	7.5021528499008	7.67724692447399	7.89080810999361	7.87175540400191	7.45325558558898	7.28814501553504	7.53829244739667	7.32455708986376	7.82386107936988	7.18445533222377	7.72322473918364	7.72876159629087	7.92410896707657	7.61000481043321
+"YAF2"	7.09161313616351	7.0100548336104	6.4242015762989	7.14663824109483	7.31257673493964	6.22275259776217	6.95901585685984	7.44156932109251	6.91313667228754	7.28369891586676	6.80520068845386	7.07372200390796	6.63710125539031	6.49458863000933	6.83660747586127	6.75470520866282	6.97147858200956	7.16474156239127	6.80005458067239	7.05895986834075	6.97326627701011
+"YAP1"	8.08294189872248	6.738224974918	5.27594934646413	6.73631054314411	5.51698186140246	5.62647035385957	7.40984688685213	7.61408677436828	7.19618789412299	6.84357404997433	6.85524941044653	6.40647006898233	6.47066871748144	6.61570394251425	6.31684513656109	5.57311029803484	6.47360031140518	5.11222255344009	6.74596926348707	6.38620290980843	5.53162556832493
+"YARS1"	8.95534792684705	9.2405096634807	9.65843351376032	9.15988676345695	9.89945105247077	9.61864295310356	8.87093963421488	9.3343604411296	9.44994619822683	9.66866014389968	9.16930029337133	9.67495155647931	9.47613172312072	8.89059810142097	9.70975223071135	9.3326274927209	9.58170183984727	9.74914240817551	9.33526325484288	10.125296358661	9.78838142504784
+"YARS2"	6.71737444023649	7.06206817328452	6.88078057683777	6.95771814172239	6.95767437513497	6.5903350692276	6.5850078440185	6.78455909971804	7.12291761909165	7.06204395372646	7.05429647733784	6.7315830577094	6.98400717070094	6.90538420110453	7.22606024116433	7.04780918556789	7.00476189340952	6.95592852327784	7.05534878064744	7.13106191583037	7.12098008554743
+"YBEY"	8.03324401771196	8.48175006313211	8.19905850583744	7.68615967929174	8.97039017995667	8.73652399417547	8.02232614810688	7.74599548289784	8.28289084825564	8.56425476359642	8.09825435574039	8.172197279201	8.07386048600709	8.68009833651059	7.61658159739931	8.08497425083233	8.01773756046565	8.69448324943082	8.19897949966423	7.98166145169482	9.06593384715209
+"YBX3"	9.22658050367993	7.35592929390203	6.64809576698149	8.31127151868865	7.64853759663507	8.96662608440383	8.51961541743903	10.7247900315496	7.87355341046165	7.87392110722685	7.50972918283852	9.29614350054544	8.34649697173275	8.49782184118945	8.23888884231641	6.95602216800121	8.74422215366402	7.70217693675143	8.29951569454613	8.61583647459003	8.51450473228122
+"YDJC"	7.14738832808681	7.36433333765008	7.46935038012226	7.47230846041566	7.39578151868287	7.8731600599838	7.7575055521764	7.18877230277729	7.43324296728556	7.4309360508458	7.06223162833477	7.34367247226005	7.44899582815246	7.73164088889583	7.56519401775571	7.24178748730841	7.20529388097565	7.20890364371789	7.24029565782098	7.55667112217107	7.41420342256465
+"YEATS2"	8.33515539196441	8.33690650462037	8.74869258488562	8.59779095616616	8.65715107427617	8.75405505718758	8.23756288353358	8.53088332749381	8.55414739953512	8.3855462654914	8.46023714133671	8.53484652951223	8.53000622248523	8.19668119547336	8.46403906711507	8.46507744836371	8.42815803142142	8.74338240362539	8.42672223683012	8.43291941923262	8.46417078264487
+"YEATS4"	4.3620423794609	4.71794294798966	4.78946362787565	4.61769764084509	5.06264031007074	4.19644657997078	4.34450100476402	4.34227119376949	4.29348761664864	4.77403461459189	5.09398374876055	4.54137198263651	4.53830571837341	4.35285682846784	4.30373337388967	5.03020419421564	4.538957857656	5.59935352653177	4.7967531723569	4.57512919121534	4.83009766876797
+"YES1"	9.31341444759025	8.40940596962161	8.18538728936935	8.55122823441943	7.96655899369293	8.40070227849262	8.82581074296022	8.91530431914869	8.23433173515649	7.93989040908093	8.73968865351673	7.72614165398475	8.26979308804749	8.52929239558718	8.41466076429227	8.57596147959094	8.00274189688416	8.79340614838837	8.33417851966491	7.84495041997416	7.99688592007301
+"YIF1A"	8.5516189958937	8.38379254501215	8.24157988716941	7.8185945642993	8.06667305086097	8.003073457871	7.79620169039936	7.99337488386535	7.55350605824581	7.99088152599298	8.90379124681231	8.0698795117354	7.04089280919963	7.4925370269207	7.29959388426044	8.9172839989324	7.63143010262008	8.75283912084464	7.63104687768115	8.43276877293751	7.77196691715802
+"YIF1B"	8.2380997219176	7.75512169886256	8.52750091943216	7.5857238812094	8.26074655739738	8.43598816877591	7.65391710428943	7.75846551284464	7.68317850277005	7.95316973918232	8.04036116963579	7.8594785924262	7.74691223807175	7.66116774589044	7.45925329951939	8.23181772433347	7.75180006644269	8.56956388865094	7.67611371084602	8.45173219217267	7.83108383975816
+"YIPF1"	8.48592510101994	8.13751732004613	8.41175206753214	8.22394867234571	8.32082691367761	7.97706001122546	8.23114491259184	8.57088932236407	8.03168958247257	8.16315732967292	8.01398639126063	8.28873342900655	7.82871646499919	8.07149329460886	8.34130151792109	8.33224421241837	8.08529297018582	8.31236725609527	8.18713497131233	8.58791579065682	8.31060390938329
+"YIPF2"	6.52449870218914	5.96395811720883	6.07284482749521	6.23610911726332	6.06879583050922	5.93737302349152	6.35112267663581	6.07200890087661	5.92790782022834	6.670623391305	6.29079601809376	6.59716826366417	6.25843170820867	6.28598988661615	6.03757809061931	6.46446187393286	6.29430090802031	6.54367896325785	6.0196709552551	6.25662478503224	6.63021972805313
+"YIPF3"	8.02266595095597	7.69808465166877	7.85489696407196	7.67272315797752	7.84043624885605	7.53917804439725	7.75801479564667	7.78794248692631	7.49806153408805	7.85030627089786	7.88674999814959	7.67314194649345	7.45117162421071	7.20876712626085	7.50651986207454	7.95307285737298	7.65664793333591	8.16907349343677	7.47906714040624	8.25680570673249	7.70770462165977
+"YIPF4"	5.15536926808763	5.05788873440796	5.6155013310348	5.25607658245799	5.18180194753898	4.891431597517	4.63436399294542	4.77613573055019	5.32695718102118	5.18180194753898	5.46484015896694	5.10694711318915	5.32692006831047	5.0775669262749	5.659461385859	5.18180194753898	5.00262370626918	5.91766676700995	5.15745665202479	5.17642270484016	5.30113932366454
+"YIPF5"	7.2966661726559	7.20291652238465	6.78551946190959	7.10761750086509	7.69485646748125	6.35463561599815	6.73339963261635	7.10079851138657	7.34115285453531	7.75286104750758	7.26905616697539	7.5960334327179	6.6500141523246	6.3593364505816	7.00467147436248	7.87050585176416	7.40406503832942	7.82785550731247	7.30039994398777	7.94650823857469	7.73497071012653
+"YIPF6"	7.37191486115625	7.19586539449375	6.82564601249223	7.10533973900314	7.09140412191157	6.59169073844912	7.23994069664334	7.45845865761275	7.19031052041361	7.19411353327294	7.22337430141121	7.19411353327294	6.9835368793189	6.80620647061034	6.88517047760914	7.65009556436011	7.14478204519996	7.76853989504387	7.10858839816785	7.51762381669839	7.24388805953939
+"YJU2"	7.71807957977381	7.7771359525702	7.52641966897154	7.77916374764742	7.46452726972501	7.84851219529122	7.53021705040242	7.6230640117306	7.33518395056538	7.73099135881245	7.78902782488904	7.65212056576441	7.61899894901053	7.95408761704647	7.54971848186998	7.79761608465522	7.35035570903452	7.67213180399088	7.84223911570746	7.58085136339331	7.67405888157167
+"YJU2B"	7.96044146237423	7.8682940753522	8.070186146219	7.68613200652634	7.71849519569511	8.30614956580499	7.71088392818991	7.59247429148424	7.59388464235348	7.62474472460275	7.95521869771771	7.57598666008692	7.75810530794753	7.84010822770647	7.52845539248031	8.07281311834273	7.62715597897618	8.2607950710836	7.645497213344	7.77501820066339	7.66914473236829
+"YKT6"	7.61069765925854	7.17216364106864	6.70392124686807	7.31727151381248	7.3935542049789	6.62168126631023	7.82660117991606	7.49423575269326	7.26403080705648	7.77108144650278	7.52126100747105	7.41631194661038	6.87727957242249	6.84960528330915	7.32455708986376	7.1776834219153	7.04158391719015	6.98227262550933	7.54822572216598	7.69978588353491	7.63716238608959
+"YLPM1"	8.55388129801901	8.40320046810577	8.5224689081763	8.13006334294591	8.80548126209137	8.36859573726484	7.98671184285983	8.25717621419814	8.17373301123391	8.46471657937095	8.72063163621263	8.49419099261029	8.3086108650589	8.49686203884709	7.93344446701266	8.71327503879586	8.27613230861676	8.65059865517143	8.0127242431217	8.73901438568163	8.49020807788027
+"YME1L1"	6.23495662076414	6.43039510811275	7.08585063102609	6.27814411074705	6.95305900936116	6.22147737905763	6.54409760479308	7.22645357084199	6.60507584093467	5.70105788284187	6.70579919937004	6.63031780855298	6.22732570127812	6.51830235445957	6.88890540853555	6.13657161634673	6.71415420222551	6.53036259315506	6.79455235872577	6.14505941677971	5.83330025980644
+"YOD1"	5.3537604684284	5.38626016271458	4.57278730737463	5.35244269680355	5.26405429122482	5.28792005729502	4.62478644283663	5.43784965488056	5.37781294577201	5.41457394516904	5.41458795061706	5.72369457402731	5.1867296092641	4.88841931332673	5.03493037719938	5.9183515147921	5.55164005273765	6.00670622707959	5.55895229117671	5.38626016271458	5.77732660985098
+"YPEL1"	7.34954162218017	7.54451421885689	7.94043747245821	7.56917873683245	7.7579828789916	7.14496332710353	7.59707384773243	7.50056589767859	8.01535329253032	7.7845580025227	7.45119212742551	7.67569727068266	6.80563887744244	7.20799030284147	7.22704443361305	7.03096907847634	7.7619066202373	7.2596887710881	7.68839903700298	8.07028146427802	7.59935738528877
+"YPEL2"	7.60113839832106	7.3833457110496	7.86371603321914	7.30076769143104	7.28588823288609	8.4383101755033	7.27485110041379	7.12868655397292	6.71611549314046	6.39964090649263	8.05601728851528	6.73575969806026	7.07484406575444	7.15622117791447	7.68004720844733	8.15848184202429	7.34993206768397	8.47413433340215	7.33609399252932	6.77127639178444	7.16218365838408
+"YPEL3"	8.05968697309673	7.60336821578856	7.56709837359537	7.70740135207226	7.09262161326162	8.02668299739447	7.81014765893891	7.65546139972394	7.62411203823016	7.39089613608485	7.89206994177441	7.39563754127559	7.31398301861658	7.74124647864901	7.67483325267075	7.65802595010444	7.86630464113141	7.95755216752404	8.0142918030947	7.10458025444804	7.54728186234976
+"YPEL3-DT"	5.99631055720585	5.82838691230664	5.89833305352563	6.04865733319578	5.70762749717332	6.44831099705524	5.88958825488524	5.58330852241241	5.8704121990033	5.85372481129659	5.88585626317765	5.99631055720585	5.90527441329735	6.28668674712019	6.07496680200314	6.00199352895644	5.81871832279205	5.48980867345041	5.86265331479809	5.85037860556996	5.68252365059641
+"YPEL4"	7.75406785164334	8.68318319390978	9.13867316595605	8.57969769090188	8.98816101901104	8.59693649259667	7.93350663198977	8.69258165359616	8.64168185385078	8.77575471742093	8.50170668548678	8.95240202996178	8.59211963383186	8.31663880471673	8.28031609162711	8.68318319390978	8.97851586663032	8.85784395628193	8.492493786944	8.91247999354848	8.7750575589346
+"YPEL5"	9.95253702450257	9.83057569965554	9.63783159457406	9.98996483902694	10.2948174530479	9.29788764475301	9.31862633279421	10.1151192182165	10.0896477337099	10.506483259398	9.74085650340086	10.4067824912058	9.49995763332828	9.44271180744506	9.95968372976531	10.1649286219198	10.1878024223859	10.188170024263	10.1544757548661	10.3611672180045	10.3506600757338
+"YRDC"	6.96198792443898	6.83724048985484	6.49247497928418	6.78253004816689	7.04425745973016	6.23588144747718	6.62308189860497	7.06658877217719	6.92758942388146	7.01871218982126	6.61400992576726	6.73519090027665	6.67350820411496	6.02706958535374	6.58147214565638	7.2908132752695	6.76511459784081	7.38449479600521	6.42225146701926	7.23527502758923	7.29860729754003
+"YTHDC2"	7.04425405286001	7.45862306701208	7.24212140659186	6.99511496291843	7.59506165974472	6.85917167735493	6.58151317186307	7.02842868998494	6.95534557267313	7.54363155484774	7.16281255123941	7.72832654070731	6.66278895187424	6.49727703242468	7.18236408882751	7.55207563070288	7.4814081617999	7.81565119071814	6.66822150657604	7.28026685424425	7.52421300502099
+"YTHDF1"	9.60236659148103	9.21632246729155	9.50727996298444	9.23693996813184	9.20548696271076	9.21800290654298	9.16796849897138	10.5119830197845	9.24174632986453	9.27574809259619	9.45017814177952	9.46557888581243	9.04928578583324	9.10943887434816	9.38725772082907	9.22601788172091	9.3656563307001	9.63949597160206	9.26811156939149	9.32213258733756	9.50039516875377
+"YTHDF3"	7.23750800018248	6.97388981290309	5.23816826335924	6.42078071479077	6.88179621678853	5.76337471217883	6.47105366290416	7.11999265797565	6.60388199545671	6.73291960972748	6.77921301212566	6.35756915942612	5.90955629659302	6.04863461812674	6.61164941904736	7.27152014073708	6.57597294122377	7.24436539579128	6.45702541467109	6.59129156564945	7.04029151883567
+"YTHDF3-DT"	5.34258980764404	5.43183697376048	5.79331862638759	5.45471428065534	5.63199140177814	5.46026452550732	5.85900672445729	5.49883115556045	5.46026452550732	5.52709528988894	5.59698121098176	5.50816853495466	5.45738634327131	5.4565873208505	5.50816853495466	5.62174256160154	5.56120411157121	5.82473918473987	5.46925613332068	5.3300860334468	5.55724777978548
+"YWHAB"	10.5487360745167	10.8496651744098	11.200511783282	10.9464635564495	11.7933555844371	10.7928538819986	9.94026977450275	10.8187819615437	11.0024174919054	11.6845254942052	10.9407868971247	11.6002280319752	10.6423292993803	9.91334929588498	10.8271687626233	11.4493331649082	11.200511783282	11.1005215909909	11.0594606724254	11.8121057357342	11.6504479172244
+"YWHAEP7"	3.63357333877572	3.85026675541557	4.12015676052935	4.01219874455288	3.88819175572571	3.84441650320926	3.9721020732392	3.79880314307252	4.07596612372769	3.87417895667573	3.61172431356606	3.70510694544079	3.94798784694322	3.92331228768851	3.77066619698907	3.84441650320926	4.07408148578801	3.51282609641164	3.80183988805249	4.06304868469406	3.91646054669371
+"YWHAG"	11.7061534366699	12.5078961748512	12.6727318531067	12.6176121741083	12.6354463253647	12.2368902532038	11.621876918491	12.3243982510488	12.6799491865818	12.7478314314749	12.142772509989	12.7983290890059	12.6842801207406	12.1469907081971	12.7567873244709	12.2063913173357	12.8564720136062	12.558996430787	12.6251152708859	12.5908869221821	12.8839148741921
+"YWHAH"	9.82299363171284	10.8023626906455	11.1538790405035	11.0307534498776	11.9784247666026	10.1598189969684	8.94744076056433	10.7580482544728	11.3641012188948	12.0325792675499	10.4144499964806	11.8751002848117	10.8623332202095	9.7798567932007	10.7424478912313	10.8739573777291	11.5952260887267	11.3900367103023	11.0877143087716	12.0687008969523	11.9735754533867
+"YWHAH-AS1"	5.95568285574055	6.35501210263333	6.40173050047603	6.38369206158457	6.30806032435812	6.26911779949021	6.30997109772858	6.27711350277115	6.51456750527405	6.30997109772858	6.18132330864059	6.29760704644708	6.21122501459486	6.30354106755333	6.04724780577319	6.3755897527027	6.29555117852518	6.40449114387491	6.30997109772858	6.62929403562217	6.43731974924166
+"YWHAQ"	10.7437175728499	11.3174654184433	11.2448273472863	10.9379795020106	11.0377394948616	11.0256734804845	10.002746281372	11.0104494252926	10.8338946593166	11.0024148153889	11.5478487388291	11.0833532987886	10.9029306374988	10.6209893818429	11.0998925645132	11.6511612401684	11.0298708394181	11.5360297192123	10.8248993162905	10.8568068322901	10.9497399283315
+"YWHAZ"	10.7456977912607	11.1287445846166	11.3641835142662	11.4355872611509	11.7325481633589	10.4232169510738	10.0044418777005	11.0454469434221	11.4098867717717	11.8622950873441	11.3261567909075	11.820846207384	11.0805559844268	9.99752417843144	11.1110763030046	11.5503983572535	11.6768584074458	11.3168558875513	11.4250848695696	11.5820062910573	11.8791449984615
+"YY1"	7.32692345624389	6.99762948791712	6.50941347215224	6.95801990807231	7.06991687588533	7.24454123857203	7.36457753900885	7.00182174650563	7.0839875246391	7.57170874883501	7.20677807987571	7.41138800243428	7.04125980710436	6.91068217643247	6.80095362596846	7.39032393475074	7.20677807987571	7.69850532754418	7.28545878254387	7.41966664779878	7.34712994808779
+"YY1AP1"	8.7107183957344	8.53662665157885	8.84331114140055	8.46763047672448	8.55463070155862	8.84744941771224	8.22068378720327	9.01390465201716	8.55058271944844	8.57283653101201	8.68284665302018	8.64082493707685	8.38942529444689	8.21082515530063	8.4411393784731	8.4904909143516	8.57790145615235	8.95871141221366	8.51725476166858	8.45986501840816	8.65589220994816
+"ZACN"	5.90884177117614	6.10210788635544	5.63828899016293	5.9622260186362	5.68333644981896	5.61805972055116	5.92553634732532	5.56296355896766	6.09491043099433	6.05034688539126	5.91536334384264	6.03329067401851	6.27685529956173	5.93947973504191	6.07298516542709	6.0018198338542	6.1111336112764	5.8216699579456	6.06469893376423	5.57715538968743	6.07752419170842
+"ZAN"	4.71013464330785	4.84731100655994	4.80776702685512	5.12984697128616	4.59924486551232	4.82255418563632	5.22626996729198	5.10911100084409	4.82986379765831	4.92366361624892	4.82605185583105	4.95034780055534	4.82986379765831	5.24648117082298	4.9824784063198	4.98572312466477	4.92694705026923	4.79798341781861	5.01424964028971	4.83346409266977	4.75028735921316
+"ZAR1"	3.96891182813765	4.05843512021964	4.29829233400292	4.39408025879918	4.28106437939468	4.21603379475843	4.24798806003862	4.2992084086322	4.34319008700208	3.93778669090293	4.14280458115408	4.28721330125701	4.0835990485503	4.262917645818	4.48130085718547	4.21603379475843	4.22700436599595	4.03979539245002	4.21879942279184	4.43440737431202	4.46263279905665
+"ZBBX"	5.66090718515196	6.64295266412485	6.70276431561556	6.03705658671325	7.42371834851196	5.21410784790777	4.472883228313	6.3559521266307	6.40946718441963	6.28677813550561	6.12882759684105	6.88414940668729	5.76021250631399	4.73516528929961	5.20020678683893	5.10050304169266	6.61496536655245	6.12787726516354	6.0168271914925	6.79832855477043	6.05499011353193
+"ZBED10P"	5.09740023197423	5.07987397877346	5.09122390903668	5.29817290339266	5.11434658331061	5.20930546685132	5.25330383799067	5.16317889526867	5.36758962124618	5.26549339821206	5.15815866543492	5.09042115516684	5.22846558065112	5.28188574980964	4.86897000823122	5.01783725849251	5.01876143709558	5.38281077175084	5.29865323621443	5.05495688818135	5.26571226065917
+"ZBED2"	4.05335323339488	3.78435111128076	4.05700711452143	4.27210663434774	3.88509171534632	3.99245576965699	4.19080267260145	3.94145862339612	3.93774057203347	3.84454372958106	3.98148794884934	4.03558645900085	4.02714387774633	4.03198295905609	4.3050739356731	4.15880900547937	4.12513839382973	3.88560055296215	4.03198295905609	3.80193365945235	4.18907787781076
+"ZBED3"	8.07797908652669	7.92331282058376	7.47065769527194	7.32255383585343	7.64614021897001	7.80940116239358	7.45588544479799	7.36402131954645	6.81413801774231	7.33905610905615	8.04306119688585	7.06425309632101	6.87462833048908	7.8856149349572	6.69784159185173	8.9153286009435	7.41146193676031	8.82619147257139	7.04681738600603	7.30861583714066	7.14501992937901
+"ZBED3-AS1"	4.20291384464216	4.01584366744109	3.98253662619582	3.95107422412131	4.02714387774633	4.26263195449424	3.99103898958243	3.98706147375014	4.02714387774633	3.97100821972846	4.27938651715917	3.95963432285565	4.10462521516712	4.01249402683781	3.93642082542249	4.19508045316658	4.00469005808625	4.57438437403914	3.88415464613034	3.88509171534632	4.18680461908122
+"ZBED4"	5.97073021382706	6.18436346480293	5.94203699468643	6.09050359156255	5.86295160939661	5.16503856605198	5.7449945447873	6.24612777634532	6.35487495053115	6.29430090802031	6.16154472536262	6.22842160000532	6.03565290500067	5.67104001887357	6.11230957775545	6.68955941467577	6.74219132852422	6.12597113405316	6.3914965043709	5.96940301547551	6.2206959803495
+"ZBED5"	9.0630533737764	9.18392479077561	9.42208609358173	8.98669416834967	9.11413006227126	8.34190983397957	8.67698606119911	8.90064557300952	9.02294333559771	8.99309539623916	9.36038321923681	8.88793673319221	8.72517923220499	8.69230740987634	8.86553127270581	9.24231849418081	8.69098788824167	9.21342076253134	8.94052570755013	9.07173412810146	8.90542355648579
+"ZBED5-AS1"	8.99996069845355	8.03807399616331	7.71700669776616	7.57783465509348	7.79644385482821	7.53843968364374	8.16217454329325	7.88497468005122	8.12817637147344	7.97494916383315	8.42114347994577	7.82500491694963	7.76832026275715	7.96960066396206	7.34326155974734	8.06947353591183	7.6588822442072	7.79333440553696	7.60100154705903	7.80640366447501	7.46606283218952
+"ZBP1"	5.62092081259976	5.53877296903047	5.89330214249942	5.72365622782538	5.41816102209839	5.91050612167349	6.60009551426294	5.64760970220841	5.98041274066644	5.72365622782538	5.55614875817763	5.76583586281608	5.92792569755384	5.76934855982459	5.74687002520252	5.53559382724909	5.85619877304236	5.54373867205677	6.03674481876328	5.69519483375642	5.62735506388359
+"ZBTB1"	4.59542819043952	4.1520082286072	4.46342818658016	5.20701431344019	4.75128809124919	4.52570201865149	4.62470588087702	4.57148885671878	5.29611239807261	4.37396332535146	4.72396361556089	3.83920692713105	6.17642784124945	5.50435886008072	6.16336777562533	4.32945462539777	4.92180889524064	5.16652026848072	5.2506965134256	4.47713492920865	4.95943014296011
+"ZBTB10"	7.52519313111111	6.91329117703051	7.05726546428782	6.95957148441261	6.84443684193424	6.66406538126327	7.26416484525954	7.36067663244758	6.85687216044895	5.986253182295	7.42265817938891	6.47930318597157	6.74575649608318	6.98645084026147	7.12147354601354	7.02391840408773	6.78121934012219	7.40106835818017	7.01502542340015	6.76965645773946	6.23309701870112
+"ZBTB11"	8.02411069714777	8.56065150935449	9.00893590947846	8.75646204142445	9.02632771895637	8.27566567848983	7.77137264200336	8.60757252692638	9.02139272723958	8.72159742018654	8.56937701075318	8.74082652523279	8.8001756147262	8.2018011848373	9.21895277376001	8.83418928288445	8.84913613501289	9.24861981883918	8.92790714339555	8.66482557282301	9.03841340603325
+"ZBTB11-AS1"	4.72083029964895	4.95419780279476	5.06079827021605	5.12350745956951	4.90424650907269	5.14757236317501	5.12493774529656	4.87577882131121	5.16183157524947	5.12350745956951	4.84325128950563	5.002952959703	5.00891563934864	5.19466923023024	5.1941419742949	4.89902263493298	5.04003097162902	5.06711407115434	5.08139565885479	5.04162096843986	4.9422164281907
+"ZBTB14"	7.1742734552394	7.19157346428445	7.20116480498152	6.91672440854205	7.21553459191859	7.32737205699523	7.04759563685028	7.0661550405022	7.17577545808708	7.16694914199662	7.26835774915608	6.8152681006574	7.08750161230483	7.61971586298567	6.95252771749192	7.20116480498152	6.97505064034979	7.79019315412319	7.00051906524526	7.07817081872065	6.87866536553637
+"ZBTB16"	6.81233291527755	6.50771222035084	7.2486550673127	6.36518168044999	7.45361495200754	7.55371820501196	6.37302169944688	6.3598859077153	6.57252084299673	7.3305449316845	6.15237385855279	7.09719426049523	6.28077090606583	6.61596535299321	6.43015390986321	6.2752789901321	6.77763310710605	7.07737605383207	5.81007696811186	7.01714163905033	6.58905048736077
+"ZBTB17"	7.83614566564287	7.5892956809123	8.02699332431323	7.39308485747497	7.67214869433412	8.1306373602104	7.79821113823264	7.55893093829061	7.63176052154904	7.45283522117685	7.51638241867641	7.35346043663025	7.5169376511098	7.52125386698955	7.5767555011942	7.74609434530033	7.5508387497693	8.09080215903025	7.40907402864695	7.54561001119081	7.48807380365827
+"ZBTB18"	7.87760430966228	8.06348743589423	7.62405832130785	8.02293010203464	8.28701138527915	6.16075978256081	7.49495211114579	7.77859428096882	7.95685182606921	8.73905469819828	7.83258571629991	8.73918887917818	7.25204742771898	6.58877094407845	6.93105031126933	7.930613444717	8.48612726086376	7.91209650110478	8.34847601535259	8.25668338641042	8.57653620191394
+"ZBTB2"	6.09512411230697	5.7105041902782	6.06886133524067	5.83718042038659	5.5941733389914	6.32210438140003	5.71825663897047	5.9423607371163	6.18457493396861	5.66105270454207	5.77127192872887	5.29611577663845	6.38197749984697	5.94275704996998	6.19770027577443	5.69556155642259	5.46844729341624	6.3202933942986	5.76542555928796	5.67914191207628	5.61558516894662
+"ZBTB20"	8.22011076561923	7.68207710840568	7.84703793038444	7.25578075699185	7.30491197950282	8.19421525052506	7.41377662091285	7.2529485128021	6.80336761260937	6.58370621386294	8.13887251932979	7.13863570951808	6.34441401233687	7.48303630586515	6.97870963064467	8.45993488429793	7.26192933292031	8.2199975273822	7.11521373922584	6.70978826152895	6.91288623908995
+"ZBTB20-AS1"	5.72688171037986	5.71656556366923	5.71656556366923	5.76983281147398	5.58256790713747	5.75671016114971	5.5209470198515	5.68252365059641	5.67593138489352	5.77951905856301	5.71781134529233	5.71656556366923	5.83001263705432	5.81646974933183	5.56035088690433	5.7637414832805	5.50400016603991	5.52150642601919	5.64694164845214	5.64869488477305	5.86651786244194
+"ZBTB21"	8.07736348255019	8.00523607425569	8.31830144073444	7.95198981580115	8.03294674793869	7.44218655981398	8.03294674793869	8.59337356787528	8.21841857347689	7.27141350776346	8.11448998010492	7.85584503930089	8.21331105668865	8.08825278450003	8.51703725767207	7.91322447450009	8.00722224372707	7.86357893978464	8.04752058105948	7.62744164714875	7.80011255143107
+"ZBTB24"	7.12414458952945	7.35444062919807	7.81418786144229	6.79637189476592	7.54583912648351	6.75956603078086	6.748995111944	6.88888460084858	7.27204854042042	7.19313135107925	7.08978542747373	6.66981997760914	6.75201916407115	6.73870719825071	6.79178878387545	7.60053493099485	6.98284680687673	7.44161170278851	6.98261231804424	7.3781491741919	7.23856006348858
+"ZBTB25"	5.8307772269948	5.79976601284619	5.92215013472151	5.87112525148566	5.95971018917307	5.41904970538095	5.16003100855898	5.84910013976658	5.62919530279041	5.52425197220782	5.95452433889111	5.7185634612385	5.38164258137414	5.67287582872967	5.64994233990168	6.27491531476537	5.74491081385495	6.18108360107687	6.00426024173434	5.49522158679948	5.97586125214183
+"ZBTB26"	5.85780263445656	5.76865292673584	5.16304009926144	5.64373376507121	5.7702348393723	5.25193799628145	5.60398955287431	5.39240346409218	5.61796792286693	5.55459517134971	5.95558163862898	5.70414896902589	5.32593307367177	5.31058037350279	5.61958300945966	6.40859268108312	5.65073926990682	6.06825451229083	5.71985775563091	5.45496552236827	5.67075394420058
+"ZBTB3"	3.99532308357898	4.09348869556671	4.01615771219074	3.99532308357898	3.96085796038483	4.38195702000894	4.15688419928874	3.67976320672778	3.92528462849537	3.81675919345026	4.36340009396813	3.65942513670441	3.83051570585608	4.76034552403767	4.12858431633832	4.63576160842815	3.95191836908537	4.92457847543009	3.88648898733343	3.67715851034559	3.78865982415335
+"ZBTB32"	5.93117398469806	5.71466689287844	5.96668269176176	5.71888035602472	5.8877571304168	6.56457855950057	6.57211625616677	5.76701022422006	6.0117321973079	6.04932185261779	5.79382992982211	5.96649763459439	6.2557323303099	6.52409453882032	5.90300514259536	5.84680436663177	5.89009200793939	6.03392852981986	6.06308944760744	5.89477565612256	5.7536440385975
+"ZBTB33"	9.25337459894416	9.13396853776888	9.42002501951301	9.21340843948845	9.12868504929191	9.06090541788791	9.03773675717288	9.65694648233947	9.3983096183416	8.98412450004417	9.06366837060796	9.19566209443534	9.28329531680315	9.074285284658	9.57565561303742	9.07473727639005	9.16611865067451	9.23390567187761	9.31813183295282	9.12836721707085	9.12006302664044
+"ZBTB34"	7.09392340102307	6.86765926579057	6.89274915554672	7.05954638171418	6.817528582774	6.8962306080535	6.94816048514347	6.73253309867692	7.17664972656744	6.50194585529163	6.73317899584138	6.21579308514601	7.01661116399222	6.90785942834179	7.12147354601354	7.01772051096518	6.80589091640223	7.51830592547075	6.82517746326404	6.86730551345485	6.51212651819492
+"ZBTB37"	7.68520083288305	7.3679813267185	7.36418913714224	7.46774218774555	7.1435973628033	7.5850084588814	7.40440278796224	7.45672362885428	7.24950189792431	6.86114914623579	8.09275384273596	7.1241288086637	7.10999659493525	7.72253845781406	7.40862403349062	8.00413751823518	7.29336367154408	8.16445885912276	7.46219697235741	6.83115975030146	7.15229862039079
+"ZBTB38"	9.32545757262669	9.33733293643092	8.93107264322282	9.53188308179139	9.83457419810619	9.10471877592884	9.03187706070526	9.47510397032661	10.0444342860302	9.61147263883843	9.33857706681909	9.76638128288264	9.57309567759317	9.48538304504512	10.2064340340985	9.2613380768596	9.57442489398026	9.45004553674639	9.49736811220693	9.29374553980264	9.21682746004724
+"ZBTB39"	6.99268175871403	6.96969833647284	6.89648364313734	6.86514611500985	6.87398190075963	7.12597214411502	6.93645612259502	6.52792769218422	6.86514611500985	6.61939757044181	6.84873645415356	6.45142570328335	7.09227547669925	7.17768908009142	6.86514611500985	7.10496017041074	6.53467031508628	7.08339556641482	6.69608433033541	6.81682532730468	6.86514611500985
+"ZBTB40"	6.19840989508872	6.21539628532494	5.59398340697665	6.3619049701291	6.09455666034864	6.18059170332053	6.45239271372151	5.83659934767116	6.08213155211237	5.96995375239935	6.18110708823754	6.01778080185401	6.17042053153101	5.94480780886133	6.4159466304982	6.10271985819724	6.05595691265386	6.22198855102783	5.79172023170665	6.21408955191327	6.1238236303992
+"ZBTB41"	8.34310797140668	8.56323213970558	8.67193169588109	8.64319077496242	8.6054681788121	7.74023214370732	7.87411073206006	8.67672557442088	8.74194115413824	8.39992823494821	8.62468728026434	8.51167835294199	8.32130488352295	8.0983602329832	8.81645851399614	8.48625022697009	8.66697791834354	8.65827122776932	8.72002255196226	8.18907726966587	8.42204768886697
+"ZBTB42"	5.38457120687863	5.12593684319866	5.35226432431946	5.32692006831047	4.89908233484662	5.76819174483677	5.57250878244014	5.31433750104746	5.34043405831491	5.35028204470309	5.23274962091145	5.24921636777845	5.37209261503476	5.66413440558881	4.98175250586428	5.19478866867914	5.36848248302805	5.03507387370976	5.49837577173667	4.86139616379465	5.193200944998
+"ZBTB43"	6.94048036383605	6.99148277520735	7.44015669953049	7.04642987409856	7.5016436107523	7.28637865099863	6.85294197297387	7.15905837973938	7.31390452032052	7.08285460915558	7.06773887836046	7.26459354951769	7.0281209559571	7.05328265954323	7.13667759442456	6.66102041486934	7.02655018411481	7.29738934711345	7.10858839816785	7.22533696086402	6.79943794651241
+"ZBTB44"	7.14169548506239	7.0628084493932	7.24253153794227	6.78540856589726	6.97527202073353	6.96529889596706	6.87752105461868	6.5248420546834	6.725812491881	6.2416951808598	7.11653071328322	6.55496245443071	6.54448794093185	6.85500281345138	6.84937405875557	7.18710164799196	6.4837893929693	7.31920820100869	6.59011677505156	6.55332035494933	6.4670722832922
+"ZBTB44-DT"	4.60547868228154	4.3703964778965	4.3703964778965	4.65197972365476	4.29531029442118	4.90636190068171	4.75497222625151	4.29938893389525	4.38878870582773	4.25172871333872	4.16547427429933	4.3703964778965	4.28768966614519	4.792041545333	4.17124858133664	4.3703964778965	4.3703964778965	4.08713362752116	4.53866336480629	4.2947976575029	4.25984989866105
+"ZBTB45"	5.35955515255437	5.25310596387278	4.2239928424427	5.04086492645584	4.89772164028175	4.8539463877653	5.57710406315989	5.01638977317431	5.269778438874	5.78485326279807	5.39183735646967	5.67931043939812	5.07098005955141	5.08812159701709	4.79368033500339	5.17861336480498	5.32165295477536	5.2959536581184	5.44298170952821	6.13656432554879	5.95240402912138
+"ZBTB46"	8.04490621604558	7.63457077364988	7.91590585263559	7.66904804279638	7.36706312308492	7.85230088241727	7.38067547138491	7.39625799698953	7.99223119431987	7.3791218412879	7.19893175157359	7.06976396398918	7.52735677156078	7.76757202255207	7.5267880728313	6.77580595784382	7.31366716163953	7.33181821864726	7.3939429663085	7.81682049729602	7.30037593939831
+"ZBTB47"	8.77145392434423	8.42316908550014	8.80982627689835	8.35814627232979	8.23533806913237	9.39366168709193	9.03180769505842	8.28737466244453	8.18844247764667	8.05809379269662	8.67777280642685	8.11998749115222	8.38863073112822	8.7742696414475	8.42316908550014	8.68734578648425	8.17542285010174	8.71022485103886	8.38285958263545	8.24782181884084	8.19801971373681
+"ZBTB47-AS1"	6.62492839953599	6.99684519003578	6.80966905333283	6.62981771688552	6.64036132112216	6.65882718833449	6.69396296893596	6.52641693362962	6.39814901919712	6.58003672720706	7.40214427410341	6.75379691745764	6.41956948701501	6.83898083849867	6.14493454538084	7.87903166561419	6.59536473658821	7.3020963795491	6.8112034324648	6.62402314431568	6.38798000963726
+"ZBTB48"	7.21992847185213	6.77978610393032	7.16185799876827	6.59740391918851	6.91641146073548	7.06212002595722	6.86771839125176	6.48832829026453	6.20425241237298	6.84444030736414	6.98017157484239	6.57552203101343	6.40220405043551	6.73568474508957	6.49496725161625	6.84659764564443	6.27828966397403	7.25204742771898	6.38656323850994	7.08314033146702	6.45912326978783
+"ZBTB49"	6.67450207724611	6.65739842393205	7.095017220686	6.58391054005816	6.8416453159333	6.79690152792756	6.35834343363499	6.8383806229948	6.88418465846995	6.66101691426689	6.61564626245077	6.673228165383	6.68752212300716	6.61285624962684	6.52646252765093	6.89404888568084	6.55345275693867	6.98763213011331	6.50610303645529	6.68752212300716	6.70052456767945
+"ZBTB5"	8.71820419547486	8.3055293981983	8.2107965636372	8.10753830853374	8.26770710135932	8.3518381895146	8.55768008598965	8.58351454567524	8.28090512944664	8.16881561185212	8.58988798776805	8.31349545112144	8.26257734452288	8.36779049935729	8.22647965888639	8.67593935596127	8.35522390262035	8.84582342508202	8.15034624427592	8.18254296533432	8.09160550370353
+"ZBTB6"	4.38920816095064	4.75067177985645	3.81567451090277	4.47245580484691	4.73584930947586	4.06717812951995	4.24220823269843	4.33877651306953	4.51769762250668	4.4326029600378	4.77276864305516	4.50027435686551	4.26280134189775	4.04811288697226	4.41016449365541	5.12114059814283	4.29237063997795	4.35791519082712	4.55974308300449	4.46871579593996	4.55514143920677
+"ZBTB7A"	5.99988385270617	6.62875171226049	6.59225123569355	6.97846059757912	6.79983559675565	6.68127798910149	6.22887287238359	6.25709798412489	7.00114192010537	6.74940369486296	6.58650830902385	6.64016457633018	7.35338853442578	6.43589219963745	6.74250530445232	6.67360241764503	6.90607443061287	6.6859049933002	6.86320963183423	6.51341607798125	6.99066516399859
+"ZBTB7B"	8.12306715807967	8.1675080582034	8.25348663301367	8.60210829197408	8.07939041558484	9.06546466218195	8.91836292117527	8.33823720833298	8.39777821140178	8.45587635830887	8.47112896525795	8.53512613647298	8.77723901061301	8.82131548660132	8.48525120863781	8.26387691422252	8.4727640226034	8.04989572074876	8.63586694442401	8.4727640226034	8.4709257945737
+"ZBTB7C"	7.41348682234556	7.75459966114639	7.78133291817052	7.59488956420516	7.81204418569671	8.06175448021189	7.73450211131843	7.54297148753554	7.83100391923538	7.66341278189389	7.34837365661058	7.57560000569584	7.81714022148134	7.89547771736232	7.64437507093804	7.01317935772935	7.71680752622456	7.48675137471283	7.34801806897231	7.95211154207957	7.63363404771788
+"ZBTB7C-AS2"	3.88617190603486	4.21315916261135	4.41448305087179	4.32526140163873	4.4338526546948	4.49057667962333	4.49852897839739	4.46943211859645	4.89385033986237	4.24495959191296	4.15893250899609	4.35215064814184	4.38195702000894	4.37870731072891	4.502288517217	4.37253480609131	4.51918947622553	4.04727257321655	4.74370901503038	4.24337491050908	4.57512919121534
+"ZBTB8B"	4.30300688570695	4.71546638612955	4.40827564418163	5.07833802150113	4.17126267341346	4.36232334368662	4.54137687899607	5.30414423973762	5.12039551741882	4.5864952652147	4.72789103076205	4.75618384900133	4.95016810569055	4.99752033216641	5.17897583377368	4.50832315915988	4.67566273766454	4.14119459533325	4.75799280259008	4.57503591610218	4.40267899544167
+"ZBTB8OS"	7.84768490780558	8.00280946507234	8.03242083453717	7.90516648464028	8.31187093046826	8.06556381229676	7.8630059015065	7.76129171234823	8.14602162700587	8.44884319199485	7.84970398120889	8.08261864419657	8.27655555359047	8.04520799353159	8.2893298492224	8.06847621745877	7.89629819947619	8.33747546551323	8.0012083736303	8.301719933216	8.33796090129229
+"ZC2HC1A"	6.83239360423724	7.30938130958389	7.97168858228856	7.64615526664464	7.77404218021843	6.86443719122244	6.25701013980488	7.05431537897466	7.69194986532581	7.59027269780238	7.37551518587896	7.66646976770411	7.24768165713844	6.55737953486881	7.37892893852036	7.35606649865833	7.8405147596538	7.27407839589493	7.37551518587896	7.59712265092893	7.46954115198504
+"ZC2HC1C"	6.50863842333053	5.88980299286311	6.08361367529484	6.27151359987486	6.13524556099676	6.09162400809968	6.32338931026005	6.32367565280854	5.897356668114	6.00608330057017	6.10347262506999	6.22068422168819	6.17458955067954	6.22508976578428	6.08258175195438	6.17098123118962	5.78053330223381	5.98212883260726	6.00082163620038	6.32360191546496	6.10172455145438
+"ZC3H10"	5.30751121502584	5.16109427283494	5.42210685631753	5.43333088215063	5.11352858470403	5.25354482365896	5.77278994185679	5.45997669608777	5.5416937103325	5.37062177912252	5.11334263670147	5.38960526168764	5.64561458128632	5.71394512453037	5.42210685631753	5.14417187522508	5.43356350885486	5.26855596942441	5.79976601284619	5.5235297523886	5.42210685631753
+"ZC3H12A"	5.55069229330574	5.36075048663269	5.07455806089879	5.60504730572583	5.41759730121164	6.04899296853389	5.72089237452199	5.49626487294431	5.34603717180235	5.2671512276537	5.25164722130523	5.46254636803379	5.65734446871916	5.83464164658648	5.46936209769177	5.17452614496514	5.61825214881065	5.34656772859356	5.28571390265896	5.43744199103278	5.4672962692312
+"ZC3H12A-DT"	5.83489135196075	5.69043443235378	5.96616259108004	5.98571221312261	5.81628390149062	6.8401448665794	6.63809300637512	5.91369764004517	6.10544322980925	5.95744952422893	5.8932475105798	5.92023583075176	6.17781637632463	6.4808332097092	6.06120843369863	5.96943477464384	6.10208206894572	5.90970811610474	6.07713469223909	5.67721066036742	5.88443769372973
+"ZC3H12B"	6.71419520511106	7.57873682700353	7.79631111952332	7.44264323080546	7.90232437594707	7.31173597607932	6.30334012895634	7.30147843915241	7.70188062444589	7.54695910901696	6.97453736773544	7.57726530426562	7.40395414128495	7.17998177221037	7.28371002978107	7.0266569863129	7.56115844908167	7.47142030990236	7.29262868909673	7.35818890034481	7.29146149035926
+"ZC3H12C"	8.22277217942184	7.48521066257035	7.49932794430437	7.68728357588553	7.28763965625674	7.83481212525931	8.34128802714528	7.18695484475014	8.01229355797916	7.15611847760867	7.84970398120889	6.7996209448433	7.47897062759592	7.6118593910408	7.9149199498793	7.4278292790105	7.41113657764484	8.07561171147183	7.35378572096828	7.22114575915082	6.78571048955474
+"ZC3H12D"	3.64085077277373	3.31329681227067	4.05479101336014	3.26406223118884	3.32220460242936	3.63801342198213	3.17138040931756	3.18050499332256	3.21355787997389	3.27966629066875	3.08873576081916	3.1220082349196	3.18473645967883	3.47285495254524	3.27420848537286	2.9776003759018	3.25309811826045	3.39056978968837	3.24221435142717	3.39666863062777	3.32423084714662
+"ZC3H13"	8.8899185961682	8.82023971924371	8.62215819397973	8.46692137126701	8.61280329588255	8.23433353134618	8.05877244197734	8.59095926200234	8.3143946087537	8.02585109114242	9.04137157519006	8.5538231642673	8.15234355059367	8.24961853405246	8.33793120811106	8.8967036335879	8.36150249359641	8.85006577710219	8.31726500001554	8.07659381831432	8.49588775798349
+"ZC3H14"	7.05914432134831	7.24165678298491	7.54998520503763	7.57783465509348	7.96801624613489	7.94652512967345	7.27098727043459	7.53774035956578	7.50897505495459	7.52014257356488	7.17372068391511	7.50897505495459	7.71644669574603	7.511405287208	8.09205615297849	6.83194902485218	7.60478140072422	7.74504686117247	7.19069138862781	7.00761854599756	7.35268780529339
+"ZC3H15"	8.68689929585212	8.95125594948674	9.2292295485787	9.23569946559643	9.51046809105062	8.49197375358974	8.4446526698343	9.28334684317976	9.42004791177401	9.43241681208731	8.89122364726603	9.37881143213535	9.24508846017792	8.55720538121747	9.58615762642421	9.1348105712006	9.39243278107012	9.34890821706193	9.42657710954716	9.32288079686773	9.4793158554101
+"ZC3H18"	6.58431634297706	6.38085512229833	6.43502851205492	6.62410630981345	6.55690489937861	6.42145317628962	6.88685031355543	6.37421068810859	6.17102607354078	6.80313380468457	6.44407664138342	6.77369387513552	6.82321448225823	6.60732534717698	6.27053058734493	6.53501723372002	6.51316638519897	6.41835831675987	6.62343228140774	6.76895635370103	6.95426747079359
+"ZC3H3"	7.57100173399538	7.30592956129748	7.3641508230524	7.17094008616001	7.42688231301209	7.70001841426535	7.48160260181956	7.44795453183502	7.24659233484792	7.33756803312637	7.38588576338664	7.25474899631235	7.32807820054451	7.45171015835972	7.1226997965331	7.24088776832384	7.34920368242437	7.34920368242437	7.11083461116909	7.51766713971593	7.34087007763049
+"ZC3H4"	9.33358681506456	9.15155844720105	9.17976229480247	9.08767772345871	8.89604945725036	8.95380648819037	8.88181198631928	8.34817554798855	8.85672403102069	8.52243710761056	9.28746779590261	8.5084851923271	9.15794338128126	9.12414337123287	8.83494178018708	9.16091743867733	8.53807406341615	8.94212013890665	8.62764304340053	8.80758072105037	8.74711422651078
+"ZC3H6"	5.52560477454462	5.39009735893714	5.62862865223965	5.26021023823503	5.48578147975569	5.66116297511595	5.47096359090823	5.79960060980347	5.57912558695881	5.05180859934138	5.53547921942051	5.33508068086218	4.84431414565121	5.22151579045264	5.46049976254501	6.0034340599943	5.75926696763644	5.98737603366594	5.41567792881066	5.27674598714331	5.13282760139175
+"ZC3H7A"	8.00968780212851	7.57449849390192	7.34935532805678	7.20608739049447	7.70279223392166	7.20160046509388	6.75982621380249	7.41061584992557	7.19462096274281	8.09906683282476	8.07334728622753	7.82894541793828	7.15890489852171	7.54006503402126	7.26266301966168	8.03110759778126	7.34898946924121	7.77120541328194	7.35148596373858	7.89369545423003	7.37433553408741
+"ZC3H7B"	7.48926243895989	7.65685809082465	8.06381324031957	7.6150138570233	9.26456600697101	9.07784934182278	7.56651126324402	7.58230547542984	7.63702702429158	8.29343217577931	7.2684431883586	7.57516777850144	7.72745364705635	7.64980240523617	7.74760764001642	7.86547498526576	7.8419397161869	8.7533932644816	7.43264839732137	7.69330222929468	7.85801621542806
+"ZC3H8"	6.37144959755759	6.80087772891401	7.20681070488462	7.22416660684821	7.04231971342958	6.73995875422257	6.70863751381143	6.46812694890083	7.35096627002822	6.75894972398186	6.5793184786918	6.8548424036268	7.31514683926761	6.75569763121517	7.62587584181502	6.0764089546274	6.92947885650481	6.80206287141913	7.13953951542433	6.8548424036268	6.88317447716654
+"ZC3HAV1"	9.22294978044321	7.91253993119681	7.98412726598589	8.05389597402425	7.72762720298504	7.87696135865862	8.3108623845047	8.57727207696405	7.70763791506127	7.52454802463639	8.2261223610252	7.64294838185233	8.00431949609459	7.97216620494575	7.77125433818443	7.75772946931852	7.7843229204752	7.99034130492444	7.90566186133364	8.35820360775928	7.76436833053822
+"ZC3HAV1L"	2.82912683844947	2.79025050436744	2.91138616589799	2.7334140182018	2.89418599485845	2.81256542586076	2.87668704197252	2.76314699475999	2.73882922439019	2.73806182673343	2.74408539943817	2.88653528765839	2.64280168626567	2.81486392135864	2.84360577852439	2.81404776605866	2.76169029860793	2.95313351968752	2.79132151139329	2.79345876580755	2.70976045383565
+"ZC3HC1"	7.73652201430287	7.53938795751286	7.71949782804201	7.59337289148181	7.76676842946339	7.18191318643233	7.26537977862338	7.54399971811434	7.48101066218955	7.83087941581664	7.44880227669963	7.54707415234894	7.39814985859732	7.3146656468996	7.33820724729287	7.66347098847397	7.47036969392557	7.71599675695417	7.56374229594821	7.85656454017778	7.70144269268649
+"ZC4H2"	7.14525856028398	7.26583392244618	7.18169969027666	6.96973754744584	7.27026285234839	7.02262677928005	6.83417210797332	7.10753137424476	6.85704625701915	7.15323128267044	7.10935097216953	7.01874377456225	6.98347714014873	6.98604704312176	6.79636115735761	7.2610010238841	7.05224635229932	7.11206414962269	6.84882172412356	7.32757130484954	7.0620532060938
+"ZCCHC10"	5.13901056584938	5.12286083682085	5.18130214178616	4.65128527010061	4.55936094877063	4.5353010521617	4.65724897612648	4.1112004030439	4.25632834724555	5.1442961287524	4.91950264005163	4.39976752592684	4.48058032682981	4.1899361821396	4.19921330155266	5.05068136664796	4.44253735562739	4.5468498262596	4.39008478755703	5.27941117347017	4.27363346861002
+"ZCCHC12"	6.85993049215489	7.8329287158707	8.88101682219082	7.84596928494874	8.88085030678592	7.2593808241334	6.89130209356575	7.71494165271205	7.71494165271205	8.29915859118334	7.35592929390203	8.15455557173016	7.49129795988199	6.97932633436761	7.53325273150094	7.6355643497858	7.60353219716425	7.75264688287333	7.63779635010415	8.82101663401063	7.99689271633017
+"ZCCHC13"	3.90379701258434	4.05046370273784	4.06607082972239	4.16437867363948	3.94847753638272	3.92415453762253	4.00640355612794	4.12493300022024	3.908253693681	3.99639099711255	4.08193599403084	3.93832081151689	4.19191469276639	4.10202925846377	3.86661798379084	3.95448739532037	4.04999837336209	3.78262213098934	4.02250187639298	3.78389819142742	3.86248669128265
+"ZCCHC14"	8.783175252252	8.55025273751926	8.73493833649814	8.51310278298145	8.2873295928442	8.70130059497562	8.7970355623828	8.75805009383109	8.69547917090967	8.09581986101526	8.62876095253019	8.13665811004165	8.79613673489493	8.787032616448	8.83525680389972	8.14743378228311	8.48061236604617	8.48153740662481	8.5018903912921	8.33040079621634	8.00082121009764
+"ZCCHC17"	8.96153093414328	8.99356228962857	9.37176225136098	8.75554388792117	8.97575902999878	8.70318090522963	8.50477149271636	8.94067735096273	8.93556291864313	8.98370852005417	8.8556020941287	8.95166553584295	8.47163943127916	8.52659960181292	8.8854192332689	9.02246186890799	8.65943964574585	9.0823399326116	8.93615338983263	9.17940130840382	8.8648763814677
+"ZCCHC18"	7.29998562774549	7.81914710213213	8.57060179207291	7.90157950425039	8.27955695102023	7.5547940989145	7.07486562948462	7.62466723377787	7.92889848808847	7.82224791604035	7.95583854292021	8.11396166911306	7.61182603861886	7.58764236995468	7.90480407838247	7.31051751426153	7.74828269897474	7.78601378186337	7.49304662138133	7.72920517067487	7.57049951191859
+"ZCCHC2"	7.45870089145003	7.84748258562807	8.71724494147085	8.46657746703604	8.40933495481975	6.94808625445628	7.55448689479867	7.89325007026973	8.19529336298486	7.49643855960273	7.38130531897924	8.14743909645805	8.63342204379438	8.06197306821678	8.27499561679011	8.1323817067955	7.82256023220147	7.89595875726121	8.30282707165653	6.9542070407277	7.03667170979929
+"ZCCHC24"	11.1821053167178	10.6104685730605	10.3728732070989	10.5761675423873	10.0836600820227	11.5816299383544	11.1469100639908	11.006931405991	10.2255476052853	9.8834306705597	11.0933671694515	10.0953532277201	10.4371457684935	11.1005189826453	10.5046855571731	11.4377558230086	10.323517427832	11.2185830384203	10.3824383301999	9.92189859438213	10.2418564955543
+"ZCCHC3"	7.78638431346054	7.86823507828957	7.99583909224877	7.96356782433247	8.07288701081665	8.0036254071778	7.93021029286052	7.89611000467961	8.19871900920958	7.92816066255284	7.91686459712543	7.87924781266043	7.92915010091544	7.90939584152815	8.02461345354732	7.85266378484597	7.96454703243355	8.00344370844642	7.95097277381119	8.09391944659901	7.89942894582098
+"ZCCHC4"	5.9036848414476	5.89486106604269	5.44971673564861	5.6362531263257	5.93328150505001	5.43088655602537	5.55223772772018	5.89708195618327	5.74146391348964	5.76732797883694	5.97988087494073	5.68386064962048	5.27385581984013	5.50442211691519	5.49999392386731	6.21749213024243	5.90471810022504	6.86178198730439	5.97876895540599	5.76721440263169	5.69845458466033
+"ZCCHC7"	6.75601835361114	6.99818382536509	7.52286300731435	6.80302382447767	7.00882641953254	6.72163805322632	6.28568489399022	6.65475170591442	6.44249768449983	6.63122793376144	7.30729863638362	6.60526933597268	6.39561090444245	6.78391394146744	6.61699000368545	6.9132475821373	6.68118929772166	7.4567604942573	6.91303945015113	6.82329350035695	6.53649210803912
+"ZCCHC8"	8.00052819219658	7.988500094513	8.25488921913722	8.29612968297694	7.77749510079526	8.18142650129311	7.51734962616554	8.19536272477281	8.05684521652537	7.28753549831357	8.33211994612011	7.75818269271114	8.36984073553745	7.88861508125795	8.66572090319289	7.87483137454673	8.07219100741542	8.21814966732448	7.95520798266191	7.57781710414933	7.74477367740129
+"ZCCHC9"	7.17472927946682	7.04602736462152	6.60788495191597	6.79131822149795	6.97737210716503	6.02706046786409	6.65581641863896	6.79131822149795	6.81904067814388	6.7603952052219	6.9201054069017	6.77239789080994	6.83622360605575	6.5844315605331	6.68825803783435	6.76143856670227	6.5071064270323	7.03595443323219	6.87454432148369	6.80268407715516	6.90582331316126
+"ZCRB1"	9.97681606185139	9.69335618214353	9.79859742589935	9.8065200157026	9.74337491607782	9.77904156328114	9.83922386503116	9.87606650065814	9.90801806997212	9.68554673826498	10.0416675236312	9.63218332877831	9.90864122021724	9.90741099316707	9.7907075407714	9.60333503687175	9.48799583843624	9.76591922735329	9.88089818582064	9.46123684776479	9.57969470657367
+"ZCWPW1"	7.40242000620809	7.27945119143161	7.33693301742795	7.4142256422917	7.4182053772864	7.78706212209454	7.38707173238282	7.27358061288693	7.49297065670165	7.50944061803152	7.51724885974248	7.25375431156517	7.17807361292493	7.67001473997524	7.41669839732914	7.76775899707947	7.26961427592001	7.96609434682528	7.29350609419162	7.45534723403399	7.33233882600447
+"ZCWPW2"	3.50674569197573	3.24805583677957	3.54860340279445	3.21886658715458	3.26621586616874	3.66513631949948	3.30836677292992	3.28417886360365	3.20394328321798	3.33349611239132	3.42784190030397	3.46746174275197	3.30836677292992	3.15868797478761	3.37308306170425	3.38514709092864	3.30836677292992	3.23177348252122	3.28965034412258	3.0768461069553	3.15132839120907
+"ZDHHC1"	5.37281493838029	5.09122390903668	5.93702961685899	5.33748643491308	5.3447061697661	6.1104056175418	6.22428530290382	4.99408128964346	5.57378956989534	5.64398345966984	5.57694673253255	5.45124121372987	5.59645416933083	5.79976601284619	5.28437882898049	4.98095026273208	5.5151591959042	5.05497694948843	5.51944614742426	5.40457491540369	5.29494062698488
+"ZDHHC11"	8.1284382357957	7.69560295707767	8.4114790510891	8.10373572877795	7.90434888392339	8.21278414867313	8.07522698115955	7.63812098641614	8.25615902114031	7.34776032215773	8.02507155014309	7.26587425407815	8.38113317643037	8.52731473228263	8.47499048281195	8.42779225418789	8.33295448244871	8.04559570239712	8.01060966168978	7.12827038264315	7.48637580780496
+"ZDHHC12"	7.13550528751837	7.09506360973026	7.08499989662734	7.08648426439808	7.08648426439808	7.14415667970373	6.99559159487462	6.92484811258258	7.06516552778213	7.08648426439808	6.92594713097413	6.99646182979844	7.21151717478821	7.21804846979085	6.99996929152108	7.20580250943414	7.08618751299833	6.80673544645134	7.01661116399222	7.12809623016528	7.19573254378283
+"ZDHHC12-DT"	6.44884730959671	5.8969644703585	5.8713676866962	5.92739052253232	5.88183619453227	5.75551994762541	6.05321236682291	5.92493945172548	6.12109393288006	6.12944627087856	5.57944298042639	5.88735143998959	5.98304351766738	6.46654086522946	6.29858522174493	5.84123800940764	6.00514214505806	5.87304324742	5.94805444658981	5.94793914266674	6.00709416363276
+"ZDHHC13"	7.01418483230481	6.78094500994027	7.47927631184407	6.85841602547949	7.56357258763548	6.6141535004746	6.39357342328485	6.8477460676499	6.94434102559455	7.14800166172097	6.42412339037572	6.82018224116554	6.78681448569062	6.48504329977118	6.9093635355932	6.72828339329243	6.86589855113271	7.4788672283828	7.02823679380972	7.26355337475324	6.91900715331905
+"ZDHHC14"	6.67093845051636	6.1579371147456	6.81067101271989	6.5865161494824	6.24074811200644	6.82119418848022	6.89725488054842	6.36775638533251	6.62850871685478	5.39381958161377	6.38148132635048	5.86137643038894	6.5258963533309	6.66393870702426	7.08160598326697	6.38644763086503	5.90486149331349	6.6606992715697	6.64942964815253	6.14253829928954	5.87117999844539
+"ZDHHC15"	4.66784483447504	4.01978918273198	3.97636945032133	3.91202229676283	3.89480533602188	3.97636945032133	3.85897788627467	3.94658716032826	4.1510490640797	3.97636945032133	4.51678859632982	4.10568213015031	3.88509171534632	3.9622754660143	4.01482176103793	3.97636945032133	3.83262847675226	3.9155930502398	3.64974336739854	4.03013999697326	3.94736115522761
+"ZDHHC16"	8.51772849366788	8.21237549105867	8.56797234870642	8.05848043564914	8.13860787038588	8.27600056470123	8.15477338472831	7.88430913951357	8.30430549594348	8.16143350280757	8.06601529205308	7.96328096236861	8.25941542848448	8.22952527595667	8.22305453338492	7.94761200007299	7.84893143849277	8.15725086472535	8.16600944507011	8.26285883817028	8.0918773755714
+"ZDHHC17"	6.92675306216516	7.24300548667257	6.48324832235553	7.10008073807445	6.98147697138141	6.53708818027914	6.8942830853696	7.32966036537365	6.94221528935598	7.50792853482965	7.59798270401589	7.43374625506907	6.30997109772858	6.57932658393042	6.47020258210345	7.32394176282607	7.066586505471	6.87454432148369	7.24245899335375	7.28924875524477	7.39774230786565
+"ZDHHC18"	7.64322860895263	7.32896057321384	7.56548457309826	7.67616813724772	7.37495153307471	8.18773643612278	8.11614770462724	8.21495063661107	7.82998001296925	7.54997206059005	7.49348561328264	7.52852695962632	7.8738238245729	7.78699049994076	7.83894229865174	7.49647717929433	7.59000898091751	7.52866740380955	7.66638033898268	7.49243692860068	7.60510437840476
+"ZDHHC19"	5.29571670709996	5.46738713340695	5.50183714140547	5.48226035512111	5.12572588862888	5.68276442520193	5.91588991876842	5.48292803902313	5.35290343264938	5.34623673558314	5.27013004424086	5.53813041067973	5.71267382577087	5.73770706144195	5.42133569896677	5.19312594497879	5.36883595846047	5.03291697599623	5.71215114472801	5.27746726362172	5.47773989427359
+"ZDHHC2"	7.50285410988109	7.34690910439364	7.14706442556406	7.3992578078465	7.16712106679049	6.72110962360374	6.37439028286991	7.10858839816785	7.18680393863935	6.90353845532459	7.57999054424517	6.91456593172559	6.68658620267005	6.45700463299124	7.17147841949526	7.96489430158974	6.71563745604977	7.76459772710641	7.10858839816785	7.10858839816785	6.85343079766276
+"ZDHHC20"	5.81250027054304	6.02032262132792	4.5720599497955	6.02279916865991	5.53813116979254	5.86105886590134	5.59646493158186	5.683863406817	5.42414753874653	5.85037860556996	6.0642562505739	5.94289772613029	5.50076182085259	5.88117326261847	5.86217765811038	7.03663334067087	6.16860086977908	6.96846883999371	5.94880798343704	5.33517159347538	5.80674019621382
+"ZDHHC21"	6.0088375330385	6.37900721176352	5.69086354166331	6.14422643157351	6.75695175090019	5.86454874366612	4.97996265113183	6.47039544249112	6.20420880278213	6.94684692707469	6.22979844608426	6.64022490370741	5.94139235336456	5.89698295252565	5.94623823351852	6.52202992929698	6.52343253797312	6.36118079221288	6.34988199208475	6.60760497187734	6.74140808727378
+"ZDHHC22"	8.21820607739437	8.70975942209474	9.23087200021559	8.58695206965024	9.06464128765075	9.05811352212807	8.59796407734543	8.77778778644612	9.12710346433902	9.09516450777803	8.33040965453284	9.18016117770507	8.63021073615904	8.79993796406428	8.6229904994531	8.44707702159534	8.95476975235846	8.73660611955091	8.82031106236036	8.82465757691985	8.86243492544438
+"ZDHHC23"	6.29573385017322	7.27858612877177	7.79575061539265	7.04979358897967	7.68912946192119	6.57243672829435	6.62036779606088	6.98862893339247	7.42098199308989	7.25821056212819	6.26100388032802	7.07479581196945	7.02771038350416	6.42556304303793	7.03132183127506	6.85099347554249	7.45073580199446	7.15991232415588	7.16142255694711	8.11959047156993	7.42037283230483
+"ZDHHC24"	7.56996937207848	7.49304662138133	7.67213180399088	7.55319524744283	7.52733981332825	7.81412570061859	7.30602310354066	7.42234804932645	7.32079855897766	7.7652190699326	7.63425043570484	7.54720762824747	7.49173305071312	7.49878460965583	7.15319175363745	7.49304662138133	7.37509258764062	7.38348099982649	7.16538297226904	7.94747544292054	7.56471691766288
+"ZDHHC3"	7.5325690976905	6.8760923348399	6.5021196765155	6.67490958078504	6.6660109860564	7.03632502053605	7.25513471398347	7.27263131536736	6.63306444792304	6.51116611171666	7.22868724999326	6.37760096812785	6.66071871397592	7.19297140960647	6.82710638604804	7.38258883391124	6.72650323089303	7.61425357969757	6.83585726691804	6.68519307485145	6.63660971943611
+"ZDHHC4"	8.05032555138178	7.92703593342793	7.75273440948165	7.51806741216776	7.97216084157008	7.32039801342326	7.45909137592536	7.56330380799405	7.51660552438038	8.28130576564223	7.85181839303701	7.91573919666747	7.52289302883851	7.60436611745677	7.41769124961191	8.23998201951643	7.20402717053332	8.05195426563457	7.77820811207985	8.19692368762168	7.88029724208367
+"ZDHHC5"	6.98679982216033	6.59414219820261	6.68430407069323	6.69245945821146	6.97246694374822	6.91504714521437	7.24408830244636	6.63416106859419	6.78611696996305	6.78762564476289	6.75763631829869	6.47784214301029	6.84984398471889	6.50733540049778	6.55146356485526	6.88123635263802	6.79785628560198	6.86802953109178	6.66846527075555	7.34679636678071	6.96378171382444
+"ZDHHC6"	8.73590173694049	8.61719925628453	8.59279581653336	8.29811323129103	8.83245732826866	8.35472431444852	8.27297038429805	8.58927566795429	8.44071039660924	8.42345392607286	8.5795084942139	8.34359559224131	8.07954168493834	8.44668667657634	8.36019461688834	8.66480267495601	8.3782057938118	8.9249037676537	8.53465351894443	8.77538484546857	8.53465351894443
+"ZDHHC7"	9.26367479555972	8.89880340200676	9.08328017181543	8.73801494839867	8.8758046969221	9.11623986598591	8.92058895748061	8.75082351738565	8.83956114553452	8.86149366895738	8.8109864279974	8.73974848174911	8.94184180937268	9.01017133245916	8.69126497802525	8.93480443211779	8.69950416946654	8.99889896662259	8.85108752074347	9.19785607995489	8.91726491528027
+"ZDHHC8"	8.96022010133432	8.51290567970891	8.7795448232309	8.85177327699693	8.57012875019866	9.1670884443697	9.11650407069005	8.60938559898252	8.47557037830709	8.42908357122536	8.77292233589407	8.59276571422469	8.87647824513357	9.15447629624786	8.55283323794501	8.72012873076334	8.64028961569442	8.72012873076334	8.72012873076334	8.62325145106063	8.6340189975065
+"ZDHHC9"	8.24984808520684	8.53287766719531	8.47118853075922	7.87490524441652	8.22909625201103	8.18651197023311	7.18463380017099	7.75041260747052	7.3766913754189	7.63318110685194	9.1137737820714	7.88268044737193	7.40743763423042	7.70431976403089	7.45612724311678	9.76370629865555	7.6291439678525	9.45978295964604	7.71805998716673	7.88355345441636	7.91210249274888
+"ZEB1"	9.22470647439402	9.08855471271952	8.84598176433711	9.22470647439402	9.21892046380054	8.75736648251237	8.96158380129966	9.72261777060152	9.44672786833728	9.44568209836595	9.26098990519719	9.49938170504576	9.19253003307694	9.51233151464529	9.26277571755292	8.17832656268537	8.80204884756123	8.52081922388176	9.34372049549732	9.29795978457805	8.74087952612981
+"ZEB1-AS1"	5.54852047946114	5.44346920034136	5.79114734971711	5.20673127104457	5.78894723557919	5.22413685249561	4.98378022089325	5.93939183602104	5.59044947538543	5.47078333087274	5.34763029763733	5.67020303029033	5.28254450300553	5.51075293715146	5.20876214832539	5.02797064318932	5.51994975462534	5.34810385551279	5.5034082200793	5.50279209556602	5.19306297776542
+"ZEB2"	7.28620445322332	8.14100739353139	7.28620445322332	7.56917873683245	7.30132433540396	8.03982396778818	6.93821740308685	7.16185335343875	6.45195538843244	6.23893545766032	8.56409708835177	6.99018322113908	7.01405992022817	7.3217252945002	7.13707630963094	8.87603880566584	7.11780555576806	8.82391162511672	7.21553459191859	6.27833675510871	7.09976132700347
+"ZER1"	6.69383682616528	6.47918249045446	6.09696141713895	6.42314400297474	6.86617554959809	6.18107565997642	6.45966084167705	6.61602177505848	6.61602177505848	7.07022711145549	6.52066819169955	7.12824203461615	6.35829067271009	6.25550299692976	6.16019584335253	6.64324150356604	6.7531967791854	6.70872352586899	6.69872099677452	7.23376272279071	7.14402644861355
+"ZFAND1"	7.15576871763358	7.73003217925317	7.77961603626288	7.57298806994168	8.19191077684196	6.7158843078366	6.90536919395684	7.7395808265114	7.55169923818265	8.10318558364125	7.15126460033118	7.93704104387966	7.61816268065216	6.87623588479905	7.29264862665335	8.08363571863664	7.85590773779564	7.88268043916256	7.91606869574765	7.77367716033467	7.78543578254414
+"ZFAND2A"	8.67624052156425	8.62666323418009	8.86528777489178	8.51978383982685	9.02249256950392	8.36868786829207	8.27030067370614	8.75188328517877	8.91089965978432	9.01974009224645	8.64089287638523	9.02926013825277	8.46969711693974	8.2531278090442	9.15956006895374	8.88091410475755	8.52131386027092	8.92879301032912	8.76276702244576	9.04955647817947	8.85852225533519
+"ZFAND2A-DT"	6.51021913570234	6.21322039535372	6.34740976769452	6.13206025756991	6.22545344746021	6.20985011391681	6.4501344114403	6.22619955772884	6.35217717460366	6.11780239895043	6.12287024279734	6.22619955772884	6.58748906772598	6.29079601809376	6.30490986185485	6.42233588582401	6.21236337266607	6.12110433705953	6.16574875507605	5.96260795379404	6.22619955772884
+"ZFAND2B"	7.91747962065277	7.66451081124769	7.91042169463092	7.72492676715476	7.89375355103164	7.90535961142161	7.5999715263562	7.67288857735167	7.8347354241393	8.074359849828	8.0263596720912	7.78432942041935	7.81840353393593	7.73750040309448	7.64652202480948	8.07659381831432	7.82768581304287	8.12899084883326	7.67378374745393	7.91876948716796	7.94217479838199
+"ZFAND3"	8.33134876054568	7.63661999225288	6.69126083314255	7.58471818506528	7.19150831429276	6.74046341088862	7.82809973638331	7.97424857497444	7.4086055423224	7.67149610570713	8.01378121820563	7.80888409529347	7.35626161686923	7.1987007965236	7.13586313447296	7.81960993242177	7.43116139508871	7.56949825891506	7.62236616327513	7.47273369410241	7.32584692712827
+"ZFAND4"	4.70790427770871	4.12724988202972	4.537699768961	3.89104971385365	3.99149632112875	4.80399775452018	4.14701112809529	3.89104971385365	3.56530753765202	3.72442180994729	4.20988849593661	3.58511225217881	3.95945638558142	4.57313992230808	3.77922164210044	4.44831405623013	3.90171799713267	4.75799280259008	4.17871685804096	3.86236041766103	3.97613850133485
+"ZFAND5"	10.7015852809194	10.3853842457046	9.63066829706098	10.2006210004325	10.5913276964796	9.4874429367564	9.84884918206	10.8948729184122	9.91721686390089	10.6002552720258	10.5592378813523	11.0351747410885	9.7897604798755	9.21997148956381	9.26462225393718	10.4809364634007	10.604550692839	10.4744024357967	10.4928701622887	10.4808739540509	10.3911540286165
+"ZFAS1"	10.3264923131926	10.0650986664828	10.1574885857558	10.1121450831681	10.1103127331095	10.2371847023232	10.5703127579248	10.4142816104213	10.3883391867058	10.1682534372892	10.2992395567226	10.2318864807918	10.0734376391567	10.2571781692679	10.3550523642489	10.2624291632843	10.1101494633282	10.3743768117043	10.5216999081552	10.0527552623061	9.96668261797584
+"ZFAT"	7.19973237152849	7.3417822176462	7.21919000618144	7.29073351815178	7.45642344793658	7.3987491251168	7.16017111413433	7.2782336139875	7.23894560477071	7.41290628184386	7.23029359875246	7.20270669656191	7.29073351815178	7.56360533828914	7.31932124497634	7.26282348057845	7.35424352319043	7.01142235005995	7.17608239810564	7.21152363481978	7.32327074116856
+"ZFC3H1"	8.59383398004858	8.57355427889113	8.73771022013845	8.44621135133925	8.50745501269592	8.58454653103561	8.47119314439939	8.91617552710691	8.64122413929286	8.06031432480539	8.57083618771602	8.55356125586331	8.31740507105324	8.23563238591778	8.75840447439416	8.81554870420712	8.70831655629519	9.05741515126524	8.49056637138362	8.5678888122543	8.39144212849194
+"ZFHX2"	6.94120369883105	6.82641481764617	6.77505680336842	7.12202135429704	6.78867739510345	7.33811129809976	7.33763946344753	6.64423718942238	7.15486696379662	6.31025559325566	6.59103804542069	6.52952500533447	7.59151395521748	7.47532311400082	7.18173015255217	6.49026043607532	6.93250261812998	6.42115177295388	6.97462132687096	6.67529434429329	6.80440023916713
+"ZFHX3"	7.77534665651673	7.01894564406703	6.55657779976264	6.96813419114206	6.53851495905203	7.54053032011647	7.60409443079744	6.9935367321314	6.19433415650674	6.39617985809099	7.12146985152417	6.55648647360049	6.65557567367966	7.67703822296439	6.39983701569806	6.50783998940671	6.68791948317856	6.62667643309457	6.94324881555759	6.9147399889871	6.65699484312948
+"ZFHX3-AS1"	5.20640294621324	5.24433084407706	5.06605663735456	5.06382895942578	4.98665414945946	5.07408177215422	5.05020447556535	4.9306634888593	5.06135758835674	5.01461277906888	4.88200321418189	4.90385451359205	4.891431597517	4.95719649769304	5.01381571939231	5.29655091432829	5.01381571939231	4.99555170922663	4.94094810517737	4.90973439158669	5.12057429431316
+"ZFHX4"	8.42125554070157	8.3902425600919	8.19922131183793	8.02293010203464	7.5255755334702	8.12774101596191	8.69003269903985	7.81677506685311	7.87362821159696	7.20654259218674	8.37380470694288	7.05805624300822	7.57683882071527	8.16885396801146	7.82652399200248	8.58814040757378	7.5751829595998	8.46071631653435	7.95340248241251	7.80608056196596	7.12439950694954
+"ZFHX4-AS1"	5.43496835382877	6.22977289396943	5.42210685631753	5.07016353655043	5.45424776687969	4.52596039670621	5.19804606388816	6.33158350860235	4.94014721630794	4.5146041540691	5.39509601709287	4.81560592269544	5.15484287647403	5.06936594239817	4.60168448672202	5.48036845291653	5.1011576466389	6.08408076606157	5.71355766551861	5.14838667147556	4.30510691770861
+"ZFP1"	7.60264204019951	7.62800839039053	8.15870067064136	8.15521460108689	8.36358410961686	7.94756832546813	7.92315157061392	8.19567592912279	8.17564118816055	7.81483145772678	7.88290268447387	7.34670033022866	8.22132777007988	8.00619340059111	8.481501530023	7.7398124382208	7.99587626134069	8.40911937919821	8.02350358931638	8.18997311974687	7.79646899670016
+"ZFP14"	6.54794608089289	6.53652024862616	6.70672438766289	6.66421767037354	6.52831951019908	6.53350789057226	6.48092961366126	6.64560155999372	6.79811594523861	6.74613307069719	7.11452789153907	6.89250901964031	6.49133498093565	6.66421767037354	6.65376319806944	6.72336007091397	6.79947999760255	6.6919119467478	6.91836831227235	6.96245112516945	6.57040215255079
+"ZFP2"	5.6296416338032	5.93528384769085	6.32164124694571	5.59966001415532	6.19061712444824	5.66983977839706	5.52661303796513	5.6419734703797	5.38940874600652	5.82767518346872	5.74631945515187	5.66308584163901	5.4422577903271	5.92215013472151	5.33718873573127	6.16987811955924	5.65102168543851	6.2706582536903	5.6025301882079	5.70638899346005	5.40216014010389
+"ZFP28"	5.3257418333627	5.8591627395122	5.63898210363584	5.58700888210905	6.22166641887706	5.2966656110732	5.53898476290085	5.68252365059641	5.74988123258855	5.90367966953287	5.73799840870407	5.91731175027452	5.37249294648621	5.32898101964884	5.61096911371501	6.29560423732547	5.96173588839647	6.36518168044999	5.78514697643148	5.91375941826937	6.15573287308514
+"ZFP28-DT"	4.79880192942162	4.68398453099413	4.99223485633527	4.78128069345605	4.75478534590187	5.02911786542874	5.29475877628306	4.96881264183644	4.79080592110275	4.69663078877543	4.90335838192849	4.72897996853786	4.96706340777205	4.93506928244506	4.87755887252145	4.76172516007827	4.90426344276443	4.9119168698337	4.70712033954767	4.85099254019622	4.6658657515074
+"ZFP3"	7.14050855249473	7.12048645623999	7.39044382453311	7.29342922127396	7.07294885860082	6.99182605483644	7.28589908118514	6.42267205920621	7.11952230020935	6.58410589502696	6.8855479933352	6.29482742204477	6.79015666489124	7.28744645744459	7.42838683841065	7.19211498611716	6.43534513506979	7.05071966709889	7.02266527759289	6.84213788544823	6.96206288732158
+"ZFP30"	6.46511307944255	6.60089899221421	6.87421077043883	6.88339832142821	6.56737169442412	6.33930647276266	6.28871582545412	6.31614020065541	6.59619920525117	6.39630312533291	6.60847731322271	6.27345658338426	6.5930499935672	6.3807652121347	6.73021725616362	6.62814399235732	6.40092301895493	6.910468192523	6.61871253090814	6.41009057753559	6.36017278949439
+"ZFP36"	10.4032509154107	9.0910440763695	7.56869578088505	8.87497881072548	8.80863789072991	10.4268097844271	9.03847515810359	12.0881567226703	8.36557066471186	9.10430276443432	8.97894161579012	11.2578643735396	8.71862724308144	9.10396817771878	8.65768644030588	8.51066854361786	10.7686786256007	8.3444694452711	9.43570873983339	9.08494277028673	9.42241769303299
+"ZFP36L1"	9.49872321632495	7.07533260392455	7.76148715689242	8.55481407779698	7.44899071060255	7.86510826791694	7.92315157061392	8.86884080138717	7.16748514674267	8.16652154852271	9.14150935666988	8.93870112339482	8.58262270444534	7.72087122948499	6.25765625097943	8.24724963496014	8.80418415146867	6.94871677620149	8.77136752614313	7.52286300731435	7.63626908457556
+"ZFP36L2"	6.7133376566413	6.63446567317504	6.03314934403654	6.33356163357688	5.80060737181446	5.96884455785399	7.00114192010537	8.36885552081705	6.3114377209309	6.4777800677581	6.97671486682083	7.59063703256343	6.68389401250974	6.60250250809528	5.98454881248076	7.27573402408213	7.32223531996705	6.92999223412191	6.98751337348623	6.78313347919015	6.48988566595342
+"ZFP37"	5.8333699080441	5.97569762464896	5.85964964088954	5.77886249187614	6.04249614194857	5.54351040666257	5.5941733389914	6.08356806151768	6.04993860677293	5.46350674595305	6.19432254938379	5.58685964793122	5.74133452686195	5.74302176315884	5.81105775407843	6.24137099045285	5.63567081659836	6.20088105481989	5.77032866491057	5.62355586804244	5.59852166266834
+"ZFP41"	7.42800552625553	7.48769782194161	7.27430817323268	7.51847185804732	6.66931633759774	7.38709197433804	7.88850519203338	7.24785748403978	7.6035815603713	6.91953754168984	7.3907333692508	7.13150540155135	7.45802348134712	7.80647609176378	7.72984352179184	7.16578745080907	7.46221145272148	6.93273979873533	7.79218732921962	7.09086918910306	7.11408573383576
+"ZFP42"	3.54087372919866	3.46087722678065	3.37654322608518	3.49538196085622	3.45423074534112	3.81100029191068	3.94323802665119	3.56988583943366	3.58806942368977	3.53836237481595	3.22964561586153	3.51032212913303	3.41353573807426	3.31981998158626	3.5861683287278	3.53076555148056	3.68246743192704	3.42633409059607	3.48401303533419	3.47982674616235	3.63734615191803
+"ZFP62"	7.72555423032608	7.65109559154241	7.68827818420097	7.5444769252401	7.2280586044077	7.18711006929372	7.54948999203589	7.22117247258521	7.56822613785537	7.0045031962497	7.84568554760604	7.10269637208245	7.45250843774513	7.4020188659916	7.56119481898038	7.87101080595562	7.04295130503044	7.66841488597457	7.57242314309093	7.14386365512252	7.02771038350416
+"ZFP64"	6.07676945109176	6.13636023275205	6.34713771632368	6.32485778086163	6.15160240044444	6.44921419987143	6.81203460491616	6.33128156383017	6.37635280595929	6.37122381097609	6.06553280127619	6.29683661352875	6.5036042935389	6.56967888673807	6.30191688070872	6.03338297385868	6.33305146150267	6.01253969036364	6.33176701736918	6.30191688070872	6.32032406766099
+"ZFP69"	3.78099026815104	3.73644015590094	3.95751752383874	3.7206531930751	4.27927865497649	3.90986707760965	3.75356137251409	3.79340624972589	3.82785189924157	3.58267753764465	3.90033180002268	3.54629638221182	3.66388269994302	3.79340624972589	3.98640781507844	4.07081371256772	3.71678473600515	4.09881239744688	3.79340624972589	3.75547586640498	3.79340624972589
+"ZFP69B"	3.19623268841524	3.77194321915732	4.13975912205991	3.67101781524352	4.34634699370544	3.91243681582638	3.30730059169285	3.60258903055848	3.96779852709763	3.71658964979914	3.57342600433655	3.53237178501309	4.09952154923729	3.45295242551285	3.76014988279843	3.44546458696048	3.7640371306643	3.998202555825	3.63380446419854	4.02596079058437	4.12761737160828
+"ZFP82"	7.09558713127764	7.35592929390203	7.55570464740059	6.74026484809245	7.32920294276162	6.80056528783363	6.77015475387019	7.16691078463458	6.94655109950409	6.73897893880491	7.22406105907954	6.46852155396781	6.85957090112492	6.87953868343912	7.45156441424373	7.33308698472524	7.02365443584173	7.67437547605072	6.91067287307166	7.24864392646822	7.22406105907954
+"ZFP90"	8.76319410840938	8.51462689256367	7.7565815499795	8.5800270861675	7.92899414107439	7.28897348613343	8.01339711874023	8.24780887106783	8.40171233141877	8.25605744215133	8.86875862225349	8.14719397378123	8.47826469512684	8.53733945177424	8.66903166682195	8.56028401748928	8.2061017309465	8.03232724570668	8.53949431907876	8.2345616388242	8.12851083763096
+"ZFP91"	9.7300408235746	9.53219515027724	9.41648323553115	9.3427336282845	9.61512055167142	9.59702359522128	9.76877332677267	9.53219515027724	9.54180167584169	9.53219515027724	9.52761600143991	9.24286622859403	9.23033986936993	9.49816132912877	9.6217142483059	9.72402918135815	9.45363543956364	10.0723757508051	9.60679666250723	9.5219862699805	9.5633441479863
+"ZFP92"	7.85501998284134	7.83071816822695	8.19573927029735	8.04194400595039	7.94829122593665	7.99642126334897	8.08822161024285	7.83690534880511	8.03330612751524	7.80309429501122	7.45396378759889	7.82470182813763	8.18782376566408	7.92765355732812	7.80856848734119	7.52827621280941	7.9831476783056	7.53269221820115	7.71002853761039	7.98118433131717	7.85501998284134
+"ZFPL1"	7.85625247566461	8.00524987012122	7.74483001778224	7.78876840665884	7.91530017288749	7.91750950706638	7.6948787391959	7.60631829126407	7.4695177535977	7.75260171471615	8.06119038729452	7.72396497489339	7.2198708081007	7.70452489252423	7.18375514659856	8.27742632441955	7.62255313824931	8.18822505034216	7.77651200930162	7.87532302854166	7.71624899585601
+"ZFPM1"	7.75464213020926	7.66804507125267	7.8537730834852	7.88918492789817	7.67103056378003	8.55323466238228	8.81766312246809	7.86066743206403	8.14464673580948	7.8481403860252	7.56211186106253	7.8879200081472	8.1272712197566	8.47903504372564	7.95329157067687	7.45020207754774	7.81192347856267	7.41326586337588	8.05099761247756	8.06458327613819	7.70513167480137
+"ZFPM2"	8.37796002974495	8.46995939739575	8.74583029817676	8.289753793559	9.13508955730002	8.74453409675933	8.0526972892837	8.67946506616622	8.74348735546119	8.70415343748725	7.58795199647853	9.0311612526804	8.34690502638453	7.92825895534536	8.33944874345548	7.79135779181902	8.94141285709861	8.50285832352305	8.45664692623043	8.81436918289801	8.77348419423403
+"ZFR"	9.05508002030498	8.60740190440549	7.70127260778483	8.75554388792117	8.71153446913553	8.77072342013349	8.73589885024374	9.25541506360672	9.09769185387413	8.94918212439466	8.71377970640122	8.77872305134797	8.55602640152563	8.87931023987538	8.90781965226014	8.4619617427415	8.65347719784709	8.95167359110689	8.75988388576502	8.74108114956755	8.65047543856475
+"ZFR2"	7.65725742673975	7.64570815600136	8.10475549035153	8.00554498502339	7.72320249355289	7.84455796100695	7.78678896977619	7.80088307973233	8.56062915809131	7.77920164985541	7.16232450507464	7.61547879602758	8.21122763432081	7.95699931849038	9.06582072229708	7.43963762222189	7.66973871996157	7.33708709189491	7.64918381582485	8.22463325155632	7.66191944231984
+"ZFTA"	8.55372131184813	8.60925377458927	8.93644000088218	8.8340440683462	8.72850824348833	8.87959152921962	8.99528274242503	8.87080077250389	9.28991656359823	8.54029014882972	8.15607434964914	8.65588320205076	9.0259474410108	9.034944445542	9.0874114280125	7.95699931849038	8.68634743301812	8.25831441816171	8.74505677482492	8.69901093315098	8.60322709660818
+"ZFTRAF1"	7.35924529124862	7.24127465066641	7.68313288113741	7.39600117211826	7.12879680809572	8.12840011317659	7.85844625668031	7.51789094501915	7.5247295454083	7.54698335697187	7.36556047776305	7.40729794130115	7.58491448132874	7.78894728992549	7.46270212312497	7.28471042957757	7.5250262399124	7.73428557411208	7.49462259131199	7.43218041712202	7.54883469891813
+"ZFX"	7.98651332059037	7.69087215453969	7.4691773739674	7.64669235959125	7.53906392181933	7.79569183274709	7.30356729167296	7.65093184143177	7.69611558683285	7.6685439625672	8.00939634900932	7.09387553040591	7.07549591340067	7.70698962270431	6.87672868232838	7.20160046509388	6.84021712077013	7.58965804394239	7.14307329990584	6.99401604701828	6.91184013929698
+"ZFY"	3.13660967835072	3.03366024331212	4.537699768961	2.95996402427782	3.42312577215279	3.19408901777492	3.10249199656967	2.91928741107058	3.1889484903125	3.12769378939386	2.84993123427913	3.55115766450254	2.92498800680658	3.14191675042672	3.96810660903246	4.21145523463627	4.32030582293302	4.36718333420475	4.14416003361528	3.61119296491246	4.27953810440351
+"ZFY-AS1"	3.56502972510388	3.72018827215077	3.70943649034721	3.62681569842792	3.67884275111033	3.09782467255632	3.27385999584043	3.57078884349176	3.52047866950487	3.46244644186902	3.42891906730312	3.53956798205396	3.52047866950487	3.52047866950487	3.46492577692661	3.49951546154805	3.49758142307884	3.4429399639482	3.57470511142422	3.673414193206	3.51492387133986
+"ZFYVE1"	7.41166633347386	6.7707840294365	6.37040392047972	6.55185267974511	6.70892475096969	6.34001099041212	6.83658638620357	7.19348631323727	6.60480512266053	6.91698721235459	6.85246880394156	6.78844634370443	6.19079168153048	6.50018168517171	6.47381874456644	7.02732730077706	6.64440316599722	7.01268815050398	6.91014592541256	7.27875805245194	6.9574515433769
+"ZFYVE16"	8.24260311629217	8.57064766559734	8.43778085778356	7.4723326699207	8.01351865330462	7.51753134122735	7.01755930787516	7.91648073128018	7.28888676619119	7.43256176855197	9.03050825170181	7.67683058616787	7.36279077587182	7.51192793707119	7.35792309497851	9.39845140279918	7.60671687947173	9.0893720930927	7.35376635822088	7.57233096669929	7.76324222771683
+"ZFYVE19"	7.38270243382266	7.02457350412169	7.09050871327973	6.9068003699038	7.21553459191859	7.45221162145367	7.46843143587616	6.9712324054889	7.43904067255672	6.96213051907704	7.12098008554743	6.71917421277709	7.08271422239722	7.24142156118906	7.29262155419283	7.21110193154193	6.78206430457926	7.54416182276442	7.02534022838135	7.03866702588688	7.09063096248772
+"ZFYVE21"	8.70979109193475	8.7025499277567	8.24624882620146	8.58265786712288	8.3493609357612	6.68150102631382	8.34415893959697	8.90653385827275	8.19233099875474	8.44059798949762	8.74676936404376	8.22484970775246	7.85733061646449	7.73856703051392	7.66194646966354	8.52447131244772	8.25665497671289	8.35738909091945	8.48927402528208	8.41551187666381	7.70387209464971
+"ZFYVE26"	8.12909397004238	7.55673405880577	7.90113099626009	7.59029341930106	7.57202179781676	7.88976344508736	7.81843068988849	7.63965926914267	7.60404771821843	7.22953518382175	7.71771157946033	7.11878468512807	7.39735186666694	7.91406571608329	7.74764078014851	7.82977315612238	7.34167216346957	7.97829770416021	7.54156455276104	7.46681482974528	7.35383090642572
+"ZFYVE27"	8.50376955404534	8.90295551638687	9.08749830800873	8.62643169562964	8.77537052704248	9.00679934340589	8.61322326487044	8.62300576595925	8.8456367229323	8.81526398671797	8.65738284207186	8.80767991305279	8.76636140241694	8.76447542428222	8.70167130637889	8.61836694653152	8.84209287513582	8.6009692157897	8.64641447588179	8.93647369301786	8.77537052704248
+"ZFYVE28"	6.09269925612562	6.36713377706714	6.45990549444885	6.51255904804081	5.88377412196245	6.18598261774152	6.13967446628585	7.41850659906448	6.55529008571255	5.7546810078599	6.07574598731472	6.34681302151349	6.65557567367966	6.01612984974308	6.86363944454509	5.23277301404305	6.82269617665257	6.00670622707959	6.72370992714959	6.15132101047254	6.55869415816585
+"ZFYVE9"	6.01321693905776	6.08514339363011	5.05410853916265	6.01779076486114	6.18738337680513	5.53746586217268	6.2796199254728	6.18738337680513	6.35014467391571	7.02862875931827	5.96422742107359	6.64344872726375	5.72997674550066	5.83545440815167	5.79021668803242	6.56425002531044	6.34565416094058	5.78262240427122	6.30929766965742	7.00411075970496	6.75751125677883
+"ZG16"	5.62350880678536	5.49513789742377	5.71301278165925	5.71656556366923	5.72431138520103	5.82492602654411	6.2494902368727	5.64236738489196	5.85605515687255	5.54072793610981	5.37830298686798	5.75049452973093	5.69674008136161	6.16726439895656	5.81401408545366	5.62946917367741	5.71656556366923	5.71656556366923	5.67025861338215	5.71656556366923	5.87196926820099
+"ZGRF1"	4.57204630650208	4.64300493969758	4.80509915725087	4.36111307564748	4.87540862384068	5.09122390903668	4.38412909736769	4.40892718001131	4.0711184856624	4.63960114058233	5.36901752396586	4.60078649238542	4.25964472169835	5.0723846818638	4.37316064135434	4.78615294213309	4.60298831232043	5.58932303697476	4.27172414657531	4.21855367289032	4.56991341811369
+"ZHX1"	7.46843143587616	7.4168999983587	7.52189483716568	7.83453838481229	7.5344791796173	7.00435609054062	7.4676720127792	7.53213100855471	7.97047874045725	7.55755612904339	7.71685362746728	7.56568776888739	7.65900827371725	7.38351569704946	7.96808688550485	6.92889390659129	7.39982908893977	7.51645850327239	7.91791401965799	7.36956416243482	7.24547706041047
+"ZHX2"	9.36849648896399	8.72730042675014	8.63527196815901	8.71739208260483	8.54266370772606	9.26947497324441	9.30118352214171	9.20846749709468	8.39136838529499	7.93020127687841	9.50109604130641	8.4417839078985	8.28300640599489	9.05542814970462	8.11451785422802	9.60537975266987	8.74484823279419	9.68485059309579	8.62958971432728	8.29575456150974	7.82406162984543
+"ZHX3"	9.20019847944486	8.42303394739187	8.74043810674699	8.60447187323876	8.28339146589023	8.32609408607383	8.87434153630237	8.34917662327714	8.72886864508021	8.57942074488681	8.90337952975195	8.37602040557076	8.44557864817809	8.7194912466993	8.6119233266641	8.2620700101829	8.43659422400393	8.6129157426287	8.60038873118659	8.25621577660182	8.17245511838556
+"ZIC1"	9.83155718124439	9.6717265616212	9.45860913945124	9.56168203020622	9.23591377885607	9.97101207396339	9.93306234470608	11.8151379162283	9.31885155423667	10.0631719987844	10.1671817042154	9.50406609786321	9.81196448901147	10.0610026067763	9.10115847796467	9.54602357910404	9.70215837203769	9.88416264511851	9.90255546963713	10.7243160412662	9.64610031994348
+"ZIC2"	9.84803050226601	8.6143381669428	8.3412185736359	8.86474187739947	8.27032162468134	7.9237993865211	9.7885456939198	9.04421565086098	9.14827682914553	9.04826608402208	8.91297890604122	7.9774580162136	9.04976734156037	9.16060926595068	8.74171957028422	7.65791503815593	8.73050847260777	8.03522818920899	8.89916422893305	9.27199067647548	7.21200597602522
+"ZIC3"	5.95568285574055	5.61407439413678	5.16274452656707	5.41545747325297	5.34732232556389	5.44061319479109	5.43263184465008	6.15797587876223	5.44982990229324	5.64695793084475	5.39395585808532	5.32026555399433	5.79406339161837	6.00853655264264	5.56358692573296	5.35038904751938	5.61426181389771	5.20168860712975	5.08771697782503	5.70083494759187	4.84269699369329
+"ZIC4"	4.97463921598562	4.67741581378734	4.82068918512391	4.74804842170016	4.5407557275946	4.28529325091984	5.33726358869419	5.03664855957475	4.87515150497208	5.05398469432818	5.16606205569938	4.7856010318276	5.09132883875893	5.01444651212911	5.03235722325041	4.60044961798619	4.68643777224076	4.68789676739524	5.07682820184648	4.98562281697558	5.13892407043966
+"ZIC5"	6.37016157279097	5.75015825578932	5.83848924790529	6.02347380578951	5.93413773097177	5.93900793816728	6.52455022289787	5.91616998403585	5.83381661501735	6.01131317405747	5.83629621276802	5.67334601283751	5.79958861759111	6.07766392557275	5.59846676868264	5.33441312924092	5.74279465300715	5.50220378614841	5.98514321171806	5.79069464486346	5.67521851290655
+"ZIK1"	5.0458155365786	4.94557756021197	4.70012097049352	4.91307335525228	4.92142625478504	4.89130608781246	5.42088127222804	4.78276545791092	4.99679390954848	5.02301384728384	4.97766726948047	5.06873513391644	4.71284482942733	4.96841613323213	4.83666306388714	4.91381889451541	5.09829408512409	5.26525870435202	4.95653185124091	4.73790930371186	5.12057429431316
+"ZIM2"	6.1190797733669	6.94853617176052	7.01504927684244	6.70207303205953	7.20796577145414	6.86691294853639	6.18373109370564	7.39748615932237	6.67010004962753	6.95695012687604	6.55142430499799	7.36940276471841	6.67520429114087	6.71360599575602	6.46023684177169	6.63830391767669	7.28815584555663	6.71567820989613	6.40705184047657	6.47561498549437	6.57707087381221
+"ZIM3"	2.99245884840149	3.06194900631936	3.08757198605971	3.17399548466255	3.12750615635273	3.3867761258449	3.18911246908135	2.96836954101071	3.13645256648828	3.00808307272916	3.09277765197846	2.96915811982358	3.13227981262631	3.07798999714294	3.03705733617977	3.10175834440833	3.27714554887754	3.09277765197846	3.26013689153461	3.03670233434743	3.22569488504146
+"ZKSCAN1"	7.25200514941044	7.41146903439712	6.43220629516423	6.85222257690535	6.98106277028465	6.33458344227945	6.48831873865843	7.05887474728315	6.94029004106097	7.57005747789325	7.7601004288157	7.33985046011234	6.81499147497015	6.82424871721584	6.43510116375505	7.83533715778564	7.27351963928135	7.19397328358014	6.94022087963014	7.16161694655549	6.98008485895146
+"ZKSCAN2"	7.0956784104799	7.3116416970347	7.77446768376373	7.20600001802354	7.57811034355723	7.36871565691149	7.64063891529827	7.10919781612243	7.40630458151389	7.39645328495126	7.38527757795254	7.28124442220327	7.24664195937094	7.57712350417732	7.1787023788961	7.45126153442155	7.30966974326197	7.75806598866202	7.23174521041088	7.42245104680367	7.29000236975729
+"ZKSCAN2-DT"	5.318301628267	5.50246535978587	5.26590355278674	5.68284649422718	5.09840904831719	4.97829890041181	5.68071581333587	5.3530506760052	5.54212055097456	5.48168566231472	5.74200808933306	5.47831590142259	5.61435057441214	5.51461082743422	5.7693831087254	5.67006506099413	5.30244655467032	5.13966441675883	5.78065864703551	5.490111861834	5.44319883404769
+"ZKSCAN3"	5.63781114714109	5.46898823191608	5.71469152969425	4.79889107987575	5.86494774334332	4.57977504274942	4.94470740856327	4.92300243498012	4.69145226377332	5.38336966097795	5.26867357416191	5.05383141039024	4.63724180821336	4.71863454343067	4.83851391392687	5.72170138817194	4.73362421952451	5.24299579696942	4.77592978772966	5.49061214984626	5.02180217563334
+"ZKSCAN4"	6.77023072107216	6.52066819169955	6.64027930314058	6.41835831675987	6.55257373123891	5.95350689024671	6.5507958662358	6.44500096451526	6.41835831675987	6.45256263878596	6.46152184810553	6.32884758149522	6.24793234450287	6.03302418619304	6.2844681740849	6.55368472710203	6.49730084826419	6.79366944281923	6.41221239688915	6.57502664804341	6.47288198273944
+"ZKSCAN5"	6.68322685473826	6.48002553237972	6.30859253733534	6.28182076404479	6.76941877203315	6.09395351184551	6.48199457666455	6.5973711547981	6.34121203977026	6.53370663407334	6.47787834433661	6.30778582276818	6.18525411831997	6.19840989508872	5.97553936699759	6.8194000994278	6.2703510999943	6.6167106900535	6.56638437057786	6.62653312009142	6.533218430598
+"ZKSCAN8"	5.47036462590379	5.24743689597497	3.71713665120564	4.49995689264989	3.81801387731656	3.73287812881728	4.9411222193935	4.94048135878142	4.78542915174041	4.82708011606189	4.89982957111578	4.4639965426867	4.48612181162804	4.68513915507713	4.15512944140182	5.21728291904618	4.89897007579043	4.20176913166958	4.55974308300449	4.56656921304148	4.75955574972686
+"ZMAT1"	8.21906760590553	8.16588319385163	8.18235139004389	7.60797301715134	7.69218754991135	6.83995018521913	7.18416687258867	7.06935504679301	7.01383214878701	6.79693452709255	8.81088453548996	7.39544846064471	7.02408413110539	6.90967964585328	6.87585946833476	8.48234125538658	7.06275889784498	7.96848119524659	7.46337974406946	7.21893582868557	7.05741934092515
+"ZMAT2"	9.71562287970642	9.47669673788667	9.91738120468822	9.46948526729606	9.81310765589485	8.99153918213522	9.55209026644382	9.6438113003998	9.84737991927439	10.1783238329154	9.22939892815446	9.91683031867803	9.20657464032539	9.27731444736668	9.46908374339315	9.93357351649663	9.75637706890739	9.68460926439464	9.72677470557967	10.2132859247648	10.0089002243157
+"ZMAT3"	7.53068629078535	7.44143141428374	6.56445495955041	7.63943185326529	7.53330214585508	6.34867760458851	7.9073169030379	7.76326998290839	7.9439129876699	8.28970897551094	7.54496208834844	8.20798242991689	7.57391651269244	7.28193154751261	7.46843415933548	7.27380475842788	7.87804393464091	7.07525571338321	7.91178528339783	8.23693530015001	8.13895444245123
+"ZMAT4"	6.68977142450979	7.97157870932847	8.60731055122168	7.87131698532584	8.66748514713263	7.36073580139872	6.77935696628047	8.04243964304188	7.91918354828888	8.1874064475877	7.04948668483772	8.62024665023965	8.09552451782598	7.21688690185131	8.1752742153166	7.51610455939535	8.04708208748713	7.98805956912976	7.88867776740021	8.87624335590073	8.16490707150381
+"ZMAT5"	7.35959631619929	6.94743833143961	6.90963566450012	7.02183101833523	6.95724273008739	7.13625792637043	7.38071106696668	7.07011588544315	7.06587668849545	7.0839875246391	7.08954679982854	7.0061665722244	7.19028017793532	7.26764353160254	7.00649489947399	7.0839875246391	6.88167002713713	6.97720766218922	7.16429470856002	7.26057570918337	6.88143620762332
+"ZMIZ1"	5.07832370813124	5.23630848673625	5.21973644053881	5.34670939242448	5.04048271394145	5.46326312178497	5.46728718203826	5.3064971594276	5.42756182484581	5.43406380462088	5.08961543800521	5.34535736281671	5.50482418987557	5.72503288844569	5.14300157038191	5.13857941056461	5.21809218047484	5.02911786542874	5.41239895483193	5.26806186987683	5.42902370075657
+"ZMIZ1-AS1"	4.30923821664179	4.57177911123225	4.38558071245488	4.56433268635922	4.64738679315393	4.52662828368398	4.54705460571704	4.55788318101802	4.57242364609926	4.44164330967586	4.46694139793186	4.57506864836243	4.58377437083036	4.50492514307017	4.66309177277099	4.52617400374802	4.64650626772103	4.26745166482646	4.47645458603707	4.52103092854864	4.8216487731559
+"ZMIZ2"	10.3973245196324	10.4794091850638	10.7682281242601	10.2789911217709	10.388976070969	10.969912254007	10.5749103728396	10.533011403386	10.6712184270457	10.1818608695521	10.2174716095117	10.1871897357474	10.5339648592464	10.5841896566402	10.1645870821781	9.97899484185607	10.278129290036	10.0155181750752	10.2522459904671	10.2360067526943	10.1851756051795
+"ZMPSTE24"	10.0802338376576	9.56840196896669	8.95474424338144	9.81171576724833	9.52430652784397	9.40566018225269	9.94905948314845	9.69083741718719	9.90316097412339	9.58973064104967	9.71826000203031	9.19848258883292	9.51041717937702	9.47791331353234	10.067794681841	9.95228681494663	9.47972111650775	9.85798109376679	9.86053392993572	9.68591147890219	9.55036890683619
+"ZMPSTE24-DT"	8.06836247766158	8.49334729345826	8.69651451728559	7.91910762611354	8.737643221559	8.16038251765708	7.48143083221973	8.61570875754088	7.93779512035476	8.53143491925434	8.66284119567197	8.82054157382968	7.40879948111639	7.96843680663571	8.0492598615778	8.60164431981432	8.20763876270648	9.13258331611267	7.9821173876086	7.97034755240236	7.85526064520537
+"ZMYM1"	5.15201500960614	5.046494963453	4.98200908134609	4.43206708284219	4.82309785276274	4.49951007811177	4.18610290421698	4.83851391392687	4.53928034870506	4.20648538579608	4.60326245793491	3.99980992842838	4.41601989909975	4.50362834735928	4.42313546487448	5.10051534255273	4.54466718611001	4.79613911080203	4.63834874072463	4.41644281758322	4.26294537909897
+"ZMYM2"	3.66482601541838	3.63389336105172	4.27265625744536	3.76145915426798	4.35872637422585	3.27616642485492	3.33051982897647	3.46263514782866	3.71031846596918	3.12185999878152	4.10165125673108	3.79266547718435	3.452456664863	3.14969938759776	4.14994299697346	3.73820188779484	3.87205172802477	4.23537458972576	3.66482601541838	3.53820366206772	3.14918693095832
+"ZMYM3"	6.76823125906071	6.94565508967137	7.27794530327019	6.64068469702756	6.98041120425752	7.2801538592862	6.64984696736445	6.77678746055475	6.73638220590008	6.89263394633508	6.91060205105835	6.83165566321151	6.90934496308112	6.96428042445627	6.75069823985444	6.60777308838608	6.84665278400327	6.92639944687322	7.01978739994271	6.43035653009328	6.75489337564245
+"ZMYM4"	8.28698772599773	8.33628306032946	8.3709089742302	8.26341348188018	8.51176162009224	7.67150537952163	7.6736453025356	7.9186639315928	8.19743157954022	8.4689783310233	8.11165659250658	8.34769960354373	8.1449321527685	7.91296581440395	8.34179905392247	8.39498650280899	8.39750655786812	8.31497932083482	8.19746378466984	8.59255381163695	8.45651952635029
+"ZMYM5"	3.79687541305571	3.66523313390252	3.66363055578607	3.78441529943315	3.59716936205129	3.43158648552591	3.30832329917907	3.84972839997336	3.44666441641774	3.45561865371338	4.05252398317328	3.41110631215552	3.79789751493351	3.32874843777554	3.60683511117734	3.8376982464071	3.51343241723041	4.00469379059507	3.68364972979133	2.78431173873862	3.49139218281631
+"ZMYM6"	5.23215365033366	5.49140731307949	5.30741335073813	5.13733935549546	5.43008736221098	4.97563744135147	4.77705260103556	5.016392435695	4.94396231729812	5.16304009926144	5.59269472792826	5.00112878540547	5.03678108564157	4.90950985314288	4.89274398849156	5.78164189503576	5.11165078623231	5.95967278460203	5.12091693679107	5.47374857031091	5.38606381264897
+"ZMYND10"	5.93899441933927	4.86905689672254	5.00985064067088	5.08816326993241	4.97569594481435	4.891431597517	5.18174251841254	4.81909393088225	5.17163128117215	5.09122390903668	5.26265897708434	5.17524520974518	5.35270768867802	5.09122390903668	5.19451725427834	4.9722289854776	5.0987859834324	4.86336839144615	5.10559691287478	5.07206058051375	5.17916483308937
+"ZMYND11"	8.15209473020232	8.15610631190434	7.1121279926885	8.10257743571659	7.74982738473575	7.21928792184094	7.43492430246032	8.13005978204186	8.05969942675727	8.17099359454152	8.43015648706686	8.13372701724158	7.9453345565838	7.61737127975206	7.80923326433857	7.98202086140321	7.99138055607365	8.1374367834846	8.00949315150059	7.69153701705411	7.88796988679593
+"ZMYND12"	6.30331847630234	6.03127456071559	6.3534260074347	5.29949716693497	6.27307604599089	5.28195398275061	5.67945237955245	6.26387297215833	5.80074068112864	5.87917435410712	6.70299588787893	5.9232606647389	5.46651582407048	5.58970501711416	4.98669366871657	6.05623637316196	5.01072370544938	5.94136041170881	5.78537864933039	6.11076675240526	5.59696382820847
+"ZMYND15"	6.75011563094281	6.86455668932961	6.62875171226049	6.78331224141729	6.33996187742872	6.61557724760361	6.97274363639813	6.69364956667404	6.83125717825354	6.64891136049755	6.85584947879354	6.76640716501909	6.74219132852422	6.92295946147529	6.64737513990755	6.68087347992072	6.78992009265268	6.66101691426689	6.69717925418053	6.73170321597505	6.59110569380213
+"ZMYND19"	7.79070593637858	7.64939432229805	8.3394930944712	7.7493080595052	7.82518604349421	8.05731144346823	8.05533865159706	7.86292879576868	7.94928623960289	7.66014864808918	7.42295811869394	7.59625926168548	7.74084315280309	7.80374956069114	7.90778068529689	7.40458545312609	7.5674750936574	7.9576671969788	7.72758342171419	7.94868105927551	7.76351322161533
+"ZMYND8"	9.84273494908305	9.52788804526321	9.54726260326945	10.2448075364632	9.43087567559629	10.6535089222164	9.6514161457733	9.37689128071229	10.1225689955637	9.3731766685469	9.23864681112612	9.35431039024748	10.4681478716438	10.4955629691992	10.5257531468435	8.9336175756615	9.80040600368397	9.48328652912097	9.65121812472796	9.3264357557014	9.4552387165677
+"ZNF10"	5.37335128457571	5.75723478441673	5.10777499336083	5.28510652453072	5.53569446077769	4.93309534961077	5.07284141690504	5.21016405269954	5.04782041224607	5.47469881969052	5.42556241821817	5.25238338083948	4.99722734750814	5.15486679881816	4.8453261471795	6.08398805656955	5.35484099184024	6.10612432925074	5.40337607642385	5.37335128457571	5.43604477956549
+"ZNF101"	6.68032678649582	6.57181282393901	6.6974199602552	6.35481081299816	6.48516035113412	6.60097112192429	6.39502919355539	6.48736446627437	6.67223249294952	6.44985474254977	6.48736446627437	5.99560612808412	6.12920518846672	6.49163041801977	6.68991709560082	6.78420415628618	6.24920381010229	6.51859236901381	6.67029075571738	6.4538081691378	6.0077724735066
+"ZNF106"	9.62121002898063	9.25476267898126	8.40334248425683	9.33391336104808	9.13411125194042	8.55275789588144	9.8615608235301	9.51810624101043	10.0588375545335	9.44329145795301	9.2973670476568	9.18141301364708	9.55788636855568	9.80382027804094	9.49694923726696	8.9872239608921	9.45315983969445	8.88345869227909	9.55563463544959	9.58330316551521	9.5956933846483
+"ZNF107"	4.92272141156367	4.73931465381279	4.46468497933702	4.14884492638446	4.59490025159534	4.59946866682094	4.63632256744004	5.04384294345482	4.8773101031049	4.71682596432523	5.21036501064069	4.31285990502581	4.35601274283148	4.56291494402812	4.27496395401826	5.03538901176788	4.52202369728391	5.29858818023916	4.43608076014448	4.06725044167054	4.1027272490621
+"ZNF112"	6.57945845823462	6.19993849464403	6.40106179007743	6.09452864367732	6.2030763496523	6.30304736740402	6.31228553154005	5.71011156651643	6.38928609238733	6.00615305118535	6.35519909801888	5.67339964361089	5.91383347940996	6.2030763496523	6.28925984953399	6.65104840090741	5.83527247845077	6.88348947855764	6.20641833608178	6.01866199362165	6.1457538100937
+"ZNF114"	4.3573685308681	4.60695080828838	4.62890557860942	4.12695002257217	4.02644393953965	4.50027838646173	5.25580292275966	5.17806004543154	4.06003962339074	4.24125864810457	4.39471354812698	4.2330209192495	4.68526485047411	4.61995591231846	4.06468361457004	4.111871989059	4.02125108434874	4.32794444529747	4.2493817728559	4.49852897839739	4.03600099560098
+"ZNF12"	8.76141044671902	8.62620435522254	9.21808787481401	8.70557124648596	8.94254797552336	8.37786287200857	8.57076356272231	8.73547427627617	9.11026232145398	8.67081487851482	8.76520769786872	8.57901405032539	8.67758749879857	8.41923320955759	9.1018415381103	8.864925161977	8.75420011696109	9.08204255228648	8.86958925836127	8.97620560280031	8.72324752401608
+"ZNF121"	7.89308860467254	7.84712932678902	7.9531234319265	7.81801324581907	8.04338628655228	7.95158918140683	7.68335833130037	8.03894193987889	7.95505194131475	7.51911934232639	8.05090197937606	7.66565009023154	8.04962258588187	7.74216635219656	8.27855818285169	8.0826834453417	7.67281523533495	8.43610963402861	7.87304295628663	7.74397186335789	7.82649885826679
+"ZNF124"	5.52560477454462	5.06764699669236	5.73535597658245	5.54799946222785	5.24592006801821	4.77716028692212	5.70598482625339	5.46283228703047	5.80366219192598	5.04399863241357	4.82753937109803	4.46782841216399	6.40116519222885	5.59220541149015	6.17950353320066	4.980739973898	5.20555116728116	5.604793572565	5.45786295518452	5.1489182789833	5.2268094573766
+"ZNF131"	7.13574844171186	6.97870663462229	6.50724026037352	7.06511810583959	6.2199168487307	7.14021644682167	7.44764704604609	6.95197134629384	6.9205115002296	6.64420831086597	7.24054766242013	7.0038208925016	6.88626550344749	7.20879470625392	6.89364732064115	6.71627222186284	7.03299767799875	6.38576519315995	6.97642620193683	6.645740632437	6.6404469926765
+"ZNF132"	4.25147537277613	4.49621825108954	4.62618272862531	4.36323183720493	4.51760061780536	3.87251954952736	4.17814920163578	4.0338238547241	4.03742838561804	4.55866041239644	4.31133620251908	4.40427454334943	4.2149509116131	4.15077715685917	4.21749257809528	4.9302375187372	4.45252677327094	4.44560375245297	4.31384528763713	4.767893096437	4.57512919121534
+"ZNF133"	7.90235348003249	7.89926097096108	8.42979298235023	7.70275901331645	7.82905128216511	7.81045425053707	7.52051582782349	7.48616594406945	7.79399735556828	7.65135349721508	7.90525829530862	7.76236261357875	7.69638749246043	7.82950296170964	7.73596902787485	7.91266764266702	7.65749017866519	8.05583204371229	7.74526685818284	7.79135779181902	7.70048214111021
+"ZNF134"	6.92117898249811	6.82129944688452	6.40752354188574	6.59099267793895	6.75642090080975	6.40984989439141	7.05948847571041	6.92739454757117	6.7627384507873	6.97625912260208	6.72736344943491	6.86905428355534	6.3248971488087	6.98811944933377	6.4159466304982	7.07026840344546	6.75278017562962	6.99925833328761	6.94011105237263	6.91263900014124	6.86006325838872
+"ZNF135"	5.52710885643662	5.94478901176235	5.50528692233858	5.70750606593993	5.4014138665783	4.69325266773737	4.92901591078634	4.97238397700105	5.39478638354377	5.35823493552844	6.118865355115	5.54847147423011	5.39331324532229	5.50528692233858	5.47735176375989	6.5995497909311	5.3809146062823	5.86405260418588	5.76556239425251	5.40890772484726	5.69471934223599
+"ZNF136"	7.17475010387782	7.53851549650512	7.33981584416388	6.82450629332652	7.17314900290969	6.61855046107761	6.79673404449104	7.67656593822251	6.97854157172879	7.32743489735144	7.52175137914673	7.75378598443552	6.64925890296496	7.22102626107456	6.69280588861756	7.56968289796687	7.41951017717747	7.30011783042256	7.3427134370038	7.33963118945339	7.10164980886454
+"ZNF138"	6.3258110950232	6.94321279211775	6.74771956112023	6.9374225207861	7.02981487324759	5.98509684238275	6.37472820775883	6.72256142899281	6.86223566256646	6.81275874878198	7.03137544105273	7.28038949094834	6.6901734274735	6.33571552327933	7.02487054945005	6.73446992400927	6.95955995964021	6.79596306180235	6.73446992400927	6.62736259047128	7.00243750040664
+"ZNF14"	7.08838407935788	7.44869234970396	7.47005604233764	7.46577233989951	7.28965460546941	6.99407390678067	7.23207981828464	7.43496097265297	7.43730861853582	6.98903840901763	7.63763827941732	6.97298166974515	7.1089717176035	7.18213055987487	7.2262844717489	7.53880033089281	7.00792445237246	7.75559055013122	7.48832492167032	7.21013188329454	7.17445767567389
+"ZNF140"	6.58654863266964	6.64180843347013	6.87326209078688	6.33047023208876	6.53819620777801	6.0132522157083	6.24443397539332	6.61201171640664	6.59148032307954	6.32168942531695	6.87062769686876	6.09671510224502	6.50317732085102	6.33090517543651	6.43440572257977	6.82653074214755	6.14969771436078	7.05119527238189	6.28397082085985	6.4046442852774	6.41141966859273
+"ZNF141"	5.54783178994512	5.79976601284619	6.15265661270308	6.13261958890676	5.5941733389914	6.49445528798352	6.05705369344318	6.25263063835887	6.08781079464012	5.33980843138498	5.71316527467618	5.86168650845898	6.12192939429399	5.99985438725283	6.76448843716835	5.18833861831854	5.96822649630134	5.87868409595901	6.13428326316362	5.54148616548801	5.42887056893288
+"ZNF142"	8.13741969373342	8.19433575105321	8.18528802494763	8.16920416347921	8.18463658415202	8.3029956380329	7.65051013604108	7.92326105425059	8.08761505776938	7.9524941678786	7.87045469925814	8.0091920956899	8.24870763831187	8.24101583457171	7.86964580098477	8.11174110925053	8.15626510680914	8.29067627099438	7.77827380856227	8.14173819230246	8.05940859384402
+"ZNF143"	7.77005393568174	7.36118978190046	7.33257051227051	7.58452422801649	7.5420102545361	7.66984407500656	7.63345879937086	7.81318126271848	7.88885804974169	7.23803287788872	7.58452422801649	7.45752880348457	7.780775161387	7.57774976902535	7.6736953695527	7.39730979347585	7.55134332205244	7.83345919528161	7.51052963298711	7.4268550704236	7.38573133835915
+"ZNF146"	8.57294892156323	8.86125405269272	8.70322915754429	8.84548718476961	8.60488218910645	8.95176992832269	8.27710581784669	8.63363136193825	8.60792491951951	8.67867648874235	9.32354012513742	8.52246371996865	9.06597747781831	8.65738468209169	9.02192566590609	9.30057727632885	8.57671983287857	9.48772904660864	8.61703029774492	8.10645429831215	8.57576216786439
+"ZNF148"	8.94278861464314	9.55302723842423	9.6534562878492	9.3544066667993	9.55057534130293	8.56061029886134	8.96787421710509	9.31943351980598	9.56225409627348	8.92231709823879	9.06473617515879	9.28111606080294	9.30665977125478	9.56539060124973	9.77700575688937	8.85712419898222	9.1514388927077	8.94162451458652	9.55614408161061	9.24604756187324	8.93035915500636
+"ZNF154"	4.91522269191524	4.7890887557295	5.19909544385981	5.44376478794732	4.91708165502444	4.91639963467241	4.39981926436043	4.438450152028	5.45124121372987	4.80528615282872	5.02521660393844	4.22850533807561	6.27114680393532	5.39415588805401	5.69902527041391	4.01218446156292	4.75558366137786	4.21316592864011	4.48854896373886	4.24416003872857	4.82306943027786
+"ZNF155"	4.74262228603749	4.77433959396158	4.72480461926078	4.78426423247656	4.87363672363757	4.87276596010996	4.88164723725719	4.59408586767966	4.55596252791407	4.68986154685234	4.7939943459758	4.79651718515198	4.47298995877913	4.88745151754659	4.23560549244566	4.73563657601757	4.78433972853253	4.73495317896472	4.66124087142173	4.81514145985066	4.73563657601757
+"ZNF157"	3.02925240767014	2.94882542723127	2.98586326033229	2.90166179117825	2.88610692181311	3.0559316476801	2.96291019768071	3.03556469279107	2.93502979054914	2.84718090453189	3.0648111226506	2.98586326033229	2.81793007554518	3.10008699120666	3.00815690007037	2.98586326033229	2.96904677268878	3.10292831119457	3.18112131632029	2.98586326033229	2.95894620149217
+"ZNF16"	6.5732764887333	6.30527516406736	6.6042363816647	6.42966766863127	6.4556521615841	6.51237256338066	6.35838584890935	6.37606220873797	6.42667317612772	6.50186736912808	6.37669674296291	6.37974671382118	6.1544963999638	6.37479230269851	6.29037377159751	6.42016953000693	6.45912602800185	6.58216757125133	6.42667317612772	6.58076329810372	6.41213325101968
+"ZNF160"	6.15898077175681	5.81423062243078	4.51683926991428	5.57393227742841	5.31261173126086	4.891431597517	5.97705789083747	5.94101955734115	5.54176730210797	5.91647553055379	6.56318965953547	5.31564897611186	5.50076182085259	5.43300576023898	5.37682447631082	5.78814544915013	5.63756092790132	6.00177210938995	5.53766539022949	5.50291425377825	5.37355418714623
+"ZNF165"	4.13104731765838	3.87661100939894	4.16679092041883	3.88908420223006	4.13580434903974	3.89600450378103	3.87661100939894	3.78301512707532	3.71031846596918	4.08464964440571	3.74537215328267	3.50063875530657	4.19746175242714	3.66197276388454	3.64126100236107	3.65414437680637	3.57061085129062	3.87661100939894	3.71033957583747	3.92119649688731	3.57064018487121
+"ZNF169"	5.64451053363641	5.84871932138311	5.69960628466698	5.62052383583875	5.95302146227022	5.54802437823013	5.8478863837725	5.64110525031783	5.91272663482516	5.83718277626848	5.88086279501535	5.77884435795131	6.01996332013539	6.02291141904236	5.72061075983102	5.77884435795131	5.77884435795131	5.86454874366612	5.71785841847362	5.6757026990738	6.02829699535898
+"ZNF174"	4.41705161650702	4.54137198263651	4.6432985912188	4.10799090192012	4.65388415093853	4.96962633110551	4.14969620994086	4.29938893389525	4.40926791928493	4.57614700235013	4.27087567376744	4.44414987409333	4.25471906472426	4.70676378392079	4.5413175636838	5.15934575333097	4.25964472169835	4.83501903539198	4.68114999668133	4.73291895844115	4.49497619638741
+"ZNF175"	8.04881557411685	7.95059534238819	8.14401327263141	8.23465205783651	8.1962068258543	8.24269716230327	8.24371069591073	8.14401327263141	8.29796542766475	8.14401327263141	7.95038470965474	7.78076725635142	8.27243919948485	8.03954441312941	8.35343325700539	8.0264694577831	7.97630115583025	8.46808490520012	8.167568308414	8.12694705873107	8.12091666610088
+"ZNF180"	5.53560793464097	6.06497615936	6.01667052358024	5.40442912961906	6.01974207220518	5.16543400689909	4.9963787799359	5.4105259034358	5.60139914372602	5.89564359580524	5.91344129322307	5.10335526346404	5.27963915688768	5.57025967269644	5.23990620358765	5.71526505182296	5.48861517392816	6.38251261594394	5.52467484266709	5.81297796536402	5.68099751210554
+"ZNF181"	4.83032721185556	4.43825184924258	4.30051813149754	4.56784258757475	4.64087580638936	4.67563631557606	4.61104154221197	4.73976514851686	4.36668898391427	4.3490248317407	4.2890640383112	4.26731843460554	4.48140818025349	4.38234400633787	4.41016449365541	4.6573580757063	4.22945551825066	4.33032298883397	4.14688870412121	4.49247930648426	4.27092613063193
+"ZNF182"	6.88925180547839	6.96983549497001	7.16185335343875	7.00702910663615	6.56175616054616	7.43778133899647	7.5043267118803	6.99088100162603	7.16151743010205	6.98313413063714	7.02838208050423	7.09623365930388	7.02245874202031	7.30358386989486	7.25401015094825	6.69091439132074	6.84859091121134	6.87166584436024	7.23074611278801	7.01586823002413	6.98544168151053
+"ZNF184"	6.86624469880591	7.65781336608817	7.99573443421439	8.07479786465407	8.29489610333631	6.68458396877338	6.90302711411611	7.3057966820234	8.43226915235461	7.57177251119474	7.27817829577218	7.32112427462095	7.87010096497745	6.6654579952557	7.83268758382719	7.31958905292747	8.55333120963078	7.83379483147419	8.01588661443285	8.15879018997244	7.73119890473174
+"ZNF189"	8.73972466944338	8.9221902247503	8.83084524611021	9.19999009766426	8.89281432964393	9.03716078251838	8.22579620260598	8.37463375747916	9.43054309481854	8.92456499009654	9.20459863681155	8.70227230326997	9.18118914198346	8.79858484436216	9.24837095922771	8.92128410809643	9.1436780181692	9.48259661141593	9.1165102371139	9.05951253723619	9.23143792755994
+"ZNF195"	8.17881531781307	8.66468050392968	8.6357701006088	8.51898333064803	8.55805347469952	8.43242919975931	7.79100981379881	8.31466372017004	8.46685401270802	8.35140577798419	8.68568798114552	8.30993813937106	8.62056671569288	8.71343737490764	8.71421180912576	8.49691092222581	8.04902230659587	8.61162601967243	8.32204672754261	8.46685401270802	8.24655259052833
+"ZNF2"	6.14505941677971	6.30246636653692	6.0268456023735	5.98080059503755	6.12643730059513	5.71670694917169	5.88756170302021	5.98982494326974	6.07383271064152	6.0268456023735	6.0268456023735	5.70031698572695	5.83107073320971	6.12059484398192	5.96660449967854	6.64908329908617	5.86676394422358	6.59246691724035	5.89853781447211	6.06947257143041	6.07603115741821
+"ZNF200"	6.21277926657639	6.10164652226276	6.27517694466805	5.38011977275691	6.37183337383374	5.76772094578005	5.53980394992983	5.95490474937084	5.83489135196075	6.04092464014324	5.84453718105455	5.67208151949162	5.60504398232669	5.49042741815774	5.72819661853945	5.9413616040714	5.64390252002471	6.443834933189	5.73843186413752	5.8535417747186	5.69374848806862
+"ZNF202"	7.09126114223134	6.8979946611305	7.33828436516384	6.89176862069158	7.02029606610215	7.25564839614161	7.02912009242577	6.6634833003756	6.79707936295949	6.49196542044406	6.75271227804355	6.41514183788059	6.73151194084513	7.30470591751249	7.01839969436203	7.1928780423927	6.35947921921855	7.38551229676787	6.56390155049114	7.04937469346169	6.65295873159075
+"ZNF205"	7.10385055698048	7.00790859578286	7.11848370335209	7.09381771991547	6.72540907508622	7.63059380951491	8.02398622296589	6.76350968279027	7.25188929786328	7.11920195186736	7.08983507785144	7.13871309250389	7.25689495096074	7.39697746300485	7.23153312455833	6.78090233488107	7.10385055698048	6.85752132824504	7.37169028018085	6.86554679200649	7.03249884167786
+"ZNF207"	8.71846098898671	8.96075663714944	8.76528664256002	8.95072137949989	8.05350662784549	7.90419250960125	8.4225986801945	8.66797526118092	8.76575493102559	8.46592913671312	9.31578383113202	8.68692553535389	9.05077367439033	8.91946328837143	9.32589076966993	8.71786055352745	8.81871665754383	8.63402776011166	8.96916062384405	8.24779200262192	8.53640976257175
+"ZNF208"	3.72915729735117	3.96519558196436	3.36469931105314	3.54736957854483	3.78076396175726	4.57854255335775	3.63366522439491	3.59893528468548	3.47619302521163	4.68255618273204	3.65281057721695	4.3777178614765	3.55654851800989	3.90060353900977	3.80178679885111	3.97842033453497	3.97593311728684	3.97180361377085	3.58657035912302	3.58584414927117	3.92833901537872
+"ZNF211"	7.57438367935335	7.6572345422292	7.87177959269822	7.26878499771969	7.66206586450731	7.38634815066921	7.11338561858003	7.53715554393681	7.34496589746108	7.38600785010572	7.66299993578671	7.3135498575545	7.2002030781645	7.25481139439994	7.18172651536955	8.06602588195112	7.53171491288635	8.2156854529914	7.39038866927915	7.47496456049789	7.39277880061003
+"ZNF212"	8.232507371962	8.00599621369475	8.02647638802753	7.84714832222417	8.07937926793301	7.94699450889912	7.96169179617032	7.77852232646447	7.79810002230352	8.0260447929439	7.96561646618034	7.68075885166435	7.99677763180408	7.93901667177096	7.90059896492758	8.07809776317158	7.6467194837708	7.97813254213608	7.85763380070831	8.08547333037047	7.93690029898401
+"ZNF213"	7.76063973392311	7.96507294903095	7.89799719957384	8.00542254073684	8.11326457826101	7.97731493937384	7.896817768596	7.66989298781999	7.74710993571394	7.68452916261312	7.72925767974595	7.66088034471014	7.95690443023382	8.19456057838373	7.78928917666147	7.65763477192262	7.62697043448654	7.98614555159368	7.71263605138208	7.72471797101642	7.88806108537627
+"ZNF213-AS1"	4.4811931555305	4.85731502220207	4.79153674036198	4.49244119664029	4.49085145929547	4.47602464668772	4.38669614502173	4.47298195156041	4.49244119664029	4.56538891856928	4.86311598734627	4.73639044974776	4.40127740387676	4.64919921702886	3.9374233985132	4.60131229489578	4.38868458282386	4.38868458282386	4.29266954498785	4.43553257129958	4.50753396255537
+"ZNF214"	5.33661266870599	5.11364337016244	5.01899887624448	4.89921889485622	5.02724438788711	4.65143752925535	5.15627683658361	5.07650421474476	5.4220534640795	4.9554305630297	5.25315898987671	5.19420428445302	5.20518187600629	5.50830135665581	5.13691161919547	5.19722926275744	5.15627683658361	4.72083029964895	5.3766375794325	5.25315898987671	5.20932569342535
+"ZNF215"	5.82103422196283	6.13377213001387	6.00371098977211	6.12471489273242	6.22853284270116	5.69050004291591	5.75378413889508	6.04054473714362	6.19436366996625	6.34722972819559	5.65274461013709	5.95049845128999	6.02789736666907	6.01729231183279	6.24887327636325	6.01729231183279	6.22895099810706	5.52971680988416	6.04803616551737	6.35011001156484	6.06785410820348
+"ZNF217"	6.43137469247944	5.07899126649202	5.13612156038976	5.15356769101239	4.83335154705858	5.20638699893316	5.02734430090424	5.61301328017861	5.07826492431982	4.98517408297817	6.0253730223913	5.14803495138425	4.86733796830676	5.42160706056862	4.97956884898185	5.311523255785	5.02911786542874	5.90019462835973	4.99532194402693	5.00062259366075	5.14803495138425
+"ZNF219"	7.76634678543521	7.37159679460575	7.60663507711665	7.7162618651923	7.57721212122401	7.85686578095497	7.97303129576183	7.40986631945732	7.90844601029283	7.83670122734691	7.3062736082112	7.54211250608991	8.04648737116477	7.86215865095267	7.64254867663308	7.18980576543164	7.58880151206266	7.27290370972467	7.61492038025323	7.70267282602833	7.63299882039742
+"ZNF22"	9.14254440098797	8.5615252533883	8.45558574498508	8.50107894808056	8.40171831412871	8.39479511917097	8.51235869294719	8.68089590744201	8.47629473957604	8.24882580437583	8.76836212086474	7.95864316955007	8.16804609095078	8.7659109521166	8.51102377118637	8.8879848963889	8.16065270831283	8.7534841436447	8.51932478667083	8.18324726078139	8.21984595200978
+"ZNF22-AS1"	5.84759715873509	6.15121088602103	6.19713217905302	6.10846869342321	5.97970372738117	6.04786157546652	6.16865379665964	5.68252365059641	6.04566898624723	6.12285722752123	5.89192453837094	6.04566898624723	5.95729173852143	6.19840989508872	6.22187732646757	6.00969568499375	5.85443023233668	5.60141154807646	6.03999434367609	6.05292224999771	6.09529329831622
+"ZNF221"	5.27396873984499	5.46164604699579	5.2564513493951	5.27073210529693	5.11962928897129	5.37350595535889	5.93900793816728	5.33853103959405	5.42578134704441	5.48565389005924	5.20702665348469	5.59792062320908	5.51530833916572	5.66437627170258	5.51530833916572	5.4712843299551	5.67340168539908	5.47072803909882	5.64247073545919	5.40356100026267	5.42839044998041
+"ZNF222"	6.80377126951466	6.72800370118402	6.74893473368876	6.38105308586332	6.94506272159157	6.05886399912249	6.50801624348977	6.93699033670033	6.6583600855558	6.61732490768273	6.49253534439418	6.59950764039464	6.32370071717634	6.56842551525375	6.58147214565638	6.59950764039464	6.24669303370256	6.72454875502852	6.5837460418116	6.69318233132135	6.58932864259795
+"ZNF223"	5.08675171578388	5.96995380906461	5.96268494323636	5.47583479040087	5.99818011232508	5.31309759018097	5.16401523836366	5.54456544158392	6.18309982578012	5.99005174412989	5.12746650795198	5.66487914968967	5.41143769560053	5.40740441995258	5.54456544158392	5.98737603366594	5.84832979762852	6.12051537967955	5.37214341919614	5.77773630191975	5.84856504361442
+"ZNF224"	6.12079117830211	6.06728556790674	5.70824145290166	5.8094513238156	6.09509402602111	5.63466941965747	5.64155907420845	5.9726343144544	6.02440416376164	5.78876945944348	6.17123193046836	5.7637414832805	5.23826470323812	5.66128153398499	5.64815284439944	6.30880616678353	5.89073795865443	6.87136914581391	5.82267663025485	5.7531508154445	5.89073795865443
+"ZNF225"	6.82280220986082	6.65102967102383	6.75334227532436	6.36330654662295	6.63597239816691	6.51660931470279	6.7606993772793	6.08012566004272	6.39103093924841	6.53085734058906	6.2671750471671	6.49007147088621	6.18820862712394	6.52491910505767	6.44985245765114	6.88358155505152	6.11857394954259	7.29280977029342	6.23619167964286	6.54837682150656	6.54837682150656
+"ZNF225-AS1"	4.05722195132609	3.96724654483044	4.45292600700503	4.16497002473974	4.03956255386674	4.27208796280498	3.86059263344264	4.24295556703556	4.44910798325226	4.09112004430894	3.85101730325234	4.13438269887869	4.28887676330706	4.26042981964617	4.69081457783059	3.97019206634787	3.97611416899341	4.28271598174377	4.54188117188945	4.29417180111577	4.04197627179869
+"ZNF226"	6.42078976461021	7.242929971153	7.07987610625221	6.43576789988246	7.12564212219307	5.92041615341569	6.27499975640019	6.78541780167002	6.45445638981067	7.0744568801867	7.57999054424517	7.25659631879455	6.49118793684738	6.27602179039565	5.57132561940636	7.63873876265416	6.8693987574631	8.10439986722524	7.15769963421508	6.8377903068193	6.61584826126682
+"ZNF227"	7.22383092312653	6.7644857099729	6.45640655648192	6.44303268603375	6.41755486876755	6.28617910990337	6.42958391919425	7.2969576602089	6.61199328951794	6.76353315357859	6.86170295329855	6.62458032257381	6.03538409206192	6.39616177226411	6.45329554888563	7.24401926029192	6.61481076123195	7.72828608686449	6.85983259442481	6.33675788355414	6.38571693902437
+"ZNF229"	4.66578110544348	4.43444088636132	4.16932779365349	4.23371486460848	4.2517772908633	3.94177367587283	4.38136277222972	4.53876268207639	4.58698733458086	4.43510859016443	4.29938893389525	4.14218642876691	3.99910939530683	4.60989855638625	4.21924793873782	4.0475957775051	4.27246172035551	4.38531412720895	4.47009519399568	4.29938893389525	4.08533252091952
+"ZNF230"	4.2468159698874	4.24080739263243	4.53055660482392	4.34159225775867	4.27081244577638	4.29938893389525	4.22820403585393	4.16316802732434	4.51902991591868	4.41644281758322	4.27971913697231	4.00350207001065	4.19331225123465	4.46058383412361	5.03889036295924	3.97829650160832	4.25964472169835	4.57950061401252	4.29938893389525	4.50155482469073	4.25964472169835
+"ZNF232"	7.67524170339083	7.18873864147819	7.41445985055241	7.37938484810087	7.15545897299247	7.42631605673944	6.84574889059846	6.83848854115945	7.98284191041712	6.97101317220184	7.20153709432965	6.66099501621823	7.20153709432965	7.4758277232665	7.10519496722666	7.26282348057845	6.1268354575128	8.15637151850651	6.92837248010085	7.25609788588084	6.9553042323576
+"ZNF232-AS1"	7.4350799915433	7.55640440999814	7.72022695504273	7.61888392190844	7.54286215888325	7.71755515538265	7.42117479427145	7.58853356148035	7.7706167501944	8.0216296603869	7.67728584307637	7.80518182383221	7.76062274824052	7.62195793079021	7.97813254213608	7.56491800694836	7.76888147736825	7.8838871350029	7.90995342773157	7.44232070117396	7.76315800406971
+"ZNF233"	4.91952109419213	5.50076182085259	5.99644585927661	5.45086058507439	5.84099524028411	5.23196048257792	5.20201344030462	5.10495274335156	5.59673016591202	5.71295240843192	5.42515105433506	5.50076182085259	5.50076182085259	5.17082811148912	5.54379985611062	5.49522010458685	5.23248089030208	5.89708195618327	5.59026971448037	5.7230127490046	5.80201113802722
+"ZNF234"	4.66784483447504	4.67266777802252	3.85659718767636	4.55711516914857	4.07742508001413	3.86928565772456	4.14659419893457	4.19510224326643	4.47016933305361	4.48304361920846	4.9176537510329	4.02203571967109	4.48276874536326	4.41016449365541	4.40256386432335	4.7571793458293	4.43150064743248	4.31633269389446	4.49266702093124	4.41016449365541	4.5728291306486
+"ZNF235"	5.91330188269238	5.87392215693814	5.88262341863424	6.01378255824261	5.73524264160797	5.831638599502	5.55890411844152	5.46361779825471	5.94326755632113	5.51640938516784	5.87316014109964	5.34570264214999	5.7620717514033	5.8494556221603	5.7519765833092	6.07853014804763	5.20201631992466	6.27225131441596	5.78123442205314	5.55813193411931	5.63837056439106
+"ZNF236"	4.5675566445997	5.20908743354629	5.01420566723081	4.83837938974698	4.84553536721608	4.43270610992987	4.6656478005912	4.87618989540293	5.05414344910348	4.60749221385126	4.7809602988715	4.6218533898698	4.69915662101346	4.80558803356685	5.07132118929217	4.87928639825272	4.7471746218465	5.05551112698186	4.60300608116474	4.6705677234179	4.72078826835416
+"ZNF236-DT"	4.13913173423535	4.45457187575396	4.38463420256816	4.37136217107053	4.4173326031461	3.87427646709357	4.04745190788023	4.2604555649346	4.15876120458572	4.21495906964836	4.20616685888685	4.29011469797961	4.63228060342146	4.2444694816882	4.00533607841277	4.4093518239305	4.20949805201478	4.05144721266223	4.07365229428611	4.2947976575029	4.41669376268561
+"ZNF239"	6.14505941677971	6.55019786913598	6.79763523872703	6.30997109772858	6.42395552767256	5.79853382630035	6.21809421715647	5.96668269176176	6.29686523150398	6.2466126694089	6.47280918096491	5.78893684480679	6.1366649369433	6.27555963128254	6.56957176284446	6.50093696613281	5.69229722826731	6.49551635663474	6.33141565819262	6.63418143188266	6.46990893492715
+"ZNF24"	7.88847991207076	7.98637663347805	6.37781094144988	7.43507627291899	7.33448109913824	6.80314315265636	7.70853988928374	7.65995460217954	7.02971250939716	7.31617474283569	7.74235634092815	7.20131651946542	7.24450061681985	7.2078955422561	7.29381364499498	8.06029258924661	7.34144342263131	8.02469339237871	7.46274186180342	7.13081736787554	7.24962474984527
+"ZNF248"	7.62359290674232	8.04292663406737	8.76082433247446	7.95592376823627	8.17865153018107	8.1115402202109	7.87743122445629	8.25334525102071	8.22054727234766	7.75471138612011	7.92707622405939	8.34305422149384	8.00579033723128	7.8520717866053	8.36943545619975	7.79928933172582	8.24435994785356	8.44411714709822	8.31220873488526	8.27845177050857	7.76533783350608
+"ZNF25"	7.36625477953688	8.43948066158058	9.20547498100043	8.30238454432623	9.06713022971271	7.81412570061859	7.30226913035778	8.2837804383792	8.46023714133671	8.75009772956282	8.07234747000486	8.74467354197747	8.67349254367455	7.37231340492376	8.59496257368759	8.16167075313167	8.61565647839039	8.71273898536364	8.5044163891476	8.37568664578536	8.86626751978865
+"ZNF250"	4.30203058030808	4.08722085609721	4.35325684701917	4.18220106659196	4.1691213860535	4.1460594168931	3.8978842151628	3.87661100939894	4.19335072200855	4.07845288186692	3.96312421040943	3.83108274113603	4.35528789706987	4.18930425395464	4.48703659706492	4.04939459014197	3.59827203111878	4.08522203988918	3.93886322509677	4.25283381726454	3.92734686434106
+"ZNF252P"	7.80739431485602	7.52751372339389	7.5189045304977	7.46938714186845	7.51150327067468	7.07962473891771	7.77137264200336	7.13174763727569	7.66495746880343	7.38292878755162	7.02238802361431	7.08674865455761	7.52637679003883	7.67449988433874	8.01097006899014	7.42001346817305	6.89523570835279	7.45987202794964	6.89206126051683	7.88757757013639	7.26756884371128
+"ZNF252P-AS1"	5.51281870143251	5.15354184787032	4.63782210815183	5.08336527120837	4.78104555682205	4.78433720207857	5.50842198657966	4.79814767992321	5.09328202035715	4.80795698830213	5.17648765740702	5.05370779378454	5.29190537770723	5.08664400841438	5.05261006612006	5.14937809481178	4.78868328288447	5.04376141323443	4.99879383893621	4.86894969552876	5.05370779378454
+"ZNF253"	6.48548356888474	6.29283900213604	5.95354688841149	6.41905070779071	6.03146254600863	6.08869879361347	6.29079601809376	6.28740659523208	5.96087292104701	5.91536334384264	6.69502923891226	6.01081280080305	6.21669710255688	5.90594995433321	6.53555580588306	7.25378166504659	6.05483221467735	6.70380451322763	6.40892490948111	6.36039594038924	5.95179548101309
+"ZNF254"	3.76649585251223	3.71457716147545	3.97019206634787	3.79495229025472	3.79340624972589	3.62160727492543	3.71457716147545	3.7263432647086	3.76471070988064	3.27986571593303	3.56280500001171	3.5213224717632	3.59500572420246	3.88521280751619	4.18757644684646	3.83093968650334	3.58243530893594	4.03690807603054	3.66214357762008	3.68429048232234	3.62026266986528
+"ZNF256"	5.36971650096688	5.39426384053732	5.46834107276892	5.32678129833327	5.32288574808145	5.65334205807781	5.8728636027258	5.99953331025001	5.29044416682866	5.20605406757441	5.26818358907748	5.3973348872181	5.34150679588549	5.61493217973123	5.20233740170445	5.3973348872181	5.33691139859507	5.72598487275434	5.35529483742747	5.31724123563302	5.26534838877973
+"ZNF257"	3.96711347293289	3.87439872659035	3.26556269590839	3.5448582959148	3.78759335647392	3.65338757676891	3.60698687336905	3.65338757676891	3.65338757676891	3.91154279903969	3.56649412813554	4.19099601710707	3.51159124591446	3.92441944208106	3.7290307610892	3.32493880463886	3.77371984074193	3.33647649838078	3.63661808615441	3.68808962627117	3.5448582959148
+"ZNF26"	7.68211541209895	7.93427471839358	8.22284781354335	7.5209073611752	7.86265746742428	7.48246443591715	7.52749614200269	7.64627787249225	7.66238104134954	7.20826886947025	7.66411469101324	7.26068402157138	7.27861856512371	7.56678200903206	7.71189879510668	7.87392110722685	7.56122199110757	7.91448159122846	7.65227449508476	7.7635904729183	7.45660564110954
+"ZNF260"	5.77046524707406	5.93804459572448	6.22528175453793	5.89151623416158	5.90759898200671	5.18742539022716	5.84324430367431	5.85169945223089	5.9147481476882	5.59892257281534	6.62018996899213	5.35310575683534	5.55805807438881	5.59140381272771	5.84324430367431	6.53649241093903	5.85741637490111	6.74498922655538	5.9146793870767	5.79630357830204	5.55352553679628
+"ZNF263"	4.59563592917704	4.78657436707574	4.6105712450141	4.78835573840182	4.54324385731751	4.68448163992651	4.46952951891407	4.52771668534315	4.89528824399509	4.70513665060879	4.46810137111924	4.45783338060777	4.62403072783591	4.71421377737024	4.6122942434984	4.96499199348841	4.54449677996775	4.58059948055927	4.6706741647848	4.57948448685042	4.38145581278073
+"ZNF264"	8.24483769271664	8.70494628079752	7.54972505170034	8.61906215119651	7.36652002598694	7.85914027843328	8.22671065219057	8.57720116016892	8.50148601764827	8.55372981865309	8.46870227788907	8.372567635818	8.75464087911854	8.53816632396614	8.61350507019099	8.89860112683279	8.5978396434828	7.58888694878275	8.32431524856486	8.49259197060797	8.39897811966761
+"ZNF266"	7.95608386783024	8.17379210731952	8.06235365998693	7.65928954058049	8.32325827234645	8.01207178349422	7.48255938284992	7.928646558889	7.35943090606719	7.84721870567088	7.9054954432713	7.7236548761061	7.30135639617617	7.30744101213772	7.47626259753573	8.18782400000301	8.00244761780298	8.61622751475482	7.91766272031991	8.15933331342606	7.68734334453985
+"ZNF267"	5.87517779687461	6.05084497613207	6.15318290310351	5.55287972277618	6.16434051166014	5.33035339072593	5.32618905516952	5.9108134942298	5.92833577277583	5.91349735619694	5.9251010940638	5.89477565612256	5.77811823420837	5.19552400374523	5.78564508826586	5.84028590559763	6.12552208993326	6.19872747427142	6.21619081100837	5.96301512718068	5.50577465097036
+"ZNF268"	5.75822398774561	5.43059730733501	5.5815965318144	5.11994313495333	5.29320573354477	4.86441283826191	4.80597060181233	4.71735473507747	4.90967596851711	4.31086387140949	5.63827184974075	4.8303307496067	5.18537641459729	5.0016452944785	5.13753190008336	5.84343236353455	4.95771342590708	5.42056161918077	5.26315119697288	4.99463818309042	4.92918751442444
+"ZNF271P"	6.89792531479279	6.53346585410499	5.93524658365295	6.76035328903554	6.22229866878937	6.45399754579586	6.67717369789513	6.56940695313829	6.59060620908237	6.53346585410499	6.73062036037949	5.9579277729927	6.31740153589336	6.5793184786918	6.92615358912736	7.28537286959048	6.15318389385686	7.01832360234829	6.71849344442958	6.59361593165903	6.37808243313976
+"ZNF273"	6.69229099571786	6.87088088584096	6.61690130235004	6.6954049707719	6.64806030103261	5.37119716656934	6.19005371942376	6.81571520130546	6.70876847137328	6.88259999132983	6.73098808463212	6.97652769591439	6.62444807187842	6.31443321864949	6.71039873609301	6.53853973086107	6.82599442367979	6.65304511698678	6.84406816767751	6.64345573984831	6.84972930243551
+"ZNF274"	8.32619006439465	7.91601645979694	7.69796736000632	7.8201969137011	7.78961502819921	7.83019475858923	7.84327434878175	8.56391707016185	7.45945350440981	7.32934495907113	8.15144364419287	7.44081394995685	7.0793243031196	7.79399292294516	7.4297080435912	8.50733585123907	7.53535279915218	8.72835480971437	7.77201836929849	7.35046712516762	7.22850371311631
+"ZNF276"	7.51782242281153	7.44069443364732	7.28821617059335	7.3651261113759	7.10160227823993	7.7117453856436	7.3651261113759	7.32109881035008	7.26590317212827	7.26199731276064	7.84451822107261	7.31736105597816	7.31744335858648	7.3651261113759	7.3651261113759	8.2481244708422	7.45442161936382	8.03948735195549	7.40890187487696	6.96774810824385	7.22730735907097
+"ZNF277"	4.72083029964895	4.89526291689812	4.23449843925286	4.46585633377087	4.62957606429045	3.90134905380184	4.37975232637414	4.86512191047074	4.16089863856463	4.57676990018211	4.80802098005616	4.61050370979154	4.19096590975471	4.53362138316172	4.57482478509025	4.88677318932972	4.63342910545236	4.81366685494284	4.80202259631764	4.49691256283066	4.25903422277492
+"ZNF280C"	4.4708178531932	4.68224970548329	4.79434585542524	4.50813493510724	4.75568343277561	4.32574005507234	4.12091155050537	4.38321011767774	4.47490138385548	4.35060125196916	4.4639965426867	3.90454282598746	4.40510041936844	4.29938893389525	4.49437456460033	4.44233466794175	4.42899779502359	4.81536890442687	4.32455600752597	4.273880009385	4.11772083019073
+"ZNF280D"	6.49687108484661	6.89094926405391	7.04491546696352	6.36566684217892	6.9843141755916	5.98398501739036	5.39617055927521	6.55930942376801	6.05161282001823	6.56705322083808	7.20866861666767	6.64824291576056	6.19834972862331	5.99557172133863	5.93608681769268	7.08527273374638	6.48866378568603	7.5668679683176	6.60041481149707	6.55072540293017	6.51680129470083
+"ZNF281"	9.07585502460328	9.12655683896981	9.25435295923703	9.22550911553657	8.85887793478146	8.85840393108064	8.37610408976127	9.00445173650544	9.16740141929159	8.72303550292177	9.21527994244827	8.55529833817423	9.04648467927599	8.9809606021635	9.53663550306359	9.95969502952875	8.90665358582759	9.77259959239898	9.30734542863744	8.69229845188868	8.59656754552562
+"ZNF282"	7.54657642842787	7.27307554569634	7.60308390941193	7.28285708240634	7.53140246844425	7.47303636302797	7.25221971491455	7.09000515432153	7.13523978927981	7.39445493313056	7.41162485855338	7.32391104377298	7.15956902044315	7.39220785808585	6.85508342882364	7.67007023258271	7.08607441460613	7.60996575649138	7.00810341461987	7.63425043570484	7.22057669408041
+"ZNF283"	3.71756113654128	3.76973784105619	3.79192763037366	3.64438565687225	3.65247730818646	3.72414882490227	4.01346965255657	3.70112708541694	3.60953780655028	3.71869276512775	3.81672672150285	3.47252521068477	3.81933086359265	3.6964202017837	3.68574097936963	3.78625465395452	3.48552015640278	3.56177183113888	3.63995531889005	3.55023644517711	3.42843136263142
+"ZNF284"	6.82486610404211	6.7932570645231	6.93284305218869	6.71928050714641	6.70061182091699	6.78646965695003	6.56457449324404	6.48418633154607	6.8533993232036	6.72135128975001	6.64420163145715	6.6605496076542	6.4680353715201	6.62795296627949	6.50201416156099	6.738065916783	6.6605496076542	6.56923766961514	6.10505017772457	6.62736259047128	6.79055821390056
+"ZNF285"	7.06452274108281	7.27594297581961	7.45559310533866	7.18186378702618	6.86426350824355	6.67862766939912	6.62887869130035	6.87834735158185	6.87632331751171	6.29502562512498	6.86246356643984	6.64527087351743	6.86907373001255	7.05724119673744	7.13617702899233	7.50217010610125	6.81618986961088	7.66768769386639	7.14364459891956	6.94472089109297	6.67155635818174
+"ZNF286A"	5.50727469721028	5.71656556366923	5.61230729167878	5.77987229606738	5.58949879217817	5.35215160754761	5.40534301840396	5.68327224234718	5.84262927309507	5.70853209503405	5.9841263243859	5.5954283357446	5.98304351766738	5.75438147052516	5.78682789831027	5.93479280725304	5.69474864961796	6.22224077451039	6.02172281356479	5.56252559085705	5.52279622716729
+"ZNF287"	5.76018190953011	5.65817793784115	5.84391678388402	5.69082923254016	6.307468185129	4.92333112262313	5.39895416077238	5.07388735426439	5.32894097392346	5.74371479635887	5.80265066675546	5.43925233564367	4.54774563055432	5.20868940019314	5.32930411298129	5.78370200234428	5.07309104891236	5.84324430367431	5.30677213469067	5.91276544389535	5.21336047593427
+"ZNF292"	9.0925224034182	9.31294426085062	9.85977793890592	9.39003049730099	9.48506162168985	9.65566943161827	9.15036727303926	9.41073702765598	9.55377971697737	9.06396464739231	9.34510958689422	9.22217027565839	9.22509991092176	9.2426617245342	9.80683734846065	9.07219171505899	9.13448302625049	9.67473879073174	9.50071181774073	9.03534674194449	9.13121498984835
+"ZNF295-AS1"	3.82818514740642	4.26191534610956	4.29563376129035	3.92041242870868	4.12913463946392	4.65997866661396	4.68899580081778	4.18903275216314	4.07050872109281	4.13978137904025	4.04611067104771	4.12913463946392	4.25435885292573	4.52821795778327	4.12913463946392	3.87360832524295	4.08038810911717	3.96322669153773	4.2914778156659	3.9660072090085	3.97153117825786
+"ZNF296"	4.98410586543006	5.05313209531351	5.35364196298417	4.88985727171399	5.02910871153887	5.29308087221358	5.34810385551279	5.17652714285309	5.24768216502331	5.04061332081574	5.05709923815048	4.98026707000969	5.23328825394757	5.53382458742633	5.05313209531351	4.93779438031075	4.91076386962616	4.96524049604316	4.98026707000969	5.36724102242157	4.86163403318087
+"ZNF3"	7.60150017591899	7.49875598566898	7.43550124793452	7.27000389781746	7.16989906280113	7.07586915803553	7.13791623615037	7.15202520257653	7.305144182472	7.15213294652702	7.79736175341669	6.93080966451022	7.1100810326869	7.32183629212878	7.41809996875182	7.96826315078048	7.00764207288051	8.23549093229314	7.09796993116511	7.2567645932564	7.26668722378135
+"ZNF30"	6.11641793570238	6.45718866223775	6.48055477317976	6.50517981860054	6.34694066748116	5.82287033003888	6.24414683126415	6.43148536141979	6.48524906588653	5.99761181053051	6.33806511495121	6.09910337842697	6.39906228275931	6.19992644389043	6.90796364654037	6.12059484398192	6.33235997245338	7.00068174009749	6.6155008789846	6.26768635602695	6.12059484398192
+"ZNF300"	6.40220405043551	6.17007248696622	6.138704866006	6.14117216891384	6.12031448627029	6.90788530527576	6.09551201684129	6.28457404486011	5.64016575112588	5.77589413725422	6.69795616443361	5.78407749402439	6.11680869909562	6.59645849546553	6.07864572701327	6.9188066035686	5.95912223215563	7.28982340223843	6.08691643813718	5.776691023877	5.76560140587209
+"ZNF302"	9.1654576739042	9.14739958899399	9.20741412058478	9.57777045939899	8.53249925843019	9.15006499560389	9.51740658189956	9.41469816484425	9.16890639518312	8.35086099941393	9.15353789556575	9.05585603787046	9.42780477662857	9.44591431001367	9.94515085812268	9.40425686256694	9.20741412058478	9.43726262102223	9.7498014176236	8.43943815836935	8.58591344588249
+"ZNF304"	6.25824959336656	6.88126674380903	6.82838962583581	6.43734907461122	6.77545175932588	6.33979785802497	6.04195557463265	6.5971614746157	6.65913844425812	6.38384691827103	6.2786672451218	6.5546490104464	6.6519988890216	6.3543527474552	6.70710325046864	6.30584038298303	6.57188982342117	6.77743111936258	6.38340007371235	6.42159927872878	6.51201402906284
+"ZNF316"	8.23260294571386	7.93789672032036	8.1581187301049	8.25767589625757	7.74344310121816	8.68348333731966	8.62675588699987	7.88733042775484	8.0916646138824	8.14649532667712	8.20822104958895	8.02451399364903	8.27667084184349	8.45116820121437	8.18784518244091	7.97696128199208	8.05516844806519	7.98370160695098	8.19244545506696	8.00227495646674	8.08847778358458
+"ZNF317"	6.67771704963927	6.33996399781676	5.6566680376657	6.48708934885311	6.57449605351711	5.78953812253332	6.67333887299903	6.72357902862026	6.63291107424417	6.80573539158645	6.47428842775992	6.30429896648456	6.36395339716443	6.36723903979568	5.95663243681951	6.88186000617314	6.57843658325539	6.86236578743437	6.27417154745765	6.58218932333131	6.65157017724413
+"ZNF318"	7.16306247095758	6.95547339737151	6.53001876525207	6.74026128062394	6.98587779936504	7.29405226108034	7.07832340078589	6.46492437659413	6.76801743919823	7.04188623642871	6.88736769632646	6.71302047392217	6.90086143677086	6.54171319419608	6.83982099318131	7.36434377232615	6.96310888407599	7.76853989504387	6.88993011113887	7.05766349182398	7.08023229823747
+"ZNF319"	6.62878245027748	6.44191447827002	6.37161357965048	6.5575666552104	6.47516838175094	6.56921907472471	6.62982244537426	6.36684770106276	6.59148032307955	6.40046510452576	6.53665268962236	6.35968217883319	6.63050537879897	6.55617112651164	6.54477561611393	6.53162241159109	6.43659555318073	6.38754045411932	6.43912304298605	6.30769939826108	6.56629777984085
+"ZNF32"	8.86881586105203	8.59550602262684	8.89222758692809	8.82792915238053	8.49844835363925	8.71698124844496	8.47752562336832	8.61240346850619	9.08440675296834	8.99162963972569	8.59780605745203	8.48108944043549	8.82792915238053	8.74862535224741	9.16456317136254	9.00634974538583	8.65601655397579	9.16541325205794	9.05553090790193	8.7941803737043	8.70279817909475
+"ZNF32-AS3"	3.19454244618556	3.50866876101525	3.12914520995397	3.23133600545421	3.25562402228389	3.34515697816563	3.41178032552418	3.15476192886878	3.08114414508753	3.15107803260999	3.2371083959586	3.31193141097378	3.0579037973092	3.43359552805148	3.0626092514876	3.33670144983492	3.15331795999415	3.06134469561926	3.36682049984278	3.19472474444583	3.00049757473655
+"ZNF320"	5.77001484075164	5.80589421247712	6.33199605698201	5.40702854035381	5.65524615256731	5.0489633048845	5.02911786542874	4.85828337006916	5.2319262440842	5.17862551287124	5.92845009690829	5.07563959677706	4.72083029964895	4.65736125834107	5.22315541589412	5.45977816635781	5.18223774854148	5.06883155976177	5.15120072267408	5.44891715900799	5.23897278654052
+"ZNF321P"	3.1957068321524	3.30836677292992	3.37867097165171	3.43015603297527	3.35910632016149	4.08651867010423	3.37867097165171	3.40247125032393	3.33238985318029	3.54670458893828	3.44831816867817	3.36260383260242	3.34640193589826	3.52689934568929	3.53932555628666	3.15490771489598	3.41152854546374	3.33554028230785	3.78949024369828	3.12163569391965	3.19775570680573
+"ZNF324B"	5.68087869825252	6.15563898431145	6.10315656775434	6.22758794398591	6.09008570016835	6.26575626748114	5.90995388985945	5.85397368346483	5.83557886992119	6.0374405162676	5.99255117976791	6.03271327755733	5.88954861302772	6.07039354339939	5.99090419050667	6.21719033631567	5.78583511055061	6.09074078829086	6.13885256618507	5.99255117976791	5.90209193884883
+"ZNF326"	8.07394164088357	8.03341883162608	7.929174718593	8.31538108469652	7.71355024883771	8.33922607342649	7.52424994226473	8.01281787695925	7.87860291086317	7.16499633514932	8.5848537304654	7.49414275825696	8.25066361069449	8.10756045743272	8.18585156651125	8.5372253575121	7.3116416970347	8.36801802746904	7.90450821767742	7.4824575349228	7.67262382166566
+"ZNF329"	6.29655440730829	6.83254074498239	6.77598775442442	6.63667599225264	6.85475745697165	6.38968530463811	6.59861935389487	6.67365716093972	6.97962906295789	6.73347580947192	6.61821313121872	6.62665768323569	6.74344398594715	6.36034825952892	6.68598861660565	6.48432727151874	6.63768780119995	6.95202522184469	6.6049505559483	6.82594127377827	6.69789969818155
+"ZNF330"	8.05967227388977	7.77627637041473	7.78326300641346	7.57153994850757	8.04904755748578	7.61512618902964	7.29707658338537	8.10291139489658	7.5687681807535	7.65529265284514	8.14638767387592	7.82889225139668	7.58684998346103	7.31581166319474	7.65915477459461	8.002801653124	7.71353175373762	8.27144707440365	7.76190844108125	7.95128104524586	7.76190844108125
+"ZNF331"	7.61003112169606	7.70148896718849	7.7080585971092	7.73691461740483	8.14021006920401	7.74534658494065	7.50837858675625	8.19351958770938	7.70491844649345	7.99222478066502	7.89764072498296	8.01604596621351	7.45781328310197	7.63191050572003	7.48698188326377	7.84999319140431	8.31436992772058	8.08142115829366	7.92811687928812	8.20056021084895	7.88387928818874
+"ZNF333"	5.57972695936448	5.96188568136059	5.36370764530211	5.94731377343391	5.42167014142328	5.10650227794234	5.80704814905133	5.28245473632272	5.49137842883411	5.64924464207189	6.33331425478312	5.84206334986604	5.56888300497308	5.65407449492707	5.36902745543711	6.05897214393722	5.80798929578341	5.66821964621757	5.67862752601524	5.38213726248817	5.828027219874
+"ZNF334"	5.62275764535995	5.97672127865042	6.21335553132197	5.29489224954762	5.92905056772572	5.05737220944479	5.39892754370658	5.30876685650273	5.19244541500798	5.45251101037008	5.44789611507256	5.226754532	5.13325206779044	4.96693410160003	4.89938082409885	5.89255348960346	5.07378875939736	5.45495100562931	5.36870736446322	5.78866394107385	5.28493524209745
+"ZNF335"	7.84624871110776	8.00033752028674	8.09095062000507	7.85860443423882	8.0089864697689	8.19384880438529	7.97333111435619	7.80014661929581	8.00259251283682	7.94197898770369	7.90487499886822	7.81653132125417	7.97827171807429	7.93751491076865	7.83894229865174	7.86505383857328	7.74626731504312	8.05266477201833	7.93751491076865	7.85878997090527	7.88635357542587
+"ZNF337"	8.60823575126619	8.57366756399605	8.7949910603937	8.395832357064	8.43087632604336	8.395832357064	8.17056627175756	8.29571784273715	8.18844247764667	8.19390420907896	8.55769725470028	8.34546458406009	8.02299872210965	8.42491151287673	8.25864373255781	8.70186886683876	8.36905272272698	8.62879782699312	8.29379014476408	8.395832357064	8.46411212920459
+"ZNF33A"	7.16031595440395	7.30148201213212	7.70502984683675	7.09426758272511	7.41830579964071	7.2784190687808	6.93145849490361	7.04909691566355	7.26556051129614	7.34289176961901	7.66505567981376	7.19323694560988	6.99022206684993	7.17179225228853	7.12767331363597	7.60622890169951	7.15156464735308	7.95980554471567	7.27340817503333	7.47763556564694	7.2784190687808
+"ZNF33B"	5.62669976889621	5.36492970998921	5.50722464152216	5.73695455467515	5.56458709019212	5.52723711729798	6.00416489604962	5.39366614870832	5.89620639295724	5.22120327595403	5.35937988821561	5.25128356299987	5.86798081595287	5.56458709019212	5.84324430367431	5.42975304297312	5.59899996193749	5.3693859488714	5.6734779294972	5.44690824470082	5.6864338822359
+"ZNF34"	6.66518673352971	6.66586512897498	6.99791121835399	6.47702031148684	6.56632847837282	6.78457043842335	6.84742755240687	6.48723318079398	6.3017456405241	6.49934811668515	6.72393585320947	6.66518673352971	6.35883736265983	6.80969757531509	6.62666752626276	6.66518673352971	6.70569790932334	7.01039992495602	6.52643869944621	6.70381100867893	6.18275117864893
+"ZNF341"	5.37487403083375	5.89952619064987	6.24559394297568	5.61113389395766	5.89708195618327	6.41379420509465	5.7844801385873	5.87690448153256	5.84531048940557	5.58458249619724	5.77351717860614	5.81697591573209	5.96261247614939	5.82222950147679	5.88870453488058	5.57532993126737	5.78524224415128	6.32632885493423	5.83026928604783	6.02700769055614	5.75154629816893
+"ZNF343"	7.43195813314932	7.37469877820572	7.10160227823993	7.35760580914717	7.29524217916062	7.23234504376325	7.05401101947285	7.15779412051091	7.24970004829633	7.07379613318522	6.98143324359892	7.0308742297258	6.9790465558059	7.19204740337592	7.33137038323958	7.41058007060216	7.16871852074233	7.34959752208692	7.04270268305846	7.19129588643519	7.09435655951442
+"ZNF345"	5.1872314606845	5.21173679213455	5.67342115890507	5.27625212234307	5.05172965782552	4.86964997642762	4.93088225439188	5.12622244321732	5.34279674166246	5.10932550496563	5.40132211132032	5.32804028782009	5.03184927258022	5.14887624915091	5.04641352471237	5.52184950940557	5.1872314606845	5.54055327181538	5.33758004776163	5.1872314606845	5.12622244321732
+"ZNF346"	6.07628564471403	5.8606502808449	5.71656556366923	6.17659694467644	5.63736975838101	5.94527802040123	6.92262070200104	6.05762101376082	6.18000561965329	5.09122390903668	5.63193785934222	5.63032318959491	6.95533902862794	6.44699306472128	6.62112593625007	5.68613816025092	5.91603936657888	5.82208592411742	6.27338081404617	5.49591994063239	5.61119564612637
+"ZNF347"	5.18335251813033	5.22441552913819	4.48893303585312	4.68058837848939	4.7889480069296	4.61738986277418	4.43992844792582	5.06919054899195	4.2947976575029	4.34057268666813	5.11720064189854	4.15134117872966	4.21869052522109	4.68767360096788	4.41193741585929	5.39158183089452	4.44391611310012	5.3973348872181	4.32737168698498	4.61283041052573	4.61738986277418
+"ZNF350"	4.53135074349633	4.84734858821406	4.51880946918698	4.31263759836063	4.23041785336253	4.21309026582358	4.50822486085279	4.75799280259008	4.22378078866272	4.27578936474645	5.065295219375	3.8944724827048	4.38579569198197	4.76001801724295	4.51937362934983	5.1872578330828	4.34498135197809	4.58480956859904	4.60916826492087	4.48256250963874	4.12087144196643
+"ZNF354A"	7.19390726567967	7.33384434211647	7.21928122225457	7.30006908247939	7.43279861033895	7.06922773444854	7.0264300176774	6.86724373519379	7.17701571506131	7.1328349125044	7.20869074148918	6.78947296984459	7.36348433937013	7.34625133931714	7.40630784217907	7.14299656692722	7.00673164474032	7.24332780338346	7.20420698637082	7.13011045068435	6.89793174042554
+"ZNF354B"	6.05763896712849	6.38750883584766	6.3850449786764	5.76625060861706	6.41676178481426	6.1477067688143	5.84324430367431	6.32137822021945	5.75999274188423	6.26784205132884	6.06187658175851	5.9950810686775	5.25545689294648	5.79355564088614	5.90906910180709	6.73728900284747	5.95938187033306	6.49460482235224	5.76625060861706	6.03548527320906	6.02436188735616
+"ZNF354C"	7.69466276341523	7.6057809556262	7.03807836385651	7.58717906267833	7.3022584047551	7.39762088299807	7.56484599927142	7.31668171634496	7.56655641011946	7.17267674647191	7.58405144471328	6.99757148217937	7.28951768208365	7.29160272577425	7.51144889727981	8.00929548200509	7.28293000724871	7.68872411704549	7.3829341742671	7.10410802893148	7.12631818567468
+"ZNF362"	4.76639939588313	4.92207932843327	4.79987225185791	5.01533806855671	4.74819084416107	5.16005717914291	5.50939700902762	4.95144520969266	5.19420752157724	4.77353358386109	4.84402565320176	4.73566324823151	5.09620130530652	5.47001562141825	5.22600699111938	5.10050304169266	5.04172679391142	4.20291384464216	5.05560012686429	4.94113890871551	4.86330993525599
+"ZNF365"	9.60890044662026	10.8858873903741	11.1456542674499	10.9123447316304	11.4503556239134	10.8604289237521	9.23927549279216	10.4791603841963	11.6062823040837	11.3360713922076	10.1868529376414	11.2509833857122	10.844102043787	10.3668357194416	11.0109093722601	10.7980993557898	11.465031379481	11.0617838448045	11.1641924770543	11.2809680755722	11.300268163371
+"ZNF366"	4.87823208230512	4.35847907534531	4.29255618210357	4.54488654761622	4.2422398162935	4.88393236331101	5.37362708597475	4.22272727831456	4.541106842482	4.67262072883404	4.54488654761622	4.33767042953033	4.92246864076547	4.81054978034428	3.96779852709763	4.34764491921907	4.80034306955918	4.42764418536644	4.92470001051885	4.30249503588371	4.66784483447504
+"ZNF367"	4.3841076364548	4.73510539324068	4.29324907289238	4.29938893389525	4.5943254092791	5.5941733389914	4.26112800677895	4.39428578349568	4.32945406743667	4.3483321272239	4.96543558839886	4.32611231482703	4.3841076364548	4.49768758238913	4.19571716050602	4.74268627146082	4.4535787503977	5.72883391393382	4.27585543496839	4.28388094375896	3.96459374927593
+"ZNF37A"	5.43342800518207	5.1363900340437	4.19538682903635	5.29510551819946	4.46528223571309	4.55849054106844	5.07132118929217	4.86844330646418	5.31431124920341	5.09098452003316	5.32448870576088	5.29426089757291	4.80683044470041	5.03692873741351	5.42906062213279	5.41623328070217	5.12130395473163	4.75799280259008	5.38608731848168	5.07007286694619	4.95843110489921
+"ZNF37BP"	6.2346441576942	6.15807534257322	6.29567280733585	5.5865564812074	5.83848924790529	6.0796860205713	5.74240423782346	5.6545220978349	5.55422659735999	5.76167225316642	6.3326010107575	5.57537550769608	5.53199313247355	5.89690359749503	5.18268880558914	5.79077233332212	5.1058428543265	5.96544528667184	5.71875964349883	5.79077233332212	5.81880997563339
+"ZNF382"	4.79978447906115	5.58972421818454	6.36035816540463	5.68503928578589	5.85311878800924	5.48282319995048	4.49852897839739	5.47570761546501	5.18289590563757	5.31006613705209	5.51834189724009	5.69714595593656	5.30884481411283	5.30708868570128	5.2348183516349	5.1190576939302	5.46049976254501	5.72976605951664	5.11174737348749	5.509445604113	4.85967459812114
+"ZNF383"	5.52402969040406	5.48359375560498	5.23735143961957	5.23960961482395	5.2350897611558	5.06470823211524	5.08940886413086	5.2534573425368	5.17242352612068	5.09122390903668	5.62259646278022	5.03363472830748	4.87858940223454	5.05779400088393	5.35311075588774	5.47943000254645	5.15437562885868	6.14795847110434	5.16597480917273	5.12619401208703	5.25806251889624
+"ZNF384"	8.99875680201654	8.89652032989053	8.76528664256002	9.05257835991034	8.84829777677706	8.95825941510751	9.06824995010001	8.8303459480698	8.87795728355551	8.83907304929873	8.88556978077377	8.78081878717602	8.98093829050196	9.05938023757508	8.85673132424276	8.93027501353978	8.89944733682132	8.9146756542025	8.83608653229697	8.87320907967207	8.83064621332795
+"ZNF385A"	9.38640940036116	9.39023609841644	9.22583627722962	9.54205061269486	9.28568358686073	9.34912830983286	9.77065037887892	9.16338968912468	9.15516119457423	9.43196509798356	9.75437351717151	9.4313292056104	9.90122545066085	9.80433461617152	9.39405979155576	8.94140376411266	9.27757838370364	8.91196502790952	9.38640940036116	9.36093232404659	9.44740146413453
+"ZNF385B"	4.70934618741665	6.08850785484236	6.29560611667715	5.83736933700166	7.20606388987811	5.35688145546952	4.45666281552156	6.09175243054477	6.24625019073654	7.07872049202101	5.58091657869202	7.09458216397847	6.40220405043551	5.43300576023898	6.16698550818237	5.6494889949183	7.04874426520844	6.44366880650357	6.26152958057173	7.16926694073382	6.96205471855163
+"ZNF385C"	5.83489135196075	5.80501696019958	5.96668269176176	5.6753078469031	5.79394670607376	5.71362178337443	6.12342464610623	5.41041859320037	5.66234125864081	5.50076182085259	5.53433803092722	5.63097533731757	5.64599211497526	5.93475043121708	5.50312771488814	5.76035217141042	5.68282418148042	5.43996558704491	5.548514588461	5.53059530446145	5.47056733681022
+"ZNF385D"	4.18904793283174	5.71639371497726	6.77447819265206	4.97114726835006	6.28291170507059	5.86454874366612	4.90523579525352	5.29069363477887	4.83650510457656	5.49676378202545	5.52291382281402	6.08689524803973	5.33218188667435	5.15669952951233	5.38799872801915	5.45900793309764	5.84404209923746	5.28238289115329	5.11592302797899	6.47574811377527	5.92729905920268
+"ZNF391"	4.84228126596139	5.20819964996157	5.15906957520106	4.4279175278109	5.12811872204989	4.38195702000894	4.75405971990479	4.53552366041602	4.68735786106853	4.92342802814139	4.63805099964104	5.12927456482941	4.66052149169291	4.48348928447565	4.50074735047079	4.88091653327803	4.85138979974836	4.7219655065202	4.99964556107567	5.2378380230944	5.24158756475826
+"ZNF394"	5.0216541264777	4.84334902151412	5.07857938548062	4.78528310101382	5.11630769439387	5.03597109084696	5.10609526022182	4.95756801314235	4.76048585399713	4.62354369963183	4.69624985120202	4.44599596828252	5.0237001644947	4.91817415442299	5.1512310166131	5.22881527915291	4.77129257713568	5.59040243808865	4.71940634775054	4.73180881542704	4.72635470276367
+"ZNF395"	5.89207578847692	5.3533002442493	6.09350777517267	5.72359678373238	5.57315904233354	6.38578512295182	5.72892931668759	5.77411370688362	5.22765080416813	5.19798191722044	5.59130883784821	5.54906408252738	5.31855842448522	5.57326288019689	5.73270880458824	5.61279706432912	5.59130883784821	5.67042665015646	5.69714065252671	5.09715306517692	5.07734186404318
+"ZNF396"	5.00840502189059	4.879755604757	4.94792968628375	5.36260102384744	4.84868607333576	4.89949241758828	5.01698017350445	4.80748325811716	5.02911786542874	4.71377426112779	4.95555326887128	4.57715251798433	5.06070745893009	4.94601789891031	5.0910578030638	4.47467599783171	4.879755604757	4.63791810239438	4.84586113137312	4.68177358380742	4.75158700324533
+"ZNF397"	8.18401984169568	8.17257715076052	8.36419500404523	8.34519357333454	8.52489211021117	9.13009595317125	8.24421055425289	7.88723827038846	8.11426766279196	7.65212056576441	8.67017504183116	7.81103348175875	8.04962258588187	8.47218758423094	8.80890048617589	8.64826422220074	7.84019392589736	8.83416545171013	8.19588458065108	7.66932924040564	7.90254114422363
+"ZNF398"	8.1059311302757	7.81141037444001	8.03536804945303	7.55263475566696	8.03298637748209	7.93947686149509	7.36262842886604	7.46983338345859	7.85574848529708	7.92428328959733	7.71233282715049	7.89716216926521	7.21908852013167	7.47385200970612	7.6503231560676	7.99871721041464	7.82809973638331	8.64934747978992	7.6330920237458	8.20853482731949	8.13885506584458
+"ZNF404"	6.33985006232941	6.19143439734385	6.7907772780761	6.39708286143248	6.05509545732796	5.8108170509119	5.80507346147915	6.15514171630327	5.85997977849136	5.18696042005091	6.42167222453907	5.66346525842786	5.98304351766738	6.12793990241032	6.2316913850183	6.99489962889003	6.11171215464496	7.08885534358717	6.01354631238349	6.2419382534595	5.92781331224029
+"ZNF407"	8.33520496923382	8.18219377719148	8.61251390915199	7.96277811820904	8.47232656969086	8.09305531087134	7.99483697806093	8.12189784572958	7.95672281450765	8.15653541095828	8.15250263718909	8.33207881268486	7.7594284482844	7.76019834597188	7.92179701167579	8.41480863234436	8.22403118596085	8.48546699509706	7.84119498844942	8.46401558431778	8.15653541095828
+"ZNF407-AS1"	7.41832434739597	7.79759138930065	7.2881105116964	7.40664976943836	7.91666364920885	6.64915458745171	7.21463896380838	7.29203606246393	7.48042096361473	7.74521188028459	7.89526433705068	7.68159761324927	7.09489003296203	7.45518176696328	7.02863425092579	8.16450092676674	7.31310225029697	8.16923995864679	7.56276476319636	7.96224285028358	7.51903595886768
+"ZNF408"	7.5850084588814	7.55946112864872	7.62269535367725	7.65265803425516	7.52024579028993	7.5850084588814	7.82396473753467	7.4142685163796	7.69102776892857	7.53870041553579	7.44563857220844	7.49719051971702	7.7542618821421	7.71431252713106	7.64459752493313	7.53105777200954	7.55076186761425	7.63488571340386	7.52024579028993	7.48688388017939	7.60299807027761
+"ZNF41"	4.72411108912056	4.83851391392687	4.87480474782144	4.65915049192384	4.78605462284388	4.61258143607521	4.90090558849185	4.65226438978094	4.98545247918337	5.1427787799338	4.8457161364519	4.91255966451086	4.6194080523797	4.52954901959997	4.58753171675277	4.75153396559774	4.96758261007495	5.04647735390539	4.62731414087271	5.27645558814613	5.0356217018808
+"ZNF414"	5.94540249236336	5.83131550578803	5.88237290312632	5.93912816313974	6.06282003600569	5.4633349856045	5.9831567668444	5.68252365059641	5.6709727590001	5.84115359691975	6.00585583197947	5.80918899667842	5.90194712325926	5.80918899667842	5.35797872418843	5.88685134832952	5.69362276286182	5.80918899667842	5.74355136036199	6.1635016801999	5.91536334384264
+"ZNF415"	7.9031291606404	7.97922658975287	7.82635928859913	7.64273629302563	7.73732894155335	7.53291271134333	7.8624831840405	8.00583437304021	7.64367066756896	7.65093563479225	7.98058257398728	7.3240862855049	7.73732894155335	7.63924163419006	7.80735744548741	7.69036266239643	7.73732894155335	8.07192923084834	7.81137574698461	7.65537837817284	7.31920027681055
+"ZNF416"	6.62695741884583	6.65384358899006	7.06645419013191	6.54073036784031	6.70623226885811	6.19197970547452	6.58311906487204	6.32469071497232	6.61389226171112	6.49506137930631	6.18528117456569	6.44814422577379	6.51417491529593	6.60380267534423	6.55760306617614	6.51316638519897	6.27393176827036	6.62522114744853	6.33435349891447	6.63912772530551	6.61010825907821
+"ZNF417"	3.01258125130113	2.90844457358555	2.7003478199124	2.95561579326708	2.74376164920156	2.86761651207472	3.19897769956598	2.9360765156917	2.81486392135864	2.83717980339622	2.8974699274166	2.95561579326708	3.11229838137223	3.15007264615906	3.02471288538393	2.98605569452313	2.90554712774323	2.64073397578798	3.02991419848096	2.8098571055881	2.95561579326708
+"ZNF418"	6.38693059490768	6.82171103771285	7.01862941698986	6.36518168044999	6.8738656402995	6.71095297435922	6.48581983340787	6.50562538675028	6.44296009405704	6.6795172848506	6.94147360529648	6.62855326531817	6.34048545857632	6.53717383287545	6.51100024946344	7.07072029095729	6.50572129995062	7.37164966608037	6.56815731190427	6.7611234072092	6.64300389846871
+"ZNF419"	7.60254817053637	7.31616538751807	7.66653469151524	7.66091950783372	7.5273386483443	7.44597814193323	7.19993595969925	7.42251307977431	7.94267877342723	7.5273386483443	7.50315475013545	7.38257019453602	7.40492498195753	7.58059477106964	7.73059662217281	7.65143733053403	7.778639772541	7.53639783024696	7.40924211771285	7.35738547491516	7.5273386483443
+"ZNF420"	7.37538859421586	7.65421914701944	7.46555626134075	8.01348512939119	7.21407254510511	6.85674895319383	7.6882098196746	7.18196911568489	8.09371819180528	7.05510800174133	7.52024579028993	7.03506270600902	7.92098394526042	7.52024579028993	8.34641047237053	7.64781255195479	6.55699650987432	7.78137403140316	7.87012959497904	7.30555336202944	7.17608379844495
+"ZNF423"	9.13056183000001	8.25584429098414	8.34601740171699	8.29443737917189	8.14506790553352	7.16181152264571	9.05013334649765	8.67916267534076	8.4346639335093	8.11946044527884	8.91513768109655	7.85033928042528	8.45367036935231	8.43746180858479	7.94220498726433	7.8946852235019	8.20483391310134	8.21858330301282	8.35215361256054	8.41723733510561	7.74794470120695
+"ZNF425"	5.89239178042626	6.05747216963464	6.29718770876265	5.97419477298994	6.44184265088439	6.1236157502183	6.08361367529484	6.06006471277541	6.10870339474443	6.63330101814527	5.76243218443071	6.18495071944659	6.29737384867002	6.10870339474443	5.66476002499871	6.08361367529484	6.10870339474443	6.13767344971295	6.00744380735143	6.28234928205417	6.15079150024341
+"ZNF426"	5.57833201179193	5.54602180418058	5.27851126480011	5.37873698660444	5.22923446999402	5.2843970436082	5.58496537298042	5.68676398718835	5.45124121372987	5.42886010948102	5.4204697531475	5.11091866713436	5.557920724356	5.57508292274671	6.05817296231584	5.58466583613771	5.45540447342519	5.02911786542874	5.50869474769429	5.22812192602501	5.26084832351666
+"ZNF426-DT"	5.10407748504342	5.25618277504106	5.85919921059302	4.70294236341616	5.20455816059365	4.94811211353697	4.9938408998784	5.63334351331874	4.94534357993648	5.03094098929266	5.26495396684857	5.19216955942961	4.39893437511516	5.44741993251269	4.98810144581337	5.19798191722044	4.75155028164507	5.05497694948843	4.79167500908291	4.77946300989745	4.77118714163414
+"ZNF428"	8.06482747190859	8.13315459419027	8.43687067651776	8.16445885912276	8.52049907508797	8.55202167099019	8.19877027557818	8.22614461086539	8.18269675681344	8.33858110495884	8.08893004175435	8.29967214573833	8.09766019565198	8.11100583993835	8.02844081697432	8.11023723992975	8.111291806412	8.09537790399021	8.03764590032459	8.44686993216348	8.13743915281458
+"ZNF429"	6.71494591740028	6.6711011920456	7.2362508080896	6.36104931777227	6.67817099235196	7.31542348178073	6.52077124373656	6.5641651746497	6.68326659292195	6.57014219443774	7.11685198439303	6.58362259943909	6.82911890502067	6.8526678507346	6.15848385085349	6.58309498489617	6.22077516204499	7.03559223254086	6.48234842266503	6.28953498001635	6.43948787332591
+"ZNF430"	7.56047057093938	7.89917806067138	7.69053963123982	7.89997224953608	7.58706657830877	7.44095351296739	8.09493695588339	7.88064134677342	8.0347980268706	7.82122764363865	8.22542773013577	8.04321486255294	7.99260696906342	7.89917806067138	8.31317175193124	8.07781020058414	7.92518934955181	7.88616933493008	7.98514176690702	7.47003755988392	7.70871554286297
+"ZNF431"	4.23042850393617	4.14483734648737	4.37394454562774	4.53406510214091	4.00518352484888	4.23480926386336	3.73628337582887	4.69747164059566	4.22156483259029	3.83364976663714	4.54966096296099	4.15451915766316	4.12162617767999	3.80708565640601	4.22156483259029	4.43436085060714	4.22156483259029	5.19538401938909	4.22156483259029	3.60883753278728	4.40875406354228
+"ZNF432"	7.28635316638239	7.23769640162524	7.6131655486225	7.10160227823993	7.21044102501319	7.14480593285975	6.98181627895853	7.15042678974924	7.0908398422635	6.82792481875104	7.18665813546121	6.69915262798778	7.20174417950881	7.2205324486546	7.52174927575348	7.04986127847921	6.87312342300033	7.28450976681372	6.94014863667283	6.81014353580549	6.56347349911015
+"ZNF433-AS1"	5.73313052123459	5.91274114812198	5.97127990546492	6.06246046541923	5.90401277477134	6.10214629165868	6.27832142102188	5.7662511083396	6.18432451935152	6.03332087039686	6.01957820554498	5.78167294451571	6.30533293350792	6.17007248696622	6.10621882787388	5.66358575288972	5.77673023002288	5.95609130512281	6.07913837671585	5.85012230062155	5.98692993333026
+"ZNF438"	6.80272470410296	6.47639336871169	5.76354854375861	6.32974927073708	6.13690882948801	6.1681660401562	6.39393723468367	6.5143572923284	6.08497499215721	6.14019872511372	6.1681660401562	6.06331121126098	6.23645027299817	6.10279915374982	5.90811089753103	5.98947180949059	6.08225721596676	6.1732787049575	5.99569106223387	6.18914253051781	5.91536334384264
+"ZNF439"	5.77688162327256	5.8574750608798	5.82081373360966	5.60386851268245	5.7178652084027	5.6477362956682	5.39576317200021	5.82941236112659	5.77228884367511	5.52040136056333	5.60919141810025	5.42178307981313	5.39593167699563	5.62928468253318	5.46194370488762	6.17759079169565	5.39593167699563	6.16147258435582	5.67461059957541	5.47542763050103	5.35963059104483
+"ZNF44"	7.58786802201582	7.70673873727985	7.31337044443014	7.75922475419749	6.59132312503861	6.71115971547883	7.65825516579003	7.84418678558187	7.73279532974511	7.5527289568986	8.15119726645629	7.51048291672943	7.81974056715657	7.59693159406913	7.72330836328464	7.60230621233646	7.55134332205244	6.89000295718243	7.70542491573251	7.16948215932788	7.44592253607095
+"ZNF440"	4.13557720799785	4.52211003848292	4.3209798597544	4.08180666134592	3.59293095544941	4.17117760415116	4.22302882439403	4.40795215509447	4.42505047366404	4.26327319193233	4.39789954725532	4.04841543812826	4.376548312435	4.4002819824403	4.80038614994736	4.07752352581402	4.22047094937583	3.80412950610526	4.68963690337291	3.84289569974549	4.11927947384554
+"ZNF441"	3.41603442714824	3.69963253638689	3.56034069644185	3.10027241478882	4.013925643004	3.30703554007013	3.68185193064972	3.49125602739277	3.25399888384493	3.81173477541428	3.52018247515098	3.762031750769	3.38258379088723	3.31980032396656	3.18578197970445	3.58227041293408	3.44469738334051	3.63847249649145	3.41278059168869	3.75260581811991	3.75908443188344
+"ZNF442"	3.5330998232718	3.7592594258254	3.58387896601217	3.59035006425724	3.71884177236437	3.83046310068493	3.95757817058734	3.68982242237147	3.67871373760272	3.35015470206817	3.50117372901666	3.58020721668009	3.53932555628666	3.50580788603078	3.78986170644833	3.50310234788329	3.51508842484289	3.25078178954912	3.43101823536017	3.4461230471276	3.76758093329172
+"ZNF444"	8.19084037498836	7.99136172895176	8.24501171467923	8.25031769875071	8.01206005144089	8.80287850325758	8.91304171553442	8.09976390722618	8.2910156579929	8.18853959160076	8.11280986238767	8.17172540775714	8.43078167775427	8.81436166013359	8.30918885110509	7.68633113071233	8.12661314338855	7.8896148874817	8.34504861441711	8.11732468755391	8.09247456292822
+"ZNF445"	7.68337059023334	7.79833498978359	7.54665614087276	8.10978124352354	7.84642419800863	7.85683409563114	8.03073146170179	7.67470956157885	7.89159495956078	7.96334054408284	7.79610324783168	7.96562113061592	7.82253007719687	7.89891329353728	7.81007824283426	7.89082781048061	8.00803020436039	7.82930849743116	7.90331210803426	7.86851518322394	7.99859081788885
+"ZNF446"	7.71643122169948	7.84875234180191	7.78637126169209	7.62773902143367	7.54185037886941	8.07903220532698	7.80919583006741	7.67892384757938	7.65490988547601	7.77551345190238	7.817451095352	7.83895134140622	7.66146478099648	7.96279369399568	7.50186466760005	7.8345905200303	7.82572868615912	7.76848815562114	7.61699480788957	7.75548778416041	7.6498830704135
+"ZNF449"	7.38821094685638	7.73558191602066	8.03064095973166	7.04756883181503	7.72038026415599	7.3907333692508	7.08097392252891	7.00172572229287	7.20852210988857	7.47896334469251	7.30470591751249	7.20928332019917	6.75690538541623	6.85577876713563	7.08766248748548	7.62940910602578	7.18896154387875	7.73795263246874	7.14654055135915	7.3829341742671	7.31237380643217
+"ZNF45"	5.20314242432386	4.92228980078775	4.18309273472207	4.4287186181957	4.68976429630028	4.20520291646746	5.02982292963902	4.53552366041602	4.35247636680424	4.77771609805741	4.97485502196318	4.27812842762872	4.4188713187241	4.69153664171104	4.08760134636187	5.07132118929217	4.39733670952722	5.68495957566265	4.71297053381172	4.73022322329761	4.38995711184157
+"ZNF451"	9.00189449931091	9.33642092955575	8.83698663095351	8.95364240157851	8.71591950136787	7.90127060259407	8.21176083526183	9.52977336938871	8.42113467489986	8.74499522345583	9.82037003811711	9.53963308086217	8.76804908946059	8.79063859704439	9.27685437374898	9.66259728842364	9.49432729697698	9.70252688642758	9.22061960980215	8.65266329907011	8.91295695582862
+"ZNF451-AS1"	3.41603442714824	3.67429687665841	3.40215728327201	3.43177525918073	3.56003042669617	3.41222410027302	3.64412061090917	3.5573194788697	3.46536447885558	3.31394912552841	3.43870873128733	3.37439569719414	3.45543993057874	3.53741376891322	3.40936243850111	3.6947918653834	3.39544687698422	3.26938011262849	3.3024339101175	3.60763644994245	3.15357742186216
+"ZNF460"	3.24641728228483	3.5940220400786	3.55745551715002	3.85796136131879	3.4375590204531	3.37652133145876	3.4472269848048	3.73270993410961	3.83512866227525	3.53696858463196	3.19992577561907	3.55238724255096	3.53696858463196	3.3404377108901	3.48124826883327	3.67049774983854	3.55298468019262	3.95445881588067	3.38839490417667	3.24730163143827	3.47408641723875
+"ZNF461"	5.05991722244338	5.45034548505292	5.30414423973762	5.24526095018911	5.33358936572871	5.40073379614994	4.95014809962263	5.19246352261156	5.5263938053005	5.38077624525481	4.95734622209176	5.45124121372987	5.25497571909998	5.34290824368496	5.02413959898887	5.40389881976215	5.36883595846047	5.30086144515842	5.26265897708434	5.29921236132743	5.32405919726961
+"ZNF462"	8.89906827890136	8.41111149252454	8.93619849579957	8.38269666936828	8.29172445756385	8.84053161988263	8.92999115308063	8.17804314591019	8.39337387880046	8.0257020982444	8.72059766906667	7.99013263678276	8.39337387880046	8.88934791543333	8.4039175804075	8.76148792541068	8.10223041638854	8.69161118614413	8.2280061299209	8.09981828498217	7.70951651760519
+"ZNF467"	6.91641905436158	6.31071063027148	6.57398024309796	6.59444083836084	6.56104279022774	6.95842367837718	7.07048544970886	6.67654498885396	6.70983067713563	6.55192427738121	6.10770753087399	6.37125728005277	7.02413331488903	6.74183695623959	6.68991709560082	5.88901021058502	6.47085152580064	6.18147351023272	6.52285618785821	6.5977231512973	6.27466318543312
+"ZNF468"	4.78306192399105	4.91106829406977	4.90324557681188	4.78194569663881	4.92855231462398	4.12119803295004	4.4227278553339	4.59316153343066	4.98753216714759	4.45503733336713	4.62636967630541	4.16987770015757	4.81147746982336	4.72759462278961	4.92393845782986	4.6899045807739	4.4325875163776	4.87963828548006	4.61924839459777	4.85662769201137	4.76182138115794
+"ZNF469"	7.46849500840322	7.48782715300041	7.67103827535048	7.68098344667773	7.55333630195016	7.84354871140083	7.73653331470055	7.19164483130866	7.59815283601057	7.44326604225717	7.47019328732913	7.4132704717803	7.78127079186415	7.93327332395235	7.71755515538265	7.37488565342499	7.50660174612616	7.3757923586603	7.65936049049719	7.77764779213383	7.68998322181429
+"ZNF470"	5.19828197754628	4.78252168951051	4.57512919121534	4.80818816388696	4.78447994247241	4.89300922332652	5.03514103110496	4.89121650913799	4.38366093303047	4.78447994247241	5.18098667917566	4.55648153370772	4.59733520846297	5.07822761668958	4.41197763964868	5.29274730601974	4.48742821028764	5.19192356242697	4.7149705584676	4.78488608620642	4.7801169951515
+"ZNF470-DT"	6.60858396394589	6.70448234812973	6.51085366783474	6.79384387631439	6.68052609189758	6.75665225426658	7.00114192010537	6.5065843033243	6.98038409397173	6.31555032589432	6.45944205978626	6.82087263977832	6.77609896748596	6.70448234812973	6.85687716668139	7.00122617724449	6.88165948643106	6.59219254372013	6.74148376049291	6.92214994814434	6.6969219295903
+"ZNF471"	7.31503311241955	6.81012680750501	7.34482966168081	6.75892295781384	6.75892295781384	6.31388060470032	7.17361235602158	6.51387393424283	6.72362396408137	6.23508019225499	6.95006148267043	6.41819494701005	6.13891735852923	6.75892295781384	6.79424132771662	7.56346393808107	6.64182122224711	7.27909399524997	7.15704777499168	6.69560741371159	6.42599067580163
+"ZNF473"	5.4205152597258	5.21819014739533	5.34476497837821	5.57588586168421	5.65527256433053	5.58095345278196	5.58316125000068	5.57076899250845	5.14785645014479	5.2624325502626	5.41040375043012	5.02123809925903	5.68252365059641	5.43300576023898	5.26296552170591	5.73724929558287	5.278114479199	5.94382471240252	5.1973770572675	5.66074387590623	5.6545712205523
+"ZNF473CR"	3.93668319481726	3.72757053732205	3.93668319481726	3.58226698297046	3.78980137325061	4.1186755687651	4.07876787758844	4.02442062569794	3.93668319481726	3.99526735743644	3.91046991440328	4.30291884282523	4.01156036445173	3.9660072090085	3.99508473427778	3.72419163351034	4.23637498706752	4.04637331447466	3.8283218883913	3.72741017643148	3.97565714743677
+"ZNF474"	4.24282995315489	4.34057268666813	4.42478648193499	4.44542355957093	4.49852897839739	4.73614753641511	4.68856995307533	4.18830179347685	4.28539100927207	4.50090026481901	4.68559148373888	4.41775463096959	4.37892455333482	4.68090610038749	4.41838798323997	4.8315553560649	4.64514673845605	4.48781728199384	4.4708386140404	4.3808501329061	4.60023627810461
+"ZNF479"	2.84585608208816	2.81641428639624	2.76725292568068	2.88829330098211	2.92372682914609	3.15661021599238	2.96044971977131	2.92224626834755	2.77684116613062	2.90846088310447	2.71259264495615	2.71131482423385	2.88332022008755	2.87683330338478	2.94400185683464	2.70441652907592	3.00243734710969	2.78127397054681	2.73057474730403	2.84358745289624	2.96298907858329
+"ZNF48"	7.87843959354078	8.1105036080298	8.49462609579257	8.13567959394588	8.37149389413839	8.1105036080298	7.88460423666458	7.91902599216859	8.23385513655478	8.24217568262389	7.93488949575828	8.13698371150078	8.14942966886984	7.87557463819344	8.2101473386192	7.89005723771574	8.11941365839701	8.1105036080298	8.09032432411653	8.18778873981541	8.15613326960702
+"ZNF480"	4.82185909305931	4.71388596643329	4.30404437635074	4.38992305495391	4.28406729667204	4.50557814904645	4.66790327545547	4.50557814904645	4.60826493374797	4.50557814904645	4.67600514556067	4.46083247026247	4.64776691178296	4.4686817291734	4.46795649385317	4.55602968379183	4.64423178974708	4.97297639027241	4.50557814904645	4.41715103829669	4.21069171214088
+"ZNF483"	10.670512344856	11.6502909571014	12.0762548439187	11.7152292336319	12.1080604287407	11.1403156094094	10.6248260503949	11.5555587643265	11.9345437032073	11.9285092745844	11.2023443902699	11.9274315451794	11.3448276635146	10.8193355546625	11.7046705691245	11.626936135593	12.0812083666624	11.7637785525767	11.8843937213113	11.7249430959678	11.9008548991242
+"ZNF485"	3.13933104056667	3.16367633608087	3.15272376243561	3.03239555217943	3.09469339269055	3.26026589249319	3.13645256648828	3.09021473365459	3.11979497643594	3.10967753753727	3.42598080769835	3.08311358461465	3.28859390525067	3.16367633608087	2.95193949792466	3.04343206795836	2.97947743260017	3.45796798891969	3.26439793264452	3.23402579905984	3.16367633608087
+"ZNF486"	4.78057709465034	4.7408477771219	4.54112905633838	4.73632552220467	4.35948541792966	4.54972375321377	4.53298474857626	4.60710362668676	4.77290356401642	4.63158124737318	4.77217781204447	4.66158743629916	4.74234195037262	4.69555566277974	4.94033554176812	4.65915049192384	4.65915049192384	4.24084632450322	4.82939386047293	4.33474932844727	4.59210481699671
+"ZNF487"	6.89831873187039	6.75550208339437	7.01083571134904	6.96155828047441	6.68214228566023	6.72222070607354	6.70634434472393	7.23844256776084	7.12826615031659	6.68861722297127	6.97160996529932	6.93488276322478	6.99103783874241	6.96821394294157	7.49153277067226	6.67159236265826	6.91052738742342	7.20904874364672	6.99972377949315	6.46443154953029	6.51195221727419
+"ZNF488"	8.232507371962	8.26805002802274	8.00494991026101	7.94732863389914	7.96169261482633	8.40877925187453	7.63905294293422	7.70683517150988	7.73884258854038	7.94716209436204	8.35991389292689	7.92530334811845	7.10423664370115	7.77858671494019	7.84027101791836	9.27603115106612	8.13737547342893	9.45891274878508	7.98426375019947	8.08952554180798	7.65135881223279
+"ZNF490"	6.04728360484843	5.93565744903606	6.04566898624723	5.99116519728343	5.79145015579142	6.01423309355414	5.78320244944973	5.877674054107	6.28136718481369	5.96228722742972	5.98738549214921	6.05718603591439	6.24039353254926	6.04728360484843	6.05829003308917	6.36634582337268	6.02535140221684	6.34779433512969	5.96432076736838	5.98737603366594	6.07154306992207
+"ZNF491"	5.60256762099527	5.50040702755532	5.07188180898688	5.46049976254501	5.30725759261154	5.1064958039528	5.29274711920994	5.31406472678979	5.17135332141146	5.35681635396858	5.31188619461078	5.15531639145647	5.00364115420998	5.51106357142161	5.47563017810531	5.64209464804657	5.39868687745762	5.0936521183343	5.12895289398405	5.21913968807888	5.3336571616354
+"ZNF492"	3.29709522694387	3.32668859784054	3.28212791817177	3.54551813132118	3.36560010406572	3.2853671540139	3.2853671540139	3.32208490891064	3.24983967379178	3.273739701973	3.42583586908658	3.23133708262184	3.33620062379706	3.37472111389592	3.22083554253688	3.19667165178452	3.2523456281787	3.16398781224893	3.2853671540139	3.2523456281787	3.36800072227124
+"ZNF493"	3.42504524704287	4.19975992385691	4.69868538762218	3.5997264542246	4.00522833683063	4.16687943735289	2.97245608344808	3.56818552998397	3.76876218868949	3.76428561259409	4.56940961609578	4.06858193415527	3.77125109840084	3.91319986752911	4.04547855583391	3.79926804310323	4.35186865811719	3.58515486488282	3.98544605296826	3.9468815512203	3.90951406059794
+"ZNF496"	4.63458633190036	4.92005554566364	4.76565232874478	4.89172313466491	4.98467284234573	4.75391176901744	5.34810385551279	4.75557613438183	5.07640704292663	4.78929000900406	4.62112452708567	4.82281215829348	4.67043202334229	5.29939609085095	4.97679160646631	4.5941552566631	4.83341698301539	5.0513619622516	4.75912699241849	4.79502554802221	4.93153954047309
+"ZNF497"	5.00081245713049	4.63398388424386	4.34365193890816	4.52102438110082	4.52102438110082	4.48055977884976	4.64388467243751	4.28852830751173	4.61552486600255	4.74976028001558	4.64384817690559	4.32057698888174	4.34994540514653	4.26984228362515	4.14606993029162	4.94938742919258	4.50980609805658	4.64716431189211	4.28975501999326	4.80142966306891	4.52102438110082
+"ZNF497-AS1"	5.1698847032005	5.12517987780672	5.35358819469852	4.87178155670733	4.99801560499104	5.03911717474958	5.43988622269934	5.1157318029114	5.26115951307521	5.01750882920819	5.11815535193328	5.06455810441483	4.94574817834255	5.31132752313968	5.11815535193328	5.21530270968657	5.33588320511073	5.16192799878344	5.25716884543975	5.01750882920819	5.02177839168518
+"ZNF500"	7.92567554754539	7.39770249317885	7.10857550869085	7.887476076443	6.53448242089383	7.920835663412	8.36873848125432	7.23334063314777	7.72563322328916	6.72562469979291	7.35062829992071	6.41514183788059	8.03984996108179	8.29708267367229	8.38613219975628	7.28016469082497	6.81471125965465	7.12557370488722	7.67467801596608	6.8639756924776	7.17772640191301
+"ZNF503"	8.13051169890144	7.68208356068099	7.79417124706226	7.8432393086571	8.12316768149471	8.63863662417601	8.08780464706865	8.14718093723227	7.92955109512727	7.88475951222837	7.57916071323599	7.18583941703568	8.69400600276305	8.09709609068282	8.27484824214665	6.93032513028717	7.95450887278054	7.57495511559805	7.79524150210785	8.14713000281511	7.96697492654337
+"ZNF503-AS1"	5.48895605615152	5.63282737911643	5.56110204293174	5.79496636564622	5.63282737911643	5.78836628204301	6.00457456699752	5.65185421220692	5.74000672222516	5.64658669163083	5.4238163408907	5.57844327858895	5.67212517878754	5.6193173781372	5.66768860364764	5.38334235834419	5.6114359043481	5.2569325787398	5.73708707355608	5.63617536159626	5.52000209225304
+"ZNF503-AS2"	6.03133247392813	6.28698562579696	6.61690130235004	6.44329909038792	6.28364460501863	7.00035853917229	6.9818790692237	6.29400390124718	6.28997983275587	6.3811135015398	5.94554537126949	6.31573772888287	6.40562214916442	6.85335380989438	6.56390049242722	6.04630941413199	6.12004188517636	6.05374798091859	6.48583228849031	6.48985861735017	6.16453589166853
+"ZNF506"	4.49014801115536	4.80739419865754	4.86779041674989	4.44271803886087	4.58106686070679	3.84232318792524	4.26827420287504	4.495069339386	4.20181329006842	3.98701865354509	5.05884572338678	4.15451915766316	4.46166034850697	3.65272712371474	4.55755198726185	5.31809979245268	4.0963254360693	5.00153243615945	4.07191242435311	4.06476444421709	4.3281576840887
+"ZNF507"	8.48403230814029	8.46432761467173	8.88222503290938	8.60628137975595	8.41919994980311	8.39266704351903	8.50713794103329	8.46432761467173	8.46432761467173	8.04103783366998	8.57660692179779	8.25248114270687	8.46432761467173	8.38934784272793	8.83466127023043	8.65715292168991	8.25929880084475	9.15033382827905	8.44796707683632	8.20436644793935	8.15366002179824
+"ZNF510"	6.68516799066652	6.98615021621106	7.02981487324759	6.4509379774044	7.0648820089003	6.30958127651652	6.22999100191674	6.42086971944923	6.89107001888795	7.10276188025866	6.69050292005424	6.73833579171416	6.44075242635271	6.49309335441635	6.60813091392918	7.06417724642006	6.58443652772498	7.24659327095284	6.62400922517381	7.04942495445923	6.97931407883865
+"ZNF511"	7.44409221896761	7.37053316427458	7.53624849049879	7.52130877878921	7.46298186707923	7.66267131397529	7.9190723538635	7.34345148900324	7.5308256646833	7.60551299470567	7.50848280609049	7.39563754127559	7.72378299060834	7.86505230936545	7.73358276733454	7.27125326303377	7.46870141823585	7.67497707116025	7.71496755793354	7.53624849049879	7.57778896579315
+"ZNF512"	9.47400800121704	9.15659272165808	9.18500652124039	8.89872783326163	9.20978979337369	8.75199307099854	8.77229547526202	9.11948135203619	8.83868978385295	9.13339442016537	9.10059203004736	9.27281065278646	8.3574500843564	8.61536143930725	8.80076564332259	9.5352743885865	9.05184747936447	9.19559231631526	9.01534455899877	9.43262247337532	9.04490521844623
+"ZNF512B"	6.07237930134119	6.25704878079577	6.98077613315093	6.17874749567898	6.3850449786764	6.5553272789308	6.26780063978684	5.99977715072986	6.44462388154056	6.57366868265899	6.66372985891453	6.36261294989766	6.42716678958973	6.26601642296342	6.01096729112887	6.42716678958973	6.38337185756337	6.67550830397007	6.20625085131521	6.44717556074958	6.51783619259923
+"ZNF513"	7.55430144687494	7.49463293041059	7.65495356353947	7.45432593707586	7.54105177796205	7.84497773563896	7.7106845871478	7.44193968043914	7.61059955640707	7.6365681211629	7.48598844530308	7.25283433164119	7.63118465535316	7.88138142846961	7.590312001673	7.39057592851126	7.16544219306514	7.67171891211648	7.21553459191859	7.66345670216573	7.55197209463239
+"ZNF514"	8.56113023601715	8.31760598771139	7.96683753290346	8.47822917726476	8.02284196207404	7.37659232857661	7.91590761939423	7.83867755036991	8.26931635296073	7.82663732519203	9.0550898664655	8.23018839889179	8.38586496203062	8.22724425090206	8.59885136195036	8.56160441033913	8.23153047979867	7.61726149394115	8.34954542013768	8.19066067476258	7.46610208363362
+"ZNF516"	7.15306349462844	6.36674593912729	6.67587536726571	6.52254825976949	6.4555055013473	6.43790096129751	6.87599719680249	6.94871677620149	6.77043958921869	6.36438168448261	6.70479850171306	6.39247565013127	6.86053606271489	6.53096012899246	6.73253309867692	6.183403785694	6.47153449160088	6.5173900648177	6.35226271425194	6.38576533669857	6.21284929893378
+"ZNF517"	4.16910210131818	4.19818030628423	4.05473763002037	4.1129157976824	4.28811339558514	4.16680642207166	4.49757982491083	4.2493817728559	4.30509364018132	4.00866002902252	4.03979539245002	4.16910210131818	4.29341646903585	4.14311696270491	4.15333076527326	4.16910210131818	4.05315742618956	4.0323386791773	4.34634699370544	4.17961830100892	4.36986388997693
+"ZNF518A"	5.83373661801047	6.12256733551174	6.49376351013051	5.42342119124873	5.94056796700701	4.79057616208276	5.01789774442255	5.81774417120224	4.82829898918604	4.83608548565824	6.37035983047505	5.38823065027036	4.92356391706094	5.12906069912838	4.70257500252863	6.60960500137246	5.19861132619366	6.34558786137562	5.31953275777255	5.23843180015622	5.27826411606457
+"ZNF518B"	5.43510471239669	5.75590161359213	6.080404959971	5.02712559655265	5.9875790398881	5.32902980664986	5.31913167527996	5.90740851436312	5.38076440108744	5.57587427373555	5.08380490255346	6.07024982113236	4.93779438031075	5.16373425365436	4.90994328048334	6.01273071722469	5.81409082417294	5.70703611248134	5.56876082013031	5.84408336142133	5.54182472073768
+"ZNF519"	5.80337704455406	6.40167071675297	6.80452593931858	6.82568226675158	6.56782252727717	6.03506980067215	5.96123855087091	7.63302844922661	7.22288654106565	7.10177894227249	6.39487517988831	7.73429985635255	6.815385397274	6.06977178272231	7.19371399988258	6.12729912413584	6.94366689193474	5.67318334699869	7.18726903459478	7.0839875246391	6.48541570375032
+"ZNF521"	7.06237271544226	6.49576276296102	7.1508672405866	6.69236861371523	6.72904133850449	7.00780670188881	7.01330166988817	6.6583540700153	6.42132041231881	6.22275632369925	7.11935803976751	6.18991072640999	6.3850449786764	6.35959917735761	6.90237709266814	6.80473776874731	6.52157771596062	7.20919094675477	6.68672226892237	6.52331980471047	5.94026146635498
+"ZNF524"	7.3829341742671	7.09707392055917	7.19552029575456	7.27741830928397	6.88607356336515	7.56294257768201	7.52763324816023	7.24270570708946	7.4782361517853	7.22904236607595	7.38664441422292	7.25303432869493	7.35107440734535	7.53352844746357	7.46355349968447	7.3116416970347	7.15728843446644	7.24415433936268	7.44417815933084	7.09096212591076	7.42406410661786
+"ZNF526"	6.97268426970545	7.02794473078212	6.84914648052151	6.90646255779398	6.88082036866069	6.89294680065723	6.96284988166149	6.61278606018009	6.56897698619989	6.84914648052151	6.84914648052151	6.45047658026347	6.76862536918472	6.89841251565941	6.68302115469659	7.14863481563708	6.66711026023032	6.93946095978944	6.61974285719537	6.92482435574162	6.88662109515141
+"ZNF527"	5.79429864513768	6.16592875867777	5.98759119265484	6.38997897416002	6.31563302451968	6.22608987809409	6.19650706855399	5.90995535988422	6.18668944972288	6.01083217973418	5.94465778134413	5.90855454661281	6.28221768812162	6.21428057465456	6.10770753087399	6.21576820405701	6.04462879909585	5.68641531121435	5.99065450732771	5.86463235072366	6.02500774278794
+"ZNF528"	5.67193313290703	5.81927813504634	5.90792924679228	6.18190836468783	5.82543342917228	6.24499839126791	5.98195862516118	5.62873473867109	6.05552072632099	5.96289830423279	5.97988160948784	5.81736017196402	6.12215741692389	6.0088375330385	6.31124798315279	6.2637789987563	5.86174312255593	6.06165131315862	5.87741138359487	6.1158608879498	6.11450470472353
+"ZNF528-AS1"	6.7120568594259	6.72871868259004	6.59957184780896	7.01396053270603	6.96387382223573	6.84880746547245	7.02110142967973	6.44808409777688	6.71824969846691	6.72150836554369	6.81294338801741	6.65165484554714	6.72150836554369	6.89618800929376	6.76352500217076	7.04288619226955	6.72150836554369	6.60818593237912	6.67804084434298	6.55467133575723	6.51759348178169
+"ZNF529"	6.66169562882496	7.65747628372643	8.31830144073444	7.32403276297387	7.99023239946738	7.42324116919544	6.39270386740224	7.49937243362461	7.36884086884611	7.32155382349049	7.41944908234571	7.75352399339629	6.76304342944093	6.75687616389373	7.27048883463591	7.3868223466713	7.59000898091751	8.23911623073742	7.38727888540881	7.51963764455853	7.23097350632613
+"ZNF529-AS1"	5.08961543800521	4.75425719972472	5.01600896699818	4.44226988677651	4.42674525491247	4.21158836680804	4.50499856928311	4.40372351542714	4.60812755660802	4.61663825624283	4.57376160350925	4.42284938906406	4.63667705614021	4.79719231354717	4.72087338926297	4.2354977319959	4.48338657707148	4.79001779688713	4.50304628685804	4.60519650960777	4.31239528334185
+"ZNF530"	4.6656478005912	4.61820922345055	4.40169738487094	4.57568999579897	4.28112192436471	4.16447968568395	4.88651311081427	4.57512919121534	4.6656478005912	4.70460105323453	5.02823475663121	4.65932842677465	4.62668504142356	4.71468517663001	4.71343823669209	4.77567575270721	4.89755309285788	4.47751975073354	4.7605488304103	4.67909216949582	4.51663273635905
+"ZNF532"	9.95956292750506	9.78736280870449	9.76486151632974	9.55920283780574	9.41887849042972	8.94359126635636	9.88821228427174	9.42824111673424	9.32175691983852	9.28203235917131	10.0268124080807	9.40313781111552	9.47881653834621	9.54565176846514	9.37999006762016	10.1424565908386	9.54715515038523	10.1766367990327	9.6090716706021	9.3585941603229	9.36393953495449
+"ZNF536"	7.78260795625332	8.09791374617782	8.29792910605	7.28413443165372	7.90276236961348	7.10737849417565	6.62966399786001	7.46026219561286	6.99176342921608	6.93100954492685	8.83431254906932	7.61113348196282	6.91693262111088	7.35746408706749	7.05827632665488	9.1334637678665	7.45198806447554	9.5768825706968	6.96505542614081	7.64534095241995	7.63636244566948
+"ZNF540"	7.26823349738878	8.17661922946772	8.62088591337777	8.11345378799167	8.31830144073444	8.41858835361211	7.45452810507693	8.50231033693937	8.45626686006547	7.8408941972552	7.78549567008969	8.46650937055578	7.91843680759816	7.7463580840527	8.22943788382963	7.41500086278432	8.42356997165979	8.14454771480596	8.22100561612718	8.34406092267313	8.14007275329676
+"ZNF541"	5.95048163840859	6.16023546583569	6.05962834716509	6.2517069925628	6.05962834716509	6.40411222114055	6.19824009134641	5.90655564622389	6.050550683609	6.05962834716509	5.80806314292463	6.03171745099654	6.23650113810545	6.24443397539332	6.09723025807313	5.69532598273726	6.10770753087399	5.75156422602065	6.23115025139347	6.05962834716509	6.09016181304755
+"ZNF544"	7.47359327725734	7.94543765170236	7.96245790666232	7.54938469873157	7.57468880475765	7.19549378087219	7.69002909823023	7.55232898944654	7.7199707496778	7.81348619063232	7.69419317899003	7.57778045475473	7.55952118881602	7.68154386498528	8.00137896325489	7.62802974143362	7.41116070821567	7.26528550855667	7.69286847298129	7.86510826791694	7.82399196078608
+"ZNF547"	3.94027762189362	3.90882538535162	3.77468951273479	3.96754579781831	3.89526007734642	3.64830244527006	4.03603297764773	3.63452460849962	3.74193239352757	3.49451234290668	3.52746075031686	3.36136316240832	4.17393765365724	3.63734615191803	4.55516582163185	3.57063946495654	3.36177386466716	3.69549199390597	3.77263498595549	3.69181918370214	3.52475819073456
+"ZNF548"	5.49476450268487	5.11564811477081	5.24032997040818	4.99169548668545	5.04004473677515	4.80613812136094	5.10738397046551	5.12412882071819	4.86105879849996	4.8598305495009	5.4850603657199	5.2016637242005	4.7202601450218	4.77887964452984	4.93220392943134	5.71074839638279	5.05474881738322	5.96316785947122	5.26265897708434	5.41707833582896	5.04127353467691
+"ZNF549"	3.57428304503712	3.70823682121058	3.58387896601217	3.67491788064232	3.38572512656629	3.47298025610708	3.58895529754571	3.7262371260789	3.682820006186	3.83390837744182	3.73006526580036	3.53784260422856	3.54711446818035	3.53741376891322	3.45760993292975	3.54390425830219	3.64646847182225	3.37807269091952	3.92467205801534	4.04213083705807	3.92302758602181
+"ZNF550"	7.28879385636496	7.5681167748732	7.52957127284894	7.52547548499833	7.7574950689897	7.29423932486654	7.28075294865739	7.39859052686642	7.57267996507861	7.5723911351971	7.41146966729607	7.51048291672943	7.36630014808742	7.30624401465442	7.69685149234931	7.9231152826323	7.67818207698051	7.85559249915973	7.4495297260332	7.51797207144217	7.65791642179961
+"ZNF551"	4.00967676648148	3.88509171534632	4.16561249945007	3.74179424180057	3.93753814708997	3.70239495890333	3.61117588395012	3.73648041729871	3.79144460194354	4.00757947518573	4.17622494701542	3.46547771514358	3.49835935778302	3.90882538535162	3.79978114030483	4.17219539193722	3.95791283012094	3.85076960627854	3.88509171534632	4.03065454581025	3.89350362357758
+"ZNF552"	5.04330441726734	5.07755958326598	4.86986392122983	5.47434410720324	4.99063860515279	5.01724558730516	4.90108713472645	4.91551299050733	5.39614460056483	5.40360446454561	5.17688718592879	4.94248977132282	5.4725383575839	5.42867946954338	5.3605424868223	5.58358265602105	5.4052878518216	5.03496540763289	5.08921729960497	4.99449965264188	5.29558851519141
+"ZNF554"	6.91547759189572	7.09896257407676	7.22657183437661	7.45517020893616	7.23629590917689	7.02511501116259	7.12766710096699	6.95521321857567	7.36233609211744	7.5269059070445	7.14771614917672	7.21183196404563	7.57846181461875	7.34938016732421	7.30587210643228	7.40357352788424	7.27351963928135	7.1123523594076	7.1771596518436	7.32284715849047	7.55122913853355
+"ZNF555"	5.92184204493072	5.97248607685607	6.44622368239654	5.93269701068309	6.65642347526546	6.00267867084201	6.25986877286907	6.06109674739437	6.16581069519139	6.0356915800451	5.88749308697726	6.07854110773496	6.07854110773496	5.66128153398499	6.26523894981672	6.37607543702359	6.0296241695356	6.79578293779668	5.94570517050411	6.13597729447307	5.91726772712269
+"ZNF556"	5.12108160279493	4.9673755552224	5.07634978680979	5.10987774282196	4.95435952514426	5.54450087133998	5.70579337909925	5.27678553815247	4.92187053222458	5.10987774282196	4.93224284298634	5.06164275784957	5.29503195153703	5.55936161059917	4.78473603046611	4.99141476919667	4.99651043190544	4.93431602072352	5.33242954496112	5.05494363302155	5.18888558895602
+"ZNF557"	4.40493540810121	4.30153570204257	4.55985956678932	4.05773528584118	4.84219893772385	4.25718752945772	4.28758304557579	4.29175429354242	4.03831660333705	4.2593636380027	4.34227119376949	4.2897692793404	4.32518432390547	4.34921545494278	4.28734741694772	4.68393695342979	4.00016590584708	4.89550325299867	3.98544605296826	4.47561260559561	4.88710310706319
+"ZNF559"	8.10356968585932	8.18418257785513	7.39359616184896	5.76532474745886	6.97100420730382	5.64372325546358	6.99748016775696	7.45529264590018	6.88216966144626	7.22639005057327	8.31787092226153	7.28083475064389	6.8000506645029	7.52902144523188	7.37303878917552	7.83509048330559	7.11711373920604	7.63261658976056	7.16860980185233	7.33662238900565	7.5273386483443
+"ZNF560"	2.94176193795194	2.93720370824507	3.04385858196007	2.97592694330417	2.92017643301803	3.11395981986173	2.80887147389779	3.13350965492434	3.19932686700895	2.8521279093031	2.88113806240775	2.96490136947469	2.98510588276923	2.85001334642936	3.22395789270902	2.97427250281873	2.86788272673676	2.83124597789577	2.77583998181427	2.8273995937723	3.15776324638556
+"ZNF561"	5.52984464899151	5.36909590463981	4.86603411295633	4.91100454531016	5.06240735521088	4.41076821390798	5.13530303717207	5.6423308545587	4.68281389690308	4.89902163795156	5.54373177741988	4.94742361195915	4.73535930097338	4.92489428787511	5.01728460890796	5.79809133812825	4.96022751506762	5.60745335588581	5.16433124392148	5.27804849995564	4.96012836444381
+"ZNF561-AS1"	6.8078682309334	6.82066667087554	6.50435639329875	6.79128377274489	6.40077882031364	6.60434232895321	6.69783977187259	6.64839323917919	6.88892976743254	6.61318688334037	6.74643626835524	6.51119827743271	6.68658620267005	6.81234990592192	6.78953578471793	7.01025084441244	6.6010460180351	6.31790124641276	6.63278719037488	6.73411621593108	6.63069387166735
+"ZNF562"	5.26817681331534	5.42716194928276	5.03881116123912	5.37934526369993	4.82660334632449	4.78794930619946	5.22062156958156	5.27231707494301	5.31190745014241	4.99169548668545	5.28520030396326	5.27941117347017	5.42437040383714	4.92836430252744	5.58471347198782	5.34365107965059	5.22062156958156	5.11476621170833	5.30097962000209	5.13753691662305	5.27523371580799
+"ZNF563"	6.22834229788385	6.06577215321075	6.0781636493888	6.08393710389392	5.93269745143028	6.11861947196445	6.56388106302089	6.21058065554833	6.22894975166585	6.03663998936987	6.25187331470211	6.01732179925437	6.35163342702226	6.49916586624919	6.35163342702226	6.07659219859362	6.06907710341669	5.98737603366594	6.08938767522189	5.79631157058051	6.10770753087399
+"ZNF565"	7.49259266163016	7.70837130160868	7.48348123760534	7.88288006385275	7.53839292256263	8.06729442666242	7.64148448741165	7.6173636562281	7.56895471128753	7.45595343540128	8.07753867049241	7.28563361668225	7.6431332214176	7.74257961601665	7.96710989633812	8.34664636605255	7.3651261113759	8.28252166280298	7.71465734457315	7.23764444497777	7.21975348204718
+"ZNF566"	5.87957738309212	5.8574750608798	5.3614304441513	5.9957433152399	5.82666475809699	4.2625214552717	5.09507778179062	5.79711897649468	6.08752162428332	5.75259537153019	6.36457518376444	5.75526213918654	6.09779850915546	5.45781592943129	6.29441309092948	6.14135666507378	5.74576428188661	6.10471632697935	5.94570517050411	5.72282428567835	5.53715704928749
+"ZNF567"	6.0542864785371	6.27400505356411	6.10271985819724	6.33213712944044	6.46513420971386	5.97962142159865	5.79536190625481	5.9247221576481	6.56294572207965	5.72879976623736	5.98504072587561	5.39002780742118	6.25976493994394	5.48762665343805	6.58147214565638	6.10894399798629	6.22289541250893	6.31950039360895	6.13786951826351	6.07742716026602	6.02720778405228
+"ZNF567-DT"	6.79850187862952	7.58488808838251	7.50166917069815	7.48818265256196	7.64651746721742	7.39319692351637	7.44066266112964	7.12369768228965	7.01081737880993	7.19552029575456	7.28104838965062	7.74092958912008	7.29747175556594	7.0532812365462	7.33820724729287	7.64323038494597	7.5149831695622	7.34804316004121	7.40296268250291	7.25294589074486	7.15226730000583
+"ZNF568"	6.52233734660297	6.93072702869054	6.42334095351969	7.02530436721781	6.06192879234443	6.64176727728381	7.13331090455422	7.32953443894389	7.13738986599791	6.59764965199061	7.08954679982854	6.5158522085527	7.12098008554743	7.44244026495126	7.23458610446557	6.51316638519897	7.27936625841318	6.24863289925484	7.01204503437812	6.56523867375006	6.61551837145385
+"ZNF569"	4.84431414565121	4.93750628223488	5.03715722985542	4.74414361607757	5.21066393508327	4.47515061092618	4.82007461356578	5.01648742054741	4.76084981427344	4.73911549705711	4.75799280259008	4.95783519102278	4.64348778660726	4.44239863591993	4.92294999685354	4.8191774249241	4.67214184682376	5.3032618483079	4.84431414565121	4.94936370266715	4.7939943459758
+"ZNF57"	5.44216632379867	5.8510776322976	6.20648842793009	5.1462469496485	5.99304071086834	5.20695697619958	4.92061250049945	5.61755172667795	5.50076182085259	5.49453234322297	5.38176100348235	5.4037678307415	5.07458207670456	5.51106357142161	5.50076182085259	5.38004756656014	5.41469103454482	6.018215824405	5.50076182085259	5.68714071491588	5.42833379334822
+"ZNF570"	5.31851729250564	5.77872950452485	5.33987680186212	5.69197073474972	5.40372878929991	5.14874746178349	5.5457970861875	5.92088772949834	5.63860080838371	5.54114183589152	5.56651176162855	5.38521598554916	5.48744416754917	5.37241839888034	5.79287822320797	6.08548301887986	5.53600491320796	6.01078939801264	5.65199624852033	5.608461367162	5.34992127074116
+"ZNF571"	4.66891461597415	4.9273914922299	4.7265195011894	4.52133935066704	4.64020695688682	4.6864081720811	4.20712028500638	4.65401135286642	4.39029102533355	4.58592233788176	4.67182517268179	4.13773031834026	4.23504673721504	4.45947122973213	4.38740436548139	5.6632163498986	4.49669141162982	5.61750353414706	4.50643129871752	4.15717752367155	4.23270564637736
+"ZNF571-AS1"	5.86034416430574	6.37733585221693	6.03785571081971	5.94347749257532	6.09745500489862	6.10761579204677	5.57776887150578	5.70873361322297	5.9352927729288	5.76355186482492	6.18711041761504	5.80644848624261	5.53147984400162	6.10868826855287	5.68519644295041	6.50809801789704	5.8668976310647	6.03655704745493	5.58992504273523	5.85044431909605	5.90558403158366
+"ZNF572"	3.77358808255511	3.90481473708738	3.67260503412147	3.98206292952472	3.73111778047554	3.75131276269084	3.75714810291262	3.89211565208285	3.77999714271874	3.74378424730173	3.86280616645761	3.79304218606966	3.43359381604248	3.55540407527132	3.68670478947422	4.26287717857921	3.60489061136529	3.77840740537392	3.77999714271874	3.62965176638923	3.90283264759306
+"ZNF573"	7.69675779818674	7.72795502409695	8.0216058990215	7.95153666820654	7.61017772765782	7.63525572419367	7.27603984314023	7.64489929998502	7.88098891338136	7.47508874362343	8.14375293361371	7.62197766086491	7.51632361840202	7.3146656468996	8.18908971493715	7.77594498652537	7.52691540928993	7.87383455361077	7.834396967665	7.70086546393395	7.39911566183251
+"ZNF574"	8.0993580823604	8.25584429098414	8.44651785703697	8.24113595579458	8.09131580210458	8.77450119987859	8.62224856713436	8.18218623746668	8.44880164844599	8.31787475410542	8.23906984463828	8.16015538592411	8.37037364752495	8.63579245194083	8.18617195257455	8.12042347544492	8.18514172336996	8.30467801075392	8.10991748336702	8.45519079900692	8.16723777688927
+"ZNF575"	7.06423092059592	7.31983486011401	7.55739477387355	6.87582713922944	7.25821999486173	7.16864537389594	7.22697455029771	7.18589865469036	7.17496694069354	7.22411312697577	7.56793868852455	7.37235996256812	6.88744598052789	7.38663378597492	7.1173920889114	7.24473869073877	7.22719892108006	7.29786476452893	7.22411312697577	7.44295422301156	7.25159667403806
+"ZNF576"	7.33017931861824	7.0768112232009	7.24661971878332	7.14787283952984	7.23691383871382	6.92743525910762	7.3093347048318	7.2020871161395	7.30600891858235	7.40821661584585	7.18511782175113	7.37480303492982	7.01578557071263	7.12863648798565	7.17956694784597	7.2073921002055	6.91694090370791	7.27850901590749	7.21371262242902	7.44792449649909	7.12209269042021
+"ZNF577"	6.96750264809739	7.29102554365454	6.67611445357684	6.98387768123895	6.25699867965442	6.87819318118007	6.71038260793377	7.42073662453157	7.11752979772968	6.67871612230923	7.3466734726984	7.21426777288891	6.86300711275678	6.92110387799526	6.98002138208149	7.54521243137895	7.33948035271429	6.34132060001623	7.16372763605672	6.80794899256167	6.77938840827259
+"ZNF579"	4.07180113210918	4.06009028113652	3.93624301091598	4.22362710471141	3.92767784980034	4.04832710930467	4.21596570271051	3.74941670858921	4.07792606942969	3.96335861295691	3.89122049887183	4.07792606942969	4.26262449112372	4.13379726066269	4.3534783305601	4.21923570266538	3.95812154260932	3.92645271152417	4.06615327409475	3.95265596903816	4.27673164034295
+"ZNF580"	9.80260258725244	9.63218136452173	9.99077153103963	9.51438869700877	9.24852654491238	9.91756519970635	9.62259161735291	9.53663669199063	9.85450691820644	9.74435077820027	9.50876965567079	9.55310428867318	9.59318525004813	9.85374589194848	9.48409941878405	9.6069214946272	9.54297608308782	9.69638361904801	9.50071181774073	9.69974596173481	9.54154980035849
+"ZNF581"	8.04528387627446	7.73668489972164	7.8853633831548	7.73765085468487	7.67347850354898	8.08192808105176	8.05129803483973	7.76150293534416	7.74834923206869	7.75994009812783	7.5909597900575	7.6558165804815	7.77148738295262	8.19035616283107	7.75994009812783	7.72722538927693	7.72632269466483	7.70901386082165	7.75994009812783	7.71428753661285	7.45752880348457
+"ZNF582"	6.29304059768516	6.70240194739799	6.23069857696379	6.4317808813952	6.36060168240053	6.35137650404111	6.29057679931434	6.40773703577086	6.40773703577086	6.52809394761101	6.40773703577086	6.39382929083784	6.4741009589909	6.23972560065022	6.20985730248802	6.73629753399282	6.48199457666455	6.40773703577086	6.4459639421147	6.45228714802097	6.43501408735561
+"ZNF582-DT"	7.48857912228317	7.41725851139944	7.98601223854604	7.80764625321105	7.90888853451321	8.31934846632445	7.64113125714393	7.51379391377781	8.10157015270866	7.89028126696201	7.46899734834929	7.41623028266369	7.86396285033335	8.02876525249838	8.29962601156467	7.77047927500852	7.6572345422292	8.27769580576648	7.65624826987925	7.69002836883409	7.5090640492271
+"ZNF583"	6.57397163427269	7.20968690754059	7.0562744258242	7.03398358301607	6.93923130504113	6.79892302950571	7.37427373982735	6.53496622079085	6.8979488539373	7.05638144262496	6.75264882950538	6.87340741808819	6.93923130504113	6.85948955183101	6.94932771988347	7.10696982576491	6.65659679545339	7.13196617474985	6.9630256368334	7.24652681836078	6.97066293452067
+"ZNF584"	6.73931874635859	6.84377359403695	7.156350590039	6.83028410180825	7.00029123313402	7.00266088784265	6.83298170966437	6.79239924235621	6.88463141096561	7.28805557256574	6.80174154394099	6.94253765036035	7.02526275088388	6.9379278208946	6.83218868635185	6.95380871442132	6.92551480965965	7.07662247871269	6.78082303005581	7.04224204732295	7.08229454749147
+"ZNF585A"	5.869788953808	6.09297804483221	6.62875171226049	6.03837270463874	6.35274918254283	6.09650795376219	5.53506836047649	6.17735222931772	6.29199302670877	5.59504101821693	6.22436321691284	5.7365457716399	5.87151518036665	5.73109807810112	5.86869788723025	6.20512862409751	6.1877325121302	6.80511970130376	6.29023908221898	6.01242354077849	6.09650795376219
+"ZNF585B"	7.31684495820224	7.24515320310246	7.86705964854657	7.18186378702618	7.51527430780508	7.09710958507984	7.06284084639124	6.77298719280239	7.07733888797665	6.73804472961637	7.19375239106232	6.49495338657974	6.82688537084869	7.13077138301163	7.12509080411041	7.32592108549166	7.00732560714397	7.68726702581462	6.99920213496556	7.21477894065942	6.85861556699313
+"ZNF586"	7.34530711496533	7.25003798568674	6.73175642456075	7.24708137443869	6.84077998819356	6.84795423378298	7.21900333364839	7.19708724547674	7.16185335343875	6.84990335734843	7.23389960909453	7.18407493475537	6.9335293844826	7.0605835913617	7.21229531254048	7.57230532694593	7.48711550330957	7.35385947421747	7.25159667403806	7.14641881677567	7.09453944988021
+"ZNF587"	4.93626430900751	4.94355385582111	5.98949891293232	5.14318680592998	5.68932318648379	5.72364880870527	5.40757369166515	5.47397356188149	5.4213208046771	5.18943388845433	5.25864695174506	5.35194768698106	5.25783775669832	5.18866891234694	5.36939172796122	5.59922557870889	5.46798824173524	5.77019635321722	5.48342753672231	5.08961543800521	5.34187734368563
+"ZNF587B"	5.67783153045848	5.98737603366594	5.91889419683251	5.89459455356686	5.41912353088006	5.50076182085259	5.51293222458686	5.50292906285085	5.84763125245701	5.835512438015	5.90841370693996	5.57215965553141	5.68182689505369	5.71869818776358	6.16778660338387	5.49437890807017	5.76845112685092	5.11511004444893	5.73979471534101	5.5491565954788	5.66535378690093
+"ZNF589"	5.8668976310647	6.30029503569509	5.84918853871249	6.19182527055592	5.43992639556657	5.63665445938889	6.18391838563575	5.73809879702169	6.24645971200705	5.80268663700877	6.21528114396035	6.35969110327765	6.32943038702181	6.22203420965418	6.48499082727983	5.86881872047401	6.11385827629	5.66890320400651	6.1565569203864	5.87361013273519	6.05992676252359
+"ZNF592"	7.82488667395161	7.89795186199582	7.85357050015013	7.75391874611302	7.56976425644993	8.04415657218016	7.43814542473584	7.448101661803	7.78518973499184	7.60435066861835	7.73604057025109	7.59111598505987	7.6399585591341	7.90730501801577	7.70740135207226	7.91417350053111	7.65881331075505	8.09981828498217	7.592818251803	7.60697090858708	7.56283110691556
+"ZNF593"	7.29659126638526	6.6137696295254	7.70547041674753	6.88658946748826	7.16558161380663	7.43666334027197	6.75181838634127	7.06520765254238	6.93230019824132	7.38027751400534	7.13478810084389	6.90501638828923	7.063589453602	6.69356755549932	7.18114564916793	6.56167459435526	6.49205575231536	7.01084347535367	7.20548926808639	7.31952683325488	7.17664972656744
+"ZNF594"	5.39892754370658	5.86924374371351	6.18813981898754	5.50076182085259	5.84080354348309	5.26483342711264	5.1506338756772	5.25389964493354	5.26087954334815	5.1612877137707	5.54180219576332	5.08406708975761	5.41405010452545	4.95141165375109	5.58503827712375	5.99390061510555	5.55606719392964	5.80717187510508	5.48472093256315	5.42368688596723	5.48201688653894
+"ZNF594-DT"	5.63855474210964	5.79094304728977	5.52086059544499	5.746002528657	5.82039612820959	5.79222579077731	5.5281988895512	5.71700735041673	5.33866867829821	5.81584364446904	5.6780172405416	5.77009593783823	5.61437890390862	5.79976601284619	5.7662511083396	5.90495520470838	5.88857165085856	5.73119625228838	5.6342932855014	5.34881032197818	5.746002528657
+"ZNF596"	5.06326177357643	5.21311766678832	5.35058465510672	4.65460107413172	5.31085921744476	4.62373542543799	4.47475552193388	4.36846023444433	4.45110451282938	4.84769343761088	5.09097327850217	4.45877496965148	4.42198141038283	4.69398933290599	4.3780848627475	5.22881527915291	4.23691440931076	5.30205555224021	4.38947996794177	5.30070746576814	4.8327518571654
+"ZNF597"	5.60495733410779	5.86798499978536	5.83489135196075	5.66921955987806	5.92405423706427	5.68072077070994	5.86998665390743	5.79254185849123	5.78644801483688	5.87865123787727	5.55530021684623	5.55192562349878	5.4695743095193	5.39667170874698	5.74313878489237	6.23058057753361	5.48289505606802	6.40833621789247	5.57859823448453	6.16589815024446	5.97841645625826
+"ZNF599"	4.12422850710094	3.53572866928112	3.24729466179183	3.22887054364968	3.57932862793068	3.67723806070424	3.43561657898329	3.33628875198012	3.33628875198012	3.38992751988508	3.75969984517555	3.13645256648828	3.19119621482999	3.52606000976029	3.133948324659	4.37253480609131	3.21335811689306	4.34523570910743	3.35003900550484	3.53658359717164	3.29467274878638
+"ZNF600"	5.31730919846428	4.46202247540593	4.44026301735951	4.61046419147135	4.17422584164366	4.61046419147135	4.62245133601945	4.80971718099761	4.5998306884262	4.61552486600255	4.8838202435786	4.30796145030484	4.43095327388682	4.792041545333	4.53950263451484	4.67397534457436	4.51108490960033	4.51807806846631	5.00244623871488	4.65378947094177	4.61046419147135
+"ZNF605"	6.79758646077907	6.89941768600936	7.06439336093689	7.28244133877981	6.52813120898041	6.72984954172027	7.07173852359371	6.66618966936272	7.04648969695867	6.51069478423728	6.63506893428329	6.33706007565008	7.41378932168517	7.04173205483868	7.79048421861797	6.64304464723529	6.58644275400945	6.8611979097587	7.23654269881491	6.82929796997458	6.3156968205182
+"ZNF606"	7.35401715055752	7.42621564039898	7.38283207118453	7.17094008616001	7.32769225244805	7.18696098711902	7.19656872496131	7.27783065045364	7.16185335343875	6.9396887784852	7.41384796606557	7.18611273882705	6.6380392296043	6.9366219677711	7.24768924799579	7.70516048048179	7.22620072874656	7.95056154973139	7.42599080692339	7.15739554760385	6.85230355132721
+"ZNF608"	8.34952443532279	8.2317790530721	8.2708537561094	8.20700707491205	8.18170289244959	8.35398254377325	7.95366097566868	8.58675259365032	8.18608556686651	7.73539595288464	8.85052494114651	8.00460772455767	7.76131052775348	8.23579566926172	7.87484983330245	8.98137599570342	8.0369503596307	9.23640614155261	7.86510826791694	7.95079636227063	7.79135779181902
+"ZNF609"	8.24895998597097	8.28509650503988	8.57676361020232	8.35472130485433	8.65305521167713	9.04131791214884	8.58625413735724	8.38441304190069	8.4618880943879	8.2185173725986	8.33179742661421	8.35472130485433	8.45651490997096	8.80122771835688	8.18859272944533	8.09162531852649	8.29817734473314	8.45945668690619	8.19739101072638	8.4037210312402	8.18881328451618
+"ZNF610"	6.8247047295161	7.06547534575184	6.69287509607969	6.64559871516129	6.8567693773564	6.33968164285153	6.74007048628765	6.84437574339098	6.43864344567379	6.32138311831757	6.94852406499005	6.92991372093939	6.5179689742214	6.65148123200678	6.85263066234386	7.07181966082261	6.87980403148404	7.25544537419802	6.87166418482041	6.83738628186594	6.50527183312601
+"ZNF611"	8.24473040445581	8.46305006836288	7.89358343849974	8.54174807624953	7.5659193312248	7.77519760790367	8.37317002476287	8.36224974041427	8.44272256548904	8.17664704905577	8.56937892178082	8.25021458698274	8.65663537173445	8.38619681256257	9.08971148878519	8.16371709642062	8.37372038166941	7.74742380101428	8.39306630552547	7.83236251739143	8.28508929945721
+"ZNF613"	3.34750390840166	3.29611624432563	3.42947236579298	3.20149454858966	3.15661021599238	3.33094249581296	3.30886720728839	3.11315241110589	3.58721475973524	3.52490191996095	3.25112911911545	3.26657236284043	3.3567733987987	3.60170387330552	3.60440366149911	3.38273898023197	3.33094249581296	3.58227565389384	3.31598074572022	3.27420848537286	3.33094249581296
+"ZNF614"	6.68518386503347	7.13746270318506	7.43543522576841	7.30570340978623	7.00972598064488	6.99841515729135	7.12695831459674	7.30864358350505	7.04659905793759	6.66101691426689	6.87583885693803	6.56942082318621	7.08301529894815	7.16989468180297	7.5828101683179	7.10827297336241	6.83660049164551	7.70588819055915	7.26308132365951	6.94202762924746	6.5004120836178
+"ZNF615"	7.3626994259469	7.74362070033757	7.91959625789668	7.65313792286687	7.75287610127043	7.67050034111162	7.61089422477668	7.74157212522777	7.60643190192181	7.31159058025725	7.60420141674769	7.30130076630933	7.52825772264932	7.61138126560585	7.62688830918037	7.77491669259761	7.61673372728068	8.12012826268978	7.7288287617704	7.46046156566725	7.35335453972804
+"ZNF616"	3.32841391750544	3.11918370650864	3.22124809216435	3.32864020076161	3.52139658429729	3.8346903777719	3.47833333901036	3.38652776020083	3.13083690211737	3.0847819327118	3.34137279451168	3.12749514950774	3.23945656173176	3.48206960006554	3.07899847108754	3.66431381543932	3.19545958833464	3.5457420044535	3.23945656173176	3.2371083959586	3.13409073757693
+"ZNF618"	7.67697935827179	7.37265548519532	7.67751776487002	7.48303889226694	7.27381523290272	7.90335633805572	7.75302308995587	7.16185335343875	7.36095300623976	6.74845094149687	7.25572308418497	6.84601464786056	7.52033896483139	7.64236042006738	7.44019999102593	6.91807109096612	6.94684172667464	7.35592929390203	7.26112506127139	7.28905477746005	6.85152802223599
+"ZNF619"	5.9633766631856	6.09112907115375	6.01005619532519	5.66982277589367	5.98737603366594	5.48493868139729	5.65630794375051	6.0135009228069	5.71574418766155	5.91879060014714	5.9584954571426	5.90478800358836	5.98304351766738	5.54545822988266	5.8046063198732	6.26690274498859	5.99503845902619	6.41835831675987	6.00457456699752	5.9584954571426	6.03072655823645
+"ZNF621"	8.60424945291656	7.72738753574912	7.75137731891878	7.72676641908455	7.35661225928677	8.04275291893738	8.33398414744918	7.93847492262923	7.64630272644234	7.23689112809067	8.26700436100021	7.03545928851511	8.00665967400938	8.42493365776118	8.10681302815782	7.98342191708711	7.3267832600412	8.44296885225611	7.62506384480325	7.1869634460401	7.43577244999821
+"ZNF622"	8.17466035403256	8.01119521249756	8.51196523645584	7.88616933493008	8.56748294391888	8.71927201579304	7.92499778685566	8.02669316089637	8.27939605284556	8.39302157317389	8.07501471625148	8.28268201393474	7.84197107747519	7.88542730776676	8.06345954330007	8.35271229572369	8.1962593666619	8.4357783686311	8.3072828874635	8.49702082357888	8.41405667362387
+"ZNF624"	3.441800288448	3.63381777717165	3.93690228709406	3.67094513143614	3.87527515377611	3.58226313596477	3.14457538759488	3.60229658698166	3.44001514581641	3.51045759880072	3.99806270995244	3.47505859492023	3.39520581469489	3.59687513451995	3.58537855460461	4.01427305640163	3.50219377472272	4.0639889439876	3.70481590457781	3.41796000671952	3.51537933365329
+"ZNF625"	4.75997053858202	4.724526093855	4.74045022073419	4.85817247265649	4.39863461522565	4.79179693188151	4.59941539332795	4.72149058556455	4.88231405424904	4.80123995808101	4.47151449122471	4.34634699370544	4.84913738300898	4.97969542514921	4.54488977177667	4.67360984288987	4.48281311955511	4.83968522148426	4.68332512505791	4.57690382196052	4.7789526393203
+"ZNF626"	5.31129162345301	5.14883625094851	5.12126602323065	5.48555608074022	4.91883073352184	5.25056983432883	6.0064457784296	5.39962718842838	5.85169917388687	5.3620427649227	5.37682447631082	5.03966816275381	5.77754629052083	5.42842186364264	5.92063187287237	5.12976002699658	5.40822984826827	4.85554433895309	5.70491146600838	5.18891823690433	5.18584794882253
+"ZNF627"	7.9000469853451	7.71777632397913	7.75810530794753	7.36171207462868	7.96025274012582	6.88446328538064	7.22187705123571	7.88197632510238	7.17951131884028	7.44041879162875	7.80356706997274	7.49962931434742	6.744280991234	6.93518883669968	7.30991326285199	8.1554336993455	7.13486036933361	8.14402154680965	7.50911531874603	7.66319884246937	7.4386447224559
+"ZNF628"	6.39023602120756	6.43658825021128	6.69929725278412	6.75535773946901	6.3174380956454	7.04282081704197	6.85647450439086	6.405942256087	6.73402997720155	6.84651970117184	6.11980036852688	6.61199328951794	6.79070942088718	6.75819854473575	6.2949683145666	6.14910069515942	6.65778303423069	6.27008154997273	6.40382767411492	6.4598780601614	6.56604453435649
+"ZNF628-DT"	5.95322476907893	5.96105931861552	6.01224665294059	6.0775391367966	5.95031072962514	6.65458024216299	6.24433717545197	6.00662541440719	6.31601944212345	5.99796268773917	5.96709566618079	6.23907146519602	6.3055633333122	6.24005293532332	6.20443221833383	5.98805641985614	6.35540458068684	5.72968315094161	5.97675714318807	5.9742098218651	6.24422787804168
+"ZNF629"	8.09317268649421	8.06355647035179	8.42106103146175	7.96672869233567	8.25870178483562	8.19043068053735	8.22736745891602	7.99093306491305	8.03502906407461	8.15743040053878	7.95025134852846	7.97233601087946	7.99632065060824	8.35743785563186	7.92081569481684	7.95864629619768	7.93706268433824	7.95022533793132	7.59938624438158	8.2728249178754	8.09910352988964
+"ZNF630"	6.2489749384139	5.81790840040601	6.06570510106014	6.2515633477655	6.23414187811562	6.38361328561846	6.51486761933131	6.09660723704956	6.09503696204438	5.85469678124424	5.57070230187853	5.68322473755744	6.31964210075844	6.66791920398348	6.52947207244379	5.87675609583029	5.71764718101721	5.93677191233105	6.07159500358958	6.11040626299772	5.77340382868471
+"ZNF638"	7.0474424125127	6.96084353311147	6.0268456023735	7.0339068009844	7.08915167070448	6.16924580970841	6.56568847843458	7.04080637726289	6.59148032307955	6.94241127264083	7.20826718001715	6.92824868772327	6.65262708574557	6.67018818664881	6.76992912026102	7.41820713190811	6.88459768624075	7.25959451742585	6.88796850677234	6.85033774279691	7.1423130816038
+"ZNF639"	8.08294189872248	7.98282289199085	8.25267284811457	7.88201223242505	8.27273166665549	7.51314432272568	7.25515709547088	7.98085454309129	7.90627202779834	8.23500231507163	8.02932025586923	7.95072673599969	7.89624259659455	7.76592190876058	7.96019212610421	8.25318128062085	7.86596685731904	8.80706789480093	7.84540940386966	7.87870659896401	7.98085454309129
+"ZNF641"	6.86738241360309	6.56295725717625	5.98291711270989	6.67240337926663	6.69906282489369	6.36897873909122	6.7493790098931	6.61027905498601	6.59565235412629	6.96207578597892	6.5530457781096	6.42768081349392	6.50985911259426	6.86275640517219	6.57355558332309	6.43988735778463	6.48199457666455	6.18317109733069	6.5983901662091	7.32101530730456	6.73570462794881
+"ZNF644"	7.87071159696151	7.88198070501269	6.48016887835152	7.54840640225918	7.47995727628111	7.1431146624766	7.41093149385721	7.60631829126407	7.04200417869795	7.47819444342005	8.28951813692693	7.51484661655414	7.42062628047115	7.09294842028544	7.57396235801126	8.18739590108868	7.31961658585	8.23525307391842	7.83492349902007	7.26868396629369	7.25028152018321
+"ZNF646"	7.44096235010809	7.52732691544547	7.76715841364282	7.69130467463366	7.42260833314838	8.38229020374852	8.31308929799434	7.48838247270813	7.65823755249298	7.50064612308945	7.45115678716774	7.55548282190887	7.66266954337312	8.01205346769216	7.40163291440332	7.38304552715792	7.49416430059481	7.30861139552726	7.65144914304251	7.79136896362997	7.50118960637254
+"ZNF649-AS1"	4.68533750655487	4.576623406642	4.55485090780009	4.68533750655487	4.68533750655487	4.77365878405014	4.6942737217902	4.49740724850036	4.8568991739042	4.59825788019221	4.48916495255376	4.5669245752864	4.82686889327136	4.80654390477389	4.85345308293845	4.83326476500359	4.79259489908184	4.4639965426867	4.6908925418694	4.6725022281972	4.56263592450357
+"ZNF652"	8.47155787051059	8.47266733213037	6.91446947348009	8.94273325205816	6.77117157321535	8.47266733213037	9.07224472044273	8.33776434133737	8.16498225624724	8.42832853526155	8.98087510158985	8.00237179055635	8.6293789030068	9.35356098949221	8.74514310908471	8.69307016845096	8.75320984064675	7.66136963982745	8.83049123650116	7.44468274329788	7.25315690335348
+"ZNF653"	6.35478905544761	6.49576276296102	6.89518118968157	6.18902521443021	6.45037072901042	6.48371708948245	6.2848033127948	6.24854988001591	6.32041146861502	6.65204700025156	6.22955360354183	6.26450312484731	6.3932741124783	6.2091070938191	6.47723806395984	6.28561251349575	6.25331791761274	6.53813994836761	5.88236063501092	6.89694231099445	6.4576852868904
+"ZNF654"	6.12631445340635	6.28088010450626	6.80862760755502	6.64564628550413	6.79147073660443	6.14357757946135	6.29919290572211	6.46347794973852	6.51842173865867	6.37111236818691	6.3604384572166	6.1556984644472	6.3604384572166	6.37670422529888	6.99469194302103	6.85335150491072	6.54345838289014	6.68864958299963	6.54796482212377	6.24577249277947	6.22596083531459
+"ZNF655"	5.92529591537272	5.73778126375071	4.83868443954976	5.72947691156746	5.27084091494099	4.16977523830075	5.69430488337894	5.92346094563282	6.05495836591329	6.29696305441123	6.15501406465827	6.02067580268563	5.64218003829021	5.85746969179326	5.7344739616994	5.79484862190047	5.94023518548674	5.6821465167919	5.8159935646645	5.7662511083396	5.8789849685652
+"ZNF662"	6.3700823977569	5.85208459483661	6.34867614853124	5.85817171852884	5.56255896065695	5.64439506438001	5.70491146600838	5.63751278795322	5.76045192253755	5.64557731173408	6.53729747972924	5.69736337615393	5.16475697883106	5.83113710336694	5.36317475100966	6.52714551352115	5.17165116846065	6.04368699781975	5.91272478268178	6.11199132665465	5.53147984400162
+"ZNF663P"	4.26348243448868	4.02380228890869	3.926455698606	3.92907404150802	3.93929470009994	4.3230225822318	4.07049113198108	3.92484708572758	3.94414247720078	3.8490108383229	3.97149434312093	3.84687166916144	4.07614719915684	4.53029777553896	3.81207072010509	3.85972238693712	3.74891243607449	4.08022174867621	3.88212392824018	3.88905021071139	3.77868230714639
+"ZNF664"	6.33826500249025	6.4266392149075	7.05578414982326	6.4500260460401	6.88388055172038	6.80235569451773	5.8104907049891	6.19033074423935	6.5031666097502	6.13430947389879	6.44892941002194	6.51692215593317	6.52474055657893	6.14505941677971	6.0863777735645	6.28161635076134	6.59003132114518	7.04138953666024	6.21479921569538	6.11262355410494	6.62941791441303
+"ZNF665"	8.85867241284392	9.29443502720689	8.39213965567123	8.9525237389636	8.34867233183691	8.34904710957931	9.20296583425467	8.93023841105817	8.98279662246511	8.77933337252744	9.35318979516004	8.71930130374072	8.65014214728272	8.78692833416517	9.15314525783361	9.31786059264225	8.95350427602456	8.93665594727245	9.05209465390959	8.61505259018704	8.73146049920171
+"ZNF667"	5.766206627692	6.8785060697173	7.1668602600672	7.10186122062376	7.16899601180345	5.64372325546358	6.09524058818241	6.40987522806599	6.76359993096466	6.93948081502013	6.73906588796769	6.77267021094113	6.39372072006129	6.07271936584096	6.94365448485902	6.93902452299525	7.10810595088475	7.37550636704778	6.87323069166531	6.76451578161853	6.80506445214936
+"ZNF667-AS1"	9.49352181256275	9.36556733097452	9.81215190464819	9.33954328966789	9.7030077638568	9.13672218627696	9.69987220961353	9.55019467268409	9.61395306691688	9.73226673180122	9.0306840082464	9.30657860268892	9.52091126272933	9.49528933986067	9.89547143986346	9.45612247432631	9.52996429109078	9.86463700335153	9.61486953600801	9.44384425192416	9.53537985244853
+"ZNF668"	6.72951147334912	6.65368883045283	7.00475339508416	6.46967212770748	6.91710886408601	7.26914239963189	6.8608913570584	6.61560968777171	6.81771397896232	6.7001915758991	6.63557524693759	6.70626579166681	6.87655024447582	6.95703483007389	6.66030037173341	6.5153370530954	6.55750068794773	6.93014944733785	6.20840865708161	6.89552969794209	6.66816195015532
+"ZNF669"	5.90617689133971	5.97482817602354	6.19796403651459	6.10868619715209	6.26516147200151	6.32143575753329	6.29786717967633	6.44350138250714	6.6356894116452	6.32963639497368	6.0123717853887	6.15914674037551	6.49370014631643	6.3593364505816	6.13981931895242	6.08361367529484	6.16338232955149	5.94833120071556	5.99963633230519	6.17551642732772	5.69888695297035
+"ZNF670"	6.50809611845412	6.70052456767945	7.0038208925016	6.39735044671004	7.11554085140586	6.70167659139399	6.22884708867024	6.74481960676082	6.7564477432451	6.70052456767945	6.29216411359114	7.18684268520853	6.70052456767945	6.59468418767533	6.3643480768716	6.46382395577739	6.78419451813306	6.64970996750293	6.68458396877338	6.7929336973434	6.70052456767945
+"ZNF671"	7.02441055059545	7.053862720676	7.32465583439855	7.08258975382291	7.15372132785725	7.23376407332042	7.82809973638331	7.00994974689637	7.14350601368152	7.17522600552025	6.79533820128908	6.95455884816501	7.08008729308223	7.29591224469206	7.07951952953119	6.97113390351631	6.70760971842137	7.22541921671523	7.15858142980035	7.13777987875051	7.08008729308223
+"ZNF672"	5.61215992540945	5.15573649897985	4.52654413044241	4.90219684749773	5.04911476459173	4.71874066997829	5.56018907244659	5.93695068593068	4.78323479291843	5.13190470016994	5.28794795861397	5.37589007043301	4.61810705648356	4.90282261657092	4.67988681043884	5.7130031076439	5.02895569817152	5.50873623599527	5.28395473280302	5.33691139859507	5.12757260932594
+"ZNF674"	2.8171379541432	3.00950381077289	2.88965962811441	2.85423925788337	2.77174344026337	2.89396106069108	2.75996780767557	2.88030876615866	2.92137743421627	2.84358745289624	2.87252573574817	2.83400432520017	2.87859240380372	2.93428204622813	2.99442337402108	2.72120338597484	2.85423925788337	2.79827665585958	2.85423925788337	2.85423925788337	2.85423925788337
+"ZNF674-AS1"	4.31210171146448	4.65238838590816	4.68934503007653	4.65238838590816	4.64600595230858	4.48871324824104	4.64304063630855	4.66300617816142	4.68293697305261	4.81265368688508	4.70696895161723	4.76711635163536	4.36642749091462	4.83851391392687	4.86635633143932	4.87319522455311	4.36745492617872	5.26941205595731	4.58167306925696	4.55954597879777	4.71864575922456
+"ZNF675"	3.61401918349903	3.67941287818005	3.45184148713023	3.67452603216452	3.73849369990358	3.37497208950973	3.55332922180624	3.67452603216452	3.7368463037372	3.78925971962872	3.7980565371847	3.82359287781491	3.58845001710876	3.5960405682582	3.67452603216452	3.60831431355439	3.67216776847921	3.70460076948008	3.8996192741907	3.55104182374916	3.63673990761819
+"ZNF677"	6.80671079398768	6.65111564202761	6.85325008840341	6.8578514303138	6.80741596622937	6.83682743594985	6.50397237834338	7.24455846440897	6.11608620679092	6.02757894066725	7.21893734799758	6.53540846452842	5.94859268773292	6.07859502197537	6.44491004603392	7.42680606577061	6.51160012198087	7.39879930383812	6.50486911363902	5.87289126723128	5.96691599830558
+"ZNF678"	6.54492341173708	6.443834933189	7.70197942178834	7.06311640270668	6.64133603730663	7.11390069495225	6.54971710504404	7.65889387360097	6.30016625628384	6.14004556213535	7.19359078007147	6.77851501858395	5.81613195911356	6.24331945071905	6.487211303296	6.54146808189856	5.9141258872352	7.28707613994036	6.90329189356237	6.60495275352204	5.48727890098703
+"ZNF680"	6.78206430457926	7.09174276557435	6.86483482839185	6.78206430457926	6.60675391038295	6.06264816295535	6.84284618097487	7.03209538732166	6.92992674658396	6.61039999200378	6.93688346572228	6.38947011053147	6.87099677787244	6.0088375330385	6.75145030400203	6.7779856348149	6.81909851641056	7.03295486893365	6.81759514840196	6.197662882803	6.59495982139146
+"ZNF681"	3.76810317825546	4.01113261093505	3.91346065165798	3.67526926621221	4.23670866728099	3.66398797979222	3.42110653066116	3.5527150971655	3.50371472452359	3.71944304997418	3.71782280941328	3.82878249669611	3.67929073892986	3.56769946879547	3.71724314579447	3.71031846596918	3.71031846596918	3.62528709339085	3.57449514831304	3.88879784281353	3.60062439756625
+"ZNF682"	5.19284942130964	5.87904263509782	6.09163566613266	5.57777209954395	5.78129156183565	5.5405761127902	5.14843352377436	5.26590355278674	5.1514378624659	5.42045452724444	5.72084558325019	5.49186014986416	5.62735506388359	5.41497782323434	5.549906848535	5.7095318815519	5.39965366258404	6.57600932988474	5.36251880080093	5.48717222472242	5.3299405696209
+"ZNF683"	6.84212814963934	6.90007682517914	6.94948441490507	7.03938386953945	6.72164292590098	7.53910222364249	7.67900655767223	7.00175325957132	7.22900817780127	7.18558831601866	6.88411729888225	7.04341973417167	7.20502452552837	7.31299921991512	6.96571049760603	6.75991327154608	7.03938386953945	6.73703430536634	7.34176579709697	6.85240096556283	7.00712682635443
+"ZNF684"	4.40713989657985	4.68666637178476	4.29243763364033	4.40154825923365	4.85357396651578	4.45503733336714	4.34105083109334	4.7186430332595	4.54751080496412	4.08808594641065	4.95996390520374	4.28620504465334	4.13325450200791	4.29442430522508	4.41258745037028	5.20856431949152	3.97037281814308	5.27652912662578	4.40713989657985	4.43033903034837	4.39893437511516
+"ZNF687"	7.78354990657598	7.83347709530123	8.0393251788752	7.95432662757402	8.12356740467856	8.23692895448911	7.79087130824989	7.63469178685867	7.84878695418025	8.19653117476572	7.75020707338054	7.81839424074602	7.86746193022296	7.85797896052439	7.82900640210215	7.85797896052439	7.81801451476482	8.12363015319724	7.62126144978988	7.74293206957406	7.90698476387814
+"ZNF687-AS1"	5.39180510367487	5.22539800541629	4.84459539664822	5.28274528323711	5.25736012483946	5.29739770542616	5.29319658398892	5.08962160411569	5.02911786542874	5.25736012483946	4.89081522357356	5.18883402723397	5.42325737459838	5.26102456211679	5.12557911361737	5.38908461230765	5.27793853648458	4.95373401589557	5.26265897708434	5.37574847975808	5.06563028188901
+"ZNF688"	7.9245660806828	7.48500245481314	7.9421150026377	7.21212402262937	7.39686098388691	8.03684915057715	7.84940612701496	7.33721109414622	7.4587637224586	7.58623002941918	7.65582909113122	7.01078916334278	7.53517482481842	8.07127243923255	7.4347216392362	7.58623002941918	7.16173707429581	7.92936506745638	7.5074406678375	7.46443121344682	7.23147374358712
+"ZNF689"	7.39519590379233	7.21605549684654	7.10328812787018	6.78598292943359	7.3552943180754	7.49016439695445	7.23618664625759	7.1460841591721	7.15913704069775	7.43391296307064	7.15866958187486	7.09833975466839	7.1398668429501	7.29006661467716	6.88049118779547	7.6472529425618	7.13759786562031	7.64943998199587	7.10252940384983	7.69095891170503	7.19739384780881
+"ZNF691"	6.73900827623966	6.71869926633079	6.78233019695194	6.69810027685121	6.53494251598217	6.58643276152238	6.80740965034286	6.1620964228887	6.47355991763356	6.49280510149776	6.81502199226259	6.25256561523732	6.09862068861038	6.86462215076667	6.27366599052618	7.2977331610532	6.40429035928489	6.76831595187427	6.52851752787735	6.65275781257789	6.52239151445329
+"ZNF692"	8.61240935377388	8.54455025085467	8.6995931916842	8.71656460603079	8.07939041558484	8.98769200923102	8.68678303207414	8.65033864577727	8.46139222638066	8.17328483372595	8.54890372711746	8.14412111864052	8.72244381728804	8.8936935964167	8.92638473612011	8.57584308168683	8.42912221355345	8.80872476587163	8.83256575625921	8.25122815029315	8.39264466904061
+"ZNF696"	7.25609111694896	7.30573231459928	7.55536642738593	7.51149861372735	7.25789444570371	7.86200193401484	8.12972777969003	7.39045023941002	7.60384830214911	7.52347096017393	7.5982956310826	7.65001864656618	7.693501628988	7.79741969445384	7.55817688209315	7.45974638171878	7.32832089900309	7.33003761605612	7.72731383921614	7.49413481246284	7.39277880061003
+"ZNF697"	6.2700510662402	6.82195859858427	7.50074951454163	6.71319632348575	7.27492878760691	6.64393855211518	5.61727536933806	6.62887889486089	7.28636788437153	7.21801908417679	6.49874951159531	7.26752427757787	6.67313722567406	6.58638600019006	7.06569959713348	6.56396094615615	7.3651261113759	6.58316516363162	6.77658169289897	7.57134717193186	7.12567781485045
+"ZNF7"	5.64271983505733	5.78594584652191	5.96339709230508	5.35855490433138	5.85179205796269	5.5628550556854	5.53934001805913	5.36074822029264	5.43373505878633	5.68635421852693	5.79976601284619	5.6355314626734	5.31219784143346	5.73159666377088	5.22388565378876	5.77876362213975	5.30959229165328	6.24273415154142	5.22025635773318	5.72363532871951	5.32267771788248
+"ZNF70"	6.18418981728918	6.35599219775357	5.65606929073813	5.99594935324188	5.13188868395002	4.73648536621845	5.91410865210641	5.43849675469684	5.71526505182296	5.78197881302847	6.53799406374524	5.21543219202855	5.66948127399735	6.19431386557146	6.02391280825875	6.5285477760803	5.49329520328121	5.80642483427733	5.83727541665163	5.76523671356256	5.48921416970857
+"ZNF701"	4.80831905275451	4.75297081711862	4.49174036533586	5.14248453543499	4.34271218937781	4.46135849539188	4.80831905275451	4.91233606537096	5.09122390903668	4.80069230289604	5.14594898869533	4.55242254491854	4.97051863588293	4.95848578593263	5.03106598944475	4.93180410035316	5.03814907538382	4.65947205380447	5.04591401106243	4.50653880061963	4.81903182211443
+"ZNF702P"	4.73554371383234	4.56661413031814	5.48522380832721	4.74575989624927	5.39746466171293	4.00222030087981	3.9730315230171	4.42144907853643	4.95972522168941	5.91051399636373	4.44328340804712	5.22441279332017	4.61729024977619	4.31635978786262	5.2338496186428	4.65215256663743	4.86981126376623	5.32965692203503	4.67015525226103	5.19289588155933	5.2272095405193
+"ZNF703"	8.46179219354737	7.88205045378299	8.04208365749965	7.99976775148061	7.8028912078526	7.85024818439899	8.59520001880631	8.06209697893844	8.06723497052682	7.74836911966381	7.81137574698461	7.66643777661915	8.23050999919215	8.38124710104072	7.89369714320835	7.38612693675488	7.67171287683403	7.53221663364578	7.93844829682353	8.02428554320104	7.75964387649338
+"ZNF704"	6.24624496249475	5.73971809950586	5.15779246493723	5.81559383037049	5.56625409023209	6.04803296605533	5.5522600924298	5.7644668949259	5.87632156504388	6.26943710042075	6.2012921362386	6.02261412237134	5.75659001169557	6.08507678888104	5.6898200721869	5.71747709392364	5.71656556366923	6.06547573580781	5.87401021026246	5.86823698583654	5.36965240864474
+"ZNF706"	8.09473154988472	8.73429840118086	8.97825126796711	8.46759109009397	8.65491333453584	7.91967000601536	7.72694877691379	8.33447611732502	8.4572005838396	8.05913135672842	8.75721929406344	8.39096662960299	8.19674506324604	8.15929688882709	8.38742828398029	8.63632661495051	8.36509934923012	8.55493288528454	8.35961463020584	8.48764532658697	8.30884924479266
+"ZNF708"	6.07096730702609	6.74026484809245	6.62974120478867	6.78578081830683	6.46964488619953	6.3731192334159	6.01607983079731	6.64530357465542	6.23103274313763	6.2100513447543	7.20490357555081	6.24597850648744	6.39079530500952	6.38726539607953	6.58147214565638	7.36937658339711	6.5687923981082	7.39681524292281	6.51309928614083	5.91423351962887	6.41272476421522
+"ZNF709"	4.64500971907857	4.64623427317413	5.28028203805489	5.20324618220162	4.83954773857588	5.7023851105651	5.896606041422	5.23387744444688	5.17095237712042	5.12909610512843	4.91466442698655	5.25889576419741	5.3064689335503	5.59942693110981	5.66062554065944	4.65029288499483	4.96002124792864	4.91576016081249	5.39096571044835	4.64804467839894	5.03191214499523
+"ZNF71"	5.61759113944202	5.49878127710013	5.32314380532444	5.52976108075169	5.43604477956549	5.79880230307823	6.17604637689462	5.73133619633857	5.71628789367137	5.5890993351172	5.46182244412299	5.39576317200021	5.83377237958698	5.86348748558663	5.5879343203923	5.46083189697808	5.38056906221426	5.76911946275787	5.34810385551279	5.4624589812199	5.61759113944202
+"ZNF710"	5.1090696664155	4.98975422623745	5.19620469390342	5.07774144559444	5.13039723575635	5.51396424707857	5.6967806971823	5.11840795317588	5.48299712350693	5.33116983062622	5.08448083013768	5.16264201679493	5.56143388192305	5.46930998373876	5.19620469390342	5.09448848644107	5.40977018578263	5.28123787962902	5.31047382913083	5.19620469390342	4.94845913047513
+"ZNF710-AS1"	9.05069177475913	9.28680041028589	9.26673640200429	8.2632820497609	8.85276966193074	7.84851219529122	8.1235881855314	9.3193356383117	8.16860751361359	8.24637380131947	9.14900460100819	8.75675705347007	7.88549751000654	8.07839339764528	7.32194016542902	8.5868765185125	8.50593032204103	8.65084211929432	8.14055675788306	8.45173021636132	8.28903329328467
+"ZNF711"	5.68284059916141	6.10720940664587	5.44472345571622	5.61989370977229	6.52039891035217	5.25000775424258	5.08429369617702	5.78354646394531	5.78660213252876	6.4801202524399	5.90808170586265	6.29878913106926	5.57079625275037	5.00911795732784	4.92482008172867	5.71019889977218	6.00969166925634	6.19971244335437	5.97330301886518	6.11466257638286	6.26538562145174
+"ZNF713"	4.27766951597219	4.70221314467782	4.40067864360462	4.44074358872743	4.2870254877728	4.00319630192209	4.88254792235164	4.37006007424149	4.86326133453065	4.19962408494781	4.68354158501087	4.15451517212562	5.21001739789498	5.39415588805401	5.20857788876762	4.43997767611285	4.35950228231986	3.73955858222318	4.43997767611285	4.21953386570752	4.60907241645252
+"ZNF717"	6.55305875537432	6.59865231834855	6.82767896546029	6.40560686482508	7.08174503317539	6.95029222952903	7.01608049380812	6.84826870378518	6.64190014589305	6.64190014589305	6.86352752739675	6.59392303202262	6.36345168405365	6.41215380589545	6.62012651498933	6.56685451054917	6.43815873837272	7.30999130856873	6.54367896325785	6.57253431704252	6.39620568564467
+"ZNF718"	4.78057709465034	3.75799920021189	3.34731027163186	3.2371083959586	3.31719824225565	3.61601318247281	3.76567477166836	3.72168339378543	4.31616025148828	3.51755702566294	3.80014356430259	3.92078390204188	3.90791964956786	3.84746626312461	3.65653059714466	3.41075368092617	3.36263735374331	4.14857134558303	3.66643765612887	3.87768881252974	3.77481568785541
+"ZNF721"	6.91570998052687	7.55587704981418	7.71488639451211	7.83202728339315	7.63846674420253	7.33379810380339	7.03448135477759	7.4363984832408	7.99223119431987	7.25495075916212	7.66637818984515	7.33241304193734	7.6704674215229	7.32554453843504	8.09163587175529	7.39032393475074	7.62888764048724	7.62030921463305	7.83035889839201	7.11924480142404	7.15451861768573
+"ZNF727"	6.47818652852785	6.75625604279671	7.59006954102308	7.25054075088298	7.58807941699311	7.23448239588913	6.87898297843158	6.35032703702855	6.66556939395249	6.87688433805547	7.20813000834371	6.68752587366732	6.00905491602722	7.09257012678747	6.46654086522946	6.87688433805547	7.08620619521145	7.01982818527688	7.33072935869542	5.51695869324404	5.50071018114962
+"ZNF731P"	3.89658727691973	3.89830152227436	3.78655759459139	3.79510537931167	3.91747881625649	3.73384434450001	3.74303498027066	3.83140196177574	3.58888972142423	3.63702266984846	3.85073215518939	3.79510537931167	3.73816742275101	4.28684689963668	3.71794808504794	3.55874333702879	3.7218291242054	3.74316514119416	3.82881260997946	3.79510537931167	4.17237827107501
+"ZNF736"	5.75298431733688	5.91671872971697	5.86220575882511	5.81681969754837	6.02595654913309	5.55603914521188	5.4720205848469	5.57021665112648	5.65296112344661	5.26833889299262	5.9365199323191	5.62502312262925	5.62735506388359	5.39726452716151	5.58048595023312	5.59708707923869	6.05973869127496	5.49452975544986	5.49114685232026	5.28784774560518	5.40674753713191
+"ZNF738"	6.65771684286968	7.52039617412154	7.2411858413603	6.95703483007389	7.02518575648076	7.38735071415594	6.40476728063663	7.48955187013518	6.34520719447752	6.45182585964137	7.95794377128276	7.36409899565654	6.87734144972879	6.85643002789062	6.99058740995585	8.16387509989081	7.26267091431181	8.1303239937373	7.0607547945537	6.51309306313266	6.75002518929881
+"ZNF74"	6.18194769935328	6.31677035665234	6.36608021808691	6.32079685768108	6.36506006011356	6.38030297449369	6.4501344114403	6.10784319361496	6.63717624278265	6.56621911527752	6.18719412403451	6.53153883485957	6.62388391630392	6.29381039661457	6.28248034343096	6.53542926398436	6.36351397131103	6.01785181132255	6.36351397131103	6.47312735502813	6.51387814460627
+"ZNF740"	4.51065691663115	4.39270836892315	4.45389213808609	4.61846416585917	4.46586767067208	4.40787234904431	4.49784186230732	4.37919308295487	4.46586767067208	4.7640400721272	4.50727540858038	4.37431802561779	4.67396233962469	4.74614622587657	4.71869414832382	4.34736274362993	4.37383770272588	4.22160688746474	4.37646373988872	4.46586767067208	4.50219178854649
+"ZNF746"	4.29127464071603	4.43563083641232	3.94110055121292	4.19954477312599	4.35179812080757	4.15208892540975	4.20469792694218	4.29938893389525	4.58344710510142	4.29938893389525	4.11284355204142	4.61552486600255	4.2794898466541	4.07669919354683	4.26249367039781	4.42851068233948	4.73636929629239	4.25422086202431	4.30924035361553	4.26149235072296	4.34415179148229
+"ZNF747"	6.48659855365978	6.54289041052768	6.15864381527185	6.26829119639566	6.10289184875752	6.27774353899876	6.31946411537033	5.73995205676172	6.2481717402697	6.63295053979223	6.5793184786918	6.55687355857932	6.01900291483918	6.26601642296342	5.80915498562754	6.70385156763257	6.27774353899876	6.40980529592252	6.06083925517879	6.6834392265754	6.32743444044275
+"ZNF747-DT"	4.78057709465034	4.65238838590816	4.31060653470586	4.52781721501867	4.6787041465111	4.59439306428039	4.65238838590816	4.8400422524837	4.4225009043658	4.4810016201655	5.04225295570806	4.92411712704082	4.60072424291758	4.69176667020542	4.59620710198001	5.2203083715832	4.65238838590816	5.02398894554238	4.78239547271402	4.38753860244972	4.51439328404267
+"ZNF749"	3.71787431936327	3.90780349397613	3.44987383472644	3.86779496476018	3.64732933716854	3.99287965445384	3.41670298400649	3.66051290782543	4.2505846586621	3.51164151232019	3.62589837570552	3.68107173335767	3.75807219125912	3.46565675662269	3.47682429522794	3.41499783764716	3.58425354955044	3.56827653663591	3.72349048429602	3.52593690215175	3.67370628964591
+"ZNF750"	2.79299935947301	2.74216588968985	2.70113909030682	3.08666604379112	2.72893802473329	2.71063212050222	2.72749185848493	2.66835551588298	2.76971598876668	2.84086159533939	2.90906665387988	2.98278318698193	2.83774762028535	2.79299935947301	2.69148287111409	2.66475465787375	2.68777571603256	2.79893746803493	3.06773008253291	2.86933388668857	2.93342829304207
+"ZNF75A"	7.66603122953646	7.49002041165413	7.94998998261113	7.44969045385057	7.57820219568244	6.6705950277003	7.04696468823887	6.75899637579687	7.43231516888086	7.64603447613918	7.44969045385057	7.04330714873843	6.86282442264554	7.2596887710881	7.26813237845345	7.88135608717495	7.19550873343695	7.87534311403096	7.46780128999422	7.71613192480876	7.51470454487331
+"ZNF75D"	4.88548364385296	4.83843570023362	4.95240783641639	4.47588914838107	5.17767409127164	4.54568862785807	4.46955257599186	4.62190197510376	4.17822808529314	4.95240783641639	5.03882684298941	4.74648175813824	4.27994752859606	4.61476878152552	4.51810339301124	5.15729148672014	4.63157714013699	5.07343553387573	4.60719094069411	5.21429061373671	4.87598852855677
+"ZNF76"	8.05632729455606	8.10739342219305	8.09931736036937	8.04160502420919	7.97123809492975	8.50787265757222	8.04405578135736	8.01285814919123	8.04160502420919	7.91953128290243	7.99567792915343	7.97622408108958	8.07506611361455	8.34695082853117	7.76123100778752	8.09066775701411	8.15922957167825	8.19886895092499	8.14538456339767	8.03985035213495	7.76164980389645
+"ZNF763"	5.79516626379334	4.9334524891172	4.67192181431257	4.7414922482502	4.74450527764284	4.68368290459693	5.10618376847161	5.04282371534877	4.6668135614267	4.88901664521298	5.22902887154723	4.90892615104113	4.77354790022542	4.86122698257287	4.70848607373137	4.86796389997994	4.879755604757	4.70702690739584	5.22478945196091	4.51118996625496	4.69596021752268
+"ZNF764"	5.45992126236663	5.40147846261258	5.41786958671004	5.36753604431194	5.49724039796748	5.42680633905977	4.96306583338581	5.28527220846232	5.36444590814368	5.44642671473737	4.99794245271273	5.374296242009	5.352739355985	5.61328940574144	5.23923040359634	5.69050004291591	5.16619312938736	5.74771239100729	5.23686005402784	5.49244550320779	5.30523217790969
+"ZNF765"	5.6816013786374	5.44361368797292	5.01469775469945	5.5721271020882	5.29782545308581	5.57174942719435	5.505896182981	5.15111412120276	5.27605112620787	5.3822430781251	5.2789137631936	4.99411430414078	5.50946225511905	5.62721552939898	6.24950942727762	5.97848856205226	4.99087506829865	6.21329659479243	5.58713209016848	5.35870359699586	5.3822430781251
+"ZNF766"	7.03201865443432	6.74026484809245	6.8550929797111	6.35440337907208	6.80841837844631	6.58218932333131	6.8163532153019	6.66940257194331	6.15617465475424	6.51518503765985	6.80465846550537	6.443834933189	6.1938140466487	6.67552677415386	6.41299615982004	7.0154013293301	6.30631038461364	7.32449862457477	6.75559658268591	6.42994976444232	6.3072265217012
+"ZNF768"	7.32727462757276	7.13912744136714	7.30722692336924	7.31131615065241	6.93726581142016	7.58508455286915	7.67230969682246	7.15017383565396	7.33843998114473	7.27663564697609	7.21683854222673	7.30722692336924	7.61027294993885	7.50217010610125	7.48422797870739	7.02620895967233	7.09225764166888	7.08812697592462	7.32605748709877	7.02036698119986	7.24715396746394
+"ZNF77"	6.40245867620513	6.19687337137852	6.62137880611778	5.92196800321842	6.38943598251946	6.66835522120181	6.07660340151359	6.22436321691284	5.97079054089801	6.09534695205453	6.06243174717851	5.98600194834054	6.35903415092154	6.32382047670246	5.83587139753159	7.03663334067087	6.27385722195784	6.66584009716485	6.02525875717852	6.37762847937247	6.02577022389582
+"ZNF770"	8.33573092900501	8.48084460516693	8.50186180159033	8.80058775208558	8.62425178448083	7.89719830786034	8.1724260006572	8.32333050319296	8.9222640081931	8.41609754065293	8.58483389049837	8.69317635541822	8.76630097363448	8.23135574862126	9.0345456924519	8.47864128136911	8.63868234696953	8.59285255947017	8.75294320395113	8.39683480400424	8.47834044054632
+"ZNF771"	4.79746127806135	4.47824285234916	4.18290423060334	5.11111140676255	4.02268674957944	4.375215574943	5.70956633322647	4.69805171388248	5.68573579574096	4.62018320777589	4.29938893389525	4.45304674015096	5.53117619092114	5.03256595106673	5.72346161918672	4.47110658383894	4.38868458282386	4.48087751001214	4.94507530745666	4.6571618128017	4.44769204319022
+"ZNF775"	7.95411387199089	7.76690093853018	7.73595376073906	7.65995460217954	7.65945392182358	7.71551784587784	8.07404296404309	7.52616336712729	7.48065941637535	7.70444003845329	7.9002710907704	7.66461850882123	7.40326049137496	7.76169818628981	7.55145058689169	8.24956261562268	7.60668364254909	7.86036803951008	7.69501066846791	7.65921837269596	7.62244803785198
+"ZNF776"	7.29868088712118	7.79813106656738	8.1960644260506	7.71004233035375	7.92304938848808	7.44977524229317	7.09314862175954	7.55414850283467	7.79896712403494	7.56908599420096	7.70143373699499	7.36953865243851	7.71489363747472	7.63588639518423	7.94658855232428	7.6763788015294	7.79265064238263	8.11192755132832	7.69977266946682	7.0857071118477	7.5785536428312
+"ZNF777"	6.3786852187289	6.0485898593966	6.08082048369408	5.86164785008883	6.26689429685969	6.42531933891718	6.46386807688934	6.14214476769302	5.94347749257532	6.61210538801811	5.93054027403493	6.3724901627514	5.79019140207447	6.30413688509847	5.93570410800328	6.16082872362391	6.18576971158207	6.53752274889128	5.86164785008883	6.84498302073283	6.31930715230454
+"ZNF778"	7.16185335343875	7.23411258098811	7.29582715545173	7.37752896981376	7.24013671034979	7.18455416613799	7.55296767607837	7.23977793331914	7.36739292018425	6.57187911829247	6.9344333466621	7.06965540321376	7.39208800022594	7.37752896981376	8.0978699964699	7.16260834513575	7.13877032173956	7.7238231788513	7.21518465550295	7.18044833537792	7.16738447655374
+"ZNF778-DT"	5.97218268590254	6.03005259541581	6.12139488510337	5.73152574989377	5.86456943755596	5.91662336754569	5.59382661027969	5.43848108732275	5.37235815627103	5.44308398212969	6.36254990311359	5.62973504005724	5.45958306052976	5.52669660936617	5.36147233008784	6.4202530933566	5.6952743475982	6.28728200923485	5.51963097387009	5.76449376011975	5.3765684515671
+"ZNF782"	4.54751080496412	4.91612764808031	5.17046670330759	4.64287397584726	5.05636234218734	4.72395337594022	4.4596068427495	4.36300167953309	4.69428453864654	4.25920700155735	4.80703408079529	4.3421443966804	4.3602116033973	4.41590124582171	4.42293126719879	4.83061630704183	4.4187666229005	4.71093317199087	4.66124087142173	4.74364040041891	4.53760422407379
+"ZNF783"	6.95894385232284	7.28704104887035	7.644712319819	7.44168794652612	7.16637714610147	7.70741161152407	7.68294730285763	7.25514071372466	7.3622292822774	7.17479360604885	7.16826694388018	7.10481142633318	7.3054652823767	7.33722801574895	7.34656662402456	7.23457687680057	7.29216080986732	7.52646153340932	7.30817797525348	7.37857667963401	7.23130077174589
+"ZNF784"	6.10770753087399	6.14536823553322	6.23411745736756	6.05557616798658	5.92027944028968	5.99153039921122	6.35058034992104	6.07309092224187	5.91147013306208	6.15520699986209	6.12015252022641	5.9743436879444	6.40830884674844	6.19840989508872	5.84289640712361	6.22366835986405	5.97915686089065	6.4272570285208	5.94403741513363	6.26151693057371	6.16813101949703
+"ZNF785"	4.64830029606754	4.78596127436276	5.38494241542329	5.57886789756962	4.891431597517	5.05325563762665	5.5995515759795	5.08434163260989	5.41810574317544	4.38243603462597	5.19258735913729	4.64046851497965	5.75332848000383	5.08434163260989	5.79607022926456	4.65496685936553	5.06481151727646	5.08434163260989	5.6038505544098	4.8747183761409	4.78403383243553
+"ZNF786"	6.31919870244533	6.4091584022667	6.91852363300141	6.57245482301368	6.37514550550378	6.05073808027224	6.37462071936274	5.81952587310028	7.00682441739135	6.61525876235242	6.57245482301368	6.56317112854256	6.71694416838411	6.61739006831133	6.8850917317058	6.1206248652822	6.00670622707959	6.56123204739498	6.53551875431229	6.51862288875935	6.65845962705042
+"ZNF787"	7.02937992083405	6.93488378706526	7.15297093290057	7.11777492459061	6.924359560241	7.69614620468036	7.61604176731407	6.99929643969225	7.05953433740554	7.0488875978292	7.04654118122876	6.98442032760267	7.32432424586781	7.27903493802332	7.08014087550264	6.65085294506511	6.90562545537963	6.94476979102334	7.07930128277448	7.05953433740554	6.84843100647017
+"ZNF789"	6.50762954424741	6.70105481833931	7.03960758608009	6.03900265246484	6.17253745973713	6.09386934107199	5.9464724312864	6.0290726830492	6.07528449533297	5.64791127754929	6.69989326867387	5.8108418169541	5.93453513626568	6.09386934107199	6.20084620588129	6.3230402650557	5.4720295916831	6.06599090162586	5.79432673503018	6.03196130816184	5.83255711355845
+"ZNF79"	5.80337704455406	5.81025500995588	6.023398626504	5.76508355166716	5.76862389794102	5.97652212446285	6.22499274082697	5.85861231441265	5.9753487019137	6.03218834643897	6.02824980977326	5.79800412780503	6.05989068900546	6.33571552327933	6.00721018833706	5.83388257046067	6.06971868718389	5.97652212446285	6.2021828618698	5.97652212446285	6.15221908225978
+"ZNF790-AS1"	6.40247026128713	6.67921235156538	6.04615018292437	6.64395850050908	5.94435691728794	5.34142547325824	5.80045591007153	6.40370113851092	6.38050277121799	6.04304701689048	6.24134108243489	6.33844362238425	6.32804008770739	6.25544187481407	6.43767292561326	6.78470572880061	6.397831187681	5.99564780307789	6.61550071492461	6.34229063368759	6.16580977760228
+"ZNF791"	8.5668682856509	8.33864239667442	8.59636224344845	8.46372552120308	8.53826958079905	8.92672507296175	8.81139680528826	8.74005375861743	8.48119209169193	8.15846670051198	8.46613189001643	8.50139249755783	8.46512023080084	8.75908412325233	8.81298179405507	7.98299839715096	8.3159000918402	8.36861068563341	8.40534221704841	8.17306523680708	8.22237296132018
+"ZNF792"	3.15077803908316	3.08032575535463	3.21298117002204	3.1362321910114	3.1192599673314	3.36173614151471	3.33670144983492	3.18058435080736	2.96265005500563	3.16985197960968	3.2371083959586	3.27815287993654	3.2692326277137	3.15297633062384	3.2704041713235	3.15828382342225	3.27316448463766	3.19252788411931	3.22362781174186	3.07268170476238	3.096619417526
+"ZNF793"	6.92441035444103	6.82501618599655	7.19483140124643	7.01764352395584	6.70037375445116	7.02597887274409	7.3011880525329	6.75134417595646	6.89546907740355	6.74327844626864	6.89706472486217	6.90114763206156	6.99234795227999	7.14469896211949	7.34241779558811	6.51640010598084	6.63876991742321	6.68798422436827	7.17933712614792	7.00393341961915	6.89372773524311
+"ZNF793-AS1"	5.88377991259286	5.8704121990033	5.73020327057915	5.81559383037049	5.63503282382552	6.39405854366102	5.98859104947121	5.82797791030795	5.95076065123557	5.91526222179419	6.02384415627704	5.30710332629335	5.60145649765165	6.09993202590024	5.9271611742609	6.61651655959243	5.41095663945561	6.82895619819987	5.99593931756668	5.69780568285583	5.08954605505974
+"ZNF8"	6.72534893623877	6.57297552679605	6.76899499684027	7.04849616757234	6.88329988183019	6.5198773402535	6.63442551891958	6.7470431624111	7.44856528772572	6.88329988183019	6.73062971161985	6.41429793314761	7.08536018321225	6.92911942099716	7.3560771256417	6.79015666489124	6.81842948068777	6.89870473870799	6.88329988183019	6.93583214208085	6.80484364313586
+"ZNF8-DT"	6.63222054443492	6.5227017599352	6.65272790188559	6.97617381676292	6.51995269553255	6.85303419752575	7.0839875246391	6.39400721887592	6.82692932948124	6.65010047100268	6.48842051009997	6.49862148405232	6.94685478912771	7.08103681222537	7.04068793099206	6.23238253698936	6.56452802286737	6.34452778578982	6.73196390687551	6.58667531742112	6.53036259315506
+"ZNF80"	2.72995370835747	2.71900053503517	2.8261421626969	2.87664651391185	2.80877023580399	3.12443929366205	2.8261421626969	2.79118137978566	2.94906970106365	2.5598713827006	2.69647532909864	2.81599871997763	2.80345214101796	2.88500233761568	2.62656273770913	2.81598026516683	2.85727674349085	2.81754791832223	2.79433810696792	2.84127246154459	2.87409323113436
+"ZNF800"	5.62599942112421	5.37866979160876	5.51046128314612	5.80557415471388	5.35133579608278	5.81497220068644	6.11803209301953	5.35808157010867	5.78318881707026	5.72466762110768	5.64424103319187	5.64424103319187	5.86246462123221	6.0250490523744	5.76892571454732	5.29393079285844	5.6016377114014	5.49423357643368	5.73643058658583	5.59124359385388	5.50360848243242
+"ZNF804A"	5.83368982599016	7.1042692869044	7.59569642361248	6.68914430599987	7.40054811159035	6.39765407755661	5.86054491915736	6.78016861577352	7.08852504798121	6.98038086947979	6.56133949734157	7.20831381984574	7.54672161215817	6.72215921664424	7.40377429597986	6.07729244880931	7.35192156384659	6.6919119467478	6.5868304552881	7.41294263873491	7.15472001807238
+"ZNF804B"	3.30174330773031	3.39810421114475	3.19713321245603	3.48192930591788	3.62160727492543	3.45049827922298	3.27326755469769	3.46622334372216	3.32874829883559	3.39810421114475	3.23032222310917	3.36145382791373	3.53932555628666	3.55752737441808	3.51013589331469	3.28526247061682	3.49156507720282	3.22931397239729	3.19613753228074	3.41198903806468	3.3661809023045
+"ZNF808"	4.13557720799785	4.63364541139189	4.70548325674936	5.32497190160027	5.90841486076024	5.02516737377352	5.12593393776196	4.90650814199533	4.93894380432189	5.47238404453623	5.21509339745304	6.02696446203118	5.41070968806962	5.15722835944881	5.28437882898049	4.82464193963717	5.16887388397815	5.57197877568117	5.30097962000209	4.41644281758322	5.32413151720842
+"ZNF81"	7.83873606337092	7.47607154246304	7.35498396184166	7.42631605673944	7.29835844303125	7.37151057078459	7.61041561033363	6.97120432152232	7.48084952917339	6.94370504292134	7.41340640944372	6.75530633785764	7.34428848054335	7.61582542839322	7.64095534858852	7.61009295805888	7.02503956275652	7.6156552364298	7.3033611555097	7.13961393336285	7.17664972656744
+"ZNF814"	4.09760437444576	4.21577366846839	3.75890325658221	3.61818072946216	3.86320406824146	3.18292597097354	3.3759465237084	3.98113464244553	4.17637445822894	4.3557809512578	4.43265946191686	4.2536971195562	3.71995230896611	3.71260889745272	4.16809291533689	4.13544060710022	3.71595509495827	3.92588668174412	4.20804558863528	3.80736607006892	4.17747785875479
+"ZNF816"	5.31111165350295	5.31560787295187	4.98603582261382	5.31560787295187	5.21520646774756	4.90610531113773	5.44924709338472	5.28099185609494	5.31560787295187	5.399432967725	5.46284417393463	5.5895056857701	5.26227194609366	5.31560787295187	5.47096573897989	5.20276613242395	5.64801717675637	5.31560787295187	5.53785743851475	5.47542763050103	5.27588607014416
+"ZNF818P"	4.10409233592687	3.93035294145155	4.32989340981698	3.82445774055229	4.37463596318205	3.96521992374184	3.88509171534632	3.98076463997668	3.66797160062688	3.78750724827189	4.13576291961892	3.85094104770651	3.41760514077831	3.48401303533419	3.78568215116746	4.45098570805465	3.77622548907015	5.12244311810584	3.66213525358661	3.63636983419508	3.84746626312461
+"ZNF821"	7.13406837634603	7.19547162400383	7.7982201948617	7.08788179731815	7.48705825075578	7.64596935244505	6.92973454497459	7.37755563315025	7.3204748140215	7.48289019295007	7.09887936420082	7.42404018822693	7.26291682230606	7.31913808065368	7.41698764557416	7.01862990489342	7.33720795890254	7.36250128523742	7.2738097451633	7.29177481700173	7.35337331254156
+"ZNF823"	4.8613307478423	4.74528829337656	4.84774949602632	4.48101624424806	4.91708165502444	4.85935163385901	4.93787481300281	4.79054572515684	4.82215667647193	4.65915049192384	4.79594339605796	4.39242955208321	4.61527377685486	4.74373792833895	5.17826550782975	4.86986392122983	4.70348941495534	5.02312946645056	4.36059454729751	4.88693810599797	4.537699768961
+"ZNF827"	8.57775179871506	8.6296611948098	9.23746868809287	8.76472672748518	8.85166190286741	9.21439075558679	8.49968392260512	8.78328641179582	8.35044008970734	7.75784261106223	8.62562989801466	8.47056945217115	8.83641313653171	9.03992287058245	8.78605619048276	7.98861717123381	8.28604548712904	8.3230286841227	8.4039502016389	7.93995852058637	8.08234688551431
+"ZNF829"	5.37211774779437	5.30278065070421	5.56821489591929	5.27345831629882	5.72586291201762	5.2214581140889	5.34051133083154	5.03134723565527	5.61165277446589	5.34243217954895	5.05320778263671	5.22025635773318	5.02750921491726	5.15040815621247	5.42336613586376	5.30122676834556	5.09517791165894	5.54058466829698	5.40370401419759	5.47574218846857	5.06092662989453
+"ZNF83"	7.97907683609752	7.99440329464005	8.36020928773864	7.94895910867927	7.81523708968334	7.57459476871063	7.70089334640591	8.13682863496983	7.97513239735554	7.46585008719107	8.61893898708365	7.75519818262622	8.17500524334755	7.8516001473193	8.00115140796884	8.6256548082757	8.41828000603213	8.32107020164325	8.20906998815154	7.33604074504879	7.39082172143088
+"ZNF830"	8.16991281813828	8.17549395432653	8.25156927547739	8.01623853628938	8.30563733861962	7.82024744837818	7.72427560454288	8.10976677721145	8.00966294067573	8.16218162128358	8.34823884649167	8.16218162128358	7.80829964892718	8.04566620662929	8.00885176156133	8.24899291805398	7.98150836141027	8.80135924068674	8.29491114914314	8.19164474095448	8.24469804181151
+"ZNF831"	3.54999795497291	3.81868981845055	3.7365425466397	3.63380446419854	3.76096854038074	4.11883590004579	3.65264249704536	3.70676025664663	3.70589720638599	3.50274493735723	3.47776593650729	3.67653770724151	3.88509171534632	3.67653770724151	3.74288300742108	3.51046367764112	3.67653770724151	3.39586972803204	3.67419678995756	3.7984911909142	3.57192278313072
+"ZNF835"	4.89170937352539	5.31258003609918	5.53205069938457	5.38548094836053	5.31053615045652	5.04036322061992	5.26970011768059	5.00464271214721	5.30097962000209	5.30024512347548	5.34259868848628	4.84072638026998	5.57133101437378	5.39242520953381	5.45337424824644	5.61339225579971	5.13877770901381	5.46104457728087	5.08804415651767	5.31222497519327	5.0675562890689
+"ZNF836"	6.63528650033759	6.91050642157918	6.65469197573296	6.70213724166809	7.00029734670744	7.20233202009083	6.81909966516121	7.00369109624524	6.67042690486247	6.84496929924392	6.65240089369819	7.02819487803459	6.84496929924392	6.53022918129532	6.72359648249459	7.16853794435043	7.12049141769288	7.0042563511816	6.8648739779127	6.74134306488643	6.47495076975842
+"ZNF837"	5.43951016481236	5.27818274441708	5.35937988821561	5.46003414041232	5.38334739184232	5.42916570816134	5.14895855813232	5.15806482818487	5.38675686983892	5.35983505041463	5.35937988821561	5.06126634989157	5.39186746074573	5.30037482270739	5.19565143263738	5.5373612178873	5.16835612510298	5.36373178304704	5.21047016351053	5.36802873460911	5.4117260269879
+"ZNF839"	6.14961269800598	6.25700365002892	6.41306800308593	6.05911335515184	6.43869442513107	5.94458594300182	5.87275755679131	5.94916456173601	5.69251131611029	6.01486167359303	6.08949814045402	6.05911335515184	5.95826230540995	5.98725352578202	6.05911335515184	6.36259878552837	6.12941857913595	6.00039965949532	5.8300353321858	6.12176589323236	5.90794666878447
+"ZNF84"	6.47101466681479	6.76580521565991	6.15637292609012	6.32588834108584	6.2433417748161	5.88869917051021	6.36731190747456	6.44430592638918	6.01636884002565	6.28274635274478	6.88942953057157	6.42716678958973	6.20528986428947	6.48686226275938	6.3396989022499	6.81395238441888	6.19086941334647	6.85856338448359	6.30648422853349	6.48193038434919	6.3399363004788
+"ZNF84-DT"	5.11488436263009	5.17970088950216	4.94796878843379	5.14510208336765	5.12532391035915	5.26689137782282	5.12154810329406	5.30145277750251	5.19374495623277	5.14510208336765	4.87269524839963	5.04323821874722	5.22288922447039	5.20396225828643	5.36503903181313	5.28535188239756	5.23897278654052	4.94224146865843	5.16311196070438	4.94578519409791	5.21022799251888
+"ZNF843"	7.32355285446608	7.86618164288659	7.52116350480822	7.83983600443413	7.75476932244074	7.5158274408083	7.65403607775613	7.49385793018178	7.75476932244074	7.79830355521418	7.65209461042953	7.90663231109084	7.87165980132506	7.75476932244074	7.74855338068211	7.78404750462351	7.99088152599298	7.31886134480417	7.80247895888647	7.74822932367494	7.89687079735176
+"ZNF844"	7.98063619600023	7.90067999564474	7.78010717647468	7.84131303294632	7.51407614296896	7.26210698417016	8.11228520506839	8.33137091732818	7.61507780102069	7.46869105308282	7.90060130394707	7.50514625717909	7.49064633257048	7.59986837437737	7.60496091132684	8.122761999234	7.43567136335885	7.78294566875966	7.87816310008383	7.69038446364622	6.93375899652384
+"ZNF850"	3.29280585958516	3.74993209463151	3.38387787224955	3.45156991236482	3.51287898531284	3.43270790496205	3.39063502276523	3.18390924215959	3.42349994099621	3.31573443607664	3.40998839584153	3.20409043109844	3.37529893542131	3.38613004288932	3.5940220400786	3.30028687787997	3.24524846055639	3.88278945401797	3.34559673585344	3.22561152962813	3.33963835179242
+"ZNF852"	5.27078475882974	4.71749169010093	5.18640727251187	5.24951237599527	4.69895205803882	5.04277592187721	5.06486272202106	4.77588003346878	5.06714073002391	3.94167056681099	4.46608757014402	4.13774286207477	5.694205771291	5.18539574847746	5.73846644141823	4.29508075841494	4.78121804705266	4.49412177947411	4.92408192260475	4.80921852090976	4.66784483447504
+"ZNF853"	8.68709492471614	7.9585872593782	8.02074915482237	8.31868799865403	8.19998316359746	8.29378844031741	8.97828389770616	8.27748190411803	8.37403996786013	8.29335504941754	8.38238064670297	8.10725771328112	8.52376934586736	8.51430434177552	8.22560387310284	8.1041576407837	8.04662413764409	8.26873440268445	8.03593880323146	8.33410452911532	8.07281147197184
+"ZNF862"	8.56653122548445	8.7389171359998	8.79650451635017	8.57746368559188	8.71603499129481	8.53066243015485	8.59302894358299	8.3736424711871	8.51191996333673	8.34836100416995	8.52448521217901	8.27176304549102	8.23229534660696	8.6714363401259	8.38325341909871	8.97247846250774	8.45402910970759	8.98462652838035	8.43107538357703	8.50432657015602	8.54048335454881
+"ZNF865"	6.36901848772745	6.27321211385788	7.12815275188687	6.35017785223963	7.13554285138379	7.34614704868599	6.40787855118129	6.29535866330895	6.21417074981996	6.19184725442968	6.11650844127732	6.15908766314883	6.56448049242078	6.37102559388786	6.24779290228613	6.15908766314883	6.22436321691284	6.99519786104071	6.15580358386247	6.43970156115332	6.31417113910456
+"ZNF875"	6.84616401427156	6.63291107424417	7.1495690386287	6.38860504808163	6.66976519175815	6.63291107424417	6.41543726300458	6.54409144659503	6.38234129485051	6.66959190813731	6.69058235251189	6.6952589894965	6.44098010745335	6.27251315792414	6.14117216891384	6.87260982612834	6.82144644964149	6.97067436681594	6.63291107424417	6.71780403421326	6.52697646777801
+"ZNF879"	6.96876342730068	6.65579682736382	6.51090820999459	6.32974927073708	6.59361593165903	5.87290683653639	6.61912343101031	6.28127879084441	6.50932125751059	6.24130392578713	6.66280924001823	5.73557902493832	5.93453513626568	6.75490785786486	6.63027826314668	6.89252947893675	5.92375935040553	7.12146582771058	6.28296945602849	6.45591166547267	6.28770764000799
+"ZNF880"	6.50154949434093	5.06273356514216	5.00954092140866	5.59080096924935	4.96681734883507	5.20181917495705	3.65593234644547	5.90056240952505	5.99062457214135	5.31405743210483	7.05989232746388	5.28382896280992	4.67182517268179	4.99625572458187	5.09997202863345	6.19112395870731	5.54143326713618	4.13160721892829	6.34696380550593	3.41256688210491	4.50784214804864
+"ZNF891"	6.44462388154056	6.5635330372827	6.42429787650021	6.86514611500985	6.28372751895092	6.43586504901886	6.5635330372827	6.56777760043105	6.71841549043886	5.71945413256179	6.71927468223619	6.28334066692413	6.84371628549841	6.65917989839971	7.33896775840775	6.68292677533247	6.54769326459794	6.86645703363406	6.85983259442481	6.15014271534512	6.15961818022684
+"ZNF90"	3.5940220400786	3.57884722656339	3.4684298762564	3.52409014763107	3.74651746671774	3.62329188078948	3.64518111148085	3.67255624437889	3.62329188078948	3.35173792119535	3.3441691426027	3.94009069083012	3.53996444250097	3.63640880675419	3.5940220400786	3.56449273171848	3.47823082941441	3.58634646862214	3.63465343731395	3.59569824765683	3.57754653434031
+"ZNF91"	10.260301260547	10.7318003380869	10.7044441921858	10.9309319894619	10.8652681377203	10.1147345137324	10.709949017682	11.0257841027719	11.4348332718965	10.7398340182446	10.7133917705006	10.9771066692881	11.1925026685054	10.9223990033966	11.3484766772563	10.1058541739214	10.9376076578955	9.80771952932947	10.9998893823928	10.654556264896	10.9329064306783
+"ZNF92"	5.79083135588712	5.45289988081679	6.23307609946108	6.30997109772858	6.410583784428	5.73301431660468	5.66924473452819	6.1678600893639	6.19324822183856	6.11423248663006	6.30701299045645	6.21171835803628	6.12352516130183	6.04326862485675	6.33749306667155	6.03989386681136	6.23349173425159	6.80660648828448	6.14061359027185	5.83133239974511	6.05499011353193
+"ZNF93"	6.11951125030169	6.44442267727834	6.23998654834804	6.42043756096201	6.17673493343869	6.59187918282876	6.46964488619953	6.42848138151892	6.32745847846245	6.24450648041989	5.99179648531008	6.25256561523732	6.3643480768716	6.78846847190758	6.53804428069777	6.10267544598988	6.30363956252628	6.12130332885348	6.27225131441596	6.18052695927032	6.18186173216622
+"ZNF99"	2.80727337020919	2.90342979677531	2.77283807438556	2.90196766299309	2.87713650430939	2.99953762234328	2.98009354724808	2.62096370991568	2.90342979677531	2.79126216397476	2.84245741748582	2.98957377957112	2.79577364892132	2.9071011800788	3.00739313730645	3.0314278430691	2.79884206283601	2.90704594443537	2.80328799623896	2.93183478919278	2.78687040491104
+"ZNFX1"	8.88282589715256	8.52315740271572	8.50153688658499	8.10449806363049	8.09281606321942	8.31128457467243	8.23462481786706	8.28538614980825	8.22558694219602	8.23404894497454	8.58011125907971	8.26492140483558	8.14621055474852	8.42053280439837	8.11449078832333	8.44059798949762	8.11944608629025	8.50307038244046	8.01803229949165	7.93208856573193	8.42265248114902
+"ZNHIT1"	9.04514002064391	8.48709896623121	8.75123815872788	8.45450919589121	8.7819768512019	8.57888422854707	8.46388870056868	8.5727279380099	8.74035056569305	8.61348055633873	8.81540855482882	8.39048017919687	8.27770329084523	8.22398269063836	8.62421031926552	8.98294245221198	8.24724488338666	9.16740625244767	8.5446073829372	8.75040266011425	8.5137362992348
+"ZNHIT2"	4.65625111516841	3.94069922253914	4.13420127818283	3.89378835023495	4.30291884282523	4.30291884282523	4.27403381011295	3.89081085568825	4.04476362055446	4.68248293807005	4.43811131195759	4.30291884282523	4.00988566785262	3.86857483782134	4.30291884282523	4.36541180728729	4.47789888954357	4.73157736232743	4.39812782960831	4.79024571996515	4.60948470693591
+"ZNHIT6"	8.41365380593965	8.12857829062153	7.88283423818724	7.97408897213167	8.13007224851092	7.93005794253507	7.39153669464867	8.09592625134727	8.21275425564474	7.85988915508853	8.33626817786639	7.71003960683997	7.79992536839724	7.816095769025	8.18054228246806	8.41024256729254	7.70902345775564	8.41507505481696	8.07205829099654	7.97419494946934	7.96055750291013
+"ZNNT1"	8.56834735213897	8.41347268051061	8.95756157136543	8.87510231265255	8.65248304538139	8.96222515858556	8.52833119349266	9.00595966734249	9.1423210364661	8.39519036397445	8.62335250523708	8.95213501523112	8.77208954782066	8.59068194090121	9.3193435149474	8.69032722385101	9.06389579538805	9.07606841382817	9.23712973311813	8.60104019848427	8.56274311466661
+"ZNRD2"	7.21614490252236	7.24684611291433	7.21614490252236	6.69891703697374	7.38745463511463	7.10869445235492	6.98554503153197	6.95623130131326	7.07345975627208	7.6097072351743	7.26261283073609	7.59078869719456	6.92815556979607	6.73646278961892	6.59606343739473	7.49803463098074	7.21614490252236	7.57714765357938	6.96687182401056	7.50444199067423	7.50264523113529
+"ZNRD2-DT"	5.62862589894122	5.88642438136337	5.23045797676844	5.98737603366594	5.53572213810118	5.4559126057835	6.1700248194451	5.91408927392304	6.03847180341567	5.75275163936344	6.24227846036125	5.5219899405913	6.07650775961619	6.12059484398192	6.33631901472639	5.92975946363131	5.87695961805846	5.38786196697319	6.01773850600149	5.70361140442823	5.56429988141458
+"ZNRF1"	5.97933448170504	5.75853535906558	6.71236548598638	6.35874168206507	6.50161447212494	6.23603686520025	5.80704814905133	6.02934596980252	6.33711738074166	6.02423894956208	5.78724815932622	5.82648687307589	6.29803015632226	6.03729226992522	6.45032900098612	5.35716741681378	6.0580826474935	6.27216847581598	5.35516675341366	6.71694416838411	5.88874302998661
+"ZNRF2"	4.42654619062478	4.45525431044457	4.02050206615146	4.18605578286424	4.28067399907937	4.35194844366445	4.04420661599372	4.57512919121534	4.39887278211671	4.24939063348021	4.34057268666813	3.89254522509505	4.4432255149226	4.42424932352346	4.22787057128918	4.23964750776216	4.18756355344396	4.64454694304632	4.43783539297741	4.20296835018031	4.40948381758653
+"ZNRF3"	9.91453459675592	9.52136966940053	9.53051814333078	9.53720830216371	9.20516817819883	7.58330846563363	9.80263976466004	9.35515478471733	9.47622818169404	8.94036026950131	9.45930868918506	8.84132149245873	8.88637474613276	9.19277755894393	9.26396595009049	8.1643938418061	9.22854455690102	8.85907114891604	9.1293427568264	9.07144207111593	8.31229279850717
+"ZNRF4"	5.84578440319517	6.0853031264347	5.85828128233141	6.14138833316179	5.84278819171233	6.04462208927418	6.13487549836444	6.01746383170063	6.31113478059597	6.04358770183941	5.88195104177631	6.19599932035722	6.27484077119876	6.15211014091415	5.97068456764441	5.97119523951514	6.15328454316268	5.69263763339716	6.19798294805839	5.98962161124316	6.07853375714496
+"ZP1"	5.76653250612458	5.66378149191279	5.7687091630691	5.45440325153603	5.59778982497371	5.89573812330815	5.84528067191304	5.84315814353877	5.67259687998324	5.73907821748319	5.77316850790063	5.64154473091211	5.9196314043139	5.83355704191516	5.49214012127192	5.42113560875557	5.87853743703307	5.14873718901971	5.55003777002039	5.17010992491944	5.66696332743859
+"ZP4"	5.67895951700339	5.29115639572597	5.61617672656881	5.77302365097094	5.82067091363211	5.73820605158574	5.70491146600838	5.6799895069472	5.7374030507474	5.81858272524583	5.46866844089541	5.69574191021126	5.78033227972152	5.76319040172433	5.7662511083396	5.86899511521316	5.8668976310647	5.34810385551279	5.97569804357778	5.67592247601583	5.76603282214755
+"ZPBP"	3.38783756155726	3.8635734218594	3.93651111371498	3.9187459593908	4.04615882503836	3.69310003522749	3.59035006425724	3.90394599306102	3.93104950266848	3.85886858530757	4.00294424462906	3.7702453808945	4.06414028533108	4.03954742880988	4.00367657691754	3.97733635278825	4.06564829179788	3.8724521394907	4.02540950956049	3.93104950266848	3.87198024357714
+"ZPBP2"	3.53563885221081	3.60469711656805	3.52731316136516	3.57216061224053	3.85499115415639	3.70363451634879	3.50083352353797	3.51908923575231	3.42079618555259	3.50369812280338	3.46924752939726	3.60167233447353	3.77937673032642	3.67153611456963	3.78130731907669	3.64680620751544	3.66128602841312	3.49297682445315	3.58657035912302	3.51626286684313	3.59222776405588
+"ZPLD1"	3.16316215301813	3.20307478615289	3.16316215301813	3.281475246433	3.08387096078253	3.33080875730063	3.75714810291262	3.39348806245643	3.20002561506825	3.30337036622474	3.01978501771485	3.14804811448758	3.57107401080047	3.32955855295842	3.27228904928836	3.26267207146602	3.37290655505632	2.94376325468966	3.39466415280945	3.27576458401212	3.33997271463795
+"ZPLD2P"	3.62829235843637	4.13939264366319	4.16644418233641	4.11713876285869	3.99534776751846	4.35621597609754	4.29867817690038	3.93273786362133	4.09725219510477	4.01244354437601	4.0039722270781	4.29217046298709	4.16089863856463	4.11539010278404	4.16646269372902	3.95428759277152	4.33079965072875	3.72085546483772	4.22314262341447	4.04978010847105	4.09725219510477
+"ZPR1"	5.47378954393226	6.06011304903575	6.63576505257418	6.10445699413671	6.91552570639217	6.28372259407117	5.86748137760858	5.89395546395245	6.49423943161767	6.4863751021642	5.72833285841272	6.27047256506841	6.16945723530748	5.752373820704	6.34939148940444	5.90924732637177	6.42254434157978	6.17659422266964	5.9840036361088	6.6099728244033	6.62316514629045
+"ZPR1P1"	4.73131942229902	4.73692957109413	4.48339707005431	4.73552189353434	4.50488575520447	4.94210164709488	4.79476058415999	4.77795027950398	4.73780036800828	4.66015157925046	4.82426628638377	4.64394924280353	4.67182517268179	4.99169548668545	4.63515156798728	4.71694387369603	4.73187958805259	4.62049535297662	4.89731790794882	4.7694951309474	4.96953922927151
+"ZRANB1"	7.88332780458616	7.60983298794852	7.6432281673178	7.28939399441333	7.96439795376949	7.40296268250291	7.77541400234393	7.84223911570746	7.92277736443116	7.80583517942105	7.5307433071699	7.80562831292215	7.36583461924753	7.27645895861231	7.76455643033544	7.85656200460958	7.97762838725747	8.25419440954273	7.86224795894549	7.71932554381544	7.78079037948704
+"ZRANB2"	9.83643108660121	10.5708741550303	10.7335451784153	10.3406847830386	10.5000777127301	9.71155403974106	9.69524234252347	10.3406847830386	10.2126509193781	10.0860266110452	10.5160037062168	10.3584359174328	10.2960027576302	9.88650430933997	10.3056923120173	10.490047048972	10.5055917989554	10.5182581297559	10.5233046109014	10.2717523126859	10.2144559626006
+"ZRANB3"	6.16268631780103	6.61760108656451	7.05405765231606	6.42166329187758	7.11554085140586	6.08361367529484	6.18530306706293	6.63151264660344	6.63863500131252	6.92011022944891	6.62452291167838	7.02910754989423	6.13705666123824	6.36448065910548	6.34465301577379	6.61760108656451	6.59588567404885	6.71563745604977	6.24942466378707	7.06657965066	6.61760108656451
+"ZRSR2"	6.37512050893529	6.75534226142098	6.86818313328031	7.10835503096601	7.23236653041841	5.98516752354078	6.23423848822369	6.89296445017252	7.44640089388469	7.06583665901962	7.70056809111537	6.50686520325427	7.70740759204003	6.34336249005066	7.00649489947399	7.32523396948621	7.07280429229135	7.37541451215205	6.94984211254309	6.95877178498043	7.66063381660838
+"ZSCAN1"	4.91433594740971	5.27574679306472	5.06757043262505	4.90326004958509	5.2009770867535	4.98615519251617	4.89121006476617	4.78020349997271	5.21177667170732	5.23583262578216	4.83851391392687	5.10634817029835	4.76352138421928	4.79853125211781	4.95771342590708	4.99700910171926	5.38276153604137	4.5922813666353	5.0524684782971	4.99700910171926	5.10201419232715
+"ZSCAN10"	4.83851391392687	5.27603417604733	5.01095096950374	5.49241419612995	5.09582921390588	4.78939968518745	5.59771962977635	5.07017692630513	5.42440013509152	5.1858787994236	5.06147111013498	5.1716869876303	5.33972529391468	5.12172726510661	5.25750981295031	5.5416937103325	5.1716869876303	5.04502120938692	5.15862372041883	5.1716869876303	5.49856622765144
+"ZSCAN12"	4.79618095538584	4.21268261425672	3.95432318063338	4.14819523680581	4.2820011734246	4.27398944928166	4.44701981966456	4.36005395592152	4.16089863856463	4.33210080690462	4.28387887322324	4.6104588215606	4.6007895269939	4.3641734990847	4.28387887322324	4.18014610992919	4.34921153052511	4.03125650988395	4.22906487808058	4.28387887322324	4.3960863440361
+"ZSCAN16"	5.93867789272129	5.66640703775266	5.73982052706963	5.2941000033328	5.50672630583983	5.94322182386653	5.4134356974464	5.02832280161488	5.3247032379441	5.28134260127715	5.84471631242383	5.28283304916168	5.55799310865132	5.7662511083396	5.68063889021439	6.20991845428015	5.19763731092239	5.94893207691487	5.52885288309989	5.16815753900977	5.38429230399584
+"ZSCAN16-AS1"	6.82934729556851	6.58421097799022	6.8774687496268	6.85752810445317	6.68082844948193	7.13326592540597	7.20447689192538	6.95131587949963	6.83633119969088	6.90237709266814	6.8774687496268	6.82167696552387	7.03802482250444	6.97207642305425	7.03357514844636	6.757839010758	6.73988242371817	6.97190758880132	7.0316602548908	6.62623040211359	6.78222748045614
+"ZSCAN18"	7.19706343394938	7.73267035121316	8.12058894732083	7.97355965712581	7.69922973743966	8.03872347256353	7.97747943017425	7.86260569193317	8.10680936592062	7.54525342521115	7.94629364340384	7.59878775794839	7.56020726936906	7.72024909302673	7.82633475660099	7.43699899380626	7.72587580303454	8.26025722392729	7.47819553389926	7.33635386979854	7.47539701165205
+"ZSCAN20"	4.55790410387609	4.39140720533612	4.4338526546948	4.4338526546948	4.53614065873692	4.20363235163688	4.64063352516297	4.1112004030439	4.5997000234935	4.15854125191039	4.4338526546948	4.24076197082457	4.63498044862886	4.39537594193396	4.40018525349563	4.91385344041101	4.46224056127262	4.23373475472895	4.06469047935033	4.31709649804014	4.47411471300238
+"ZSCAN21"	8.23613075402061	7.79107139547538	8.00209773279461	7.71969448785418	7.85368984350479	7.99044898081742	7.85653771001699	7.59143452378558	7.72485026596915	7.74072432862361	7.93852561025282	7.30447987160587	7.78686067624053	7.83894229865174	7.95769490345688	8.19606786917975	7.3731438908021	8.288941353124	7.81936791911154	7.77455440054736	7.61074774298437
+"ZSCAN22"	6.03533505092541	5.95921999923628	5.66348891267096	6.04827187203297	5.87897314115384	5.86454874366612	5.82865935710099	5.79484862190047	5.87054730630544	5.86454874366612	5.85680126727751	5.70367129081405	5.89436225882837	6.04643856055135	5.90643793219853	6.15677728840052	5.86454874366612	5.77735454325331	5.61326149251834	5.9318156156451	5.95600517255054
+"ZSCAN23"	3.19974090533624	3.19974090533624	3.12172285987618	3.22703832167011	3.1941991890705	3.25183997026736	3.19663290041477	3.15983081079623	3.09109773471898	3.13645256648828	3.0378490877111	3.14224701797066	3.33637013449546	3.38613004288932	3.03820622746836	3.3115629167183	3.26007905556328	3.18390763232625	3.20133064268106	3.14638563117929	3.23135504061593
+"ZSCAN25"	6.25036088597187	6.43543441674554	6.37697134637616	6.31595563340225	6.61663812475966	6.45452488427536	6.47686016961585	5.55814831111314	5.94951654281904	6.30665899550401	6.30665899550401	5.88353172833564	6.48301472804375	6.67529817484221	6.07854110773496	6.70645717451396	6.1275400039043	6.38379359259736	6.0518882389905	6.40716112292304	6.20061198167252
+"ZSCAN26"	7.94028157122939	7.47532014796029	7.74936981588435	6.99125445958067	7.37829776026063	6.5728380978364	7.28585416385784	7.30896014194469	6.99951970834374	6.9585115896525	7.34902651292362	7.04673250131034	6.62029192811327	7.22510854162886	7.08173251529609	7.67295191838659	7.05128066933085	7.5306517237308	7.20864291211239	7.33715183315706	6.94134499171682
+"ZSCAN29"	7.47993989216171	6.93585222631908	7.31963234440672	7.23196150197194	7.32172619532663	7.7109878636492	7.43854671286412	6.88980538316921	7.20974396125968	6.84559613992199	7.17807361292493	6.83322715152562	7.43745621972055	7.09417604281858	7.46483417388472	7.15608473544169	6.73446232377701	7.66131271141655	7.33418721687831	6.83738020957398	6.99626164810324
+"ZSCAN30"	7.60020645743436	7.34420665932197	7.53569702206282	7.32603286084971	7.22894093621716	6.82632357330451	6.95982111318235	6.88847379109086	7.02195163309337	7.16748498745894	8.14647901379356	6.96926650724996	7.22983490622435	7.16649550644104	7.16649550644104	7.60962361688746	6.85750853503557	7.48071445618633	7.13277680059956	7.05731791859772	7.16649550644104
+"ZSCAN31"	6.84795840532524	7.07056090063424	6.96481852372344	7.78371169239724	7.16712106679049	7.06773453020534	8.04806603649241	7.72862369783735	7.16970454179524	7.19880781508015	6.81911435682075	7.22651803068799	6.84415699343775	6.6651446833073	7.13984998776045	7.17103857784715	7.22100853698111	7.48675376591224	7.42767156759608	7.58149175956767	6.90409894047966
+"ZSCAN32"	7.84624965328426	7.9095012403808	7.74658575369855	7.64424375706763	7.66647078846166	7.84708682768634	7.7025318773551	7.22337126532421	7.3891344557474	7.53207948646307	7.67213180399088	7.01871036377622	7.60367379228598	7.79543634049687	7.50116162753849	8.0867631734106	7.5654552801308	8.0965387905835	7.47160699466687	7.52923686192488	7.52213922238154
+"ZSCAN4"	3.40286077059339	3.6225729769588	3.64833451624991	3.37104792303622	3.49036378059529	3.38151115012947	3.29183672853307	3.41265128301697	3.58657035912302	3.20722492333442	3.39520768560607	3.23881832752114	3.25592396220379	3.79583555920335	3.18802909437936	3.26576694505298	3.39194766439312	3.38741326204476	3.40286077059339	3.60045074128765	3.38574949696209
+"ZSCAN5A"	6.08361367529484	5.93263071155058	6.263220615792	6.15814215312124	6.53851495905203	6.45628497323718	6.14894641196747	5.71011156651643	5.97260154953197	6.28139612863948	6.04344248587776	6.00389680762254	6.3514248862522	6.47963523891597	5.91471360336419	5.81206615902143	5.92478745315458	6.12243637582882	5.75305363484865	5.93565744903606	6.06758616821646
+"ZSCAN5A-AS1"	3.90948566379456	3.69834232215837	3.89621870395962	4.08878977561066	3.98074404076588	3.94843422547609	3.93361151345867	3.89851173902422	3.9205084755125	3.84232318792524	3.87664703748351	3.87267922283037	3.58108466416937	3.82370565904503	4.03910205945987	4.10017849135413	4.04423966336055	3.67450580499884	3.84381706249286	3.95239609050267	3.74708824763314
+"ZSCAN9"	5.52560477454462	5.58330259756761	5.19529987099102	5.43944938917534	5.25731929606208	5.21852300896543	5.47587273313578	5.33691520506317	5.31881347215269	5.33358936572871	5.39431915542963	4.94614248203994	4.96406634042197	5.13051466775829	5.28965796031099	5.9100656740562	5.18520885108758	5.5161154184979	5.34810385551279	5.24683899721807	5.41058256106342
+"ZSWIM1"	7.94911094599649	7.74215011265717	7.89940749987207	7.81757535536657	7.90742611126434	7.81802508946487	7.88412227819045	7.55937743605188	7.94568863846813	7.70000955565952	7.6802269055107	7.73318353022719	7.84343443942626	8.08192808105176	7.86780485898386	7.61277475857217	7.59131634925357	7.57598879900938	7.76091790097129	7.74617091584491	7.64003645501156
+"ZSWIM2"	2.96732815674201	3.12424950044139	3.15132839120907	3.10994715391572	3.21862044026634	3.27564485764775	3.42965172393692	3.10445188916792	3.11262847828152	2.97670234018628	3.08701451488243	3.10994715391572	3.13645256648828	3.21280789708302	3.1921727531526	3.03008988933811	3.08242215290643	3.02254995132936	3.1040090453538	2.94906970106365	3.270103141382
+"ZSWIM3"	6.74226872053461	7.02403248596477	6.89993277838846	7.02032039977487	7.09719927817703	6.7882932219884	6.7707513241259	6.72992361448014	6.82226922198563	6.8383806229948	6.74869318404668	6.81668602808423	6.9099951954966	7.14771978680517	6.8091755787745	6.61999251439337	6.74667925377061	6.72922094924997	6.78331224141729	7.09912424498666	6.8383806229948
+"ZSWIM5"	7.63978724448828	7.50187434395152	7.41593820666827	7.39430975206478	7.15367432031124	7.41141340537884	7.49956355464044	7.23418599187195	7.42544896393469	7.26566318730959	7.29097985947008	7.13081736787554	7.51411417199864	7.53215830062694	7.59606291868292	7.60967733209317	7.47867465739252	7.18270017375295	7.32648108223867	7.53100790520278	7.46020821613218
+"ZSWIM6"	9.93989210826025	10.0005561476378	9.40990257315802	9.90162109675423	9.5804047047788	9.97603299931249	9.71050261632874	9.56164596455324	9.63209960319862	9.37070943760355	10.0770857787394	9.5535413806171	9.83628645726898	9.65237773972222	9.99276443703588	10.2719267060375	9.91837071043505	10.5803329514437	9.87572218163297	9.21455117789943	9.19611938382805
+"ZSWIM7"	7.75172601271429	5.89963252876596	7.14359003654091	6.81270612873005	6.91553706800973	7.36880522742527	7.49495211114579	7.04115238927633	6.35300028848263	7.10807338097825	6.07048305532799	6.90612194700596	6.9664043423685	7.52772309685173	6.8764048017174	7.42392993121403	6.76922245852697	7.16225454168247	7.14859321426465	7.10690307552882	7.30581085398392
+"ZSWIM8"	5.80337704455406	5.85183895545147	5.98096174527483	6.02028032624066	5.69266123357479	6.49115489293264	6.94478741869483	5.71011156651643	6.10129661738394	6.05413195872582	5.9185155389668	6.00346081601362	6.02467238189974	6.28158535936641	5.98847577698844	6.02263260843666	6.02263260843666	5.71081223281927	6.44768360319627	5.85504764786697	5.97753869964947
+"ZSWIM9"	7.42132779565399	7.30981028756201	7.77419983773237	7.5388545356132	6.89578103718178	8.08581393873088	8.23188307333724	7.33257178410185	7.73987017184968	7.55999234483833	7.22675474198358	7.60786722964585	7.76421725536178	7.68239196346125	7.59229829597956	7.25520935167786	7.5345371412243	7.23091914068257	7.64826588693547	7.48014828724109	7.48411864625201
+"ZUP1"	6.76556280380125	6.95700375730467	7.16437563022605	6.92791946699597	7.46602888539024	6.79792106322736	6.51282205549992	7.2529485128021	6.98035589359585	6.98978818307313	6.54392154301665	7.1015131091752	6.78537965568564	6.60628649910887	6.89566098193796	6.95700375730467	6.88094398161611	7.4344826989367	6.86316996734107	7.10991439090168	6.96750264809739
+"ZW10"	7.13382438360596	7.20346614286036	7.01417740091354	6.98269806699079	7.28029647786635	6.88619442019031	6.80803348029808	6.76858375958867	7.19406469120278	7.32975226950141	7.12055309307518	7.18549407668807	6.97697041067946	6.88446328538064	6.87110109165057	7.68859297890757	7.09675643552546	7.23112936245218	7.07636902822709	7.36429245547196	7.30373828369504
+"ZWILCH"	5.240395663165	5.34174865786296	5.53294215327753	5.02531910854952	5.9653516130988	5.15821850335851	4.61284354163675	5.25597381417083	5.69188637625457	6.02263260843666	5.34707932149291	6.10923149935908	5.03953561839863	4.90258076738524	4.9032096164912	5.44542477586959	5.34441645215958	5.54328461080747	5.09266421693557	6.26277548963691	6.07752419170842
+"ZWINT"	6.76849679716462	7.28193154751261	7.32262435317882	6.39653522484688	7.28391096971615	6.5603706806484	5.59890326325407	6.53851495905203	6.49423943161767	6.64803598336741	6.81294338801741	6.72886123589107	6.26378506480311	6.29677011740387	6.31737673177864	7.06783961080781	6.69825121762416	6.82992037638074	6.6012638817121	6.94323213374846	6.5252928698366
+"ZXDA"	6.04488377074037	6.23417007083263	6.474266275277	6.05911335515184	6.15399698984428	5.47932465519184	6.00548214391992	5.65531054241585	5.91842062523781	5.55723025057745	6.2258046767001	5.1599248449085	5.61520236100914	5.86175249737268	5.70573972506393	6.19168397908502	5.57593342492165	6.14098808224073	5.77621061860955	5.90586180929536	5.66465805895478
+"ZXDB"	6.27298474903014	6.59218542101021	7.03410364589883	6.7415048693671	6.99842003464782	6.41518332195738	5.79931297504775	6.59218542101021	6.8383806229948	6.45813793250231	6.4751177995286	6.55174226431296	6.33084637156484	6.443834933189	6.82376485309094	6.60812200168947	6.71943522706357	7.10616373004328	6.59218542101021	6.75385577546022	6.58190151355827
+"ZXDC"	7.11115063372891	7.01650147678249	7.30905157515799	6.93232251329357	6.83036455129585	7.28193154751261	6.9294128895244	6.23494311095046	6.66713426068136	6.80232622505123	7.31811384615841	6.57940181309444	6.82414827484797	7.07930017606887	6.68942693199632	7.30643768492522	6.50627238367541	7.57824789736059	6.87915237971766	6.91373866277	6.67903397650544
+"ZYG11A"	5.23224922680488	5.36523470356042	5.30801907879424	5.25089810006404	5.33567972621618	5.4264724860788	5.38270400339194	5.10496207347434	5.51799313696371	5.33576652822581	5.16304009926144	5.4815796522389	5.50076182085259	5.39105982709577	5.27928600664186	5.31095554975211	5.02777151658668	4.95027384742094	5.11194189916689	5.22025635773318	5.2992386944742
+"ZYG11B"	6.73042436396054	7.21922774144341	6.43159635819209	7.69518709969801	7.48705156440347	6.2733479158936	7.41959872227403	7.46419410736945	8.07027576886777	8.31774370103881	7.64802616355994	8.31215492998626	7.50972918283852	7.33769719656772	8.2522824841956	7.23120867599507	7.47036969392557	7.21717044296774	8.31492176063666	7.89270077492855	8.18547199649555
+"ZZEF1"	8.12070158967149	8.16742687631259	8.53516203105077	8.09899035384073	8.33740130548508	8.1743654908991	7.70009633157305	8.05408174954531	8.13882248784076	8.13336087647652	8.19472756603895	8.01365591540623	8.13800827586743	7.9869308141442	7.78864070435977	8.17211851867165	8.25182535798143	8.49968047523481	7.69860369705399	8.19455248617123	8.15955573775942
+"ZZZ3"	8.17777821588274	8.09571102228906	7.87759509339567	8.06596921528375	7.92442364996016	7.62558106535927	7.76380625465938	7.82019069722075	8.06074837171802	7.58286732754993	8.26043249676431	7.43741875035802	7.88457770734955	7.71505162614386	8.16834858877112	8.31245854093289	7.53919427100555	8.52192893000537	8.18598323243753	7.71646068184225	7.80761682608192
diff --git a/preprocessing-of-data/AD-GSE48350.pData.tsv b/preprocessing-of-data/AD-GSE48350.pData.tsv
new file mode 100644
index 0000000..9506804
--- /dev/null
+++ b/preprocessing-of-data/AD-GSE48350.pData.tsv
@@ -0,0 +1,254 @@
+"title"	"geo_accession"	"status"	"submission_date"	"last_update_date"	"type"	"channel_count"	"source_name_ch1"	"organism_ch1"	"characteristics_ch1"	"characteristics_ch1.1"	"characteristics_ch1.2"	"characteristics_ch1.3"	"characteristics_ch1.4"	"characteristics_ch1.5"	"treatment_protocol_ch1"	"growth_protocol_ch1"	"molecule_ch1"	"extract_protocol_ch1"	"label_ch1"	"label_protocol_ch1"	"taxid_ch1"	"hyb_protocol"	"scan_protocol"	"description"	"data_processing"	"platform_id"	"contact_name"	"contact_email"	"contact_phone"	"contact_laboratory"	"contact_department"	"contact_institute"	"contact_address"	"contact_city"	"contact_state"	"contact_zip/postal_code"	"contact_country"	"supplementary_file"	"data_row_count"	"relation"	"relation.1"	"relation.2"	"age (yrs):ch1"	"apoe genotype:ch1"	"braak stage:ch1"	"brain region:ch1"	"gender:ch1"	"individual:ch1"	"mmse:ch1"
+"GSM300166"	"PostcentralGyrus_female_91yrs_indiv10"	"GSM300166"	"Public on Oct 09 2008"	"Jun 25 2008"	"Jun 26 2019"	"RNA"	"1"	"brain, postcentral gyrus, female, 91 years"	"Homo sapiens"	"individual: 10, C"	"brain region: postcentral gyrus"	"gender: female"	"age (yrs): 91"	""	""	"N/A"	"N/A"	"total RNA"	"Total RNA was extracted from 10-200 mg of frozen, unfixed tissue using Trizol reagent (Invitrogen, Carlsbad CA), and purified using quick spin columns (Qiagen, Valencia CA).  RNA quality was assessed using the Agilent BioAnalyzer (Agilent Technologies, Palo Alto, CA) and UV spectrophotometer for the presence of sharp peaks and 28S/18S RNA."	"biotin"	"Total RNA (10 ug) from each sample was used to generate first strand cDNA using a T7-linked-(dT)24 primer, followed by in vitro transcription using the ENZO BioArray High-Yield RNA transcript labeling kit (ENZO Farmingdale, NY) to generate biotin-labeled cRNA target."	"9606"	"Using a robotics system (Biomek FX MicroArray Plex SA System; Beckman Coultier) to optimize consistency in processing and minimize handling variability, each fragmented, biotin-labeled cRNA sample (30 mg) was individually hybridized to an Affymetrix Hg-U133 plus 2.0 chip for 16 hours and rotated at 13 rpm at 50C."	"The chips were scanned using an Affymetrix GeneChip Scanner 3000 7G"	"Brain from cognitively intact individual."	"GC-RMA expression values were obtained from CEL files using GeneSpring 7.3.1 software.  PLIER expression values were obtained using Expression Console software using default settings.  PLIER and GC-RMA data were processed using GeneSpring 7.0 software, with default normalizations (Data transformation:set values<0.01 to 0.01; per chip: normalize to 50th percentile; per gene: normalize to median)."	"GPL570"	"Nicole,Claudia,Berchtold"	"nberchto@uci.edu"	"949 824 6071"	"Carl W. Cotman"	"Institute for Memory Impairments and Neurological Disorders"	"UC Irvine"	"1226 Gillespie Neuroscience Facility"	"Irvine"	"CA"	"92697-4540"	"USA"	"ftp://ftp.ncbi.nlm.nih.gov/geo/samples/GSM300nnn/GSM300166/suppl/GSM300166.CEL.gz"	"54675"	"Reanalyzed by: GSE119087"	"Reanalyzed by: GSE133349"	""	"91"	NA	NA	"postcentral gyrus"	"female"	"10, C"	NA
+"GSM300167"	"SuperiorFrontalGyrus_female_91yrs_indiv10"	"GSM300167"	"Public on Oct 09 2008"	"Jun 25 2008"	"Jun 26 2019"	"RNA"	"1"	"brain, superior frontal gyrus, female, 91 years"	"Homo sapiens"	"individual: 10, C"	"brain region: superior frontal gyrus"	"gender: female"	"age (yrs): 91"	""	""	"N/A"	"N/A"	"total RNA"	"Total RNA was extracted from 10-200 mg of frozen, unfixed tissue using Trizol reagent (Invitrogen, Carlsbad CA), and purified using quick spin columns (Qiagen, Valencia CA).  RNA quality was assessed using the Agilent BioAnalyzer (Agilent Technologies, Palo Alto, CA) and UV spectrophotometer for the presence of sharp peaks and 28S/18S RNA."	"biotin"	"Total RNA (10 ug) from each sample was used to generate first strand cDNA using a T7-linked-(dT)24 primer, followed by in vitro transcription using the ENZO BioArray High-Yield RNA transcript labeling kit (ENZO Farmingdale, NY) to generate biotin-labeled cRNA target."	"9606"	"Using a robotics system (Biomek FX MicroArray Plex SA System; Beckman Coultier) to optimize consistency in processing and minimize handling variability, each fragmented, biotin-labeled cRNA sample (30 mg) was individually hybridized to an Affymetrix Hg-U133 plus 2.0 chip for 16 hours and rotated at 13 rpm at 50C."	"The chips were scanned using an Affymetrix GeneChip Scanner 3000 7G"	"Brain from cognitively intact individual."	"GC-RMA expression values were obtained from CEL files using GeneSpring 7.3.1 software.  PLIER expression values were obtained using Expression Console software using default settings.  PLIER and GC-RMA data were processed using GeneSpring 7.0 software, with default normalizations (Data transformation:set values<0.01 to 0.01; per chip: normalize to 50th percentile; per gene: normalize to median)."	"GPL570"	"Nicole,Claudia,Berchtold"	"nberchto@uci.edu"	"949 824 6071"	"Carl W. Cotman"	"Institute for Memory Impairments and Neurological Disorders"	"UC Irvine"	"1226 Gillespie Neuroscience Facility"	"Irvine"	"CA"	"92697-4540"	"USA"	"ftp://ftp.ncbi.nlm.nih.gov/geo/samples/GSM300nnn/GSM300167/suppl/GSM300167.CEL.gz"	"54675"	"Reanalyzed by: GSE119087"	"Reanalyzed by: GSE133349"	""	"91"	NA	NA	"superior frontal gyrus"	"female"	"10, C"	NA
+"GSM300168"	"Hippocampus_female_96yrs_indiv105"	"GSM300168"	"Public on Oct 09 2008"	"Jun 25 2008"	"Jun 26 2019"	"RNA"	"1"	"brain, hippocampus, female, 96 years"	"Homo sapiens"	"individual: 105, C"	"brain region: hippocampus"	"gender: female"	"age (yrs): 96"	""	""	"N/A"	"N/A"	"total RNA"	"Total RNA was extracted from 10-200 mg of frozen, unfixed tissue using Trizol reagent (Invitrogen, Carlsbad CA), and purified using quick spin columns (Qiagen, Valencia CA).  RNA quality was assessed using the Agilent BioAnalyzer (Agilent Technologies, Palo Alto, CA) and UV spectrophotometer for the presence of sharp peaks and 28S/18S RNA."	"biotin"	"Total RNA (10 ug) from each sample was used to generate first strand cDNA using a T7-linked-(dT)24 primer, followed by in vitro transcription using the ENZO BioArray High-Yield RNA transcript labeling kit (ENZO Farmingdale, NY) to generate biotin-labeled cRNA target."	"9606"	"Using a robotics system (Biomek FX MicroArray Plex SA System; Beckman Coultier) to optimize consistency in processing and minimize handling variability, each fragmented, biotin-labeled cRNA sample (30 mg) was individually hybridized to an Affymetrix Hg-U133 plus 2.0 chip for 16 hours and rotated at 13 rpm at 50C."	"The chips were scanned using an Affymetrix GeneChip Scanner 3000 7G"	"Brain from cognitively intact individual."	"GC-RMA expression values were obtained from CEL files using GeneSpring 7.3.1 software.  PLIER expression values were obtained using Expression Console software using default settings.  PLIER and GC-RMA data were processed using GeneSpring 7.0 software, with default normalizations (Data transformation:set values<0.01 to 0.01; per chip: normalize to 50th percentile; per gene: normalize to median)."	"GPL570"	"Nicole,Claudia,Berchtold"	"nberchto@uci.edu"	"949 824 6071"	"Carl W. Cotman"	"Institute for Memory Impairments and Neurological Disorders"	"UC Irvine"	"1226 Gillespie Neuroscience Facility"	"Irvine"	"CA"	"92697-4540"	"USA"	"ftp://ftp.ncbi.nlm.nih.gov/geo/samples/GSM300nnn/GSM300168/suppl/GSM300168.CEL.gz"	"54675"	"Reanalyzed by: GSE119087"	"Reanalyzed by: GSE133349"	""	"96"	NA	NA	"hippocampus"	"female"	"105, C"	NA
+"GSM300169"	"Hippocampus_male_82yrs_indiv106"	"GSM300169"	"Public on Oct 09 2008"	"Jun 25 2008"	"Jun 26 2019"	"RNA"	"1"	"brain, hippocampus, male, 82 years"	"Homo sapiens"	"individual: 106, C"	"brain region: hippocampus"	"gender: male"	"age (yrs): 82"	""	""	"N/A"	"N/A"	"total RNA"	"Total RNA was extracted from 10-200 mg of frozen, unfixed tissue using Trizol reagent (Invitrogen, Carlsbad CA), and purified using quick spin columns (Qiagen, Valencia CA).  RNA quality was assessed using the Agilent BioAnalyzer (Agilent Technologies, Palo Alto, CA) and UV spectrophotometer for the presence of sharp peaks and 28S/18S RNA."	"biotin"	"Total RNA (10 ug) from each sample was used to generate first strand cDNA using a T7-linked-(dT)24 primer, followed by in vitro transcription using the ENZO BioArray High-Yield RNA transcript labeling kit (ENZO Farmingdale, NY) to generate biotin-labeled cRNA target."	"9606"	"Using a robotics system (Biomek FX MicroArray Plex SA System; Beckman Coultier) to optimize consistency in processing and minimize handling variability, each fragmented, biotin-labeled cRNA sample (30 mg) was individually hybridized to an Affymetrix Hg-U133 plus 2.0 chip for 16 hours and rotated at 13 rpm at 50C."	"The chips were scanned using an Affymetrix GeneChip Scanner 3000 7G"	"Brain from cognitively intact individual."	"GC-RMA expression values were obtained from CEL files using GeneSpring 7.3.1 software.  PLIER expression values were obtained using Expression Console software using default settings.  PLIER and GC-RMA data were processed using GeneSpring 7.0 software, with default normalizations (Data transformation:set values<0.01 to 0.01; per chip: normalize to 50th percentile; per gene: normalize to median)."	"GPL570"	"Nicole,Claudia,Berchtold"	"nberchto@uci.edu"	"949 824 6071"	"Carl W. Cotman"	"Institute for Memory Impairments and Neurological Disorders"	"UC Irvine"	"1226 Gillespie Neuroscience Facility"	"Irvine"	"CA"	"92697-4540"	"USA"	"ftp://ftp.ncbi.nlm.nih.gov/geo/samples/GSM300nnn/GSM300169/suppl/GSM300169.CEL.gz"	"54675"	"Reanalyzed by: GSE119087"	"Reanalyzed by: GSE133349"	""	"82"	NA	NA	"hippocampus"	"male"	"106, C"	NA
+"GSM300170"	"Hippocampus_male_84yrs_indiv108"	"GSM300170"	"Public on Oct 09 2008"	"Jun 25 2008"	"Jun 26 2019"	"RNA"	"1"	"brain, hippocampus, male, 84 years"	"Homo sapiens"	"individual: 108, C"	"brain region: hippocampus"	"gender: male"	"age (yrs): 84"	""	""	"N/A"	"N/A"	"total RNA"	"Total RNA was extracted from 10-200 mg of frozen, unfixed tissue using Trizol reagent (Invitrogen, Carlsbad CA), and purified using quick spin columns (Qiagen, Valencia CA).  RNA quality was assessed using the Agilent BioAnalyzer (Agilent Technologies, Palo Alto, CA) and UV spectrophotometer for the presence of sharp peaks and 28S/18S RNA."	"biotin"	"Total RNA (10 ug) from each sample was used to generate first strand cDNA using a T7-linked-(dT)24 primer, followed by in vitro transcription using the ENZO BioArray High-Yield RNA transcript labeling kit (ENZO Farmingdale, NY) to generate biotin-labeled cRNA target."	"9606"	"Using a robotics system (Biomek FX MicroArray Plex SA System; Beckman Coultier) to optimize consistency in processing and minimize handling variability, each fragmented, biotin-labeled cRNA sample (30 mg) was individually hybridized to an Affymetrix Hg-U133 plus 2.0 chip for 16 hours and rotated at 13 rpm at 50C."	"The chips were scanned using an Affymetrix GeneChip Scanner 3000 7G"	"Brain from cognitively intact individual."	"GC-RMA expression values were obtained from CEL files using GeneSpring 7.3.1 software.  PLIER expression values were obtained using Expression Console software using default settings.  PLIER and GC-RMA data were processed using GeneSpring 7.0 software, with default normalizations (Data transformation:set values<0.01 to 0.01; per chip: normalize to 50th percentile; per gene: normalize to median)."	"GPL570"	"Nicole,Claudia,Berchtold"	"nberchto@uci.edu"	"949 824 6071"	"Carl W. Cotman"	"Institute for Memory Impairments and Neurological Disorders"	"UC Irvine"	"1226 Gillespie Neuroscience Facility"	"Irvine"	"CA"	"92697-4540"	"USA"	"ftp://ftp.ncbi.nlm.nih.gov/geo/samples/GSM300nnn/GSM300170/suppl/GSM300170.CEL.gz"	"54675"	"Reanalyzed by: GSE119087"	"Reanalyzed by: GSE133349"	""	"84"	NA	NA	"hippocampus"	"male"	"108, C"	NA
+"GSM300171"	"Hippocampus_female_87yrs_indiv109"	"GSM300171"	"Public on Oct 09 2008"	"Jun 25 2008"	"Jun 26 2019"	"RNA"	"1"	"brain, hippocampus, female, 87 years"	"Homo sapiens"	"individual: 109, C"	"brain region: hippocampus"	"gender: female"	"age (yrs): 87"	""	""	"N/A"	"N/A"	"total RNA"	"Total RNA was extracted from 10-200 mg of frozen, unfixed tissue using Trizol reagent (Invitrogen, Carlsbad CA), and purified using quick spin columns (Qiagen, Valencia CA).  RNA quality was assessed using the Agilent BioAnalyzer (Agilent Technologies, Palo Alto, CA) and UV spectrophotometer for the presence of sharp peaks and 28S/18S RNA."	"biotin"	"Total RNA (10 ug) from each sample was used to generate first strand cDNA using a T7-linked-(dT)24 primer, followed by in vitro transcription using the ENZO BioArray High-Yield RNA transcript labeling kit (ENZO Farmingdale, NY) to generate biotin-labeled cRNA target."	"9606"	"Using a robotics system (Biomek FX MicroArray Plex SA System; Beckman Coultier) to optimize consistency in processing and minimize handling variability, each fragmented, biotin-labeled cRNA sample (30 mg) was individually hybridized to an Affymetrix Hg-U133 plus 2.0 chip for 16 hours and rotated at 13 rpm at 50C."	"The chips were scanned using an Affymetrix GeneChip Scanner 3000 7G"	"Brain from cognitively intact individual."	"GC-RMA expression values were obtained from CEL files using GeneSpring 7.3.1 software.  PLIER expression values were obtained using Expression Console software using default settings.  PLIER and GC-RMA data were processed using GeneSpring 7.0 software, with default normalizations (Data transformation:set values<0.01 to 0.01; per chip: normalize to 50th percentile; per gene: normalize to median)."	"GPL570"	"Nicole,Claudia,Berchtold"	"nberchto@uci.edu"	"949 824 6071"	"Carl W. Cotman"	"Institute for Memory Impairments and Neurological Disorders"	"UC Irvine"	"1226 Gillespie Neuroscience Facility"	"Irvine"	"CA"	"92697-4540"	"USA"	"ftp://ftp.ncbi.nlm.nih.gov/geo/samples/GSM300nnn/GSM300171/suppl/GSM300171.CEL.gz"	"54675"	"Reanalyzed by: GSE119087"	"Reanalyzed by: GSE133349"	""	"87"	NA	NA	"hippocampus"	"female"	"109, C"	NA
+"GSM300172"	"Hippocampus_female_82yrs_indiv111"	"GSM300172"	"Public on Oct 09 2008"	"Jun 25 2008"	"Jun 26 2019"	"RNA"	"1"	"brain, hippocampus, female, 82 years"	"Homo sapiens"	"individual: 111, C"	"brain region: hippocampus"	"gender: female"	"age (yrs): 82"	""	""	"N/A"	"N/A"	"total RNA"	"Total RNA was extracted from 10-200 mg of frozen, unfixed tissue using Trizol reagent (Invitrogen, Carlsbad CA), and purified using quick spin columns (Qiagen, Valencia CA).  RNA quality was assessed using the Agilent BioAnalyzer (Agilent Technologies, Palo Alto, CA) and UV spectrophotometer for the presence of sharp peaks and 28S/18S RNA."	"biotin"	"Total RNA (10 ug) from each sample was used to generate first strand cDNA using a T7-linked-(dT)24 primer, followed by in vitro transcription using the ENZO BioArray High-Yield RNA transcript labeling kit (ENZO Farmingdale, NY) to generate biotin-labeled cRNA target."	"9606"	"Using a robotics system (Biomek FX MicroArray Plex SA System; Beckman Coultier) to optimize consistency in processing and minimize handling variability, each fragmented, biotin-labeled cRNA sample (30 mg) was individually hybridized to an Affymetrix Hg-U133 plus 2.0 chip for 16 hours and rotated at 13 rpm at 50C."	"The chips were scanned using an Affymetrix GeneChip Scanner 3000 7G"	"Brain from cognitively intact individual."	"GC-RMA expression values were obtained from CEL files using GeneSpring 7.3.1 software.  PLIER expression values were obtained using Expression Console software using default settings.  PLIER and GC-RMA data were processed using GeneSpring 7.0 software, with default normalizations (Data transformation:set values<0.01 to 0.01; per chip: normalize to 50th percentile; per gene: normalize to median)."	"GPL570"	"Nicole,Claudia,Berchtold"	"nberchto@uci.edu"	"949 824 6071"	"Carl W. Cotman"	"Institute for Memory Impairments and Neurological Disorders"	"UC Irvine"	"1226 Gillespie Neuroscience Facility"	"Irvine"	"CA"	"92697-4540"	"USA"	"ftp://ftp.ncbi.nlm.nih.gov/geo/samples/GSM300nnn/GSM300172/suppl/GSM300172.CEL.gz"	"54675"	"Reanalyzed by: GSE119087"	"Reanalyzed by: GSE133349"	""	"82"	NA	NA	"hippocampus"	"female"	"111, C"	NA
+"GSM300173"	"EntorhinalCortex_male_45yrs_indiv12"	"GSM300173"	"Public on Oct 09 2008"	"Jun 25 2008"	"Jun 26 2019"	"RNA"	"1"	"brain, entorhinal cortex, male, 45 years"	"Homo sapiens"	"individual: 12, AA"	"brain region: entorhinal cortex"	"gender: male"	"age (yrs): 45"	""	""	"N/A"	"N/A"	"total RNA"	"Total RNA was extracted from 10-200 mg of frozen, unfixed tissue using Trizol reagent (Invitrogen, Carlsbad CA), and purified using quick spin columns (Qiagen, Valencia CA).  RNA quality was assessed using the Agilent BioAnalyzer (Agilent Technologies, Palo Alto, CA) and UV spectrophotometer for the presence of sharp peaks and 28S/18S RNA."	"biotin"	"Total RNA (10 ug) from each sample was used to generate first strand cDNA using a T7-linked-(dT)24 primer, followed by in vitro transcription using the ENZO BioArray High-Yield RNA transcript labeling kit (ENZO Farmingdale, NY) to generate biotin-labeled cRNA target."	"9606"	"Using a robotics system (Biomek FX MicroArray Plex SA System; Beckman Coultier) to optimize consistency in processing and minimize handling variability, each fragmented, biotin-labeled cRNA sample (30 mg) was individually hybridized to an Affymetrix Hg-U133 plus 2.0 chip for 16 hours and rotated at 13 rpm at 50C."	"The chips were scanned using an Affymetrix GeneChip Scanner 3000 7G"	"Brain from cognitively intact individual."	"GC-RMA expression values were obtained from CEL files using GeneSpring 7.3.1 software.  PLIER expression values were obtained using Expression Console software using default settings.  PLIER and GC-RMA data were processed using GeneSpring 7.0 software, with default normalizations (Data transformation:set values<0.01 to 0.01; per chip: normalize to 50th percentile; per gene: normalize to median)."	"GPL570"	"Nicole,Claudia,Berchtold"	"nberchto@uci.edu"	"949 824 6071"	"Carl W. Cotman"	"Institute for Memory Impairments and Neurological Disorders"	"UC Irvine"	"1226 Gillespie Neuroscience Facility"	"Irvine"	"CA"	"92697-4540"	"USA"	"ftp://ftp.ncbi.nlm.nih.gov/geo/samples/GSM300nnn/GSM300173/suppl/GSM300173.CEL.gz"	"54675"	"Reanalyzed by: GSE119087"	"Reanalyzed by: GSE133349"	""	"45"	NA	NA	"entorhinal cortex"	"male"	"12, AA"	NA
+"GSM300174"	"Hippocampus_male_45yrs_indiv12"	"GSM300174"	"Public on Oct 09 2008"	"Jun 25 2008"	"Jun 26 2019"	"RNA"	"1"	"brain, hippocampus, male, 45 years"	"Homo sapiens"	"individual: 12, AA"	"brain region: hippocampus"	"gender: male"	"age (yrs): 45"	""	""	"N/A"	"N/A"	"total RNA"	"Total RNA was extracted from 10-200 mg of frozen, unfixed tissue using Trizol reagent (Invitrogen, Carlsbad CA), and purified using quick spin columns (Qiagen, Valencia CA).  RNA quality was assessed using the Agilent BioAnalyzer (Agilent Technologies, Palo Alto, CA) and UV spectrophotometer for the presence of sharp peaks and 28S/18S RNA."	"biotin"	"Total RNA (10 ug) from each sample was used to generate first strand cDNA using a T7-linked-(dT)24 primer, followed by in vitro transcription using the ENZO BioArray High-Yield RNA transcript labeling kit (ENZO Farmingdale, NY) to generate biotin-labeled cRNA target."	"9606"	"Using a robotics system (Biomek FX MicroArray Plex SA System; Beckman Coultier) to optimize consistency in processing and minimize handling variability, each fragmented, biotin-labeled cRNA sample (30 mg) was individually hybridized to an Affymetrix Hg-U133 plus 2.0 chip for 16 hours and rotated at 13 rpm at 50C."	"The chips were scanned using an Affymetrix GeneChip Scanner 3000 7G"	"Brain from cognitively intact individual."	"GC-RMA expression values were obtained from CEL files using GeneSpring 7.3.1 software.  PLIER expression values were obtained using Expression Console software using default settings.  PLIER and GC-RMA data were processed using GeneSpring 7.0 software, with default normalizations (Data transformation:set values<0.01 to 0.01; per chip: normalize to 50th percentile; per gene: normalize to median)."	"GPL570"	"Nicole,Claudia,Berchtold"	"nberchto@uci.edu"	"949 824 6071"	"Carl W. Cotman"	"Institute for Memory Impairments and Neurological Disorders"	"UC Irvine"	"1226 Gillespie Neuroscience Facility"	"Irvine"	"CA"	"92697-4540"	"USA"	"ftp://ftp.ncbi.nlm.nih.gov/geo/samples/GSM300nnn/GSM300174/suppl/GSM300174.CEL.gz"	"54675"	"Reanalyzed by: GSE119087"	"Reanalyzed by: GSE133349"	""	"45"	NA	NA	"hippocampus"	"male"	"12, AA"	NA
+"GSM300175"	"PostcentralGyrus_male_45yrs_indiv12"	"GSM300175"	"Public on Oct 09 2008"	"Jun 25 2008"	"Jun 26 2019"	"RNA"	"1"	"brain, postcentral gyrus, male, 45 years"	"Homo sapiens"	"individual: 12, AA"	"brain region: postcentral gyrus"	"gender: male"	"age (yrs): 45"	""	""	"N/A"	"N/A"	"total RNA"	"Total RNA was extracted from 10-200 mg of frozen, unfixed tissue using Trizol reagent (Invitrogen, Carlsbad CA), and purified using quick spin columns (Qiagen, Valencia CA).  RNA quality was assessed using the Agilent BioAnalyzer (Agilent Technologies, Palo Alto, CA) and UV spectrophotometer for the presence of sharp peaks and 28S/18S RNA."	"biotin"	"Total RNA (10 ug) from each sample was used to generate first strand cDNA using a T7-linked-(dT)24 primer, followed by in vitro transcription using the ENZO BioArray High-Yield RNA transcript labeling kit (ENZO Farmingdale, NY) to generate biotin-labeled cRNA target."	"9606"	"Using a robotics system (Biomek FX MicroArray Plex SA System; Beckman Coultier) to optimize consistency in processing and minimize handling variability, each fragmented, biotin-labeled cRNA sample (30 mg) was individually hybridized to an Affymetrix Hg-U133 plus 2.0 chip for 16 hours and rotated at 13 rpm at 50C."	"The chips were scanned using an Affymetrix GeneChip Scanner 3000 7G"	"Brain from cognitively intact individual."	"GC-RMA expression values were obtained from CEL files using GeneSpring 7.3.1 software.  PLIER expression values were obtained using Expression Console software using default settings.  PLIER and GC-RMA data were processed using GeneSpring 7.0 software, with default normalizations (Data transformation:set values<0.01 to 0.01; per chip: normalize to 50th percentile; per gene: normalize to median)."	"GPL570"	"Nicole,Claudia,Berchtold"	"nberchto@uci.edu"	"949 824 6071"	"Carl W. Cotman"	"Institute for Memory Impairments and Neurological Disorders"	"UC Irvine"	"1226 Gillespie Neuroscience Facility"	"Irvine"	"CA"	"92697-4540"	"USA"	"ftp://ftp.ncbi.nlm.nih.gov/geo/samples/GSM300nnn/GSM300175/suppl/GSM300175.CEL.gz"	"54675"	"Reanalyzed by: GSE119087"	"Reanalyzed by: GSE133349"	""	"45"	NA	NA	"postcentral gyrus"	"male"	"12, AA"	NA
+"GSM300176"	"SuperiorFrontalGyrus_male_45yrs_indiv12"	"GSM300176"	"Public on Oct 09 2008"	"Jun 25 2008"	"Jun 26 2019"	"RNA"	"1"	"brain, superior frontal gyrus, male, 45 years"	"Homo sapiens"	"individual: 12, AA"	"brain region: superior frontal gyrus"	"gender: male"	"age (yrs): 45"	""	""	"N/A"	"N/A"	"total RNA"	"Total RNA was extracted from 10-200 mg of frozen, unfixed tissue using Trizol reagent (Invitrogen, Carlsbad CA), and purified using quick spin columns (Qiagen, Valencia CA).  RNA quality was assessed using the Agilent BioAnalyzer (Agilent Technologies, Palo Alto, CA) and UV spectrophotometer for the presence of sharp peaks and 28S/18S RNA."	"biotin"	"Total RNA (10 ug) from each sample was used to generate first strand cDNA using a T7-linked-(dT)24 primer, followed by in vitro transcription using the ENZO BioArray High-Yield RNA transcript labeling kit (ENZO Farmingdale, NY) to generate biotin-labeled cRNA target."	"9606"	"Using a robotics system (Biomek FX MicroArray Plex SA System; Beckman Coultier) to optimize consistency in processing and minimize handling variability, each fragmented, biotin-labeled cRNA sample (30 mg) was individually hybridized to an Affymetrix Hg-U133 plus 2.0 chip for 16 hours and rotated at 13 rpm at 50C."	"The chips were scanned using an Affymetrix GeneChip Scanner 3000 7G"	"Brain from cognitively intact individual."	"GC-RMA expression values were obtained from CEL files using GeneSpring 7.3.1 software.  PLIER expression values were obtained using Expression Console software using default settings.  PLIER and GC-RMA data were processed using GeneSpring 7.0 software, with default normalizations (Data transformation:set values<0.01 to 0.01; per chip: normalize to 50th percentile; per gene: normalize to median)."	"GPL570"	"Nicole,Claudia,Berchtold"	"nberchto@uci.edu"	"949 824 6071"	"Carl W. Cotman"	"Institute for Memory Impairments and Neurological Disorders"	"UC Irvine"	"1226 Gillespie Neuroscience Facility"	"Irvine"	"CA"	"92697-4540"	"USA"	"ftp://ftp.ncbi.nlm.nih.gov/geo/samples/GSM300nnn/GSM300176/suppl/GSM300176.CEL.gz"	"54675"	"Reanalyzed by: GSE119087"	"Reanalyzed by: GSE133349"	""	"45"	NA	NA	"superior frontal gyrus"	"male"	"12, AA"	NA
+"GSM300177"	"EntorhinalCortex_male_95yrs_indiv14"	"GSM300177"	"Public on Oct 09 2008"	"Jun 25 2008"	"Jun 26 2019"	"RNA"	"1"	"brain, entorhinal cortex, male, 95 years"	"Homo sapiens"	"individual: 14, C"	"brain region: entorhinal cortex"	"gender: male"	"age (yrs): 95"	""	""	"N/A"	"N/A"	"total RNA"	"Total RNA was extracted from 10-200 mg of frozen, unfixed tissue using Trizol reagent (Invitrogen, Carlsbad CA), and purified using quick spin columns (Qiagen, Valencia CA).  RNA quality was assessed using the Agilent BioAnalyzer (Agilent Technologies, Palo Alto, CA) and UV spectrophotometer for the presence of sharp peaks and 28S/18S RNA."	"biotin"	"Total RNA (10 ug) from each sample was used to generate first strand cDNA using a T7-linked-(dT)24 primer, followed by in vitro transcription using the ENZO BioArray High-Yield RNA transcript labeling kit (ENZO Farmingdale, NY) to generate biotin-labeled cRNA target."	"9606"	"Using a robotics system (Biomek FX MicroArray Plex SA System; Beckman Coultier) to optimize consistency in processing and minimize handling variability, each fragmented, biotin-labeled cRNA sample (30 mg) was individually hybridized to an Affymetrix Hg-U133 plus 2.0 chip for 16 hours and rotated at 13 rpm at 50C."	"The chips were scanned using an Affymetrix GeneChip Scanner 3000 7G"	"Brain from cognitively intact individual."	"GC-RMA expression values were obtained from CEL files using GeneSpring 7.3.1 software.  PLIER expression values were obtained using Expression Console software using default settings.  PLIER and GC-RMA data were processed using GeneSpring 7.0 software, with default normalizations (Data transformation:set values<0.01 to 0.01; per chip: normalize to 50th percentile; per gene: normalize to median)."	"GPL570"	"Nicole,Claudia,Berchtold"	"nberchto@uci.edu"	"949 824 6071"	"Carl W. Cotman"	"Institute for Memory Impairments and Neurological Disorders"	"UC Irvine"	"1226 Gillespie Neuroscience Facility"	"Irvine"	"CA"	"92697-4540"	"USA"	"ftp://ftp.ncbi.nlm.nih.gov/geo/samples/GSM300nnn/GSM300177/suppl/GSM300177.CEL.gz"	"54675"	"Reanalyzed by: GSE119087"	"Reanalyzed by: GSE133349"	""	"95"	NA	NA	"entorhinal cortex"	"male"	"14, C"	NA
+"GSM300178"	"Hippocampus_male_95yrs_indiv14"	"GSM300178"	"Public on Oct 09 2008"	"Jun 25 2008"	"Jun 26 2019"	"RNA"	"1"	"brain, hippocampus, male, 95 years"	"Homo sapiens"	"individual: 14, C"	"brain region: hippocampus"	"gender: male"	"age (yrs): 95"	""	""	"N/A"	"N/A"	"total RNA"	"Total RNA was extracted from 10-200 mg of frozen, unfixed tissue using Trizol reagent (Invitrogen, Carlsbad CA), and purified using quick spin columns (Qiagen, Valencia CA).  RNA quality was assessed using the Agilent BioAnalyzer (Agilent Technologies, Palo Alto, CA) and UV spectrophotometer for the presence of sharp peaks and 28S/18S RNA."	"biotin"	"Total RNA (10 ug) from each sample was used to generate first strand cDNA using a T7-linked-(dT)24 primer, followed by in vitro transcription using the ENZO BioArray High-Yield RNA transcript labeling kit (ENZO Farmingdale, NY) to generate biotin-labeled cRNA target."	"9606"	"Using a robotics system (Biomek FX MicroArray Plex SA System; Beckman Coultier) to optimize consistency in processing and minimize handling variability, each fragmented, biotin-labeled cRNA sample (30 mg) was individually hybridized to an Affymetrix Hg-U133 plus 2.0 chip for 16 hours and rotated at 13 rpm at 50C."	"The chips were scanned using an Affymetrix GeneChip Scanner 3000 7G"	"Brain from cognitively intact individual."	"GC-RMA expression values were obtained from CEL files using GeneSpring 7.3.1 software.  PLIER expression values were obtained using Expression Console software using default settings.  PLIER and GC-RMA data were processed using GeneSpring 7.0 software, with default normalizations (Data transformation:set values<0.01 to 0.01; per chip: normalize to 50th percentile; per gene: normalize to median)."	"GPL570"	"Nicole,Claudia,Berchtold"	"nberchto@uci.edu"	"949 824 6071"	"Carl W. Cotman"	"Institute for Memory Impairments and Neurological Disorders"	"UC Irvine"	"1226 Gillespie Neuroscience Facility"	"Irvine"	"CA"	"92697-4540"	"USA"	"ftp://ftp.ncbi.nlm.nih.gov/geo/samples/GSM300nnn/GSM300178/suppl/GSM300178.CEL.gz"	"54675"	"Reanalyzed by: GSE119087"	"Reanalyzed by: GSE133349"	""	"95"	NA	NA	"hippocampus"	"male"	"14, C"	NA
+"GSM300179"	"PostcentralGyrus_male_95yrs_indiv14"	"GSM300179"	"Public on Oct 09 2008"	"Jun 25 2008"	"Jun 26 2019"	"RNA"	"1"	"brain, postcentral gyrus, male, 95 years"	"Homo sapiens"	"individual: 14, C"	"brain region: postcentral gyrus"	"gender: male"	"age (yrs): 95"	""	""	"N/A"	"N/A"	"total RNA"	"Total RNA was extracted from 10-200 mg of frozen, unfixed tissue using Trizol reagent (Invitrogen, Carlsbad CA), and purified using quick spin columns (Qiagen, Valencia CA).  RNA quality was assessed using the Agilent BioAnalyzer (Agilent Technologies, Palo Alto, CA) and UV spectrophotometer for the presence of sharp peaks and 28S/18S RNA."	"biotin"	"Total RNA (10 ug) from each sample was used to generate first strand cDNA using a T7-linked-(dT)24 primer, followed by in vitro transcription using the ENZO BioArray High-Yield RNA transcript labeling kit (ENZO Farmingdale, NY) to generate biotin-labeled cRNA target."	"9606"	"Using a robotics system (Biomek FX MicroArray Plex SA System; Beckman Coultier) to optimize consistency in processing and minimize handling variability, each fragmented, biotin-labeled cRNA sample (30 mg) was individually hybridized to an Affymetrix Hg-U133 plus 2.0 chip for 16 hours and rotated at 13 rpm at 50C."	"The chips were scanned using an Affymetrix GeneChip Scanner 3000 7G"	"Brain from cognitively intact individual."	"GC-RMA expression values were obtained from CEL files using GeneSpring 7.3.1 software.  PLIER expression values were obtained using Expression Console software using default settings.  PLIER and GC-RMA data were processed using GeneSpring 7.0 software, with default normalizations (Data transformation:set values<0.01 to 0.01; per chip: normalize to 50th percentile; per gene: normalize to median)."	"GPL570"	"Nicole,Claudia,Berchtold"	"nberchto@uci.edu"	"949 824 6071"	"Carl W. Cotman"	"Institute for Memory Impairments and Neurological Disorders"	"UC Irvine"	"1226 Gillespie Neuroscience Facility"	"Irvine"	"CA"	"92697-4540"	"USA"	"ftp://ftp.ncbi.nlm.nih.gov/geo/samples/GSM300nnn/GSM300179/suppl/GSM300179.CEL.gz"	"54675"	"Reanalyzed by: GSE119087"	"Reanalyzed by: GSE133349"	""	"95"	NA	NA	"postcentral gyrus"	"male"	"14, C"	NA
+"GSM300180"	"SuperiorFrontalGyrus_male_95yrs_indiv14"	"GSM300180"	"Public on Oct 09 2008"	"Jun 25 2008"	"Jun 26 2019"	"RNA"	"1"	"brain, superior frontal gyrus, male, 95 years"	"Homo sapiens"	"individual: 14, C"	"brain region: superior frontal gyrus"	"gender: male"	"age (yrs): 95"	""	""	"N/A"	"N/A"	"total RNA"	"Total RNA was extracted from 10-200 mg of frozen, unfixed tissue using Trizol reagent (Invitrogen, Carlsbad CA), and purified using quick spin columns (Qiagen, Valencia CA).  RNA quality was assessed using the Agilent BioAnalyzer (Agilent Technologies, Palo Alto, CA) and UV spectrophotometer for the presence of sharp peaks and 28S/18S RNA."	"biotin"	"Total RNA (10 ug) from each sample was used to generate first strand cDNA using a T7-linked-(dT)24 primer, followed by in vitro transcription using the ENZO BioArray High-Yield RNA transcript labeling kit (ENZO Farmingdale, NY) to generate biotin-labeled cRNA target."	"9606"	"Using a robotics system (Biomek FX MicroArray Plex SA System; Beckman Coultier) to optimize consistency in processing and minimize handling variability, each fragmented, biotin-labeled cRNA sample (30 mg) was individually hybridized to an Affymetrix Hg-U133 plus 2.0 chip for 16 hours and rotated at 13 rpm at 50C."	"The chips were scanned using an Affymetrix GeneChip Scanner 3000 7G"	"Brain from cognitively intact individual."	"GC-RMA expression values were obtained from CEL files using GeneSpring 7.3.1 software.  PLIER expression values were obtained using Expression Console software using default settings.  PLIER and GC-RMA data were processed using GeneSpring 7.0 software, with default normalizations (Data transformation:set values<0.01 to 0.01; per chip: normalize to 50th percentile; per gene: normalize to median)."	"GPL570"	"Nicole,Claudia,Berchtold"	"nberchto@uci.edu"	"949 824 6071"	"Carl W. Cotman"	"Institute for Memory Impairments and Neurological Disorders"	"UC Irvine"	"1226 Gillespie Neuroscience Facility"	"Irvine"	"CA"	"92697-4540"	"USA"	"ftp://ftp.ncbi.nlm.nih.gov/geo/samples/GSM300nnn/GSM300180/suppl/GSM300180.CEL.gz"	"54675"	"Reanalyzed by: GSE119087"	"Reanalyzed by: GSE133349"	""	"95"	NA	NA	"superior frontal gyrus"	"male"	"14, C"	NA
+"GSM300181"	"EntorhinalCortex_male_80yrs_indiv15"	"GSM300181"	"Public on Oct 09 2008"	"Jun 25 2008"	"Jun 26 2019"	"RNA"	"1"	"brain, entorhinal cortex, male, 80 years"	"Homo sapiens"	"individual: 15, C"	"brain region: entorhinal cortex"	"gender: male"	"age (yrs): 80"	""	""	"N/A"	"N/A"	"total RNA"	"Total RNA was extracted from 10-200 mg of frozen, unfixed tissue using Trizol reagent (Invitrogen, Carlsbad CA), and purified using quick spin columns (Qiagen, Valencia CA).  RNA quality was assessed using the Agilent BioAnalyzer (Agilent Technologies, Palo Alto, CA) and UV spectrophotometer for the presence of sharp peaks and 28S/18S RNA."	"biotin"	"Total RNA (10 ug) from each sample was used to generate first strand cDNA using a T7-linked-(dT)24 primer, followed by in vitro transcription using the ENZO BioArray High-Yield RNA transcript labeling kit (ENZO Farmingdale, NY) to generate biotin-labeled cRNA target."	"9606"	"Using a robotics system (Biomek FX MicroArray Plex SA System; Beckman Coultier) to optimize consistency in processing and minimize handling variability, each fragmented, biotin-labeled cRNA sample (30 mg) was individually hybridized to an Affymetrix Hg-U133 plus 2.0 chip for 16 hours and rotated at 13 rpm at 50C."	"The chips were scanned using an Affymetrix GeneChip Scanner 3000 7G"	"Brain from cognitively intact individual."	"GC-RMA expression values were obtained from CEL files using GeneSpring 7.3.1 software.  PLIER expression values were obtained using Expression Console software using default settings.  PLIER and GC-RMA data were processed using GeneSpring 7.0 software, with default normalizations (Data transformation:set values<0.01 to 0.01; per chip: normalize to 50th percentile; per gene: normalize to median)."	"GPL570"	"Nicole,Claudia,Berchtold"	"nberchto@uci.edu"	"949 824 6071"	"Carl W. Cotman"	"Institute for Memory Impairments and Neurological Disorders"	"UC Irvine"	"1226 Gillespie Neuroscience Facility"	"Irvine"	"CA"	"92697-4540"	"USA"	"ftp://ftp.ncbi.nlm.nih.gov/geo/samples/GSM300nnn/GSM300181/suppl/GSM300181.CEL.gz"	"54675"	"Reanalyzed by: GSE119087"	"Reanalyzed by: GSE133349"	""	"80"	NA	NA	"entorhinal cortex"	"male"	"15, C"	NA
+"GSM300182"	"Hippocampus_male_80yrs_indiv15"	"GSM300182"	"Public on Oct 09 2008"	"Jun 25 2008"	"Jun 26 2019"	"RNA"	"1"	"brain, hippocampus, male, 80 years"	"Homo sapiens"	"individual: 15, C"	"brain region: hippocampus"	"gender: male"	"age (yrs): 80"	""	""	"N/A"	"N/A"	"total RNA"	"Total RNA was extracted from 10-200 mg of frozen, unfixed tissue using Trizol reagent (Invitrogen, Carlsbad CA), and purified using quick spin columns (Qiagen, Valencia CA).  RNA quality was assessed using the Agilent BioAnalyzer (Agilent Technologies, Palo Alto, CA) and UV spectrophotometer for the presence of sharp peaks and 28S/18S RNA."	"biotin"	"Total RNA (10 ug) from each sample was used to generate first strand cDNA using a T7-linked-(dT)24 primer, followed by in vitro transcription using the ENZO BioArray High-Yield RNA transcript labeling kit (ENZO Farmingdale, NY) to generate biotin-labeled cRNA target."	"9606"	"Using a robotics system (Biomek FX MicroArray Plex SA System; Beckman Coultier) to optimize consistency in processing and minimize handling variability, each fragmented, biotin-labeled cRNA sample (30 mg) was individually hybridized to an Affymetrix Hg-U133 plus 2.0 chip for 16 hours and rotated at 13 rpm at 50C."	"The chips were scanned using an Affymetrix GeneChip Scanner 3000 7G"	"Brain from cognitively intact individual."	"GC-RMA expression values were obtained from CEL files using GeneSpring 7.3.1 software.  PLIER expression values were obtained using Expression Console software using default settings.  PLIER and GC-RMA data were processed using GeneSpring 7.0 software, with default normalizations (Data transformation:set values<0.01 to 0.01; per chip: normalize to 50th percentile; per gene: normalize to median)."	"GPL570"	"Nicole,Claudia,Berchtold"	"nberchto@uci.edu"	"949 824 6071"	"Carl W. Cotman"	"Institute for Memory Impairments and Neurological Disorders"	"UC Irvine"	"1226 Gillespie Neuroscience Facility"	"Irvine"	"CA"	"92697-4540"	"USA"	"ftp://ftp.ncbi.nlm.nih.gov/geo/samples/GSM300nnn/GSM300182/suppl/GSM300182.CEL.gz"	"54675"	"Reanalyzed by: GSE119087"	"Reanalyzed by: GSE133349"	""	"80"	NA	NA	"hippocampus"	"male"	"15, C"	NA
+"GSM300183"	"PostcentralGyrus_male_80yrs_indiv15"	"GSM300183"	"Public on Oct 09 2008"	"Jun 25 2008"	"Jun 26 2019"	"RNA"	"1"	"brain, postcentral gyrus, male, 80 years"	"Homo sapiens"	"individual: 15, C"	"brain region: postcentral gyrus"	"gender: male"	"age (yrs): 80"	""	""	"N/A"	"N/A"	"total RNA"	"Total RNA was extracted from 10-200 mg of frozen, unfixed tissue using Trizol reagent (Invitrogen, Carlsbad CA), and purified using quick spin columns (Qiagen, Valencia CA).  RNA quality was assessed using the Agilent BioAnalyzer (Agilent Technologies, Palo Alto, CA) and UV spectrophotometer for the presence of sharp peaks and 28S/18S RNA."	"biotin"	"Total RNA (10 ug) from each sample was used to generate first strand cDNA using a T7-linked-(dT)24 primer, followed by in vitro transcription using the ENZO BioArray High-Yield RNA transcript labeling kit (ENZO Farmingdale, NY) to generate biotin-labeled cRNA target."	"9606"	"Using a robotics system (Biomek FX MicroArray Plex SA System; Beckman Coultier) to optimize consistency in processing and minimize handling variability, each fragmented, biotin-labeled cRNA sample (30 mg) was individually hybridized to an Affymetrix Hg-U133 plus 2.0 chip for 16 hours and rotated at 13 rpm at 50C."	"The chips were scanned using an Affymetrix GeneChip Scanner 3000 7G"	"Brain from cognitively intact individual."	"GC-RMA expression values were obtained from CEL files using GeneSpring 7.3.1 software.  PLIER expression values were obtained using Expression Console software using default settings.  PLIER and GC-RMA data were processed using GeneSpring 7.0 software, with default normalizations (Data transformation:set values<0.01 to 0.01; per chip: normalize to 50th percentile; per gene: normalize to median)."	"GPL570"	"Nicole,Claudia,Berchtold"	"nberchto@uci.edu"	"949 824 6071"	"Carl W. Cotman"	"Institute for Memory Impairments and Neurological Disorders"	"UC Irvine"	"1226 Gillespie Neuroscience Facility"	"Irvine"	"CA"	"92697-4540"	"USA"	"ftp://ftp.ncbi.nlm.nih.gov/geo/samples/GSM300nnn/GSM300183/suppl/GSM300183.CEL.gz"	"54675"	"Reanalyzed by: GSE119087"	"Reanalyzed by: GSE133349"	""	"80"	NA	NA	"postcentral gyrus"	"male"	"15, C"	NA
+"GSM300185"	"Hippocampus_male_91yrs_indiv16-07"	"GSM300185"	"Public on Oct 09 2008"	"Jun 25 2008"	"Jun 26 2019"	"RNA"	"1"	"brain, hippocampus, male, 91 years"	"Homo sapiens"	"individual: 16-07, C"	"brain region: hippocampus"	"gender: male"	"age (yrs): 91"	""	""	"N/A"	"N/A"	"total RNA"	"Total RNA was extracted from 10-200 mg of frozen, unfixed tissue using Trizol reagent (Invitrogen, Carlsbad CA), and purified using quick spin columns (Qiagen, Valencia CA).  RNA quality was assessed using the Agilent BioAnalyzer (Agilent Technologies, Palo Alto, CA) and UV spectrophotometer for the presence of sharp peaks and 28S/18S RNA."	"biotin"	"Total RNA (10 ug) from each sample was used to generate first strand cDNA using a T7-linked-(dT)24 primer, followed by in vitro transcription using the ENZO BioArray High-Yield RNA transcript labeling kit (ENZO Farmingdale, NY) to generate biotin-labeled cRNA target."	"9606"	"Using a robotics system (Biomek FX MicroArray Plex SA System; Beckman Coultier) to optimize consistency in processing and minimize handling variability, each fragmented, biotin-labeled cRNA sample (30 mg) was individually hybridized to an Affymetrix Hg-U133 plus 2.0 chip for 16 hours and rotated at 13 rpm at 50C."	"The chips were scanned using an Affymetrix GeneChip Scanner 3000 7G"	"Brain from cognitively intact individual."	"GC-RMA expression values were obtained from CEL files using GeneSpring 7.3.1 software.  PLIER expression values were obtained using Expression Console software using default settings.  PLIER and GC-RMA data were processed using GeneSpring 7.0 software, with default normalizations (Data transformation:set values<0.01 to 0.01; per chip: normalize to 50th percentile; per gene: normalize to median)."	"GPL570"	"Nicole,Claudia,Berchtold"	"nberchto@uci.edu"	"949 824 6071"	"Carl W. Cotman"	"Institute for Memory Impairments and Neurological Disorders"	"UC Irvine"	"1226 Gillespie Neuroscience Facility"	"Irvine"	"CA"	"92697-4540"	"USA"	"ftp://ftp.ncbi.nlm.nih.gov/geo/samples/GSM300nnn/GSM300185/suppl/GSM300185.CEL.gz"	"54675"	"Reanalyzed by: GSE119087"	"Reanalyzed by: GSE133349"	""	"91"	NA	NA	"hippocampus"	"male"	"16-07, C"	NA
+"GSM300186"	"EntorhinalCortex_female_45yrs_indiv17"	"GSM300186"	"Public on Oct 09 2008"	"Jun 25 2008"	"Jun 26 2019"	"RNA"	"1"	"brain, entorhinal cortex, female, 45 years"	"Homo sapiens"	"individual: 17, C"	"brain region: entorhinal cortex"	"gender: female"	"age (yrs): 45"	""	""	"N/A"	"N/A"	"total RNA"	"Total RNA was extracted from 10-200 mg of frozen, unfixed tissue using Trizol reagent (Invitrogen, Carlsbad CA), and purified using quick spin columns (Qiagen, Valencia CA).  RNA quality was assessed using the Agilent BioAnalyzer (Agilent Technologies, Palo Alto, CA) and UV spectrophotometer for the presence of sharp peaks and 28S/18S RNA."	"biotin"	"Total RNA (10 ug) from each sample was used to generate first strand cDNA using a T7-linked-(dT)24 primer, followed by in vitro transcription using the ENZO BioArray High-Yield RNA transcript labeling kit (ENZO Farmingdale, NY) to generate biotin-labeled cRNA target."	"9606"	"Using a robotics system (Biomek FX MicroArray Plex SA System; Beckman Coultier) to optimize consistency in processing and minimize handling variability, each fragmented, biotin-labeled cRNA sample (30 mg) was individually hybridized to an Affymetrix Hg-U133 plus 2.0 chip for 16 hours and rotated at 13 rpm at 50C."	"The chips were scanned using an Affymetrix GeneChip Scanner 3000 7G"	"Brain from cognitively intact individual."	"GC-RMA expression values were obtained from CEL files using GeneSpring 7.3.1 software.  PLIER expression values were obtained using Expression Console software using default settings.  PLIER and GC-RMA data were processed using GeneSpring 7.0 software, with default normalizations (Data transformation:set values<0.01 to 0.01; per chip: normalize to 50th percentile; per gene: normalize to median)."	"GPL570"	"Nicole,Claudia,Berchtold"	"nberchto@uci.edu"	"949 824 6071"	"Carl W. Cotman"	"Institute for Memory Impairments and Neurological Disorders"	"UC Irvine"	"1226 Gillespie Neuroscience Facility"	"Irvine"	"CA"	"92697-4540"	"USA"	"ftp://ftp.ncbi.nlm.nih.gov/geo/samples/GSM300nnn/GSM300186/suppl/GSM300186.CEL.gz"	"54675"	"Reanalyzed by: GSE119087"	"Reanalyzed by: GSE133349"	""	"45"	NA	NA	"entorhinal cortex"	"female"	"17, C"	NA
+"GSM300187"	"Hippocampus_female_45yrs_indiv17"	"GSM300187"	"Public on Oct 09 2008"	"Jun 25 2008"	"Jun 26 2019"	"RNA"	"1"	"brain, hippocampus, female, 45 years"	"Homo sapiens"	"individual: 17, C"	"brain region: hippocampus"	"gender: female"	"age (yrs): 45"	""	""	"N/A"	"N/A"	"total RNA"	"Total RNA was extracted from 10-200 mg of frozen, unfixed tissue using Trizol reagent (Invitrogen, Carlsbad CA), and purified using quick spin columns (Qiagen, Valencia CA).  RNA quality was assessed using the Agilent BioAnalyzer (Agilent Technologies, Palo Alto, CA) and UV spectrophotometer for the presence of sharp peaks and 28S/18S RNA."	"biotin"	"Total RNA (10 ug) from each sample was used to generate first strand cDNA using a T7-linked-(dT)24 primer, followed by in vitro transcription using the ENZO BioArray High-Yield RNA transcript labeling kit (ENZO Farmingdale, NY) to generate biotin-labeled cRNA target."	"9606"	"Using a robotics system (Biomek FX MicroArray Plex SA System; Beckman Coultier) to optimize consistency in processing and minimize handling variability, each fragmented, biotin-labeled cRNA sample (30 mg) was individually hybridized to an Affymetrix Hg-U133 plus 2.0 chip for 16 hours and rotated at 13 rpm at 50C."	"The chips were scanned using an Affymetrix GeneChip Scanner 3000 7G"	"Brain from cognitively intact individual."	"GC-RMA expression values were obtained from CEL files using GeneSpring 7.3.1 software.  PLIER expression values were obtained using Expression Console software using default settings.  PLIER and GC-RMA data were processed using GeneSpring 7.0 software, with default normalizations (Data transformation:set values<0.01 to 0.01; per chip: normalize to 50th percentile; per gene: normalize to median)."	"GPL570"	"Nicole,Claudia,Berchtold"	"nberchto@uci.edu"	"949 824 6071"	"Carl W. Cotman"	"Institute for Memory Impairments and Neurological Disorders"	"UC Irvine"	"1226 Gillespie Neuroscience Facility"	"Irvine"	"CA"	"92697-4540"	"USA"	"ftp://ftp.ncbi.nlm.nih.gov/geo/samples/GSM300nnn/GSM300187/suppl/GSM300187.CEL.gz"	"54675"	"Reanalyzed by: GSE119087"	"Reanalyzed by: GSE133349"	""	"45"	NA	NA	"hippocampus"	"female"	"17, C"	NA
+"GSM300188"	"SuperiorFrontalGyrus_female_45yrs_indiv17"	"GSM300188"	"Public on Oct 09 2008"	"Jun 25 2008"	"Jun 26 2019"	"RNA"	"1"	"brain, superior frontal gyrus, female, 45 years"	"Homo sapiens"	"individual: 17, C"	"brain region: superior frontal gyrus"	"gender: female"	"age (yrs): 45"	""	""	"N/A"	"N/A"	"total RNA"	"Total RNA was extracted from 10-200 mg of frozen, unfixed tissue using Trizol reagent (Invitrogen, Carlsbad CA), and purified using quick spin columns (Qiagen, Valencia CA).  RNA quality was assessed using the Agilent BioAnalyzer (Agilent Technologies, Palo Alto, CA) and UV spectrophotometer for the presence of sharp peaks and 28S/18S RNA."	"biotin"	"Total RNA (10 ug) from each sample was used to generate first strand cDNA using a T7-linked-(dT)24 primer, followed by in vitro transcription using the ENZO BioArray High-Yield RNA transcript labeling kit (ENZO Farmingdale, NY) to generate biotin-labeled cRNA target."	"9606"	"Using a robotics system (Biomek FX MicroArray Plex SA System; Beckman Coultier) to optimize consistency in processing and minimize handling variability, each fragmented, biotin-labeled cRNA sample (30 mg) was individually hybridized to an Affymetrix Hg-U133 plus 2.0 chip for 16 hours and rotated at 13 rpm at 50C."	"The chips were scanned using an Affymetrix GeneChip Scanner 3000 7G"	"Brain from cognitively intact individual."	"GC-RMA expression values were obtained from CEL files using GeneSpring 7.3.1 software.  PLIER expression values were obtained using Expression Console software using default settings.  PLIER and GC-RMA data were processed using GeneSpring 7.0 software, with default normalizations (Data transformation:set values<0.01 to 0.01; per chip: normalize to 50th percentile; per gene: normalize to median)."	"GPL570"	"Nicole,Claudia,Berchtold"	"nberchto@uci.edu"	"949 824 6071"	"Carl W. Cotman"	"Institute for Memory Impairments and Neurological Disorders"	"UC Irvine"	"1226 Gillespie Neuroscience Facility"	"Irvine"	"CA"	"92697-4540"	"USA"	"ftp://ftp.ncbi.nlm.nih.gov/geo/samples/GSM300nnn/GSM300188/suppl/GSM300188.CEL.gz"	"54675"	"Reanalyzed by: GSE119087"	"Reanalyzed by: GSE133349"	""	"45"	NA	NA	"superior frontal gyrus"	"female"	"17, C"	NA
+"GSM300189"	"EntorhinalCortex_female_74yrs_indiv18"	"GSM300189"	"Public on Oct 09 2008"	"Jun 25 2008"	"Jun 26 2019"	"RNA"	"1"	"brain, entorhinal cortex, female, 74 years"	"Homo sapiens"	"individual: 18, C"	"brain region: entorhinal cortex"	"gender: female"	"age (yrs): 74"	""	""	"N/A"	"N/A"	"total RNA"	"Total RNA was extracted from 10-200 mg of frozen, unfixed tissue using Trizol reagent (Invitrogen, Carlsbad CA), and purified using quick spin columns (Qiagen, Valencia CA).  RNA quality was assessed using the Agilent BioAnalyzer (Agilent Technologies, Palo Alto, CA) and UV spectrophotometer for the presence of sharp peaks and 28S/18S RNA."	"biotin"	"Total RNA (10 ug) from each sample was used to generate first strand cDNA using a T7-linked-(dT)24 primer, followed by in vitro transcription using the ENZO BioArray High-Yield RNA transcript labeling kit (ENZO Farmingdale, NY) to generate biotin-labeled cRNA target."	"9606"	"Using a robotics system (Biomek FX MicroArray Plex SA System; Beckman Coultier) to optimize consistency in processing and minimize handling variability, each fragmented, biotin-labeled cRNA sample (30 mg) was individually hybridized to an Affymetrix Hg-U133 plus 2.0 chip for 16 hours and rotated at 13 rpm at 50C."	"The chips were scanned using an Affymetrix GeneChip Scanner 3000 7G"	"Brain from cognitively intact individual."	"GC-RMA expression values were obtained from CEL files using GeneSpring 7.3.1 software.  PLIER expression values were obtained using Expression Console software using default settings.  PLIER and GC-RMA data were processed using GeneSpring 7.0 software, with default normalizations (Data transformation:set values<0.01 to 0.01; per chip: normalize to 50th percentile; per gene: normalize to median)."	"GPL570"	"Nicole,Claudia,Berchtold"	"nberchto@uci.edu"	"949 824 6071"	"Carl W. Cotman"	"Institute for Memory Impairments and Neurological Disorders"	"UC Irvine"	"1226 Gillespie Neuroscience Facility"	"Irvine"	"CA"	"92697-4540"	"USA"	"ftp://ftp.ncbi.nlm.nih.gov/geo/samples/GSM300nnn/GSM300189/suppl/GSM300189.CEL.gz"	"54675"	"Reanalyzed by: GSE119087"	"Reanalyzed by: GSE133349"	""	"74"	NA	NA	"entorhinal cortex"	"female"	"18, C"	NA
+"GSM300190"	"Hippocampus_female_74yrs_indiv18"	"GSM300190"	"Public on Oct 09 2008"	"Jun 25 2008"	"Jun 26 2019"	"RNA"	"1"	"brain, hippocampus, female, 74 years"	"Homo sapiens"	"individual: 18, C"	"brain region: hippocampus"	"gender: female"	"age (yrs): 74"	""	""	"N/A"	"N/A"	"total RNA"	"Total RNA was extracted from 10-200 mg of frozen, unfixed tissue using Trizol reagent (Invitrogen, Carlsbad CA), and purified using quick spin columns (Qiagen, Valencia CA).  RNA quality was assessed using the Agilent BioAnalyzer (Agilent Technologies, Palo Alto, CA) and UV spectrophotometer for the presence of sharp peaks and 28S/18S RNA."	"biotin"	"Total RNA (10 ug) from each sample was used to generate first strand cDNA using a T7-linked-(dT)24 primer, followed by in vitro transcription using the ENZO BioArray High-Yield RNA transcript labeling kit (ENZO Farmingdale, NY) to generate biotin-labeled cRNA target."	"9606"	"Using a robotics system (Biomek FX MicroArray Plex SA System; Beckman Coultier) to optimize consistency in processing and minimize handling variability, each fragmented, biotin-labeled cRNA sample (30 mg) was individually hybridized to an Affymetrix Hg-U133 plus 2.0 chip for 16 hours and rotated at 13 rpm at 50C."	"The chips were scanned using an Affymetrix GeneChip Scanner 3000 7G"	"Brain from cognitively intact individual."	"GC-RMA expression values were obtained from CEL files using GeneSpring 7.3.1 software.  PLIER expression values were obtained using Expression Console software using default settings.  PLIER and GC-RMA data were processed using GeneSpring 7.0 software, with default normalizations (Data transformation:set values<0.01 to 0.01; per chip: normalize to 50th percentile; per gene: normalize to median)."	"GPL570"	"Nicole,Claudia,Berchtold"	"nberchto@uci.edu"	"949 824 6071"	"Carl W. Cotman"	"Institute for Memory Impairments and Neurological Disorders"	"UC Irvine"	"1226 Gillespie Neuroscience Facility"	"Irvine"	"CA"	"92697-4540"	"USA"	"ftp://ftp.ncbi.nlm.nih.gov/geo/samples/GSM300nnn/GSM300190/suppl/GSM300190.CEL.gz"	"54675"	"Reanalyzed by: GSE119087"	"Reanalyzed by: GSE133349"	""	"74"	NA	NA	"hippocampus"	"female"	"18, C"	NA
+"GSM300191"	"SuperiorFrontalGyrus_female_74yrs_indiv18"	"GSM300191"	"Public on Oct 09 2008"	"Jun 25 2008"	"Jun 26 2019"	"RNA"	"1"	"brain, superior frontal gyrus, female, 74 years"	"Homo sapiens"	"individual: 18, C"	"brain region: superior frontal gyrus"	"gender: female"	"age (yrs): 74"	""	""	"N/A"	"N/A"	"total RNA"	"Total RNA was extracted from 10-200 mg of frozen, unfixed tissue using Trizol reagent (Invitrogen, Carlsbad CA), and purified using quick spin columns (Qiagen, Valencia CA).  RNA quality was assessed using the Agilent BioAnalyzer (Agilent Technologies, Palo Alto, CA) and UV spectrophotometer for the presence of sharp peaks and 28S/18S RNA."	"biotin"	"Total RNA (10 ug) from each sample was used to generate first strand cDNA using a T7-linked-(dT)24 primer, followed by in vitro transcription using the ENZO BioArray High-Yield RNA transcript labeling kit (ENZO Farmingdale, NY) to generate biotin-labeled cRNA target."	"9606"	"Using a robotics system (Biomek FX MicroArray Plex SA System; Beckman Coultier) to optimize consistency in processing and minimize handling variability, each fragmented, biotin-labeled cRNA sample (30 mg) was individually hybridized to an Affymetrix Hg-U133 plus 2.0 chip for 16 hours and rotated at 13 rpm at 50C."	"The chips were scanned using an Affymetrix GeneChip Scanner 3000 7G"	"Brain from cognitively intact individual."	"GC-RMA expression values were obtained from CEL files using GeneSpring 7.3.1 software.  PLIER expression values were obtained using Expression Console software using default settings.  PLIER and GC-RMA data were processed using GeneSpring 7.0 software, with default normalizations (Data transformation:set values<0.01 to 0.01; per chip: normalize to 50th percentile; per gene: normalize to median)."	"GPL570"	"Nicole,Claudia,Berchtold"	"nberchto@uci.edu"	"949 824 6071"	"Carl W. Cotman"	"Institute for Memory Impairments and Neurological Disorders"	"UC Irvine"	"1226 Gillespie Neuroscience Facility"	"Irvine"	"CA"	"92697-4540"	"USA"	"ftp://ftp.ncbi.nlm.nih.gov/geo/samples/GSM300nnn/GSM300191/suppl/GSM300191.CEL.gz"	"54675"	"Reanalyzed by: GSE119087"	"Reanalyzed by: GSE133349"	""	"74"	NA	NA	"superior frontal gyrus"	"female"	"18, C"	NA
+"GSM300192"	"EntorhinalCortex_female_99yrs_indiv2"	"GSM300192"	"Public on Oct 09 2008"	"Jun 25 2008"	"Jun 26 2019"	"RNA"	"1"	"brain, entorhinal cortex, female, 99 years"	"Homo sapiens"	"individual: 2, C"	"brain region: entorhinal cortex"	"gender: female"	"age (yrs): 99"	""	""	"N/A"	"N/A"	"total RNA"	"Total RNA was extracted from 10-200 mg of frozen, unfixed tissue using Trizol reagent (Invitrogen, Carlsbad CA), and purified using quick spin columns (Qiagen, Valencia CA).  RNA quality was assessed using the Agilent BioAnalyzer (Agilent Technologies, Palo Alto, CA) and UV spectrophotometer for the presence of sharp peaks and 28S/18S RNA."	"biotin"	"Total RNA (10 ug) from each sample was used to generate first strand cDNA using a T7-linked-(dT)24 primer, followed by in vitro transcription using the ENZO BioArray High-Yield RNA transcript labeling kit (ENZO Farmingdale, NY) to generate biotin-labeled cRNA target."	"9606"	"Using a robotics system (Biomek FX MicroArray Plex SA System; Beckman Coultier) to optimize consistency in processing and minimize handling variability, each fragmented, biotin-labeled cRNA sample (30 mg) was individually hybridized to an Affymetrix Hg-U133 plus 2.0 chip for 16 hours and rotated at 13 rpm at 50C."	"The chips were scanned using an Affymetrix GeneChip Scanner 3000 7G"	"Brain from cognitively intact individual."	"GC-RMA expression values were obtained from CEL files using GeneSpring 7.3.1 software.  PLIER expression values were obtained using Expression Console software using default settings.  PLIER and GC-RMA data were processed using GeneSpring 7.0 software, with default normalizations (Data transformation:set values<0.01 to 0.01; per chip: normalize to 50th percentile; per gene: normalize to median)."	"GPL570"	"Nicole,Claudia,Berchtold"	"nberchto@uci.edu"	"949 824 6071"	"Carl W. Cotman"	"Institute for Memory Impairments and Neurological Disorders"	"UC Irvine"	"1226 Gillespie Neuroscience Facility"	"Irvine"	"CA"	"92697-4540"	"USA"	"ftp://ftp.ncbi.nlm.nih.gov/geo/samples/GSM300nnn/GSM300192/suppl/GSM300192.CEL.gz"	"54675"	"Reanalyzed by: GSE119087"	"Reanalyzed by: GSE133349"	""	"99"	NA	NA	"entorhinal cortex"	"female"	"2, C"	NA
+"GSM300193"	"Hippocampus_female_99yrs_indiv2"	"GSM300193"	"Public on Oct 09 2008"	"Jun 25 2008"	"Jun 26 2019"	"RNA"	"1"	"brain, hippocampus, female, 99 years"	"Homo sapiens"	"individual: 2, C"	"brain region: hippocampus"	"gender: female"	"age (yrs): 99"	""	""	"N/A"	"N/A"	"total RNA"	"Total RNA was extracted from 10-200 mg of frozen, unfixed tissue using Trizol reagent (Invitrogen, Carlsbad CA), and purified using quick spin columns (Qiagen, Valencia CA).  RNA quality was assessed using the Agilent BioAnalyzer (Agilent Technologies, Palo Alto, CA) and UV spectrophotometer for the presence of sharp peaks and 28S/18S RNA."	"biotin"	"Total RNA (10 ug) from each sample was used to generate first strand cDNA using a T7-linked-(dT)24 primer, followed by in vitro transcription using the ENZO BioArray High-Yield RNA transcript labeling kit (ENZO Farmingdale, NY) to generate biotin-labeled cRNA target."	"9606"	"Using a robotics system (Biomek FX MicroArray Plex SA System; Beckman Coultier) to optimize consistency in processing and minimize handling variability, each fragmented, biotin-labeled cRNA sample (30 mg) was individually hybridized to an Affymetrix Hg-U133 plus 2.0 chip for 16 hours and rotated at 13 rpm at 50C."	"The chips were scanned using an Affymetrix GeneChip Scanner 3000 7G"	"Brain from cognitively intact individual."	"GC-RMA expression values were obtained from CEL files using GeneSpring 7.3.1 software.  PLIER expression values were obtained using Expression Console software using default settings.  PLIER and GC-RMA data were processed using GeneSpring 7.0 software, with default normalizations (Data transformation:set values<0.01 to 0.01; per chip: normalize to 50th percentile; per gene: normalize to median)."	"GPL570"	"Nicole,Claudia,Berchtold"	"nberchto@uci.edu"	"949 824 6071"	"Carl W. Cotman"	"Institute for Memory Impairments and Neurological Disorders"	"UC Irvine"	"1226 Gillespie Neuroscience Facility"	"Irvine"	"CA"	"92697-4540"	"USA"	"ftp://ftp.ncbi.nlm.nih.gov/geo/samples/GSM300nnn/GSM300193/suppl/GSM300193.CEL.gz"	"54675"	"Reanalyzed by: GSE119087"	"Reanalyzed by: GSE133349"	""	"99"	NA	NA	"hippocampus"	"female"	"2, C"	NA
+"GSM300194"	"PostcentralGyrus_female_99yrs_indiv2"	"GSM300194"	"Public on Oct 09 2008"	"Jun 25 2008"	"Jun 26 2019"	"RNA"	"1"	"brain, postcentral gyrus, female, 99 years"	"Homo sapiens"	"individual: 2, C"	"brain region: postcentral gyrus"	"gender: female"	"age (yrs): 99"	""	""	"N/A"	"N/A"	"total RNA"	"Total RNA was extracted from 10-200 mg of frozen, unfixed tissue using Trizol reagent (Invitrogen, Carlsbad CA), and purified using quick spin columns (Qiagen, Valencia CA).  RNA quality was assessed using the Agilent BioAnalyzer (Agilent Technologies, Palo Alto, CA) and UV spectrophotometer for the presence of sharp peaks and 28S/18S RNA."	"biotin"	"Total RNA (10 ug) from each sample was used to generate first strand cDNA using a T7-linked-(dT)24 primer, followed by in vitro transcription using the ENZO BioArray High-Yield RNA transcript labeling kit (ENZO Farmingdale, NY) to generate biotin-labeled cRNA target."	"9606"	"Using a robotics system (Biomek FX MicroArray Plex SA System; Beckman Coultier) to optimize consistency in processing and minimize handling variability, each fragmented, biotin-labeled cRNA sample (30 mg) was individually hybridized to an Affymetrix Hg-U133 plus 2.0 chip for 16 hours and rotated at 13 rpm at 50C."	"The chips were scanned using an Affymetrix GeneChip Scanner 3000 7G"	"Brain from cognitively intact individual."	"GC-RMA expression values were obtained from CEL files using GeneSpring 7.3.1 software.  PLIER expression values were obtained using Expression Console software using default settings.  PLIER and GC-RMA data were processed using GeneSpring 7.0 software, with default normalizations (Data transformation:set values<0.01 to 0.01; per chip: normalize to 50th percentile; per gene: normalize to median)."	"GPL570"	"Nicole,Claudia,Berchtold"	"nberchto@uci.edu"	"949 824 6071"	"Carl W. Cotman"	"Institute for Memory Impairments and Neurological Disorders"	"UC Irvine"	"1226 Gillespie Neuroscience Facility"	"Irvine"	"CA"	"92697-4540"	"USA"	"ftp://ftp.ncbi.nlm.nih.gov/geo/samples/GSM300nnn/GSM300194/suppl/GSM300194.CEL.gz"	"54675"	"Reanalyzed by: GSE119087"	"Reanalyzed by: GSE133349"	""	"99"	NA	NA	"postcentral gyrus"	"female"	"2, C"	NA
+"GSM300195"	"SuperiorFrontalGyrus_female_99yrs_indiv2"	"GSM300195"	"Public on Oct 09 2008"	"Jun 25 2008"	"Jun 26 2019"	"RNA"	"1"	"brain, superior frontal gyrus, female, 99 years"	"Homo sapiens"	"individual: 2, C"	"brain region: superior frontal gyrus"	"gender: female"	"age (yrs): 99"	""	""	"N/A"	"N/A"	"total RNA"	"Total RNA was extracted from 10-200 mg of frozen, unfixed tissue using Trizol reagent (Invitrogen, Carlsbad CA), and purified using quick spin columns (Qiagen, Valencia CA).  RNA quality was assessed using the Agilent BioAnalyzer (Agilent Technologies, Palo Alto, CA) and UV spectrophotometer for the presence of sharp peaks and 28S/18S RNA."	"biotin"	"Total RNA (10 ug) from each sample was used to generate first strand cDNA using a T7-linked-(dT)24 primer, followed by in vitro transcription using the ENZO BioArray High-Yield RNA transcript labeling kit (ENZO Farmingdale, NY) to generate biotin-labeled cRNA target."	"9606"	"Using a robotics system (Biomek FX MicroArray Plex SA System; Beckman Coultier) to optimize consistency in processing and minimize handling variability, each fragmented, biotin-labeled cRNA sample (30 mg) was individually hybridized to an Affymetrix Hg-U133 plus 2.0 chip for 16 hours and rotated at 13 rpm at 50C."	"The chips were scanned using an Affymetrix GeneChip Scanner 3000 7G"	"Brain from cognitively intact individual."	"GC-RMA expression values were obtained from CEL files using GeneSpring 7.3.1 software.  PLIER expression values were obtained using Expression Console software using default settings.  PLIER and GC-RMA data were processed using GeneSpring 7.0 software, with default normalizations (Data transformation:set values<0.01 to 0.01; per chip: normalize to 50th percentile; per gene: normalize to median)."	"GPL570"	"Nicole,Claudia,Berchtold"	"nberchto@uci.edu"	"949 824 6071"	"Carl W. Cotman"	"Institute for Memory Impairments and Neurological Disorders"	"UC Irvine"	"1226 Gillespie Neuroscience Facility"	"Irvine"	"CA"	"92697-4540"	"USA"	"ftp://ftp.ncbi.nlm.nih.gov/geo/samples/GSM300nnn/GSM300195/suppl/GSM300195.CEL.gz"	"54675"	"Reanalyzed by: GSE119087"	"Reanalyzed by: GSE133349"	""	"99"	NA	NA	"superior frontal gyrus"	"female"	"2, C"	NA
+"GSM300196"	"EntorhinalCortex_female_74yrs_indiv21"	"GSM300196"	"Public on Oct 09 2008"	"Jun 25 2008"	"Jun 26 2019"	"RNA"	"1"	"brain, entorhinal cortex, female, 74 years"	"Homo sapiens"	"individual: 21, C"	"brain region: entorhinal cortex"	"gender: female"	"age (yrs): 74"	""	""	"N/A"	"N/A"	"total RNA"	"Total RNA was extracted from 10-200 mg of frozen, unfixed tissue using Trizol reagent (Invitrogen, Carlsbad CA), and purified using quick spin columns (Qiagen, Valencia CA).  RNA quality was assessed using the Agilent BioAnalyzer (Agilent Technologies, Palo Alto, CA) and UV spectrophotometer for the presence of sharp peaks and 28S/18S RNA."	"biotin"	"Total RNA (10 ug) from each sample was used to generate first strand cDNA using a T7-linked-(dT)24 primer, followed by in vitro transcription using the ENZO BioArray High-Yield RNA transcript labeling kit (ENZO Farmingdale, NY) to generate biotin-labeled cRNA target."	"9606"	"Using a robotics system (Biomek FX MicroArray Plex SA System; Beckman Coultier) to optimize consistency in processing and minimize handling variability, each fragmented, biotin-labeled cRNA sample (30 mg) was individually hybridized to an Affymetrix Hg-U133 plus 2.0 chip for 16 hours and rotated at 13 rpm at 50C."	"The chips were scanned using an Affymetrix GeneChip Scanner 3000 7G"	"Brain from cognitively intact individual."	"GC-RMA expression values were obtained from CEL files using GeneSpring 7.3.1 software.  PLIER expression values were obtained using Expression Console software using default settings.  PLIER and GC-RMA data were processed using GeneSpring 7.0 software, with default normalizations (Data transformation:set values<0.01 to 0.01; per chip: normalize to 50th percentile; per gene: normalize to median)."	"GPL570"	"Nicole,Claudia,Berchtold"	"nberchto@uci.edu"	"949 824 6071"	"Carl W. Cotman"	"Institute for Memory Impairments and Neurological Disorders"	"UC Irvine"	"1226 Gillespie Neuroscience Facility"	"Irvine"	"CA"	"92697-4540"	"USA"	"ftp://ftp.ncbi.nlm.nih.gov/geo/samples/GSM300nnn/GSM300196/suppl/GSM300196.CEL.gz"	"54675"	"Reanalyzed by: GSE119087"	"Reanalyzed by: GSE133349"	""	"74"	NA	NA	"entorhinal cortex"	"female"	"21, C"	NA
+"GSM300197"	"Hippocampus_female_74yrs_indiv21"	"GSM300197"	"Public on Oct 09 2008"	"Jun 25 2008"	"Jun 26 2019"	"RNA"	"1"	"brain, hippocampus, female, 74 years"	"Homo sapiens"	"individual: 21, C"	"brain region: hippocampus"	"gender: female"	"age (yrs): 74"	""	""	"N/A"	"N/A"	"total RNA"	"Total RNA was extracted from 10-200 mg of frozen, unfixed tissue using Trizol reagent (Invitrogen, Carlsbad CA), and purified using quick spin columns (Qiagen, Valencia CA).  RNA quality was assessed using the Agilent BioAnalyzer (Agilent Technologies, Palo Alto, CA) and UV spectrophotometer for the presence of sharp peaks and 28S/18S RNA."	"biotin"	"Total RNA (10 ug) from each sample was used to generate first strand cDNA using a T7-linked-(dT)24 primer, followed by in vitro transcription using the ENZO BioArray High-Yield RNA transcript labeling kit (ENZO Farmingdale, NY) to generate biotin-labeled cRNA target."	"9606"	"Using a robotics system (Biomek FX MicroArray Plex SA System; Beckman Coultier) to optimize consistency in processing and minimize handling variability, each fragmented, biotin-labeled cRNA sample (30 mg) was individually hybridized to an Affymetrix Hg-U133 plus 2.0 chip for 16 hours and rotated at 13 rpm at 50C."	"The chips were scanned using an Affymetrix GeneChip Scanner 3000 7G"	"Brain from cognitively intact individual."	"GC-RMA expression values were obtained from CEL files using GeneSpring 7.3.1 software.  PLIER expression values were obtained using Expression Console software using default settings.  PLIER and GC-RMA data were processed using GeneSpring 7.0 software, with default normalizations (Data transformation:set values<0.01 to 0.01; per chip: normalize to 50th percentile; per gene: normalize to median)."	"GPL570"	"Nicole,Claudia,Berchtold"	"nberchto@uci.edu"	"949 824 6071"	"Carl W. Cotman"	"Institute for Memory Impairments and Neurological Disorders"	"UC Irvine"	"1226 Gillespie Neuroscience Facility"	"Irvine"	"CA"	"92697-4540"	"USA"	"ftp://ftp.ncbi.nlm.nih.gov/geo/samples/GSM300nnn/GSM300197/suppl/GSM300197.CEL.gz"	"54675"	"Reanalyzed by: GSE119087"	"Reanalyzed by: GSE133349"	""	"74"	NA	NA	"hippocampus"	"female"	"21, C"	NA
+"GSM300198"	"PostcentralGyrus_female_74yrs_indiv21"	"GSM300198"	"Public on Oct 09 2008"	"Jun 25 2008"	"Jun 26 2019"	"RNA"	"1"	"brain, postcentral gyrus, female, 74 years"	"Homo sapiens"	"individual: 21, C"	"brain region: postcentral gyrus"	"gender: female"	"age (yrs): 74"	""	""	"N/A"	"N/A"	"total RNA"	"Total RNA was extracted from 10-200 mg of frozen, unfixed tissue using Trizol reagent (Invitrogen, Carlsbad CA), and purified using quick spin columns (Qiagen, Valencia CA).  RNA quality was assessed using the Agilent BioAnalyzer (Agilent Technologies, Palo Alto, CA) and UV spectrophotometer for the presence of sharp peaks and 28S/18S RNA."	"biotin"	"Total RNA (10 ug) from each sample was used to generate first strand cDNA using a T7-linked-(dT)24 primer, followed by in vitro transcription using the ENZO BioArray High-Yield RNA transcript labeling kit (ENZO Farmingdale, NY) to generate biotin-labeled cRNA target."	"9606"	"Using a robotics system (Biomek FX MicroArray Plex SA System; Beckman Coultier) to optimize consistency in processing and minimize handling variability, each fragmented, biotin-labeled cRNA sample (30 mg) was individually hybridized to an Affymetrix Hg-U133 plus 2.0 chip for 16 hours and rotated at 13 rpm at 50C."	"The chips were scanned using an Affymetrix GeneChip Scanner 3000 7G"	"Brain from cognitively intact individual."	"GC-RMA expression values were obtained from CEL files using GeneSpring 7.3.1 software.  PLIER expression values were obtained using Expression Console software using default settings.  PLIER and GC-RMA data were processed using GeneSpring 7.0 software, with default normalizations (Data transformation:set values<0.01 to 0.01; per chip: normalize to 50th percentile; per gene: normalize to median)."	"GPL570"	"Nicole,Claudia,Berchtold"	"nberchto@uci.edu"	"949 824 6071"	"Carl W. Cotman"	"Institute for Memory Impairments and Neurological Disorders"	"UC Irvine"	"1226 Gillespie Neuroscience Facility"	"Irvine"	"CA"	"92697-4540"	"USA"	"ftp://ftp.ncbi.nlm.nih.gov/geo/samples/GSM300nnn/GSM300198/suppl/GSM300198.CEL.gz"	"54675"	"Reanalyzed by: GSE119087"	"Reanalyzed by: GSE133349"	""	"74"	NA	NA	"postcentral gyrus"	"female"	"21, C"	NA
+"GSM300199"	"SuperiorFrontalGyrus_female_74yrs_indiv21"	"GSM300199"	"Public on Oct 09 2008"	"Jun 25 2008"	"Jun 26 2019"	"RNA"	"1"	"brain, superior frontal gyrus, female, 74 years"	"Homo sapiens"	"individual: 21, C"	"brain region: superior frontal gyrus"	"gender: female"	"age (yrs): 74"	""	""	"N/A"	"N/A"	"total RNA"	"Total RNA was extracted from 10-200 mg of frozen, unfixed tissue using Trizol reagent (Invitrogen, Carlsbad CA), and purified using quick spin columns (Qiagen, Valencia CA).  RNA quality was assessed using the Agilent BioAnalyzer (Agilent Technologies, Palo Alto, CA) and UV spectrophotometer for the presence of sharp peaks and 28S/18S RNA."	"biotin"	"Total RNA (10 ug) from each sample was used to generate first strand cDNA using a T7-linked-(dT)24 primer, followed by in vitro transcription using the ENZO BioArray High-Yield RNA transcript labeling kit (ENZO Farmingdale, NY) to generate biotin-labeled cRNA target."	"9606"	"Using a robotics system (Biomek FX MicroArray Plex SA System; Beckman Coultier) to optimize consistency in processing and minimize handling variability, each fragmented, biotin-labeled cRNA sample (30 mg) was individually hybridized to an Affymetrix Hg-U133 plus 2.0 chip for 16 hours and rotated at 13 rpm at 50C."	"The chips were scanned using an Affymetrix GeneChip Scanner 3000 7G"	"Brain from cognitively intact individual."	"GC-RMA expression values were obtained from CEL files using GeneSpring 7.3.1 software.  PLIER expression values were obtained using Expression Console software using default settings.  PLIER and GC-RMA data were processed using GeneSpring 7.0 software, with default normalizations (Data transformation:set values<0.01 to 0.01; per chip: normalize to 50th percentile; per gene: normalize to median)."	"GPL570"	"Nicole,Claudia,Berchtold"	"nberchto@uci.edu"	"949 824 6071"	"Carl W. Cotman"	"Institute for Memory Impairments and Neurological Disorders"	"UC Irvine"	"1226 Gillespie Neuroscience Facility"	"Irvine"	"CA"	"92697-4540"	"USA"	"ftp://ftp.ncbi.nlm.nih.gov/geo/samples/GSM300nnn/GSM300199/suppl/GSM300199.CEL.gz"	"54675"	"Reanalyzed by: GSE119087"	"Reanalyzed by: GSE133349"	""	"74"	NA	NA	"superior frontal gyrus"	"female"	"21, C"	NA
+"GSM300200"	"PostcentralGyrus_female_92yrs_indiv26"	"GSM300200"	"Public on Oct 09 2008"	"Jun 25 2008"	"Jun 26 2019"	"RNA"	"1"	"brain, postcentral gyrus, female, 92 years"	"Homo sapiens"	"individual: 26, C"	"brain region: postcentral gyrus"	"gender: female"	"age (yrs): 92"	""	""	"N/A"	"N/A"	"total RNA"	"Total RNA was extracted from 10-200 mg of frozen, unfixed tissue using Trizol reagent (Invitrogen, Carlsbad CA), and purified using quick spin columns (Qiagen, Valencia CA).  RNA quality was assessed using the Agilent BioAnalyzer (Agilent Technologies, Palo Alto, CA) and UV spectrophotometer for the presence of sharp peaks and 28S/18S RNA."	"biotin"	"Total RNA (10 ug) from each sample was used to generate first strand cDNA using a T7-linked-(dT)24 primer, followed by in vitro transcription using the ENZO BioArray High-Yield RNA transcript labeling kit (ENZO Farmingdale, NY) to generate biotin-labeled cRNA target."	"9606"	"Using a robotics system (Biomek FX MicroArray Plex SA System; Beckman Coultier) to optimize consistency in processing and minimize handling variability, each fragmented, biotin-labeled cRNA sample (30 mg) was individually hybridized to an Affymetrix Hg-U133 plus 2.0 chip for 16 hours and rotated at 13 rpm at 50C."	"The chips were scanned using an Affymetrix GeneChip Scanner 3000 7G"	"Brain from cognitively intact individual."	"GC-RMA expression values were obtained from CEL files using GeneSpring 7.3.1 software.  PLIER expression values were obtained using Expression Console software using default settings.  PLIER and GC-RMA data were processed using GeneSpring 7.0 software, with default normalizations (Data transformation:set values<0.01 to 0.01; per chip: normalize to 50th percentile; per gene: normalize to median)."	"GPL570"	"Nicole,Claudia,Berchtold"	"nberchto@uci.edu"	"949 824 6071"	"Carl W. Cotman"	"Institute for Memory Impairments and Neurological Disorders"	"UC Irvine"	"1226 Gillespie Neuroscience Facility"	"Irvine"	"CA"	"92697-4540"	"USA"	"ftp://ftp.ncbi.nlm.nih.gov/geo/samples/GSM300nnn/GSM300200/suppl/GSM300200.CEL.gz"	"54675"	"Reanalyzed by: GSE119087"	"Reanalyzed by: GSE133349"	""	"92"	NA	NA	"postcentral gyrus"	"female"	"26, C"	NA
+"GSM300201"	"SuperiorFrontalGyrus_female_92yrs_indiv26"	"GSM300201"	"Public on Oct 09 2008"	"Jun 25 2008"	"Jun 26 2019"	"RNA"	"1"	"brain, superior frontal gyrus, female, 92 years"	"Homo sapiens"	"individual: 26, C"	"brain region: superior frontal gyrus"	"gender: female"	"age (yrs): 92"	""	""	"N/A"	"N/A"	"total RNA"	"Total RNA was extracted from 10-200 mg of frozen, unfixed tissue using Trizol reagent (Invitrogen, Carlsbad CA), and purified using quick spin columns (Qiagen, Valencia CA).  RNA quality was assessed using the Agilent BioAnalyzer (Agilent Technologies, Palo Alto, CA) and UV spectrophotometer for the presence of sharp peaks and 28S/18S RNA."	"biotin"	"Total RNA (10 ug) from each sample was used to generate first strand cDNA using a T7-linked-(dT)24 primer, followed by in vitro transcription using the ENZO BioArray High-Yield RNA transcript labeling kit (ENZO Farmingdale, NY) to generate biotin-labeled cRNA target."	"9606"	"Using a robotics system (Biomek FX MicroArray Plex SA System; Beckman Coultier) to optimize consistency in processing and minimize handling variability, each fragmented, biotin-labeled cRNA sample (30 mg) was individually hybridized to an Affymetrix Hg-U133 plus 2.0 chip for 16 hours and rotated at 13 rpm at 50C."	"The chips were scanned using an Affymetrix GeneChip Scanner 3000 7G"	"Brain from cognitively intact individual."	"GC-RMA expression values were obtained from CEL files using GeneSpring 7.3.1 software.  PLIER expression values were obtained using Expression Console software using default settings.  PLIER and GC-RMA data were processed using GeneSpring 7.0 software, with default normalizations (Data transformation:set values<0.01 to 0.01; per chip: normalize to 50th percentile; per gene: normalize to median)."	"GPL570"	"Nicole,Claudia,Berchtold"	"nberchto@uci.edu"	"949 824 6071"	"Carl W. Cotman"	"Institute for Memory Impairments and Neurological Disorders"	"UC Irvine"	"1226 Gillespie Neuroscience Facility"	"Irvine"	"CA"	"92697-4540"	"USA"	"ftp://ftp.ncbi.nlm.nih.gov/geo/samples/GSM300nnn/GSM300201/suppl/GSM300201.CEL.gz"	"54675"	"Reanalyzed by: GSE119087"	"Reanalyzed by: GSE133349"	""	"92"	NA	NA	"superior frontal gyrus"	"female"	"26, C"	NA
+"GSM300202"	"PostcentralGyrus_female_91yrs_indiv27"	"GSM300202"	"Public on Oct 09 2008"	"Jun 25 2008"	"Jun 26 2019"	"RNA"	"1"	"brain, postcentral gyrus, female, 91 years"	"Homo sapiens"	"individual: 27, C"	"brain region: postcentral gyrus"	"gender: female"	"age (yrs): 91"	""	""	"N/A"	"N/A"	"total RNA"	"Total RNA was extracted from 10-200 mg of frozen, unfixed tissue using Trizol reagent (Invitrogen, Carlsbad CA), and purified using quick spin columns (Qiagen, Valencia CA).  RNA quality was assessed using the Agilent BioAnalyzer (Agilent Technologies, Palo Alto, CA) and UV spectrophotometer for the presence of sharp peaks and 28S/18S RNA."	"biotin"	"Total RNA (10 ug) from each sample was used to generate first strand cDNA using a T7-linked-(dT)24 primer, followed by in vitro transcription using the ENZO BioArray High-Yield RNA transcript labeling kit (ENZO Farmingdale, NY) to generate biotin-labeled cRNA target."	"9606"	"Using a robotics system (Biomek FX MicroArray Plex SA System; Beckman Coultier) to optimize consistency in processing and minimize handling variability, each fragmented, biotin-labeled cRNA sample (30 mg) was individually hybridized to an Affymetrix Hg-U133 plus 2.0 chip for 16 hours and rotated at 13 rpm at 50C."	"The chips were scanned using an Affymetrix GeneChip Scanner 3000 7G"	"Brain from cognitively intact individual."	"GC-RMA expression values were obtained from CEL files using GeneSpring 7.3.1 software.  PLIER expression values were obtained using Expression Console software using default settings.  PLIER and GC-RMA data were processed using GeneSpring 7.0 software, with default normalizations (Data transformation:set values<0.01 to 0.01; per chip: normalize to 50th percentile; per gene: normalize to median)."	"GPL570"	"Nicole,Claudia,Berchtold"	"nberchto@uci.edu"	"949 824 6071"	"Carl W. Cotman"	"Institute for Memory Impairments and Neurological Disorders"	"UC Irvine"	"1226 Gillespie Neuroscience Facility"	"Irvine"	"CA"	"92697-4540"	"USA"	"ftp://ftp.ncbi.nlm.nih.gov/geo/samples/GSM300nnn/GSM300202/suppl/GSM300202.CEL.gz"	"54675"	"Reanalyzed by: GSE119087"	"Reanalyzed by: GSE133349"	""	"91"	NA	NA	"postcentral gyrus"	"female"	"27, C"	NA
+"GSM300203"	"SuperiorFrontalGyrus_female_91yrs_indiv27"	"GSM300203"	"Public on Oct 09 2008"	"Jun 25 2008"	"Jun 26 2019"	"RNA"	"1"	"brain, superior frontal gyrus, female, 91 years"	"Homo sapiens"	"individual: 27, C"	"brain region: superior frontal gyrus"	"gender: female"	"age (yrs): 91"	""	""	"N/A"	"N/A"	"total RNA"	"Total RNA was extracted from 10-200 mg of frozen, unfixed tissue using Trizol reagent (Invitrogen, Carlsbad CA), and purified using quick spin columns (Qiagen, Valencia CA).  RNA quality was assessed using the Agilent BioAnalyzer (Agilent Technologies, Palo Alto, CA) and UV spectrophotometer for the presence of sharp peaks and 28S/18S RNA."	"biotin"	"Total RNA (10 ug) from each sample was used to generate first strand cDNA using a T7-linked-(dT)24 primer, followed by in vitro transcription using the ENZO BioArray High-Yield RNA transcript labeling kit (ENZO Farmingdale, NY) to generate biotin-labeled cRNA target."	"9606"	"Using a robotics system (Biomek FX MicroArray Plex SA System; Beckman Coultier) to optimize consistency in processing and minimize handling variability, each fragmented, biotin-labeled cRNA sample (30 mg) was individually hybridized to an Affymetrix Hg-U133 plus 2.0 chip for 16 hours and rotated at 13 rpm at 50C."	"The chips were scanned using an Affymetrix GeneChip Scanner 3000 7G"	"Brain from cognitively intact individual."	"GC-RMA expression values were obtained from CEL files using GeneSpring 7.3.1 software.  PLIER expression values were obtained using Expression Console software using default settings.  PLIER and GC-RMA data were processed using GeneSpring 7.0 software, with default normalizations (Data transformation:set values<0.01 to 0.01; per chip: normalize to 50th percentile; per gene: normalize to median)."	"GPL570"	"Nicole,Claudia,Berchtold"	"nberchto@uci.edu"	"949 824 6071"	"Carl W. Cotman"	"Institute for Memory Impairments and Neurological Disorders"	"UC Irvine"	"1226 Gillespie Neuroscience Facility"	"Irvine"	"CA"	"92697-4540"	"USA"	"ftp://ftp.ncbi.nlm.nih.gov/geo/samples/GSM300nnn/GSM300203/suppl/GSM300203.CEL.gz"	"54675"	"Reanalyzed by: GSE119087"	"Reanalyzed by: GSE133349"	""	"91"	NA	NA	"superior frontal gyrus"	"female"	"27, C"	NA
+"GSM300204"	"EntorhinalCortex_male_83yrs_indiv28"	"GSM300204"	"Public on Oct 09 2008"	"Jun 25 2008"	"Jun 26 2019"	"RNA"	"1"	"brain, entorhinal cortex, male, 83 years"	"Homo sapiens"	"individual: 28, C"	"brain region: entorhinal cortex"	"gender: male"	"age (yrs): 83"	""	""	"N/A"	"N/A"	"total RNA"	"Total RNA was extracted from 10-200 mg of frozen, unfixed tissue using Trizol reagent (Invitrogen, Carlsbad CA), and purified using quick spin columns (Qiagen, Valencia CA).  RNA quality was assessed using the Agilent BioAnalyzer (Agilent Technologies, Palo Alto, CA) and UV spectrophotometer for the presence of sharp peaks and 28S/18S RNA."	"biotin"	"Total RNA (10 ug) from each sample was used to generate first strand cDNA using a T7-linked-(dT)24 primer, followed by in vitro transcription using the ENZO BioArray High-Yield RNA transcript labeling kit (ENZO Farmingdale, NY) to generate biotin-labeled cRNA target."	"9606"	"Using a robotics system (Biomek FX MicroArray Plex SA System; Beckman Coultier) to optimize consistency in processing and minimize handling variability, each fragmented, biotin-labeled cRNA sample (30 mg) was individually hybridized to an Affymetrix Hg-U133 plus 2.0 chip for 16 hours and rotated at 13 rpm at 50C."	"The chips were scanned using an Affymetrix GeneChip Scanner 3000 7G"	"Brain from cognitively intact individual."	"GC-RMA expression values were obtained from CEL files using GeneSpring 7.3.1 software.  PLIER expression values were obtained using Expression Console software using default settings.  PLIER and GC-RMA data were processed using GeneSpring 7.0 software, with default normalizations (Data transformation:set values<0.01 to 0.01; per chip: normalize to 50th percentile; per gene: normalize to median)."	"GPL570"	"Nicole,Claudia,Berchtold"	"nberchto@uci.edu"	"949 824 6071"	"Carl W. Cotman"	"Institute for Memory Impairments and Neurological Disorders"	"UC Irvine"	"1226 Gillespie Neuroscience Facility"	"Irvine"	"CA"	"92697-4540"	"USA"	"ftp://ftp.ncbi.nlm.nih.gov/geo/samples/GSM300nnn/GSM300204/suppl/GSM300204.CEL.gz"	"54675"	"Reanalyzed by: GSE119087"	"Reanalyzed by: GSE133349"	""	"83"	NA	NA	"entorhinal cortex"	"male"	"28, C"	NA
+"GSM300205"	"Hippocampus_male_83yrs_indiv28"	"GSM300205"	"Public on Oct 09 2008"	"Jun 25 2008"	"Jun 26 2019"	"RNA"	"1"	"brain, hippocampus, male, 83 years"	"Homo sapiens"	"individual: 28, C"	"brain region: hippocampus"	"gender: male"	"age (yrs): 83"	""	""	"N/A"	"N/A"	"total RNA"	"Total RNA was extracted from 10-200 mg of frozen, unfixed tissue using Trizol reagent (Invitrogen, Carlsbad CA), and purified using quick spin columns (Qiagen, Valencia CA).  RNA quality was assessed using the Agilent BioAnalyzer (Agilent Technologies, Palo Alto, CA) and UV spectrophotometer for the presence of sharp peaks and 28S/18S RNA."	"biotin"	"Total RNA (10 ug) from each sample was used to generate first strand cDNA using a T7-linked-(dT)24 primer, followed by in vitro transcription using the ENZO BioArray High-Yield RNA transcript labeling kit (ENZO Farmingdale, NY) to generate biotin-labeled cRNA target."	"9606"	"Using a robotics system (Biomek FX MicroArray Plex SA System; Beckman Coultier) to optimize consistency in processing and minimize handling variability, each fragmented, biotin-labeled cRNA sample (30 mg) was individually hybridized to an Affymetrix Hg-U133 plus 2.0 chip for 16 hours and rotated at 13 rpm at 50C."	"The chips were scanned using an Affymetrix GeneChip Scanner 3000 7G"	"Brain from cognitively intact individual."	"GC-RMA expression values were obtained from CEL files using GeneSpring 7.3.1 software.  PLIER expression values were obtained using Expression Console software using default settings.  PLIER and GC-RMA data were processed using GeneSpring 7.0 software, with default normalizations (Data transformation:set values<0.01 to 0.01; per chip: normalize to 50th percentile; per gene: normalize to median)."	"GPL570"	"Nicole,Claudia,Berchtold"	"nberchto@uci.edu"	"949 824 6071"	"Carl W. Cotman"	"Institute for Memory Impairments and Neurological Disorders"	"UC Irvine"	"1226 Gillespie Neuroscience Facility"	"Irvine"	"CA"	"92697-4540"	"USA"	"ftp://ftp.ncbi.nlm.nih.gov/geo/samples/GSM300nnn/GSM300205/suppl/GSM300205.CEL.gz"	"54675"	"Reanalyzed by: GSE119087"	"Reanalyzed by: GSE133349"	""	"83"	NA	NA	"hippocampus"	"male"	"28, C"	NA
+"GSM300206"	"PostcentralGyrus_male_83yrs_indiv28"	"GSM300206"	"Public on Oct 09 2008"	"Jun 25 2008"	"Jun 26 2019"	"RNA"	"1"	"brain, postcentral gyrus, male, 83 years"	"Homo sapiens"	"individual: 28, C"	"brain region: postcentral gyrus"	"gender: male"	"age (yrs): 83"	""	""	"N/A"	"N/A"	"total RNA"	"Total RNA was extracted from 10-200 mg of frozen, unfixed tissue using Trizol reagent (Invitrogen, Carlsbad CA), and purified using quick spin columns (Qiagen, Valencia CA).  RNA quality was assessed using the Agilent BioAnalyzer (Agilent Technologies, Palo Alto, CA) and UV spectrophotometer for the presence of sharp peaks and 28S/18S RNA."	"biotin"	"Total RNA (10 ug) from each sample was used to generate first strand cDNA using a T7-linked-(dT)24 primer, followed by in vitro transcription using the ENZO BioArray High-Yield RNA transcript labeling kit (ENZO Farmingdale, NY) to generate biotin-labeled cRNA target."	"9606"	"Using a robotics system (Biomek FX MicroArray Plex SA System; Beckman Coultier) to optimize consistency in processing and minimize handling variability, each fragmented, biotin-labeled cRNA sample (30 mg) was individually hybridized to an Affymetrix Hg-U133 plus 2.0 chip for 16 hours and rotated at 13 rpm at 50C."	"The chips were scanned using an Affymetrix GeneChip Scanner 3000 7G"	"Brain from cognitively intact individual."	"GC-RMA expression values were obtained from CEL files using GeneSpring 7.3.1 software.  PLIER expression values were obtained using Expression Console software using default settings.  PLIER and GC-RMA data were processed using GeneSpring 7.0 software, with default normalizations (Data transformation:set values<0.01 to 0.01; per chip: normalize to 50th percentile; per gene: normalize to median)."	"GPL570"	"Nicole,Claudia,Berchtold"	"nberchto@uci.edu"	"949 824 6071"	"Carl W. Cotman"	"Institute for Memory Impairments and Neurological Disorders"	"UC Irvine"	"1226 Gillespie Neuroscience Facility"	"Irvine"	"CA"	"92697-4540"	"USA"	"ftp://ftp.ncbi.nlm.nih.gov/geo/samples/GSM300nnn/GSM300206/suppl/GSM300206.CEL.gz"	"54675"	"Reanalyzed by: GSE119087"	"Reanalyzed by: GSE133349"	""	"83"	NA	NA	"postcentral gyrus"	"male"	"28, C"	NA
+"GSM300207"	"SuperiorFrontalGyrus_male_83yrs_indiv28"	"GSM300207"	"Public on Oct 09 2008"	"Jun 25 2008"	"Jun 26 2019"	"RNA"	"1"	"brain, superior frontal gyrus, male, 83 years"	"Homo sapiens"	"individual: 28, C"	"brain region: superior frontal gyrus"	"gender: male"	"age (yrs): 83"	""	""	"N/A"	"N/A"	"total RNA"	"Total RNA was extracted from 10-200 mg of frozen, unfixed tissue using Trizol reagent (Invitrogen, Carlsbad CA), and purified using quick spin columns (Qiagen, Valencia CA).  RNA quality was assessed using the Agilent BioAnalyzer (Agilent Technologies, Palo Alto, CA) and UV spectrophotometer for the presence of sharp peaks and 28S/18S RNA."	"biotin"	"Total RNA (10 ug) from each sample was used to generate first strand cDNA using a T7-linked-(dT)24 primer, followed by in vitro transcription using the ENZO BioArray High-Yield RNA transcript labeling kit (ENZO Farmingdale, NY) to generate biotin-labeled cRNA target."	"9606"	"Using a robotics system (Biomek FX MicroArray Plex SA System; Beckman Coultier) to optimize consistency in processing and minimize handling variability, each fragmented, biotin-labeled cRNA sample (30 mg) was individually hybridized to an Affymetrix Hg-U133 plus 2.0 chip for 16 hours and rotated at 13 rpm at 50C."	"The chips were scanned using an Affymetrix GeneChip Scanner 3000 7G"	"Brain from cognitively intact individual."	"GC-RMA expression values were obtained from CEL files using GeneSpring 7.3.1 software.  PLIER expression values were obtained using Expression Console software using default settings.  PLIER and GC-RMA data were processed using GeneSpring 7.0 software, with default normalizations (Data transformation:set values<0.01 to 0.01; per chip: normalize to 50th percentile; per gene: normalize to median)."	"GPL570"	"Nicole,Claudia,Berchtold"	"nberchto@uci.edu"	"949 824 6071"	"Carl W. Cotman"	"Institute for Memory Impairments and Neurological Disorders"	"UC Irvine"	"1226 Gillespie Neuroscience Facility"	"Irvine"	"CA"	"92697-4540"	"USA"	"ftp://ftp.ncbi.nlm.nih.gov/geo/samples/GSM300nnn/GSM300207/suppl/GSM300207.CEL.gz"	"54675"	"Reanalyzed by: GSE119087"	"Reanalyzed by: GSE133349"	""	"83"	NA	NA	"superior frontal gyrus"	"male"	"28, C"	NA
+"GSM300208"	"EntorhinalCortex_male_28yrs_indiv29"	"GSM300208"	"Public on Oct 09 2008"	"Jun 25 2008"	"Jun 26 2019"	"RNA"	"1"	"brain, entorhinal cortex, male, 28 years"	"Homo sapiens"	"individual: 29, C"	"brain region: entorhinal cortex"	"gender: male"	"age (yrs): 28"	""	""	"N/A"	"N/A"	"total RNA"	"Total RNA was extracted from 10-200 mg of frozen, unfixed tissue using Trizol reagent (Invitrogen, Carlsbad CA), and purified using quick spin columns (Qiagen, Valencia CA).  RNA quality was assessed using the Agilent BioAnalyzer (Agilent Technologies, Palo Alto, CA) and UV spectrophotometer for the presence of sharp peaks and 28S/18S RNA."	"biotin"	"Total RNA (10 ug) from each sample was used to generate first strand cDNA using a T7-linked-(dT)24 primer, followed by in vitro transcription using the ENZO BioArray High-Yield RNA transcript labeling kit (ENZO Farmingdale, NY) to generate biotin-labeled cRNA target."	"9606"	"Using a robotics system (Biomek FX MicroArray Plex SA System; Beckman Coultier) to optimize consistency in processing and minimize handling variability, each fragmented, biotin-labeled cRNA sample (30 mg) was individually hybridized to an Affymetrix Hg-U133 plus 2.0 chip for 16 hours and rotated at 13 rpm at 50C."	"The chips were scanned using an Affymetrix GeneChip Scanner 3000 7G"	"Brain from cognitively intact individual."	"GC-RMA expression values were obtained from CEL files using GeneSpring 7.3.1 software.  PLIER expression values were obtained using Expression Console software using default settings.  PLIER and GC-RMA data were processed using GeneSpring 7.0 software, with default normalizations (Data transformation:set values<0.01 to 0.01; per chip: normalize to 50th percentile; per gene: normalize to median)."	"GPL570"	"Nicole,Claudia,Berchtold"	"nberchto@uci.edu"	"949 824 6071"	"Carl W. Cotman"	"Institute for Memory Impairments and Neurological Disorders"	"UC Irvine"	"1226 Gillespie Neuroscience Facility"	"Irvine"	"CA"	"92697-4540"	"USA"	"ftp://ftp.ncbi.nlm.nih.gov/geo/samples/GSM300nnn/GSM300208/suppl/GSM300208.CEL.gz"	"54675"	"Reanalyzed by: GSE119087"	"Reanalyzed by: GSE133349"	""	"28"	NA	NA	"entorhinal cortex"	"male"	"29, C"	NA
+"GSM300209"	"Hippocampus_male_28yrs_indiv29"	"GSM300209"	"Public on Oct 09 2008"	"Jun 25 2008"	"May 03 2022"	"RNA"	"1"	"brain, hippocampus, male, 28 years"	"Homo sapiens"	"individual: 29, C"	"brain region: hippocampus"	"gender: male"	"age (yrs): 28"	""	""	"N/A"	"N/A"	"total RNA"	"Total RNA was extracted from 10-200 mg of frozen, unfixed tissue using Trizol reagent (Invitrogen, Carlsbad CA), and purified using quick spin columns (Qiagen, Valencia CA).  RNA quality was assessed using the Agilent BioAnalyzer (Agilent Technologies, Palo Alto, CA) and UV spectrophotometer for the presence of sharp peaks and 28S/18S RNA."	"biotin"	"Total RNA (10 ug) from each sample was used to generate first strand cDNA using a T7-linked-(dT)24 primer, followed by in vitro transcription using the ENZO BioArray High-Yield RNA transcript labeling kit (ENZO Farmingdale, NY) to generate biotin-labeled cRNA target."	"9606"	"Using a robotics system (Biomek FX MicroArray Plex SA System; Beckman Coultier) to optimize consistency in processing and minimize handling variability, each fragmented, biotin-labeled cRNA sample (30 mg) was individually hybridized to an Affymetrix Hg-U133 plus 2.0 chip for 16 hours and rotated at 13 rpm at 50C."	"The chips were scanned using an Affymetrix GeneChip Scanner 3000 7G"	"Brain from cognitively intact individual."	"GC-RMA expression values were obtained from CEL files using GeneSpring 7.3.1 software.  PLIER expression values were obtained using Expression Console software using default settings.  PLIER and GC-RMA data were processed using GeneSpring 7.0 software, with default normalizations (Data transformation:set values<0.01 to 0.01; per chip: normalize to 50th percentile; per gene: normalize to median)."	"GPL570"	"Nicole,Claudia,Berchtold"	"nberchto@uci.edu"	"949 824 6071"	"Carl W. Cotman"	"Institute for Memory Impairments and Neurological Disorders"	"UC Irvine"	"1226 Gillespie Neuroscience Facility"	"Irvine"	"CA"	"92697-4540"	"USA"	"ftp://ftp.ncbi.nlm.nih.gov/geo/samples/GSM300nnn/GSM300209/suppl/GSM300209.CEL.gz"	"54675"	"Reanalyzed by: GSE119087"	"Reanalyzed by: GSE133349"	"Reanalyzed by: GSE202101"	"28"	NA	NA	"hippocampus"	"male"	"29, C"	NA
+"GSM300210"	"PostcentralGyrus_male_28yrs_indiv29"	"GSM300210"	"Public on Oct 09 2008"	"Jun 25 2008"	"Jun 26 2019"	"RNA"	"1"	"brain, postcentral gyrus, male, 28 years"	"Homo sapiens"	"individual: 29, C"	"brain region: postcentral gyrus"	"gender: male"	"age (yrs): 28"	""	""	"N/A"	"N/A"	"total RNA"	"Total RNA was extracted from 10-200 mg of frozen, unfixed tissue using Trizol reagent (Invitrogen, Carlsbad CA), and purified using quick spin columns (Qiagen, Valencia CA).  RNA quality was assessed using the Agilent BioAnalyzer (Agilent Technologies, Palo Alto, CA) and UV spectrophotometer for the presence of sharp peaks and 28S/18S RNA."	"biotin"	"Total RNA (10 ug) from each sample was used to generate first strand cDNA using a T7-linked-(dT)24 primer, followed by in vitro transcription using the ENZO BioArray High-Yield RNA transcript labeling kit (ENZO Farmingdale, NY) to generate biotin-labeled cRNA target."	"9606"	"Using a robotics system (Biomek FX MicroArray Plex SA System; Beckman Coultier) to optimize consistency in processing and minimize handling variability, each fragmented, biotin-labeled cRNA sample (30 mg) was individually hybridized to an Affymetrix Hg-U133 plus 2.0 chip for 16 hours and rotated at 13 rpm at 50C."	"The chips were scanned using an Affymetrix GeneChip Scanner 3000 7G"	"Brain from cognitively intact individual."	"GC-RMA expression values were obtained from CEL files using GeneSpring 7.3.1 software.  PLIER expression values were obtained using Expression Console software using default settings.  PLIER and GC-RMA data were processed using GeneSpring 7.0 software, with default normalizations (Data transformation:set values<0.01 to 0.01; per chip: normalize to 50th percentile; per gene: normalize to median)."	"GPL570"	"Nicole,Claudia,Berchtold"	"nberchto@uci.edu"	"949 824 6071"	"Carl W. Cotman"	"Institute for Memory Impairments and Neurological Disorders"	"UC Irvine"	"1226 Gillespie Neuroscience Facility"	"Irvine"	"CA"	"92697-4540"	"USA"	"ftp://ftp.ncbi.nlm.nih.gov/geo/samples/GSM300nnn/GSM300210/suppl/GSM300210.CEL.gz"	"54675"	"Reanalyzed by: GSE119087"	"Reanalyzed by: GSE133349"	""	"28"	NA	NA	"postcentral gyrus"	"male"	"29, C"	NA
+"GSM300211"	"SuperiorFrontalGyrus_male_28yrs_indiv29"	"GSM300211"	"Public on Oct 09 2008"	"Jun 25 2008"	"Jun 26 2019"	"RNA"	"1"	"brain, superior frontal gyrus, male, 28 years"	"Homo sapiens"	"individual: 29, C"	"brain region: superior frontal gyrus"	"gender: male"	"age (yrs): 28"	""	""	"N/A"	"N/A"	"total RNA"	"Total RNA was extracted from 10-200 mg of frozen, unfixed tissue using Trizol reagent (Invitrogen, Carlsbad CA), and purified using quick spin columns (Qiagen, Valencia CA).  RNA quality was assessed using the Agilent BioAnalyzer (Agilent Technologies, Palo Alto, CA) and UV spectrophotometer for the presence of sharp peaks and 28S/18S RNA."	"biotin"	"Total RNA (10 ug) from each sample was used to generate first strand cDNA using a T7-linked-(dT)24 primer, followed by in vitro transcription using the ENZO BioArray High-Yield RNA transcript labeling kit (ENZO Farmingdale, NY) to generate biotin-labeled cRNA target."	"9606"	"Using a robotics system (Biomek FX MicroArray Plex SA System; Beckman Coultier) to optimize consistency in processing and minimize handling variability, each fragmented, biotin-labeled cRNA sample (30 mg) was individually hybridized to an Affymetrix Hg-U133 plus 2.0 chip for 16 hours and rotated at 13 rpm at 50C."	"The chips were scanned using an Affymetrix GeneChip Scanner 3000 7G"	"Brain from cognitively intact individual."	"GC-RMA expression values were obtained from CEL files using GeneSpring 7.3.1 software.  PLIER expression values were obtained using Expression Console software using default settings.  PLIER and GC-RMA data were processed using GeneSpring 7.0 software, with default normalizations (Data transformation:set values<0.01 to 0.01; per chip: normalize to 50th percentile; per gene: normalize to median)."	"GPL570"	"Nicole,Claudia,Berchtold"	"nberchto@uci.edu"	"949 824 6071"	"Carl W. Cotman"	"Institute for Memory Impairments and Neurological Disorders"	"UC Irvine"	"1226 Gillespie Neuroscience Facility"	"Irvine"	"CA"	"92697-4540"	"USA"	"ftp://ftp.ncbi.nlm.nih.gov/geo/samples/GSM300nnn/GSM300211/suppl/GSM300211.CEL.gz"	"54675"	"Reanalyzed by: GSE119087"	"Reanalyzed by: GSE133349"	""	"28"	NA	NA	"superior frontal gyrus"	"male"	"29, C"	NA
+"GSM300212"	"PostcentralGyrus_female_74yrs_indiv30"	"GSM300212"	"Public on Oct 09 2008"	"Jun 25 2008"	"Jun 26 2019"	"RNA"	"1"	"brain, postcentral gyrus, female, 74 years"	"Homo sapiens"	"individual: 30, C"	"brain region: postcentral gyrus"	"gender: female"	"age (yrs): 74"	""	""	"N/A"	"N/A"	"total RNA"	"Total RNA was extracted from 10-200 mg of frozen, unfixed tissue using Trizol reagent (Invitrogen, Carlsbad CA), and purified using quick spin columns (Qiagen, Valencia CA).  RNA quality was assessed using the Agilent BioAnalyzer (Agilent Technologies, Palo Alto, CA) and UV spectrophotometer for the presence of sharp peaks and 28S/18S RNA."	"biotin"	"Total RNA (10 ug) from each sample was used to generate first strand cDNA using a T7-linked-(dT)24 primer, followed by in vitro transcription using the ENZO BioArray High-Yield RNA transcript labeling kit (ENZO Farmingdale, NY) to generate biotin-labeled cRNA target."	"9606"	"Using a robotics system (Biomek FX MicroArray Plex SA System; Beckman Coultier) to optimize consistency in processing and minimize handling variability, each fragmented, biotin-labeled cRNA sample (30 mg) was individually hybridized to an Affymetrix Hg-U133 plus 2.0 chip for 16 hours and rotated at 13 rpm at 50C."	"The chips were scanned using an Affymetrix GeneChip Scanner 3000 7G"	"Brain from cognitively intact individual."	"GC-RMA expression values were obtained from CEL files using GeneSpring 7.3.1 software.  PLIER expression values were obtained using Expression Console software using default settings.  PLIER and GC-RMA data were processed using GeneSpring 7.0 software, with default normalizations (Data transformation:set values<0.01 to 0.01; per chip: normalize to 50th percentile; per gene: normalize to median)."	"GPL570"	"Nicole,Claudia,Berchtold"	"nberchto@uci.edu"	"949 824 6071"	"Carl W. Cotman"	"Institute for Memory Impairments and Neurological Disorders"	"UC Irvine"	"1226 Gillespie Neuroscience Facility"	"Irvine"	"CA"	"92697-4540"	"USA"	"ftp://ftp.ncbi.nlm.nih.gov/geo/samples/GSM300nnn/GSM300212/suppl/GSM300212.CEL.gz"	"54675"	"Reanalyzed by: GSE119087"	"Reanalyzed by: GSE133349"	""	"74"	NA	NA	"postcentral gyrus"	"female"	"30, C"	NA
+"GSM300213"	"SuperiorFrontalGyrus_female_74yrs_indiv30"	"GSM300213"	"Public on Oct 09 2008"	"Jun 25 2008"	"Jun 26 2019"	"RNA"	"1"	"brain, superior frontal gyrus, female, 74 years"	"Homo sapiens"	"individual: 30, C"	"brain region: superior frontal gyrus"	"gender: female"	"age (yrs): 74"	""	""	"N/A"	"N/A"	"total RNA"	"Total RNA was extracted from 10-200 mg of frozen, unfixed tissue using Trizol reagent (Invitrogen, Carlsbad CA), and purified using quick spin columns (Qiagen, Valencia CA).  RNA quality was assessed using the Agilent BioAnalyzer (Agilent Technologies, Palo Alto, CA) and UV spectrophotometer for the presence of sharp peaks and 28S/18S RNA."	"biotin"	"Total RNA (10 ug) from each sample was used to generate first strand cDNA using a T7-linked-(dT)24 primer, followed by in vitro transcription using the ENZO BioArray High-Yield RNA transcript labeling kit (ENZO Farmingdale, NY) to generate biotin-labeled cRNA target."	"9606"	"Using a robotics system (Biomek FX MicroArray Plex SA System; Beckman Coultier) to optimize consistency in processing and minimize handling variability, each fragmented, biotin-labeled cRNA sample (30 mg) was individually hybridized to an Affymetrix Hg-U133 plus 2.0 chip for 16 hours and rotated at 13 rpm at 50C."	"The chips were scanned using an Affymetrix GeneChip Scanner 3000 7G"	"Brain from cognitively intact individual."	"GC-RMA expression values were obtained from CEL files using GeneSpring 7.3.1 software.  PLIER expression values were obtained using Expression Console software using default settings.  PLIER and GC-RMA data were processed using GeneSpring 7.0 software, with default normalizations (Data transformation:set values<0.01 to 0.01; per chip: normalize to 50th percentile; per gene: normalize to median)."	"GPL570"	"Nicole,Claudia,Berchtold"	"nberchto@uci.edu"	"949 824 6071"	"Carl W. Cotman"	"Institute for Memory Impairments and Neurological Disorders"	"UC Irvine"	"1226 Gillespie Neuroscience Facility"	"Irvine"	"CA"	"92697-4540"	"USA"	"ftp://ftp.ncbi.nlm.nih.gov/geo/samples/GSM300nnn/GSM300213/suppl/GSM300213.CEL.gz"	"54675"	"Reanalyzed by: GSE119087"	"Reanalyzed by: GSE133349"	""	"74"	NA	NA	"superior frontal gyrus"	"female"	"30, C"	NA
+"GSM300214"	"EntorhinalCortex_male_97yrs_indiv34"	"GSM300214"	"Public on Oct 09 2008"	"Jun 25 2008"	"Jun 26 2019"	"RNA"	"1"	"brain, entorhinal cortex, male, 97 years"	"Homo sapiens"	"individual: 34, C"	"brain region: entorhinal cortex"	"gender: male"	"age (yrs): 97"	""	""	"N/A"	"N/A"	"total RNA"	"Total RNA was extracted from 10-200 mg of frozen, unfixed tissue using Trizol reagent (Invitrogen, Carlsbad CA), and purified using quick spin columns (Qiagen, Valencia CA).  RNA quality was assessed using the Agilent BioAnalyzer (Agilent Technologies, Palo Alto, CA) and UV spectrophotometer for the presence of sharp peaks and 28S/18S RNA."	"biotin"	"Total RNA (10 ug) from each sample was used to generate first strand cDNA using a T7-linked-(dT)24 primer, followed by in vitro transcription using the ENZO BioArray High-Yield RNA transcript labeling kit (ENZO Farmingdale, NY) to generate biotin-labeled cRNA target."	"9606"	"Using a robotics system (Biomek FX MicroArray Plex SA System; Beckman Coultier) to optimize consistency in processing and minimize handling variability, each fragmented, biotin-labeled cRNA sample (30 mg) was individually hybridized to an Affymetrix Hg-U133 plus 2.0 chip for 16 hours and rotated at 13 rpm at 50C."	"The chips were scanned using an Affymetrix GeneChip Scanner 3000 7G"	"Brain from cognitively intact individual."	"GC-RMA expression values were obtained from CEL files using GeneSpring 7.3.1 software.  PLIER expression values were obtained using Expression Console software using default settings.  PLIER and GC-RMA data were processed using GeneSpring 7.0 software, with default normalizations (Data transformation:set values<0.01 to 0.01; per chip: normalize to 50th percentile; per gene: normalize to median)."	"GPL570"	"Nicole,Claudia,Berchtold"	"nberchto@uci.edu"	"949 824 6071"	"Carl W. Cotman"	"Institute for Memory Impairments and Neurological Disorders"	"UC Irvine"	"1226 Gillespie Neuroscience Facility"	"Irvine"	"CA"	"92697-4540"	"USA"	"ftp://ftp.ncbi.nlm.nih.gov/geo/samples/GSM300nnn/GSM300214/suppl/GSM300214.CEL.gz"	"54675"	"Reanalyzed by: GSE119087"	"Reanalyzed by: GSE133349"	""	"97"	NA	NA	"entorhinal cortex"	"male"	"34, C"	NA
+"GSM300215"	"Hippocampus_male_97yrs_indiv34"	"GSM300215"	"Public on Oct 09 2008"	"Jun 25 2008"	"Jun 26 2019"	"RNA"	"1"	"brain, hippocampus, male, 97 years"	"Homo sapiens"	"individual: 34, C"	"brain region: hippocampus"	"gender: male"	"age (yrs): 97"	""	""	"N/A"	"N/A"	"total RNA"	"Total RNA was extracted from 10-200 mg of frozen, unfixed tissue using Trizol reagent (Invitrogen, Carlsbad CA), and purified using quick spin columns (Qiagen, Valencia CA).  RNA quality was assessed using the Agilent BioAnalyzer (Agilent Technologies, Palo Alto, CA) and UV spectrophotometer for the presence of sharp peaks and 28S/18S RNA."	"biotin"	"Total RNA (10 ug) from each sample was used to generate first strand cDNA using a T7-linked-(dT)24 primer, followed by in vitro transcription using the ENZO BioArray High-Yield RNA transcript labeling kit (ENZO Farmingdale, NY) to generate biotin-labeled cRNA target."	"9606"	"Using a robotics system (Biomek FX MicroArray Plex SA System; Beckman Coultier) to optimize consistency in processing and minimize handling variability, each fragmented, biotin-labeled cRNA sample (30 mg) was individually hybridized to an Affymetrix Hg-U133 plus 2.0 chip for 16 hours and rotated at 13 rpm at 50C."	"The chips were scanned using an Affymetrix GeneChip Scanner 3000 7G"	"Brain from cognitively intact individual."	"GC-RMA expression values were obtained from CEL files using GeneSpring 7.3.1 software.  PLIER expression values were obtained using Expression Console software using default settings.  PLIER and GC-RMA data were processed using GeneSpring 7.0 software, with default normalizations (Data transformation:set values<0.01 to 0.01; per chip: normalize to 50th percentile; per gene: normalize to median)."	"GPL570"	"Nicole,Claudia,Berchtold"	"nberchto@uci.edu"	"949 824 6071"	"Carl W. Cotman"	"Institute for Memory Impairments and Neurological Disorders"	"UC Irvine"	"1226 Gillespie Neuroscience Facility"	"Irvine"	"CA"	"92697-4540"	"USA"	"ftp://ftp.ncbi.nlm.nih.gov/geo/samples/GSM300nnn/GSM300215/suppl/GSM300215.CEL.gz"	"54675"	"Reanalyzed by: GSE119087"	"Reanalyzed by: GSE133349"	""	"97"	NA	NA	"hippocampus"	"male"	"34, C"	NA
+"GSM300216"	"PostcentralGyrus_male_97yrs_indiv34"	"GSM300216"	"Public on Oct 09 2008"	"Jun 25 2008"	"Jun 26 2019"	"RNA"	"1"	"brain, postcentral gyrus, male, 97 years"	"Homo sapiens"	"individual: 34, C"	"brain region: postcentral gyrus"	"gender: male"	"age (yrs): 97"	""	""	"N/A"	"N/A"	"total RNA"	"Total RNA was extracted from 10-200 mg of frozen, unfixed tissue using Trizol reagent (Invitrogen, Carlsbad CA), and purified using quick spin columns (Qiagen, Valencia CA).  RNA quality was assessed using the Agilent BioAnalyzer (Agilent Technologies, Palo Alto, CA) and UV spectrophotometer for the presence of sharp peaks and 28S/18S RNA."	"biotin"	"Total RNA (10 ug) from each sample was used to generate first strand cDNA using a T7-linked-(dT)24 primer, followed by in vitro transcription using the ENZO BioArray High-Yield RNA transcript labeling kit (ENZO Farmingdale, NY) to generate biotin-labeled cRNA target."	"9606"	"Using a robotics system (Biomek FX MicroArray Plex SA System; Beckman Coultier) to optimize consistency in processing and minimize handling variability, each fragmented, biotin-labeled cRNA sample (30 mg) was individually hybridized to an Affymetrix Hg-U133 plus 2.0 chip for 16 hours and rotated at 13 rpm at 50C."	"The chips were scanned using an Affymetrix GeneChip Scanner 3000 7G"	"Brain from cognitively intact individual."	"GC-RMA expression values were obtained from CEL files using GeneSpring 7.3.1 software.  PLIER expression values were obtained using Expression Console software using default settings.  PLIER and GC-RMA data were processed using GeneSpring 7.0 software, with default normalizations (Data transformation:set values<0.01 to 0.01; per chip: normalize to 50th percentile; per gene: normalize to median)."	"GPL570"	"Nicole,Claudia,Berchtold"	"nberchto@uci.edu"	"949 824 6071"	"Carl W. Cotman"	"Institute for Memory Impairments and Neurological Disorders"	"UC Irvine"	"1226 Gillespie Neuroscience Facility"	"Irvine"	"CA"	"92697-4540"	"USA"	"ftp://ftp.ncbi.nlm.nih.gov/geo/samples/GSM300nnn/GSM300216/suppl/GSM300216.CEL.gz"	"54675"	"Reanalyzed by: GSE119087"	"Reanalyzed by: GSE133349"	""	"97"	NA	NA	"postcentral gyrus"	"male"	"34, C"	NA
+"GSM300217"	"SuperiorFrontalGyrus_male_97yrs_indiv34"	"GSM300217"	"Public on Oct 09 2008"	"Jun 25 2008"	"Jun 26 2019"	"RNA"	"1"	"brain, superior frontal gyrus, male, 97 years"	"Homo sapiens"	"individual: 34, C"	"brain region: superior frontal gyrus"	"gender: male"	"age (yrs): 97"	""	""	"N/A"	"N/A"	"total RNA"	"Total RNA was extracted from 10-200 mg of frozen, unfixed tissue using Trizol reagent (Invitrogen, Carlsbad CA), and purified using quick spin columns (Qiagen, Valencia CA).  RNA quality was assessed using the Agilent BioAnalyzer (Agilent Technologies, Palo Alto, CA) and UV spectrophotometer for the presence of sharp peaks and 28S/18S RNA."	"biotin"	"Total RNA (10 ug) from each sample was used to generate first strand cDNA using a T7-linked-(dT)24 primer, followed by in vitro transcription using the ENZO BioArray High-Yield RNA transcript labeling kit (ENZO Farmingdale, NY) to generate biotin-labeled cRNA target."	"9606"	"Using a robotics system (Biomek FX MicroArray Plex SA System; Beckman Coultier) to optimize consistency in processing and minimize handling variability, each fragmented, biotin-labeled cRNA sample (30 mg) was individually hybridized to an Affymetrix Hg-U133 plus 2.0 chip for 16 hours and rotated at 13 rpm at 50C."	"The chips were scanned using an Affymetrix GeneChip Scanner 3000 7G"	"Brain from cognitively intact individual."	"GC-RMA expression values were obtained from CEL files using GeneSpring 7.3.1 software.  PLIER expression values were obtained using Expression Console software using default settings.  PLIER and GC-RMA data were processed using GeneSpring 7.0 software, with default normalizations (Data transformation:set values<0.01 to 0.01; per chip: normalize to 50th percentile; per gene: normalize to median)."	"GPL570"	"Nicole,Claudia,Berchtold"	"nberchto@uci.edu"	"949 824 6071"	"Carl W. Cotman"	"Institute for Memory Impairments and Neurological Disorders"	"UC Irvine"	"1226 Gillespie Neuroscience Facility"	"Irvine"	"CA"	"92697-4540"	"USA"	"ftp://ftp.ncbi.nlm.nih.gov/geo/samples/GSM300nnn/GSM300217/suppl/GSM300217.CEL.gz"	"54675"	"Reanalyzed by: GSE119087"	"Reanalyzed by: GSE133349"	""	"97"	NA	NA	"superior frontal gyrus"	"male"	"34, C"	NA
+"GSM300218"	"EntorhinalCortex_female_34yrs_indiv35"	"GSM300218"	"Public on Oct 09 2008"	"Jun 25 2008"	"Jun 26 2019"	"RNA"	"1"	"brain, entorhinal cortex, female, 34 years"	"Homo sapiens"	"individual: 35, AA"	"brain region: entorhinal cortex"	"gender: female"	"age (yrs): 34"	""	""	"N/A"	"N/A"	"total RNA"	"Total RNA was extracted from 10-200 mg of frozen, unfixed tissue using Trizol reagent (Invitrogen, Carlsbad CA), and purified using quick spin columns (Qiagen, Valencia CA).  RNA quality was assessed using the Agilent BioAnalyzer (Agilent Technologies, Palo Alto, CA) and UV spectrophotometer for the presence of sharp peaks and 28S/18S RNA."	"biotin"	"Total RNA (10 ug) from each sample was used to generate first strand cDNA using a T7-linked-(dT)24 primer, followed by in vitro transcription using the ENZO BioArray High-Yield RNA transcript labeling kit (ENZO Farmingdale, NY) to generate biotin-labeled cRNA target."	"9606"	"Using a robotics system (Biomek FX MicroArray Plex SA System; Beckman Coultier) to optimize consistency in processing and minimize handling variability, each fragmented, biotin-labeled cRNA sample (30 mg) was individually hybridized to an Affymetrix Hg-U133 plus 2.0 chip for 16 hours and rotated at 13 rpm at 50C."	"The chips were scanned using an Affymetrix GeneChip Scanner 3000 7G"	"Brain from cognitively intact individual."	"GC-RMA expression values were obtained from CEL files using GeneSpring 7.3.1 software.  PLIER expression values were obtained using Expression Console software using default settings.  PLIER and GC-RMA data were processed using GeneSpring 7.0 software, with default normalizations (Data transformation:set values<0.01 to 0.01; per chip: normalize to 50th percentile; per gene: normalize to median)."	"GPL570"	"Nicole,Claudia,Berchtold"	"nberchto@uci.edu"	"949 824 6071"	"Carl W. Cotman"	"Institute for Memory Impairments and Neurological Disorders"	"UC Irvine"	"1226 Gillespie Neuroscience Facility"	"Irvine"	"CA"	"92697-4540"	"USA"	"ftp://ftp.ncbi.nlm.nih.gov/geo/samples/GSM300nnn/GSM300218/suppl/GSM300218.CEL.gz"	"54675"	"Reanalyzed by: GSE119087"	"Reanalyzed by: GSE133349"	""	"34"	NA	NA	"entorhinal cortex"	"female"	"35, AA"	NA
+"GSM300219"	"Hippocampus_female_34yrs_indiv35"	"GSM300219"	"Public on Oct 09 2008"	"Jun 25 2008"	"May 03 2022"	"RNA"	"1"	"brain, hippocampus, female, 34 years"	"Homo sapiens"	"individual: 35, AA"	"brain region: hippocampus"	"gender: female"	"age (yrs): 34"	""	""	"N/A"	"N/A"	"total RNA"	"Total RNA was extracted from 10-200 mg of frozen, unfixed tissue using Trizol reagent (Invitrogen, Carlsbad CA), and purified using quick spin columns (Qiagen, Valencia CA).  RNA quality was assessed using the Agilent BioAnalyzer (Agilent Technologies, Palo Alto, CA) and UV spectrophotometer for the presence of sharp peaks and 28S/18S RNA."	"biotin"	"Total RNA (10 ug) from each sample was used to generate first strand cDNA using a T7-linked-(dT)24 primer, followed by in vitro transcription using the ENZO BioArray High-Yield RNA transcript labeling kit (ENZO Farmingdale, NY) to generate biotin-labeled cRNA target."	"9606"	"Using a robotics system (Biomek FX MicroArray Plex SA System; Beckman Coultier) to optimize consistency in processing and minimize handling variability, each fragmented, biotin-labeled cRNA sample (30 mg) was individually hybridized to an Affymetrix Hg-U133 plus 2.0 chip for 16 hours and rotated at 13 rpm at 50C."	"The chips were scanned using an Affymetrix GeneChip Scanner 3000 7G"	"Brain from cognitively intact individual."	"GC-RMA expression values were obtained from CEL files using GeneSpring 7.3.1 software.  PLIER expression values were obtained using Expression Console software using default settings.  PLIER and GC-RMA data were processed using GeneSpring 7.0 software, with default normalizations (Data transformation:set values<0.01 to 0.01; per chip: normalize to 50th percentile; per gene: normalize to median)."	"GPL570"	"Nicole,Claudia,Berchtold"	"nberchto@uci.edu"	"949 824 6071"	"Carl W. Cotman"	"Institute for Memory Impairments and Neurological Disorders"	"UC Irvine"	"1226 Gillespie Neuroscience Facility"	"Irvine"	"CA"	"92697-4540"	"USA"	"ftp://ftp.ncbi.nlm.nih.gov/geo/samples/GSM300nnn/GSM300219/suppl/GSM300219.CEL.gz"	"54675"	"Reanalyzed by: GSE119087"	"Reanalyzed by: GSE133349"	"Reanalyzed by: GSE202101"	"34"	NA	NA	"hippocampus"	"female"	"35, AA"	NA
+"GSM300220"	"PostcentralGyrus_female_34yrs_indiv35"	"GSM300220"	"Public on Oct 09 2008"	"Jun 25 2008"	"Jun 26 2019"	"RNA"	"1"	"brain, postcentral gyrus, female, 34 years"	"Homo sapiens"	"individual: 35, AA"	"brain region: postcentral gyrus"	"gender: female"	"age (yrs): 34"	""	""	"N/A"	"N/A"	"total RNA"	"Total RNA was extracted from 10-200 mg of frozen, unfixed tissue using Trizol reagent (Invitrogen, Carlsbad CA), and purified using quick spin columns (Qiagen, Valencia CA).  RNA quality was assessed using the Agilent BioAnalyzer (Agilent Technologies, Palo Alto, CA) and UV spectrophotometer for the presence of sharp peaks and 28S/18S RNA."	"biotin"	"Total RNA (10 ug) from each sample was used to generate first strand cDNA using a T7-linked-(dT)24 primer, followed by in vitro transcription using the ENZO BioArray High-Yield RNA transcript labeling kit (ENZO Farmingdale, NY) to generate biotin-labeled cRNA target."	"9606"	"Using a robotics system (Biomek FX MicroArray Plex SA System; Beckman Coultier) to optimize consistency in processing and minimize handling variability, each fragmented, biotin-labeled cRNA sample (30 mg) was individually hybridized to an Affymetrix Hg-U133 plus 2.0 chip for 16 hours and rotated at 13 rpm at 50C."	"The chips were scanned using an Affymetrix GeneChip Scanner 3000 7G"	"Brain from cognitively intact individual."	"GC-RMA expression values were obtained from CEL files using GeneSpring 7.3.1 software.  PLIER expression values were obtained using Expression Console software using default settings.  PLIER and GC-RMA data were processed using GeneSpring 7.0 software, with default normalizations (Data transformation:set values<0.01 to 0.01; per chip: normalize to 50th percentile; per gene: normalize to median)."	"GPL570"	"Nicole,Claudia,Berchtold"	"nberchto@uci.edu"	"949 824 6071"	"Carl W. Cotman"	"Institute for Memory Impairments and Neurological Disorders"	"UC Irvine"	"1226 Gillespie Neuroscience Facility"	"Irvine"	"CA"	"92697-4540"	"USA"	"ftp://ftp.ncbi.nlm.nih.gov/geo/samples/GSM300nnn/GSM300220/suppl/GSM300220.CEL.gz"	"54675"	"Reanalyzed by: GSE119087"	"Reanalyzed by: GSE133349"	""	"34"	NA	NA	"postcentral gyrus"	"female"	"35, AA"	NA
+"GSM300221"	"SuperiorFrontalGyrus_female_34yrs_indiv35"	"GSM300221"	"Public on Oct 09 2008"	"Jun 25 2008"	"Jun 26 2019"	"RNA"	"1"	"brain, superior frontal gyrus, female, 34 years"	"Homo sapiens"	"individual: 35, AA"	"brain region: superior frontal gyrus"	"gender: female"	"age (yrs): 34"	""	""	"N/A"	"N/A"	"total RNA"	"Total RNA was extracted from 10-200 mg of frozen, unfixed tissue using Trizol reagent (Invitrogen, Carlsbad CA), and purified using quick spin columns (Qiagen, Valencia CA).  RNA quality was assessed using the Agilent BioAnalyzer (Agilent Technologies, Palo Alto, CA) and UV spectrophotometer for the presence of sharp peaks and 28S/18S RNA."	"biotin"	"Total RNA (10 ug) from each sample was used to generate first strand cDNA using a T7-linked-(dT)24 primer, followed by in vitro transcription using the ENZO BioArray High-Yield RNA transcript labeling kit (ENZO Farmingdale, NY) to generate biotin-labeled cRNA target."	"9606"	"Using a robotics system (Biomek FX MicroArray Plex SA System; Beckman Coultier) to optimize consistency in processing and minimize handling variability, each fragmented, biotin-labeled cRNA sample (30 mg) was individually hybridized to an Affymetrix Hg-U133 plus 2.0 chip for 16 hours and rotated at 13 rpm at 50C."	"The chips were scanned using an Affymetrix GeneChip Scanner 3000 7G"	"Brain from cognitively intact individual."	"GC-RMA expression values were obtained from CEL files using GeneSpring 7.3.1 software.  PLIER expression values were obtained using Expression Console software using default settings.  PLIER and GC-RMA data were processed using GeneSpring 7.0 software, with default normalizations (Data transformation:set values<0.01 to 0.01; per chip: normalize to 50th percentile; per gene: normalize to median)."	"GPL570"	"Nicole,Claudia,Berchtold"	"nberchto@uci.edu"	"949 824 6071"	"Carl W. Cotman"	"Institute for Memory Impairments and Neurological Disorders"	"UC Irvine"	"1226 Gillespie Neuroscience Facility"	"Irvine"	"CA"	"92697-4540"	"USA"	"ftp://ftp.ncbi.nlm.nih.gov/geo/samples/GSM300nnn/GSM300221/suppl/GSM300221.CEL.gz"	"54675"	"Reanalyzed by: GSE119087"	"Reanalyzed by: GSE133349"	""	"34"	NA	NA	"superior frontal gyrus"	"female"	"35, AA"	NA
+"GSM300222"	"EntorhinalCortex_female_74yrs_indiv38"	"GSM300222"	"Public on Oct 09 2008"	"Jun 25 2008"	"Jun 26 2019"	"RNA"	"1"	"brain, entorhinal cortex, female, 74 years"	"Homo sapiens"	"individual: 38, C"	"brain region: entorhinal cortex"	"gender: female"	"age (yrs): 74"	""	""	"N/A"	"N/A"	"total RNA"	"Total RNA was extracted from 10-200 mg of frozen, unfixed tissue using Trizol reagent (Invitrogen, Carlsbad CA), and purified using quick spin columns (Qiagen, Valencia CA).  RNA quality was assessed using the Agilent BioAnalyzer (Agilent Technologies, Palo Alto, CA) and UV spectrophotometer for the presence of sharp peaks and 28S/18S RNA."	"biotin"	"Total RNA (10 ug) from each sample was used to generate first strand cDNA using a T7-linked-(dT)24 primer, followed by in vitro transcription using the ENZO BioArray High-Yield RNA transcript labeling kit (ENZO Farmingdale, NY) to generate biotin-labeled cRNA target."	"9606"	"Using a robotics system (Biomek FX MicroArray Plex SA System; Beckman Coultier) to optimize consistency in processing and minimize handling variability, each fragmented, biotin-labeled cRNA sample (30 mg) was individually hybridized to an Affymetrix Hg-U133 plus 2.0 chip for 16 hours and rotated at 13 rpm at 50C."	"The chips were scanned using an Affymetrix GeneChip Scanner 3000 7G"	"Brain from cognitively intact individual."	"GC-RMA expression values were obtained from CEL files using GeneSpring 7.3.1 software.  PLIER expression values were obtained using Expression Console software using default settings.  PLIER and GC-RMA data were processed using GeneSpring 7.0 software, with default normalizations (Data transformation:set values<0.01 to 0.01; per chip: normalize to 50th percentile; per gene: normalize to median)."	"GPL570"	"Nicole,Claudia,Berchtold"	"nberchto@uci.edu"	"949 824 6071"	"Carl W. Cotman"	"Institute for Memory Impairments and Neurological Disorders"	"UC Irvine"	"1226 Gillespie Neuroscience Facility"	"Irvine"	"CA"	"92697-4540"	"USA"	"ftp://ftp.ncbi.nlm.nih.gov/geo/samples/GSM300nnn/GSM300222/suppl/GSM300222.CEL.gz"	"54675"	"Reanalyzed by: GSE119087"	"Reanalyzed by: GSE133349"	""	"74"	NA	NA	"entorhinal cortex"	"female"	"38, C"	NA
+"GSM300223"	"Hippocampus_female_74yrs_indiv38"	"GSM300223"	"Public on Oct 09 2008"	"Jun 25 2008"	"Jun 26 2019"	"RNA"	"1"	"brain, hippocampus, female, 74 years"	"Homo sapiens"	"individual: 38, C"	"brain region: hippocampus"	"gender: female"	"age (yrs): 74"	""	""	"N/A"	"N/A"	"total RNA"	"Total RNA was extracted from 10-200 mg of frozen, unfixed tissue using Trizol reagent (Invitrogen, Carlsbad CA), and purified using quick spin columns (Qiagen, Valencia CA).  RNA quality was assessed using the Agilent BioAnalyzer (Agilent Technologies, Palo Alto, CA) and UV spectrophotometer for the presence of sharp peaks and 28S/18S RNA."	"biotin"	"Total RNA (10 ug) from each sample was used to generate first strand cDNA using a T7-linked-(dT)24 primer, followed by in vitro transcription using the ENZO BioArray High-Yield RNA transcript labeling kit (ENZO Farmingdale, NY) to generate biotin-labeled cRNA target."	"9606"	"Using a robotics system (Biomek FX MicroArray Plex SA System; Beckman Coultier) to optimize consistency in processing and minimize handling variability, each fragmented, biotin-labeled cRNA sample (30 mg) was individually hybridized to an Affymetrix Hg-U133 plus 2.0 chip for 16 hours and rotated at 13 rpm at 50C."	"The chips were scanned using an Affymetrix GeneChip Scanner 3000 7G"	"Brain from cognitively intact individual."	"GC-RMA expression values were obtained from CEL files using GeneSpring 7.3.1 software.  PLIER expression values were obtained using Expression Console software using default settings.  PLIER and GC-RMA data were processed using GeneSpring 7.0 software, with default normalizations (Data transformation:set values<0.01 to 0.01; per chip: normalize to 50th percentile; per gene: normalize to median)."	"GPL570"	"Nicole,Claudia,Berchtold"	"nberchto@uci.edu"	"949 824 6071"	"Carl W. Cotman"	"Institute for Memory Impairments and Neurological Disorders"	"UC Irvine"	"1226 Gillespie Neuroscience Facility"	"Irvine"	"CA"	"92697-4540"	"USA"	"ftp://ftp.ncbi.nlm.nih.gov/geo/samples/GSM300nnn/GSM300223/suppl/GSM300223.CEL.gz"	"54675"	"Reanalyzed by: GSE119087"	"Reanalyzed by: GSE133349"	""	"74"	NA	NA	"hippocampus"	"female"	"38, C"	NA
+"GSM300224"	"PostcentralGyrus_female_74yrs_indiv38"	"GSM300224"	"Public on Oct 09 2008"	"Jun 25 2008"	"Jun 26 2019"	"RNA"	"1"	"brain, postcentral gyrus, female, 74 years"	"Homo sapiens"	"individual: 38, C"	"brain region: postcentral gyrus"	"gender: female"	"age (yrs): 74"	""	""	"N/A"	"N/A"	"total RNA"	"Total RNA was extracted from 10-200 mg of frozen, unfixed tissue using Trizol reagent (Invitrogen, Carlsbad CA), and purified using quick spin columns (Qiagen, Valencia CA).  RNA quality was assessed using the Agilent BioAnalyzer (Agilent Technologies, Palo Alto, CA) and UV spectrophotometer for the presence of sharp peaks and 28S/18S RNA."	"biotin"	"Total RNA (10 ug) from each sample was used to generate first strand cDNA using a T7-linked-(dT)24 primer, followed by in vitro transcription using the ENZO BioArray High-Yield RNA transcript labeling kit (ENZO Farmingdale, NY) to generate biotin-labeled cRNA target."	"9606"	"Using a robotics system (Biomek FX MicroArray Plex SA System; Beckman Coultier) to optimize consistency in processing and minimize handling variability, each fragmented, biotin-labeled cRNA sample (30 mg) was individually hybridized to an Affymetrix Hg-U133 plus 2.0 chip for 16 hours and rotated at 13 rpm at 50C."	"The chips were scanned using an Affymetrix GeneChip Scanner 3000 7G"	"Brain from cognitively intact individual."	"GC-RMA expression values were obtained from CEL files using GeneSpring 7.3.1 software.  PLIER expression values were obtained using Expression Console software using default settings.  PLIER and GC-RMA data were processed using GeneSpring 7.0 software, with default normalizations (Data transformation:set values<0.01 to 0.01; per chip: normalize to 50th percentile; per gene: normalize to median)."	"GPL570"	"Nicole,Claudia,Berchtold"	"nberchto@uci.edu"	"949 824 6071"	"Carl W. Cotman"	"Institute for Memory Impairments and Neurological Disorders"	"UC Irvine"	"1226 Gillespie Neuroscience Facility"	"Irvine"	"CA"	"92697-4540"	"USA"	"ftp://ftp.ncbi.nlm.nih.gov/geo/samples/GSM300nnn/GSM300224/suppl/GSM300224.CEL.gz"	"54675"	"Reanalyzed by: GSE119087"	"Reanalyzed by: GSE133349"	""	"74"	NA	NA	"postcentral gyrus"	"female"	"38, C"	NA
+"GSM300225"	"SuperiorFrontalGyrus_female_74yrs_indiv38"	"GSM300225"	"Public on Oct 09 2008"	"Jun 25 2008"	"Jun 26 2019"	"RNA"	"1"	"brain, superior frontal gyrus, female, 74 years"	"Homo sapiens"	"individual: 38, C"	"brain region: superior frontal gyrus"	"gender: female"	"age (yrs): 74"	""	""	"N/A"	"N/A"	"total RNA"	"Total RNA was extracted from 10-200 mg of frozen, unfixed tissue using Trizol reagent (Invitrogen, Carlsbad CA), and purified using quick spin columns (Qiagen, Valencia CA).  RNA quality was assessed using the Agilent BioAnalyzer (Agilent Technologies, Palo Alto, CA) and UV spectrophotometer for the presence of sharp peaks and 28S/18S RNA."	"biotin"	"Total RNA (10 ug) from each sample was used to generate first strand cDNA using a T7-linked-(dT)24 primer, followed by in vitro transcription using the ENZO BioArray High-Yield RNA transcript labeling kit (ENZO Farmingdale, NY) to generate biotin-labeled cRNA target."	"9606"	"Using a robotics system (Biomek FX MicroArray Plex SA System; Beckman Coultier) to optimize consistency in processing and minimize handling variability, each fragmented, biotin-labeled cRNA sample (30 mg) was individually hybridized to an Affymetrix Hg-U133 plus 2.0 chip for 16 hours and rotated at 13 rpm at 50C."	"The chips were scanned using an Affymetrix GeneChip Scanner 3000 7G"	"Brain from cognitively intact individual."	"GC-RMA expression values were obtained from CEL files using GeneSpring 7.3.1 software.  PLIER expression values were obtained using Expression Console software using default settings.  PLIER and GC-RMA data were processed using GeneSpring 7.0 software, with default normalizations (Data transformation:set values<0.01 to 0.01; per chip: normalize to 50th percentile; per gene: normalize to median)."	"GPL570"	"Nicole,Claudia,Berchtold"	"nberchto@uci.edu"	"949 824 6071"	"Carl W. Cotman"	"Institute for Memory Impairments and Neurological Disorders"	"UC Irvine"	"1226 Gillespie Neuroscience Facility"	"Irvine"	"CA"	"92697-4540"	"USA"	"ftp://ftp.ncbi.nlm.nih.gov/geo/samples/GSM300nnn/GSM300225/suppl/GSM300225.CEL.gz"	"54675"	"Reanalyzed by: GSE119087"	"Reanalyzed by: GSE133349"	""	"74"	NA	NA	"superior frontal gyrus"	"female"	"38, C"	NA
+"GSM300226"	"PostcentralGyrus_female_90yrs_indiv40"	"GSM300226"	"Public on Oct 09 2008"	"Jun 25 2008"	"Jun 26 2019"	"RNA"	"1"	"brain, postcentral gyrus, female, 90 years"	"Homo sapiens"	"individual: 40, C"	"brain region: postcentral gyrus"	"gender: female"	"age (yrs): 90"	""	""	"N/A"	"N/A"	"total RNA"	"Total RNA was extracted from 10-200 mg of frozen, unfixed tissue using Trizol reagent (Invitrogen, Carlsbad CA), and purified using quick spin columns (Qiagen, Valencia CA).  RNA quality was assessed using the Agilent BioAnalyzer (Agilent Technologies, Palo Alto, CA) and UV spectrophotometer for the presence of sharp peaks and 28S/18S RNA."	"biotin"	"Total RNA (10 ug) from each sample was used to generate first strand cDNA using a T7-linked-(dT)24 primer, followed by in vitro transcription using the ENZO BioArray High-Yield RNA transcript labeling kit (ENZO Farmingdale, NY) to generate biotin-labeled cRNA target."	"9606"	"Using a robotics system (Biomek FX MicroArray Plex SA System; Beckman Coultier) to optimize consistency in processing and minimize handling variability, each fragmented, biotin-labeled cRNA sample (30 mg) was individually hybridized to an Affymetrix Hg-U133 plus 2.0 chip for 16 hours and rotated at 13 rpm at 50C."	"The chips were scanned using an Affymetrix GeneChip Scanner 3000 7G"	"Brain from cognitively intact individual."	"GC-RMA expression values were obtained from CEL files using GeneSpring 7.3.1 software.  PLIER expression values were obtained using Expression Console software using default settings.  PLIER and GC-RMA data were processed using GeneSpring 7.0 software, with default normalizations (Data transformation:set values<0.01 to 0.01; per chip: normalize to 50th percentile; per gene: normalize to median)."	"GPL570"	"Nicole,Claudia,Berchtold"	"nberchto@uci.edu"	"949 824 6071"	"Carl W. Cotman"	"Institute for Memory Impairments and Neurological Disorders"	"UC Irvine"	"1226 Gillespie Neuroscience Facility"	"Irvine"	"CA"	"92697-4540"	"USA"	"ftp://ftp.ncbi.nlm.nih.gov/geo/samples/GSM300nnn/GSM300226/suppl/GSM300226.CEL.gz"	"54675"	"Reanalyzed by: GSE119087"	"Reanalyzed by: GSE133349"	""	"90"	NA	NA	"postcentral gyrus"	"female"	"40, C"	NA
+"GSM300227"	"Hippocampus_female_91yrs_indiv40-04"	"GSM300227"	"Public on Oct 09 2008"	"Jun 25 2008"	"Jun 26 2019"	"RNA"	"1"	"brain, hippocampus, female, 91 years"	"Homo sapiens"	"individual: 40-04, C"	"brain region: hippocampus"	"gender: female"	"age (yrs): 91"	""	""	"N/A"	"N/A"	"total RNA"	"Total RNA was extracted from 10-200 mg of frozen, unfixed tissue using Trizol reagent (Invitrogen, Carlsbad CA), and purified using quick spin columns (Qiagen, Valencia CA).  RNA quality was assessed using the Agilent BioAnalyzer (Agilent Technologies, Palo Alto, CA) and UV spectrophotometer for the presence of sharp peaks and 28S/18S RNA."	"biotin"	"Total RNA (10 ug) from each sample was used to generate first strand cDNA using a T7-linked-(dT)24 primer, followed by in vitro transcription using the ENZO BioArray High-Yield RNA transcript labeling kit (ENZO Farmingdale, NY) to generate biotin-labeled cRNA target."	"9606"	"Using a robotics system (Biomek FX MicroArray Plex SA System; Beckman Coultier) to optimize consistency in processing and minimize handling variability, each fragmented, biotin-labeled cRNA sample (30 mg) was individually hybridized to an Affymetrix Hg-U133 plus 2.0 chip for 16 hours and rotated at 13 rpm at 50C."	"The chips were scanned using an Affymetrix GeneChip Scanner 3000 7G"	"Brain from cognitively intact individual."	"GC-RMA expression values were obtained from CEL files using GeneSpring 7.3.1 software.  PLIER expression values were obtained using Expression Console software using default settings.  PLIER and GC-RMA data were processed using GeneSpring 7.0 software, with default normalizations (Data transformation:set values<0.01 to 0.01; per chip: normalize to 50th percentile; per gene: normalize to median)."	"GPL570"	"Nicole,Claudia,Berchtold"	"nberchto@uci.edu"	"949 824 6071"	"Carl W. Cotman"	"Institute for Memory Impairments and Neurological Disorders"	"UC Irvine"	"1226 Gillespie Neuroscience Facility"	"Irvine"	"CA"	"92697-4540"	"USA"	"ftp://ftp.ncbi.nlm.nih.gov/geo/samples/GSM300nnn/GSM300227/suppl/GSM300227.CEL.gz"	"54675"	"Reanalyzed by: GSE119087"	"Reanalyzed by: GSE133349"	""	"91"	NA	NA	"hippocampus"	"female"	"40-04, C"	NA
+"GSM300228"	"EntorhinalCortex_female_44yrs_indiv42"	"GSM300228"	"Public on Oct 09 2008"	"Jun 25 2008"	"Jun 26 2019"	"RNA"	"1"	"brain, entorhinal cortex, female, 44 years"	"Homo sapiens"	"individual: 42, C"	"brain region: entorhinal cortex"	"gender: female"	"age (yrs): 44"	""	""	"N/A"	"N/A"	"total RNA"	"Total RNA was extracted from 10-200 mg of frozen, unfixed tissue using Trizol reagent (Invitrogen, Carlsbad CA), and purified using quick spin columns (Qiagen, Valencia CA).  RNA quality was assessed using the Agilent BioAnalyzer (Agilent Technologies, Palo Alto, CA) and UV spectrophotometer for the presence of sharp peaks and 28S/18S RNA."	"biotin"	"Total RNA (10 ug) from each sample was used to generate first strand cDNA using a T7-linked-(dT)24 primer, followed by in vitro transcription using the ENZO BioArray High-Yield RNA transcript labeling kit (ENZO Farmingdale, NY) to generate biotin-labeled cRNA target."	"9606"	"Using a robotics system (Biomek FX MicroArray Plex SA System; Beckman Coultier) to optimize consistency in processing and minimize handling variability, each fragmented, biotin-labeled cRNA sample (30 mg) was individually hybridized to an Affymetrix Hg-U133 plus 2.0 chip for 16 hours and rotated at 13 rpm at 50C."	"The chips were scanned using an Affymetrix GeneChip Scanner 3000 7G"	"Brain from cognitively intact individual."	"GC-RMA expression values were obtained from CEL files using GeneSpring 7.3.1 software.  PLIER expression values were obtained using Expression Console software using default settings.  PLIER and GC-RMA data were processed using GeneSpring 7.0 software, with default normalizations (Data transformation:set values<0.01 to 0.01; per chip: normalize to 50th percentile; per gene: normalize to median)."	"GPL570"	"Nicole,Claudia,Berchtold"	"nberchto@uci.edu"	"949 824 6071"	"Carl W. Cotman"	"Institute for Memory Impairments and Neurological Disorders"	"UC Irvine"	"1226 Gillespie Neuroscience Facility"	"Irvine"	"CA"	"92697-4540"	"USA"	"ftp://ftp.ncbi.nlm.nih.gov/geo/samples/GSM300nnn/GSM300228/suppl/GSM300228.CEL.gz"	"54675"	"Reanalyzed by: GSE119087"	"Reanalyzed by: GSE133349"	""	"44"	NA	NA	"entorhinal cortex"	"female"	"42, C"	NA
+"GSM300229"	"SuperiorFrontalGyrus_female_44yrs_indiv42"	"GSM300229"	"Public on Oct 09 2008"	"Jun 25 2008"	"Jun 26 2019"	"RNA"	"1"	"brain, superior frontal gyrus, female, 44 years"	"Homo sapiens"	"individual: 42, C"	"brain region: superior frontal gyrus"	"gender: female"	"age (yrs): 44"	""	""	"N/A"	"N/A"	"total RNA"	"Total RNA was extracted from 10-200 mg of frozen, unfixed tissue using Trizol reagent (Invitrogen, Carlsbad CA), and purified using quick spin columns (Qiagen, Valencia CA).  RNA quality was assessed using the Agilent BioAnalyzer (Agilent Technologies, Palo Alto, CA) and UV spectrophotometer for the presence of sharp peaks and 28S/18S RNA."	"biotin"	"Total RNA (10 ug) from each sample was used to generate first strand cDNA using a T7-linked-(dT)24 primer, followed by in vitro transcription using the ENZO BioArray High-Yield RNA transcript labeling kit (ENZO Farmingdale, NY) to generate biotin-labeled cRNA target."	"9606"	"Using a robotics system (Biomek FX MicroArray Plex SA System; Beckman Coultier) to optimize consistency in processing and minimize handling variability, each fragmented, biotin-labeled cRNA sample (30 mg) was individually hybridized to an Affymetrix Hg-U133 plus 2.0 chip for 16 hours and rotated at 13 rpm at 50C."	"The chips were scanned using an Affymetrix GeneChip Scanner 3000 7G"	"Brain from cognitively intact individual."	"GC-RMA expression values were obtained from CEL files using GeneSpring 7.3.1 software.  PLIER expression values were obtained using Expression Console software using default settings.  PLIER and GC-RMA data were processed using GeneSpring 7.0 software, with default normalizations (Data transformation:set values<0.01 to 0.01; per chip: normalize to 50th percentile; per gene: normalize to median)."	"GPL570"	"Nicole,Claudia,Berchtold"	"nberchto@uci.edu"	"949 824 6071"	"Carl W. Cotman"	"Institute for Memory Impairments and Neurological Disorders"	"UC Irvine"	"1226 Gillespie Neuroscience Facility"	"Irvine"	"CA"	"92697-4540"	"USA"	"ftp://ftp.ncbi.nlm.nih.gov/geo/samples/GSM300nnn/GSM300229/suppl/GSM300229.CEL.gz"	"54675"	"Reanalyzed by: GSE119087"	"Reanalyzed by: GSE133349"	""	"44"	NA	NA	"superior frontal gyrus"	"female"	"42, C"	NA
+"GSM300230"	"EntorhinalCortex_female_37yrs_indiv45"	"GSM300230"	"Public on Oct 09 2008"	"Jun 25 2008"	"Jun 26 2019"	"RNA"	"1"	"brain, entorhinal cortex, female, 37 years"	"Homo sapiens"	"individual: 45, C"	"brain region: entorhinal cortex"	"gender: female"	"age (yrs): 37"	""	""	"N/A"	"N/A"	"total RNA"	"Total RNA was extracted from 10-200 mg of frozen, unfixed tissue using Trizol reagent (Invitrogen, Carlsbad CA), and purified using quick spin columns (Qiagen, Valencia CA).  RNA quality was assessed using the Agilent BioAnalyzer (Agilent Technologies, Palo Alto, CA) and UV spectrophotometer for the presence of sharp peaks and 28S/18S RNA."	"biotin"	"Total RNA (10 ug) from each sample was used to generate first strand cDNA using a T7-linked-(dT)24 primer, followed by in vitro transcription using the ENZO BioArray High-Yield RNA transcript labeling kit (ENZO Farmingdale, NY) to generate biotin-labeled cRNA target."	"9606"	"Using a robotics system (Biomek FX MicroArray Plex SA System; Beckman Coultier) to optimize consistency in processing and minimize handling variability, each fragmented, biotin-labeled cRNA sample (30 mg) was individually hybridized to an Affymetrix Hg-U133 plus 2.0 chip for 16 hours and rotated at 13 rpm at 50C."	"The chips were scanned using an Affymetrix GeneChip Scanner 3000 7G"	"Brain from cognitively intact individual."	"GC-RMA expression values were obtained from CEL files using GeneSpring 7.3.1 software.  PLIER expression values were obtained using Expression Console software using default settings.  PLIER and GC-RMA data were processed using GeneSpring 7.0 software, with default normalizations (Data transformation:set values<0.01 to 0.01; per chip: normalize to 50th percentile; per gene: normalize to median)."	"GPL570"	"Nicole,Claudia,Berchtold"	"nberchto@uci.edu"	"949 824 6071"	"Carl W. Cotman"	"Institute for Memory Impairments and Neurological Disorders"	"UC Irvine"	"1226 Gillespie Neuroscience Facility"	"Irvine"	"CA"	"92697-4540"	"USA"	"ftp://ftp.ncbi.nlm.nih.gov/geo/samples/GSM300nnn/GSM300230/suppl/GSM300230.CEL.gz"	"54675"	"Reanalyzed by: GSE119087"	"Reanalyzed by: GSE133349"	""	"37"	NA	NA	"entorhinal cortex"	"female"	"45, C"	NA
+"GSM300231"	"Hippocampus_female_37yrs_indiv45"	"GSM300231"	"Public on Oct 09 2008"	"Jun 25 2008"	"May 03 2022"	"RNA"	"1"	"brain, hippocampus, female, 37 years"	"Homo sapiens"	"individual: 45, C"	"brain region: hippocampus"	"gender: female"	"age (yrs): 37"	""	""	"N/A"	"N/A"	"total RNA"	"Total RNA was extracted from 10-200 mg of frozen, unfixed tissue using Trizol reagent (Invitrogen, Carlsbad CA), and purified using quick spin columns (Qiagen, Valencia CA).  RNA quality was assessed using the Agilent BioAnalyzer (Agilent Technologies, Palo Alto, CA) and UV spectrophotometer for the presence of sharp peaks and 28S/18S RNA."	"biotin"	"Total RNA (10 ug) from each sample was used to generate first strand cDNA using a T7-linked-(dT)24 primer, followed by in vitro transcription using the ENZO BioArray High-Yield RNA transcript labeling kit (ENZO Farmingdale, NY) to generate biotin-labeled cRNA target."	"9606"	"Using a robotics system (Biomek FX MicroArray Plex SA System; Beckman Coultier) to optimize consistency in processing and minimize handling variability, each fragmented, biotin-labeled cRNA sample (30 mg) was individually hybridized to an Affymetrix Hg-U133 plus 2.0 chip for 16 hours and rotated at 13 rpm at 50C."	"The chips were scanned using an Affymetrix GeneChip Scanner 3000 7G"	"Brain from cognitively intact individual."	"GC-RMA expression values were obtained from CEL files using GeneSpring 7.3.1 software.  PLIER expression values were obtained using Expression Console software using default settings.  PLIER and GC-RMA data were processed using GeneSpring 7.0 software, with default normalizations (Data transformation:set values<0.01 to 0.01; per chip: normalize to 50th percentile; per gene: normalize to median)."	"GPL570"	"Nicole,Claudia,Berchtold"	"nberchto@uci.edu"	"949 824 6071"	"Carl W. Cotman"	"Institute for Memory Impairments and Neurological Disorders"	"UC Irvine"	"1226 Gillespie Neuroscience Facility"	"Irvine"	"CA"	"92697-4540"	"USA"	"ftp://ftp.ncbi.nlm.nih.gov/geo/samples/GSM300nnn/GSM300231/suppl/GSM300231.CEL.gz"	"54675"	"Reanalyzed by: GSE119087"	"Reanalyzed by: GSE133349"	"Reanalyzed by: GSE202101"	"37"	NA	NA	"hippocampus"	"female"	"45, C"	NA
+"GSM300232"	"PostcentralGyrus_female_37yrs_indiv45"	"GSM300232"	"Public on Oct 09 2008"	"Jun 25 2008"	"Jun 26 2019"	"RNA"	"1"	"brain, postcentral gyrus, female, 37 years"	"Homo sapiens"	"individual: 45, C"	"brain region: postcentral gyrus"	"gender: female"	"age (yrs): 37"	""	""	"N/A"	"N/A"	"total RNA"	"Total RNA was extracted from 10-200 mg of frozen, unfixed tissue using Trizol reagent (Invitrogen, Carlsbad CA), and purified using quick spin columns (Qiagen, Valencia CA).  RNA quality was assessed using the Agilent BioAnalyzer (Agilent Technologies, Palo Alto, CA) and UV spectrophotometer for the presence of sharp peaks and 28S/18S RNA."	"biotin"	"Total RNA (10 ug) from each sample was used to generate first strand cDNA using a T7-linked-(dT)24 primer, followed by in vitro transcription using the ENZO BioArray High-Yield RNA transcript labeling kit (ENZO Farmingdale, NY) to generate biotin-labeled cRNA target."	"9606"	"Using a robotics system (Biomek FX MicroArray Plex SA System; Beckman Coultier) to optimize consistency in processing and minimize handling variability, each fragmented, biotin-labeled cRNA sample (30 mg) was individually hybridized to an Affymetrix Hg-U133 plus 2.0 chip for 16 hours and rotated at 13 rpm at 50C."	"The chips were scanned using an Affymetrix GeneChip Scanner 3000 7G"	"Brain from cognitively intact individual."	"GC-RMA expression values were obtained from CEL files using GeneSpring 7.3.1 software.  PLIER expression values were obtained using Expression Console software using default settings.  PLIER and GC-RMA data were processed using GeneSpring 7.0 software, with default normalizations (Data transformation:set values<0.01 to 0.01; per chip: normalize to 50th percentile; per gene: normalize to median)."	"GPL570"	"Nicole,Claudia,Berchtold"	"nberchto@uci.edu"	"949 824 6071"	"Carl W. Cotman"	"Institute for Memory Impairments and Neurological Disorders"	"UC Irvine"	"1226 Gillespie Neuroscience Facility"	"Irvine"	"CA"	"92697-4540"	"USA"	"ftp://ftp.ncbi.nlm.nih.gov/geo/samples/GSM300nnn/GSM300232/suppl/GSM300232.CEL.gz"	"54675"	"Reanalyzed by: GSE119087"	"Reanalyzed by: GSE133349"	""	"37"	NA	NA	"postcentral gyrus"	"female"	"45, C"	NA
+"GSM300233"	"SuperiorFrontalGyrus_female_37yrs_indiv45"	"GSM300233"	"Public on Oct 09 2008"	"Jun 25 2008"	"Jun 26 2019"	"RNA"	"1"	"brain, superior frontal gyrus, female, 37 years"	"Homo sapiens"	"individual: 45, C"	"brain region: superior frontal gyrus"	"gender: female"	"age (yrs): 37"	""	""	"N/A"	"N/A"	"total RNA"	"Total RNA was extracted from 10-200 mg of frozen, unfixed tissue using Trizol reagent (Invitrogen, Carlsbad CA), and purified using quick spin columns (Qiagen, Valencia CA).  RNA quality was assessed using the Agilent BioAnalyzer (Agilent Technologies, Palo Alto, CA) and UV spectrophotometer for the presence of sharp peaks and 28S/18S RNA."	"biotin"	"Total RNA (10 ug) from each sample was used to generate first strand cDNA using a T7-linked-(dT)24 primer, followed by in vitro transcription using the ENZO BioArray High-Yield RNA transcript labeling kit (ENZO Farmingdale, NY) to generate biotin-labeled cRNA target."	"9606"	"Using a robotics system (Biomek FX MicroArray Plex SA System; Beckman Coultier) to optimize consistency in processing and minimize handling variability, each fragmented, biotin-labeled cRNA sample (30 mg) was individually hybridized to an Affymetrix Hg-U133 plus 2.0 chip for 16 hours and rotated at 13 rpm at 50C."	"The chips were scanned using an Affymetrix GeneChip Scanner 3000 7G"	"Brain from cognitively intact individual."	"GC-RMA expression values were obtained from CEL files using GeneSpring 7.3.1 software.  PLIER expression values were obtained using Expression Console software using default settings.  PLIER and GC-RMA data were processed using GeneSpring 7.0 software, with default normalizations (Data transformation:set values<0.01 to 0.01; per chip: normalize to 50th percentile; per gene: normalize to median)."	"GPL570"	"Nicole,Claudia,Berchtold"	"nberchto@uci.edu"	"949 824 6071"	"Carl W. Cotman"	"Institute for Memory Impairments and Neurological Disorders"	"UC Irvine"	"1226 Gillespie Neuroscience Facility"	"Irvine"	"CA"	"92697-4540"	"USA"	"ftp://ftp.ncbi.nlm.nih.gov/geo/samples/GSM300nnn/GSM300233/suppl/GSM300233.CEL.gz"	"54675"	"Reanalyzed by: GSE119087"	"Reanalyzed by: GSE133349"	""	"37"	NA	NA	"superior frontal gyrus"	"female"	"45, C"	NA
+"GSM300234"	"EntorhinalCortex_male_85yrs_indiv46"	"GSM300234"	"Public on Oct 09 2008"	"Jun 25 2008"	"Jun 26 2019"	"RNA"	"1"	"brain, entorhinal cortex, male, 85 years"	"Homo sapiens"	"individual: 46, C"	"brain region: entorhinal cortex"	"gender: male"	"age (yrs): 85"	""	""	"N/A"	"N/A"	"total RNA"	"Total RNA was extracted from 10-200 mg of frozen, unfixed tissue using Trizol reagent (Invitrogen, Carlsbad CA), and purified using quick spin columns (Qiagen, Valencia CA).  RNA quality was assessed using the Agilent BioAnalyzer (Agilent Technologies, Palo Alto, CA) and UV spectrophotometer for the presence of sharp peaks and 28S/18S RNA."	"biotin"	"Total RNA (10 ug) from each sample was used to generate first strand cDNA using a T7-linked-(dT)24 primer, followed by in vitro transcription using the ENZO BioArray High-Yield RNA transcript labeling kit (ENZO Farmingdale, NY) to generate biotin-labeled cRNA target."	"9606"	"Using a robotics system (Biomek FX MicroArray Plex SA System; Beckman Coultier) to optimize consistency in processing and minimize handling variability, each fragmented, biotin-labeled cRNA sample (30 mg) was individually hybridized to an Affymetrix Hg-U133 plus 2.0 chip for 16 hours and rotated at 13 rpm at 50C."	"The chips were scanned using an Affymetrix GeneChip Scanner 3000 7G"	"Brain from cognitively intact individual."	"GC-RMA expression values were obtained from CEL files using GeneSpring 7.3.1 software.  PLIER expression values were obtained using Expression Console software using default settings.  PLIER and GC-RMA data were processed using GeneSpring 7.0 software, with default normalizations (Data transformation:set values<0.01 to 0.01; per chip: normalize to 50th percentile; per gene: normalize to median)."	"GPL570"	"Nicole,Claudia,Berchtold"	"nberchto@uci.edu"	"949 824 6071"	"Carl W. Cotman"	"Institute for Memory Impairments and Neurological Disorders"	"UC Irvine"	"1226 Gillespie Neuroscience Facility"	"Irvine"	"CA"	"92697-4540"	"USA"	"ftp://ftp.ncbi.nlm.nih.gov/geo/samples/GSM300nnn/GSM300234/suppl/GSM300234.CEL.gz"	"54675"	"Reanalyzed by: GSE119087"	"Reanalyzed by: GSE133349"	""	"85"	NA	NA	"entorhinal cortex"	"male"	"46, C"	NA
+"GSM300235"	"Hippocampus_male_85yrs_indiv46"	"GSM300235"	"Public on Oct 09 2008"	"Jun 25 2008"	"Jun 26 2019"	"RNA"	"1"	"brain, hippocampus, male, 85 years"	"Homo sapiens"	"individual: 46, C"	"brain region: hippocampus"	"gender: male"	"age (yrs): 85"	""	""	"N/A"	"N/A"	"total RNA"	"Total RNA was extracted from 10-200 mg of frozen, unfixed tissue using Trizol reagent (Invitrogen, Carlsbad CA), and purified using quick spin columns (Qiagen, Valencia CA).  RNA quality was assessed using the Agilent BioAnalyzer (Agilent Technologies, Palo Alto, CA) and UV spectrophotometer for the presence of sharp peaks and 28S/18S RNA."	"biotin"	"Total RNA (10 ug) from each sample was used to generate first strand cDNA using a T7-linked-(dT)24 primer, followed by in vitro transcription using the ENZO BioArray High-Yield RNA transcript labeling kit (ENZO Farmingdale, NY) to generate biotin-labeled cRNA target."	"9606"	"Using a robotics system (Biomek FX MicroArray Plex SA System; Beckman Coultier) to optimize consistency in processing and minimize handling variability, each fragmented, biotin-labeled cRNA sample (30 mg) was individually hybridized to an Affymetrix Hg-U133 plus 2.0 chip for 16 hours and rotated at 13 rpm at 50C."	"The chips were scanned using an Affymetrix GeneChip Scanner 3000 7G"	"Brain from cognitively intact individual."	"GC-RMA expression values were obtained from CEL files using GeneSpring 7.3.1 software.  PLIER expression values were obtained using Expression Console software using default settings.  PLIER and GC-RMA data were processed using GeneSpring 7.0 software, with default normalizations (Data transformation:set values<0.01 to 0.01; per chip: normalize to 50th percentile; per gene: normalize to median)."	"GPL570"	"Nicole,Claudia,Berchtold"	"nberchto@uci.edu"	"949 824 6071"	"Carl W. Cotman"	"Institute for Memory Impairments and Neurological Disorders"	"UC Irvine"	"1226 Gillespie Neuroscience Facility"	"Irvine"	"CA"	"92697-4540"	"USA"	"ftp://ftp.ncbi.nlm.nih.gov/geo/samples/GSM300nnn/GSM300235/suppl/GSM300235.CEL.gz"	"54675"	"Reanalyzed by: GSE119087"	"Reanalyzed by: GSE133349"	""	"85"	NA	NA	"hippocampus"	"male"	"46, C"	NA
+"GSM300236"	"PostcentralGyrus_male_85yrs_indiv46"	"GSM300236"	"Public on Oct 09 2008"	"Jun 25 2008"	"Jun 26 2019"	"RNA"	"1"	"brain, postcentral gyrus, male, 85 years"	"Homo sapiens"	"individual: 46, C"	"brain region: postcentral gyrus"	"gender: male"	"age (yrs): 85"	""	""	"N/A"	"N/A"	"total RNA"	"Total RNA was extracted from 10-200 mg of frozen, unfixed tissue using Trizol reagent (Invitrogen, Carlsbad CA), and purified using quick spin columns (Qiagen, Valencia CA).  RNA quality was assessed using the Agilent BioAnalyzer (Agilent Technologies, Palo Alto, CA) and UV spectrophotometer for the presence of sharp peaks and 28S/18S RNA."	"biotin"	"Total RNA (10 ug) from each sample was used to generate first strand cDNA using a T7-linked-(dT)24 primer, followed by in vitro transcription using the ENZO BioArray High-Yield RNA transcript labeling kit (ENZO Farmingdale, NY) to generate biotin-labeled cRNA target."	"9606"	"Using a robotics system (Biomek FX MicroArray Plex SA System; Beckman Coultier) to optimize consistency in processing and minimize handling variability, each fragmented, biotin-labeled cRNA sample (30 mg) was individually hybridized to an Affymetrix Hg-U133 plus 2.0 chip for 16 hours and rotated at 13 rpm at 50C."	"The chips were scanned using an Affymetrix GeneChip Scanner 3000 7G"	"Brain from cognitively intact individual."	"GC-RMA expression values were obtained from CEL files using GeneSpring 7.3.1 software.  PLIER expression values were obtained using Expression Console software using default settings.  PLIER and GC-RMA data were processed using GeneSpring 7.0 software, with default normalizations (Data transformation:set values<0.01 to 0.01; per chip: normalize to 50th percentile; per gene: normalize to median)."	"GPL570"	"Nicole,Claudia,Berchtold"	"nberchto@uci.edu"	"949 824 6071"	"Carl W. Cotman"	"Institute for Memory Impairments and Neurological Disorders"	"UC Irvine"	"1226 Gillespie Neuroscience Facility"	"Irvine"	"CA"	"92697-4540"	"USA"	"ftp://ftp.ncbi.nlm.nih.gov/geo/samples/GSM300nnn/GSM300236/suppl/GSM300236.CEL.gz"	"54675"	"Reanalyzed by: GSE119087"	"Reanalyzed by: GSE133349"	""	"85"	NA	NA	"postcentral gyrus"	"male"	"46, C"	NA
+"GSM300237"	"SuperiorFrontalGyrus_male_85yrs_indiv46"	"GSM300237"	"Public on Oct 09 2008"	"Jun 25 2008"	"Jun 26 2019"	"RNA"	"1"	"brain, superior frontal gyrus, male, 85 years"	"Homo sapiens"	"individual: 46, C"	"brain region: superior frontal gyrus"	"gender: male"	"age (yrs): 85"	""	""	"N/A"	"N/A"	"total RNA"	"Total RNA was extracted from 10-200 mg of frozen, unfixed tissue using Trizol reagent (Invitrogen, Carlsbad CA), and purified using quick spin columns (Qiagen, Valencia CA).  RNA quality was assessed using the Agilent BioAnalyzer (Agilent Technologies, Palo Alto, CA) and UV spectrophotometer for the presence of sharp peaks and 28S/18S RNA."	"biotin"	"Total RNA (10 ug) from each sample was used to generate first strand cDNA using a T7-linked-(dT)24 primer, followed by in vitro transcription using the ENZO BioArray High-Yield RNA transcript labeling kit (ENZO Farmingdale, NY) to generate biotin-labeled cRNA target."	"9606"	"Using a robotics system (Biomek FX MicroArray Plex SA System; Beckman Coultier) to optimize consistency in processing and minimize handling variability, each fragmented, biotin-labeled cRNA sample (30 mg) was individually hybridized to an Affymetrix Hg-U133 plus 2.0 chip for 16 hours and rotated at 13 rpm at 50C."	"The chips were scanned using an Affymetrix GeneChip Scanner 3000 7G"	"Brain from cognitively intact individual."	"GC-RMA expression values were obtained from CEL files using GeneSpring 7.3.1 software.  PLIER expression values were obtained using Expression Console software using default settings.  PLIER and GC-RMA data were processed using GeneSpring 7.0 software, with default normalizations (Data transformation:set values<0.01 to 0.01; per chip: normalize to 50th percentile; per gene: normalize to median)."	"GPL570"	"Nicole,Claudia,Berchtold"	"nberchto@uci.edu"	"949 824 6071"	"Carl W. Cotman"	"Institute for Memory Impairments and Neurological Disorders"	"UC Irvine"	"1226 Gillespie Neuroscience Facility"	"Irvine"	"CA"	"92697-4540"	"USA"	"ftp://ftp.ncbi.nlm.nih.gov/geo/samples/GSM300nnn/GSM300237/suppl/GSM300237.CEL.gz"	"54675"	"Reanalyzed by: GSE119087"	"Reanalyzed by: GSE133349"	""	"85"	NA	NA	"superior frontal gyrus"	"male"	"46, C"	NA
+"GSM300238"	"EntorhinalCortex_female_70yrs_indiv47"	"GSM300238"	"Public on Oct 09 2008"	"Jun 25 2008"	"Jun 26 2019"	"RNA"	"1"	"brain, entorhinal cortex, female, 70 years"	"Homo sapiens"	"individual: 47, C"	"brain region: entorhinal cortex"	"gender: female"	"age (yrs): 70"	""	""	"N/A"	"N/A"	"total RNA"	"Total RNA was extracted from 10-200 mg of frozen, unfixed tissue using Trizol reagent (Invitrogen, Carlsbad CA), and purified using quick spin columns (Qiagen, Valencia CA).  RNA quality was assessed using the Agilent BioAnalyzer (Agilent Technologies, Palo Alto, CA) and UV spectrophotometer for the presence of sharp peaks and 28S/18S RNA."	"biotin"	"Total RNA (10 ug) from each sample was used to generate first strand cDNA using a T7-linked-(dT)24 primer, followed by in vitro transcription using the ENZO BioArray High-Yield RNA transcript labeling kit (ENZO Farmingdale, NY) to generate biotin-labeled cRNA target."	"9606"	"Using a robotics system (Biomek FX MicroArray Plex SA System; Beckman Coultier) to optimize consistency in processing and minimize handling variability, each fragmented, biotin-labeled cRNA sample (30 mg) was individually hybridized to an Affymetrix Hg-U133 plus 2.0 chip for 16 hours and rotated at 13 rpm at 50C."	"The chips were scanned using an Affymetrix GeneChip Scanner 3000 7G"	"Brain from cognitively intact individual."	"GC-RMA expression values were obtained from CEL files using GeneSpring 7.3.1 software.  PLIER expression values were obtained using Expression Console software using default settings.  PLIER and GC-RMA data were processed using GeneSpring 7.0 software, with default normalizations (Data transformation:set values<0.01 to 0.01; per chip: normalize to 50th percentile; per gene: normalize to median)."	"GPL570"	"Nicole,Claudia,Berchtold"	"nberchto@uci.edu"	"949 824 6071"	"Carl W. Cotman"	"Institute for Memory Impairments and Neurological Disorders"	"UC Irvine"	"1226 Gillespie Neuroscience Facility"	"Irvine"	"CA"	"92697-4540"	"USA"	"ftp://ftp.ncbi.nlm.nih.gov/geo/samples/GSM300nnn/GSM300238/suppl/GSM300238.CEL.gz"	"54675"	"Reanalyzed by: GSE119087"	"Reanalyzed by: GSE133349"	""	"70"	NA	NA	"entorhinal cortex"	"female"	"47, C"	NA
+"GSM300239"	"Hippocampus_female_70yrs_indiv47"	"GSM300239"	"Public on Oct 09 2008"	"Jun 25 2008"	"Jun 26 2019"	"RNA"	"1"	"brain, hippocampus, female, 70 years"	"Homo sapiens"	"individual: 47, C"	"brain region: hippocampus"	"gender: female"	"age (yrs): 70"	""	""	"N/A"	"N/A"	"total RNA"	"Total RNA was extracted from 10-200 mg of frozen, unfixed tissue using Trizol reagent (Invitrogen, Carlsbad CA), and purified using quick spin columns (Qiagen, Valencia CA).  RNA quality was assessed using the Agilent BioAnalyzer (Agilent Technologies, Palo Alto, CA) and UV spectrophotometer for the presence of sharp peaks and 28S/18S RNA."	"biotin"	"Total RNA (10 ug) from each sample was used to generate first strand cDNA using a T7-linked-(dT)24 primer, followed by in vitro transcription using the ENZO BioArray High-Yield RNA transcript labeling kit (ENZO Farmingdale, NY) to generate biotin-labeled cRNA target."	"9606"	"Using a robotics system (Biomek FX MicroArray Plex SA System; Beckman Coultier) to optimize consistency in processing and minimize handling variability, each fragmented, biotin-labeled cRNA sample (30 mg) was individually hybridized to an Affymetrix Hg-U133 plus 2.0 chip for 16 hours and rotated at 13 rpm at 50C."	"The chips were scanned using an Affymetrix GeneChip Scanner 3000 7G"	"Brain from cognitively intact individual."	"GC-RMA expression values were obtained from CEL files using GeneSpring 7.3.1 software.  PLIER expression values were obtained using Expression Console software using default settings.  PLIER and GC-RMA data were processed using GeneSpring 7.0 software, with default normalizations (Data transformation:set values<0.01 to 0.01; per chip: normalize to 50th percentile; per gene: normalize to median)."	"GPL570"	"Nicole,Claudia,Berchtold"	"nberchto@uci.edu"	"949 824 6071"	"Carl W. Cotman"	"Institute for Memory Impairments and Neurological Disorders"	"UC Irvine"	"1226 Gillespie Neuroscience Facility"	"Irvine"	"CA"	"92697-4540"	"USA"	"ftp://ftp.ncbi.nlm.nih.gov/geo/samples/GSM300nnn/GSM300239/suppl/GSM300239.CEL.gz"	"54675"	"Reanalyzed by: GSE119087"	"Reanalyzed by: GSE133349"	""	"70"	NA	NA	"hippocampus"	"female"	"47, C"	NA
+"GSM300240"	"PostcentralGyrus_female_70yrs_indiv47"	"GSM300240"	"Public on Oct 09 2008"	"Jun 25 2008"	"Jun 26 2019"	"RNA"	"1"	"brain, postcentral gyrus, female, 70 years"	"Homo sapiens"	"individual: 47, C"	"brain region: postcentral gyrus"	"gender: female"	"age (yrs): 70"	""	""	"N/A"	"N/A"	"total RNA"	"Total RNA was extracted from 10-200 mg of frozen, unfixed tissue using Trizol reagent (Invitrogen, Carlsbad CA), and purified using quick spin columns (Qiagen, Valencia CA).  RNA quality was assessed using the Agilent BioAnalyzer (Agilent Technologies, Palo Alto, CA) and UV spectrophotometer for the presence of sharp peaks and 28S/18S RNA."	"biotin"	"Total RNA (10 ug) from each sample was used to generate first strand cDNA using a T7-linked-(dT)24 primer, followed by in vitro transcription using the ENZO BioArray High-Yield RNA transcript labeling kit (ENZO Farmingdale, NY) to generate biotin-labeled cRNA target."	"9606"	"Using a robotics system (Biomek FX MicroArray Plex SA System; Beckman Coultier) to optimize consistency in processing and minimize handling variability, each fragmented, biotin-labeled cRNA sample (30 mg) was individually hybridized to an Affymetrix Hg-U133 plus 2.0 chip for 16 hours and rotated at 13 rpm at 50C."	"The chips were scanned using an Affymetrix GeneChip Scanner 3000 7G"	"Brain from cognitively intact individual."	"GC-RMA expression values were obtained from CEL files using GeneSpring 7.3.1 software.  PLIER expression values were obtained using Expression Console software using default settings.  PLIER and GC-RMA data were processed using GeneSpring 7.0 software, with default normalizations (Data transformation:set values<0.01 to 0.01; per chip: normalize to 50th percentile; per gene: normalize to median)."	"GPL570"	"Nicole,Claudia,Berchtold"	"nberchto@uci.edu"	"949 824 6071"	"Carl W. Cotman"	"Institute for Memory Impairments and Neurological Disorders"	"UC Irvine"	"1226 Gillespie Neuroscience Facility"	"Irvine"	"CA"	"92697-4540"	"USA"	"ftp://ftp.ncbi.nlm.nih.gov/geo/samples/GSM300nnn/GSM300240/suppl/GSM300240.CEL.gz"	"54675"	"Reanalyzed by: GSE119087"	"Reanalyzed by: GSE133349"	""	"70"	NA	NA	"postcentral gyrus"	"female"	"47, C"	NA
+"GSM300241"	"SuperiorFrontalGyrus_female_70yrs_indiv47"	"GSM300241"	"Public on Oct 09 2008"	"Jun 25 2008"	"Jun 26 2019"	"RNA"	"1"	"brain, superior frontal gyrus, female, 70 years"	"Homo sapiens"	"individual: 47, C"	"brain region: superior frontal gyrus"	"gender: female"	"age (yrs): 70"	""	""	"N/A"	"N/A"	"total RNA"	"Total RNA was extracted from 10-200 mg of frozen, unfixed tissue using Trizol reagent (Invitrogen, Carlsbad CA), and purified using quick spin columns (Qiagen, Valencia CA).  RNA quality was assessed using the Agilent BioAnalyzer (Agilent Technologies, Palo Alto, CA) and UV spectrophotometer for the presence of sharp peaks and 28S/18S RNA."	"biotin"	"Total RNA (10 ug) from each sample was used to generate first strand cDNA using a T7-linked-(dT)24 primer, followed by in vitro transcription using the ENZO BioArray High-Yield RNA transcript labeling kit (ENZO Farmingdale, NY) to generate biotin-labeled cRNA target."	"9606"	"Using a robotics system (Biomek FX MicroArray Plex SA System; Beckman Coultier) to optimize consistency in processing and minimize handling variability, each fragmented, biotin-labeled cRNA sample (30 mg) was individually hybridized to an Affymetrix Hg-U133 plus 2.0 chip for 16 hours and rotated at 13 rpm at 50C."	"The chips were scanned using an Affymetrix GeneChip Scanner 3000 7G"	"Brain from cognitively intact individual."	"GC-RMA expression values were obtained from CEL files using GeneSpring 7.3.1 software.  PLIER expression values were obtained using Expression Console software using default settings.  PLIER and GC-RMA data were processed using GeneSpring 7.0 software, with default normalizations (Data transformation:set values<0.01 to 0.01; per chip: normalize to 50th percentile; per gene: normalize to median)."	"GPL570"	"Nicole,Claudia,Berchtold"	"nberchto@uci.edu"	"949 824 6071"	"Carl W. Cotman"	"Institute for Memory Impairments and Neurological Disorders"	"UC Irvine"	"1226 Gillespie Neuroscience Facility"	"Irvine"	"CA"	"92697-4540"	"USA"	"ftp://ftp.ncbi.nlm.nih.gov/geo/samples/GSM300nnn/GSM300241/suppl/GSM300241.CEL.gz"	"54675"	"Reanalyzed by: GSE119087"	"Reanalyzed by: GSE133349"	""	"70"	NA	NA	"superior frontal gyrus"	"female"	"47, C"	NA
+"GSM300242"	"EntorhinalCortex_female_64yrs_indiv52"	"GSM300242"	"Public on Oct 09 2008"	"Jun 25 2008"	"Jun 26 2019"	"RNA"	"1"	"brain, entorhinal cortex, female, 64 years"	"Homo sapiens"	"individual: 52, C"	"brain region: entorhinal cortex"	"gender: female"	"age (yrs): 64"	""	""	"N/A"	"N/A"	"total RNA"	"Total RNA was extracted from 10-200 mg of frozen, unfixed tissue using Trizol reagent (Invitrogen, Carlsbad CA), and purified using quick spin columns (Qiagen, Valencia CA).  RNA quality was assessed using the Agilent BioAnalyzer (Agilent Technologies, Palo Alto, CA) and UV spectrophotometer for the presence of sharp peaks and 28S/18S RNA."	"biotin"	"Total RNA (10 ug) from each sample was used to generate first strand cDNA using a T7-linked-(dT)24 primer, followed by in vitro transcription using the ENZO BioArray High-Yield RNA transcript labeling kit (ENZO Farmingdale, NY) to generate biotin-labeled cRNA target."	"9606"	"Using a robotics system (Biomek FX MicroArray Plex SA System; Beckman Coultier) to optimize consistency in processing and minimize handling variability, each fragmented, biotin-labeled cRNA sample (30 mg) was individually hybridized to an Affymetrix Hg-U133 plus 2.0 chip for 16 hours and rotated at 13 rpm at 50C."	"The chips were scanned using an Affymetrix GeneChip Scanner 3000 7G"	"Brain from cognitively intact individual."	"GC-RMA expression values were obtained from CEL files using GeneSpring 7.3.1 software.  PLIER expression values were obtained using Expression Console software using default settings.  PLIER and GC-RMA data were processed using GeneSpring 7.0 software, with default normalizations (Data transformation:set values<0.01 to 0.01; per chip: normalize to 50th percentile; per gene: normalize to median)."	"GPL570"	"Nicole,Claudia,Berchtold"	"nberchto@uci.edu"	"949 824 6071"	"Carl W. Cotman"	"Institute for Memory Impairments and Neurological Disorders"	"UC Irvine"	"1226 Gillespie Neuroscience Facility"	"Irvine"	"CA"	"92697-4540"	"USA"	"ftp://ftp.ncbi.nlm.nih.gov/geo/samples/GSM300nnn/GSM300242/suppl/GSM300242.CEL.gz"	"54675"	"Reanalyzed by: GSE119087"	"Reanalyzed by: GSE133349"	""	"64"	NA	NA	"entorhinal cortex"	"female"	"52, C"	NA
+"GSM300243"	"Hippocampus_female_64yrs_indiv52"	"GSM300243"	"Public on Oct 09 2008"	"Jun 25 2008"	"Jun 26 2019"	"RNA"	"1"	"brain, hippocampus, female, 64 years"	"Homo sapiens"	"individual: 52, C"	"brain region: hippocampus"	"gender: female"	"age (yrs): 64"	""	""	"N/A"	"N/A"	"total RNA"	"Total RNA was extracted from 10-200 mg of frozen, unfixed tissue using Trizol reagent (Invitrogen, Carlsbad CA), and purified using quick spin columns (Qiagen, Valencia CA).  RNA quality was assessed using the Agilent BioAnalyzer (Agilent Technologies, Palo Alto, CA) and UV spectrophotometer for the presence of sharp peaks and 28S/18S RNA."	"biotin"	"Total RNA (10 ug) from each sample was used to generate first strand cDNA using a T7-linked-(dT)24 primer, followed by in vitro transcription using the ENZO BioArray High-Yield RNA transcript labeling kit (ENZO Farmingdale, NY) to generate biotin-labeled cRNA target."	"9606"	"Using a robotics system (Biomek FX MicroArray Plex SA System; Beckman Coultier) to optimize consistency in processing and minimize handling variability, each fragmented, biotin-labeled cRNA sample (30 mg) was individually hybridized to an Affymetrix Hg-U133 plus 2.0 chip for 16 hours and rotated at 13 rpm at 50C."	"The chips were scanned using an Affymetrix GeneChip Scanner 3000 7G"	"Brain from cognitively intact individual."	"GC-RMA expression values were obtained from CEL files using GeneSpring 7.3.1 software.  PLIER expression values were obtained using Expression Console software using default settings.  PLIER and GC-RMA data were processed using GeneSpring 7.0 software, with default normalizations (Data transformation:set values<0.01 to 0.01; per chip: normalize to 50th percentile; per gene: normalize to median)."	"GPL570"	"Nicole,Claudia,Berchtold"	"nberchto@uci.edu"	"949 824 6071"	"Carl W. Cotman"	"Institute for Memory Impairments and Neurological Disorders"	"UC Irvine"	"1226 Gillespie Neuroscience Facility"	"Irvine"	"CA"	"92697-4540"	"USA"	"ftp://ftp.ncbi.nlm.nih.gov/geo/samples/GSM300nnn/GSM300243/suppl/GSM300243.CEL.gz"	"54675"	"Reanalyzed by: GSE119087"	"Reanalyzed by: GSE133349"	""	"64"	NA	NA	"hippocampus"	"female"	"52, C"	NA
+"GSM300244"	"PostcentralGyrus_female_64yrs_indiv52"	"GSM300244"	"Public on Oct 09 2008"	"Jun 25 2008"	"Jun 26 2019"	"RNA"	"1"	"brain, postcentral gyrus, female, 64 years"	"Homo sapiens"	"individual: 52, C"	"brain region: postcentral gyrus"	"gender: female"	"age (yrs): 64"	""	""	"N/A"	"N/A"	"total RNA"	"Total RNA was extracted from 10-200 mg of frozen, unfixed tissue using Trizol reagent (Invitrogen, Carlsbad CA), and purified using quick spin columns (Qiagen, Valencia CA).  RNA quality was assessed using the Agilent BioAnalyzer (Agilent Technologies, Palo Alto, CA) and UV spectrophotometer for the presence of sharp peaks and 28S/18S RNA."	"biotin"	"Total RNA (10 ug) from each sample was used to generate first strand cDNA using a T7-linked-(dT)24 primer, followed by in vitro transcription using the ENZO BioArray High-Yield RNA transcript labeling kit (ENZO Farmingdale, NY) to generate biotin-labeled cRNA target."	"9606"	"Using a robotics system (Biomek FX MicroArray Plex SA System; Beckman Coultier) to optimize consistency in processing and minimize handling variability, each fragmented, biotin-labeled cRNA sample (30 mg) was individually hybridized to an Affymetrix Hg-U133 plus 2.0 chip for 16 hours and rotated at 13 rpm at 50C."	"The chips were scanned using an Affymetrix GeneChip Scanner 3000 7G"	"Brain from cognitively intact individual."	"GC-RMA expression values were obtained from CEL files using GeneSpring 7.3.1 software.  PLIER expression values were obtained using Expression Console software using default settings.  PLIER and GC-RMA data were processed using GeneSpring 7.0 software, with default normalizations (Data transformation:set values<0.01 to 0.01; per chip: normalize to 50th percentile; per gene: normalize to median)."	"GPL570"	"Nicole,Claudia,Berchtold"	"nberchto@uci.edu"	"949 824 6071"	"Carl W. Cotman"	"Institute for Memory Impairments and Neurological Disorders"	"UC Irvine"	"1226 Gillespie Neuroscience Facility"	"Irvine"	"CA"	"92697-4540"	"USA"	"ftp://ftp.ncbi.nlm.nih.gov/geo/samples/GSM300nnn/GSM300244/suppl/GSM300244.CEL.gz"	"54675"	"Reanalyzed by: GSE119087"	"Reanalyzed by: GSE133349"	""	"64"	NA	NA	"postcentral gyrus"	"female"	"52, C"	NA
+"GSM300245"	"SuperiorFrontalGyrus_female_64yrs_indiv52"	"GSM300245"	"Public on Oct 09 2008"	"Jun 25 2008"	"Jun 26 2019"	"RNA"	"1"	"brain, superior frontal gyrus, female, 64 years"	"Homo sapiens"	"individual: 52, C"	"brain region: superior frontal gyrus"	"gender: female"	"age (yrs): 64"	""	""	"N/A"	"N/A"	"total RNA"	"Total RNA was extracted from 10-200 mg of frozen, unfixed tissue using Trizol reagent (Invitrogen, Carlsbad CA), and purified using quick spin columns (Qiagen, Valencia CA).  RNA quality was assessed using the Agilent BioAnalyzer (Agilent Technologies, Palo Alto, CA) and UV spectrophotometer for the presence of sharp peaks and 28S/18S RNA."	"biotin"	"Total RNA (10 ug) from each sample was used to generate first strand cDNA using a T7-linked-(dT)24 primer, followed by in vitro transcription using the ENZO BioArray High-Yield RNA transcript labeling kit (ENZO Farmingdale, NY) to generate biotin-labeled cRNA target."	"9606"	"Using a robotics system (Biomek FX MicroArray Plex SA System; Beckman Coultier) to optimize consistency in processing and minimize handling variability, each fragmented, biotin-labeled cRNA sample (30 mg) was individually hybridized to an Affymetrix Hg-U133 plus 2.0 chip for 16 hours and rotated at 13 rpm at 50C."	"The chips were scanned using an Affymetrix GeneChip Scanner 3000 7G"	"Brain from cognitively intact individual."	"GC-RMA expression values were obtained from CEL files using GeneSpring 7.3.1 software.  PLIER expression values were obtained using Expression Console software using default settings.  PLIER and GC-RMA data were processed using GeneSpring 7.0 software, with default normalizations (Data transformation:set values<0.01 to 0.01; per chip: normalize to 50th percentile; per gene: normalize to median)."	"GPL570"	"Nicole,Claudia,Berchtold"	"nberchto@uci.edu"	"949 824 6071"	"Carl W. Cotman"	"Institute for Memory Impairments and Neurological Disorders"	"UC Irvine"	"1226 Gillespie Neuroscience Facility"	"Irvine"	"CA"	"92697-4540"	"USA"	"ftp://ftp.ncbi.nlm.nih.gov/geo/samples/GSM300nnn/GSM300245/suppl/GSM300245.CEL.gz"	"54675"	"Reanalyzed by: GSE119087"	"Reanalyzed by: GSE133349"	""	"64"	NA	NA	"superior frontal gyrus"	"female"	"52, C"	NA
+"GSM300246"	"PostcentralGyrus_male_70yrs_indiv53"	"GSM300246"	"Public on Oct 09 2008"	"Jun 25 2008"	"Jun 26 2019"	"RNA"	"1"	"brain, postcentral gyrus, male, 70 years"	"Homo sapiens"	"individual: 53, C"	"brain region: postcentral gyrus"	"gender: male"	"age (yrs): 70"	""	""	"N/A"	"N/A"	"total RNA"	"Total RNA was extracted from 10-200 mg of frozen, unfixed tissue using Trizol reagent (Invitrogen, Carlsbad CA), and purified using quick spin columns (Qiagen, Valencia CA).  RNA quality was assessed using the Agilent BioAnalyzer (Agilent Technologies, Palo Alto, CA) and UV spectrophotometer for the presence of sharp peaks and 28S/18S RNA."	"biotin"	"Total RNA (10 ug) from each sample was used to generate first strand cDNA using a T7-linked-(dT)24 primer, followed by in vitro transcription using the ENZO BioArray High-Yield RNA transcript labeling kit (ENZO Farmingdale, NY) to generate biotin-labeled cRNA target."	"9606"	"Using a robotics system (Biomek FX MicroArray Plex SA System; Beckman Coultier) to optimize consistency in processing and minimize handling variability, each fragmented, biotin-labeled cRNA sample (30 mg) was individually hybridized to an Affymetrix Hg-U133 plus 2.0 chip for 16 hours and rotated at 13 rpm at 50C."	"The chips were scanned using an Affymetrix GeneChip Scanner 3000 7G"	"Brain from cognitively intact individual."	"GC-RMA expression values were obtained from CEL files using GeneSpring 7.3.1 software.  PLIER expression values were obtained using Expression Console software using default settings.  PLIER and GC-RMA data were processed using GeneSpring 7.0 software, with default normalizations (Data transformation:set values<0.01 to 0.01; per chip: normalize to 50th percentile; per gene: normalize to median)."	"GPL570"	"Nicole,Claudia,Berchtold"	"nberchto@uci.edu"	"949 824 6071"	"Carl W. Cotman"	"Institute for Memory Impairments and Neurological Disorders"	"UC Irvine"	"1226 Gillespie Neuroscience Facility"	"Irvine"	"CA"	"92697-4540"	"USA"	"ftp://ftp.ncbi.nlm.nih.gov/geo/samples/GSM300nnn/GSM300246/suppl/GSM300246.CEL.gz"	"54675"	"Reanalyzed by: GSE119087"	"Reanalyzed by: GSE133349"	""	"70"	NA	NA	"postcentral gyrus"	"male"	"53, C"	NA
+"GSM300247"	"SuperiorFrontalGyrus_male_70yrs_indiv53"	"GSM300247"	"Public on Oct 09 2008"	"Jun 25 2008"	"Jun 26 2019"	"RNA"	"1"	"brain, superior frontal gyrus, male, 70 years"	"Homo sapiens"	"individual: 53, C"	"brain region: superior frontal gyrus"	"gender: male"	"age (yrs): 70"	""	""	"N/A"	"N/A"	"total RNA"	"Total RNA was extracted from 10-200 mg of frozen, unfixed tissue using Trizol reagent (Invitrogen, Carlsbad CA), and purified using quick spin columns (Qiagen, Valencia CA).  RNA quality was assessed using the Agilent BioAnalyzer (Agilent Technologies, Palo Alto, CA) and UV spectrophotometer for the presence of sharp peaks and 28S/18S RNA."	"biotin"	"Total RNA (10 ug) from each sample was used to generate first strand cDNA using a T7-linked-(dT)24 primer, followed by in vitro transcription using the ENZO BioArray High-Yield RNA transcript labeling kit (ENZO Farmingdale, NY) to generate biotin-labeled cRNA target."	"9606"	"Using a robotics system (Biomek FX MicroArray Plex SA System; Beckman Coultier) to optimize consistency in processing and minimize handling variability, each fragmented, biotin-labeled cRNA sample (30 mg) was individually hybridized to an Affymetrix Hg-U133 plus 2.0 chip for 16 hours and rotated at 13 rpm at 50C."	"The chips were scanned using an Affymetrix GeneChip Scanner 3000 7G"	"Brain from cognitively intact individual."	"GC-RMA expression values were obtained from CEL files using GeneSpring 7.3.1 software.  PLIER expression values were obtained using Expression Console software using default settings.  PLIER and GC-RMA data were processed using GeneSpring 7.0 software, with default normalizations (Data transformation:set values<0.01 to 0.01; per chip: normalize to 50th percentile; per gene: normalize to median)."	"GPL570"	"Nicole,Claudia,Berchtold"	"nberchto@uci.edu"	"949 824 6071"	"Carl W. Cotman"	"Institute for Memory Impairments and Neurological Disorders"	"UC Irvine"	"1226 Gillespie Neuroscience Facility"	"Irvine"	"CA"	"92697-4540"	"USA"	"ftp://ftp.ncbi.nlm.nih.gov/geo/samples/GSM300nnn/GSM300247/suppl/GSM300247.CEL.gz"	"54675"	"Reanalyzed by: GSE119087"	"Reanalyzed by: GSE133349"	""	"70"	NA	NA	"superior frontal gyrus"	"male"	"53, C"	NA
+"GSM300248"	"EntorhinalCortex_female_85yrs_indiv54"	"GSM300248"	"Public on Oct 09 2008"	"Jun 25 2008"	"Jun 26 2019"	"RNA"	"1"	"brain, entorhinal cortex, female, 85 years"	"Homo sapiens"	"individual: 54, C"	"brain region: entorhinal cortex"	"gender: female"	"age (yrs): 85"	""	""	"N/A"	"N/A"	"total RNA"	"Total RNA was extracted from 10-200 mg of frozen, unfixed tissue using Trizol reagent (Invitrogen, Carlsbad CA), and purified using quick spin columns (Qiagen, Valencia CA).  RNA quality was assessed using the Agilent BioAnalyzer (Agilent Technologies, Palo Alto, CA) and UV spectrophotometer for the presence of sharp peaks and 28S/18S RNA."	"biotin"	"Total RNA (10 ug) from each sample was used to generate first strand cDNA using a T7-linked-(dT)24 primer, followed by in vitro transcription using the ENZO BioArray High-Yield RNA transcript labeling kit (ENZO Farmingdale, NY) to generate biotin-labeled cRNA target."	"9606"	"Using a robotics system (Biomek FX MicroArray Plex SA System; Beckman Coultier) to optimize consistency in processing and minimize handling variability, each fragmented, biotin-labeled cRNA sample (30 mg) was individually hybridized to an Affymetrix Hg-U133 plus 2.0 chip for 16 hours and rotated at 13 rpm at 50C."	"The chips were scanned using an Affymetrix GeneChip Scanner 3000 7G"	"Brain from cognitively intact individual."	"GC-RMA expression values were obtained from CEL files using GeneSpring 7.3.1 software.  PLIER expression values were obtained using Expression Console software using default settings.  PLIER and GC-RMA data were processed using GeneSpring 7.0 software, with default normalizations (Data transformation:set values<0.01 to 0.01; per chip: normalize to 50th percentile; per gene: normalize to median)."	"GPL570"	"Nicole,Claudia,Berchtold"	"nberchto@uci.edu"	"949 824 6071"	"Carl W. Cotman"	"Institute for Memory Impairments and Neurological Disorders"	"UC Irvine"	"1226 Gillespie Neuroscience Facility"	"Irvine"	"CA"	"92697-4540"	"USA"	"ftp://ftp.ncbi.nlm.nih.gov/geo/samples/GSM300nnn/GSM300248/suppl/GSM300248.CEL.gz"	"54675"	"Reanalyzed by: GSE119087"	"Reanalyzed by: GSE133349"	""	"85"	NA	NA	"entorhinal cortex"	"female"	"54, C"	NA
+"GSM300249"	"PostcentralGyrus_female_85yrs_indiv54"	"GSM300249"	"Public on Oct 09 2008"	"Jun 25 2008"	"Jun 26 2019"	"RNA"	"1"	"brain, postcentral gyrus, female, 85 years"	"Homo sapiens"	"individual: 54, C"	"brain region: postcentral gyrus"	"gender: female"	"age (yrs): 85"	""	""	"N/A"	"N/A"	"total RNA"	"Total RNA was extracted from 10-200 mg of frozen, unfixed tissue using Trizol reagent (Invitrogen, Carlsbad CA), and purified using quick spin columns (Qiagen, Valencia CA).  RNA quality was assessed using the Agilent BioAnalyzer (Agilent Technologies, Palo Alto, CA) and UV spectrophotometer for the presence of sharp peaks and 28S/18S RNA."	"biotin"	"Total RNA (10 ug) from each sample was used to generate first strand cDNA using a T7-linked-(dT)24 primer, followed by in vitro transcription using the ENZO BioArray High-Yield RNA transcript labeling kit (ENZO Farmingdale, NY) to generate biotin-labeled cRNA target."	"9606"	"Using a robotics system (Biomek FX MicroArray Plex SA System; Beckman Coultier) to optimize consistency in processing and minimize handling variability, each fragmented, biotin-labeled cRNA sample (30 mg) was individually hybridized to an Affymetrix Hg-U133 plus 2.0 chip for 16 hours and rotated at 13 rpm at 50C."	"The chips were scanned using an Affymetrix GeneChip Scanner 3000 7G"	"Brain from cognitively intact individual."	"GC-RMA expression values were obtained from CEL files using GeneSpring 7.3.1 software.  PLIER expression values were obtained using Expression Console software using default settings.  PLIER and GC-RMA data were processed using GeneSpring 7.0 software, with default normalizations (Data transformation:set values<0.01 to 0.01; per chip: normalize to 50th percentile; per gene: normalize to median)."	"GPL570"	"Nicole,Claudia,Berchtold"	"nberchto@uci.edu"	"949 824 6071"	"Carl W. Cotman"	"Institute for Memory Impairments and Neurological Disorders"	"UC Irvine"	"1226 Gillespie Neuroscience Facility"	"Irvine"	"CA"	"92697-4540"	"USA"	"ftp://ftp.ncbi.nlm.nih.gov/geo/samples/GSM300nnn/GSM300249/suppl/GSM300249.CEL.gz"	"54675"	"Reanalyzed by: GSE119087"	"Reanalyzed by: GSE133349"	""	"85"	NA	NA	"postcentral gyrus"	"female"	"54, C"	NA
+"GSM300250"	"SuperiorFrontalGyrus_female_85yrs_indiv54"	"GSM300250"	"Public on Oct 09 2008"	"Jun 25 2008"	"Jun 26 2019"	"RNA"	"1"	"brain, superior frontal gyrus, female, 85 years"	"Homo sapiens"	"individual: 54, C"	"brain region: superior frontal gyrus"	"gender: female"	"age (yrs): 85"	""	""	"N/A"	"N/A"	"total RNA"	"Total RNA was extracted from 10-200 mg of frozen, unfixed tissue using Trizol reagent (Invitrogen, Carlsbad CA), and purified using quick spin columns (Qiagen, Valencia CA).  RNA quality was assessed using the Agilent BioAnalyzer (Agilent Technologies, Palo Alto, CA) and UV spectrophotometer for the presence of sharp peaks and 28S/18S RNA."	"biotin"	"Total RNA (10 ug) from each sample was used to generate first strand cDNA using a T7-linked-(dT)24 primer, followed by in vitro transcription using the ENZO BioArray High-Yield RNA transcript labeling kit (ENZO Farmingdale, NY) to generate biotin-labeled cRNA target."	"9606"	"Using a robotics system (Biomek FX MicroArray Plex SA System; Beckman Coultier) to optimize consistency in processing and minimize handling variability, each fragmented, biotin-labeled cRNA sample (30 mg) was individually hybridized to an Affymetrix Hg-U133 plus 2.0 chip for 16 hours and rotated at 13 rpm at 50C."	"The chips were scanned using an Affymetrix GeneChip Scanner 3000 7G"	"Brain from cognitively intact individual."	"GC-RMA expression values were obtained from CEL files using GeneSpring 7.3.1 software.  PLIER expression values were obtained using Expression Console software using default settings.  PLIER and GC-RMA data were processed using GeneSpring 7.0 software, with default normalizations (Data transformation:set values<0.01 to 0.01; per chip: normalize to 50th percentile; per gene: normalize to median)."	"GPL570"	"Nicole,Claudia,Berchtold"	"nberchto@uci.edu"	"949 824 6071"	"Carl W. Cotman"	"Institute for Memory Impairments and Neurological Disorders"	"UC Irvine"	"1226 Gillespie Neuroscience Facility"	"Irvine"	"CA"	"92697-4540"	"USA"	"ftp://ftp.ncbi.nlm.nih.gov/geo/samples/GSM300nnn/GSM300250/suppl/GSM300250.CEL.gz"	"54675"	"Reanalyzed by: GSE119087"	"Reanalyzed by: GSE133349"	""	"85"	NA	NA	"superior frontal gyrus"	"female"	"54, C"	NA
+"GSM300251"	"SuperiorFrontalGyrus_female_91yrs_indiv59"	"GSM300251"	"Public on Oct 09 2008"	"Jun 25 2008"	"Jun 26 2019"	"RNA"	"1"	"brain, superior frontal gyrus, female, 91 years"	"Homo sapiens"	"individual: 59, C"	"brain region: superior frontal gyrus"	"gender: female"	"age (yrs): 91"	""	""	"N/A"	"N/A"	"total RNA"	"Total RNA was extracted from 10-200 mg of frozen, unfixed tissue using Trizol reagent (Invitrogen, Carlsbad CA), and purified using quick spin columns (Qiagen, Valencia CA).  RNA quality was assessed using the Agilent BioAnalyzer (Agilent Technologies, Palo Alto, CA) and UV spectrophotometer for the presence of sharp peaks and 28S/18S RNA."	"biotin"	"Total RNA (10 ug) from each sample was used to generate first strand cDNA using a T7-linked-(dT)24 primer, followed by in vitro transcription using the ENZO BioArray High-Yield RNA transcript labeling kit (ENZO Farmingdale, NY) to generate biotin-labeled cRNA target."	"9606"	"Using a robotics system (Biomek FX MicroArray Plex SA System; Beckman Coultier) to optimize consistency in processing and minimize handling variability, each fragmented, biotin-labeled cRNA sample (30 mg) was individually hybridized to an Affymetrix Hg-U133 plus 2.0 chip for 16 hours and rotated at 13 rpm at 50C."	"The chips were scanned using an Affymetrix GeneChip Scanner 3000 7G"	"Brain from cognitively intact individual."	"GC-RMA expression values were obtained from CEL files using GeneSpring 7.3.1 software.  PLIER expression values were obtained using Expression Console software using default settings.  PLIER and GC-RMA data were processed using GeneSpring 7.0 software, with default normalizations (Data transformation:set values<0.01 to 0.01; per chip: normalize to 50th percentile; per gene: normalize to median)."	"GPL570"	"Nicole,Claudia,Berchtold"	"nberchto@uci.edu"	"949 824 6071"	"Carl W. Cotman"	"Institute for Memory Impairments and Neurological Disorders"	"UC Irvine"	"1226 Gillespie Neuroscience Facility"	"Irvine"	"CA"	"92697-4540"	"USA"	"ftp://ftp.ncbi.nlm.nih.gov/geo/samples/GSM300nnn/GSM300251/suppl/GSM300251.CEL.gz"	"54675"	"Reanalyzed by: GSE119087"	"Reanalyzed by: GSE133349"	""	"91"	NA	NA	"superior frontal gyrus"	"female"	"59, C"	NA
+"GSM300252"	"EntorhinalCortex_male_21yrs_indiv66"	"GSM300252"	"Public on Oct 09 2008"	"Jun 25 2008"	"Jun 26 2019"	"RNA"	"1"	"brain, entorhinal cortex, male, 21 years"	"Homo sapiens"	"individual: 66, C"	"brain region: entorhinal cortex"	"gender: male"	"age (yrs): 21"	""	""	"N/A"	"N/A"	"total RNA"	"Total RNA was extracted from 10-200 mg of frozen, unfixed tissue using Trizol reagent (Invitrogen, Carlsbad CA), and purified using quick spin columns (Qiagen, Valencia CA).  RNA quality was assessed using the Agilent BioAnalyzer (Agilent Technologies, Palo Alto, CA) and UV spectrophotometer for the presence of sharp peaks and 28S/18S RNA."	"biotin"	"Total RNA (10 ug) from each sample was used to generate first strand cDNA using a T7-linked-(dT)24 primer, followed by in vitro transcription using the ENZO BioArray High-Yield RNA transcript labeling kit (ENZO Farmingdale, NY) to generate biotin-labeled cRNA target."	"9606"	"Using a robotics system (Biomek FX MicroArray Plex SA System; Beckman Coultier) to optimize consistency in processing and minimize handling variability, each fragmented, biotin-labeled cRNA sample (30 mg) was individually hybridized to an Affymetrix Hg-U133 plus 2.0 chip for 16 hours and rotated at 13 rpm at 50C."	"The chips were scanned using an Affymetrix GeneChip Scanner 3000 7G"	"Brain from cognitively intact individual."	"GC-RMA expression values were obtained from CEL files using GeneSpring 7.3.1 software.  PLIER expression values were obtained using Expression Console software using default settings.  PLIER and GC-RMA data were processed using GeneSpring 7.0 software, with default normalizations (Data transformation:set values<0.01 to 0.01; per chip: normalize to 50th percentile; per gene: normalize to median)."	"GPL570"	"Nicole,Claudia,Berchtold"	"nberchto@uci.edu"	"949 824 6071"	"Carl W. Cotman"	"Institute for Memory Impairments and Neurological Disorders"	"UC Irvine"	"1226 Gillespie Neuroscience Facility"	"Irvine"	"CA"	"92697-4540"	"USA"	"ftp://ftp.ncbi.nlm.nih.gov/geo/samples/GSM300nnn/GSM300252/suppl/GSM300252.CEL.gz"	"54675"	"Reanalyzed by: GSE119087"	"Reanalyzed by: GSE133349"	""	"21"	NA	NA	"entorhinal cortex"	"male"	"66, C"	NA
+"GSM300253"	"PostcentralGyrus_male_21yrs_indiv66"	"GSM300253"	"Public on Oct 09 2008"	"Jun 25 2008"	"Jun 26 2019"	"RNA"	"1"	"brain, postcentral gyrus, male, 21 years"	"Homo sapiens"	"individual: 66, C"	"brain region: postcentral gyrus"	"gender: male"	"age (yrs): 21"	""	""	"N/A"	"N/A"	"total RNA"	"Total RNA was extracted from 10-200 mg of frozen, unfixed tissue using Trizol reagent (Invitrogen, Carlsbad CA), and purified using quick spin columns (Qiagen, Valencia CA).  RNA quality was assessed using the Agilent BioAnalyzer (Agilent Technologies, Palo Alto, CA) and UV spectrophotometer for the presence of sharp peaks and 28S/18S RNA."	"biotin"	"Total RNA (10 ug) from each sample was used to generate first strand cDNA using a T7-linked-(dT)24 primer, followed by in vitro transcription using the ENZO BioArray High-Yield RNA transcript labeling kit (ENZO Farmingdale, NY) to generate biotin-labeled cRNA target."	"9606"	"Using a robotics system (Biomek FX MicroArray Plex SA System; Beckman Coultier) to optimize consistency in processing and minimize handling variability, each fragmented, biotin-labeled cRNA sample (30 mg) was individually hybridized to an Affymetrix Hg-U133 plus 2.0 chip for 16 hours and rotated at 13 rpm at 50C."	"The chips were scanned using an Affymetrix GeneChip Scanner 3000 7G"	"Brain from cognitively intact individual."	"GC-RMA expression values were obtained from CEL files using GeneSpring 7.3.1 software.  PLIER expression values were obtained using Expression Console software using default settings.  PLIER and GC-RMA data were processed using GeneSpring 7.0 software, with default normalizations (Data transformation:set values<0.01 to 0.01; per chip: normalize to 50th percentile; per gene: normalize to median)."	"GPL570"	"Nicole,Claudia,Berchtold"	"nberchto@uci.edu"	"949 824 6071"	"Carl W. Cotman"	"Institute for Memory Impairments and Neurological Disorders"	"UC Irvine"	"1226 Gillespie Neuroscience Facility"	"Irvine"	"CA"	"92697-4540"	"USA"	"ftp://ftp.ncbi.nlm.nih.gov/geo/samples/GSM300nnn/GSM300253/suppl/GSM300253.CEL.gz"	"54675"	"Reanalyzed by: GSE119087"	"Reanalyzed by: GSE133349"	""	"21"	NA	NA	"postcentral gyrus"	"male"	"66, C"	NA
+"GSM300254"	"SuperiorFrontalGyrus_male_21yrs_indiv66"	"GSM300254"	"Public on Oct 09 2008"	"Jun 25 2008"	"Jun 26 2019"	"RNA"	"1"	"brain, superior frontal gyrus, male, 21 years"	"Homo sapiens"	"individual: 66, C"	"brain region: superior frontal gyrus"	"gender: male"	"age (yrs): 21"	""	""	"N/A"	"N/A"	"total RNA"	"Total RNA was extracted from 10-200 mg of frozen, unfixed tissue using Trizol reagent (Invitrogen, Carlsbad CA), and purified using quick spin columns (Qiagen, Valencia CA).  RNA quality was assessed using the Agilent BioAnalyzer (Agilent Technologies, Palo Alto, CA) and UV spectrophotometer for the presence of sharp peaks and 28S/18S RNA."	"biotin"	"Total RNA (10 ug) from each sample was used to generate first strand cDNA using a T7-linked-(dT)24 primer, followed by in vitro transcription using the ENZO BioArray High-Yield RNA transcript labeling kit (ENZO Farmingdale, NY) to generate biotin-labeled cRNA target."	"9606"	"Using a robotics system (Biomek FX MicroArray Plex SA System; Beckman Coultier) to optimize consistency in processing and minimize handling variability, each fragmented, biotin-labeled cRNA sample (30 mg) was individually hybridized to an Affymetrix Hg-U133 plus 2.0 chip for 16 hours and rotated at 13 rpm at 50C."	"The chips were scanned using an Affymetrix GeneChip Scanner 3000 7G"	"Brain from cognitively intact individual."	"GC-RMA expression values were obtained from CEL files using GeneSpring 7.3.1 software.  PLIER expression values were obtained using Expression Console software using default settings.  PLIER and GC-RMA data were processed using GeneSpring 7.0 software, with default normalizations (Data transformation:set values<0.01 to 0.01; per chip: normalize to 50th percentile; per gene: normalize to median)."	"GPL570"	"Nicole,Claudia,Berchtold"	"nberchto@uci.edu"	"949 824 6071"	"Carl W. Cotman"	"Institute for Memory Impairments and Neurological Disorders"	"UC Irvine"	"1226 Gillespie Neuroscience Facility"	"Irvine"	"CA"	"92697-4540"	"USA"	"ftp://ftp.ncbi.nlm.nih.gov/geo/samples/GSM300nnn/GSM300254/suppl/GSM300254.CEL.gz"	"54675"	"Reanalyzed by: GSE119087"	"Reanalyzed by: GSE133349"	""	"21"	NA	NA	"superior frontal gyrus"	"male"	"66, C"	NA
+"GSM300255"	"Hippocampus_male_69yrs_indiv67"	"GSM300255"	"Public on Oct 09 2008"	"Jun 25 2008"	"Jun 26 2019"	"RNA"	"1"	"brain, hippocampus, male, 69 years"	"Homo sapiens"	"individual: 67, C"	"brain region: hippocampus"	"gender: male"	"age (yrs): 69"	""	""	"N/A"	"N/A"	"total RNA"	"Total RNA was extracted from 10-200 mg of frozen, unfixed tissue using Trizol reagent (Invitrogen, Carlsbad CA), and purified using quick spin columns (Qiagen, Valencia CA).  RNA quality was assessed using the Agilent BioAnalyzer (Agilent Technologies, Palo Alto, CA) and UV spectrophotometer for the presence of sharp peaks and 28S/18S RNA."	"biotin"	"Total RNA (10 ug) from each sample was used to generate first strand cDNA using a T7-linked-(dT)24 primer, followed by in vitro transcription using the ENZO BioArray High-Yield RNA transcript labeling kit (ENZO Farmingdale, NY) to generate biotin-labeled cRNA target."	"9606"	"Using a robotics system (Biomek FX MicroArray Plex SA System; Beckman Coultier) to optimize consistency in processing and minimize handling variability, each fragmented, biotin-labeled cRNA sample (30 mg) was individually hybridized to an Affymetrix Hg-U133 plus 2.0 chip for 16 hours and rotated at 13 rpm at 50C."	"The chips were scanned using an Affymetrix GeneChip Scanner 3000 7G"	"Brain from cognitively intact individual."	"GC-RMA expression values were obtained from CEL files using GeneSpring 7.3.1 software.  PLIER expression values were obtained using Expression Console software using default settings.  PLIER and GC-RMA data were processed using GeneSpring 7.0 software, with default normalizations (Data transformation:set values<0.01 to 0.01; per chip: normalize to 50th percentile; per gene: normalize to median)."	"GPL570"	"Nicole,Claudia,Berchtold"	"nberchto@uci.edu"	"949 824 6071"	"Carl W. Cotman"	"Institute for Memory Impairments and Neurological Disorders"	"UC Irvine"	"1226 Gillespie Neuroscience Facility"	"Irvine"	"CA"	"92697-4540"	"USA"	"ftp://ftp.ncbi.nlm.nih.gov/geo/samples/GSM300nnn/GSM300255/suppl/GSM300255.CEL.gz"	"54675"	"Reanalyzed by: GSE119087"	"Reanalyzed by: GSE133349"	""	"69"	NA	NA	"hippocampus"	"male"	"67, C"	NA
+"GSM300256"	"PostcentralGyrus_male_69yrs_indiv67"	"GSM300256"	"Public on Oct 09 2008"	"Jun 25 2008"	"Jun 26 2019"	"RNA"	"1"	"brain, postcentral gyrus, male, 69 years"	"Homo sapiens"	"individual: 67, C"	"brain region: postcentral gyrus"	"gender: male"	"age (yrs): 69"	""	""	"N/A"	"N/A"	"total RNA"	"Total RNA was extracted from 10-200 mg of frozen, unfixed tissue using Trizol reagent (Invitrogen, Carlsbad CA), and purified using quick spin columns (Qiagen, Valencia CA).  RNA quality was assessed using the Agilent BioAnalyzer (Agilent Technologies, Palo Alto, CA) and UV spectrophotometer for the presence of sharp peaks and 28S/18S RNA."	"biotin"	"Total RNA (10 ug) from each sample was used to generate first strand cDNA using a T7-linked-(dT)24 primer, followed by in vitro transcription using the ENZO BioArray High-Yield RNA transcript labeling kit (ENZO Farmingdale, NY) to generate biotin-labeled cRNA target."	"9606"	"Using a robotics system (Biomek FX MicroArray Plex SA System; Beckman Coultier) to optimize consistency in processing and minimize handling variability, each fragmented, biotin-labeled cRNA sample (30 mg) was individually hybridized to an Affymetrix Hg-U133 plus 2.0 chip for 16 hours and rotated at 13 rpm at 50C."	"The chips were scanned using an Affymetrix GeneChip Scanner 3000 7G"	"Brain from cognitively intact individual."	"GC-RMA expression values were obtained from CEL files using GeneSpring 7.3.1 software.  PLIER expression values were obtained using Expression Console software using default settings.  PLIER and GC-RMA data were processed using GeneSpring 7.0 software, with default normalizations (Data transformation:set values<0.01 to 0.01; per chip: normalize to 50th percentile; per gene: normalize to median)."	"GPL570"	"Nicole,Claudia,Berchtold"	"nberchto@uci.edu"	"949 824 6071"	"Carl W. Cotman"	"Institute for Memory Impairments and Neurological Disorders"	"UC Irvine"	"1226 Gillespie Neuroscience Facility"	"Irvine"	"CA"	"92697-4540"	"USA"	"ftp://ftp.ncbi.nlm.nih.gov/geo/samples/GSM300nnn/GSM300256/suppl/GSM300256.CEL.gz"	"54675"	"Reanalyzed by: GSE119087"	"Reanalyzed by: GSE133349"	""	"69"	NA	NA	"postcentral gyrus"	"male"	"67, C"	NA
+"GSM300258"	"EntorhinalCortex_male_40yrs_indiv68"	"GSM300258"	"Public on Oct 09 2008"	"Jun 25 2008"	"Jun 26 2019"	"RNA"	"1"	"brain, entorhinal cortex, male, 40 years"	"Homo sapiens"	"individual: 68, C"	"brain region: entorhinal cortex"	"gender: male"	"age (yrs): 40"	""	""	"N/A"	"N/A"	"total RNA"	"Total RNA was extracted from 10-200 mg of frozen, unfixed tissue using Trizol reagent (Invitrogen, Carlsbad CA), and purified using quick spin columns (Qiagen, Valencia CA).  RNA quality was assessed using the Agilent BioAnalyzer (Agilent Technologies, Palo Alto, CA) and UV spectrophotometer for the presence of sharp peaks and 28S/18S RNA."	"biotin"	"Total RNA (10 ug) from each sample was used to generate first strand cDNA using a T7-linked-(dT)24 primer, followed by in vitro transcription using the ENZO BioArray High-Yield RNA transcript labeling kit (ENZO Farmingdale, NY) to generate biotin-labeled cRNA target."	"9606"	"Using a robotics system (Biomek FX MicroArray Plex SA System; Beckman Coultier) to optimize consistency in processing and minimize handling variability, each fragmented, biotin-labeled cRNA sample (30 mg) was individually hybridized to an Affymetrix Hg-U133 plus 2.0 chip for 16 hours and rotated at 13 rpm at 50C."	"The chips were scanned using an Affymetrix GeneChip Scanner 3000 7G"	"Brain from cognitively intact individual."	"GC-RMA expression values were obtained from CEL files using GeneSpring 7.3.1 software.  PLIER expression values were obtained using Expression Console software using default settings.  PLIER and GC-RMA data were processed using GeneSpring 7.0 software, with default normalizations (Data transformation:set values<0.01 to 0.01; per chip: normalize to 50th percentile; per gene: normalize to median)."	"GPL570"	"Nicole,Claudia,Berchtold"	"nberchto@uci.edu"	"949 824 6071"	"Carl W. Cotman"	"Institute for Memory Impairments and Neurological Disorders"	"UC Irvine"	"1226 Gillespie Neuroscience Facility"	"Irvine"	"CA"	"92697-4540"	"USA"	"ftp://ftp.ncbi.nlm.nih.gov/geo/samples/GSM300nnn/GSM300258/suppl/GSM300258.CEL.gz"	"54675"	"Reanalyzed by: GSE119087"	"Reanalyzed by: GSE133349"	""	"40"	NA	NA	"entorhinal cortex"	"male"	"68, C"	NA
+"GSM300259"	"PostcentralGyrus_male_40yrs_indiv68"	"GSM300259"	"Public on Oct 09 2008"	"Jun 25 2008"	"Jun 26 2019"	"RNA"	"1"	"brain, postcentral gyrus, male, 40 years"	"Homo sapiens"	"individual: 68, C"	"brain region: postcentral gyrus"	"gender: male"	"age (yrs): 40"	""	""	"N/A"	"N/A"	"total RNA"	"Total RNA was extracted from 10-200 mg of frozen, unfixed tissue using Trizol reagent (Invitrogen, Carlsbad CA), and purified using quick spin columns (Qiagen, Valencia CA).  RNA quality was assessed using the Agilent BioAnalyzer (Agilent Technologies, Palo Alto, CA) and UV spectrophotometer for the presence of sharp peaks and 28S/18S RNA."	"biotin"	"Total RNA (10 ug) from each sample was used to generate first strand cDNA using a T7-linked-(dT)24 primer, followed by in vitro transcription using the ENZO BioArray High-Yield RNA transcript labeling kit (ENZO Farmingdale, NY) to generate biotin-labeled cRNA target."	"9606"	"Using a robotics system (Biomek FX MicroArray Plex SA System; Beckman Coultier) to optimize consistency in processing and minimize handling variability, each fragmented, biotin-labeled cRNA sample (30 mg) was individually hybridized to an Affymetrix Hg-U133 plus 2.0 chip for 16 hours and rotated at 13 rpm at 50C."	"The chips were scanned using an Affymetrix GeneChip Scanner 3000 7G"	"Brain from cognitively intact individual."	"GC-RMA expression values were obtained from CEL files using GeneSpring 7.3.1 software.  PLIER expression values were obtained using Expression Console software using default settings.  PLIER and GC-RMA data were processed using GeneSpring 7.0 software, with default normalizations (Data transformation:set values<0.01 to 0.01; per chip: normalize to 50th percentile; per gene: normalize to median)."	"GPL570"	"Nicole,Claudia,Berchtold"	"nberchto@uci.edu"	"949 824 6071"	"Carl W. Cotman"	"Institute for Memory Impairments and Neurological Disorders"	"UC Irvine"	"1226 Gillespie Neuroscience Facility"	"Irvine"	"CA"	"92697-4540"	"USA"	"ftp://ftp.ncbi.nlm.nih.gov/geo/samples/GSM300nnn/GSM300259/suppl/GSM300259.CEL.gz"	"54675"	"Reanalyzed by: GSE119087"	"Reanalyzed by: GSE133349"	""	"40"	NA	NA	"postcentral gyrus"	"male"	"68, C"	NA
+"GSM300260"	"SuperiorFrontalGyrus_male_40yrs_indiv68"	"GSM300260"	"Public on Oct 09 2008"	"Jun 25 2008"	"Jun 26 2019"	"RNA"	"1"	"brain, superior frontal gyrus, male, 40 years"	"Homo sapiens"	"individual: 68, C"	"brain region: superior frontal gyrus"	"gender: male"	"age (yrs): 40"	""	""	"N/A"	"N/A"	"total RNA"	"Total RNA was extracted from 10-200 mg of frozen, unfixed tissue using Trizol reagent (Invitrogen, Carlsbad CA), and purified using quick spin columns (Qiagen, Valencia CA).  RNA quality was assessed using the Agilent BioAnalyzer (Agilent Technologies, Palo Alto, CA) and UV spectrophotometer for the presence of sharp peaks and 28S/18S RNA."	"biotin"	"Total RNA (10 ug) from each sample was used to generate first strand cDNA using a T7-linked-(dT)24 primer, followed by in vitro transcription using the ENZO BioArray High-Yield RNA transcript labeling kit (ENZO Farmingdale, NY) to generate biotin-labeled cRNA target."	"9606"	"Using a robotics system (Biomek FX MicroArray Plex SA System; Beckman Coultier) to optimize consistency in processing and minimize handling variability, each fragmented, biotin-labeled cRNA sample (30 mg) was individually hybridized to an Affymetrix Hg-U133 plus 2.0 chip for 16 hours and rotated at 13 rpm at 50C."	"The chips were scanned using an Affymetrix GeneChip Scanner 3000 7G"	"Brain from cognitively intact individual."	"GC-RMA expression values were obtained from CEL files using GeneSpring 7.3.1 software.  PLIER expression values were obtained using Expression Console software using default settings.  PLIER and GC-RMA data were processed using GeneSpring 7.0 software, with default normalizations (Data transformation:set values<0.01 to 0.01; per chip: normalize to 50th percentile; per gene: normalize to median)."	"GPL570"	"Nicole,Claudia,Berchtold"	"nberchto@uci.edu"	"949 824 6071"	"Carl W. Cotman"	"Institute for Memory Impairments and Neurological Disorders"	"UC Irvine"	"1226 Gillespie Neuroscience Facility"	"Irvine"	"CA"	"92697-4540"	"USA"	"ftp://ftp.ncbi.nlm.nih.gov/geo/samples/GSM300nnn/GSM300260/suppl/GSM300260.CEL.gz"	"54675"	"Reanalyzed by: GSE119087"	"Reanalyzed by: GSE133349"	""	"40"	NA	NA	"superior frontal gyrus"	"male"	"68, C"	NA
+"GSM300261"	"EntorhinalCortex_male_52yrs_indiv71"	"GSM300261"	"Public on Oct 09 2008"	"Jun 25 2008"	"Jun 26 2019"	"RNA"	"1"	"brain, entorhinal cortex, male, 52 years"	"Homo sapiens"	"individual: 71, C"	"brain region: entorhinal cortex"	"gender: male"	"age (yrs): 52"	""	""	"N/A"	"N/A"	"total RNA"	"Total RNA was extracted from 10-200 mg of frozen, unfixed tissue using Trizol reagent (Invitrogen, Carlsbad CA), and purified using quick spin columns (Qiagen, Valencia CA).  RNA quality was assessed using the Agilent BioAnalyzer (Agilent Technologies, Palo Alto, CA) and UV spectrophotometer for the presence of sharp peaks and 28S/18S RNA."	"biotin"	"Total RNA (10 ug) from each sample was used to generate first strand cDNA using a T7-linked-(dT)24 primer, followed by in vitro transcription using the ENZO BioArray High-Yield RNA transcript labeling kit (ENZO Farmingdale, NY) to generate biotin-labeled cRNA target."	"9606"	"Using a robotics system (Biomek FX MicroArray Plex SA System; Beckman Coultier) to optimize consistency in processing and minimize handling variability, each fragmented, biotin-labeled cRNA sample (30 mg) was individually hybridized to an Affymetrix Hg-U133 plus 2.0 chip for 16 hours and rotated at 13 rpm at 50C."	"The chips were scanned using an Affymetrix GeneChip Scanner 3000 7G"	"Brain from cognitively intact individual."	"GC-RMA expression values were obtained from CEL files using GeneSpring 7.3.1 software.  PLIER expression values were obtained using Expression Console software using default settings.  PLIER and GC-RMA data were processed using GeneSpring 7.0 software, with default normalizations (Data transformation:set values<0.01 to 0.01; per chip: normalize to 50th percentile; per gene: normalize to median)."	"GPL570"	"Nicole,Claudia,Berchtold"	"nberchto@uci.edu"	"949 824 6071"	"Carl W. Cotman"	"Institute for Memory Impairments and Neurological Disorders"	"UC Irvine"	"1226 Gillespie Neuroscience Facility"	"Irvine"	"CA"	"92697-4540"	"USA"	"ftp://ftp.ncbi.nlm.nih.gov/geo/samples/GSM300nnn/GSM300261/suppl/GSM300261.CEL.gz"	"54675"	"Reanalyzed by: GSE119087"	"Reanalyzed by: GSE133349"	""	"52"	NA	NA	"entorhinal cortex"	"male"	"71, C"	NA
+"GSM300262"	"Hippocampus_male_52yrs_indiv71"	"GSM300262"	"Public on Oct 09 2008"	"Jun 25 2008"	"Jun 26 2019"	"RNA"	"1"	"brain, hippocampus, male, 52 years"	"Homo sapiens"	"individual: 71, C"	"brain region: hippocampus"	"gender: male"	"age (yrs): 52"	""	""	"N/A"	"N/A"	"total RNA"	"Total RNA was extracted from 10-200 mg of frozen, unfixed tissue using Trizol reagent (Invitrogen, Carlsbad CA), and purified using quick spin columns (Qiagen, Valencia CA).  RNA quality was assessed using the Agilent BioAnalyzer (Agilent Technologies, Palo Alto, CA) and UV spectrophotometer for the presence of sharp peaks and 28S/18S RNA."	"biotin"	"Total RNA (10 ug) from each sample was used to generate first strand cDNA using a T7-linked-(dT)24 primer, followed by in vitro transcription using the ENZO BioArray High-Yield RNA transcript labeling kit (ENZO Farmingdale, NY) to generate biotin-labeled cRNA target."	"9606"	"Using a robotics system (Biomek FX MicroArray Plex SA System; Beckman Coultier) to optimize consistency in processing and minimize handling variability, each fragmented, biotin-labeled cRNA sample (30 mg) was individually hybridized to an Affymetrix Hg-U133 plus 2.0 chip for 16 hours and rotated at 13 rpm at 50C."	"The chips were scanned using an Affymetrix GeneChip Scanner 3000 7G"	"Brain from cognitively intact individual."	"GC-RMA expression values were obtained from CEL files using GeneSpring 7.3.1 software.  PLIER expression values were obtained using Expression Console software using default settings.  PLIER and GC-RMA data were processed using GeneSpring 7.0 software, with default normalizations (Data transformation:set values<0.01 to 0.01; per chip: normalize to 50th percentile; per gene: normalize to median)."	"GPL570"	"Nicole,Claudia,Berchtold"	"nberchto@uci.edu"	"949 824 6071"	"Carl W. Cotman"	"Institute for Memory Impairments and Neurological Disorders"	"UC Irvine"	"1226 Gillespie Neuroscience Facility"	"Irvine"	"CA"	"92697-4540"	"USA"	"ftp://ftp.ncbi.nlm.nih.gov/geo/samples/GSM300nnn/GSM300262/suppl/GSM300262.CEL.gz"	"54675"	"Reanalyzed by: GSE119087"	"Reanalyzed by: GSE133349"	""	"52"	NA	NA	"hippocampus"	"male"	"71, C"	NA
+"GSM300263"	"PostcentralGyrus_male_52yrs_indiv71"	"GSM300263"	"Public on Oct 09 2008"	"Jun 25 2008"	"Jun 26 2019"	"RNA"	"1"	"brain, postcentral gyrus, male, 52 years"	"Homo sapiens"	"individual: 71, C"	"brain region: postcentral gyrus"	"gender: male"	"age (yrs): 52"	""	""	"N/A"	"N/A"	"total RNA"	"Total RNA was extracted from 10-200 mg of frozen, unfixed tissue using Trizol reagent (Invitrogen, Carlsbad CA), and purified using quick spin columns (Qiagen, Valencia CA).  RNA quality was assessed using the Agilent BioAnalyzer (Agilent Technologies, Palo Alto, CA) and UV spectrophotometer for the presence of sharp peaks and 28S/18S RNA."	"biotin"	"Total RNA (10 ug) from each sample was used to generate first strand cDNA using a T7-linked-(dT)24 primer, followed by in vitro transcription using the ENZO BioArray High-Yield RNA transcript labeling kit (ENZO Farmingdale, NY) to generate biotin-labeled cRNA target."	"9606"	"Using a robotics system (Biomek FX MicroArray Plex SA System; Beckman Coultier) to optimize consistency in processing and minimize handling variability, each fragmented, biotin-labeled cRNA sample (30 mg) was individually hybridized to an Affymetrix Hg-U133 plus 2.0 chip for 16 hours and rotated at 13 rpm at 50C."	"The chips were scanned using an Affymetrix GeneChip Scanner 3000 7G"	"Brain from cognitively intact individual."	"GC-RMA expression values were obtained from CEL files using GeneSpring 7.3.1 software.  PLIER expression values were obtained using Expression Console software using default settings.  PLIER and GC-RMA data were processed using GeneSpring 7.0 software, with default normalizations (Data transformation:set values<0.01 to 0.01; per chip: normalize to 50th percentile; per gene: normalize to median)."	"GPL570"	"Nicole,Claudia,Berchtold"	"nberchto@uci.edu"	"949 824 6071"	"Carl W. Cotman"	"Institute for Memory Impairments and Neurological Disorders"	"UC Irvine"	"1226 Gillespie Neuroscience Facility"	"Irvine"	"CA"	"92697-4540"	"USA"	"ftp://ftp.ncbi.nlm.nih.gov/geo/samples/GSM300nnn/GSM300263/suppl/GSM300263.CEL.gz"	"54675"	"Reanalyzed by: GSE119087"	"Reanalyzed by: GSE133349"	""	"52"	NA	NA	"postcentral gyrus"	"male"	"71, C"	NA
+"GSM300264"	"SuperiorFrontalGyrus_male_52yrs_indiv71"	"GSM300264"	"Public on Oct 09 2008"	"Jun 25 2008"	"Jun 26 2019"	"RNA"	"1"	"brain, superior frontal gyrus, male, 52 years"	"Homo sapiens"	"individual: 71, C"	"brain region: superior frontal gyrus"	"gender: male"	"age (yrs): 52"	""	""	"N/A"	"N/A"	"total RNA"	"Total RNA was extracted from 10-200 mg of frozen, unfixed tissue using Trizol reagent (Invitrogen, Carlsbad CA), and purified using quick spin columns (Qiagen, Valencia CA).  RNA quality was assessed using the Agilent BioAnalyzer (Agilent Technologies, Palo Alto, CA) and UV spectrophotometer for the presence of sharp peaks and 28S/18S RNA."	"biotin"	"Total RNA (10 ug) from each sample was used to generate first strand cDNA using a T7-linked-(dT)24 primer, followed by in vitro transcription using the ENZO BioArray High-Yield RNA transcript labeling kit (ENZO Farmingdale, NY) to generate biotin-labeled cRNA target."	"9606"	"Using a robotics system (Biomek FX MicroArray Plex SA System; Beckman Coultier) to optimize consistency in processing and minimize handling variability, each fragmented, biotin-labeled cRNA sample (30 mg) was individually hybridized to an Affymetrix Hg-U133 plus 2.0 chip for 16 hours and rotated at 13 rpm at 50C."	"The chips were scanned using an Affymetrix GeneChip Scanner 3000 7G"	"Brain from cognitively intact individual."	"GC-RMA expression values were obtained from CEL files using GeneSpring 7.3.1 software.  PLIER expression values were obtained using Expression Console software using default settings.  PLIER and GC-RMA data were processed using GeneSpring 7.0 software, with default normalizations (Data transformation:set values<0.01 to 0.01; per chip: normalize to 50th percentile; per gene: normalize to median)."	"GPL570"	"Nicole,Claudia,Berchtold"	"nberchto@uci.edu"	"949 824 6071"	"Carl W. Cotman"	"Institute for Memory Impairments and Neurological Disorders"	"UC Irvine"	"1226 Gillespie Neuroscience Facility"	"Irvine"	"CA"	"92697-4540"	"USA"	"ftp://ftp.ncbi.nlm.nih.gov/geo/samples/GSM300nnn/GSM300264/suppl/GSM300264.CEL.gz"	"54675"	"Reanalyzed by: GSE119087"	"Reanalyzed by: GSE133349"	""	"52"	NA	NA	"superior frontal gyrus"	"male"	"71, C"	NA
+"GSM300265"	"PostcentralGyrus_male_75yrs_indiv72"	"GSM300265"	"Public on Oct 09 2008"	"Jun 25 2008"	"Jun 26 2019"	"RNA"	"1"	"brain, postcentral gyrus, male, 75 years"	"Homo sapiens"	"individual: 72, C"	"brain region: postcentral gyrus"	"gender: male"	"age (yrs): 75"	""	""	"N/A"	"N/A"	"total RNA"	"Total RNA was extracted from 10-200 mg of frozen, unfixed tissue using Trizol reagent (Invitrogen, Carlsbad CA), and purified using quick spin columns (Qiagen, Valencia CA).  RNA quality was assessed using the Agilent BioAnalyzer (Agilent Technologies, Palo Alto, CA) and UV spectrophotometer for the presence of sharp peaks and 28S/18S RNA."	"biotin"	"Total RNA (10 ug) from each sample was used to generate first strand cDNA using a T7-linked-(dT)24 primer, followed by in vitro transcription using the ENZO BioArray High-Yield RNA transcript labeling kit (ENZO Farmingdale, NY) to generate biotin-labeled cRNA target."	"9606"	"Using a robotics system (Biomek FX MicroArray Plex SA System; Beckman Coultier) to optimize consistency in processing and minimize handling variability, each fragmented, biotin-labeled cRNA sample (30 mg) was individually hybridized to an Affymetrix Hg-U133 plus 2.0 chip for 16 hours and rotated at 13 rpm at 50C."	"The chips were scanned using an Affymetrix GeneChip Scanner 3000 7G"	"Brain from cognitively intact individual."	"GC-RMA expression values were obtained from CEL files using GeneSpring 7.3.1 software.  PLIER expression values were obtained using Expression Console software using default settings.  PLIER and GC-RMA data were processed using GeneSpring 7.0 software, with default normalizations (Data transformation:set values<0.01 to 0.01; per chip: normalize to 50th percentile; per gene: normalize to median)."	"GPL570"	"Nicole,Claudia,Berchtold"	"nberchto@uci.edu"	"949 824 6071"	"Carl W. Cotman"	"Institute for Memory Impairments and Neurological Disorders"	"UC Irvine"	"1226 Gillespie Neuroscience Facility"	"Irvine"	"CA"	"92697-4540"	"USA"	"ftp://ftp.ncbi.nlm.nih.gov/geo/samples/GSM300nnn/GSM300265/suppl/GSM300265.CEL.gz"	"54675"	"Reanalyzed by: GSE119087"	"Reanalyzed by: GSE133349"	""	"75"	NA	NA	"postcentral gyrus"	"male"	"72, C"	NA
+"GSM300266"	"SuperiorFrontalGyrus_male_75yrs_indiv72"	"GSM300266"	"Public on Oct 09 2008"	"Jun 25 2008"	"Jun 26 2019"	"RNA"	"1"	"brain, superior frontal gyrus, male, 75 years"	"Homo sapiens"	"individual: 72, C"	"brain region: superior frontal gyrus"	"gender: male"	"age (yrs): 75"	""	""	"N/A"	"N/A"	"total RNA"	"Total RNA was extracted from 10-200 mg of frozen, unfixed tissue using Trizol reagent (Invitrogen, Carlsbad CA), and purified using quick spin columns (Qiagen, Valencia CA).  RNA quality was assessed using the Agilent BioAnalyzer (Agilent Technologies, Palo Alto, CA) and UV spectrophotometer for the presence of sharp peaks and 28S/18S RNA."	"biotin"	"Total RNA (10 ug) from each sample was used to generate first strand cDNA using a T7-linked-(dT)24 primer, followed by in vitro transcription using the ENZO BioArray High-Yield RNA transcript labeling kit (ENZO Farmingdale, NY) to generate biotin-labeled cRNA target."	"9606"	"Using a robotics system (Biomek FX MicroArray Plex SA System; Beckman Coultier) to optimize consistency in processing and minimize handling variability, each fragmented, biotin-labeled cRNA sample (30 mg) was individually hybridized to an Affymetrix Hg-U133 plus 2.0 chip for 16 hours and rotated at 13 rpm at 50C."	"The chips were scanned using an Affymetrix GeneChip Scanner 3000 7G"	"Brain from cognitively intact individual."	"GC-RMA expression values were obtained from CEL files using GeneSpring 7.3.1 software.  PLIER expression values were obtained using Expression Console software using default settings.  PLIER and GC-RMA data were processed using GeneSpring 7.0 software, with default normalizations (Data transformation:set values<0.01 to 0.01; per chip: normalize to 50th percentile; per gene: normalize to median)."	"GPL570"	"Nicole,Claudia,Berchtold"	"nberchto@uci.edu"	"949 824 6071"	"Carl W. Cotman"	"Institute for Memory Impairments and Neurological Disorders"	"UC Irvine"	"1226 Gillespie Neuroscience Facility"	"Irvine"	"CA"	"92697-4540"	"USA"	"ftp://ftp.ncbi.nlm.nih.gov/geo/samples/GSM300nnn/GSM300266/suppl/GSM300266.CEL.gz"	"54675"	"Reanalyzed by: GSE119087"	"Reanalyzed by: GSE133349"	""	"75"	NA	NA	"superior frontal gyrus"	"male"	"72, C"	NA
+"GSM300267"	"EntorhinalCortex_male_86yrs_indiv73"	"GSM300267"	"Public on Oct 09 2008"	"Jun 25 2008"	"Jun 26 2019"	"RNA"	"1"	"brain, entorhinal cortex, male, 86 years"	"Homo sapiens"	"individual: 73, C"	"brain region: entorhinal cortex"	"gender: male"	"age (yrs): 86"	""	""	"N/A"	"N/A"	"total RNA"	"Total RNA was extracted from 10-200 mg of frozen, unfixed tissue using Trizol reagent (Invitrogen, Carlsbad CA), and purified using quick spin columns (Qiagen, Valencia CA).  RNA quality was assessed using the Agilent BioAnalyzer (Agilent Technologies, Palo Alto, CA) and UV spectrophotometer for the presence of sharp peaks and 28S/18S RNA."	"biotin"	"Total RNA (10 ug) from each sample was used to generate first strand cDNA using a T7-linked-(dT)24 primer, followed by in vitro transcription using the ENZO BioArray High-Yield RNA transcript labeling kit (ENZO Farmingdale, NY) to generate biotin-labeled cRNA target."	"9606"	"Using a robotics system (Biomek FX MicroArray Plex SA System; Beckman Coultier) to optimize consistency in processing and minimize handling variability, each fragmented, biotin-labeled cRNA sample (30 mg) was individually hybridized to an Affymetrix Hg-U133 plus 2.0 chip for 16 hours and rotated at 13 rpm at 50C."	"The chips were scanned using an Affymetrix GeneChip Scanner 3000 7G"	"Brain from cognitively intact individual."	"GC-RMA expression values were obtained from CEL files using GeneSpring 7.3.1 software.  PLIER expression values were obtained using Expression Console software using default settings.  PLIER and GC-RMA data were processed using GeneSpring 7.0 software, with default normalizations (Data transformation:set values<0.01 to 0.01; per chip: normalize to 50th percentile; per gene: normalize to median)."	"GPL570"	"Nicole,Claudia,Berchtold"	"nberchto@uci.edu"	"949 824 6071"	"Carl W. Cotman"	"Institute for Memory Impairments and Neurological Disorders"	"UC Irvine"	"1226 Gillespie Neuroscience Facility"	"Irvine"	"CA"	"92697-4540"	"USA"	"ftp://ftp.ncbi.nlm.nih.gov/geo/samples/GSM300nnn/GSM300267/suppl/GSM300267.CEL.gz"	"54675"	"Reanalyzed by: GSE119087"	"Reanalyzed by: GSE133349"	""	"86"	NA	NA	"entorhinal cortex"	"male"	"73, C"	NA
+"GSM300268"	"Hippocampus_male_86yrs_indiv73"	"GSM300268"	"Public on Oct 09 2008"	"Jun 25 2008"	"Jun 26 2019"	"RNA"	"1"	"brain, hippocampus, male, 86 years"	"Homo sapiens"	"individual: 73, C"	"brain region: hippocampus"	"gender: male"	"age (yrs): 86"	""	""	"N/A"	"N/A"	"total RNA"	"Total RNA was extracted from 10-200 mg of frozen, unfixed tissue using Trizol reagent (Invitrogen, Carlsbad CA), and purified using quick spin columns (Qiagen, Valencia CA).  RNA quality was assessed using the Agilent BioAnalyzer (Agilent Technologies, Palo Alto, CA) and UV spectrophotometer for the presence of sharp peaks and 28S/18S RNA."	"biotin"	"Total RNA (10 ug) from each sample was used to generate first strand cDNA using a T7-linked-(dT)24 primer, followed by in vitro transcription using the ENZO BioArray High-Yield RNA transcript labeling kit (ENZO Farmingdale, NY) to generate biotin-labeled cRNA target."	"9606"	"Using a robotics system (Biomek FX MicroArray Plex SA System; Beckman Coultier) to optimize consistency in processing and minimize handling variability, each fragmented, biotin-labeled cRNA sample (30 mg) was individually hybridized to an Affymetrix Hg-U133 plus 2.0 chip for 16 hours and rotated at 13 rpm at 50C."	"The chips were scanned using an Affymetrix GeneChip Scanner 3000 7G"	"Brain from cognitively intact individual."	"GC-RMA expression values were obtained from CEL files using GeneSpring 7.3.1 software.  PLIER expression values were obtained using Expression Console software using default settings.  PLIER and GC-RMA data were processed using GeneSpring 7.0 software, with default normalizations (Data transformation:set values<0.01 to 0.01; per chip: normalize to 50th percentile; per gene: normalize to median)."	"GPL570"	"Nicole,Claudia,Berchtold"	"nberchto@uci.edu"	"949 824 6071"	"Carl W. Cotman"	"Institute for Memory Impairments and Neurological Disorders"	"UC Irvine"	"1226 Gillespie Neuroscience Facility"	"Irvine"	"CA"	"92697-4540"	"USA"	"ftp://ftp.ncbi.nlm.nih.gov/geo/samples/GSM300nnn/GSM300268/suppl/GSM300268.CEL.gz"	"54675"	"Reanalyzed by: GSE119087"	"Reanalyzed by: GSE133349"	""	"86"	NA	NA	"hippocampus"	"male"	"73, C"	NA
+"GSM300269"	"PostcentralGyrus_male_86yrs_indiv73"	"GSM300269"	"Public on Oct 09 2008"	"Jun 25 2008"	"Jun 26 2019"	"RNA"	"1"	"brain, postcentral gyrus, male, 86 years"	"Homo sapiens"	"individual: 73, C"	"brain region: postcentral gyrus"	"gender: male"	"age (yrs): 86"	""	""	"N/A"	"N/A"	"total RNA"	"Total RNA was extracted from 10-200 mg of frozen, unfixed tissue using Trizol reagent (Invitrogen, Carlsbad CA), and purified using quick spin columns (Qiagen, Valencia CA).  RNA quality was assessed using the Agilent BioAnalyzer (Agilent Technologies, Palo Alto, CA) and UV spectrophotometer for the presence of sharp peaks and 28S/18S RNA."	"biotin"	"Total RNA (10 ug) from each sample was used to generate first strand cDNA using a T7-linked-(dT)24 primer, followed by in vitro transcription using the ENZO BioArray High-Yield RNA transcript labeling kit (ENZO Farmingdale, NY) to generate biotin-labeled cRNA target."	"9606"	"Using a robotics system (Biomek FX MicroArray Plex SA System; Beckman Coultier) to optimize consistency in processing and minimize handling variability, each fragmented, biotin-labeled cRNA sample (30 mg) was individually hybridized to an Affymetrix Hg-U133 plus 2.0 chip for 16 hours and rotated at 13 rpm at 50C."	"The chips were scanned using an Affymetrix GeneChip Scanner 3000 7G"	"Brain from cognitively intact individual."	"GC-RMA expression values were obtained from CEL files using GeneSpring 7.3.1 software.  PLIER expression values were obtained using Expression Console software using default settings.  PLIER and GC-RMA data were processed using GeneSpring 7.0 software, with default normalizations (Data transformation:set values<0.01 to 0.01; per chip: normalize to 50th percentile; per gene: normalize to median)."	"GPL570"	"Nicole,Claudia,Berchtold"	"nberchto@uci.edu"	"949 824 6071"	"Carl W. Cotman"	"Institute for Memory Impairments and Neurological Disorders"	"UC Irvine"	"1226 Gillespie Neuroscience Facility"	"Irvine"	"CA"	"92697-4540"	"USA"	"ftp://ftp.ncbi.nlm.nih.gov/geo/samples/GSM300nnn/GSM300269/suppl/GSM300269.CEL.gz"	"54675"	"Reanalyzed by: GSE119087"	"Reanalyzed by: GSE133349"	""	"86"	NA	NA	"postcentral gyrus"	"male"	"73, C"	NA
+"GSM300270"	"SuperiorFrontalGyrus_male_86yrs_indiv73"	"GSM300270"	"Public on Oct 09 2008"	"Jun 25 2008"	"Jun 26 2019"	"RNA"	"1"	"brain, superior frontal gyrus, male, 86 years"	"Homo sapiens"	"individual: 73, C"	"brain region: superior frontal gyrus"	"gender: male"	"age (yrs): 86"	""	""	"N/A"	"N/A"	"total RNA"	"Total RNA was extracted from 10-200 mg of frozen, unfixed tissue using Trizol reagent (Invitrogen, Carlsbad CA), and purified using quick spin columns (Qiagen, Valencia CA).  RNA quality was assessed using the Agilent BioAnalyzer (Agilent Technologies, Palo Alto, CA) and UV spectrophotometer for the presence of sharp peaks and 28S/18S RNA."	"biotin"	"Total RNA (10 ug) from each sample was used to generate first strand cDNA using a T7-linked-(dT)24 primer, followed by in vitro transcription using the ENZO BioArray High-Yield RNA transcript labeling kit (ENZO Farmingdale, NY) to generate biotin-labeled cRNA target."	"9606"	"Using a robotics system (Biomek FX MicroArray Plex SA System; Beckman Coultier) to optimize consistency in processing and minimize handling variability, each fragmented, biotin-labeled cRNA sample (30 mg) was individually hybridized to an Affymetrix Hg-U133 plus 2.0 chip for 16 hours and rotated at 13 rpm at 50C."	"The chips were scanned using an Affymetrix GeneChip Scanner 3000 7G"	"Brain from cognitively intact individual."	"GC-RMA expression values were obtained from CEL files using GeneSpring 7.3.1 software.  PLIER expression values were obtained using Expression Console software using default settings.  PLIER and GC-RMA data were processed using GeneSpring 7.0 software, with default normalizations (Data transformation:set values<0.01 to 0.01; per chip: normalize to 50th percentile; per gene: normalize to median)."	"GPL570"	"Nicole,Claudia,Berchtold"	"nberchto@uci.edu"	"949 824 6071"	"Carl W. Cotman"	"Institute for Memory Impairments and Neurological Disorders"	"UC Irvine"	"1226 Gillespie Neuroscience Facility"	"Irvine"	"CA"	"92697-4540"	"USA"	"ftp://ftp.ncbi.nlm.nih.gov/geo/samples/GSM300nnn/GSM300270/suppl/GSM300270.CEL.gz"	"54675"	"Reanalyzed by: GSE119087"	"Reanalyzed by: GSE133349"	""	"86"	NA	NA	"superior frontal gyrus"	"male"	"73, C"	NA
+"GSM300271"	"EntorhinalCortex_female_26yrs_indiv76"	"GSM300271"	"Public on Oct 09 2008"	"Jun 25 2008"	"Jun 26 2019"	"RNA"	"1"	"brain, entorhinal cortex, female, 26 years"	"Homo sapiens"	"individual: 76, C"	"brain region: entorhinal cortex"	"gender: female"	"age (yrs): 26"	""	""	"N/A"	"N/A"	"total RNA"	"Total RNA was extracted from 10-200 mg of frozen, unfixed tissue using Trizol reagent (Invitrogen, Carlsbad CA), and purified using quick spin columns (Qiagen, Valencia CA).  RNA quality was assessed using the Agilent BioAnalyzer (Agilent Technologies, Palo Alto, CA) and UV spectrophotometer for the presence of sharp peaks and 28S/18S RNA."	"biotin"	"Total RNA (10 ug) from each sample was used to generate first strand cDNA using a T7-linked-(dT)24 primer, followed by in vitro transcription using the ENZO BioArray High-Yield RNA transcript labeling kit (ENZO Farmingdale, NY) to generate biotin-labeled cRNA target."	"9606"	"Using a robotics system (Biomek FX MicroArray Plex SA System; Beckman Coultier) to optimize consistency in processing and minimize handling variability, each fragmented, biotin-labeled cRNA sample (30 mg) was individually hybridized to an Affymetrix Hg-U133 plus 2.0 chip for 16 hours and rotated at 13 rpm at 50C."	"The chips were scanned using an Affymetrix GeneChip Scanner 3000 7G"	"Brain from cognitively intact individual."	"GC-RMA expression values were obtained from CEL files using GeneSpring 7.3.1 software.  PLIER expression values were obtained using Expression Console software using default settings.  PLIER and GC-RMA data were processed using GeneSpring 7.0 software, with default normalizations (Data transformation:set values<0.01 to 0.01; per chip: normalize to 50th percentile; per gene: normalize to median)."	"GPL570"	"Nicole,Claudia,Berchtold"	"nberchto@uci.edu"	"949 824 6071"	"Carl W. Cotman"	"Institute for Memory Impairments and Neurological Disorders"	"UC Irvine"	"1226 Gillespie Neuroscience Facility"	"Irvine"	"CA"	"92697-4540"	"USA"	"ftp://ftp.ncbi.nlm.nih.gov/geo/samples/GSM300nnn/GSM300271/suppl/GSM300271.CEL.gz"	"54675"	"Reanalyzed by: GSE119087"	"Reanalyzed by: GSE133349"	""	"26"	NA	NA	"entorhinal cortex"	"female"	"76, C"	NA
+"GSM300272"	"Hippocampus_female_26yrs_indiv76"	"GSM300272"	"Public on Oct 09 2008"	"Jun 25 2008"	"May 03 2022"	"RNA"	"1"	"brain, hippocampus, female, 26 years"	"Homo sapiens"	"individual: 76, C"	"brain region: hippocampus"	"gender: female"	"age (yrs): 26"	""	""	"N/A"	"N/A"	"total RNA"	"Total RNA was extracted from 10-200 mg of frozen, unfixed tissue using Trizol reagent (Invitrogen, Carlsbad CA), and purified using quick spin columns (Qiagen, Valencia CA).  RNA quality was assessed using the Agilent BioAnalyzer (Agilent Technologies, Palo Alto, CA) and UV spectrophotometer for the presence of sharp peaks and 28S/18S RNA."	"biotin"	"Total RNA (10 ug) from each sample was used to generate first strand cDNA using a T7-linked-(dT)24 primer, followed by in vitro transcription using the ENZO BioArray High-Yield RNA transcript labeling kit (ENZO Farmingdale, NY) to generate biotin-labeled cRNA target."	"9606"	"Using a robotics system (Biomek FX MicroArray Plex SA System; Beckman Coultier) to optimize consistency in processing and minimize handling variability, each fragmented, biotin-labeled cRNA sample (30 mg) was individually hybridized to an Affymetrix Hg-U133 plus 2.0 chip for 16 hours and rotated at 13 rpm at 50C."	"The chips were scanned using an Affymetrix GeneChip Scanner 3000 7G"	"Brain from cognitively intact individual."	"GC-RMA expression values were obtained from CEL files using GeneSpring 7.3.1 software.  PLIER expression values were obtained using Expression Console software using default settings.  PLIER and GC-RMA data were processed using GeneSpring 7.0 software, with default normalizations (Data transformation:set values<0.01 to 0.01; per chip: normalize to 50th percentile; per gene: normalize to median)."	"GPL570"	"Nicole,Claudia,Berchtold"	"nberchto@uci.edu"	"949 824 6071"	"Carl W. Cotman"	"Institute for Memory Impairments and Neurological Disorders"	"UC Irvine"	"1226 Gillespie Neuroscience Facility"	"Irvine"	"CA"	"92697-4540"	"USA"	"ftp://ftp.ncbi.nlm.nih.gov/geo/samples/GSM300nnn/GSM300272/suppl/GSM300272.CEL.gz"	"54675"	"Reanalyzed by: GSE119087"	"Reanalyzed by: GSE133349"	"Reanalyzed by: GSE202101"	"26"	NA	NA	"hippocampus"	"female"	"76, C"	NA
+"GSM300273"	"PostcentralGyrus_female_26yrs_indiv76"	"GSM300273"	"Public on Oct 09 2008"	"Jun 25 2008"	"Jun 26 2019"	"RNA"	"1"	"brain, postcentral gyrus, female, 26 years"	"Homo sapiens"	"individual: 76, C"	"brain region: postcentral gyrus"	"gender: female"	"age (yrs): 26"	""	""	"N/A"	"N/A"	"total RNA"	"Total RNA was extracted from 10-200 mg of frozen, unfixed tissue using Trizol reagent (Invitrogen, Carlsbad CA), and purified using quick spin columns (Qiagen, Valencia CA).  RNA quality was assessed using the Agilent BioAnalyzer (Agilent Technologies, Palo Alto, CA) and UV spectrophotometer for the presence of sharp peaks and 28S/18S RNA."	"biotin"	"Total RNA (10 ug) from each sample was used to generate first strand cDNA using a T7-linked-(dT)24 primer, followed by in vitro transcription using the ENZO BioArray High-Yield RNA transcript labeling kit (ENZO Farmingdale, NY) to generate biotin-labeled cRNA target."	"9606"	"Using a robotics system (Biomek FX MicroArray Plex SA System; Beckman Coultier) to optimize consistency in processing and minimize handling variability, each fragmented, biotin-labeled cRNA sample (30 mg) was individually hybridized to an Affymetrix Hg-U133 plus 2.0 chip for 16 hours and rotated at 13 rpm at 50C."	"The chips were scanned using an Affymetrix GeneChip Scanner 3000 7G"	"Brain from cognitively intact individual."	"GC-RMA expression values were obtained from CEL files using GeneSpring 7.3.1 software.  PLIER expression values were obtained using Expression Console software using default settings.  PLIER and GC-RMA data were processed using GeneSpring 7.0 software, with default normalizations (Data transformation:set values<0.01 to 0.01; per chip: normalize to 50th percentile; per gene: normalize to median)."	"GPL570"	"Nicole,Claudia,Berchtold"	"nberchto@uci.edu"	"949 824 6071"	"Carl W. Cotman"	"Institute for Memory Impairments and Neurological Disorders"	"UC Irvine"	"1226 Gillespie Neuroscience Facility"	"Irvine"	"CA"	"92697-4540"	"USA"	"ftp://ftp.ncbi.nlm.nih.gov/geo/samples/GSM300nnn/GSM300273/suppl/GSM300273.CEL.gz"	"54675"	"Reanalyzed by: GSE119087"	"Reanalyzed by: GSE133349"	""	"26"	NA	NA	"postcentral gyrus"	"female"	"76, C"	NA
+"GSM300274"	"SuperiorFrontalGyrus_female_26yrs_indiv76"	"GSM300274"	"Public on Oct 09 2008"	"Jun 25 2008"	"Jun 26 2019"	"RNA"	"1"	"brain, superior frontal gyrus, female, 26 years"	"Homo sapiens"	"individual: 76, C"	"brain region: superior frontal gyrus"	"gender: female"	"age (yrs): 26"	""	""	"N/A"	"N/A"	"total RNA"	"Total RNA was extracted from 10-200 mg of frozen, unfixed tissue using Trizol reagent (Invitrogen, Carlsbad CA), and purified using quick spin columns (Qiagen, Valencia CA).  RNA quality was assessed using the Agilent BioAnalyzer (Agilent Technologies, Palo Alto, CA) and UV spectrophotometer for the presence of sharp peaks and 28S/18S RNA."	"biotin"	"Total RNA (10 ug) from each sample was used to generate first strand cDNA using a T7-linked-(dT)24 primer, followed by in vitro transcription using the ENZO BioArray High-Yield RNA transcript labeling kit (ENZO Farmingdale, NY) to generate biotin-labeled cRNA target."	"9606"	"Using a robotics system (Biomek FX MicroArray Plex SA System; Beckman Coultier) to optimize consistency in processing and minimize handling variability, each fragmented, biotin-labeled cRNA sample (30 mg) was individually hybridized to an Affymetrix Hg-U133 plus 2.0 chip for 16 hours and rotated at 13 rpm at 50C."	"The chips were scanned using an Affymetrix GeneChip Scanner 3000 7G"	"Brain from cognitively intact individual."	"GC-RMA expression values were obtained from CEL files using GeneSpring 7.3.1 software.  PLIER expression values were obtained using Expression Console software using default settings.  PLIER and GC-RMA data were processed using GeneSpring 7.0 software, with default normalizations (Data transformation:set values<0.01 to 0.01; per chip: normalize to 50th percentile; per gene: normalize to median)."	"GPL570"	"Nicole,Claudia,Berchtold"	"nberchto@uci.edu"	"949 824 6071"	"Carl W. Cotman"	"Institute for Memory Impairments and Neurological Disorders"	"UC Irvine"	"1226 Gillespie Neuroscience Facility"	"Irvine"	"CA"	"92697-4540"	"USA"	"ftp://ftp.ncbi.nlm.nih.gov/geo/samples/GSM300nnn/GSM300274/suppl/GSM300274.CEL.gz"	"54675"	"Reanalyzed by: GSE119087"	"Reanalyzed by: GSE133349"	""	"26"	NA	NA	"superior frontal gyrus"	"female"	"76, C"	NA
+"GSM300275"	"EntorhinalCortex_male_20yrs_indiv77"	"GSM300275"	"Public on Oct 09 2008"	"Jun 25 2008"	"Jun 26 2019"	"RNA"	"1"	"brain, entorhinal cortex, male, 20 years"	"Homo sapiens"	"individual: 77, C"	"brain region: entorhinal cortex"	"gender: male"	"age (yrs): 20"	""	""	"N/A"	"N/A"	"total RNA"	"Total RNA was extracted from 10-200 mg of frozen, unfixed tissue using Trizol reagent (Invitrogen, Carlsbad CA), and purified using quick spin columns (Qiagen, Valencia CA).  RNA quality was assessed using the Agilent BioAnalyzer (Agilent Technologies, Palo Alto, CA) and UV spectrophotometer for the presence of sharp peaks and 28S/18S RNA."	"biotin"	"Total RNA (10 ug) from each sample was used to generate first strand cDNA using a T7-linked-(dT)24 primer, followed by in vitro transcription using the ENZO BioArray High-Yield RNA transcript labeling kit (ENZO Farmingdale, NY) to generate biotin-labeled cRNA target."	"9606"	"Using a robotics system (Biomek FX MicroArray Plex SA System; Beckman Coultier) to optimize consistency in processing and minimize handling variability, each fragmented, biotin-labeled cRNA sample (30 mg) was individually hybridized to an Affymetrix Hg-U133 plus 2.0 chip for 16 hours and rotated at 13 rpm at 50C."	"The chips were scanned using an Affymetrix GeneChip Scanner 3000 7G"	"Brain from cognitively intact individual."	"GC-RMA expression values were obtained from CEL files using GeneSpring 7.3.1 software.  PLIER expression values were obtained using Expression Console software using default settings.  PLIER and GC-RMA data were processed using GeneSpring 7.0 software, with default normalizations (Data transformation:set values<0.01 to 0.01; per chip: normalize to 50th percentile; per gene: normalize to median)."	"GPL570"	"Nicole,Claudia,Berchtold"	"nberchto@uci.edu"	"949 824 6071"	"Carl W. Cotman"	"Institute for Memory Impairments and Neurological Disorders"	"UC Irvine"	"1226 Gillespie Neuroscience Facility"	"Irvine"	"CA"	"92697-4540"	"USA"	"ftp://ftp.ncbi.nlm.nih.gov/geo/samples/GSM300nnn/GSM300275/suppl/GSM300275.CEL.gz"	"54675"	"Reanalyzed by: GSE119087"	"Reanalyzed by: GSE133349"	""	"20"	NA	NA	"entorhinal cortex"	"male"	"77, C"	NA
+"GSM300276"	"Hippocampus_male_20yrs_indiv77"	"GSM300276"	"Public on Oct 09 2008"	"Jun 25 2008"	"Jun 26 2019"	"RNA"	"1"	"brain, hippocampus, male, 20 years"	"Homo sapiens"	"individual: 77, C"	"brain region: hippocampus"	"gender: male"	"age (yrs): 20"	""	""	"N/A"	"N/A"	"total RNA"	"Total RNA was extracted from 10-200 mg of frozen, unfixed tissue using Trizol reagent (Invitrogen, Carlsbad CA), and purified using quick spin columns (Qiagen, Valencia CA).  RNA quality was assessed using the Agilent BioAnalyzer (Agilent Technologies, Palo Alto, CA) and UV spectrophotometer for the presence of sharp peaks and 28S/18S RNA."	"biotin"	"Total RNA (10 ug) from each sample was used to generate first strand cDNA using a T7-linked-(dT)24 primer, followed by in vitro transcription using the ENZO BioArray High-Yield RNA transcript labeling kit (ENZO Farmingdale, NY) to generate biotin-labeled cRNA target."	"9606"	"Using a robotics system (Biomek FX MicroArray Plex SA System; Beckman Coultier) to optimize consistency in processing and minimize handling variability, each fragmented, biotin-labeled cRNA sample (30 mg) was individually hybridized to an Affymetrix Hg-U133 plus 2.0 chip for 16 hours and rotated at 13 rpm at 50C."	"The chips were scanned using an Affymetrix GeneChip Scanner 3000 7G"	"Brain from cognitively intact individual."	"GC-RMA expression values were obtained from CEL files using GeneSpring 7.3.1 software.  PLIER expression values were obtained using Expression Console software using default settings.  PLIER and GC-RMA data were processed using GeneSpring 7.0 software, with default normalizations (Data transformation:set values<0.01 to 0.01; per chip: normalize to 50th percentile; per gene: normalize to median)."	"GPL570"	"Nicole,Claudia,Berchtold"	"nberchto@uci.edu"	"949 824 6071"	"Carl W. Cotman"	"Institute for Memory Impairments and Neurological Disorders"	"UC Irvine"	"1226 Gillespie Neuroscience Facility"	"Irvine"	"CA"	"92697-4540"	"USA"	"ftp://ftp.ncbi.nlm.nih.gov/geo/samples/GSM300nnn/GSM300276/suppl/GSM300276.CEL.gz"	"54675"	"Reanalyzed by: GSE119087"	"Reanalyzed by: GSE133349"	""	"20"	NA	NA	"hippocampus"	"male"	"77, C"	NA
+"GSM300277"	"PostcentralGyrus_male_20yrs_indiv77"	"GSM300277"	"Public on Oct 09 2008"	"Jun 25 2008"	"Jun 26 2019"	"RNA"	"1"	"brain, postcentral gyrus, male, 20 years"	"Homo sapiens"	"individual: 77, C"	"brain region: postcentral gyrus"	"gender: male"	"age (yrs): 20"	""	""	"N/A"	"N/A"	"total RNA"	"Total RNA was extracted from 10-200 mg of frozen, unfixed tissue using Trizol reagent (Invitrogen, Carlsbad CA), and purified using quick spin columns (Qiagen, Valencia CA).  RNA quality was assessed using the Agilent BioAnalyzer (Agilent Technologies, Palo Alto, CA) and UV spectrophotometer for the presence of sharp peaks and 28S/18S RNA."	"biotin"	"Total RNA (10 ug) from each sample was used to generate first strand cDNA using a T7-linked-(dT)24 primer, followed by in vitro transcription using the ENZO BioArray High-Yield RNA transcript labeling kit (ENZO Farmingdale, NY) to generate biotin-labeled cRNA target."	"9606"	"Using a robotics system (Biomek FX MicroArray Plex SA System; Beckman Coultier) to optimize consistency in processing and minimize handling variability, each fragmented, biotin-labeled cRNA sample (30 mg) was individually hybridized to an Affymetrix Hg-U133 plus 2.0 chip for 16 hours and rotated at 13 rpm at 50C."	"The chips were scanned using an Affymetrix GeneChip Scanner 3000 7G"	"Brain from cognitively intact individual."	"GC-RMA expression values were obtained from CEL files using GeneSpring 7.3.1 software.  PLIER expression values were obtained using Expression Console software using default settings.  PLIER and GC-RMA data were processed using GeneSpring 7.0 software, with default normalizations (Data transformation:set values<0.01 to 0.01; per chip: normalize to 50th percentile; per gene: normalize to median)."	"GPL570"	"Nicole,Claudia,Berchtold"	"nberchto@uci.edu"	"949 824 6071"	"Carl W. Cotman"	"Institute for Memory Impairments and Neurological Disorders"	"UC Irvine"	"1226 Gillespie Neuroscience Facility"	"Irvine"	"CA"	"92697-4540"	"USA"	"ftp://ftp.ncbi.nlm.nih.gov/geo/samples/GSM300nnn/GSM300277/suppl/GSM300277.CEL.gz"	"54675"	"Reanalyzed by: GSE119087"	"Reanalyzed by: GSE133349"	""	"20"	NA	NA	"postcentral gyrus"	"male"	"77, C"	NA
+"GSM300278"	"SuperiorFrontalGyrus_male_20yrs_indiv77"	"GSM300278"	"Public on Oct 09 2008"	"Jun 25 2008"	"Jun 26 2019"	"RNA"	"1"	"brain, superior frontal gyrus, male, 20 years"	"Homo sapiens"	"individual: 77, C"	"brain region: superior frontal gyrus"	"gender: male"	"age (yrs): 20"	""	""	"N/A"	"N/A"	"total RNA"	"Total RNA was extracted from 10-200 mg of frozen, unfixed tissue using Trizol reagent (Invitrogen, Carlsbad CA), and purified using quick spin columns (Qiagen, Valencia CA).  RNA quality was assessed using the Agilent BioAnalyzer (Agilent Technologies, Palo Alto, CA) and UV spectrophotometer for the presence of sharp peaks and 28S/18S RNA."	"biotin"	"Total RNA (10 ug) from each sample was used to generate first strand cDNA using a T7-linked-(dT)24 primer, followed by in vitro transcription using the ENZO BioArray High-Yield RNA transcript labeling kit (ENZO Farmingdale, NY) to generate biotin-labeled cRNA target."	"9606"	"Using a robotics system (Biomek FX MicroArray Plex SA System; Beckman Coultier) to optimize consistency in processing and minimize handling variability, each fragmented, biotin-labeled cRNA sample (30 mg) was individually hybridized to an Affymetrix Hg-U133 plus 2.0 chip for 16 hours and rotated at 13 rpm at 50C."	"The chips were scanned using an Affymetrix GeneChip Scanner 3000 7G"	"Brain from cognitively intact individual."	"GC-RMA expression values were obtained from CEL files using GeneSpring 7.3.1 software.  PLIER expression values were obtained using Expression Console software using default settings.  PLIER and GC-RMA data were processed using GeneSpring 7.0 software, with default normalizations (Data transformation:set values<0.01 to 0.01; per chip: normalize to 50th percentile; per gene: normalize to median)."	"GPL570"	"Nicole,Claudia,Berchtold"	"nberchto@uci.edu"	"949 824 6071"	"Carl W. Cotman"	"Institute for Memory Impairments and Neurological Disorders"	"UC Irvine"	"1226 Gillespie Neuroscience Facility"	"Irvine"	"CA"	"92697-4540"	"USA"	"ftp://ftp.ncbi.nlm.nih.gov/geo/samples/GSM300nnn/GSM300278/suppl/GSM300278.CEL.gz"	"54675"	"Reanalyzed by: GSE119087"	"Reanalyzed by: GSE133349"	""	"20"	NA	NA	"superior frontal gyrus"	"male"	"77, C"	NA
+"GSM300279"	"EntorhinalCortex_male_20yrs_indiv78"	"GSM300279"	"Public on Oct 09 2008"	"Jun 25 2008"	"Jun 26 2019"	"RNA"	"1"	"brain, entorhinal cortex, male, 20 years"	"Homo sapiens"	"individual: 78, C"	"brain region: entorhinal cortex"	"gender: male"	"age (yrs): 20"	""	""	"N/A"	"N/A"	"total RNA"	"Total RNA was extracted from 10-200 mg of frozen, unfixed tissue using Trizol reagent (Invitrogen, Carlsbad CA), and purified using quick spin columns (Qiagen, Valencia CA).  RNA quality was assessed using the Agilent BioAnalyzer (Agilent Technologies, Palo Alto, CA) and UV spectrophotometer for the presence of sharp peaks and 28S/18S RNA."	"biotin"	"Total RNA (10 ug) from each sample was used to generate first strand cDNA using a T7-linked-(dT)24 primer, followed by in vitro transcription using the ENZO BioArray High-Yield RNA transcript labeling kit (ENZO Farmingdale, NY) to generate biotin-labeled cRNA target."	"9606"	"Using a robotics system (Biomek FX MicroArray Plex SA System; Beckman Coultier) to optimize consistency in processing and minimize handling variability, each fragmented, biotin-labeled cRNA sample (30 mg) was individually hybridized to an Affymetrix Hg-U133 plus 2.0 chip for 16 hours and rotated at 13 rpm at 50C."	"The chips were scanned using an Affymetrix GeneChip Scanner 3000 7G"	"Brain from cognitively intact individual."	"GC-RMA expression values were obtained from CEL files using GeneSpring 7.3.1 software.  PLIER expression values were obtained using Expression Console software using default settings.  PLIER and GC-RMA data were processed using GeneSpring 7.0 software, with default normalizations (Data transformation:set values<0.01 to 0.01; per chip: normalize to 50th percentile; per gene: normalize to median)."	"GPL570"	"Nicole,Claudia,Berchtold"	"nberchto@uci.edu"	"949 824 6071"	"Carl W. Cotman"	"Institute for Memory Impairments and Neurological Disorders"	"UC Irvine"	"1226 Gillespie Neuroscience Facility"	"Irvine"	"CA"	"92697-4540"	"USA"	"ftp://ftp.ncbi.nlm.nih.gov/geo/samples/GSM300nnn/GSM300279/suppl/GSM300279.CEL.gz"	"54675"	"Reanalyzed by: GSE119087"	"Reanalyzed by: GSE133349"	""	"20"	NA	NA	"entorhinal cortex"	"male"	"78, C"	NA
+"GSM300280"	"Hippocampus_male_20yrs_indiv78"	"GSM300280"	"Public on Oct 09 2008"	"Jun 25 2008"	"Jun 26 2019"	"RNA"	"1"	"brain, hippocampus, male, 20 years"	"Homo sapiens"	"individual: 78, C"	"brain region: hippocampus"	"gender: male"	"age (yrs): 20"	""	""	"N/A"	"N/A"	"total RNA"	"Total RNA was extracted from 10-200 mg of frozen, unfixed tissue using Trizol reagent (Invitrogen, Carlsbad CA), and purified using quick spin columns (Qiagen, Valencia CA).  RNA quality was assessed using the Agilent BioAnalyzer (Agilent Technologies, Palo Alto, CA) and UV spectrophotometer for the presence of sharp peaks and 28S/18S RNA."	"biotin"	"Total RNA (10 ug) from each sample was used to generate first strand cDNA using a T7-linked-(dT)24 primer, followed by in vitro transcription using the ENZO BioArray High-Yield RNA transcript labeling kit (ENZO Farmingdale, NY) to generate biotin-labeled cRNA target."	"9606"	"Using a robotics system (Biomek FX MicroArray Plex SA System; Beckman Coultier) to optimize consistency in processing and minimize handling variability, each fragmented, biotin-labeled cRNA sample (30 mg) was individually hybridized to an Affymetrix Hg-U133 plus 2.0 chip for 16 hours and rotated at 13 rpm at 50C."	"The chips were scanned using an Affymetrix GeneChip Scanner 3000 7G"	"Brain from cognitively intact individual."	"GC-RMA expression values were obtained from CEL files using GeneSpring 7.3.1 software.  PLIER expression values were obtained using Expression Console software using default settings.  PLIER and GC-RMA data were processed using GeneSpring 7.0 software, with default normalizations (Data transformation:set values<0.01 to 0.01; per chip: normalize to 50th percentile; per gene: normalize to median)."	"GPL570"	"Nicole,Claudia,Berchtold"	"nberchto@uci.edu"	"949 824 6071"	"Carl W. Cotman"	"Institute for Memory Impairments and Neurological Disorders"	"UC Irvine"	"1226 Gillespie Neuroscience Facility"	"Irvine"	"CA"	"92697-4540"	"USA"	"ftp://ftp.ncbi.nlm.nih.gov/geo/samples/GSM300nnn/GSM300280/suppl/GSM300280.CEL.gz"	"54675"	"Reanalyzed by: GSE119087"	"Reanalyzed by: GSE133349"	""	"20"	NA	NA	"hippocampus"	"male"	"78, C"	NA
+"GSM300281"	"PostcentralGyrus_male_20yrs_indiv78"	"GSM300281"	"Public on Oct 09 2008"	"Jun 25 2008"	"Jun 26 2019"	"RNA"	"1"	"brain, postcentral gyrus, male, 20 years"	"Homo sapiens"	"individual: 78, C"	"brain region: postcentral gyrus"	"gender: male"	"age (yrs): 20"	""	""	"N/A"	"N/A"	"total RNA"	"Total RNA was extracted from 10-200 mg of frozen, unfixed tissue using Trizol reagent (Invitrogen, Carlsbad CA), and purified using quick spin columns (Qiagen, Valencia CA).  RNA quality was assessed using the Agilent BioAnalyzer (Agilent Technologies, Palo Alto, CA) and UV spectrophotometer for the presence of sharp peaks and 28S/18S RNA."	"biotin"	"Total RNA (10 ug) from each sample was used to generate first strand cDNA using a T7-linked-(dT)24 primer, followed by in vitro transcription using the ENZO BioArray High-Yield RNA transcript labeling kit (ENZO Farmingdale, NY) to generate biotin-labeled cRNA target."	"9606"	"Using a robotics system (Biomek FX MicroArray Plex SA System; Beckman Coultier) to optimize consistency in processing and minimize handling variability, each fragmented, biotin-labeled cRNA sample (30 mg) was individually hybridized to an Affymetrix Hg-U133 plus 2.0 chip for 16 hours and rotated at 13 rpm at 50C."	"The chips were scanned using an Affymetrix GeneChip Scanner 3000 7G"	"Brain from cognitively intact individual."	"GC-RMA expression values were obtained from CEL files using GeneSpring 7.3.1 software.  PLIER expression values were obtained using Expression Console software using default settings.  PLIER and GC-RMA data were processed using GeneSpring 7.0 software, with default normalizations (Data transformation:set values<0.01 to 0.01; per chip: normalize to 50th percentile; per gene: normalize to median)."	"GPL570"	"Nicole,Claudia,Berchtold"	"nberchto@uci.edu"	"949 824 6071"	"Carl W. Cotman"	"Institute for Memory Impairments and Neurological Disorders"	"UC Irvine"	"1226 Gillespie Neuroscience Facility"	"Irvine"	"CA"	"92697-4540"	"USA"	"ftp://ftp.ncbi.nlm.nih.gov/geo/samples/GSM300nnn/GSM300281/suppl/GSM300281.CEL.gz"	"54675"	"Reanalyzed by: GSE119087"	"Reanalyzed by: GSE133349"	""	"20"	NA	NA	"postcentral gyrus"	"male"	"78, C"	NA
+"GSM300282"	"SuperiorFrontalGyrus_male_20yrs_indiv78"	"GSM300282"	"Public on Oct 09 2008"	"Jun 25 2008"	"Jun 26 2019"	"RNA"	"1"	"brain, superior frontal gyrus, male, 20 years"	"Homo sapiens"	"individual: 78, C"	"brain region: superior frontal gyrus"	"gender: male"	"age (yrs): 20"	""	""	"N/A"	"N/A"	"total RNA"	"Total RNA was extracted from 10-200 mg of frozen, unfixed tissue using Trizol reagent (Invitrogen, Carlsbad CA), and purified using quick spin columns (Qiagen, Valencia CA).  RNA quality was assessed using the Agilent BioAnalyzer (Agilent Technologies, Palo Alto, CA) and UV spectrophotometer for the presence of sharp peaks and 28S/18S RNA."	"biotin"	"Total RNA (10 ug) from each sample was used to generate first strand cDNA using a T7-linked-(dT)24 primer, followed by in vitro transcription using the ENZO BioArray High-Yield RNA transcript labeling kit (ENZO Farmingdale, NY) to generate biotin-labeled cRNA target."	"9606"	"Using a robotics system (Biomek FX MicroArray Plex SA System; Beckman Coultier) to optimize consistency in processing and minimize handling variability, each fragmented, biotin-labeled cRNA sample (30 mg) was individually hybridized to an Affymetrix Hg-U133 plus 2.0 chip for 16 hours and rotated at 13 rpm at 50C."	"The chips were scanned using an Affymetrix GeneChip Scanner 3000 7G"	"Brain from cognitively intact individual."	"GC-RMA expression values were obtained from CEL files using GeneSpring 7.3.1 software.  PLIER expression values were obtained using Expression Console software using default settings.  PLIER and GC-RMA data were processed using GeneSpring 7.0 software, with default normalizations (Data transformation:set values<0.01 to 0.01; per chip: normalize to 50th percentile; per gene: normalize to median)."	"GPL570"	"Nicole,Claudia,Berchtold"	"nberchto@uci.edu"	"949 824 6071"	"Carl W. Cotman"	"Institute for Memory Impairments and Neurological Disorders"	"UC Irvine"	"1226 Gillespie Neuroscience Facility"	"Irvine"	"CA"	"92697-4540"	"USA"	"ftp://ftp.ncbi.nlm.nih.gov/geo/samples/GSM300nnn/GSM300282/suppl/GSM300282.CEL.gz"	"54675"	"Reanalyzed by: GSE119087"	"Reanalyzed by: GSE133349"	""	"20"	NA	NA	"superior frontal gyrus"	"male"	"78, C"	NA
+"GSM300283"	"PostcentralGyrus_female_36yrs_indiv79"	"GSM300283"	"Public on Oct 09 2008"	"Jun 25 2008"	"Jun 26 2019"	"RNA"	"1"	"brain, postcentral gyrus, female, 36 years"	"Homo sapiens"	"individual: 79, AA"	"brain region: postcentral gyrus"	"gender: female"	"age (yrs): 36"	""	""	"N/A"	"N/A"	"total RNA"	"Total RNA was extracted from 10-200 mg of frozen, unfixed tissue using Trizol reagent (Invitrogen, Carlsbad CA), and purified using quick spin columns (Qiagen, Valencia CA).  RNA quality was assessed using the Agilent BioAnalyzer (Agilent Technologies, Palo Alto, CA) and UV spectrophotometer for the presence of sharp peaks and 28S/18S RNA."	"biotin"	"Total RNA (10 ug) from each sample was used to generate first strand cDNA using a T7-linked-(dT)24 primer, followed by in vitro transcription using the ENZO BioArray High-Yield RNA transcript labeling kit (ENZO Farmingdale, NY) to generate biotin-labeled cRNA target."	"9606"	"Using a robotics system (Biomek FX MicroArray Plex SA System; Beckman Coultier) to optimize consistency in processing and minimize handling variability, each fragmented, biotin-labeled cRNA sample (30 mg) was individually hybridized to an Affymetrix Hg-U133 plus 2.0 chip for 16 hours and rotated at 13 rpm at 50C."	"The chips were scanned using an Affymetrix GeneChip Scanner 3000 7G"	"Brain from cognitively intact individual."	"GC-RMA expression values were obtained from CEL files using GeneSpring 7.3.1 software.  PLIER expression values were obtained using Expression Console software using default settings.  PLIER and GC-RMA data were processed using GeneSpring 7.0 software, with default normalizations (Data transformation:set values<0.01 to 0.01; per chip: normalize to 50th percentile; per gene: normalize to median)."	"GPL570"	"Nicole,Claudia,Berchtold"	"nberchto@uci.edu"	"949 824 6071"	"Carl W. Cotman"	"Institute for Memory Impairments and Neurological Disorders"	"UC Irvine"	"1226 Gillespie Neuroscience Facility"	"Irvine"	"CA"	"92697-4540"	"USA"	"ftp://ftp.ncbi.nlm.nih.gov/geo/samples/GSM300nnn/GSM300283/suppl/GSM300283.CEL.gz"	"54675"	"Reanalyzed by: GSE119087"	"Reanalyzed by: GSE133349"	""	"36"	NA	NA	"postcentral gyrus"	"female"	"79, AA"	NA
+"GSM300284"	"SuperiorFrontalGyrus_female_36yrs_indiv79"	"GSM300284"	"Public on Oct 09 2008"	"Jun 25 2008"	"Jun 26 2019"	"RNA"	"1"	"brain, superior frontal gyrus, female, 36 years"	"Homo sapiens"	"individual: 79, AA"	"brain region: superior frontal gyrus"	"gender: female"	"age (yrs): 36"	""	""	"N/A"	"N/A"	"total RNA"	"Total RNA was extracted from 10-200 mg of frozen, unfixed tissue using Trizol reagent (Invitrogen, Carlsbad CA), and purified using quick spin columns (Qiagen, Valencia CA).  RNA quality was assessed using the Agilent BioAnalyzer (Agilent Technologies, Palo Alto, CA) and UV spectrophotometer for the presence of sharp peaks and 28S/18S RNA."	"biotin"	"Total RNA (10 ug) from each sample was used to generate first strand cDNA using a T7-linked-(dT)24 primer, followed by in vitro transcription using the ENZO BioArray High-Yield RNA transcript labeling kit (ENZO Farmingdale, NY) to generate biotin-labeled cRNA target."	"9606"	"Using a robotics system (Biomek FX MicroArray Plex SA System; Beckman Coultier) to optimize consistency in processing and minimize handling variability, each fragmented, biotin-labeled cRNA sample (30 mg) was individually hybridized to an Affymetrix Hg-U133 plus 2.0 chip for 16 hours and rotated at 13 rpm at 50C."	"The chips were scanned using an Affymetrix GeneChip Scanner 3000 7G"	"Brain from cognitively intact individual."	"GC-RMA expression values were obtained from CEL files using GeneSpring 7.3.1 software.  PLIER expression values were obtained using Expression Console software using default settings.  PLIER and GC-RMA data were processed using GeneSpring 7.0 software, with default normalizations (Data transformation:set values<0.01 to 0.01; per chip: normalize to 50th percentile; per gene: normalize to median)."	"GPL570"	"Nicole,Claudia,Berchtold"	"nberchto@uci.edu"	"949 824 6071"	"Carl W. Cotman"	"Institute for Memory Impairments and Neurological Disorders"	"UC Irvine"	"1226 Gillespie Neuroscience Facility"	"Irvine"	"CA"	"92697-4540"	"USA"	"ftp://ftp.ncbi.nlm.nih.gov/geo/samples/GSM300nnn/GSM300284/suppl/GSM300284.CEL.gz"	"54675"	"Reanalyzed by: GSE119087"	"Reanalyzed by: GSE133349"	""	"36"	NA	NA	"superior frontal gyrus"	"female"	"79, AA"	NA
+"GSM300285"	"EntorhinalCortex_male_69yrs_indiv8"	"GSM300285"	"Public on Oct 09 2008"	"Jun 25 2008"	"Jun 26 2019"	"RNA"	"1"	"brain, entorhinal cortex, male, 69 years"	"Homo sapiens"	"individual: 8, C"	"brain region: entorhinal cortex"	"gender: male"	"age (yrs): 69"	""	""	"N/A"	"N/A"	"total RNA"	"Total RNA was extracted from 10-200 mg of frozen, unfixed tissue using Trizol reagent (Invitrogen, Carlsbad CA), and purified using quick spin columns (Qiagen, Valencia CA).  RNA quality was assessed using the Agilent BioAnalyzer (Agilent Technologies, Palo Alto, CA) and UV spectrophotometer for the presence of sharp peaks and 28S/18S RNA."	"biotin"	"Total RNA (10 ug) from each sample was used to generate first strand cDNA using a T7-linked-(dT)24 primer, followed by in vitro transcription using the ENZO BioArray High-Yield RNA transcript labeling kit (ENZO Farmingdale, NY) to generate biotin-labeled cRNA target."	"9606"	"Using a robotics system (Biomek FX MicroArray Plex SA System; Beckman Coultier) to optimize consistency in processing and minimize handling variability, each fragmented, biotin-labeled cRNA sample (30 mg) was individually hybridized to an Affymetrix Hg-U133 plus 2.0 chip for 16 hours and rotated at 13 rpm at 50C."	"The chips were scanned using an Affymetrix GeneChip Scanner 3000 7G"	"Brain from cognitively intact individual."	"GC-RMA expression values were obtained from CEL files using GeneSpring 7.3.1 software.  PLIER expression values were obtained using Expression Console software using default settings.  PLIER and GC-RMA data were processed using GeneSpring 7.0 software, with default normalizations (Data transformation:set values<0.01 to 0.01; per chip: normalize to 50th percentile; per gene: normalize to median)."	"GPL570"	"Nicole,Claudia,Berchtold"	"nberchto@uci.edu"	"949 824 6071"	"Carl W. Cotman"	"Institute for Memory Impairments and Neurological Disorders"	"UC Irvine"	"1226 Gillespie Neuroscience Facility"	"Irvine"	"CA"	"92697-4540"	"USA"	"ftp://ftp.ncbi.nlm.nih.gov/geo/samples/GSM300nnn/GSM300285/suppl/GSM300285.CEL.gz"	"54675"	"Reanalyzed by: GSE119087"	"Reanalyzed by: GSE133349"	""	"69"	NA	NA	"entorhinal cortex"	"male"	"8, C"	NA
+"GSM300286"	"Hippocampus_male_69yrs_indiv8"	"GSM300286"	"Public on Oct 09 2008"	"Jun 25 2008"	"Jun 26 2019"	"RNA"	"1"	"brain, hippocampus, male, 69 years"	"Homo sapiens"	"individual: 8, C"	"brain region: hippocampus"	"gender: male"	"age (yrs): 69"	""	""	"N/A"	"N/A"	"total RNA"	"Total RNA was extracted from 10-200 mg of frozen, unfixed tissue using Trizol reagent (Invitrogen, Carlsbad CA), and purified using quick spin columns (Qiagen, Valencia CA).  RNA quality was assessed using the Agilent BioAnalyzer (Agilent Technologies, Palo Alto, CA) and UV spectrophotometer for the presence of sharp peaks and 28S/18S RNA."	"biotin"	"Total RNA (10 ug) from each sample was used to generate first strand cDNA using a T7-linked-(dT)24 primer, followed by in vitro transcription using the ENZO BioArray High-Yield RNA transcript labeling kit (ENZO Farmingdale, NY) to generate biotin-labeled cRNA target."	"9606"	"Using a robotics system (Biomek FX MicroArray Plex SA System; Beckman Coultier) to optimize consistency in processing and minimize handling variability, each fragmented, biotin-labeled cRNA sample (30 mg) was individually hybridized to an Affymetrix Hg-U133 plus 2.0 chip for 16 hours and rotated at 13 rpm at 50C."	"The chips were scanned using an Affymetrix GeneChip Scanner 3000 7G"	"Brain from cognitively intact individual."	"GC-RMA expression values were obtained from CEL files using GeneSpring 7.3.1 software.  PLIER expression values were obtained using Expression Console software using default settings.  PLIER and GC-RMA data were processed using GeneSpring 7.0 software, with default normalizations (Data transformation:set values<0.01 to 0.01; per chip: normalize to 50th percentile; per gene: normalize to median)."	"GPL570"	"Nicole,Claudia,Berchtold"	"nberchto@uci.edu"	"949 824 6071"	"Carl W. Cotman"	"Institute for Memory Impairments and Neurological Disorders"	"UC Irvine"	"1226 Gillespie Neuroscience Facility"	"Irvine"	"CA"	"92697-4540"	"USA"	"ftp://ftp.ncbi.nlm.nih.gov/geo/samples/GSM300nnn/GSM300286/suppl/GSM300286.CEL.gz"	"54675"	"Reanalyzed by: GSE119087"	"Reanalyzed by: GSE133349"	""	"69"	NA	NA	"hippocampus"	"male"	"8, C"	NA
+"GSM300287"	"PostcentralGyrus_male_69yrs_indiv8"	"GSM300287"	"Public on Oct 09 2008"	"Jun 25 2008"	"Jun 26 2019"	"RNA"	"1"	"brain, postcentral gyrus, male, 69 years"	"Homo sapiens"	"individual: 8, C"	"brain region: postcentral gyrus"	"gender: male"	"age (yrs): 69"	""	""	"N/A"	"N/A"	"total RNA"	"Total RNA was extracted from 10-200 mg of frozen, unfixed tissue using Trizol reagent (Invitrogen, Carlsbad CA), and purified using quick spin columns (Qiagen, Valencia CA).  RNA quality was assessed using the Agilent BioAnalyzer (Agilent Technologies, Palo Alto, CA) and UV spectrophotometer for the presence of sharp peaks and 28S/18S RNA."	"biotin"	"Total RNA (10 ug) from each sample was used to generate first strand cDNA using a T7-linked-(dT)24 primer, followed by in vitro transcription using the ENZO BioArray High-Yield RNA transcript labeling kit (ENZO Farmingdale, NY) to generate biotin-labeled cRNA target."	"9606"	"Using a robotics system (Biomek FX MicroArray Plex SA System; Beckman Coultier) to optimize consistency in processing and minimize handling variability, each fragmented, biotin-labeled cRNA sample (30 mg) was individually hybridized to an Affymetrix Hg-U133 plus 2.0 chip for 16 hours and rotated at 13 rpm at 50C."	"The chips were scanned using an Affymetrix GeneChip Scanner 3000 7G"	"Brain from cognitively intact individual."	"GC-RMA expression values were obtained from CEL files using GeneSpring 7.3.1 software.  PLIER expression values were obtained using Expression Console software using default settings.  PLIER and GC-RMA data were processed using GeneSpring 7.0 software, with default normalizations (Data transformation:set values<0.01 to 0.01; per chip: normalize to 50th percentile; per gene: normalize to median)."	"GPL570"	"Nicole,Claudia,Berchtold"	"nberchto@uci.edu"	"949 824 6071"	"Carl W. Cotman"	"Institute for Memory Impairments and Neurological Disorders"	"UC Irvine"	"1226 Gillespie Neuroscience Facility"	"Irvine"	"CA"	"92697-4540"	"USA"	"ftp://ftp.ncbi.nlm.nih.gov/geo/samples/GSM300nnn/GSM300287/suppl/GSM300287.CEL.gz"	"54675"	"Reanalyzed by: GSE119087"	"Reanalyzed by: GSE133349"	""	"69"	NA	NA	"postcentral gyrus"	"male"	"8, C"	NA
+"GSM300288"	"SuperiorFrontalGyrus_male_69yrs_indiv8"	"GSM300288"	"Public on Oct 09 2008"	"Jun 25 2008"	"Jun 26 2019"	"RNA"	"1"	"brain, superior frontal gyrus, male, 69 years"	"Homo sapiens"	"individual: 8, C"	"brain region: superior frontal gyrus"	"gender: male"	"age (yrs): 69"	""	""	"N/A"	"N/A"	"total RNA"	"Total RNA was extracted from 10-200 mg of frozen, unfixed tissue using Trizol reagent (Invitrogen, Carlsbad CA), and purified using quick spin columns (Qiagen, Valencia CA).  RNA quality was assessed using the Agilent BioAnalyzer (Agilent Technologies, Palo Alto, CA) and UV spectrophotometer for the presence of sharp peaks and 28S/18S RNA."	"biotin"	"Total RNA (10 ug) from each sample was used to generate first strand cDNA using a T7-linked-(dT)24 primer, followed by in vitro transcription using the ENZO BioArray High-Yield RNA transcript labeling kit (ENZO Farmingdale, NY) to generate biotin-labeled cRNA target."	"9606"	"Using a robotics system (Biomek FX MicroArray Plex SA System; Beckman Coultier) to optimize consistency in processing and minimize handling variability, each fragmented, biotin-labeled cRNA sample (30 mg) was individually hybridized to an Affymetrix Hg-U133 plus 2.0 chip for 16 hours and rotated at 13 rpm at 50C."	"The chips were scanned using an Affymetrix GeneChip Scanner 3000 7G"	"Brain from cognitively intact individual."	"GC-RMA expression values were obtained from CEL files using GeneSpring 7.3.1 software.  PLIER expression values were obtained using Expression Console software using default settings.  PLIER and GC-RMA data were processed using GeneSpring 7.0 software, with default normalizations (Data transformation:set values<0.01 to 0.01; per chip: normalize to 50th percentile; per gene: normalize to median)."	"GPL570"	"Nicole,Claudia,Berchtold"	"nberchto@uci.edu"	"949 824 6071"	"Carl W. Cotman"	"Institute for Memory Impairments and Neurological Disorders"	"UC Irvine"	"1226 Gillespie Neuroscience Facility"	"Irvine"	"CA"	"92697-4540"	"USA"	"ftp://ftp.ncbi.nlm.nih.gov/geo/samples/GSM300nnn/GSM300288/suppl/GSM300288.CEL.gz"	"54675"	"Reanalyzed by: GSE119087"	"Reanalyzed by: GSE133349"	""	"69"	NA	NA	"superior frontal gyrus"	"male"	"8, C"	NA
+"GSM300289"	"EntorhinalCortex_female_44yrs_indiv80"	"GSM300289"	"Public on Oct 09 2008"	"Jun 25 2008"	"Jun 26 2019"	"RNA"	"1"	"brain, entorhinal cortex, female, 44 years"	"Homo sapiens"	"individual: 80, AA"	"brain region: entorhinal cortex"	"gender: female"	"age (yrs): 44"	""	""	"N/A"	"N/A"	"total RNA"	"Total RNA was extracted from 10-200 mg of frozen, unfixed tissue using Trizol reagent (Invitrogen, Carlsbad CA), and purified using quick spin columns (Qiagen, Valencia CA).  RNA quality was assessed using the Agilent BioAnalyzer (Agilent Technologies, Palo Alto, CA) and UV spectrophotometer for the presence of sharp peaks and 28S/18S RNA."	"biotin"	"Total RNA (10 ug) from each sample was used to generate first strand cDNA using a T7-linked-(dT)24 primer, followed by in vitro transcription using the ENZO BioArray High-Yield RNA transcript labeling kit (ENZO Farmingdale, NY) to generate biotin-labeled cRNA target."	"9606"	"Using a robotics system (Biomek FX MicroArray Plex SA System; Beckman Coultier) to optimize consistency in processing and minimize handling variability, each fragmented, biotin-labeled cRNA sample (30 mg) was individually hybridized to an Affymetrix Hg-U133 plus 2.0 chip for 16 hours and rotated at 13 rpm at 50C."	"The chips were scanned using an Affymetrix GeneChip Scanner 3000 7G"	"Brain from cognitively intact individual."	"GC-RMA expression values were obtained from CEL files using GeneSpring 7.3.1 software.  PLIER expression values were obtained using Expression Console software using default settings.  PLIER and GC-RMA data were processed using GeneSpring 7.0 software, with default normalizations (Data transformation:set values<0.01 to 0.01; per chip: normalize to 50th percentile; per gene: normalize to median)."	"GPL570"	"Nicole,Claudia,Berchtold"	"nberchto@uci.edu"	"949 824 6071"	"Carl W. Cotman"	"Institute for Memory Impairments and Neurological Disorders"	"UC Irvine"	"1226 Gillespie Neuroscience Facility"	"Irvine"	"CA"	"92697-4540"	"USA"	"ftp://ftp.ncbi.nlm.nih.gov/geo/samples/GSM300nnn/GSM300289/suppl/GSM300289.CEL.gz"	"54675"	"Reanalyzed by: GSE119087"	"Reanalyzed by: GSE133349"	""	"44"	NA	NA	"entorhinal cortex"	"female"	"80, AA"	NA
+"GSM300290"	"Hippocampus_female_44yrs_indiv80"	"GSM300290"	"Public on Oct 09 2008"	"Jun 25 2008"	"Jun 26 2019"	"RNA"	"1"	"brain, hippocampus, female, 44 years"	"Homo sapiens"	"individual: 80, AA"	"brain region: hippocampus"	"gender: female"	"age (yrs): 44"	""	""	"N/A"	"N/A"	"total RNA"	"Total RNA was extracted from 10-200 mg of frozen, unfixed tissue using Trizol reagent (Invitrogen, Carlsbad CA), and purified using quick spin columns (Qiagen, Valencia CA).  RNA quality was assessed using the Agilent BioAnalyzer (Agilent Technologies, Palo Alto, CA) and UV spectrophotometer for the presence of sharp peaks and 28S/18S RNA."	"biotin"	"Total RNA (10 ug) from each sample was used to generate first strand cDNA using a T7-linked-(dT)24 primer, followed by in vitro transcription using the ENZO BioArray High-Yield RNA transcript labeling kit (ENZO Farmingdale, NY) to generate biotin-labeled cRNA target."	"9606"	"Using a robotics system (Biomek FX MicroArray Plex SA System; Beckman Coultier) to optimize consistency in processing and minimize handling variability, each fragmented, biotin-labeled cRNA sample (30 mg) was individually hybridized to an Affymetrix Hg-U133 plus 2.0 chip for 16 hours and rotated at 13 rpm at 50C."	"The chips were scanned using an Affymetrix GeneChip Scanner 3000 7G"	"Brain from cognitively intact individual."	"GC-RMA expression values were obtained from CEL files using GeneSpring 7.3.1 software.  PLIER expression values were obtained using Expression Console software using default settings.  PLIER and GC-RMA data were processed using GeneSpring 7.0 software, with default normalizations (Data transformation:set values<0.01 to 0.01; per chip: normalize to 50th percentile; per gene: normalize to median)."	"GPL570"	"Nicole,Claudia,Berchtold"	"nberchto@uci.edu"	"949 824 6071"	"Carl W. Cotman"	"Institute for Memory Impairments and Neurological Disorders"	"UC Irvine"	"1226 Gillespie Neuroscience Facility"	"Irvine"	"CA"	"92697-4540"	"USA"	"ftp://ftp.ncbi.nlm.nih.gov/geo/samples/GSM300nnn/GSM300290/suppl/GSM300290.CEL.gz"	"54675"	"Reanalyzed by: GSE119087"	"Reanalyzed by: GSE133349"	""	"44"	NA	NA	"hippocampus"	"female"	"80, AA"	NA
+"GSM300291"	"PostcentralGyrus_female_44yrs_indiv80"	"GSM300291"	"Public on Oct 09 2008"	"Jun 25 2008"	"Jun 26 2019"	"RNA"	"1"	"brain, postcentral gyrus, female, 44 years"	"Homo sapiens"	"individual: 80, AA"	"brain region: postcentral gyrus"	"gender: female"	"age (yrs): 44"	""	""	"N/A"	"N/A"	"total RNA"	"Total RNA was extracted from 10-200 mg of frozen, unfixed tissue using Trizol reagent (Invitrogen, Carlsbad CA), and purified using quick spin columns (Qiagen, Valencia CA).  RNA quality was assessed using the Agilent BioAnalyzer (Agilent Technologies, Palo Alto, CA) and UV spectrophotometer for the presence of sharp peaks and 28S/18S RNA."	"biotin"	"Total RNA (10 ug) from each sample was used to generate first strand cDNA using a T7-linked-(dT)24 primer, followed by in vitro transcription using the ENZO BioArray High-Yield RNA transcript labeling kit (ENZO Farmingdale, NY) to generate biotin-labeled cRNA target."	"9606"	"Using a robotics system (Biomek FX MicroArray Plex SA System; Beckman Coultier) to optimize consistency in processing and minimize handling variability, each fragmented, biotin-labeled cRNA sample (30 mg) was individually hybridized to an Affymetrix Hg-U133 plus 2.0 chip for 16 hours and rotated at 13 rpm at 50C."	"The chips were scanned using an Affymetrix GeneChip Scanner 3000 7G"	"Brain from cognitively intact individual."	"GC-RMA expression values were obtained from CEL files using GeneSpring 7.3.1 software.  PLIER expression values were obtained using Expression Console software using default settings.  PLIER and GC-RMA data were processed using GeneSpring 7.0 software, with default normalizations (Data transformation:set values<0.01 to 0.01; per chip: normalize to 50th percentile; per gene: normalize to median)."	"GPL570"	"Nicole,Claudia,Berchtold"	"nberchto@uci.edu"	"949 824 6071"	"Carl W. Cotman"	"Institute for Memory Impairments and Neurological Disorders"	"UC Irvine"	"1226 Gillespie Neuroscience Facility"	"Irvine"	"CA"	"92697-4540"	"USA"	"ftp://ftp.ncbi.nlm.nih.gov/geo/samples/GSM300nnn/GSM300291/suppl/GSM300291.CEL.gz"	"54675"	"Reanalyzed by: GSE119087"	"Reanalyzed by: GSE133349"	""	"44"	NA	NA	"postcentral gyrus"	"female"	"80, AA"	NA
+"GSM300292"	"SuperiorFrontalGyrus_female_44yrs_indiv80"	"GSM300292"	"Public on Oct 09 2008"	"Jun 25 2008"	"Jun 26 2019"	"RNA"	"1"	"brain, superior frontal gyrus, female, 44 years"	"Homo sapiens"	"individual: 80, AA"	"brain region: superior frontal gyrus"	"gender: female"	"age (yrs): 44"	""	""	"N/A"	"N/A"	"total RNA"	"Total RNA was extracted from 10-200 mg of frozen, unfixed tissue using Trizol reagent (Invitrogen, Carlsbad CA), and purified using quick spin columns (Qiagen, Valencia CA).  RNA quality was assessed using the Agilent BioAnalyzer (Agilent Technologies, Palo Alto, CA) and UV spectrophotometer for the presence of sharp peaks and 28S/18S RNA."	"biotin"	"Total RNA (10 ug) from each sample was used to generate first strand cDNA using a T7-linked-(dT)24 primer, followed by in vitro transcription using the ENZO BioArray High-Yield RNA transcript labeling kit (ENZO Farmingdale, NY) to generate biotin-labeled cRNA target."	"9606"	"Using a robotics system (Biomek FX MicroArray Plex SA System; Beckman Coultier) to optimize consistency in processing and minimize handling variability, each fragmented, biotin-labeled cRNA sample (30 mg) was individually hybridized to an Affymetrix Hg-U133 plus 2.0 chip for 16 hours and rotated at 13 rpm at 50C."	"The chips were scanned using an Affymetrix GeneChip Scanner 3000 7G"	"Brain from cognitively intact individual."	"GC-RMA expression values were obtained from CEL files using GeneSpring 7.3.1 software.  PLIER expression values were obtained using Expression Console software using default settings.  PLIER and GC-RMA data were processed using GeneSpring 7.0 software, with default normalizations (Data transformation:set values<0.01 to 0.01; per chip: normalize to 50th percentile; per gene: normalize to median)."	"GPL570"	"Nicole,Claudia,Berchtold"	"nberchto@uci.edu"	"949 824 6071"	"Carl W. Cotman"	"Institute for Memory Impairments and Neurological Disorders"	"UC Irvine"	"1226 Gillespie Neuroscience Facility"	"Irvine"	"CA"	"92697-4540"	"USA"	"ftp://ftp.ncbi.nlm.nih.gov/geo/samples/GSM300nnn/GSM300292/suppl/GSM300292.CEL.gz"	"54675"	"Reanalyzed by: GSE119087"	"Reanalyzed by: GSE133349"	""	"44"	NA	NA	"superior frontal gyrus"	"female"	"80, AA"	NA
+"GSM300293"	"EntorhinalCortex_female_48yrs_indiv81"	"GSM300293"	"Public on Oct 09 2008"	"Jun 25 2008"	"Jun 26 2019"	"RNA"	"1"	"brain, entorhinal cortex, female, 48 years"	"Homo sapiens"	"individual: 81, AA"	"brain region: entorhinal cortex"	"gender: female"	"age (yrs): 48"	""	""	"N/A"	"N/A"	"total RNA"	"Total RNA was extracted from 10-200 mg of frozen, unfixed tissue using Trizol reagent (Invitrogen, Carlsbad CA), and purified using quick spin columns (Qiagen, Valencia CA).  RNA quality was assessed using the Agilent BioAnalyzer (Agilent Technologies, Palo Alto, CA) and UV spectrophotometer for the presence of sharp peaks and 28S/18S RNA."	"biotin"	"Total RNA (10 ug) from each sample was used to generate first strand cDNA using a T7-linked-(dT)24 primer, followed by in vitro transcription using the ENZO BioArray High-Yield RNA transcript labeling kit (ENZO Farmingdale, NY) to generate biotin-labeled cRNA target."	"9606"	"Using a robotics system (Biomek FX MicroArray Plex SA System; Beckman Coultier) to optimize consistency in processing and minimize handling variability, each fragmented, biotin-labeled cRNA sample (30 mg) was individually hybridized to an Affymetrix Hg-U133 plus 2.0 chip for 16 hours and rotated at 13 rpm at 50C."	"The chips were scanned using an Affymetrix GeneChip Scanner 3000 7G"	"Brain from cognitively intact individual."	"GC-RMA expression values were obtained from CEL files using GeneSpring 7.3.1 software.  PLIER expression values were obtained using Expression Console software using default settings.  PLIER and GC-RMA data were processed using GeneSpring 7.0 software, with default normalizations (Data transformation:set values<0.01 to 0.01; per chip: normalize to 50th percentile; per gene: normalize to median)."	"GPL570"	"Nicole,Claudia,Berchtold"	"nberchto@uci.edu"	"949 824 6071"	"Carl W. Cotman"	"Institute for Memory Impairments and Neurological Disorders"	"UC Irvine"	"1226 Gillespie Neuroscience Facility"	"Irvine"	"CA"	"92697-4540"	"USA"	"ftp://ftp.ncbi.nlm.nih.gov/geo/samples/GSM300nnn/GSM300293/suppl/GSM300293.CEL.gz"	"54675"	"Reanalyzed by: GSE119087"	"Reanalyzed by: GSE133349"	""	"48"	NA	NA	"entorhinal cortex"	"female"	"81, AA"	NA
+"GSM300294"	"Hippocampus_female_48yrs_indiv81"	"GSM300294"	"Public on Oct 09 2008"	"Jun 25 2008"	"Jun 26 2019"	"RNA"	"1"	"brain, hippocampus, female, 48 years"	"Homo sapiens"	"individual: 81, AA"	"brain region: hippocampus"	"gender: female"	"age (yrs): 48"	""	""	"N/A"	"N/A"	"total RNA"	"Total RNA was extracted from 10-200 mg of frozen, unfixed tissue using Trizol reagent (Invitrogen, Carlsbad CA), and purified using quick spin columns (Qiagen, Valencia CA).  RNA quality was assessed using the Agilent BioAnalyzer (Agilent Technologies, Palo Alto, CA) and UV spectrophotometer for the presence of sharp peaks and 28S/18S RNA."	"biotin"	"Total RNA (10 ug) from each sample was used to generate first strand cDNA using a T7-linked-(dT)24 primer, followed by in vitro transcription using the ENZO BioArray High-Yield RNA transcript labeling kit (ENZO Farmingdale, NY) to generate biotin-labeled cRNA target."	"9606"	"Using a robotics system (Biomek FX MicroArray Plex SA System; Beckman Coultier) to optimize consistency in processing and minimize handling variability, each fragmented, biotin-labeled cRNA sample (30 mg) was individually hybridized to an Affymetrix Hg-U133 plus 2.0 chip for 16 hours and rotated at 13 rpm at 50C."	"The chips were scanned using an Affymetrix GeneChip Scanner 3000 7G"	"Brain from cognitively intact individual."	"GC-RMA expression values were obtained from CEL files using GeneSpring 7.3.1 software.  PLIER expression values were obtained using Expression Console software using default settings.  PLIER and GC-RMA data were processed using GeneSpring 7.0 software, with default normalizations (Data transformation:set values<0.01 to 0.01; per chip: normalize to 50th percentile; per gene: normalize to median)."	"GPL570"	"Nicole,Claudia,Berchtold"	"nberchto@uci.edu"	"949 824 6071"	"Carl W. Cotman"	"Institute for Memory Impairments and Neurological Disorders"	"UC Irvine"	"1226 Gillespie Neuroscience Facility"	"Irvine"	"CA"	"92697-4540"	"USA"	"ftp://ftp.ncbi.nlm.nih.gov/geo/samples/GSM300nnn/GSM300294/suppl/GSM300294.CEL.gz"	"54675"	"Reanalyzed by: GSE119087"	"Reanalyzed by: GSE133349"	""	"48"	NA	NA	"hippocampus"	"female"	"81, AA"	NA
+"GSM300295"	"PostcentralGyrus_female_48yrs_indiv81"	"GSM300295"	"Public on Oct 09 2008"	"Jun 25 2008"	"Jun 26 2019"	"RNA"	"1"	"brain, postcentral gyrus, female, 48 years"	"Homo sapiens"	"individual: 81, AA"	"brain region: postcentral gyrus"	"gender: female"	"age (yrs): 48"	""	""	"N/A"	"N/A"	"total RNA"	"Total RNA was extracted from 10-200 mg of frozen, unfixed tissue using Trizol reagent (Invitrogen, Carlsbad CA), and purified using quick spin columns (Qiagen, Valencia CA).  RNA quality was assessed using the Agilent BioAnalyzer (Agilent Technologies, Palo Alto, CA) and UV spectrophotometer for the presence of sharp peaks and 28S/18S RNA."	"biotin"	"Total RNA (10 ug) from each sample was used to generate first strand cDNA using a T7-linked-(dT)24 primer, followed by in vitro transcription using the ENZO BioArray High-Yield RNA transcript labeling kit (ENZO Farmingdale, NY) to generate biotin-labeled cRNA target."	"9606"	"Using a robotics system (Biomek FX MicroArray Plex SA System; Beckman Coultier) to optimize consistency in processing and minimize handling variability, each fragmented, biotin-labeled cRNA sample (30 mg) was individually hybridized to an Affymetrix Hg-U133 plus 2.0 chip for 16 hours and rotated at 13 rpm at 50C."	"The chips were scanned using an Affymetrix GeneChip Scanner 3000 7G"	"Brain from cognitively intact individual."	"GC-RMA expression values were obtained from CEL files using GeneSpring 7.3.1 software.  PLIER expression values were obtained using Expression Console software using default settings.  PLIER and GC-RMA data were processed using GeneSpring 7.0 software, with default normalizations (Data transformation:set values<0.01 to 0.01; per chip: normalize to 50th percentile; per gene: normalize to median)."	"GPL570"	"Nicole,Claudia,Berchtold"	"nberchto@uci.edu"	"949 824 6071"	"Carl W. Cotman"	"Institute for Memory Impairments and Neurological Disorders"	"UC Irvine"	"1226 Gillespie Neuroscience Facility"	"Irvine"	"CA"	"92697-4540"	"USA"	"ftp://ftp.ncbi.nlm.nih.gov/geo/samples/GSM300nnn/GSM300295/suppl/GSM300295.CEL.gz"	"54675"	"Reanalyzed by: GSE119087"	"Reanalyzed by: GSE133349"	""	"48"	NA	NA	"postcentral gyrus"	"female"	"81, AA"	NA
+"GSM300296"	"SuperiorFrontalGyrus_female_48yrs_indiv81"	"GSM300296"	"Public on Oct 09 2008"	"Jun 25 2008"	"Jun 26 2019"	"RNA"	"1"	"brain, superior frontal gyrus, female, 48 years"	"Homo sapiens"	"individual: 81, AA"	"brain region: superior frontal gyrus"	"gender: female"	"age (yrs): 48"	""	""	"N/A"	"N/A"	"total RNA"	"Total RNA was extracted from 10-200 mg of frozen, unfixed tissue using Trizol reagent (Invitrogen, Carlsbad CA), and purified using quick spin columns (Qiagen, Valencia CA).  RNA quality was assessed using the Agilent BioAnalyzer (Agilent Technologies, Palo Alto, CA) and UV spectrophotometer for the presence of sharp peaks and 28S/18S RNA."	"biotin"	"Total RNA (10 ug) from each sample was used to generate first strand cDNA using a T7-linked-(dT)24 primer, followed by in vitro transcription using the ENZO BioArray High-Yield RNA transcript labeling kit (ENZO Farmingdale, NY) to generate biotin-labeled cRNA target."	"9606"	"Using a robotics system (Biomek FX MicroArray Plex SA System; Beckman Coultier) to optimize consistency in processing and minimize handling variability, each fragmented, biotin-labeled cRNA sample (30 mg) was individually hybridized to an Affymetrix Hg-U133 plus 2.0 chip for 16 hours and rotated at 13 rpm at 50C."	"The chips were scanned using an Affymetrix GeneChip Scanner 3000 7G"	"Brain from cognitively intact individual."	"GC-RMA expression values were obtained from CEL files using GeneSpring 7.3.1 software.  PLIER expression values were obtained using Expression Console software using default settings.  PLIER and GC-RMA data were processed using GeneSpring 7.0 software, with default normalizations (Data transformation:set values<0.01 to 0.01; per chip: normalize to 50th percentile; per gene: normalize to median)."	"GPL570"	"Nicole,Claudia,Berchtold"	"nberchto@uci.edu"	"949 824 6071"	"Carl W. Cotman"	"Institute for Memory Impairments and Neurological Disorders"	"UC Irvine"	"1226 Gillespie Neuroscience Facility"	"Irvine"	"CA"	"92697-4540"	"USA"	"ftp://ftp.ncbi.nlm.nih.gov/geo/samples/GSM300nnn/GSM300296/suppl/GSM300296.CEL.gz"	"54675"	"Reanalyzed by: GSE119087"	"Reanalyzed by: GSE133349"	""	"48"	NA	NA	"superior frontal gyrus"	"female"	"81, AA"	NA
+"GSM300297"	"EntorhinalCortex_female_30yrs_indiv82"	"GSM300297"	"Public on Oct 09 2008"	"Jun 25 2008"	"Jun 26 2019"	"RNA"	"1"	"brain, entorhinal cortex, female, 30 years"	"Homo sapiens"	"individual: 82, AA"	"brain region: entorhinal cortex"	"gender: female"	"age (yrs): 30"	""	""	"N/A"	"N/A"	"total RNA"	"Total RNA was extracted from 10-200 mg of frozen, unfixed tissue using Trizol reagent (Invitrogen, Carlsbad CA), and purified using quick spin columns (Qiagen, Valencia CA).  RNA quality was assessed using the Agilent BioAnalyzer (Agilent Technologies, Palo Alto, CA) and UV spectrophotometer for the presence of sharp peaks and 28S/18S RNA."	"biotin"	"Total RNA (10 ug) from each sample was used to generate first strand cDNA using a T7-linked-(dT)24 primer, followed by in vitro transcription using the ENZO BioArray High-Yield RNA transcript labeling kit (ENZO Farmingdale, NY) to generate biotin-labeled cRNA target."	"9606"	"Using a robotics system (Biomek FX MicroArray Plex SA System; Beckman Coultier) to optimize consistency in processing and minimize handling variability, each fragmented, biotin-labeled cRNA sample (30 mg) was individually hybridized to an Affymetrix Hg-U133 plus 2.0 chip for 16 hours and rotated at 13 rpm at 50C."	"The chips were scanned using an Affymetrix GeneChip Scanner 3000 7G"	"Brain from cognitively intact individual."	"GC-RMA expression values were obtained from CEL files using GeneSpring 7.3.1 software.  PLIER expression values were obtained using Expression Console software using default settings.  PLIER and GC-RMA data were processed using GeneSpring 7.0 software, with default normalizations (Data transformation:set values<0.01 to 0.01; per chip: normalize to 50th percentile; per gene: normalize to median)."	"GPL570"	"Nicole,Claudia,Berchtold"	"nberchto@uci.edu"	"949 824 6071"	"Carl W. Cotman"	"Institute for Memory Impairments and Neurological Disorders"	"UC Irvine"	"1226 Gillespie Neuroscience Facility"	"Irvine"	"CA"	"92697-4540"	"USA"	"ftp://ftp.ncbi.nlm.nih.gov/geo/samples/GSM300nnn/GSM300297/suppl/GSM300297.CEL.gz"	"54675"	"Reanalyzed by: GSE119087"	"Reanalyzed by: GSE133349"	""	"30"	NA	NA	"entorhinal cortex"	"female"	"82, AA"	NA
+"GSM300298"	"Hippocampus_female_30yrs_indiv82"	"GSM300298"	"Public on Oct 09 2008"	"Jun 25 2008"	"Jun 26 2019"	"RNA"	"1"	"brain, hippocampus, female, 30 years"	"Homo sapiens"	"individual: 82, AA"	"brain region: hippocampus"	"gender: female"	"age (yrs): 30"	""	""	"N/A"	"N/A"	"total RNA"	"Total RNA was extracted from 10-200 mg of frozen, unfixed tissue using Trizol reagent (Invitrogen, Carlsbad CA), and purified using quick spin columns (Qiagen, Valencia CA).  RNA quality was assessed using the Agilent BioAnalyzer (Agilent Technologies, Palo Alto, CA) and UV spectrophotometer for the presence of sharp peaks and 28S/18S RNA."	"biotin"	"Total RNA (10 ug) from each sample was used to generate first strand cDNA using a T7-linked-(dT)24 primer, followed by in vitro transcription using the ENZO BioArray High-Yield RNA transcript labeling kit (ENZO Farmingdale, NY) to generate biotin-labeled cRNA target."	"9606"	"Using a robotics system (Biomek FX MicroArray Plex SA System; Beckman Coultier) to optimize consistency in processing and minimize handling variability, each fragmented, biotin-labeled cRNA sample (30 mg) was individually hybridized to an Affymetrix Hg-U133 plus 2.0 chip for 16 hours and rotated at 13 rpm at 50C."	"The chips were scanned using an Affymetrix GeneChip Scanner 3000 7G"	"Brain from cognitively intact individual."	"GC-RMA expression values were obtained from CEL files using GeneSpring 7.3.1 software.  PLIER expression values were obtained using Expression Console software using default settings.  PLIER and GC-RMA data were processed using GeneSpring 7.0 software, with default normalizations (Data transformation:set values<0.01 to 0.01; per chip: normalize to 50th percentile; per gene: normalize to median)."	"GPL570"	"Nicole,Claudia,Berchtold"	"nberchto@uci.edu"	"949 824 6071"	"Carl W. Cotman"	"Institute for Memory Impairments and Neurological Disorders"	"UC Irvine"	"1226 Gillespie Neuroscience Facility"	"Irvine"	"CA"	"92697-4540"	"USA"	"ftp://ftp.ncbi.nlm.nih.gov/geo/samples/GSM300nnn/GSM300298/suppl/GSM300298.CEL.gz"	"54675"	"Reanalyzed by: GSE119087"	"Reanalyzed by: GSE133349"	""	"30"	NA	NA	"hippocampus"	"female"	"82, AA"	NA
+"GSM300299"	"SuperiorFrontalGyrus_female_30yrs_indiv82"	"GSM300299"	"Public on Oct 09 2008"	"Jun 25 2008"	"Jun 26 2019"	"RNA"	"1"	"brain, superior frontal gyrus, female, 30 years"	"Homo sapiens"	"individual: 82, AA"	"brain region: superior frontal gyrus"	"gender: female"	"age (yrs): 30"	""	""	"N/A"	"N/A"	"total RNA"	"Total RNA was extracted from 10-200 mg of frozen, unfixed tissue using Trizol reagent (Invitrogen, Carlsbad CA), and purified using quick spin columns (Qiagen, Valencia CA).  RNA quality was assessed using the Agilent BioAnalyzer (Agilent Technologies, Palo Alto, CA) and UV spectrophotometer for the presence of sharp peaks and 28S/18S RNA."	"biotin"	"Total RNA (10 ug) from each sample was used to generate first strand cDNA using a T7-linked-(dT)24 primer, followed by in vitro transcription using the ENZO BioArray High-Yield RNA transcript labeling kit (ENZO Farmingdale, NY) to generate biotin-labeled cRNA target."	"9606"	"Using a robotics system (Biomek FX MicroArray Plex SA System; Beckman Coultier) to optimize consistency in processing and minimize handling variability, each fragmented, biotin-labeled cRNA sample (30 mg) was individually hybridized to an Affymetrix Hg-U133 plus 2.0 chip for 16 hours and rotated at 13 rpm at 50C."	"The chips were scanned using an Affymetrix GeneChip Scanner 3000 7G"	"Brain from cognitively intact individual."	"GC-RMA expression values were obtained from CEL files using GeneSpring 7.3.1 software.  PLIER expression values were obtained using Expression Console software using default settings.  PLIER and GC-RMA data were processed using GeneSpring 7.0 software, with default normalizations (Data transformation:set values<0.01 to 0.01; per chip: normalize to 50th percentile; per gene: normalize to median)."	"GPL570"	"Nicole,Claudia,Berchtold"	"nberchto@uci.edu"	"949 824 6071"	"Carl W. Cotman"	"Institute for Memory Impairments and Neurological Disorders"	"UC Irvine"	"1226 Gillespie Neuroscience Facility"	"Irvine"	"CA"	"92697-4540"	"USA"	"ftp://ftp.ncbi.nlm.nih.gov/geo/samples/GSM300nnn/GSM300299/suppl/GSM300299.CEL.gz"	"54675"	"Reanalyzed by: GSE119087"	"Reanalyzed by: GSE133349"	""	"30"	NA	NA	"superior frontal gyrus"	"female"	"82, AA"	NA
+"GSM300300"	"EntorhinalCortex_male_20yrs_indiv83"	"GSM300300"	"Public on Oct 09 2008"	"Jun 25 2008"	"Jun 26 2019"	"RNA"	"1"	"brain, entorhinal cortex, male, 20 years"	"Homo sapiens"	"individual: 83, C"	"brain region: entorhinal cortex"	"gender: male"	"age (yrs): 20"	""	""	"N/A"	"N/A"	"total RNA"	"Total RNA was extracted from 10-200 mg of frozen, unfixed tissue using Trizol reagent (Invitrogen, Carlsbad CA), and purified using quick spin columns (Qiagen, Valencia CA).  RNA quality was assessed using the Agilent BioAnalyzer (Agilent Technologies, Palo Alto, CA) and UV spectrophotometer for the presence of sharp peaks and 28S/18S RNA."	"biotin"	"Total RNA (10 ug) from each sample was used to generate first strand cDNA using a T7-linked-(dT)24 primer, followed by in vitro transcription using the ENZO BioArray High-Yield RNA transcript labeling kit (ENZO Farmingdale, NY) to generate biotin-labeled cRNA target."	"9606"	"Using a robotics system (Biomek FX MicroArray Plex SA System; Beckman Coultier) to optimize consistency in processing and minimize handling variability, each fragmented, biotin-labeled cRNA sample (30 mg) was individually hybridized to an Affymetrix Hg-U133 plus 2.0 chip for 16 hours and rotated at 13 rpm at 50C."	"The chips were scanned using an Affymetrix GeneChip Scanner 3000 7G"	"Brain from cognitively intact individual."	"GC-RMA expression values were obtained from CEL files using GeneSpring 7.3.1 software.  PLIER expression values were obtained using Expression Console software using default settings.  PLIER and GC-RMA data were processed using GeneSpring 7.0 software, with default normalizations (Data transformation:set values<0.01 to 0.01; per chip: normalize to 50th percentile; per gene: normalize to median)."	"GPL570"	"Nicole,Claudia,Berchtold"	"nberchto@uci.edu"	"949 824 6071"	"Carl W. Cotman"	"Institute for Memory Impairments and Neurological Disorders"	"UC Irvine"	"1226 Gillespie Neuroscience Facility"	"Irvine"	"CA"	"92697-4540"	"USA"	"ftp://ftp.ncbi.nlm.nih.gov/geo/samples/GSM300nnn/GSM300300/suppl/GSM300300.CEL.gz"	"54675"	"Reanalyzed by: GSE119087"	"Reanalyzed by: GSE133349"	""	"20"	NA	NA	"entorhinal cortex"	"male"	"83, C"	NA
+"GSM300301"	"Hippocampus_male_20yrs_indiv83"	"GSM300301"	"Public on Oct 09 2008"	"Jun 25 2008"	"Jun 26 2019"	"RNA"	"1"	"brain, hippocampus, male, 20 years"	"Homo sapiens"	"individual: 83, C"	"brain region: hippocampus"	"gender: male"	"age (yrs): 20"	""	""	"N/A"	"N/A"	"total RNA"	"Total RNA was extracted from 10-200 mg of frozen, unfixed tissue using Trizol reagent (Invitrogen, Carlsbad CA), and purified using quick spin columns (Qiagen, Valencia CA).  RNA quality was assessed using the Agilent BioAnalyzer (Agilent Technologies, Palo Alto, CA) and UV spectrophotometer for the presence of sharp peaks and 28S/18S RNA."	"biotin"	"Total RNA (10 ug) from each sample was used to generate first strand cDNA using a T7-linked-(dT)24 primer, followed by in vitro transcription using the ENZO BioArray High-Yield RNA transcript labeling kit (ENZO Farmingdale, NY) to generate biotin-labeled cRNA target."	"9606"	"Using a robotics system (Biomek FX MicroArray Plex SA System; Beckman Coultier) to optimize consistency in processing and minimize handling variability, each fragmented, biotin-labeled cRNA sample (30 mg) was individually hybridized to an Affymetrix Hg-U133 plus 2.0 chip for 16 hours and rotated at 13 rpm at 50C."	"The chips were scanned using an Affymetrix GeneChip Scanner 3000 7G"	"Brain from cognitively intact individual."	"GC-RMA expression values were obtained from CEL files using GeneSpring 7.3.1 software.  PLIER expression values were obtained using Expression Console software using default settings.  PLIER and GC-RMA data were processed using GeneSpring 7.0 software, with default normalizations (Data transformation:set values<0.01 to 0.01; per chip: normalize to 50th percentile; per gene: normalize to median)."	"GPL570"	"Nicole,Claudia,Berchtold"	"nberchto@uci.edu"	"949 824 6071"	"Carl W. Cotman"	"Institute for Memory Impairments and Neurological Disorders"	"UC Irvine"	"1226 Gillespie Neuroscience Facility"	"Irvine"	"CA"	"92697-4540"	"USA"	"ftp://ftp.ncbi.nlm.nih.gov/geo/samples/GSM300nnn/GSM300301/suppl/GSM300301.CEL.gz"	"54675"	"Reanalyzed by: GSE119087"	"Reanalyzed by: GSE133349"	""	"20"	NA	NA	"hippocampus"	"male"	"83, C"	NA
+"GSM300302"	"PostcentralGyrus_male_20yrs_indiv83"	"GSM300302"	"Public on Oct 09 2008"	"Jun 25 2008"	"Jun 26 2019"	"RNA"	"1"	"brain, postcentral gyrus, male, 20 years"	"Homo sapiens"	"individual: 83, C"	"brain region: postcentral gyrus"	"gender: male"	"age (yrs): 20"	""	""	"N/A"	"N/A"	"total RNA"	"Total RNA was extracted from 10-200 mg of frozen, unfixed tissue using Trizol reagent (Invitrogen, Carlsbad CA), and purified using quick spin columns (Qiagen, Valencia CA).  RNA quality was assessed using the Agilent BioAnalyzer (Agilent Technologies, Palo Alto, CA) and UV spectrophotometer for the presence of sharp peaks and 28S/18S RNA."	"biotin"	"Total RNA (10 ug) from each sample was used to generate first strand cDNA using a T7-linked-(dT)24 primer, followed by in vitro transcription using the ENZO BioArray High-Yield RNA transcript labeling kit (ENZO Farmingdale, NY) to generate biotin-labeled cRNA target."	"9606"	"Using a robotics system (Biomek FX MicroArray Plex SA System; Beckman Coultier) to optimize consistency in processing and minimize handling variability, each fragmented, biotin-labeled cRNA sample (30 mg) was individually hybridized to an Affymetrix Hg-U133 plus 2.0 chip for 16 hours and rotated at 13 rpm at 50C."	"The chips were scanned using an Affymetrix GeneChip Scanner 3000 7G"	"Brain from cognitively intact individual."	"GC-RMA expression values were obtained from CEL files using GeneSpring 7.3.1 software.  PLIER expression values were obtained using Expression Console software using default settings.  PLIER and GC-RMA data were processed using GeneSpring 7.0 software, with default normalizations (Data transformation:set values<0.01 to 0.01; per chip: normalize to 50th percentile; per gene: normalize to median)."	"GPL570"	"Nicole,Claudia,Berchtold"	"nberchto@uci.edu"	"949 824 6071"	"Carl W. Cotman"	"Institute for Memory Impairments and Neurological Disorders"	"UC Irvine"	"1226 Gillespie Neuroscience Facility"	"Irvine"	"CA"	"92697-4540"	"USA"	"ftp://ftp.ncbi.nlm.nih.gov/geo/samples/GSM300nnn/GSM300302/suppl/GSM300302.CEL.gz"	"54675"	"Reanalyzed by: GSE119087"	"Reanalyzed by: GSE133349"	""	"20"	NA	NA	"postcentral gyrus"	"male"	"83, C"	NA
+"GSM300303"	"SuperiorFrontalGyrus_male_20yrs_indiv83"	"GSM300303"	"Public on Oct 09 2008"	"Jun 25 2008"	"Jun 26 2019"	"RNA"	"1"	"brain, superior frontal gyrus, male, 20 years"	"Homo sapiens"	"individual: 83, C"	"brain region: superior frontal gyrus"	"gender: male"	"age (yrs): 20"	""	""	"N/A"	"N/A"	"total RNA"	"Total RNA was extracted from 10-200 mg of frozen, unfixed tissue using Trizol reagent (Invitrogen, Carlsbad CA), and purified using quick spin columns (Qiagen, Valencia CA).  RNA quality was assessed using the Agilent BioAnalyzer (Agilent Technologies, Palo Alto, CA) and UV spectrophotometer for the presence of sharp peaks and 28S/18S RNA."	"biotin"	"Total RNA (10 ug) from each sample was used to generate first strand cDNA using a T7-linked-(dT)24 primer, followed by in vitro transcription using the ENZO BioArray High-Yield RNA transcript labeling kit (ENZO Farmingdale, NY) to generate biotin-labeled cRNA target."	"9606"	"Using a robotics system (Biomek FX MicroArray Plex SA System; Beckman Coultier) to optimize consistency in processing and minimize handling variability, each fragmented, biotin-labeled cRNA sample (30 mg) was individually hybridized to an Affymetrix Hg-U133 plus 2.0 chip for 16 hours and rotated at 13 rpm at 50C."	"The chips were scanned using an Affymetrix GeneChip Scanner 3000 7G"	"Brain from cognitively intact individual."	"GC-RMA expression values were obtained from CEL files using GeneSpring 7.3.1 software.  PLIER expression values were obtained using Expression Console software using default settings.  PLIER and GC-RMA data were processed using GeneSpring 7.0 software, with default normalizations (Data transformation:set values<0.01 to 0.01; per chip: normalize to 50th percentile; per gene: normalize to median)."	"GPL570"	"Nicole,Claudia,Berchtold"	"nberchto@uci.edu"	"949 824 6071"	"Carl W. Cotman"	"Institute for Memory Impairments and Neurological Disorders"	"UC Irvine"	"1226 Gillespie Neuroscience Facility"	"Irvine"	"CA"	"92697-4540"	"USA"	"ftp://ftp.ncbi.nlm.nih.gov/geo/samples/GSM300nnn/GSM300303/suppl/GSM300303.CEL.gz"	"54675"	"Reanalyzed by: GSE119087"	"Reanalyzed by: GSE133349"	""	"20"	NA	NA	"superior frontal gyrus"	"male"	"83, C"	NA
+"GSM300304"	"EntorhinalCortex_male_33yrs_indiv84"	"GSM300304"	"Public on Oct 09 2008"	"Jun 25 2008"	"Jun 26 2019"	"RNA"	"1"	"brain, entorhinal cortex, male, 33 years"	"Homo sapiens"	"individual: 84, AA"	"brain region: entorhinal cortex"	"gender: male"	"age (yrs): 33"	""	""	"N/A"	"N/A"	"total RNA"	"Total RNA was extracted from 10-200 mg of frozen, unfixed tissue using Trizol reagent (Invitrogen, Carlsbad CA), and purified using quick spin columns (Qiagen, Valencia CA).  RNA quality was assessed using the Agilent BioAnalyzer (Agilent Technologies, Palo Alto, CA) and UV spectrophotometer for the presence of sharp peaks and 28S/18S RNA."	"biotin"	"Total RNA (10 ug) from each sample was used to generate first strand cDNA using a T7-linked-(dT)24 primer, followed by in vitro transcription using the ENZO BioArray High-Yield RNA transcript labeling kit (ENZO Farmingdale, NY) to generate biotin-labeled cRNA target."	"9606"	"Using a robotics system (Biomek FX MicroArray Plex SA System; Beckman Coultier) to optimize consistency in processing and minimize handling variability, each fragmented, biotin-labeled cRNA sample (30 mg) was individually hybridized to an Affymetrix Hg-U133 plus 2.0 chip for 16 hours and rotated at 13 rpm at 50C."	"The chips were scanned using an Affymetrix GeneChip Scanner 3000 7G"	"Brain from cognitively intact individual."	"GC-RMA expression values were obtained from CEL files using GeneSpring 7.3.1 software.  PLIER expression values were obtained using Expression Console software using default settings.  PLIER and GC-RMA data were processed using GeneSpring 7.0 software, with default normalizations (Data transformation:set values<0.01 to 0.01; per chip: normalize to 50th percentile; per gene: normalize to median)."	"GPL570"	"Nicole,Claudia,Berchtold"	"nberchto@uci.edu"	"949 824 6071"	"Carl W. Cotman"	"Institute for Memory Impairments and Neurological Disorders"	"UC Irvine"	"1226 Gillespie Neuroscience Facility"	"Irvine"	"CA"	"92697-4540"	"USA"	"ftp://ftp.ncbi.nlm.nih.gov/geo/samples/GSM300nnn/GSM300304/suppl/GSM300304.CEL.gz"	"54675"	"Reanalyzed by: GSE119087"	"Reanalyzed by: GSE133349"	""	"33"	NA	NA	"entorhinal cortex"	"male"	"84, AA"	NA
+"GSM300305"	"Hippocampus_male_33yrs_indiv84"	"GSM300305"	"Public on Oct 09 2008"	"Jun 25 2008"	"May 03 2022"	"RNA"	"1"	"brain, hippocampus, male, 33 years"	"Homo sapiens"	"individual: 84, AA"	"brain region: hippocampus"	"gender: male"	"age (yrs): 33"	""	""	"N/A"	"N/A"	"total RNA"	"Total RNA was extracted from 10-200 mg of frozen, unfixed tissue using Trizol reagent (Invitrogen, Carlsbad CA), and purified using quick spin columns (Qiagen, Valencia CA).  RNA quality was assessed using the Agilent BioAnalyzer (Agilent Technologies, Palo Alto, CA) and UV spectrophotometer for the presence of sharp peaks and 28S/18S RNA."	"biotin"	"Total RNA (10 ug) from each sample was used to generate first strand cDNA using a T7-linked-(dT)24 primer, followed by in vitro transcription using the ENZO BioArray High-Yield RNA transcript labeling kit (ENZO Farmingdale, NY) to generate biotin-labeled cRNA target."	"9606"	"Using a robotics system (Biomek FX MicroArray Plex SA System; Beckman Coultier) to optimize consistency in processing and minimize handling variability, each fragmented, biotin-labeled cRNA sample (30 mg) was individually hybridized to an Affymetrix Hg-U133 plus 2.0 chip for 16 hours and rotated at 13 rpm at 50C."	"The chips were scanned using an Affymetrix GeneChip Scanner 3000 7G"	"Brain from cognitively intact individual."	"GC-RMA expression values were obtained from CEL files using GeneSpring 7.3.1 software.  PLIER expression values were obtained using Expression Console software using default settings.  PLIER and GC-RMA data were processed using GeneSpring 7.0 software, with default normalizations (Data transformation:set values<0.01 to 0.01; per chip: normalize to 50th percentile; per gene: normalize to median)."	"GPL570"	"Nicole,Claudia,Berchtold"	"nberchto@uci.edu"	"949 824 6071"	"Carl W. Cotman"	"Institute for Memory Impairments and Neurological Disorders"	"UC Irvine"	"1226 Gillespie Neuroscience Facility"	"Irvine"	"CA"	"92697-4540"	"USA"	"ftp://ftp.ncbi.nlm.nih.gov/geo/samples/GSM300nnn/GSM300305/suppl/GSM300305.CEL.gz"	"54675"	"Reanalyzed by: GSE119087"	"Reanalyzed by: GSE133349"	"Reanalyzed by: GSE202101"	"33"	NA	NA	"hippocampus"	"male"	"84, AA"	NA
+"GSM300306"	"PostcentralGyrus_male_33yrs_indiv84"	"GSM300306"	"Public on Oct 09 2008"	"Jun 25 2008"	"Jun 26 2019"	"RNA"	"1"	"brain, postcentral gyrus, male, 33 years"	"Homo sapiens"	"individual: 84, AA"	"brain region: postcentral gyrus"	"gender: male"	"age (yrs): 33"	""	""	"N/A"	"N/A"	"total RNA"	"Total RNA was extracted from 10-200 mg of frozen, unfixed tissue using Trizol reagent (Invitrogen, Carlsbad CA), and purified using quick spin columns (Qiagen, Valencia CA).  RNA quality was assessed using the Agilent BioAnalyzer (Agilent Technologies, Palo Alto, CA) and UV spectrophotometer for the presence of sharp peaks and 28S/18S RNA."	"biotin"	"Total RNA (10 ug) from each sample was used to generate first strand cDNA using a T7-linked-(dT)24 primer, followed by in vitro transcription using the ENZO BioArray High-Yield RNA transcript labeling kit (ENZO Farmingdale, NY) to generate biotin-labeled cRNA target."	"9606"	"Using a robotics system (Biomek FX MicroArray Plex SA System; Beckman Coultier) to optimize consistency in processing and minimize handling variability, each fragmented, biotin-labeled cRNA sample (30 mg) was individually hybridized to an Affymetrix Hg-U133 plus 2.0 chip for 16 hours and rotated at 13 rpm at 50C."	"The chips were scanned using an Affymetrix GeneChip Scanner 3000 7G"	"Brain from cognitively intact individual."	"GC-RMA expression values were obtained from CEL files using GeneSpring 7.3.1 software.  PLIER expression values were obtained using Expression Console software using default settings.  PLIER and GC-RMA data were processed using GeneSpring 7.0 software, with default normalizations (Data transformation:set values<0.01 to 0.01; per chip: normalize to 50th percentile; per gene: normalize to median)."	"GPL570"	"Nicole,Claudia,Berchtold"	"nberchto@uci.edu"	"949 824 6071"	"Carl W. Cotman"	"Institute for Memory Impairments and Neurological Disorders"	"UC Irvine"	"1226 Gillespie Neuroscience Facility"	"Irvine"	"CA"	"92697-4540"	"USA"	"ftp://ftp.ncbi.nlm.nih.gov/geo/samples/GSM300nnn/GSM300306/suppl/GSM300306.CEL.gz"	"54675"	"Reanalyzed by: GSE119087"	"Reanalyzed by: GSE133349"	""	"33"	NA	NA	"postcentral gyrus"	"male"	"84, AA"	NA
+"GSM300307"	"SuperiorFrontalGyrus_male_33yrs_indiv84"	"GSM300307"	"Public on Oct 09 2008"	"Jun 25 2008"	"Jun 26 2019"	"RNA"	"1"	"brain, superior frontal gyrus, male, 33 years"	"Homo sapiens"	"individual: 84, AA"	"brain region: superior frontal gyrus"	"gender: male"	"age (yrs): 33"	""	""	"N/A"	"N/A"	"total RNA"	"Total RNA was extracted from 10-200 mg of frozen, unfixed tissue using Trizol reagent (Invitrogen, Carlsbad CA), and purified using quick spin columns (Qiagen, Valencia CA).  RNA quality was assessed using the Agilent BioAnalyzer (Agilent Technologies, Palo Alto, CA) and UV spectrophotometer for the presence of sharp peaks and 28S/18S RNA."	"biotin"	"Total RNA (10 ug) from each sample was used to generate first strand cDNA using a T7-linked-(dT)24 primer, followed by in vitro transcription using the ENZO BioArray High-Yield RNA transcript labeling kit (ENZO Farmingdale, NY) to generate biotin-labeled cRNA target."	"9606"	"Using a robotics system (Biomek FX MicroArray Plex SA System; Beckman Coultier) to optimize consistency in processing and minimize handling variability, each fragmented, biotin-labeled cRNA sample (30 mg) was individually hybridized to an Affymetrix Hg-U133 plus 2.0 chip for 16 hours and rotated at 13 rpm at 50C."	"The chips were scanned using an Affymetrix GeneChip Scanner 3000 7G"	"Brain from cognitively intact individual."	"GC-RMA expression values were obtained from CEL files using GeneSpring 7.3.1 software.  PLIER expression values were obtained using Expression Console software using default settings.  PLIER and GC-RMA data were processed using GeneSpring 7.0 software, with default normalizations (Data transformation:set values<0.01 to 0.01; per chip: normalize to 50th percentile; per gene: normalize to median)."	"GPL570"	"Nicole,Claudia,Berchtold"	"nberchto@uci.edu"	"949 824 6071"	"Carl W. Cotman"	"Institute for Memory Impairments and Neurological Disorders"	"UC Irvine"	"1226 Gillespie Neuroscience Facility"	"Irvine"	"CA"	"92697-4540"	"USA"	"ftp://ftp.ncbi.nlm.nih.gov/geo/samples/GSM300nnn/GSM300307/suppl/GSM300307.CEL.gz"	"54675"	"Reanalyzed by: GSE119087"	"Reanalyzed by: GSE133349"	""	"33"	NA	NA	"superior frontal gyrus"	"male"	"84, AA"	NA
+"GSM300308"	"EntorhinalCortex_male_22yrs_indiv85"	"GSM300308"	"Public on Oct 09 2008"	"Jun 25 2008"	"Jun 26 2019"	"RNA"	"1"	"brain, entorhinal cortex, male, 22 years"	"Homo sapiens"	"individual: 85, C"	"brain region: entorhinal cortex"	"gender: male"	"age (yrs): 22"	""	""	"N/A"	"N/A"	"total RNA"	"Total RNA was extracted from 10-200 mg of frozen, unfixed tissue using Trizol reagent (Invitrogen, Carlsbad CA), and purified using quick spin columns (Qiagen, Valencia CA).  RNA quality was assessed using the Agilent BioAnalyzer (Agilent Technologies, Palo Alto, CA) and UV spectrophotometer for the presence of sharp peaks and 28S/18S RNA."	"biotin"	"Total RNA (10 ug) from each sample was used to generate first strand cDNA using a T7-linked-(dT)24 primer, followed by in vitro transcription using the ENZO BioArray High-Yield RNA transcript labeling kit (ENZO Farmingdale, NY) to generate biotin-labeled cRNA target."	"9606"	"Using a robotics system (Biomek FX MicroArray Plex SA System; Beckman Coultier) to optimize consistency in processing and minimize handling variability, each fragmented, biotin-labeled cRNA sample (30 mg) was individually hybridized to an Affymetrix Hg-U133 plus 2.0 chip for 16 hours and rotated at 13 rpm at 50C."	"The chips were scanned using an Affymetrix GeneChip Scanner 3000 7G"	"Brain from cognitively intact individual."	"GC-RMA expression values were obtained from CEL files using GeneSpring 7.3.1 software.  PLIER expression values were obtained using Expression Console software using default settings.  PLIER and GC-RMA data were processed using GeneSpring 7.0 software, with default normalizations (Data transformation:set values<0.01 to 0.01; per chip: normalize to 50th percentile; per gene: normalize to median)."	"GPL570"	"Nicole,Claudia,Berchtold"	"nberchto@uci.edu"	"949 824 6071"	"Carl W. Cotman"	"Institute for Memory Impairments and Neurological Disorders"	"UC Irvine"	"1226 Gillespie Neuroscience Facility"	"Irvine"	"CA"	"92697-4540"	"USA"	"ftp://ftp.ncbi.nlm.nih.gov/geo/samples/GSM300nnn/GSM300308/suppl/GSM300308.CEL.gz"	"54675"	"Reanalyzed by: GSE119087"	"Reanalyzed by: GSE133349"	""	"22"	NA	NA	"entorhinal cortex"	"male"	"85, C"	NA
+"GSM300309"	"Hippocampus_male_22yrs_indiv85"	"GSM300309"	"Public on Oct 09 2008"	"Jun 25 2008"	"May 03 2022"	"RNA"	"1"	"brain, hippocampus, male, 22 years"	"Homo sapiens"	"individual: 85, C"	"brain region: hippocampus"	"gender: male"	"age (yrs): 22"	""	""	"N/A"	"N/A"	"total RNA"	"Total RNA was extracted from 10-200 mg of frozen, unfixed tissue using Trizol reagent (Invitrogen, Carlsbad CA), and purified using quick spin columns (Qiagen, Valencia CA).  RNA quality was assessed using the Agilent BioAnalyzer (Agilent Technologies, Palo Alto, CA) and UV spectrophotometer for the presence of sharp peaks and 28S/18S RNA."	"biotin"	"Total RNA (10 ug) from each sample was used to generate first strand cDNA using a T7-linked-(dT)24 primer, followed by in vitro transcription using the ENZO BioArray High-Yield RNA transcript labeling kit (ENZO Farmingdale, NY) to generate biotin-labeled cRNA target."	"9606"	"Using a robotics system (Biomek FX MicroArray Plex SA System; Beckman Coultier) to optimize consistency in processing and minimize handling variability, each fragmented, biotin-labeled cRNA sample (30 mg) was individually hybridized to an Affymetrix Hg-U133 plus 2.0 chip for 16 hours and rotated at 13 rpm at 50C."	"The chips were scanned using an Affymetrix GeneChip Scanner 3000 7G"	"Brain from cognitively intact individual."	"GC-RMA expression values were obtained from CEL files using GeneSpring 7.3.1 software.  PLIER expression values were obtained using Expression Console software using default settings.  PLIER and GC-RMA data were processed using GeneSpring 7.0 software, with default normalizations (Data transformation:set values<0.01 to 0.01; per chip: normalize to 50th percentile; per gene: normalize to median)."	"GPL570"	"Nicole,Claudia,Berchtold"	"nberchto@uci.edu"	"949 824 6071"	"Carl W. Cotman"	"Institute for Memory Impairments and Neurological Disorders"	"UC Irvine"	"1226 Gillespie Neuroscience Facility"	"Irvine"	"CA"	"92697-4540"	"USA"	"ftp://ftp.ncbi.nlm.nih.gov/geo/samples/GSM300nnn/GSM300309/suppl/GSM300309.CEL.gz"	"54675"	"Reanalyzed by: GSE119087"	"Reanalyzed by: GSE133349"	"Reanalyzed by: GSE202101"	"22"	NA	NA	"hippocampus"	"male"	"85, C"	NA
+"GSM300310"	"PostcentralGyrus_male_22yrs_indiv85"	"GSM300310"	"Public on Oct 09 2008"	"Jun 25 2008"	"Jun 26 2019"	"RNA"	"1"	"brain, postcentral gyrus, male, 22 years"	"Homo sapiens"	"individual: 85, C"	"brain region: postcentral gyrus"	"gender: male"	"age (yrs): 22"	""	""	"N/A"	"N/A"	"total RNA"	"Total RNA was extracted from 10-200 mg of frozen, unfixed tissue using Trizol reagent (Invitrogen, Carlsbad CA), and purified using quick spin columns (Qiagen, Valencia CA).  RNA quality was assessed using the Agilent BioAnalyzer (Agilent Technologies, Palo Alto, CA) and UV spectrophotometer for the presence of sharp peaks and 28S/18S RNA."	"biotin"	"Total RNA (10 ug) from each sample was used to generate first strand cDNA using a T7-linked-(dT)24 primer, followed by in vitro transcription using the ENZO BioArray High-Yield RNA transcript labeling kit (ENZO Farmingdale, NY) to generate biotin-labeled cRNA target."	"9606"	"Using a robotics system (Biomek FX MicroArray Plex SA System; Beckman Coultier) to optimize consistency in processing and minimize handling variability, each fragmented, biotin-labeled cRNA sample (30 mg) was individually hybridized to an Affymetrix Hg-U133 plus 2.0 chip for 16 hours and rotated at 13 rpm at 50C."	"The chips were scanned using an Affymetrix GeneChip Scanner 3000 7G"	"Brain from cognitively intact individual."	"GC-RMA expression values were obtained from CEL files using GeneSpring 7.3.1 software.  PLIER expression values were obtained using Expression Console software using default settings.  PLIER and GC-RMA data were processed using GeneSpring 7.0 software, with default normalizations (Data transformation:set values<0.01 to 0.01; per chip: normalize to 50th percentile; per gene: normalize to median)."	"GPL570"	"Nicole,Claudia,Berchtold"	"nberchto@uci.edu"	"949 824 6071"	"Carl W. Cotman"	"Institute for Memory Impairments and Neurological Disorders"	"UC Irvine"	"1226 Gillespie Neuroscience Facility"	"Irvine"	"CA"	"92697-4540"	"USA"	"ftp://ftp.ncbi.nlm.nih.gov/geo/samples/GSM300nnn/GSM300310/suppl/GSM300310.CEL.gz"	"54675"	"Reanalyzed by: GSE119087"	"Reanalyzed by: GSE133349"	""	"22"	NA	NA	"postcentral gyrus"	"male"	"85, C"	NA
+"GSM300311"	"SuperiorFrontalGyrus_male_22yrs_indiv85"	"GSM300311"	"Public on Oct 09 2008"	"Jun 25 2008"	"Jun 26 2019"	"RNA"	"1"	"brain, superior frontal gyrus, male, 22 years"	"Homo sapiens"	"individual: 85, C"	"brain region: superior frontal gyrus"	"gender: male"	"age (yrs): 22"	""	""	"N/A"	"N/A"	"total RNA"	"Total RNA was extracted from 10-200 mg of frozen, unfixed tissue using Trizol reagent (Invitrogen, Carlsbad CA), and purified using quick spin columns (Qiagen, Valencia CA).  RNA quality was assessed using the Agilent BioAnalyzer (Agilent Technologies, Palo Alto, CA) and UV spectrophotometer for the presence of sharp peaks and 28S/18S RNA."	"biotin"	"Total RNA (10 ug) from each sample was used to generate first strand cDNA using a T7-linked-(dT)24 primer, followed by in vitro transcription using the ENZO BioArray High-Yield RNA transcript labeling kit (ENZO Farmingdale, NY) to generate biotin-labeled cRNA target."	"9606"	"Using a robotics system (Biomek FX MicroArray Plex SA System; Beckman Coultier) to optimize consistency in processing and minimize handling variability, each fragmented, biotin-labeled cRNA sample (30 mg) was individually hybridized to an Affymetrix Hg-U133 plus 2.0 chip for 16 hours and rotated at 13 rpm at 50C."	"The chips were scanned using an Affymetrix GeneChip Scanner 3000 7G"	"Brain from cognitively intact individual."	"GC-RMA expression values were obtained from CEL files using GeneSpring 7.3.1 software.  PLIER expression values were obtained using Expression Console software using default settings.  PLIER and GC-RMA data were processed using GeneSpring 7.0 software, with default normalizations (Data transformation:set values<0.01 to 0.01; per chip: normalize to 50th percentile; per gene: normalize to median)."	"GPL570"	"Nicole,Claudia,Berchtold"	"nberchto@uci.edu"	"949 824 6071"	"Carl W. Cotman"	"Institute for Memory Impairments and Neurological Disorders"	"UC Irvine"	"1226 Gillespie Neuroscience Facility"	"Irvine"	"CA"	"92697-4540"	"USA"	"ftp://ftp.ncbi.nlm.nih.gov/geo/samples/GSM300nnn/GSM300311/suppl/GSM300311.CEL.gz"	"54675"	"Reanalyzed by: GSE119087"	"Reanalyzed by: GSE133349"	""	"22"	NA	NA	"superior frontal gyrus"	"male"	"85, C"	NA
+"GSM300312"	"EntorhinalCortex_male_42yrs_indiv86"	"GSM300312"	"Public on Oct 09 2008"	"Jun 25 2008"	"Jun 26 2019"	"RNA"	"1"	"brain, entorhinal cortex, male, 42 years"	"Homo sapiens"	"individual: 86, AA"	"brain region: entorhinal cortex"	"gender: male"	"age (yrs): 42"	""	""	"N/A"	"N/A"	"total RNA"	"Total RNA was extracted from 10-200 mg of frozen, unfixed tissue using Trizol reagent (Invitrogen, Carlsbad CA), and purified using quick spin columns (Qiagen, Valencia CA).  RNA quality was assessed using the Agilent BioAnalyzer (Agilent Technologies, Palo Alto, CA) and UV spectrophotometer for the presence of sharp peaks and 28S/18S RNA."	"biotin"	"Total RNA (10 ug) from each sample was used to generate first strand cDNA using a T7-linked-(dT)24 primer, followed by in vitro transcription using the ENZO BioArray High-Yield RNA transcript labeling kit (ENZO Farmingdale, NY) to generate biotin-labeled cRNA target."	"9606"	"Using a robotics system (Biomek FX MicroArray Plex SA System; Beckman Coultier) to optimize consistency in processing and minimize handling variability, each fragmented, biotin-labeled cRNA sample (30 mg) was individually hybridized to an Affymetrix Hg-U133 plus 2.0 chip for 16 hours and rotated at 13 rpm at 50C."	"The chips were scanned using an Affymetrix GeneChip Scanner 3000 7G"	"Brain from cognitively intact individual."	"GC-RMA expression values were obtained from CEL files using GeneSpring 7.3.1 software.  PLIER expression values were obtained using Expression Console software using default settings.  PLIER and GC-RMA data were processed using GeneSpring 7.0 software, with default normalizations (Data transformation:set values<0.01 to 0.01; per chip: normalize to 50th percentile; per gene: normalize to median)."	"GPL570"	"Nicole,Claudia,Berchtold"	"nberchto@uci.edu"	"949 824 6071"	"Carl W. Cotman"	"Institute for Memory Impairments and Neurological Disorders"	"UC Irvine"	"1226 Gillespie Neuroscience Facility"	"Irvine"	"CA"	"92697-4540"	"USA"	"ftp://ftp.ncbi.nlm.nih.gov/geo/samples/GSM300nnn/GSM300312/suppl/GSM300312.CEL.gz"	"54675"	"Reanalyzed by: GSE119087"	"Reanalyzed by: GSE133349"	""	"42"	NA	NA	"entorhinal cortex"	"male"	"86, AA"	NA
+"GSM300313"	"Hippocampus_male_42yrs_indiv86"	"GSM300313"	"Public on Oct 09 2008"	"Jun 25 2008"	"May 03 2022"	"RNA"	"1"	"brain, hippocampus, male, 42 years"	"Homo sapiens"	"individual: 86, AA"	"brain region: hippocampus"	"gender: male"	"age (yrs): 42"	""	""	"N/A"	"N/A"	"total RNA"	"Total RNA was extracted from 10-200 mg of frozen, unfixed tissue using Trizol reagent (Invitrogen, Carlsbad CA), and purified using quick spin columns (Qiagen, Valencia CA).  RNA quality was assessed using the Agilent BioAnalyzer (Agilent Technologies, Palo Alto, CA) and UV spectrophotometer for the presence of sharp peaks and 28S/18S RNA."	"biotin"	"Total RNA (10 ug) from each sample was used to generate first strand cDNA using a T7-linked-(dT)24 primer, followed by in vitro transcription using the ENZO BioArray High-Yield RNA transcript labeling kit (ENZO Farmingdale, NY) to generate biotin-labeled cRNA target."	"9606"	"Using a robotics system (Biomek FX MicroArray Plex SA System; Beckman Coultier) to optimize consistency in processing and minimize handling variability, each fragmented, biotin-labeled cRNA sample (30 mg) was individually hybridized to an Affymetrix Hg-U133 plus 2.0 chip for 16 hours and rotated at 13 rpm at 50C."	"The chips were scanned using an Affymetrix GeneChip Scanner 3000 7G"	"Brain from cognitively intact individual."	"GC-RMA expression values were obtained from CEL files using GeneSpring 7.3.1 software.  PLIER expression values were obtained using Expression Console software using default settings.  PLIER and GC-RMA data were processed using GeneSpring 7.0 software, with default normalizations (Data transformation:set values<0.01 to 0.01; per chip: normalize to 50th percentile; per gene: normalize to median)."	"GPL570"	"Nicole,Claudia,Berchtold"	"nberchto@uci.edu"	"949 824 6071"	"Carl W. Cotman"	"Institute for Memory Impairments and Neurological Disorders"	"UC Irvine"	"1226 Gillespie Neuroscience Facility"	"Irvine"	"CA"	"92697-4540"	"USA"	"ftp://ftp.ncbi.nlm.nih.gov/geo/samples/GSM300nnn/GSM300313/suppl/GSM300313.CEL.gz"	"54675"	"Reanalyzed by: GSE119087"	"Reanalyzed by: GSE133349"	"Reanalyzed by: GSE202101"	"42"	NA	NA	"hippocampus"	"male"	"86, AA"	NA
+"GSM300314"	"PostcentralGyrus_male_42yrs_indiv86"	"GSM300314"	"Public on Oct 09 2008"	"Jun 25 2008"	"Jun 26 2019"	"RNA"	"1"	"brain, postcentral gyrus, male, 42 years"	"Homo sapiens"	"individual: 86, AA"	"brain region: postcentral gyrus"	"gender: male"	"age (yrs): 42"	""	""	"N/A"	"N/A"	"total RNA"	"Total RNA was extracted from 10-200 mg of frozen, unfixed tissue using Trizol reagent (Invitrogen, Carlsbad CA), and purified using quick spin columns (Qiagen, Valencia CA).  RNA quality was assessed using the Agilent BioAnalyzer (Agilent Technologies, Palo Alto, CA) and UV spectrophotometer for the presence of sharp peaks and 28S/18S RNA."	"biotin"	"Total RNA (10 ug) from each sample was used to generate first strand cDNA using a T7-linked-(dT)24 primer, followed by in vitro transcription using the ENZO BioArray High-Yield RNA transcript labeling kit (ENZO Farmingdale, NY) to generate biotin-labeled cRNA target."	"9606"	"Using a robotics system (Biomek FX MicroArray Plex SA System; Beckman Coultier) to optimize consistency in processing and minimize handling variability, each fragmented, biotin-labeled cRNA sample (30 mg) was individually hybridized to an Affymetrix Hg-U133 plus 2.0 chip for 16 hours and rotated at 13 rpm at 50C."	"The chips were scanned using an Affymetrix GeneChip Scanner 3000 7G"	"Brain from cognitively intact individual."	"GC-RMA expression values were obtained from CEL files using GeneSpring 7.3.1 software.  PLIER expression values were obtained using Expression Console software using default settings.  PLIER and GC-RMA data were processed using GeneSpring 7.0 software, with default normalizations (Data transformation:set values<0.01 to 0.01; per chip: normalize to 50th percentile; per gene: normalize to median)."	"GPL570"	"Nicole,Claudia,Berchtold"	"nberchto@uci.edu"	"949 824 6071"	"Carl W. Cotman"	"Institute for Memory Impairments and Neurological Disorders"	"UC Irvine"	"1226 Gillespie Neuroscience Facility"	"Irvine"	"CA"	"92697-4540"	"USA"	"ftp://ftp.ncbi.nlm.nih.gov/geo/samples/GSM300nnn/GSM300314/suppl/GSM300314.CEL.gz"	"54675"	"Reanalyzed by: GSE119087"	"Reanalyzed by: GSE133349"	""	"42"	NA	NA	"postcentral gyrus"	"male"	"86, AA"	NA
+"GSM300315"	"SuperiorFrontalGyrus_male_42yrs_indiv86"	"GSM300315"	"Public on Oct 09 2008"	"Jun 25 2008"	"Jun 26 2019"	"RNA"	"1"	"brain, superior frontal gyrus, male, 42 years"	"Homo sapiens"	"individual: 86, AA"	"brain region: superior frontal gyrus"	"gender: male"	"age (yrs): 42"	""	""	"N/A"	"N/A"	"total RNA"	"Total RNA was extracted from 10-200 mg of frozen, unfixed tissue using Trizol reagent (Invitrogen, Carlsbad CA), and purified using quick spin columns (Qiagen, Valencia CA).  RNA quality was assessed using the Agilent BioAnalyzer (Agilent Technologies, Palo Alto, CA) and UV spectrophotometer for the presence of sharp peaks and 28S/18S RNA."	"biotin"	"Total RNA (10 ug) from each sample was used to generate first strand cDNA using a T7-linked-(dT)24 primer, followed by in vitro transcription using the ENZO BioArray High-Yield RNA transcript labeling kit (ENZO Farmingdale, NY) to generate biotin-labeled cRNA target."	"9606"	"Using a robotics system (Biomek FX MicroArray Plex SA System; Beckman Coultier) to optimize consistency in processing and minimize handling variability, each fragmented, biotin-labeled cRNA sample (30 mg) was individually hybridized to an Affymetrix Hg-U133 plus 2.0 chip for 16 hours and rotated at 13 rpm at 50C."	"The chips were scanned using an Affymetrix GeneChip Scanner 3000 7G"	"Brain from cognitively intact individual."	"GC-RMA expression values were obtained from CEL files using GeneSpring 7.3.1 software.  PLIER expression values were obtained using Expression Console software using default settings.  PLIER and GC-RMA data were processed using GeneSpring 7.0 software, with default normalizations (Data transformation:set values<0.01 to 0.01; per chip: normalize to 50th percentile; per gene: normalize to median)."	"GPL570"	"Nicole,Claudia,Berchtold"	"nberchto@uci.edu"	"949 824 6071"	"Carl W. Cotman"	"Institute for Memory Impairments and Neurological Disorders"	"UC Irvine"	"1226 Gillespie Neuroscience Facility"	"Irvine"	"CA"	"92697-4540"	"USA"	"ftp://ftp.ncbi.nlm.nih.gov/geo/samples/GSM300nnn/GSM300315/suppl/GSM300315.CEL.gz"	"54675"	"Reanalyzed by: GSE119087"	"Reanalyzed by: GSE133349"	""	"42"	NA	NA	"superior frontal gyrus"	"male"	"86, AA"	NA
+"GSM300316"	"EntorhinalCortex_male_45yrs_indiv87"	"GSM300316"	"Public on Oct 09 2008"	"Jun 25 2008"	"Jun 26 2019"	"RNA"	"1"	"brain, entorhinal cortex, male, 45 years"	"Homo sapiens"	"individual: 87, C"	"brain region: entorhinal cortex"	"gender: male"	"age (yrs): 45"	""	""	"N/A"	"N/A"	"total RNA"	"Total RNA was extracted from 10-200 mg of frozen, unfixed tissue using Trizol reagent (Invitrogen, Carlsbad CA), and purified using quick spin columns (Qiagen, Valencia CA).  RNA quality was assessed using the Agilent BioAnalyzer (Agilent Technologies, Palo Alto, CA) and UV spectrophotometer for the presence of sharp peaks and 28S/18S RNA."	"biotin"	"Total RNA (10 ug) from each sample was used to generate first strand cDNA using a T7-linked-(dT)24 primer, followed by in vitro transcription using the ENZO BioArray High-Yield RNA transcript labeling kit (ENZO Farmingdale, NY) to generate biotin-labeled cRNA target."	"9606"	"Using a robotics system (Biomek FX MicroArray Plex SA System; Beckman Coultier) to optimize consistency in processing and minimize handling variability, each fragmented, biotin-labeled cRNA sample (30 mg) was individually hybridized to an Affymetrix Hg-U133 plus 2.0 chip for 16 hours and rotated at 13 rpm at 50C."	"The chips were scanned using an Affymetrix GeneChip Scanner 3000 7G"	"Brain from cognitively intact individual."	"GC-RMA expression values were obtained from CEL files using GeneSpring 7.3.1 software.  PLIER expression values were obtained using Expression Console software using default settings.  PLIER and GC-RMA data were processed using GeneSpring 7.0 software, with default normalizations (Data transformation:set values<0.01 to 0.01; per chip: normalize to 50th percentile; per gene: normalize to median)."	"GPL570"	"Nicole,Claudia,Berchtold"	"nberchto@uci.edu"	"949 824 6071"	"Carl W. Cotman"	"Institute for Memory Impairments and Neurological Disorders"	"UC Irvine"	"1226 Gillespie Neuroscience Facility"	"Irvine"	"CA"	"92697-4540"	"USA"	"ftp://ftp.ncbi.nlm.nih.gov/geo/samples/GSM300nnn/GSM300316/suppl/GSM300316.CEL.gz"	"54675"	"Reanalyzed by: GSE119087"	"Reanalyzed by: GSE133349"	""	"45"	NA	NA	"entorhinal cortex"	"male"	"87, C"	NA
+"GSM300317"	"Hippocampus_male_45yrs_indiv87"	"GSM300317"	"Public on Oct 09 2008"	"Jun 25 2008"	"Jun 26 2019"	"RNA"	"1"	"brain, hippocampus, male, 45 years"	"Homo sapiens"	"individual: 87, C"	"brain region: hippocampus"	"gender: male"	"age (yrs): 45"	""	""	"N/A"	"N/A"	"total RNA"	"Total RNA was extracted from 10-200 mg of frozen, unfixed tissue using Trizol reagent (Invitrogen, Carlsbad CA), and purified using quick spin columns (Qiagen, Valencia CA).  RNA quality was assessed using the Agilent BioAnalyzer (Agilent Technologies, Palo Alto, CA) and UV spectrophotometer for the presence of sharp peaks and 28S/18S RNA."	"biotin"	"Total RNA (10 ug) from each sample was used to generate first strand cDNA using a T7-linked-(dT)24 primer, followed by in vitro transcription using the ENZO BioArray High-Yield RNA transcript labeling kit (ENZO Farmingdale, NY) to generate biotin-labeled cRNA target."	"9606"	"Using a robotics system (Biomek FX MicroArray Plex SA System; Beckman Coultier) to optimize consistency in processing and minimize handling variability, each fragmented, biotin-labeled cRNA sample (30 mg) was individually hybridized to an Affymetrix Hg-U133 plus 2.0 chip for 16 hours and rotated at 13 rpm at 50C."	"The chips were scanned using an Affymetrix GeneChip Scanner 3000 7G"	"Brain from cognitively intact individual."	"GC-RMA expression values were obtained from CEL files using GeneSpring 7.3.1 software.  PLIER expression values were obtained using Expression Console software using default settings.  PLIER and GC-RMA data were processed using GeneSpring 7.0 software, with default normalizations (Data transformation:set values<0.01 to 0.01; per chip: normalize to 50th percentile; per gene: normalize to median)."	"GPL570"	"Nicole,Claudia,Berchtold"	"nberchto@uci.edu"	"949 824 6071"	"Carl W. Cotman"	"Institute for Memory Impairments and Neurological Disorders"	"UC Irvine"	"1226 Gillespie Neuroscience Facility"	"Irvine"	"CA"	"92697-4540"	"USA"	"ftp://ftp.ncbi.nlm.nih.gov/geo/samples/GSM300nnn/GSM300317/suppl/GSM300317.CEL.gz"	"54675"	"Reanalyzed by: GSE119087"	"Reanalyzed by: GSE133349"	""	"45"	NA	NA	"hippocampus"	"male"	"87, C"	NA
+"GSM300318"	"PostcentralGyrus_male_45yrs_indiv87"	"GSM300318"	"Public on Oct 09 2008"	"Jun 25 2008"	"Jun 26 2019"	"RNA"	"1"	"brain, postcentral gyrus, male, 45 years"	"Homo sapiens"	"individual: 87, C"	"brain region: postcentral gyrus"	"gender: male"	"age (yrs): 45"	""	""	"N/A"	"N/A"	"total RNA"	"Total RNA was extracted from 10-200 mg of frozen, unfixed tissue using Trizol reagent (Invitrogen, Carlsbad CA), and purified using quick spin columns (Qiagen, Valencia CA).  RNA quality was assessed using the Agilent BioAnalyzer (Agilent Technologies, Palo Alto, CA) and UV spectrophotometer for the presence of sharp peaks and 28S/18S RNA."	"biotin"	"Total RNA (10 ug) from each sample was used to generate first strand cDNA using a T7-linked-(dT)24 primer, followed by in vitro transcription using the ENZO BioArray High-Yield RNA transcript labeling kit (ENZO Farmingdale, NY) to generate biotin-labeled cRNA target."	"9606"	"Using a robotics system (Biomek FX MicroArray Plex SA System; Beckman Coultier) to optimize consistency in processing and minimize handling variability, each fragmented, biotin-labeled cRNA sample (30 mg) was individually hybridized to an Affymetrix Hg-U133 plus 2.0 chip for 16 hours and rotated at 13 rpm at 50C."	"The chips were scanned using an Affymetrix GeneChip Scanner 3000 7G"	"Brain from cognitively intact individual."	"GC-RMA expression values were obtained from CEL files using GeneSpring 7.3.1 software.  PLIER expression values were obtained using Expression Console software using default settings.  PLIER and GC-RMA data were processed using GeneSpring 7.0 software, with default normalizations (Data transformation:set values<0.01 to 0.01; per chip: normalize to 50th percentile; per gene: normalize to median)."	"GPL570"	"Nicole,Claudia,Berchtold"	"nberchto@uci.edu"	"949 824 6071"	"Carl W. Cotman"	"Institute for Memory Impairments and Neurological Disorders"	"UC Irvine"	"1226 Gillespie Neuroscience Facility"	"Irvine"	"CA"	"92697-4540"	"USA"	"ftp://ftp.ncbi.nlm.nih.gov/geo/samples/GSM300nnn/GSM300318/suppl/GSM300318.CEL.gz"	"54675"	"Reanalyzed by: GSE119087"	"Reanalyzed by: GSE133349"	""	"45"	NA	NA	"postcentral gyrus"	"male"	"87, C"	NA
+"GSM300319"	"SuperiorFrontalGyrus_male_45yrs_indiv87"	"GSM300319"	"Public on Oct 09 2008"	"Jun 25 2008"	"Jun 26 2019"	"RNA"	"1"	"brain, superior frontal gyrus, male, 45 years"	"Homo sapiens"	"individual: 87, C"	"brain region: superior frontal gyrus"	"gender: male"	"age (yrs): 45"	""	""	"N/A"	"N/A"	"total RNA"	"Total RNA was extracted from 10-200 mg of frozen, unfixed tissue using Trizol reagent (Invitrogen, Carlsbad CA), and purified using quick spin columns (Qiagen, Valencia CA).  RNA quality was assessed using the Agilent BioAnalyzer (Agilent Technologies, Palo Alto, CA) and UV spectrophotometer for the presence of sharp peaks and 28S/18S RNA."	"biotin"	"Total RNA (10 ug) from each sample was used to generate first strand cDNA using a T7-linked-(dT)24 primer, followed by in vitro transcription using the ENZO BioArray High-Yield RNA transcript labeling kit (ENZO Farmingdale, NY) to generate biotin-labeled cRNA target."	"9606"	"Using a robotics system (Biomek FX MicroArray Plex SA System; Beckman Coultier) to optimize consistency in processing and minimize handling variability, each fragmented, biotin-labeled cRNA sample (30 mg) was individually hybridized to an Affymetrix Hg-U133 plus 2.0 chip for 16 hours and rotated at 13 rpm at 50C."	"The chips were scanned using an Affymetrix GeneChip Scanner 3000 7G"	"Brain from cognitively intact individual."	"GC-RMA expression values were obtained from CEL files using GeneSpring 7.3.1 software.  PLIER expression values were obtained using Expression Console software using default settings.  PLIER and GC-RMA data were processed using GeneSpring 7.0 software, with default normalizations (Data transformation:set values<0.01 to 0.01; per chip: normalize to 50th percentile; per gene: normalize to median)."	"GPL570"	"Nicole,Claudia,Berchtold"	"nberchto@uci.edu"	"949 824 6071"	"Carl W. Cotman"	"Institute for Memory Impairments and Neurological Disorders"	"UC Irvine"	"1226 Gillespie Neuroscience Facility"	"Irvine"	"CA"	"92697-4540"	"USA"	"ftp://ftp.ncbi.nlm.nih.gov/geo/samples/GSM300nnn/GSM300319/suppl/GSM300319.CEL.gz"	"54675"	"Reanalyzed by: GSE119087"	"Reanalyzed by: GSE133349"	""	"45"	NA	NA	"superior frontal gyrus"	"male"	"87, C"	NA
+"GSM300320"	"EntorhinalCortex_female_47yrs_indiv88"	"GSM300320"	"Public on Oct 09 2008"	"Jun 25 2008"	"Jun 26 2019"	"RNA"	"1"	"brain, entorhinal cortex, female, 47 years"	"Homo sapiens"	"individual: 88, AA"	"brain region: entorhinal cortex"	"gender: female"	"age (yrs): 47"	""	""	"N/A"	"N/A"	"total RNA"	"Total RNA was extracted from 10-200 mg of frozen, unfixed tissue using Trizol reagent (Invitrogen, Carlsbad CA), and purified using quick spin columns (Qiagen, Valencia CA).  RNA quality was assessed using the Agilent BioAnalyzer (Agilent Technologies, Palo Alto, CA) and UV spectrophotometer for the presence of sharp peaks and 28S/18S RNA."	"biotin"	"Total RNA (10 ug) from each sample was used to generate first strand cDNA using a T7-linked-(dT)24 primer, followed by in vitro transcription using the ENZO BioArray High-Yield RNA transcript labeling kit (ENZO Farmingdale, NY) to generate biotin-labeled cRNA target."	"9606"	"Using a robotics system (Biomek FX MicroArray Plex SA System; Beckman Coultier) to optimize consistency in processing and minimize handling variability, each fragmented, biotin-labeled cRNA sample (30 mg) was individually hybridized to an Affymetrix Hg-U133 plus 2.0 chip for 16 hours and rotated at 13 rpm at 50C."	"The chips were scanned using an Affymetrix GeneChip Scanner 3000 7G"	"Brain from cognitively intact individual."	"GC-RMA expression values were obtained from CEL files using GeneSpring 7.3.1 software.  PLIER expression values were obtained using Expression Console software using default settings.  PLIER and GC-RMA data were processed using GeneSpring 7.0 software, with default normalizations (Data transformation:set values<0.01 to 0.01; per chip: normalize to 50th percentile; per gene: normalize to median)."	"GPL570"	"Nicole,Claudia,Berchtold"	"nberchto@uci.edu"	"949 824 6071"	"Carl W. Cotman"	"Institute for Memory Impairments and Neurological Disorders"	"UC Irvine"	"1226 Gillespie Neuroscience Facility"	"Irvine"	"CA"	"92697-4540"	"USA"	"ftp://ftp.ncbi.nlm.nih.gov/geo/samples/GSM300nnn/GSM300320/suppl/GSM300320.CEL.gz"	"54675"	"Reanalyzed by: GSE119087"	"Reanalyzed by: GSE133349"	""	"47"	NA	NA	"entorhinal cortex"	"female"	"88, AA"	NA
+"GSM300321"	"Hippocampus_female_47yrs_indiv88"	"GSM300321"	"Public on Oct 09 2008"	"Jun 25 2008"	"Jun 26 2019"	"RNA"	"1"	"brain, hippocampus, female, 47 years"	"Homo sapiens"	"individual: 88, AA"	"brain region: hippocampus"	"gender: female"	"age (yrs): 47"	""	""	"N/A"	"N/A"	"total RNA"	"Total RNA was extracted from 10-200 mg of frozen, unfixed tissue using Trizol reagent (Invitrogen, Carlsbad CA), and purified using quick spin columns (Qiagen, Valencia CA).  RNA quality was assessed using the Agilent BioAnalyzer (Agilent Technologies, Palo Alto, CA) and UV spectrophotometer for the presence of sharp peaks and 28S/18S RNA."	"biotin"	"Total RNA (10 ug) from each sample was used to generate first strand cDNA using a T7-linked-(dT)24 primer, followed by in vitro transcription using the ENZO BioArray High-Yield RNA transcript labeling kit (ENZO Farmingdale, NY) to generate biotin-labeled cRNA target."	"9606"	"Using a robotics system (Biomek FX MicroArray Plex SA System; Beckman Coultier) to optimize consistency in processing and minimize handling variability, each fragmented, biotin-labeled cRNA sample (30 mg) was individually hybridized to an Affymetrix Hg-U133 plus 2.0 chip for 16 hours and rotated at 13 rpm at 50C."	"The chips were scanned using an Affymetrix GeneChip Scanner 3000 7G"	"Brain from cognitively intact individual."	"GC-RMA expression values were obtained from CEL files using GeneSpring 7.3.1 software.  PLIER expression values were obtained using Expression Console software using default settings.  PLIER and GC-RMA data were processed using GeneSpring 7.0 software, with default normalizations (Data transformation:set values<0.01 to 0.01; per chip: normalize to 50th percentile; per gene: normalize to median)."	"GPL570"	"Nicole,Claudia,Berchtold"	"nberchto@uci.edu"	"949 824 6071"	"Carl W. Cotman"	"Institute for Memory Impairments and Neurological Disorders"	"UC Irvine"	"1226 Gillespie Neuroscience Facility"	"Irvine"	"CA"	"92697-4540"	"USA"	"ftp://ftp.ncbi.nlm.nih.gov/geo/samples/GSM300nnn/GSM300321/suppl/GSM300321.CEL.gz"	"54675"	"Reanalyzed by: GSE119087"	"Reanalyzed by: GSE133349"	""	"47"	NA	NA	"hippocampus"	"female"	"88, AA"	NA
+"GSM300322"	"PostcentralGyrus_female_47yrs_indiv88"	"GSM300322"	"Public on Oct 09 2008"	"Jun 25 2008"	"Jun 26 2019"	"RNA"	"1"	"brain, postcentral gyrus, female, 47 years"	"Homo sapiens"	"individual: 88, AA"	"brain region: postcentral gyrus"	"gender: female"	"age (yrs): 47"	""	""	"N/A"	"N/A"	"total RNA"	"Total RNA was extracted from 10-200 mg of frozen, unfixed tissue using Trizol reagent (Invitrogen, Carlsbad CA), and purified using quick spin columns (Qiagen, Valencia CA).  RNA quality was assessed using the Agilent BioAnalyzer (Agilent Technologies, Palo Alto, CA) and UV spectrophotometer for the presence of sharp peaks and 28S/18S RNA."	"biotin"	"Total RNA (10 ug) from each sample was used to generate first strand cDNA using a T7-linked-(dT)24 primer, followed by in vitro transcription using the ENZO BioArray High-Yield RNA transcript labeling kit (ENZO Farmingdale, NY) to generate biotin-labeled cRNA target."	"9606"	"Using a robotics system (Biomek FX MicroArray Plex SA System; Beckman Coultier) to optimize consistency in processing and minimize handling variability, each fragmented, biotin-labeled cRNA sample (30 mg) was individually hybridized to an Affymetrix Hg-U133 plus 2.0 chip for 16 hours and rotated at 13 rpm at 50C."	"The chips were scanned using an Affymetrix GeneChip Scanner 3000 7G"	"Brain from cognitively intact individual."	"GC-RMA expression values were obtained from CEL files using GeneSpring 7.3.1 software.  PLIER expression values were obtained using Expression Console software using default settings.  PLIER and GC-RMA data were processed using GeneSpring 7.0 software, with default normalizations (Data transformation:set values<0.01 to 0.01; per chip: normalize to 50th percentile; per gene: normalize to median)."	"GPL570"	"Nicole,Claudia,Berchtold"	"nberchto@uci.edu"	"949 824 6071"	"Carl W. Cotman"	"Institute for Memory Impairments and Neurological Disorders"	"UC Irvine"	"1226 Gillespie Neuroscience Facility"	"Irvine"	"CA"	"92697-4540"	"USA"	"ftp://ftp.ncbi.nlm.nih.gov/geo/samples/GSM300nnn/GSM300322/suppl/GSM300322.CEL.gz"	"54675"	"Reanalyzed by: GSE119087"	"Reanalyzed by: GSE133349"	""	"47"	NA	NA	"postcentral gyrus"	"female"	"88, AA"	NA
+"GSM300323"	"SuperiorFrontalGyrus_female_47yrs_indiv88"	"GSM300323"	"Public on Oct 09 2008"	"Jun 25 2008"	"Jun 26 2019"	"RNA"	"1"	"brain, superior frontal gyrus, female, 47 years"	"Homo sapiens"	"individual: 88, AA"	"brain region: superior frontal gyrus"	"gender: female"	"age (yrs): 47"	""	""	"N/A"	"N/A"	"total RNA"	"Total RNA was extracted from 10-200 mg of frozen, unfixed tissue using Trizol reagent (Invitrogen, Carlsbad CA), and purified using quick spin columns (Qiagen, Valencia CA).  RNA quality was assessed using the Agilent BioAnalyzer (Agilent Technologies, Palo Alto, CA) and UV spectrophotometer for the presence of sharp peaks and 28S/18S RNA."	"biotin"	"Total RNA (10 ug) from each sample was used to generate first strand cDNA using a T7-linked-(dT)24 primer, followed by in vitro transcription using the ENZO BioArray High-Yield RNA transcript labeling kit (ENZO Farmingdale, NY) to generate biotin-labeled cRNA target."	"9606"	"Using a robotics system (Biomek FX MicroArray Plex SA System; Beckman Coultier) to optimize consistency in processing and minimize handling variability, each fragmented, biotin-labeled cRNA sample (30 mg) was individually hybridized to an Affymetrix Hg-U133 plus 2.0 chip for 16 hours and rotated at 13 rpm at 50C."	"The chips were scanned using an Affymetrix GeneChip Scanner 3000 7G"	"Brain from cognitively intact individual."	"GC-RMA expression values were obtained from CEL files using GeneSpring 7.3.1 software.  PLIER expression values were obtained using Expression Console software using default settings.  PLIER and GC-RMA data were processed using GeneSpring 7.0 software, with default normalizations (Data transformation:set values<0.01 to 0.01; per chip: normalize to 50th percentile; per gene: normalize to median)."	"GPL570"	"Nicole,Claudia,Berchtold"	"nberchto@uci.edu"	"949 824 6071"	"Carl W. Cotman"	"Institute for Memory Impairments and Neurological Disorders"	"UC Irvine"	"1226 Gillespie Neuroscience Facility"	"Irvine"	"CA"	"92697-4540"	"USA"	"ftp://ftp.ncbi.nlm.nih.gov/geo/samples/GSM300nnn/GSM300323/suppl/GSM300323.CEL.gz"	"54675"	"Reanalyzed by: GSE119087"	"Reanalyzed by: GSE133349"	""	"47"	NA	NA	"superior frontal gyrus"	"female"	"88, AA"	NA
+"GSM300324"	"EntorhinalCortex_male_69yrs_indiv93"	"GSM300324"	"Public on Oct 09 2008"	"Jun 25 2008"	"Jun 26 2019"	"RNA"	"1"	"brain, entorhinal cortex, male, 69 years"	"Homo sapiens"	"individual: 93, C"	"brain region: entorhinal cortex"	"gender: male"	"age (yrs): 69"	""	""	"N/A"	"N/A"	"total RNA"	"Total RNA was extracted from 10-200 mg of frozen, unfixed tissue using Trizol reagent (Invitrogen, Carlsbad CA), and purified using quick spin columns (Qiagen, Valencia CA).  RNA quality was assessed using the Agilent BioAnalyzer (Agilent Technologies, Palo Alto, CA) and UV spectrophotometer for the presence of sharp peaks and 28S/18S RNA."	"biotin"	"Total RNA (10 ug) from each sample was used to generate first strand cDNA using a T7-linked-(dT)24 primer, followed by in vitro transcription using the ENZO BioArray High-Yield RNA transcript labeling kit (ENZO Farmingdale, NY) to generate biotin-labeled cRNA target."	"9606"	"Using a robotics system (Biomek FX MicroArray Plex SA System; Beckman Coultier) to optimize consistency in processing and minimize handling variability, each fragmented, biotin-labeled cRNA sample (30 mg) was individually hybridized to an Affymetrix Hg-U133 plus 2.0 chip for 16 hours and rotated at 13 rpm at 50C."	"The chips were scanned using an Affymetrix GeneChip Scanner 3000 7G"	"Brain from cognitively intact individual."	"GC-RMA expression values were obtained from CEL files using GeneSpring 7.3.1 software.  PLIER expression values were obtained using Expression Console software using default settings.  PLIER and GC-RMA data were processed using GeneSpring 7.0 software, with default normalizations (Data transformation:set values<0.01 to 0.01; per chip: normalize to 50th percentile; per gene: normalize to median)."	"GPL570"	"Nicole,Claudia,Berchtold"	"nberchto@uci.edu"	"949 824 6071"	"Carl W. Cotman"	"Institute for Memory Impairments and Neurological Disorders"	"UC Irvine"	"1226 Gillespie Neuroscience Facility"	"Irvine"	"CA"	"92697-4540"	"USA"	"ftp://ftp.ncbi.nlm.nih.gov/geo/samples/GSM300nnn/GSM300324/suppl/GSM300324.CEL.gz"	"54675"	"Reanalyzed by: GSE119087"	"Reanalyzed by: GSE133349"	""	"69"	NA	NA	"entorhinal cortex"	"male"	"93, C"	NA
+"GSM300325"	"Hippocampus_male_69yrs_indiv93"	"GSM300325"	"Public on Oct 09 2008"	"Jun 25 2008"	"Jun 26 2019"	"RNA"	"1"	"brain, hippocampus, male, 69 years"	"Homo sapiens"	"individual: 93, C"	"brain region: hippocampus"	"gender: male"	"age (yrs): 69"	""	""	"N/A"	"N/A"	"total RNA"	"Total RNA was extracted from 10-200 mg of frozen, unfixed tissue using Trizol reagent (Invitrogen, Carlsbad CA), and purified using quick spin columns (Qiagen, Valencia CA).  RNA quality was assessed using the Agilent BioAnalyzer (Agilent Technologies, Palo Alto, CA) and UV spectrophotometer for the presence of sharp peaks and 28S/18S RNA."	"biotin"	"Total RNA (10 ug) from each sample was used to generate first strand cDNA using a T7-linked-(dT)24 primer, followed by in vitro transcription using the ENZO BioArray High-Yield RNA transcript labeling kit (ENZO Farmingdale, NY) to generate biotin-labeled cRNA target."	"9606"	"Using a robotics system (Biomek FX MicroArray Plex SA System; Beckman Coultier) to optimize consistency in processing and minimize handling variability, each fragmented, biotin-labeled cRNA sample (30 mg) was individually hybridized to an Affymetrix Hg-U133 plus 2.0 chip for 16 hours and rotated at 13 rpm at 50C."	"The chips were scanned using an Affymetrix GeneChip Scanner 3000 7G"	"Brain from cognitively intact individual."	"GC-RMA expression values were obtained from CEL files using GeneSpring 7.3.1 software.  PLIER expression values were obtained using Expression Console software using default settings.  PLIER and GC-RMA data were processed using GeneSpring 7.0 software, with default normalizations (Data transformation:set values<0.01 to 0.01; per chip: normalize to 50th percentile; per gene: normalize to median)."	"GPL570"	"Nicole,Claudia,Berchtold"	"nberchto@uci.edu"	"949 824 6071"	"Carl W. Cotman"	"Institute for Memory Impairments and Neurological Disorders"	"UC Irvine"	"1226 Gillespie Neuroscience Facility"	"Irvine"	"CA"	"92697-4540"	"USA"	"ftp://ftp.ncbi.nlm.nih.gov/geo/samples/GSM300nnn/GSM300325/suppl/GSM300325.CEL.gz"	"54675"	"Reanalyzed by: GSE119087"	"Reanalyzed by: GSE133349"	""	"69"	NA	NA	"hippocampus"	"male"	"93, C"	NA
+"GSM300326"	"PostcentralGyrus_male_69yrs_indiv93"	"GSM300326"	"Public on Oct 09 2008"	"Jun 25 2008"	"Jun 26 2019"	"RNA"	"1"	"brain, postcentral gyrus, male, 69 years"	"Homo sapiens"	"individual: 93, C"	"brain region: postcentral gyrus"	"gender: male"	"age (yrs): 69"	""	""	"N/A"	"N/A"	"total RNA"	"Total RNA was extracted from 10-200 mg of frozen, unfixed tissue using Trizol reagent (Invitrogen, Carlsbad CA), and purified using quick spin columns (Qiagen, Valencia CA).  RNA quality was assessed using the Agilent BioAnalyzer (Agilent Technologies, Palo Alto, CA) and UV spectrophotometer for the presence of sharp peaks and 28S/18S RNA."	"biotin"	"Total RNA (10 ug) from each sample was used to generate first strand cDNA using a T7-linked-(dT)24 primer, followed by in vitro transcription using the ENZO BioArray High-Yield RNA transcript labeling kit (ENZO Farmingdale, NY) to generate biotin-labeled cRNA target."	"9606"	"Using a robotics system (Biomek FX MicroArray Plex SA System; Beckman Coultier) to optimize consistency in processing and minimize handling variability, each fragmented, biotin-labeled cRNA sample (30 mg) was individually hybridized to an Affymetrix Hg-U133 plus 2.0 chip for 16 hours and rotated at 13 rpm at 50C."	"The chips were scanned using an Affymetrix GeneChip Scanner 3000 7G"	"Brain from cognitively intact individual."	"GC-RMA expression values were obtained from CEL files using GeneSpring 7.3.1 software.  PLIER expression values were obtained using Expression Console software using default settings.  PLIER and GC-RMA data were processed using GeneSpring 7.0 software, with default normalizations (Data transformation:set values<0.01 to 0.01; per chip: normalize to 50th percentile; per gene: normalize to median)."	"GPL570"	"Nicole,Claudia,Berchtold"	"nberchto@uci.edu"	"949 824 6071"	"Carl W. Cotman"	"Institute for Memory Impairments and Neurological Disorders"	"UC Irvine"	"1226 Gillespie Neuroscience Facility"	"Irvine"	"CA"	"92697-4540"	"USA"	"ftp://ftp.ncbi.nlm.nih.gov/geo/samples/GSM300nnn/GSM300326/suppl/GSM300326.CEL.gz"	"54675"	"Reanalyzed by: GSE119087"	"Reanalyzed by: GSE133349"	""	"69"	NA	NA	"postcentral gyrus"	"male"	"93, C"	NA
+"GSM300327"	"SuperiorFrontalGyrus_male_69yrs_indiv93"	"GSM300327"	"Public on Oct 09 2008"	"Jun 25 2008"	"Jun 26 2019"	"RNA"	"1"	"brain, superior frontal gyrus, male, 69 years"	"Homo sapiens"	"individual: 93, C"	"brain region: superior frontal gyrus"	"gender: male"	"age (yrs): 69"	""	""	"N/A"	"N/A"	"total RNA"	"Total RNA was extracted from 10-200 mg of frozen, unfixed tissue using Trizol reagent (Invitrogen, Carlsbad CA), and purified using quick spin columns (Qiagen, Valencia CA).  RNA quality was assessed using the Agilent BioAnalyzer (Agilent Technologies, Palo Alto, CA) and UV spectrophotometer for the presence of sharp peaks and 28S/18S RNA."	"biotin"	"Total RNA (10 ug) from each sample was used to generate first strand cDNA using a T7-linked-(dT)24 primer, followed by in vitro transcription using the ENZO BioArray High-Yield RNA transcript labeling kit (ENZO Farmingdale, NY) to generate biotin-labeled cRNA target."	"9606"	"Using a robotics system (Biomek FX MicroArray Plex SA System; Beckman Coultier) to optimize consistency in processing and minimize handling variability, each fragmented, biotin-labeled cRNA sample (30 mg) was individually hybridized to an Affymetrix Hg-U133 plus 2.0 chip for 16 hours and rotated at 13 rpm at 50C."	"The chips were scanned using an Affymetrix GeneChip Scanner 3000 7G"	"Brain from cognitively intact individual."	"GC-RMA expression values were obtained from CEL files using GeneSpring 7.3.1 software.  PLIER expression values were obtained using Expression Console software using default settings.  PLIER and GC-RMA data were processed using GeneSpring 7.0 software, with default normalizations (Data transformation:set values<0.01 to 0.01; per chip: normalize to 50th percentile; per gene: normalize to median)."	"GPL570"	"Nicole,Claudia,Berchtold"	"nberchto@uci.edu"	"949 824 6071"	"Carl W. Cotman"	"Institute for Memory Impairments and Neurological Disorders"	"UC Irvine"	"1226 Gillespie Neuroscience Facility"	"Irvine"	"CA"	"92697-4540"	"USA"	"ftp://ftp.ncbi.nlm.nih.gov/geo/samples/GSM300nnn/GSM300327/suppl/GSM300327.CEL.gz"	"54675"	"Reanalyzed by: GSE119087"	"Reanalyzed by: GSE133349"	""	"69"	NA	NA	"superior frontal gyrus"	"male"	"93, C"	NA
+"GSM300328"	"EntorhinalCortex_female_91yrs_indiv94"	"GSM300328"	"Public on Oct 09 2008"	"Jun 25 2008"	"Jun 26 2019"	"RNA"	"1"	"brain, entorhinal cortex, female, 91 years"	"Homo sapiens"	"individual: 94, C"	"brain region: entorhinal cortex"	"gender: female"	"age (yrs): 91"	""	""	"N/A"	"N/A"	"total RNA"	"Total RNA was extracted from 10-200 mg of frozen, unfixed tissue using Trizol reagent (Invitrogen, Carlsbad CA), and purified using quick spin columns (Qiagen, Valencia CA).  RNA quality was assessed using the Agilent BioAnalyzer (Agilent Technologies, Palo Alto, CA) and UV spectrophotometer for the presence of sharp peaks and 28S/18S RNA."	"biotin"	"Total RNA (10 ug) from each sample was used to generate first strand cDNA using a T7-linked-(dT)24 primer, followed by in vitro transcription using the ENZO BioArray High-Yield RNA transcript labeling kit (ENZO Farmingdale, NY) to generate biotin-labeled cRNA target."	"9606"	"Using a robotics system (Biomek FX MicroArray Plex SA System; Beckman Coultier) to optimize consistency in processing and minimize handling variability, each fragmented, biotin-labeled cRNA sample (30 mg) was individually hybridized to an Affymetrix Hg-U133 plus 2.0 chip for 16 hours and rotated at 13 rpm at 50C."	"The chips were scanned using an Affymetrix GeneChip Scanner 3000 7G"	"Brain from cognitively intact individual."	"GC-RMA expression values were obtained from CEL files using GeneSpring 7.3.1 software.  PLIER expression values were obtained using Expression Console software using default settings.  PLIER and GC-RMA data were processed using GeneSpring 7.0 software, with default normalizations (Data transformation:set values<0.01 to 0.01; per chip: normalize to 50th percentile; per gene: normalize to median)."	"GPL570"	"Nicole,Claudia,Berchtold"	"nberchto@uci.edu"	"949 824 6071"	"Carl W. Cotman"	"Institute for Memory Impairments and Neurological Disorders"	"UC Irvine"	"1226 Gillespie Neuroscience Facility"	"Irvine"	"CA"	"92697-4540"	"USA"	"ftp://ftp.ncbi.nlm.nih.gov/geo/samples/GSM300nnn/GSM300328/suppl/GSM300328.CEL.gz"	"54675"	"Reanalyzed by: GSE119087"	"Reanalyzed by: GSE133349"	""	"91"	NA	NA	"entorhinal cortex"	"female"	"94, C"	NA
+"GSM300329"	"Hippocampus_female_91yrs_indiv94"	"GSM300329"	"Public on Oct 09 2008"	"Jun 25 2008"	"Jun 26 2019"	"RNA"	"1"	"brain, hippocampus, female, 91 years"	"Homo sapiens"	"individual: 94, C"	"brain region: hippocampus"	"gender: female"	"age (yrs): 91"	""	""	"N/A"	"N/A"	"total RNA"	"Total RNA was extracted from 10-200 mg of frozen, unfixed tissue using Trizol reagent (Invitrogen, Carlsbad CA), and purified using quick spin columns (Qiagen, Valencia CA).  RNA quality was assessed using the Agilent BioAnalyzer (Agilent Technologies, Palo Alto, CA) and UV spectrophotometer for the presence of sharp peaks and 28S/18S RNA."	"biotin"	"Total RNA (10 ug) from each sample was used to generate first strand cDNA using a T7-linked-(dT)24 primer, followed by in vitro transcription using the ENZO BioArray High-Yield RNA transcript labeling kit (ENZO Farmingdale, NY) to generate biotin-labeled cRNA target."	"9606"	"Using a robotics system (Biomek FX MicroArray Plex SA System; Beckman Coultier) to optimize consistency in processing and minimize handling variability, each fragmented, biotin-labeled cRNA sample (30 mg) was individually hybridized to an Affymetrix Hg-U133 plus 2.0 chip for 16 hours and rotated at 13 rpm at 50C."	"The chips were scanned using an Affymetrix GeneChip Scanner 3000 7G"	"Brain from cognitively intact individual."	"GC-RMA expression values were obtained from CEL files using GeneSpring 7.3.1 software.  PLIER expression values were obtained using Expression Console software using default settings.  PLIER and GC-RMA data were processed using GeneSpring 7.0 software, with default normalizations (Data transformation:set values<0.01 to 0.01; per chip: normalize to 50th percentile; per gene: normalize to median)."	"GPL570"	"Nicole,Claudia,Berchtold"	"nberchto@uci.edu"	"949 824 6071"	"Carl W. Cotman"	"Institute for Memory Impairments and Neurological Disorders"	"UC Irvine"	"1226 Gillespie Neuroscience Facility"	"Irvine"	"CA"	"92697-4540"	"USA"	"ftp://ftp.ncbi.nlm.nih.gov/geo/samples/GSM300nnn/GSM300329/suppl/GSM300329.CEL.gz"	"54675"	"Reanalyzed by: GSE119087"	"Reanalyzed by: GSE133349"	""	"91"	NA	NA	"hippocampus"	"female"	"94, C"	NA
+"GSM300330"	"PostcentralGyrus_female_91yrs_indiv94"	"GSM300330"	"Public on Oct 09 2008"	"Jun 25 2008"	"Jun 26 2019"	"RNA"	"1"	"brain, postcentral gyrus, female, 91 years"	"Homo sapiens"	"individual: 94, C"	"brain region: postcentral gyrus"	"gender: female"	"age (yrs): 91"	""	""	"N/A"	"N/A"	"total RNA"	"Total RNA was extracted from 10-200 mg of frozen, unfixed tissue using Trizol reagent (Invitrogen, Carlsbad CA), and purified using quick spin columns (Qiagen, Valencia CA).  RNA quality was assessed using the Agilent BioAnalyzer (Agilent Technologies, Palo Alto, CA) and UV spectrophotometer for the presence of sharp peaks and 28S/18S RNA."	"biotin"	"Total RNA (10 ug) from each sample was used to generate first strand cDNA using a T7-linked-(dT)24 primer, followed by in vitro transcription using the ENZO BioArray High-Yield RNA transcript labeling kit (ENZO Farmingdale, NY) to generate biotin-labeled cRNA target."	"9606"	"Using a robotics system (Biomek FX MicroArray Plex SA System; Beckman Coultier) to optimize consistency in processing and minimize handling variability, each fragmented, biotin-labeled cRNA sample (30 mg) was individually hybridized to an Affymetrix Hg-U133 plus 2.0 chip for 16 hours and rotated at 13 rpm at 50C."	"The chips were scanned using an Affymetrix GeneChip Scanner 3000 7G"	"Brain from cognitively intact individual."	"GC-RMA expression values were obtained from CEL files using GeneSpring 7.3.1 software.  PLIER expression values were obtained using Expression Console software using default settings.  PLIER and GC-RMA data were processed using GeneSpring 7.0 software, with default normalizations (Data transformation:set values<0.01 to 0.01; per chip: normalize to 50th percentile; per gene: normalize to median)."	"GPL570"	"Nicole,Claudia,Berchtold"	"nberchto@uci.edu"	"949 824 6071"	"Carl W. Cotman"	"Institute for Memory Impairments and Neurological Disorders"	"UC Irvine"	"1226 Gillespie Neuroscience Facility"	"Irvine"	"CA"	"92697-4540"	"USA"	"ftp://ftp.ncbi.nlm.nih.gov/geo/samples/GSM300nnn/GSM300330/suppl/GSM300330.CEL.gz"	"54675"	"Reanalyzed by: GSE119087"	"Reanalyzed by: GSE133349"	""	"91"	NA	NA	"postcentral gyrus"	"female"	"94, C"	NA
+"GSM300331"	"SuperiorFrontalGyrus_female_91yrs_indiv94"	"GSM300331"	"Public on Oct 09 2008"	"Jun 25 2008"	"Jun 26 2019"	"RNA"	"1"	"brain, superior frontal gyrus, female, 91 years"	"Homo sapiens"	"individual: 94, C"	"brain region: superior frontal gyrus"	"gender: female"	"age (yrs): 91"	""	""	"N/A"	"N/A"	"total RNA"	"Total RNA was extracted from 10-200 mg of frozen, unfixed tissue using Trizol reagent (Invitrogen, Carlsbad CA), and purified using quick spin columns (Qiagen, Valencia CA).  RNA quality was assessed using the Agilent BioAnalyzer (Agilent Technologies, Palo Alto, CA) and UV spectrophotometer for the presence of sharp peaks and 28S/18S RNA."	"biotin"	"Total RNA (10 ug) from each sample was used to generate first strand cDNA using a T7-linked-(dT)24 primer, followed by in vitro transcription using the ENZO BioArray High-Yield RNA transcript labeling kit (ENZO Farmingdale, NY) to generate biotin-labeled cRNA target."	"9606"	"Using a robotics system (Biomek FX MicroArray Plex SA System; Beckman Coultier) to optimize consistency in processing and minimize handling variability, each fragmented, biotin-labeled cRNA sample (30 mg) was individually hybridized to an Affymetrix Hg-U133 plus 2.0 chip for 16 hours and rotated at 13 rpm at 50C."	"The chips were scanned using an Affymetrix GeneChip Scanner 3000 7G"	"Brain from cognitively intact individual."	"GC-RMA expression values were obtained from CEL files using GeneSpring 7.3.1 software.  PLIER expression values were obtained using Expression Console software using default settings.  PLIER and GC-RMA data were processed using GeneSpring 7.0 software, with default normalizations (Data transformation:set values<0.01 to 0.01; per chip: normalize to 50th percentile; per gene: normalize to median)."	"GPL570"	"Nicole,Claudia,Berchtold"	"nberchto@uci.edu"	"949 824 6071"	"Carl W. Cotman"	"Institute for Memory Impairments and Neurological Disorders"	"UC Irvine"	"1226 Gillespie Neuroscience Facility"	"Irvine"	"CA"	"92697-4540"	"USA"	"ftp://ftp.ncbi.nlm.nih.gov/geo/samples/GSM300nnn/GSM300331/suppl/GSM300331.CEL.gz"	"54675"	"Reanalyzed by: GSE119087"	"Reanalyzed by: GSE133349"	""	"91"	NA	NA	"superior frontal gyrus"	"female"	"94, C"	NA
+"GSM300332"	"EntorhinalCortex_male_75yrs_indiv96"	"GSM300332"	"Public on Oct 09 2008"	"Jun 25 2008"	"Jun 26 2019"	"RNA"	"1"	"brain, entorhinal cortex, male, 75 years"	"Homo sapiens"	"individual: 96, C"	"brain region: entorhinal cortex"	"gender: male"	"age (yrs): 75"	""	""	"N/A"	"N/A"	"total RNA"	"Total RNA was extracted from 10-200 mg of frozen, unfixed tissue using Trizol reagent (Invitrogen, Carlsbad CA), and purified using quick spin columns (Qiagen, Valencia CA).  RNA quality was assessed using the Agilent BioAnalyzer (Agilent Technologies, Palo Alto, CA) and UV spectrophotometer for the presence of sharp peaks and 28S/18S RNA."	"biotin"	"Total RNA (10 ug) from each sample was used to generate first strand cDNA using a T7-linked-(dT)24 primer, followed by in vitro transcription using the ENZO BioArray High-Yield RNA transcript labeling kit (ENZO Farmingdale, NY) to generate biotin-labeled cRNA target."	"9606"	"Using a robotics system (Biomek FX MicroArray Plex SA System; Beckman Coultier) to optimize consistency in processing and minimize handling variability, each fragmented, biotin-labeled cRNA sample (30 mg) was individually hybridized to an Affymetrix Hg-U133 plus 2.0 chip for 16 hours and rotated at 13 rpm at 50C."	"The chips were scanned using an Affymetrix GeneChip Scanner 3000 7G"	"Brain from cognitively intact individual."	"GC-RMA expression values were obtained from CEL files using GeneSpring 7.3.1 software.  PLIER expression values were obtained using Expression Console software using default settings.  PLIER and GC-RMA data were processed using GeneSpring 7.0 software, with default normalizations (Data transformation:set values<0.01 to 0.01; per chip: normalize to 50th percentile; per gene: normalize to median)."	"GPL570"	"Nicole,Claudia,Berchtold"	"nberchto@uci.edu"	"949 824 6071"	"Carl W. Cotman"	"Institute for Memory Impairments and Neurological Disorders"	"UC Irvine"	"1226 Gillespie Neuroscience Facility"	"Irvine"	"CA"	"92697-4540"	"USA"	"ftp://ftp.ncbi.nlm.nih.gov/geo/samples/GSM300nnn/GSM300332/suppl/GSM300332.CEL.gz"	"54675"	"Reanalyzed by: GSE119087"	"Reanalyzed by: GSE133349"	""	"75"	NA	NA	"entorhinal cortex"	"male"	"96, C"	NA
+"GSM300333"	"Hippocampus_male_75yrs_indiv96"	"GSM300333"	"Public on Oct 09 2008"	"Jun 25 2008"	"Jun 26 2019"	"RNA"	"1"	"brain, hippocampus, male, 75 years"	"Homo sapiens"	"individual: 96, C"	"brain region: hippocampus"	"gender: male"	"age (yrs): 75"	""	""	"N/A"	"N/A"	"total RNA"	"Total RNA was extracted from 10-200 mg of frozen, unfixed tissue using Trizol reagent (Invitrogen, Carlsbad CA), and purified using quick spin columns (Qiagen, Valencia CA).  RNA quality was assessed using the Agilent BioAnalyzer (Agilent Technologies, Palo Alto, CA) and UV spectrophotometer for the presence of sharp peaks and 28S/18S RNA."	"biotin"	"Total RNA (10 ug) from each sample was used to generate first strand cDNA using a T7-linked-(dT)24 primer, followed by in vitro transcription using the ENZO BioArray High-Yield RNA transcript labeling kit (ENZO Farmingdale, NY) to generate biotin-labeled cRNA target."	"9606"	"Using a robotics system (Biomek FX MicroArray Plex SA System; Beckman Coultier) to optimize consistency in processing and minimize handling variability, each fragmented, biotin-labeled cRNA sample (30 mg) was individually hybridized to an Affymetrix Hg-U133 plus 2.0 chip for 16 hours and rotated at 13 rpm at 50C."	"The chips were scanned using an Affymetrix GeneChip Scanner 3000 7G"	"Brain from cognitively intact individual."	"GC-RMA expression values were obtained from CEL files using GeneSpring 7.3.1 software.  PLIER expression values were obtained using Expression Console software using default settings.  PLIER and GC-RMA data were processed using GeneSpring 7.0 software, with default normalizations (Data transformation:set values<0.01 to 0.01; per chip: normalize to 50th percentile; per gene: normalize to median)."	"GPL570"	"Nicole,Claudia,Berchtold"	"nberchto@uci.edu"	"949 824 6071"	"Carl W. Cotman"	"Institute for Memory Impairments and Neurological Disorders"	"UC Irvine"	"1226 Gillespie Neuroscience Facility"	"Irvine"	"CA"	"92697-4540"	"USA"	"ftp://ftp.ncbi.nlm.nih.gov/geo/samples/GSM300nnn/GSM300333/suppl/GSM300333.CEL.gz"	"54675"	"Reanalyzed by: GSE119087"	"Reanalyzed by: GSE133349"	""	"75"	NA	NA	"hippocampus"	"male"	"96, C"	NA
+"GSM300335"	"SuperiorFrontalGyrus_male_75yrs_indiv96"	"GSM300335"	"Public on Oct 09 2008"	"Jun 25 2008"	"Jun 26 2019"	"RNA"	"1"	"brain, superior frontal gyrus, male, 75 years"	"Homo sapiens"	"individual: 96, C"	"brain region: superior frontal gyrus"	"gender: male"	"age (yrs): 75"	""	""	"N/A"	"N/A"	"total RNA"	"Total RNA was extracted from 10-200 mg of frozen, unfixed tissue using Trizol reagent (Invitrogen, Carlsbad CA), and purified using quick spin columns (Qiagen, Valencia CA).  RNA quality was assessed using the Agilent BioAnalyzer (Agilent Technologies, Palo Alto, CA) and UV spectrophotometer for the presence of sharp peaks and 28S/18S RNA."	"biotin"	"Total RNA (10 ug) from each sample was used to generate first strand cDNA using a T7-linked-(dT)24 primer, followed by in vitro transcription using the ENZO BioArray High-Yield RNA transcript labeling kit (ENZO Farmingdale, NY) to generate biotin-labeled cRNA target."	"9606"	"Using a robotics system (Biomek FX MicroArray Plex SA System; Beckman Coultier) to optimize consistency in processing and minimize handling variability, each fragmented, biotin-labeled cRNA sample (30 mg) was individually hybridized to an Affymetrix Hg-U133 plus 2.0 chip for 16 hours and rotated at 13 rpm at 50C."	"The chips were scanned using an Affymetrix GeneChip Scanner 3000 7G"	"Brain from cognitively intact individual."	"GC-RMA expression values were obtained from CEL files using GeneSpring 7.3.1 software.  PLIER expression values were obtained using Expression Console software using default settings.  PLIER and GC-RMA data were processed using GeneSpring 7.0 software, with default normalizations (Data transformation:set values<0.01 to 0.01; per chip: normalize to 50th percentile; per gene: normalize to median)."	"GPL570"	"Nicole,Claudia,Berchtold"	"nberchto@uci.edu"	"949 824 6071"	"Carl W. Cotman"	"Institute for Memory Impairments and Neurological Disorders"	"UC Irvine"	"1226 Gillespie Neuroscience Facility"	"Irvine"	"CA"	"92697-4540"	"USA"	"ftp://ftp.ncbi.nlm.nih.gov/geo/samples/GSM300nnn/GSM300335/suppl/GSM300335.CEL.gz"	"54675"	"Reanalyzed by: GSE119087"	"Reanalyzed by: GSE133349"	""	"75"	NA	NA	"superior frontal gyrus"	"male"	"96, C"	NA
+"GSM300338"	"EntorhinalCortex_female_82yrs_indiv98"	"GSM300338"	"Public on Oct 09 2008"	"Jun 25 2008"	"Jun 26 2019"	"RNA"	"1"	"brain, entorhinal cortex, female, 82 years"	"Homo sapiens"	"individual: 98, C"	"brain region: entorhinal cortex"	"gender: female"	"age (yrs): 82"	""	""	"N/A"	"N/A"	"total RNA"	"Total RNA was extracted from 10-200 mg of frozen, unfixed tissue using Trizol reagent (Invitrogen, Carlsbad CA), and purified using quick spin columns (Qiagen, Valencia CA).  RNA quality was assessed using the Agilent BioAnalyzer (Agilent Technologies, Palo Alto, CA) and UV spectrophotometer for the presence of sharp peaks and 28S/18S RNA."	"biotin"	"Total RNA (10 ug) from each sample was used to generate first strand cDNA using a T7-linked-(dT)24 primer, followed by in vitro transcription using the ENZO BioArray High-Yield RNA transcript labeling kit (ENZO Farmingdale, NY) to generate biotin-labeled cRNA target."	"9606"	"Using a robotics system (Biomek FX MicroArray Plex SA System; Beckman Coultier) to optimize consistency in processing and minimize handling variability, each fragmented, biotin-labeled cRNA sample (30 mg) was individually hybridized to an Affymetrix Hg-U133 plus 2.0 chip for 16 hours and rotated at 13 rpm at 50C."	"The chips were scanned using an Affymetrix GeneChip Scanner 3000 7G"	"Brain from cognitively intact individual."	"GC-RMA expression values were obtained from CEL files using GeneSpring 7.3.1 software.  PLIER expression values were obtained using Expression Console software using default settings.  PLIER and GC-RMA data were processed using GeneSpring 7.0 software, with default normalizations (Data transformation:set values<0.01 to 0.01; per chip: normalize to 50th percentile; per gene: normalize to median)."	"GPL570"	"Nicole,Claudia,Berchtold"	"nberchto@uci.edu"	"949 824 6071"	"Carl W. Cotman"	"Institute for Memory Impairments and Neurological Disorders"	"UC Irvine"	"1226 Gillespie Neuroscience Facility"	"Irvine"	"CA"	"92697-4540"	"USA"	"ftp://ftp.ncbi.nlm.nih.gov/geo/samples/GSM300nnn/GSM300338/suppl/GSM300338.CEL.gz"	"54675"	"Reanalyzed by: GSE119087"	"Reanalyzed by: GSE133349"	""	"82"	NA	NA	"entorhinal cortex"	"female"	"98, C"	NA
+"GSM300339"	"Hippocampus_female_82yrs_indiv98"	"GSM300339"	"Public on Oct 09 2008"	"Jun 25 2008"	"Jun 26 2019"	"RNA"	"1"	"brain, hippocampus, female, 82 years"	"Homo sapiens"	"individual: 98, C"	"brain region: hippocampus"	"gender: female"	"age (yrs): 82"	""	""	"N/A"	"N/A"	"total RNA"	"Total RNA was extracted from 10-200 mg of frozen, unfixed tissue using Trizol reagent (Invitrogen, Carlsbad CA), and purified using quick spin columns (Qiagen, Valencia CA).  RNA quality was assessed using the Agilent BioAnalyzer (Agilent Technologies, Palo Alto, CA) and UV spectrophotometer for the presence of sharp peaks and 28S/18S RNA."	"biotin"	"Total RNA (10 ug) from each sample was used to generate first strand cDNA using a T7-linked-(dT)24 primer, followed by in vitro transcription using the ENZO BioArray High-Yield RNA transcript labeling kit (ENZO Farmingdale, NY) to generate biotin-labeled cRNA target."	"9606"	"Using a robotics system (Biomek FX MicroArray Plex SA System; Beckman Coultier) to optimize consistency in processing and minimize handling variability, each fragmented, biotin-labeled cRNA sample (30 mg) was individually hybridized to an Affymetrix Hg-U133 plus 2.0 chip for 16 hours and rotated at 13 rpm at 50C."	"The chips were scanned using an Affymetrix GeneChip Scanner 3000 7G"	"Brain from cognitively intact individual."	"GC-RMA expression values were obtained from CEL files using GeneSpring 7.3.1 software.  PLIER expression values were obtained using Expression Console software using default settings.  PLIER and GC-RMA data were processed using GeneSpring 7.0 software, with default normalizations (Data transformation:set values<0.01 to 0.01; per chip: normalize to 50th percentile; per gene: normalize to median)."	"GPL570"	"Nicole,Claudia,Berchtold"	"nberchto@uci.edu"	"949 824 6071"	"Carl W. Cotman"	"Institute for Memory Impairments and Neurological Disorders"	"UC Irvine"	"1226 Gillespie Neuroscience Facility"	"Irvine"	"CA"	"92697-4540"	"USA"	"ftp://ftp.ncbi.nlm.nih.gov/geo/samples/GSM300nnn/GSM300339/suppl/GSM300339.CEL.gz"	"54675"	"Reanalyzed by: GSE119087"	"Reanalyzed by: GSE133349"	""	"82"	NA	NA	"hippocampus"	"female"	"98, C"	NA
+"GSM300340"	"PostcentralGyrus_female_82yrs_indiv98"	"GSM300340"	"Public on Oct 09 2008"	"Jun 25 2008"	"Jun 26 2019"	"RNA"	"1"	"brain, postcentral gyrus, female, 82 years"	"Homo sapiens"	"individual: 98, C"	"brain region: postcentral gyrus"	"gender: female"	"age (yrs): 82"	""	""	"N/A"	"N/A"	"total RNA"	"Total RNA was extracted from 10-200 mg of frozen, unfixed tissue using Trizol reagent (Invitrogen, Carlsbad CA), and purified using quick spin columns (Qiagen, Valencia CA).  RNA quality was assessed using the Agilent BioAnalyzer (Agilent Technologies, Palo Alto, CA) and UV spectrophotometer for the presence of sharp peaks and 28S/18S RNA."	"biotin"	"Total RNA (10 ug) from each sample was used to generate first strand cDNA using a T7-linked-(dT)24 primer, followed by in vitro transcription using the ENZO BioArray High-Yield RNA transcript labeling kit (ENZO Farmingdale, NY) to generate biotin-labeled cRNA target."	"9606"	"Using a robotics system (Biomek FX MicroArray Plex SA System; Beckman Coultier) to optimize consistency in processing and minimize handling variability, each fragmented, biotin-labeled cRNA sample (30 mg) was individually hybridized to an Affymetrix Hg-U133 plus 2.0 chip for 16 hours and rotated at 13 rpm at 50C."	"The chips were scanned using an Affymetrix GeneChip Scanner 3000 7G"	"Brain from cognitively intact individual."	"GC-RMA expression values were obtained from CEL files using GeneSpring 7.3.1 software.  PLIER expression values were obtained using Expression Console software using default settings.  PLIER and GC-RMA data were processed using GeneSpring 7.0 software, with default normalizations (Data transformation:set values<0.01 to 0.01; per chip: normalize to 50th percentile; per gene: normalize to median)."	"GPL570"	"Nicole,Claudia,Berchtold"	"nberchto@uci.edu"	"949 824 6071"	"Carl W. Cotman"	"Institute for Memory Impairments and Neurological Disorders"	"UC Irvine"	"1226 Gillespie Neuroscience Facility"	"Irvine"	"CA"	"92697-4540"	"USA"	"ftp://ftp.ncbi.nlm.nih.gov/geo/samples/GSM300nnn/GSM300340/suppl/GSM300340.CEL.gz"	"54675"	"Reanalyzed by: GSE119087"	"Reanalyzed by: GSE133349"	""	"82"	NA	NA	"postcentral gyrus"	"female"	"98, C"	NA
+"GSM300341"	"SuperiorFrontalGyrus_female_82yrs_indiv98"	"GSM300341"	"Public on Oct 09 2008"	"Jun 25 2008"	"Jun 26 2019"	"RNA"	"1"	"brain, superior frontal gyrus, female, 82 years"	"Homo sapiens"	"individual: 98, C"	"brain region: superior frontal gyrus"	"gender: female"	"age (yrs): 82"	""	""	"N/A"	"N/A"	"total RNA"	"Total RNA was extracted from 10-200 mg of frozen, unfixed tissue using Trizol reagent (Invitrogen, Carlsbad CA), and purified using quick spin columns (Qiagen, Valencia CA).  RNA quality was assessed using the Agilent BioAnalyzer (Agilent Technologies, Palo Alto, CA) and UV spectrophotometer for the presence of sharp peaks and 28S/18S RNA."	"biotin"	"Total RNA (10 ug) from each sample was used to generate first strand cDNA using a T7-linked-(dT)24 primer, followed by in vitro transcription using the ENZO BioArray High-Yield RNA transcript labeling kit (ENZO Farmingdale, NY) to generate biotin-labeled cRNA target."	"9606"	"Using a robotics system (Biomek FX MicroArray Plex SA System; Beckman Coultier) to optimize consistency in processing and minimize handling variability, each fragmented, biotin-labeled cRNA sample (30 mg) was individually hybridized to an Affymetrix Hg-U133 plus 2.0 chip for 16 hours and rotated at 13 rpm at 50C."	"The chips were scanned using an Affymetrix GeneChip Scanner 3000 7G"	"Brain from cognitively intact individual."	"GC-RMA expression values were obtained from CEL files using GeneSpring 7.3.1 software.  PLIER expression values were obtained using Expression Console software using default settings.  PLIER and GC-RMA data were processed using GeneSpring 7.0 software, with default normalizations (Data transformation:set values<0.01 to 0.01; per chip: normalize to 50th percentile; per gene: normalize to median)."	"GPL570"	"Nicole,Claudia,Berchtold"	"nberchto@uci.edu"	"949 824 6071"	"Carl W. Cotman"	"Institute for Memory Impairments and Neurological Disorders"	"UC Irvine"	"1226 Gillespie Neuroscience Facility"	"Irvine"	"CA"	"92697-4540"	"USA"	"ftp://ftp.ncbi.nlm.nih.gov/geo/samples/GSM300nnn/GSM300341/suppl/GSM300341.CEL.gz"	"54675"	"Reanalyzed by: GSE119087"	"Reanalyzed by: GSE133349"	""	"82"	NA	NA	"superior frontal gyrus"	"female"	"98, C"	NA
+"GSM318840"	"SuperiorFrontalGyrus_male_66yrs_indiv63"	"GSM318840"	"Public on Oct 09 2008"	"Sep 09 2008"	"Jun 26 2019"	"RNA"	"1"	"brain, superior frontal gyrus, male, 66 years"	"Homo sapiens"	"individual: 63, C"	"brain region: superior frontal gyrus"	"gender: male"	"age (yrs): 66"	""	""	"N/A"	"N/A"	"total RNA"	"Total RNA was extracted from 10-200 mg of frozen, unfixed tissue using Trizol reagent (Invitrogen, Carlsbad CA), and purified using quick spin columns (Qiagen, Valencia CA).  RNA quality was assessed using the Agilent BioAnalyzer (Agilent Technologies, Palo Alto, CA) and UV spectrophotometer for the presence of sharp peaks and 28S/18S RNA."	"biotin"	"Total RNA (10 ug) from each sample was used to generate first strand cDNA using a T7-linked-(dT)24 primer, followed by in vitro transcription using the ENZO BioArray High-Yield RNA transcript labeling kit (ENZO Farmingdale, NY) to generate biotin-labeled cRNA target."	"9606"	"Using a robotics system (Biomek FX MicroArray Plex SA System; Beckman Coultier) to optimize consistency in processing and minimize handling variability, each fragmented, biotin-labeled cRNA sample (30 mg) was individually hybridized to an Affymetrix Hg-U133 plus 2.0 chip for 16 hours and rotated at 13 rpm at 50C."	"The chips were scanned using an Affymetrix GeneChip Scanner 3000 7G"	"Postmortem brain tissue from cognitively intact individual."	"GC-RMA expression values were obtained from CEL files using GeneSpring 7.3.1 software.  PLIER expression values were obtained using Expression Console software using default settings.  PLIER and GC-RMA data were processed using GeneSpring 7.0 software, with default normalizations (Data transformation:set values<0.01 to 0.01; per chip: normalize to 50th percentile; per gene: normalize to median)."	"GPL570"	"Nicole,Claudia,Berchtold"	"nberchto@uci.edu"	"949 824 6071"	"Carl W. Cotman"	"Institute for Memory Impairments and Neurological Disorders"	"UC Irvine"	"1226 Gillespie Neuroscience Facility"	"Irvine"	"CA"	"92697-4540"	"USA"	"ftp://ftp.ncbi.nlm.nih.gov/geo/samples/GSM318nnn/GSM318840/suppl/GSM318840.CEL.gz"	"54675"	"Reanalyzed by: GSE119087"	"Reanalyzed by: GSE133349"	""	"66"	NA	NA	"superior frontal gyrus"	"male"	"63, C"	NA
+"GSM350078"	"SuperiorFrontalGyrus_male_80yrs_indiv15"	"GSM350078"	"Public on May 01 2009"	"Dec 10 2008"	"Jun 26 2019"	"RNA"	"1"	"brain, superior frontal gyrus, male, 80 years"	"Homo sapiens"	"individual: 15, C"	"brain region: superior frontal gyrus"	"gender: male"	"age (yrs): 80"	""	""	"N/A"	"N/A"	"total RNA"	"Total RNA was extracted from 10-200 mg of frozen, unfixed tissue using Trizol reagent (Invitrogen, Carlsbad CA), and purified using quick spin columns (Qiagen, Valencia CA).  RNA quality was assessed using the Agilent BioAnalyzer (Agilent Technologies, Palo Alto, CA) and UV spectrophotometer for the presence of sharp peaks and 28S/18S RNA."	"biotin"	"Total RNA (10 ug) from each sample was used to generate first strand cDNA using a T7-linked-(dT)24 primer, followed by in vitro transcription using the ENZO BioArray High-Yield RNA transcript labeling kit (ENZO Farmingdale, NY) to generate biotin-labeled cRNA target."	"9606"	"Using a robotics system (Biomek FX MicroArray Plex SA System; Beckman Coultier) to optimize consistency in processing and minimize handling variability, each fragmented, biotin-labeled cRNA sample (30 mg) was individually hybridized to an Affymetrix Hg-U133 plus 2.0 chip for 16 hours and rotated at 13 rpm at 50C."	"The chips were scanned using an Affymetrix GeneChip Scanner 3000 7G"	"Brain from cognitively intact individual."	"GC-RMA expression values were obtained from CEL files using GeneSpring 7.3.1 software.  PLIER expression values were obtained using Expression Console software using default settings.  PLIER and GC-RMA data were processed using GeneSpring 7.0 software, with default normalizations (Data transformation:set values<0.01 to 0.01; per chip: normalize to 50th percentile; per gene: normalize to median)."	"GPL570"	"Nicole,Claudia,Berchtold"	"nberchto@uci.edu"	"949 824 6071"	"Carl W. Cotman"	"Institute for Memory Impairments and Neurological Disorders"	"UC Irvine"	"1226 Gillespie Neuroscience Facility"	"Irvine"	"CA"	"92697-4540"	"USA"	"ftp://ftp.ncbi.nlm.nih.gov/geo/samples/GSM350nnn/GSM350078/suppl/GSM350078.CEL.gz"	"54675"	"Reanalyzed by: GSE133349"	""	""	"80"	NA	NA	"superior frontal gyrus"	"male"	"15, C"	NA
+"GSM1176196"	"entorhinal cortex_female_76_AD_48"	"GSM1176196"	"Public on Apr 21 2014"	"Jun 27 2013"	"Jun 26 2019"	"RNA"	"1"	"entorhinal cortex_female_AD"	"Homo sapiens"	"gender: female"	"age (yrs): 76"	"brain region: entorhinal cortex"	"braak stage: V"	"apoe genotype: 3,3"	"mmse: 3"	""	""	"total RNA"	"Trizol extraction of total RNA, followed by purification using Qiagen quick-spin columns"	"biotin"	"Biotinylated cRNA were prepared according to the standard Affymetrix protocol from 10 ug total RNA (Expression Analysis Technical Manual, 2001, Affymetrix) using robotics system (Biomek FX MicroArray Plex SA System; Beckman Coulter) to optimize consistency in processing"	"9606"	"Following fragmentation, 30 mg biotin-labeled cRNA were hybridized for 16 hr and rotated at 13 rpm at 50° C on Affymetrix Human HgU133 plus 2.0 microarrays"	"Affymetrix Genekeep GCS3000, software version 3.2.2.1515"	"post-mortem tissue"	"GC-RMA, using Genespring 7.3. data transformation: measurements <0.01 set to 0.01; per chip: normalized to the 50th percentile; per gene: normalize to median"	"GPL570"	"Nicole,Claudia,Berchtold"	"nberchto@uci.edu"	"949 824 6071"	"Carl W. Cotman"	"Institute for Memory Impairments and Neurological Disorders"	"UC Irvine"	"1226 Gillespie Neuroscience Facility"	"Irvine"	"CA"	"92697-4540"	"USA"	"ftp://ftp.ncbi.nlm.nih.gov/geo/samples/GSM1176nnn/GSM1176196/suppl/GSM1176196_1105A-08_EC_48_Affy.CEL.gz"	"54675"	"Reanalyzed by: GSE133349"	""	""	"76"	"3,3"	"V"	"entorhinal cortex"	"female"	NA	"3"
+"GSM1176197"	"entorhinal cortex_female_86_AD_15"	"GSM1176197"	"Public on Apr 21 2014"	"Jun 27 2013"	"Jun 26 2019"	"RNA"	"1"	"entorhinal cortex_female_AD"	"Homo sapiens"	"gender: female"	"age (yrs): 86"	"brain region: entorhinal cortex"	"braak stage: VI"	"apoe genotype: 4,4"	"mmse: 9"	""	""	"total RNA"	"Trizol extraction of total RNA, followed by purification using Qiagen quick-spin columns"	"biotin"	"Biotinylated cRNA were prepared according to the standard Affymetrix protocol from 10 ug total RNA (Expression Analysis Technical Manual, 2001, Affymetrix) using robotics system (Biomek FX MicroArray Plex SA System; Beckman Coulter) to optimize consistency in processing"	"9606"	"Following fragmentation, 30 mg biotin-labeled cRNA were hybridized for 16 hr and rotated at 13 rpm at 50° C on Affymetrix Human HgU133 plus 2.0 microarrays"	"Affymetrix Genekeep GCS3000, software version 3.2.2.1515"	"post-mortem tissue"	"GC-RMA, using Genespring 7.3. data transformation: measurements <0.01 set to 0.01; per chip: normalized to the 50th percentile; per gene: normalize to median"	"GPL570"	"Nicole,Claudia,Berchtold"	"nberchto@uci.edu"	"949 824 6071"	"Carl W. Cotman"	"Institute for Memory Impairments and Neurological Disorders"	"UC Irvine"	"1226 Gillespie Neuroscience Facility"	"Irvine"	"CA"	"92697-4540"	"USA"	"ftp://ftp.ncbi.nlm.nih.gov/geo/samples/GSM1176nnn/GSM1176197/suppl/GSM1176197_1105A-08_EC_15.CEL.gz"	"54675"	"Reanalyzed by: GSE133349"	""	""	"86"	"4,4"	"VI"	"entorhinal cortex"	"female"	NA	"9"
+"GSM1176198"	"entorhinal cortex_female_82_AD_9"	"GSM1176198"	"Public on Apr 21 2014"	"Jun 27 2013"	"Jun 26 2019"	"RNA"	"1"	"entorhinal cortex_female_AD"	"Homo sapiens"	"gender: female"	"age (yrs): 82"	"brain region: entorhinal cortex"	"braak stage: VI"	"apoe genotype: 3,4"	"mmse: 0"	""	""	"total RNA"	"Trizol extraction of total RNA, followed by purification using Qiagen quick-spin columns"	"biotin"	"Biotinylated cRNA were prepared according to the standard Affymetrix protocol from 10 ug total RNA (Expression Analysis Technical Manual, 2001, Affymetrix) using robotics system (Biomek FX MicroArray Plex SA System; Beckman Coulter) to optimize consistency in processing"	"9606"	"Following fragmentation, 30 mg biotin-labeled cRNA were hybridized for 16 hr and rotated at 13 rpm at 50° C on Affymetrix Human HgU133 plus 2.0 microarrays"	"Affymetrix Genekeep GCS3000, software version 3.2.2.1515"	"post-mortem tissue"	"GC-RMA, using Genespring 7.3. data transformation: measurements <0.01 set to 0.01; per chip: normalized to the 50th percentile; per gene: normalize to median"	"GPL570"	"Nicole,Claudia,Berchtold"	"nberchto@uci.edu"	"949 824 6071"	"Carl W. Cotman"	"Institute for Memory Impairments and Neurological Disorders"	"UC Irvine"	"1226 Gillespie Neuroscience Facility"	"Irvine"	"CA"	"92697-4540"	"USA"	"ftp://ftp.ncbi.nlm.nih.gov/geo/samples/GSM1176nnn/GSM1176198/suppl/GSM1176198_1205A-07_EC-09_AffyHyb.CEL.gz"	"54675"	"Reanalyzed by: GSE133349"	""	""	"82"	"3,4"	"VI"	"entorhinal cortex"	"female"	NA	"0"
+"GSM1176199"	"entorhinal cortex_female_85_AD_24"	"GSM1176199"	"Public on Apr 21 2014"	"Jun 27 2013"	"Jun 26 2019"	"RNA"	"1"	"entorhinal cortex_female_AD"	"Homo sapiens"	"gender: female"	"age (yrs): 85"	"brain region: entorhinal cortex"	"braak stage: IV"	"apoe genotype: 3,4"	"mmse: 26"	""	""	"total RNA"	"Trizol extraction of total RNA, followed by purification using Qiagen quick-spin columns"	"biotin"	"Biotinylated cRNA were prepared according to the standard Affymetrix protocol from 10 ug total RNA (Expression Analysis Technical Manual, 2001, Affymetrix) using robotics system (Biomek FX MicroArray Plex SA System; Beckman Coulter) to optimize consistency in processing"	"9606"	"Following fragmentation, 30 mg biotin-labeled cRNA were hybridized for 16 hr and rotated at 13 rpm at 50° C on Affymetrix Human HgU133 plus 2.0 microarrays"	"Affymetrix Genekeep GCS3000, software version 3.2.2.1515"	"post-mortem tissue"	"GC-RMA, using Genespring 7.3. data transformation: measurements <0.01 set to 0.01; per chip: normalized to the 50th percentile; per gene: normalize to median"	"GPL570"	"Nicole,Claudia,Berchtold"	"nberchto@uci.edu"	"949 824 6071"	"Carl W. Cotman"	"Institute for Memory Impairments and Neurological Disorders"	"UC Irvine"	"1226 Gillespie Neuroscience Facility"	"Irvine"	"CA"	"92697-4540"	"USA"	"ftp://ftp.ncbi.nlm.nih.gov/geo/samples/GSM1176nnn/GSM1176199/suppl/GSM1176199_1205A-07_EC-24_AffyHyb.CEL.gz"	"54675"	"Reanalyzed by: GSE133349"	""	""	"85"	"3,4"	"IV"	"entorhinal cortex"	"female"	NA	"26"
+"GSM1176200"	"entorhinal cortex_female_90_AD_36"	"GSM1176200"	"Public on Apr 21 2014"	"Jun 27 2013"	"Jun 26 2019"	"RNA"	"1"	"entorhinal cortex_female_AD"	"Homo sapiens"	"gender: female"	"age (yrs): 90"	"brain region: entorhinal cortex"	"braak stage: IV"	"apoe genotype: 3,4"	"mmse: 17"	""	""	"total RNA"	"Trizol extraction of total RNA, followed by purification using Qiagen quick-spin columns"	"biotin"	"Biotinylated cRNA were prepared according to the standard Affymetrix protocol from 10 ug total RNA (Expression Analysis Technical Manual, 2001, Affymetrix) using robotics system (Biomek FX MicroArray Plex SA System; Beckman Coulter) to optimize consistency in processing"	"9606"	"Following fragmentation, 30 mg biotin-labeled cRNA were hybridized for 16 hr and rotated at 13 rpm at 50° C on Affymetrix Human HgU133 plus 2.0 microarrays"	"Affymetrix Genekeep GCS3000, software version 3.2.2.1515"	"post-mortem tissue"	"GC-RMA, using Genespring 7.3. data transformation: measurements <0.01 set to 0.01; per chip: normalized to the 50th percentile; per gene: normalize to median"	"GPL570"	"Nicole,Claudia,Berchtold"	"nberchto@uci.edu"	"949 824 6071"	"Carl W. Cotman"	"Institute for Memory Impairments and Neurological Disorders"	"UC Irvine"	"1226 Gillespie Neuroscience Facility"	"Irvine"	"CA"	"92697-4540"	"USA"	"ftp://ftp.ncbi.nlm.nih.gov/geo/samples/GSM1176nnn/GSM1176200/suppl/GSM1176200_1205A-07-EC-36_AffyHyb.CEL.gz"	"54675"	"Reanalyzed by: GSE133349"	""	""	"90"	"3,4"	"IV"	"entorhinal cortex"	"female"	NA	"17"
+"GSM1176201"	"entorhinal cortex_female_90_AD_6"	"GSM1176201"	"Public on Apr 21 2014"	"Jun 27 2013"	"Jun 26 2019"	"RNA"	"1"	"entorhinal cortex_female_AD"	"Homo sapiens"	"gender: female"	"age (yrs): 90"	"brain region: entorhinal cortex"	"braak stage: V"	"apoe genotype: 3,4"	"mmse: 20"	""	""	"total RNA"	"Trizol extraction of total RNA, followed by purification using Qiagen quick-spin columns"	"biotin"	"Biotinylated cRNA were prepared according to the standard Affymetrix protocol from 10 ug total RNA (Expression Analysis Technical Manual, 2001, Affymetrix) using robotics system (Biomek FX MicroArray Plex SA System; Beckman Coulter) to optimize consistency in processing"	"9606"	"Following fragmentation, 30 mg biotin-labeled cRNA were hybridized for 16 hr and rotated at 13 rpm at 50° C on Affymetrix Human HgU133 plus 2.0 microarrays"	"Affymetrix Genekeep GCS3000, software version 3.2.2.1515"	"post-mortem tissue"	"GC-RMA, using Genespring 7.3. data transformation: measurements <0.01 set to 0.01; per chip: normalized to the 50th percentile; per gene: normalize to median"	"GPL570"	"Nicole,Claudia,Berchtold"	"nberchto@uci.edu"	"949 824 6071"	"Carl W. Cotman"	"Institute for Memory Impairments and Neurological Disorders"	"UC Irvine"	"1226 Gillespie Neuroscience Facility"	"Irvine"	"CA"	"92697-4540"	"USA"	"ftp://ftp.ncbi.nlm.nih.gov/geo/samples/GSM1176nnn/GSM1176201/suppl/GSM1176201_1205A-07_EC-06_AffyHyb.CEL.gz"	"54675"	"Reanalyzed by: GSE133349"	""	""	"90"	"3,4"	"V"	"entorhinal cortex"	"female"	NA	"20"
+"GSM1176202"	"entorhinal cortex_female_90_AD_75"	"GSM1176202"	"Public on Apr 21 2014"	"Jun 27 2013"	"Jun 26 2019"	"RNA"	"1"	"entorhinal cortex_female_AD"	"Homo sapiens"	"gender: female"	"age (yrs): 90"	"brain region: entorhinal cortex"	"braak stage: III"	"apoe genotype: 4,4"	"mmse: no info"	""	""	"total RNA"	"Trizol extraction of total RNA, followed by purification using Qiagen quick-spin columns"	"biotin"	"Biotinylated cRNA were prepared according to the standard Affymetrix protocol from 10 ug total RNA (Expression Analysis Technical Manual, 2001, Affymetrix) using robotics system (Biomek FX MicroArray Plex SA System; Beckman Coulter) to optimize consistency in processing"	"9606"	"Following fragmentation, 30 mg biotin-labeled cRNA were hybridized for 16 hr and rotated at 13 rpm at 50° C on Affymetrix Human HgU133 plus 2.0 microarrays"	"Affymetrix Genekeep GCS3000, software version 3.2.2.1515"	"post-mortem tissue"	"GC-RMA, using Genespring 7.3. data transformation: measurements <0.01 set to 0.01; per chip: normalized to the 50th percentile; per gene: normalize to median"	"GPL570"	"Nicole,Claudia,Berchtold"	"nberchto@uci.edu"	"949 824 6071"	"Carl W. Cotman"	"Institute for Memory Impairments and Neurological Disorders"	"UC Irvine"	"1226 Gillespie Neuroscience Facility"	"Irvine"	"CA"	"92697-4540"	"USA"	"ftp://ftp.ncbi.nlm.nih.gov/geo/samples/GSM1176nnn/GSM1176202/suppl/GSM1176202_1105A-08_EC_75_Affy.CEL.gz"	"54675"	"Reanalyzed by: GSE133349"	""	""	"90"	"4,4"	"III"	"entorhinal cortex"	"female"	NA	"no info"
+"GSM1176203"	"entorhinal cortex_female_91_AD_11"	"GSM1176203"	"Public on Apr 21 2014"	"Jun 27 2013"	"Jun 26 2019"	"RNA"	"1"	"entorhinal cortex_female_AD"	"Homo sapiens"	"gender: female"	"age (yrs): 91"	"brain region: entorhinal cortex"	"braak stage: V-VI"	"apoe genotype: 4,4"	"mmse: 11"	""	""	"total RNA"	"Trizol extraction of total RNA, followed by purification using Qiagen quick-spin columns"	"biotin"	"Biotinylated cRNA were prepared according to the standard Affymetrix protocol from 10 ug total RNA (Expression Analysis Technical Manual, 2001, Affymetrix) using robotics system (Biomek FX MicroArray Plex SA System; Beckman Coulter) to optimize consistency in processing"	"9606"	"Following fragmentation, 30 mg biotin-labeled cRNA were hybridized for 16 hr and rotated at 13 rpm at 50° C on Affymetrix Human HgU133 plus 2.0 microarrays"	"Affymetrix Genekeep GCS3000, software version 3.2.2.1515"	"post-mortem tissue"	"GC-RMA, using Genespring 7.3. data transformation: measurements <0.01 set to 0.01; per chip: normalized to the 50th percentile; per gene: normalize to median"	"GPL570"	"Nicole,Claudia,Berchtold"	"nberchto@uci.edu"	"949 824 6071"	"Carl W. Cotman"	"Institute for Memory Impairments and Neurological Disorders"	"UC Irvine"	"1226 Gillespie Neuroscience Facility"	"Irvine"	"CA"	"92697-4540"	"USA"	"ftp://ftp.ncbi.nlm.nih.gov/geo/samples/GSM1176nnn/GSM1176203/suppl/GSM1176203_1105A-08_EC_11.CEL.gz"	"54675"	"Reanalyzed by: GSE133349"	""	""	"91"	"4,4"	"V-VI"	"entorhinal cortex"	"female"	NA	"11"
+"GSM1176204"	"entorhinal cortex_male_76_AD_69"	"GSM1176204"	"Public on Apr 21 2014"	"Jun 27 2013"	"Jun 26 2019"	"RNA"	"1"	"entorhinal cortex_male_AD"	"Homo sapiens"	"gender: male"	"age (yrs): 76"	"brain region: entorhinal cortex"	"braak stage: III"	"apoe genotype: 4,4"	"mmse: no info"	""	""	"total RNA"	"Trizol extraction of total RNA, followed by purification using Qiagen quick-spin columns"	"biotin"	"Biotinylated cRNA were prepared according to the standard Affymetrix protocol from 10 ug total RNA (Expression Analysis Technical Manual, 2001, Affymetrix) using robotics system (Biomek FX MicroArray Plex SA System; Beckman Coulter) to optimize consistency in processing"	"9606"	"Following fragmentation, 30 mg biotin-labeled cRNA were hybridized for 16 hr and rotated at 13 rpm at 50° C on Affymetrix Human HgU133 plus 2.0 microarrays"	"Affymetrix Genekeep GCS3000, software version 3.2.2.1515"	"post-mortem tissue"	"GC-RMA, using Genespring 7.3. data transformation: measurements <0.01 set to 0.01; per chip: normalized to the 50th percentile; per gene: normalize to median"	"GPL570"	"Nicole,Claudia,Berchtold"	"nberchto@uci.edu"	"949 824 6071"	"Carl W. Cotman"	"Institute for Memory Impairments and Neurological Disorders"	"UC Irvine"	"1226 Gillespie Neuroscience Facility"	"Irvine"	"CA"	"92697-4540"	"USA"	"ftp://ftp.ncbi.nlm.nih.gov/geo/samples/GSM1176nnn/GSM1176204/suppl/GSM1176204_1205A-07-EC-69_AffyHyb.CEL.gz"	"54675"	"Reanalyzed by: GSE133349"	""	""	"76"	"4,4"	"III"	"entorhinal cortex"	"male"	NA	"no info"
+"GSM1176205"	"entorhinal cortex_male_85_AD_51"	"GSM1176205"	"Public on Apr 21 2014"	"Jun 27 2013"	"Jun 26 2019"	"RNA"	"1"	"entorhinal cortex_male_AD"	"Homo sapiens"	"gender: male"	"age (yrs): 85"	"brain region: entorhinal cortex"	"braak stage: III"	"apoe genotype: 3,3"	"mmse: 22"	""	""	"total RNA"	"Trizol extraction of total RNA, followed by purification using Qiagen quick-spin columns"	"biotin"	"Biotinylated cRNA were prepared according to the standard Affymetrix protocol from 10 ug total RNA (Expression Analysis Technical Manual, 2001, Affymetrix) using robotics system (Biomek FX MicroArray Plex SA System; Beckman Coulter) to optimize consistency in processing"	"9606"	"Following fragmentation, 30 mg biotin-labeled cRNA were hybridized for 16 hr and rotated at 13 rpm at 50° C on Affymetrix Human HgU133 plus 2.0 microarrays"	"Affymetrix Genekeep GCS3000, software version 3.2.2.1515"	"post-mortem tissue"	"GC-RMA, using Genespring 7.3. data transformation: measurements <0.01 set to 0.01; per chip: normalized to the 50th percentile; per gene: normalize to median"	"GPL570"	"Nicole,Claudia,Berchtold"	"nberchto@uci.edu"	"949 824 6071"	"Carl W. Cotman"	"Institute for Memory Impairments and Neurological Disorders"	"UC Irvine"	"1226 Gillespie Neuroscience Facility"	"Irvine"	"CA"	"92697-4540"	"USA"	"ftp://ftp.ncbi.nlm.nih.gov/geo/samples/GSM1176nnn/GSM1176205/suppl/GSM1176205_1105A-08_EC_51.CEL.gz"	"54675"	"Reanalyzed by: GSE133349"	""	""	"85"	"3,3"	"III"	"entorhinal cortex"	"male"	NA	"22"
+"GSM1176206"	"entorhinal cortex_male_85_AD_74"	"GSM1176206"	"Public on Apr 21 2014"	"Jun 27 2013"	"Jun 26 2019"	"RNA"	"1"	"entorhinal cortex_male_AD"	"Homo sapiens"	"gender: male"	"age (yrs): 85"	"brain region: entorhinal cortex"	"braak stage: II"	"apoe genotype: 3,4"	"mmse: no info"	""	""	"total RNA"	"Trizol extraction of total RNA, followed by purification using Qiagen quick-spin columns"	"biotin"	"Biotinylated cRNA were prepared according to the standard Affymetrix protocol from 10 ug total RNA (Expression Analysis Technical Manual, 2001, Affymetrix) using robotics system (Biomek FX MicroArray Plex SA System; Beckman Coulter) to optimize consistency in processing"	"9606"	"Following fragmentation, 30 mg biotin-labeled cRNA were hybridized for 16 hr and rotated at 13 rpm at 50° C on Affymetrix Human HgU133 plus 2.0 microarrays"	"Affymetrix Genekeep GCS3000, software version 3.2.2.1515"	"post-mortem tissue"	"GC-RMA, using Genespring 7.3. data transformation: measurements <0.01 set to 0.01; per chip: normalized to the 50th percentile; per gene: normalize to median"	"GPL570"	"Nicole,Claudia,Berchtold"	"nberchto@uci.edu"	"949 824 6071"	"Carl W. Cotman"	"Institute for Memory Impairments and Neurological Disorders"	"UC Irvine"	"1226 Gillespie Neuroscience Facility"	"Irvine"	"CA"	"92697-4540"	"USA"	"ftp://ftp.ncbi.nlm.nih.gov/geo/samples/GSM1176nnn/GSM1176206/suppl/GSM1176206_1105A-08_EC_74.CEL.gz"	"54675"	"Reanalyzed by: GSE133349"	""	""	"85"	"3,4"	"II"	"entorhinal cortex"	"male"	NA	"no info"
+"GSM1176207"	"entorhinal cortex_male_86_AD_92"	"GSM1176207"	"Public on Apr 21 2014"	"Jun 27 2013"	"Jun 26 2019"	"RNA"	"1"	"entorhinal cortex_male_AD"	"Homo sapiens"	"gender: male"	"age (yrs): 86"	"brain region: entorhinal cortex"	"braak stage: IV"	"apoe genotype: 3,3"	"mmse: 19"	""	""	"total RNA"	"Trizol extraction of total RNA, followed by purification using Qiagen quick-spin columns"	"biotin"	"Biotinylated cRNA were prepared according to the standard Affymetrix protocol from 10 ug total RNA (Expression Analysis Technical Manual, 2001, Affymetrix) using robotics system (Biomek FX MicroArray Plex SA System; Beckman Coulter) to optimize consistency in processing"	"9606"	"Following fragmentation, 30 mg biotin-labeled cRNA were hybridized for 16 hr and rotated at 13 rpm at 50° C on Affymetrix Human HgU133 plus 2.0 microarrays"	"Affymetrix Genekeep GCS3000, software version 3.2.2.1515"	"post-mortem tissue"	"GC-RMA, using Genespring 7.3. data transformation: measurements <0.01 set to 0.01; per chip: normalized to the 50th percentile; per gene: normalize to median"	"GPL570"	"Nicole,Claudia,Berchtold"	"nberchto@uci.edu"	"949 824 6071"	"Carl W. Cotman"	"Institute for Memory Impairments and Neurological Disorders"	"UC Irvine"	"1226 Gillespie Neuroscience Facility"	"Irvine"	"CA"	"92697-4540"	"USA"	"ftp://ftp.ncbi.nlm.nih.gov/geo/samples/GSM1176nnn/GSM1176207/suppl/GSM1176207_1105A-08_EC_92_Affy.CEL.gz"	"54675"	"Reanalyzed by: GSE133349"	""	""	"86"	"3,3"	"IV"	"entorhinal cortex"	"male"	NA	"19"
+"GSM1176208"	"entorhinal cortex_male_87_AD_19"	"GSM1176208"	"Public on Apr 21 2014"	"Jun 27 2013"	"Jun 26 2019"	"RNA"	"1"	"entorhinal cortex_male_AD"	"Homo sapiens"	"gender: male"	"age (yrs): 87"	"brain region: entorhinal cortex"	"braak stage: V"	"apoe genotype: 3,4"	"mmse: 12"	""	""	"total RNA"	"Trizol extraction of total RNA, followed by purification using Qiagen quick-spin columns"	"biotin"	"Biotinylated cRNA were prepared according to the standard Affymetrix protocol from 10 ug total RNA (Expression Analysis Technical Manual, 2001, Affymetrix) using robotics system (Biomek FX MicroArray Plex SA System; Beckman Coulter) to optimize consistency in processing"	"9606"	"Following fragmentation, 30 mg biotin-labeled cRNA were hybridized for 16 hr and rotated at 13 rpm at 50° C on Affymetrix Human HgU133 plus 2.0 microarrays"	"Affymetrix Genekeep GCS3000, software version 3.2.2.1515"	"post-mortem tissue"	"GC-RMA, using Genespring 7.3. data transformation: measurements <0.01 set to 0.01; per chip: normalized to the 50th percentile; per gene: normalize to median"	"GPL570"	"Nicole,Claudia,Berchtold"	"nberchto@uci.edu"	"949 824 6071"	"Carl W. Cotman"	"Institute for Memory Impairments and Neurological Disorders"	"UC Irvine"	"1226 Gillespie Neuroscience Facility"	"Irvine"	"CA"	"92697-4540"	"USA"	"ftp://ftp.ncbi.nlm.nih.gov/geo/samples/GSM1176nnn/GSM1176208/suppl/GSM1176208_1205A-07_EC-19_AffyHyb.CEL.gz"	"54675"	"Reanalyzed by: GSE133349"	""	""	"87"	"3,4"	"V"	"entorhinal cortex"	"male"	NA	"12"
+"GSM1176209"	"entorhinal cortex_male_94_AD_5"	"GSM1176209"	"Public on Apr 21 2014"	"Jun 27 2013"	"Jun 26 2019"	"RNA"	"1"	"entorhinal cortex_male_AD"	"Homo sapiens"	"gender: male"	"age (yrs): 94"	"brain region: entorhinal cortex"	"braak stage: VI"	"apoe genotype: 3,3"	"mmse: 15"	""	""	"total RNA"	"Trizol extraction of total RNA, followed by purification using Qiagen quick-spin columns"	"biotin"	"Biotinylated cRNA were prepared according to the standard Affymetrix protocol from 10 ug total RNA (Expression Analysis Technical Manual, 2001, Affymetrix) using robotics system (Biomek FX MicroArray Plex SA System; Beckman Coulter) to optimize consistency in processing"	"9606"	"Following fragmentation, 30 mg biotin-labeled cRNA were hybridized for 16 hr and rotated at 13 rpm at 50° C on Affymetrix Human HgU133 plus 2.0 microarrays"	"Affymetrix Genekeep GCS3000, software version 3.2.2.1515"	"post-mortem tissue"	"GC-RMA, using Genespring 7.3. data transformation: measurements <0.01 set to 0.01; per chip: normalized to the 50th percentile; per gene: normalize to median"	"GPL570"	"Nicole,Claudia,Berchtold"	"nberchto@uci.edu"	"949 824 6071"	"Carl W. Cotman"	"Institute for Memory Impairments and Neurological Disorders"	"UC Irvine"	"1226 Gillespie Neuroscience Facility"	"Irvine"	"CA"	"92697-4540"	"USA"	"ftp://ftp.ncbi.nlm.nih.gov/geo/samples/GSM1176nnn/GSM1176209/suppl/GSM1176209_0606A-05_EC_05_AffyHyb.CEL.gz"	"54675"	"Reanalyzed by: GSE133349"	""	""	"94"	"3,3"	"VI"	"entorhinal cortex"	"male"	NA	"15"
+"GSM1176210"	"entorhinal cortex_male_94_AD_90"	"GSM1176210"	"Public on Apr 21 2014"	"Jun 27 2013"	"Jun 26 2019"	"RNA"	"1"	"entorhinal cortex_male_AD"	"Homo sapiens"	"gender: male"	"age (yrs): 94"	"brain region: entorhinal cortex"	"braak stage: IV"	"apoe genotype: 3,3"	"mmse: no info"	""	""	"total RNA"	"Trizol extraction of total RNA, followed by purification using Qiagen quick-spin columns"	"biotin"	"Biotinylated cRNA were prepared according to the standard Affymetrix protocol from 10 ug total RNA (Expression Analysis Technical Manual, 2001, Affymetrix) using robotics system (Biomek FX MicroArray Plex SA System; Beckman Coulter) to optimize consistency in processing"	"9606"	"Following fragmentation, 30 mg biotin-labeled cRNA were hybridized for 16 hr and rotated at 13 rpm at 50° C on Affymetrix Human HgU133 plus 2.0 microarrays"	"Affymetrix Genekeep GCS3000, software version 3.2.2.1515"	"post-mortem tissue"	"GC-RMA, using Genespring 7.3. data transformation: measurements <0.01 set to 0.01; per chip: normalized to the 50th percentile; per gene: normalize to median"	"GPL570"	"Nicole,Claudia,Berchtold"	"nberchto@uci.edu"	"949 824 6071"	"Carl W. Cotman"	"Institute for Memory Impairments and Neurological Disorders"	"UC Irvine"	"1226 Gillespie Neuroscience Facility"	"Irvine"	"CA"	"92697-4540"	"USA"	"ftp://ftp.ncbi.nlm.nih.gov/geo/samples/GSM1176nnn/GSM1176210/suppl/GSM1176210_0606A-05_EC_90_AffyHyb.CEL.gz"	"54675"	"Reanalyzed by: GSE133349"	""	""	"94"	"3,3"	"IV"	"entorhinal cortex"	"male"	NA	"no info"
+"GSM1176211"	"hippocampus_female_60_AD_20"	"GSM1176211"	"Public on Apr 21 2014"	"Jun 27 2013"	"Jun 26 2019"	"RNA"	"1"	"hippocampus_female_AD"	"Homo sapiens"	"gender: female"	"age (yrs): 60"	"brain region: hippocampus"	"braak stage: VI"	"apoe genotype: 3,4"	"mmse: 12"	""	""	"total RNA"	"Trizol extraction of total RNA, followed by purification using Qiagen quick-spin columns"	"biotin"	"Biotinylated cRNA were prepared according to the standard Affymetrix protocol from 10 ug total RNA (Expression Analysis Technical Manual, 2001, Affymetrix) using robotics system (Biomek FX MicroArray Plex SA System; Beckman Coulter) to optimize consistency in processing"	"9606"	"Following fragmentation, 30 mg biotin-labeled cRNA were hybridized for 16 hr and rotated at 13 rpm at 50° C on Affymetrix Human HgU133 plus 2.0 microarrays"	"Affymetrix Genekeep GCS3000, software version 3.2.2.1515"	"post-mortem tissue"	"GC-RMA, using Genespring 7.3. data transformation: measurements <0.01 set to 0.01; per chip: normalized to the 50th percentile; per gene: normalize to median"	"GPL570"	"Nicole,Claudia,Berchtold"	"nberchto@uci.edu"	"949 824 6071"	"Carl W. Cotman"	"Institute for Memory Impairments and Neurological Disorders"	"UC Irvine"	"1226 Gillespie Neuroscience Facility"	"Irvine"	"CA"	"92697-4540"	"USA"	"ftp://ftp.ncbi.nlm.nih.gov/geo/samples/GSM1176nnn/GSM1176211/suppl/GSM1176211_1105A-08_HC-20_Affy_2.CEL.gz"	"54675"	"Reanalyzed by: GSE133349"	""	""	"60"	"3,4"	"VI"	"hippocampus"	"female"	NA	"12"
+"GSM1176212"	"hippocampus_female_74_AD_37"	"GSM1176212"	"Public on Apr 21 2014"	"Jun 27 2013"	"Jun 26 2019"	"RNA"	"1"	"hippocampus_female_AD"	"Homo sapiens"	"gender: female"	"age (yrs): 74"	"brain region: hippocampus"	"braak stage: VI"	"apoe genotype: 2,4"	"mmse: 17"	""	""	"total RNA"	"Trizol extraction of total RNA, followed by purification using Qiagen quick-spin columns"	"biotin"	"Biotinylated cRNA were prepared according to the standard Affymetrix protocol from 10 ug total RNA (Expression Analysis Technical Manual, 2001, Affymetrix) using robotics system (Biomek FX MicroArray Plex SA System; Beckman Coulter) to optimize consistency in processing"	"9606"	"Following fragmentation, 30 mg biotin-labeled cRNA were hybridized for 16 hr and rotated at 13 rpm at 50° C on Affymetrix Human HgU133 plus 2.0 microarrays"	"Affymetrix Genekeep GCS3000, software version 3.2.2.1515"	"post-mortem tissue"	"GC-RMA, using Genespring 7.3. data transformation: measurements <0.01 set to 0.01; per chip: normalized to the 50th percentile; per gene: normalize to median"	"GPL570"	"Nicole,Claudia,Berchtold"	"nberchto@uci.edu"	"949 824 6071"	"Carl W. Cotman"	"Institute for Memory Impairments and Neurological Disorders"	"UC Irvine"	"1226 Gillespie Neuroscience Facility"	"Irvine"	"CA"	"92697-4540"	"USA"	"ftp://ftp.ncbi.nlm.nih.gov/geo/samples/GSM1176nnn/GSM1176212/suppl/GSM1176212_1105A-08_HC_37.CEL.gz"	"54675"	"Reanalyzed by: GSE133349"	""	""	"74"	"2,4"	"VI"	"hippocampus"	"female"	NA	"17"
+"GSM1176213"	"hippocampus_female_76_AD_48"	"GSM1176213"	"Public on Apr 21 2014"	"Jun 27 2013"	"Jun 26 2019"	"RNA"	"1"	"hippocampus_female_AD"	"Homo sapiens"	"gender: female"	"age (yrs): 76"	"brain region: hippocampus"	"braak stage: V"	"apoe genotype: 3,3"	"mmse: 3"	""	""	"total RNA"	"Trizol extraction of total RNA, followed by purification using Qiagen quick-spin columns"	"biotin"	"Biotinylated cRNA were prepared according to the standard Affymetrix protocol from 10 ug total RNA (Expression Analysis Technical Manual, 2001, Affymetrix) using robotics system (Biomek FX MicroArray Plex SA System; Beckman Coulter) to optimize consistency in processing"	"9606"	"Following fragmentation, 30 mg biotin-labeled cRNA were hybridized for 16 hr and rotated at 13 rpm at 50° C on Affymetrix Human HgU133 plus 2.0 microarrays"	"Affymetrix Genekeep GCS3000, software version 3.2.2.1515"	"post-mortem tissue"	"GC-RMA, using Genespring 7.3. data transformation: measurements <0.01 set to 0.01; per chip: normalized to the 50th percentile; per gene: normalize to median"	"GPL570"	"Nicole,Claudia,Berchtold"	"nberchto@uci.edu"	"949 824 6071"	"Carl W. Cotman"	"Institute for Memory Impairments and Neurological Disorders"	"UC Irvine"	"1226 Gillespie Neuroscience Facility"	"Irvine"	"CA"	"92697-4540"	"USA"	"ftp://ftp.ncbi.nlm.nih.gov/geo/samples/GSM1176nnn/GSM1176213/suppl/GSM1176213_1205A-07_HC-48_AffyHyb.CEL.gz"	"54675"	"Reanalyzed by: GSE133349"	""	""	"76"	"3,3"	"V"	"hippocampus"	"female"	NA	"3"
+"GSM1176214"	"hippocampus_female_79_AD_16"	"GSM1176214"	"Public on Apr 21 2014"	"Jun 27 2013"	"Jun 26 2019"	"RNA"	"1"	"hippocampus_female_AD"	"Homo sapiens"	"gender: female"	"age (yrs): 79"	"brain region: hippocampus"	"braak stage: VI"	"apoe genotype: 3,4"	"mmse: 0"	""	""	"total RNA"	"Trizol extraction of total RNA, followed by purification using Qiagen quick-spin columns"	"biotin"	"Biotinylated cRNA were prepared according to the standard Affymetrix protocol from 10 ug total RNA (Expression Analysis Technical Manual, 2001, Affymetrix) using robotics system (Biomek FX MicroArray Plex SA System; Beckman Coulter) to optimize consistency in processing"	"9606"	"Following fragmentation, 30 mg biotin-labeled cRNA were hybridized for 16 hr and rotated at 13 rpm at 50° C on Affymetrix Human HgU133 plus 2.0 microarrays"	"Affymetrix Genekeep GCS3000, software version 3.2.2.1515"	"post-mortem tissue"	"GC-RMA, using Genespring 7.3. data transformation: measurements <0.01 set to 0.01; per chip: normalized to the 50th percentile; per gene: normalize to median"	"GPL570"	"Nicole,Claudia,Berchtold"	"nberchto@uci.edu"	"949 824 6071"	"Carl W. Cotman"	"Institute for Memory Impairments and Neurological Disorders"	"UC Irvine"	"1226 Gillespie Neuroscience Facility"	"Irvine"	"CA"	"92697-4540"	"USA"	"ftp://ftp.ncbi.nlm.nih.gov/geo/samples/GSM1176nnn/GSM1176214/suppl/GSM1176214_1205A-07-HC-16_AffyHyb.CEL.gz"	"54675"	"Reanalyzed by: GSE133349"	""	""	"79"	"3,4"	"VI"	"hippocampus"	"female"	NA	"0"
+"GSM1176215"	"hippocampus_female_86_AD_15"	"GSM1176215"	"Public on Apr 21 2014"	"Jun 27 2013"	"Jun 26 2019"	"RNA"	"1"	"hippocampus_female_AD"	"Homo sapiens"	"gender: female"	"age (yrs): 86"	"brain region: hippocampus"	"braak stage: VI"	"apoe genotype: 4,4"	"mmse: 9"	""	""	"total RNA"	"Trizol extraction of total RNA, followed by purification using Qiagen quick-spin columns"	"biotin"	"Biotinylated cRNA were prepared according to the standard Affymetrix protocol from 10 ug total RNA (Expression Analysis Technical Manual, 2001, Affymetrix) using robotics system (Biomek FX MicroArray Plex SA System; Beckman Coulter) to optimize consistency in processing"	"9606"	"Following fragmentation, 30 mg biotin-labeled cRNA were hybridized for 16 hr and rotated at 13 rpm at 50° C on Affymetrix Human HgU133 plus 2.0 microarrays"	"Affymetrix Genekeep GCS3000, software version 3.2.2.1515"	"post-mortem tissue"	"GC-RMA, using Genespring 7.3. data transformation: measurements <0.01 set to 0.01; per chip: normalized to the 50th percentile; per gene: normalize to median"	"GPL570"	"Nicole,Claudia,Berchtold"	"nberchto@uci.edu"	"949 824 6071"	"Carl W. Cotman"	"Institute for Memory Impairments and Neurological Disorders"	"UC Irvine"	"1226 Gillespie Neuroscience Facility"	"Irvine"	"CA"	"92697-4540"	"USA"	"ftp://ftp.ncbi.nlm.nih.gov/geo/samples/GSM1176nnn/GSM1176215/suppl/GSM1176215_1105A-08_HC_15.CEL.gz"	"54675"	"Reanalyzed by: GSE133349"	""	""	"86"	"4,4"	"VI"	"hippocampus"	"female"	NA	"9"
+"GSM1176216"	"hippocampus_female_85_AD_24"	"GSM1176216"	"Public on Apr 21 2014"	"Jun 27 2013"	"Jun 26 2019"	"RNA"	"1"	"hippocampus_female_AD"	"Homo sapiens"	"gender: female"	"age (yrs): 85"	"brain region: hippocampus"	"braak stage: IV"	"apoe genotype: 3,4"	"mmse: 26"	""	""	"total RNA"	"Trizol extraction of total RNA, followed by purification using Qiagen quick-spin columns"	"biotin"	"Biotinylated cRNA were prepared according to the standard Affymetrix protocol from 10 ug total RNA (Expression Analysis Technical Manual, 2001, Affymetrix) using robotics system (Biomek FX MicroArray Plex SA System; Beckman Coulter) to optimize consistency in processing"	"9606"	"Following fragmentation, 30 mg biotin-labeled cRNA were hybridized for 16 hr and rotated at 13 rpm at 50° C on Affymetrix Human HgU133 plus 2.0 microarrays"	"Affymetrix Genekeep GCS3000, software version 3.2.2.1515"	"post-mortem tissue"	"GC-RMA, using Genespring 7.3. data transformation: measurements <0.01 set to 0.01; per chip: normalized to the 50th percentile; per gene: normalize to median"	"GPL570"	"Nicole,Claudia,Berchtold"	"nberchto@uci.edu"	"949 824 6071"	"Carl W. Cotman"	"Institute for Memory Impairments and Neurological Disorders"	"UC Irvine"	"1226 Gillespie Neuroscience Facility"	"Irvine"	"CA"	"92697-4540"	"USA"	"ftp://ftp.ncbi.nlm.nih.gov/geo/samples/GSM1176nnn/GSM1176216/suppl/GSM1176216_1105A-08_HC_24.CEL.gz"	"54675"	"Reanalyzed by: GSE133349"	""	""	"85"	"3,4"	"IV"	"hippocampus"	"female"	NA	"26"
+"GSM1176217"	"hippocampus_female_90_AD_23"	"GSM1176217"	"Public on Apr 21 2014"	"Jun 27 2013"	"Jun 26 2019"	"RNA"	"1"	"hippocampus_female_AD"	"Homo sapiens"	"gender: female"	"age (yrs): 90"	"brain region: hippocampus"	"braak stage: VI"	"apoe genotype: 3,4"	"mmse: 12"	""	""	"total RNA"	"Trizol extraction of total RNA, followed by purification using Qiagen quick-spin columns"	"biotin"	"Biotinylated cRNA were prepared according to the standard Affymetrix protocol from 10 ug total RNA (Expression Analysis Technical Manual, 2001, Affymetrix) using robotics system (Biomek FX MicroArray Plex SA System; Beckman Coulter) to optimize consistency in processing"	"9606"	"Following fragmentation, 30 mg biotin-labeled cRNA were hybridized for 16 hr and rotated at 13 rpm at 50° C on Affymetrix Human HgU133 plus 2.0 microarrays"	"Affymetrix Genekeep GCS3000, software version 3.2.2.1515"	"post-mortem tissue"	"GC-RMA, using Genespring 7.3. data transformation: measurements <0.01 set to 0.01; per chip: normalized to the 50th percentile; per gene: normalize to median"	"GPL570"	"Nicole,Claudia,Berchtold"	"nberchto@uci.edu"	"949 824 6071"	"Carl W. Cotman"	"Institute for Memory Impairments and Neurological Disorders"	"UC Irvine"	"1226 Gillespie Neuroscience Facility"	"Irvine"	"CA"	"92697-4540"	"USA"	"ftp://ftp.ncbi.nlm.nih.gov/geo/samples/GSM1176nnn/GSM1176217/suppl/GSM1176217_0606A-05_HC_23_AffyHyb.CEL.gz"	"54675"	"Reanalyzed by: GSE133349"	""	""	"90"	"3,4"	"VI"	"hippocampus"	"female"	NA	"12"
+"GSM1176218"	"hippocampus_female_90_AD_36"	"GSM1176218"	"Public on Apr 21 2014"	"Jun 27 2013"	"Jun 26 2019"	"RNA"	"1"	"hippocampus_female_AD"	"Homo sapiens"	"gender: female"	"age (yrs): 90"	"brain region: hippocampus"	"braak stage: IV"	"apoe genotype: 3,4"	"mmse: 17"	""	""	"total RNA"	"Trizol extraction of total RNA, followed by purification using Qiagen quick-spin columns"	"biotin"	"Biotinylated cRNA were prepared according to the standard Affymetrix protocol from 10 ug total RNA (Expression Analysis Technical Manual, 2001, Affymetrix) using robotics system (Biomek FX MicroArray Plex SA System; Beckman Coulter) to optimize consistency in processing"	"9606"	"Following fragmentation, 30 mg biotin-labeled cRNA were hybridized for 16 hr and rotated at 13 rpm at 50° C on Affymetrix Human HgU133 plus 2.0 microarrays"	"Affymetrix Genekeep GCS3000, software version 3.2.2.1515"	"post-mortem tissue"	"GC-RMA, using Genespring 7.3. data transformation: measurements <0.01 set to 0.01; per chip: normalized to the 50th percentile; per gene: normalize to median"	"GPL570"	"Nicole,Claudia,Berchtold"	"nberchto@uci.edu"	"949 824 6071"	"Carl W. Cotman"	"Institute for Memory Impairments and Neurological Disorders"	"UC Irvine"	"1226 Gillespie Neuroscience Facility"	"Irvine"	"CA"	"92697-4540"	"USA"	"ftp://ftp.ncbi.nlm.nih.gov/geo/samples/GSM1176nnn/GSM1176218/suppl/GSM1176218_0606A-05_HC_36_AffyHyb.CEL.gz"	"54675"	"Reanalyzed by: GSE133349"	""	""	"90"	"3,4"	"IV"	"hippocampus"	"female"	NA	"17"
+"GSM1176219"	"hippocampus_female_90_AD_75"	"GSM1176219"	"Public on Apr 21 2014"	"Jun 27 2013"	"Jun 26 2019"	"RNA"	"1"	"hippocampus_female_AD"	"Homo sapiens"	"gender: female"	"age (yrs): 90"	"brain region: hippocampus"	"braak stage: III"	"apoe genotype: 4,4"	"mmse: no info"	""	""	"total RNA"	"Trizol extraction of total RNA, followed by purification using Qiagen quick-spin columns"	"biotin"	"Biotinylated cRNA were prepared according to the standard Affymetrix protocol from 10 ug total RNA (Expression Analysis Technical Manual, 2001, Affymetrix) using robotics system (Biomek FX MicroArray Plex SA System; Beckman Coulter) to optimize consistency in processing"	"9606"	"Following fragmentation, 30 mg biotin-labeled cRNA were hybridized for 16 hr and rotated at 13 rpm at 50° C on Affymetrix Human HgU133 plus 2.0 microarrays"	"Affymetrix Genekeep GCS3000, software version 3.2.2.1515"	"post-mortem tissue"	"GC-RMA, using Genespring 7.3. data transformation: measurements <0.01 set to 0.01; per chip: normalized to the 50th percentile; per gene: normalize to median"	"GPL570"	"Nicole,Claudia,Berchtold"	"nberchto@uci.edu"	"949 824 6071"	"Carl W. Cotman"	"Institute for Memory Impairments and Neurological Disorders"	"UC Irvine"	"1226 Gillespie Neuroscience Facility"	"Irvine"	"CA"	"92697-4540"	"USA"	"ftp://ftp.ncbi.nlm.nih.gov/geo/samples/GSM1176nnn/GSM1176219/suppl/GSM1176219_1105A-08_HC-75_Affy.CEL.gz"	"54675"	"Reanalyzed by: GSE133349"	""	""	"90"	"4,4"	"III"	"hippocampus"	"female"	NA	"no info"
+"GSM1176220"	"hippocampus_female_91_AD_11"	"GSM1176220"	"Public on Apr 21 2014"	"Jun 27 2013"	"Jun 26 2019"	"RNA"	"1"	"hippocampus_female_AD"	"Homo sapiens"	"gender: female"	"age (yrs): 91"	"brain region: hippocampus"	"braak stage: V-VI"	"apoe genotype: 4,4"	"mmse: 11"	""	""	"total RNA"	"Trizol extraction of total RNA, followed by purification using Qiagen quick-spin columns"	"biotin"	"Biotinylated cRNA were prepared according to the standard Affymetrix protocol from 10 ug total RNA (Expression Analysis Technical Manual, 2001, Affymetrix) using robotics system (Biomek FX MicroArray Plex SA System; Beckman Coulter) to optimize consistency in processing"	"9606"	"Following fragmentation, 30 mg biotin-labeled cRNA were hybridized for 16 hr and rotated at 13 rpm at 50° C on Affymetrix Human HgU133 plus 2.0 microarrays"	"Affymetrix Genekeep GCS3000, software version 3.2.2.1515"	"post-mortem tissue"	"GC-RMA, using Genespring 7.3. data transformation: measurements <0.01 set to 0.01; per chip: normalized to the 50th percentile; per gene: normalize to median"	"GPL570"	"Nicole,Claudia,Berchtold"	"nberchto@uci.edu"	"949 824 6071"	"Carl W. Cotman"	"Institute for Memory Impairments and Neurological Disorders"	"UC Irvine"	"1226 Gillespie Neuroscience Facility"	"Irvine"	"CA"	"92697-4540"	"USA"	"ftp://ftp.ncbi.nlm.nih.gov/geo/samples/GSM1176nnn/GSM1176220/suppl/GSM1176220_1105A-08_HC-11_Affy.CEL.gz"	"54675"	"Reanalyzed by: GSE133349"	""	""	"91"	"4,4"	"V-VI"	"hippocampus"	"female"	NA	"11"
+"GSM1176221"	"hippocampus_male_76_AD_33"	"GSM1176221"	"Public on Apr 21 2014"	"Jun 27 2013"	"Jun 26 2019"	"RNA"	"1"	"hippocampus_male_AD"	"Homo sapiens"	"gender: male"	"age (yrs): 76"	"brain region: hippocampus"	"braak stage: V"	"apoe genotype: 4,4"	"mmse: 0"	""	""	"total RNA"	"Trizol extraction of total RNA, followed by purification using Qiagen quick-spin columns"	"biotin"	"Biotinylated cRNA were prepared according to the standard Affymetrix protocol from 10 ug total RNA (Expression Analysis Technical Manual, 2001, Affymetrix) using robotics system (Biomek FX MicroArray Plex SA System; Beckman Coulter) to optimize consistency in processing"	"9606"	"Following fragmentation, 30 mg biotin-labeled cRNA were hybridized for 16 hr and rotated at 13 rpm at 50° C on Affymetrix Human HgU133 plus 2.0 microarrays"	"Affymetrix Genekeep GCS3000, software version 3.2.2.1515"	"post-mortem tissue"	"GC-RMA, using Genespring 7.3. data transformation: measurements <0.01 set to 0.01; per chip: normalized to the 50th percentile; per gene: normalize to median"	"GPL570"	"Nicole,Claudia,Berchtold"	"nberchto@uci.edu"	"949 824 6071"	"Carl W. Cotman"	"Institute for Memory Impairments and Neurological Disorders"	"UC Irvine"	"1226 Gillespie Neuroscience Facility"	"Irvine"	"CA"	"92697-4540"	"USA"	"ftp://ftp.ncbi.nlm.nih.gov/geo/samples/GSM1176nnn/GSM1176221/suppl/GSM1176221_1105A-08_HC_33_Affy.CEL.gz"	"54675"	"Reanalyzed by: GSE133349"	""	""	"76"	"4,4"	"V"	"hippocampus"	"male"	NA	"0"
+"GSM1176222"	"hippocampus_male_76_AD_69"	"GSM1176222"	"Public on Apr 21 2014"	"Jun 27 2013"	"Jun 26 2019"	"RNA"	"1"	"hippocampus_male_AD"	"Homo sapiens"	"gender: male"	"age (yrs): 76"	"brain region: hippocampus"	"braak stage: III"	"apoe genotype: 4,4"	"mmse: no info"	""	""	"total RNA"	"Trizol extraction of total RNA, followed by purification using Qiagen quick-spin columns"	"biotin"	"Biotinylated cRNA were prepared according to the standard Affymetrix protocol from 10 ug total RNA (Expression Analysis Technical Manual, 2001, Affymetrix) using robotics system (Biomek FX MicroArray Plex SA System; Beckman Coulter) to optimize consistency in processing"	"9606"	"Following fragmentation, 30 mg biotin-labeled cRNA were hybridized for 16 hr and rotated at 13 rpm at 50° C on Affymetrix Human HgU133 plus 2.0 microarrays"	"Affymetrix Genekeep GCS3000, software version 3.2.2.1515"	"post-mortem tissue"	"GC-RMA, using Genespring 7.3. data transformation: measurements <0.01 set to 0.01; per chip: normalized to the 50th percentile; per gene: normalize to median"	"GPL570"	"Nicole,Claudia,Berchtold"	"nberchto@uci.edu"	"949 824 6071"	"Carl W. Cotman"	"Institute for Memory Impairments and Neurological Disorders"	"UC Irvine"	"1226 Gillespie Neuroscience Facility"	"Irvine"	"CA"	"92697-4540"	"USA"	"ftp://ftp.ncbi.nlm.nih.gov/geo/samples/GSM1176nnn/GSM1176222/suppl/GSM1176222_1105A-08_HC-69_Affy.CEL.gz"	"54675"	"Reanalyzed by: GSE133349"	""	""	"76"	"4,4"	"III"	"hippocampus"	"male"	NA	"no info"
+"GSM1176223"	"hippocampus_male_79_AD_7"	"GSM1176223"	"Public on Apr 21 2014"	"Jun 27 2013"	"Jun 26 2019"	"RNA"	"1"	"hippocampus_male_AD"	"Homo sapiens"	"gender: male"	"age (yrs): 79"	"brain region: hippocampus"	"braak stage: VI"	"apoe genotype: 3,4"	"mmse: 6"	""	""	"total RNA"	"Trizol extraction of total RNA, followed by purification using Qiagen quick-spin columns"	"biotin"	"Biotinylated cRNA were prepared according to the standard Affymetrix protocol from 10 ug total RNA (Expression Analysis Technical Manual, 2001, Affymetrix) using robotics system (Biomek FX MicroArray Plex SA System; Beckman Coulter) to optimize consistency in processing"	"9606"	"Following fragmentation, 30 mg biotin-labeled cRNA were hybridized for 16 hr and rotated at 13 rpm at 50° C on Affymetrix Human HgU133 plus 2.0 microarrays"	"Affymetrix Genekeep GCS3000, software version 3.2.2.1515"	"post-mortem tissue"	"GC-RMA, using Genespring 7.3. data transformation: measurements <0.01 set to 0.01; per chip: normalized to the 50th percentile; per gene: normalize to median"	"GPL570"	"Nicole,Claudia,Berchtold"	"nberchto@uci.edu"	"949 824 6071"	"Carl W. Cotman"	"Institute for Memory Impairments and Neurological Disorders"	"UC Irvine"	"1226 Gillespie Neuroscience Facility"	"Irvine"	"CA"	"92697-4540"	"USA"	"ftp://ftp.ncbi.nlm.nih.gov/geo/samples/GSM1176nnn/GSM1176223/suppl/GSM1176223_0606A-05_HC_07_AffyHyb.CEL.gz"	"54675"	"Reanalyzed by: GSE133349"	""	""	"79"	"3,4"	"VI"	"hippocampus"	"male"	NA	"6"
+"GSM1176224"	"hippocampus_male_80_AD_43"	"GSM1176224"	"Public on Apr 21 2014"	"Jun 27 2013"	"Jun 26 2019"	"RNA"	"1"	"hippocampus_male_AD"	"Homo sapiens"	"gender: male"	"age (yrs): 80"	"brain region: hippocampus"	"braak stage: no info"	"apoe genotype: 3,3"	"mmse: 23"	""	""	"total RNA"	"Trizol extraction of total RNA, followed by purification using Qiagen quick-spin columns"	"biotin"	"Biotinylated cRNA were prepared according to the standard Affymetrix protocol from 10 ug total RNA (Expression Analysis Technical Manual, 2001, Affymetrix) using robotics system (Biomek FX MicroArray Plex SA System; Beckman Coulter) to optimize consistency in processing"	"9606"	"Following fragmentation, 30 mg biotin-labeled cRNA were hybridized for 16 hr and rotated at 13 rpm at 50° C on Affymetrix Human HgU133 plus 2.0 microarrays"	"Affymetrix Genekeep GCS3000, software version 3.2.2.1515"	"post-mortem tissue"	"GC-RMA, using Genespring 7.3. data transformation: measurements <0.01 set to 0.01; per chip: normalized to the 50th percentile; per gene: normalize to median"	"GPL570"	"Nicole,Claudia,Berchtold"	"nberchto@uci.edu"	"949 824 6071"	"Carl W. Cotman"	"Institute for Memory Impairments and Neurological Disorders"	"UC Irvine"	"1226 Gillespie Neuroscience Facility"	"Irvine"	"CA"	"92697-4540"	"USA"	"ftp://ftp.ncbi.nlm.nih.gov/geo/samples/GSM1176nnn/GSM1176224/suppl/GSM1176224_1205A-07_HC-43_AffyHyb.CEL.gz"	"54675"	"Reanalyzed by: GSE133349"	""	""	"80"	"3,3"	"no info"	"hippocampus"	"male"	NA	"23"
+"GSM1176225"	"hippocampus_male_85_AD_51"	"GSM1176225"	"Public on Apr 21 2014"	"Jun 27 2013"	"Jun 26 2019"	"RNA"	"1"	"hippocampus_male_AD"	"Homo sapiens"	"gender: male"	"age (yrs): 85"	"brain region: hippocampus"	"braak stage: III"	"apoe genotype: 3,3"	"mmse: 22"	""	""	"total RNA"	"Trizol extraction of total RNA, followed by purification using Qiagen quick-spin columns"	"biotin"	"Biotinylated cRNA were prepared according to the standard Affymetrix protocol from 10 ug total RNA (Expression Analysis Technical Manual, 2001, Affymetrix) using robotics system (Biomek FX MicroArray Plex SA System; Beckman Coulter) to optimize consistency in processing"	"9606"	"Following fragmentation, 30 mg biotin-labeled cRNA were hybridized for 16 hr and rotated at 13 rpm at 50° C on Affymetrix Human HgU133 plus 2.0 microarrays"	"Affymetrix Genekeep GCS3000, software version 3.2.2.1515"	"post-mortem tissue"	"GC-RMA, using Genespring 7.3. data transformation: measurements <0.01 set to 0.01; per chip: normalized to the 50th percentile; per gene: normalize to median"	"GPL570"	"Nicole,Claudia,Berchtold"	"nberchto@uci.edu"	"949 824 6071"	"Carl W. Cotman"	"Institute for Memory Impairments and Neurological Disorders"	"UC Irvine"	"1226 Gillespie Neuroscience Facility"	"Irvine"	"CA"	"92697-4540"	"USA"	"ftp://ftp.ncbi.nlm.nih.gov/geo/samples/GSM1176nnn/GSM1176225/suppl/GSM1176225_1105A-08_HC-51_Affy.CEL.gz"	"54675"	"Reanalyzed by: GSE133349"	""	""	"85"	"3,3"	"III"	"hippocampus"	"male"	NA	"22"
+"GSM1176226"	"hippocampus_male_86_AD_92"	"GSM1176226"	"Public on Apr 21 2014"	"Jun 27 2013"	"Jun 26 2019"	"RNA"	"1"	"hippocampus_male_AD"	"Homo sapiens"	"gender: male"	"age (yrs): 86"	"brain region: hippocampus"	"braak stage: IV"	"apoe genotype: 3,3"	"mmse: 19"	""	""	"total RNA"	"Trizol extraction of total RNA, followed by purification using Qiagen quick-spin columns"	"biotin"	"Biotinylated cRNA were prepared according to the standard Affymetrix protocol from 10 ug total RNA (Expression Analysis Technical Manual, 2001, Affymetrix) using robotics system (Biomek FX MicroArray Plex SA System; Beckman Coulter) to optimize consistency in processing"	"9606"	"Following fragmentation, 30 mg biotin-labeled cRNA were hybridized for 16 hr and rotated at 13 rpm at 50° C on Affymetrix Human HgU133 plus 2.0 microarrays"	"Affymetrix Genekeep GCS3000, software version 3.2.2.1515"	"post-mortem tissue"	"GC-RMA, using Genespring 7.3. data transformation: measurements <0.01 set to 0.01; per chip: normalized to the 50th percentile; per gene: normalize to median"	"GPL570"	"Nicole,Claudia,Berchtold"	"nberchto@uci.edu"	"949 824 6071"	"Carl W. Cotman"	"Institute for Memory Impairments and Neurological Disorders"	"UC Irvine"	"1226 Gillespie Neuroscience Facility"	"Irvine"	"CA"	"92697-4540"	"USA"	"ftp://ftp.ncbi.nlm.nih.gov/geo/samples/GSM1176nnn/GSM1176226/suppl/GSM1176226_1105A-08_HC_92_Affy.CEL.gz"	"54675"	"Reanalyzed by: GSE133349"	""	""	"86"	"3,3"	"IV"	"hippocampus"	"male"	NA	"19"
+"GSM1176227"	"hippocampus_male_87_AD_19"	"GSM1176227"	"Public on Apr 21 2014"	"Jun 27 2013"	"Jun 26 2019"	"RNA"	"1"	"hippocampus_male_AD"	"Homo sapiens"	"gender: male"	"age (yrs): 87"	"brain region: hippocampus"	"braak stage: V"	"apoe genotype: 3,4"	"mmse: 12"	""	""	"total RNA"	"Trizol extraction of total RNA, followed by purification using Qiagen quick-spin columns"	"biotin"	"Biotinylated cRNA were prepared according to the standard Affymetrix protocol from 10 ug total RNA (Expression Analysis Technical Manual, 2001, Affymetrix) using robotics system (Biomek FX MicroArray Plex SA System; Beckman Coulter) to optimize consistency in processing"	"9606"	"Following fragmentation, 30 mg biotin-labeled cRNA were hybridized for 16 hr and rotated at 13 rpm at 50° C on Affymetrix Human HgU133 plus 2.0 microarrays"	"Affymetrix Genekeep GCS3000, software version 3.2.2.1515"	"post-mortem tissue"	"GC-RMA, using Genespring 7.3. data transformation: measurements <0.01 set to 0.01; per chip: normalized to the 50th percentile; per gene: normalize to median"	"GPL570"	"Nicole,Claudia,Berchtold"	"nberchto@uci.edu"	"949 824 6071"	"Carl W. Cotman"	"Institute for Memory Impairments and Neurological Disorders"	"UC Irvine"	"1226 Gillespie Neuroscience Facility"	"Irvine"	"CA"	"92697-4540"	"USA"	"ftp://ftp.ncbi.nlm.nih.gov/geo/samples/GSM1176nnn/GSM1176227/suppl/GSM1176227_1205A-07_HC-19_AffyHyb.CEL.gz"	"54675"	"Reanalyzed by: GSE133349"	""	""	"87"	"3,4"	"V"	"hippocampus"	"male"	NA	"12"
+"GSM1176228"	"hippocampus_male_94_AD_5"	"GSM1176228"	"Public on Apr 21 2014"	"Jun 27 2013"	"Jun 26 2019"	"RNA"	"1"	"hippocampus_male_AD"	"Homo sapiens"	"gender: male"	"age (yrs): 94"	"brain region: hippocampus"	"braak stage: VI"	"apoe genotype: 3,3"	"mmse: 15"	""	""	"total RNA"	"Trizol extraction of total RNA, followed by purification using Qiagen quick-spin columns"	"biotin"	"Biotinylated cRNA were prepared according to the standard Affymetrix protocol from 10 ug total RNA (Expression Analysis Technical Manual, 2001, Affymetrix) using robotics system (Biomek FX MicroArray Plex SA System; Beckman Coulter) to optimize consistency in processing"	"9606"	"Following fragmentation, 30 mg biotin-labeled cRNA were hybridized for 16 hr and rotated at 13 rpm at 50° C on Affymetrix Human HgU133 plus 2.0 microarrays"	"Affymetrix Genekeep GCS3000, software version 3.2.2.1515"	"post-mortem tissue"	"GC-RMA, using Genespring 7.3. data transformation: measurements <0.01 set to 0.01; per chip: normalized to the 50th percentile; per gene: normalize to median"	"GPL570"	"Nicole,Claudia,Berchtold"	"nberchto@uci.edu"	"949 824 6071"	"Carl W. Cotman"	"Institute for Memory Impairments and Neurological Disorders"	"UC Irvine"	"1226 Gillespie Neuroscience Facility"	"Irvine"	"CA"	"92697-4540"	"USA"	"ftp://ftp.ncbi.nlm.nih.gov/geo/samples/GSM1176nnn/GSM1176228/suppl/GSM1176228_0606A-05_HC_05_AffyHyb.CEL.gz"	"54675"	"Reanalyzed by: GSE133349"	""	""	"94"	"3,3"	"VI"	"hippocampus"	"male"	NA	"15"
+"GSM1176229"	"hippocampus_male_94_AD_90"	"GSM1176229"	"Public on Apr 21 2014"	"Jun 27 2013"	"Jun 26 2019"	"RNA"	"1"	"hippocampus_male_AD"	"Homo sapiens"	"gender: male"	"age (yrs): 94"	"brain region: hippocampus"	"braak stage: IV"	"apoe genotype: 3,3"	"mmse: no info"	""	""	"total RNA"	"Trizol extraction of total RNA, followed by purification using Qiagen quick-spin columns"	"biotin"	"Biotinylated cRNA were prepared according to the standard Affymetrix protocol from 10 ug total RNA (Expression Analysis Technical Manual, 2001, Affymetrix) using robotics system (Biomek FX MicroArray Plex SA System; Beckman Coulter) to optimize consistency in processing"	"9606"	"Following fragmentation, 30 mg biotin-labeled cRNA were hybridized for 16 hr and rotated at 13 rpm at 50° C on Affymetrix Human HgU133 plus 2.0 microarrays"	"Affymetrix Genekeep GCS3000, software version 3.2.2.1515"	"post-mortem tissue"	"GC-RMA, using Genespring 7.3. data transformation: measurements <0.01 set to 0.01; per chip: normalized to the 50th percentile; per gene: normalize to median"	"GPL570"	"Nicole,Claudia,Berchtold"	"nberchto@uci.edu"	"949 824 6071"	"Carl W. Cotman"	"Institute for Memory Impairments and Neurological Disorders"	"UC Irvine"	"1226 Gillespie Neuroscience Facility"	"Irvine"	"CA"	"92697-4540"	"USA"	"ftp://ftp.ncbi.nlm.nih.gov/geo/samples/GSM1176nnn/GSM1176229/suppl/GSM1176229_1205A-07-HC-90_AffyHyb.CEL.gz"	"54675"	"Reanalyzed by: GSE133349"	""	""	"94"	"3,3"	"IV"	"hippocampus"	"male"	NA	"no info"
+"GSM1176230"	"post-central gyrus_female_60_AD_20"	"GSM1176230"	"Public on Apr 21 2014"	"Jun 27 2013"	"Jun 26 2019"	"RNA"	"1"	"post-central gyrus_female_AD"	"Homo sapiens"	"gender: female"	"age (yrs): 60"	"brain region: post-central gyrus"	"braak stage: VI"	"apoe genotype: 3,4"	"mmse: 12"	""	""	"total RNA"	"Trizol extraction of total RNA, followed by purification using Qiagen quick-spin columns"	"biotin"	"Biotinylated cRNA were prepared according to the standard Affymetrix protocol from 10 ug total RNA (Expression Analysis Technical Manual, 2001, Affymetrix) using robotics system (Biomek FX MicroArray Plex SA System; Beckman Coulter) to optimize consistency in processing"	"9606"	"Following fragmentation, 30 mg biotin-labeled cRNA were hybridized for 16 hr and rotated at 13 rpm at 50° C on Affymetrix Human HgU133 plus 2.0 microarrays"	"Affymetrix Genekeep GCS3000, software version 3.2.2.1515"	"post-mortem tissue"	"GC-RMA, using Genespring 7.3. data transformation: measurements <0.01 set to 0.01; per chip: normalized to the 50th percentile; per gene: normalize to median"	"GPL570"	"Nicole,Claudia,Berchtold"	"nberchto@uci.edu"	"949 824 6071"	"Carl W. Cotman"	"Institute for Memory Impairments and Neurological Disorders"	"UC Irvine"	"1226 Gillespie Neuroscience Facility"	"Irvine"	"CA"	"92697-4540"	"USA"	"ftp://ftp.ncbi.nlm.nih.gov/geo/samples/GSM1176nnn/GSM1176230/suppl/GSM1176230_0606A-05_PCG_20_AffyHyb.CEL.gz"	"54675"	"Reanalyzed by: GSE133349"	""	""	"60"	"3,4"	"VI"	"post-central gyrus"	"female"	NA	"12"
+"GSM1176231"	"post-central gyrus_female_74_AD_37"	"GSM1176231"	"Public on Apr 21 2014"	"Jun 27 2013"	"Jun 26 2019"	"RNA"	"1"	"post-central gyrus_female_AD"	"Homo sapiens"	"gender: female"	"age (yrs): 74"	"brain region: post-central gyrus"	"braak stage: VI"	"apoe genotype: 2,4"	"mmse: 17"	""	""	"total RNA"	"Trizol extraction of total RNA, followed by purification using Qiagen quick-spin columns"	"biotin"	"Biotinylated cRNA were prepared according to the standard Affymetrix protocol from 10 ug total RNA (Expression Analysis Technical Manual, 2001, Affymetrix) using robotics system (Biomek FX MicroArray Plex SA System; Beckman Coulter) to optimize consistency in processing"	"9606"	"Following fragmentation, 30 mg biotin-labeled cRNA were hybridized for 16 hr and rotated at 13 rpm at 50° C on Affymetrix Human HgU133 plus 2.0 microarrays"	"Affymetrix Genekeep GCS3000, software version 3.2.2.1515"	"post-mortem tissue"	"GC-RMA, using Genespring 7.3. data transformation: measurements <0.01 set to 0.01; per chip: normalized to the 50th percentile; per gene: normalize to median"	"GPL570"	"Nicole,Claudia,Berchtold"	"nberchto@uci.edu"	"949 824 6071"	"Carl W. Cotman"	"Institute for Memory Impairments and Neurological Disorders"	"UC Irvine"	"1226 Gillespie Neuroscience Facility"	"Irvine"	"CA"	"92697-4540"	"USA"	"ftp://ftp.ncbi.nlm.nih.gov/geo/samples/GSM1176nnn/GSM1176231/suppl/GSM1176231_1205A-07_PCG-37_AffyHyb.CEL.gz"	"54675"	"Reanalyzed by: GSE133349"	""	""	"74"	"2,4"	"VI"	"post-central gyrus"	"female"	NA	"17"
+"GSM1176232"	"post-central gyrus_female_76_AD_48"	"GSM1176232"	"Public on Apr 21 2014"	"Jun 27 2013"	"Jun 26 2019"	"RNA"	"1"	"post-central gyrus_female_AD"	"Homo sapiens"	"gender: female"	"age (yrs): 76"	"brain region: post-central gyrus"	"braak stage: V"	"apoe genotype: 3,3"	"mmse: 3"	""	""	"total RNA"	"Trizol extraction of total RNA, followed by purification using Qiagen quick-spin columns"	"biotin"	"Biotinylated cRNA were prepared according to the standard Affymetrix protocol from 10 ug total RNA (Expression Analysis Technical Manual, 2001, Affymetrix) using robotics system (Biomek FX MicroArray Plex SA System; Beckman Coulter) to optimize consistency in processing"	"9606"	"Following fragmentation, 30 mg biotin-labeled cRNA were hybridized for 16 hr and rotated at 13 rpm at 50° C on Affymetrix Human HgU133 plus 2.0 microarrays"	"Affymetrix Genekeep GCS3000, software version 3.2.2.1515"	"post-mortem tissue"	"GC-RMA, using Genespring 7.3. data transformation: measurements <0.01 set to 0.01; per chip: normalized to the 50th percentile; per gene: normalize to median"	"GPL570"	"Nicole,Claudia,Berchtold"	"nberchto@uci.edu"	"949 824 6071"	"Carl W. Cotman"	"Institute for Memory Impairments and Neurological Disorders"	"UC Irvine"	"1226 Gillespie Neuroscience Facility"	"Irvine"	"CA"	"92697-4540"	"USA"	"ftp://ftp.ncbi.nlm.nih.gov/geo/samples/GSM1176nnn/GSM1176232/suppl/GSM1176232_1105A-08_PCG_48_Affy.CEL.gz"	"54675"	"Reanalyzed by: GSE133349"	""	""	"76"	"3,3"	"V"	"post-central gyrus"	"female"	NA	"3"
+"GSM1176233"	"post-central gyrus_female_86_AD_15"	"GSM1176233"	"Public on Apr 21 2014"	"Jun 27 2013"	"Jun 26 2019"	"RNA"	"1"	"post-central gyrus_female_AD"	"Homo sapiens"	"gender: female"	"age (yrs): 86"	"brain region: post-central gyrus"	"braak stage: VI"	"apoe genotype: 4,4"	"mmse: 9"	""	""	"total RNA"	"Trizol extraction of total RNA, followed by purification using Qiagen quick-spin columns"	"biotin"	"Biotinylated cRNA were prepared according to the standard Affymetrix protocol from 10 ug total RNA (Expression Analysis Technical Manual, 2001, Affymetrix) using robotics system (Biomek FX MicroArray Plex SA System; Beckman Coulter) to optimize consistency in processing"	"9606"	"Following fragmentation, 30 mg biotin-labeled cRNA were hybridized for 16 hr and rotated at 13 rpm at 50° C on Affymetrix Human HgU133 plus 2.0 microarrays"	"Affymetrix Genekeep GCS3000, software version 3.2.2.1515"	"post-mortem tissue"	"GC-RMA, using Genespring 7.3. data transformation: measurements <0.01 set to 0.01; per chip: normalized to the 50th percentile; per gene: normalize to median"	"GPL570"	"Nicole,Claudia,Berchtold"	"nberchto@uci.edu"	"949 824 6071"	"Carl W. Cotman"	"Institute for Memory Impairments and Neurological Disorders"	"UC Irvine"	"1226 Gillespie Neuroscience Facility"	"Irvine"	"CA"	"92697-4540"	"USA"	"ftp://ftp.ncbi.nlm.nih.gov/geo/samples/GSM1176nnn/GSM1176233/suppl/GSM1176233_1105A-08_PCG_15_Affy.CEL.gz"	"54675"	"Reanalyzed by: GSE133349"	""	""	"86"	"4,4"	"VI"	"post-central gyrus"	"female"	NA	"9"
+"GSM1176234"	"post-central gyrus_female_82_AD_13"	"GSM1176234"	"Public on Apr 21 2014"	"Jun 27 2013"	"Jun 26 2019"	"RNA"	"1"	"post-central gyrus_female_AD"	"Homo sapiens"	"gender: female"	"age (yrs): 82"	"brain region: post-central gyrus"	"braak stage: VI"	"apoe genotype: 3,4"	"mmse: 4"	""	""	"total RNA"	"Trizol extraction of total RNA, followed by purification using Qiagen quick-spin columns"	"biotin"	"Biotinylated cRNA were prepared according to the standard Affymetrix protocol from 10 ug total RNA (Expression Analysis Technical Manual, 2001, Affymetrix) using robotics system (Biomek FX MicroArray Plex SA System; Beckman Coulter) to optimize consistency in processing"	"9606"	"Following fragmentation, 30 mg biotin-labeled cRNA were hybridized for 16 hr and rotated at 13 rpm at 50° C on Affymetrix Human HgU133 plus 2.0 microarrays"	"Affymetrix Genekeep GCS3000, software version 3.2.2.1515"	"post-mortem tissue"	"GC-RMA, using Genespring 7.3. data transformation: measurements <0.01 set to 0.01; per chip: normalized to the 50th percentile; per gene: normalize to median"	"GPL570"	"Nicole,Claudia,Berchtold"	"nberchto@uci.edu"	"949 824 6071"	"Carl W. Cotman"	"Institute for Memory Impairments and Neurological Disorders"	"UC Irvine"	"1226 Gillespie Neuroscience Facility"	"Irvine"	"CA"	"92697-4540"	"USA"	"ftp://ftp.ncbi.nlm.nih.gov/geo/samples/GSM1176nnn/GSM1176234/suppl/GSM1176234_1105A-08_PCG_13_Affy.CEL.gz"	"54675"	"Reanalyzed by: GSE133349"	""	""	"82"	"3,4"	"VI"	"post-central gyrus"	"female"	NA	"4"
+"GSM1176235"	"post-central gyrus_female_82_AD_9"	"GSM1176235"	"Public on Apr 21 2014"	"Jun 27 2013"	"Jun 26 2019"	"RNA"	"1"	"post-central gyrus_female_AD"	"Homo sapiens"	"gender: female"	"age (yrs): 82"	"brain region: post-central gyrus"	"braak stage: VI"	"apoe genotype: 3,4"	"mmse: 0"	""	""	"total RNA"	"Trizol extraction of total RNA, followed by purification using Qiagen quick-spin columns"	"biotin"	"Biotinylated cRNA were prepared according to the standard Affymetrix protocol from 10 ug total RNA (Expression Analysis Technical Manual, 2001, Affymetrix) using robotics system (Biomek FX MicroArray Plex SA System; Beckman Coulter) to optimize consistency in processing"	"9606"	"Following fragmentation, 30 mg biotin-labeled cRNA were hybridized for 16 hr and rotated at 13 rpm at 50° C on Affymetrix Human HgU133 plus 2.0 microarrays"	"Affymetrix Genekeep GCS3000, software version 3.2.2.1515"	"post-mortem tissue"	"GC-RMA, using Genespring 7.3. data transformation: measurements <0.01 set to 0.01; per chip: normalized to the 50th percentile; per gene: normalize to median"	"GPL570"	"Nicole,Claudia,Berchtold"	"nberchto@uci.edu"	"949 824 6071"	"Carl W. Cotman"	"Institute for Memory Impairments and Neurological Disorders"	"UC Irvine"	"1226 Gillespie Neuroscience Facility"	"Irvine"	"CA"	"92697-4540"	"USA"	"ftp://ftp.ncbi.nlm.nih.gov/geo/samples/GSM1176nnn/GSM1176235/suppl/GSM1176235_0606A-05_PCG_09_AffyHyb.CEL.gz"	"54675"	"Reanalyzed by: GSE133349"	""	""	"82"	"3,4"	"VI"	"post-central gyrus"	"female"	NA	"0"
+"GSM1176236"	"post-central gyrus_female_85_AD_24"	"GSM1176236"	"Public on Apr 21 2014"	"Jun 27 2013"	"Jun 26 2019"	"RNA"	"1"	"post-central gyrus_female_AD"	"Homo sapiens"	"gender: female"	"age (yrs): 85"	"brain region: post-central gyrus"	"braak stage: IV"	"apoe genotype: 3,4"	"mmse: 26"	""	""	"total RNA"	"Trizol extraction of total RNA, followed by purification using Qiagen quick-spin columns"	"biotin"	"Biotinylated cRNA were prepared according to the standard Affymetrix protocol from 10 ug total RNA (Expression Analysis Technical Manual, 2001, Affymetrix) using robotics system (Biomek FX MicroArray Plex SA System; Beckman Coulter) to optimize consistency in processing"	"9606"	"Following fragmentation, 30 mg biotin-labeled cRNA were hybridized for 16 hr and rotated at 13 rpm at 50° C on Affymetrix Human HgU133 plus 2.0 microarrays"	"Affymetrix Genekeep GCS3000, software version 3.2.2.1515"	"post-mortem tissue"	"GC-RMA, using Genespring 7.3. data transformation: measurements <0.01 set to 0.01; per chip: normalized to the 50th percentile; per gene: normalize to median"	"GPL570"	"Nicole,Claudia,Berchtold"	"nberchto@uci.edu"	"949 824 6071"	"Carl W. Cotman"	"Institute for Memory Impairments and Neurological Disorders"	"UC Irvine"	"1226 Gillespie Neuroscience Facility"	"Irvine"	"CA"	"92697-4540"	"USA"	"ftp://ftp.ncbi.nlm.nih.gov/geo/samples/GSM1176nnn/GSM1176236/suppl/GSM1176236_0306A-02_PCG-24_AffyHyb.CEL.gz"	"54675"	"Reanalyzed by: GSE133349"	""	""	"85"	"3,4"	"IV"	"post-central gyrus"	"female"	NA	"26"
+"GSM1176237"	"post-central gyrus_female_85_AD_57"	"GSM1176237"	"Public on Apr 21 2014"	"Jun 27 2013"	"Jun 26 2019"	"RNA"	"1"	"post-central gyrus_female_AD"	"Homo sapiens"	"gender: female"	"age (yrs): 85"	"brain region: post-central gyrus"	"braak stage: V"	"apoe genotype: 3,3"	"mmse: no info"	""	""	"total RNA"	"Trizol extraction of total RNA, followed by purification using Qiagen quick-spin columns"	"biotin"	"Biotinylated cRNA were prepared according to the standard Affymetrix protocol from 10 ug total RNA (Expression Analysis Technical Manual, 2001, Affymetrix) using robotics system (Biomek FX MicroArray Plex SA System; Beckman Coulter) to optimize consistency in processing"	"9606"	"Following fragmentation, 30 mg biotin-labeled cRNA were hybridized for 16 hr and rotated at 13 rpm at 50° C on Affymetrix Human HgU133 plus 2.0 microarrays"	"Affymetrix Genekeep GCS3000, software version 3.2.2.1515"	"post-mortem tissue"	"GC-RMA, using Genespring 7.3. data transformation: measurements <0.01 set to 0.01; per chip: normalized to the 50th percentile; per gene: normalize to median"	"GPL570"	"Nicole,Claudia,Berchtold"	"nberchto@uci.edu"	"949 824 6071"	"Carl W. Cotman"	"Institute for Memory Impairments and Neurological Disorders"	"UC Irvine"	"1226 Gillespie Neuroscience Facility"	"Irvine"	"CA"	"92697-4540"	"USA"	"ftp://ftp.ncbi.nlm.nih.gov/geo/samples/GSM1176nnn/GSM1176237/suppl/GSM1176237_0606A-05_PCG_57_AffyHyb.CEL.gz"	"54675"	"Reanalyzed by: GSE133349"	""	""	"85"	"3,3"	"V"	"post-central gyrus"	"female"	NA	"no info"
+"GSM1176238"	"post-central gyrus_female_90_AD_23"	"GSM1176238"	"Public on Apr 21 2014"	"Jun 27 2013"	"Jun 26 2019"	"RNA"	"1"	"post-central gyrus_female_AD"	"Homo sapiens"	"gender: female"	"age (yrs): 90"	"brain region: post-central gyrus"	"braak stage: VI"	"apoe genotype: 3,4"	"mmse: 12"	""	""	"total RNA"	"Trizol extraction of total RNA, followed by purification using Qiagen quick-spin columns"	"biotin"	"Biotinylated cRNA were prepared according to the standard Affymetrix protocol from 10 ug total RNA (Expression Analysis Technical Manual, 2001, Affymetrix) using robotics system (Biomek FX MicroArray Plex SA System; Beckman Coulter) to optimize consistency in processing"	"9606"	"Following fragmentation, 30 mg biotin-labeled cRNA were hybridized for 16 hr and rotated at 13 rpm at 50° C on Affymetrix Human HgU133 plus 2.0 microarrays"	"Affymetrix Genekeep GCS3000, software version 3.2.2.1515"	"post-mortem tissue"	"GC-RMA, using Genespring 7.3. data transformation: measurements <0.01 set to 0.01; per chip: normalized to the 50th percentile; per gene: normalize to median"	"GPL570"	"Nicole,Claudia,Berchtold"	"nberchto@uci.edu"	"949 824 6071"	"Carl W. Cotman"	"Institute for Memory Impairments and Neurological Disorders"	"UC Irvine"	"1226 Gillespie Neuroscience Facility"	"Irvine"	"CA"	"92697-4540"	"USA"	"ftp://ftp.ncbi.nlm.nih.gov/geo/samples/GSM1176nnn/GSM1176238/suppl/GSM1176238_1205A-07_PCG-23_AffyHyb.CEL.gz"	"54675"	"Reanalyzed by: GSE133349"	""	""	"90"	"3,4"	"VI"	"post-central gyrus"	"female"	NA	"12"
+"GSM1176239"	"post-central gyrus_female_90_AD_36"	"GSM1176239"	"Public on Apr 21 2014"	"Jun 27 2013"	"Jun 26 2019"	"RNA"	"1"	"post-central gyrus_female_AD"	"Homo sapiens"	"gender: female"	"age (yrs): 90"	"brain region: post-central gyrus"	"braak stage: IV"	"apoe genotype: 3,4"	"mmse: 17"	""	""	"total RNA"	"Trizol extraction of total RNA, followed by purification using Qiagen quick-spin columns"	"biotin"	"Biotinylated cRNA were prepared according to the standard Affymetrix protocol from 10 ug total RNA (Expression Analysis Technical Manual, 2001, Affymetrix) using robotics system (Biomek FX MicroArray Plex SA System; Beckman Coulter) to optimize consistency in processing"	"9606"	"Following fragmentation, 30 mg biotin-labeled cRNA were hybridized for 16 hr and rotated at 13 rpm at 50° C on Affymetrix Human HgU133 plus 2.0 microarrays"	"Affymetrix Genekeep GCS3000, software version 3.2.2.1515"	"post-mortem tissue"	"GC-RMA, using Genespring 7.3. data transformation: measurements <0.01 set to 0.01; per chip: normalized to the 50th percentile; per gene: normalize to median"	"GPL570"	"Nicole,Claudia,Berchtold"	"nberchto@uci.edu"	"949 824 6071"	"Carl W. Cotman"	"Institute for Memory Impairments and Neurological Disorders"	"UC Irvine"	"1226 Gillespie Neuroscience Facility"	"Irvine"	"CA"	"92697-4540"	"USA"	"ftp://ftp.ncbi.nlm.nih.gov/geo/samples/GSM1176nnn/GSM1176239/suppl/GSM1176239_1105A-08_PCG_36.CEL.gz"	"54675"	"Reanalyzed by: GSE133349"	""	""	"90"	"3,4"	"IV"	"post-central gyrus"	"female"	NA	"17"
+"GSM1176240"	"post-central gyrus_female_90_AD_6"	"GSM1176240"	"Public on Apr 21 2014"	"Jun 27 2013"	"Jun 26 2019"	"RNA"	"1"	"post-central gyrus_female_AD"	"Homo sapiens"	"gender: female"	"age (yrs): 90"	"brain region: post-central gyrus"	"braak stage: V"	"apoe genotype: 3,4"	"mmse: 20"	""	""	"total RNA"	"Trizol extraction of total RNA, followed by purification using Qiagen quick-spin columns"	"biotin"	"Biotinylated cRNA were prepared according to the standard Affymetrix protocol from 10 ug total RNA (Expression Analysis Technical Manual, 2001, Affymetrix) using robotics system (Biomek FX MicroArray Plex SA System; Beckman Coulter) to optimize consistency in processing"	"9606"	"Following fragmentation, 30 mg biotin-labeled cRNA were hybridized for 16 hr and rotated at 13 rpm at 50° C on Affymetrix Human HgU133 plus 2.0 microarrays"	"Affymetrix Genekeep GCS3000, software version 3.2.2.1515"	"post-mortem tissue"	"GC-RMA, using Genespring 7.3. data transformation: measurements <0.01 set to 0.01; per chip: normalized to the 50th percentile; per gene: normalize to median"	"GPL570"	"Nicole,Claudia,Berchtold"	"nberchto@uci.edu"	"949 824 6071"	"Carl W. Cotman"	"Institute for Memory Impairments and Neurological Disorders"	"UC Irvine"	"1226 Gillespie Neuroscience Facility"	"Irvine"	"CA"	"92697-4540"	"USA"	"ftp://ftp.ncbi.nlm.nih.gov/geo/samples/GSM1176nnn/GSM1176240/suppl/GSM1176240_1205A-07_PCG-06_AffyHyb.CEL.gz"	"54675"	"Reanalyzed by: GSE133349"	""	""	"90"	"3,4"	"V"	"post-central gyrus"	"female"	NA	"20"
+"GSM1176241"	"post-central gyrus_female_90_AD_75"	"GSM1176241"	"Public on Apr 21 2014"	"Jun 27 2013"	"Jun 26 2019"	"RNA"	"1"	"post-central gyrus_female_AD"	"Homo sapiens"	"gender: female"	"age (yrs): 90"	"brain region: post-central gyrus"	"braak stage: III"	"apoe genotype: 4,4"	"mmse: no info"	""	""	"total RNA"	"Trizol extraction of total RNA, followed by purification using Qiagen quick-spin columns"	"biotin"	"Biotinylated cRNA were prepared according to the standard Affymetrix protocol from 10 ug total RNA (Expression Analysis Technical Manual, 2001, Affymetrix) using robotics system (Biomek FX MicroArray Plex SA System; Beckman Coulter) to optimize consistency in processing"	"9606"	"Following fragmentation, 30 mg biotin-labeled cRNA were hybridized for 16 hr and rotated at 13 rpm at 50° C on Affymetrix Human HgU133 plus 2.0 microarrays"	"Affymetrix Genekeep GCS3000, software version 3.2.2.1515"	"post-mortem tissue"	"GC-RMA, using Genespring 7.3. data transformation: measurements <0.01 set to 0.01; per chip: normalized to the 50th percentile; per gene: normalize to median"	"GPL570"	"Nicole,Claudia,Berchtold"	"nberchto@uci.edu"	"949 824 6071"	"Carl W. Cotman"	"Institute for Memory Impairments and Neurological Disorders"	"UC Irvine"	"1226 Gillespie Neuroscience Facility"	"Irvine"	"CA"	"92697-4540"	"USA"	"ftp://ftp.ncbi.nlm.nih.gov/geo/samples/GSM1176nnn/GSM1176241/suppl/GSM1176241_1205A-07_PCG-75_AffyHyb.CEL.gz"	"54675"	"Reanalyzed by: GSE133349"	""	""	"90"	"4,4"	"III"	"post-central gyrus"	"female"	NA	"no info"
+"GSM1176242"	"post-central gyrus_female_91_AD_11"	"GSM1176242"	"Public on Apr 21 2014"	"Jun 27 2013"	"Jun 26 2019"	"RNA"	"1"	"post-central gyrus_female_AD"	"Homo sapiens"	"gender: female"	"age (yrs): 91"	"brain region: post-central gyrus"	"braak stage: V-VI"	"apoe genotype: 4,4"	"mmse: 11"	""	""	"total RNA"	"Trizol extraction of total RNA, followed by purification using Qiagen quick-spin columns"	"biotin"	"Biotinylated cRNA were prepared according to the standard Affymetrix protocol from 10 ug total RNA (Expression Analysis Technical Manual, 2001, Affymetrix) using robotics system (Biomek FX MicroArray Plex SA System; Beckman Coulter) to optimize consistency in processing"	"9606"	"Following fragmentation, 30 mg biotin-labeled cRNA were hybridized for 16 hr and rotated at 13 rpm at 50° C on Affymetrix Human HgU133 plus 2.0 microarrays"	"Affymetrix Genekeep GCS3000, software version 3.2.2.1515"	"post-mortem tissue"	"GC-RMA, using Genespring 7.3. data transformation: measurements <0.01 set to 0.01; per chip: normalized to the 50th percentile; per gene: normalize to median"	"GPL570"	"Nicole,Claudia,Berchtold"	"nberchto@uci.edu"	"949 824 6071"	"Carl W. Cotman"	"Institute for Memory Impairments and Neurological Disorders"	"UC Irvine"	"1226 Gillespie Neuroscience Facility"	"Irvine"	"CA"	"92697-4540"	"USA"	"ftp://ftp.ncbi.nlm.nih.gov/geo/samples/GSM1176nnn/GSM1176242/suppl/GSM1176242_1105A-08_PCG_11_Affy.CEL.gz"	"54675"	"Reanalyzed by: GSE133349"	""	""	"91"	"4,4"	"V-VI"	"post-central gyrus"	"female"	NA	"11"
+"GSM1176243"	"post-central gyrus_female_94_AD_70"	"GSM1176243"	"Public on Apr 21 2014"	"Jun 27 2013"	"Jun 26 2019"	"RNA"	"1"	"post-central gyrus_female_AD"	"Homo sapiens"	"gender: female"	"age (yrs): 94"	"brain region: post-central gyrus"	"braak stage: I"	"apoe genotype: 3,3"	"mmse: no info"	""	""	"total RNA"	"Trizol extraction of total RNA, followed by purification using Qiagen quick-spin columns"	"biotin"	"Biotinylated cRNA were prepared according to the standard Affymetrix protocol from 10 ug total RNA (Expression Analysis Technical Manual, 2001, Affymetrix) using robotics system (Biomek FX MicroArray Plex SA System; Beckman Coulter) to optimize consistency in processing"	"9606"	"Following fragmentation, 30 mg biotin-labeled cRNA were hybridized for 16 hr and rotated at 13 rpm at 50° C on Affymetrix Human HgU133 plus 2.0 microarrays"	"Affymetrix Genekeep GCS3000, software version 3.2.2.1515"	"post-mortem tissue"	"GC-RMA, using Genespring 7.3. data transformation: measurements <0.01 set to 0.01; per chip: normalized to the 50th percentile; per gene: normalize to median"	"GPL570"	"Nicole,Claudia,Berchtold"	"nberchto@uci.edu"	"949 824 6071"	"Carl W. Cotman"	"Institute for Memory Impairments and Neurological Disorders"	"UC Irvine"	"1226 Gillespie Neuroscience Facility"	"Irvine"	"CA"	"92697-4540"	"USA"	"ftp://ftp.ncbi.nlm.nih.gov/geo/samples/GSM1176nnn/GSM1176243/suppl/GSM1176243_1205A-07_PCG-70_AffyHyb.CEL.gz"	"54675"	"Reanalyzed by: GSE133349"	""	""	"94"	"3,3"	"I"	"post-central gyrus"	"female"	NA	"no info"
+"GSM1176244"	"post-central gyrus_female_95_AD_64"	"GSM1176244"	"Public on Apr 21 2014"	"Jun 27 2013"	"Jun 26 2019"	"RNA"	"1"	"post-central gyrus_female_AD"	"Homo sapiens"	"gender: female"	"age (yrs): 95"	"brain region: post-central gyrus"	"braak stage: no info"	"apoe genotype: 3,3"	"mmse: no info"	""	""	"total RNA"	"Trizol extraction of total RNA, followed by purification using Qiagen quick-spin columns"	"biotin"	"Biotinylated cRNA were prepared according to the standard Affymetrix protocol from 10 ug total RNA (Expression Analysis Technical Manual, 2001, Affymetrix) using robotics system (Biomek FX MicroArray Plex SA System; Beckman Coulter) to optimize consistency in processing"	"9606"	"Following fragmentation, 30 mg biotin-labeled cRNA were hybridized for 16 hr and rotated at 13 rpm at 50° C on Affymetrix Human HgU133 plus 2.0 microarrays"	"Affymetrix Genekeep GCS3000, software version 3.2.2.1515"	"post-mortem tissue"	"GC-RMA, using Genespring 7.3. data transformation: measurements <0.01 set to 0.01; per chip: normalized to the 50th percentile; per gene: normalize to median"	"GPL570"	"Nicole,Claudia,Berchtold"	"nberchto@uci.edu"	"949 824 6071"	"Carl W. Cotman"	"Institute for Memory Impairments and Neurological Disorders"	"UC Irvine"	"1226 Gillespie Neuroscience Facility"	"Irvine"	"CA"	"92697-4540"	"USA"	"ftp://ftp.ncbi.nlm.nih.gov/geo/samples/GSM1176nnn/GSM1176244/suppl/GSM1176244_1205A-07_PCG-64_AffyHyb.CEL.gz"	"54675"	"Reanalyzed by: GSE133349"	""	""	"95"	"3,3"	"no info"	"post-central gyrus"	"female"	NA	"no info"
+"GSM1176245"	"post-central gyrus_male_76_AD_33"	"GSM1176245"	"Public on Apr 21 2014"	"Jun 27 2013"	"Jun 26 2019"	"RNA"	"1"	"post-central gyrus_male_AD"	"Homo sapiens"	"gender: male"	"age (yrs): 76"	"brain region: post-central gyrus"	"braak stage: V"	"apoe genotype: 4,4"	"mmse: 0"	""	""	"total RNA"	"Trizol extraction of total RNA, followed by purification using Qiagen quick-spin columns"	"biotin"	"Biotinylated cRNA were prepared according to the standard Affymetrix protocol from 10 ug total RNA (Expression Analysis Technical Manual, 2001, Affymetrix) using robotics system (Biomek FX MicroArray Plex SA System; Beckman Coulter) to optimize consistency in processing"	"9606"	"Following fragmentation, 30 mg biotin-labeled cRNA were hybridized for 16 hr and rotated at 13 rpm at 50° C on Affymetrix Human HgU133 plus 2.0 microarrays"	"Affymetrix Genekeep GCS3000, software version 3.2.2.1515"	"post-mortem tissue"	"GC-RMA, using Genespring 7.3. data transformation: measurements <0.01 set to 0.01; per chip: normalized to the 50th percentile; per gene: normalize to median"	"GPL570"	"Nicole,Claudia,Berchtold"	"nberchto@uci.edu"	"949 824 6071"	"Carl W. Cotman"	"Institute for Memory Impairments and Neurological Disorders"	"UC Irvine"	"1226 Gillespie Neuroscience Facility"	"Irvine"	"CA"	"92697-4540"	"USA"	"ftp://ftp.ncbi.nlm.nih.gov/geo/samples/GSM1176nnn/GSM1176245/suppl/GSM1176245_1105A-08_PCG_33_Affy.CEL.gz"	"54675"	"Reanalyzed by: GSE133349"	""	""	"76"	"4,4"	"V"	"post-central gyrus"	"male"	NA	"0"
+"GSM1176246"	"post-central gyrus_male_76_AD_69"	"GSM1176246"	"Public on Apr 21 2014"	"Jun 27 2013"	"Jun 26 2019"	"RNA"	"1"	"post-central gyrus_male_AD"	"Homo sapiens"	"gender: male"	"age (yrs): 76"	"brain region: post-central gyrus"	"braak stage: III"	"apoe genotype: 4,4"	"mmse: no info"	""	""	"total RNA"	"Trizol extraction of total RNA, followed by purification using Qiagen quick-spin columns"	"biotin"	"Biotinylated cRNA were prepared according to the standard Affymetrix protocol from 10 ug total RNA (Expression Analysis Technical Manual, 2001, Affymetrix) using robotics system (Biomek FX MicroArray Plex SA System; Beckman Coulter) to optimize consistency in processing"	"9606"	"Following fragmentation, 30 mg biotin-labeled cRNA were hybridized for 16 hr and rotated at 13 rpm at 50° C on Affymetrix Human HgU133 plus 2.0 microarrays"	"Affymetrix Genekeep GCS3000, software version 3.2.2.1515"	"post-mortem tissue"	"GC-RMA, using Genespring 7.3. data transformation: measurements <0.01 set to 0.01; per chip: normalized to the 50th percentile; per gene: normalize to median"	"GPL570"	"Nicole,Claudia,Berchtold"	"nberchto@uci.edu"	"949 824 6071"	"Carl W. Cotman"	"Institute for Memory Impairments and Neurological Disorders"	"UC Irvine"	"1226 Gillespie Neuroscience Facility"	"Irvine"	"CA"	"92697-4540"	"USA"	"ftp://ftp.ncbi.nlm.nih.gov/geo/samples/GSM1176nnn/GSM1176246/suppl/GSM1176246_1205A-07_PCG-69_AffyHyb.CEL.gz"	"54675"	"Reanalyzed by: GSE133349"	""	""	"76"	"4,4"	"III"	"post-central gyrus"	"male"	NA	"no info"
+"GSM1176247"	"post-central gyrus_male_79_AD_7"	"GSM1176247"	"Public on Apr 21 2014"	"Jun 27 2013"	"Jun 26 2019"	"RNA"	"1"	"post-central gyrus_male_AD"	"Homo sapiens"	"gender: male"	"age (yrs): 79"	"brain region: post-central gyrus"	"braak stage: VI"	"apoe genotype: 3,4"	"mmse: 6"	""	""	"total RNA"	"Trizol extraction of total RNA, followed by purification using Qiagen quick-spin columns"	"biotin"	"Biotinylated cRNA were prepared according to the standard Affymetrix protocol from 10 ug total RNA (Expression Analysis Technical Manual, 2001, Affymetrix) using robotics system (Biomek FX MicroArray Plex SA System; Beckman Coulter) to optimize consistency in processing"	"9606"	"Following fragmentation, 30 mg biotin-labeled cRNA were hybridized for 16 hr and rotated at 13 rpm at 50° C on Affymetrix Human HgU133 plus 2.0 microarrays"	"Affymetrix Genekeep GCS3000, software version 3.2.2.1515"	"post-mortem tissue"	"GC-RMA, using Genespring 7.3. data transformation: measurements <0.01 set to 0.01; per chip: normalized to the 50th percentile; per gene: normalize to median"	"GPL570"	"Nicole,Claudia,Berchtold"	"nberchto@uci.edu"	"949 824 6071"	"Carl W. Cotman"	"Institute for Memory Impairments and Neurological Disorders"	"UC Irvine"	"1226 Gillespie Neuroscience Facility"	"Irvine"	"CA"	"92697-4540"	"USA"	"ftp://ftp.ncbi.nlm.nih.gov/geo/samples/GSM1176nnn/GSM1176247/suppl/GSM1176247_1205A-07_PCG-07_AffyHyb.CEL.gz"	"54675"	"Reanalyzed by: GSE133349"	""	""	"79"	"3,4"	"VI"	"post-central gyrus"	"male"	NA	"6"
+"GSM1176248"	"post-central gyrus_male_85_AD_51"	"GSM1176248"	"Public on Apr 21 2014"	"Jun 27 2013"	"Jun 26 2019"	"RNA"	"1"	"post-central gyrus_male_AD"	"Homo sapiens"	"gender: male"	"age (yrs): 85"	"brain region: post-central gyrus"	"braak stage: III"	"apoe genotype: 3,3"	"mmse: 22"	""	""	"total RNA"	"Trizol extraction of total RNA, followed by purification using Qiagen quick-spin columns"	"biotin"	"Biotinylated cRNA were prepared according to the standard Affymetrix protocol from 10 ug total RNA (Expression Analysis Technical Manual, 2001, Affymetrix) using robotics system (Biomek FX MicroArray Plex SA System; Beckman Coulter) to optimize consistency in processing"	"9606"	"Following fragmentation, 30 mg biotin-labeled cRNA were hybridized for 16 hr and rotated at 13 rpm at 50° C on Affymetrix Human HgU133 plus 2.0 microarrays"	"Affymetrix Genekeep GCS3000, software version 3.2.2.1515"	"post-mortem tissue"	"GC-RMA, using Genespring 7.3. data transformation: measurements <0.01 set to 0.01; per chip: normalized to the 50th percentile; per gene: normalize to median"	"GPL570"	"Nicole,Claudia,Berchtold"	"nberchto@uci.edu"	"949 824 6071"	"Carl W. Cotman"	"Institute for Memory Impairments and Neurological Disorders"	"UC Irvine"	"1226 Gillespie Neuroscience Facility"	"Irvine"	"CA"	"92697-4540"	"USA"	"ftp://ftp.ncbi.nlm.nih.gov/geo/samples/GSM1176nnn/GSM1176248/suppl/GSM1176248_1105A-08_PCG_51_Affy.CEL.gz"	"54675"	"Reanalyzed by: GSE133349"	""	""	"85"	"3,3"	"III"	"post-central gyrus"	"male"	NA	"22"
+"GSM1176249"	"post-central gyrus_male_85_AD_74"	"GSM1176249"	"Public on Apr 21 2014"	"Jun 27 2013"	"Jun 26 2019"	"RNA"	"1"	"post-central gyrus_male_AD"	"Homo sapiens"	"gender: male"	"age (yrs): 85"	"brain region: post-central gyrus"	"braak stage: II"	"apoe genotype: 3,4"	"mmse: no info"	""	""	"total RNA"	"Trizol extraction of total RNA, followed by purification using Qiagen quick-spin columns"	"biotin"	"Biotinylated cRNA were prepared according to the standard Affymetrix protocol from 10 ug total RNA (Expression Analysis Technical Manual, 2001, Affymetrix) using robotics system (Biomek FX MicroArray Plex SA System; Beckman Coulter) to optimize consistency in processing"	"9606"	"Following fragmentation, 30 mg biotin-labeled cRNA were hybridized for 16 hr and rotated at 13 rpm at 50° C on Affymetrix Human HgU133 plus 2.0 microarrays"	"Affymetrix Genekeep GCS3000, software version 3.2.2.1515"	"post-mortem tissue"	"GC-RMA, using Genespring 7.3. data transformation: measurements <0.01 set to 0.01; per chip: normalized to the 50th percentile; per gene: normalize to median"	"GPL570"	"Nicole,Claudia,Berchtold"	"nberchto@uci.edu"	"949 824 6071"	"Carl W. Cotman"	"Institute for Memory Impairments and Neurological Disorders"	"UC Irvine"	"1226 Gillespie Neuroscience Facility"	"Irvine"	"CA"	"92697-4540"	"USA"	"ftp://ftp.ncbi.nlm.nih.gov/geo/samples/GSM1176nnn/GSM1176249/suppl/GSM1176249_1205A-07_PCG-74_AffyHyb.CEL.gz"	"54675"	"Reanalyzed by: GSE133349"	""	""	"85"	"3,4"	"II"	"post-central gyrus"	"male"	NA	"no info"
+"GSM1176250"	"post-central gyrus_male_86_AD_92"	"GSM1176250"	"Public on Apr 21 2014"	"Jun 27 2013"	"Jun 26 2019"	"RNA"	"1"	"post-central gyrus_male_AD"	"Homo sapiens"	"gender: male"	"age (yrs): 86"	"brain region: post-central gyrus"	"braak stage: IV"	"apoe genotype: 3,3"	"mmse: 19"	""	""	"total RNA"	"Trizol extraction of total RNA, followed by purification using Qiagen quick-spin columns"	"biotin"	"Biotinylated cRNA were prepared according to the standard Affymetrix protocol from 10 ug total RNA (Expression Analysis Technical Manual, 2001, Affymetrix) using robotics system (Biomek FX MicroArray Plex SA System; Beckman Coulter) to optimize consistency in processing"	"9606"	"Following fragmentation, 30 mg biotin-labeled cRNA were hybridized for 16 hr and rotated at 13 rpm at 50° C on Affymetrix Human HgU133 plus 2.0 microarrays"	"Affymetrix Genekeep GCS3000, software version 3.2.2.1515"	"post-mortem tissue"	"GC-RMA, using Genespring 7.3. data transformation: measurements <0.01 set to 0.01; per chip: normalized to the 50th percentile; per gene: normalize to median"	"GPL570"	"Nicole,Claudia,Berchtold"	"nberchto@uci.edu"	"949 824 6071"	"Carl W. Cotman"	"Institute for Memory Impairments and Neurological Disorders"	"UC Irvine"	"1226 Gillespie Neuroscience Facility"	"Irvine"	"CA"	"92697-4540"	"USA"	"ftp://ftp.ncbi.nlm.nih.gov/geo/samples/GSM1176nnn/GSM1176250/suppl/GSM1176250_1205A-07_PCG-92_AffyHyb.CEL.gz"	"54675"	"Reanalyzed by: GSE133349"	""	""	"86"	"3,3"	"IV"	"post-central gyrus"	"male"	NA	"19"
+"GSM1176251"	"post-central gyrus_male_87_AD_19"	"GSM1176251"	"Public on Apr 21 2014"	"Jun 27 2013"	"Jun 26 2019"	"RNA"	"1"	"post-central gyrus_male_AD"	"Homo sapiens"	"gender: male"	"age (yrs): 87"	"brain region: post-central gyrus"	"braak stage: V"	"apoe genotype: 3,4"	"mmse: 12"	""	""	"total RNA"	"Trizol extraction of total RNA, followed by purification using Qiagen quick-spin columns"	"biotin"	"Biotinylated cRNA were prepared according to the standard Affymetrix protocol from 10 ug total RNA (Expression Analysis Technical Manual, 2001, Affymetrix) using robotics system (Biomek FX MicroArray Plex SA System; Beckman Coulter) to optimize consistency in processing"	"9606"	"Following fragmentation, 30 mg biotin-labeled cRNA were hybridized for 16 hr and rotated at 13 rpm at 50° C on Affymetrix Human HgU133 plus 2.0 microarrays"	"Affymetrix Genekeep GCS3000, software version 3.2.2.1515"	"post-mortem tissue"	"GC-RMA, using Genespring 7.3. data transformation: measurements <0.01 set to 0.01; per chip: normalized to the 50th percentile; per gene: normalize to median"	"GPL570"	"Nicole,Claudia,Berchtold"	"nberchto@uci.edu"	"949 824 6071"	"Carl W. Cotman"	"Institute for Memory Impairments and Neurological Disorders"	"UC Irvine"	"1226 Gillespie Neuroscience Facility"	"Irvine"	"CA"	"92697-4540"	"USA"	"ftp://ftp.ncbi.nlm.nih.gov/geo/samples/GSM1176nnn/GSM1176251/suppl/GSM1176251_0606A-05_PCG_19_AffyHyb.CEL.gz"	"54675"	"Reanalyzed by: GSE133349"	""	""	"87"	"3,4"	"V"	"post-central gyrus"	"male"	NA	"12"
+"GSM1176252"	"post-central gyrus_male_94_AD_44"	"GSM1176252"	"Public on Apr 21 2014"	"Jun 27 2013"	"Jun 26 2019"	"RNA"	"1"	"post-central gyrus_male_AD"	"Homo sapiens"	"gender: male"	"age (yrs): 94"	"brain region: post-central gyrus"	"braak stage: IV"	"apoe genotype: 3,4"	"mmse: 18"	""	""	"total RNA"	"Trizol extraction of total RNA, followed by purification using Qiagen quick-spin columns"	"biotin"	"Biotinylated cRNA were prepared according to the standard Affymetrix protocol from 10 ug total RNA (Expression Analysis Technical Manual, 2001, Affymetrix) using robotics system (Biomek FX MicroArray Plex SA System; Beckman Coulter) to optimize consistency in processing"	"9606"	"Following fragmentation, 30 mg biotin-labeled cRNA were hybridized for 16 hr and rotated at 13 rpm at 50° C on Affymetrix Human HgU133 plus 2.0 microarrays"	"Affymetrix Genekeep GCS3000, software version 3.2.2.1515"	"post-mortem tissue"	"GC-RMA, using Genespring 7.3. data transformation: measurements <0.01 set to 0.01; per chip: normalized to the 50th percentile; per gene: normalize to median"	"GPL570"	"Nicole,Claudia,Berchtold"	"nberchto@uci.edu"	"949 824 6071"	"Carl W. Cotman"	"Institute for Memory Impairments and Neurological Disorders"	"UC Irvine"	"1226 Gillespie Neuroscience Facility"	"Irvine"	"CA"	"92697-4540"	"USA"	"ftp://ftp.ncbi.nlm.nih.gov/geo/samples/GSM1176nnn/GSM1176252/suppl/GSM1176252_1105A-08_PCG-44_Affy.CEL.gz"	"54675"	"Reanalyzed by: GSE133349"	""	""	"94"	"3,4"	"IV"	"post-central gyrus"	"male"	NA	"18"
+"GSM1176253"	"post-central gyrus_male_94_AD_5"	"GSM1176253"	"Public on Apr 21 2014"	"Jun 27 2013"	"Jun 26 2019"	"RNA"	"1"	"post-central gyrus_male_AD"	"Homo sapiens"	"gender: male"	"age (yrs): 94"	"brain region: post-central gyrus"	"braak stage: VI"	"apoe genotype: 3,3"	"mmse: 15"	""	""	"total RNA"	"Trizol extraction of total RNA, followed by purification using Qiagen quick-spin columns"	"biotin"	"Biotinylated cRNA were prepared according to the standard Affymetrix protocol from 10 ug total RNA (Expression Analysis Technical Manual, 2001, Affymetrix) using robotics system (Biomek FX MicroArray Plex SA System; Beckman Coulter) to optimize consistency in processing"	"9606"	"Following fragmentation, 30 mg biotin-labeled cRNA were hybridized for 16 hr and rotated at 13 rpm at 50° C on Affymetrix Human HgU133 plus 2.0 microarrays"	"Affymetrix Genekeep GCS3000, software version 3.2.2.1515"	"post-mortem tissue"	"GC-RMA, using Genespring 7.3. data transformation: measurements <0.01 set to 0.01; per chip: normalized to the 50th percentile; per gene: normalize to median"	"GPL570"	"Nicole,Claudia,Berchtold"	"nberchto@uci.edu"	"949 824 6071"	"Carl W. Cotman"	"Institute for Memory Impairments and Neurological Disorders"	"UC Irvine"	"1226 Gillespie Neuroscience Facility"	"Irvine"	"CA"	"92697-4540"	"USA"	"ftp://ftp.ncbi.nlm.nih.gov/geo/samples/GSM1176nnn/GSM1176253/suppl/GSM1176253_0306A-02_PCG-05_AffyHyb.CEL.gz"	"54675"	"Reanalyzed by: GSE133349"	""	""	"94"	"3,3"	"VI"	"post-central gyrus"	"male"	NA	"15"
+"GSM1176254"	"post-central gyrus_male_94_AD_90"	"GSM1176254"	"Public on Apr 21 2014"	"Jun 27 2013"	"Jun 26 2019"	"RNA"	"1"	"post-central gyrus_male_AD"	"Homo sapiens"	"gender: male"	"age (yrs): 94"	"brain region: post-central gyrus"	"braak stage: IV"	"apoe genotype: 3,3"	"mmse: no info"	""	""	"total RNA"	"Trizol extraction of total RNA, followed by purification using Qiagen quick-spin columns"	"biotin"	"Biotinylated cRNA were prepared according to the standard Affymetrix protocol from 10 ug total RNA (Expression Analysis Technical Manual, 2001, Affymetrix) using robotics system (Biomek FX MicroArray Plex SA System; Beckman Coulter) to optimize consistency in processing"	"9606"	"Following fragmentation, 30 mg biotin-labeled cRNA were hybridized for 16 hr and rotated at 13 rpm at 50° C on Affymetrix Human HgU133 plus 2.0 microarrays"	"Affymetrix Genekeep GCS3000, software version 3.2.2.1515"	"post-mortem tissue"	"GC-RMA, using Genespring 7.3. data transformation: measurements <0.01 set to 0.01; per chip: normalized to the 50th percentile; per gene: normalize to median"	"GPL570"	"Nicole,Claudia,Berchtold"	"nberchto@uci.edu"	"949 824 6071"	"Carl W. Cotman"	"Institute for Memory Impairments and Neurological Disorders"	"UC Irvine"	"1226 Gillespie Neuroscience Facility"	"Irvine"	"CA"	"92697-4540"	"USA"	"ftp://ftp.ncbi.nlm.nih.gov/geo/samples/GSM1176nnn/GSM1176254/suppl/GSM1176254_1205A-07_PCG-90_AffyHyb.CEL.gz"	"54675"	"Reanalyzed by: GSE133349"	""	""	"94"	"3,3"	"IV"	"post-central gyrus"	"male"	NA	"no info"
+"GSM1176255"	"superior frontal gyrus_female_74_AD_37"	"GSM1176255"	"Public on Apr 21 2014"	"Jun 27 2013"	"Jun 26 2019"	"RNA"	"1"	"superior frontal gyrus_female_AD"	"Homo sapiens"	"gender: female"	"age (yrs): 74"	"brain region: superior frontal gyrus"	"braak stage: VI"	"apoe genotype: 2,4"	"mmse: 17"	""	""	"total RNA"	"Trizol extraction of total RNA, followed by purification using Qiagen quick-spin columns"	"biotin"	"Biotinylated cRNA were prepared according to the standard Affymetrix protocol from 10 ug total RNA (Expression Analysis Technical Manual, 2001, Affymetrix) using robotics system (Biomek FX MicroArray Plex SA System; Beckman Coulter) to optimize consistency in processing"	"9606"	"Following fragmentation, 30 mg biotin-labeled cRNA were hybridized for 16 hr and rotated at 13 rpm at 50° C on Affymetrix Human HgU133 plus 2.0 microarrays"	"Affymetrix Genekeep GCS3000, software version 3.2.2.1515"	"post-mortem tissue"	"GC-RMA, using Genespring 7.3. data transformation: measurements <0.01 set to 0.01; per chip: normalized to the 50th percentile; per gene: normalize to median"	"GPL570"	"Nicole,Claudia,Berchtold"	"nberchto@uci.edu"	"949 824 6071"	"Carl W. Cotman"	"Institute for Memory Impairments and Neurological Disorders"	"UC Irvine"	"1226 Gillespie Neuroscience Facility"	"Irvine"	"CA"	"92697-4540"	"USA"	"ftp://ftp.ncbi.nlm.nih.gov/geo/samples/GSM1176nnn/GSM1176255/suppl/GSM1176255_1205A-07_SG-37_AffyHyb.CEL.gz"	"54675"	"Reanalyzed by: GSE133349"	""	""	"74"	"2,4"	"VI"	"superior frontal gyrus"	"female"	NA	"17"
+"GSM1176256"	"superior frontal gyrus_female_76_AD_48"	"GSM1176256"	"Public on Apr 21 2014"	"Jun 27 2013"	"Jun 26 2019"	"RNA"	"1"	"superior frontal gyrus_female_AD"	"Homo sapiens"	"gender: female"	"age (yrs): 76"	"brain region: superior frontal gyrus"	"braak stage: V"	"apoe genotype: 3,3"	"mmse: 3"	""	""	"total RNA"	"Trizol extraction of total RNA, followed by purification using Qiagen quick-spin columns"	"biotin"	"Biotinylated cRNA were prepared according to the standard Affymetrix protocol from 10 ug total RNA (Expression Analysis Technical Manual, 2001, Affymetrix) using robotics system (Biomek FX MicroArray Plex SA System; Beckman Coulter) to optimize consistency in processing"	"9606"	"Following fragmentation, 30 mg biotin-labeled cRNA were hybridized for 16 hr and rotated at 13 rpm at 50° C on Affymetrix Human HgU133 plus 2.0 microarrays"	"Affymetrix Genekeep GCS3000, software version 3.2.2.1515"	"post-mortem tissue"	"GC-RMA, using Genespring 7.3. data transformation: measurements <0.01 set to 0.01; per chip: normalized to the 50th percentile; per gene: normalize to median"	"GPL570"	"Nicole,Claudia,Berchtold"	"nberchto@uci.edu"	"949 824 6071"	"Carl W. Cotman"	"Institute for Memory Impairments and Neurological Disorders"	"UC Irvine"	"1226 Gillespie Neuroscience Facility"	"Irvine"	"CA"	"92697-4540"	"USA"	"ftp://ftp.ncbi.nlm.nih.gov/geo/samples/GSM1176nnn/GSM1176256/suppl/GSM1176256_1105A-08_SG-48_Affy.CEL.gz"	"54675"	"Reanalyzed by: GSE133349"	""	""	"76"	"3,3"	"V"	"superior frontal gyrus"	"female"	NA	"3"
+"GSM1176257"	"superior frontal gyrus_female_86_AD_15"	"GSM1176257"	"Public on Apr 21 2014"	"Jun 27 2013"	"Jun 26 2019"	"RNA"	"1"	"superior frontal gyrus_female_AD"	"Homo sapiens"	"gender: female"	"age (yrs): 86"	"brain region: superior frontal gyrus"	"braak stage: VI"	"apoe genotype: 4,4"	"mmse: 9"	""	""	"total RNA"	"Trizol extraction of total RNA, followed by purification using Qiagen quick-spin columns"	"biotin"	"Biotinylated cRNA were prepared according to the standard Affymetrix protocol from 10 ug total RNA (Expression Analysis Technical Manual, 2001, Affymetrix) using robotics system (Biomek FX MicroArray Plex SA System; Beckman Coulter) to optimize consistency in processing"	"9606"	"Following fragmentation, 30 mg biotin-labeled cRNA were hybridized for 16 hr and rotated at 13 rpm at 50° C on Affymetrix Human HgU133 plus 2.0 microarrays"	"Affymetrix Genekeep GCS3000, software version 3.2.2.1515"	"post-mortem tissue"	"GC-RMA, using Genespring 7.3. data transformation: measurements <0.01 set to 0.01; per chip: normalized to the 50th percentile; per gene: normalize to median"	"GPL570"	"Nicole,Claudia,Berchtold"	"nberchto@uci.edu"	"949 824 6071"	"Carl W. Cotman"	"Institute for Memory Impairments and Neurological Disorders"	"UC Irvine"	"1226 Gillespie Neuroscience Facility"	"Irvine"	"CA"	"92697-4540"	"USA"	"ftp://ftp.ncbi.nlm.nih.gov/geo/samples/GSM1176nnn/GSM1176257/suppl/GSM1176257_0306A-02_SG-15_AffyHyb.CEL.gz"	"54675"	"Reanalyzed by: GSE133349"	""	""	"86"	"4,4"	"VI"	"superior frontal gyrus"	"female"	NA	"9"
+"GSM1176258"	"superior frontal gyrus_female_82_AD_9"	"GSM1176258"	"Public on Apr 21 2014"	"Jun 27 2013"	"Jun 26 2019"	"RNA"	"1"	"superior frontal gyrus_female_AD"	"Homo sapiens"	"gender: female"	"age (yrs): 82"	"brain region: superior frontal gyrus"	"braak stage: VI"	"apoe genotype: 3,4"	"mmse: 0"	""	""	"total RNA"	"Trizol extraction of total RNA, followed by purification using Qiagen quick-spin columns"	"biotin"	"Biotinylated cRNA were prepared according to the standard Affymetrix protocol from 10 ug total RNA (Expression Analysis Technical Manual, 2001, Affymetrix) using robotics system (Biomek FX MicroArray Plex SA System; Beckman Coulter) to optimize consistency in processing"	"9606"	"Following fragmentation, 30 mg biotin-labeled cRNA were hybridized for 16 hr and rotated at 13 rpm at 50° C on Affymetrix Human HgU133 plus 2.0 microarrays"	"Affymetrix Genekeep GCS3000, software version 3.2.2.1515"	"post-mortem tissue"	"GC-RMA, using Genespring 7.3. data transformation: measurements <0.01 set to 0.01; per chip: normalized to the 50th percentile; per gene: normalize to median"	"GPL570"	"Nicole,Claudia,Berchtold"	"nberchto@uci.edu"	"949 824 6071"	"Carl W. Cotman"	"Institute for Memory Impairments and Neurological Disorders"	"UC Irvine"	"1226 Gillespie Neuroscience Facility"	"Irvine"	"CA"	"92697-4540"	"USA"	"ftp://ftp.ncbi.nlm.nih.gov/geo/samples/GSM1176nnn/GSM1176258/suppl/GSM1176258_1005A02_SG-9_AffyHyb.CEL.gz"	"54675"	"Reanalyzed by: GSE133349"	""	""	"82"	"3,4"	"VI"	"superior frontal gyrus"	"female"	NA	"0"
+"GSM1176259"	"superior frontal gyrus_female_85_AD_24"	"GSM1176259"	"Public on Apr 21 2014"	"Jun 27 2013"	"Jun 26 2019"	"RNA"	"1"	"superior frontal gyrus_female_AD"	"Homo sapiens"	"gender: female"	"age (yrs): 85"	"brain region: superior frontal gyrus"	"braak stage: IV"	"apoe genotype: 3,4"	"mmse: 26"	""	""	"total RNA"	"Trizol extraction of total RNA, followed by purification using Qiagen quick-spin columns"	"biotin"	"Biotinylated cRNA were prepared according to the standard Affymetrix protocol from 10 ug total RNA (Expression Analysis Technical Manual, 2001, Affymetrix) using robotics system (Biomek FX MicroArray Plex SA System; Beckman Coulter) to optimize consistency in processing"	"9606"	"Following fragmentation, 30 mg biotin-labeled cRNA were hybridized for 16 hr and rotated at 13 rpm at 50° C on Affymetrix Human HgU133 plus 2.0 microarrays"	"Affymetrix Genekeep GCS3000, software version 3.2.2.1515"	"post-mortem tissue"	"GC-RMA, using Genespring 7.3. data transformation: measurements <0.01 set to 0.01; per chip: normalized to the 50th percentile; per gene: normalize to median"	"GPL570"	"Nicole,Claudia,Berchtold"	"nberchto@uci.edu"	"949 824 6071"	"Carl W. Cotman"	"Institute for Memory Impairments and Neurological Disorders"	"UC Irvine"	"1226 Gillespie Neuroscience Facility"	"Irvine"	"CA"	"92697-4540"	"USA"	"ftp://ftp.ncbi.nlm.nih.gov/geo/samples/GSM1176nnn/GSM1176259/suppl/GSM1176259_0306A-02_SG-24_AffyHyb.CEL.gz"	"54675"	"Reanalyzed by: GSE133349"	""	""	"85"	"3,4"	"IV"	"superior frontal gyrus"	"female"	NA	"26"
+"GSM1176260"	"superior frontal gyrus_female_85_AD_57"	"GSM1176260"	"Public on Apr 21 2014"	"Jun 27 2013"	"Jun 26 2019"	"RNA"	"1"	"superior frontal gyrus_female_AD"	"Homo sapiens"	"gender: female"	"age (yrs): 85"	"brain region: superior frontal gyrus"	"braak stage: V"	"apoe genotype: 3,3"	"mmse: no info"	""	""	"total RNA"	"Trizol extraction of total RNA, followed by purification using Qiagen quick-spin columns"	"biotin"	"Biotinylated cRNA were prepared according to the standard Affymetrix protocol from 10 ug total RNA (Expression Analysis Technical Manual, 2001, Affymetrix) using robotics system (Biomek FX MicroArray Plex SA System; Beckman Coulter) to optimize consistency in processing"	"9606"	"Following fragmentation, 30 mg biotin-labeled cRNA were hybridized for 16 hr and rotated at 13 rpm at 50° C on Affymetrix Human HgU133 plus 2.0 microarrays"	"Affymetrix Genekeep GCS3000, software version 3.2.2.1515"	"post-mortem tissue"	"GC-RMA, using Genespring 7.3. data transformation: measurements <0.01 set to 0.01; per chip: normalized to the 50th percentile; per gene: normalize to median"	"GPL570"	"Nicole,Claudia,Berchtold"	"nberchto@uci.edu"	"949 824 6071"	"Carl W. Cotman"	"Institute for Memory Impairments and Neurological Disorders"	"UC Irvine"	"1226 Gillespie Neuroscience Facility"	"Irvine"	"CA"	"92697-4540"	"USA"	"ftp://ftp.ncbi.nlm.nih.gov/geo/samples/GSM1176nnn/GSM1176260/suppl/GSM1176260_0606A-05_SG_57_AffyHyb.CEL.gz"	"54675"	"Reanalyzed by: GSE133349"	""	""	"85"	"3,3"	"V"	"superior frontal gyrus"	"female"	NA	"no info"
+"GSM1176261"	"superior frontal gyrus_female_88_AD_91"	"GSM1176261"	"Public on Apr 21 2014"	"Jun 27 2013"	"Jun 26 2019"	"RNA"	"1"	"superior frontal gyrus_female_AD"	"Homo sapiens"	"gender: female"	"age (yrs): 88"	"brain region: superior frontal gyrus"	"braak stage: IV"	"apoe genotype: 3,4"	"mmse: 27"	""	""	"total RNA"	"Trizol extraction of total RNA, followed by purification using Qiagen quick-spin columns"	"biotin"	"Biotinylated cRNA were prepared according to the standard Affymetrix protocol from 10 ug total RNA (Expression Analysis Technical Manual, 2001, Affymetrix) using robotics system (Biomek FX MicroArray Plex SA System; Beckman Coulter) to optimize consistency in processing"	"9606"	"Following fragmentation, 30 mg biotin-labeled cRNA were hybridized for 16 hr and rotated at 13 rpm at 50° C on Affymetrix Human HgU133 plus 2.0 microarrays"	"Affymetrix Genekeep GCS3000, software version 3.2.2.1515"	"post-mortem tissue"	"GC-RMA, using Genespring 7.3. data transformation: measurements <0.01 set to 0.01; per chip: normalized to the 50th percentile; per gene: normalize to median"	"GPL570"	"Nicole,Claudia,Berchtold"	"nberchto@uci.edu"	"949 824 6071"	"Carl W. Cotman"	"Institute for Memory Impairments and Neurological Disorders"	"UC Irvine"	"1226 Gillespie Neuroscience Facility"	"Irvine"	"CA"	"92697-4540"	"USA"	"ftp://ftp.ncbi.nlm.nih.gov/geo/samples/GSM1176nnn/GSM1176261/suppl/GSM1176261_0606A-05_SG_91_AffyHyb.CEL.gz"	"54675"	"Reanalyzed by: GSE133349"	""	""	"88"	"3,4"	"IV"	"superior frontal gyrus"	"female"	NA	"27"
+"GSM1176262"	"superior frontal gyrus_female_90_AD_23"	"GSM1176262"	"Public on Apr 21 2014"	"Jun 27 2013"	"Jun 26 2019"	"RNA"	"1"	"superior frontal gyrus_female_AD"	"Homo sapiens"	"gender: female"	"age (yrs): 90"	"brain region: superior frontal gyrus"	"braak stage: VI"	"apoe genotype: 3,4"	"mmse: 12"	""	""	"total RNA"	"Trizol extraction of total RNA, followed by purification using Qiagen quick-spin columns"	"biotin"	"Biotinylated cRNA were prepared according to the standard Affymetrix protocol from 10 ug total RNA (Expression Analysis Technical Manual, 2001, Affymetrix) using robotics system (Biomek FX MicroArray Plex SA System; Beckman Coulter) to optimize consistency in processing"	"9606"	"Following fragmentation, 30 mg biotin-labeled cRNA were hybridized for 16 hr and rotated at 13 rpm at 50° C on Affymetrix Human HgU133 plus 2.0 microarrays"	"Affymetrix Genekeep GCS3000, software version 3.2.2.1515"	"post-mortem tissue"	"GC-RMA, using Genespring 7.3. data transformation: measurements <0.01 set to 0.01; per chip: normalized to the 50th percentile; per gene: normalize to median"	"GPL570"	"Nicole,Claudia,Berchtold"	"nberchto@uci.edu"	"949 824 6071"	"Carl W. Cotman"	"Institute for Memory Impairments and Neurological Disorders"	"UC Irvine"	"1226 Gillespie Neuroscience Facility"	"Irvine"	"CA"	"92697-4540"	"USA"	"ftp://ftp.ncbi.nlm.nih.gov/geo/samples/GSM1176nnn/GSM1176262/suppl/GSM1176262_1205A-07_SG-23_AffyHyb.CEL.gz"	"54675"	"Reanalyzed by: GSE133349"	""	""	"90"	"3,4"	"VI"	"superior frontal gyrus"	"female"	NA	"12"
+"GSM1176263"	"superior frontal gyrus_female_90_AD_36"	"GSM1176263"	"Public on Apr 21 2014"	"Jun 27 2013"	"Jun 26 2019"	"RNA"	"1"	"superior frontal gyrus_female_AD"	"Homo sapiens"	"gender: female"	"age (yrs): 90"	"brain region: superior frontal gyrus"	"braak stage: IV"	"apoe genotype: 3,4"	"mmse: 17"	""	""	"total RNA"	"Trizol extraction of total RNA, followed by purification using Qiagen quick-spin columns"	"biotin"	"Biotinylated cRNA were prepared according to the standard Affymetrix protocol from 10 ug total RNA (Expression Analysis Technical Manual, 2001, Affymetrix) using robotics system (Biomek FX MicroArray Plex SA System; Beckman Coulter) to optimize consistency in processing"	"9606"	"Following fragmentation, 30 mg biotin-labeled cRNA were hybridized for 16 hr and rotated at 13 rpm at 50° C on Affymetrix Human HgU133 plus 2.0 microarrays"	"Affymetrix Genekeep GCS3000, software version 3.2.2.1515"	"post-mortem tissue"	"GC-RMA, using Genespring 7.3. data transformation: measurements <0.01 set to 0.01; per chip: normalized to the 50th percentile; per gene: normalize to median"	"GPL570"	"Nicole,Claudia,Berchtold"	"nberchto@uci.edu"	"949 824 6071"	"Carl W. Cotman"	"Institute for Memory Impairments and Neurological Disorders"	"UC Irvine"	"1226 Gillespie Neuroscience Facility"	"Irvine"	"CA"	"92697-4540"	"USA"	"ftp://ftp.ncbi.nlm.nih.gov/geo/samples/GSM1176nnn/GSM1176263/suppl/GSM1176263_1005A02_SG-36_AffyHyb.CEL.gz"	"54675"	"Reanalyzed by: GSE133349"	""	""	"90"	"3,4"	"IV"	"superior frontal gyrus"	"female"	NA	"17"
+"GSM1176264"	"superior frontal gyrus_female_90_AD_6"	"GSM1176264"	"Public on Apr 21 2014"	"Jun 27 2013"	"Jun 26 2019"	"RNA"	"1"	"superior frontal gyrus_female_AD"	"Homo sapiens"	"gender: female"	"age (yrs): 90"	"brain region: superior frontal gyrus"	"braak stage: V"	"apoe genotype: 3,4"	"mmse: 20"	""	""	"total RNA"	"Trizol extraction of total RNA, followed by purification using Qiagen quick-spin columns"	"biotin"	"Biotinylated cRNA were prepared according to the standard Affymetrix protocol from 10 ug total RNA (Expression Analysis Technical Manual, 2001, Affymetrix) using robotics system (Biomek FX MicroArray Plex SA System; Beckman Coulter) to optimize consistency in processing"	"9606"	"Following fragmentation, 30 mg biotin-labeled cRNA were hybridized for 16 hr and rotated at 13 rpm at 50° C on Affymetrix Human HgU133 plus 2.0 microarrays"	"Affymetrix Genekeep GCS3000, software version 3.2.2.1515"	"post-mortem tissue"	"GC-RMA, using Genespring 7.3. data transformation: measurements <0.01 set to 0.01; per chip: normalized to the 50th percentile; per gene: normalize to median"	"GPL570"	"Nicole,Claudia,Berchtold"	"nberchto@uci.edu"	"949 824 6071"	"Carl W. Cotman"	"Institute for Memory Impairments and Neurological Disorders"	"UC Irvine"	"1226 Gillespie Neuroscience Facility"	"Irvine"	"CA"	"92697-4540"	"USA"	"ftp://ftp.ncbi.nlm.nih.gov/geo/samples/GSM1176nnn/GSM1176264/suppl/GSM1176264_1005A02_SG-6_AffyHyb.CEL.gz"	"54675"	"Reanalyzed by: GSE133349"	""	""	"90"	"3,4"	"V"	"superior frontal gyrus"	"female"	NA	"20"
+"GSM1176265"	"superior frontal gyrus_female_90_AD_75"	"GSM1176265"	"Public on Apr 21 2014"	"Jun 27 2013"	"Jun 26 2019"	"RNA"	"1"	"superior frontal gyrus_female_AD"	"Homo sapiens"	"gender: female"	"age (yrs): 90"	"brain region: superior frontal gyrus"	"braak stage: III"	"apoe genotype: 4,4"	"mmse: no info"	""	""	"total RNA"	"Trizol extraction of total RNA, followed by purification using Qiagen quick-spin columns"	"biotin"	"Biotinylated cRNA were prepared according to the standard Affymetrix protocol from 10 ug total RNA (Expression Analysis Technical Manual, 2001, Affymetrix) using robotics system (Biomek FX MicroArray Plex SA System; Beckman Coulter) to optimize consistency in processing"	"9606"	"Following fragmentation, 30 mg biotin-labeled cRNA were hybridized for 16 hr and rotated at 13 rpm at 50° C on Affymetrix Human HgU133 plus 2.0 microarrays"	"Affymetrix Genekeep GCS3000, software version 3.2.2.1515"	"post-mortem tissue"	"GC-RMA, using Genespring 7.3. data transformation: measurements <0.01 set to 0.01; per chip: normalized to the 50th percentile; per gene: normalize to median"	"GPL570"	"Nicole,Claudia,Berchtold"	"nberchto@uci.edu"	"949 824 6071"	"Carl W. Cotman"	"Institute for Memory Impairments and Neurological Disorders"	"UC Irvine"	"1226 Gillespie Neuroscience Facility"	"Irvine"	"CA"	"92697-4540"	"USA"	"ftp://ftp.ncbi.nlm.nih.gov/geo/samples/GSM1176nnn/GSM1176265/suppl/GSM1176265_1105A02_SG-75_AffyHyb.CEL.gz"	"54675"	"Reanalyzed by: GSE133349"	""	""	"90"	"4,4"	"III"	"superior frontal gyrus"	"female"	NA	"no info"
+"GSM1176266"	"superior frontal gyrus_female_91_AD_11"	"GSM1176266"	"Public on Apr 21 2014"	"Jun 27 2013"	"Jun 26 2019"	"RNA"	"1"	"superior frontal gyrus_female_AD"	"Homo sapiens"	"gender: female"	"age (yrs): 91"	"brain region: superior frontal gyrus"	"braak stage: V-VI"	"apoe genotype: 4,4"	"mmse: 11"	""	""	"total RNA"	"Trizol extraction of total RNA, followed by purification using Qiagen quick-spin columns"	"biotin"	"Biotinylated cRNA were prepared according to the standard Affymetrix protocol from 10 ug total RNA (Expression Analysis Technical Manual, 2001, Affymetrix) using robotics system (Biomek FX MicroArray Plex SA System; Beckman Coulter) to optimize consistency in processing"	"9606"	"Following fragmentation, 30 mg biotin-labeled cRNA were hybridized for 16 hr and rotated at 13 rpm at 50° C on Affymetrix Human HgU133 plus 2.0 microarrays"	"Affymetrix Genekeep GCS3000, software version 3.2.2.1515"	"post-mortem tissue"	"GC-RMA, using Genespring 7.3. data transformation: measurements <0.01 set to 0.01; per chip: normalized to the 50th percentile; per gene: normalize to median"	"GPL570"	"Nicole,Claudia,Berchtold"	"nberchto@uci.edu"	"949 824 6071"	"Carl W. Cotman"	"Institute for Memory Impairments and Neurological Disorders"	"UC Irvine"	"1226 Gillespie Neuroscience Facility"	"Irvine"	"CA"	"92697-4540"	"USA"	"ftp://ftp.ncbi.nlm.nih.gov/geo/samples/GSM1176nnn/GSM1176266/suppl/GSM1176266_1105A02_SG-11_AffyHyb.CEL.gz"	"54675"	"Reanalyzed by: GSE133349"	""	""	"91"	"4,4"	"V-VI"	"superior frontal gyrus"	"female"	NA	"11"
+"GSM1176267"	"superior frontal gyrus_female_94_AD_70"	"GSM1176267"	"Public on Apr 21 2014"	"Jun 27 2013"	"Jun 26 2019"	"RNA"	"1"	"superior frontal gyrus_female_AD"	"Homo sapiens"	"gender: female"	"age (yrs): 94"	"brain region: superior frontal gyrus"	"braak stage: I"	"apoe genotype: 3,3"	"mmse: no info"	""	""	"total RNA"	"Trizol extraction of total RNA, followed by purification using Qiagen quick-spin columns"	"biotin"	"Biotinylated cRNA were prepared according to the standard Affymetrix protocol from 10 ug total RNA (Expression Analysis Technical Manual, 2001, Affymetrix) using robotics system (Biomek FX MicroArray Plex SA System; Beckman Coulter) to optimize consistency in processing"	"9606"	"Following fragmentation, 30 mg biotin-labeled cRNA were hybridized for 16 hr and rotated at 13 rpm at 50° C on Affymetrix Human HgU133 plus 2.0 microarrays"	"Affymetrix Genekeep GCS3000, software version 3.2.2.1515"	"post-mortem tissue"	"GC-RMA, using Genespring 7.3. data transformation: measurements <0.01 set to 0.01; per chip: normalized to the 50th percentile; per gene: normalize to median"	"GPL570"	"Nicole,Claudia,Berchtold"	"nberchto@uci.edu"	"949 824 6071"	"Carl W. Cotman"	"Institute for Memory Impairments and Neurological Disorders"	"UC Irvine"	"1226 Gillespie Neuroscience Facility"	"Irvine"	"CA"	"92697-4540"	"USA"	"ftp://ftp.ncbi.nlm.nih.gov/geo/samples/GSM1176nnn/GSM1176267/suppl/GSM1176267_1105A02_SG-70_AffyHyb.CEL.gz"	"54675"	"Reanalyzed by: GSE133349"	""	""	"94"	"3,3"	"I"	"superior frontal gyrus"	"female"	NA	"no info"
+"GSM1176268"	"superior frontal gyrus_female_95_AD_64"	"GSM1176268"	"Public on Apr 21 2014"	"Jun 27 2013"	"Jun 26 2019"	"RNA"	"1"	"superior frontal gyrus_female_AD"	"Homo sapiens"	"gender: female"	"age (yrs): 95"	"brain region: superior frontal gyrus"	"braak stage: no info"	"apoe genotype: 3,3"	"mmse: no info"	""	""	"total RNA"	"Trizol extraction of total RNA, followed by purification using Qiagen quick-spin columns"	"biotin"	"Biotinylated cRNA were prepared according to the standard Affymetrix protocol from 10 ug total RNA (Expression Analysis Technical Manual, 2001, Affymetrix) using robotics system (Biomek FX MicroArray Plex SA System; Beckman Coulter) to optimize consistency in processing"	"9606"	"Following fragmentation, 30 mg biotin-labeled cRNA were hybridized for 16 hr and rotated at 13 rpm at 50° C on Affymetrix Human HgU133 plus 2.0 microarrays"	"Affymetrix Genekeep GCS3000, software version 3.2.2.1515"	"post-mortem tissue"	"GC-RMA, using Genespring 7.3. data transformation: measurements <0.01 set to 0.01; per chip: normalized to the 50th percentile; per gene: normalize to median"	"GPL570"	"Nicole,Claudia,Berchtold"	"nberchto@uci.edu"	"949 824 6071"	"Carl W. Cotman"	"Institute for Memory Impairments and Neurological Disorders"	"UC Irvine"	"1226 Gillespie Neuroscience Facility"	"Irvine"	"CA"	"92697-4540"	"USA"	"ftp://ftp.ncbi.nlm.nih.gov/geo/samples/GSM1176nnn/GSM1176268/suppl/GSM1176268_1205A-07_SG-64_AffyHyb.CEL.gz"	"54675"	"Reanalyzed by: GSE133349"	""	""	"95"	"3,3"	"no info"	"superior frontal gyrus"	"female"	NA	"no info"
+"GSM1176269"	"superior frontal gyrus_male_76_AD_33"	"GSM1176269"	"Public on Apr 21 2014"	"Jun 27 2013"	"Jun 26 2019"	"RNA"	"1"	"superior frontal gyrus_male_AD"	"Homo sapiens"	"gender: male"	"age (yrs): 76"	"brain region: superior frontal gyrus"	"braak stage: V"	"apoe genotype: 4,4"	"mmse: 0"	""	""	"total RNA"	"Trizol extraction of total RNA, followed by purification using Qiagen quick-spin columns"	"biotin"	"Biotinylated cRNA were prepared according to the standard Affymetrix protocol from 10 ug total RNA (Expression Analysis Technical Manual, 2001, Affymetrix) using robotics system (Biomek FX MicroArray Plex SA System; Beckman Coulter) to optimize consistency in processing"	"9606"	"Following fragmentation, 30 mg biotin-labeled cRNA were hybridized for 16 hr and rotated at 13 rpm at 50° C on Affymetrix Human HgU133 plus 2.0 microarrays"	"Affymetrix Genekeep GCS3000, software version 3.2.2.1515"	"post-mortem tissue"	"GC-RMA, using Genespring 7.3. data transformation: measurements <0.01 set to 0.01; per chip: normalized to the 50th percentile; per gene: normalize to median"	"GPL570"	"Nicole,Claudia,Berchtold"	"nberchto@uci.edu"	"949 824 6071"	"Carl W. Cotman"	"Institute for Memory Impairments and Neurological Disorders"	"UC Irvine"	"1226 Gillespie Neuroscience Facility"	"Irvine"	"CA"	"92697-4540"	"USA"	"ftp://ftp.ncbi.nlm.nih.gov/geo/samples/GSM1176nnn/GSM1176269/suppl/GSM1176269_1005A02_SG-33_AffyHyb.CEL.gz"	"54675"	"Reanalyzed by: GSE133349"	""	""	"76"	"4,4"	"V"	"superior frontal gyrus"	"male"	NA	"0"
+"GSM1176270"	"superior frontal gyrus_male_85_AD_51"	"GSM1176270"	"Public on Apr 21 2014"	"Jun 27 2013"	"Jun 26 2019"	"RNA"	"1"	"superior frontal gyrus_male_AD"	"Homo sapiens"	"gender: male"	"age (yrs): 85"	"brain region: superior frontal gyrus"	"braak stage: III"	"apoe genotype: 3,3"	"mmse: 22"	""	""	"total RNA"	"Trizol extraction of total RNA, followed by purification using Qiagen quick-spin columns"	"biotin"	"Biotinylated cRNA were prepared according to the standard Affymetrix protocol from 10 ug total RNA (Expression Analysis Technical Manual, 2001, Affymetrix) using robotics system (Biomek FX MicroArray Plex SA System; Beckman Coulter) to optimize consistency in processing"	"9606"	"Following fragmentation, 30 mg biotin-labeled cRNA were hybridized for 16 hr and rotated at 13 rpm at 50° C on Affymetrix Human HgU133 plus 2.0 microarrays"	"Affymetrix Genekeep GCS3000, software version 3.2.2.1515"	"post-mortem tissue"	"GC-RMA, using Genespring 7.3. data transformation: measurements <0.01 set to 0.01; per chip: normalized to the 50th percentile; per gene: normalize to median"	"GPL570"	"Nicole,Claudia,Berchtold"	"nberchto@uci.edu"	"949 824 6071"	"Carl W. Cotman"	"Institute for Memory Impairments and Neurological Disorders"	"UC Irvine"	"1226 Gillespie Neuroscience Facility"	"Irvine"	"CA"	"92697-4540"	"USA"	"ftp://ftp.ncbi.nlm.nih.gov/geo/samples/GSM1176nnn/GSM1176270/suppl/GSM1176270_1105A-08_SG-51_Affy.CEL.gz"	"54675"	"Reanalyzed by: GSE133349"	""	""	"85"	"3,3"	"III"	"superior frontal gyrus"	"male"	NA	"22"
+"GSM1176271"	"superior frontal gyrus_male_85_AD_74"	"GSM1176271"	"Public on Apr 21 2014"	"Jun 27 2013"	"Jun 26 2019"	"RNA"	"1"	"superior frontal gyrus_male_AD"	"Homo sapiens"	"gender: male"	"age (yrs): 85"	"brain region: superior frontal gyrus"	"braak stage: II"	"apoe genotype: 3,4"	"mmse: no info"	""	""	"total RNA"	"Trizol extraction of total RNA, followed by purification using Qiagen quick-spin columns"	"biotin"	"Biotinylated cRNA were prepared according to the standard Affymetrix protocol from 10 ug total RNA (Expression Analysis Technical Manual, 2001, Affymetrix) using robotics system (Biomek FX MicroArray Plex SA System; Beckman Coulter) to optimize consistency in processing"	"9606"	"Following fragmentation, 30 mg biotin-labeled cRNA were hybridized for 16 hr and rotated at 13 rpm at 50° C on Affymetrix Human HgU133 plus 2.0 microarrays"	"Affymetrix Genekeep GCS3000, software version 3.2.2.1515"	"post-mortem tissue"	"GC-RMA, using Genespring 7.3. data transformation: measurements <0.01 set to 0.01; per chip: normalized to the 50th percentile; per gene: normalize to median"	"GPL570"	"Nicole,Claudia,Berchtold"	"nberchto@uci.edu"	"949 824 6071"	"Carl W. Cotman"	"Institute for Memory Impairments and Neurological Disorders"	"UC Irvine"	"1226 Gillespie Neuroscience Facility"	"Irvine"	"CA"	"92697-4540"	"USA"	"ftp://ftp.ncbi.nlm.nih.gov/geo/samples/GSM1176nnn/GSM1176271/suppl/GSM1176271_1105A02_SG-74_AffyHyb.CEL.gz"	"54675"	"Reanalyzed by: GSE133349"	""	""	"85"	"3,4"	"II"	"superior frontal gyrus"	"male"	NA	"no info"
+"GSM1176272"	"superior frontal gyrus_male_86_AD_92"	"GSM1176272"	"Public on Apr 21 2014"	"Jun 27 2013"	"Jun 26 2019"	"RNA"	"1"	"superior frontal gyrus_male_AD"	"Homo sapiens"	"gender: male"	"age (yrs): 86"	"brain region: superior frontal gyrus"	"braak stage: IV"	"apoe genotype: 3,3"	"mmse: 19"	""	""	"total RNA"	"Trizol extraction of total RNA, followed by purification using Qiagen quick-spin columns"	"biotin"	"Biotinylated cRNA were prepared according to the standard Affymetrix protocol from 10 ug total RNA (Expression Analysis Technical Manual, 2001, Affymetrix) using robotics system (Biomek FX MicroArray Plex SA System; Beckman Coulter) to optimize consistency in processing"	"9606"	"Following fragmentation, 30 mg biotin-labeled cRNA were hybridized for 16 hr and rotated at 13 rpm at 50° C on Affymetrix Human HgU133 plus 2.0 microarrays"	"Affymetrix Genekeep GCS3000, software version 3.2.2.1515"	"post-mortem tissue"	"GC-RMA, using Genespring 7.3. data transformation: measurements <0.01 set to 0.01; per chip: normalized to the 50th percentile; per gene: normalize to median"	"GPL570"	"Nicole,Claudia,Berchtold"	"nberchto@uci.edu"	"949 824 6071"	"Carl W. Cotman"	"Institute for Memory Impairments and Neurological Disorders"	"UC Irvine"	"1226 Gillespie Neuroscience Facility"	"Irvine"	"CA"	"92697-4540"	"USA"	"ftp://ftp.ncbi.nlm.nih.gov/geo/samples/GSM1176nnn/GSM1176272/suppl/GSM1176272_0306A-02_SG-92_AffyHyb.CEL.gz"	"54675"	"Reanalyzed by: GSE133349"	""	""	"86"	"3,3"	"IV"	"superior frontal gyrus"	"male"	NA	"19"
+"GSM1176273"	"superior frontal gyrus_male_94_AD_44"	"GSM1176273"	"Public on Apr 21 2014"	"Jun 27 2013"	"Jun 26 2019"	"RNA"	"1"	"superior frontal gyrus_male_AD"	"Homo sapiens"	"gender: male"	"age (yrs): 94"	"brain region: superior frontal gyrus"	"braak stage: IV"	"apoe genotype: 3,4"	"mmse: 18"	""	""	"total RNA"	"Trizol extraction of total RNA, followed by purification using Qiagen quick-spin columns"	"biotin"	"Biotinylated cRNA were prepared according to the standard Affymetrix protocol from 10 ug total RNA (Expression Analysis Technical Manual, 2001, Affymetrix) using robotics system (Biomek FX MicroArray Plex SA System; Beckman Coulter) to optimize consistency in processing"	"9606"	"Following fragmentation, 30 mg biotin-labeled cRNA were hybridized for 16 hr and rotated at 13 rpm at 50° C on Affymetrix Human HgU133 plus 2.0 microarrays"	"Affymetrix Genekeep GCS3000, software version 3.2.2.1515"	"post-mortem tissue"	"GC-RMA, using Genespring 7.3. data transformation: measurements <0.01 set to 0.01; per chip: normalized to the 50th percentile; per gene: normalize to median"	"GPL570"	"Nicole,Claudia,Berchtold"	"nberchto@uci.edu"	"949 824 6071"	"Carl W. Cotman"	"Institute for Memory Impairments and Neurological Disorders"	"UC Irvine"	"1226 Gillespie Neuroscience Facility"	"Irvine"	"CA"	"92697-4540"	"USA"	"ftp://ftp.ncbi.nlm.nih.gov/geo/samples/GSM1176nnn/GSM1176273/suppl/GSM1176273_1105A02_SG-44_AffyHyb.CEL.gz"	"54675"	"Reanalyzed by: GSE133349"	""	""	"94"	"3,4"	"IV"	"superior frontal gyrus"	"male"	NA	"18"
+"GSM1176274"	"superior frontal gyrus_male_94_AD_5"	"GSM1176274"	"Public on Apr 21 2014"	"Jun 27 2013"	"Jun 26 2019"	"RNA"	"1"	"superior frontal gyrus_male_AD"	"Homo sapiens"	"gender: male"	"age (yrs): 94"	"brain region: superior frontal gyrus"	"braak stage: VI"	"apoe genotype: 3,3"	"mmse: 15"	""	""	"total RNA"	"Trizol extraction of total RNA, followed by purification using Qiagen quick-spin columns"	"biotin"	"Biotinylated cRNA were prepared according to the standard Affymetrix protocol from 10 ug total RNA (Expression Analysis Technical Manual, 2001, Affymetrix) using robotics system (Biomek FX MicroArray Plex SA System; Beckman Coulter) to optimize consistency in processing"	"9606"	"Following fragmentation, 30 mg biotin-labeled cRNA were hybridized for 16 hr and rotated at 13 rpm at 50° C on Affymetrix Human HgU133 plus 2.0 microarrays"	"Affymetrix Genekeep GCS3000, software version 3.2.2.1515"	"post-mortem tissue"	"GC-RMA, using Genespring 7.3. data transformation: measurements <0.01 set to 0.01; per chip: normalized to the 50th percentile; per gene: normalize to median"	"GPL570"	"Nicole,Claudia,Berchtold"	"nberchto@uci.edu"	"949 824 6071"	"Carl W. Cotman"	"Institute for Memory Impairments and Neurological Disorders"	"UC Irvine"	"1226 Gillespie Neuroscience Facility"	"Irvine"	"CA"	"92697-4540"	"USA"	"ftp://ftp.ncbi.nlm.nih.gov/geo/samples/GSM1176nnn/GSM1176274/suppl/GSM1176274_0806A-04_SG_05_03_Affy.CEL.gz"	"54675"	"Reanalyzed by: GSE133349"	""	""	"94"	"3,3"	"VI"	"superior frontal gyrus"	"male"	NA	"15"
+"GSM1176275"	"superior frontal gyrus_male_94_AD_90"	"GSM1176275"	"Public on Apr 21 2014"	"Jun 27 2013"	"Jun 26 2019"	"RNA"	"1"	"superior frontal gyrus_male_AD"	"Homo sapiens"	"gender: male"	"age (yrs): 94"	"brain region: superior frontal gyrus"	"braak stage: IV"	"apoe genotype: 3,3"	"mmse: no info"	""	""	"total RNA"	"Trizol extraction of total RNA, followed by purification using Qiagen quick-spin columns"	"biotin"	"Biotinylated cRNA were prepared according to the standard Affymetrix protocol from 10 ug total RNA (Expression Analysis Technical Manual, 2001, Affymetrix) using robotics system (Biomek FX MicroArray Plex SA System; Beckman Coulter) to optimize consistency in processing"	"9606"	"Following fragmentation, 30 mg biotin-labeled cRNA were hybridized for 16 hr and rotated at 13 rpm at 50° C on Affymetrix Human HgU133 plus 2.0 microarrays"	"Affymetrix Genekeep GCS3000, software version 3.2.2.1515"	"post-mortem tissue"	"GC-RMA, using Genespring 7.3. data transformation: measurements <0.01 set to 0.01; per chip: normalized to the 50th percentile; per gene: normalize to median"	"GPL570"	"Nicole,Claudia,Berchtold"	"nberchto@uci.edu"	"949 824 6071"	"Carl W. Cotman"	"Institute for Memory Impairments and Neurological Disorders"	"UC Irvine"	"1226 Gillespie Neuroscience Facility"	"Irvine"	"CA"	"92697-4540"	"USA"	"ftp://ftp.ncbi.nlm.nih.gov/geo/samples/GSM1176nnn/GSM1176275/suppl/GSM1176275_1105A02_SG-90_AffyHyb.CEL.gz"	"54675"	"Reanalyzed by: GSE133349"	""	""	"94"	"3,3"	"IV"	"superior frontal gyrus"	"male"	NA	"no info"
diff --git a/preprocessing-of-data/AD_GSE48350_GPL570probe_mapping.tsv b/preprocessing-of-data/AD_GSE48350_GPL570probe_mapping.tsv
new file mode 100644
index 0000000..085c3dd
--- /dev/null
+++ b/preprocessing-of-data/AD_GSE48350_GPL570probe_mapping.tsv
@@ -0,0 +1,37299 @@
+"affy_hg_u133_plus_2"	"hgnc_symbol"	"entrezgene_id"	"ensembl_gene_id"
+"1555653_at"	"MT-ND5"	4540	"ENSG00000198786"
+"1556677_at"	"ZFY-AS1"	107987337	"ENSG00000233070"
+"1554125_a_at"	"NLGN4Y"	22829	"ENSG00000165246"
+"1555743_s_at"	""	NA	"ENSG00000254488"
+"1552952_at"	""	159162	"ENSG00000290336"
+"1559471_s_at"	""	266917	"ENSG00000228592"
+"1559470_at"	""	266917	"ENSG00000228592"
+"1555716_a_at"	"CXADR"	1525	"ENSG00000154639"
+"1554983_at"	"LINC00317"	378828	"ENSG00000238265"
+"1552466_x_at"	"LINC00161"	118421	"ENSG00000226935"
+"1554405_a_at"	"LINC00161"	118421	"ENSG00000226935"
+"1555188_at"	"MTUS2-AS1"	NA	"ENSG00000179141"
+"1556414_at"	""	NA	"ENSG00000260583"
+"1553607_at"	"LINC00189"	193629	"ENSG00000215533"
+"1553313_s_at"	"SLC5A3"	6526	"ENSG00000198743"
+"1559603_at"	"GPR12"	2835	"ENSG00000132975"
+"1555778_a_at"	"POSTN"	10631	"ENSG00000133110"
+"1555935_s_at"	"HUNK"	30811	"ENSG00000142149"
+"1555125_at"	"PAXBP1"	94104	"ENSG00000159086"
+"1555994_at"	"DIAPH3-AS1"	100874195	"ENSG00000227528"
+"1555995_a_at"	"DIAPH3-AS1"	100874195	"ENSG00000227528"
+"1552468_a_at"	"DSCR10"	259234	"ENSG00000233316"
+"1552467_at"	"DSCR10"	259234	"ENSG00000233316"
+"1557279_at"	"ITSN1"	6453	"ENSG00000205726"
+"1557280_s_at"	"ITSN1"	6453	"ENSG00000205726"
+"1557717_at"	"LINC00550"	338862	"ENSG00000281778"
+"1554921_a_at"	"SCEL"	8796	"ENSG00000136155"
+"1554920_at"	"SCEL"	8796	"ENSG00000136155"
+"1553846_at"	"CBY2"	220082	"ENSG00000174015"
+"1553847_a_at"	"CBY2"	220082	"ENSG00000174015"
+"1556888_at"	""	105370259	"ENSG00000286330"
+"1556889_s_at"	""	105370259	"ENSG00000286330"
+"1553519_at"	"LINC00314"	246705	"ENSG00000178457"
+"1554767_s_at"	"CRYZL1"	9946	"ENSG00000205758"
+"1552347_at"	"CRYZL1"	9946	"ENSG00000205758"
+"1558636_s_at"	"ADAMTS5"	11096	"ENSG00000154736"
+"1554339_a_at"	"COG3"	83548	"ENSG00000136152"
+"1554942_a_at"	"KLHL14"	57565	"ENSG00000197705"
+"1554941_at"	"KLHL14"	57565	"ENSG00000197705"
+"1553282_at"	"UMODL1-AS1"	150147	"ENSG00000184385"
+"1553440_at"	"AQP4-AS1"	NA	"ENSG00000260372"
+"1552998_at"	"DEFB125"	245938	"ENSG00000178591"
+"1556940_at"	""	NA	"ENSG00000274718"
+"1556941_a_at"	""	NA	"ENSG00000274718"
+"1556477_a_at"	"LINC03032"	NA	"ENSG00000279965"
+"1556476_at"	"LINC03032"	NA	"ENSG00000279965"
+"1556502_at"	""	NA	"ENSG00000224356"
+"1555638_a_at"	"SAMSN1"	64092	"ENSG00000155307"
+"1557900_at"	"SIM2"	6493	"ENSG00000159263"
+"1557483_at"	""	284788	"ENSG00000204684"
+"1557720_s_at"	"MYO16"	23026	"ENSG00000041515"
+"1553673_at"	"STK35"	140901	"ENSG00000125834"
+"1555446_s_at"	"TRAPPC10"	7109	"ENSG00000160218"
+"1553794_at"	"STOML3"	161003	"ENSG00000133115"
+"1553686_at"	"C18orf25"	147339	"ENSG00000152242"
+"1554692_at"	"SLC23A2"	9962	"ENSG00000089057"
+"1555202_a_at"	"RPRD1A"	55197	"ENSG00000141425"
+"1554086_at"	"TUBGCP3"	10426	"ENSG00000126216"
+"1552414_at"	"WFDC9"	259240	"ENSG00000180205"
+"1552415_a_at"	"WFDC9"	259240	"ENSG00000180205"
+"1557404_at"	""	NA	"ENSG00000204398"
+"1552307_a_at"	"TTC39C"	125488	"ENSG00000168234"
+"1557545_s_at"	"RNF165"	494470	"ENSG00000141622"
+"1553087_at"	"ZBTB7C-AS2"	84322	"ENSG00000280197"
+"1552608_at"	"WFDC11"	259239	"ENSG00000180083"
+"1553721_at"	"RNF152"	220441	"ENSG00000176641"
+"1553722_s_at"	"RNF152"	220441	"ENSG00000176641"
+"1554857_at"	"ELMO2"	63916	"ENSG00000062598"
+"1556711_at"	"FAM216B"	144809	"ENSG00000179813"
+"1558930_at"	"LINC00460"	728192	"ENSG00000233532"
+"1556578_a_at"	""	NA	"ENSG00000274270"
+"1555953_at"	"SLC19A1"	6573	"ENSG00000173638"
+"1555952_at"	"SLC19A1"	6573	"ENSG00000173638"
+"1554700_at"	"CDH7"	1005	"ENSG00000081138"
+"1558477_at"	""	100131496	"ENSG00000267882"
+"1552822_at"	"TMX3"	54495	"ENSG00000166479"
+"1553239_at"	"FAM124A"	220108	"ENSG00000150510"
+"1554657_a_at"	"CFAP61"	26074	"ENSG00000089101"
+"1557465_at"	"TMEM272"	283521	"ENSG00000281106"
+"1557193_at"	"PTPN2"	5771	"ENSG00000175354"
+"1555740_a_at"	"MRAP"	56246	"ENSG00000170262"
+"1554044_a_at"	"MRAP"	56246	"ENSG00000170262"
+"1555741_at"	"MRAP"	56246	"ENSG00000170262"
+"1555403_a_at"	"CDH19"	28513	"ENSG00000071991"
+"1556288_at"	"SMIM21"	284274	"ENSG00000206026"
+"1554702_at"	"NALCN"	259232	"ENSG00000102452"
+"1558142_at"	"TNRC6B"	23112	"ENSG00000100354"
+"1555460_a_at"	"SLC39A6"	25800	"ENSG00000141424"
+"1556551_s_at"	"SLC39A6"	25800	"ENSG00000141424"
+"1554305_at"	"LIF-AS2"	91370	"ENSG00000268812"
+"1552394_a_at"	"ENTHD1"	150350	"ENSG00000176177"
+"1552393_at"	"ENTHD1"	150350	"ENSG00000176177"
+"1553227_s_at"	"BRWD1"	54014	"ENSG00000185658"
+"1557893_a_at"	"LINC01056"	100144597	"ENSG00000237119"
+"1557892_at"	"LINC01056"	100144597	"ENSG00000237119"
+"1558847_at"	"SWINGN"	NA	"ENSG00000260910"
+"1556909_at"	"LINC01898"	NA	"ENSG00000261194"
+"1554863_s_at"	"DOK5"	55816	"ENSG00000101134"
+"1554544_a_at"	"MBP"	4155	"ENSG00000197971"
+"1553300_a_at"	"DGKH"	160851	"ENSG00000102780"
+"1553850_at"	"B3GALT5-AS1"	NA	"ENSG00000184809"
+"1555231_a_at"	"B3GALT5-AS1"	NA	"ENSG00000184809"
+"1553918_at"	"LINC00479"	150135	"ENSG00000236384"
+"1552332_at"	"TRIOBP"	11078	"ENSG00000100106"
+"1552334_at"	"TRIOBP"	11078	"ENSG00000100106"
+"1554102_a_at"	"TMTC4"	84899	"ENSG00000125247"
+"1554101_a_at"	"TMTC4"	84899	"ENSG00000125247"
+"1553304_at"	"LSM14B"	149986	"ENSG00000149657"
+"1552257_a_at"	"TTLL12"	23170	"ENSG00000100304"
+"1554949_at"	""	NA	"ENSG00000231010"
+"1557588_at"	"LINC01310"	100128946	"ENSG00000205632"
+"1556661_at"	"GTSE1-DT"	150384	"ENSG00000277232"
+"1553111_a_at"	"KBTBD6"	89890	"ENSG00000165572"
+"1559307_s_at"	"RBL1"	5933	"ENSG00000080839"
+"1555004_a_at"	"RBL1"	5933	"ENSG00000080839"
+"1555003_at"	"RBL1"	5933	"ENSG00000080839"
+"1555450_a_at"	"NAA16"	79612	"ENSG00000172766"
+"1557647_a_at"	"VWA8-AS1"	100507240	"ENSG00000278338"
+"1557646_at"	"VWA8-AS1"	100507240	"ENSG00000278338"
+"1553761_at"	"PRR14L"	253143	"ENSG00000183530"
+"1558097_at"	"PRR14L"	253143	"ENSG00000183530"
+"1556808_at"	"RAP2A"	5911	"ENSG00000125249"
+"1556809_a_at"	"RAP2A"	5911	"ENSG00000125249"
+"1557763_at"	"LPAR6"	10161	"ENSG00000139679"
+"1558139_at"	""	503639	"ENSG00000244306"
+"1553326_at"	"RXFP2"	122042	"ENSG00000133105"
+"1555904_at"	"FRY"	10129	"ENSG00000073910"
+"1558568_a_at"	"PCNX4"	64430	"ENSG00000126773"
+"1552736_a_at"	"NETO1"	81832	"ENSG00000166342"
+"1552904_at"	"NETO1"	81832	"ENSG00000166342"
+"1558903_at"	"LINC00907"	284260	"ENSG00000267586"
+"1558793_at"	"FRY-AS1"	NA	"ENSG00000237637"
+"1554634_at"	"PDS5B"	23047	"ENSG00000083642"
+"1553024_at"	"DAOA-AS1"	282706	"ENSG00000232307"
+"1553461_at"	"FAM9B"	171483	"ENSG00000177138"
+"1555538_s_at"	"FAM9B"	171483	"ENSG00000177138"
+"1552971_at"	"SGCZ"	137868	"ENSG00000185053"
+"1553174_at"	"JPH2"	57158	"ENSG00000149596"
+"1552344_s_at"	"CNOT7"	29883	"ENSG00000198791"
+"1554689_a_at"	"NLGN4X"	57502	"ENSG00000146938"
+"1555133_at"	"FAM9A"	171482	"ENSG00000183304"
+"1554386_at"	"CST9"	128822	"ENSG00000173335"
+"1554624_a_at"	"SIRPB1"	10326	"ENSG00000101307"
+"1559546_s_at"	"SNHG14"	NA	"ENSG00000224078"
+"1559342_a_at"	"SNHG14"	NA	"ENSG00000224078"
+"1559545_at"	"SNHG14"	NA	"ENSG00000224078"
+"1559343_at"	"SNHG14"	NA	"ENSG00000224078"
+"1556102_x_at"	""	NA	"ENSG00000285756"
+"1558046_x_at"	""	NA	"ENSG00000285756"
+"1558045_a_at"	""	NA	"ENSG00000285756"
+"1557118_a_at"	"INTS6-AS1"	NA	"ENSG00000236778"
+"1552718_at"	"DTD1"	92675	"ENSG00000125821"
+"1556356_at"	"ERICH1"	157697	"ENSG00000104714"
+"1556357_s_at"	"ERICH1"	157697	"ENSG00000104714"
+"1554755_a_at"	"MTUS2"	23281	"ENSG00000132938"
+"1552675_at"	"DNAJB7"	150353	"ENSG00000172404"
+"1553842_at"	"BEND2"	139105	"ENSG00000177324"
+"1553873_at"	"KLHL34"	257240	"ENSG00000185915"
+"1556304_s_at"	"LINC00899"	NA	"ENSG00000231711"
+"1553949_at"	""	NA	"ENSG00000282676"
+"1554607_at"	"CNKSR2"	22866	"ENSG00000149970"
+"1554691_a_at"	"PACSIN2"	11252	"ENSG00000100266"
+"1555514_a_at"	"PIAS2"	9063	"ENSG00000078043"
+"1556492_a_at"	"PIAS2"	9063	"ENSG00000078043"
+"1555513_at"	"PIAS2"	9063	"ENSG00000078043"
+"1557098_s_at"	"HAR1A"	NA	"ENSG00000225978"
+"1552570_at"	"TSPEAR"	54084	"ENSG00000175894"
+"1555048_a_at"	"TSPEAR"	54084	"ENSG00000175894"
+"1555049_at"	"TSPEAR"	54084	"ENSG00000175894"
+"1553945_at"	"GPHB5"	122876	"ENSG00000179600"
+"1554954_at"	"TSPEAR-AS2"	NA	"ENSG00000182912"
+"1557439_at"	"ARHGEF7-AS2"	100874238	"ENSG00000235875"
+"1557053_s_at"	"UBE2G2"	7327	"ENSG00000184787"
+"1559254_at"	"PICSAR"	378825	"ENSG00000275874"
+"1552877_s_at"	"LINC00334"	114042	"ENSG00000182586"
+"1552876_at"	"LINC00334"	114042	"ENSG00000182586"
+"1555546_a_at"	"POFUT2"	23275	"ENSG00000186866"
+"1559005_s_at"	"CNTLN"	54875	"ENSG00000044459"
+"1553832_at"	"LINC00315"	NA	"ENSG00000184274"
+"1555233_at"	"RHOJ"	57381	"ENSG00000126785"
+"1555234_a_at"	"RHOJ"	57381	"ENSG00000126785"
+"1552792_at"	"SOCS4"	122809	"ENSG00000180008"
+"1556835_s_at"	"DSG2-AS1"	NA	"ENSG00000264859"
+"1556834_at"	"DSG2-AS1"	NA	"ENSG00000264859"
+"1555304_a_at"	"KCNH5"	27133	"ENSG00000140015"
+"1555074_a_at"	"KCNH5"	27133	"ENSG00000140015"
+"1553178_a_at"	"SSTR3"	6753	"ENSG00000278195"
+"1553114_a_at"	"PTK6"	5753	"ENSG00000101213"
+"1553033_at"	"SYTL5"	94122	"ENSG00000147041"
+"1554933_at"	"PSIP1"	11168	"ENSG00000164985"
+"1553319_at"	"OXGR1"	27199	"ENSG00000165621"
+"1556793_a_at"	"FAM83C"	128876	"ENSG00000125998"
+"1554264_at"	"CKAP2"	26586	"ENSG00000136108"
+"1555517_at"	"GABRG3"	2567	"ENSG00000182256"
+"1556874_a_at"	"MEX3C"	51320	"ENSG00000176624"
+"1556873_at"	"MEX3C"	51320	"ENSG00000176624"
+"1555662_s_at"	"DAOA"	267012	"ENSG00000182346"
+"1555640_at"	"DAOA"	267012	"ENSG00000182346"
+"1552938_at"	"ZIC5"	85416	"ENSG00000139800"
+"1555676_s_at"	"GSX1"	219409	"ENSG00000169840"
+"1555688_s_at"	"SLA2"	84174	"ENSG00000101082"
+"1552719_at"	"GOLM2"	113201	"ENSG00000166734"
+"1559635_at"	"GOLM2"	113201	"ENSG00000166734"
+"1559672_a_at"	"CCDC171"	203238	"ENSG00000164989"
+"1553433_at"	"CCDC171"	203238	"ENSG00000164989"
+"1558082_at"	"CCDC171"	203238	"ENSG00000164989"
+"1558160_at"	"CCDC171"	203238	"ENSG00000164989"
+"1555448_at"	"AP5M1"	55745	"ENSG00000053770"
+"1552264_a_at"	"MAPK1"	5594	"ENSG00000100030"
+"1552263_at"	"MAPK1"	5594	"ENSG00000100030"
+"1553348_a_at"	"NFX1"	4799	"ENSG00000086102"
+"1553103_at"	"NFX1"	4799	"ENSG00000086102"
+"1555106_a_at"	"CTDSPL2"	51496	"ENSG00000137770"
+"1555358_a_at"	"ENTPD4"	9583	"ENSG00000197217"
+"1554930_a_at"	"FUT8"	2530	"ENSG00000033170"
+"1554579_a_at"	"MYO18B"	84700	"ENSG00000133454"
+"1552676_at"	"UCN3"	114131	"ENSG00000178473"
+"1555832_s_at"	"KLF6"	1316	"ENSG00000067082"
+"1553183_at"	"UMODL1"	89766	"ENSG00000177398"
+"1559034_at"	"SIRPB2"	284759	"ENSG00000196209"
+"1558660_at"	"LINC00703"	100507059	"ENSG00000224382"
+"1553961_s_at"	"SNX21"	90203	"ENSG00000124104"
+"1553960_at"	"SNX21"	90203	"ENSG00000124104"
+"1559229_at"	""	124900339	"ENSG00000252128"
+"1558431_at"	"NHLRC4"	283948	"ENSG00000257108"
+"1555559_s_at"	"USP25"	29761	"ENSG00000155313"
+"1555357_at"	"DDX53"	168400	"ENSG00000184735"
+"1552848_a_at"	"PTCHD1"	139411	"ENSG00000165186"
+"1553243_at"	"ITIH5"	80760	"ENSG00000123243"
+"1556344_at"	"TIAM1-AS1"	150051	"ENSG00000237594"
+"1557633_at"	"POM121L15P"	102725072	"ENSG00000161103"
+"1553142_at"	"LACC1"	144811	"ENSG00000179630"
+"1553905_at"	"CFAP47"	286464	"ENSG00000165164"
+"1553466_at"	"CFAP47"	286464	"ENSG00000165164"
+"1559653_at"	"GRTP1-AS1"	NA	"ENSG00000225083"
+"1559654_s_at"	"GRTP1-AS1"	NA	"ENSG00000225083"
+"1320_at"	"PTPN21"	11099	"ENSG00000070778"
+"1556623_at"	"MYO1E"	4643	"ENSG00000157483"
+"1555786_s_at"	"LINC00520"	645687	"ENSG00000258791"
+"1557885_at"	"CARNMT1-AS1"	NA	"ENSG00000203321"
+"1556114_a_at"	"ADPRHL1"	113622	"ENSG00000153531"
+"1556113_at"	"ADPRHL1"	113622	"ENSG00000153531"
+"1553163_at"	"ADPRHL1"	113622	"ENSG00000153531"
+"1554026_a_at"	"MYO10"	4651	"ENSG00000145555"
+"1554509_a_at"	"MINDY3"	80013	"ENSG00000148481"
+"1554560_at"	"PGM5"	5239	"ENSG00000154330"
+"1552671_a_at"	"SLC9A7"	84679	"ENSG00000065923"
+"1558105_a_at"	"SLC9A7"	84679	"ENSG00000065923"
+"1553986_at"	"RASEF"	158158	"ENSG00000165105"
+"1556004_at"	""	NA	"ENSG00000258752"
+"1556003_a_at"	""	NA	"ENSG00000258752"
+"1555445_at"	"CA8"	767	"ENSG00000178538"
+"1557370_s_at"	"MYCBP2"	23077	"ENSG00000005810"
+"1557755_at"	"CEP128"	145508	"ENSG00000100629"
+"1557756_a_at"	"CEP128"	145508	"ENSG00000100629"
+"1553457_at"	"LINC00269"	100996279	"ENSG00000215162"
+"1555196_at"	"LINC00421"	100287114	"ENSG00000236834"
+"1553845_x_at"	"C10orf67"	256815	"ENSG00000179133"
+"1553843_at"	"C10orf67"	256815	"ENSG00000179133"
+"1553844_a_at"	"C10orf67"	256815	"ENSG00000179133"
+"1557176_a_at"	"ARMH4"	145407	"ENSG00000139971"
+"1554819_a_at"	"ITGA11"	22801	"ENSG00000137809"
+"1556072_at"	"LINC00528"	200298	"ENSG00000269220"
+"1558354_s_at"	"PLCG1-AS1"	NA	"ENSG00000226648"
+"1554321_a_at"	"NFS1"	9054	"ENSG00000244005"
+"1557540_at"	""	100507403	"ENSG00000253123"
+"1559270_at"	"ZFHX4"	79776	"ENSG00000091656"
+"1559508_at"	"NAA35"	60560	"ENSG00000135040"
+"1555708_a_at"	"OFCC1"	NA	"ENSG00000181355"
+"1553075_a_at"	"OFCC1"	NA	"ENSG00000181355"
+"1553076_at"	"OFCC1"	NA	"ENSG00000181355"
+"1553126_a_at"	"SLC39A12"	221074	"ENSG00000148482"
+"1558494_at"	""	NA	"ENSG00000253766"
+"1552716_at"	"SPEF2"	79925	"ENSG00000152582"
+"1558858_at"	"LNC-LBCS"	100506885	"ENSG00000228412"
+"1555197_a_at"	"C21orf58"	54058	"ENSG00000160298"
+"1553789_a_at"	"C21orf58"	54058	"ENSG00000160298"
+"1555198_x_at"	"C21orf58"	54058	"ENSG00000160298"
+"1559439_s_at"	"C21orf58"	54058	"ENSG00000160298"
+"1559438_at"	"C21orf58"	54058	"ENSG00000160298"
+"1559665_at"	"LINC02318"	100506999	"ENSG00000258390"
+"1553150_at"	"KDM1B"	221656	"ENSG00000165097"
+"1552677_a_at"	"DIP2A"	23181	"ENSG00000160305"
+"1554969_x_at"	"DIP2A"	23181	"ENSG00000160305"
+"1554967_at"	"DIP2A"	23181	"ENSG00000160305"
+"1555301_a_at"	"DIP2A"	23181	"ENSG00000160305"
+"1556127_at"	"DIP2A"	23181	"ENSG00000160305"
+"1557008_at"	"LINC02239"	340107	"ENSG00000248908"
+"1557009_a_at"	"LINC02239"	340107	"ENSG00000248908"
+"1557787_at"	"LINC02114"	101929153	"ENSG00000249521"
+"1556778_at"	""	NA	"ENSG00000260810"
+"1556779_s_at"	""	NA	"ENSG00000260810"
+"1559276_at"	"PCAT18"	728606	"ENSG00000265369"
+"1559316_at"	"LINC02241"	105374676	"ENSG00000251629"
+"1559485_at"	"ATG2B"	55102	"ENSG00000066739"
+"1557113_at"	"RPS6KA5"	9252	"ENSG00000100784"
+"1554319_at"	"RPS6KA5"	9252	"ENSG00000100784"
+"1552422_at"	"ZNF22-AS1"	220979	"ENSG00000165511"
+"1553734_at"	"AK7"	122481	"ENSG00000140057"
+"1557657_a_at"	"LINC00642"	400238	"ENSG00000233208"
+"1557656_at"	"LINC00642"	400238	"ENSG00000233208"
+"1557618_at"	"LINC01622"	285768	"ENSG00000286785"
+"1556555_at"	""	100129461	"ENSG00000272142"
+"1554486_a_at"	"GFOD1"	54438	"ENSG00000145990"
+"1555578_at"	"PTPRM"	5797	"ENSG00000173482"
+"1555579_s_at"	"PTPRM"	5797	"ENSG00000173482"
+"1554233_at"	"C1QTNF9"	338872	"ENSG00000240654"
+"1555241_at"	"RBIS"	401466	"ENSG00000176731"
+"1555243_x_at"	"RBIS"	401466	"ENSG00000176731"
+"1557345_at"	"CPB2-AS1"	100509894	"ENSG00000235903"
+"1554686_at"	"STAU2"	27067	"ENSG00000040341"
+"1554643_at"	"RGS11"	8786	"ENSG00000076344"
+"1554699_at"	"L3MBTL4"	91133	"ENSG00000154655"
+"1553646_at"	"HDX"	139324	"ENSG00000165259"
+"1559067_a_at"	"LINC02977"	NA	"ENSG00000259953"
+"1559066_at"	"LINC02977"	NA	"ENSG00000259953"
+"1553252_a_at"	"BRWD3"	254065	"ENSG00000165288"
+"1556994_at"	""	NA	"ENSG00000259789"
+"1558586_at"	"ZNF33B"	7582	"ENSG00000196693"
+"1553882_at"	"LINC00504"	201853	"ENSG00000248360"
+"1558801_at"	"NNT-AS1"	NA	"ENSG00000248092"
+"1555383_a_at"	"POF1B"	79983	"ENSG00000124429"
+"1555382_at"	"POF1B"	79983	"ENSG00000124429"
+"1553027_a_at"	"KLHL4"	56062	"ENSG00000102271"
+"1555476_at"	"IREB2"	3658	"ENSG00000136381"
+"1556190_s_at"	"LINC02984"	100507516	"ENSG00000237807"
+"1556047_s_at"	"MAGEE1"	57692	"ENSG00000198934"
+"1552935_at"	"RTL3"	203430	"ENSG00000179300"
+"1555463_a_at"	"CHD6"	84181	"ENSG00000124177"
+"1553112_s_at"	"CDK8"	1024	"ENSG00000132964"
+"1553113_s_at"	"CDK8"	1024	"ENSG00000132964"
+"1555893_at"	"WWP1-AS1"	105375624	"ENSG00000254231"
+"1558440_at"	""	NA	"ENSG00000246792"
+"1554192_s_at"	"TRMT44"	152992	"ENSG00000155275"
+"1553009_s_at"	"REXO1L1P"	NA	"ENSG00000205176"
+"1558378_a_at"	"AHNAK2"	113146	"ENSG00000185567"
+"1553089_a_at"	"WFDC2"	10406	"ENSG00000101443"
+"1552261_at"	"WFDC2"	10406	"ENSG00000101443"
+"1554279_a_at"	"TRMT2B"	79979	"ENSG00000188917"
+"1558688_at"	"STX17-DT"	NA	"ENSG00000255145"
+"1558689_a_at"	"STX17-DT"	NA	"ENSG00000255145"
+"1555349_a_at"	"ITGB2"	3689	"ENSG00000160255"
+"1553060_at"	"PSKH2"	85481	"ENSG00000147613"
+"1553254_at"	"MAGEE2"	139599	"ENSG00000186675"
+"1555396_s_at"	"EZHIP"	340602	"ENSG00000187690"
+"1552954_at"	"LINC02899"	439936	"ENSG00000248874"
+"1556374_s_at"	""	105370622	"ENSG00000258716"
+"1555122_at"	"ADGRA3"	166647	"ENSG00000152990"
+"1553346_a_at"	"TNRC6A"	27327	"ENSG00000090905"
+"1553063_at"	"GPR78"	27201	"ENSG00000155269"
+"1558279_a_at"	"KDSR"	2531	"ENSG00000119537"
+"1555627_s_at"	"LINC01547"	84536	"ENSG00000183250"
+"1552528_at"	"LINC01547"	84536	"ENSG00000183250"
+"1555393_s_at"	"LINC01547"	84536	"ENSG00000183250"
+"1556410_a_at"	"KRTAP19-1"	337882	"ENSG00000184351"
+"1556149_at"	"ARVCF"	421	"ENSG00000099889"
+"1558745_at"	"SNX29"	92017	"ENSG00000048471"
+"1554577_a_at"	"PSMD10"	5716	"ENSG00000101843"
+"1558775_s_at"	"NSMAF"	8439	"ENSG00000035681"
+"1559543_at"	"RB1-DT"	100862704	"ENSG00000231473"
+"1559544_s_at"	"RB1-DT"	100862704	"ENSG00000231473"
+"1553613_s_at"	"FOXC1"	2296	"ENSG00000054598"
+"1557070_at"	"TFAP2A-AS1"	NA	"ENSG00000229950"
+"1555551_at"	"SERPINB5"	5268	"ENSG00000206075"
+"1557037_a_at"	"UBAC2-AS1"	100289373	"ENSG00000228889"
+"1557038_s_at"	"UBAC2-AS1"	100289373	"ENSG00000228889"
+"1555127_at"	"MOCS1"	4337	"ENSG00000124615"
+"1553856_s_at"	"P2RY10"	27334	"ENSG00000078589"
+"1555430_at"	"TSTD2"	158427	"ENSG00000136925"
+"1555457_at"	"BRINP1"	1620	"ENSG00000078725"
+"1554332_a_at"	"SLCO4A1-AS1"	100127888	"ENSG00000232803"
+"1552390_a_at"	"ERICH5"	203111	"ENSG00000177459"
+"1552389_at"	"ERICH5"	203111	"ENSG00000177459"
+"1556421_at"	"C8orf34-AS1"	NA	"ENSG00000248801"
+"1558975_at"	"UBALD1"	124402	"ENSG00000153443"
+"1558976_x_at"	"UBALD1"	124402	"ENSG00000153443"
+"1553199_at"	"DCAF4L2"	138009	"ENSG00000176566"
+"1553197_at"	"DCAF4L2"	138009	"ENSG00000176566"
+"1553435_at"	"C18orf15"	147276	"ENSG00000279020"
+"1556789_a_at"	"PAXBP1-AS1"	100506215	"ENSG00000238197"
+"1554099_a_at"	"SPIN3"	169981	"ENSG00000204271"
+"1554098_at"	"SPIN3"	169981	"ENSG00000204271"
+"1555882_at"	"SPIN3"	169981	"ENSG00000204271"
+"1555883_s_at"	"SPIN3"	169981	"ENSG00000204271"
+"1557874_at"	"GRID1-AS1"	100507470	"ENSG00000234942"
+"1555978_s_at"	"MYL12A"	10627	"ENSG00000101608"
+"1555977_at"	"MYL12A"	10627	"ENSG00000101608"
+"1552665_at"	"JMJD1C-AS1"	84989	"ENSG00000272767"
+"1556320_at"	"STOML1"	9399	"ENSG00000067221"
+"1554383_a_at"	"TRAM2"	9697	"ENSG00000065308"
+"1553117_a_at"	"STK38"	11329	"ENSG00000112079"
+"1555407_s_at"	"FGD3"	89846	"ENSG00000127084"
+"1559412_at"	"MIR99AHG"	388815	"ENSG00000215386"
+"1559521_at"	"MIR99AHG"	388815	"ENSG00000215386"
+"1552772_at"	"CLEC4D"	338339	"ENSG00000166527"
+"1552773_at"	"CLEC4D"	338339	"ENSG00000166527"
+"1552365_at"	"SCIN"	85477	"ENSG00000006747"
+"1552367_a_at"	"SCIN"	85477	"ENSG00000006747"
+"1552818_a_at"	"BRS3"	680	"ENSG00000102239"
+"1552882_a_at"	"AMER1"	139285	"ENSG00000184675"
+"1556151_at"	"ITFG1"	81533	"ENSG00000129636"
+"1555268_a_at"	"GRID1"	2894	"ENSG00000182771"
+"1558202_at"	"TCF12-DT"	145783	"ENSG00000285331"
+"1558570_at"	"TCF12-DT"	145783	"ENSG00000285331"
+"1555862_s_at"	"MICALL2"	79778	"ENSG00000164877"
+"1559444_at"	"SMC2"	10592	"ENSG00000136824"
+"1554199_at"	"PTPRO"	5800	"ENSG00000151490"
+"1553003_at"	"PKHD1"	5314	"ENSG00000170927"
+"1554714_at"	"RELL1"	768211	"ENSG00000181826"
+"1555314_at"	"WDR19"	57728	"ENSG00000157796"
+"1559627_at"	"LINC02860"	285941	"ENSG00000222004"
+"1557857_a_at"	""	NA	"ENSG00000275552"
+"1557856_at"	""	NA	"ENSG00000275552"
+"1554132_a_at"	"CCSER2"	54462	"ENSG00000107771"
+"1554131_at"	"CCSER2"	54462	"ENSG00000107771"
+"1553269_at"	"ZNF718"	255403	"ENSG00000250312"
+"1557615_a_at"	"ARHGAP19-SLIT1"	NA	"ENSG00000269891"
+"1558574_at"	"LINC02616"	100508631	"ENSG00000261761"
+"1552993_at"	"DYDC1"	143241	"ENSG00000170788"
+"1554884_at"	"PRIM2"	5558	"ENSG00000146143"
+"1554885_a_at"	"PRIM2"	5558	"ENSG00000146143"
+"1559427_at"	"MCF2L"	23263	"ENSG00000126217"
+"1552743_at"	"MCF2L"	23263	"ENSG00000126217"
+"1557481_a_at"	"LINC00320"	387486	"ENSG00000224924"
+"1556026_at"	"EOLA1-DT"	100131434	"ENSG00000241769"
+"1559369_at"	"TRAPPC13"	80006	"ENSG00000113597"
+"1554508_at"	"PIK3AP1"	118788	"ENSG00000155629"
+"1554571_at"	"APBB1IP"	54518	"ENSG00000077420"
+"1555756_a_at"	"CLEC7A"	64581	"ENSG00000172243"
+"1554406_a_at"	"CLEC7A"	64581	"ENSG00000172243"
+"1555214_a_at"	"CLEC7A"	64581	"ENSG00000172243"
+"1555213_a_at"	"CLEC7A"	64581	"ENSG00000172243"
+"1552944_a_at"	"PANX2"	56666	"ENSG00000073150"
+"1556899_at"	"PRMT5-AS1"	NA	"ENSG00000237054"
+"1555400_at"	"MIR4280HG"	NA	"ENSG00000233828"
+"1554030_at"	"ARSB"	411	"ENSG00000113273"
+"1554032_at"	"ARSB"	411	"ENSG00000113273"
+"1559213_at"	"LINC01419"	103352670	"ENSG00000253898"
+"1556233_s_at"	"KIF6"	221458	"ENSG00000164627"
+"1556232_at"	"KIF6"	221458	"ENSG00000164627"
+"1552538_a_at"	"KIF6"	221458	"ENSG00000164627"
+"1559501_at"	"CBR3-AS1"	100506428	"ENSG00000236830"
+"1557826_at"	"LINC01252"	338817	"ENSG00000247157"
+"1554679_a_at"	"LAPTM4B"	55353	"ENSG00000104341"
+"1556165_at"	"LINC02575"	NA	"ENSG00000228709"
+"1556166_x_at"	"LINC02575"	NA	"ENSG00000228709"
+"1556325_at"	"FILIP1"	27145	"ENSG00000118407"
+"1553505_at"	"A2ML1"	144568	"ENSG00000166535"
+"1558356_at"	"UACA"	55075	"ENSG00000137831"
+"1553977_a_at"	"CYP39A1"	51302	"ENSG00000146233"
+"1554142_at"	""	283507	"ENSG00000290464"
+"1554143_a_at"	""	283507	"ENSG00000290464"
+"1554212_s_at"	"KCNS2"	3788	"ENSG00000156486"
+"1554680_s_at"	"KCNS2"	3788	"ENSG00000156486"
+"1557034_s_at"	"WASH5P"	375690	"ENSG00000282458"
+"1556740_at"	"EGFLAM-AS2"	100506475	"ENSG00000248572"
+"1556340_at"	"MAPK12"	6300	"ENSG00000188130"
+"1556341_s_at"	"MAPK12"	6300	"ENSG00000188130"
+"1553148_a_at"	"SNX13"	23161	"ENSG00000071189"
+"1557818_x_at"	""	NA	"ENSG00000176882"
+"1557817_a_at"	""	NA	"ENSG00000176882"
+"1556962_at"	"ONECUT3"	390874	"ENSG00000205922"
+"1559161_at"	"PDCL"	5082	"ENSG00000136940"
+"1552557_a_at"	"ZDHHC15"	158866	"ENSG00000102383"
+"1556206_at"	"LINC00408"	NA	"ENSG00000226250"
+"1556207_a_at"	"LINC00408"	NA	"ENSG00000226250"
+"1553006_at"	"ADGRG4"	139378	"ENSG00000156920"
+"1553974_at"	"C22orf39"	128977	"ENSG00000242259"
+"1554208_at"	"MEI1"	150365	"ENSG00000167077"
+"1553394_a_at"	"TFAP2B"	7021	"ENSG00000008196"
+"1556904_at"	""	NA	"ENSG00000260918"
+"1558225_at"	""	NA	"ENSG00000260918"
+"1558226_a_at"	""	NA	"ENSG00000260918"
+"1552693_at"	"ARL11"	115761	"ENSG00000152213"
+"1552691_at"	"ARL11"	115761	"ENSG00000152213"
+"1552892_at"	"TNFRSF13C"	115650	"ENSG00000159958"
+"1559258_a_at"	"CT83"	203413	"ENSG00000204019"
+"1557079_at"	""	NA	"ENSG00000276012"
+"1557219_at"	"LINC02475"	100506827	"ENSG00000251350"
+"1555265_at"	""	150000	"ENSG00000291052"
+"1552582_at"	""	150000	"ENSG00000291052"
+"1552514_at"	"WBP2NL"	164684	"ENSG00000183066"
+"1555256_at"	"EVC2"	132884	"ENSG00000173040"
+"1554786_at"	"CASS4"	57091	"ENSG00000087589"
+"1555250_a_at"	"CPEB3"	22849	"ENSG00000107864"
+"1553264_a_at"	"SYN1"	6853	"ENSG00000008056"
+"1555041_a_at"	"NAGA"	4668	"ENSG00000198951"
+"1553441_at"	"CNTNAP4"	85445	"ENSG00000152910"
+"1557263_s_at"	"AP1G2-AS1"	102724814	"ENSG00000258727"
+"1557262_at"	"AP1G2-AS1"	102724814	"ENSG00000258727"
+"1554172_a_at"	"ZMYM3"	9203	"ENSG00000147130"
+"1554171_at"	"ZMYM3"	9203	"ENSG00000147130"
+"1554203_at"	"GRIK1-AS1"	NA	"ENSG00000174680"
+"1556935_at"	""	NA	"ENSG00000271208"
+"1556128_a_at"	"RASGRF2"	5924	"ENSG00000113319"
+"1557595_at"	"GINS2"	51659	"ENSG00000131153"
+"1559579_at"	"LINC00927"	283688	"ENSG00000259361"
+"1554685_a_at"	"CEMIP"	57214	"ENSG00000103888"
+"1557388_at"	"RTTN"	25914	"ENSG00000176225"
+"1553277_at"	"RTTN"	25914	"ENSG00000176225"
+"1554116_s_at"	"PARP11"	57097	"ENSG00000111224"
+"1554343_a_at"	"STAP1"	26228	"ENSG00000035720"
+"1557915_s_at"	"GSTO1"	9446	"ENSG00000148834"
+"1559311_at"	"EHMT1"	79813	"ENSG00000181090"
+"1555510_at"	"ZNF215"	7762	"ENSG00000149054"
+"1554258_a_at"	"DNAJC5B"	85479	"ENSG00000147570"
+"1554079_at"	"GALNT18"	374378	"ENSG00000110328"
+"1553720_a_at"	"AMER2"	219287	"ENSG00000165566"
+"1552310_at"	"C15orf40"	123207	"ENSG00000169609"
+"1553727_at"	"B4GALNT3"	283358	"ENSG00000139044"
+"1555401_at"	"SOHLH2"	54937	"ENSG00000120669"
+"1555345_at"	"SLC38A4"	55089	"ENSG00000139209"
+"1553139_s_at"	"PLXNA3"	55558	"ENSG00000130827"
+"1553295_at"	"ABCA13"	154664	"ENSG00000179869"
+"1553604_at"	"ABCA13"	154664	"ENSG00000179869"
+"1553605_a_at"	"ABCA13"	154664	"ENSG00000179869"
+"1554582_a_at"	"ETFBKMT"	254013	"ENSG00000139160"
+"1554583_a_at"	"ETFBKMT"	254013	"ENSG00000139160"
+"1552518_s_at"	"MTBP"	27085	"ENSG00000172167"
+"1552463_at"	"SERPINB11"	89778	"ENSG00000206072"
+"1556097_at"	"HOMER2"	9455	"ENSG00000103942"
+"1555452_at"	"RALGPS1"	9649	"ENSG00000136828"
+"1554745_at"	"RALGPS1"	9649	"ENSG00000136828"
+"1552931_a_at"	"PDE8A"	5151	"ENSG00000073417"
+"1558662_s_at"	"BANK1"	55024	"ENSG00000153064"
+"1553258_at"	""	146512	"ENSG00000280278"
+"1556884_a_at"	"LINC00558"	100861552	"ENSG00000261517"
+"1554065_at"	"MVB12B"	89853	"ENSG00000196814"
+"1555159_at"	"TMEM74"	157753	"ENSG00000164841"
+"1552520_at"	"TMEM74"	157753	"ENSG00000164841"
+"1552521_a_at"	"TMEM74"	157753	"ENSG00000164841"
+"1559400_s_at"	"PAPPA"	5069	"ENSG00000182752"
+"1553468_at"	"HYDIN"	54768	"ENSG00000157423"
+"1554907_a_at"	"HYDIN"	54768	"ENSG00000157423"
+"1554908_at"	"HYDIN"	54768	"ENSG00000157423"
+"1555052_a_at"	"SYT9"	143425	"ENSG00000170743"
+"1555053_at"	"SYT9"	143425	"ENSG00000170743"
+"1553976_a_at"	"DPCD"	25911	"ENSG00000166171"
+"1553443_at"	"FER1L6-AS1"	439941	"ENSG00000181171"
+"1557424_at"	"LINC02059"	NA	"ENSG00000250544"
+"1555792_a_at"	"CCDC116"	164592	"ENSG00000161180"
+"1559322_at"	""	NA	"ENSG00000266680"
+"1556021_at"	"GPR180"	160897	"ENSG00000152749"
+"1556019_at"	"GPR180"	160897	"ENSG00000152749"
+"1553019_at"	"TMC2"	117532	"ENSG00000149488"
+"1552695_a_at"	"SLC2A13"	114134	"ENSG00000151229"
+"1552694_at"	"SLC2A13"	114134	"ENSG00000151229"
+"1554918_a_at"	"ABCC4"	10257	"ENSG00000125257"
+"1555039_a_at"	"ABCC4"	10257	"ENSG00000125257"
+"1553424_at"	"C12orf40"	283461	"ENSG00000180116"
+"1553448_at"	"LINC02880"	NA	"ENSG00000175967"
+"1559073_at"	"KDM4B"	23030	"ENSG00000127663"
+"1553052_at"	"WFDC13"	164237	"ENSG00000168634"
+"1557581_x_at"	"CABIN1"	23523	"ENSG00000099991"
+"1558846_at"	"PNLIPRP3"	119548	"ENSG00000203837"
+"1558080_s_at"	"DNAJC3"	5611	"ENSG00000102580"
+"1557203_at"	"PABPC1L2B"	645974	"ENSG00000184388"
+"1555561_a_at"	"UGGT2"	55757	"ENSG00000102595"
+"1555560_at"	"UGGT2"	55757	"ENSG00000102595"
+"1557443_s_at"	"LINC02148"	100505811	"ENSG00000250427"
+"1557867_s_at"	"CFAP157"	286207	"ENSG00000160401"
+"1557866_at"	"CFAP157"	286207	"ENSG00000160401"
+"1554494_at"	"MTHFSD"	64779	"ENSG00000103248"
+"1554495_s_at"	"MTHFSD"	64779	"ENSG00000103248"
+"1552768_at"	"CAMKK1"	84254	"ENSG00000004660"
+"1554547_at"	"FAM13C"	220965	"ENSG00000148541"
+"1552842_at"	"HS6ST3"	266722	"ENSG00000185352"
+"1552667_a_at"	"SH2D3C"	10044	"ENSG00000095370"
+"1559631_at"	"DMGDH"	29958	"ENSG00000132837"
+"1556616_a_at"	"KLHDC4"	54758	"ENSG00000104731"
+"1558673_s_at"	"ZNF77"	58492	"ENSG00000175691"
+"1557544_at"	"CFAP58"	159686	"ENSG00000120051"
+"1556494_at"	"LINC01365"	101927007	"ENSG00000250772"
+"1556291_at"	"POM121L12"	285877	"ENSG00000221900"
+"1556292_s_at"	"POM121L12"	285877	"ENSG00000221900"
+"1554518_at"	"GSTCD"	79807	"ENSG00000138780"
+"1555025_at"	"TMEM26"	219623	"ENSG00000196932"
+"1555500_s_at"	"SLC2A4RG"	56731	"ENSG00000125520"
+"1554237_at"	"SDCCAG8"	10806	"ENSG00000276111"
+"1554041_at"	"TMEM239"	100288797	"ENSG00000198326"
+"1556285_s_at"	"PPA2"	27068	"ENSG00000138777"
+"1556284_at"	"PPA2"	27068	"ENSG00000138777"
+"1554499_s_at"	"PPA2"	27068	"ENSG00000138777"
+"1557807_a_at"	""	NA	"ENSG00000282863"
+"1558950_at"	""	NA	"ENSG00000255477"
+"1554165_at"	"FAM53B"	9679	"ENSG00000189319"
+"1552566_at"	"BTBD16"	118663	"ENSG00000138152"
+"1552511_a_at"	"CPA6"	57094	"ENSG00000165078"
+"1553946_at"	"DCD"	117159	"ENSG00000161634"
+"1559079_at"	"LINC00567"	283486	"ENSG00000259831"
+"1557984_s_at"	"RPAP3"	79657	"ENSG00000005175"
+"1553752_at"	"SPATA25"	128497	"ENSG00000149634"
+"1555441_at"	"UBA6"	55236	"ENSG00000033178"
+"1552378_s_at"	"RDH10"	157506	"ENSG00000121039"
+"1555153_s_at"	"FCHO2"	115548	"ENSG00000157107"
+"1557511_at"	"LINC02189"	NA	"ENSG00000260026"
+"1555788_a_at"	"TRIB3"	57761	"ENSG00000101255"
+"1557024_at"	""	NA	"ENSG00000260715"
+"1557025_a_at"	""	NA	"ENSG00000260715"
+"1556976_s_at"	"LINC02838"	NA	"ENSG00000285536"
+"1555096_at"	"STPG2"	285555	"ENSG00000163116"
+"1554757_a_at"	"INPP5A"	3632	"ENSG00000068383"
+"1558553_at"	""	NA	"ENSG00000260417"
+"1555343_at"	"MEGF10"	84466	"ENSG00000145794"
+"1553690_at"	"SGO1"	151648	"ENSG00000129810"
+"1553057_at"	"SERPINB12"	89777	"ENSG00000166634"
+"1555142_at"	"SLC9B1"	150159	"ENSG00000164037"
+"1556876_s_at"	""	NA	"ENSG00000290490"
+"1558649_at"	"GCAWKR"	105369201	"ENSG00000272808"
+"1553234_at"	"ADAMTS18"	170692	"ENSG00000140873"
+"1553226_at"	"LINC00052"	145978	"ENSG00000259527"
+"1553151_at"	"ATP6V0D2"	245972	"ENSG00000147614"
+"1553153_at"	"ATP6V0D2"	245972	"ENSG00000147614"
+"1553155_x_at"	"ATP6V0D2"	245972	"ENSG00000147614"
+"1556346_at"	"COTL1"	23406	"ENSG00000103187"
+"1559333_at"	"SRGAP3-AS2"	101927416	"ENSG00000228723"
+"1554474_a_at"	"MOXD1"	26002	"ENSG00000079931"
+"1553316_at"	"GPR82"	27197	"ENSG00000171657"
+"1553317_s_at"	"GPR82"	27197	"ENSG00000171657"
+"1553193_at"	"ZNF441"	126068	"ENSG00000197044"
+"1553192_at"	"ZNF441"	126068	"ENSG00000197044"
+"1553940_a_at"	"LRRC28"	123355	"ENSG00000168904"
+"1558826_at"	"ZNF831"	128611	"ENSG00000124203"
+"1558827_a_at"	"ZNF831"	128611	"ENSG00000124203"
+"1554637_a_at"	"CBFA2T2"	9139	"ENSG00000078699"
+"1555344_at"	""	NA	"ENSG00000253656"
+"1553482_at"	"C15orf32"	145858	"ENSG00000183643"
+"1553647_at"	"CDYL2"	124359	"ENSG00000166446"
+"1558621_at"	"CABLES1"	91768	"ENSG00000134508"
+"1556351_at"	"HCN1"	348980	"ENSG00000164588"
+"1559540_at"	"C5orf64-AS1"	100506526	"ENSG00000251575"
+"1553074_at"	"ASB11"	140456	"ENSG00000165192"
+"1556319_at"	"TRIM44"	54765	"ENSG00000166326"
+"1553101_a_at"	"ALKBH5"	54890	"ENSG00000091542"
+"1553893_at"	"CCDC105"	126402	"ENSG00000160994"
+"1552747_a_at"	"PP2D1"	151649	"ENSG00000183977"
+"1558594_at"	"ZNF219"	51222	"ENSG00000165804"
+"1555486_a_at"	"PRR5L"	79899	"ENSG00000135362"
+"1555244_at"	""	NA	"ENSG00000178107"
+"1553037_a_at"	"SYN2"	6854	"ENSG00000157152"
+"1555038_at"	"EPB41L4A"	64097	"ENSG00000129595"
+"1554317_s_at"	"TRMT61A"	115708	"ENSG00000166166"
+"1553318_at"	"RIBC1"	158787	"ENSG00000158423"
+"1552830_at"	"FBXO39"	162517	"ENSG00000177294"
+"1553802_a_at"	"SOX3"	6658	"ENSG00000134595"
+"1556429_a_at"	"TBC1D31"	93594	"ENSG00000156787"
+"1553875_s_at"	"ZSCAN10"	84891	"ENSG00000130182"
+"1553874_a_at"	"ZSCAN10"	84891	"ENSG00000130182"
+"1555540_at"	"TGFB3"	7043	"ENSG00000119699"
+"1555461_at"	"TXNL4A"	10907	"ENSG00000141759"
+"1553679_s_at"	"VKORC1L1"	154807	"ENSG00000196715"
+"1558628_at"	"RBFADN"	NA	"ENSG00000261126"
+"1556505_at"	"LINC00605"	100131366	"ENSG00000251533"
+"1556216_s_at"	"EIF5-DT"	NA	"ENSG00000259775"
+"1558845_at"	""	NA	"ENSG00000267251"
+"1556706_at"	""	NA	"ENSG00000258789"
+"1557161_at"	"FILNC1"	NA	"ENSG00000231426"
+"1556133_s_at"	"TEX36-AS1"	100169752	"ENSG00000237675"
+"1557371_a_at"	"SPAAR"	158376	"ENSG00000235387"
+"1557488_at"	"CBX3P2"	645158	"ENSG00000266405"
+"1558747_at"	"SMCHD1"	23347	"ENSG00000101596"
+"1555914_a_at"	"EXD3"	54932	"ENSG00000187609"
+"1553931_at"	"OSTCP1"	202459	"ENSG00000243775"
+"1555555_at"	"BBS9"	27241	"ENSG00000122507"
+"1559392_s_at"	"SYT7"	9066	"ENSG00000011347"
+"1555492_a_at"	"BEST3"	144453	"ENSG00000127325"
+"1559674_at"	"ZNF333"	84449	"ENSG00000160961"
+"1552375_at"	"ZNF333"	84449	"ENSG00000160961"
+"1559568_at"	""	NA	"ENSG00000278576"
+"1552750_at"	"CIB3"	117286	"ENSG00000141977"
+"1552751_a_at"	"CIB3"	117286	"ENSG00000141977"
+"1552755_at"	"DOCK8-AS1"	NA	"ENSG00000183784"
+"1552757_s_at"	"DOCK8-AS1"	NA	"ENSG00000183784"
+"1558761_a_at"	"FAM120AOS"	158293	"ENSG00000188938"
+"1557889_at"	""	NA	"ENSG00000280321"
+"1554352_s_at"	"DENND4A"	10260	"ENSG00000174485"
+"1558643_s_at"	"EDIL3"	10085	"ENSG00000164176"
+"1557560_at"	"DSE"	29940	"ENSG00000111817"
+"1558868_a_at"	"DSE"	29940	"ENSG00000111817"
+"1558867_at"	"DSE"	29940	"ENSG00000111817"
+"1556161_a_at"	""	NA	"ENSG00000251616"
+"1555886_at"	"PDSS2"	57107	"ENSG00000164494"
+"1554646_at"	"OSBPL1A"	114876	"ENSG00000141447"
+"1554597_at"	"LIG3"	3980	"ENSG00000005156"
+"1554599_x_at"	"LIG3"	3980	"ENSG00000005156"
+"1555169_at"	"LIG3"	3980	"ENSG00000005156"
+"1554867_a_at"	"PRR16"	51334	"ENSG00000184838"
+"1552592_at"	"MMP21"	118856	"ENSG00000154485"
+"1554982_a_at"	"EQTN"	54586	"ENSG00000120160"
+"1554981_at"	"EQTN"	54586	"ENSG00000120160"
+"1556630_at"	"CASC2"	255082	"ENSG00000177640"
+"1559124_at"	"PDE7B-AS1"	644135	"ENSG00000237596"
+"1554916_a_at"	"JRK"	8629	"ENSG00000234616"
+"1554012_at"	"RSPO2"	340419	"ENSG00000147655"
+"1553881_at"	"RBM48"	84060	"ENSG00000127993"
+"1553584_at"	"DIPK2B"	79742	"ENSG00000147113"
+"1552799_at"	"TSNARE1"	203062	"ENSG00000171045"
+"1553352_x_at"	"ERVW-1"	30816	"ENSG00000242950"
+"1555299_s_at"	"ERVW-1"	30816	"ENSG00000242950"
+"1559044_at"	"EXOSC1"	51013	"ENSG00000171311"
+"1558144_at"	"MEG3"	55384	"ENSG00000214548"
+"1558474_at"	""	NA	"ENSG00000232611"
+"1556336_at"	"RBMX"	27316	"ENSG00000147274"
+"1555745_a_at"	"LYZ"	4069	"ENSG00000090382"
+"1552658_a_at"	"NAV3"	89795	"ENSG00000067798"
+"1559593_a_at"	""	NA	"ENSG00000269578"
+"1553544_at"	"GPR101"	83550	"ENSG00000165370"
+"1557591_at"	""	283038	"ENSG00000228021"
+"1559002_at"	"MORF4L2-AS1"	NA	"ENSG00000231154"
+"1552742_at"	"KCNH8"	131096	"ENSG00000183960"
+"1554696_s_at"	"TYMS"	7298	"ENSG00000176890"
+"1557985_s_at"	"CEP78"	84131	"ENSG00000148019"
+"1553851_at"	"SPIC"	121599	"ENSG00000166211"
+"1557077_a_at"	""	NA	"ENSG00000272977"
+"1556368_at"	"PHKG2"	5261	"ENSG00000156873"
+"1556369_a_at"	"PHKG2"	5261	"ENSG00000156873"
+"1553328_a_at"	"SLC18A2"	6571	"ENSG00000165646"
+"1553271_at"	"DIP2B"	57609	"ENSG00000066084"
+"1552953_a_at"	"NEUROD2"	4761	"ENSG00000171532"
+"1553559_at"	"TMEM171"	134285	"ENSG00000157111"
+"1555533_at"	"QRFPR"	84109	"ENSG00000186867"
+"1553586_at"	"FBXL19-AS1"	283932	"ENSG00000260852"
+"1555600_s_at"	"APOL4"	80832	"ENSG00000100336"
+"1553864_at"	"GPR26"	2849	"ENSG00000154478"
+"1553865_a_at"	"GPR26"	2849	"ENSG00000154478"
+"1554216_at"	"VPS50"	55610	"ENSG00000004766"
+"1554217_a_at"	"VPS50"	55610	"ENSG00000004766"
+"1557301_a_at"	""	NA	"ENSG00000264968"
+"1559399_s_at"	"ZCCHC10"	54819	"ENSG00000155329"
+"1555332_at"	"TPH2"	121278	"ENSG00000139287"
+"1554360_at"	"FCHSD2"	9873	"ENSG00000137478"
+"1557820_at"	"AFG3L2"	10939	"ENSG00000141385"
+"1554113_a_at"	"SLC4A8"	9498	"ENSG00000050438"
+"1554828_at"	"PDGFRA"	5156	"ENSG00000134853"
+"1553809_a_at"	"TMEM252"	169693	"ENSG00000181778"
+"1559315_s_at"	"SOCS2-AS1"	144481	"ENSG00000246985"
+"1556318_s_at"	"CAND1"	55832	"ENSG00000111530"
+"1557022_at"	"MIR4300HG"	101928989	"ENSG00000245832"
+"1557286_at"	""	NA	"ENSG00000279118"
+"1553911_at"	"ZNF663P"	NA	"ENSG00000215452"
+"1555505_a_at"	"TYR"	7299	"ENSG00000077498"
+"1555504_at"	"TYR"	7299	"ENSG00000077498"
+"1553765_a_at"	"KLHL32"	114792	"ENSG00000186231"
+"1554460_at"	"ST8SIA4"	7903	"ENSG00000113532"
+"1552289_a_at"	"CILP2"	148113	"ENSG00000160161"
+"1552288_at"	"CILP2"	148113	"ENSG00000160161"
+"1552943_at"	"GABRG1"	2565	"ENSG00000163285"
+"1556841_a_at"	"ALDH1L2"	160428	"ENSG00000136010"
+"1559393_at"	"ALDH1L2"	160428	"ENSG00000136010"
+"1552555_at"	"PRSS36"	146547	"ENSG00000178226"
+"1559621_at"	""	101927237	"ENSG00000250075"
+"1553876_at"	"SAMD3"	154075	"ENSG00000164483"
+"1555215_a_at"	"HRH3"	11255	"ENSG00000101180"
+"1555715_a_at"	"HRH3"	11255	"ENSG00000101180"
+"1552370_at"	"C4orf33"	132321	"ENSG00000151470"
+"1552372_at"	"C4orf33"	132321	"ENSG00000151470"
+"1552373_s_at"	"C4orf33"	132321	"ENSG00000151470"
+"1556916_a_at"	""	101928651	"ENSG00000248529"
+"1553335_x_at"	"BASP1-AS1"	NA	"ENSG00000215196"
+"1553938_a_at"	"STK32A"	202374	"ENSG00000169302"
+"1559624_at"	"STK32A"	202374	"ENSG00000169302"
+"1557753_at"	"LINC02466"	101927282	"ENSG00000246876"
+"1553383_at"	"ARHGAP42"	143872	"ENSG00000165895"
+"1552639_at"	"KLHDC7B"	113730	"ENSG00000130487"
+"1558020_at"	"ERGIC3"	51614	"ENSG00000125991"
+"1557741_at"	"UST-AS1"	NA	"ENSG00000227660"
+"1557742_a_at"	"UST-AS1"	NA	"ENSG00000227660"
+"1558214_s_at"	"CTNNA1"	1495	"ENSG00000044115"
+"1554976_a_at"	"LINC00051"	619434	"ENSG00000254008"
+"1552510_at"	"SLC34A3"	142680	"ENSG00000198569"
+"1555443_at"	"CCDC172"	374355	"ENSG00000182645"
+"1557287_at"	"CT69"	NA	"ENSG00000231971"
+"1553511_at"	"GJD3"	125111	"ENSG00000183153"
+"1555456_at"	""	NA	"ENSG00000278975"
+"1556001_at"	"MAPK8IP2"	23542	"ENSG00000008735"
+"1557325_at"	""	NA	"ENSG00000269399"
+"1552828_at"	"SNX18"	112574	"ENSG00000178996"
+"1553140_at"	"PELO"	53918	"ENSG00000152684"
+"1552925_at"	"PCDH10"	57575	"ENSG00000138650"
+"1556328_at"	"PCDH10"	57575	"ENSG00000138650"
+"1556329_a_at"	"PCDH10"	57575	"ENSG00000138650"
+"1559449_a_at"	""	NA	"ENSG00000268362"
+"1559611_at"	"LINC02912"	641384	"ENSG00000280055"
+"1554957_at"	""	NA	"ENSG00000255345"
+"1552995_at"	"IL27"	246778	"ENSG00000197272"
+"1554800_at"	"RAB39A"	54734	"ENSG00000179331"
+"1555470_a_at"	"PPM1F"	9647	"ENSG00000100034"
+"1555091_at"	"PPM1F"	9647	"ENSG00000100034"
+"1552493_s_at"	"CYP11B1"	1584	"ENSG00000160882"
+"1559658_at"	"KATNBL1"	79768	"ENSG00000134152"
+"1554290_at"	"HERC3"	8916	"ENSG00000138641"
+"1555137_a_at"	"FGD6"	55785	"ENSG00000180263"
+"1555136_at"	"FGD6"	55785	"ENSG00000180263"
+"1554894_a_at"	"PCBD2"	84105	"ENSG00000132570"
+"1552343_s_at"	"PDE7A"	5150	"ENSG00000205268"
+"1556859_a_at"	"PHACTR2-AS1"	NA	"ENSG00000235740"
+"1558512_at"	""	NA	"ENSG00000261098"
+"1555612_s_at"	"G6PC1"	2538	"ENSG00000131482"
+"1555436_a_at"	"AFF4"	27125	"ENSG00000072364"
+"1555435_at"	"AFF4"	27125	"ENSG00000072364"
+"1555677_s_at"	"SMC1A"	8243	"ENSG00000072501"
+"1559303_at"	"LINC01532"	NA	"ENSG00000267014"
+"1553533_at"	"JPH1"	56704	"ENSG00000104369"
+"1556210_at"	"AIG1"	51390	"ENSG00000146416"
+"1556211_a_at"	"AIG1"	51390	"ENSG00000146416"
+"1556212_x_at"	"AIG1"	51390	"ENSG00000146416"
+"1554378_a_at"	"PDE1C"	5137	"ENSG00000154678"
+"1558452_at"	"TMEM144"	55314	"ENSG00000164124"
+"1558803_at"	""	NA	"ENSG00000259807"
+"1558484_s_at"	"LRRC27"	80313	"ENSG00000148814"
+"1558483_at"	"LRRC27"	80313	"ENSG00000148814"
+"1555419_a_at"	"ASAH1"	427	"ENSG00000104763"
+"1557149_at"	""	NA	"ENSG00000226900"
+"1552745_at"	"SLCO6A1"	133482	"ENSG00000205359"
+"1555587_at"	"PDZRN3"	23024	"ENSG00000121440"
+"1555056_at"	"CCNG2"	901	"ENSG00000138764"
+"1552490_at"	"AFG1L"	246269	"ENSG00000135537"
+"1554973_a_at"	"ZBTB26"	57684	"ENSG00000171448"
+"1557116_at"	"APOL6"	80830	"ENSG00000221963"
+"1557236_at"	"APOL6"	80830	"ENSG00000221963"
+"1552687_a_at"	"CNBD2"	140894	"ENSG00000149646"
+"1552686_at"	"CNBD2"	140894	"ENSG00000149646"
+"1557267_s_at"	"GEN1"	348654	"ENSG00000178295"
+"1554403_a_at"	""	NA	"ENSG00000261036"
+"1557531_a_at"	"C10orf55"	414236	"ENSG00000222047"
+"1553279_at"	"BTNL9"	153579	"ENSG00000165810"
+"1555282_a_at"	"PPARGC1B"	133522	"ENSG00000155846"
+"1553639_a_at"	"PPARGC1B"	133522	"ENSG00000155846"
+"1557919_a_at"	""	NA	"ENSG00000227706"
+"1552999_a_at"	"WFDC10B"	280664	"ENSG00000182931"
+"1552948_at"	"CCDC27"	148870	"ENSG00000162592"
+"1554156_a_at"	"WFDC8"	90199	"ENSG00000158901"
+"1554157_a_at"	"WFDC8"	90199	"ENSG00000158901"
+"1558807_at"	"ATAD2B"	54454	"ENSG00000119778"
+"1556371_at"	"OLIG3"	167826	"ENSG00000177468"
+"1552388_at"	"SCUBE1"	80274	"ENSG00000159307"
+"1552801_at"	"CAPN13"	92291	"ENSG00000162949"
+"1559265_at"	"SKIDA1"	387640	"ENSG00000180592"
+"1559266_s_at"	"SKIDA1"	387640	"ENSG00000180592"
+"1556636_at"	""	NA	"ENSG00000280047"
+"1556180_at"	"LINC00847"	729678	"ENSG00000245060"
+"1559277_at"	"TCF21"	6943	"ENSG00000118526"
+"1554773_at"	"WFIKKN2"	124857	"ENSG00000173714"
+"1552657_a_at"	"TXNDC2"	84203	"ENSG00000168454"
+"1557692_a_at"	"GATM"	2628	"ENSG00000171766"
+"1557321_a_at"	"CAPN14"	440854	"ENSG00000214711"
+"1554806_a_at"	"FBXO8"	26269	"ENSG00000164117"
+"1555773_at"	"BPIFC"	254240	"ENSG00000184459"
+"1556842_at"	""	NA	"ENSG00000282484"
+"1554566_at"	"KCTD17"	79734	"ENSG00000100379"
+"1554887_at"	"EMSLR"	NA	"ENSG00000232445"
+"1553768_a_at"	"DCBLD1"	285761	"ENSG00000164465"
+"1558820_a_at"	"CCDC178"	374864	"ENSG00000166960"
+"1556406_at"	"LINC00879"	255025	"ENSG00000239589"
+"1553642_at"	"C9orf163"	158055	"ENSG00000196366"
+"1558777_at"	"MRTFB"	57496	"ENSG00000186260"
+"1558778_s_at"	"MRTFB"	57496	"ENSG00000186260"
+"1552897_a_at"	"KCNG3"	170850	"ENSG00000171126"
+"1552898_a_at"	"KCNG3"	170850	"ENSG00000171126"
+"1552796_a_at"	"SIM1"	6492	"ENSG00000112246"
+"1556300_s_at"	"SIM1"	6492	"ENSG00000112246"
+"1554292_a_at"	"BLTP3B"	23074	"ENSG00000111647"
+"1554291_at"	"BLTP3B"	23074	"ENSG00000111647"
+"1553593_a_at"	"TAL2"	6887	"ENSG00000186051"
+"1559728_at"	"ZBTB40"	9923	"ENSG00000184677"
+"1555787_at"	"JHY"	79864	"ENSG00000109944"
+"1553453_at"	"ASB14"	142686	"ENSG00000239388"
+"1554234_at"	"KATNAL2"	83473	"ENSG00000167216"
+"1555498_at"	"ARHGEF12"	23365	"ENSG00000196914"
+"1552277_a_at"	"MSANTD3"	91283	"ENSG00000066697"
+"1555841_at"	"MSANTD3"	91283	"ENSG00000066697"
+"1553651_at"	"C18orf54"	162681	"ENSG00000166845"
+"1553652_a_at"	"C18orf54"	162681	"ENSG00000166845"
+"1553084_at"	"STARD6"	147323	"ENSG00000174448"
+"1554807_a_at"	"SPIRE1"	56907	"ENSG00000134278"
+"1559517_a_at"	"SPIRE1"	56907	"ENSG00000134278"
+"1555562_a_at"	"ZCCHC7"	84186	"ENSG00000147905"
+"1559683_at"	""	NA	"ENSG00000279665"
+"1554129_a_at"	"ADIG"	149685	"ENSG00000182035"
+"1552950_at"	"CFAP161"	161502	"ENSG00000156206"
+"1556950_s_at"	"SERPINB6"	5269	"ENSG00000124570"
+"1556231_a_at"	"URI1"	8725	"ENSG00000105176"
+"1554549_a_at"	"WDR20"	91833	"ENSG00000140153"
+"1557322_at"	"ZNF230"	7773	"ENSG00000159882"
+"1554523_a_at"	"CNNM2"	54805	"ENSG00000148842"
+"1554522_at"	"CNNM2"	54805	"ENSG00000148842"
+"1558451_at"	"AGA-DT"	NA	"ENSG00000250131"
+"1556737_at"	"LINC00671"	NA	"ENSG00000213373"
+"1558631_at"	"PPARA"	5465	"ENSG00000186951"
+"1557369_a_at"	"LINC00698"	285401	"ENSG00000244342"
+"1554728_at"	"SLC9A1"	6548	"ENSG00000090020"
+"1555526_a_at"	"SEPTIN6"	23157	"ENSG00000125354"
+"1556942_at"	""	NA	"ENSG00000280035"
+"1552721_a_at"	"FGF1"	2246	"ENSG00000113578"
+"1557609_s_at"	"TBC1D12"	23232	"ENSG00000108239"
+"1554110_at"	"CDCP1"	64866	"ENSG00000163814"
+"1555412_at"	"FBXL21P"	NA	"ENSG00000164616"
+"1553500_at"	"FBXL21P"	NA	"ENSG00000164616"
+"1555413_s_at"	"FBXL21P"	NA	"ENSG00000164616"
+"1554519_at"	"CD80"	941	"ENSG00000121594"
+"1555689_at"	"CD80"	941	"ENSG00000121594"
+"1558590_at"	"METTL17"	64745	"ENSG00000165792"
+"1554864_a_at"	"SDC3"	9672	"ENSG00000162512"
+"1552602_at"	"CACNG5"	27091	"ENSG00000075429"
+"1554354_at"	"SIAE"	54414	"ENSG00000110013"
+"1554355_a_at"	"SIAE"	54414	"ENSG00000110013"
+"1554149_at"	"CLDND1"	56650	"ENSG00000080822"
+"1557744_at"	"MIR499B"	100616134	"ENSG00000283441"
+"1557448_a_at"	""	NA	"ENSG00000257512"
+"1552368_at"	"CTCFL"	140690	"ENSG00000124092"
+"1552338_at"	"GSC"	145258	"ENSG00000133937"
+"1557429_s_at"	"FAM227B"	196951	"ENSG00000166262"
+"1553799_at"	"FAM227B"	196951	"ENSG00000166262"
+"1555140_a_at"	"BCL2L2"	599	"ENSG00000129473"
+"1555210_at"	"DTWD1"	56986	"ENSG00000104047"
+"1553838_at"	"C4orf45"	152940	"ENSG00000164123"
+"1556099_at"	"LINC00290"	728081	"ENSG00000248197"
+"1555071_at"	"TLL1"	7092	"ENSG00000038295"
+"1552314_a_at"	"EYA3"	2140	"ENSG00000158161"
+"1554844_at"	"EYA3"	2140	"ENSG00000158161"
+"1557338_x_at"	"SUCLG2-DT"	101927111	"ENSG00000241316"
+"1557336_at"	"SUCLG2-DT"	101927111	"ENSG00000241316"
+"1557620_a_at"	"CCDC38"	120935	"ENSG00000165972"
+"1556061_at"	"RPP30"	10556	"ENSG00000148688"
+"1556063_s_at"	"RPP30"	10556	"ENSG00000148688"
+"1558277_at"	"ZNF740"	283337	"ENSG00000139651"
+"1553497_at"	"LINC00615"	439916	"ENSG00000196243"
+"1554375_a_at"	"NR1H4"	9971	"ENSG00000012504"
+"1554249_a_at"	"ZNF638"	27332	"ENSG00000075292"
+"1558449_at"	""	NA	"ENSG00000264895"
+"1557458_s_at"	"SHB"	6461	"ENSG00000107338"
+"1557897_at"	""	NA	"ENSG00000272180"
+"1557731_at"	"LINC02092"	400620	"ENSG00000234721"
+"1559685_at"	"TMEM14B-DT"	118597831	"ENSG00000272097"
+"1559686_a_at"	"TMEM14B-DT"	118597831	"ENSG00000272097"
+"1559138_a_at"	"SPATA19"	219938	"ENSG00000166118"
+"1553417_at"	"LINC02873"	283171	"ENSG00000175728"
+"1555645_at"	""	NA	"ENSG00000279021"
+"1557064_s_at"	"HGSNAT"	138050	"ENSG00000165102"
+"1554616_at"	"SERPINB8"	5271	"ENSG00000166401"
+"1559661_at"	"TENM3"	55714	"ENSG00000218336"
+"1552445_a_at"	"ESX1"	80712	"ENSG00000123576"
+"1558044_s_at"	"EXOSC6"	118460	"ENSG00000223496"
+"1553934_at"	"LINC00305"	221241	"ENSG00000179676"
+"1555315_a_at"	"MAK"	4117	"ENSG00000111837"
+"1557677_a_at"	"TRIML1"	339976	"ENSG00000184108"
+"1554214_at"	""	NA	"ENSG00000283098"
+"1554820_at"	"AGBL3"	340351	"ENSG00000146856"
+"1557214_at"	"LINC02382"	100506107	"ENSG00000250968"
+"1552326_a_at"	"CFAP53"	220136	"ENSG00000172361"
+"1552325_at"	"CFAP53"	220136	"ENSG00000172361"
+"1554418_s_at"	"SPOCK3"	50859	"ENSG00000196104"
+"1553246_a_at"	"POMK"	84197	"ENSG00000185900"
+"1552969_a_at"	"ZMYM6"	9204	"ENSG00000163867"
+"1552970_s_at"	"ZMYM6"	9204	"ENSG00000163867"
+"1554462_a_at"	"DNAJB9"	4189	"ENSG00000128590"
+"1554472_a_at"	"PHF20L1"	51105	"ENSG00000129292"
+"1557241_a_at"	"SRPX2"	27286	"ENSG00000102359"
+"1555002_at"	""	403312	"ENSG00000255537"
+"1557664_at"	""	NA	"ENSG00000234387"
+"1556638_at"	"PAX7"	5081	"ENSG00000009709"
+"1552306_at"	"ALG10"	84920	"ENSG00000139133"
+"1552304_at"	"ALG10"	84920	"ENSG00000139133"
+"1554453_at"	"HNRNPLL"	92906	"ENSG00000143889"
+"1555848_at"	"RBM18"	92400	"ENSG00000119446"
+"1552972_at"	"LINC02551"	NA	"ENSG00000254842"
+"1554224_at"	"LINC02712"	101929497	"ENSG00000273409"
+"1554225_a_at"	"LINC02712"	101929497	"ENSG00000273409"
+"1555193_a_at"	"ZNF277"	11179	"ENSG00000198839"
+"1555192_at"	"ZNF277"	11179	"ENSG00000198839"
+"1555545_at"	"KLK2"	3817	"ENSG00000167751"
+"1555571_at"	"IMMP2L"	83943	"ENSG00000184903"
+"1553780_at"	"LINC00638"	196872	"ENSG00000258701"
+"1557415_s_at"	"LETM2"	137994	"ENSG00000165046"
+"1552546_a_at"	"LETM2"	137994	"ENSG00000165046"
+"1557631_at"	"LINC02436"	101928877	"ENSG00000250754"
+"1553732_s_at"	"CEP89"	84902	"ENSG00000121289"
+"1554513_s_at"	"CEP89"	84902	"ENSG00000121289"
+"1554512_a_at"	"CEP89"	84902	"ENSG00000121289"
+"1557430_at"	"SMIM17"	147670	"ENSG00000268182"
+"1553587_a_at"	"POLE4"	56655	"ENSG00000115350"
+"1552502_s_at"	"RHBDL2"	54933	"ENSG00000158315"
+"1554895_a_at"	"RHBDL2"	54933	"ENSG00000158315"
+"1554897_s_at"	"RHBDL2"	54933	"ENSG00000158315"
+"1554558_at"	"DCAF5"	8816	"ENSG00000139990"
+"1553675_at"	"KLC4"	89953	"ENSG00000137171"
+"1553666_at"	"CCDC34"	91057	"ENSG00000109881"
+"1557057_a_at"	"C5orf47"	133491	"ENSG00000185056"
+"1557056_at"	"C5orf47"	133491	"ENSG00000185056"
+"1557181_s_at"	"C11orf87"	399947	"ENSG00000185742"
+"1557180_at"	"C11orf87"	399947	"ENSG00000185742"
+"1554329_x_at"	"STXBP4"	252983	"ENSG00000166263"
+"1554328_at"	"STXBP4"	252983	"ENSG00000166263"
+"1552715_a_at"	"RXFP1"	59350	"ENSG00000171509"
+"1553120_at"	"CLSPN"	63967	"ENSG00000092853"
+"1552504_a_at"	"BRSK1"	84446	"ENSG00000160469"
+"1555324_at"	"PTK7"	5754	"ENSG00000112655"
+"1554114_s_at"	"SSH2"	85464	"ENSG00000141298"
+"1555423_at"	"SSH2"	85464	"ENSG00000141298"
+"1555425_x_at"	"SSH2"	85464	"ENSG00000141298"
+"1553545_at"	"ILDR1"	286676	"ENSG00000145103"
+"1555755_at"	""	NA	"ENSG00000280318"
+"1558578_a_at"	"STMP1"	647087	"ENSG00000243317"
+"1554912_at"	"ESYT3"	83850	"ENSG00000158220"
+"1557793_at"	"ESYT3"	83850	"ENSG00000158220"
+"1557875_at"	"CASC17"	101928165	"ENSG00000260785"
+"1553499_s_at"	"SERPINA9"	327657	"ENSG00000170054"
+"1554638_at"	"ZFYVE16"	9765	"ENSG00000039319"
+"1555011_at"	"ZFYVE16"	9765	"ENSG00000039319"
+"1557502_at"	"STAG1"	10274	"ENSG00000118007"
+"1559078_at"	"BCL11A"	53335	"ENSG00000119866"
+"1552544_at"	"SERPINA12"	145264	"ENSG00000165953"
+"1557542_at"	""	NA	"ENSG00000260947"
+"1557283_a_at"	"ZNF519"	162655	"ENSG00000175322"
+"1554268_at"	"MORN1"	79906	"ENSG00000116151"
+"1553978_at"	"BORCS8"	729991	"ENSG00000254901"
+"1554777_at"	"ZFP42"	132625	"ENSG00000179059"
+"1554776_at"	"ZFP42"	132625	"ENSG00000179059"
+"1554762_a_at"	"WWC2"	80014	"ENSG00000151718"
+"1554039_at"	"DGLUCY"	80017	"ENSG00000133943"
+"1556627_at"	"DRP2"	1821	"ENSG00000102385"
+"1554195_a_at"	"C5orf46"	389336	"ENSG00000178776"
+"1554668_a_at"	"FAM151A"	338094	"ENSG00000162391"
+"1558848_at"	""	NA	"ENSG00000256116"
+"1555292_at"	"STRIP2"	57464	"ENSG00000128578"
+"1557590_at"	"PARD6G-AS1"	100130522	"ENSG00000267270"
+"1558630_at"	"DLGAP4-AS1"	101926987	"ENSG00000232907"
+"1558348_at"	"DET1"	55070	"ENSG00000140543"
+"1553205_at"	"CRMA"	NA	"ENSG00000174403"
+"1553204_at"	"CRMA"	NA	"ENSG00000174403"
+"1555617_x_at"	""	NA	"ENSG00000268157"
+"1555616_at"	""	NA	"ENSG00000268157"
+"1552913_at"	"MAGEB18"	286514	"ENSG00000176774"
+"1558906_a_at"	"OSER1-DT"	100505783	"ENSG00000223891"
+"1552858_at"	"MAGEB6"	158809	"ENSG00000176746"
+"1558645_at"	"MIR133A1HG"	102723167	"ENSG00000265142"
+"1555679_a_at"	"RTN4IP1"	84816	"ENSG00000130347"
+"1557233_at"	"F11-AS1"	285441	"ENSG00000251165"
+"1555611_s_at"	"MBD1"	4152	"ENSG00000141644"
+"1558711_at"	"FAM13A-AS1"	285512	"ENSG00000248019"
+"1556639_at"	"LINC02724"	100996455	"ENSG00000181908"
+"1558414_at"	"FRRS1L"	23732	"ENSG00000260230"
+"1554812_at"	"CLDN20"	49861	"ENSG00000171217"
+"1555815_a_at"	"L3MBTL2"	83746	"ENSG00000100395"
+"1554489_a_at"	"CEP70"	80321	"ENSG00000114107"
+"1554488_at"	"CEP70"	80321	"ENSG00000114107"
+"1555982_at"	"FAM151B-DT"	NA	"ENSG00000249042"
+"1557610_at"	"PITRM1-AS1"	100507034	"ENSG00000237399"
+"1557123_a_at"	"CHADL"	150356	"ENSG00000100399"
+"1559537_at"	"RNF130"	55819	"ENSG00000113269"
+"1556156_at"	"ESRRB"	2103	"ENSG00000119715"
+"1554112_a_at"	"ULK2"	9706	"ENSG00000083290"
+"1558407_at"	"PLEKHG2"	64857	"ENSG00000090924"
+"1556227_at"	"VCPIP1"	80124	"ENSG00000175073"
+"1556228_a_at"	"VCPIP1"	80124	"ENSG00000175073"
+"1556592_at"	""	NA	"ENSG00000241679"
+"1556593_s_at"	""	NA	"ENSG00000241679"
+"1553225_s_at"	"ZNF75D"	7626	"ENSG00000186376"
+"1557876_at"	"LINC01020"	NA	"ENSG00000215231"
+"1557877_s_at"	"LINC01020"	NA	"ENSG00000215231"
+"1552457_a_at"	"ADAMTSL1"	92949	"ENSG00000178031"
+"1552808_at"	"ADAMTSL1"	92949	"ENSG00000178031"
+"1558034_s_at"	"CP"	1356	"ENSG00000047457"
+"1555535_at"	"BPIFB6"	128859	"ENSG00000167104"
+"1554246_at"	"C1orf210"	149466	"ENSG00000253313"
+"1553701_a_at"	"DUSP18"	150290	"ENSG00000167065"
+"1553329_at"	"SSMEM1"	136263	"ENSG00000165120"
+"1553330_at"	"SSMEM1"	136263	"ENSG00000165120"
+"1556771_a_at"	"CNTFR-AS1"	415056	"ENSG00000237159"
+"1558624_at"	""	NA	"ENSG00000272219"
+"1559280_a_at"	"APELA"	100506013	"ENSG00000248329"
+"1552359_at"	"MCMDC2"	157777	"ENSG00000178460"
+"1553711_a_at"	"FAM218A"	152756	"ENSG00000250486"
+"1553710_at"	"FAM218A"	152756	"ENSG00000250486"
+"1553391_at"	"CXorf58"	254158	"ENSG00000165182"
+"1556255_a_at"	"DOCK7-DT"	NA	"ENSG00000235545"
+"1553891_at"	"KLF17"	128209	"ENSG00000171872"
+"1556958_at"	""	NA	"ENSG00000280057"
+"1555902_at"	"ARMCX5-GPRASP2"	NA	"ENSG00000271147"
+"1552652_at"	"HPS4"	89781	"ENSG00000100099"
+"1555286_at"	"CDKL1"	8814	"ENSG00000100490"
+"1552914_a_at"	"CD276"	80381	"ENSG00000103855"
+"1559583_at"	"CD276"	80381	"ENSG00000103855"
+"1553970_s_at"	"CEL"	1056	"ENSG00000170835"
+"1555620_a_at"	"PTGIR"	5739	"ENSG00000160013"
+"1553630_at"	"CABCOCO1"	219621	"ENSG00000183346"
+"1553362_at"	"DNAH6"	1768	"ENSG00000115423"
+"1552957_at"	"DNAH6"	1768	"ENSG00000115423"
+"1552579_a_at"	"ADAM21"	8747	"ENSG00000139985"
+"1559477_s_at"	"MEIS1"	4211	"ENSG00000143995"
+"1556015_a_at"	"MESP2"	145873	"ENSG00000188095"
+"1556014_at"	"MESP2"	145873	"ENSG00000188095"
+"1554670_at"	"GGA1"	26088	"ENSG00000100083"
+"1555078_at"	"ZNF843"	283933	"ENSG00000176723"
+"1559170_at"	""	NA	"ENSG00000290461"
+"1554568_at"	"DYNLRB1"	83658	"ENSG00000125971"
+"1559028_at"	"CYP4F35P"	284233	"ENSG00000290462"
+"1554989_at"	"AREL1"	9870	"ENSG00000119682"
+"1554239_s_at"	"PTGR3"	284273	"ENSG00000180011"
+"1554283_at"	"NOCT"	25819	"ENSG00000151014"
+"1556769_a_at"	""	105371967	"ENSG00000266401"
+"1558666_at"	"PHEX-AS1"	100873942	"ENSG00000224204"
+"1552967_at"	"CBLL2"	158506	"ENSG00000175809"
+"1554595_at"	"SYMPK"	8189	"ENSG00000125755"
+"1557129_a_at"	"FAM111B"	374393	"ENSG00000189057"
+"1557128_at"	"FAM111B"	374393	"ENSG00000189057"
+"1558411_at"	"EGFEM1P"	NA	"ENSG00000206120"
+"1554872_a_at"	"HMGCLL1"	54511	"ENSG00000146151"
+"1557065_at"	"YLPM1"	56252	"ENSG00000119596"
+"1555082_a_at"	"NEK11"	79858	"ENSG00000114670"
+"1554380_at"	"NEK11"	79858	"ENSG00000114670"
+"1554145_a_at"	"PPP1R21"	129285	"ENSG00000162869"
+"1553955_at"	"PPP1R21"	129285	"ENSG00000162869"
+"1557767_at"	"NANOS2"	339345	"ENSG00000188425"
+"1553997_a_at"	"ASPHD1"	253982	"ENSG00000174939"
+"1558651_at"	"CCDC28A-AS1"	100507462	"ENSG00000279968"
+"1554429_a_at"	"DMWD"	1762	"ENSG00000185800"
+"1555046_at"	"CENPI"	2491	"ENSG00000102384"
+"1554376_s_at"	"HACD1"	9200	"ENSG00000165996"
+"1555931_at"	"TSGA10"	80705	"ENSG00000135951"
+"1555932_at"	"TSGA10"	80705	"ENSG00000135951"
+"1557099_at"	""	NA	"ENSG00000277715"
+"1556508_s_at"	"LINC01210"	100507274	"ENSG00000239513"
+"1556507_at"	"LINC01210"	100507274	"ENSG00000239513"
+"1553706_at"	"HTRA4"	203100	"ENSG00000169495"
+"1558116_x_at"	"RECK"	8434	"ENSG00000122707"
+"1558115_at"	"RECK"	8434	"ENSG00000122707"
+"1552491_at"	"IDI2"	91734	"ENSG00000148377"
+"1554045_at"	"ZNF24"	7572	"ENSG00000172466"
+"1554335_at"	"CYTH4"	27128	"ENSG00000100055"
+"1553568_a_at"	"H1-6"	3010	"ENSG00000187475"
+"1558128_at"	"PAPOLA-DT"	NA	"ENSG00000260806"
+"1554231_a_at"	"ZNF396"	252884	"ENSG00000186496"
+"1552825_at"	"ZNF396"	252884	"ENSG00000186496"
+"1554985_at"	"ZNF396"	252884	"ENSG00000186496"
+"1555166_a_at"	"ZNF396"	252884	"ENSG00000186496"
+"1559716_at"	"INO80C"	125476	"ENSG00000153391"
+"1553202_at"	"STOX1"	219736	"ENSG00000165730"
+"1553105_s_at"	"DSG2"	1829	"ENSG00000046604"
+"1559072_a_at"	"ELFN2"	114794	"ENSG00000166897"
+"1556444_a_at"	""	NA	"ENSG00000260838"
+"1552644_a_at"	"PHC3"	80012	"ENSG00000173889"
+"1558021_at"	"RABEPK"	10244	"ENSG00000136933"
+"1554873_at"	"CSPP1"	79848	"ENSG00000104218"
+"1558253_x_at"	"ZNF587"	84914	"ENSG00000198466"
+"1558251_a_at"	"ZNF587"	84914	"ENSG00000198466"
+"1552783_at"	"ZNF417"	147687	"ENSG00000173480"
+"1552436_a_at"	"CDH23"	64072	"ENSG00000107736"
+"1559142_at"	"KAT6A"	7994	"ENSG00000083168"
+"1552911_at"	"SIGLEC11"	114132	"ENSG00000161640"
+"1555837_s_at"	"POLR2B"	5431	"ENSG00000047315"
+"1553011_at"	"TAF1L"	138474	"ENSG00000122728"
+"1555465_at"	"MCOLN2"	255231	"ENSG00000153898"
+"1553489_a_at"	"TEKT5"	146279	"ENSG00000153060"
+"1553488_at"	"TEKT5"	146279	"ENSG00000153060"
+"1554062_at"	"XG"	7499	"ENSG00000124343"
+"1559494_at"	"SLC35G2"	80723	"ENSG00000168917"
+"1558679_at"	"NOL4L"	140688	"ENSG00000197183"
+"1555763_x_at"	"MRTFA"	57591	"ENSG00000196588"
+"1555090_x_at"	"TMEM182"	130827	"ENSG00000170417"
+"1553301_a_at"	"TMEM182"	130827	"ENSG00000170417"
+"1558742_at"	"DEXI"	28955	"ENSG00000182108"
+"1553217_s_at"	"ZNF41"	7592	"ENSG00000147124"
+"1553216_at"	"ZNF41"	7592	"ENSG00000147124"
+"1554117_at"	"CCDC60"	160777	"ENSG00000183273"
+"1559670_at"	""	100506489	"ENSG00000240973"
+"1559467_at"	""	NA	"ENSG00000278600"
+"1556588_at"	"ST20-AS1"	NA	"ENSG00000259642"
+"1553354_a_at"	""	NA	"ENSG00000280355"
+"1554441_a_at"	"WAPL"	23063	"ENSG00000062650"
+"1553861_at"	"TCP11L2"	255394	"ENSG00000166046"
+"1559413_at"	"TCP11L2"	255394	"ENSG00000166046"
+"1555437_at"	"EARS2"	124454	"ENSG00000103356"
+"1553081_at"	"WFDC12"	128488	"ENSG00000168703"
+"1556247_a_at"	""	NA	"ENSG00000237862"
+"1559355_at"	"NXPH2"	11249	"ENSG00000144227"
+"1554222_at"	"TMEM277P"	284365	"ENSG00000180279"
+"1555900_at"	"DCTN5"	84516	"ENSG00000166847"
+"1556039_s_at"	"GPR173"	54328	"ENSG00000184194"
+"1556038_at"	"GPR173"	54328	"ENSG00000184194"
+"1555610_at"	"AGK"	55750	"ENSG00000006530"
+"1558764_at"	"TNRC6B-DT"	114841040	"ENSG00000261202"
+"1558765_a_at"	"TNRC6B-DT"	114841040	"ENSG00000261202"
+"1555353_at"	"LRP1"	4035	"ENSG00000123384"
+"1553093_a_at"	"DEFB119"	245932	"ENSG00000180483"
+"1555259_at"	"MAP3K20"	51776	"ENSG00000091436"
+"1555793_a_at"	"ZFP82"	284406	"ENSG00000181007"
+"1553492_a_at"	"PAX1"	5075	"ENSG00000125813"
+"1558700_s_at"	"ZNF260"	339324	"ENSG00000254004"
+"1553532_a_at"	"ZNF341"	84905	"ENSG00000131061"
+"1553238_a_at"	"HIPK4"	147746	"ENSG00000160396"
+"1559629_at"	""	NA	"ENSG00000251536"
+"1552988_at"	"C11orf65"	160140	"ENSG00000166323"
+"1557434_at"	"CPVL-AS2"	100506497	"ENSG00000272568"
+"1555487_a_at"	"ACTR3B"	57180	"ENSG00000133627"
+"1556065_at"	""	NA	"ENSG00000289858"
+"1555097_a_at"	"PTGFR"	5737	"ENSG00000122420"
+"1553709_a_at"	"PRPF38A"	84950	"ENSG00000134748"
+"1555394_at"	"PIGK"	10026	"ENSG00000142892"
+"1558653_at"	"MAP3K20-AS1"	339751	"ENSG00000238133"
+"1558342_x_at"	"DIXDC1"	85458	"ENSG00000150764"
+"1558340_at"	"DIXDC1"	85458	"ENSG00000150764"
+"1557518_a_at"	""	NA	"ENSG00000260293"
+"1552311_a_at"	"RAX2"	84839	"ENSG00000173976"
+"1557486_at"	"ANKRD44-IT1"	101927547	"ENSG00000236977"
+"1552906_at"	"FMR1NB"	158521	"ENSG00000176988"
+"1555803_a_at"	"NKAPD1"	55216	"ENSG00000150776"
+"1552927_at"	"TAB3"	257397	"ENSG00000157625"
+"1552928_s_at"	"TAB3"	257397	"ENSG00000157625"
+"1558518_at"	"TAB3"	257397	"ENSG00000157625"
+"1557334_a_at"	"MCM8-AS1"	NA	"ENSG00000278719"
+"1552664_at"	"FLCN"	201163	"ENSG00000154803"
+"1554281_at"	""	NA	"ENSG00000278192"
+"1553169_at"	"LRRN4"	164312	"ENSG00000125872"
+"1553171_x_at"	"LRRN4"	164312	"ENSG00000125872"
+"1558001_s_at"	"ARID5B"	84159	"ENSG00000150347"
+"1558000_at"	"ARID5B"	84159	"ENSG00000150347"
+"1556831_at"	"DYNC1H1"	1778	"ENSG00000197102"
+"1559361_at"	"MACC1"	346389	"ENSG00000183742"
+"1555680_a_at"	"SMOX"	54498	"ENSG00000088826"
+"1555180_at"	""	100132686	"ENSG00000268472"
+"1557451_at"	"DGCR5"	26220	"ENSG00000273032"
+"1558118_at"	"DGCR5"	26220	"ENSG00000273032"
+"1554818_s_at"	"DZANK1"	55184	"ENSG00000089091"
+"1552903_at"	"B4GALNT2"	124872	"ENSG00000167080"
+"1555961_a_at"	"HINT1"	3094	"ENSG00000169567"
+"1555960_at"	"HINT1"	3094	"ENSG00000169567"
+"1554017_at"	"SNRNP35"	11066	"ENSG00000184209"
+"1553909_x_at"	"SLF2"	55719	"ENSG00000119906"
+"1553535_a_at"	"RANGAP1"	5905	"ENSG00000100401"
+"1555326_a_at"	"ADAM9"	8754	"ENSG00000168615"
+"1554196_at"	"IZUMO1"	284359	"ENSG00000182264"
+"1555015_a_at"	"ZNF398"	57541	"ENSG00000197024"
+"1553241_at"	"NKAIN3"	286183	"ENSG00000185942"
+"1558387_at"	"NKAIN3"	286183	"ENSG00000185942"
+"1558388_a_at"	"NKAIN3"	286183	"ENSG00000185942"
+"1554300_a_at"	"SVOPL"	136306	"ENSG00000157703"
+"1555624_a_at"	"SSH1"	54434	"ENSG00000084112"
+"1554274_a_at"	"SSH1"	54434	"ENSG00000084112"
+"1552426_a_at"	"TM2D3"	80213	"ENSG00000184277"
+"1554076_s_at"	"TLCD5"	219902	"ENSG00000181264"
+"1557701_s_at"	"POLH"	5429	"ENSG00000170734"
+"1557700_at"	"POLH"	5429	"ENSG00000170734"
+"1316_at"	"THRA"	7067	"ENSG00000126351"
+"1555434_a_at"	"SLC39A14"	23516	"ENSG00000104635"
+"1555433_at"	"SLC39A14"	23516	"ENSG00000104635"
+"1555236_a_at"	"PGC"	5225	"ENSG00000096088"
+"1554382_at"	"LINC00656"	200261	"ENSG00000233746"
+"1558497_a_at"	"LINC02053"	100505609	"ENSG00000241696"
+"1558496_at"	"LINC02053"	100505609	"ENSG00000241696"
+"1557998_at"	"NAALADL2"	254827	"ENSG00000177694"
+"1554977_at"	"LKAAEAR1"	198437	"ENSG00000171695"
+"1553531_at"	"PCSK6"	5046	"ENSG00000140479"
+"1556823_s_at"	""	NA	"ENSG00000260366"
+"1554824_at"	"ZNF585A"	199704	"ENSG00000196967"
+"1553194_at"	"NEGR1"	257194	"ENSG00000172260"
+"1557302_at"	"ZNF585B"	92285	"ENSG00000245680"
+"1559712_at"	"LINC00689"	154822	"ENSG00000231419"
+"1556914_at"	"LINC01838"	100652911	"ENSG00000269037"
+"1555379_at"	"SHISAL2A"	348378	"ENSG00000182183"
+"1556896_at"	"LINC01270"	284751	"ENSG00000203999"
+"1553311_at"	"LINC02910"	284756	"ENSG00000176659"
+"1556887_at"	"NPHP3-AS1"	348808	"ENSG00000248724"
+"1557475_at"	"LINC00507"	100862680	"ENSG00000256193"
+"1556081_at"	"FARSB"	10056	"ENSG00000116120"
+"1556082_a_at"	"FARSB"	10056	"ENSG00000116120"
+"1558804_at"	"CDK13-DT"	NA	"ENSG00000259826"
+"1554303_at"	"HNMT"	3176	"ENSG00000150540"
+"1554578_at"	"ZNF70"	7621	"ENSG00000187792"
+"1553555_at"	"TAS2R38"	5726	"ENSG00000257138"
+"1554816_at"	"ASTN2"	23245	"ENSG00000148219"
+"1553367_a_at"	"COX6B2"	125965	"ENSG00000160471"
+"1552990_at"	"GARIN5B"	284418	"ENSG00000180043"
+"1552594_at"	"TMEM190"	147744	"ENSG00000160472"
+"1553523_at"	"NLRP14"	338323	"ENSG00000158077"
+"1555416_a_at"	"ALOX15B"	247	"ENSG00000179593"
+"1554242_a_at"	"COCH"	1690	"ENSG00000100473"
+"1554241_at"	"COCH"	1690	"ENSG00000100473"
+"1559731_x_at"	"MACROD1"	28992	"ENSG00000133315"
+"1554259_at"	"GPSM1"	26086	"ENSG00000160360"
+"1558728_at"	"VPS9D1-AS1"	100128881	"ENSG00000261373"
+"1553564_at"	"MACROD2"	140733	"ENSG00000172264"
+"1553527_at"	"NLRP9"	338321	"ENSG00000185792"
+"1554878_a_at"	"ABCD3"	5825	"ENSG00000117528"
+"1553249_at"	"SMC1B"	27127	"ENSG00000077935"
+"1552474_a_at"	"GAMT"	2593	"ENSG00000130005"
+"1552473_at"	"GAMT"	2593	"ENSG00000130005"
+"1559459_at"	""	613266	"ENSG00000286546"
+"1554170_a_at"	"MBLAC1"	255374	"ENSG00000214309"
+"1554710_at"	"KCNMB1"	3779	"ENSG00000145936"
+"1555230_a_at"	"KCNIP2"	30819	"ENSG00000120049"
+"1553954_at"	"ALG14"	199857	"ENSG00000172339"
+"1555991_s_at"	"C22orf42"	150297	"ENSG00000205856"
+"1555990_at"	"C22orf42"	150297	"ENSG00000205856"
+"1556814_a_at"	""	NA	"ENSG00000226471"
+"1555102_at"	"FGF7"	2252	"ENSG00000140285"
+"1555103_s_at"	"FGF7"	2252	"ENSG00000140285"
+"1557067_s_at"	"LUC7L"	55692	"ENSG00000007392"
+"1557066_at"	"LUC7L"	55692	"ENSG00000007392"
+"1552409_a_at"	"ODF4"	146852	"ENSG00000184650"
+"1552408_at"	"ODF4"	146852	"ENSG00000184650"
+"1554346_at"	"GNB5"	10681	"ENSG00000069966"
+"1558856_at"	"DMRTA2"	63950	"ENSG00000142700"
+"1554018_at"	"GPNMB"	10457	"ENSG00000136235"
+"1558876_at"	"MIR4435-2HG"	541471	"ENSG00000172965"
+"1552258_at"	"MIR4435-2HG"	541471	"ENSG00000172965"
+"1555839_a_at"	"LINC02877"	152118	"ENSG00000237787"
+"1552731_at"	"ABRA"	137735	"ENSG00000174429"
+"1552732_at"	"ABRA"	137735	"ENSG00000174429"
+"1554105_at"	"TMEM185A"	84548	"ENSG00000269556"
+"1552432_at"	"MFSD6L"	162387	"ENSG00000185156"
+"1558770_a_at"	"PIK3R6"	146850	"ENSG00000276231"
+"1556436_at"	"EXTL3-AS1"	101929402	"ENSG00000246339"
+"1558905_at"	""	NA	"ENSG00000261298"
+"1553276_at"	"ZNF560"	147741	"ENSG00000198028"
+"1556629_a_at"	"SNAP25"	6616	"ENSG00000132639"
+"1553221_at"	"ZNF583"	147949	"ENSG00000198440"
+"1556392_a_at"	""	NA	"ENSG00000260871"
+"1554619_at"	"MBLAC2"	153364	"ENSG00000176055"
+"1553415_at"	"SLC17A8"	246213	"ENSG00000179520"
+"1553658_at"	"LINC00896"	150197	"ENSG00000236499"
+"1556030_at"	"SMTN"	6525	"ENSG00000183963"
+"1552626_a_at"	"TMEM163"	81615	"ENSG00000152128"
+"1553082_at"	"CRYGN"	155051	"ENSG00000127377"
+"1554950_at"	"ACAN"	176	"ENSG00000157766"
+"1555491_a_at"	"SHFL"	55337	"ENSG00000130813"
+"1554649_at"	""	NA	"ENSG00000273387"
+"1554650_a_at"	""	NA	"ENSG00000273387"
+"1554534_at"	"DPYD"	1806	"ENSG00000188641"
+"1554536_at"	"DPYD"	1806	"ENSG00000188641"
+"1559298_a_at"	"SPATA41"	NA	"ENSG00000189419"
+"1559186_at"	"RNU6-322P"	NA	"ENSG00000251819"
+"1559188_x_at"	"RNU6-322P"	NA	"ENSG00000251819"
+"1556960_a_at"	"ANHX"	647589	"ENSG00000227059"
+"1556959_at"	"ANHX"	647589	"ENSG00000227059"
+"1553991_s_at"	"VSIG10"	54621	"ENSG00000176834"
+"1553620_at"	"TRIM42"	287015	"ENSG00000155890"
+"1553656_at"	"TECTB"	6975	"ENSG00000119913"
+"1553599_a_at"	"SYCP3"	50511	"ENSG00000139351"
+"1554606_at"	"CEP120"	153241	"ENSG00000168944"
+"1553115_at"	"NKD1"	85407	"ENSG00000140807"
+"1553750_a_at"	"FAM76B"	143684	"ENSG00000077458"
+"1556283_s_at"	"FGFR1OP2"	26127	"ENSG00000111790"
+"1555275_a_at"	"KLHL6"	89857	"ENSG00000172578"
+"1554476_x_at"	"ZNF808"	388558	"ENSG00000198482"
+"1555632_at"	"PIK3IP1"	113791	"ENSG00000100100"
+"1559059_s_at"	"ZNF611"	81856	"ENSG00000213020"
+"1552725_s_at"	"ADAMTS17"	170691	"ENSG00000140470"
+"1552726_at"	"ADAMTS17"	170691	"ENSG00000140470"
+"1552727_s_at"	"ADAMTS17"	170691	"ENSG00000140470"
+"1554697_at"	"ADAMTS9"	56999	"ENSG00000163638"
+"1555248_a_at"	"WNK3"	65267	"ENSG00000196632"
+"1554456_a_at"	"LINS1"	55180	"ENSG00000140471"
+"1554455_at"	"LINS1"	55180	"ENSG00000140471"
+"1557431_at"	""	NA	"ENSG00000260464"
+"1553756_at"	"GLIS3-AS1"	84850	"ENSG00000237009"
+"1555179_at"	"IGHV7-81"	NA	"ENSG00000211979"
+"1553644_at"	"SYNE3"	161176	"ENSG00000176438"
+"1554252_a_at"	"CERS3"	204219	"ENSG00000154227"
+"1554253_a_at"	"CERS3"	204219	"ENSG00000154227"
+"1557122_s_at"	"GABRB2"	2561	"ENSG00000145864"
+"1553039_a_at"	"ASB10"	136371	"ENSG00000146926"
+"1559094_at"	"FBXO9"	26268	"ENSG00000112146"
+"1559096_x_at"	"FBXO9"	26268	"ENSG00000112146"
+"1554835_a_at"	"B3GNT5"	84002	"ENSG00000176597"
+"1556134_a_at"	"B3GNT5"	84002	"ENSG00000176597"
+"1553696_s_at"	"ZNF569"	148266	"ENSG00000196437"
+"1558122_s_at"	"CSRNP3"	80034	"ENSG00000178662"
+"1555798_at"	""	NA	"ENSG00000180458"
+"1558699_a_at"	"HERPUD2"	64224	"ENSG00000122557"
+"1552628_a_at"	"HERPUD2"	64224	"ENSG00000122557"
+"1558595_at"	"KANSL1L-AS1"	NA	"ENSG00000229127"
+"1556750_at"	"MGAT1"	4245	"ENSG00000131446"
+"1555800_at"	"ZNF385B"	151126	"ENSG00000144331"
+"1555801_s_at"	"ZNF385B"	151126	"ENSG00000144331"
+"1553772_at"	"GK5"	256356	"ENSG00000175066"
+"1555083_at"	"RPL13AP17"	399670	"ENSG00000231322"
+"1558050_at"	"EIF2B5"	8893	"ENSG00000145191"
+"1558077_s_at"	"MDH1B"	130752	"ENSG00000138400"
+"1557883_a_at"	""	NA	"ENSG00000279633"
+"1557882_at"	""	NA	"ENSG00000279633"
+"1552335_at"	"CATSPER1"	117144	"ENSG00000175294"
+"1553257_at"	"GAL3ST3"	89792	"ENSG00000175229"
+"1558230_at"	"SF3B2"	10992	"ENSG00000087365"
+"1555009_a_at"	"SYNJ2"	8871	"ENSG00000078269"
+"1559481_at"	"CHIC1"	53344	"ENSG00000204116"
+"1557786_s_at"	"CHIC1"	53344	"ENSG00000204116"
+"1558423_at"	"LINC00265"	NA	"ENSG00000188185"
+"1558425_x_at"	"LINC00265"	NA	"ENSG00000188185"
+"1552763_at"	"TMEM67"	91147	"ENSG00000164953"
+"1552765_x_at"	"TMEM67"	91147	"ENSG00000164953"
+"1557522_x_at"	"BLCAP"	10904	"ENSG00000166619"
+"1556867_at"	"BLCAP"	10904	"ENSG00000166619"
+"1557521_a_at"	"BLCAP"	10904	"ENSG00000166619"
+"1553467_at"	"DCAF8L2"	347442	"ENSG00000189186"
+"1553723_at"	"ADGRG3"	222487	"ENSG00000182885"
+"1552481_s_at"	"MAN1A2"	10905	"ENSG00000198162"
+"1555040_at"	"LINC00612"	253128	"ENSG00000214851"
+"1552584_at"	"IL12RB1"	3594	"ENSG00000096996"
+"1557463_at"	"CPEB1-AS1"	283692	"ENSG00000259462"
+"1559000_at"	"DIP2C-AS1"	124900286	"ENSG00000180525"
+"1557548_at"	"DIP2C-AS1"	124900286	"ENSG00000180525"
+"1554235_at"	"CTNNA3"	29119	"ENSG00000183230"
+"1556715_at"	"PRPSAP1"	5635	"ENSG00000161542"
+"1554007_at"	"ZNF483"	158399	"ENSG00000173258"
+"1553668_at"	"LRCH3"	84859	"ENSG00000186001"
+"1553540_a_at"	"SLC29A2"	3177	"ENSG00000174669"
+"1553852_at"	"VPS13B"	157680	"ENSG00000132549"
+"1552315_at"	"GIMAP1"	170575	"ENSG00000213203"
+"1552316_a_at"	"GIMAP1"	170575	"ENSG00000213203"
+"1552318_at"	"GIMAP1"	170575	"ENSG00000213203"
+"1556536_at"	"KIAA2012-AS1"	NA	"ENSG00000222035"
+"1555165_a_at"	"PGPEP1"	54858	"ENSG00000130517"
+"1559502_s_at"	"LRRC25"	126364	"ENSG00000175489"
+"1554814_at"	"UBE2O"	63893	"ENSG00000175931"
+"1555912_at"	"ST7-AS1"	93653	"ENSG00000227199"
+"1553572_a_at"	"CYGB"	114757	"ENSG00000161544"
+"1556727_at"	"PRCD"	768206	"ENSG00000214140"
+"1553920_at"	"SHOC1"	158401	"ENSG00000165181"
+"1552585_s_at"	"GTF2A1L"	11036	"ENSG00000242441"
+"1555823_at"	"PACS2"	23241	"ENSG00000179364"
+"1555824_a_at"	"PACS2"	23241	"ENSG00000179364"
+"1553364_at"	"PNPLA1"	285848	"ENSG00000180316"
+"1554932_at"	"ZSWIM2"	151112	"ENSG00000163012"
+"1554880_at"	"MYRF-AS1"	26070	"ENSG00000124915"
+"1557047_at"	"YEATS2"	55689	"ENSG00000163872"
+"1559051_s_at"	"CGAS"	115004	"ENSG00000164430"
+"1558581_at"	"TEX22"	647310	"ENSG00000226174"
+"1552427_at"	"ZNF485"	220992	"ENSG00000198298"
+"1557881_at"	"ZNF32-AS3"	414201	"ENSG00000223910"
+"1557004_at"	"LINC02028"	285389	"ENSG00000230102"
+"1558345_a_at"	"ZNF487"	642819	"ENSG00000243660"
+"1553147_at"	"RANBP3L"	202151	"ENSG00000164188"
+"1559705_s_at"	"PHKA2"	5256	"ENSG00000044446"
+"1553681_a_at"	"PRF1"	5551	"ENSG00000180644"
+"1553127_a_at"	"RNF168"	165918	"ENSG00000163961"
+"1552684_a_at"	"SENP8"	123228	"ENSG00000166192"
+"1555385_at"	"B4GALNT1"	2583	"ENSG00000135454"
+"1553952_at"	"ZDHHC19"	131540	"ENSG00000163958"
+"1553993_s_at"	"MED25"	81857	"ENSG00000104973"
+"1552887_at"	"TBATA"	219793	"ENSG00000166220"
+"1558790_s_at"	"ZNF252P-AS1"	286103	"ENSG00000255559"
+"1557206_at"	"MEIOC"	284071	"ENSG00000180336"
+"1554367_at"	"CALHM1"	255022	"ENSG00000185933"
+"1554711_at"	"CALHM3"	119395	"ENSG00000183128"
+"1557389_at"	"SH3PXD2A-AS1"	100505839	"ENSG00000280693"
+"1555378_at"	"DBF4B"	80174	"ENSG00000161692"
+"1559239_s_at"	"ACAT1"	38	"ENSG00000075239"
+"1554947_at"	"ACAT1"	38	"ENSG00000075239"
+"1553917_at"	"PIKFYVE"	200576	"ENSG00000115020"
+"1557719_at"	"PIKFYVE"	200576	"ENSG00000115020"
+"1559715_at"	"LINC01968"	100507391	"ENSG00000237222"
+"1554450_s_at"	"MIER3"	166968	"ENSG00000155545"
+"1553336_a_at"	"MIER3"	166968	"ENSG00000155545"
+"1554449_at"	"MIER3"	166968	"ENSG00000155545"
+"1555821_a_at"	"AKT1S1"	84335	"ENSG00000204673"
+"1556921_at"	"PTPRT-AS1"	101927138	"ENSG00000227599"
+"1557136_at"	"ATP13A4"	84239	"ENSG00000127249"
+"1559571_a_at"	"ATP13A4"	84239	"ENSG00000127249"
+"1554423_a_at"	"FBXO7"	25793	"ENSG00000100225"
+"1558561_at"	"HM13"	81502	"ENSG00000101294"
+"1557148_at"	"HM13"	81502	"ENSG00000101294"
+"1556426_at"	""	NA	"ENSG00000261460"
+"1559429_a_at"	"SMCO1"	255798	"ENSG00000214097"
+"1557759_at"	"DMAC2"	55101	"ENSG00000105341"
+"1558179_at"	"ATP5MF"	9551	"ENSG00000241468"
+"1559331_x_at"	""	NA	"ENSG00000272144"
+"1554177_a_at"	"DMAC2L"	27109	"ENSG00000125375"
+"1553728_at"	"LRRC43"	254050	"ENSG00000158113"
+"1553730_x_at"	"LRRC43"	254050	"ENSG00000158113"
+"1558762_a_at"	"ZNF789"	285989	"ENSG00000198556"
+"1553447_at"	"AGBL1"	123624	"ENSG00000273540"
+"1554726_at"	"ZNF655"	79027	"ENSG00000197343"
+"1438_at"	"EPHB3"	2049	"ENSG00000182580"
+"1555758_a_at"	"CDKN3"	1033	"ENSG00000100526"
+"1559344_at"	"MAPK10-AS1"	101929064	"ENSG00000250062"
+"1554308_s_at"	"GABRA2"	2555	"ENSG00000151834"
+"1431_at"	"CYP2E1"	1571	"ENSG00000130649"
+"1555120_at"	"CD96"	10225	"ENSG00000153283"
+"1558041_a_at"	"MATCAP1"	653319	"ENSG00000196123"
+"1554675_a_at"	"SYCE1"	93426	"ENSG00000171772"
+"1554937_x_at"	"EXOC3L1"	283849	"ENSG00000179044"
+"1553907_a_at"	"EXD1"	161829	"ENSG00000178997"
+"1552879_a_at"	"ATOH7"	220202	"ENSG00000179774"
+"1552878_at"	"ATOH7"	220202	"ENSG00000179774"
+"1555175_a_at"	"PBLD"	64081	"ENSG00000108187"
+"1554154_at"	"GDAP2"	54834	"ENSG00000196505"
+"1552627_a_at"	"ARHGAP5"	394	"ENSG00000100852"
+"1557593_at"	"WDR3"	10885	"ENSG00000065183"
+"1557606_at"	""	101928002	"ENSG00000247131"
+"1556267_at"	"MYRFL"	196446	"ENSG00000166268"
+"1555724_s_at"	"TAGLN"	6876	"ENSG00000149591"
+"1552562_at"	"ZNF570"	148268	"ENSG00000171827"
+"1554280_a_at"	"C9orf43"	257169	"ENSG00000157653"
+"1554127_s_at"	"MSRB3"	253827	"ENSG00000174099"
+"1554126_at"	"MSRB3"	253827	"ENSG00000174099"
+"1559092_at"	""	NA	"ENSG00000262691"
+"1553296_at"	"ADGRG7"	84873	"ENSG00000144820"
+"1553590_at"	"FAM27E3"	100131997	"ENSG00000274026"
+"1558953_s_at"	"CEP164"	22897	"ENSG00000110274"
+"1552985_at"	"SLC30A8"	169026	"ENSG00000164756"
+"1554830_a_at"	"STEAP3"	55240	"ENSG00000115107"
+"1552327_at"	"ARMCX4"	100131755	"ENSG00000196440"
+"1557726_at"	"ARMCX4"	100131755	"ENSG00000196440"
+"1557532_at"	"NDUFA7"	4701	"ENSG00000267855"
+"1555185_x_at"	"TERF2"	7014	"ENSG00000132604"
+"1555183_at"	"TERF2"	7014	"ENSG00000132604"
+"1556084_at"	""	NA	"ENSG00000279827"
+"1555575_a_at"	"KDELR1"	10945	"ENSG00000105438"
+"1556552_a_at"	"ACSF3"	197322	"ENSG00000176715"
+"1554155_at"	"MCPH1"	79648	"ENSG00000147316"
+"1557347_at"	"MCPH1"	79648	"ENSG00000147316"
+"1554868_s_at"	"PCNP"	57092	"ENSG00000081154"
+"1553449_at"	"LINC00304"	283860	"ENSG00000180422"
+"1556411_s_at"	"KY"	339855	"ENSG00000174611"
+"1553736_at"	"ZFC3H1"	196441	"ENSG00000133858"
+"1553385_at"	"LINC01101"	84931	"ENSG00000280409"
+"1556129_at"	"ZNF778"	197320	"ENSG00000170100"
+"1556581_at"	"ZNF778"	197320	"ENSG00000170100"
+"1553740_a_at"	"IRAK2"	3656	"ENSG00000134070"
+"1552417_a_at"	"NEDD1"	121441	"ENSG00000139350"
+"1559651_at"	"CSNK1A1P1"	NA	"ENSG00000223518"
+"1557091_at"	"MAMSTR"	284358	"ENSG00000176909"
+"1552845_at"	"CLDN15"	24146	"ENSG00000106404"
+"1556925_at"	"SMC3"	9126	"ENSG00000108055"
+"1556645_s_at"	""	NA	"ENSG00000245025"
+"1554586_a_at"	"RHOBTB2"	23221	"ENSG00000008853"
+"1556355_x_at"	"RGL3"	57139	"ENSG00000205517"
+"1556354_s_at"	"RGL3"	57139	"ENSG00000205517"
+"1559532_at"	"ARIH2OS"	NA	"ENSG00000221883"
+"1558103_a_at"	"HDGFL3"	50810	"ENSG00000166503"
+"1558102_at"	"HDGFL3"	50810	"ENSG00000166503"
+"1552487_a_at"	"BNC1"	646	"ENSG00000169594"
+"1558839_at"	"MAPKBP1"	23005	"ENSG00000137802"
+"1558785_a_at"	""	127814295	"ENSG00000232995"
+"1559340_at"	"TTLL11"	158135	"ENSG00000175764"
+"1555602_a_at"	"ELAVL3"	1995	"ENSG00000196361"
+"1552648_a_at"	"TNFRSF10A"	8797	"ENSG00000104689"
+"1557576_at"	"PAQR3"	152559	"ENSG00000163291"
+"1554482_a_at"	"SAR1B"	51128	"ENSG00000152700"
+"1557597_at"	"LINC00624"	100289211	"ENSG00000278811"
+"1559559_at"	"SPATA31E1"	286234	"ENSG00000177992"
+"1555238_at"	"PTH2"	113091	"ENSG00000142538"
+"1556467_at"	""	NA	"ENSG00000241490"
+"1557536_at"	"WNK2"	65268	"ENSG00000165238"
+"1557498_a_at"	"LINC01487"	101928190	"ENSG00000241336"
+"1553106_at"	"C5orf24"	134553	"ENSG00000181904"
+"1553108_at"	"C5orf24"	134553	"ENSG00000181904"
+"1553015_a_at"	"RECQL4"	9401	"ENSG00000160957"
+"1556984_at"	""	NA	"ENSG00000250132"
+"1553181_at"	"DDX31"	64794	"ENSG00000125485"
+"1558088_a_at"	"UBE2I"	7329	"ENSG00000103275"
+"1559174_at"	"RAB6A"	5870	"ENSG00000175582"
+"1554468_s_at"	""	NA	"ENSG00000267426"
+"1552766_at"	"HS6ST2"	90161	"ENSG00000171004"
+"1552767_a_at"	"HS6ST2"	90161	"ENSG00000171004"
+"1557399_at"	"METTL16"	79066	"ENSG00000127804"
+"1557135_at"	"ZNF747-DT"	107984875	"ENSG00000235560"
+"1553811_at"	"FAM222A-AS1"	84983	"ENSG00000255650"
+"1557312_at"	"LINC01465"	NA	"ENSG00000221949"
+"1554769_at"	"ZNF785"	146540	"ENSG00000197162"
+"1554770_x_at"	"ZNF785"	146540	"ENSG00000197162"
+"1552541_at"	"TAGAP"	117289	"ENSG00000164691"
+"1552542_s_at"	"TAGAP"	117289	"ENSG00000164691"
+"1559397_s_at"	"PRR14"	78994	"ENSG00000156858"
+"1555107_a_at"	"UVSSA"	57654	"ENSG00000163945"
+"1557582_at"	"BIN3"	55909	"ENSG00000147439"
+"1554240_a_at"	"ITGAL"	3683	"ENSG00000005844"
+"1559623_at"	"C11orf54"	28970	"ENSG00000182919"
+"1554809_at"	""	389199	"ENSG00000228919"
+"1557227_s_at"	"TPR"	7175	"ENSG00000047410"
+"1555554_at"	"BPIFA4P"	317716	"ENSG00000290942"
+"1555411_a_at"	"CCNL1"	57018	"ENSG00000163660"
+"1555827_at"	"CCNL1"	57018	"ENSG00000163660"
+"1557513_a_at"	"KLC2"	64837	"ENSG00000174996"
+"1552364_s_at"	"MSI2"	124540	"ENSG00000153944"
+"1553405_a_at"	"CSMD1"	64478	"ENSG00000183117"
+"1553984_s_at"	"DTYMK"	1841	"ENSG00000168393"
+"1553129_at"	"SVEP1"	79987	"ENSG00000165124"
+"1554827_a_at"	"ADCY7"	113	"ENSG00000121281"
+"1554791_a_at"	"KANSL1L"	151050	"ENSG00000144445"
+"1559057_at"	"TRPC5"	7224	"ENSG00000072315"
+"1558329_at"	"TONSL"	4796	"ENSG00000160949"
+"1558330_x_at"	"TONSL"	4796	"ENSG00000160949"
+"1559288_at"	""	NA	"ENSG00000236451"
+"1557350_at"	"G3BP1"	10146	"ENSG00000145907"
+"1556900_at"	"APCDD1L-DT"	149773	"ENSG00000231290"
+"1556901_s_at"	"APCDD1L-DT"	149773	"ENSG00000231290"
+"1559433_at"	"APCDD1L-DT"	149773	"ENSG00000231290"
+"1553778_at"	"METTL27"	155368	"ENSG00000165171"
+"1552455_at"	"PRUNE2"	158471	"ENSG00000106772"
+"1558249_s_at"	"STX16"	8675	"ENSG00000124222"
+"1554161_at"	"SLC25A27"	9481	"ENSG00000153291"
+"1552774_a_at"	"SLC25A27"	9481	"ENSG00000153291"
+"1557218_s_at"	"FANCB"	2187	"ENSG00000181544"
+"1557217_a_at"	"FANCB"	2187	"ENSG00000181544"
+"1553244_at"	"FANCB"	2187	"ENSG00000181544"
+"1555705_a_at"	"CMTM3"	123920	"ENSG00000140931"
+"1554452_a_at"	"HILPDA"	29923	"ENSG00000135245"
+"1553655_at"	"CDC20B"	166979	"ENSG00000164287"
+"1555346_at"	"CDC20B"	166979	"ENSG00000164287"
+"1554677_s_at"	"CMTM4"	146223	"ENSG00000183723"
+"1557411_s_at"	"SLC25A43"	203427	"ENSG00000077713"
+"1552321_a_at"	"CCDC65"	85478	"ENSG00000139537"
+"1552320_a_at"	"CCDC65"	85478	"ENSG00000139537"
+"1554919_s_at"	"CFAP69"	79846	"ENSG00000105792"
+"1553713_a_at"	"RHEBL1"	121268	"ENSG00000167550"
+"1552730_at"	"DHH"	50846	"ENSG00000139549"
+"1556528_at"	"LINC00692"	285326	"ENSG00000230891"
+"1556529_a_at"	"LINC00692"	285326	"ENSG00000230891"
+"1555864_s_at"	"PDHA1"	5160	"ENSG00000131828"
+"1558766_at"	"ARF3"	377	"ENSG00000134287"
+"1556159_at"	""	NA	"ENSG00000278989"
+"1556160_a_at"	""	NA	"ENSG00000278989"
+"1557137_at"	"TMEM17"	200728	"ENSG00000186889"
+"1552893_at"	"CAMK2N2"	94032	"ENSG00000163888"
+"1552629_a_at"	"JMJD6"	23210	"ENSG00000070495"
+"1552613_s_at"	"CDC42SE2"	56990	"ENSG00000158985"
+"1552612_at"	"CDC42SE2"	56990	"ENSG00000158985"
+"1555926_a_at"	"CNTNAP3"	79937	"ENSG00000106714"
+"1555925_at"	"CNTNAP3"	79937	"ENSG00000106714"
+"1555929_s_at"	"CNTNAP3"	79937	"ENSG00000106714"
+"1555928_at"	"CNTNAP3"	79937	"ENSG00000106714"
+"1557132_at"	"WDR17"	116966	"ENSG00000150627"
+"1552430_at"	"WDR17"	116966	"ENSG00000150627"
+"1558943_x_at"	"ZNF765"	91661	"ENSG00000196417"
+"1558942_at"	"ZNF765"	91661	"ENSG00000196417"
+"1555199_at"	"GOSR1"	9527	"ENSG00000108587"
+"1552506_at"	"CRB2"	286204	"ENSG00000148204"
+"1553528_a_at"	"TAF5"	6877	"ENSG00000148835"
+"1553464_at"	""	286023	"ENSG00000183470"
+"1552712_a_at"	"NMNAT2"	23057	"ENSG00000157064"
+"1556029_s_at"	"NMNAT2"	23057	"ENSG00000157064"
+"1555866_a_at"	"HEXD"	284004	"ENSG00000169660"
+"1555920_at"	"CBX3"	11335	"ENSG00000122565"
+"1553871_at"	"CSNK1G2-AS1"	255193	"ENSG00000180846"
+"1558392_at"	"SYNE2"	23224	"ENSG00000054654"
+"1553504_at"	"MRGPRX4"	117196	"ENSG00000179817"
+"1557888_at"	"ZNF787"	126208	"ENSG00000142409"
+"1554053_at"	"SPTLC1"	10558	"ENSG00000090054"
+"1553219_a_at"	"AMMECR1"	9949	"ENSG00000101935"
+"1557599_a_at"	"SLC26A5-AS1"	101927870	"ENSG00000234715"
+"1557598_at"	"SLC26A5-AS1"	101927870	"ENSG00000234715"
+"1553759_at"	"MCM9"	254394	"ENSG00000111877"
+"1555820_a_at"	"MKS1"	54903	"ENSG00000011143"
+"1554629_at"	"EPHA7"	2045	"ENSG00000135333"
+"1556459_at"	"ARHGAP22-IT1"	NA	"ENSG00000248682"
+"1556460_a_at"	"ARHGAP22-IT1"	NA	"ENSG00000248682"
+"1556096_s_at"	"UNC13C"	440279	"ENSG00000137766"
+"1556095_at"	"UNC13C"	440279	"ENSG00000137766"
+"1552660_a_at"	"C5orf22"	55322	"ENSG00000082213"
+"1559102_at"	"AP1AR-DT"	NA	"ENSG00000260526"
+"1559103_s_at"	"AP1AR-DT"	NA	"ENSG00000260526"
+"1555754_s_at"	"ATN1"	1822	"ENSG00000111676"
+"1557642_at"	"IQCA1"	79781	"ENSG00000132321"
+"1555027_at"	"P4HA2"	8974	"ENSG00000072682"
+"1558703_at"	"SLC46A1"	113235	"ENSG00000076351"
+"1552278_a_at"	"SLC46A1"	113235	"ENSG00000076351"
+"1552279_a_at"	"SLC46A1"	113235	"ENSG00000076351"
+"1553430_a_at"	"EDARADD"	128178	"ENSG00000186197"
+"1557014_a_at"	"FAM201A"	NA	"ENSG00000204860"
+"1557541_at"	"FAM201A"	NA	"ENSG00000204860"
+"1555404_a_at"	"DUOXA1"	90527	"ENSG00000140254"
+"1554648_a_at"	"DUOXA1"	90527	"ENSG00000140254"
+"1553541_at"	"LMX1A"	4009	"ENSG00000162761"
+"1552961_at"	""	NA	"ENSG00000279347"
+"1554721_a_at"	"TAF2"	6873	"ENSG00000064313"
+"1553858_at"	"ZBTB3"	79842	"ENSG00000185670"
+"1557843_at"	"LINC01087"	101927994	"ENSG00000224559"
+"1556126_s_at"	"GPATCH2"	55105	"ENSG00000092978"
+"1553007_a_at"	"TENM1"	10178	"ENSG00000009694"
+"1558123_at"	"LINC00957"	NA	"ENSG00000235314"
+"1554311_a_at"	"SUPT6H"	6830	"ENSG00000109111"
+"1559194_a_at"	"CLEC4GP1"	NA	"ENSG00000268297"
+"1554448_at"	"JPX"	554203	"ENSG00000225470"
+"1554447_at"	"JPX"	554203	"ENSG00000225470"
+"1555217_at"	"UBE2W"	55284	"ENSG00000104343"
+"1557827_at"	"DNAJC9-AS1"	414245	"ENSG00000236756"
+"1554337_at"	"FARP2"	9855	"ENSG00000006607"
+"1559348_a_at"	"LINC01852"	107984773	"ENSG00000236914"
+"1553637_s_at"	"TMCO5A"	145942	"ENSG00000166069"
+"1553636_at"	"TMCO5A"	145942	"ENSG00000166069"
+"1557133_at"	"LINC00632"	286411	"ENSG00000203930"
+"1554569_a_at"	"CELF2"	10659	"ENSG00000048740"
+"1555630_a_at"	"RAB34"	83871	"ENSG00000109113"
+"1555725_a_at"	"RGS5"	8490	"ENSG00000143248"
+"1554342_s_at"	"HELQ"	113510	"ENSG00000163312"
+"1554341_a_at"	"HELQ"	113510	"ENSG00000163312"
+"1552399_a_at"	"BRF1"	2972	"ENSG00000185024"
+"1552646_at"	"IL11RA"	3590	"ENSG00000137070"
+"1552269_at"	"SPATA17"	128153	"ENSG00000162814"
+"1558623_at"	"RGPD4-AS1"	729121	"ENSG00000230651"
+"1558486_at"	"ZNF493"	284443	"ENSG00000196268"
+"1556730_at"	"PHLDA1-DT"	NA	"ENSG00000257839"
+"1554483_at"	"TMEM37"	140738	"ENSG00000171227"
+"1554485_s_at"	"TMEM37"	140738	"ENSG00000171227"
+"1556454_a_at"	""	100506274	"ENSG00000229727"
+"1556453_at"	""	100506274	"ENSG00000229727"
+"1556121_at"	"NAP1L1"	4673	"ENSG00000187109"
+"1554093_a_at"	"SNAPC5"	10302	"ENSG00000174446"
+"1554591_at"	"PCAT4"	118425	"ENSG00000251321"
+"1555536_at"	"ANTXR2"	118429	"ENSG00000163297"
+"1557172_x_at"	"NEK8"	284086	"ENSG00000160602"
+"1557170_at"	"NEK8"	284086	"ENSG00000160602"
+"1552976_at"	""	NA	"ENSG00000255847"
+"1555550_at"	"ZACN"	353174	"ENSG00000186919"
+"1554510_s_at"	"GHITM"	27069	"ENSG00000165678"
+"1555019_at"	"CDHR1"	92211	"ENSG00000148600"
+"1053_at"	"RFC2"	5982	"ENSG00000049541"
+"1554660_a_at"	"CNST"	163882	"ENSG00000162852"
+"1554661_s_at"	"CNST"	163882	"ENSG00000162852"
+"1559714_at"	"RGR"	5995	"ENSG00000148604"
+"1555219_at"	"RGR"	5995	"ENSG00000148604"
+"1559479_at"	"SEPSECS-AS1"	NA	"ENSG00000281501"
+"1553167_a_at"	"SEPSECS"	51091	"ENSG00000109618"
+"1555201_a_at"	"RMND1"	55005	"ENSG00000155906"
+"1554922_at"	"ZNF678"	339500	"ENSG00000181450"
+"1554842_at"	"SLC12A1"	6557	"ENSG00000074803"
+"1554988_at"	"SLC9C2"	284525	"ENSG00000162753"
+"1558324_a_at"	"TMEM72"	643236	"ENSG00000187783"
+"1558323_at"	"TMEM72"	643236	"ENSG00000187783"
+"1552775_at"	"GPRC6A"	222545	"ENSG00000173612"
+"1557837_a_at"	"ELMOD2"	255520	"ENSG00000179387"
+"1557836_at"	"ELMOD2"	255520	"ENSG00000179387"
+"1553928_at"	"ELMOD2"	255520	"ENSG00000179387"
+"1559163_at"	"INHBA-AS1"	285954	"ENSG00000224116"
+"1557850_at"	"INHBA-AS1"	285954	"ENSG00000224116"
+"1552673_at"	"RFX6"	222546	"ENSG00000185002"
+"1558977_at"	""	NA	"ENSG00000279631"
+"1558914_at"	"DESI2"	51029	"ENSG00000121644"
+"1558712_at"	"TMEM134"	80194	"ENSG00000172663"
+"1557402_at"	""	NA	"ENSG00000261839"
+"1557682_a_at"	"LINC01142"	284688	"ENSG00000224286"
+"1557330_at"	"CASC23"	103581031	"ENSG00000255420"
+"1554541_a_at"	"GPRIN2"	9721	"ENSG00000204175"
+"1557265_at"	""	NA	"ENSG00000276791"
+"1553704_x_at"	"ZNF791"	163049	"ENSG00000173875"
+"1553703_at"	"ZNF791"	163049	"ENSG00000173875"
+"1556321_a_at"	"TLNRD1"	59274	"ENSG00000140406"
+"1552439_s_at"	"MEGF11"	84465	"ENSG00000157890"
+"1553863_at"	"WDFY4"	57705	"ENSG00000128815"
+"1555973_at"	"DCPS"	28960	"ENSG00000110063"
+"1555974_a_at"	"DCPS"	28960	"ENSG00000110063"
+"1558507_at"	"C1orf53"	388722	"ENSG00000203724"
+"1558508_a_at"	"C1orf53"	388722	"ENSG00000203724"
+"1553600_at"	"TMIE"	259236	"ENSG00000181585"
+"1553601_a_at"	"TMIE"	259236	"ENSG00000181585"
+"1556017_at"	"NBEAL2"	23218	"ENSG00000160796"
+"1553077_at"	"SDR9C7"	121214	"ENSG00000170426"
+"1552440_at"	"GPR182"	11318	"ENSG00000166856"
+"1554747_a_at"	"SEPTIN2"	4735	"ENSG00000168385"
+"1559038_at"	"SEPTIN2"	4735	"ENSG00000168385"
+"1554190_s_at"	"PLEKHS1"	79949	"ENSG00000148735"
+"1555553_a_at"	"SLC22A7"	10864	"ENSG00000137204"
+"1552617_a_at"	"COP1"	64326	"ENSG00000143207"
+"1555881_s_at"	"LZTS2"	84445	"ENSG00000107816"
+"1559548_at"	"ACVR2B"	93	"ENSG00000114739"
+"1552312_a_at"	"MFAP3"	4238	"ENSG00000037749"
+"1555220_a_at"	"AKR1E2"	83592	"ENSG00000165568"
+"1558216_at"	"AFAP1-AS1"	84740	"ENSG00000272620"
+"1555855_at"	"AKR1C1"	1645	"ENSG00000187134"
+"1555856_s_at"	"AKR1C1"	1645	"ENSG00000187134"
+"1555888_at"	"UBR5-DT"	NA	"ENSG00000246263"
+"1556573_s_at"	"LINC03018"	286178	"ENSG00000254139"
+"1552503_at"	"FRAS1"	80144	"ENSG00000138759"
+"1554853_at"	"CYP2U1"	113612	"ENSG00000155016"
+"1554356_at"	"GINS4"	84296	"ENSG00000147536"
+"1558397_at"	"PECAM1"	5175	"ENSG00000261371"
+"1555590_a_at"	"GATA1"	2623	"ENSG00000102145"
+"1554316_at"	"PGLS"	25796	"ENSG00000130313"
+"1554167_a_at"	"GOLGA7"	51125	"ENSG00000147533"
+"1558612_a_at"	"ATP1A4"	480	"ENSG00000132681"
+"1552960_at"	"LRRC15"	131578	"ENSG00000172061"
+"1554168_a_at"	"SH3KBP1"	30011	"ENSG00000147010"
+"1555322_at"	"LINC02961"	100130249	"ENSG00000279261"
+"1557693_at"	"SMC5-DT"	NA	"ENSG00000268364"
+"1558212_at"	"VLDLR-AS1"	401491	"ENSG00000236404"
+"1555765_a_at"	"GNG4"	2786	"ENSG00000168243"
+"1555867_at"	"GNG4"	2786	"ENSG00000168243"
+"1559645_at"	"LINC00184"	100302691	"ENSG00000224939"
+"1559646_a_at"	"LINC00184"	100302691	"ENSG00000224939"
+"1553429_at"	""	NA	"ENSG00000282897"
+"1553919_at"	"LINC02907"	157927	"ENSG00000178243"
+"1559026_at"	"PPP1R26-AS1"	100506599	"ENSG00000225361"
+"1552295_a_at"	"SLC39A13"	91252	"ENSG00000165915"
+"1556490_a_at"	"LINC02583"	101805491	"ENSG00000187600"
+"1556489_at"	"LINC02583"	101805491	"ENSG00000187600"
+"1557372_at"	"ATP6V1E2"	90423	"ENSG00000250565"
+"1552286_at"	"ATP6V1E2"	90423	"ENSG00000250565"
+"1559390_a_at"	"SPATA45"	149643	"ENSG00000185523"
+"1556662_at"	"RHOQ-AS1"	100506142	"ENSG00000250116"
+"1556663_s_at"	"RHOQ-AS1"	100506142	"ENSG00000250116"
+"1554970_at"	"PDILT"	204474	"ENSG00000169340"
+"1552476_s_at"	"PLCD3"	113026	"ENSG00000161714"
+"1554514_at"	"ACSM5"	54988	"ENSG00000183549"
+"1559500_at"	"VPS8"	23355	"ENSG00000156931"
+"1557162_at"	"C16orf92"	146378	"ENSG00000167194"
+"1555058_a_at"	"LPGAT1"	9926	"ENSG00000123684"
+"1554438_at"	"KIAA1217"	56243	"ENSG00000120549"
+"1554833_at"	"MCTP2"	55784	"ENSG00000140563"
+"1554555_a_at"	"SETD6"	79918	"ENSG00000103037"
+"1557026_at"	""	101927787	"ENSG00000228044"
+"1554052_at"	"CNOT1"	23019	"ENSG00000125107"
+"1555375_at"	"GRIK2"	2898	"ENSG00000164418"
+"1554609_at"	"LIPT2-AS1"	100287896	"ENSG00000254837"
+"1555313_a_at"	"MCF2"	4168	"ENSG00000101977"
+"1559249_at"	"ATXN1"	6310	"ENSG00000124788"
+"1557303_at"	"NT5C"	30833	"ENSG00000125458"
+"1554530_at"	"VSTM2A"	222008	"ENSG00000170419"
+"1558522_at"	"PALS2"	51678	"ENSG00000105926"
+"1553274_a_at"	"SNRNP48"	154007	"ENSG00000168566"
+"1553524_at"	"DGKB"	1607	"ENSG00000136267"
+"1555764_s_at"	"TIMM10"	26519	"ENSG00000134809"
+"1552461_at"	"TENT5D"	169966	"ENSG00000174016"
+"1554910_at"	"PRKD3"	23683	"ENSG00000115825"
+"1552400_a_at"	"TMEM266"	123591	"ENSG00000169758"
+"1555784_s_at"	"IRAK1"	3654	"ENSG00000184216"
+"1555114_at"	"ATP6V0A2"	23545	"ENSG00000185344"
+"1553351_at"	"OTUD7A"	161725	"ENSG00000169918"
+"1552482_at"	"RAPH1"	65059	"ENSG00000173166"
+"1555817_s_at"	"THSD4"	79875	"ENSG00000187720"
+"1555816_at"	"THSD4"	79875	"ENSG00000187720"
+"1557954_at"	"TXLNG"	55787	"ENSG00000086712"
+"1553286_at"	"ZNF555"	148254	"ENSG00000186300"
+"1556188_a_at"	"ZNF555"	148254	"ENSG00000186300"
+"1556187_at"	"ZNF555"	148254	"ENSG00000186300"
+"1553180_at"	"ADAMTS19"	171019	"ENSG00000145808"
+"1553179_at"	"ADAMTS19"	171019	"ENSG00000145808"
+"1552322_at"	"PABIR3"	159091	"ENSG00000156500"
+"1552323_s_at"	"PABIR3"	159091	"ENSG00000156500"
+"1557617_at"	"DCTN1-AS1"	100189589	"ENSG00000237737"
+"1557455_s_at"	"MOSPD1"	56180	"ENSG00000101928"
+"1554345_a_at"	"GIN1"	54826	"ENSG00000145723"
+"1556773_at"	"PTHLH"	5744	"ENSG00000087494"
+"1555270_a_at"	"WFS1"	7466	"ENSG00000109501"
+"1557961_s_at"	"C8orf88"	100127983	"ENSG00000253250"
+"1558960_a_at"	"MFGE8"	4240	"ENSG00000140545"
+"1552826_at"	"SLC26A7"	115111	"ENSG00000147606"
+"1552827_s_at"	"SLC26A7"	115111	"ENSG00000147606"
+"1553944_at"	"MIA2"	4253	"ENSG00000150527"
+"1556607_at"	"EHD4"	30844	"ENSG00000103966"
+"1556608_a_at"	"EHD4"	30844	"ENSG00000103966"
+"1554287_at"	"TRIM4"	89122	"ENSG00000146833"
+"1557863_at"	"PLA2G4E-AS1"	101928388	"ENSG00000246740"
+"1557864_x_at"	"PLA2G4E-AS1"	101928388	"ENSG00000246740"
+"1552485_at"	"LACTB"	114294	"ENSG00000103642"
+"1552486_s_at"	"LACTB"	114294	"ENSG00000103642"
+"1554276_at"	"SART3"	9733	"ENSG00000075856"
+"1559497_at"	"LINC01583"	101929690	"ENSG00000259518"
+"1556158_at"	"SAXO2"	283726	"ENSG00000188659"
+"1557164_a_at"	"ERCC6L2"	375748	"ENSG00000182150"
+"1559589_a_at"	"ERCC6L2"	375748	"ENSG00000182150"
+"1553717_at"	"KCTD7"	154881	"ENSG00000243335"
+"1555569_a_at"	"KCTD7"	154881	"ENSG00000243335"
+"1554986_a_at"	"SNX19"	399979	"ENSG00000120451"
+"1554572_a_at"	"SUV39H2"	79723	"ENSG00000152455"
+"1554883_a_at"	"ERCC8"	1161	"ENSG00000049167"
+"1554882_at"	"ERCC8"	1161	"ENSG00000049167"
+"1554043_a_at"	"ZNF670"	93474	"ENSG00000277462"
+"1556452_a_at"	"LINC00928"	283761	"ENSG00000259218"
+"1554763_at"	"UBE2DNL"	100131816	"ENSG00000229547"
+"1558791_at"	"FIRRE"	286467	"ENSG00000213468"
+"1556903_at"	""	101928335	"ENSG00000236064"
+"1555766_a_at"	"GNG2"	54331	"ENSG00000186469"
+"1552890_a_at"	"CABP4"	57010	"ENSG00000175544"
+"1554202_x_at"	"CABP4"	57010	"ENSG00000175544"
+"1554201_at"	"CABP4"	57010	"ENSG00000175544"
+"1555884_at"	"PSMD6"	9861	"ENSG00000163636"
+"1553485_at"	"CCDC140"	151278	"ENSG00000163081"
+"1552739_s_at"	"ST7L"	54879	"ENSG00000007341"
+"1552738_a_at"	"ST7L"	54879	"ENSG00000007341"
+"1559648_at"	"LINC00892"	100128420	"ENSG00000233093"
+"1555728_a_at"	"MS4A4A"	51338	"ENSG00000110079"
+"1553574_at"	"IFNE"	338376	"ENSG00000184995"
+"1554414_a_at"	"OSGIN2"	734	"ENSG00000164823"
+"1553979_at"	"ZNF121"	7675	"ENSG00000197961"
+"1552580_at"	"TRIML2"	205860	"ENSG00000179046"
+"1553369_at"	"NIBAN3"	199786	"ENSG00000167483"
+"1554193_s_at"	"MANEA"	79694	"ENSG00000172469"
+"1555227_a_at"	"MANEA"	79694	"ENSG00000172469"
+"1554094_at"	"ENTPD5"	957	"ENSG00000187097"
+"1553995_a_at"	"NT5E"	4907	"ENSG00000135318"
+"1553994_at"	"NT5E"	4907	"ENSG00000135318"
+"1555730_a_at"	"CFL1"	1072	"ENSG00000172757"
+"1552623_at"	"HSH2D"	84941	"ENSG00000196684"
+"1552299_at"	"AK9"	221264	"ENSG00000155085"
+"1554181_at"	"SNX32"	254122	"ENSG00000172803"
+"1552889_a_at"	"EXOC3L2"	90332	"ENSG00000283632"
+"1557002_x_at"	"ESPNL"	339768	"ENSG00000144488"
+"1557000_at"	"ESPNL"	339768	"ENSG00000144488"
+"1552276_a_at"	"VPS18"	57617	"ENSG00000104142"
+"1556755_s_at"	"MIR3150BHG"	105375650	"ENSG00000245080"
+"1554408_a_at"	"TK1"	7083	"ENSG00000167900"
+"1552733_at"	"KLHDC1"	122773	"ENSG00000197776"
+"1555135_at"	"PALD1"	27143	"ENSG00000107719"
+"1558675_s_at"	"NEMF"	9147	"ENSG00000165525"
+"1557950_at"	"NEMF"	9147	"ENSG00000165525"
+"1553781_at"	"ZC3HAV1L"	92092	"ENSG00000146858"
+"1559045_at"	"KRBA2"	124751	"ENSG00000184619"
+"1558964_at"	"FAT3"	120114	"ENSG00000165323"
+"1554782_at"	"KLHL30-AS1"	NA	"ENSG00000279484"
+"1557938_s_at"	"CAVIN1"	284119	"ENSG00000177469"
+"1554433_a_at"	"ZNF146"	7705	"ENSG00000167635"
+"1559375_s_at"	""	NA	"ENSG00000267222"
+"1559374_at"	""	NA	"ENSG00000267222"
+"1554672_at"	"TTC26"	79989	"ENSG00000105948"
+"1553507_a_at"	"GPR6"	2830	"ENSG00000146360"
+"1554771_at"	""	NA	"ENSG00000261096"
+"1555191_a_at"	"FHL5"	9457	"ENSG00000112214"
+"1558787_a_at"	"TSPAN3"	10099	"ENSG00000140391"
+"1558786_at"	"TSPAN3"	10099	"ENSG00000140391"
+"1553133_at"	"C9orf72"	203228	"ENSG00000147894"
+"1553134_s_at"	"C9orf72"	203228	"ENSG00000147894"
+"1553793_a_at"	"BLTP1"	84162	"ENSG00000138688"
+"1553792_at"	"BLTP1"	84162	"ENSG00000138688"
+"1558934_a_at"	"GTF2H5"	404672	"ENSG00000272047"
+"1553890_s_at"	"NTN5"	126147	"ENSG00000142233"
+"1558247_s_at"	"NTN5"	126147	"ENSG00000142233"
+"1556092_s_at"	"HEMK1"	51409	"ENSG00000114735"
+"1559542_a_at"	""	NA	"ENSG00000253181"
+"1559131_a_at"	""	NA	"ENSG00000288046"
+"1555945_s_at"	"FAM120A"	23196	"ENSG00000048828"
+"1555908_at"	"FAM120A"	23196	"ENSG00000048828"
+"1555189_a_at"	"TAT"	6898	"ENSG00000198650"
+"1558365_at"	"PGK1"	5230	"ENSG00000102144"
+"1552661_at"	"PCDHGB7"	56099	"ENSG00000254122"
+"1552662_a_at"	"PCDHGB7"	56099	"ENSG00000254122"
+"1557060_at"	"OVAAL"	148756	"ENSG00000236719"
+"1559021_at"	"C3orf52"	79669	"ENSG00000114529"
+"1553625_at"	"FAM98B"	283742	"ENSG00000171262"
+"1554797_at"	"SYT16"	83851	"ENSG00000139973"
+"1552809_at"	"RFX4"	5992	"ENSG00000111783"
+"1557865_at"	"DIAPH1-AS1"	100505658	"ENSG00000246422"
+"1552524_at"	"ART5"	116969	"ENSG00000167311"
+"1557186_s_at"	"TPCN1"	53373	"ENSG00000186815"
+"1557185_at"	"TPCN1"	53373	"ENSG00000186815"
+"1552940_at"	"TEDDM1"	127670	"ENSG00000203730"
+"1557384_at"	"ZNF131"	7690	"ENSG00000172262"
+"1554003_at"	"ARHGEF28"	64283	"ENSG00000214944"
+"1554004_a_at"	"ARHGEF28"	64283	"ENSG00000214944"
+"1558565_at"	"AKNA"	80709	"ENSG00000106948"
+"1553458_at"	"VSTM4"	196740	"ENSG00000165633"
+"1558897_at"	"PLK5"	126520	"ENSG00000185988"
+"1557660_s_at"	"FAM170B-AS1"	100506733	"ENSG00000234736"
+"1554331_a_at"	"LRRC18"	474354	"ENSG00000165383"
+"1559585_at"	"DDX60L"	91351	"ENSG00000181381"
+"1556595_at"	""	NA	"ENSG00000260816"
+"1556035_s_at"	"ZNF207"	7756	"ENSG00000010244"
+"1555808_a_at"	"EXD2"	55218	"ENSG00000081177"
+"1554846_at"	"CCDC158"	339965	"ENSG00000163749"
+"1553322_s_at"	"TEAD1"	7003	"ENSG00000187079"
+"1558177_at"	"TMEM229B"	161145	"ENSG00000198133"
+"1554471_a_at"	"ANKRD13C"	81573	"ENSG00000118454"
+"1554849_at"	"TOR1A"	1861	"ENSG00000136827"
+"1552543_a_at"	"STON2"	85439	"ENSG00000140022"
+"1558648_at"	"CCDC32"	90416	"ENSG00000128891"
+"1559228_at"	"CLU"	1191	"ENSG00000120885"
+"1552680_a_at"	"KNL1"	57082	"ENSG00000137812"
+"1552682_a_at"	"KNL1"	57082	"ENSG00000137812"
+"1556345_s_at"	"MCCC2"	64087	"ENSG00000131844"
+"1558945_s_at"	"CACNA1A"	773	"ENSG00000141837"
+"1558944_at"	"CACNA1A"	773	"ENSG00000141837"
+"1557649_at"	"GALE"	2582	"ENSG00000117308"
+"1557651_x_at"	"GALE"	2582	"ENSG00000117308"
+"1557921_s_at"	"LINC02274"	100506498	"ENSG00000258586"
+"1555878_at"	"RPS24"	6229	"ENSG00000138326"
+"1554735_a_at"	"TRIM7"	81786	"ENSG00000146054"
+"1553553_at"	"TAS2R39"	259285	"ENSG00000236398"
+"1553556_at"	"TAS2R40"	259286	"ENSG00000221937"
+"1555253_at"	"COL25A1"	84570	"ENSG00000188517"
+"1556464_a_at"	""	NA	"ENSG00000261829"
+"1555962_at"	"B3GNT7"	93010	"ENSG00000156966"
+"1555963_x_at"	"B3GNT7"	93010	"ENSG00000156966"
+"1552965_a_at"	"B3GNT7"	93010	"ENSG00000156966"
+"1557680_at"	"SAMD15"	161394	"ENSG00000100583"
+"1557681_s_at"	"SAMD15"	161394	"ENSG00000100583"
+"1553785_at"	"RASGEF1B"	153020	"ENSG00000138670"
+"1554999_at"	"RASGEF1B"	153020	"ENSG00000138670"
+"1553770_a_at"	"SLAMF9"	89886	"ENSG00000162723"
+"1553769_at"	"SLAMF9"	89886	"ENSG00000162723"
+"1552329_at"	"RBBP6"	5930	"ENSG00000122257"
+"1552599_at"	"PXT1"	222659	"ENSG00000179165"
+"1559214_at"	"FBXO22"	26263	"ENSG00000167196"
+"1559009_at"	"GTF2A1-AS1"	NA	"ENSG00000273783"
+"1557165_s_at"	"KLHL18"	23276	"ENSG00000114648"
+"1554705_at"	"SCARA5"	286133	"ENSG00000168079"
+"1559097_at"	"LINC01550"	388011	"ENSG00000246223"
+"1557100_s_at"	"HECTD1"	25831	"ENSG00000092148"
+"1552932_at"	"NLRP6"	171389	"ENSG00000174885"
+"1558780_a_at"	""	NA	"ENSG00000270021"
+"1558779_at"	""	NA	"ENSG00000270021"
+"1554962_a_at"	"FGFR4"	2264	"ENSG00000160867"
+"1554961_at"	"FGFR4"	2264	"ENSG00000160867"
+"1554640_at"	"PALM2AKAP2"	445815	"ENSG00000157654"
+"1553502_a_at"	"PALM2AKAP2"	445815	"ENSG00000157654"
+"1556350_a_at"	""	NA	"ENSG00000263826"
+"1557879_at"	""	100129175	"ENSG00000224090"
+"1557783_at"	"MAP3K14-AS1"	NA	"ENSG00000267278"
+"1556969_at"	"CFAP65"	255101	"ENSG00000181378"
+"1553886_at"	"CFAP65"	255101	"ENSG00000181378"
+"1553804_a_at"	"SPATA32"	124783	"ENSG00000184361"
+"1553803_at"	"SPATA32"	124783	"ENSG00000184361"
+"1552798_a_at"	"TLR4"	7099	"ENSG00000136869"
+"1553265_at"	"SLC23A3"	151295	"ENSG00000213901"
+"1554537_at"	"TMEM126B"	55863	"ENSG00000171204"
+"1553228_at"	"CCDC89"	220388	"ENSG00000179071"
+"1557583_at"	"ST18"	9705	"ENSG00000147488"
+"1553583_a_at"	"THRSP"	7069	"ENSG00000151365"
+"1557158_s_at"	"KMT2C"	58508	"ENSG00000055609"
+"1553808_a_at"	"NKX2-3"	159296	"ENSG00000119919"
+"1552362_a_at"	"LEAP2"	116842	"ENSG00000164406"
+"1557685_at"	"ASAP1-IT2"	100507117	"ENSG00000280543"
+"1555591_at"	"PIF1"	80119	"ENSG00000140451"
+"1556648_a_at"	"LINC01553"	283025	"ENSG00000235931"
+"1553253_at"	"ASB16"	92591	"ENSG00000161664"
+"1559285_at"	""	NA	"ENSG00000258959"
+"1554050_at"	"SMPDL3B"	27293	"ENSG00000130768"
+"1554365_a_at"	"PPP2R5C"	5527	"ENSG00000078304"
+"1557718_at"	"PPP2R5C"	5527	"ENSG00000078304"
+"1554364_at"	"PPP2R5C"	5527	"ENSG00000078304"
+"1556936_at"	"GAS1RR"	100506834	"ENSG00000226237"
+"1552977_a_at"	"CNPY3"	10695	"ENSG00000137161"
+"1552964_at"	"CFAP46"	54777	"ENSG00000171811"
+"1555573_at"	"CFAP46"	54777	"ENSG00000171811"
+"1558941_at"	"ZNF704"	619279	"ENSG00000164684"
+"1557147_a_at"	"TSKU-AS1"	101928837	"ENSG00000255100"
+"1554097_a_at"	"MIR31HG"	554202	"ENSG00000171889"
+"1556148_s_at"	"PPM1L-DT"	NA	"ENSG00000260572"
+"1556147_at"	"PPM1L-DT"	NA	"ENSG00000260572"
+"1555923_a_at"	"MIR1915HG"	399726	"ENSG00000204682"
+"1555922_at"	"MIR1915HG"	399726	"ENSG00000204682"
+"1559003_a_at"	"CCDC163"	126661	"ENSG00000280670"
+"1557788_a_at"	"ERCC6L2-AS1"	100128782	"ENSG00000175611"
+"1554528_at"	"CFAP91"	89876	"ENSG00000183833"
+"1556488_s_at"	"CFAP91"	89876	"ENSG00000183833"
+"1553880_at"	"LINC02870"	NA	"ENSG00000180066"
+"1552833_at"	"B3GNT6"	192134	"ENSG00000198488"
+"1552834_at"	"B3GNT6"	192134	"ENSG00000198488"
+"1552908_at"	"GCSAML"	148823	"ENSG00000169224"
+"1555108_at"	"SLC10A7"	84068	"ENSG00000120519"
+"1553021_s_at"	"BICD2"	23299	"ENSG00000185963"
+"1557638_at"	""	101929748	"ENSG00000288062"
+"1553266_at"	"CNOT6L"	246175	"ENSG00000138767"
+"1557733_a_at"	"CHRM3-AS2"	100506915	"ENSG00000233355"
+"1554559_at"	"GPR62"	118442	"ENSG00000180929"
+"1559634_at"	"CHRM3"	1131	"ENSG00000133019"
+"1559633_a_at"	"CHRM3"	1131	"ENSG00000133019"
+"1553705_a_at"	"CHRM3"	1131	"ENSG00000133019"
+"1557848_at"	"LINC02401"	101929084	"ENSG00000257762"
+"1558756_at"	"C2CD3"	26005	"ENSG00000168014"
+"1555033_a_at"	"RGS12"	6002	"ENSG00000159788"
+"1555032_at"	"RGS12"	6002	"ENSG00000159788"
+"1555022_at"	"RGS12"	6002	"ENSG00000159788"
+"1553663_a_at"	"NPB"	256933	"ENSG00000183979"
+"1554302_s_at"	"LHFPL3-AS1"	645591	"ENSG00000226869"
+"1554301_at"	"LHFPL3-AS1"	645591	"ENSG00000226869"
+"1554034_a_at"	"FRMD4A"	55691	"ENSG00000151474"
+"1554033_at"	"FRMD4A"	55691	"ENSG00000151474"
+"1554785_at"	"CCDC82"	79780	"ENSG00000149231"
+"1556665_at"	"TTC6"	319089	"ENSG00000139865"
+"1556666_a_at"	"TTC6"	319089	"ENSG00000139865"
+"1559116_s_at"	"TMEM167B-DT"	NA	"ENSG00000273382"
+"1557790_at"	"JRKL"	8690	"ENSG00000183340"
+"1559060_a_at"	"FNIP1"	96459	"ENSG00000217128"
+"1555874_x_at"	"GLIDR"	389741	"ENSG00000278175"
+"1555872_a_at"	"GLIDR"	389741	"ENSG00000278175"
+"1556185_a_at"	"STEAP4"	79689	"ENSG00000127954"
+"1555024_at"	"ADAM22"	53616	"ENSG00000008277"
+"1554277_s_at"	"FANCM"	57697	"ENSG00000187790"
+"1554652_s_at"	"MAST4"	375449	"ENSG00000069020"
+"1558881_at"	"LINC00924"	145820	"ENSG00000259134"
+"1558758_s_at"	"SPRING1"	79794	"ENSG00000111412"
+"1558757_at"	"SPRING1"	79794	"ENSG00000111412"
+"1557405_at"	"LCIIAR"	100130111	"ENSG00000256802"
+"1557406_s_at"	"LCIIAR"	100130111	"ENSG00000256802"
+"1554550_at"	"CFAP97"	57587	"ENSG00000164323"
+"1555388_s_at"	"SNX25"	83891	"ENSG00000109762"
+"1559352_a_at"	"MILIP"	92659	"ENSG00000265688"
+"1557189_at"	"DNASE1"	1773	"ENSG00000213918"
+"1555195_at"	"FBXO36"	130888	"ENSG00000153832"
+"1559441_s_at"	""	651430	"ENSG00000279943"
+"1553214_a_at"	"CCDC7"	79741	"ENSG00000216937"
+"1559458_at"	"LTBR"	4055	"ENSG00000111321"
+"1552839_at"	"GARIN2"	161142	"ENSG00000172717"
+"1554730_at"	"MCTP1"	79772	"ENSG00000175471"
+"1557353_at"	""	NA	"ENSG00000289149"
+"1554891_at"	"LINC01580"	101927129	"ENSG00000258785"
+"1557395_at"	"IGFBP7-AS1"	255130	"ENSG00000245067"
+"1555735_a_at"	"BAP1"	8314	"ENSG00000163930"
+"1559237_a_at"	""	NA	"ENSG00000247970"
+"1556564_at"	"HHIPL1"	84439	"ENSG00000182218"
+"1554716_s_at"	"DRAIC"	145837	"ENSG00000245750"
+"1554715_at"	"DRAIC"	145837	"ENSG00000245750"
+"1553915_at"	"LINC01517"	283080	"ENSG00000232624"
+"1554159_a_at"	"ZMYND11"	10771	"ENSG00000015171"
+"1554158_at"	"ZMYND11"	10771	"ENSG00000015171"
+"1552987_a_at"	""	439933	"ENSG00000247193"
+"1555205_at"	""	NA	"ENSG00000264735"
+"1556839_s_at"	""	NA	"ENSG00000174171"
+"1556613_s_at"	"DPY19L4"	286148	"ENSG00000156162"
+"1556643_at"	"BISPR"	105221694	"ENSG00000282851"
+"1556024_at"	"EME2"	197342	"ENSG00000197774"
+"1552696_at"	"NIPA1"	123606	"ENSG00000170113"
+"1553341_at"	"UROC1"	131669	"ENSG00000159650"
+"1552598_at"	"KCNG4"	93107	"ENSG00000168418"
+"1559687_at"	"TMEM221"	100130519	"ENSG00000188051"
+"1556571_at"	"NDUFAF6"	137682	"ENSG00000156170"
+"1557226_a_at"	"ASPG"	374569	"ENSG00000166183"
+"1557225_at"	"ASPG"	374569	"ENSG00000166183"
+"1553840_a_at"	"CCDC149"	91050	"ENSG00000181982"
+"1553839_at"	"CCDC149"	91050	"ENSG00000181982"
+"1559052_s_at"	"PAK2"	5062	"ENSG00000180370"
+"1552752_a_at"	"CADM2"	253559	"ENSG00000175161"
+"1552754_a_at"	"CADM2"	253559	"ENSG00000175161"
+"1555544_a_at"	"CADM2"	253559	"ENSG00000175161"
+"1553589_a_at"	"PDZK1IP1"	10158	"ENSG00000162366"
+"1556484_at"	"LRRC52"	440699	"ENSG00000162763"
+"1552672_a_at"	"IGSF3"	3321	"ENSG00000143061"
+"1556163_a_at"	"IGSF3"	3321	"ENSG00000143061"
+"1553517_at"	"FERD3L"	222894	"ENSG00000146618"
+"1553357_at"	"FGF13"	2258	"ENSG00000129682"
+"1556768_at"	"LINC00930"	NA	"ENSG00000258647"
+"1556879_at"	""	NA	"ENSG00000260337"
+"1559528_at"	"PCGF3-AS1"	100129917	"ENSG00000249592"
+"1557523_at"	"ATP6AP1L"	NA	"ENSG00000205464"
+"1559259_at"	""	NA	"ENSG00000279203"
+"1556670_at"	"GTF3C2-AS1"	100505624	"ENSG00000234945"
+"1556671_s_at"	"GTF3C2-AS1"	100505624	"ENSG00000234945"
+"1558819_at"	"SLCO5A1-AS1"	121233925	"ENSG00000246528"
+"1554229_at"	"CREBRF"	153222	"ENSG00000164463"
+"1557081_at"	"RBM25"	58517	"ENSG00000119707"
+"1554096_a_at"	"RBM33"	155435	"ENSG00000184863"
+"1554095_at"	"RBM33"	155435	"ENSG00000184863"
+"1552666_a_at"	"LRRC7"	57554	"ENSG00000033122"
+"1553581_s_at"	"SREK1IP1"	285672	"ENSG00000153006"
+"1554642_at"	"RNF32"	140545	"ENSG00000105982"
+"1554732_at"	"LINC02363"	NA	"ENSG00000180712"
+"1554733_at"	"LINC02363"	NA	"ENSG00000180712"
+"1556997_a_at"	"LEPR"	3953	"ENSG00000116678"
+"1555495_a_at"	"CWC27"	10283	"ENSG00000153015"
+"1558841_at"	"CWC27"	10283	"ENSG00000153015"
+"1553929_at"	"ACER1"	125981	"ENSG00000167769"
+"1553685_s_at"	"SP1"	6667	"ENSG00000185591"
+"1555509_a_at"	"SLC25A41"	284427	"ENSG00000181240"
+"1553055_a_at"	"SLFN5"	162394	"ENSG00000166750"
+"1557078_at"	"SLFN5"	162394	"ENSG00000166750"
+"1554296_at"	"CYP19A1"	1588	"ENSG00000137869"
+"1558641_at"	"SPATA24"	202051	"ENSG00000170469"
+"1552386_at"	"GAPT"	202309	"ENSG00000175857"
+"1553927_at"	"C7orf33"	202865	"ENSG00000170279"
+"1552573_s_at"	"MIPOL1"	145282	"ENSG00000151338"
+"1552572_a_at"	"MIPOL1"	145282	"ENSG00000151338"
+"1555035_a_at"	"CLRN1"	7401	"ENSG00000163646"
+"1555034_at"	"CLRN1"	7401	"ENSG00000163646"
+"1554869_at"	"WDR37"	22884	"ENSG00000047056"
+"1554228_a_at"	"BAALC-AS2"	NA	"ENSG00000236939"
+"1555678_at"	"ST3GAL3"	6487	"ENSG00000126091"
+"1555703_at"	"ST3GAL3"	6487	"ENSG00000126091"
+"1555171_at"	"ST3GAL3"	6487	"ENSG00000126091"
+"1555181_a_at"	"ST3GAL3"	6487	"ENSG00000126091"
+"1552349_a_at"	"PRSS33"	260429	"ENSG00000103355"
+"1552348_at"	"PRSS33"	260429	"ENSG00000103355"
+"1559264_at"	"LACTB2-AS1"	286190	"ENSG00000246366"
+"1552587_at"	"CNBD1"	168975	"ENSG00000176571"
+"1552588_a_at"	"CNBD1"	168975	"ENSG00000176571"
+"1555098_a_at"	"CACNB2"	783	"ENSG00000165995"
+"1554021_a_at"	"ZNF12"	7559	"ENSG00000164631"
+"1552470_a_at"	"ABHD11"	83451	"ENSG00000106077"
+"1552800_at"	"ABHD11"	83451	"ENSG00000106077"
+"1558515_at"	"FTX"	100302692	"ENSG00000230590"
+"1554841_at"	"MTHFD2L"	441024	"ENSG00000163738"
+"1554295_x_at"	"TTBK2"	146057	"ENSG00000128881"
+"1557073_s_at"	"TTBK2"	146057	"ENSG00000128881"
+"1554294_s_at"	"TTBK2"	146057	"ENSG00000128881"
+"1554293_at"	"TTBK2"	146057	"ENSG00000128881"
+"1555790_a_at"	"TMEM192"	201931	"ENSG00000170088"
+"1554210_at"	"ZCCHC13"	389874	"ENSG00000187969"
+"1556554_at"	"TRIM50"	135892	"ENSG00000146755"
+"1553973_a_at"	"SPINK6"	404203	"ENSG00000178172"
+"1554635_a_at"	"NPAS3"	64067	"ENSG00000151322"
+"1554553_s_at"	"YIF1B"	90522	"ENSG00000167645"
+"1559584_a_at"	"C16orf54"	283897	"ENSG00000185905"
+"1559125_at"	"MVP-DT"	112268170	"ENSG00000238045"
+"1554410_a_at"	"RCC1L"	81554	"ENSG00000274523"
+"1554409_at"	"RCC1L"	81554	"ENSG00000274523"
+"1553122_s_at"	"RBAK"	57786	"ENSG00000146587"
+"1555371_at"	"ABCB5"	340273	"ENSG00000004846"
+"1557029_at"	"HMMR-AS1"	NA	"ENSG00000251018"
+"1552978_a_at"	"SCAMP1"	9522	"ENSG00000085365"
+"1556066_at"	"KDM6B"	23135	"ENSG00000132510"
+"1556067_a_at"	"KDM6B"	23135	"ENSG00000132510"
+"1553344_at"	"PCDH15"	65217	"ENSG00000150275"
+"1554314_at"	"C6orf141"	135398	"ENSG00000197261"
+"1552575_a_at"	"C6orf141"	135398	"ENSG00000197261"
+"1553660_at"	"HUS1B"	135458	"ENSG00000188996"
+"1553661_a_at"	"HUS1B"	135458	"ENSG00000188996"
+"1555659_a_at"	"TREML1"	340205	"ENSG00000161911"
+"1559326_at"	"DIO3OS"	64150	"ENSG00000258498"
+"1556427_s_at"	"LRRN4CL"	221091	"ENSG00000177363"
+"1556697_at"	"GPRIN3"	285513	"ENSG00000185477"
+"1556698_a_at"	"GPRIN3"	285513	"ENSG00000185477"
+"1553031_at"	"ADGRF4"	221393	"ENSG00000153294"
+"1555809_at"	"CRISPLD2"	83716	"ENSG00000103196"
+"1558304_s_at"	"TSEN54"	283989	"ENSG00000182173"
+"1553123_at"	"WDR62"	284403	"ENSG00000075702"
+"1553125_x_at"	"WDR62"	284403	"ENSG00000075702"
+"1552856_at"	"LINC00311"	NA	"ENSG00000179219"
+"1554440_at"	"KIAA0513"	9764	"ENSG00000135709"
+"1554006_a_at"	"LLGL2"	3993	"ENSG00000073350"
+"1556178_x_at"	"TAF8"	129685	"ENSG00000137413"
+"1556176_at"	"TAF8"	129685	"ENSG00000137413"
+"1556978_a_at"	"TAF8"	129685	"ENSG00000137413"
+"1552494_at"	"TAF8"	129685	"ENSG00000137413"
+"1555350_at"	"PPHLN1"	51535	"ENSG00000134283"
+"1555351_s_at"	"PPHLN1"	51535	"ENSG00000134283"
+"1557963_at"	"CDC42BPB"	9578	"ENSG00000198752"
+"1559370_at"	"DAB2"	1601	"ENSG00000153071"
+"1558463_s_at"	"CEROX1"	115804232	"ENSG00000260807"
+"1558136_s_at"	"TAF11"	6882	"ENSG00000064995"
+"1558135_at"	"TAF11"	6882	"ENSG00000064995"
+"1558893_a_at"	"DEUP1"	159989	"ENSG00000165325"
+"1554071_at"	"DEUP1"	159989	"ENSG00000165325"
+"1558894_a_at"	"DEUP1"	159989	"ENSG00000165325"
+"1554072_s_at"	"DEUP1"	159989	"ENSG00000165325"
+"1553293_at"	"MRGPRX3"	117195	"ENSG00000179826"
+"1555785_a_at"	"XRN1"	54464	"ENSG00000114127"
+"1558949_at"	"TNRC18"	84629	"ENSG00000182095"
+"1554911_at"	"ABCC11"	85320	"ENSG00000121270"
+"1557821_at"	"LINC00639"	283547	"ENSG00000259070"
+"1558685_a_at"	"ATP6AP1-DT"	158960	"ENSG00000197180"
+"1559222_at"	"SPDL1"	54908	"ENSG00000040275"
+"1555894_s_at"	"MTSS2"	92154	"ENSG00000132613"
+"1555661_at"	"OR8D1"	283159	"ENSG00000196341"
+"1555367_at"	"ZNF479"	90827	"ENSG00000185177"
+"1555212_at"	"OR8B8"	26493	"ENSG00000197125"
+"1552843_at"	"SLC26A1"	10861	"ENSG00000145217"
+"1554325_at"	"DOCK2"	1794	"ENSG00000134516"
+"1553229_at"	"ZNF572"	137209	"ENSG00000180938"
+"1556242_a_at"	""	100310756	"ENSG00000289161"
+"1553815_a_at"	"TCEANC"	170082	"ENSG00000176896"
+"1554312_at"	"RNF170"	81790	"ENSG00000120925"
+"1557222_at"	""	NA	"ENSG00000286912"
+"1559363_at"	"HISLA"	283587	"ENSG00000258867"
+"1555177_at"	"PRKAA1"	5562	"ENSG00000132356"
+"1558315_s_at"	"HOOK3"	84376	"ENSG00000168172"
+"1556927_at"	"KCNK10"	54207	"ENSG00000100433"
+"1553209_at"	"RNFT2"	84900	"ENSG00000135119"
+"1555377_at"	"OR4D2"	124538	"ENSG00000255713"
+"1559652_at"	""	NA	"ENSG00000271828"
+"1558919_a_at"	"SEC23IP"	11196	"ENSG00000107651"
+"1558683_a_at"	"HMGA2"	8091	"ENSG00000149948"
+"1558682_at"	"HMGA2"	8091	"ENSG00000149948"
+"1553036_at"	"ADGRF2"	222611	"ENSG00000164393"
+"1554348_s_at"	"CDKN2AIPNL"	91368	"ENSG00000237190"
+"1557672_s_at"	""	NA	"ENSG00000290529"
+"1555490_s_at"	"NHERF4"	79849	"ENSG00000172367"
+"1555334_s_at"	"SLC30A5"	64924	"ENSG00000145740"
+"1559503_a_at"	""	441666	"ENSG00000291065"
+"1552280_at"	"TIMD4"	91937	"ENSG00000145850"
+"1559510_at"	"LINC00630"	NA	"ENSG00000223546"
+"1553629_a_at"	"GARIN3"	153745	"ENSG00000170613"
+"1555585_a_at"	"GARIN3"	153745	"ENSG00000170613"
+"1558147_a_at"	"BAIAP2-DT"	440465	"ENSG00000226137"
+"1555037_a_at"	"IDH1"	3417	"ENSG00000138413"
+"1556145_a_at"	"AATK"	9625	"ENSG00000181409"
+"1553912_at"	"LINC00955"	NA	"ENSG00000216560"
+"1559713_at"	"LINC02600"	NA	"ENSG00000250986"
+"1557791_at"	""	NA	"ENSG00000260253"
+"1557802_at"	"FGGY"	55277	"ENSG00000172456"
+"1552884_at"	"NKX6-3"	157848	"ENSG00000165066"
+"1552885_a_at"	"NKX6-3"	157848	"ENSG00000165066"
+"1553207_at"	"ARL10"	285598	"ENSG00000175414"
+"1555257_a_at"	"MYO3B"	140469	"ENSG00000071909"
+"1552578_a_at"	"MYO3B"	140469	"ENSG00000071909"
+"1554526_at"	"OLFM3"	118427	"ENSG00000118733"
+"1554524_a_at"	"OLFM3"	118427	"ENSG00000118733"
+"1554067_at"	"KICS2"	144577	"ENSG00000174206"
+"1554068_s_at"	"KICS2"	144577	"ENSG00000174206"
+"1553438_at"	"NDUFV1-DT"	100505621	"ENSG00000184224"
+"1554758_a_at"	"CD99L2"	83692	"ENSG00000102181"
+"1552536_at"	"VTI1A"	143187	"ENSG00000151532"
+"1553099_at"	"TIGD1"	200765	"ENSG00000221944"
+"1552590_a_at"	"ABCC12"	94160	"ENSG00000140798"
+"1553410_a_at"	"ABCC12"	94160	"ENSG00000140798"
+"1554391_at"	""	NA	"ENSG00000277895"
+"1554621_at"	"DGKE"	8526	"ENSG00000153933"
+"1554623_x_at"	"DGKE"	8526	"ENSG00000153933"
+"1552770_s_at"	"ZNF563"	147837	"ENSG00000188868"
+"1554974_at"	"ACY3"	91703	"ENSG00000132744"
+"1553459_at"	"CCDC150"	284992	"ENSG00000144395"
+"1555726_at"	""	NA	"ENSG00000279386"
+"1552980_at"	"HAS3"	3038	"ENSG00000103044"
+"1557676_at"	""	NA	"ENSG00000279613"
+"1555439_at"	"GTF3C3"	9330	"ENSG00000119041"
+"1552863_a_at"	"CACNG6"	59285	"ENSG00000130433"
+"1554285_at"	"HAVCR2"	84868	"ENSG00000135077"
+"1555628_a_at"	"HAVCR2"	84868	"ENSG00000135077"
+"1555629_at"	"HAVCR2"	84868	"ENSG00000135077"
+"1554334_a_at"	"DNAJA4"	55466	"ENSG00000140403"
+"1554333_at"	"DNAJA4"	55466	"ENSG00000140403"
+"1553058_at"	"GIPC3"	126326	"ENSG00000179855"
+"1554015_a_at"	"CHD2"	1106	"ENSG00000173575"
+"1554014_at"	"CHD2"	1106	"ENSG00000173575"
+"1555380_at"	"ADAMTS4"	9507	"ENSG00000158859"
+"1554899_s_at"	"FCER1G"	2207	"ENSG00000158869"
+"1553028_at"	"GPR156"	165829	"ENSG00000175697"
+"1557996_at"	""	NA	"ENSG00000228434"
+"1554047_at"	"TXNDC9"	10190	"ENSG00000115514"
+"1559292_s_at"	"LINC00032"	158035	"ENSG00000291187"
+"1559293_x_at"	"LINC00032"	158035	"ENSG00000291187"
+"1559291_at"	"LINC00032"	158035	"ENSG00000291187"
+"1553708_at"	"LINC00525"	84847	"ENSG00000146666"
+"1556749_at"	""	NA	"ENSG00000258702"
+"1557636_a_at"	"C7orf57"	136288	"ENSG00000164746"
+"1553004_at"	"PKD1L1"	168507	"ENSG00000158683"
+"1559620_at"	"HDAC2-AS2"	101927768	"ENSG00000228624"
+"1556744_a_at"	"ZNF654"	55279	"ENSG00000175105"
+"1556743_at"	"ZNF654"	55279	"ENSG00000175105"
+"1553446_at"	"CCDC162P"	NA	"ENSG00000203799"
+"1553566_at"	"PIANP"	196500	"ENSG00000139200"
+"1555581_a_at"	"TP63"	8626	"ENSG00000073282"
+"1559507_at"	""	100130357	"ENSG00000215022"
+"1558754_at"	"ZNF763"	284390	"ENSG00000197054"
+"1558755_x_at"	"ZNF763"	284390	"ENSG00000197054"
+"1552769_at"	"ZNF625"	90589	"ENSG00000257591"
+"1552749_a_at"	"KLC3"	147700	"ENSG00000104892"
+"1557215_at"	"LINC00648"	100506433	"ENSG00000259129"
+"1555016_at"	"IL16"	3603	"ENSG00000172349"
+"1555910_at"	"PTCD2"	79810	"ENSG00000049883"
+"1554690_a_at"	"TACC1"	6867	"ENSG00000147526"
+"1553764_a_at"	"AJUBA"	84962	"ENSG00000129474"
+"1558549_s_at"	"VNN1"	8876	"ENSG00000112299"
+"1553801_a_at"	"DTD2"	112487	"ENSG00000129480"
+"1555819_s_at"	"SAMD14"	201191	"ENSG00000167100"
+"1552552_s_at"	"CLEC4C"	170482	"ENSG00000198178"
+"1555687_a_at"	"CLEC4C"	170482	"ENSG00000198178"
+"1552939_at"	"ANGPT1"	284	"ENSG00000154188"
+"1556499_s_at"	"COL1A1"	1277	"ENSG00000108821"
+"1558295_a_at"	"PPFIA2"	8499	"ENSG00000139220"
+"1559062_at"	"ZPR1"	8882	"ENSG00000109917"
+"1555337_a_at"	"ZNF317"	57693	"ENSG00000130803"
+"1554478_a_at"	"HEATR3"	55027	"ENSG00000155393"
+"1556037_s_at"	"HHIP"	64399	"ENSG00000164161"
+"1554588_a_at"	"TTC30B"	150737	"ENSG00000196659"
+"1552274_at"	"PXK"	54899	"ENSG00000168297"
+"1552275_s_at"	"PXK"	54899	"ENSG00000168297"
+"1554929_at"	"SIK3"	23387	"ENSG00000160584"
+"1558948_a_at"	"OIP5-AS1"	729082	"ENSG00000247556"
+"1557795_s_at"	"NTRK3"	4916	"ENSG00000140538"
+"1555043_at"	"LHFPL5"	222662	"ENSG00000197753"
+"1555639_a_at"	"RBM14"	10432	"ENSG00000239306"
+"1553102_a_at"	"CCDC69"	26112	"ENSG00000198624"
+"1554496_at"	"RAD51B"	5890	"ENSG00000182185"
+"1557223_at"	"RBPMS"	11030	"ENSG00000157110"
+"1552564_at"	"NUDT9P1"	NA	"ENSG00000234043"
+"1556200_a_at"	"C10orf90"	118611	"ENSG00000154493"
+"1559668_s_at"	"LINC02846"	NA	"ENSG00000260193"
+"1559667_at"	"LINC02846"	NA	"ENSG00000260193"
+"1554681_a_at"	"CCDC187"	399693	"ENSG00000260220"
+"1554683_a_at"	"CCDC187"	399693	"ENSG00000260220"
+"1552713_a_at"	"SLC4A1"	6521	"ENSG00000004939"
+"1552922_at"	"RIMS1"	22999	"ENSG00000079841"
+"1555255_a_at"	"PPIP5K1"	9677	"ENSG00000168781"
+"1553515_at"	"COPS9"	150678	"ENSG00000172428"
+"1557644_at"	"RUNDC3A-AS1"	NA	"ENSG00000267750"
+"1553086_at"	"C11orf40"	143501	"ENSG00000171987"
+"1555548_at"	"NDUFA10"	4705	"ENSG00000130414"
+"1554719_at"	"NDUFA10"	4705	"ENSG00000130414"
+"1559725_at"	"LINC01537"	101928555	"ENSG00000227467"
+"1552803_a_at"	"STMN1"	3925	"ENSG00000117632"
+"1557103_a_at"	"LMTK3"	114783	"ENSG00000142235"
+"1554077_a_at"	"TMEM53"	79639	"ENSG00000126106"
+"1554592_a_at"	"SLC1A6"	6511	"ENSG00000105143"
+"1554593_s_at"	"SLC1A6"	6511	"ENSG00000105143"
+"1552330_at"	"CENPBD1P"	92806	"ENSG00000177946"
+"1557042_at"	"KCNQ3"	3786	"ENSG00000184156"
+"1552296_at"	"BEST4"	266675	"ENSG00000142959"
+"1554876_a_at"	"S100Z"	170591	"ENSG00000171643"
+"1555330_at"	"GCLC"	2729	"ENSG00000001084"
+"1557871_at"	"LINC02052"	253573	"ENSG00000224406"
+"1557823_s_at"	"LINC02232"	401134	"ENSG00000250125"
+"1557822_at"	"LINC02232"	401134	"ENSG00000250125"
+"1552256_a_at"	"SCARB1"	949	"ENSG00000073060"
+"1556992_at"	"UBA6-DT"	NA	"ENSG00000248049"
+"1556736_at"	"SCOC-AS1"	100129858	"ENSG00000196951"
+"1553388_at"	"CALHM4"	221301	"ENSG00000164451"
+"1554084_a_at"	"NOL9"	79707	"ENSG00000162408"
+"1554082_a_at"	"NOL9"	79707	"ENSG00000162408"
+"1555417_a_at"	"TAS1R1"	80835	"ENSG00000173662"
+"1554636_at"	"ZNF154"	7710	"ENSG00000179909"
+"1553622_a_at"	"FSIP1"	161835	"ENSG00000150667"
+"1558517_s_at"	"LRRC8C"	84230	"ENSG00000171488"
+"1554069_at"	"EPHA8"	2046	"ENSG00000070886"
+"1558773_s_at"	"RANBP10"	57610	"ENSG00000141084"
+"1556348_at"	"HEATR1"	55127	"ENSG00000119285"
+"1558887_at"	"ZNF321P"	399669	"ENSG00000213801"
+"1558888_x_at"	"ZNF321P"	399669	"ENSG00000213801"
+"1553549_at"	"VN1R2"	317701	"ENSG00000196131"
+"1559679_a_at"	""	NA	"ENSG00000255933"
+"1553263_at"	"USH1G"	124590	"ENSG00000182040"
+"1558532_at"	"TPM1"	7168	"ENSG00000140416"
+"1558844_at"	"GVQW3"	100506127	"ENSG00000179240"
+"1555830_s_at"	"ESYT2"	57488	"ENSG00000117868"
+"1558511_s_at"	"ESYT2"	57488	"ENSG00000117868"
+"1555829_at"	"ESYT2"	57488	"ENSG00000117868"
+"1555998_at"	"ATP5PD"	10476	"ENSG00000167863"
+"1558541_at"	"TRMT9B"	57604	"ENSG00000250305"
+"1553906_s_at"	"FGD2"	221472	"ENSG00000146192"
+"1559091_s_at"	"FGD2"	221472	"ENSG00000146192"
+"1555366_at"	""	NA	"ENSG00000187229"
+"1558667_at"	""	NA	"ENSG00000280268"
+"1553159_at"	"DNAH11"	8701	"ENSG00000105877"
+"1555173_at"	"STX19"	415117	"ENSG00000178750"
+"1559205_s_at"	"LINC02273"	100996286	"ENSG00000245954"
+"1552685_a_at"	"GRHL1"	29841	"ENSG00000134317"
+"1552523_a_at"	"TIGD4"	201798	"ENSG00000169989"
+"1552522_at"	"TIGD4"	201798	"ENSG00000169989"
+"1555774_at"	"ZAR1"	326340	"ENSG00000182223"
+"1555775_a_at"	"ZAR1"	326340	"ENSG00000182223"
+"1554260_a_at"	"FRYL"	285527	"ENSG00000075539"
+"1554625_at"	"BCL6B"	255877	"ENSG00000161940"
+"1553137_s_at"	"KLF11"	8462	"ENSG00000172059"
+"1552807_a_at"	"SIGLEC10"	89790	"ENSG00000142512"
+"1552806_a_at"	"SIGLEC10"	89790	"ENSG00000142512"
+"1555252_a_at"	"TRPM3"	80036	"ENSG00000083067"
+"1554722_at"	"TRPM3"	80036	"ENSG00000083067"
+"1553327_a_at"	"BEND7"	222389	"ENSG00000165626"
+"1553684_at"	"PPIL6"	285755	"ENSG00000185250"
+"1557878_at"	"GALNT7-DT"	101930370	"ENSG00000245213"
+"1559474_at"	"SPEG"	10290	"ENSG00000072195"
+"1553887_at"	"SIGLECL1"	284369	"ENSG00000179213"
+"1553032_at"	"IL31RA"	133396	"ENSG00000164509"
+"1555431_a_at"	"IL31RA"	133396	"ENSG00000164509"
+"1555044_a_at"	"KLHL40"	131377	"ENSG00000157119"
+"1554037_a_at"	"ZBTB24"	9841	"ENSG00000112365"
+"1558404_at"	"LINC00622"	644242	"ENSG00000260941"
+"1553702_at"	"ZNF697"	90874	"ENSG00000143067"
+"1553397_at"	"CCDC13"	152206	"ENSG00000244607"
+"1554436_a_at"	"REG4"	83998	"ENSG00000134193"
+"1557652_a_at"	"CCDC13-AS1"	100874114	"ENSG00000173811"
+"1553746_a_at"	"OTOGL"	283310	"ENSG00000165899"
+"1552997_a_at"	"IQCF1"	132141	"ENSG00000173389"
+"1554708_s_at"	"SPATA6L"	55064	"ENSG00000106686"
+"1554707_at"	"SPATA6L"	55064	"ENSG00000106686"
+"1555079_at"	"SPATA6L"	55064	"ENSG00000106686"
+"1553175_s_at"	"PDE5A"	8654	"ENSG00000138735"
+"1555892_s_at"	"CUTALP"	253039	"ENSG00000226752"
+"1553962_s_at"	"RHOB"	388	"ENSG00000143878"
+"1557825_at"	"MSRA-DT"	NA	"ENSG00000260093"
+"1557570_a_at"	"LINC01305"	285084	"ENSG00000231453"
+"1556136_at"	"MYLK4"	340156	"ENSG00000145949"
+"1556375_at"	"DNAJC21"	134218	"ENSG00000168724"
+"1555595_at"	"SCRN3"	79634	"ENSG00000144306"
+"1557436_at"	"XKR6"	286046	"ENSG00000171044"
+"1556907_at"	"ZNF474"	133923	"ENSG00000164185"
+"1558305_at"	"GIGYF2"	26058	"ENSG00000204120"
+"1553689_s_at"	"METTL6"	131965	"ENSG00000206562"
+"1553688_at"	"METTL6"	131965	"ENSG00000206562"
+"1557991_at"	"METTL6"	131965	"ENSG00000206562"
+"1555789_s_at"	"PHF23"	79142	"ENSG00000040633"
+"1554923_at"	"ANKS6"	203286	"ENSG00000165138"
+"1554678_s_at"	"HNRNPDL"	9987	"ENSG00000152795"
+"1554542_at"	"SLC25A48"	153328	"ENSG00000145832"
+"1559018_at"	"PTPRE"	5791	"ENSG00000132334"
+"1556194_a_at"	"HSPA4L"	22824	"ENSG00000164070"
+"1557838_at"	"FAM135B"	51059	"ENSG00000147724"
+"1552596_at"	"GAS2L2"	246176	"ENSG00000270765"
+"1559443_s_at"	"IL21R-AS1"	283888	"ENSG00000259954"
+"1553285_s_at"	"RAD9B"	144715	"ENSG00000151164"
+"1559526_at"	""	101930421	"ENSG00000225140"
+"1555028_at"	"BRD3"	8019	"ENSG00000169925"
+"1557734_s_at"	""	100130548	"ENSG00000235138"
+"1558821_s_at"	""	NA	"ENSG00000289405"
+"1556864_at"	"TCTN1"	79600	"ENSG00000204852"
+"1552271_at"	"PRR22"	163154	"ENSG00000212123"
+"1552272_a_at"	"PRR22"	163154	"ENSG00000212123"
+"1559129_a_at"	"LINC02603"	158257	"ENSG00000230262"
+"1555958_at"	"CRTAC1"	55118	"ENSG00000095713"
+"1555681_at"	""	NA	"ENSG00000279604"
+"1556970_at"	"SLC25A28-DT"	NA	"ENSG00000260475"
+"1556971_a_at"	"SLC25A28-DT"	NA	"ENSG00000260475"
+"1553552_at"	"TAAR8"	83551	"ENSG00000146385"
+"1553066_at"	"TAAR9"	134860	"ENSG00000237110"
+"1554038_at"	"LARP1B"	55132	"ENSG00000138709"
+"1554662_at"	"SEPTIN4"	5414	"ENSG00000108387"
+"1557174_a_at"	"IRAK1BP1"	134728	"ENSG00000146243"
+"1557535_at"	""	NA	"ENSG00000279384"
+"1553693_s_at"	"CBR4"	84869	"ENSG00000145439"
+"1554397_s_at"	"UEVLD"	55293	"ENSG00000151116"
+"1554396_at"	"UEVLD"	55293	"ENSG00000151116"
+"1555539_at"	"SDS"	10993	"ENSG00000135094"
+"1552862_at"	"RUSC1-AS1"	284618	"ENSG00000225855"
+"1557062_at"	"ZSCAN16-AS1"	100129195	"ENSG00000269293"
+"1559117_at"	""	NA	"ENSG00000279814"
+"1556465_at"	""	NA	"ENSG00000268659"
+"1555520_at"	"PTCH1"	5727	"ENSG00000185920"
+"1553715_s_at"	"MCRIP2"	84331	"ENSG00000172366"
+"1554027_a_at"	"SLC4A4"	8671	"ENSG00000080493"
+"1557565_a_at"	"ALKBH3-AS1"	100507300	"ENSG00000244926"
+"1557564_at"	"ALKBH3-AS1"	100507300	"ENSG00000244926"
+"1553030_a_at"	"SUOX"	6821	"ENSG00000139531"
+"1557611_at"	"TTLL4"	9654	"ENSG00000135912"
+"1553363_at"	"LINC01600"	154386	"ENSG00000164385"
+"1554288_at"	"FHIP2A"	57700	"ENSG00000151553"
+"1559064_at"	"NUP153-AS1"	105374952	"ENSG00000272269"
+"1559287_at"	""	NA	"ENSG00000272463"
+"1553428_at"	"LY86-AS1"	285780	"ENSG00000216863"
+"1553262_a_at"	"UTS2R"	2837	"ENSG00000181408"
+"1555095_at"	"LINC01558"	26238	"ENSG00000146521"
+"1552674_at"	"DIRC1"	NA	"ENSG00000174325"
+"1556891_at"	"SORCS1"	114815	"ENSG00000108018"
+"1553390_at"	"ATG9B"	285973	"ENSG00000181652"
+"1557359_at"	"MROCKI"	285758	"ENSG00000227502"
+"1552868_at"	"CIRBP-AS1"	148046	"ENSG00000267493"
+"1554001_at"	"TRIM37"	4591	"ENSG00000108395"
+"1556257_at"	""	NA	"ENSG00000291203"
+"1553425_at"	"CFAP57"	149465	"ENSG00000243710"
+"1555609_a_at"	"ZMAT3"	64393	"ENSG00000172667"
+"1555606_a_at"	"GDPD1"	284161	"ENSG00000153982"
+"1556420_s_at"	"YPEL2"	388403	"ENSG00000175155"
+"1556679_at"	""	NA	"ENSG00000278863"
+"1556832_at"	""	101927314	"ENSG00000271860"
+"1558661_at"	"HULC"	100506207	"ENSG00000285219"
+"1552291_at"	"PIGX"	54965	"ENSG00000163964"
+"1558426_x_at"	"ORAI2"	80228	"ENSG00000160991"
+"1553172_at"	"ZNF777"	27153	"ENSG00000196453"
+"1557003_at"	"TTC23L"	153657	"ENSG00000205838"
+"1552281_at"	"SLC39A5"	283375	"ENSG00000139540"
+"1552740_at"	"C2orf15"	150590	"ENSG00000273045"
+"1554029_a_at"	"SKIC3"	9652	"ENSG00000198677"
+"1556676_a_at"	""	NA	"ENSG00000260273"
+"1554862_at"	"CMAHP"	NA	"ENSG00000168405"
+"1557898_at"	"CMAHP"	NA	"ENSG00000168405"
+"1554906_a_at"	"MPHOSPH6"	10200	"ENSG00000135698"
+"1555868_at"	"LINC02941"	100507477	"ENSG00000236013"
+"1555869_a_at"	"LINC02941"	100507477	"ENSG00000236013"
+"1553514_a_at"	"VNN3P"	55350	"ENSG00000093134"
+"1553513_at"	"VNN3P"	55350	"ENSG00000093134"
+"1558795_at"	"ADGRB3-DT"	NA	"ENSG00000230910"
+"1558796_a_at"	"ADGRB3-DT"	NA	"ENSG00000230910"
+"1557993_at"	"PLCG2"	5336	"ENSG00000197943"
+"1559263_s_at"	"ZC3H12D"	340152	"ENSG00000178199"
+"1558199_at"	"FN1"	2335	"ENSG00000115414"
+"1555833_a_at"	"IRGQ"	126298	"ENSG00000167378"
+"1558445_at"	""	NA	"ENSG00000289045"
+"1558768_at"	"DNAH1"	25981	"ENSG00000114841"
+"1558769_s_at"	"DNAH1"	25981	"ENSG00000114841"
+"1553325_at"	"POU5F2"	134187	"ENSG00000248483"
+"1556956_at"	"KCP"	375616	"ENSG00000135253"
+"1557621_at"	"KCP"	375616	"ENSG00000135253"
+"1557798_at"	"CNPY2"	10330	"ENSG00000257727"
+"1555209_at"	"USP6NL-AS1"	107984208	"ENSG00000271360"
+"1557208_at"	"PROSER2-AS1"	219731	"ENSG00000225778"
+"1553427_at"	"ADAMTS15"	170689	"ENSG00000166106"
+"1555880_at"	"ERVFRD-1"	405754	"ENSG00000244476"
+"1555651_at"	"OR10A5"	144124	"ENSG00000166363"
+"1556675_s_at"	"LINC01016"	100507584	"ENSG00000249346"
+"1557276_at"	"LINC01016"	100507584	"ENSG00000249346"
+"1557277_a_at"	"LINC01016"	100507584	"ENSG00000249346"
+"1555501_s_at"	"RSRC1"	51319	"ENSG00000174891"
+"1553320_s_at"	"CDC14C"	168448	"ENSG00000218305"
+"1558281_a_at"	"TMEM184A"	202915	"ENSG00000164855"
+"1558402_at"	"TERLR1"	101928857	"ENSG00000249201"
+"1552301_a_at"	"CORO6"	84940	"ENSG00000167549"
+"1555271_a_at"	"TERT"	7015	"ENSG00000164362"
+"1553389_at"	"NPHP3"	27031	"ENSG00000113971"
+"1554016_a_at"	"USB1"	79650	"ENSG00000103005"
+"1554119_at"	"USB1"	79650	"ENSG00000103005"
+"1553288_a_at"	"NYAP1"	222950	"ENSG00000166924"
+"1554618_at"	"AGFG2"	3268	"ENSG00000106351"
+"1556144_at"	"DHX30"	22907	"ENSG00000132153"
+"1558369_at"	"MPHOSPH9"	10198	"ENSG00000051825"
+"1555772_a_at"	"CDC25A"	993	"ENSG00000164045"
+"1559403_at"	"HMGN3-AS1"	100288198	"ENSG00000270362"
+"1559404_a_at"	"HMGN3-AS1"	100288198	"ENSG00000270362"
+"1553413_at"	"LCAL1"	80078	"ENSG00000286042"
+"1555051_at"	"C10orf53"	282966	"ENSG00000178645"
+"1554133_at"	"RUFY2"	55680	"ENSG00000204130"
+"1558537_x_at"	"ZNF844"	284391	"ENSG00000223547"
+"1553943_at"	""	NA	"ENSG00000279672"
+"1553478_at"	"KIRREL3-AS3"	283165	"ENSG00000218109"
+"1555020_a_at"	"ARHGAP20"	57569	"ENSG00000137727"
+"1554501_at"	"TSC22D4"	81628	"ENSG00000166925"
+"1552937_s_at"	"ATRIP"	84126	"ENSG00000164053"
+"1555851_s_at"	"SELENOW"	6415	"ENSG00000178980"
+"1554627_a_at"	"ASCC1"	51008	"ENSG00000138303"
+"1558140_at"	"PLXNA1"	5361	"ENSG00000114554"
+"1552787_at"	"HELB"	92797	"ENSG00000127311"
+"1552788_a_at"	"HELB"	92797	"ENSG00000127311"
+"1558322_a_at"	"PAQR9"	344838	"ENSG00000188582"
+"1554781_at"	""	153163	"ENSG00000250328"
+"1559321_at"	"LINC02997"	101928858	"ENSG00000249364"
+"1554628_at"	"ZNF57"	126295	"ENSG00000171970"
+"1558217_at"	"SLFN13"	146857	"ENSG00000154760"
+"1553423_a_at"	"SLFN13"	146857	"ENSG00000154760"
+"1557260_a_at"	"ZNF382"	84911	"ENSG00000161298"
+"1559033_at"	"LINC01018"	NA	"ENSG00000250056"
+"1557729_at"	"GRK5"	2869	"ENSG00000198873"
+"1559336_at"	""	101928505	"ENSG00000287709"
+"1557466_at"	"IL6ST-DT"	441072	"ENSG00000227908"
+"1556204_a_at"	"ZNF814"	730051	"ENSG00000204514"
+"1557248_at"	"ZNF814"	730051	"ENSG00000204514"
+"1553426_at"	"C5orf64"	285668	"ENSG00000178722"
+"1558924_s_at"	"CLIP1"	6249	"ENSG00000130779"
+"1557512_at"	"CLIP1"	6249	"ENSG00000130779"
+"1558167_a_at"	""	85001	"ENSG00000246731"
+"1558166_at"	""	85001	"ENSG00000246731"
+"1556696_s_at"	"NR2F1-AS1"	441094	"ENSG00000237187"
+"1556695_a_at"	"NR2F1-AS1"	441094	"ENSG00000237187"
+"1559650_at"	"JAZF1-AS1"	NA	"ENSG00000234336"
+"1559616_x_at"	"ZNF626"	199777	"ENSG00000188171"
+"1552643_at"	"ZNF626"	199777	"ENSG00000188171"
+"1553314_a_at"	"KIF19"	124602	"ENSG00000196169"
+"1553885_x_at"	"ZNF99"	7652	"ENSG00000213973"
+"1553883_at"	"ZNF99"	7652	"ENSG00000213973"
+"1558724_at"	""	NA	"ENSG00000260664"
+"1554327_a_at"	"CANT1"	124583	"ENSG00000171302"
+"1557027_at"	""	NA	"ENSG00000261327"
+"1553611_s_at"	"KLHL35"	283212	"ENSG00000149243"
+"1553191_at"	"DST"	667	"ENSG00000151914"
+"1552569_a_at"	"RTP3"	83597	"ENSG00000163825"
+"1552568_at"	"RTP3"	83597	"ENSG00000163825"
+"1558604_a_at"	"SSBP2"	23635	"ENSG00000145687"
+"1553694_a_at"	"PIK3C2A"	5286	"ENSG00000011405"
+"1555068_at"	"WNK1"	65125	"ENSG00000060237"
+"1553168_at"	"GRIK5"	2901	"ENSG00000105737"
+"1553255_at"	"ERVV-1"	147664	"ENSG00000269526"
+"1556154_a_at"	"SNAI3-AS1"	197187	"ENSG00000260630"
+"1553525_at"	"NLRP13"	126204	"ENSG00000173572"
+"1554520_at"	"ZNF778-DT"	NA	"ENSG00000259877"
+"1553923_at"	"SLC22A24"	283238	"ENSG00000197658"
+"1554153_a_at"	"PHF21A"	51317	"ENSG00000135365"
+"1554704_at"	"ATP8B3"	148229	"ENSG00000130270"
+"1556533_at"	"LINC00868"	283994	"ENSG00000267535"
+"1556060_a_at"	"ZNF451"	26036	"ENSG00000112200"
+"1554712_a_at"	"GLYATL2"	219970	"ENSG00000156689"
+"1558076_at"	"SLF1"	84250	"ENSG00000133302"
+"1559382_at"	"SMIM7"	79086	"ENSG00000214046"
+"1559171_at"	"LINC02210"	147081	"ENSG00000204650"
+"1555985_at"	"CHCT1"	124773	"ENSG00000141371"
+"1557228_at"	"EHBP1L1"	254102	"ENSG00000173442"
+"1553868_a_at"	"KIAA0825"	285600	"ENSG00000185261"
+"1559591_s_at"	"CHDH"	55349	"ENSG00000016391"
+"1559590_at"	"CHDH"	55349	"ENSG00000016391"
+"1555527_at"	"COL9A1"	1297	"ENSG00000112280"
+"1556709_a_at"	"LINC02175"	283887	"ENSG00000262155"
+"1558984_at"	"MAP3K11"	4296	"ENSG00000173327"
+"1558007_s_at"	"LCMT1-AS2"	100506655	"ENSG00000260034"
+"1559702_at"	"ZKSCAN2-DT"	NA	"ENSG00000274925"
+"1552424_at"	"KLHL10"	317719	"ENSG00000161594"
+"1552425_a_at"	"KLHL10"	317719	"ENSG00000161594"
+"1556945_a_at"	""	NA	"ENSG00000236656"
+"1556944_at"	""	NA	"ENSG00000236656"
+"1558237_x_at"	"DR1"	1810	"ENSG00000117505"
+"1558236_at"	"DR1"	1810	"ENSG00000117505"
+"1558400_x_at"	"ANKRD24"	170961	"ENSG00000089847"
+"1558398_at"	"ANKRD24"	170961	"ENSG00000089847"
+"1557943_at"	"CNP"	1267	"ENSG00000173786"
+"1556053_at"	"DNAJC7"	7266	"ENSG00000168259"
+"1555269_a_at"	"ANO1"	55107	"ENSG00000131620"
+"1559221_at"	"LINC01013"	NA	"ENSG00000228495"
+"1553338_at"	"SDE2"	163859	"ENSG00000143751"
+"1552689_at"	"CASKIN1"	57524	"ENSG00000167971"
+"1558652_at"	"KANSL3"	55683	"ENSG00000114982"
+"1556742_at"	""	728411	"ENSG00000291102"
+"1558937_s_at"	""	728411	"ENSG00000291102"
+"1558640_a_at"	""	728411	"ENSG00000291102"
+"1554663_a_at"	"NUMA1"	4926	"ENSG00000137497"
+"1552558_a_at"	"RAI1"	10743	"ENSG00000108557"
+"1553062_at"	"MOGAT1"	116255	"ENSG00000124003"
+"1553990_at"	"BRICD5"	283870	"ENSG00000182685"
+"1557712_x_at"	"SNRPCP11"	NA	"ENSG00000241346"
+"1558899_s_at"	"RGMB-AS1"	503569	"ENSG00000246763"
+"1553594_a_at"	"INSL3"	3640	"ENSG00000248099"
+"1552526_at"	"GARIN6"	196472	"ENSG00000180219"
+"1555594_a_at"	"MBNL1"	4154	"ENSG00000152601"
+"1558111_at"	"MBNL1"	4154	"ENSG00000152601"
+"1557948_at"	"PHLDB3"	653583	"ENSG00000176531"
+"1557869_at"	""	NA	"ENSG00000280157"
+"1558896_at"	"IBA57"	200205	"ENSG00000181873"
+"1557363_a_at"	""	NA	"ENSG00000286340"
+"1557362_at"	""	NA	"ENSG00000286340"
+"1557119_a_at"	"ZNF575"	284346	"ENSG00000176472"
+"1553826_a_at"	"PRR35"	146325	"ENSG00000161992"
+"1553422_s_at"	"RBFOX1"	54715	"ENSG00000078328"
+"1554543_at"	"SPAG9"	9043	"ENSG00000008294"
+"1557529_at"	"HECTD4"	283450	"ENSG00000173064"
+"1554737_at"	"FBN2"	2201	"ENSG00000138829"
+"1553051_s_at"	"ODF3"	113746	"ENSG00000177947"
+"1552535_at"	"CLDN19"	149461	"ENSG00000164007"
+"1554804_a_at"	"CLDN19"	149461	"ENSG00000164007"
+"1554805_at"	"CLDN19"	149461	"ENSG00000164007"
+"1553888_at"	"LDHAL6A"	160287	"ENSG00000166800"
+"1557799_at"	"SELENOH"	280636	"ENSG00000211450"
+"1557801_x_at"	"SELENOH"	280636	"ENSG00000211450"
+"1557190_at"	""	NA	"ENSG00000279048"
+"1558459_s_at"	"GARS1-DT"	NA	"ENSG00000196295"
+"1558458_at"	"GARS1-DT"	NA	"ENSG00000196295"
+"1558859_at"	"GARS1-DT"	NA	"ENSG00000196295"
+"1552355_s_at"	"CBARP"	255057	"ENSG00000099625"
+"1552354_at"	"CBARP"	255057	"ENSG00000099625"
+"1556514_at"	"PLEKHG7"	440107	"ENSG00000187510"
+"1559489_a_at"	"LINC01366"	257358	"ENSG00000235172"
+"1559488_at"	"LINC01366"	257358	"ENSG00000235172"
+"1554115_at"	"C5orf58"	133874	"ENSG00000234511"
+"1552923_a_at"	"PITPNM2"	57605	"ENSG00000090975"
+"1552924_a_at"	"PITPNM2"	57605	"ENSG00000090975"
+"1558999_x_at"	""	NA	"ENSG00000290890"
+"1559573_at"	"LINC01093"	100506229	"ENSG00000249173"
+"1554831_x_at"	"C2CD6"	151254	"ENSG00000155754"
+"1556757_a_at"	"C2CD6"	151254	"ENSG00000155754"
+"1553260_s_at"	"C2CD6"	151254	"ENSG00000155754"
+"1558428_at"	"C2CD6"	151254	"ENSG00000155754"
+"1555317_at"	"POLK"	51426	"ENSG00000122008"
+"1555737_a_at"	"KLK4"	9622	"ENSG00000167749"
+"1555697_at"	"KLK4"	9622	"ENSG00000167749"
+"1553365_at"	"DEPDC4"	120863	"ENSG00000166153"
+"1552395_at"	"TSSK3"	81629	"ENSG00000162526"
+"1552489_s_at"	"MPP4"	58538	"ENSG00000082126"
+"1555099_at"	"MPP4"	58538	"ENSG00000082126"
+"1552496_a_at"	"COBL"	23242	"ENSG00000106078"
+"1552559_a_at"	"CDK15"	65061	"ENSG00000138395"
+"1554826_at"	"CDK15"	65061	"ENSG00000138395"
+"1557030_at"	"GAB1"	2549	"ENSG00000109458"
+"1557905_s_at"	"CD44"	960	"ENSG00000026508"
+"1557107_at"	"SLC26A4-AS1"	NA	"ENSG00000233705"
+"1553657_at"	"VWA3A"	146177	"ENSG00000175267"
+"1555284_at"	"ALS2"	57679	"ENSG00000003393"
+"1552722_at"	"ARPP21"	10777	"ENSG00000172995"
+"1556598_at"	"ARPP21"	10777	"ENSG00000172995"
+"1556599_s_at"	"ARPP21"	10777	"ENSG00000172995"
+"1557479_at"	""	101928718	"ENSG00000284830"
+"1553982_a_at"	"RAB7B"	338382	"ENSG00000276600"
+"1554761_a_at"	"DNAAF5"	54919	"ENSG00000164818"
+"1552737_s_at"	"WWP2"	11060	"ENSG00000198373"
+"1557493_x_at"	""	NA	"ENSG00000225488"
+"1557491_at"	""	NA	"ENSG00000225488"
+"1553898_a_at"	""	NA	"ENSG00000261275"
+"1555647_a_at"	"FOXP2"	93986	"ENSG00000128573"
+"1552902_a_at"	"FOXP2"	93986	"ENSG00000128573"
+"1555516_at"	"FOXP2"	93986	"ENSG00000128573"
+"1555648_at"	"FOXP2"	93986	"ENSG00000128573"
+"1555352_at"	"FOXP2"	93986	"ENSG00000128573"
+"1558525_at"	"YPEL3-DT"	101928595	"ENSG00000250616"
+"1556199_a_at"	"RGS9BP"	388531	"ENSG00000186326"
+"1553526_at"	"NLRP8"	126205	"ENSG00000179709"
+"1552405_at"	"NLRP5"	126206	"ENSG00000171487"
+"1558733_at"	"ZBTB38"	253461	"ENSG00000177311"
+"1554836_at"	"USP36"	57602	"ENSG00000055483"
+"1554717_a_at"	"PDE4D"	5144	"ENSG00000113448"
+"1556500_a_at"	""	105374989	"ENSG00000275846"
+"1552929_at"	"GRK7"	131890	"ENSG00000114124"
+"1557769_at"	"PRR15-DT"	NA	"ENSG00000223813"
+"1557891_s_at"	"STXBP5-AS1"	NA	"ENSG00000233452"
+"1557890_at"	"STXBP5-AS1"	NA	"ENSG00000233452"
+"1552540_s_at"	"IQCD"	115811	"ENSG00000166578"
+"1558815_at"	"SORBS2"	8470	"ENSG00000154556"
+"1552319_a_at"	"KLK8"	11202	"ENSG00000129455"
+"1553726_s_at"	"TBC1D32"	221322	"ENSG00000146350"
+"1555469_a_at"	"CLASP2"	23122	"ENSG00000163539"
+"1558759_s_at"	"CLASP2"	23122	"ENSG00000163539"
+"1553213_a_at"	"KRT78"	196374	"ENSG00000170423"
+"1553212_at"	"KRT78"	196374	"ENSG00000170423"
+"1553047_at"	"PIP4K2B"	8396	"ENSG00000276293"
+"1557374_at"	"ABCC9"	10060	"ENSG00000069431"
+"1553162_x_at"	"PROSER3"	148137	"ENSG00000167595"
+"1559426_at"	"TRRAP"	8295	"ENSG00000196367"
+"1552761_at"	"SLC16A11"	162515	"ENSG00000174326"
+"1555110_a_at"	"KLHL3"	26249	"ENSG00000146021"
+"1554966_a_at"	"FILIP1L"	11259	"ENSG00000168386"
+"1554965_at"	"FILIP1L"	11259	"ENSG00000168386"
+"1556913_a_at"	""	NA	"ENSG00000280426"
+"1556912_at"	""	NA	"ENSG00000280426"
+"1556131_s_at"	"FBF1"	85302	"ENSG00000188878"
+"1553321_a_at"	"SULT1C4"	27233	"ENSG00000198075"
+"1558738_at"	"NOL3"	8996	"ENSG00000140939"
+"1558557_at"	"VPS35L"	57020	"ENSG00000103544"
+"1558168_at"	"H1-10-AS1"	NA	"ENSG00000206417"
+"1559409_a_at"	"CC2D2A"	57545	"ENSG00000048342"
+"1553064_at"	"H1-8"	132243	"ENSG00000178804"
+"1552634_a_at"	"ZNF101"	94039	"ENSG00000181896"
+"1552633_at"	"ZNF101"	94039	"ENSG00000181896"
+"1555812_a_at"	"ARHGDIB"	397	"ENSG00000111348"
+"1553471_at"	"SLC35G3"	146861	"ENSG00000164729"
+"1553375_at"	"BTBD9"	114781	"ENSG00000183826"
+"1556382_a_at"	"NAA15"	80155	"ENSG00000164134"
+"1556381_at"	"NAA15"	80155	"ENSG00000164134"
+"1558300_at"	"EFCAB5"	374786	"ENSG00000176927"
+"1558301_a_at"	"EFCAB5"	374786	"ENSG00000176927"
+"1554641_a_at"	"TET3"	200424	"ENSG00000187605"
+"1554273_a_at"	"ERAP2"	64167	"ENSG00000164308"
+"1554272_at"	"ERAP2"	64167	"ENSG00000164308"
+"1557031_at"	"RNF212"	285498	"ENSG00000178222"
+"1554554_at"	"CCDC57"	284001	"ENSG00000176155"
+"1553248_at"	"CCDC57"	284001	"ENSG00000176155"
+"1556579_s_at"	"IGSF10"	285313	"ENSG00000152580"
+"1555668_a_at"	"PRKN"	5071	"ENSG00000185345"
+"1554855_at"	"PRKN"	5071	"ENSG00000185345"
+"1554952_s_at"	"NLRP12"	91662	"ENSG00000142405"
+"1555905_a_at"	"TCAIM"	285343	"ENSG00000179152"
+"1555906_s_at"	"TCAIM"	285343	"ENSG00000179152"
+"1552287_s_at"	"AFG3L1P"	172	"ENSG00000223959"
+"1555154_a_at"	"QKI"	9444	"ENSG00000112531"
+"1553130_at"	""	652276	"ENSG00000291228"
+"1553472_at"	"LINC01931"	150596	"ENSG00000162947"
+"1555105_a_at"	"MIER1"	57708	"ENSG00000198160"
+"1556844_at"	""	100132078	"ENSG00000255428"
+"1552637_at"	"PTPN11"	5781	"ENSG00000179295"
+"1556056_at"	"SIK2"	23235	"ENSG00000170145"
+"1554493_s_at"	"THADA"	63892	"ENSG00000115970"
+"1558306_at"	"THADA"	63892	"ENSG00000115970"
+"1554492_at"	"THADA"	63892	"ENSG00000115970"
+"1554362_at"	"BTG4"	54766	"ENSG00000137707"
+"1558336_at"	"CAPS2-AS1"	100130268	"ENSG00000254451"
+"1556619_at"	"SHISA9"	729993	"ENSG00000237515"
+"1553857_at"	"IGSF22"	283284	"ENSG00000179057"
+"1555065_x_at"	"USP6"	9098	"ENSG00000129204"
+"1555063_at"	"USP6"	9098	"ENSG00000129204"
+"1558996_at"	"FOXP1"	27086	"ENSG00000114861"
+"1553889_at"	"MRGPRX2"	117194	"ENSG00000183695"
+"1556069_s_at"	"HIF3A"	64344	"ENSG00000124440"
+"1555318_at"	"HIF3A"	64344	"ENSG00000124440"
+"1553409_at"	"ADAMTS20"	80070	"ENSG00000173157"
+"1552852_a_at"	"ZSCAN4"	201516	"ENSG00000180532"
+"1552851_at"	"ZSCAN4"	201516	"ENSG00000180532"
+"1553402_a_at"	"HFE"	3077	"ENSG00000010704"
+"1554631_at"	"ATM"	472	"ENSG00000149311"
+"1553387_at"	"ATM"	472	"ENSG00000149311"
+"1556924_at"	"CFLAR-AS1"	65072	"ENSG00000226312"
+"1552452_at"	"WDR88"	126248	"ENSG00000166359"
+"1552453_a_at"	"WDR88"	126248	"ENSG00000166359"
+"1556277_a_at"	"TENT2"	167153	"ENSG00000164329"
+"1555273_at"	"GALNTL6"	442117	"ENSG00000174473"
+"1555427_s_at"	"SYNCRIP"	10492	"ENSG00000135316"
+"1558293_at"	"BTBD8"	284697	"ENSG00000189195"
+"1554324_s_at"	"DYNC2LI1"	51626	"ENSG00000138036"
+"1557714_at"	"CTBP1"	1487	"ENSG00000159692"
+"1554108_at"	"CARF"	79800	"ENSG00000138380"
+"1555391_a_at"	"CARF"	79800	"ENSG00000138380"
+"1552811_at"	"WFIKKN1"	117166	"ENSG00000127578"
+"1554466_a_at"	"METTL26"	84326	"ENSG00000130731"
+"1555323_at"	"ABCB9"	23457	"ENSG00000150967"
+"1557360_at"	"LRPPRC"	10128	"ENSG00000138095"
+"1555342_a_at"	"UNC5C"	8633	"ENSG00000182168"
+"1555341_at"	"UNC5C"	8633	"ENSG00000182168"
+"1553626_a_at"	"EFCAB13"	124989	"ENSG00000178852"
+"1554772_at"	"EFCAB13"	124989	"ENSG00000178852"
+"1553627_s_at"	"EFCAB13"	124989	"ENSG00000178852"
+"1554671_a_at"	"SRRM2"	23524	"ENSG00000167978"
+"1553292_s_at"	"RSKR"	124923	"ENSG00000167524"
+"1554850_at"	"VWA5B2"	90113	"ENSG00000145198"
+"1559240_at"	""	100507053	"ENSG00000246090"
+"1554909_at"	"IHO1"	339834	"ENSG00000173421"
+"1554803_s_at"	"TRIM72"	493829	"ENSG00000177238"
+"1555542_at"	"AFAP1L1"	134265	"ENSG00000157510"
+"1557910_at"	"HSP90AB1"	3326	"ENSG00000096384"
+"1558527_at"	"PAXIP1-AS2"	NA	"ENSG00000214106"
+"1554796_at"	"DPP6"	1804	"ENSG00000130226"
+"1558828_s_at"	"CARMN"	NA	"ENSG00000249669"
+"1553071_a_at"	"MYOZ3"	91977	"ENSG00000164591"
+"1553070_a_at"	"MYOZ3"	91977	"ENSG00000164591"
+"1553602_at"	"MUCL1"	118430	"ENSG00000172551"
+"1555384_a_at"	"LARP4"	113251	"ENSG00000161813"
+"1554938_a_at"	"ACOT11"	26027	"ENSG00000162390"
+"1555321_at"	"ACOT11"	26027	"ENSG00000162390"
+"1557314_at"	""	442524	"ENSG00000291213"
+"1553272_at"	"SLC36A1"	206358	"ENSG00000123643"
+"1555779_a_at"	"CD79A"	973	"ENSG00000105369"
+"1553451_at"	"TERB1"	283847	"ENSG00000249961"
+"1558254_s_at"	"SRPK2"	6733	"ENSG00000135250"
+"1552381_at"	"SRSF12"	135295	"ENSG00000154548"
+"1556471_at"	"SCML4"	256380	"ENSG00000146285"
+"1556472_s_at"	"SCML4"	256380	"ENSG00000146285"
+"1555356_a_at"	"SCML4"	256380	"ENSG00000146285"
+"1554019_s_at"	"CEP57L1"	285753	"ENSG00000183137"
+"1556256_a_at"	""	NA	"ENSG00000258122"
+"1554511_at"	"WWC1"	23286	"ENSG00000113645"
+"1553935_at"	"BFSP2-AS1"	85003	"ENSG00000249993"
+"1553936_a_at"	"BFSP2-AS1"	85003	"ENSG00000249993"
+"1554601_at"	"NKAIN2"	154215	"ENSG00000188580"
+"1552519_at"	"ACVR1C"	130399	"ENSG00000123612"
+"1556229_at"	""	NA	"ENSG00000261916"
+"1554008_at"	"OSMR"	9180	"ENSG00000145623"
+"1554188_at"	"POU2AF2"	341032	"ENSG00000150750"
+"1553805_at"	"C3orf49"	132200	"ENSG00000163632"
+"1552734_at"	"RICTOR"	253260	"ENSG00000164327"
+"1554780_a_at"	"PHTF2"	57157	"ENSG00000006576"
+"1554822_at"	"PHTF2"	57157	"ENSG00000006576"
+"1557970_s_at"	"RPS6KA2"	6196	"ENSG00000071242"
+"1552337_s_at"	"HOXD4"	3233	"ENSG00000170166"
+"1557737_s_at"	"NKTR"	4820	"ENSG00000114857"
+"1557736_at"	"NKTR"	4820	"ENSG00000114857"
+"1552615_at"	"ACACB"	32	"ENSG00000076555"
+"1552616_a_at"	"ACACB"	32	"ENSG00000076555"
+"1552791_a_at"	"TRDN"	10345	"ENSG00000186439"
+"1552982_a_at"	"FGF4"	2249	"ENSG00000075388"
+"1557765_at"	"PURPL"	643401	"ENSG00000250337"
+"1553798_a_at"	"FBXL13"	222235	"ENSG00000161040"
+"1557126_a_at"	"PLD1"	5337	"ENSG00000075651"
+"1554997_a_at"	"PTGS2"	5743	"ENSG00000073756"
+"1553565_s_at"	"DDAH1"	23576	"ENSG00000153904"
+"1559083_x_at"	""	NA	"ENSG00000230699"
+"1555980_a_at"	"LINC02593"	100130417	"ENSG00000223764"
+"1555979_at"	"LINC02593"	100130417	"ENSG00000223764"
+"1559139_at"	"NOC2L"	26155	"ENSG00000188976"
+"1552438_a_at"	"ANKAR"	150709	"ENSG00000151687"
+"1554655_a_at"	"RPRML"	388394	"ENSG00000179673"
+"1552293_at"	"TMEM196"	256130	"ENSG00000173452"
+"1557386_at"	"LCT-AS1"	100507600	"ENSG00000226806"
+"1558094_s_at"	"CCDC174"	51244	"ENSG00000154781"
+"1557862_at"	"MFF-DT"	NA	"ENSG00000236432"
+"1555467_a_at"	"CELF1"	10658	"ENSG00000149187"
+"1557528_at"	"STRADA"	92335	"ENSG00000266173"
+"1554491_a_at"	"SERPINC1"	462	"ENSG00000117601"
+"1554810_at"	"PLA2G4C"	8605	"ENSG00000105499"
+"1554539_a_at"	"RHOF"	54509	"ENSG00000139725"
+"1554538_at"	"RHOF"	54509	"ENSG00000139725"
+"1556042_s_at"	"LINC01089"	338799	"ENSG00000212694"
+"1553810_a_at"	"CIP2A"	57650	"ENSG00000163507"
+"1554479_a_at"	"CARD8"	22900	"ENSG00000105483"
+"1557146_a_at"	"SSTR5-AS1"	146336	"ENSG00000261713"
+"1557702_at"	""	NA	"ENSG00000223393"
+"1558487_a_at"	"TMED4"	222068	"ENSG00000158604"
+"1558052_at"	""	NA	"ENSG00000287574"
+"1558053_s_at"	""	NA	"ENSG00000287574"
+"1554152_a_at"	"OGDH"	4967	"ENSG00000105953"
+"1554151_at"	"OGDH"	4967	"ENSG00000105953"
+"1559105_at"	"LEKR1"	389170	"ENSG00000197980"
+"1552947_x_at"	"ZNF114"	163071	"ENSG00000178150"
+"1552946_at"	"ZNF114"	163071	"ENSG00000178150"
+"1552760_at"	"HDAC9"	9734	"ENSG00000048052"
+"1552758_at"	"HDAC9"	9734	"ENSG00000048052"
+"1554744_at"	"CARD16"	114769	"ENSG00000204397"
+"1552701_a_at"	"CARD16"	114769	"ENSG00000204397"
+"1559022_at"	"EFCAB14"	9813	"ENSG00000159658"
+"1559023_a_at"	"EFCAB14"	9813	"ENSG00000159658"
+"1553683_s_at"	"FBXL14"	144699	"ENSG00000171823"
+"1553682_at"	"FBXL14"	144699	"ENSG00000171823"
+"1552663_a_at"	"ERC1"	23085	"ENSG00000082805"
+"1555294_a_at"	"ERC1"	23085	"ENSG00000082805"
+"1555300_a_at"	"MED12L"	116931	"ENSG00000144893"
+"1553436_at"	"MUC19"	283463	"ENSG00000205592"
+"1552531_a_at"	"NLRP11"	204801	"ENSG00000179873"
+"1552835_at"	"DENND1B"	163486	"ENSG00000213047"
+"1557309_at"	"DENND1B"	163486	"ENSG00000213047"
+"1555618_s_at"	"SAE1"	10055	"ENSG00000142230"
+"1556209_at"	"CLEC2B"	9976	"ENSG00000110852"
+"1552398_a_at"	"CLEC12A"	160364	"ENSG00000172322"
+"1556057_s_at"	"NEUROD1"	4760	"ENSG00000162992"
+"1556621_a_at"	""	NA	"ENSG00000278949"
+"1555748_x_at"	"CD79B"	974	"ENSG00000007312"
+"1555746_at"	"CD79B"	974	"ENSG00000007312"
+"1555325_s_at"	"ZNF26"	7574	"ENSG00000198393"
+"1558460_at"	"ABCC5"	10057	"ENSG00000114770"
+"1558687_a_at"	"FOXN1"	8456	"ENSG00000109101"
+"1555060_a_at"	"IKZF2"	22807	"ENSG00000030419"
+"1554987_at"	"GOLGA3"	2802	"ENSG00000090615"
+"1555751_a_at"	"GEMIN7"	79760	"ENSG00000142252"
+"1555088_x_at"	"STAT5B"	6777	"ENSG00000173757"
+"1555086_at"	"STAT5B"	6777	"ENSG00000173757"
+"1553418_a_at"	"CNTNAP5"	129684	"ENSG00000155052"
+"1553013_at"	"CNTNAP5"	129684	"ENSG00000155052"
+"1554106_at"	"NBEAL1"	65065	"ENSG00000144426"
+"1554667_s_at"	"METTL8"	79828	"ENSG00000123600"
+"1555462_at"	"PPP1R1C"	151242	"ENSG00000150722"
+"1552789_at"	"SEC62"	7095	"ENSG00000008952"
+"1552790_a_at"	"SEC62"	7095	"ENSG00000008952"
+"1554475_a_at"	"C19orf47"	126526	"ENSG00000160392"
+"1554178_a_at"	"HYCC2"	285172	"ENSG00000155744"
+"1558959_at"	"HYCC2"	285172	"ENSG00000155744"
+"1559432_at"	""	NA	"ENSG00000273328"
+"1557550_at"	"LINC00906"	148145	"ENSG00000267339"
+"1556796_at"	"KRBOX1-AS1"	100506275	"ENSG00000206552"
+"1556422_at"	"ZNF470-DT"	112268241	"ENSG00000269696"
+"1557021_s_at"	"NUP107-DT"	100507250	"ENSG00000247363"
+"1559595_at"	"LINC02458"	NA	"ENSG00000246363"
+"1556272_a_at"	""	101928896	"ENSG00000255084"
+"1556271_at"	""	101928896	"ENSG00000255084"
+"1555608_at"	"CAPRIN2"	65981	"ENSG00000110888"
+"1557044_at"	"LINC00665"	100506930	"ENSG00000232677"
+"1557046_x_at"	"LINC00665"	100506930	"ENSG00000232677"
+"1554322_a_at"	"HDAC4"	9759	"ENSG00000068024"
+"1558256_at"	"LINC00662"	148189	"ENSG00000261824"
+"1552507_at"	"KCNE4"	23704	"ENSG00000152049"
+"1552508_at"	"KCNE4"	23704	"ENSG00000152049"
+"1556724_at"	""	100128398	"ENSG00000176593"
+"1556725_a_at"	""	100128398	"ENSG00000176593"
+"1557246_at"	"KIDINS220"	57498	"ENSG00000134313"
+"1553992_s_at"	"NBR2"	10230	"ENSG00000198496"
+"1552302_at"	"TMEM106A"	113277	"ENSG00000184988"
+"1552303_a_at"	"TMEM106A"	113277	"ENSG00000184988"
+"1559538_at"	"GAU1"	101929549	"ENSG00000255474"
+"1553347_s_at"	"KCNA6"	3742	"ENSG00000151079"
+"1553573_s_at"	"EFNA2"	1943	"ENSG00000099617"
+"1555875_at"	"SRGAP1"	57522	"ENSG00000196935"
+"1555876_at"	"SRGAP1"	57522	"ENSG00000196935"
+"1554473_at"	"SRGAP1"	57522	"ENSG00000196935"
+"1556678_a_at"	""	NA	"ENSG00000260160"
+"1559061_at"	"CACNA1G-AS1"	253962	"ENSG00000250107"
+"1553211_at"	"ANKFN1"	162282	"ENSG00000153930"
+"1559640_at"	"ANKFN1"	162282	"ENSG00000153930"
+"1558233_s_at"	"ATF1"	466	"ENSG00000123268"
+"1553361_x_at"	"FBXL18"	80028	"ENSG00000155034"
+"1553359_at"	"FBXL18"	80028	"ENSG00000155034"
+"1555305_at"	"FOXJ2"	55810	"ENSG00000065970"
+"1558390_at"	"ZNF599"	148103	"ENSG00000153896"
+"1558391_s_at"	"ZNF599"	148103	"ENSG00000153896"
+"1555363_s_at"	"LINC00663"	NA	"ENSG00000266904"
+"1553828_at"	"NXPE1"	120400	"ENSG00000095110"
+"1559495_at"	""	NA	"ENSG00000279865"
+"1556905_at"	"ZNF577"	84765	"ENSG00000161551"
+"1558250_s_at"	"PUS7L"	83448	"ENSG00000129317"
+"1553380_at"	"PARP15"	165631	"ENSG00000173200"
+"1552619_a_at"	"ANLN"	54443	"ENSG00000011426"
+"1556822_s_at"	"ZNF497-AS1"	NA	"ENSG00000269054"
+"1552921_a_at"	"FIGNL1"	63979	"ENSG00000132436"
+"1552391_at"	"CCDC185"	164127	"ENSG00000178395"
+"1553674_at"	"LRRIQ3"	127255	"ENSG00000162620"
+"1554160_a_at"	"ZNF446"	55663	"ENSG00000083838"
+"1555988_a_at"	"LINC00661"	126536	"ENSG00000205396"
+"1557796_at"	"FAR2"	55711	"ENSG00000064763"
+"1557953_at"	"ZKSCAN1"	7586	"ENSG00000106261"
+"1553220_at"	"FAM117B"	150864	"ENSG00000138439"
+"1553218_a_at"	"ZNF512"	84450	"ENSG00000243943"
+"1557410_at"	""	100506606	"ENSG00000257176"
+"1557224_at"	""	NA	"ENSG00000274315"
+"1555523_a_at"	"FYCO1"	79443	"ENSG00000163820"
+"1559302_at"	"FAM234B"	57613	"ENSG00000084444"
+"1558195_at"	"LINC00592"	283404	"ENSG00000258279"
+"1555262_a_at"	"MAGI1"	9223	"ENSG00000151276"
+"1558393_at"	"KRT7-AS"	109729127	"ENSG00000257671"
+"1558394_s_at"	"KRT7-AS"	109729127	"ENSG00000257671"
+"1553539_at"	"KRT74"	121391	"ENSG00000170484"
+"1553537_at"	"KRT73"	319101	"ENSG00000186049"
+"1557114_a_at"	"ZNF561-AS1"	NA	"ENSG00000267106"
+"1556294_at"	"FXYD2"	486	"ENSG00000137731"
+"1555146_at"	"ATF2"	1386	"ENSG00000115966"
+"1555842_at"	"CYTH2"	9266	"ENSG00000105443"
+"1554615_at"	""	NA	"ENSG00000279176"
+"1555206_at"	""	NA	"ENSG00000278998"
+"1557007_a_at"	""	124902623	"ENSG00000254443"
+"1554794_a_at"	"UBE3C"	9690	"ENSG00000009335"
+"1555405_at"	"UBE3C"	9690	"ENSG00000009335"
+"1554793_at"	"UBE3C"	9690	"ENSG00000009335"
+"1558792_x_at"	"AP2A1"	160	"ENSG00000196961"
+"1553641_a_at"	"TSGA13"	114960	"ENSG00000213265"
+"1552813_at"	"KLF14"	136259	"ENSG00000266265"
+"1552814_a_at"	"KLF14"	136259	"ENSG00000266265"
+"1557601_s_at"	"CFAP92"	57501	"ENSG00000114656"
+"1554852_a_at"	"CFAP92"	57501	"ENSG00000114656"
+"1555168_a_at"	"CALN1"	83698	"ENSG00000183166"
+"1553670_at"	"INTS4"	92105	"ENSG00000149262"
+"1554060_s_at"	"SETMAR"	6419	"ENSG00000170364"
+"1554059_at"	"SETMAR"	6419	"ENSG00000170364"
+"1554743_x_at"	"PMS1"	5378	"ENSG00000064933"
+"1554742_at"	"PMS1"	5378	"ENSG00000064933"
+"1555916_at"	"RPUSD3"	285367	"ENSG00000156990"
+"1552678_a_at"	"USP28"	57646	"ENSG00000048028"
+"1556624_at"	""	NA	"ENSG00000269938"
+"1556625_a_at"	""	NA	"ENSG00000269938"
+"1558816_at"	"ZNF664"	144348	"ENSG00000179195"
+"1559093_at"	"LINC01530"	NA	"ENSG00000289037"
+"1553869_at"	"SESN3"	143686	"ENSG00000149212"
+"1554994_at"	"RAG1"	5896	"ENSG00000166349"
+"1555274_a_at"	"SELENOI"	85465	"ENSG00000138018"
+"1558809_s_at"	"ZNF790-AS1"	284408	"ENSG00000267254"
+"1553284_s_at"	"LMLN"	89782	"ENSG00000185621"
+"1555229_a_at"	"C1S"	716	"ENSG00000182326"
+"1554903_at"	"FRMD8"	83786	"ENSG00000126391"
+"1554905_x_at"	"FRMD8"	83786	"ENSG00000126391"
+"1553512_at"	"HOXC12"	3228	"ENSG00000123407"
+"1558708_at"	"NRXN1"	9378	"ENSG00000179915"
+"1553452_at"	"MYO1H"	283446	"ENSG00000174527"
+"1556538_at"	"MELTF"	4241	"ENSG00000163975"
+"1558381_a_at"	"TMEM147-AS1"	100506469	"ENSG00000236144"
+"1556777_a_at"	"ZNF426-DT"	101928238	"ENSG00000278611"
+"1556776_a_at"	"ZNF426-DT"	101928238	"ENSG00000278611"
+"1559410_at"	"LINC02754"	NA	"ENSG00000251637"
+"1559244_at"	"FMN2"	56776	"ENSG00000155816"
+"1555471_a_at"	"FMN2"	56776	"ENSG00000155816"
+"1554469_at"	"ZBTB44"	29068	"ENSG00000196323"
+"1554470_s_at"	"ZBTB44"	29068	"ENSG00000196323"
+"1553787_at"	"KCNJ5-AS1"	219833	"ENSG00000174370"
+"1556518_at"	"DLG1-AS1"	100507086	"ENSG00000227375"
+"1555666_at"	"PTPRS"	5802	"ENSG00000105426"
+"1554633_a_at"	"MYT1L"	23040	"ENSG00000186487"
+"1556182_x_at"	"ANKRD65"	441869	"ENSG00000235098"
+"1556181_at"	"ANKRD65"	441869	"ENSG00000235098"
+"1559492_at"	"GIHCG"	NA	"ENSG00000257698"
+"1558331_at"	"SIRT2"	22933	"ENSG00000068903"
+"1554946_at"	"LINC01234"	100506465	"ENSG00000249550"
+"1557354_at"	"SOS1"	6654	"ENSG00000115904"
+"1558739_at"	""	NA	"ENSG00000290048"
+"1558740_s_at"	""	NA	"ENSG00000290048"
+"1557124_at"	"TMEM198B"	440104	"ENSG00000182796"
+"1555762_s_at"	"RBM15"	64783	"ENSG00000162775"
+"1555760_a_at"	"RBM15"	64783	"ENSG00000162775"
+"1557994_at"	"TTN"	7273	"ENSG00000155657"
+"1553834_at"	"COL6A5"	256076	"ENSG00000172752"
+"1553835_a_at"	"COL6A5"	256076	"ENSG00000172752"
+"1556584_at"	"RAB35-AS1"	127138862	"ENSG00000277283"
+"1556586_x_at"	"RAB35-AS1"	127138862	"ENSG00000277283"
+"1553437_at"	"KLHDC7A"	127707	"ENSG00000179023"
+"1556012_at"	"KLHDC7A"	127707	"ENSG00000179023"
+"1558189_a_at"	"GPR37L1"	9283	"ENSG00000170075"
+"1556155_at"	"GPR37L1"	9283	"ENSG00000170075"
+"1557754_at"	""	NA	"ENSG00000280417"
+"1558289_at"	"RFT1"	91869	"ENSG00000163933"
+"1553483_at"	"TSGA10IP"	254187	"ENSG00000175513"
+"1553042_a_at"	"NFKBID"	84807	"ENSG00000167604"
+"1553118_at"	"THEM4"	117145	"ENSG00000159445"
+"1559226_x_at"	"LCE1E"	353135	"ENSG00000186226"
+"1559224_at"	"LCE1E"	353135	"ENSG00000186226"
+"1555348_at"	"TFAP2E"	339488	"ENSG00000116819"
+"1555118_at"	"ENTPD3"	956	"ENSG00000168032"
+"1559169_at"	""	NA	"ENSG00000233478"
+"1552836_at"	"ZNF619"	285267	"ENSG00000177873"
+"1553333_at"	"MAB21L3"	126868	"ENSG00000173212"
+"1554091_a_at"	"TIRAP"	114609	"ENSG00000150455"
+"1552360_a_at"	"TIRAP"	114609	"ENSG00000150455"
+"1557908_at"	"TIRAP"	114609	"ENSG00000150455"
+"1552804_a_at"	"TIRAP"	114609	"ENSG00000150455"
+"1558620_at"	"ZNF621"	285268	"ENSG00000172888"
+"1554411_at"	"CTNNB1"	1499	"ENSG00000168036"
+"1554122_a_at"	"HSD17B12"	51144	"ENSG00000149084"
+"1554121_at"	"HSD17B12"	51144	"ENSG00000149084"
+"1553016_at"	"ADGRF3"	165082	"ENSG00000173567"
+"1556088_at"	"RPAIN"	84268	"ENSG00000129197"
+"1558719_s_at"	"RPAIN"	84268	"ENSG00000129197"
+"1557296_at"	""	440101	"ENSG00000248265"
+"1557131_at"	"ZNRD2-DT"	NA	"ENSG00000260233"
+"1553645_at"	"CCDC141"	285025	"ENSG00000163492"
+"1557177_at"	"SYT9-AS1"	100506258	"ENSG00000251364"
+"1559518_at"	""	NA	"ENSG00000283341"
+"1553698_a_at"	"CCSAP"	126731	"ENSG00000154429"
+"1553697_at"	"CCSAP"	126731	"ENSG00000154429"
+"1554871_at"	""	NA	"ENSG00000287548"
+"1558014_s_at"	"FAR1"	84188	"ENSG00000197601"
+"1557774_at"	"RAB17-DT"	NA	"ENSG00000234949"
+"1553901_x_at"	"ZNF486"	90649	"ENSG00000256229"
+"1555656_at"	"CD300LG"	146894	"ENSG00000161649"
+"1555636_at"	"CD300LG"	146894	"ENSG00000161649"
+"1552509_a_at"	"CD300LG"	146894	"ENSG00000161649"
+"1552377_s_at"	"TVP23C"	201158	"ENSG00000175106"
+"1556567_at"	"NAP1L4"	4676	"ENSG00000205531"
+"1553484_at"	"LINC00477"	144360	"ENSG00000197503"
+"1552498_at"	"ZSCAN20"	7579	"ENSG00000121903"
+"1552499_a_at"	"ZSCAN20"	7579	"ENSG00000121903"
+"1554790_at"	"ZSCAN20"	7579	"ENSG00000121903"
+"1556401_a_at"	""	NA	"ENSG00000233542"
+"1556400_at"	""	NA	"ENSG00000233542"
+"1554774_at"	"RIOX2"	84864	"ENSG00000170854"
+"1558626_at"	"MSANTD2-AS1"	100507283	"ENSG00000245498"
+"1552450_a_at"	"DNAJC5G"	285126	"ENSG00000163793"
+"1553837_at"	"PGAM5"	192111	"ENSG00000247077"
+"1555943_at"	"PGAM5"	192111	"ENSG00000247077"
+"1557484_at"	""	NA	"ENSG00000235749"
+"1556435_at"	""	400622	"ENSG00000267665"
+"1556851_at"	""	NA	"ENSG00000247011"
+"1556852_a_at"	""	NA	"ENSG00000247011"
+"1553956_at"	"TMEM237"	65062	"ENSG00000155755"
+"1553813_s_at"	"TLE6"	79816	"ENSG00000104953"
+"1553812_at"	"TLE6"	79816	"ENSG00000104953"
+"1552875_a_at"	"CD200R1"	131450	"ENSG00000163606"
+"1553395_a_at"	"CD200R1"	131450	"ENSG00000163606"
+"1554666_at"	"ZNF594-DT"	100130950	"ENSG00000261879"
+"1558234_at"	"KCNJ2-AS1"	400617	"ENSG00000267365"
+"1554020_at"	"BICD1"	636	"ENSG00000151746"
+"1556051_a_at"	"BICD1"	636	"ENSG00000151746"
+"1554784_at"	"CNTN1"	1272	"ENSG00000018236"
+"1553072_at"	"BNIPL"	149428	"ENSG00000163141"
+"1554286_at"	""	NA	"ENSG00000269761"
+"1556123_a_at"	"RAB11B-AS1"	100507567	"ENSG00000269386"
+"1556122_at"	"RAB11B-AS1"	100507567	"ENSG00000269386"
+"1555844_s_at"	"HNRNPM"	4670	"ENSG00000099783"
+"1555843_at"	"HNRNPM"	4670	"ENSG00000099783"
+"1557139_at"	"DDX11-AS1"	100506660	"ENSG00000245614"
+"1553138_a_at"	"ANKLE1"	126549	"ENSG00000160117"
+"1555675_at"	"BLID"	414899	"ENSG00000259571"
+"1555804_a_at"	"MAP3K19"	80122	"ENSG00000176601"
+"1555062_s_at"	"GTPBP3"	84705	"ENSG00000130299"
+"1556312_at"	"PCARE"	388939	"ENSG00000179270"
+"1553373_at"	"WDR64"	128025	"ENSG00000162843"
+"1553895_at"	"C11orf42"	160298	"ENSG00000180878"
+"1553635_s_at"	"DYNLT5"	200132	"ENSG00000152760"
+"1554141_s_at"	"DNAI4"	79819	"ENSG00000152763"
+"1554140_at"	"DNAI4"	79819	"ENSG00000152763"
+"1552625_a_at"	"TRNT1"	51095	"ENSG00000072756"
+"1558695_at"	"PLEKHA5"	54477	"ENSG00000052126"
+"1554958_at"	"ZNF641"	121274	"ENSG00000167528"
+"1553022_at"	"ZIM3"	114026	"ENSG00000141946"
+"1558698_at"	"ZNF264"	9422	"ENSG00000083844"
+"1554540_at"	"DNAH14"	127602	"ENSG00000185842"
+"1552794_a_at"	"ZNF547"	284306	"ENSG00000152433"
+"1558995_at"	"ZNF547"	284306	"ENSG00000152433"
+"1553719_s_at"	"ZNF548"	147694	"ENSG00000188785"
+"1553718_at"	"ZNF548"	147694	"ENSG00000188785"
+"1557964_at"	"EIF4G2"	1982	"ENSG00000110321"
+"1552501_a_at"	"GPBAR1"	151306	"ENSG00000179921"
+"1555279_at"	"ARMC8"	25852	"ENSG00000114098"
+"1555281_x_at"	"ARMC8"	25852	"ENSG00000114098"
+"1555895_at"	"DNM2"	1785	"ENSG00000079805"
+"1557016_a_at"	"LEXM"	163747	"ENSG00000162398"
+"1555355_a_at"	"ETS1"	2113	"ENSG00000134954"
+"1553910_at"	"NBPF4"	148545	"ENSG00000196427"
+"1555116_s_at"	"SLC11A1"	6556	"ENSG00000018280"
+"1554945_x_at"	"VIL1"	7429	"ENSG00000127831"
+"1554943_at"	"VIL1"	7429	"ENSG00000127831"
+"1559372_at"	"LINC01635"	101928043	"ENSG00000228397"
+"1556931_at"	"CDC42-IT1"	NA	"ENSG00000230068"
+"1554834_a_at"	"RASSF5"	83593	"ENSG00000266094"
+"1555092_at"	"VASH2"	79805	"ENSG00000143494"
+"1552865_a_at"	"LMNTD1"	160492	"ENSG00000152936"
+"1555397_at"	"MYO1D"	4642	"ENSG00000176658"
+"1554271_a_at"	"CENPL"	91687	"ENSG00000120334"
+"1554725_at"	"RABGAP1L"	9910	"ENSG00000152061"
+"1552812_a_at"	"SENP1"	29843	"ENSG00000079387"
+"1557675_at"	"RAF1"	5894	"ENSG00000132155"
+"1553776_at"	"UBE2U"	148581	"ENSG00000177414"
+"1556753_s_at"	""	NA	"ENSG00000260597"
+"1555981_at"	"ASB16-AS1"	339201	"ENSG00000267080"
+"1555749_at"	"SF1"	7536	"ENSG00000168066"
+"1553695_a_at"	"NLRX1"	79671	"ENSG00000160703"
+"1554261_at"	"KLHL29"	114818	"ENSG00000119771"
+"1554262_s_at"	"KLHL29"	114818	"ENSG00000119771"
+"1559203_s_at"	"KRAS"	3845	"ENSG00000133703"
+"1559204_x_at"	"KRAS"	3845	"ENSG00000133703"
+"1558009_at"	"SLC1A2"	6506	"ENSG00000110436"
+"1558010_s_at"	"SLC1A2"	6506	"ENSG00000110436"
+"1556747_a_at"	""	NA	"ENSG00000261222"
+"1556748_x_at"	""	NA	"ENSG00000261222"
+"1558814_s_at"	"TMED5"	50999	"ENSG00000117500"
+"1553043_a_at"	"CD300LF"	146722	"ENSG00000186074"
+"1552472_a_at"	"ACAP2"	23527	"ENSG00000114331"
+"1555123_at"	"ST6GAL2"	84620	"ENSG00000144057"
+"1556167_at"	"MROH2A"	339766	"ENSG00000185038"
+"1556168_s_at"	"MROH2A"	339766	"ENSG00000185038"
+"1552620_at"	"SPRR4"	163778	"ENSG00000184148"
+"1555993_at"	"CACNA1D"	776	"ENSG00000157388"
+"1555499_a_at"	"IFNLR1"	163702	"ENSG00000185436"
+"1552979_at"	"LINC00471"	151477	"ENSG00000181798"
+"1559605_a_at"	"LINC01936"	NA	"ENSG00000235997"
+"1554860_at"	"PTPN7"	5778	"ENSG00000143851"
+"1554847_at"	"ATP6V1B1"	525	"ENSG00000116039"
+"1559469_s_at"	"SIPA1L2"	57568	"ENSG00000116991"
+"1557602_at"	"LINC00870"	201617	"ENSG00000243083"
+"1556249_a_at"	"EIF1B-AS1"	440952	"ENSG00000280739"
+"1556248_at"	"EIF1B-AS1"	440952	"ENSG00000280739"
+"1557212_at"	"EIF1B-AS1"	440952	"ENSG00000280739"
+"1553491_at"	"KSR2"	283455	"ENSG00000171435"
+"1557613_at"	"KIF9-AS1"	NA	"ENSG00000227398"
+"1556387_at"	""	100507389	"ENSG00000243818"
+"1556388_a_at"	""	100507389	"ENSG00000243818"
+"1552423_at"	"ETV3"	2117	"ENSG00000117036"
+"1557143_at"	"CSMD2"	114784	"ENSG00000121904"
+"1556364_at"	"ADAMTS9-AS2"	NA	"ENSG00000241684"
+"1559296_at"	"ADAMTS9-AS2"	NA	"ENSG00000241684"
+"1557607_at"	"PICART1"	284080	"ENSG00000246640"
+"1557608_a_at"	"PICART1"	284080	"ENSG00000246640"
+"1553222_at"	"OXER1"	165140	"ENSG00000162881"
+"1558920_at"	"SLC8A1-AS1"	100128590	"ENSG00000227028"
+"1558760_at"	""	NA	"ENSG00000288868"
+"1555007_s_at"	"CFAP251"	144406	"ENSG00000158023"
+"1558552_s_at"	"SLC66A1L"	152078	"ENSG00000174899"
+"1555860_x_at"	"THUMPD3-AS1"	440944	"ENSG00000206573"
+"1555858_at"	"THUMPD3-AS1"	440944	"ENSG00000206573"
+"1559220_at"	"TWF2-DT"	101929054	"ENSG00000243224"
+"1553989_a_at"	"ATP6V1C2"	245973	"ENSG00000143882"
+"1552532_a_at"	"ATP6V1C2"	245973	"ENSG00000143882"
+"1553860_at"	"DCST1"	149095	"ENSG00000163357"
+"1555896_a_at"	"ADAM15"	8751	"ENSG00000143537"
+"1558066_s_at"	"TBC1D16"	125058	"ENSG00000167291"
+"1554701_a_at"	"TBC1D16"	125058	"ENSG00000167291"
+"1553987_at"	"MAPKAPK5-AS1"	51275	"ENSG00000234608"
+"1553349_at"	"ARID2"	196528	"ENSG00000189079"
+"1559144_x_at"	"LINC00910"	NA	"ENSG00000188825"
+"1556545_at"	""	NA	"ENSG00000279602"
+"1556437_at"	""	NA	"ENSG00000279711"
+"1554576_a_at"	"ETV4"	2118	"ENSG00000175832"
+"1556034_s_at"	"MTMR11"	10903	"ENSG00000014914"
+"1556928_at"	"ATG13"	9776	"ENSG00000175224"
+"1555139_a_at"	"OTUD7B"	56957	"ENSG00000264522"
+"1553743_at"	"METTL21A"	151194	"ENSG00000144401"
+"1554398_at"	"LYG2"	254773	"ENSG00000185674"
+"1558680_s_at"	"PDE1A"	5136	"ENSG00000115252"
+"1555278_a_at"	"CKAP5"	9793	"ENSG00000175216"
+"1553412_at"	"AGBL4"	84871	"ENSG00000186094"
+"1555997_s_at"	"IGFBP5"	3488	"ENSG00000115461"
+"1553094_at"	"TAC4"	255061	"ENSG00000176358"
+"1557771_at"	"FHAD1"	114827	"ENSG00000142621"
+"1553306_at"	"CASP8"	841	"ENSG00000064012"
+"1554310_a_at"	"EIF4G3"	8672	"ENSG00000075151"
+"1554309_at"	"EIF4G3"	8672	"ENSG00000075151"
+"1555475_x_at"	"TTLL3"	26140	"ENSG00000214021"
+"1555474_at"	"TTLL3"	26140	"ENSG00000214021"
+"1559601_at"	"USF3"	205717	"ENSG00000176542"
+"1554306_at"	"ITPKB"	3707	"ENSG00000143772"
+"1557487_at"	"NAA50"	80218	"ENSG00000121579"
+"1553454_at"	"RPTN"	126638	"ENSG00000215853"
+"1554764_a_at"	"LINC00301"	283197	"ENSG00000181995"
+"1554765_a_at"	"LINC00301"	283197	"ENSG00000181995"
+"1558327_at"	"ZDHHC18"	84243	"ENSG00000204160"
+"1555309_a_at"	"CARD14"	79092	"ENSG00000141527"
+"1555308_at"	"CARD14"	79092	"ENSG00000141527"
+"1557886_at"	"CEP112"	201134	"ENSG00000154240"
+"1554500_a_at"	"RGS7"	6000	"ENSG00000182901"
+"1555939_at"	"PRKCA-AS1"	NA	"ENSG00000264630"
+"1555940_a_at"	"PRKCA-AS1"	NA	"ENSG00000264630"
+"1558220_at"	"MUC20-OT1"	NA	"ENSG00000242086"
+"1554299_at"	"NPAS4"	266743	"ENSG00000174576"
+"1557385_at"	"FAM161A"	84140	"ENSG00000170264"
+"1558502_s_at"	"DNM3"	26052	"ENSG00000197959"
+"1558501_at"	"DNM3"	26052	"ENSG00000197959"
+"1557674_s_at"	""	NA	"ENSG00000272195"
+"1555464_at"	"IFIH1"	64135	"ENSG00000115267"
+"1555626_a_at"	"SLAMF1"	6504	"ENSG00000117090"
+"1556103_at"	""	NA	"ENSG00000290762"
+"1552553_a_at"	"NLRC4"	58484	"ENSG00000091106"
+"1552554_a_at"	"NLRC4"	58484	"ENSG00000091106"
+"1556798_a_at"	"GRASLND"	386597	"ENSG00000228203"
+"1556797_at"	"GRASLND"	386597	"ENSG00000228203"
+"1559145_at"	"GRASLND"	386597	"ENSG00000228203"
+"1554839_at"	""	NA	"ENSG00000291078"
+"1555291_at"	"TRPV3"	162514	"ENSG00000167723"
+"1555076_at"	"ARHGAP25"	9938	"ENSG00000163219"
+"1556153_s_at"	"NXPE3"	91775	"ENSG00000144815"
+"1557121_s_at"	"HEATR6"	63897	"ENSG00000068097"
+"1555148_a_at"	"M1AP"	130951	"ENSG00000159374"
+"1552849_at"	"M1AP"	130951	"ENSG00000159374"
+"1554915_a_at"	"PDE12"	201626	"ENSG00000174840"
+"1554443_s_at"	"BEST1"	7439	"ENSG00000167995"
+"1554442_at"	"BEST1"	7439	"ENSG00000167995"
+"1555216_a_at"	"TBX2-AS1"	103689912	"ENSG00000267280"
+"1555478_at"	"LINC02875"	388407	"ENSG00000187013"
+"1556504_at"	""	NA	"ENSG00000260008"
+"1559680_at"	"TTL"	150465	"ENSG00000114999"
+"1555374_at"	"TTL"	150465	"ENSG00000114999"
+"1557331_at"	"POLR1B"	84172	"ENSG00000125630"
+"1556448_a_at"	"LINC00606"	285370	"ENSG00000226567"
+"1556447_at"	"LINC00606"	285370	"ENSG00000226567"
+"1554724_at"	"SLC6A11"	6538	"ENSG00000132164"
+"1554205_s_at"	"ICA1L"	130026	"ENSG00000163596"
+"1555671_at"	"ICA1L"	130026	"ENSG00000163596"
+"1553725_s_at"	"ZNF644"	84146	"ENSG00000122482"
+"1559086_at"	"DUBR"	344595	"ENSG00000243701"
+"1555650_at"	"KLHL17"	339451	"ENSG00000187961"
+"1557017_at"	"LINC01990"	101929607	"ENSG00000273125"
+"1557018_a_at"	"LINC01990"	101929607	"ENSG00000273125"
+"1554890_a_at"	"TIA1"	7072	"ENSG00000116001"
+"1554889_at"	"TIA1"	7072	"ENSG00000116001"
+"1557207_s_at"	"B3GAT1-DT"	NA	"ENSG00000255545"
+"1556654_at"	"CDK12"	51755	"ENSG00000167258"
+"1556655_s_at"	"CDK12"	51755	"ENSG00000167258"
+"1555246_a_at"	"SCN1A"	6323	"ENSG00000144285"
+"1556717_at"	"MIR194-2HG"	NA	"ENSG00000229719"
+"1558705_at"	"ATOH8"	84913	"ENSG00000168874"
+"1558706_a_at"	"ATOH8"	84913	"ENSG00000168874"
+"1553020_at"	"SMCR5"	140771	"ENSG00000226746"
+"1558875_at"	"SREBF1"	6720	"ENSG00000072310"
+"1553775_at"	"GOLGA4-AS1"	152048	"ENSG00000270194"
+"1559111_a_at"	"OPRD1"	4985	"ENSG00000116329"
+"1559110_at"	"OPRD1"	4985	"ENSG00000116329"
+"1554584_at"	"DRC3"	83450	"ENSG00000171962"
+"1559309_at"	"MCFD2"	90411	"ENSG00000180398"
+"1553460_at"	"STPG4"	285051	"ENSG00000239605"
+"1555694_a_at"	"KCNIP3"	30818	"ENSG00000115041"
+"1555132_at"	""	NA	"ENSG00000196893"
+"1553872_at"	"NATD1"	256302	"ENSG00000274180"
+"1554749_s_at"	"CLCNKB"	1188	"ENSG00000184908"
+"1554748_at"	"CLCNKB"	1188	"ENSG00000184908"
+"1557346_a_at"	"LINC02693"	339263	"ENSG00000212719"
+"1553268_at"	"RHBDL3"	162494	"ENSG00000141314"
+"1552853_at"	"VWA5B1"	127731	"ENSG00000158816"
+"1552854_a_at"	"VWA5B1"	127731	"ENSG00000158816"
+"1556558_s_at"	"ENTPD3-AS1"	285266	"ENSG00000223797"
+"1554074_s_at"	"SLFNL1"	200172	"ENSG00000171790"
+"1553315_at"	"SLFNL1"	200172	"ENSG00000171790"
+"1556641_at"	"SLC7A14"	57709	"ENSG00000013293"
+"1555320_a_at"	"STAB1"	23166	"ENSG00000010327"
+"1555319_at"	"STAB1"	23166	"ENSG00000010327"
+"1555222_a_at"	""	NA	"ENSG00000264243"
+"1555221_at"	""	NA	"ENSG00000264243"
+"1559578_at"	"NFE2L1-DT"	116435298	"ENSG00000263412"
+"1558556_at"	"OGG1"	4968	"ENSG00000114026"
+"1557476_at"	"PFN4"	375189	"ENSG00000176732"
+"1554613_a_at"	"RUBCN"	9711	"ENSG00000145016"
+"1554612_at"	"RUBCN"	9711	"ENSG00000145016"
+"1553470_at"	"DNAH17"	8632	"ENSG00000187775"
+"1554557_at"	"ATP11B"	23200	"ENSG00000058063"
+"1554556_a_at"	"ATP11B"	23200	"ENSG00000058063"
+"1557427_at"	""	NA	"ENSG00000266947"
+"1554575_a_at"	"BPNT1"	10380	"ENSG00000162813"
+"1556308_at"	"PRRT3"	285368	"ENSG00000163704"
+"1554298_a_at"	"WDR49"	151790	"ENSG00000174776"
+"1556920_s_at"	"LRRC77P"	646168	"ENSG00000244227"
+"1553280_at"	"PUS10"	150962	"ENSG00000162927"
+"1558164_s_at"	"PEX13"	5194	"ENSG00000162928"
+"1558163_at"	"PEX13"	5194	"ENSG00000162928"
+"1556009_at"	"PEX13"	5194	"ENSG00000162928"
+"1554610_at"	"ANKMY1"	51281	"ENSG00000144504"
+"1553407_at"	"MACF1"	23499	"ENSG00000127603"
+"1555567_s_at"	"LMOD3"	56203	"ENSG00000163380"
+"1556617_a_at"	"LINC00901"	100506724	"ENSG00000242385"
+"1557400_at"	"BTD"	686	"ENSG00000169814"
+"1558320_at"	""	NA	"ENSG00000243491"
+"1554464_a_at"	"CRTAP"	10491	"ENSG00000170275"
+"1555889_a_at"	"CRTAP"	10491	"ENSG00000170275"
+"1554960_at"	"CCDC190"	339512	"ENSG00000185860"
+"1557194_a_at"	"RAD54L2"	23132	"ENSG00000164080"
+"1558969_a_at"	""	NA	"ENSG00000290993"
+"1558560_s_at"	"BLZF1"	8548	"ENSG00000117475"
+"1554368_at"	"NT5C1B"	93034	"ENSG00000185013"
+"1555112_a_at"	"CCDC181"	57821	"ENSG00000117477"
+"1555111_at"	"CCDC181"	57821	"ENSG00000117477"
+"1555913_at"	"GON4L"	54856	"ENSG00000116580"
+"1558732_at"	"MAP4K4"	9448	"ENSG00000071054"
+"1553281_at"	"PLCXD2"	257068	"ENSG00000240891"
+"1554779_s_at"	"PHLDB2"	90102	"ENSG00000144824"
+"1554778_at"	"PHLDB2"	90102	"ENSG00000144824"
+"1557578_at"	"PHLDB2"	90102	"ENSG00000144824"
+"1559077_at"	"ABI3BP"	25890	"ENSG00000154175"
+"1556999_at"	""	100271832	"ENSG00000236854"
+"1555845_at"	"ZNF852"	285346	"ENSG00000178917"
+"1559227_s_at"	"VHL"	7428	"ENSG00000134086"
+"1556827_at"	"LPP-AS2"	339929	"ENSG00000270959"
+"1558469_at"	"LPP"	4026	"ENSG00000145012"
+"1554874_at"	"MITF"	4286	"ENSG00000187098"
+"1556775_at"	""	NA	"ENSG00000226622"
+"1558956_s_at"	"IFT80"	57560	"ENSG00000068885"
+"1555783_x_at"	"SLC66A1"	54896	"ENSG00000040487"
+"1555781_at"	"SLC66A1"	54896	"ENSG00000040487"
+"1556274_at"	""	NA	"ENSG00000260021"
+"1558577_at"	"ACTG1P25"	148709	"ENSG00000234996"
+"1553797_a_at"	"SILC1"	NA	"ENSG00000232044"
+"1553796_at"	"SILC1"	NA	"ENSG00000232044"
+"1553420_at"	"SATB2-AS1"	150538	"ENSG00000225953"
+"1557059_at"	"NIFK-AS1"	254128	"ENSG00000236859"
+"1555360_a_at"	"DNAJC11"	55735	"ENSG00000007923"
+"1557727_at"	"PCBP1-AS1"	400960	"ENSG00000179818"
+"1556186_s_at"	"EMC1"	23065	"ENSG00000127463"
+"1555797_a_at"	"ARPC5"	10092	"ENSG00000162704"
+"1554545_at"	"APOBEC4"	403314	"ENSG00000173627"
+"1556667_at"	"FTCDNL1"	348751	"ENSG00000226124"
+"1553506_at"	"CPO"	130749	"ENSG00000144410"
+"1555420_a_at"	"KLF7"	8609	"ENSG00000118263"
+"1552410_at"	"CLEC4F"	165530	"ENSG00000152672"
+"1552708_a_at"	"DUSP19"	142679	"ENSG00000162999"
+"1555598_a_at"	"DUSP19"	142679	"ENSG00000162999"
+"1552705_at"	"DUSP19"	142679	"ENSG00000162999"
+"1558834_s_at"	"AKNAD1"	254268	"ENSG00000162641"
+"1552933_at"	"AKNAD1"	254268	"ENSG00000162641"
+"1555543_a_at"	"CLCC1"	23155	"ENSG00000121940"
+"1557433_at"	"CLCC1"	23155	"ENSG00000121940"
+"1554740_a_at"	"IPP"	3652	"ENSG00000197429"
+"1552402_at"	"CALML6"	163688	"ENSG00000169885"
+"1558015_s_at"	"ACTR2"	10097	"ENSG00000138071"
+"1554390_s_at"	"ACTR2"	10097	"ENSG00000138071"
+"1555736_a_at"	"AGTRAP"	57085	"ENSG00000177674"
+"1552779_a_at"	"SLC44A5"	204962	"ENSG00000137968"
+"1552782_at"	"SLC44A5"	204962	"ENSG00000137968"
+"1556560_a_at"	"FAM229A"	100128071	"ENSG00000225828"
+"1559218_s_at"	"NFYC"	4802	"ENSG00000066136"
+"1555942_a_at"	"MIR205HG"	642587	"ENSG00000230937"
+"1553508_at"	"MDS2"	259283	"ENSG00000197880"
+"1554198_at"	"SH3YL1"	26751	"ENSG00000035115"
+"1554808_at"	"ACP1"	52	"ENSG00000143727"
+"1555124_at"	"LINC01126"	100129726	"ENSG00000279873"
+"1557049_at"	"BTBD19"	149478	"ENSG00000222009"
+"1552714_at"	"CREG2"	200407	"ENSG00000175874"
+"1558436_a_at"	""	NA	"ENSG00000260163"
+"1552478_a_at"	"IRF6"	3664	"ENSG00000117595"
+"1552497_a_at"	"SLAMF6"	114836	"ENSG00000162739"
+"1556583_a_at"	"SLC8A1"	6546	"ENSG00000183023"
+"1555100_at"	"APLF"	200558	"ENSG00000169621"
+"1558027_s_at"	"PRKAB2"	5565	"ENSG00000131791"
+"1555483_x_at"	"FBLIM1"	54751	"ENSG00000162458"
+"1554795_a_at"	"FBLIM1"	54751	"ENSG00000162458"
+"1555480_a_at"	"FBLIM1"	54751	"ENSG00000162458"
+"1558825_s_at"	"NBPF3"	84224	"ENSG00000142794"
+"1553136_at"	"KCTD18"	130535	"ENSG00000155729"
+"1559159_at"	"CEP68"	23177	"ENSG00000011523"
+"1557292_a_at"	"MCOLN3"	55283	"ENSG00000055732"
+"121_at"	"PAX8"	7849	"ENSG00000125618"
+"1555338_s_at"	"AQP10"	89872	"ENSG00000143595"
+"1556244_s_at"	""	375196	"ENSG00000269210"
+"1555799_at"	"FCRL5"	83416	"ENSG00000143297"
+"1553196_a_at"	"FCRL3"	115352	"ENSG00000160856"
+"1553350_at"	"AMER3"	205147	"ENSG00000178171"
+"1555224_at"	"CCDC148-AS1"	554201	"ENSG00000227480"
+"1553176_at"	"SH2D1B"	117157	"ENSG00000198574"
+"1553177_at"	"SH2D1B"	117157	"ENSG00000198574"
+"1552656_s_at"	"UHMK1"	127933	"ENSG00000152332"
+"1557506_a_at"	"RASAL2"	9462	"ENSG00000075391"
+"1553672_at"	"ENAH"	55740	"ENSG00000154380"
+"1557924_s_at"	"ALPL"	249	"ENSG00000162551"
+"1555226_s_at"	"C1orf43"	25912	"ENSG00000143612"
+"1555225_at"	"C1orf43"	25912	"ENSG00000143612"
+"1555468_at"	"NRP2"	8828	"ENSG00000118257"
+"1554379_a_at"	"TP73"	7161	"ENSG00000078900"
+"1553190_s_at"	"PARD3B"	117583	"ENSG00000116117"
+"1553188_s_at"	"PARD3B"	117583	"ENSG00000116117"
+"1555113_at"	"PARD3B"	117583	"ENSG00000116117"
+"1555316_a_at"	"KCNH7"	90134	"ENSG00000184611"
+"1554875_at"	"CAMKMT"	79823	"ENSG00000143919"
+"1554798_at"	"SNED1"	25992	"ENSG00000162804"
+"1559421_at"	"SNED1"	25992	"ENSG00000162804"
+"1557966_x_at"	"MTERF4"	130916	"ENSG00000122085"
+"1557965_at"	"MTERF4"	130916	"ENSG00000122085"
+"1552516_a_at"	"HIPK1"	204851	"ENSG00000163349"
+"1552515_at"	"HIPK1"	204851	"ENSG00000163349"
+"1552912_a_at"	"IL23R"	149233	"ENSG00000162594"
+"1558375_at"	"LRRC38"	126755	"ENSG00000162494"
+"1554444_s_at"	"SLC35F6"	54978	"ENSG00000213699"
+"1553232_at"	"RMDN2"	151393	"ENSG00000115841"
+"1558368_s_at"	"DRAXIN"	374946	"ENSG00000162490"
+"1556826_s_at"	"DRAXIN"	374946	"ENSG00000162490"
+"1554340_a_at"	"DRAXIN"	374946	"ENSG00000162490"
+"1553829_at"	"CYP1B1-AS1"	285154	"ENSG00000232973"
+"1553603_s_at"	"ATL2"	64225	"ENSG00000119787"
+"1553088_a_at"	"BCL2L11"	10018	"ENSG00000153094"
+"1553096_s_at"	"BCL2L11"	10018	"ENSG00000153094"
+"1558143_a_at"	"BCL2L11"	10018	"ENSG00000153094"
+"1555298_a_at"	"VWA3B"	200403	"ENSG00000168658"
+"1558470_at"	"VWA3B"	200403	"ENSG00000168658"
+"1557274_at"	""	NA	"ENSG00000238273"
+"1554057_at"	"ASH1L-AS1"	645676	"ENSG00000235919"
+"1553510_s_at"	"CNOT9"	9125	"ENSG00000144580"
+"1554080_at"	"CNOT9"	9125	"ENSG00000144580"
+"1558692_at"	"GLMP"	112770	"ENSG00000198715"
+"1558693_s_at"	"GLMP"	112770	"ENSG00000198715"
+"1552942_at"	"TRIM67-AS1"	149373	"ENSG00000235710"
+"1555240_s_at"	"GNG12"	55970	"ENSG00000172380"
+"1555266_a_at"	"ASXL2"	55252	"ENSG00000143970"
+"1553059_at"	"PGLYRP3"	114771	"ENSG00000159527"
+"1553959_a_at"	"B3GALT6"	126792	"ENSG00000176022"
+"1554417_s_at"	"APH1A"	51107	"ENSG00000117362"
+"1552631_a_at"	"MAP3K6"	9064	"ENSG00000142733"
+"1559638_at"	"PIK3CD-AS1"	644997	"ENSG00000179840"
+"1555131_a_at"	"PER3"	8863	"ENSG00000049246"
+"1555130_at"	"PER3"	8863	"ENSG00000049246"
+"1553444_a_at"	"C1orf127"	148345	"ENSG00000175262"
+"1552610_a_at"	"JAK1"	3716	"ENSG00000162434"
+"1552611_a_at"	"JAK1"	3716	"ENSG00000162434"
+"1555950_a_at"	"CD55"	1604	"ENSG00000196352"
+"1556107_at"	"CD55"	1604	"ENSG00000196352"
+"1553654_at"	"SYT14"	255928	"ENSG00000143469"
+"1553045_at"	"WNT9A"	7483	"ENSG00000143816"
+"1554706_at"	"OR2L13"	284521	"ENSG00000196071"
+"1553529_at"	"TAS1R2"	80834	"ENSG00000179002"
+"1554415_at"	"TAF5L"	27097	"ENSG00000135801"
+"1556510_at"	"NFIA-AS2"	100996570	"ENSG00000237928"
+"1556511_a_at"	"NFIA-AS2"	100996570	"ENSG00000237928"
+"1558101_at"	"NFIA"	4774	"ENSG00000162599"
+"1557639_at"	"NFIA"	4774	"ENSG00000162599"
+"1554580_a_at"	"NFIA"	4774	"ENSG00000162599"
+"1559376_at"	"ATP1A1-AS1"	84852	"ENSG00000203865"
+"1552870_s_at"	"AXDND1"	126859	"ENSG00000162779"
+"1553376_a_at"	"AXDND1"	126859	"ENSG00000162779"
+"1557757_at"	"MIR34AHG"	106614088	"ENSG00000228526"
+"1557557_at"	"MATN1-AS1"	100129196	"ENSG00000186056"
+"1557558_s_at"	"MATN1-AS1"	100129196	"ENSG00000186056"
+"1556048_at"	"MAGOH-DT"	100507564	"ENSG00000226754"
+"1557373_at"	"LINC01141"	NA	"ENSG00000236963"
+"1557776_at"	"ZPLD2P"	101928303	"ENSG00000236155"
+"1559506_x_at"	"MIR137HG"	400765	"ENSG00000225206"
+"1559504_at"	"MIR137HG"	400765	"ENSG00000225206"
+"1554103_at"	""	NA	"ENSG00000288934"
+"1558832_at"	"SLC2A1-DT"	440584	"ENSG00000227533"
+"1557341_x_at"	"PIK3CD-AS2"	101929074	"ENSG00000231789"
+"1557761_s_at"	"LRRC52-AS1"	400794	"ENSG00000237463"
+"1556801_at"	"LRRC52-AS1"	400794	"ENSG00000237463"
+"1558782_a_at"	"NFYC-AS1"	NA	"ENSG00000272145"
+"1558208_at"	"TARDBP"	23435	"ENSG00000120948"
+"1552309_a_at"	"NEXN"	91624	"ENSG00000162614"
+"1557055_s_at"	"LINC01128"	643837	"ENSG00000228794"
+"1555572_at"	"CA6"	765	"ENSG00000131686"
+"1557349_at"	"RERE"	473	"ENSG00000142599"
+"1556059_s_at"	"SPEN"	23013	"ENSG00000065526"
+"1556058_s_at"	"SPEN"	23013	"ENSG00000065526"
+"1556309_s_at"	"FAAP20"	199990	"ENSG00000162585"
+"1558544_at"	"FAAP20"	199990	"ENSG00000162585"
+"1556457_s_at"	"LINC01138"	NA	"ENSG00000274020"
+"1556456_at"	"LINC01138"	NA	"ENSG00000274020"
+"1556033_at"	"LINC01138"	NA	"ENSG00000274020"
+"1557896_at"	""	NA	"ENSG00000224481"
+"1557553_at"	"PPP1R12B"	4660	"ENSG00000077157"
+"1553156_at"	"LHX4"	89884	"ENSG00000121454"
+"1553157_at"	"LHX4"	89884	"ENSG00000121454"
+"1553924_at"	"FMO9P"	116123	"ENSG00000290604"
+"1552857_a_at"	"HTR6"	3362	"ENSG00000158748"
+"1554481_a_at"	"EPB41"	2035	"ENSG00000159023"
+"1555870_at"	"RNF207"	388591	"ENSG00000158286"
+"1553741_at"	"ICMT-DT"	NA	"ENSG00000225077"
+"1554614_a_at"	"PTBP2"	58155	"ENSG00000117569"
+"1552418_at"	"TTLL10"	254173	"ENSG00000162571"
+"1552419_s_at"	"TTLL10"	254173	"ENSG00000162571"
+"1558173_a_at"	"LUZP1"	7798	"ENSG00000169641"
+"1553224_at"	"LUZP1"	7798	"ENSG00000169641"
+"1558584_at"	"UBL4B"	164153	"ENSG00000186150"
+"1554256_a_at"	"PCNX2"	80003	"ENSG00000135749"
+"1555497_a_at"	"CYP4B1"	1580	"ENSG00000142973"
+"1554393_a_at"	"AZIN2"	113451	"ENSG00000142920"
+"1559607_s_at"	"GBP6"	163351	"ENSG00000183347"
+"1559606_at"	"GBP6"	163351	"ENSG00000183347"
+"1555370_a_at"	"CAMTA1"	23261	"ENSG00000171735"
+"1552549_a_at"	"BSND"	7809	"ENSG00000162399"
+"1552548_at"	"BSND"	7809	"ENSG00000162399"
+"1555933_at"	"KIAA2013"	90231	"ENSG00000116685"
+"1553371_at"	"EPHA10"	284656	"ENSG00000183317"
+"1555831_s_at"	"LRRC41"	10489	"ENSG00000132128"
+"1558983_at"	"LRRC41"	10489	"ENSG00000132128"
+"1557623_at"	""	NA	"ENSG00000242391"
+"1558802_at"	"TM2D1"	83941	"ENSG00000162604"
+"1558113_at"	"FAM78B"	149297	"ENSG00000188859"
+"1555085_at"	"LINC01657"	101928751	"ENSG00000224718"
+"1555503_a_at"	"TMCC2"	9911	"ENSG00000133069"
+"1554980_a_at"	"ATF3"	467	"ENSG00000162772"
+"1554420_at"	"ATF3"	467	"ENSG00000162772"
+"1552383_at"	"GARIN4"	149647	"ENSG00000162771"
+"1552384_a_at"	"GARIN4"	149647	"ENSG00000162771"
+"1559483_at"	"PROX1-AS1"	NA	"ENSG00000230461"
+"1555971_s_at"	"FBXO28"	23219	"ENSG00000143756"
+"1555972_s_at"	"FBXO28"	23219	"ENSG00000143756"
+"1554600_s_at"	"LMNA"	4000	"ENSG00000160789"
+"1554351_a_at"	"TIPRL"	261726	"ENSG00000143155"
+"1553677_a_at"	"TIPRL"	261726	"ENSG00000143155"
+"1553297_a_at"	"CSF3R"	1441	"ENSG00000119535"
+"1570360_s_at"	"DDX3Y"	8653	"ENSG00000067048"
+"1570359_at"	"DDX3Y"	8653	"ENSG00000067048"
+"1569787_at"	""	NA	"ENSG00000290323"
+"1560500_at"	""	NA	"ENSG00000280372"
+"1563346_at"	"C21orf91-OT1"	246312	"ENSG00000240770"
+"1563107_at"	"LINC01687"	101927843	"ENSG00000233215"
+"1563296_at"	"LINC00572"	100861573	"ENSG00000224405"
+"1562634_at"	"LINC01689"	101927869	"ENSG00000224832"
+"1564263_at"	"LINC00330"	144817	"ENSG00000235097"
+"1563069_at"	""	NA	"ENSG00000236332"
+"1562418_at"	""	NA	"ENSG00000231236"
+"1561290_at"	"LINC01692"	339622	"ENSG00000226983"
+"1563362_at"	""	NA	"ENSG00000259981"
+"1561029_at"	"LINC01425"	101927821	"ENSG00000233997"
+"1563385_at"	"LINC00307"	266919	"ENSG00000227342"
+"1562596_at"	"LINC00437"	NA	"ENSG00000236354"
+"1564561_at"	"LINC01442"	NA	"ENSG00000227510"
+"1568807_a_at"	"RBM26-AS1"	100505538	"ENSG00000227354"
+"1564429_at"	""	NA	"ENSG00000266505"
+"1561481_at"	"LINC01700"	101928435	"ENSG00000232837"
+"1569790_at"	""	NA	"ENSG00000270835"
+"1566927_at"	""	NA	"ENSG00000288266"
+"1560863_a_at"	""	NA	"ENSG00000261627"
+"1561478_at"	"LINC00560"	100861553	"ENSG00000261666"
+"1560609_at"	"CRYZL1"	9946	"ENSG00000205758"
+"1561229_at"	""	NA	"ENSG00000272046"
+"1563190_at"	""	105372069	"ENSG00000267039"
+"1561083_at"	"LINC01254"	101927350	"ENSG00000260913"
+"1564552_at"	""	NA	"ENSG00000264596"
+"1560751_at"	"AQP4-AS1"	NA	"ENSG00000260372"
+"1561474_at"	"LINC01706"	NA	"ENSG00000224711"
+"1563127_at"	"LINC01428"	101929265	"ENSG00000228888"
+"1569794_at"	"BTBD3-AS1"	NA	"ENSG00000236526"
+"1564049_at"	""	NA	"ENSG00000230990"
+"1560548_at"	"LINC00382"	101927195	"ENSG00000229175"
+"1566656_a_at"	""	NA	"ENSG00000224356"
+"1565602_at"	"PCDH9"	5101	"ENSG00000184226"
+"1561540_at"	"LINC00343"	NA	"ENSG00000226620"
+"1563246_at"	"LINC01432"	100270679	"ENSG00000234435"
+"1562760_at"	"LINC01751"	101929288	"ENSG00000261249"
+"1562696_at"	"NALF1-IT1"	NA	"ENSG00000227248"
+"1561678_at"	"LINC01722"	101929486	"ENSG00000233048"
+"1561978_at"	""	284798	"ENSG00000230725"
+"1566671_a_at"	"PDXK"	8566	"ENSG00000160209"
+"1563088_a_at"	"AATBC"	284837	"ENSG00000215458"
+"1562990_at"	"LINC00564"	100861546	"ENSG00000260094"
+"1570552_at"	""	NA	"ENSG00000279332"
+"1562653_at"	""	101929413	"ENSG00000232900"
+"1563643_at"	""	NA	"ENSG00000285100"
+"1562829_at"	"LINC01734"	339568	"ENSG00000230324"
+"1560620_at"	""	NA	"ENSG00000276223"
+"1569859_at"	"SUCLA2-AS1"	NA	"ENSG00000227848"
+"1561339_at"	"LINC01416"	101927273	"ENSG00000260930"
+"1568249_at"	"SNORA71B"	NA	"ENSG00000235408"
+"1566658_at"	""	NA	"ENSG00000280169"
+"1563062_at"	"LINC00460"	728192	"ENSG00000233532"
+"1560941_a_at"	"SACS-AS1"	100506680	"ENSG00000229558"
+"1560940_at"	"SACS-AS1"	100506680	"ENSG00000229558"
+"1569679_at"	"CDH22"	64405	"ENSG00000149654"
+"1561455_at"	"LINC01924"	284294	"ENSG00000267134"
+"1563178_at"	"MIR4527HG"	110175910	"ENSG00000267761"
+"1569617_at"	"OSBP2"	23762	"ENSG00000184792"
+"1562030_at"	""	NA	"ENSG00000236858"
+"1562770_at"	""	221178	"ENSG00000228741"
+"1560617_at"	"MRAP-AS1"	NA	"ENSG00000232623"
+"1564400_at"	"SMIM21"	284274	"ENSG00000206026"
+"1560676_at"	"SIAH3"	283514	"ENSG00000215475"
+"1562173_a_at"	"LINC00555"	NA	"ENSG00000261057"
+"1566665_at"	"CCDC168"	643677	"ENSG00000175820"
+"1561846_s_at"	"CCDC168"	643677	"ENSG00000175820"
+"1569289_at"	"BIVM"	54841	"ENSG00000134897"
+"1562815_at"	"EFCAB6"	64800	"ENSG00000186976"
+"1598_g_at"	"GAS6"	2621	"ENSG00000183087"
+"1570447_at"	"LINC00452"	643365	"ENSG00000229373"
+"1563224_at"	""	NA	"ENSG00000278902"
+"1562264_at"	""	339685	"ENSG00000224715"
+"1563753_at"	""	NA	"ENSG00000285347"
+"1562586_at"	""	NA	"ENSG00000260542"
+"1562311_at"	""	NA	"ENSG00000279657"
+"1569069_s_at"	"TDRD3"	81550	"ENSG00000083544"
+"1560832_at"	"LINC01029"	NA	"ENSG00000265843"
+"1562426_a_at"	"STK24"	8428	"ENSG00000102572"
+"1562425_at"	"STK24"	8428	"ENSG00000102572"
+"1560881_a_at"	"LINC00112"	NA	"ENSG00000232401"
+"1562661_at"	""	NA	"ENSG00000224635"
+"1561354_at"	""	NA	"ENSG00000261035"
+"1569912_at"	""	NA	"ENSG00000235023"
+"1569906_s_at"	"PHF20"	51230	"ENSG00000025293"
+"1560988_a_at"	"LINC00556"	NA	"ENSG00000260131"
+"1566222_at"	""	NA	"ENSG00000279065"
+"1561626_at"	""	NA	"ENSG00000279642"
+"1559992_a_at"	"LINC00645"	100505967	"ENSG00000258548"
+"1562122_at"	""	NA	"ENSG00000258850"
+"1562973_at"	""	101928201	"ENSG00000236513"
+"1561353_at"	""	101927690	"ENSG00000258803"
+"1561256_at"	""	NA	"ENSG00000253510"
+"1561277_at"	""	339298	"ENSG00000263547"
+"1561514_at"	"LINC02864"	400655	"ENSG00000263711"
+"1569264_at"	"LINC02864"	400655	"ENSG00000263711"
+"1568971_at"	"PCNX4"	64430	"ENSG00000126773"
+"1561624_at"	""	NA	"ENSG00000260457"
+"1562713_a_at"	"NETO1"	81832	"ENSG00000166342"
+"1570208_at"	"LINC00907"	284260	"ENSG00000267586"
+"1561587_at"	"LINC00907"	284260	"ENSG00000267586"
+"1563265_at"	"HNF4A-AS1"	101927219	"ENSG00000229005"
+"1570119_at"	"PDS5B"	23047	"ENSG00000083642"
+"1562460_at"	"CNDP2"	55748	"ENSG00000133313"
+"1570136_at"	""	NA	"ENSG00000262119"
+"1560717_at"	"LINC02250"	NA	"ENSG00000235731"
+"1562972_at"	"LINC00929"	503519	"ENSG00000259150"
+"1561237_at"	""	101929657	"ENSG00000273523"
+"1568695_s_at"	"INTS6"	26512	"ENSG00000102786"
+"1569741_at"	"LINC01477"	101927900	"ENSG00000261715"
+"1565852_at"	""	NA	"ENSG00000279433"
+"1569802_at"	"PDE9A-AS1"	101928284	"ENSG00000225731"
+"1569099_at"	"LINC02099"	101929450	"ENSG00000253490"
+"1569100_a_at"	"LINC02099"	101929450	"ENSG00000253490"
+"1561985_at"	"C14orf39"	317761	"ENSG00000179008"
+"1569629_x_at"	""	NA	"ENSG00000285756"
+"1564232_at"	""	NA	"ENSG00000285756"
+"1562477_at"	"EBF2"	64641	"ENSG00000221818"
+"1563825_at"	""	NA	"ENSG00000278911"
+"1564878_at"	"LINC01922"	101927606	"ENSG00000259779"
+"1562222_at"	"LINC01922"	101927606	"ENSG00000259779"
+"1570085_at"	"TTLL1-AS1"	100506679	"ENSG00000230319"
+"1568907_at"	"OSBPL2"	9885	"ENSG00000130703"
+"1563315_s_at"	"ERICH1"	157697	"ENSG00000104714"
+"1562247_at"	""	NA	"ENSG00000261026"
+"1561090_at"	"LINC01538"	400654	"ENSG00000266952"
+"1562655_at"	"SCUBE1-AS1"	101927447	"ENSG00000203527"
+"1563247_at"	"LINC01656"	101927526	"ENSG00000232655"
+"1570105_at"	""	NA	"ENSG00000260416"
+"1560618_at"	""	NA	"ENSG00000260256"
+"1564242_at"	"TRPM2-AS"	NA	"ENSG00000230061"
+"1560510_at"	"ARHGEF7-IT1"	NA	"ENSG00000233644"
+"1561075_at"	""	NA	"ENSG00000285856"
+"1560897_a_at"	"KRTAP10-11"	386678	"ENSG00000243489"
+"1561099_at"	"TBC1D22A-AS1"	642757	"ENSG00000280080"
+"1560595_at"	""	NA	"ENSG00000253557"
+"1562034_at"	"LINC00163"	727699	"ENSG00000234880"
+"1568849_at"	"LINC00165"	727701	"ENSG00000261706"
+"1562724_at"	"LINC02153"	286114	"ENSG00000253199"
+"1561699_a_at"	"ATP11A-AS1"	100874205	"ENSG00000232684"
+"1568921_at"	""	NA	"ENSG00000253932"
+"1561330_at"	"DSG4"	147409	"ENSG00000175065"
+"1566809_a_at"	""	NA	"ENSG00000275139"
+"1568663_a_at"	"PWRN2"	791115	"ENSG00000260551"
+"1568662_at"	"PWRN2"	791115	"ENSG00000260551"
+"1569887_a_at"	"LINC02209"	286135	"ENSG00000253279"
+"1561414_at"	"LINC01242"	NA	"ENSG00000280683"
+"1570070_at"	""	NA	"ENSG00000226239"
+"1569590_at"	"DOCK5"	80005	"ENSG00000147459"
+"1570078_a_at"	"DOCK5"	80005	"ENSG00000147459"
+"1562054_at"	"PPP4R3C"	139420	"ENSG00000224960"
+"1560404_a_at"	"DPH6"	89978	"ENSG00000134146"
+"1569065_s_at"	"C15orf62"	643338	"ENSG00000188277"
+"1569064_at"	"C15orf62"	643338	"ENSG00000188277"
+"1561418_at"	""	NA	"ENSG00000259345"
+"1559813_at"	""	NA	"ENSG00000260046"
+"1563805_a_at"	"FAM83C"	128876	"ENSG00000125998"
+"1562557_at"	"LINC02837"	101928144	"ENSG00000264464"
+"1570156_s_at"	"FMN1"	342184	"ENSG00000248905"
+"1563559_at"	"FMN1"	342184	"ENSG00000248905"
+"1569750_at"	""	NA	"ENSG00000280118"
+"1561341_at"	""	NA	"ENSG00000279099"
+"1562590_at"	"PRTG"	283659	"ENSG00000166450"
+"1561988_at"	""	NA	"ENSG00000279881"
+"1563245_at"	"CLYBL-AS2"	100874063	"ENSG00000227659"
+"1560827_at"	"MINDY2-DT"	101928725	"ENSG00000245975"
+"1561644_x_at"	"GOLM2"	113201	"ENSG00000166734"
+"1561320_at"	""	NA	"ENSG00000279537"
+"1562263_at"	"LOXL2-AS1"	100507156	"ENSG00000253837"
+"1560297_at"	"HM13-IT1"	NA	"ENSG00000235313"
+"1561442_at"	"LINC01148"	283585	"ENSG00000258804"
+"1569470_a_at"	"FRMD5"	84978	"ENSG00000171877"
+"1569615_at"	""	NA	"ENSG00000260100"
+"1560542_at"	"MCM3AP-AS1"	114044	"ENSG00000215424"
+"1562499_at"	""	NA	"ENSG00000279521"
+"1564209_at"	"LINC00700"	NA	"ENSG00000234962"
+"1560794_at"	"TMEM252-DT"	NA	"ENSG00000226337"
+"1569698_s_at"	"KIZ-AS1"	101929591	"ENSG00000232712"
+"1560472_at"	"LINC00705"	NA	"ENSG00000225269"
+"1561309_x_at"	""	NA	"ENSG00000230010"
+"1561307_at"	""	NA	"ENSG00000230010"
+"1570120_at"	""	NA	"ENSG00000228933"
+"1562152_at"	"LINC02670"	101928298	"ENSG00000224788"
+"1569828_at"	""	NA	"ENSG00000226527"
+"1559756_at"	"LINC02656"	NA	"ENSG00000212743"
+"1561352_at"	"LINC01204"	101927528	"ENSG00000229563"
+"1564970_at"	"SETDB2"	83852	"ENSG00000136169"
+"1564972_x_at"	"SETDB2"	83852	"ENSG00000136169"
+"1570405_at"	"SKOR1-AS1"	101929076	"ENSG00000245719"
+"1560162_at"	""	NA	"ENSG00000285796"
+"1562081_a_at"	"LINC00424"	100874182	"ENSG00000226722"
+"1562080_at"	"LINC00424"	100874182	"ENSG00000226722"
+"1564338_at"	"MRTFA-AS1"	101927257	"ENSG00000232564"
+"1564974_at"	"KRTAP8-1"	337879	"ENSG00000183640"
+"1564960_at"	"KRTAP7-1"	337878	"ENSG00000274749"
+"1564803_at"	"KRTAP11-1"	337880	"ENSG00000182591"
+"1562718_at"	"SOD1-DT"	NA	"ENSG00000234509"
+"1560337_at"	"LINC01289"	286184	"ENSG00000253734"
+"1561537_at"	"OGFRP1"	NA	"ENSG00000182057"
+"1562811_at"	""	101929081	"ENSG00000249326"
+"1561322_at"	""	101927450	"ENSG00000260995"
+"1561493_at"	""	NA	"ENSG00000260392"
+"1563392_at"	"ERG"	2078	"ENSG00000157554"
+"1559800_a_at"	""	NA	"ENSG00000261442"
+"1561367_a_at"	""	100506622	"ENSG00000276476"
+"1569669_at"	"FOXR2"	139628	"ENSG00000189299"
+"1563993_at"	""	101929268	"ENSG00000253608"
+"1562761_at"	"NMRK1"	54981	"ENSG00000106733"
+"1569793_at"	""	101929372	"ENSG00000236754"
+"1559804_at"	""	NA	"ENSG00000253205"
+"1569517_at"	""	NA	"ENSG00000260509"
+"1565929_s_at"	"GOLM1"	51280	"ENSG00000135052"
+"1565928_at"	"GOLM1"	51280	"ENSG00000135052"
+"1560112_at"	"WDFY2"	115825	"ENSG00000139668"
+"1560977_a_at"	"BCL2L13"	23786	"ENSG00000099968"
+"1560566_at"	"LINC02339"	101926951	"ENSG00000279797"
+"1562949_at"	"LINC00358"	100874143	"ENSG00000229578"
+"1562827_at"	"DIO2-AS1"	100628307	"ENSG00000258766"
+"1561650_s_at"	"LINC02112"	285692	"ENSG00000249781"
+"1568739_at"	"LINC02112"	285692	"ENSG00000249781"
+"1561319_at"	"OTX2-AS1"	NA	"ENSG00000248550"
+"1568817_at"	"LINC01694"	105372840	"ENSG00000233922"
+"1563612_at"	""	NA	"ENSG00000176515"
+"1569858_at"	""	101927358	"ENSG00000227809"
+"1565927_s_at"	"NAA35"	60560	"ENSG00000135040"
+"1565026_a_at"	"OFCC1"	NA	"ENSG00000181355"
+"1564783_x_at"	"OFCC1"	NA	"ENSG00000181355"
+"1564590_a_at"	"OFCC1"	NA	"ENSG00000181355"
+"1564805_a_at"	"OFCC1"	NA	"ENSG00000181355"
+"1562591_a_at"	"OFCC1"	NA	"ENSG00000181355"
+"1565111_x_at"	"OFCC1"	NA	"ENSG00000181355"
+"1565065_at"	"OFCC1"	NA	"ENSG00000181355"
+"1563327_a_at"	"LINC01545"	724087	"ENSG00000204904"
+"1561061_at"	"LINC02226"	729506	"ENSG00000245729"
+"1563171_at"	"GNA14-AS1"	NA	"ENSG00000231373"
+"1560851_at"	"LINC00840"	100506835	"ENSG00000226808"
+"1561289_at"	"MIR4290HG"	286370	"ENSG00000227555"
+"1561225_at"	""	NA	"ENSG00000243349"
+"1562449_s_at"	"LARGE-AS1"	100506195	"ENSG00000224973"
+"1563040_s_at"	"LARGE-AS1"	100506195	"ENSG00000224973"
+"1563039_at"	"LARGE-AS1"	100506195	"ENSG00000224973"
+"1564244_a_at"	"LARGE-AS1"	100506195	"ENSG00000224973"
+"1569577_x_at"	"LINC02861"	102724927	"ENSG00000262185"
+"1561287_at"	"LINC00561"	100861545	"ENSG00000261206"
+"1560493_a_at"	"CPXCR1"	53336	"ENSG00000147183"
+"1560494_a_at"	"CPXCR1"	53336	"ENSG00000147183"
+"1569186_at"	"MYO3A"	53904	"ENSG00000095777"
+"1561286_a_at"	"DIP2A"	23181	"ENSG00000160305"
+"1566586_at"	""	NA	"ENSG00000267172"
+"1568749_at"	""	NA	"ENSG00000233656"
+"1569857_s_at"	"TPP2"	7174	"ENSG00000134900"
+"1564882_at"	"TPP2"	7174	"ENSG00000134900"
+"1569856_at"	"TPP2"	7174	"ENSG00000134900"
+"1569153_at"	"GRAMD4"	23151	"ENSG00000075240"
+"1561251_at"	"LINC01019"	285577	"ENSG00000248118"
+"1560298_at"	"LINC02123"	101929261	"ENSG00000250668"
+"1564178_at"	"LINC00841"	NA	"ENSG00000233395"
+"1569611_a_at"	"IQCH"	64799	"ENSG00000103599"
+"1569610_at"	"IQCH"	64799	"ENSG00000103599"
+"1569700_s_at"	"AK7"	122481	"ENSG00000140057"
+"1569699_at"	"AK7"	122481	"ENSG00000140057"
+"1561984_at"	"LINC00838"	100505583	"ENSG00000261683"
+"1561728_a_at"	"LINC00642"	400238	"ENSG00000233208"
+"1565743_at"	"N4BP2L2"	10443	"ENSG00000244754"
+"1562301_at"	"C8orf34"	116328	"ENSG00000165084"
+"1560485_at"	"HIVEP1"	3096	"ENSG00000095951"
+"1569124_at"	"LRRC63"	220416	"ENSG00000173988"
+"1563842_at"	"PIGG"	54872	"ENSG00000174227"
+"1563114_at"	""	NA	"ENSG00000287887"
+"1561244_at"	""	NA	"ENSG00000260786"
+"1561261_at"	""	NA	"ENSG00000260066"
+"1562866_at"	""	NA	"ENSG00000260761"
+"1561506_at"	"BARX1-DT"	101928040	"ENSG00000235601"
+"1560716_at"	"LINC02119"	101929745	"ENSG00000248461"
+"1561212_at"	"LINC02632"	NA	"ENSG00000234864"
+"1561558_at"	"PRKG1-AS1"	NA	"ENSG00000236671"
+"1562743_at"	"ZNF33B"	7582	"ENSG00000196693"
+"1566887_x_at"	""	NA	"ENSG00000258593"
+"1570266_x_at"	"ERVH-1"	NA	"ENSG00000251292"
+"1568722_at"	"TTC7B-AS1"	101928909	"ENSG00000259163"
+"1564144_at"	"LINC02533"	NA	"ENSG00000260239"
+"1569183_a_at"	"CHM"	1121	"ENSG00000188419"
+"1569472_s_at"	"TTC3"	7267	"ENSG00000182670"
+"1569218_at"	"PKIA-AS1"	101927003	"ENSG00000254266"
+"1564444_at"	"SLC24A3-AS1"	100130264	"ENSG00000179447"
+"1559835_at"	"LINC01410"	103352539	"ENSG00000238113"
+"1570155_at"	"LINC01111"	101926978	"ENSG00000254300"
+"1564772_at"	""	NA	"ENSG00000248762"
+"1561102_at"	""	101929488	"ENSG00000253871"
+"1562492_at"	""	NA	"ENSG00000287090"
+"1561210_at"	"LINC02225"	101928539	"ENSG00000249584"
+"1561881_at"	"LINC01592"	100505718	"ENSG00000253658"
+"1565775_at"	""	101927410	"ENSG00000260779"
+"1560877_a_at"	"KIAA0895LP1"	NA	"ENSG00000264714"
+"1561423_at"	"CIBAR1-DT"	642924	"ENSG00000246662"
+"1561471_at"	"CPEB2-DT"	441009	"ENSG00000247624"
+"1570424_at"	""	NA	"ENSG00000270583"
+"1563787_a_at"	"CAGE1"	285782	"ENSG00000164304"
+"1564921_at"	"KRTAP13-1"	140258	"ENSG00000198390"
+"1561221_x_at"	""	NA	"ENSG00000289814"
+"1561218_s_at"	""	NA	"ENSG00000289814"
+"1568636_a_at"	"LINC00354"	101928616	"ENSG00000226903"
+"1568635_at"	"LINC00354"	101928616	"ENSG00000226903"
+"1560842_a_at"	"TEX26-AS1"	100507064	"ENSG00000224743"
+"1562631_at"	"TEX26-AS1"	100507064	"ENSG00000224743"
+"1560503_a_at"	"TFAP2A-AS1"	NA	"ENSG00000229950"
+"1564386_at"	"TXNDC8"	255220	"ENSG00000204193"
+"1561585_at"	""	NA	"ENSG00000289900"
+"1559822_s_at"	"MTDH"	92140	"ENSG00000147649"
+"1569141_a_at"	"PPARGC1A"	10891	"ENSG00000109819"
+"1561391_at"	"STAU2-AS1"	100128126	"ENSG00000253302"
+"1560291_at"	"RIPPLY1"	92129	"ENSG00000147223"
+"1563287_at"	"LINC02270"	101929019	"ENSG00000251210"
+"1569785_at"	"SETBP1-DT"	101927943	"ENSG00000267414"
+"1563260_at"	"LINC00587"	414319	"ENSG00000204250"
+"1562621_at"	""	101927040	"ENSG00000249328"
+"1562065_at"	""	NA	"ENSG00000267239"
+"1560181_at"	"LDLRAD4-AS1"	100288122	"ENSG00000267690"
+"1561529_at"	""	NA	"ENSG00000260611"
+"1568919_at"	"LINC01492"	101928496	"ENSG00000225564"
+"1569834_at"	""	NA	"ENSG00000272329"
+"1562759_at"	""	NA	"ENSG00000265399"
+"1560359_at"	"ITGA1"	3672	"ENSG00000213949"
+"1562810_at"	""	NA	"ENSG00000229533"
+"1561713_at"	""	NA	"ENSG00000260683"
+"1559901_s_at"	"MIR99AHG"	388815	"ENSG00000215386"
+"1564460_at"	"LINC01281"	286442	"ENSG00000235304"
+"1570476_at"	""	NA	"ENSG00000280265"
+"1560862_at"	"LINC01520"	101929684	"ENSG00000230962"
+"1562750_at"	""	NA	"ENSG00000260677"
+"1563073_at"	"LINC01282"	101927449	"ENSG00000236747"
+"1570270_at"	"LINC02653"	101926942	"ENSG00000236373"
+"1569322_at"	"LINC00857"	439990	"ENSG00000237523"
+"1561688_at"	""	101929662	"ENSG00000224504"
+"1564052_at"	"TREML4"	285852	"ENSG00000188056"
+"1561461_at"	""	NA	"ENSG00000272874"
+"1562038_at"	"LIPC-AS1"	101928694	"ENSG00000259293"
+"1562610_at"	""	NA	"ENSG00000230333"
+"1566823_a_at"	""	NA	"ENSG00000279076"
+"1564909_at"	""	101928495	"ENSG00000237208"
+"1560996_at"	"LDOC1"	23641	"ENSG00000182195"
+"1561673_at"	"LINC02204"	101929151	"ENSG00000280639"
+"1564109_at"	"LINC02891"	284865	"ENSG00000249923"
+"1567014_s_at"	"CSNK2A1"	1457	"ENSG00000101266"
+"1569782_at"	""	101929116	"ENSG00000288537"
+"1560565_at"	"LINC01333"	NA	"ENSG00000249343"
+"1559746_a_at"	"ZNF718"	255403	"ENSG00000250312"
+"1569479_at"	"ZNF718"	255403	"ENSG00000250312"
+"1562066_at"	"TRIQK"	286144	"ENSG00000205133"
+"1562157_at"	"LINC01526"	101928770	"ENSG00000224995"
+"1561608_at"	""	NA	"ENSG00000248176"
+"1561518_at"	"LINC01566"	283914	"ENSG00000259841"
+"1563809_a_at"	"MCF2L"	23263	"ENSG00000126217"
+"1563808_at"	"MCF2L"	23263	"ENSG00000126217"
+"1564392_at"	"LINC00320"	387486	"ENSG00000224924"
+"1563174_at"	"LINC01243"	101929620	"ENSG00000260720"
+"1559957_a_at"	"LINC00205"	642852	"ENSG00000223768"
+"1569032_at"	"LINC00205"	642852	"ENSG00000223768"
+"1564521_x_at"	"PRMT5"	10419	"ENSG00000100462"
+"1564520_s_at"	"PRMT5"	10419	"ENSG00000100462"
+"1569344_a_at"	"LINC02889"	101927630	"ENSG00000236039"
+"1563897_at"	""	NA	"ENSG00000279694"
+"1562639_at"	"KIF6"	221458	"ENSG00000164627"
+"1564292_at"	""	NA	"ENSG00000259692"
+"1559917_a_at"	"CBR3-AS1"	100506428	"ENSG00000236830"
+"1562738_a_at"	"USP3-AS1"	NA	"ENSG00000259248"
+"1560119_at"	"LINC00937"	389634	"ENSG00000226091"
+"1561245_at"	""	102724612	"ENSG00000253894"
+"1570515_a_at"	"FILIP1"	27145	"ENSG00000118407"
+"1561891_at"	""	NA	"ENSG00000259476"
+"1564307_a_at"	"A2ML1"	144568	"ENSG00000166535"
+"1561030_at"	""	NA	"ENSG00000261357"
+"1566678_at"	""	NA	"ENSG00000279030"
+"1568879_a_at"	"LAMA3"	3909	"ENSG00000053747"
+"1563772_a_at"	"LAMA3"	3909	"ENSG00000053747"
+"1560078_at"	"LAMA3"	3909	"ENSG00000053747"
+"1568930_at"	"CLXN"	79645	"ENSG00000034239"
+"1564291_at"	""	NA	"ENSG00000260600"
+"1564443_at"	"DLEU2"	8847	"ENSG00000231607"
+"1561612_at"	"LINC02549"	101928280	"ENSG00000226497"
+"1569609_at"	""	NA	"ENSG00000282535"
+"1566956_at"	""	102723968	"ENSG00000290964"
+"1562491_at"	""	101928622	"ENSG00000250954"
+"1563116_at"	"LINC02353"	101927363	"ENSG00000251329"
+"1562583_s_at"	""	NA	"ENSG00000291041"
+"1562983_at"	"LINC02483"	441025	"ENSG00000251383"
+"1564491_at"	"SPANXA2-OT1"	619455	"ENSG00000277215"
+"1561021_at"	""	NA	"ENSG00000261502"
+"1563272_at"	"TBC1D8B"	54885	"ENSG00000133138"
+"1561298_at"	"LINC01069"	NA	"ENSG00000236133"
+"1560836_at"	"LINC01241"	101929582	"ENSG00000236306"
+"1563874_at"	"WDR72"	256764	"ENSG00000166415"
+"1568660_a_at"	"LINC01568"	100506172	"ENSG00000258779"
+"1561303_at"	"LINC01568"	100506172	"ENSG00000258779"
+"1570262_at"	"LINC02380"	NA	"ENSG00000248505"
+"1560872_at"	""	NA	"ENSG00000260695"
+"1560979_a_at"	""	NA	"ENSG00000260640"
+"1561476_at"	"CASC6"	NA	"ENSG00000224944"
+"1562665_at"	""	NA	"ENSG00000270661"
+"1565162_s_at"	"MGST1"	4257	"ENSG00000008394"
+"1564905_at"	""	NA	"ENSG00000266990"
+"1563121_at"	"LINC02126"	101927650	"ENSG00000259847"
+"1569716_at"	""	NA	"ENSG00000235728"
+"1561454_at"	"LINC02493"	101929123	"ENSG00000250819"
+"1563324_at"	""	NA	"ENSG00000217455"
+"1569996_at"	"ANKRD26P3"	100101938	"ENSG00000237636"
+"1564621_a_at"	"MEI1"	150365	"ENSG00000167077"
+"1560895_at"	""	645188	"ENSG00000223438"
+"1562023_at"	""	NA	"ENSG00000224750"
+"1566082_at"	""	NA	"ENSG00000231970"
+"1566324_a_at"	"MAF"	4094	"ENSG00000178573"
+"1569736_at"	"EYA1"	2138	"ENSG00000104313"
+"1569960_at"	"BRD7P3"	NA	"ENSG00000169075"
+"1559923_at"	"GRIK1"	2897	"ENSG00000171189"
+"1570523_s_at"	"ATG10"	83734	"ENSG00000152348"
+"1561527_at"	"LINC01514"	101927396	"ENSG00000237579"
+"1563620_at"	"BTRC"	8945	"ENSG00000166167"
+"1563010_at"	"ITGB8"	3696	"ENSG00000105855"
+"1561062_a_at"	""	101928850	"ENSG00000259530"
+"1560161_at"	""	NA	"ENSG00000259732"
+"1566526_at"	"LINC00927"	283688	"ENSG00000259361"
+"1566363_at"	"DNTT"	1791	"ENSG00000107447"
+"1569033_at"	"IGF2BP3"	10643	"ENSG00000136231"
+"1560874_at"	"CRACR2A"	84766	"ENSG00000130038"
+"1563983_at"	"TPT1-AS1"	NA	"ENSG00000170919"
+"1569537_at"	"LINC00463"	101928922	"ENSG00000234056"
+"1569792_a_at"	"ETFBKMT"	254013	"ENSG00000139160"
+"1563474_at"	"ETFBKMT"	254013	"ENSG00000139160"
+"1563475_s_at"	"ETFBKMT"	254013	"ENSG00000139160"
+"1561909_at"	""	NA	"ENSG00000254303"
+"1570153_at"	"CCDC169"	728591	"ENSG00000242715"
+"1569952_x_at"	"SDCBPP2"	NA	"ENSG00000247570"
+"1564746_at"	"SLC9B2"	133308	"ENSG00000164038"
+"1563614_at"	"MTBP"	27085	"ENSG00000172167"
+"1562107_at"	""	NA	"ENSG00000230668"
+"1562682_at"	"RORA-AS1"	101928784	"ENSG00000245534"
+"1563048_at"	""	NA	"ENSG00000222044"
+"1562058_at"	"LINC02955"	NA	"ENSG00000256995"
+"1568822_at"	"MTG2"	26164	"ENSG00000101181"
+"1560449_at"	""	101927543	"ENSG00000248318"
+"1561052_s_at"	""	NA	"ENSG00000254129"
+"1569023_a_at"	"LINC00458"	100507428	"ENSG00000234787"
+"1569287_at"	"LINC00458"	100507428	"ENSG00000234787"
+"1561278_at"	"LINC01613"	106146149	"ENSG00000261432"
+"1563529_at"	"HYDIN"	54768	"ENSG00000157423"
+"1565265_at"	""	NA	"ENSG00000255496"
+"1567575_at"	""	NA	"ENSG00000255496"
+"1563658_a_at"	"SYT9"	143425	"ENSG00000170743"
+"1569436_at"	"TUSC8"	400128	"ENSG00000237361"
+"1563568_at"	"LINC00559"	100874187	"ENSG00000261446"
+"1563063_at"	"LINC01049"	NA	"ENSG00000234384"
+"1564287_at"	"LINC00410"	144776	"ENSG00000231674"
+"1570084_at"	""	NA	"ENSG00000236643"
+"1561544_at"	"LINC02402"	NA	"ENSG00000257510"
+"1561490_at"	"NPSR1-AS1"	404744	"ENSG00000197085"
+"1562455_at"	""	101929586	"ENSG00000259175"
+"1559865_at"	""	NA	"ENSG00000261038"
+"1566257_at"	"GPR180"	160897	"ENSG00000152749"
+"1560619_at"	"TEX49"	255411	"ENSG00000257987"
+"1561721_a_at"	"C12orf40"	283461	"ENSG00000180116"
+"1562495_at"	"ANKFY1"	51479	"ENSG00000185722"
+"1561050_a_at"	"NAV2-IT1"	NA	"ENSG00000255270"
+"1559883_s_at"	"SAMHD1"	25939	"ENSG00000101347"
+"1563927_a_at"	"BHLHE22-AS1"	401463	"ENSG00000254102"
+"1560950_at"	"HECW1-IT1"	100127950	"ENSG00000181211"
+"1570484_at"	""	NA	"ENSG00000260569"
+"1562805_at"	"TLR8-AS1"	NA	"ENSG00000233338"
+"1570291_at"	"CLDN10-AS1"	100874194	"ENSG00000223392"
+"1562121_at"	"CHL1-AS1"	101927193	"ENSG00000234661"
+"1562822_at"	""	101928389	"ENSG00000235834"
+"1568733_at"	"ARMH3"	79591	"ENSG00000120029"
+"1564251_at"	"EMID1"	129080	"ENSG00000186998"
+"1565733_at"	""	NA	"ENSG00000280054"
+"1569430_at"	"PTRH1"	138428	"ENSG00000187024"
+"1560727_at"	"HEATR4"	399671	"ENSG00000187105"
+"1565563_at"	""	NA	"ENSG00000279004"
+"1559840_s_at"	"TBX18"	9096	"ENSG00000112837"
+"1566643_a_at"	""	NA	"ENSG00000267749"
+"1570465_at"	"LINC02566"	NA	"ENSG00000115934"
+"1562748_at"	"LINGO1-AS1"	253044	"ENSG00000259666"
+"1561069_at"	"LINC02624"	NA	"ENSG00000229775"
+"1560455_at"	""	339166	"ENSG00000284837"
+"1562320_at"	"NAV2-AS5"	100874012	"ENSG00000255043"
+"1561247_at"	"LINC01581"	101927112	"ENSG00000259724"
+"1560958_s_at"	""	101928516	"ENSG00000223786"
+"1561473_at"	"LINC02060"	102546226	"ENSG00000250156"
+"1566433_at"	"PLD4"	122618	"ENSG00000166428"
+"1561877_at"	"LINC01981"	100996624	"ENSG00000229243"
+"1567361_at"	"BDNF-AS"	497258	"ENSG00000245573"
+"1567576_at"	"BDNF-AS"	497258	"ENSG00000245573"
+"1560089_at"	"SLC25A25-AS1"	NA	"ENSG00000234771"
+"1570315_at"	"HCCAT5"	283902	"ENSG00000260880"
+"1562623_at"	"LINC02135"	146513	"ENSG00000268532"
+"1562016_at"	""	NA	"ENSG00000278716"
+"1563572_at"	"LINC02011"	152274	"ENSG00000260902"
+"1569365_a_at"	"RNF215"	200312	"ENSG00000099999"
+"1564051_at"	""	NA	"ENSG00000245768"
+"1561979_at"	"DAAM2-AS1"	100505635	"ENSG00000235033"
+"1562308_at"	"LINC01579"	NA	"ENSG00000258754"
+"1567286_at"	"OR5L2"	26338	"ENSG00000205030"
+"1566203_at"	""	NA	"ENSG00000273597"
+"1566204_at"	""	NA	"ENSG00000279489"
+"1560690_at"	"LINC01153"	101927889	"ENSG00000227143"
+"1560846_at"	""	NA	"ENSG00000277687"
+"1560582_a_at"	""	NA	"ENSG00000258119"
+"1560581_at"	""	NA	"ENSG00000258119"
+"1560201_at"	"ZNF713"	349075	"ENSG00000178665"
+"1560646_at"	"METTL21EP"	121952	"ENSG00000250878"
+"1561513_at"	""	101927310	"ENSG00000259582"
+"1560524_at"	"GRAPL"	400581	"ENSG00000189152"
+"1570025_at"	"TACC2"	10579	"ENSG00000138162"
+"1570546_a_at"	"TACC2"	10579	"ENSG00000138162"
+"1565628_at"	"LRRK1"	79705	"ENSG00000154237"
+"1562078_at"	""	101929172	"ENSG00000254334"
+"1569911_at"	"LINC00824"	NA	"ENSG00000254275"
+"1559925_s_at"	"SLC38A2-AS1"	NA	"ENSG00000258096"
+"1559924_at"	"SLC38A2-AS1"	NA	"ENSG00000258096"
+"1562976_at"	""	NA	"ENSG00000279785"
+"1562032_at"	""	107985579	"ENSG00000181123"
+"1563900_at"	"FAM83B"	222584	"ENSG00000168143"
+"1562319_at"	"FAM169BP"	283777	"ENSG00000283597"
+"1562927_at"	""	NA	"ENSG00000260661"
+"1568706_s_at"	"CTDSP2"	10106	"ENSG00000175215"
+"1562581_at"	"RNASE11-AS1"	254028	"ENSG00000258573"
+"1570048_at"	"DNAJC24"	120526	"ENSG00000170946"
+"1559785_at"	"TPPP2"	122664	"ENSG00000179636"
+"1561619_at"	"LINGO1-AS2"	101929478	"ENSG00000259281"
+"1562563_at"	"HCN1"	348980	"ENSG00000164588"
+"1564836_at"	""	NA	"ENSG00000260064"
+"1562211_a_at"	"ZNF491"	126069	"ENSG00000177599"
+"1568904_at"	"LINC01992"	105371708	"ENSG00000260019"
+"1561702_at"	""	NA	"ENSG00000259870"
+"1562771_at"	""	NA	"ENSG00000236389"
+"1562100_at"	""	NA	"ENSG00000279091"
+"1562351_at"	"LDHAL6CP"	NA	"ENSG00000250517"
+"1564122_at"	"GREP1"	283875	"ENSG00000262152"
+"1563089_at"	""	NA	"ENSG00000227933"
+"1563043_at"	"LINC00620"	285375	"ENSG00000224514"
+"1568618_a_at"	"GALNT1"	2589	"ENSG00000141429"
+"1562691_at"	"FGF10-AS1"	101927075	"ENSG00000248464"
+"1564022_at"	"ZNF804B"	219578	"ENSG00000182348"
+"1561233_at"	""	283387	"ENSG00000245651"
+"1562549_at"	"LINC01271"	101927586	"ENSG00000233077"
+"1560482_at"	"LINC02282"	105370424	"ENSG00000257056"
+"1562068_at"	""	NA	"ENSG00000279266"
+"1563188_at"	"LINC01986"	NA	"ENSG00000223587"
+"1570441_at"	"NAPB"	63908	"ENSG00000125814"
+"1562720_at"	"LINC02254"	101927286	"ENSG00000259664"
+"1561253_at"	"LINC02421"	101927901	"ENSG00000255970"
+"1569683_at"	"XYLB"	9942	"ENSG00000093217"
+"1561140_at"	""	124902005	"ENSG00000287826"
+"1563117_at"	"LINC01904"	388456	"ENSG00000259837"
+"1564203_at"	""	NA	"ENSG00000265125"
+"1569652_at"	"MLLT3"	4300	"ENSG00000171843"
+"1562512_at"	"SMPDL3A"	10924	"ENSG00000172594"
+"1568723_at"	"ATP9B"	374868	"ENSG00000166377"
+"1564344_at"	"ATP9B"	374868	"ENSG00000166377"
+"1560536_at"	""	NA	"ENSG00000263235"
+"1559956_at"	"SYT7"	9066	"ENSG00000011347"
+"1563204_at"	"ZNF627"	199692	"ENSG00000198551"
+"1563396_x_at"	""	NA	"ENSG00000249349"
+"1569251_a_at"	"ZNF333"	84449	"ENSG00000160961"
+"1569250_at"	"ZNF333"	84449	"ENSG00000160961"
+"1563783_a_at"	"ZNF333"	84449	"ENSG00000160961"
+"1563884_at"	""	NA	"ENSG00000274492"
+"1562915_at"	""	101927513	"ENSG00000254278"
+"1561951_at"	"SLC5A12"	159963	"ENSG00000148942"
+"1569272_at"	"PIK3C3"	5289	"ENSG00000078142"
+"1563112_at"	"FAM120AOS"	158293	"ENSG00000188938"
+"1562942_at"	"INF2"	64423	"ENSG00000203485"
+"1569849_at"	""	NA	"ENSG00000231883"
+"1565152_at"	""	NA	"ENSG00000264643"
+"1560757_at"	"TOP1MT"	116447	"ENSG00000184428"
+"1564749_at"	""	NA	"ENSG00000259968"
+"1561085_at"	""	153910	"ENSG00000236366"
+"1570644_at"	"HOMER1"	9456	"ENSG00000152413"
+"1562336_at"	"CASC2"	255082	"ENSG00000177640"
+"1564371_a_at"	"CASC2"	255082	"ENSG00000177640"
+"1564372_s_at"	"CASC2"	255082	"ENSG00000177640"
+"1570163_at"	"EGFLAM-AS4"	100852408	"ENSG00000248730"
+"1568605_at"	"JRK"	8629	"ENSG00000234616"
+"1560011_at"	"JRK"	8629	"ENSG00000234616"
+"1565806_at"	""	NA	"ENSG00000234134"
+"1560772_a_at"	""	NA	"ENSG00000260988"
+"1560771_at"	""	NA	"ENSG00000260988"
+"1561113_at"	""	NA	"ENSG00000261242"
+"1569554_at"	""	NA	"ENSG00000214770"
+"1561288_at"	"LINC00536"	100859921	"ENSG00000249917"
+"1560198_at"	"LINC00523"	283601	"ENSG00000196273"
+"1560959_a_at"	""	NA	"ENSG00000260771"
+"1569331_at"	"CNKSR3"	154043	"ENSG00000153721"
+"1570372_at"	""	NA	"ENSG00000258066"
+"1562234_a_at"	"NAV3"	89795	"ENSG00000067798"
+"1561439_at"	""	NA	"ENSG00000261710"
+"1570222_at"	"NDST4"	64579	"ENSG00000138653"
+"1561578_s_at"	"SLC25A53"	401612	"ENSG00000269743"
+"1561660_at"	"SLC25A53"	401612	"ENSG00000269743"
+"1569656_at"	"LRRN1"	57633	"ENSG00000175928"
+"1561375_at"	""	NA	"ENSG00000266456"
+"1563389_at"	"TH2LCRR"	101927761	"ENSG00000223442"
+"1562317_at"	"FAM186A"	121006	"ENSG00000185958"
+"1563656_at"	""	NA	"ENSG00000257431"
+"1559837_at"	"LINC01490"	101928420	"ENSG00000257741"
+"1569555_at"	"GDA"	9615	"ENSG00000119125"
+"1563165_at"	"LINC02994"	101928978	"ENSG00000250546"
+"1563078_at"	""	101929460	"ENSG00000229720"
+"1565073_at"	""	NA	"ENSG00000265689"
+"1569796_s_at"	"ATRNL1"	26033	"ENSG00000107518"
+"1568781_at"	"UROS"	7390	"ENSG00000188690"
+"1564591_a_at"	"TMC1"	117531	"ENSG00000165091"
+"1560371_at"	"LINC00997"	NA	"ENSG00000281332"
+"1565771_at"	""	NA	"ENSG00000268635"
+"1569302_at"	"CEP295"	85459	"ENSG00000166004"
+"1561155_at"	"CATSPER2"	117155	"ENSG00000166762"
+"1568704_a_at"	"CHERP"	10523	"ENSG00000085872"
+"1568898_at"	"PTPRK-AS1"	NA	"ENSG00000227945"
+"1561239_at"	""	NA	"ENSG00000280059"
+"1570452_at"	""	NA	"ENSG00000286215"
+"1568685_at"	""	NA	"ENSG00000260190"
+"1565830_at"	""	NA	"ENSG00000279696"
+"1562253_at"	"SLC7A11-AS1"	641364	"ENSG00000250033"
+"1563221_at"	"ALDH1L2"	160428	"ENSG00000136010"
+"1568903_at"	""	NA	"ENSG00000272037"
+"1560488_at"	"LCNL1"	401562	"ENSG00000214402"
+"1561593_at"	""	NA	"ENSG00000251199"
+"1565715_at"	""	NA	"ENSG00000260304"
+"1564802_at"	""	NA	"ENSG00000260060"
+"1562630_at"	""	101928651	"ENSG00000248529"
+"1569323_at"	"PTPRG"	5793	"ENSG00000144724"
+"1569495_at"	"SCLT1"	132320	"ENSG00000151466"
+"1569190_at"	"SCLT1"	132320	"ENSG00000151466"
+"1562745_at"	"LINC02019"	NA	"ENSG00000273356"
+"1560714_at"	"EDRF1-DT"	399821	"ENSG00000224023"
+"1569926_s_at"	"SLC34A3"	142680	"ENSG00000198569"
+"1562778_at"	"FAM166A"	401565	"ENSG00000188163"
+"1568894_at"	""	NA	"ENSG00000268240"
+"1561328_at"	"MIR3663HG"	101927704	"ENSG00000234474"
+"1570600_at"	""	NA	"ENSG00000260996"
+"1563302_at"	""	NA	"ENSG00000228391"
+"1563250_at"	"LINC01875"	101927362	"ENSG00000225942"
+"1569025_s_at"	"FAM13A"	10144	"ENSG00000138640"
+"1569024_at"	"FAM13A"	10144	"ENSG00000138640"
+"1570422_at"	"SNTG2"	54221	"ENSG00000172554"
+"1570567_at"	""	NA	"ENSG00000280235"
+"1560446_at"	""	NA	"ENSG00000284428"
+"1565748_at"	""	NA	"ENSG00000284428"
+"1561676_at"	"PRICKLE2-AS3"	NA	"ENSG00000226017"
+"1560413_at"	"LINC00298"	339788	"ENSG00000235665"
+"1569277_at"	"ZNF91"	7644	"ENSG00000167232"
+"1570026_at"	"CPXM2"	119587	"ENSG00000121898"
+"1570127_at"	"LINC01858"	101929144	"ENSG00000261615"
+"1565358_at"	"RARA"	5914	"ENSG00000131759"
+"1570152_at"	""	NA	"ENSG00000254587"
+"1569433_at"	"SAMD5"	389432	"ENSG00000203727"
+"1569351_at"	"SOBP"	55084	"ENSG00000112320"
+"1569811_at"	"LINC02510"	NA	"ENSG00000250341"
+"1561098_at"	"LINC00616"	641365	"ENSG00000248307"
+"1568604_a_at"	"CADPS"	8618	"ENSG00000163618"
+"1568603_at"	"CADPS"	8618	"ENSG00000163618"
+"1562950_at"	""	NA	"ENSG00000266893"
+"1568796_at"	"CCDC157"	550631	"ENSG00000187860"
+"1562860_at"	"LINC02850"	101928271	"ENSG00000236436"
+"1561371_at"	"MIR2052HG"	441355	"ENSG00000254349"
+"1562862_at"	"EFCAB6-DT"	NA	"ENSG00000261251"
+"1570237_at"	"FGL1"	2267	"ENSG00000104760"
+"1569755_at"	"LINC00276"	100499171	"ENSG00000230448"
+"1564264_at"	""	NA	"ENSG00000261334"
+"1569305_a_at"	"LINC01834"	107985280	"ENSG00000261316"
+"1568964_x_at"	"SPN"	6693	"ENSG00000197471"
+"1570185_at"	"LINC03068"	NA	"ENSG00000234311"
+"1564490_at"	"LINC01165"	NA	"ENSG00000229081"
+"1561605_at"	""	NA	"ENSG00000236378"
+"1569789_at"	"LINC02008"	105377180	"ENSG00000239440"
+"1563489_at"	""	285638	"ENSG00000249476"
+"1562664_at"	""	102724434	"ENSG00000237870"
+"1561652_at"	"BECN1"	8678	"ENSG00000126581"
+"1563671_at"	"AFG1L"	246269	"ENSG00000135537"
+"1562751_at"	""	NA	"ENSG00000260972"
+"1566735_at"	"LINC01345"	105376672	"ENSG00000226374"
+"1561383_at"	"LINC01777"	284661	"ENSG00000235054"
+"1561384_a_at"	"LINC01777"	284661	"ENSG00000235054"
+"1569262_x_at"	"UBE3D"	90025	"ENSG00000118420"
+"1569466_at"	"CNBD2"	140894	"ENSG00000149646"
+"1561719_at"	""	NA	"ENSG00000234597"
+"1563072_at"	""	NA	"ENSG00000251511"
+"1565618_at"	"KIAA1671"	85379	"ENSG00000197077"
+"1563478_at"	"KIAA1671"	85379	"ENSG00000197077"
+"1561417_x_at"	""	NA	"ENSG00000250723"
+"1561415_at"	""	NA	"ENSG00000250723"
+"1569659_at"	"LUARIS"	100506895	"ENSG00000231638"
+"1560861_at"	"SKAP1-AS2"	105371807	"ENSG00000235300"
+"1560570_a_at"	""	NA	"ENSG00000260331"
+"1562684_at"	""	NA	"ENSG00000261970"
+"1561795_at"	"LINC01393"	102724386	"ENSG00000225535"
+"1559948_at"	""	101927253	"ENSG00000251239"
+"1567030_at"	"SH3GL1P2"	NA	"ENSG00000264943"
+"1560856_at"	"ARHGAP26-AS1"	100874239	"ENSG00000226272"
+"1559986_at"	"LIFR-AS1"	100506495	"ENSG00000244968"
+"1561525_at"	"LINC02070"	101927494	"ENSG00000241328"
+"1562801_at"	"LINC02201"	101927379	"ENSG00000251538"
+"1568734_a_at"	"HS1BP3"	64342	"ENSG00000118960"
+"1568986_x_at"	"PIGT"	51604	"ENSG00000124155"
+"1570425_s_at"	"LATS1"	9113	"ENSG00000131023"
+"1570231_at"	"LATS1"	9113	"ENSG00000131023"
+"1563854_s_at"	""	283045	"ENSG00000288011"
+"1563853_at"	""	283045	"ENSG00000288011"
+"1570121_at"	"LINC02929"	124902436	"ENSG00000285551"
+"1569648_at"	"DACT2"	168002	"ENSG00000164488"
+"1564787_at"	"ELMOD1"	55531	"ENSG00000110675"
+"1570099_at"	""	NA	"ENSG00000282044"
+"1568870_at"	"SLC24A4"	123041	"ENSG00000140090"
+"1568922_at"	"SLC24A4"	123041	"ENSG00000140090"
+"1562294_x_at"	"ANKRD30B"	374860	"ENSG00000180777"
+"1559864_at"	"LCN6"	158062	"ENSG00000267206"
+"1569532_a_at"	"LCN15"	389812	"ENSG00000177984"
+"1566861_at"	"GATM"	2628	"ENSG00000171766"
+"1563584_at"	"PIEZO2"	63895	"ENSG00000154864"
+"1563816_at"	"GAB4"	128954	"ENSG00000215568"
+"1564053_a_at"	"YTHDF3"	253943	"ENSG00000185728"
+"1566860_at"	""	NA	"ENSG00000275672"
+"1560715_at"	"P4HA3"	283208	"ENSG00000149380"
+"1561228_at"	"LINC02431"	100506122	"ENSG00000248872"
+"1570040_at"	""	NA	"ENSG00000254506"
+"1562739_at"	"LINC02995"	285593	"ENSG00000253955"
+"1560260_at"	"LINC02995"	285593	"ENSG00000253955"
+"1562910_at"	"SH3PXD2B"	285590	"ENSG00000174705"
+"1562923_at"	"LINC02426"	101928449	"ENSG00000257747"
+"1570202_a_at"	"MRTFB"	57496	"ENSG00000186260"
+"1560648_s_at"	"TSPYL1"	7259	"ENSG00000189241"
+"1560823_at"	"LINC02433"	340017	"ENSG00000234111"
+"1569712_at"	""	101928052	"ENSG00000249419"
+"1569362_at"	"ALCAM"	214	"ENSG00000170017"
+"1561351_at"	""	NA	"ENSG00000279326"
+"1570471_at"	"ARHGEF12"	23365	"ENSG00000196914"
+"1559833_at"	"ARHGEF12"	23365	"ENSG00000196914"
+"1561488_at"	""	NA	"ENSG00000260188"
+"1569544_at"	"SAMMSON"	101927152	"ENSG00000240405"
+"1570135_at"	"ZNF230"	7773	"ENSG00000159882"
+"1568696_at"	"CDNF"	441549	"ENSG00000185267"
+"1561039_a_at"	"ZNF81"	347344	"ENSG00000197779"
+"1561038_at"	"ZNF81"	347344	"ENSG00000197779"
+"1569434_at"	"CCDC198"	55195	"ENSG00000100557"
+"1565717_s_at"	"FUS"	2521	"ENSG00000089280"
+"1562869_at"	"LINC01648"	101929406	"ENSG00000233399"
+"1563103_at"	"PLCE1-AS2"	101927049	"ENSG00000232913"
+"1562826_at"	"PLCE1-AS2"	101927049	"ENSG00000232913"
+"1561436_at"	"MARCHF10-DT"	101927877	"ENSG00000265000"
+"1561346_at"	""	NA	"ENSG00000264451"
+"1561347_a_at"	""	NA	"ENSG00000264451"
+"1569763_at"	"KCNMA1-AS1"	101929328	"ENSG00000236467"
+"1569971_at"	""	NA	"ENSG00000261364"
+"1564083_at"	"LINC01844"	NA	"ENSG00000236714"
+"1560071_a_at"	""	NA	"ENSG00000272345"
+"1560074_at"	"PRKCA"	5578	"ENSG00000154229"
+"1569048_s_at"	"LMF1"	64788	"ENSG00000103227"
+"1569784_at"	""	101930028	"ENSG00000250626"
+"1561565_at"	"LINC02530"	NA	"ENSG00000234015"
+"1568814_at"	""	NA	"ENSG00000285871"
+"1563484_at"	"LINC01847"	101927766	"ENSG00000253311"
+"1560257_at"	""	101928988	"ENSG00000259351"
+"1561566_at"	"LINC01098"	285501	"ENSG00000231171"
+"1562589_at"	"LINC01756"	101928460	"ENSG00000230523"
+"1561204_at"	""	NA	"ENSG00000279190"
+"1564097_at"	"SUCLG2-DT"	101927111	"ENSG00000241316"
+"1570212_a_at"	"TTC41P"	NA	"ENSG00000214198"
+"1570008_at"	"TTC41P"	NA	"ENSG00000214198"
+"1563471_at"	"EPG5"	57724	"ENSG00000152223"
+"1563708_at"	"SFXN5"	94097	"ENSG00000144040"
+"1569481_s_at"	"SNX22"	79856	"ENSG00000157734"
+"1569805_at"	"LINC02071"	101927274	"ENSG00000249383"
+"1569536_at"	"FLVCR2"	55640	"ENSG00000119686"
+"1570292_at"	"LINC02016"	101927123	"ENSG00000244215"
+"1563070_at"	"LINC01395"	101929557	"ENSG00000281097"
+"1561451_a_at"	"ADAM29"	11086	"ENSG00000168594"
+"1564078_at"	"ADAM29"	11086	"ENSG00000168594"
+"1564401_at"	""	400748	"ENSG00000235143"
+"1563802_at"	"LINC01226"	NA	"ENSG00000284543"
+"1563019_at"	""	NA	"ENSG00000262703"
+"1569767_at"	""	101927131	"ENSG00000262999"
+"1568699_at"	"IFT43"	112752	"ENSG00000119650"
+"1561301_at"	"MAGI1-IT1"	151877	"ENSG00000272610"
+"1560841_at"	"ING2-DT"	NA	"ENSG00000232648"
+"1560963_a_at"	"TMEM14B-DT"	118597831	"ENSG00000272097"
+"1560652_at"	"IRS4"	8471	"ENSG00000133124"
+"1562568_at"	""	400541	"ENSG00000247228"
+"1569894_at"	""	NA	"ENSG00000279434"
+"1570064_at"	""	NA	"ENSG00000250596"
+"1560410_at"	""	101928251	"ENSG00000264985"
+"1564559_at"	""	101928251	"ENSG00000264985"
+"1562011_at"	"DOCK4-AS1"	100506413	"ENSG00000225572"
+"1563770_at"	"ZBTB8B"	728116	"ENSG00000273274"
+"1568787_at"	"DDX19A-DT"	100506083	"ENSG00000261777"
+"1563013_at"	"LINC02743"	646522	"ENSG00000255258"
+"1568999_at"	"PSG4"	5672	"ENSG00000243137"
+"1563828_at"	""	NA	"ENSG00000288777"
+"1564601_at"	"LINC00221"	338005	"ENSG00000270816"
+"1570507_at"	"SCAF11"	9169	"ENSG00000139218"
+"1564414_a_at"	"PNLDC1"	154197	"ENSG00000146453"
+"1561770_at"	"RPL7L1"	285855	"ENSG00000146223"
+"1563185_at"	"LINC01828"	101927661	"ENSG00000235885"
+"1562732_at"	"TMEM232"	642987	"ENSG00000186952"
+"1568698_at"	"TMEM232"	642987	"ENSG00000186952"
+"1560220_a_at"	""	NA	"ENSG00000228274"
+"1564658_at"	"NAT16"	375607	"ENSG00000167011"
+"1562269_at"	""	NA	"ENSG00000260303"
+"1560599_a_at"	"CEP89"	84902	"ENSG00000121289"
+"1563919_a_at"	"CEP89"	84902	"ENSG00000121289"
+"1562762_at"	"PRR23E"	285311	"ENSG00000214324"
+"1570273_at"	"LRRTM4-AS1"	101927907	"ENSG00000234653"
+"1561311_at"	"LINC01654"	101927876	"ENSG00000261781"
+"1563427_at"	"LINC01809"	101928031	"ENSG00000232548"
+"1560903_at"	""	NA	"ENSG00000261462"
+"1569332_at"	"LINC00488"	677779	"ENSG00000214381"
+"1559792_at"	""	NA	"ENSG00000279295"
+"1564352_at"	"CECR3"	27442	"ENSG00000241832"
+"1567687_at"	"CECR9"	NA	"ENSG00000231004"
+"1561550_at"	"LINC03076"	101928012	"ENSG00000223646"
+"1569213_at"	"LRRC74B"	400891	"ENSG00000187905"
+"1562509_at"	"TMEM108-AS1"	NA	"ENSG00000251011"
+"1561207_at"	"LDLRAD4"	753	"ENSG00000168675"
+"1560707_at"	"GNAO1-DT"	283856	"ENSG00000246379"
+"1563162_at"	"GNAO1-DT"	283856	"ENSG00000246379"
+"1568784_at"	""	NA	"ENSG00000279523"
+"1564190_x_at"	"ZNF519"	162655	"ENSG00000175322"
+"1568873_at"	"ZNF519"	162655	"ENSG00000175322"
+"1568877_a_at"	"ACBD5"	91452	"ENSG00000107897"
+"1561491_at"	"DGAT2-DT"	283214	"ENSG00000247867"
+"1569465_at"	"FHIP1A"	729830	"ENSG00000164142"
+"1560657_at"	"TIE1"	7075	"ENSG00000066056"
+"1560240_at"	"LINC01293"	NA	"ENSG00000230836"
+"1569881_at"	"DRP2"	1821	"ENSG00000102385"
+"1570230_at"	"EVA1A-AS"	101927884	"ENSG00000231172"
+"1569597_at"	""	NA	"ENSG00000279361"
+"1564229_at"	""	107984399	"ENSG00000176984"
+"1560250_s_at"	""	NA	"ENSG00000263823"
+"1569761_x_at"	"LRRC37A7P"	NA	"ENSG00000265158"
+"1569760_at"	"LRRC37A7P"	NA	"ENSG00000265158"
+"1563341_at"	""	NA	"ENSG00000230612"
+"1562948_at"	""	NA	"ENSG00000274421"
+"1568633_a_at"	"COSMOC"	101927809	"ENSG00000260552"
+"1570279_at"	"ABCA1"	19	"ENSG00000165029"
+"1560587_s_at"	"PRDX5"	25824	"ENSG00000126432"
+"1569745_at"	"OSER1-DT"	100505783	"ENSG00000223891"
+"1569746_s_at"	"OSER1-DT"	100505783	"ENSG00000223891"
+"1569290_s_at"	"GRIA3"	2892	"ENSG00000125675"
+"1570013_at"	"LINC01782"	101927411	"ENSG00000267204"
+"1569086_at"	"EML2-AS1"	100287177	"ENSG00000267757"
+"1561723_at"	"LINC02029"	105374177	"ENSG00000241544"
+"1561323_at"	""	NA	"ENSG00000250658"
+"1561223_at"	""	NA	"ENSG00000260759"
+"1561305_at"	"LINC02355"	101927849	"ENSG00000248210"
+"1570293_at"	"TBL1X"	6907	"ENSG00000101849"
+"1563898_at"	""	NA	"ENSG00000247903"
+"1562737_at"	"LINC02465"	107986313	"ENSG00000249618"
+"1560180_at"	"GALNT14"	79623	"ENSG00000158089"
+"1560282_at"	"GPM6A-DT"	101928590	"ENSG00000249106"
+"1561340_at"	""	105378311	"ENSG00000234173"
+"1560017_at"	"TMTC3"	160418	"ENSG00000139324"
+"160020_at"	"MMP14"	4323	"ENSG00000157227"
+"1562638_at"	"NUDT16-DT"	339874	"ENSG00000250608"
+"1561348_at"	"NUDT16-DT"	339874	"ENSG00000250608"
+"1561700_at"	""	NA	"ENSG00000279134"
+"1570298_at"	""	NA	"ENSG00000257568"
+"1570182_at"	""	101927539	"ENSG00000263499"
+"1568623_a_at"	"SLC35E4"	339665	"ENSG00000100036"
+"1560384_a_at"	""	NA	"ENSG00000248115"
+"1560383_at"	""	NA	"ENSG00000248115"
+"1561314_at"	""	NA	"ENSG00000248115"
+"1561060_at"	""	NA	"ENSG00000203643"
+"1560913_at"	""	NA	"ENSG00000243797"
+"1560426_at"	"CFAP54"	144535	"ENSG00000188596"
+"1561590_a_at"	"CNTFR-AS1"	415056	"ENSG00000237159"
+"1563319_at"	"MACROH2A2"	55506	"ENSG00000099284"
+"1564595_at"	"LINC01103"	101927360	"ENSG00000234781"
+"1561559_at"	""	101927948	"ENSG00000229494"
+"1569677_a_at"	"MCMDC2"	157777	"ENSG00000178460"
+"1560604_at"	""	NA	"ENSG00000258053"
+"1563577_at"	""	NA	"ENSG00000285563"
+"1563426_a_at"	"SF1-DT"	NA	"ENSG00000269038"
+"1563321_s_at"	"MLLT10"	8028	"ENSG00000078403"
+"1561254_at"	"LINC02577"	111216280	"ENSG00000228742"
+"1559993_at"	"CHCHD2"	51142	"ENSG00000106153"
+"1563431_x_at"	""	NA	"ENSG00000269292"
+"1564823_at"	"CDC42BPG"	55561	"ENSG00000171219"
+"1569044_at"	"CDC42BPG"	55561	"ENSG00000171219"
+"1565337_at"	"DNAH6"	1768	"ENSG00000115423"
+"1561616_a_at"	"DNAH6"	1768	"ENSG00000115423"
+"1561617_at"	"DNAH6"	1768	"ENSG00000115423"
+"1565338_x_at"	"DNAH6"	1768	"ENSG00000115423"
+"1562428_at"	""	654780	"ENSG00000250685"
+"1569958_at"	"DEPDC1-AS1"	101927220	"ENSG00000234264"
+"1563003_at"	"ITGAX"	3687	"ENSG00000140678"
+"1569832_at"	"ZNF236-DT"	100131655	"ENSG00000264278"
+"1564439_a_at"	"MRGPRG-AS1"	283303	"ENSG00000236301"
+"1560686_at"	"ITGAD"	3681	"ENSG00000156886"
+"1570046_at"	""	NA	"ENSG00000261646"
+"1564362_x_at"	"ZNF843"	283933	"ENSG00000176723"
+"1560982_at"	""	NA	"ENSG00000261474"
+"1567214_a_at"	"PNN"	5411	"ENSG00000100941"
+"1560725_at"	"IL12A-AS1"	101928376	"ENSG00000244040"
+"1560019_at"	"DLGAP1-AS2"	NA	"ENSG00000262001"
+"1560522_at"	"DLGAP1-AS3"	201477	"ENSG00000263724"
+"1560773_at"	"DLGAP1"	9229	"ENSG00000170579"
+"1561448_at"	""	105375483	"ENSG00000241345"
+"1563867_at"	""	283194	"ENSG00000255240"
+"1569727_at"	"LINC01812"	101927701	"ENSG00000237013"
+"1561420_a_at"	"PDXP-DT"	101927051	"ENSG00000233360"
+"1561419_at"	"PDXP-DT"	101927051	"ENSG00000233360"
+"1565699_at"	"HECTD2"	143279	"ENSG00000165338"
+"1569900_at"	"LINC02934"	124906016	"ENSG00000204929"
+"1560354_at"	""	NA	"ENSG00000260774"
+"1567255_at"	"OR10D1P"	NA	"ENSG00000196403"
+"1562349_at"	"TRAPPC2"	6399	"ENSG00000196459"
+"1561141_at"	"LINC02544"	NA	"ENSG00000261039"
+"1563223_a_at"	"CENPI"	2491	"ENSG00000102384"
+"1560023_x_at"	"RPS20"	6224	"ENSG00000008988"
+"1560021_at"	"RPS20"	6224	"ENSG00000008988"
+"1562470_at"	"TCEANC2"	127428	"ENSG00000116205"
+"1560884_at"	"SLC17A1"	6568	"ENSG00000124568"
+"1560885_x_at"	"SLC17A1"	6568	"ENSG00000124568"
+"1569500_at"	""	NA	"ENSG00000255142"
+"1561459_at"	"DTD1-AS1"	101929526	"ENSG00000233993"
+"1564911_at"	"SNHG4"	724102	"ENSG00000281398"
+"1565325_at"	"SNHG4"	724102	"ENSG00000281398"
+"1561213_at"	"LINC01360"	101927295	"ENSG00000233973"
+"1567682_x_at"	"SNORA74A"	26821	"ENSG00000200959"
+"1567681_at"	"SNORA74A"	26821	"ENSG00000200959"
+"1561492_at"	"LINC01192"	647107	"ENSG00000241369"
+"1562988_at"	""	NA	"ENSG00000268573"
+"1570030_at"	"ZNF396"	252884	"ENSG00000186496"
+"1570140_at"	""	NA	"ENSG00000285402"
+"1563742_at"	"LINC00842"	643650	"ENSG00000285294"
+"1560713_a_at"	"ELFN2"	114794	"ENSG00000166897"
+"1563108_at"	""	NA	"ENSG00000272694"
+"1561486_at"	"ROCK1"	6093	"ENSG00000067900"
+"1562099_at"	""	NA	"ENSG00000285407"
+"1560065_at"	"PAIP2"	51247	"ENSG00000120727"
+"1561389_at"	"LINC02097"	101928205	"ENSG00000226101"
+"1564402_at"	"LINC02003"	146795	"ENSG00000264026"
+"1562908_at"	"LINC02796"	NA	"ENSG00000227016"
+"1564466_at"	"SOX9-AS1"	400618	"ENSG00000234899"
+"1568377_x_at"	"DEFB124"	245937	"ENSG00000180383"
+"1562612_at"	"ME2"	4200	"ENSG00000082212"
+"1566701_at"	"VRK3"	51231	"ENSG00000105053"
+"1564158_a_at"	"VAC14-AS1"	100130894	"ENSG00000214353"
+"1569276_at"	""	NA	"ENSG00000279122"
+"1569490_at"	"FNDC3B"	64778	"ENSG00000075420"
+"1563638_at"	"TVP23A"	780776	"ENSG00000166676"
+"1559902_at"	"MRTFA"	57591	"ENSG00000196588"
+"1561579_at"	""	NA	"ENSG00000261449"
+"1560920_s_at"	"GFI1B"	8328	"ENSG00000165702"
+"1569127_at"	"DEXI"	28955	"ENSG00000182108"
+"1565525_a_at"	"TCP11L2"	255394	"ENSG00000166046"
+"1565527_x_at"	"TCP11L2"	255394	"ENSG00000166046"
+"1569206_at"	"TCP11L2"	255394	"ENSG00000166046"
+"1569207_s_at"	"TCP11L2"	255394	"ENSG00000166046"
+"1565000_a_at"	"TCP11L2"	255394	"ENSG00000166046"
+"1563796_s_at"	"EARS2"	124454	"ENSG00000103356"
+"1559753_at"	""	NA	"ENSG00000279993"
+"1569670_at"	""	100192379	"ENSG00000226757"
+"1569791_at"	"STK4"	6789	"ENSG00000101109"
+"1568858_at"	""	NA	"ENSG00000260751"
+"1568869_at"	"STAG1-DT"	NA	"ENSG00000261758"
+"1563316_at"	"NEGR1-IT1"	100852409	"ENSG00000228853"
+"1566647_s_at"	"LDC1P"	149086	"ENSG00000260386"
+"1569042_at"	"LRP1"	4035	"ENSG00000123384"
+"1569426_at"	"LINC01664"	100996342	"ENSG00000235478"
+"1570065_at"	"MIR3667HG"	348645	"ENSG00000188511"
+"1570235_at"	""	149047	"ENSG00000237413"
+"1564446_at"	"EPIC1"	284930	"ENSG00000224271"
+"1563009_at"	"EPIC1"	284930	"ENSG00000224271"
+"1570219_at"	""	NA	"ENSG00000230928"
+"1561573_at"	"LINC02620"	101927523	"ENSG00000225768"
+"1561557_at"	"LIPA"	3988	"ENSG00000107798"
+"1561064_a_at"	"LINC01638"	105372978	"ENSG00000233521"
+"1562352_at"	""	NA	"ENSG00000244738"
+"1562353_x_at"	""	NA	"ENSG00000244738"
+"1559936_at"	""	NA	"ENSG00000260095"
+"1560550_at"	"LINC01644"	101927722	"ENSG00000218357"
+"1559920_a_at"	"HDHD5-AS1"	100130717	"ENSG00000185837"
+"1564379_at"	""	NA	"ENSG00000279268"
+"1563637_at"	"TEDC2-AS1"	729652	"ENSG00000259895"
+"1569136_at"	"MGAT4A"	11320	"ENSG00000071073"
+"1561243_at"	"TMEM105"	284186	"ENSG00000185332"
+"1569140_at"	"UBR2"	23304	"ENSG00000024048"
+"1560029_a_at"	"NKAPD1"	55216	"ENSG00000150776"
+"1560028_at"	"NKAPD1"	55216	"ENSG00000150776"
+"1562940_at"	"DOCK7"	85440	"ENSG00000116641"
+"1569316_at"	"TRIM24"	8805	"ENSG00000122779"
+"1570587_at"	"MPRIP-AS1"	NA	"ENSG00000225442"
+"1566884_at"	""	NA	"ENSG00000263624"
+"1568974_at"	""	100294720	"ENSG00000225391"
+"1566766_a_at"	"MACC1"	346389	"ENSG00000183742"
+"1561294_a_at"	"LINC02347"	100128554	"ENSG00000214043"
+"1563243_at"	"DGCR5"	26220	"ENSG00000273032"
+"1565868_at"	""	NA	"ENSG00000251194"
+"1570042_a_at"	"ADAM9"	8754	"ENSG00000168615"
+"1564072_at"	"MYH16"	NA	"ENSG00000002079"
+"1563300_at"	"LINC02443"	101929584	"ENSG00000256115"
+"1568598_at"	"KAZALD1"	81621	"ENSG00000107821"
+"1560145_at"	"MKLN1"	4289	"ENSG00000128585"
+"1569341_at"	"POLH-AS1"	NA	"ENSG00000203362"
+"1562637_at"	"SAMD12"	401474	"ENSG00000177570"
+"1569348_at"	"TPTEP1"	387590	"ENSG00000290418"
+"1561886_a_at"	"SLC39A14"	23516	"ENSG00000104635"
+"1562616_at"	""	NA	"ENSG00000260217"
+"1564323_at"	"LINC02023"	NA	"ENSG00000239205"
+"1561105_at"	"SLC7A14-AS1"	101928583	"ENSG00000285051"
+"1562961_at"	""	NA	"ENSG00000267672"
+"1563181_a_at"	"CALY"	50632	"ENSG00000130643"
+"1562051_at"	"MIR646HG"	284757	"ENSG00000228340"
+"1568742_at"	"MIR646HG"	284757	"ENSG00000228340"
+"1565772_at"	"PAK1"	5058	"ENSG00000149269"
+"1570376_at"	"LINC00689"	154822	"ENSG00000231419"
+"1563068_at"	"LINC02910"	284756	"ENSG00000176659"
+"1563528_at"	"RAPGEF4-AS1"	91149	"ENSG00000228016"
+"1562478_at"	"LINC00659"	NA	"ENSG00000228705"
+"1561274_at"	""	1416	"ENSG00000291087"
+"1568711_a_at"	"LINC02424"	105369860	"ENSG00000258220"
+"1569882_at"	"NPHP3-AS1"	348808	"ENSG00000248724"
+"1568848_at"	""	NA	"ENSG00000226308"
+"1566528_at"	"CUX2"	23316	"ENSG00000111249"
+"1569403_at"	"SUGCT-AS1"	101928716	"ENSG00000203446"
+"1569557_at"	"ZNF248"	57209	"ENSG00000198105"
+"1569001_at"	"BMP1"	649	"ENSG00000168487"
+"1569002_x_at"	"BMP1"	649	"ENSG00000168487"
+"1569765_at"	""	NA	"ENSG00000227619"
+"1570224_at"	"LINC01449"	101928773	"ENSG00000224017"
+"1570167_at"	""	NA	"ENSG00000267610"
+"1570225_at"	"TMEM150B"	284417	"ENSG00000180061"
+"1566482_at"	""	NA	"ENSG00000250280"
+"1569052_at"	"IGF2R"	3482	"ENSG00000197081"
+"1570058_at"	"KMT5C"	84787	"ENSG00000133247"
+"1567036_at"	"C20orf181"	NA	"ENSG00000279610"
+"1563143_at"	"MSRB3-AS1"	105369187	"ENSG00000250748"
+"1562783_at"	""	NA	"ENSG00000280002"
+"1570653_at"	"RNU6-1306P"	NA	"ENSG00000202089"
+"1564626_at"	""	NA	"ENSG00000273824"
+"1563344_at"	"ZNF628-DT"	NA	"ENSG00000269859"
+"1569614_s_at"	"LCN8"	138307	"ENSG00000204001"
+"1560038_at"	""	100506071	"ENSG00000258525"
+"1564463_at"	"KLF13"	51621	"ENSG00000169926"
+"1561813_at"	""	NA	"ENSG00000279235"
+"1562742_at"	"LINC01362"	103283057	"ENSG00000230817"
+"1559806_at"	""	NA	"ENSG00000260422"
+"1560511_at"	""	NA	"ENSG00000273287"
+"1563209_a_at"	"MACROD2"	140733	"ENSG00000172264"
+"1561677_at"	"MACROD2"	140733	"ENSG00000172264"
+"1569259_at"	"DAB1-AS1"	101926890	"ENSG00000226759"
+"1562943_at"	"MACROD2-AS1"	100379174	"ENSG00000235914"
+"1561927_at"	"ANKUB1"	389161	"ENSG00000206199"
+"1561928_s_at"	"ANKUB1"	389161	"ENSG00000206199"
+"1562239_at"	"SGSM1"	129049	"ENSG00000167037"
+"1561487_at"	""	NA	"ENSG00000259814"
+"1569372_at"	"LINC02525"	NA	"ENSG00000230269"
+"1561019_at"	"GNB5"	10681	"ENSG00000069966"
+"1561403_at"	"SOHLH1"	402381	"ENSG00000165643"
+"1560175_at"	""	NA	"ENSG00000291067"
+"1563608_a_at"	"KCNT1"	57582	"ENSG00000107147"
+"1569462_x_at"	"KCNT1"	57582	"ENSG00000107147"
+"1569461_at"	"KCNT1"	57582	"ENSG00000107147"
+"1561402_at"	"LINC00880"	339894	"ENSG00000243629"
+"1561528_at"	"LINC02405"	101927592	"ENSG00000249345"
+"1570357_at"	"STX8"	9482	"ENSG00000170310"
+"1562765_at"	"WWTR1-AS1"	100128025	"ENSG00000241313"
+"1565585_at"	"ZSCAN5A-AS1"	NA	"ENSG00000267549"
+"1563725_at"	"ZNF583"	147949	"ENSG00000198440"
+"1562606_a_at"	"LINC02709"	440028	"ENSG00000245522"
+"1560750_at"	"LINC01854"	151121	"ENSG00000204460"
+"1565546_at"	"RNF141"	50862	"ENSG00000110315"
+"1568612_at"	"GABRG2"	2566	"ENSG00000113327"
+"1560020_at"	"DNAJC13"	23317	"ENSG00000138246"
+"1564627_at"	"DNAJC13"	23317	"ENSG00000138246"
+"1562979_at"	""	NA	"ENSG00000267650"
+"1564962_at"	"ZNF92"	168374	"ENSG00000146757"
+"1564963_x_at"	"ZNF92"	168374	"ENSG00000146757"
+"1561035_at"	""	102723335	"ENSG00000259540"
+"1568625_at"	"SVOP"	55530	"ENSG00000166111"
+"1563244_at"	""	NA	"ENSG00000257327"
+"1563086_at"	""	101928894	"ENSG00000255314"
+"1563135_at"	"LINC02375"	101927616	"ENSG00000256362"
+"1563064_at"	""	NA	"ENSG00000260042"
+"1564819_at"	""	NA	"ENSG00000257726"
+"1560397_s_at"	"KLHL6"	89857	"ENSG00000172578"
+"1560396_at"	"KLHL6"	89857	"ENSG00000172578"
+"1568915_at"	""	NA	"ENSG00000230454"
+"1562082_at"	"TRAV36DV7"	NA	"ENSG00000211815"
+"1561091_at"	"LINC01209"	101928684	"ENSG00000228308"
+"1560748_at"	"GLIS3-AS2"	NA	"ENSG00000228322"
+"1564537_a_at"	"ASB10"	136371	"ENSG00000146926"
+"1564536_at"	"ASB10"	136371	"ENSG00000146926"
+"1566509_s_at"	"FBXO9"	26268	"ENSG00000112146"
+"1570238_at"	"ZNF527"	84503	"ENSG00000189164"
+"1569366_a_at"	"ZNF569"	148266	"ENSG00000196437"
+"1569833_at"	"LINC01585"	101929765	"ENSG00000245479"
+"1560091_a_at"	"PHF21B"	112885	"ENSG00000056487"
+"1562309_s_at"	"PHF21B"	112885	"ENSG00000056487"
+"1560533_at"	"ALG14-AS1"	101928098	"ENSG00000230427"
+"1569709_at"	"SZT2"	23334	"ENSG00000198198"
+"1567257_at"	"OR1J2"	26740	"ENSG00000197233"
+"1567284_at"	"OR1J4"	26219	"ENSG00000239590"
+"1567065_at"	"OR1Q1"	158131	"ENSG00000165202"
+"1570354_s_at"	"ZNF169"	169841	"ENSG00000175787"
+"1560922_s_at"	"ZNF169"	169841	"ENSG00000175787"
+"1560921_at"	"ZNF169"	169841	"ENSG00000175787"
+"1569443_s_at"	""	NA	"ENSG00000232063"
+"1561554_at"	"MYOCD-AS1"	101928418	"ENSG00000227274"
+"1560752_at"	"FBXW2"	26190	"ENSG00000119402"
+"1563646_a_at"	"TMEM67"	91147	"ENSG00000164953"
+"1569377_at"	"TMEM67"	91147	"ENSG00000164953"
+"1569411_at"	"TMEM67"	91147	"ENSG00000164953"
+"1569835_at"	""	NA	"ENSG00000267808"
+"1564139_at"	"A2M-AS1"	144571	"ENSG00000245105"
+"1568892_at"	"LRIG2-DT"	100996251	"ENSG00000238198"
+"1560030_at"	"CPEB1-AS1"	283692	"ENSG00000259462"
+"1570032_at"	"AP3B2"	8120	"ENSG00000103723"
+"1564539_at"	"LINC02026"	647323	"ENSG00000214146"
+"1561279_at"	""	NA	"ENSG00000260059"
+"1561110_at"	"BRPF3-AS1"	NA	"ENSG00000246982"
+"1569685_at"	"COX10"	1352	"ENSG00000006695"
+"1562719_at"	"LINC01676"	101928476	"ENSG00000230768"
+"1565843_s_at"	"BRPF3"	27154	"ENSG00000096070"
+"1564701_at"	""	NA	"ENSG00000235070"
+"1562928_at"	""	NA	"ENSG00000279844"
+"1561577_at"	""	101928475	"ENSG00000232058"
+"1570534_a_at"	"ZNF483"	158399	"ENSG00000173258"
+"1559988_at"	"ZNF483"	158399	"ENSG00000173258"
+"1561964_at"	""	NA	"ENSG00000177418"
+"1563849_at"	"SH2D4B"	387694	"ENSG00000178217"
+"1562693_at"	"TMX4-AS1"	NA	"ENSG00000229766"
+"1561360_at"	"ADGB-DT"	101928661	"ENSG00000237468"
+"1561215_at"	"ITPRID2-DT"	NA	"ENSG00000260742"
+"1564790_at"	"ST7-AS2"	93654	"ENSG00000226367"
+"1562694_at"	"IGF2BP2-AS1"	646600	"ENSG00000163915"
+"1562832_at"	"IGF2BP2-AS1"	646600	"ENSG00000163915"
+"1563208_s_at"	"IGF2BP2-AS1"	646600	"ENSG00000163915"
+"1563207_at"	"IGF2BP2-AS1"	646600	"ENSG00000163915"
+"1562029_at"	""	101927495	"ENSG00000250230"
+"1561460_at"	"NCKAP5-AS1"	101928185	"ENSG00000233729"
+"1564308_a_at"	"MPP7"	143098	"ENSG00000150054"
+"1570269_at"	""	NA	"ENSG00000260142"
+"1568916_at"	"SPIRE2"	84501	"ENSG00000204991"
+"1569723_a_at"	"SPIRE2"	84501	"ENSG00000204991"
+"1561708_at"	"CGAS"	115004	"ENSG00000164430"
+"1561472_at"	""	NA	"ENSG00000223492"
+"1567273_at"	"OR2K2"	26248	"ENSG00000171133"
+"1562463_at"	"LINC01920"	101929260	"ENSG00000236049"
+"1563878_a_at"	""	338963	"ENSG00000228141"
+"1569368_at"	"ACTG1P17"	283693	"ENSG00000259315"
+"1565912_at"	"ACTG1P17"	283693	"ENSG00000259315"
+"1565911_at"	""	NA	"ENSG00000279758"
+"1560163_at"	""	112268198	"ENSG00000279801"
+"1562764_at"	""	NA	"ENSG00000267466"
+"1565653_at"	"MROH1"	727957	"ENSG00000179832"
+"1561400_at"	"LINC01180"	101927017	"ENSG00000266979"
+"1562484_at"	"MEIOC"	284071	"ENSG00000180336"
+"1566480_x_at"	""	NA	"ENSG00000279879"
+"1569753_at"	""	101928940	"ENSG00000256195"
+"1563310_a_at"	""	NA	"ENSG00000258473"
+"1562052_at"	""	101927159	"ENSG00000229042"
+"1561531_at"	"PLCH1-AS1"	100874035	"ENSG00000239508"
+"1569616_at"	"GMNC"	647309	"ENSG00000205835"
+"1569846_at"	""	NA	"ENSG00000248975"
+"1564010_at"	"CAST"	831	"ENSG00000153113"
+"1569194_at"	"ZNF789"	285989	"ENSG00000198556"
+"1561408_at"	"LINC01998"	107986046	"ENSG00000243321"
+"1561560_at"	""	NA	"ENSG00000260171"
+"1570267_at"	"KIF18B-DT"	NA	"ENSG00000267334"
+"1568899_at"	"LINC01970"	101929511	"ENSG00000265692"
+"1564841_at"	"GABRA2"	2555	"ENSG00000151834"
+"1729_at"	"TRADD"	8717	"ENSG00000102871"
+"1568951_at"	"ZNF280D"	54816	"ENSG00000137871"
+"1564160_at"	"DTHD1"	401124	"ENSG00000197057"
+"1564632_at"	""	NA	"ENSG00000279551"
+"1562232_at"	""	NA	"ENSG00000272983"
+"1562288_at"	"LINC02798"	107985194	"ENSG00000227082"
+"1569780_at"	"CNTNAP2-AS1"	101928700	"ENSG00000236795"
+"1569431_at"	"PAFAH1B2"	5049	"ENSG00000168092"
+"1569681_at"	"LINC01876"	101929378	"ENSG00000226383"
+"1569074_at"	"SRRM3"	222183	"ENSG00000177679"
+"1570423_at"	"FLG-AS1"	339400	"ENSG00000237975"
+"1568872_at"	"CRPPA-AS1"	100506025	"ENSG00000229688"
+"1562049_at"	"SCTR-AS1"	107105282	"ENSG00000231013"
+"1564399_a_at"	"ARMCX4"	100131755	"ENSG00000196440"
+"1567023_at"	"OR5AK4P"	219525	"ENSG00000283307"
+"1564403_at"	"SMIM27"	100129250	"ENSG00000235453"
+"1569410_at"	"FLG2"	388698	"ENSG00000143520"
+"1570383_at"	""	NA	"ENSG00000177725"
+"1562861_at"	"LINC01231"	NA	"ENSG00000236511"
+"1565795_at"	"DUOX1"	53905	"ENSG00000137857"
+"1565834_a_at"	"KANK1"	23189	"ENSG00000107104"
+"1565833_at"	"KANK1"	23189	"ENSG00000107104"
+"1562740_at"	"DNAJB8-AS1"	285224	"ENSG00000242049"
+"1568639_a_at"	"GATA2-AS1"	NA	"ENSG00000244300"
+"1561516_at"	"LINC01649"	NA	"ENSG00000228127"
+"1564254_at"	"KY"	339855	"ENSG00000174611"
+"1569991_at"	"KY"	339855	"ENSG00000174611"
+"1568615_a_at"	"SRD5A3-AS1"	100506462	"ENSG00000249700"
+"1560622_at"	"TMEM165"	55858	"ENSG00000134851"
+"1562480_at"	""	NA	"ENSG00000259395"
+"1560116_a_at"	"NEDD1"	121441	"ENSG00000139350"
+"1561545_at"	"EPN2-AS1"	100874018	"ENSG00000235397"
+"1568844_at"	""	101929528	"ENSG00000253281"
+"1563513_at"	"SYTL4"	94121	"ENSG00000102362"
+"1563532_at"	"HMCN2"	256158	"ENSG00000148357"
+"1564117_at"	"HMCN2"	256158	"ENSG00000148357"
+"1562220_at"	""	NA	"ENSG00000261055"
+"1560207_at"	"RAD21-AS1"	644660	"ENSG00000253327"
+"1569518_at"	""	NA	"ENSG00000245025"
+"1560496_at"	"MRGPRF-AS1"	101928200	"ENSG00000256508"
+"1563042_at"	""	338694	"ENSG00000261070"
+"1568719_s_at"	"SLC22A23"	63027	"ENSG00000137266"
+"1568718_at"	"SLC22A23"	63027	"ENSG00000137266"
+"1562036_at"	"BMP2K-DT"	NA	"ENSG00000260278"
+"1563445_x_at"	"CTSLP8"	NA	"ENSG00000234575"
+"1563868_a_at"	"SPATA31E1"	286234	"ENSG00000177992"
+"1563361_at"	"RNF216"	54476	"ENSG00000011275"
+"1562026_at"	"WNK2"	65268	"ENSG00000165238"
+"1569385_s_at"	"TET2"	54790	"ENSG00000168769"
+"1568932_at"	""	105378231	"ENSG00000260581"
+"1561413_at"	"CLMAT3"	101927096	"ENSG00000249035"
+"1563997_at"	"CEP41"	95681	"ENSG00000106477"
+"1562558_at"	"LINC01720"	440704	"ENSG00000231175"
+"1564193_at"	"KIAA2012"	100652824	"ENSG00000182329"
+"1561508_at"	""	NA	"ENSG00000267342"
+"1564691_at"	"TMSB15B-AS1"	NA	"ENSG00000231728"
+"1569315_s_at"	"EOLA2-DT"	NA	"ENSG00000235703"
+"1562839_at"	"EOLA2-DT"	NA	"ENSG00000235703"
+"1563022_at"	"CCDC160"	347475	"ENSG00000203952"
+"1560507_at"	"AWAT1"	158833	"ENSG00000204195"
+"1561868_at"	""	NA	"ENSG00000261305"
+"1565537_at"	"NKX1-1"	54729	"ENSG00000235608"
+"1560665_at"	"SCPEP1"	59342	"ENSG00000121064"
+"1562214_at"	"LINC01107"	NA	"ENSG00000225493"
+"1569126_at"	"CCNC"	892	"ENSG00000112237"
+"1562330_s_at"	"CSMD1"	64478	"ENSG00000183117"
+"1562329_at"	"CSMD1"	64478	"ENSG00000183117"
+"1561224_at"	"LINC02179"	101927228	"ENSG00000261623"
+"1563219_at"	"NADK2-AS1"	101056700	"ENSG00000245711"
+"1566721_at"	"SVEP1"	79987	"ENSG00000165124"
+"1569818_at"	""	NA	"ENSG00000277550"
+"1569781_at"	"IQCM"	285423	"ENSG00000234828"
+"1559909_a_at"	"TIMM17B"	10245	"ENSG00000126768"
+"1561394_s_at"	"KIAA1755"	85449	"ENSG00000149633"
+"1570061_at"	"RAB7A"	7879	"ENSG00000075785"
+"1561104_at"	"ADGRF5-AS1"	NA	"ENSG00000225730"
+"1564674_a_at"	"CDC20B"	166979	"ENSG00000164287"
+"1566740_at"	"PLCE1"	51196	"ENSG00000138193"
+"1561523_at"	"CCDC65"	85478	"ENSG00000139537"
+"1561741_at"	"DDX59-AS1"	101929224	"ENSG00000260088"
+"1560187_at"	"LINC02770"	NA	"ENSG00000228215"
+"1570253_a_at"	"RHEBL1"	121268	"ENSG00000167550"
+"1560631_at"	"CALCOCO2"	10241	"ENSG00000136436"
+"1565668_at"	""	NA	"ENSG00000200309"
+"1564872_at"	""	NA	"ENSG00000225498"
+"1568667_s_at"	"PLIN5"	440503	"ENSG00000214456"
+"1560457_x_at"	"PLIN5"	440503	"ENSG00000214456"
+"1560456_at"	"PLIN5"	440503	"ENSG00000214456"
+"1561485_at"	""	NA	"ENSG00000270540"
+"1560469_at"	"NR5A2"	2494	"ENSG00000116833"
+"1570297_at"	"G6PD"	2539	"ENSG00000160211"
+"1562818_at"	"NMNAT2"	23057	"ENSG00000157064"
+"1564684_at"	"BTN2A2"	10385	"ENSG00000124508"
+"1562982_at"	"LINC01448"	101928795	"ENSG00000238284"
+"1563404_at"	"LINC01775"	101928602	"ENSG00000267201"
+"1560523_at"	""	NA	"ENSG00000232006"
+"1562786_at"	"LINC01864"	101928886	"ENSG00000267522"
+"1568884_at"	"DNAJC2"	27000	"ENSG00000105821"
+"1567245_at"	"OR5J2"	282775	"ENSG00000174957"
+"1569392_at"	"TECR"	9524	"ENSG00000099797"
+"1560821_at"	"ARHGAP22"	58504	"ENSG00000128805"
+"1564504_at"	"ASIC5"	51802	"ENSG00000256394"
+"1565150_at"	"GDPGP1"	390637	"ENSG00000183208"
+"1562689_at"	"GCSIR"	151484	"ENSG00000232520"
+"1562074_a_at"	"UNC13C"	440279	"ENSG00000137766"
+"1569969_a_at"	"UNC13C"	440279	"ENSG00000137766"
+"1564200_at"	"LINC00607"	646324	"ENSG00000235770"
+"1561618_at"	"DPP10-AS3"	NA	"ENSG00000231538"
+"1568611_at"	"P4HA2"	8974	"ENSG00000072682"
+"1570505_at"	"ABCB4"	5244	"ENSG00000005471"
+"1562514_at"	""	NA	"ENSG00000261182"
+"1564257_at"	"ACTA2-AS1"	NA	"ENSG00000180139"
+"1566504_at"	"LINC00710"	NA	"ENSG00000229240"
+"1560543_at"	"GRK4"	2868	"ENSG00000125388"
+"1560255_at"	"CELF2-AS1"	414196	"ENSG00000181800"
+"1569189_at"	"TTC9C"	283237	"ENSG00000162222"
+"1562201_x_at"	""	NA	"ENSG00000248840"
+"1569090_x_at"	"LINC00957"	NA	"ENSG00000235314"
+"1569089_a_at"	"LINC00957"	NA	"ENSG00000235314"
+"1564208_x_at"	"LINC00957"	NA	"ENSG00000235314"
+"1564207_at"	"LINC00957"	NA	"ENSG00000235314"
+"1569311_at"	"JPX"	554203	"ENSG00000225470"
+"1566152_a_at"	"MIR130AHG"	NA	"ENSG00000254602"
+"1566151_at"	"YPEL4"	219539	"ENSG00000166793"
+"1560755_at"	"DNAJC9"	23234	"ENSG00000213551"
+"1563340_at"	""	NA	"ENSG00000260500"
+"1560184_at"	"TMCO5A"	145942	"ENSG00000166069"
+"1561526_at"	""	NA	"ENSG00000235538"
+"1561242_at"	"LINC00632"	286411	"ENSG00000203930"
+"1568820_a_at"	"BEND6"	221336	"ENSG00000151917"
+"1570301_at"	""	NA	"ENSG00000254288"
+"1568702_a_at"	"PAAF1"	80227	"ENSG00000175575"
+"1568717_a_at"	"FKBP15"	23307	"ENSG00000119321"
+"1559980_at"	"ZNF7"	7553	"ENSG00000147789"
+"1562348_at"	"LINC00664"	400680	"ENSG00000268658"
+"1563005_at"	"ERLNC1"	101929441	"ENSG00000230550"
+"1568730_at"	"CARD11-AS1"	NA	"ENSG00000237286"
+"1560838_at"	"FAM217A"	222826	"ENSG00000145975"
+"1568897_at"	""	NA	"ENSG00000225122"
+"1564148_at"	""	NA	"ENSG00000271933"
+"1564337_at"	""	101929538	"ENSG00000245008"
+"1563132_at"	"LINC01169"	102723165	"ENSG00000259471"
+"1563179_at"	""	NA	"ENSG00000254821"
+"1560412_at"	"ECI2-DT"	100507506	"ENSG00000234817"
+"1569111_at"	"SOX13"	9580	"ENSG00000143842"
+"1569634_at"	"SEPSECS"	51091	"ENSG00000109618"
+"1563821_at"	"LINC00858"	170425	"ENSG00000229404"
+"1570106_at"	""	NA	"ENSG00000225300"
+"1561556_at"	""	NA	"ENSG00000223842"
+"1569995_at"	"MGAT4D"	152586	"ENSG00000205301"
+"1565406_a_at"	"LHX9"	56956	"ENSG00000143355"
+"1565407_at"	"LHX9"	56956	"ENSG00000143355"
+"1562736_at"	"LHX9"	56956	"ENSG00000143355"
+"1560253_at"	"LHX9"	56956	"ENSG00000143355"
+"1563681_at"	""	NA	"ENSG00000260205"
+"1561685_a_at"	"LINC02487"	NA	"ENSG00000203688"
+"1563894_at"	"LINC02487"	NA	"ENSG00000203688"
+"1569054_at"	"SLC1A3"	6507	"ENSG00000079215"
+"1566624_at"	"SLC1A3"	6507	"ENSG00000079215"
+"1569428_at"	"DGKA"	1606	"ENSG00000065357"
+"1561411_at"	"LINC01222"	NA	"ENSG00000233410"
+"1568924_a_at"	"IQUB"	154865	"ENSG00000164675"
+"1562930_at"	"SRRM2-AS1"	100128788	"ENSG00000205913"
+"1560334_at"	"MEGF11"	84465	"ENSG00000157890"
+"1562802_at"	"LINC00210"	100885798	"ENSG00000231814"
+"1562891_at"	""	105371672	"ENSG00000287364"
+"1568887_at"	""	NA	"ENSG00000260698"
+"1560373_a_at"	""	NA	"ENSG00000277007"
+"1560372_at"	""	NA	"ENSG00000277007"
+"1562834_at"	"DISP2"	85455	"ENSG00000140323"
+"1564777_at"	"HYAL6P"	NA	"ENSG00000228211"
+"1569193_at"	""	NA	"ENSG00000260855"
+"1563632_at"	"TMEM72-AS1"	220980	"ENSG00000224812"
+"1562387_at"	"CPLANE1"	65250	"ENSG00000197603"
+"1561127_at"	"ADARB2-AS1"	642394	"ENSG00000205696"
+"1569738_at"	"LINC01653"	101929631	"ENSG00000232100"
+"1564276_at"	"IRF1-AS1"	NA	"ENSG00000197536"
+"1561445_at"	""	NA	"ENSG00000261382"
+"1566798_at"	""	NA	"ENSG00000273218"
+"1559867_at"	""	124902629	"ENSG00000250041"
+"1563235_at"	""	NA	"ENSG00000236230"
+"1566908_at"	"STPG3"	441476	"ENSG00000197768"
+"1861_at"	"BAD"	572	"ENSG00000002330"
+"1560153_at"	"FRAS1"	80144	"ENSG00000138759"
+"1569807_at"	"LINC01741"	101928778	"ENSG00000236720"
+"1564285_at"	"HFM1"	164045	"ENSG00000162669"
+"1570362_at"	""	NA	"ENSG00000260651"
+"1563814_at"	"C2orf50"	130813	"ENSG00000150873"
+"1565346_a_at"	"ATP1A4"	480	"ENSG00000132681"
+"1564241_at"	"ATP1A4"	480	"ENSG00000132681"
+"1560844_at"	""	105378052	"ENSG00000216621"
+"1560177_at"	"CCDC66"	285331	"ENSG00000180376"
+"1566513_a_at"	"GNG4"	2786	"ENSG00000168243"
+"1562447_a_at"	"PPP1R26-AS1"	100506599	"ENSG00000225361"
+"1569963_at"	""	101928525	"ENSG00000226706"
+"1568743_at"	"ATP10A"	57194	"ENSG00000206190"
+"1560115_a_at"	"KIAA1217"	56243	"ENSG00000120549"
+"1562966_at"	"KIAA1217"	56243	"ENSG00000120549"
+"1564050_at"	"RDM1P5"	100131347	"ENSG00000263818"
+"1562044_at"	"P4HA3-AS1"	101928580	"ENSG00000246211"
+"1568638_a_at"	"IDO2"	169355	"ENSG00000188676"
+"1569448_at"	"PGM2L1"	283209	"ENSG00000165434"
+"1563168_at"	"NRG1-IT1"	100856811	"ENSG00000253974"
+"1560265_at"	"GRIK2"	2898	"ENSG00000164418"
+"1563754_at"	"GRIK2"	2898	"ENSG00000164418"
+"1560142_at"	"GRIK2"	2898	"ENSG00000164418"
+"1560136_at"	"ARL5C"	390790	"ENSG00000141748"
+"1560264_at"	"MGST2"	4258	"ENSG00000085871"
+"1562645_at"	"MARCHF11-DT"	NA	"ENSG00000250448"
+"1562597_at"	"LINC02150"	101929505	"ENSG00000248150"
+"1569342_at"	"GLI3"	2737	"ENSG00000106571"
+"1562893_at"	""	101927657	"ENSG00000244791"
+"1561042_at"	"AGO2"	27161	"ENSG00000123908"
+"1569842_at"	""	NA	"ENSG00000257955"
+"1569503_at"	"HEATR5B"	54497	"ENSG00000008869"
+"1562865_at"	""	NA	"ENSG00000280326"
+"1564381_s_at"	"CEBPZOS"	100505876	"ENSG00000218739"
+"1561739_at"	"LINC02933"	NA	"ENSG00000266289"
+"1569203_at"	"CXCL2"	2920	"ENSG00000081041"
+"1566935_at"	"TYRO3P"	NA	"ENSG00000259581"
+"1560399_a_at"	"OTUD7A"	161725	"ENSG00000169918"
+"1563512_at"	"NOS1AP"	9722	"ENSG00000198929"
+"1569393_at"	""	197003	"ENSG00000259458"
+"1560286_s_at"	""	NA	"ENSG00000259727"
+"1560285_at"	""	NA	"ENSG00000259727"
+"1560791_at"	"SDAD1-AS1"	101928809	"ENSG00000245928"
+"1564060_at"	"LINC00934"	144742	"ENSG00000281196"
+"1570398_at"	"FAM47E"	100129583	"ENSG00000189157"
+"1566126_at"	"FABP6-AS1"	NA	"ENSG00000247699"
+"1569464_at"	"PPFIBP1"	8496	"ENSG00000110841"
+"1562641_at"	"PABIR3"	159091	"ENSG00000156500"
+"1563059_at"	"LINC02243"	340581	"ENSG00000236091"
+"1564281_at"	"LINC00491"	NA	"ENSG00000250682"
+"1564282_a_at"	"LINC00491"	NA	"ENSG00000250682"
+"1566737_at"	"LINC01346"	NA	"ENSG00000233304"
+"1568941_a_at"	"HNRNPC"	3183	"ENSG00000092199"
+"1563092_at"	""	NA	"ENSG00000261030"
+"1562367_at"	"LINC02915"	400360	"ENSG00000175746"
+"1570391_at"	""	101926928	"ENSG00000258551"
+"1563899_at"	"LCTL"	197021	"ENSG00000188501"
+"1560513_at"	"LINC01996"	400568	"ENSG00000261863"
+"1563074_at"	"LINC01743"	255654	"ENSG00000242042"
+"1566605_at"	""	NA	"ENSG00000259941"
+"1566606_a_at"	"TEX9"	374618	"ENSG00000151575"
+"1562259_at"	"TEX9"	374618	"ENSG00000151575"
+"1568619_s_at"	"ITPRIPL2"	162073	"ENSG00000205730"
+"1563840_at"	""	NA	"ENSG00000289704"
+"1563933_a_at"	"PLD5"	200150	"ENSG00000180287"
+"1569998_at"	"MMD2"	221938	"ENSG00000136297"
+"1570393_at"	"EML5"	161436	"ENSG00000165521"
+"1568777_at"	"EML5"	161436	"ENSG00000165521"
+"1564295_at"	"LINC02595"	NA	"ENSG00000231566"
+"1559929_at"	"LINC01186"	NA	"ENSG00000236751"
+"1563696_at"	"HSD17B4"	3295	"ENSG00000133835"
+"1562880_at"	""	NA	"ENSG00000261696"
+"1569487_at"	"TACC3"	10460	"ENSG00000013810"
+"1569602_at"	"KANK2"	25959	"ENSG00000197256"
+"1569422_at"	"NIBAN3"	199786	"ENSG00000167483"
+"1563606_a_at"	""	NA	"ENSG00000228957"
+"1570206_at"	""	101928797	"ENSG00000233569"
+"1564002_a_at"	"AK9"	221264	"ENSG00000155085"
+"1565016_at"	"PRMT1"	3276	"ENSG00000126457"
+"1568650_a_at"	""	NA	"ENSG00000251161"
+"1568649_at"	""	NA	"ENSG00000251161"
+"1559884_at"	"CDKN2B-AS1"	100048912	"ENSG00000240498"
+"1564272_a_at"	"KLHDC1"	122773	"ENSG00000197776"
+"1561499_at"	""	NA	"ENSG00000225057"
+"1569594_a_at"	"NEMF"	9147	"ENSG00000165525"
+"1569864_at"	"SERAC1"	84947	"ENSG00000122335"
+"1569270_at"	""	100134368	"ENSG00000236829"
+"1570503_at"	""	NA	"ENSG00000260209"
+"1562573_at"	"CYP17A1"	1586	"ENSG00000148795"
+"1564274_at"	"S1PR3"	1903	"ENSG00000213694"
+"1561386_at"	""	102723701	"ENSG00000183154"
+"1561054_a_at"	"CCDC14"	64770	"ENSG00000175455"
+"1566448_at"	"CD6"	923	"ENSG00000013725"
+"1560213_at"	""	352990	"ENSG00000281831"
+"1560135_at"	""	NA	"ENSG00000233351"
+"1564637_a_at"	"FAM98B"	283742	"ENSG00000171262"
+"1563397_at"	""	NA	"ENSG00000238201"
+"1564314_at"	""	NA	"ENSG00000289739"
+"1560912_at"	"LINC01120"	NA	"ENSG00000223631"
+"1570480_s_at"	"ART1"	417	"ENSG00000129744"
+"1562540_at"	"LINC02260"	339978	"ENSG00000250456"
+"1564031_a_at"	"RELL2"	285613	"ENSG00000164620"
+"1569724_at"	""	NA	"ENSG00000260949"
+"1570411_at"	""	NA	"ENSG00000282742"
+"1560348_at"	"ARHGEF28"	64283	"ENSG00000214944"
+"1562697_at"	"LINC02481"	339988	"ENSG00000246526"
+"1562698_x_at"	"LINC02481"	339988	"ENSG00000246526"
+"1563709_at"	""	NA	"ENSG00000176349"
+"1561517_at"	"SSPN"	8082	"ENSG00000123096"
+"1563254_a_at"	"FAM170B-AS1"	100506733	"ENSG00000234736"
+"1563255_at"	"FAM170B-AS1"	100506733	"ENSG00000234736"
+"1559828_at"	"FAM170B"	170370	"ENSG00000172538"
+"1562935_at"	""	NA	"ENSG00000279887"
+"1569234_at"	"SPECC1-DT"	NA	"ENSG00000261033"
+"1569235_a_at"	"SPECC1-DT"	NA	"ENSG00000261033"
+"1561692_at"	""	NA	"ENSG00000260816"
+"1566571_at"	"RNU6-418P"	NA	"ENSG00000206762"
+"1561897_at"	""	NA	"ENSG00000259906"
+"1569256_a_at"	"FAM43B"	163933	"ENSG00000183114"
+"1568908_at"	"LINC02186"	101927348	"ENSG00000261856"
+"1562497_at"	""	NA	"ENSG00000276564"
+"1564131_a_at"	"BSN-DT"	100132677	"ENSG00000226913"
+"1560066_at"	"LINC00958"	100506305	"ENSG00000251381"
+"1570234_at"	"LINC01467"	101928559	"ENSG00000258977"
+"1560814_a_at"	"CCDC32"	90416	"ENSG00000128891"
+"1564318_at"	"POLR3A"	11128	"ENSG00000148606"
+"1569205_at"	"PRCP"	5547	"ENSG00000137509"
+"1560033_at"	"MCCC2"	64087	"ENSG00000131844"
+"1564525_at"	"GSN"	2934	"ENSG00000148180"
+"1569030_s_at"	"NUB1"	51667	"ENSG00000013374"
+"1560081_at"	"RAD51-AS1"	100505648	"ENSG00000245849"
+"1564212_at"	"MRPL42P1"	NA	"ENSG00000178636"
+"1562727_at"	""	NA	"ENSG00000268170"
+"1564473_at"	"ESCO2"	157570	"ENSG00000171320"
+"1561249_a_at"	"DNM1P35"	NA	"ENSG00000246877"
+"1562383_at"	""	NA	"ENSG00000261043"
+"1560636_a_at"	""	NA	"ENSG00000279430"
+"1560499_at"	"LINC01550"	388011	"ENSG00000246223"
+"1564211_at"	"LINC01550"	388011	"ENSG00000246223"
+"1562932_at"	""	NA	"ENSG00000279173"
+"1561407_at"	"ARAP2"	116984	"ENSG00000047365"
+"1570251_at"	"HECTD1"	25831	"ENSG00000092148"
+"1564713_a_at"	"FOXN4"	121643	"ENSG00000139445"
+"1562695_at"	"FOXN4"	121643	"ENSG00000139445"
+"1570347_at"	"MLX"	6945	"ENSG00000108788"
+"1568594_s_at"	"TRIM52"	84851	"ENSG00000183718"
+"1568954_s_at"	"HAPSTR1"	29035	"ENSG00000182831"
+"1562632_at"	""	NA	"ENSG00000219159"
+"1559877_at"	""	NA	"ENSG00000219159"
+"1562116_at"	"LINC01494"	101928537	"ENSG00000228135"
+"1561571_at"	"LINC02043"	102724699	"ENSG00000232233"
+"1562587_at"	"CLNK"	116449	"ENSG00000109684"
+"1570239_a_at"	"CLNK"	116449	"ENSG00000109684"
+"1561889_at"	""	NA	"ENSG00000231114"
+"1569421_at"	"CLDN4"	1364	"ENSG00000189143"
+"1569783_at"	"LRRD1"	401387	"ENSG00000240720"
+"1570307_s_at"	"ST18"	9705	"ENSG00000147488"
+"1562848_at"	"IST1"	9798	"ENSG00000182149"
+"1569212_at"	"SCART1"	619207	"ENSG00000214279"
+"1569873_at"	"LIPJ"	142910	"ENSG00000204022"
+"1569874_s_at"	"LIPJ"	142910	"ENSG00000204022"
+"1569571_at"	"LIPJ"	142910	"ENSG00000204022"
+"1563297_s_at"	"VPS13C-DT"	NA	"ENSG00000259251"
+"1561424_at"	"VPS13C-DT"	NA	"ENSG00000259251"
+"1560943_s_at"	"PGD"	5226	"ENSG00000142657"
+"1563827_at"	""	158434	"ENSG00000275465"
+"1569182_at"	""	NA	"ENSG00000260361"
+"1568836_at"	"CLK4"	57396	"ENSG00000113240"
+"1564697_a_at"	"LINC01144"	400752	"ENSG00000281912"
+"1569673_at"	""	NA	"ENSG00000261578"
+"1562895_at"	"TLE1-DT"	101927502	"ENSG00000233926"
+"1560425_s_at"	"PTPRD-AS1"	101929407	"ENSG00000225706"
+"1562831_a_at"	"WDR11-DT"	283089	"ENSG00000227165"
+"1563916_at"	"WDR11-DT"	283089	"ENSG00000227165"
+"1563745_a_at"	"ZMIZ1-AS1"	NA	"ENSG00000224596"
+"1561078_at"	""	NA	"ENSG00000260564"
+"1561679_at"	""	NA	"ENSG00000259776"
+"1564339_a_at"	"CHRM3"	1131	"ENSG00000133019"
+"1559765_a_at"	"NALT1"	NA	"ENSG00000237886"
+"1562688_at"	""	NA	"ENSG00000279256"
+"1561776_at"	"LINC00702"	NA	"ENSG00000233117"
+"1565918_a_at"	"LVRN"	206338	"ENSG00000172901"
+"1569954_at"	""	101928834	"ENSG00000233968"
+"1561004_at"	"PRKCQ-AS1"	439949	"ENSG00000237943"
+"1562299_at"	"TTC6"	319089	"ENSG00000139865"
+"1569953_at"	""	NA	"ENSG00000261076"
+"1562413_at"	"PRDM10-DT"	NA	"ENSG00000233220"
+"1569139_s_at"	"FAM53A"	152877	"ENSG00000174137"
+"1562338_at"	"MARCHF1"	55016	"ENSG00000145416"
+"1565454_at"	""	NA	"ENSG00000290520"
+"1561468_at"	""	NA	"ENSG00000290740"
+"1564168_a_at"	"DRAIC"	145837	"ENSG00000245750"
+"1562389_at"	"PCDH10-DT"	NA	"ENSG00000250241"
+"1560848_at"	"QKILA"	NA	"ENSG00000261268"
+"1563079_at"	""	NA	"ENSG00000174171"
+"1562524_at"	"THSD4-AS1"	101929196	"ENSG00000259964"
+"1563271_at"	"LINC02345"	101928227	"ENSG00000259225"
+"1568983_a_at"	"GABPB1-AS1"	NA	"ENSG00000244879"
+"1569868_s_at"	"EME2"	197342	"ENSG00000197774"
+"1569867_at"	"EME2"	197342	"ENSG00000197774"
+"1561211_at"	""	NA	"ENSG00000226252"
+"1568871_at"	"CADM2-AS1"	NA	"ENSG00000239519"
+"1564494_s_at"	"P4HB"	5034	"ENSG00000185624"
+"1561894_at"	"CYREN"	78996	"ENSG00000122783"
+"1561409_at"	""	NA	"ENSG00000258676"
+"1560059_at"	"VPS37C"	55048	"ENSG00000167987"
+"1560060_s_at"	"VPS37C"	55048	"ENSG00000167987"
+"1560537_at"	"FGF13-AS1"	100129662	"ENSG00000226031"
+"1569847_at"	"CGNL1"	84952	"ENSG00000128849"
+"1570133_at"	""	NA	"ENSG00000268189"
+"1564887_at"	""	NA	"ENSG00000260262"
+"1569642_at"	"F2R"	2149	"ENSG00000181104"
+"1564670_at"	"RAMP2-AS1"	100190938	"ENSG00000197291"
+"1570207_at"	"FRRS1"	391059	"ENSG00000156869"
+"1566171_at"	"RFFL"	117584	"ENSG00000092871"
+"1566449_at"	"LRRC7"	57554	"ENSG00000033122"
+"1569831_at"	""	NA	"ENSG00000253553"
+"1559966_a_at"	"ZFHX4-AS1"	NA	"ENSG00000253661"
+"1559965_at"	"ZFHX4-AS1"	NA	"ENSG00000253661"
+"1560826_at"	"LINC00968"	100507632	"ENSG00000246430"
+"1569339_s_at"	"PAPLN-AS1"	NA	"ENSG00000258376"
+"1569338_at"	"PAPLN-AS1"	NA	"ENSG00000258376"
+"1570351_at"	"ADAMTS6"	11174	"ENSG00000049192"
+"1561850_at"	"LY6E-DT"	NA	"ENSG00000247317"
+"1562153_a_at"	"PVT1"	NA	"ENSG00000249859"
+"1570052_at"	"MIPOL1"	145282	"ENSG00000151338"
+"1569494_at"	"MIPOL1"	145282	"ENSG00000151338"
+"1570125_at"	"GHET1"	102723099	"ENSG00000281189"
+"1562920_at"	"FAM169A-AS1"	NA	"ENSG00000271714"
+"1565784_at"	"TNK2-AS1"	NA	"ENSG00000224614"
+"1567628_at"	"CD74"	972	"ENSG00000019582"
+"1559881_s_at"	"ZNF12"	7559	"ENSG00000164631"
+"1562644_at"	"MTHFD2L"	441024	"ENSG00000163738"
+"1569583_at"	"EREG"	2069	"ENSG00000124882"
+"1561705_at"	"TTBK2-AS1"	NA	"ENSG00000246283"
+"1560491_at"	"LINC03000"	102546299	"ENSG00000241956"
+"1562640_at"	"HOXA-AS2"	NA	"ENSG00000253552"
+"1559790_at"	"LINC02223"	NA	"ENSG00000249937"
+"1562701_at"	"ADAMTS16-DT"	101929176	"ENSG00000250579"
+"1563792_at"	"AMN"	81693	"ENSG00000166126"
+"1569383_s_at"	"ZFYVE28"	57732	"ENSG00000159733"
+"1569369_at"	"ZFYVE28"	57732	"ENSG00000159733"
+"1560448_at"	"PRR7-AS1"	NA	"ENSG00000246334"
+"1560275_at"	"TMEM44"	93109	"ENSG00000145014"
+"1569172_a_at"	"CFAP99"	402160	"ENSG00000206113"
+"1569775_at"	"RNF157"	114804	"ENSG00000141576"
+"1559970_at"	"FLRT2-AS1"	100506731	"ENSG00000205562"
+"1569072_s_at"	"ABCB5"	340273	"ENSG00000004846"
+"1570268_at"	"SMARCAD1-DT"	101929210	"ENSG00000246541"
+"1560330_at"	"PCDH15"	65217	"ENSG00000150275"
+"1569418_at"	"LINC00682"	101927074	"ENSG00000245870"
+"1563670_at"	"ZSCAN23"	222696	"ENSG00000187987"
+"1562209_at"	"DCAF4L1"	285429	"ENSG00000182308"
+"1562965_at"	""	NA	"ENSG00000251517"
+"1562906_at"	"FAM170A"	340069	"ENSG00000164334"
+"1562659_at"	"LINC02139"	400548	"ENSG00000278214"
+"1562324_a_at"	""	NA	"ENSG00000275088"
+"1562323_at"	""	NA	"ENSG00000275088"
+"1569730_at"	"MROH2B"	133558	"ENSG00000171495"
+"1562446_at"	"ZNF391"	346157	"ENSG00000124613"
+"1560419_at"	""	NA	"ENSG00000247853"
+"1569823_at"	"CDR2-DT"	440346	"ENSG00000260790"
+"1564367_at"	""	392459	"ENSG00000290641"
+"1569188_s_at"	""	NA	"ENSG00000280195"
+"1569871_at"	"CEROX1"	115804232	"ENSG00000260807"
+"1569872_a_at"	"CEROX1"	115804232	"ENSG00000260807"
+"1563373_at"	"LINC01220"	NA	"ENSG00000259687"
+"1559926_at"	""	NA	"ENSG00000260830"
+"1559927_a_at"	""	NA	"ENSG00000260830"
+"1570394_at"	"XRN1"	54464	"ENSG00000114127"
+"1568878_at"	""	NA	"ENSG00000254187"
+"1562896_at"	"TNRC18"	84629	"ENSG00000182095"
+"1560684_x_at"	""	NA	"ENSG00000290326"
+"1560683_at"	""	NA	"ENSG00000290326"
+"1561048_at"	"RARS2"	57038	"ENSG00000146282"
+"1563007_at"	"LINC02325"	101929241	"ENSG00000246084"
+"1560171_at"	"SHPRH"	257218	"ENSG00000146414"
+"1561667_at"	"SNHG10"	283596	"ENSG00000247092"
+"1562703_at"	""	NA	"ENSG00000286955"
+"1563641_a_at"	"SNX20"	124460	"ENSG00000167208"
+"1561179_s_at"	"AMZ1"	155185	"ENSG00000174945"
+"1562261_at"	"AMZ1"	155185	"ENSG00000174945"
+"1564152_at"	""	NA	"ENSG00000227189"
+"1563571_at"	"CTBP1-AS"	285463	"ENSG00000280927"
+"1569637_at"	"ZNF736"	728927	"ENSG00000234444"
+"1563862_at"	"TCEANC"	170082	"ENSG00000176896"
+"1563863_x_at"	"TCEANC"	170082	"ENSG00000176896"
+"1562777_at"	"ERV3-1"	2086	"ENSG00000213462"
+"1561450_at"	""	101928618	"ENSG00000261184"
+"1561333_at"	""	NA	"ENSG00000259998"
+"1566734_at"	"RNFT2"	84900	"ENSG00000135119"
+"1560723_at"	""	283731	"ENSG00000248540"
+"1560980_a_at"	""	NA	"ENSG00000279772"
+"1567224_at"	"HMGA2"	8091	"ENSG00000149948"
+"1561633_at"	"HMGA2"	8091	"ENSG00000149948"
+"1568287_at"	"HMGA2"	8091	"ENSG00000149948"
+"1565837_at"	"MAP3K9-DT"	100506411	"ENSG00000259153"
+"1569878_at"	""	414194	"ENSG00000290445"
+"1561401_at"	"LINC01845"	285627	"ENSG00000253298"
+"1561482_at"	""	NA	"ENSG00000290529"
+"1569932_at"	"NHSL2"	340527	"ENSG00000204131"
+"1564721_at"	""	101927588	"ENSG00000214803"
+"1569674_at"	"LINC00630"	NA	"ENSG00000223546"
+"1560222_at"	""	NA	"ENSG00000239407"
+"1560870_a_at"	""	102723670	"ENSG00000259868"
+"1565905_at"	""	400627	"ENSG00000261924"
+"1566558_x_at"	"BAIAP2-DT"	440465	"ENSG00000226137"
+"1566557_at"	"BAIAP2-DT"	440465	"ENSG00000226137"
+"1562403_a_at"	"SLC8A3"	6547	"ENSG00000100678"
+"1568859_a_at"	"SLC8A3"	6547	"ENSG00000100678"
+"1562772_a_at"	"DAND5"	199699	"ENSG00000179284"
+"1560911_at"	"LINC02171"	100133461	"ENSG00000250632"
+"1562022_s_at"	"RAD9A"	5883	"ENSG00000172613"
+"1560788_at"	"MYO3B"	140469	"ENSG00000071909"
+"1568821_at"	"TTC23-AS1"	NA	"ENSG00000261616"
+"1570366_x_at"	"ZNF709"	163051	"ENSG00000242852"
+"1570364_at"	"ZNF709"	163051	"ENSG00000242852"
+"1562710_at"	"KIF5C-AS1"	NA	"ENSG00000231079"
+"1569058_at"	"GTF3C3"	9330	"ENSG00000119041"
+"1560563_at"	""	101929552	"ENSG00000263063"
+"1560317_s_at"	"HIP1"	3092	"ENSG00000127946"
+"1569816_at"	""	101928748	"ENSG00000236461"
+"1568713_a_at"	"TBC1D1"	23216	"ENSG00000065882"
+"1569566_at"	"TBC1D1"	23216	"ENSG00000065882"
+"1566040_at"	"FAM153CP"	653316	"ENSG00000204677"
+"1562803_at"	"LRRC37A5P"	652972	"ENSG00000290837"
+"1561749_at"	""	NA	"ENSG00000241057"
+"1568634_a_at"	"LRRC66"	339977	"ENSG00000188993"
+"1560854_s_at"	"ZNF107"	51427	"ENSG00000196247"
+"1569144_a_at"	"CYSRT1"	375791	"ENSG00000197191"
+"1570188_at"	"NR1I3"	9970	"ENSG00000143257"
+"1561316_at"	"GABRB3"	2562	"ENSG00000166206"
+"1569689_s_at"	"GABRB3"	2562	"ENSG00000166206"
+"1564012_at"	"LINC01512"	100132354	"ENSG00000289313"
+"1568682_a_at"	""	100507336	"ENSG00000228793"
+"1562069_at"	"ZNF433-AS1"	101928464	"ENSG00000219665"
+"1563845_at"	""	NA	"ENSG00000289731"
+"1570114_at"	"MDGA2"	161357	"ENSG00000139915"
+"1570402_at"	"KLC3"	147700	"ENSG00000104892"
+"1564679_at"	"ASB15"	142685	"ENSG00000146809"
+"1570226_at"	"HEATR5A-DT"	101927124	"ENSG00000250365"
+"1561731_at"	""	101927636	"ENSG00000251600"
+"1559996_s_at"	"SAMD14"	201191	"ENSG00000167100"
+"1560433_at"	"CLTA"	1211	"ENSG00000122705"
+"1560434_x_at"	"CLTA"	1211	"ENSG00000122705"
+"1562729_at"	""	NA	"ENSG00000261959"
+"1562730_a_at"	""	NA	"ENSG00000261959"
+"1561967_at"	"FLNB-AS1"	105377105	"ENSG00000244161"
+"1562337_at"	"OR7D2"	162998	"ENSG00000188000"
+"1561336_at"	"DNASE1L3"	1776	"ENSG00000163687"
+"1564642_at"	"RUNX1T1"	862	"ENSG00000079102"
+"1570528_at"	"XYLT2"	64132	"ENSG00000015532"
+"1569371_at"	"LRRC59"	55379	"ENSG00000108829"
+"1560034_a_at"	"FCN1"	2219	"ENSG00000085265"
+"1561990_at"	""	NA	"ENSG00000279935"
+"1560901_at"	"RNU1-129P"	NA	"ENSG00000206791"
+"1562823_at"	"ROR1-AS1"	101927034	"ENSG00000223949"
+"1561232_at"	"CASC11"	100270680	"ENSG00000249375"
+"1562303_at"	"ZKSCAN3"	80317	"ENSG00000189298"
+"1562305_x_at"	"ZKSCAN3"	80317	"ENSG00000189298"
+"1559776_at"	"GM2A"	2760	"ENSG00000196743"
+"1561122_a_at"	"RAD51B"	5890	"ENSG00000182185"
+"1569098_s_at"	"TP53BP1"	7158	"ENSG00000067369"
+"1569097_at"	"TP53BP1"	7158	"ENSG00000067369"
+"1569773_at"	"ATP8A1"	10396	"ENSG00000124406"
+"1562657_a_at"	"C10orf90"	118611	"ENSG00000154493"
+"1564198_a_at"	"C10orf90"	118611	"ENSG00000154493"
+"1560590_s_at"	"LINC02846"	NA	"ENSG00000260193"
+"1569303_s_at"	"RGS20"	8601	"ENSG00000147509"
+"1570089_at"	"RAPGEF1"	2889	"ENSG00000107263"
+"1560638_a_at"	""	NA	"ENSG00000260955"
+"1568939_at"	"OR8B2"	26595	"ENSG00000284680"
+"1562274_at"	""	101928446	"ENSG00000260862"
+"1564000_at"	"ANKRD31"	256006	"ENSG00000145700"
+"1562857_at"	""	101928417	"ENSG00000260832"
+"1561003_at"	""	NA	"ENSG00000259914"
+"1569353_at"	"CCP110"	9738	"ENSG00000103540"
+"1565906_at"	"NADSYN1"	55191	"ENSG00000172890"
+"1568802_at"	"NADSYN1"	55191	"ENSG00000172890"
+"1562683_a_at"	"LINC01097"	285547	"ENSG00000281202"
+"1562372_at"	"SV2C"	22987	"ENSG00000122012"
+"1561584_at"	""	NA	"ENSG00000261368"
+"1560630_at"	"ATP8A1-DT"	NA	"ENSG00000260519"
+"1563581_at"	"RPL34-DT"	285456	"ENSG00000234492"
+"1563452_at"	"AVL9"	23080	"ENSG00000105778"
+"1566917_at"	"HPYR1"	93668	"ENSG00000253521"
+"1560068_a_at"	""	NA	"ENSG00000287642"
+"1570414_x_at"	"KLF3-AS1"	NA	"ENSG00000231160"
+"1563462_at"	"LINC01091"	285419	"ENSG00000249464"
+"1561096_at"	"LINC01091"	285419	"ENSG00000249464"
+"1564474_at"	"ZBED3-AS1"	NA	"ENSG00000250802"
+"1570204_at"	"ZBED3-AS1"	NA	"ENSG00000250802"
+"1569330_at"	"STX18-AS1"	100507266	"ENSG00000247708"
+"1560891_a_at"	"LINC01088"	NA	"ENSG00000249307"
+"1560890_at"	"LINC01088"	NA	"ENSG00000249307"
+"1562785_at"	"PPM1K-DT"	105369192	"ENSG00000246375"
+"1561230_at"	""	NA	"ENSG00000267784"
+"1570057_x_at"	""	NA	"ENSG00000291229"
+"1570055_at"	""	NA	"ENSG00000291229"
+"1569713_at"	"SEC24B-AS1"	100533182	"ENSG00000247950"
+"1560284_at"	"CTCF-DT"	107984813	"ENSG00000259804"
+"1564883_a_at"	"TAS1R1"	80835	"ENSG00000173662"
+"1562226_at"	"VWDE"	221806	"ENSG00000146530"
+"1563241_at"	""	101927018	"ENSG00000265845"
+"1561292_at"	""	NA	"ENSG00000261136"
+"1566081_at"	"GPR176"	11245	"ENSG00000166073"
+"1570007_at"	"LRRC8C"	84230	"ENSG00000171488"
+"1562712_at"	"LRRC8C"	84230	"ENSG00000171488"
+"1569039_s_at"	"ZNF677"	342926	"ENSG00000197928"
+"1560562_a_at"	"ZNF677"	342926	"ENSG00000197928"
+"1562079_at"	""	NA	"ENSG00000269506"
+"1567032_s_at"	"ZNF160"	90338	"ENSG00000170949"
+"1564426_x_at"	""	729732	"ENSG00000283674"
+"1561198_at"	"GVQW3"	100506127	"ENSG00000179240"
+"1565752_at"	"FGD2"	221472	"ENSG00000146192"
+"1565754_x_at"	"FGD2"	221472	"ENSG00000146192"
+"1560775_at"	""	NA	"ENSG00000279103"
+"1560172_at"	"INTS10"	55174	"ENSG00000104613"
+"1568913_at"	"NSUN3"	63899	"ENSG00000178694"
+"1563687_a_at"	"FRYL"	285527	"ENSG00000075539"
+"1562650_at"	"FRYL"	285527	"ENSG00000075539"
+"1562625_at"	"FRYL"	285527	"ENSG00000075539"
+"1569057_s_at"	"MIA3"	375056	"ENSG00000154305"
+"1569585_at"	""	NA	"ENSG00000260476"
+"1569053_at"	"AP3M2"	10947	"ENSG00000070718"
+"1560830_a_at"	"C19orf84"	147646	"ENSG00000262874"
+"1569133_x_at"	"ARSK"	153642	"ENSG00000164291"
+"1569132_s_at"	"ARSK"	153642	"ENSG00000164291"
+"1560148_at"	""	NA	"ENSG00000272750"
+"1562053_at"	"GALNT7-DT"	101930370	"ENSG00000245213"
+"1560460_at"	"SAP30-DT"	105377540	"ENSG00000272870"
+"1569916_at"	"SLC6A15"	55117	"ENSG00000072041"
+"1561890_at"	"TMEM273"	170371	"ENSG00000204161"
+"1568840_at"	"DCAF13"	25879	"ENSG00000164934"
+"1560495_at"	"METTL14-DT"	101929741	"ENSG00000281731"
+"1569841_x_at"	""	101927798	"ENSG00000253165"
+"1569840_at"	""	101927798	"ENSG00000253165"
+"1568850_at"	"ACKR2"	1238	"ENSG00000144648"
+"1560228_at"	"SNAI3"	333929	"ENSG00000185669"
+"1564300_at"	"IQCF5-AS1"	101928999	"ENSG00000235455"
+"1562228_s_at"	"PDE5A"	8654	"ENSG00000138735"
+"1562227_at"	"PDE5A"	8654	"ENSG00000138735"
+"1561671_at"	""	NA	"ENSG00000261693"
+"1564336_at"	"LINC02832"	NA	"ENSG00000227308"
+"1570330_at"	""	NA	"ENSG00000261044"
+"1561501_s_at"	""	NA	"ENSG00000278341"
+"1561500_at"	""	NA	"ENSG00000278341"
+"1561502_x_at"	""	NA	"ENSG00000278341"
+"1564828_at"	"CRACD"	57482	"ENSG00000109265"
+"1570194_x_at"	""	NA	"ENSG00000279884"
+"1570192_at"	""	NA	"ENSG00000279884"
+"1559861_at"	"PCAT7"	NA	"ENSG00000231806"
+"1562651_at"	"ZSCAN1"	284312	"ENSG00000152467"
+"1569561_at"	"PITX1"	5307	"ENSG00000069011"
+"1569905_at"	"HSD11B1L"	374875	"ENSG00000167733"
+"1565705_x_at"	"ARPC3"	10094	"ENSG00000111229"
+"1562617_at"	"SLC25A48-AS1"	340074	"ENSG00000251045"
+"1564688_a_at"	"RAD9B"	144715	"ENSG00000151164"
+"1565681_s_at"	"DIP2C"	22982	"ENSG00000151240"
+"1560352_at"	"ENTPD1-AS1"	728558	"ENSG00000226688"
+"1563750_at"	""	NA	"ENSG00000270977"
+"1569620_s_at"	""	NA	"ENSG00000261329"
+"1560306_at"	""	NA	"ENSG00000265625"
+"1562969_at"	"DNMBP"	23268	"ENSG00000107554"
+"1568596_a_at"	"TROAP"	10024	"ENSG00000135451"
+"1560946_at"	""	NA	"ENSG00000279070"
+"1564945_at"	"TBX20"	57057	"ENSG00000164532"
+"1562991_at"	"ZNF292"	23036	"ENSG00000188994"
+"1561335_at"	"CYMP-AS1"	440602	"ENSG00000235407"
+"1559812_at"	"FAM53B-AS1"	NA	"ENSG00000233334"
+"1568616_a_at"	""	NA	"ENSG00000244953"
+"1562219_at"	"LINC00951"	NA	"ENSG00000226070"
+"1567612_at"	"MDN1-AS1"	NA	"ENSG00000228124"
+"1562939_at"	"CARMIL1"	55604	"ENSG00000079691"
+"1564253_at"	"LINC03066"	285766	"ENSG00000263667"
+"1561691_at"	"LINC00326"	285735	"ENSG00000231023"
+"1561596_at"	"GTF2IRD2"	84163	"ENSG00000196275"
+"1561597_x_at"	"GTF2IRD2"	84163	"ENSG00000196275"
+"1561606_at"	""	NA	"ENSG00000263938"
+"1561760_s_at"	""	NA	"ENSG00000291203"
+"1561759_at"	""	NA	"ENSG00000291203"
+"1561761_x_at"	""	NA	"ENSG00000291203"
+"1560915_at"	"DPY19L1"	23333	"ENSG00000173852"
+"1561973_at"	"SMARCC2"	6601	"ENSG00000139613"
+"1560227_at"	"GDPD1"	284161	"ENSG00000153982"
+"1561106_at"	"AHI1-DT"	100131814	"ENSG00000231028"
+"1565149_at"	"DYNC2H1"	79659	"ENSG00000187240"
+"1561939_at"	"DYNC2H1"	79659	"ENSG00000187240"
+"1562190_at"	"PIK3CA-DT"	101928739	"ENSG00000229102"
+"1569729_a_at"	"ASZ1"	136991	"ENSG00000154438"
+"1568783_at"	"SREK1"	140890	"ENSG00000153914"
+"1568826_at"	""	100507173	"ENSG00000281706"
+"1568648_a_at"	""	100505851	"ENSG00000269289"
+"1568647_at"	""	100505851	"ENSG00000269289"
+"1560258_a_at"	""	NA	"ENSG00000269397"
+"1561806_at"	"LINC02065"	NA	"ENSG00000248846"
+"1563111_a_at"	"PIGX"	54965	"ENSG00000163964"
+"1566169_at"	""	NA	"ENSG00000261842"
+"1570373_at"	"ZNF746"	155061	"ENSG00000181220"
+"1567288_at"	"OR5K1"	26339	"ENSG00000232382"
+"1562321_at"	"PDK4"	5166	"ENSG00000004799"
+"1569843_at"	"DYNC1I1"	1780	"ENSG00000158560"
+"1560279_a_at"	"LINC02685"	221122	"ENSG00000254654"
+"1560278_at"	"LINC02685"	221122	"ENSG00000254654"
+"1562566_at"	"TRAF3IP2-AS1"	643749	"ENSG00000231889"
+"1569263_at"	""	NA	"ENSG00000280407"
+"1569310_at"	"IRGQ"	126298	"ENSG00000167378"
+"1561572_at"	"LINC02199"	NA	"ENSG00000250198"
+"1565889_at"	"TAB2"	23118	"ENSG00000055208"
+"1565849_a_at"	"SRRM5"	100170229	"ENSG00000226763"
+"1559942_at"	"MDFIC"	29969	"ENSG00000135272"
+"1569722_s_at"	"PROSER2-AS1"	219731	"ENSG00000225778"
+"1564651_at"	"SMIM13"	221710	"ENSG00000224531"
+"1564327_at"	""	NA	"ENSG00000175604"
+"1563290_at"	"DNAH3"	55567	"ENSG00000158486"
+"1560803_at"	"DNAH3"	55567	"ENSG00000158486"
+"1567060_at"	"OR8G1"	26494	"ENSG00000197849"
+"1567069_at"	"OR4D1"	26689	"ENSG00000141194"
+"1560937_at"	""	NA	"ENSG00000225213"
+"1566989_at"	""	115308161	"ENSG00000271551"
+"1566990_x_at"	""	115308161	"ENSG00000271551"
+"1569646_a_at"	"KIRREL3-AS2"	100874251	"ENSG00000254960"
+"1569108_a_at"	"ZNF589"	51385	"ENSG00000164048"
+"1561270_at"	"ZNF429"	353088	"ENSG00000197013"
+"1568646_x_at"	"ZNF208"	7757	"ENSG00000160321"
+"1568644_at"	"ZNF208"	7757	"ENSG00000160321"
+"1564138_at"	"FBXW12"	285231	"ENSG00000164049"
+"1570566_at"	"NAIP"	4671	"ENSG00000249437"
+"1560762_at"	"LINC00996"	285972	"ENSG00000242258"
+"1570281_at"	""	NA	"ENSG00000279462"
+"1568830_at"	"IRAK3"	11213	"ENSG00000090376"
+"1567249_at"	"OR9A1P"	NA	"ENSG00000237621"
+"1560246_at"	"RETREG1-AS1"	101929524	"ENSG00000246214"
+"1569147_at"	""	NA	"ENSG00000280187"
+"1568643_a_at"	"LINC01843"	101927934	"ENSG00000251169"
+"1563920_at"	"DENND10"	404636	"ENSG00000119979"
+"1560467_at"	"PAQR9"	344838	"ENSG00000188582"
+"1564776_at"	""	NA	"ENSG00000272477"
+"1561687_a_at"	"ZNF382"	84911	"ENSG00000161298"
+"1565389_s_at"	"GRM5"	2915	"ENSG00000168959"
+"1563454_at"	"SOX6"	55553	"ENSG00000110693"
+"1570486_at"	"SOX6"	55553	"ENSG00000110693"
+"1564610_at"	"LINC02002"	NA	"ENSG00000263609"
+"1569788_at"	"ST8SIA1"	6489	"ENSG00000111728"
+"1561101_at"	"JAKMIP2-AS1"	153469	"ENSG00000280780"
+"1569376_s_at"	"SLC12A2-DT"	644873	"ENSG00000245937"
+"1569375_at"	"SLC12A2-DT"	644873	"ENSG00000245937"
+"1564044_at"	"KNCN"	148930	"ENSG00000162456"
+"1560296_at"	"DST"	667	"ENSG00000151914"
+"1560720_at"	"MKNK1"	8569	"ENSG00000079277"
+"1563677_at"	"CDON"	50937	"ENSG00000064309"
+"1563119_at"	"LINC02078"	100652929	"ENSG00000267719"
+"1562876_s_at"	""	NA	"ENSG00000271590"
+"1569022_a_at"	"PIK3C2A"	5286	"ENSG00000011405"
+"1569021_at"	"PIK3C2A"	5286	"ENSG00000011405"
+"1569588_x_at"	"PIK3C2A"	5286	"ENSG00000011405"
+"1569587_at"	"PIK3C2A"	5286	"ENSG00000011405"
+"1564459_at"	"DDC-AS1"	100129427	"ENSG00000226122"
+"1569283_at"	"ZNF891"	101060200	"ENSG00000214029"
+"1565818_s_at"	"IKZF1"	10320	"ENSG00000185811"
+"1565817_at"	"IKZF1"	10320	"ENSG00000185811"
+"1561055_at"	"LINC02192"	100507534	"ENSG00000261325"
+"1568683_at"	"SNAI3-AS1"	197187	"ENSG00000260630"
+"1566182_at"	"RNU6ATAC7P"	NA	"ENSG00000221038"
+"1563087_at"	"CTNNA2-AS1"	NA	"ENSG00000229385"
+"1563137_at"	"MGAT5B"	146664	"ENSG00000167889"
+"1560812_at"	""	101928708	"ENSG00000261095"
+"1560241_at"	""	101928682	"ENSG00000261697"
+"1561033_at"	"ZNF451-AS1"	NA	"ENSG00000226803"
+"1568748_at"	""	NA	"ENSG00000227782"
+"1561665_at"	""	NA	"ENSG00000260714"
+"1564373_a_at"	"LINC02175"	283887	"ENSG00000262155"
+"1568891_x_at"	"FANCD2"	2177	"ENSG00000144554"
+"1568889_at"	"FANCD2"	2177	"ENSG00000144554"
+"1566816_at"	"FGF22"	27006	"ENSG00000070388"
+"1561942_x_at"	"ERVK13-1"	NA	"ENSG00000260565"
+"1563629_a_at"	"ERVK13-1"	NA	"ENSG00000260565"
+"1560774_at"	"RPSA2"	388524	"ENSG00000288920"
+"1561088_at"	"EYA4"	2070	"ENSG00000112319"
+"1564240_at"	"PSPN"	5623	"ENSG00000125650"
+"1561446_at"	"LINC02753"	101928443	"ENSG00000248844"
+"1564786_at"	"VSIG10L2"	338667	"ENSG00000283703"
+"1562416_at"	"FLNB"	2317	"ENSG00000136068"
+"1561037_a_at"	"LINC01703"	NA	"ENSG00000225518"
+"1561036_at"	"LINC01703"	NA	"ENSG00000225518"
+"1569737_a_at"	"CASKIN1"	57524	"ENSG00000167971"
+"1561530_at"	""	101927164	"ENSG00000237101"
+"1569110_x_at"	""	NA	"ENSG00000291079"
+"1568764_x_at"	""	NA	"ENSG00000291079"
+"1568762_at"	""	NA	"ENSG00000291079"
+"1565857_at"	""	NA	"ENSG00000271522"
+"1562953_s_at"	"WDFY3-AS2"	404201	"ENSG00000180769"
+"1560697_at"	"TRHDE-AS1"	NA	"ENSG00000236333"
+"1560698_a_at"	"TRHDE-AS1"	NA	"ENSG00000236333"
+"1563030_at"	"TRAF4"	9618	"ENSG00000076604"
+"1568680_s_at"	"YTHDC2"	64848	"ENSG00000047188"
+"1563253_s_at"	"ERBB3"	2065	"ENSG00000065361"
+"1563252_at"	"ERBB3"	2065	"ENSG00000065361"
+"1563071_at"	"ADAMTSL4-AS2"	NA	"ENSG00000237781"
+"1565483_at"	"EGFR"	1956	"ENSG00000146648"
+"1565484_x_at"	"EGFR"	1956	"ENSG00000146648"
+"1565778_at"	"ABCA8"	10351	"ENSG00000141338"
+"1562984_at"	""	101928937	"ENSG00000258039"
+"1565254_s_at"	"ELL"	8178	"ENSG00000105656"
+"1562424_at"	"RNF32-DT"	100506380	"ENSG00000182648"
+"1560554_a_at"	"OBSCN-AS1"	574407	"ENSG00000162913"
+"1560130_at"	"OBSCN-AS1"	574407	"ENSG00000162913"
+"1560411_at"	""	NA	"ENSG00000289107"
+"1569402_at"	"MEIS3"	56917	"ENSG00000105419"
+"1569777_a_at"	"ZPLD1"	131368	"ENSG00000170044"
+"1561969_at"	"ZPLD1"	131368	"ENSG00000170044"
+"1563533_at"	"GADL1"	339896	"ENSG00000144644"
+"1560712_at"	"TMPRSS11B"	132724	"ENSG00000185873"
+"1560430_at"	"NKPD1"	284353	"ENSG00000179846"
+"1561916_at"	"LINC02848"	NA	"ENSG00000226581"
+"1563781_at"	"GARS1-DT"	NA	"ENSG00000196295"
+"1562678_at"	""	NA	"ENSG00000253297"
+"1569095_at"	"MIR3945HG"	731424	"ENSG00000251230"
+"1559777_at"	"MIR3945HG"	731424	"ENSG00000251230"
+"1563170_at"	"LINC01957"	101927059	"ENSG00000251542"
+"1563673_a_at"	"C2CD6"	151254	"ENSG00000155754"
+"1561666_a_at"	"PSMG3-AS1"	114796	"ENSG00000230487"
+"1561114_a_at"	"DEPDC4"	120863	"ENSG00000166153"
+"1563872_at"	"VSTM2B-DT"	284395	"ENSG00000264515"
+"1569496_s_at"	"SPON2"	10417	"ENSG00000159674"
+"1565839_a_at"	"PRDM4-AS1"	101929162	"ENSG00000258136"
+"1569776_at"	""	NA	"ENSG00000257129"
+"1563488_at"	"TMEM132B"	114795	"ENSG00000139364"
+"1561392_at"	""	NA	"ENSG00000289008"
+"1568851_at"	"LINC01352"	101929730	"ENSG00000238078"
+"1568852_x_at"	"LINC01352"	101929730	"ENSG00000238078"
+"1561683_at"	""	NA	"ENSG00000260505"
+"1560407_at"	"MARK1"	4139	"ENSG00000116141"
+"1561432_at"	"SMIM14-DT"	105374419	"ENSG00000255458"
+"1560018_at"	"ARPP21"	10777	"ENSG00000172995"
+"1568794_at"	"LINC01750"	643355	"ENSG00000231437"
+"1564333_a_at"	"PSAPL1"	768239	"ENSG00000178597"
+"1569486_at"	""	101928401	"ENSG00000233288"
+"1564876_s_at"	"FOXP2"	93986	"ENSG00000128573"
+"1562139_a_at"	"FOXP2"	93986	"ENSG00000128573"
+"1561507_at"	"FFAR1"	2864	"ENSG00000126266"
+"1568854_at"	"LINC00240"	100133205	"ENSG00000224843"
+"1570623_at"	""	NA	"ENSG00000261654"
+"1560006_a_at"	""	NA	"ENSG00000288973"
+"1568597_at"	""	NA	"ENSG00000288973"
+"1570572_at"	""	NA	"ENSG00000247934"
+"1567458_s_at"	"RAC1"	5879	"ENSG00000136238"
+"1562747_at"	"IL6R-AS1"	101928101	"ENSG00000228013"
+"1569909_at"	"KRT79"	338785	"ENSG00000185640"
+"1562098_at"	""	NA	"ENSG00000279148"
+"1569020_at"	"NEDD9"	4739	"ENSG00000111859"
+"1560706_at"	"NEDD9"	4739	"ENSG00000111859"
+"1561086_at"	""	NA	"ENSG00000230393"
+"1563679_at"	"LINC01104"	150577	"ENSG00000232084"
+"1561574_at"	""	NA	"ENSG00000279752"
+"1559759_at"	"KIFC3"	3801	"ENSG00000140859"
+"1569521_s_at"	""	NA	"ENSG00000247121"
+"1569520_at"	""	NA	"ENSG00000247121"
+"1569114_at"	""	NA	"ENSG00000224738"
+"1560577_at"	""	NA	"ENSG00000289021"
+"1569320_at"	"GPBP1L1"	60313	"ENSG00000159592"
+"1564685_a_at"	"PACRG-AS2"	101929239	"ENSG00000225437"
+"1562864_at"	"PACRG-AS2"	101929239	"ENSG00000225437"
+"1561373_at"	"PACRG-AS1"	NA	"ENSG00000281692"
+"1563511_at"	""	NA	"ENSG00000285564"
+"1559863_a_at"	"AFG3L1P"	172	"ENSG00000223959"
+"1563887_at"	""	285905	"ENSG00000290545"
+"1569675_at"	"POU2AF1"	5450	"ENSG00000110777"
+"1563157_at"	"FOXP1-AS1"	104502416	"ENSG00000244203"
+"1568914_at"	"OPN5"	221391	"ENSG00000124818"
+"1568606_at"	"HOATZ"	399949	"ENSG00000183644"
+"1565608_at"	""	NA	"ENSG00000240207"
+"1561146_at"	""	NA	"ENSG00000280376"
+"1562411_at"	"MYLK3"	91807	"ENSG00000140795"
+"1568925_at"	"MYLK3"	91807	"ENSG00000140795"
+"1568926_x_at"	"MYLK3"	91807	"ENSG00000140795"
+"1560974_s_at"	"NOS1"	4842	"ENSG00000089250"
+"1569078_at"	"RNF213-AS1"	100294362	"ENSG00000263069"
+"1569296_a_at"	""	NA	"ENSG00000291136"
+"1563065_at"	""	NA	"ENSG00000260369"
+"1570352_at"	"ATM"	472	"ENSG00000149311"
+"1560753_at"	""	NA	"ENSG00000264990"
+"1560464_at"	"TSPAN10"	83882	"ENSG00000182612"
+"1562888_at"	"GLB1L3"	112937	"ENSG00000166105"
+"1569886_a_at"	"GLB1L3"	112937	"ENSG00000166105"
+"1569974_x_at"	""	NA	"ENSG00000291207"
+"1569973_at"	""	NA	"ENSG00000291207"
+"1569515_a_at"	""	NA	"ENSG00000266985"
+"1569693_at"	"BTBD8"	284697	"ENSG00000189195"
+"1564511_a_at"	"FSTL4"	23105	"ENSG00000053108"
+"1560439_at"	"LINGO3"	645191	"ENSG00000220008"
+"1570420_at"	"STXBP2"	6813	"ENSG00000076944"
+"1561041_at"	"TNRC6C"	57690	"ENSG00000078687"
+"1569876_at"	"EFCAB13"	124989	"ENSG00000178852"
+"1570344_at"	""	NA	"ENSG00000288707"
+"1563680_at"	""	NA	"ENSG00000229498"
+"1563099_at"	""	100507053	"ENSG00000246090"
+"1564600_a_at"	"IHO1"	339834	"ENSG00000173421"
+"1569690_at"	"IHO1"	339834	"ENSG00000173421"
+"1560703_at"	"LYRM9"	201229	"ENSG00000232859"
+"1561576_a_at"	""	NA	"ENSG00000225570"
+"1561575_at"	""	NA	"ENSG00000225570"
+"1565936_a_at"	"LMO3"	55885	"ENSG00000048540"
+"1568804_at"	""	101928371	"ENSG00000225420"
+"1569772_x_at"	""	NA	"ENSG00000278239"
+"1569898_a_at"	"PAXIP1-AS2"	NA	"ENSG00000214106"
+"1563222_at"	"TMBIM4"	51643	"ENSG00000155957"
+"1562004_x_at"	"MYOZ3"	91977	"ENSG00000164591"
+"1562002_at"	"MYOZ3"	91977	"ENSG00000164591"
+"1566191_at"	"SUZ12"	23512	"ENSG00000178691"
+"1563335_at"	"IRGM"	345611	"ENSG00000237693"
+"1560939_at"	"PCOLCE-AS1"	100129845	"ENSG00000224729"
+"1568673_s_at"	"EAF2"	55840	"ENSG00000145088"
+"1568672_at"	"EAF2"	55840	"ENSG00000145088"
+"1566140_at"	"HOPX"	84525	"ENSG00000171476"
+"1569956_at"	"MYLK"	4638	"ENSG00000065534"
+"1563466_at"	"MYLK"	4638	"ENSG00000065534"
+"1568770_at"	"MYLK"	4638	"ENSG00000065534"
+"1569225_a_at"	"SCML4"	256380	"ENSG00000146285"
+"1563542_a_at"	"SCML4"	256380	"ENSG00000146285"
+"1570542_a_at"	"PMPCB"	9512	"ENSG00000105819"
+"1569696_at"	"CSMD2-AS1"	402779	"ENSG00000231163"
+"1570044_at"	""	NA	"ENSG00000290729"
+"1569407_at"	""	NA	"ENSG00000236065"
+"1570020_at"	"AACSP1"	729522	"ENSG00000291019"
+"1562443_at"	"CLVS2"	134829	"ENSG00000146352"
+"1563496_at"	"RNF217-AS1"	NA	"ENSG00000236548"
+"1563182_at"	"ACVR1C"	130399	"ENSG00000123612"
+"1561332_at"	"ATP13A5"	344905	"ENSG00000187527"
+"1563595_at"	"SRGAP3"	9901	"ENSG00000196220"
+"1565228_s_at"	"ALB"	213	"ENSG00000163631"
+"1570342_at"	"NKTR"	4820	"ENSG00000114857"
+"1564040_a_at"	"TMEM235"	283999	"ENSG00000204278"
+"1565034_s_at"	"AFF3"	3899	"ENSG00000144218"
+"1560164_at"	"TRDN-AS1"	NA	"ENSG00000235535"
+"1561427_at"	"GRM8-AS1"	101928333	"ENSG00000236340"
+"1560527_at"	"NFE4"	58160	"ENSG00000230257"
+"1562922_at"	""	NA	"ENSG00000245869"
+"177_at"	"PLD1"	5337	"ENSG00000075651"
+"1566991_at"	"ARID1B"	57492	"ENSG00000049618"
+"1561378_at"	"C12orf42"	374470	"ENSG00000179088"
+"1564760_at"	""	NA	"ENSG00000261379"
+"1569592_a_at"	"F11"	2160	"ENSG00000088926"
+"1569591_at"	"F11"	2160	"ENSG00000088926"
+"1561094_a_at"	"SLC22A25"	387601	"ENSG00000196600"
+"1561093_at"	"SLC22A25"	387601	"ENSG00000196600"
+"1563391_at"	"LINC01737"	101927553	"ENSG00000232964"
+"1567623_at"	"ABLIM2"	84448	"ENSG00000163995"
+"1561519_at"	"LINC02047"	101927346	"ENSG00000239454"
+"1563097_at"	"DNAH12"	201625	"ENSG00000174844"
+"1569004_at"	"CARD8-AS1"	100505812	"ENSG00000268001"
+"1559954_s_at"	"DDX42"	11325	"ENSG00000198231"
+"1559953_at"	"DDX42"	11325	"ENSG00000198231"
+"1569378_at"	"LINC00942"	100292680	"ENSG00000249628"
+"1563947_a_at"	"ERC1"	23085	"ENSG00000082805"
+"1569861_at"	"TRAF5"	7188	"ENSG00000082512"
+"1570326_at"	""	NA	"ENSG00000261314"
+"1560156_at"	""	NA	"ENSG00000257027"
+"1570033_at"	"WIPI2"	26100	"ENSG00000157954"
+"1565881_at"	"ARHGAP35"	2909	"ENSG00000160007"
+"1570124_at"	"SLC29A4"	222962	"ENSG00000164638"
+"1564164_at"	"DENND1B"	163486	"ENSG00000213047"
+"1569401_at"	"CLEC12A"	160364	"ENSG00000172322"
+"1569106_s_at"	"SETD5"	55209	"ENSG00000168137"
+"1569105_at"	"SETD5"	55209	"ENSG00000168137"
+"1561940_at"	"CHFR"	55743	"ENSG00000072609"
+"1568864_at"	"MZF1-AS1"	100131691	"ENSG00000267858"
+"1559849_at"	"ZNF605"	100289635	"ENSG00000196458"
+"1560251_at"	""	645485	"ENSG00000246331"
+"1560689_s_at"	"AKT2"	208	"ENSG00000105221"
+"1566108_at"	""	NA	"ENSG00000269984"
+"1561589_a_at"	"NBEAL1"	65065	"ENSG00000144426"
+"1564937_at"	"R3HDM2"	22864	"ENSG00000179912"
+"1560576_at"	"LINC01842"	NA	"ENSG00000267147"
+"1562579_at"	"HYCC2"	285172	"ENSG00000155744"
+"1562272_at"	""	101927914	"ENSG00000234210"
+"1564584_at"	""	NA	"ENSG00000280266"
+"1559770_at"	""	NA	"ENSG00000289428"
+"1569450_at"	"CAPZA2"	830	"ENSG00000198898"
+"1569478_s_at"	"LINC02987"	101927151	"ENSG00000267575"
+"1569827_at"	"ATG7"	10533	"ENSG00000197548"
+"1564150_a_at"	"LINC01619"	256021	"ENSG00000257242"
+"1562546_at"	"LINC01409"	NA	"ENSG00000237491"
+"1562257_x_at"	"NLRP1"	22861	"ENSG00000091592"
+"1562256_at"	"NLRP1"	22861	"ENSG00000091592"
+"1561469_at"	"LINC02728"	101928865	"ENSG00000251323"
+"1559817_at"	"SLC38A4-AS1"	NA	"ENSG00000257261"
+"1562788_at"	"LINC01342"	254099	"ENSG00000223823"
+"1569349_at"	"EMSY"	56946	"ENSG00000158636"
+"1561266_at"	""	NA	"ENSG00000244675"
+"1568856_at"	"NBR1"	4077	"ENSG00000188554"
+"1568857_a_at"	"NBR1"	4077	"ENSG00000188554"
+"1560477_a_at"	"SAMD11"	148398	"ENSG00000187634"
+"1568978_s_at"	"C11orf21"	29125	"ENSG00000110665"
+"1564309_at"	"LINC00486"	285045	"ENSG00000230876"
+"1561726_s_at"	"CD81-AS1"	101927682	"ENSG00000238184"
+"1569269_s_at"	"SRGAP1"	57522	"ENSG00000196935"
+"1569077_x_at"	"ZNF836"	162962	"ENSG00000196267"
+"1565269_s_at"	"ATF1"	466	"ENSG00000123268"
+"1569176_at"	"TMPRSS12"	283471	"ENSG00000186452"
+"1562244_at"	""	NA	"ENSG00000288253"
+"1562245_a_at"	""	NA	"ENSG00000288253"
+"1560390_s_at"	"LINC00663"	NA	"ENSG00000266904"
+"1569318_at"	"LINC00663"	NA	"ENSG00000266904"
+"1561387_a_at"	"NXPE1"	120400	"ENSG00000095110"
+"1568720_at"	"ZNF506"	440515	"ENSG00000081665"
+"1561269_at"	"RAPGEF5"	9771	"ENSG00000136237"
+"1563882_a_at"	"RAPGEF5"	9771	"ENSG00000136237"
+"1569721_at"	""	NA	"ENSG00000279429"
+"1569640_s_at"	"EEPD1"	80820	"ENSG00000122547"
+"1564936_at"	""	NA	"ENSG00000260070"
+"1564310_a_at"	"PARP15"	165631	"ENSG00000173200"
+"1562914_a_at"	"LINC00905"	148231	"ENSG00000167459"
+"1564868_a_at"	"FAM117B"	150864	"ENSG00000138439"
+"1561880_a_at"	"SIGLEC16"	400709	"ENSG00000161643"
+"1560276_at"	"LINC02874"	NA	"ENSG00000257137"
+"1560277_a_at"	"LINC02874"	NA	"ENSG00000257137"
+"1564435_a_at"	"KRT72"	140807	"ENSG00000170486"
+"1560781_at"	"DNHD1"	144132	"ENSG00000179532"
+"1569580_a_at"	""	NA	"ENSG00000276272"
+"1565856_at"	"LINC-PINT"	378805	"ENSG00000231721"
+"1567107_s_at"	"TPM4"	7171	"ENSG00000167460"
+"1560995_s_at"	""	NA	"ENSG00000280167"
+"1563098_at"	"IGFN1"	91156	"ENSG00000163395"
+"1569254_s_at"	"INTS4"	92105	"ENSG00000149262"
+"1569253_at"	"INTS4"	92105	"ENSG00000149262"
+"1559989_at"	""	NA	"ENSG00000279198"
+"1564485_at"	"LINC00887"	NA	"ENSG00000214145"
+"1567183_s_at"	""	NA	"ENSG00000189229"
+"1561329_s_at"	"RPUSD3"	285367	"ENSG00000156990"
+"1566603_s_at"	"RPUSD3"	285367	"ENSG00000156990"
+"1560853_x_at"	""	NA	"ENSG00000291130"
+"1569191_at"	""	NA	"ENSG00000291130"
+"1563101_at"	"BMAL2-AS1"	101928646	"ENSG00000245311"
+"1569935_at"	""	NA	"ENSG00000275389"
+"1559979_at"	"SYF2"	25949	"ENSG00000117614"
+"1562749_at"	"PRKAG2-AS2"	644090	"ENSG00000242048"
+"1570371_a_at"	"SELENOI"	85465	"ENSG00000138018"
+"1561425_a_at"	"ZNF568"	374900	"ENSG00000198453"
+"1562282_at"	"ZNF568"	374900	"ENSG00000198453"
+"1568900_a_at"	"ZNF568"	374900	"ENSG00000198453"
+"1564356_at"	"ZNF568"	374900	"ENSG00000198453"
+"1560174_at"	"SPAG16"	79582	"ENSG00000144451"
+"1560305_x_at"	"FKBP4"	2288	"ENSG00000004478"
+"1560303_at"	"FKBP4"	2288	"ENSG00000004478"
+"1562648_at"	"CCDC88A"	55704	"ENSG00000115355"
+"1561595_x_at"	"ZNF426-DT"	101928238	"ENSG00000278611"
+"1562789_at"	"ZNF229"	7772	"ENSG00000278318"
+"1565731_at"	"ALDH3B1"	221	"ENSG00000006534"
+"1560458_s_at"	"CAPS2"	84698	"ENSG00000180881"
+"1560292_a_at"	"TMCO4"	255104	"ENSG00000162542"
+"1568834_s_at"	"CCDC90B"	60492	"ENSG00000137500"
+"1569838_at"	"ZNF84-DT"	101928597	"ENSG00000246394"
+"1560573_at"	"LINC00944"	NA	"ENSG00000256128"
+"1560819_a_at"	"LINC00944"	NA	"ENSG00000256128"
+"1560818_at"	"LINC00944"	NA	"ENSG00000256128"
+"1564533_at"	"PAFAH1B2P2"	643711	"ENSG00000257501"
+"1570009_at"	"PAFAH1B2P2"	643711	"ENSG00000257501"
+"1560204_at"	"NT5DC4"	284958	"ENSG00000144130"
+"1562019_at"	"NT5DC4"	284958	"ENSG00000144130"
+"1562020_s_at"	"NT5DC4"	284958	"ENSG00000144130"
+"1561899_at"	"CLECL1P"	160365	"ENSG00000184293"
+"1564220_a_at"	"LINC01234"	100506465	"ENSG00000249550"
+"1563369_at"	"LINC00173"	100287569	"ENSG00000196668"
+"1567238_at"	"OR2L2"	26246	"ENSG00000203663"
+"1567240_x_at"	"OR2L2"	26246	"ENSG00000203663"
+"1566289_at"	"OR2M4"	26245	"ENSG00000171180"
+"1570396_at"	"FAM66C"	NA	"ENSG00000226711"
+"1570397_x_at"	"FAM66C"	NA	"ENSG00000226711"
+"1563707_at"	"RPAP3-DT"	NA	"ENSG00000257433"
+"1565732_at"	"RPAP3-DT"	NA	"ENSG00000257433"
+"1567253_at"	"OR10D3"	26497	"ENSG00000197309"
+"1570516_s_at"	"OR51B5"	282763	"ENSG00000167355"
+"1562490_at"	"THEM5"	284486	"ENSG00000196407"
+"1560445_x_at"	"ARHGEF1"	9138	"ENSG00000076928"
+"1566544_at"	""	100506012	"ENSG00000291145"
+"1561532_at"	"DACT3-AS1"	100506068	"ENSG00000245598"
+"1568191_at"	"CBL"	867	"ENSG00000110395"
+"1564301_a_at"	"RPAIN"	84268	"ENSG00000129197"
+"1561592_at"	"LINC02763"	101928823	"ENSG00000254968"
+"1563376_at"	""	101929174	"ENSG00000288018"
+"1562520_at"	""	101929473	"ENSG00000255087"
+"1563456_at"	"CCDC141"	285025	"ENSG00000163492"
+"1562217_at"	"ZBTB44-DT"	NA	"ENSG00000175773"
+"1561087_at"	"LINC02367"	101930452	"ENSG00000260423"
+"1561820_at"	"SCN8A"	6334	"ENSG00000196876"
+"1563800_at"	"LINC02762"	283140	"ENSG00000250303"
+"1559946_s_at"	"RUVBL2"	10856	"ENSG00000183207"
+"1559945_at"	"RUVBL2"	10856	"ENSG00000183207"
+"1569107_s_at"	"ZFP69"	339559	"ENSG00000187815"
+"1560589_a_at"	"LINC02683"	101928132	"ENSG00000254438"
+"1561607_at"	"SLC6A12-AS1"	101929384	"ENSG00000256577"
+"1569240_at"	"ZNF93"	81931	"ENSG00000184635"
+"1569241_a_at"	"ZNF93"	81931	"ENSG00000184635"
+"1565554_at"	"LINC00628"	127841	"ENSG00000280924"
+"1562133_x_at"	"ZNF90"	7643	"ENSG00000213988"
+"1569638_at"	"SOX5"	6660	"ENSG00000134532"
+"1560117_at"	"ABHD1"	84696	"ENSG00000143994"
+"1561396_at"	"EPHA6"	285220	"ENSG00000080224"
+"1561222_at"	"LINC00485"	283432	"ENSG00000258169"
+"1569949_at"	"TNNT1"	7138	"ENSG00000105048"
+"1563776_at"	"MSANTD2-AS1"	100507283	"ENSG00000245498"
+"1568888_at"	"MSANTD2-AS1"	100507283	"ENSG00000245498"
+"1567054_at"	""	NA	"ENSG00000235749"
+"1560208_at"	"DNAAF3-AS1"	NA	"ENSG00000267577"
+"1567055_at"	"OR1C1"	26188	"ENSG00000221888"
+"1562046_at"	"LINC01788"	101927244	"ENSG00000229051"
+"1560202_at"	"CSTF3-DT"	338739	"ENSG00000247151"
+"1563913_at"	"LINC02044"	101929717	"ENSG00000243795"
+"1560695_at"	"QTRT2"	79691	"ENSG00000151576"
+"1560696_x_at"	"QTRT2"	79691	"ENSG00000151576"
+"1560792_at"	"IER5"	51278	"ENSG00000162783"
+"1569257_at"	"FMNL1"	752	"ENSG00000184922"
+"1563549_a_at"	"ANO8"	57719	"ENSG00000074855"
+"1561997_at"	""	NA	"ENSG00000290492"
+"1561443_at"	""	101928535	"ENSG00000290498"
+"1570130_at"	"SPATS2"	65244	"ENSG00000123352"
+"1562408_at"	""	NA	"ENSG00000260777"
+"1562409_s_at"	""	NA	"ENSG00000260777"
+"1569979_at"	"ZNF875"	284459	"ENSG00000181666"
+"1569980_x_at"	"ZNF875"	284459	"ENSG00000181666"
+"1568690_a_at"	""	100631378	"ENSG00000290722"
+"1568689_at"	""	100631378	"ENSG00000290722"
+"1562273_at"	"CNGA4"	1262	"ENSG00000132259"
+"1564854_at"	""	NA	"ENSG00000259862"
+"1569714_at"	"RBSN"	64145	"ENSG00000131381"
+"1567862_at"	"DNAH14"	127602	"ENSG00000185842"
+"1560785_at"	"DYRK3"	8444	"ENSG00000143479"
+"1569073_x_at"	"SMARCA4"	6597	"ENSG00000127616"
+"1560262_at"	""	NA	"ENSG00000236304"
+"1562870_at"	"ETS1-AS1"	101929517	"ENSG00000254588"
+"1564449_at"	"USP2-AS1"	NA	"ENSG00000245248"
+"1562619_at"	"NME9"	347736	"ENSG00000181322"
+"1566473_a_at"	"TGOLN2"	10618	"ENSG00000152291"
+"1560978_at"	""	NA	"ENSG00000261000"
+"1564706_s_at"	"GLS2"	27165	"ENSG00000135423"
+"1564707_x_at"	"GLS2"	27165	"ENSG00000135423"
+"1564705_at"	"GLS2"	27165	"ENSG00000135423"
+"1560642_at"	""	NA	"ENSG00000279151"
+"1560643_x_at"	""	NA	"ENSG00000279151"
+"1560553_at"	"MYO18A"	399687	"ENSG00000196535"
+"1559889_at"	"H3-7"	440686	"ENSG00000273213"
+"1561273_at"	"HOXC-AS3"	100874365	"ENSG00000251151"
+"1564194_a_at"	"MS4A15"	219995	"ENSG00000166961"
+"1561546_at"	"FGD5-AS1"	100505641	"ENSG00000225733"
+"1569454_a_at"	"TMEM132D-AS1"	283352	"ENSG00000249196"
+"1561757_a_at"	"TMEM132D-AS1"	283352	"ENSG00000249196"
+"1560810_at"	"TMEM132D-AS2"	101927735	"ENSG00000256699"
+"1561044_at"	"LINC01732"	101928973	"ENSG00000237292"
+"1561045_a_at"	"LINC01732"	101928973	"ENSG00000237292"
+"1569268_at"	"GRIN2C"	2905	"ENSG00000161509"
+"1562457_at"	"NCKAP5L"	57701	"ENSG00000167566"
+"1560531_at"	"LCE1B"	353132	"ENSG00000196734"
+"1560760_s_at"	"LINC01527"	101927988	"ENSG00000224308"
+"1569756_at"	"LINC02395"	101927292	"ENSG00000257771"
+"1562601_at"	"LINC01121"	400952	"ENSG00000205054"
+"1562717_at"	"LINC00299"	339789	"ENSG00000236790"
+"1562716_at"	"LINC02800"	284632	"ENSG00000230023"
+"1562523_at"	"LINC01877"	101927641	"ENSG00000238217"
+"1566984_at"	"LRRC37A16P"	NA	"ENSG00000267023"
+"1559766_at"	"ALDH1L1-AS2"	100862662	"ENSG00000246022"
+"1563035_x_at"	"GPD1"	2819	"ENSG00000167588"
+"1563034_at"	"GPD1"	2819	"ENSG00000167588"
+"1564837_at"	"NECTIN3-AS1"	NA	"ENSG00000242242"
+"1564838_a_at"	"NECTIN3-AS1"	NA	"ENSG00000242242"
+"1569104_a_at"	"PTPN23-DT"	NA	"ENSG00000260236"
+"1561581_at"	"GSK3B-DT"	NA	"ENSG00000242622"
+"1559827_at"	"LINC00960"	401074	"ENSG00000242516"
+"1559826_a_at"	"LINC00960"	401074	"ENSG00000242516"
+"1564175_at"	"LINC00960"	401074	"ENSG00000242516"
+"1570169_at"	"CSMD2"	114784	"ENSG00000121904"
+"1562295_at"	"ADAMTS9-AS2"	NA	"ENSG00000241684"
+"1569925_at"	"DNAH17-AS1"	NA	"ENSG00000267432"
+"1569624_at"	"FTOP1"	NA	"ENSG00000226491"
+"1563691_at"	"RPL23AP49"	NA	"ENSG00000243422"
+"1570171_at"	""	NA	"ENSG00000281160"
+"1569180_at"	"LRRC37A2"	474170	"ENSG00000238083"
+"1569181_x_at"	"LRRC37A2"	474170	"ENSG00000238083"
+"1568593_a_at"	"NUDT16L2P"	152195	"ENSG00000246082"
+"1566761_a_at"	"ATP13A3-DT"	NA	"ENSG00000233058"
+"1565577_s_at"	"NOL10"	79954	"ENSG00000115761"
+"1565576_at"	"NOL10"	79954	"ENSG00000115761"
+"1570049_at"	"LINC00910"	NA	"ENSG00000188825"
+"1566129_at"	"LIMS1"	3987	"ENSG00000169756"
+"1569178_at"	"GRIA4"	2893	"ENSG00000152578"
+"1561983_at"	"LINC01206"	100996490	"ENSG00000242512"
+"1563053_at"	"CCDC13-AS2"	NA	"ENSG00000225611"
+"1562776_at"	"LINC02579"	339807	"ENSG00000233694"
+"1559893_at"	"GPATCH11"	253635	"ENSG00000152133"
+"1569570_at"	"AGBL4"	84871	"ENSG00000186094"
+"1560588_at"	""	NA	"ENSG00000225794"
+"1560634_a_at"	""	105373876	"ENSG00000237479"
+"1563830_a_at"	"FHAD1"	114827	"ENSG00000142621"
+"1564635_a_at"	"FHAD1"	114827	"ENSG00000142621"
+"1563639_a_at"	"FHAD1"	114827	"ENSG00000142621"
+"1560097_at"	"FHAD1"	114827	"ENSG00000142621"
+"1563961_at"	"FHAD1"	114827	"ENSG00000142621"
+"1561539_at"	"FZD4-DT"	100506368	"ENSG00000246523"
+"1570261_at"	""	NA	"ENSG00000222017"
+"1562475_at"	"TEX41"	401014	"ENSG00000226674"
+"1563145_at"	"LINC00301"	283197	"ENSG00000181995"
+"1567334_at"	""	NA	"ENSG00000279876"
+"1561107_at"	""	NA	"ENSG00000279818"
+"1560944_at"	"SLC25A3P1"	163742	"ENSG00000236253"
+"1562791_at"	"MYCBPAP"	84073	"ENSG00000136449"
+"1564467_at"	"FAM161A"	84140	"ENSG00000170264"
+"1559856_s_at"	"KMT2A"	4297	"ENSG00000118058"
+"1569102_at"	"ABCA4"	24	"ENSG00000198691"
+"1560992_at"	""	107984974	"ENSG00000291063"
+"1568949_at"	"PITPNC1"	26207	"ENSG00000154217"
+"1561489_at"	""	NA	"ENSG00000283994"
+"1560538_at"	""	101928386	"ENSG00000232377"
+"1560058_at"	""	NA	"ENSG00000279491"
+"1562699_at"	""	101928847	"ENSG00000247416"
+"1569885_at"	"LINC00882"	NA	"ENSG00000242759"
+"1560514_at"	"LINC00636"	285205	"ENSG00000240423"
+"1560928_at"	""	NA	"ENSG00000279277"
+"1561370_at"	""	NA	"ENSG00000223522"
+"1560932_at"	"FOSL2-AS1"	403150	"ENSG00000229951"
+"1561226_at"	"XCR1"	2829	"ENSG00000173578"
+"1570071_at"	""	NA	"ENSG00000266677"
+"1569850_at"	"ADGRL2"	23266	"ENSG00000117114"
+"1569355_at"	"KCNIP3"	30818	"ENSG00000115041"
+"1562095_at"	"SLMAP"	7871	"ENSG00000163681"
+"1568896_at"	"STXBP5L"	9515	"ENSG00000145087"
+"1566720_at"	"RPS10P7"	NA	"ENSG00000223396"
+"1561480_a_at"	""	NA	"ENSG00000279205"
+"1561479_at"	""	NA	"ENSG00000279205"
+"1561847_at"	"NUDT17"	200035	"ENSG00000186364"
+"1560138_at"	"RUBCN"	9711	"ENSG00000145016"
+"1570490_at"	""	NA	"ENSG00000260377"
+"1564064_a_at"	"ATP11B"	23200	"ENSG00000058063"
+"1564063_a_at"	"ATP11B"	23200	"ENSG00000058063"
+"1564238_a_at"	"WDR49"	151790	"ENSG00000174776"
+"1560168_at"	"LRRC77P"	646168	"ENSG00000244227"
+"1568665_at"	"RNF103"	7844	"ENSG00000239305"
+"1561059_a_at"	"LINC00691"	152024	"ENSG00000224074"
+"1564469_at"	"LMOD3"	56203	"ENSG00000163380"
+"1569786_at"	"LINC02042"	101929694	"ENSG00000240893"
+"1567013_at"	"NFE2L2"	4780	"ENSG00000116044"
+"1562854_at"	"CCDC181"	57821	"ENSG00000117477"
+"1565674_at"	"FCGR2C"	NA	"ENSG00000244682"
+"1563083_s_at"	""	100271832	"ENSG00000236854"
+"1560043_at"	"CYB5R1"	51706	"ENSG00000159348"
+"1563142_at"	""	NA	"ENSG00000240687"
+"1562326_at"	"LINC01122"	NA	"ENSG00000233723"
+"1563298_at"	"LINC01831"	NA	"ENSG00000225765"
+"1564231_at"	"IFT80"	57560	"ENSG00000068885"
+"1563027_at"	"LINC01821"	NA	"ENSG00000225539"
+"1560679_at"	"LINC01127"	NA	"ENSG00000281162"
+"1570023_at"	"MGAT4EP"	641515	"ENSG00000184774"
+"1560010_a_at"	"SATB2-AS1"	150538	"ENSG00000225953"
+"1568691_at"	""	NA	"ENSG00000224376"
+"1570116_at"	""	NA	"ENSG00000230773"
+"1562481_at"	"PCBP1-AS1"	400960	"ENSG00000179818"
+"1568640_at"	"PCBP1-AS1"	400960	"ENSG00000179818"
+"1560288_at"	"FSIP2-AS2"	101927196	"ENSG00000226747"
+"1561651_s_at"	"TAL1"	6886	"ENSG00000162367"
+"1560347_at"	""	NA	"ENSG00000289202"
+"1560328_s_at"	""	NA	"ENSG00000289202"
+"1569325_at"	"ARPC5"	10092	"ENSG00000162704"
+"1563044_at"	""	NA	"ENSG00000234902"
+"1570337_at"	"FIGLA"	344018	"ENSG00000183733"
+"1563834_a_at"	"AKNAD1"	254268	"ENSG00000162641"
+"1561555_at"	"LINC00970"	101978719	"ENSG00000203601"
+"1559787_at"	"LINC01800"	101927438	"ENSG00000234572"
+"1570006_at"	"LINC02245"	400958	"ENSG00000237638"
+"1561976_at"	"C1orf167"	284498	"ENSG00000215910"
+"1569112_at"	"SLC44A5"	204962	"ENSG00000137968"
+"1562415_a_at"	"SPOCD1"	90853	"ENSG00000134668"
+"1561331_at"	"LINC01036"	104169671	"ENSG00000230426"
+"1570285_at"	"LNCATV"	101927851	"ENSG00000238005"
+"1568905_at"	"SLC44A3-AS1"	101928079	"ENSG00000224081"
+"1562909_at"	"LINC00862"	554279	"ENSG00000203721"
+"1564413_at"	"LINC01356"	100996702	"ENSG00000215866"
+"1562731_s_at"	"MDS2"	259283	"ENSG00000197880"
+"1563002_at"	"UAP1-DT"	NA	"ENSG00000259788"
+"1561103_at"	""	NA	"ENSG00000229913"
+"1568868_at"	"CYP27C1"	339761	"ENSG00000186684"
+"1564280_x_at"	""	100133920	"ENSG00000290941"
+"1561197_at"	""	442028	"ENSG00000291025"
+"1569013_s_at"	""	NA	"ENSG00000291142"
+"1561615_s_at"	"SLC8A1"	6546	"ENSG00000183023"
+"1561614_at"	"SLC8A1"	6546	"ENSG00000183023"
+"1565306_a_at"	"SLC8A1"	6546	"ENSG00000183023"
+"1564985_a_at"	"SLC8A1"	6546	"ENSG00000183023"
+"1562902_at"	""	NA	"ENSG00000203395"
+"1559977_a_at"	"SLC25A34"	284723	"ENSG00000162461"
+"1561433_at"	"MED15P9"	285103	"ENSG00000290707"
+"1562871_at"	""	NA	"ENSG00000290905"
+"1568812_at"	"LINC01792"	NA	"ENSG00000237166"
+"1561511_at"	""	NA	"ENSG00000261213"
+"1561034_at"	""	NA	"ENSG00000224127"
+"1569469_a_at"	"LHX8"	431707	"ENSG00000162624"
+"1560101_at"	"SYDE2"	84144	"ENSG00000097096"
+"1563904_at"	"PLPPR5-AS1"	100129620	"ENSG00000232825"
+"1562604_at"	"EPCAM-DT"	101927043	"ENSG00000234690"
+"1564757_a_at"	"CCDC148"	130940	"ENSG00000153237"
+"1563674_at"	"FCRL2"	79368	"ENSG00000132704"
+"1563120_at"	"PKP4-AS1"	100129029	"ENSG00000204380"
+"1569502_s_at"	"TP73-AS1"	57212	"ENSG00000227372"
+"1570569_at"	""	NA	"ENSG00000274547"
+"1570082_x_at"	"HIPK1-AS1"	101928846	"ENSG00000235527"
+"1570080_at"	"HIPK1-AS1"	101928846	"ENSG00000235527"
+"1561853_a_at"	"IL23R"	149233	"ENSG00000162594"
+"1569706_at"	"MYSM1"	114803	"ENSG00000162601"
+"1561732_at"	"LINC01647"	101929181	"ENSG00000235643"
+"1560042_at"	"RMDN2"	151393	"ENSG00000115841"
+"1563743_at"	"LINC01555"	439927	"ENSG00000180869"
+"1564598_a_at"	"VWA3B"	200403	"ENSG00000168658"
+"1561200_at"	"VWA3B"	200403	"ENSG00000168658"
+"1562371_s_at"	"VWA3B"	200403	"ENSG00000168658"
+"1568938_at"	"LINC01398"	101929651	"ENSG00000224863"
+"1568752_s_at"	"RGS13"	6003	"ENSG00000127074"
+"1568751_at"	"RGS13"	6003	"ENSG00000127074"
+"1569034_a_at"	"MSH6"	2956	"ENSG00000116062"
+"1560625_s_at"	"CATIP-AS1"	101928513	"ENSG00000225062"
+"1561345_at"	""	101928009	"ENSG00000229699"
+"1569701_at"	"PER3"	8863	"ENSG00000049246"
+"1570533_at"	"CMPK1"	51727	"ENSG00000162368"
+"1562103_at"	"LINC01359"	NA	"ENSG00000226891"
+"1561280_at"	"LEMD1-AS1"	284576	"ENSG00000226235"
+"1561281_a_at"	"LEMD1-AS1"	284576	"ENSG00000226235"
+"1564351_at"	""	NA	"ENSG00000272033"
+"1561884_at"	"CEPT1"	10390	"ENSG00000134255"
+"1559821_at"	""	107985206	"ENSG00000286391"
+"1561625_at"	""	101928565	"ENSG00000228697"
+"1569895_at"	"LINC01134"	100133612	"ENSG00000236423"
+"1569604_at"	"LINC01134"	100133612	"ENSG00000236423"
+"1568853_at"	"TDRKH-AS1"	109729141	"ENSG00000203288"
+"1562474_at"	"WARS2-AS1"	101929147	"ENSG00000231365"
+"1561553_at"	"WARS2-AS1"	101929147	"ENSG00000231365"
+"1561693_at"	"LRRC52-AS1"	400794	"ENSG00000237463"
+"1568799_at"	"SLC16A1-AS1"	100506392	"ENSG00000226419"
+"1568813_at"	"SLC16A1-AS1"	100506392	"ENSG00000226419"
+"1570451_at"	"MIR9-1HG"	10485	"ENSG00000125462"
+"1560746_at"	"NEXN-AS1"	374987	"ENSG00000235927"
+"1565671_a_at"	"KIAA1614"	57710	"ENSG00000135835"
+"1568745_at"	"LINC01704"	646268	"ENSG00000231666"
+"1568746_a_at"	"LINC01704"	646268	"ENSG00000231666"
+"1569748_at"	""	NA	"ENSG00000271806"
+"1560560_at"	""	101927143	"ENSG00000232628"
+"1562674_at"	"LINC02806"	NA	"ENSG00000238107"
+"1569676_at"	"TOR1AIP2"	163590	"ENSG00000169905"
+"1568832_a_at"	""	NA	"ENSG00000260360"
+"1570015_at"	""	149620	"ENSG00000290764"
+"1561318_at"	""	NA	"ENSG00000261025"
+"1569688_at"	"FMO5"	2330	"ENSG00000131781"
+"1561440_at"	""	NA	"ENSG00000225028"
+"1569337_at"	""	NA	"ENSG00000272491"
+"1568728_s_at"	"RNF207"	388591	"ENSG00000158286"
+"1565809_x_at"	"TMEM88B"	643965	"ENSG00000205116"
+"1561682_at"	"TTLL7-IT1"	100874314	"ENSG00000233061"
+"1563565_at"	"INPP5B"	3633	"ENSG00000204084"
+"1562510_at"	"LINC01343"	339442	"ENSG00000237290"
+"1559848_at"	"NSUN4"	387338	"ENSG00000117481"
+"1564897_at"	"TNR"	7143	"ENSG00000116147"
+"1564112_at"	""	NA	"ENSG00000235862"
+"1560935_s_at"	""	NA	"ENSG00000274895"
+"1560934_at"	""	NA	"ENSG00000274895"
+"1564262_at"	""	NA	"ENSG00000272167"
+"1570243_at"	""	122526782	"ENSG00000233461"
+"1563744_a_at"	"DISC1"	27185	"ENSG00000162946"
+"1562543_at"	""	NA	"ENSG00000236372"
+"1563655_at"	"TNNT2"	7139	"ENSG00000118194"
+"204410_at"	"EIF1AY"	9086	"ENSG00000198692"
+"204409_s_at"	"EIF1AY"	9086	"ENSG00000198692"
+"201909_at"	"RPS4Y1"	6192	"ENSG00000129824"
+"205001_s_at"	"DDX3Y"	8653	"ENSG00000067048"
+"205000_at"	"DDX3Y"	8653	"ENSG00000067048"
+"204305_at"	"MIPEP"	4285	"ENSG00000027001"
+"203917_at"	"CXADR"	1525	"ENSG00000154639"
+"204190_at"	"USPL1"	10208	"ENSG00000132952"
+"204775_at"	"CHAF1B"	8208	"ENSG00000159259"
+"204042_at"	"WASF3"	10810	"ENSG00000132970"
+"202304_at"	"FNDC3A"	22862	"ENSG00000102531"
+"203156_at"	"AKAP11"	11215	"ENSG00000023516"
+"201338_x_at"	"GTF3A"	2971	"ENSG00000122034"
+"203387_s_at"	"TBC1D4"	9882	"ENSG00000136111"
+"203386_at"	"TBC1D4"	9882	"ENSG00000136111"
+"204011_at"	"SPRY2"	10253	"ENSG00000136158"
+"204128_s_at"	"RFC3"	5983	"ENSG00000133119"
+"204127_at"	"RFC3"	5983	"ENSG00000133119"
+"201329_s_at"	"ETS2"	2114	"ENSG00000157557"
+"201328_at"	"ETS2"	2114	"ENSG00000157557"
+"203597_s_at"	"WBP4"	11193	"ENSG00000120688"
+"203598_s_at"	"WBP4"	11193	"ENSG00000120688"
+"203599_s_at"	"WBP4"	11193	"ENSG00000120688"
+"203126_at"	"IMPA2"	3613	"ENSG00000141401"
+"202724_s_at"	"FOXO1"	2308	"ENSG00000150907"
+"202932_at"	"YES1"	7525	"ENSG00000176105"
+"202933_s_at"	"YES1"	7525	"ENSG00000176105"
+"205379_at"	"CBR3"	874	"ENSG00000159231"
+"205290_s_at"	"BMP2"	650	"ENSG00000125845"
+"205289_at"	"BMP2"	650	"ENSG00000125845"
+"202946_s_at"	"BTBD3"	22903	"ENSG00000132640"
+"200740_s_at"	"SUMO3"	6612	"ENSG00000184900"
+"200739_s_at"	"SUMO3"	6612	"ENSG00000184900"
+"204869_at"	"PCSK2"	5126	"ENSG00000125851"
+"204870_s_at"	"PCSK2"	5126	"ENSG00000125851"
+"202505_at"	"SNRPB2"	6629	"ENSG00000125870"
+"202671_s_at"	"PDXK"	8566	"ENSG00000160209"
+"202844_s_at"	"RALBP1"	10928	"ENSG00000017797"
+"202845_s_at"	"RALBP1"	10928	"ENSG00000017797"
+"201021_s_at"	"DSTN"	11034	"ENSG00000125868"
+"201022_s_at"	"DSTN"	11034	"ENSG00000125868"
+"202816_s_at"	"SS18"	6760	"ENSG00000141380"
+"202817_s_at"	"SS18"	6760	"ENSG00000141380"
+"201201_at"	"CSTB"	1476	"ENSG00000160213"
+"203860_at"	"PCCA"	5095	"ENSG00000175198"
+"203344_s_at"	"RBBP8"	5932	"ENSG00000101773"
+"201534_s_at"	"UBL3"	5412	"ENSG00000122042"
+"201535_at"	"UBL3"	5412	"ENSG00000122042"
+"201910_at"	"FARP1"	10160	"ENSG00000152767"
+"201911_s_at"	"FARP1"	10160	"ENSG00000152767"
+"204707_s_at"	"MAPK4"	5596	"ENSG00000141639"
+"203076_s_at"	"SMAD2"	4087	"ENSG00000175387"
+"203075_at"	"SMAD2"	4087	"ENSG00000175387"
+"203077_s_at"	"SMAD2"	4087	"ENSG00000175387"
+"204195_s_at"	"PKNOX1"	5316	"ENSG00000160199"
+"201588_at"	"TXNL1"	9352	"ENSG00000091164"
+"203659_s_at"	"TRIM13"	10206	"ENSG00000204977"
+"204434_at"	"SPATA2"	9825	"ENSG00000158480"
+"204433_s_at"	"SPATA2"	9825	"ENSG00000158480"
+"200868_s_at"	"RNF114"	55905	"ENSG00000124226"
+"200867_at"	"RNF114"	55905	"ENSG00000124226"
+"202810_at"	"DRG1"	4733	"ENSG00000185721"
+"201271_s_at"	"RALY"	22913	"ENSG00000125970"
+"204935_at"	"PTPN2"	5771	"ENSG00000175354"
+"204555_s_at"	"PPP1R3D"	5509	"ENSG00000132825"
+"204554_at"	"PPP1R3D"	5509	"ENSG00000132825"
+"205361_s_at"	"PFDN4"	5203	"ENSG00000101132"
+"205362_s_at"	"PFDN4"	5203	"ENSG00000101132"
+"205360_at"	"PFDN4"	5203	"ENSG00000101132"
+"201114_x_at"	"PSMA7"	5688	"ENSG00000101182"
+"201704_at"	"ENTPD6"	955	"ENSG00000197586"
+"202088_at"	"SLC39A6"	25800	"ENSG00000141424"
+"202089_s_at"	"SLC39A6"	25800	"ENSG00000141424"
+"201360_at"	"CST3"	1471	"ENSG00000101439"
+"205266_at"	"LIF"	3976	"ENSG00000128342"
+"201509_at"	"IDH3B"	3420	"ENSG00000101365"
+"202557_at"	"HSPA13"	6782	"ENSG00000155304"
+"202558_s_at"	"HSPA13"	6782	"ENSG00000155304"
+"202177_at"	"GAS6"	2621	"ENSG00000183087"
+"203132_at"	"RB1"	5925	"ENSG00000139687"
+"202669_s_at"	"EFNB2"	1948	"ENSG00000125266"
+"202668_at"	"EFNB2"	1948	"ENSG00000125266"
+"204799_at"	"ZBED4"	9889	"ENSG00000100426"
+"202930_s_at"	"SUCLA2"	8803	"ENSG00000136143"
+"204318_s_at"	"GTSE1"	51512	"ENSG00000075218"
+"204315_s_at"	"GTSE1"	51512	"ENSG00000075218"
+"203604_at"	"ZNF516"	9658	"ENSG00000101493"
+"202749_at"	"GET1"	7485	"ENSG00000182093"
+"200834_s_at"	"RPS21"	6227	"ENSG00000171858"
+"205419_at"	"GPR183"	1880	"ENSG00000169508"
+"205287_s_at"	"TFAP2C"	7022	"ENSG00000087510"
+"205286_at"	"TFAP2C"	7022	"ENSG00000087510"
+"201569_s_at"	"SAMM50"	25813	"ENSG00000100347"
+"201570_at"	"SAMM50"	25813	"ENSG00000100347"
+"204567_s_at"	"ABCG1"	9619	"ENSG00000160179"
+"204759_at"	"RCBTB2"	1102	"ENSG00000136161"
+"204174_at"	"ALOX5AP"	241	"ENSG00000132965"
+"204703_at"	"IFT88"	8100	"ENSG00000032742"
+"202795_x_at"	"TRIOBP"	11078	"ENSG00000100106"
+"205009_at"	"TFF1"	7031	"ENSG00000160182"
+"203919_at"	"TCEA2"	6919	"ENSG00000171703"
+"205296_at"	"RBL1"	5933	"ENSG00000080839"
+"202792_s_at"	"PPP6R2"	9701	"ENSG00000100239"
+"202791_s_at"	"PPP6R2"	9701	"ENSG00000100239"
+"201281_at"	"ADRM1"	11047	"ENSG00000130706"
+"202071_at"	"SDC4"	6385	"ENSG00000124145"
+"202778_s_at"	"ZMYM2"	7750	"ENSG00000121741"
+"204287_at"	"SYNGR1"	9145	"ENSG00000100321"
+"204061_at"	"PRKX"	5613	"ENSG00000183943"
+"201699_at"	"PSMC6"	5706	"ENSG00000100519"
+"205037_at"	"IFT27"	11020	"ENSG00000100360"
+"204072_s_at"	"FRY"	10129	"ENSG00000073910"
+"204200_s_at"	"PDGFB"	5155	"ENSG00000100311"
+"204967_at"	"SHROOM2"	357	"ENSG00000146950"
+"204742_s_at"	"PDS5B"	23047	"ENSG00000083642"
+"205206_at"	"ANOS1"	3730	"ENSG00000011201"
+"202732_at"	"PKIG"	11142	"ENSG00000168734"
+"203746_s_at"	"HCCS"	3052	"ENSG00000004961"
+"203745_at"	"HCCS"	3052	"ENSG00000004961"
+"201710_at"	"MYBL2"	4605	"ENSG00000101057"
+"202096_s_at"	"TSPO"	706	"ENSG00000100300"
+"204955_at"	"SRPX"	8406	"ENSG00000101955"
+"201102_s_at"	"PFKL"	5211	"ENSG00000141959"
+"203966_s_at"	"PPM1A"	5494	"ENSG00000100614"
+"203403_s_at"	"RNF6"	6049	"ENSG00000127870"
+"204596_s_at"	"STC1"	6781	"ENSG00000159167"
+"204597_x_at"	"STC1"	6781	"ENSG00000159167"
+"204595_s_at"	"STC1"	6781	"ENSG00000159167"
+"201651_s_at"	"PACSIN2"	11252	"ENSG00000100266"
+"203995_at"	"CFAP410"	755	"ENSG00000160226"
+"203565_s_at"	"MNAT1"	4331	"ENSG00000020426"
+"204085_s_at"	"CLN5"	1203	"ENSG00000102805"
+"204084_s_at"	"CLN5"	1203	"ENSG00000102805"
+"203313_s_at"	"TGIF1"	7050	"ENSG00000177426"
+"200677_at"	"PTTG1IP"	754	"ENSG00000183255"
+"200042_at"	"RTCB"	51493	"ENSG00000100220"
+"201020_at"	"YWHAH"	7533	"ENSG00000128245"
+"202750_s_at"	"TFIP11"	24144	"ENSG00000100109"
+"202751_at"	"TFIP11"	24144	"ENSG00000100109"
+"204286_s_at"	"PMAIP1"	5366	"ENSG00000141682"
+"204285_s_at"	"PMAIP1"	5366	"ENSG00000141682"
+"200762_at"	"DPYSL2"	1808	"ENSG00000092964"
+"203441_s_at"	"CDH2"	1000	"ENSG00000170558"
+"203440_at"	"CDH2"	1000	"ENSG00000170558"
+"202181_at"	"SUSD6"	9766	"ENSG00000100647"
+"202925_s_at"	"PLAGL2"	5326	"ENSG00000126003"
+"202924_s_at"	"PLAGL2"	5326	"ENSG00000126003"
+"200713_s_at"	"MAPRE1"	22919	"ENSG00000101367"
+"200712_s_at"	"MAPRE1"	22919	"ENSG00000101367"
+"203650_at"	"PROCR"	10544	"ENSG00000101000"
+"202897_at"	"SIRPA"	140885	"ENSG00000198053"
+"202594_at"	"LEPROTL1"	23484	"ENSG00000104660"
+"202595_s_at"	"LEPROTL1"	23484	"ENSG00000104660"
+"204682_at"	"LTBP2"	4053	"ENSG00000119681"
+"202086_at"	"MX1"	4599	"ENSG00000157601"
+"202998_s_at"	"LOXL2"	4017	"ENSG00000134013"
+"202997_s_at"	"LOXL2"	4017	"ENSG00000134013"
+"202999_s_at"	"LOXL2"	4017	"ENSG00000134013"
+"204994_at"	"MX2"	4600	"ENSG00000183486"
+"203753_at"	"TCF4"	6925	"ENSG00000196628"
+"205024_s_at"	"RAD51"	5888	"ENSG00000051180"
+"205023_at"	"RAD51"	5888	"ENSG00000051180"
+"201058_s_at"	"MYL9"	10398	"ENSG00000101335"
+"205422_s_at"	"ITGBL1"	9358	"ENSG00000198542"
+"202325_s_at"	"ATP5PF"	522	"ENSG00000154723"
+"202962_at"	"KIF13B"	23303	"ENSG00000197892"
+"204598_at"	"UBOX5"	22888	"ENSG00000185019"
+"203261_at"	"DCTN6"	10671	"ENSG00000104671"
+"202313_at"	"PPP2R2A"	5520	"ENSG00000221914"
+"202585_s_at"	"NFX1"	4799	"ENSG00000086102"
+"202584_at"	"NFX1"	4799	"ENSG00000086102"
+"202197_at"	"MTMR3"	8897	"ENSG00000100330"
+"202198_s_at"	"MTMR3"	8897	"ENSG00000100330"
+"203380_x_at"	"SRSF5"	6430	"ENSG00000100650"
+"204077_x_at"	"ENTPD4"	9583	"ENSG00000197217"
+"204076_at"	"ENTPD4"	9583	"ENSG00000197217"
+"203988_s_at"	"FUT8"	2530	"ENSG00000033170"
+"202705_at"	"CCNB2"	9133	"ENSG00000157456"
+"201347_x_at"	"GRHPR"	9380	"ENSG00000137106"
+"205191_at"	"RP2"	6102	"ENSG00000102218"
+"202467_s_at"	"COPS2"	9318	"ENSG00000166200"
+"201052_s_at"	"PSMF1"	9491	"ENSG00000125818"
+"201053_s_at"	"PSMF1"	9491	"ENSG00000125818"
+"204623_at"	"TFF3"	7033	"ENSG00000160180"
+"205104_at"	"SNPH"	9751	"ENSG00000101298"
+"202610_s_at"	"MED14"	9282	"ENSG00000180182"
+"202611_s_at"	"MED14"	9282	"ENSG00000180182"
+"204987_at"	"ITIH2"	3698	"ENSG00000151655"
+"202075_s_at"	"PLTP"	5360	"ENSG00000100979"
+"204386_s_at"	"MRPL57"	78988	"ENSG00000173141"
+"204387_x_at"	"MRPL57"	78988	"ENSG00000173141"
+"203936_s_at"	"MMP9"	4318	"ENSG00000100985"
+"203956_at"	"MORC2"	22880	"ENSG00000133422"
+"200642_at"	"SOD1"	6647	"ENSG00000142168"
+"202744_at"	"SLC20A2"	6575	"ENSG00000168575"
+"205248_at"	"DOP1B"	9980	"ENSG00000142197"
+"204438_at"	"MRC1"	4360	"ENSG00000260314"
+"204867_at"	"GCHFR"	2644	"ENSG00000137880"
+"202098_s_at"	"PRMT2"	3275	"ENSG00000160310"
+"203963_at"	"CA12"	771	"ENSG00000074410"
+"204508_s_at"	"CA12"	771	"ENSG00000074410"
+"204509_at"	"CA12"	771	"ENSG00000074410"
+"201552_at"	"LAMP1"	3916	"ENSG00000185896"
+"201551_s_at"	"LAMP1"	3916	"ENSG00000185896"
+"201553_s_at"	"LAMP1"	3916	"ENSG00000185896"
+"202626_s_at"	"LYN"	4067	"ENSG00000254087"
+"202625_at"	"LYN"	4067	"ENSG00000254087"
+"204008_at"	"DNAL4"	10126	"ENSG00000100246"
+"204343_at"	"ABCA3"	21	"ENSG00000167972"
+"202615_at"	"GNAQ"	2776	"ENSG00000156052"
+"202047_s_at"	"CBX6"	23466	"ENSG00000183741"
+"202048_s_at"	"CBX6"	23466	"ENSG00000183741"
+"205438_at"	"PTPN21"	11099	"ENSG00000070778"
+"203303_at"	"DYNLT3"	6990	"ENSG00000165169"
+"203072_at"	"MYO1E"	4643	"ENSG00000157483"
+"205405_at"	"SEMA5A"	9037	"ENSG00000112902"
+"2028_s_at"	"E2F1"	1869	"ENSG00000101412"
+"204947_at"	"E2F1"	1869	"ENSG00000101412"
+"204147_s_at"	"TFDP1"	7027	"ENSG00000198176"
+"204041_at"	"MAOB"	4129	"ENSG00000069535"
+"204205_at"	"APOBEC3G"	60489	"ENSG00000239713"
+"201976_s_at"	"MYO10"	4651	"ENSG00000145555"
+"204787_at"	"VSIG4"	11326	"ENSG00000155659"
+"203901_at"	"TAB1"	10454	"ENSG00000100324"
+"201202_at"	"PCNA"	5111	"ENSG00000132646"
+"201881_s_at"	"ARIH1"	25820	"ENSG00000166233"
+"201879_at"	"ARIH1"	25820	"ENSG00000166233"
+"201878_at"	"ARIH1"	25820	"ENSG00000166233"
+"201880_at"	"ARIH1"	25820	"ENSG00000166233"
+"204866_at"	"JADE3"	9767	"ENSG00000102221"
+"204593_s_at"	"MIEF1"	54471	"ENSG00000100335"
+"204594_s_at"	"MIEF1"	54471	"ENSG00000100335"
+"205359_at"	"AKAP6"	9472	"ENSG00000151320"
+"200847_s_at"	"SARAF"	51669	"ENSG00000133872"
+"204046_at"	"PLCB2"	5330	"ENSG00000137841"
+"201959_s_at"	"MYCBP2"	23077	"ENSG00000005810"
+"201960_s_at"	"MYCBP2"	23077	"ENSG00000005810"
+"203200_s_at"	"MTRR"	4552	"ENSG00000124275"
+"203199_s_at"	"MTRR"	4552	"ENSG00000124275"
+"201444_s_at"	"ATP6AP2"	10159	"ENSG00000182220"
+"201443_s_at"	"ATP6AP2"	10159	"ENSG00000182220"
+"204801_s_at"	"DHRS12"	79758	"ENSG00000102796"
+"204792_s_at"	"IFT140"	9742	"ENSG00000187535"
+"202674_s_at"	"LMO7"	4008	"ENSG00000136153"
+"204875_s_at"	"GMDS"	2762	"ENSG00000112699"
+"205113_at"	"NEFM"	4741	"ENSG00000104722"
+"205130_at"	"MOK"	5891	"ENSG00000080823"
+"201300_s_at"	"PRNP"	5621	"ENSG00000171867"
+"203185_at"	"RASSF2"	9770	"ENSG00000101265"
+"204905_s_at"	"EEF1E1"	9521	"ENSG00000124802"
+"202228_s_at"	"NPTN"	27020	"ENSG00000156642"
+"203026_at"	"ZBTB5"	9925	"ENSG00000168795"
+"204462_s_at"	"SLC16A2"	6567	"ENSG00000147100"
+"204819_at"	"FGD1"	2245	"ENSG00000102302"
+"204308_s_at"	"TECPR2"	9895	"ENSG00000196663"
+"204479_at"	"OSTF1"	26578	"ENSG00000134996"
+"204497_at"	"ADCY9"	115	"ENSG00000162104"
+"204498_s_at"	"ADCY9"	115	"ENSG00000162104"
+"204317_at"	"TRMU"	55687	"ENSG00000100416"
+"203374_s_at"	"TPP2"	7174	"ENSG00000134900"
+"203375_s_at"	"TPP2"	7174	"ENSG00000134900"
+"204121_at"	"GADD45G"	10912	"ENSG00000130222"
+"204635_at"	"RPS6KA5"	9252	"ENSG00000100784"
+"204633_s_at"	"RPS6KA5"	9252	"ENSG00000100784"
+"203662_s_at"	"TMOD1"	7111	"ENSG00000136842"
+"203661_s_at"	"TMOD1"	7111	"ENSG00000136842"
+"200027_at"	"NARS1"	4677	"ENSG00000134440"
+"201856_s_at"	"ZFR"	51663	"ENSG00000056097"
+"201857_at"	"ZFR"	51663	"ENSG00000056097"
+"204539_s_at"	"CELSR1"	9620	"ENSG00000075275"
+"200934_at"	"DEK"	7913	"ENSG00000124795"
+"204435_at"	"NUP58"	9818	"ENSG00000139496"
+"202160_at"	"CREBBP"	1387	"ENSG00000005339"
+"202259_s_at"	"N4BP2L2"	10443	"ENSG00000244754"
+"202258_s_at"	"N4BP2L2"	10443	"ENSG00000244754"
+"204493_at"	"BID"	637	"ENSG00000015475"
+"204512_at"	"HIVEP1"	3096	"ENSG00000095951"
+"204865_at"	"CA3"	761	"ENSG00000164879"
+"203329_at"	"PTPRM"	5797	"ENSG00000173482"
+"203574_at"	"NFIL3"	4783	"ENSG00000165030"
+"203297_s_at"	"JARID2"	3720	"ENSG00000008083"
+"203298_s_at"	"JARID2"	3720	"ENSG00000008083"
+"204321_at"	"NEO1"	4756	"ENSG00000067141"
+"204629_at"	"PARVB"	29780	"ENSG00000188677"
+"204417_at"	"GALC"	2581	"ENSG00000054983"
+"204226_at"	"STAU2"	27067	"ENSG00000040341"
+"203045_at"	"NINJ1"	4814	"ENSG00000131669"
+"202547_s_at"	"ARHGEF7"	8874	"ENSG00000102606"
+"202548_s_at"	"ARHGEF7"	8874	"ENSG00000102606"
+"200889_s_at"	"SSR1"	6745	"ENSG00000124783"
+"200890_s_at"	"SSR1"	6745	"ENSG00000124783"
+"201894_s_at"	"SSR1"	6745	"ENSG00000124783"
+"200891_s_at"	"SSR1"	6745	"ENSG00000124783"
+"205464_at"	"SCNN1B"	6338	"ENSG00000168447"
+"201212_at"	"LGMN"	5641	"ENSG00000100600"
+"201417_at"	"SOX4"	6659	"ENSG00000124766"
+"201418_s_at"	"SOX4"	6659	"ENSG00000124766"
+"201416_at"	"SOX4"	6659	"ENSG00000124766"
+"201386_s_at"	"DHX15"	1665	"ENSG00000109606"
+"201385_at"	"DHX15"	1665	"ENSG00000109606"
+"203635_at"	"VPS26C"	10311	"ENSG00000157538"
+"204948_s_at"	"FST"	10468	"ENSG00000134363"
+"203467_at"	"PMM1"	5372	"ENSG00000100417"
+"200792_at"	"XRCC6"	2547	"ENSG00000196419"
+"204831_at"	"CDK8"	1024	"ENSG00000132964"
+"201312_s_at"	"SH3BGRL"	6451	"ENSG00000131171"
+"201311_s_at"	"SH3BGRL"	6451	"ENSG00000131171"
+"204472_at"	"GEM"	2669	"ENSG00000164949"
+"203021_at"	"SLPI"	6590	"ENSG00000124107"
+"203892_at"	"WFDC2"	10406	"ENSG00000101443"
+"205238_at"	"TRMT2B"	79979	"ENSG00000188917"
+"202803_s_at"	"ITGB2"	3689	"ENSG00000160255"
+"204756_at"	"MAP2K5"	5607	"ENSG00000137764"
+"201222_s_at"	"RAD23B"	5887	"ENSG00000119318"
+"201223_s_at"	"RAD23B"	5887	"ENSG00000119318"
+"202717_s_at"	"CDC16"	8881	"ENSG00000130177"
+"201077_s_at"	"SNU13"	4809	"ENSG00000100138"
+"201076_at"	"SNU13"	4809	"ENSG00000100138"
+"203139_at"	"DAPK1"	1612	"ENSG00000196730"
+"202954_at"	"UBE2C"	11065	"ENSG00000175063"
+"204602_at"	"DKK1"	22943	"ENSG00000107984"
+"201991_s_at"	"KIF5B"	3799	"ENSG00000170759"
+"201992_s_at"	"KIF5B"	3799	"ENSG00000170759"
+"202690_s_at"	"SNRPD1"	6632	"ENSG00000167088"
+"202691_at"	"SNRPD1"	6632	"ENSG00000167088"
+"203671_at"	"TPMT"	7172	"ENSG00000137364"
+"203672_x_at"	"TPMT"	7172	"ENSG00000137364"
+"205388_at"	"TNNC2"	7125	"ENSG00000101470"
+"203396_at"	"PSMA4"	5685	"ENSG00000041357"
+"202052_s_at"	"RAI14"	26064	"ENSG00000039560"
+"202419_at"	"KDSR"	2531	"ENSG00000119537"
+"201111_at"	"CSE1L"	1434	"ENSG00000124207"
+"201112_s_at"	"CSE1L"	1434	"ENSG00000124207"
+"205006_s_at"	"NMT2"	9397	"ENSG00000152465"
+"205005_s_at"	"NMT2"	9397	"ENSG00000152465"
+"203269_at"	"NSMAF"	8439	"ENSG00000035681"
+"203099_s_at"	"CDYL"	9425	"ENSG00000153046"
+"203100_s_at"	"CDYL"	9425	"ENSG00000153046"
+"203098_at"	"CDYL"	9425	"ENSG00000153046"
+"203684_s_at"	"BCL2"	596	"ENSG00000171791"
+"203685_at"	"BCL2"	596	"ENSG00000171791"
+"200914_x_at"	"KTN1"	3895	"ENSG00000126777"
+"200915_x_at"	"KTN1"	3895	"ENSG00000126777"
+"202711_at"	"EFNB1"	1947	"ENSG00000090776"
+"202841_x_at"	"OGFR"	11054	"ENSG00000060491"
+"204724_s_at"	"COL9A3"	1299	"ENSG00000092758"
+"201012_at"	"ANXA1"	301	"ENSG00000135046"
+"204002_s_at"	"ICA1"	3382	"ENSG00000003147"
+"204849_at"	"TCFL5"	10732	"ENSG00000101190"
+"202684_s_at"	"RNMT"	8731	"ENSG00000101654"
+"202683_s_at"	"RNMT"	8731	"ENSG00000101654"
+"200639_s_at"	"YWHAZ"	7534	"ENSG00000164924"
+"200638_s_at"	"YWHAZ"	7534	"ENSG00000164924"
+"200640_at"	"YWHAZ"	7534	"ENSG00000164924"
+"202980_s_at"	"SIAH1"	6477	"ENSG00000196470"
+"202981_x_at"	"SIAH1"	6477	"ENSG00000196470"
+"203521_s_at"	"ZNF318"	24149	"ENSG00000171467"
+"203520_s_at"	"ZNF318"	24149	"ENSG00000171467"
+"204786_s_at"	"IFNAR2"	3455	"ENSG00000159110"
+"204785_x_at"	"IFNAR2"	3455	"ENSG00000159110"
+"200881_s_at"	"DNAJA1"	3301	"ENSG00000086061"
+"200880_at"	"DNAJA1"	3301	"ENSG00000086061"
+"204026_s_at"	"ZWINT"	11130	"ENSG00000122952"
+"204736_s_at"	"CSPG4"	1464	"ENSG00000173546"
+"203220_s_at"	"TLE1"	7088	"ENSG00000196781"
+"203221_at"	"TLE1"	7088	"ENSG00000196781"
+"203222_s_at"	"TLE1"	7088	"ENSG00000196781"
+"202747_s_at"	"ITM2A"	9452	"ENSG00000078596"
+"202746_at"	"ITM2A"	9452	"ENSG00000078596"
+"204701_s_at"	"STOML1"	9399	"ENSG00000067221"
+"202960_s_at"	"MMUT"	4594	"ENSG00000146085"
+"202959_at"	"MMUT"	4594	"ENSG00000146085"
+"204044_at"	"QPRT"	23475	"ENSG00000103485"
+"202368_s_at"	"TRAM2"	9697	"ENSG00000065308"
+"202369_s_at"	"TRAM2"	9697	"ENSG00000065308"
+"202601_s_at"	"HTATSF1"	27336	"ENSG00000102241"
+"202602_s_at"	"HTATSF1"	27336	"ENSG00000102241"
+"202951_at"	"STK38"	11329	"ENSG00000112079"
+"204126_s_at"	"CDC45"	8318	"ENSG00000093009"
+"204457_s_at"	"GAS1"	2619	"ENSG00000180447"
+"204456_s_at"	"GAS1"	2619	"ENSG00000180447"
+"202105_at"	"IGBP1"	3476	"ENSG00000089289"
+"204440_at"	"CD83"	9308	"ENSG00000112149"
+"205018_s_at"	"MBNL2"	10150	"ENSG00000139793"
+"205017_s_at"	"MBNL2"	10150	"ENSG00000139793"
+"203640_at"	"MBNL2"	10150	"ENSG00000139793"
+"200062_s_at"	"RPL30"	6156	"ENSG00000156482"
+"203160_s_at"	"RNF8"	9025	"ENSG00000112130"
+"203161_s_at"	"RNF8"	9025	"ENSG00000112130"
+"204601_at"	"N4BP1"	9683	"ENSG00000102921"
+"203177_x_at"	"TFAM"	7019	"ENSG00000108064"
+"203176_s_at"	"TFAM"	7019	"ENSG00000108064"
+"201594_s_at"	"PPP4R1"	9989	"ENSG00000154845"
+"201160_s_at"	"YBX3"	8531	"ENSG00000060138"
+"201161_s_at"	"YBX3"	8531	"ENSG00000060138"
+"204240_s_at"	"SMC2"	10592	"ENSG00000136824"
+"201798_s_at"	"MYOF"	26509	"ENSG00000138119"
+"202188_at"	"NUP93"	9688	"ENSG00000102900"
+"204619_s_at"	"VCAN"	1462	"ENSG00000038427"
+"204620_s_at"	"VCAN"	1462	"ENSG00000038427"
+"203570_at"	"LOXL1"	4016	"ENSG00000129038"
+"204454_at"	"LDOC1"	23641	"ENSG00000182195"
+"203082_at"	"BMS1"	9790	"ENSG00000165733"
+"200046_at"	"DAD1"	1603	"ENSG00000129562"
+"204689_at"	"HHEX"	3087	"ENSG00000152804"
+"203790_s_at"	"RIDA"	10247	"ENSG00000132541"
+"205219_s_at"	"GALK2"	2585	"ENSG00000156958"
+"202635_s_at"	"POLR2K"	5440	"ENSG00000147669"
+"202634_at"	"POLR2K"	5440	"ENSG00000147669"
+"202780_at"	"OXCT1"	5019	"ENSG00000083720"
+"201412_at"	"LRP10"	26020	"ENSG00000197324"
+"201061_s_at"	"STOM"	2040	"ENSG00000148175"
+"201060_x_at"	"STOM"	2040	"ENSG00000148175"
+"205465_x_at"	"HS3ST1"	9957	"ENSG00000002587"
+"201424_s_at"	"CUL4A"	8451	"ENSG00000139842"
+"204058_at"	"ME1"	4199	"ENSG00000065833"
+"204059_s_at"	"ME1"	4199	"ENSG00000065833"
+"201069_at"	"MMP2"	4313	"ENSG00000087245"
+"204980_at"	"CLOCK"	9575	"ENSG00000134852"
+"203695_s_at"	"GSDME"	1687	"ENSG00000105928"
+"203660_s_at"	"PCNT"	5116	"ENSG00000160299"
+"202899_s_at"	"SRSF3"	6428	"ENSG00000112081"
+"200002_at"	"RPL35"	11224	"ENSG00000136942"
+"205350_at"	"CRABP1"	1381	"ENSG00000166426"
+"204191_at"	"IFNAR1"	3454	"ENSG00000142166"
+"203726_s_at"	"LAMA3"	3909	"ENSG00000053747"
+"201086_x_at"	"SON"	6651	"ENSG00000159140"
+"201085_s_at"	"SON"	6651	"ENSG00000159140"
+"204093_at"	"CCNH"	902	"ENSG00000134480"
+"202593_s_at"	"GDE1"	51573	"ENSG00000006007"
+"204271_s_at"	"EDNRB"	1910	"ENSG00000136160"
+"204273_at"	"EDNRB"	1910	"ENSG00000136160"
+"202449_s_at"	"RXRA"	6256	"ENSG00000186350"
+"202426_s_at"	"RXRA"	6256	"ENSG00000186350"
+"203590_at"	"DYNC1LI2"	1783	"ENSG00000135720"
+"204124_at"	"SLC34A2"	10568	"ENSG00000157765"
+"204082_at"	"PBX3"	5090	"ENSG00000167081"
+"203865_s_at"	"ADARB1"	104	"ENSG00000197381"
+"204092_s_at"	"AURKA"	6790	"ENSG00000087586"
+"205032_at"	"ITGA2"	3673	"ENSG00000164171"
+"201472_at"	"VBP1"	7411	"ENSG00000155959"
+"204400_at"	"EFS"	10278	"ENSG00000100842"
+"205450_at"	"PHKA1"	5255	"ENSG00000067177"
+"201613_s_at"	"AP1G2"	8906	"ENSG00000213983"
+"204449_at"	"PDCL"	5082	"ENSG00000136940"
+"204448_s_at"	"PDCL"	5082	"ENSG00000136940"
+"201605_x_at"	"CNN2"	1265	"ENSG00000064666"
+"202190_at"	"CSTF1"	1477	"ENSG00000101138"
+"202609_at"	"EPS8"	2059	"ENSG00000151491"
+"204749_at"	"NAP1L3"	4675	"ENSG00000186310"
+"203383_s_at"	"GOLGA1"	2800	"ENSG00000136935"
+"203384_s_at"	"GOLGA1"	2800	"ENSG00000136935"
+"203859_s_at"	"PALM"	5064	"ENSG00000099864"
+"202820_at"	"AHR"	196	"ENSG00000106546"
+"202944_at"	"NAGA"	4668	"ENSG00000198951"
+"202943_s_at"	"NAGA"	4668	"ENSG00000198951"
+"202599_s_at"	"NRIP1"	8204	"ENSG00000180530"
+"202600_s_at"	"NRIP1"	8204	"ENSG00000180530"
+"203617_x_at"	"ELK1"	2002	"ENSG00000126767"
+"203997_at"	"PTPN3"	5774	"ENSG00000070159"
+"205295_at"	"CKMT2"	1160	"ENSG00000131730"
+"201666_at"	"TIMP1"	7076	"ENSG00000102265"
+"204825_at"	"MELK"	9833	"ENSG00000165304"
+"205146_x_at"	"APBA3"	9546	"ENSG00000011132"
+"201755_at"	"MCM5"	4174	"ENSG00000100297"
+"204901_at"	"BTRC"	8945	"ENSG00000166167"
+"204160_s_at"	"ENPP4"	22875	"ENSG00000001561"
+"204161_s_at"	"ENPP4"	22875	"ENSG00000001561"
+"205136_s_at"	"NUFIP1"	26747	"ENSG00000083635"
+"202318_s_at"	"SENP6"	26054	"ENSG00000112701"
+"202319_at"	"SENP6"	26054	"ENSG00000112701"
+"200602_at"	"APP"	351	"ENSG00000142192"
+"203665_at"	"HMOX1"	3162	"ENSG00000100292"
+"203819_s_at"	"IGF2BP3"	10643	"ENSG00000136231"
+"203820_s_at"	"IGF2BP3"	10643	"ENSG00000136231"
+"204669_s_at"	"RNF24"	11237	"ENSG00000101236"
+"204668_at"	"RNF24"	11237	"ENSG00000101236"
+"204414_at"	"LARGE1"	9215	"ENSG00000133424"
+"201470_at"	"GSTO1"	9446	"ENSG00000148834"
+"205326_at"	"RAMP3"	10268	"ENSG00000122679"
+"201433_s_at"	"PTDSS1"	9791	"ENSG00000156471"
+"202639_s_at"	"RANBP3"	8498	"ENSG00000031823"
+"202640_s_at"	"RANBP3"	8498	"ENSG00000031823"
+"201078_at"	"TM9SF2"	9375	"ENSG00000125304"
+"203262_s_at"	"FAM50A"	9130	"ENSG00000071859"
+"202032_s_at"	"MAN2A2"	4122	"ENSG00000196547"
+"202990_at"	"PYGL"	5836	"ENSG00000100504"
+"204933_s_at"	"TNFRSF11B"	4982	"ENSG00000164761"
+"204932_at"	"TNFRSF11B"	4982	"ENSG00000164761"
+"203623_at"	"PLXNA3"	55558	"ENSG00000130827"
+"203524_s_at"	"MPST"	4357	"ENSG00000128309"
+"203644_s_at"	"MON1B"	22879	"ENSG00000103111"
+"201964_at"	"SETX"	23064	"ENSG00000107290"
+"201965_s_at"	"SETX"	23064	"ENSG00000107290"
+"204928_s_at"	"SLC10A3"	8273	"ENSG00000126903"
+"204199_at"	"RALGPS1"	9649	"ENSG00000136828"
+"204687_at"	"PARM1"	25849	"ENSG00000169116"
+"200870_at"	"STRAP"	11171	"ENSG00000023734"
+"205399_at"	"DCLK1"	9201	"ENSG00000133083"
+"204746_s_at"	"PICK1"	9463	"ENSG00000100151"
+"204335_at"	"YJU2"	55702	"ENSG00000105248"
+"205349_at"	"GNA15"	2769	"ENSG00000060558"
+"204501_at"	"CCN3"	4856	"ENSG00000136999"
+"201853_s_at"	"CDC25B"	994	"ENSG00000101224"
+"201981_at"	"PAPPA"	5069	"ENSG00000182752"
+"201982_s_at"	"PAPPA"	5069	"ENSG00000182752"
+"201748_s_at"	"SAFB"	6294	"ENSG00000160633"
+"201747_s_at"	"SAFB"	6294	"ENSG00000160633"
+"201134_x_at"	"COX7C"	1350	"ENSG00000127184"
+"202350_s_at"	"MATN2"	4147	"ENSG00000132561"
+"202461_at"	"EIF2B2"	8892	"ENSG00000119718"
+"204838_s_at"	"MLH3"	27030	"ENSG00000119684"
+"205337_at"	"DCT"	1638	"ENSG00000080166"
+"205338_s_at"	"DCT"	1638	"ENSG00000080166"
+"205260_s_at"	"ACYP1"	97	"ENSG00000119640"
+"203196_at"	"ABCC4"	10257	"ENSG00000125257"
+"204432_at"	"SOX12"	6666	"ENSG00000177732"
+"200853_at"	"H2AZ1"	3015	"ENSG00000164032"
+"200929_at"	"TMED10"	10972	"ENSG00000170348"
+"200958_s_at"	"SDCBP"	6386	"ENSG00000137575"
+"201432_at"	"CAT"	847	"ENSG00000121691"
+"202673_at"	"DPM1"	8813	"ENSG00000000419"
+"202232_s_at"	"EIF3M"	10480	"ENSG00000149100"
+"202231_at"	"EIF3M"	10480	"ENSG00000149100"
+"201653_at"	"CNIH1"	10175	"ENSG00000100528"
+"204502_at"	"SAMHD1"	25939	"ENSG00000101347"
+"202624_s_at"	"CABIN1"	23523	"ENSG00000099991"
+"203110_at"	"PTK2B"	2185	"ENSG00000120899"
+"203111_s_at"	"PTK2B"	2185	"ENSG00000120899"
+"204728_s_at"	"WDHD1"	11169	"ENSG00000198554"
+"204727_at"	"WDHD1"	11169	"ENSG00000198554"
+"205328_at"	"CLDN10"	9071	"ENSG00000134873"
+"204556_s_at"	"DZIP1"	22873	"ENSG00000134874"
+"204557_s_at"	"DZIP1"	22873	"ENSG00000134874"
+"202226_s_at"	"CRK"	1398	"ENSG00000167193"
+"202224_at"	"CRK"	1398	"ENSG00000167193"
+"202225_at"	"CRK"	1398	"ENSG00000167193"
+"204051_s_at"	"SFRP4"	6424	"ENSG00000106483"
+"204052_s_at"	"SFRP4"	6424	"ENSG00000106483"
+"204591_at"	"CHL1"	10752	"ENSG00000134121"
+"205029_s_at"	"FABP7"	2173	"ENSG00000164434"
+"205030_at"	"FABP7"	2173	"ENSG00000164434"
+"203970_s_at"	"PEX3"	8504	"ENSG00000034693"
+"203972_s_at"	"PEX3"	8504	"ENSG00000034693"
+"205363_at"	"BBOX1"	8424	"ENSG00000129151"
+"203174_s_at"	"ARFRP1"	10139	"ENSG00000101246"
+"204402_at"	"RHBDD3"	25807	"ENSG00000100263"
+"202279_at"	"ATP5MJ"	9556	"ENSG00000156411"
+"204412_s_at"	"NEFH"	4744	"ENSG00000100285"
+"205257_s_at"	"AMPH"	273	"ENSG00000078053"
+"204624_at"	"ATP7B"	540	"ENSG00000123191"
+"201195_s_at"	"SLC7A5"	8140	"ENSG00000103257"
+"201833_at"	"HDAC2"	3066	"ENSG00000196591"
+"204248_at"	"GNA11"	2767	"ENSG00000088256"
+"200701_at"	"NPC2"	10577	"ENSG00000119655"
+"202874_s_at"	"ATP6V1C1"	528	"ENSG00000155097"
+"202872_at"	"ATP6V1C1"	528	"ENSG00000155097"
+"202873_at"	"ATP6V1C1"	528	"ENSG00000155097"
+"203198_at"	"CDK9"	1025	"ENSG00000136807"
+"201575_at"	"SNW1"	22938	"ENSG00000100603"
+"203974_at"	"PUDP"	8226	"ENSG00000130021"
+"204833_at"	"ATG12"	9140	"ENSG00000145782"
+"202945_at"	"FPGS"	2356	"ENSG00000136877"
+"201084_s_at"	"BCLAF1"	9774	"ENSG00000029363"
+"201709_s_at"	"NIPSNAP1"	8508	"ENSG00000184117"
+"201708_s_at"	"NIPSNAP1"	8508	"ENSG00000184117"
+"203459_s_at"	"VPS16"	64601	"ENSG00000215305"
+"203884_s_at"	"RAB11FIP2"	22841	"ENSG00000107560"
+"203883_s_at"	"RAB11FIP2"	22841	"ENSG00000107560"
+"202034_x_at"	"RB1CC1"	9821	"ENSG00000023287"
+"202033_s_at"	"RB1CC1"	9821	"ENSG00000023287"
+"203206_at"	"FAM53B"	9679	"ENSG00000189319"
+"201599_at"	"OAT"	4942	"ENSG00000065154"
+"204880_at"	"MGMT"	4255	"ENSG00000170430"
+"201327_s_at"	"CCT6A"	908	"ENSG00000146731"
+"201985_at"	"WASHC5"	9897	"ENSG00000164961"
+"201357_s_at"	"SF3A1"	10291	"ENSG00000099995"
+"201356_at"	"SF3A1"	10291	"ENSG00000099995"
+"201133_s_at"	"PJA2"	9867	"ENSG00000198961"
+"204480_s_at"	"BBLN"	79095	"ENSG00000171159"
+"203687_at"	"CX3CL1"	6376	"ENSG00000006210"
+"205151_s_at"	"TRIL"	9865	"ENSG00000255690"
+"205150_s_at"	"TRIL"	9865	"ENSG00000255690"
+"203166_at"	"CFDP1"	10428	"ENSG00000153774"
+"201816_s_at"	"NIPSNAP2"	2631	"ENSG00000146729"
+"203006_at"	"INPP5A"	3632	"ENSG00000068383"
+"202604_x_at"	"ADAM10"	102	"ENSG00000137845"
+"202603_at"	"ADAM10"	102	"ENSG00000137845"
+"204541_at"	"SEC14L2"	23541	"ENSG00000100003"
+"204711_at"	"KIAA0753"	9851	"ENSG00000198920"
+"205194_at"	"PSPH"	5723	"ENSG00000146733"
+"202570_s_at"	"DLGAP4"	22839	"ENSG00000080845"
+"202571_s_at"	"DLGAP4"	22839	"ENSG00000080845"
+"202572_s_at"	"DLGAP4"	22839	"ENSG00000080845"
+"203066_at"	"CHST15"	51363	"ENSG00000182022"
+"204068_at"	"STK3"	6788	"ENSG00000104375"
+"204735_at"	"PDE4A"	5141	"ENSG00000065989"
+"204447_at"	"LZTS3"	9762	"ENSG00000088899"
+"202289_s_at"	"TACC2"	10579	"ENSG00000138162"
+"204750_s_at"	"DSC2"	1824	"ENSG00000134755"
+"204751_x_at"	"DSC2"	1824	"ENSG00000134755"
+"204529_s_at"	"TOX"	9760	"ENSG00000198846"
+"204530_s_at"	"TOX"	9760	"ENSG00000198846"
+"205431_s_at"	"BMP5"	653	"ENSG00000112175"
+"205430_at"	"BMP5"	653	"ENSG00000112175"
+"201296_s_at"	"WSB1"	26118	"ENSG00000109046"
+"201295_s_at"	"WSB1"	26118	"ENSG00000109046"
+"201294_s_at"	"WSB1"	26118	"ENSG00000109046"
+"202798_at"	"SEC24B"	10427	"ENSG00000138802"
+"202110_at"	"COX7B"	1349	"ENSG00000131174"
+"203815_at"	"GSTT1"	2952	"ENSG00000277656"
+"203445_s_at"	"CTDSP2"	10106	"ENSG00000175215"
+"201584_s_at"	"DDX39A"	10212	"ENSG00000123136"
+"203116_s_at"	"FECH"	2235	"ENSG00000066926"
+"203115_at"	"FECH"	2235	"ENSG00000066926"
+"201785_at"	"RNASE1"	6035	"ENSG00000129538"
+"204732_s_at"	"TRIM23"	373	"ENSG00000113595"
+"201604_s_at"	"PPP1R12A"	4659	"ENSG00000058272"
+"201602_s_at"	"PPP1R12A"	4659	"ENSG00000058272"
+"201603_at"	"PPP1R12A"	4659	"ENSG00000058272"
+"205324_s_at"	"FTSJ1"	24140	"ENSG00000068438"
+"202910_s_at"	"ADGRE5"	976	"ENSG00000123146"
+"202735_at"	"EBP"	10682	"ENSG00000147155"
+"202212_at"	"PES1"	23481	"ENSG00000100029"
+"203628_at"	"IGF1R"	3480	"ENSG00000140443"
+"203627_at"	"IGF1R"	3480	"ENSG00000140443"
+"203761_at"	"SLA"	6503	"ENSG00000155926"
+"203760_s_at"	"SLA"	6503	"ENSG00000155926"
+"204154_at"	"CDO1"	1036	"ENSG00000129596"
+"201799_s_at"	"OSBP"	5007	"ENSG00000110048"
+"201800_s_at"	"OSBP"	5007	"ENSG00000110048"
+"204267_x_at"	"PKMYT1"	9088	"ENSG00000127564"
+"202789_at"	"PLCG1"	5335	"ENSG00000124181"
+"205281_s_at"	"PIGA"	5277	"ENSG00000165195"
+"200945_s_at"	"SEC31A"	22872	"ENSG00000138674"
+"205149_s_at"	"CLCN4"	1183	"ENSG00000073464"
+"205148_s_at"	"CLCN4"	1183	"ENSG00000073464"
+"202209_at"	"LSM3"	27258	"ENSG00000170860"
+"204362_at"	"SKAP2"	8935	"ENSG00000005020"
+"204361_s_at"	"SKAP2"	8935	"ENSG00000005020"
+"205141_at"	"ANG"	283	"ENSG00000214274"
+"202693_s_at"	"STK17A"	9263	"ENSG00000164543"
+"202694_at"	"STK17A"	9263	"ENSG00000164543"
+"202695_s_at"	"STK17A"	9263	"ENSG00000164543"
+"202807_s_at"	"TOM1"	10043	"ENSG00000100284"
+"204790_at"	"SMAD7"	4092	"ENSG00000101665"
+"201722_s_at"	"GALNT1"	2589	"ENSG00000141429"
+"201723_s_at"	"GALNT1"	2589	"ENSG00000141429"
+"201724_s_at"	"GALNT1"	2589	"ENSG00000141429"
+"204083_s_at"	"TPM2"	7169	"ENSG00000198467"
+"202716_at"	"PTPN1"	5770	"ENSG00000196396"
+"201942_s_at"	"CPD"	1362	"ENSG00000108582"
+"201941_at"	"CPD"	1362	"ENSG00000108582"
+"201943_s_at"	"CPD"	1362	"ENSG00000108582"
+"201940_at"	"CPD"	1362	"ENSG00000108582"
+"201389_at"	"ITGA5"	3678	"ENSG00000161638"
+"202836_s_at"	"TXNL4A"	10907	"ENSG00000141759"
+"202835_at"	"TXNL4A"	10907	"ENSG00000141759"
+"203845_at"	"KAT2B"	8850	"ENSG00000114166"
+"203829_at"	"ELP4"	26610	"ENSG00000109911"
+"202179_at"	"BLMH"	642	"ENSG00000108578"
+"202509_s_at"	"TNFAIP2"	7127	"ENSG00000185215"
+"202510_s_at"	"TNFAIP2"	7127	"ENSG00000185215"
+"205252_at"	"ZNF174"	7727	"ENSG00000103343"
+"203321_s_at"	"ADNP2"	22850	"ENSG00000101544"
+"203322_at"	"ADNP2"	22850	"ENSG00000101544"
+"204938_s_at"	"PLN"	5350	"ENSG00000198523"
+"204939_s_at"	"PLN"	5350	"ENSG00000198523"
+"204940_at"	"PLN"	5350	"ENSG00000198523"
+"203771_s_at"	"BLVRA"	644	"ENSG00000106605"
+"203773_x_at"	"BLVRA"	644	"ENSG00000106605"
+"203180_at"	"ALDH1A3"	220	"ENSG00000184254"
+"203169_at"	"RGP1"	9827	"ENSG00000107185"
+"203851_at"	"IGFBP6"	3489	"ENSG00000167779"
+"201672_s_at"	"USP14"	9097	"ENSG00000101557"
+"201671_x_at"	"USP14"	9097	"ENSG00000101557"
+"203895_at"	"PLCB4"	5332	"ENSG00000101333"
+"203896_s_at"	"PLCB4"	5332	"ENSG00000101333"
+"200837_at"	"BCAP31"	10134	"ENSG00000185825"
+"203489_at"	"SIVA1"	10572	"ENSG00000184990"
+"204005_s_at"	"PAWR"	5074	"ENSG00000177425"
+"204004_at"	"PAWR"	5074	"ENSG00000177425"
+"205142_x_at"	"ABCD1"	215	"ENSG00000101986"
+"204216_s_at"	"ZC3H14"	79882	"ENSG00000100722"
+"200803_s_at"	"TMBIM6"	7009	"ENSG00000139644"
+"200804_at"	"TMBIM6"	7009	"ENSG00000139644"
+"202710_at"	"BET1"	10282	"ENSG00000105829"
+"201185_at"	"HTRA1"	5654	"ENSG00000166033"
+"204383_at"	"ESS2"	8220	"ENSG00000100056"
+"204162_at"	"NDC80"	10403	"ENSG00000080986"
+"204918_s_at"	"MLLT3"	4300	"ENSG00000171843"
+"204917_s_at"	"MLLT3"	4300	"ENSG00000171843"
+"204576_s_at"	"CLUAP1"	23059	"ENSG00000103351"
+"204577_s_at"	"CLUAP1"	23059	"ENSG00000103351"
+"200615_s_at"	"AP2B1"	163	"ENSG00000006125"
+"200612_s_at"	"AP2B1"	163	"ENSG00000006125"
+"203276_at"	"LMNB1"	4001	"ENSG00000113368"
+"202993_at"	"ILVBL"	10994	"ENSG00000105135"
+"201669_s_at"	"MARCKS"	4082	"ENSG00000277443"
+"201670_s_at"	"MARCKS"	4082	"ENSG00000277443"
+"201004_at"	"SSR4"	6748	"ENSG00000180879"
+"204584_at"	"L1CAM"	3897	"ENSG00000198910"
+"204585_s_at"	"L1CAM"	3897	"ENSG00000198910"
+"201391_at"	"TRAP1"	10131	"ENSG00000126602"
+"204207_s_at"	"RNGTT"	8732	"ENSG00000111880"
+"204208_at"	"RNGTT"	8732	"ENSG00000111880"
+"201398_s_at"	"TRAM1"	23471	"ENSG00000067167"
+"201399_s_at"	"TRAM1"	23471	"ENSG00000067167"
+"201506_at"	"TGFBI"	7045	"ENSG00000120708"
+"203406_at"	"MFAP1"	4236	"ENSG00000140259"
+"204297_at"	"PIK3C3"	5289	"ENSG00000078142"
+"204993_at"	"GNAZ"	2781	"ENSG00000128266"
+"205441_at"	"OCEL1"	79629	"ENSG00000099330"
+"203673_at"	"TG"	7038	"ENSG00000042832"
+"202315_s_at"	"BCR"	613	"ENSG00000186716"
+"204064_at"	"THOC1"	9984	"ENSG00000079134"
+"200921_s_at"	"BTG1"	694	"ENSG00000133639"
+"200920_s_at"	"BTG1"	694	"ENSG00000133639"
+"202470_s_at"	"CPSF6"	11052	"ENSG00000111605"
+"202469_s_at"	"CPSF6"	11052	"ENSG00000111605"
+"203969_at"	"VDAC1P8"	NA	"ENSG00000229036"
+"205164_at"	"GCAT"	23464	"ENSG00000100116"
+"202473_x_at"	"HCFC1"	3054	"ENSG00000172534"
+"202474_s_at"	"HCFC1"	3054	"ENSG00000172534"
+"200863_s_at"	"RAB11A"	8766	"ENSG00000103769"
+"200864_s_at"	"RAB11A"	8766	"ENSG00000103769"
+"204123_at"	"LIG3"	3980	"ENSG00000005156"
+"204340_at"	"TMEM187"	8269	"ENSG00000177854"
+"205217_at"	"TIMM8A"	1678	"ENSG00000126953"
+"202511_s_at"	"ATG5"	9474	"ENSG00000057663"
+"202512_s_at"	"ATG5"	9474	"ENSG00000057663"
+"201132_at"	"HNRNPH2"	3188	"ENSG00000126945"
+"204836_at"	"GLDC"	2731	"ENSG00000178445"
+"205007_s_at"	"CIB2"	10518	"ENSG00000136425"
+"205008_s_at"	"CIB2"	10518	"ENSG00000136425"
+"202219_at"	"SLC6A8"	6535	"ENSG00000130821"
+"202069_s_at"	"IDH3A"	3419	"ENSG00000166411"
+"202070_s_at"	"IDH3A"	3419	"ENSG00000166411"
+"205138_s_at"	"UST"	10090	"ENSG00000111962"
+"205139_s_at"	"UST"	10090	"ENSG00000111962"
+"202783_at"	"NNT"	23530	"ENSG00000112992"
+"202784_s_at"	"NNT"	23530	"ENSG00000112992"
+"205451_at"	"FOXO4"	4303	"ENSG00000184481"
+"203430_at"	"HEBP2"	23593	"ENSG00000051620"
+"204224_s_at"	"GCH1"	2643	"ENSG00000131979"
+"200793_s_at"	"ACO2"	50	"ENSG00000100412"
+"203103_s_at"	"PRPF19"	27339	"ENSG00000110107"
+"204973_at"	"GJB1"	2705	"ENSG00000169562"
+"204822_at"	"TTK"	7272	"ENSG00000112742"
+"204189_at"	"RARG"	5916	"ENSG00000172819"
+"204188_s_at"	"RARG"	5916	"ENSG00000172819"
+"202758_s_at"	"RFXANK"	8625	"ENSG00000064490"
+"203755_at"	"BUB1B"	701	"ENSG00000156970"
+"203484_at"	"SEC61G"	23480	"ENSG00000132432"
+"203556_at"	"ZHX2"	22882	"ENSG00000178764"
+"204823_at"	"NAV3"	89795	"ENSG00000067798"
+"205355_at"	"ACADSB"	36	"ENSG00000196177"
+"204131_s_at"	"FOXO3"	2309	"ENSG00000118689"
+"201994_at"	"MORF4L2"	9643	"ENSG00000123562"
+"201863_at"	"FAM32A"	26017	"ENSG00000105058"
+"203377_s_at"	"CDC40"	51362	"ENSG00000168438"
+"203376_at"	"CDC40"	51362	"ENSG00000168438"
+"203501_at"	"CPQ"	10404	"ENSG00000104324"
+"202605_at"	"GUSB"	2990	"ENSG00000169919"
+"205423_at"	"AP1B1"	162	"ENSG00000100280"
+"201136_at"	"PLP2"	5355	"ENSG00000102007"
+"201999_s_at"	"DYNLT1"	6993	"ENSG00000146425"
+"203152_at"	"MRPL40"	64976	"ENSG00000185608"
+"202589_at"	"TYMS"	7298	"ENSG00000176890"
+"204873_at"	"PEX1"	5189	"ENSG00000127980"
+"203207_s_at"	"MTFR1"	9650	"ENSG00000066855"
+"203208_s_at"	"MTFR1"	9650	"ENSG00000066855"
+"201040_at"	"GNAI2"	2771	"ENSG00000114353"
+"204143_s_at"	"ENOSF1"	55556	"ENSG00000132199"
+"204142_at"	"ENOSF1"	55556	"ENSG00000132199"
+"202375_at"	"SEC24D"	9871	"ENSG00000150961"
+"203709_at"	"PHKG2"	5261	"ENSG00000156873"
+"205143_at"	"NCAN"	1463	"ENSG00000130287"
+"205052_at"	"AUH"	549	"ENSG00000148090"
+"203362_s_at"	"MAD2L1"	4085	"ENSG00000164109"
+"202391_at"	"BASP1"	10409	"ENSG00000176788"
+"203968_s_at"	"CDC6"	990	"ENSG00000094804"
+"203967_at"	"CDC6"	990	"ENSG00000094804"
+"202202_s_at"	"LAMA4"	3910	"ENSG00000112769"
+"202425_x_at"	"PPP3CA"	5530	"ENSG00000138814"
+"202457_s_at"	"PPP3CA"	5530	"ENSG00000138814"
+"202429_s_at"	"PPP3CA"	5530	"ENSG00000138814"
+"205188_s_at"	"SMAD5"	4090	"ENSG00000113658"
+"205187_at"	"SMAD5"	4090	"ENSG00000113658"
+"201388_at"	"PSMD3"	5709	"ENSG00000108344"
+"203530_s_at"	"STX4"	6810	"ENSG00000103496"
+"203246_s_at"	"NPRL2"	10641	"ENSG00000114388"
+"203031_s_at"	"UROS"	7390	"ENSG00000188690"
+"203401_at"	"PRPS2"	5634	"ENSG00000101911"
+"203620_s_at"	"FCHSD2"	9873	"ENSG00000137478"
+"202486_at"	"AFG3L2"	10939	"ENSG00000141385"
+"204876_at"	"ZNF646"	9726	"ENSG00000167395"
+"203131_at"	"PDGFRA"	5156	"ENSG00000134853"
+"205035_at"	"CTDP1"	9150	"ENSG00000060069"
+"202030_at"	"BCKDK"	10295	"ENSG00000103507"
+"205086_s_at"	"NCAPH2"	29781	"ENSG00000025770"
+"202230_s_at"	"CHERP"	10523	"ENSG00000085872"
+"202229_s_at"	"CHERP"	10523	"ENSG00000085872"
+"203106_s_at"	"VPS41"	27072	"ENSG00000006715"
+"201458_s_at"	"BUB3"	9184	"ENSG00000154473"
+"201457_x_at"	"BUB3"	9184	"ENSG00000154473"
+"201456_s_at"	"BUB3"	9184	"ENSG00000154473"
+"205244_s_at"	"SLC13A3"	64849	"ENSG00000158296"
+"205243_at"	"SLC13A3"	64849	"ENSG00000158296"
+"202696_at"	"OXSR1"	9943	"ENSG00000172939"
+"202525_at"	"PRSS8"	5652	"ENSG00000052344"
+"202242_at"	"TSPAN7"	7102	"ENSG00000156298"
+"205241_at"	"SCO2"	9997	"ENSG00000284194"
+"202114_at"	"SNX2"	6643	"ENSG00000205302"
+"202113_s_at"	"SNX2"	6643	"ENSG00000205302"
+"205045_at"	"AKAP10"	11216	"ENSG00000108599"
+"202036_s_at"	"SFRP1"	6422	"ENSG00000104332"
+"202035_s_at"	"SFRP1"	6422	"ENSG00000104332"
+"202037_s_at"	"SFRP1"	6422	"ENSG00000104332"
+"203272_s_at"	"TUSC2"	11334	"ENSG00000114383"
+"203273_s_at"	"TUSC2"	11334	"ENSG00000114383"
+"204944_at"	"PTPRG"	5793	"ENSG00000144724"
+"205347_s_at"	"TMSB15A"	11013	"ENSG00000158164"
+"205090_s_at"	"NAGPA"	51172	"ENSG00000103174"
+"202241_at"	"TRIB1"	10221	"ENSG00000173334"
+"201074_at"	"SMARCC1"	6599	"ENSG00000173473"
+"201072_s_at"	"SMARCC1"	6599	"ENSG00000173473"
+"201075_s_at"	"SMARCC1"	6599	"ENSG00000173473"
+"201073_s_at"	"SMARCC1"	6599	"ENSG00000173473"
+"200765_x_at"	"CTNNA1"	1495	"ENSG00000044115"
+"200764_s_at"	"CTNNA1"	1495	"ENSG00000044115"
+"203299_s_at"	"AP1S2"	8905	"ENSG00000182287"
+"203300_x_at"	"AP1S2"	8905	"ENSG00000182287"
+"204319_s_at"	"RGS10"	6001	"ENSG00000148908"
+"204316_at"	"RGS10"	6001	"ENSG00000148908"
+"202757_at"	"NELFB"	25920	"ENSG00000188986"
+"204408_at"	"APEX2"	27301	"ENSG00000169188"
+"202973_x_at"	"FAM13A"	10144	"ENSG00000138640"
+"202972_s_at"	"FAM13A"	10144	"ENSG00000138640"
+"201753_s_at"	"ADD3"	120	"ENSG00000148700"
+"201752_s_at"	"ADD3"	120	"ENSG00000148700"
+"201034_at"	"ADD3"	120	"ENSG00000148700"
+"204165_at"	"WASF1"	8936	"ENSG00000112290"
+"204326_x_at"	"MT1X"	4501	"ENSG00000187193"
+"205050_s_at"	"MAPK8IP2"	23542	"ENSG00000008735"
+"200859_x_at"	"FLNA"	2316	"ENSG00000196924"
+"204443_at"	"ARSA"	410	"ENSG00000100299"
+"202628_s_at"	"SERPINE1"	5054	"ENSG00000106366"
+"202627_s_at"	"SERPINE1"	5054	"ENSG00000106366"
+"200883_at"	"UQCRC2"	7385	"ENSG00000140740"
+"202491_s_at"	"ELP1"	8518	"ENSG00000070061"
+"202490_at"	"ELP1"	8518	"ENSG00000070061"
+"202167_s_at"	"MMS19"	64210	"ENSG00000155229"
+"202787_s_at"	"MAPKAPK3"	7867	"ENSG00000114738"
+"202788_at"	"MAPKAPK3"	7867	"ENSG00000114738"
+"204482_at"	"CLDN5"	7122	"ENSG00000184113"
+"203282_at"	"GBE1"	2632	"ENSG00000114480"
+"203750_s_at"	"RARA"	5914	"ENSG00000131759"
+"203749_s_at"	"RARA"	5914	"ENSG00000131759"
+"203063_at"	"PPM1F"	9647	"ENSG00000100034"
+"201206_s_at"	"RRBP1"	6238	"ENSG00000125844"
+"201204_s_at"	"RRBP1"	6238	"ENSG00000125844"
+"201203_s_at"	"RRBP1"	6238	"ENSG00000125844"
+"200876_s_at"	"PSMB1"	5689	"ENSG00000008018"
+"203047_at"	"STK10"	6793	"ENSG00000072786"
+"204300_at"	"GATB"	5188	"ENSG00000059691"
+"204140_at"	"TPST1"	8460	"ENSG00000169902"
+"201430_s_at"	"DPYSL3"	1809	"ENSG00000113657"
+"201431_s_at"	"DPYSL3"	1809	"ENSG00000113657"
+"200724_at"	"RPL10"	6134	"ENSG00000147403"
+"203001_s_at"	"STMN2"	11075	"ENSG00000104435"
+"203000_at"	"STMN2"	11075	"ENSG00000104435"
+"204894_s_at"	"AOC3"	8639	"ENSG00000131471"
+"201589_at"	"SMC1A"	8243	"ENSG00000072501"
+"202991_at"	"STARD3"	10948	"ENSG00000131748"
+"205259_at"	"NR3C2"	4306	"ENSG00000151623"
+"203909_at"	"SLC9A6"	10479	"ENSG00000198689"
+"202468_s_at"	"CTNNAL1"	8727	"ENSG00000119326"
+"201751_at"	"JOSD1"	9929	"ENSG00000100221"
+"205305_at"	"FGL1"	2267	"ENSG00000104760"
+"204877_s_at"	"TAOK2"	9344	"ENSG00000149930"
+"204986_s_at"	"TAOK2"	9344	"ENSG00000149930"
+"204878_s_at"	"TAOK2"	9344	"ENSG00000149930"
+"204204_at"	"SLC31A2"	1318	"ENSG00000136867"
+"201508_at"	"IGFBP4"	3487	"ENSG00000141753"
+"204504_s_at"	"HIRIP3"	8479	"ENSG00000149929"
+"204179_at"	"MB"	4151	"ENSG00000198125"
+"202770_s_at"	"CCNG2"	901	"ENSG00000138764"
+"202769_at"	"CCNG2"	901	"ENSG00000138764"
+"203503_s_at"	"PEX14"	5195	"ENSG00000142655"
+"204028_s_at"	"RABGAP1"	23637	"ENSG00000011454"
+"200720_s_at"	"ACTR1A"	10121	"ENSG00000138107"
+"200721_s_at"	"ACTR1A"	10121	"ENSG00000138107"
+"204172_at"	"CPOX"	1371	"ENSG00000080819"
+"204517_at"	"PPIC"	5480	"ENSG00000168938"
+"204518_s_at"	"PPIC"	5480	"ENSG00000168938"
+"205374_at"	"SLN"	6588	"ENSG00000170290"
+"204025_s_at"	"PDCD2"	5134	"ENSG00000071994"
+"204215_at"	"TMEM243"	79161	"ENSG00000135185"
+"203798_s_at"	"VSNL1"	7447	"ENSG00000163032"
+"203797_at"	"VSNL1"	7447	"ENSG00000163032"
+"203531_at"	"CUL5"	8065	"ENSG00000166266"
+"203532_x_at"	"CUL5"	8065	"ENSG00000166266"
+"203533_s_at"	"CUL5"	8065	"ENSG00000166266"
+"202904_s_at"	"LSM5"	23658	"ENSG00000106355"
+"202903_at"	"LSM5"	23658	"ENSG00000106355"
+"204429_s_at"	"SLC2A5"	6518	"ENSG00000142583"
+"204430_s_at"	"SLC2A5"	6518	"ENSG00000142583"
+"205159_at"	"CSF2RB"	1439	"ENSG00000100368"
+"202884_s_at"	"PPP2R1B"	5519	"ENSG00000137713"
+"202885_s_at"	"PPP2R1B"	5519	"ENSG00000137713"
+"202883_s_at"	"PPP2R1B"	5519	"ENSG00000137713"
+"202886_s_at"	"PPP2R1B"	5519	"ENSG00000137713"
+"205196_s_at"	"AP1S1"	1174	"ENSG00000106367"
+"205195_at"	"AP1S1"	1174	"ENSG00000106367"
+"204184_s_at"	"GRK3"	157	"ENSG00000100077"
+"204183_s_at"	"GRK3"	157	"ENSG00000100077"
+"202185_at"	"PLOD3"	8985	"ENSG00000106397"
+"203804_s_at"	"LUC7L3"	51747	"ENSG00000108848"
+"204404_at"	"SLC12A2"	6558	"ENSG00000064651"
+"204201_s_at"	"PTPN13"	5783	"ENSG00000163629"
+"201519_at"	"TOMM70"	9868	"ENSG00000154174"
+"201512_s_at"	"TOMM70"	9868	"ENSG00000154174"
+"203722_at"	"ALDH4A1"	8659	"ENSG00000159423"
+"202382_s_at"	"GNPDA1"	10007	"ENSG00000113552"
+"204760_s_at"	"NR1D1"	9572	"ENSG00000126368"
+"202728_s_at"	"LTBP1"	4052	"ENSG00000049323"
+"202729_s_at"	"LTBP1"	4052	"ENSG00000049323"
+"202296_s_at"	"RER1"	11079	"ENSG00000157916"
+"202297_s_at"	"RER1"	11079	"ENSG00000157916"
+"200931_s_at"	"VCL"	7414	"ENSG00000035403"
+"200930_s_at"	"VCL"	7414	"ENSG00000035403"
+"204931_at"	"TCF21"	6943	"ENSG00000118526"
+"202256_at"	"CD2BP2"	10421	"ENSG00000169217"
+"202257_s_at"	"CD2BP2"	10421	"ENSG00000169217"
+"202967_at"	"GSTA4"	2941	"ENSG00000170899"
+"201532_at"	"PSMA3"	5684	"ENSG00000100567"
+"203756_at"	"ARHGEF17"	9828	"ENSG00000110237"
+"205062_x_at"	"ARID4A"	5926	"ENSG00000032219"
+"203178_at"	"GATM"	2628	"ENSG00000171766"
+"203241_at"	"UVRAG"	7405	"ENSG00000198382"
+"204115_at"	"GNG11"	2791	"ENSG00000127920"
+"203789_s_at"	"SEMA3C"	10512	"ENSG00000075223"
+"203788_s_at"	"SEMA3C"	10512	"ENSG00000075223"
+"202532_s_at"	"DHFR"	1719	"ENSG00000228716"
+"202534_x_at"	"DHFR"	1719	"ENSG00000228716"
+"204835_at"	"POLA1"	5422	"ENSG00000101868"
+"202720_at"	"TES"	26136	"ENSG00000135269"
+"202719_s_at"	"TES"	26136	"ENSG00000135269"
+"204706_at"	"INPP5E"	56623	"ENSG00000148384"
+"202303_x_at"	"SMARCA5"	8467	"ENSG00000153147"
+"203554_x_at"	"PTTG1"	9232	"ENSG00000164611"
+"202745_at"	"USP8"	9101	"ENSG00000138592"
+"203263_s_at"	"ARHGEF9"	23229	"ENSG00000131089"
+"203264_s_at"	"ARHGEF9"	23229	"ENSG00000131089"
+"205271_s_at"	"CDK20"	23552	"ENSG00000156345"
+"202097_at"	"NUP153"	9972	"ENSG00000124789"
+"201843_s_at"	"EFEMP1"	2202	"ENSG00000115380"
+"201842_s_at"	"EFEMP1"	2202	"ENSG00000115380"
+"201876_at"	"PON2"	5445	"ENSG00000105854"
+"203959_s_at"	"ZBTB40"	9923	"ENSG00000184677"
+"203958_s_at"	"ZBTB40"	9923	"ENSG00000184677"
+"204500_s_at"	"AGTPBP1"	23287	"ENSG00000135049"
+"203646_at"	"FDX1"	2230	"ENSG00000137714"
+"203647_s_at"	"FDX1"	2230	"ENSG00000137714"
+"205069_s_at"	"ARHGAP26"	23092	"ENSG00000145819"
+"205068_s_at"	"ARHGAP26"	23092	"ENSG00000145819"
+"204282_s_at"	"FARS2"	10667	"ENSG00000145982"
+"204283_at"	"FARS2"	10667	"ENSG00000145982"
+"202504_at"	"TRIM29"	23650	"ENSG00000137699"
+"201951_at"	"ALCAM"	214	"ENSG00000170017"
+"201952_at"	"ALCAM"	214	"ENSG00000170017"
+"201830_s_at"	"NET1"	10276	"ENSG00000173848"
+"201829_at"	"NET1"	10276	"ENSG00000173848"
+"202485_s_at"	"MBD2"	8932	"ENSG00000134046"
+"202484_s_at"	"MBD2"	8932	"ENSG00000134046"
+"205440_s_at"	"NPY1R"	4886	"ENSG00000164128"
+"200008_s_at"	"GDI2"	2665	"ENSG00000057608"
+"200009_at"	"GDI2"	2665	"ENSG00000057608"
+"204688_at"	"SGCE"	8910	"ENSG00000127990"
+"201977_s_at"	"DELE1"	9812	"ENSG00000081791"
+"201978_s_at"	"DELE1"	9812	"ENSG00000081791"
+"203243_s_at"	"PDLIM5"	10611	"ENSG00000163110"
+"203242_s_at"	"PDLIM5"	10611	"ENSG00000163110"
+"201333_s_at"	"ARHGEF12"	23365	"ENSG00000196914"
+"201334_s_at"	"ARHGEF12"	23365	"ENSG00000196914"
+"201335_s_at"	"ARHGEF12"	23365	"ENSG00000196914"
+"201721_s_at"	"LAPTM5"	7805	"ENSG00000162511"
+"201720_s_at"	"LAPTM5"	7805	"ENSG00000162511"
+"204144_s_at"	"PIGQ"	9091	"ENSG00000007541"
+"201007_at"	"HADHB"	3032	"ENSG00000138029"
+"204378_at"	"BCAS1"	8537	"ENSG00000064787"
+"204740_at"	"CNKSR1"	10256	"ENSG00000142675"
+"205444_at"	"ATP2A1"	487	"ENSG00000196296"
+"201946_s_at"	"CCT2"	10576	"ENSG00000166226"
+"201947_s_at"	"CCT2"	10576	"ENSG00000166226"
+"202305_s_at"	"FEZ2"	9637	"ENSG00000171055"
+"203509_at"	"SORL1"	6653	"ENSG00000137642"
+"204465_s_at"	"INA"	9118	"ENSG00000148798"
+"200959_at"	"FUS"	2521	"ENSG00000089280"
+"201415_at"	"GSS"	2937	"ENSG00000100983"
+"203721_s_at"	"UTP18"	51096	"ENSG00000011260"
+"205100_at"	"GFPT2"	9945	"ENSG00000131459"
+"203294_s_at"	"LMAN1"	3998	"ENSG00000074695"
+"203293_s_at"	"LMAN1"	3998	"ENSG00000074695"
+"205117_at"	"FGF1"	2246	"ENSG00000113578"
+"205372_at"	"PLAG1"	5324	"ENSG00000181690"
+"203609_s_at"	"ALDH5A1"	7915	"ENSG00000112294"
+"203608_at"	"ALDH5A1"	7915	"ENSG00000112294"
+"202898_at"	"SDC3"	9672	"ENSG00000162512"
+"205232_s_at"	"PAFAH2"	5051	"ENSG00000158006"
+"205233_s_at"	"PAFAH2"	5051	"ENSG00000158006"
+"202266_at"	"TDP2"	51567	"ENSG00000111802"
+"204565_at"	"ACOT13"	55856	"ENSG00000112304"
+"202211_at"	"ARFGAP3"	26286	"ENSG00000242247"
+"201302_at"	"ANXA4"	307	"ENSG00000196975"
+"201301_s_at"	"ANXA4"	307	"ENSG00000196975"
+"201539_s_at"	"FHL1"	2273	"ENSG00000022267"
+"201540_at"	"FHL1"	2273	"ENSG00000022267"
+"205027_s_at"	"MAP3K8"	1326	"ENSG00000107968"
+"201885_s_at"	"CYB5R3"	1727	"ENSG00000100243"
+"200071_at"	"SMNDC1"	10285	"ENSG00000119953"
+"204485_s_at"	"TOM1L1"	10040	"ENSG00000141198"
+"205231_s_at"	"EPM2A"	7957	"ENSG00000112425"
+"201858_s_at"	"SRGN"	5552	"ENSG00000122862"
+"201859_at"	"SRGN"	5552	"ENSG00000122862"
+"203656_at"	"FIG4"	9896	"ENSG00000112367"
+"204138_s_at"	"MZF1"	7593	"ENSG00000099326"
+"204139_x_at"	"MZF1"	7593	"ENSG00000099326"
+"201716_at"	"SNX1"	6642	"ENSG00000028528"
+"203885_at"	"RAB21"	23011	"ENSG00000080371"
+"205283_at"	"FKTN"	2218	"ENSG00000106692"
+"201256_at"	"COX7A2L"	9167	"ENSG00000115944"
+"204570_at"	"COX7A1"	1346	"ENSG00000161281"
+"201143_s_at"	"EIF2S1"	1965	"ENSG00000134001"
+"201144_s_at"	"EIF2S1"	1965	"ENSG00000134001"
+"201142_at"	"EIF2S1"	1965	"ENSG00000134001"
+"204187_at"	"GMPR"	2766	"ENSG00000137198"
+"203436_at"	"RPP30"	10556	"ENSG00000148688"
+"203320_at"	"SH2B3"	10019	"ENSG00000111252"
+"202704_at"	"TOB1"	10140	"ENSG00000141232"
+"205364_at"	"ACOX2"	8309	"ENSG00000168306"
+"203961_at"	"NEBL"	10529	"ENSG00000078114"
+"203962_s_at"	"NEBL"	10529	"ENSG00000078114"
+"204175_at"	"ZNF593"	51042	"ENSG00000142684"
+"203499_at"	"EPHA2"	1969	"ENSG00000142627"
+"203187_at"	"DOCK1"	1793	"ENSG00000150760"
+"200005_at"	"EIF3D"	8664	"ENSG00000100353"
+"202459_s_at"	"LPIN2"	9663	"ENSG00000101577"
+"202460_s_at"	"LPIN2"	9663	"ENSG00000101577"
+"202223_at"	"STT3A"	3703	"ENSG00000134910"
+"203508_at"	"TNFRSF1B"	7133	"ENSG00000028137"
+"202562_s_at"	"ERG28"	11161	"ENSG00000133935"
+"202563_at"	"ERG28"	11161	"ENSG00000133935"
+"201865_x_at"	"NR3C1"	2908	"ENSG00000113580"
+"201866_s_at"	"NR3C1"	2908	"ENSG00000113580"
+"204810_s_at"	"CKM"	1158	"ENSG00000104879"
+"204656_at"	"SHB"	6461	"ENSG00000107338"
+"202316_x_at"	"UBE4B"	10277	"ENSG00000130939"
+"202317_s_at"	"UBE4B"	10277	"ENSG00000130939"
+"202503_s_at"	"PCLAF"	9768	"ENSG00000166803"
+"203732_at"	"TRIP4"	9325	"ENSG00000103671"
+"204614_at"	"SERPINB2"	5055	"ENSG00000197632"
+"200090_at"	"FNTA"	2339	"ENSG00000168522"
+"205329_s_at"	"SNX4"	8723	"ENSG00000114520"
+"203674_at"	"HELZ"	9931	"ENSG00000198265"
+"203946_s_at"	"ARG2"	384	"ENSG00000081181"
+"203945_at"	"ARG2"	384	"ENSG00000081181"
+"202002_at"	"ACAA2"	10449	"ENSG00000167315"
+"204463_s_at"	"EDNRA"	1909	"ENSG00000151617"
+"204464_s_at"	"EDNRA"	1909	"ENSG00000151617"
+"204520_x_at"	"BRD1"	23774	"ENSG00000100425"
+"203551_s_at"	"COX11"	1353	"ENSG00000166260"
+"201518_at"	"CBX1"	10951	"ENSG00000108468"
+"202392_s_at"	"PISD"	23761	"ENSG00000241878"
+"201895_at"	"ARAF"	369	"ENSG00000078061"
+"203324_s_at"	"CAV2"	858	"ENSG00000105971"
+"203323_at"	"CAV2"	858	"ENSG00000105971"
+"203137_at"	"WTAP"	9589	"ENSG00000146457"
+"201523_x_at"	"UBE2N"	7334	"ENSG00000177889"
+"201524_x_at"	"UBE2N"	7334	"ENSG00000177889"
+"204830_x_at"	"PSG5"	5673	"ENSG00000204941"
+"203605_at"	"SRP54"	6729	"ENSG00000100883"
+"202965_s_at"	"CAPN6"	827	"ENSG00000077274"
+"202966_at"	"CAPN6"	827	"ENSG00000077274"
+"204937_s_at"	"ZNF274"	10782	"ENSG00000171606"
+"202843_at"	"DNAJB9"	4189	"ENSG00000128590"
+"202842_s_at"	"DNAJB9"	4189	"ENSG00000128590"
+"202677_at"	"RASA1"	5921	"ENSG00000145715"
+"201292_at"	"TOP2A"	7153	"ENSG00000131747"
+"201291_s_at"	"TOP2A"	7153	"ENSG00000131747"
+"204012_s_at"	"LCMT2"	9836	"ENSG00000168806"
+"202214_s_at"	"CUL4B"	8450	"ENSG00000158290"
+"202213_s_at"	"CUL4B"	8450	"ENSG00000158290"
+"205186_at"	"DNALI1"	7802	"ENSG00000163879"
+"205079_s_at"	"MPDZ"	8777	"ENSG00000107186"
+"203622_s_at"	"PNO1"	56902	"ENSG00000115946"
+"205346_at"	"ST3GAL2"	6483	"ENSG00000157350"
+"204545_at"	"PEX6"	5190	"ENSG00000124587"
+"203450_at"	"CBY1"	25776	"ENSG00000100211"
+"202513_s_at"	"PPP2R5D"	5528	"ENSG00000112640"
+"202568_s_at"	"MARK3"	4140	"ENSG00000075413"
+"202569_s_at"	"MARK3"	4140	"ENSG00000075413"
+"200039_s_at"	"PSMB2"	5690	"ENSG00000126067"
+"201404_x_at"	"PSMB2"	5690	"ENSG00000126067"
+"204403_x_at"	"TCAF1"	9747	"ENSG00000198420"
+"201622_at"	"SND1"	27044	"ENSG00000197157"
+"203904_x_at"	"CD82"	3732	"ENSG00000085117"
+"200688_at"	"SF3B3"	23450	"ENSG00000189091"
+"200687_s_at"	"SF3B3"	23450	"ENSG00000189091"
+"203064_s_at"	"FOXK2"	3607	"ENSG00000141568"
+"201889_at"	"FAM3C"	10447	"ENSG00000196937"
+"202361_at"	"SEC24C"	9632	"ENSG00000176986"
+"201652_at"	"COPS5"	10987	"ENSG00000121022"
+"202825_at"	"SLC25A4"	291	"ENSG00000151729"
+"204332_s_at"	"AGA"	175	"ENSG00000038002"
+"204333_s_at"	"AGA"	175	"ENSG00000038002"
+"202049_s_at"	"ZMYM4"	9202	"ENSG00000146463"
+"202050_s_at"	"ZMYM4"	9202	"ENSG00000146463"
+"202051_s_at"	"ZMYM4"	9202	"ENSG00000146463"
+"201000_at"	"AARS1"	16	"ENSG00000090861"
+"202956_at"	"ARFGEF1"	10565	"ENSG00000066777"
+"202955_s_at"	"ARFGEF1"	10565	"ENSG00000066777"
+"200683_s_at"	"UBE2L3"	7332	"ENSG00000185651"
+"200684_s_at"	"UBE2L3"	7332	"ENSG00000185651"
+"200676_s_at"	"UBE2L3"	7332	"ENSG00000185651"
+"202415_s_at"	"HSPBP1"	23640	"ENSG00000133265"
+"200878_at"	"EPAS1"	2034	"ENSG00000116016"
+"200879_s_at"	"EPAS1"	2034	"ENSG00000116016"
+"204897_at"	"PTGER4"	5734	"ENSG00000171522"
+"204896_s_at"	"PTGER4"	5734	"ENSG00000171522"
+"202298_at"	"NDUFA1"	4694	"ENSG00000125356"
+"204243_at"	"RLF"	6018	"ENSG00000117000"
+"202796_at"	"SYNPO"	11346	"ENSG00000171992"
+"205268_s_at"	"ADD2"	119	"ENSG00000075340"
+"203857_s_at"	"PDIA5"	10954	"ENSG00000065485"
+"201807_at"	"VPS26A"	9559	"ENSG00000122958"
+"203447_at"	"PSMD5"	5711	"ENSG00000095261"
+"201824_at"	"RNF14"	9604	"ENSG00000013561"
+"201823_s_at"	"RNF14"	9604	"ENSG00000013561"
+"203651_at"	"ZFYVE16"	9765	"ENSG00000039319"
+"203846_at"	"TRIM32"	22954	"ENSG00000119401"
+"204192_at"	"CD37"	951	"ENSG00000104894"
+"201174_s_at"	"TERF2IP"	54386	"ENSG00000166848"
+"201578_at"	"PODXL"	5420	"ENSG00000128567"
+"202293_at"	"STAG1"	10274	"ENSG00000118007"
+"202294_at"	"STAG1"	10274	"ENSG00000118007"
+"201948_at"	"GNL2"	29889	"ENSG00000134697"
+"202203_s_at"	"AMFR"	267	"ENSG00000159461"
+"202204_s_at"	"AMFR"	267	"ENSG00000159461"
+"204904_at"	"GJA4"	2701	"ENSG00000187513"
+"202087_s_at"	"CTSL"	1514	"ENSG00000135047"
+"201285_at"	"MKRN1"	23608	"ENSG00000133606"
+"204468_s_at"	"TIE1"	7075	"ENSG00000066056"
+"200840_at"	"KARS1"	3735	"ENSG00000065427"
+"200079_s_at"	"KARS1"	3735	"ENSG00000065427"
+"203465_at"	"MRPL19"	9801	"ENSG00000115364"
+"203361_s_at"	"MYCBP"	26292	"ENSG00000214114"
+"202401_s_at"	"SRF"	6722	"ENSG00000112658"
+"202400_s_at"	"SRF"	6722	"ENSG00000112658"
+"204730_at"	"RIMS3"	9783	"ENSG00000117016"
+"203914_x_at"	"HPGD"	3248	"ENSG00000164120"
+"203913_s_at"	"HPGD"	3248	"ENSG00000164120"
+"203827_at"	"WIPI1"	55062	"ENSG00000070540"
+"200794_x_at"	"DAZAP2"	9802	"ENSG00000183283"
+"203197_s_at"	"CZIB"	54987	"ENSG00000162384"
+"204444_at"	"KIF11"	3832	"ENSG00000138160"
+"203289_s_at"	"NPRL3"	8131	"ENSG00000103148"
+"204238_s_at"	"DNPH1"	10591	"ENSG00000112667"
+"202099_s_at"	"DGCR2"	9993	"ENSG00000070413"
+"202054_s_at"	"ALDH3A2"	224	"ENSG00000072210"
+"202053_s_at"	"ALDH3A2"	224	"ENSG00000072210"
+"203504_s_at"	"ABCA1"	19	"ENSG00000165029"
+"205276_s_at"	"GTPBP1"	9567	"ENSG00000100226"
+"205153_s_at"	"CD40"	958	"ENSG00000101017"
+"201066_at"	"CYC1"	1537	"ENSG00000179091"
+"203785_s_at"	"DDX28"	55794	"ENSG00000182810"
+"203784_s_at"	"DDX28"	55794	"ENSG00000182810"
+"202868_s_at"	"POP4"	10775	"ENSG00000105171"
+"203451_at"	"LDB1"	8861	"ENSG00000198728"
+"201197_at"	"AMD1"	262	"ENSG00000123505"
+"204632_at"	"RPS6KA4"	8986	"ENSG00000162302"
+"203372_s_at"	"SOCS2"	8835	"ENSG00000120833"
+"203373_at"	"SOCS2"	8835	"ENSG00000120833"
+"202934_at"	"HK2"	3099	"ENSG00000159399"
+"201614_s_at"	"RUVBL1"	8607	"ENSG00000175792"
+"201868_s_at"	"TBL1X"	6907	"ENSG00000101849"
+"201867_s_at"	"TBL1X"	6907	"ENSG00000101849"
+"201869_s_at"	"TBL1X"	6907	"ENSG00000101849"
+"203353_s_at"	"MBD1"	4152	"ENSG00000141644"
+"203737_s_at"	"PPRC1"	23082	"ENSG00000148840"
+"200998_s_at"	"CKAP4"	10970	"ENSG00000136026"
+"200999_s_at"	"CKAP4"	10970	"ENSG00000136026"
+"204840_s_at"	"EEA1"	8411	"ENSG00000102189"
+"204841_s_at"	"EEA1"	8411	"ENSG00000102189"
+"204639_at"	"ADA"	100	"ENSG00000196839"
+"203569_s_at"	"OFD1"	8481	"ENSG00000046651"
+"202608_s_at"	"NDST1"	3340	"ENSG00000070614"
+"202607_at"	"NDST1"	3340	"ENSG00000070614"
+"204353_s_at"	"POT1"	25913	"ENSG00000128513"
+"204354_at"	"POT1"	25913	"ENSG00000128513"
+"205273_s_at"	"PITRM1"	10531	"ENSG00000107959"
+"202093_s_at"	"PAF1"	54623	"ENSG00000006712"
+"205193_at"	"MAFF"	23764	"ENSG00000185022"
+"202027_at"	"TMEM184B"	25829	"ENSG00000198792"
+"205021_s_at"	"FOXN3"	1112	"ENSG00000053254"
+"205022_s_at"	"FOXN3"	1112	"ENSG00000053254"
+"201531_at"	"ZFP36"	7538	"ENSG00000128016"
+"204063_s_at"	"ULK2"	9706	"ENSG00000083290"
+"204062_s_at"	"ULK2"	9706	"ENSG00000083290"
+"202827_s_at"	"MMP14"	4323	"ENSG00000157227"
+"202828_s_at"	"MMP14"	4323	"ENSG00000157227"
+"201828_x_at"	"RTL8C"	8933	"ENSG00000134590"
+"201258_at"	"RPS16"	6217	"ENSG00000105193"
+"201923_at"	"PRDX4"	10549	"ENSG00000123131"
+"201628_s_at"	"RRAGA"	10670	"ENSG00000155876"
+"204846_at"	"CP"	1356	"ENSG00000047457"
+"201480_s_at"	"SUPT5H"	6829	"ENSG00000196235"
+"204043_at"	"TCN2"	6948	"ENSG00000185339"
+"204246_s_at"	"DCTN3"	11258	"ENSG00000137100"
+"201683_x_at"	"TOX4"	9878	"ENSG00000092203"
+"201684_s_at"	"TOX4"	9878	"ENSG00000092203"
+"201685_s_at"	"TOX4"	9878	"ENSG00000092203"
+"205160_at"	"PEX11A"	8800	"ENSG00000166821"
+"205161_s_at"	"PEX11A"	8800	"ENSG00000166821"
+"202974_at"	"MPP1"	4354	"ENSG00000130830"
+"203985_at"	"ZNF212"	7988	"ENSG00000170260"
+"200963_x_at"	"RPL31"	6160	"ENSG00000071082"
+"200962_at"	"RPL31"	6160	"ENSG00000071082"
+"205408_at"	"MLLT10"	8028	"ENSG00000078403"
+"204936_at"	"MAP4K2"	5871	"ENSG00000168067"
+"200098_s_at"	"ANAPC5"	51433	"ENSG00000089053"
+"204458_at"	"PLA2G15"	23659	"ENSG00000103066"
+"203724_s_at"	"RUFY3"	22902	"ENSG00000018189"
+"204263_s_at"	"CPT2"	1376	"ENSG00000157184"
+"204264_at"	"CPT2"	1376	"ENSG00000157184"
+"203578_s_at"	"SLC7A6"	9057	"ENSG00000103064"
+"203580_s_at"	"SLC7A6"	9057	"ENSG00000103064"
+"203579_s_at"	"SLC7A6"	9057	"ENSG00000103064"
+"205291_at"	"IL2RB"	3560	"ENSG00000100385"
+"204606_at"	"CCL21"	6366	"ENSG00000137077"
+"204793_at"	"GPRASP1"	9737	"ENSG00000198932"
+"201692_at"	"SIGMAR1"	10280	"ENSG00000147955"
+"203516_at"	"SNTA1"	6640	"ENSG00000101400"
+"204117_at"	"PREP"	5550	"ENSG00000085377"
+"202422_s_at"	"ACSL4"	2182	"ENSG00000068366"
+"203250_at"	"SCAF8"	22828	"ENSG00000213079"
+"200622_x_at"	"CALM3"	808	"ENSG00000160014"
+"200623_s_at"	"CALM3"	808	"ENSG00000160014"
+"204611_s_at"	"PPP2R5B"	5526	"ENSG00000068971"
+"204569_at"	"CILK1"	22858	"ENSG00000112144"
+"202564_x_at"	"ARL2"	402	"ENSG00000213465"
+"204159_at"	"CDKN2C"	1031	"ENSG00000123080"
+"201481_s_at"	"PYGB"	5834	"ENSG00000100994"
+"200673_at"	"LAPTM4A"	9741	"ENSG00000068697"
+"202848_s_at"	"GRK6"	2870	"ENSG00000198055"
+"202849_x_at"	"GRK6"	2870	"ENSG00000198055"
+"204069_at"	"MEIS1"	4211	"ENSG00000143995"
+"202888_s_at"	"ANPEP"	290	"ENSG00000166825"
+"202734_at"	"TRIP10"	9322	"ENSG00000125733"
+"204344_s_at"	"SEC23A"	10484	"ENSG00000100934"
+"203584_at"	"EMC2"	9694	"ENSG00000104412"
+"205282_at"	"LRP8"	7804	"ENSG00000157193"
+"204899_s_at"	"SAP30"	8819	"ENSG00000164105"
+"204900_x_at"	"SAP30"	8819	"ENSG00000164105"
+"204587_at"	"SLC25A14"	9016	"ENSG00000102078"
+"204234_s_at"	"ZNF195"	7748	"ENSG00000005801"
+"204311_at"	"ATP1B2"	482	"ENSG00000129244"
+"205433_at"	"BCHE"	590	"ENSG00000114200"
+"202364_at"	"MXI1"	4601	"ENSG00000119950"
+"205031_at"	"EFNB3"	1949	"ENSG00000108947"
+"201590_x_at"	"ANXA2"	302	"ENSG00000182718"
+"202128_at"	"AREL1"	9870	"ENSG00000119682"
+"201208_s_at"	"TNFAIP1"	7126	"ENSG00000109079"
+"201207_at"	"TNFAIP1"	7126	"ENSG00000109079"
+"203104_at"	"CSF1R"	1436	"ENSG00000182578"
+"205016_at"	"TGFA"	7039	"ENSG00000163235"
+"205015_s_at"	"TGFA"	7039	"ENSG00000163235"
+"203478_at"	"NDUFC1"	4717	"ENSG00000109390"
+"202339_at"	"SYMPK"	8189	"ENSG00000125755"
+"201129_at"	"SRSF7"	6432	"ENSG00000115875"
+"204560_at"	"FKBP5"	2289	"ENSG00000096060"
+"202273_at"	"PDGFRB"	5159	"ENSG00000113721"
+"205218_at"	"POLR3F"	10621	"ENSG00000132664"
+"205011_at"	"VWA5A"	4013	"ENSG00000110002"
+"204469_at"	"PTPRZ1"	5803	"ENSG00000106278"
+"204537_s_at"	"GABRE"	2564	"ENSG00000102287"
+"201105_at"	"LGALS1"	3956	"ENSG00000100097"
+"201583_s_at"	"SEC23B"	10483	"ENSG00000101310"
+"201582_at"	"SEC23B"	10483	"ENSG00000101310"
+"201253_s_at"	"CDIPT"	10423	"ENSG00000103502"
+"205014_at"	"FGFBP1"	9982	"ENSG00000137440"
+"204691_x_at"	"PLA2G6"	8398	"ENSG00000184381"
+"204120_s_at"	"ADK"	132	"ENSG00000156110"
+"204119_s_at"	"ADK"	132	"ENSG00000156110"
+"203764_at"	"DLGAP5"	9787	"ENSG00000126787"
+"204304_s_at"	"PROM1"	8842	"ENSG00000007062"
+"205115_s_at"	"RBM19"	9904	"ENSG00000122965"
+"203305_at"	"F13A1"	2162	"ENSG00000124491"
+"201463_s_at"	"TALDO1"	6888	"ENSG00000177156"
+"203153_at"	"IFIT1"	3434	"ENSG00000185745"
+"203924_at"	"GSTA1"	2938	"ENSG00000243955"
+"204568_at"	"ATG14"	22863	"ENSG00000126775"
+"202887_s_at"	"DDIT4"	54541	"ENSG00000168209"
+"202501_at"	"MAPRE2"	10982	"ENSG00000166974"
+"200949_x_at"	"RPS20"	6224	"ENSG00000008988"
+"203544_s_at"	"STAM"	8027	"ENSG00000136738"
+"203455_s_at"	"SAT1"	6303	"ENSG00000130066"
+"204017_at"	"KDELR3"	11015	"ENSG00000100196"
+"202781_s_at"	"INPP5K"	51763	"ENSG00000132376"
+"202782_s_at"	"INPP5K"	51763	"ENSG00000132376"
+"202688_at"	"TNFSF10"	8743	"ENSG00000121858"
+"202687_s_at"	"TNFSF10"	8743	"ENSG00000121858"
+"205407_at"	"RECK"	8434	"ENSG00000122707"
+"203568_s_at"	"TRIM38"	10475	"ENSG00000112343"
+"203610_s_at"	"TRIM38"	10475	"ENSG00000112343"
+"203567_s_at"	"TRIM38"	10475	"ENSG00000112343"
+"203247_s_at"	"ZNF24"	7572	"ENSG00000172466"
+"203248_at"	"ZNF24"	7572	"ENSG00000172466"
+"205042_at"	"GNE"	10020	"ENSG00000159921"
+"202412_s_at"	"USP1"	7398	"ENSG00000162607"
+"202413_s_at"	"USP1"	7398	"ENSG00000162607"
+"205341_at"	"EHD2"	30846	"ENSG00000024422"
+"203529_at"	"PPP6C"	5537	"ENSG00000119414"
+"201558_at"	"RAE1"	8480	"ENSG00000101146"
+"204153_s_at"	"MFNG"	4242	"ENSG00000100060"
+"204152_s_at"	"MFNG"	4242	"ENSG00000100060"
+"202283_at"	"SERPINF1"	5176	"ENSG00000132386"
+"203449_s_at"	"TERF1"	7013	"ENSG00000147601"
+"203150_at"	"RABEPK"	10244	"ENSG00000136933"
+"205067_at"	"IL1B"	3553	"ENSG00000125538"
+"203560_at"	"GGH"	8836	"ENSG00000137563"
+"203898_at"	"CRCP"	27297	"ENSG00000241258"
+"202551_s_at"	"CRIM1"	51232	"ENSG00000150938"
+"202552_s_at"	"CRIM1"	51232	"ENSG00000150938"
+"205012_s_at"	"HAGH"	3029	"ENSG00000063854"
+"204720_s_at"	"DNAJC6"	9829	"ENSG00000116675"
+"204721_s_at"	"DNAJC6"	9829	"ENSG00000116675"
+"201529_s_at"	"RPA1"	6117	"ENSG00000132383"
+"201528_at"	"RPA1"	6117	"ENSG00000132383"
+"204212_at"	"ACOT8"	10005	"ENSG00000101473"
+"204347_at"	"AK4"	205	"ENSG00000162433"
+"204693_at"	"CDC42EP1"	11135	"ENSG00000128283"
+"202377_at"	"LEPROT"	54741	"ENSG00000213625"
+"202378_s_at"	"LEPROT"	54741	"ENSG00000213625"
+"202935_s_at"	"SOX9"	6662	"ENSG00000125398"
+"202936_s_at"	"SOX9"	6662	"ENSG00000125398"
+"202423_at"	"KAT6A"	7994	"ENSG00000083168"
+"203613_s_at"	"NDUFB6"	4712	"ENSG00000165264"
+"201803_at"	"POLR2B"	5431	"ENSG00000047315"
+"203943_at"	"KIF3B"	9371	"ENSG00000101350"
+"204640_s_at"	"SPOP"	8405	"ENSG00000121067"
+"203978_at"	"NUBP1"	4682	"ENSG00000103274"
+"201452_at"	"RHEB"	6009	"ENSG00000106615"
+"201490_s_at"	"PPIF"	10105	"ENSG00000108179"
+"201489_at"	"PPIF"	10105	"ENSG00000108179"
+"200909_s_at"	"RPLP2"	6181	"ENSG00000177600"
+"205088_at"	"MAMLD1"	10046	"ENSG00000013619"
+"204071_s_at"	"TOPORS"	10210	"ENSG00000197579"
+"203536_s_at"	"CIAO1"	9391	"ENSG00000144021"
+"201163_s_at"	"IGFBP7"	3490	"ENSG00000163453"
+"201162_at"	"IGFBP7"	3490	"ENSG00000163453"
+"202129_s_at"	"RIOK3"	8780	"ENSG00000101782"
+"202130_at"	"RIOK3"	8780	"ENSG00000101782"
+"202131_s_at"	"RIOK3"	8780	"ENSG00000101782"
+"204535_s_at"	"REST"	5978	"ENSG00000084093"
+"201860_s_at"	"PLAT"	5327	"ENSG00000104368"
+"203733_at"	"DEXI"	28955	"ENSG00000182108"
+"200782_at"	"ANXA5"	308	"ENSG00000164111"
+"204794_at"	"DUSP2"	1844	"ENSG00000158050"
+"204306_s_at"	"CD151"	977	"ENSG00000177697"
+"200996_at"	"ACTR3"	10096	"ENSG00000115091"
+"205070_at"	"ING3"	54556	"ENSG00000071243"
+"202679_at"	"NPC1"	4864	"ENSG00000141458"
+"201870_at"	"TOMM34"	10953	"ENSG00000025772"
+"202433_at"	"SLC35B1"	10237	"ENSG00000121073"
+"203691_at"	"PI3"	5266	"ENSG00000124102"
+"202586_at"	"POLR2L"	5441	"ENSG00000177700"
+"205061_s_at"	"EXOSC9"	5393	"ENSG00000123737"
+"202526_at"	"SMAD4"	4089	"ENSG00000141646"
+"202527_s_at"	"SMAD4"	4089	"ENSG00000141646"
+"205411_at"	"STK4"	6789	"ENSG00000101109"
+"202077_at"	"NDUFAB1"	4706	"ENSG00000004779"
+"204984_at"	"GPC4"	2239	"ENSG00000076716"
+"204983_s_at"	"GPC4"	2239	"ENSG00000076716"
+"203205_at"	"KDM4A"	9682	"ENSG00000066135"
+"203824_at"	"TSPAN8"	7103	"ENSG00000127324"
+"203616_at"	"POLB"	5423	"ENSG00000070501"
+"203502_at"	"BPGM"	669	"ENSG00000172331"
+"200785_s_at"	"LRP1"	4035	"ENSG00000123384"
+"200784_s_at"	"LRP1"	4035	"ENSG00000123384"
+"203458_at"	"SPR"	6697	"ENSG00000116096"
+"202240_at"	"PLK1"	5347	"ENSG00000166851"
+"202383_at"	"KDM5C"	8242	"ENSG00000126012"
+"203418_at"	"CCNA2"	890	"ENSG00000145386"
+"201847_at"	"LIPA"	3988	"ENSG00000107798"
+"204827_s_at"	"CCNF"	899	"ENSG00000162063"
+"204826_at"	"CCNF"	899	"ENSG00000162063"
+"201626_at"	"INSIG1"	3638	"ENSG00000186480"
+"201625_s_at"	"INSIG1"	3638	"ENSG00000186480"
+"201627_s_at"	"INSIG1"	3638	"ENSG00000186480"
+"200970_s_at"	"SERP1"	27230	"ENSG00000120742"
+"200971_s_at"	"SERP1"	27230	"ENSG00000120742"
+"200969_at"	"SERP1"	27230	"ENSG00000120742"
+"204809_at"	"CLPX"	10845	"ENSG00000166855"
+"203315_at"	"NCK2"	8440	"ENSG00000071051"
+"204747_at"	"IFIT3"	3437	"ENSG00000119917"
+"204260_at"	"CHGB"	1114	"ENSG00000089199"
+"202522_at"	"PITPNB"	23760	"ENSG00000180957"
+"201272_at"	"AKR1B1"	231	"ENSG00000085662"
+"205071_x_at"	"XRCC4"	7518	"ENSG00000152422"
+"205072_s_at"	"XRCC4"	7518	"ENSG00000152422"
+"203606_at"	"NDUFS6"	4726	"ENSG00000145494"
+"202161_at"	"PKN1"	5585	"ENSG00000123143"
+"204524_at"	"PDPK1"	5170	"ENSG00000140992"
+"204709_s_at"	"KIF23"	9493	"ENSG00000137807"
+"203058_s_at"	"PAPSS2"	9060	"ENSG00000198682"
+"203059_s_at"	"PAPSS2"	9060	"ENSG00000198682"
+"203060_s_at"	"PAPSS2"	9060	"ENSG00000198682"
+"202495_at"	"TBCC"	6903	"ENSG00000124659"
+"205460_at"	"NPAS2"	4862	"ENSG00000170485"
+"205459_s_at"	"NPAS2"	4862	"ENSG00000170485"
+"205420_at"	"PEX7"	5191	"ENSG00000112357"
+"205330_at"	"MN1"	4330	"ENSG00000169184"
+"203036_s_at"	"MTSS1"	9788	"ENSG00000170873"
+"203037_s_at"	"MTSS1"	9788	"ENSG00000170873"
+"204391_x_at"	"TRIM24"	8805	"ENSG00000122779"
+"203553_s_at"	"MAP4K5"	11183	"ENSG00000012983"
+"203552_at"	"MAP4K5"	11183	"ENSG00000012983"
+"202221_s_at"	"EP300"	2033	"ENSG00000100393"
+"203506_s_at"	"MED12"	9968	"ENSG00000184634"
+"202078_at"	"COPS3"	8533	"ENSG00000141030"
+"202927_at"	"PIN1"	5300	"ENSG00000127445"
+"202949_s_at"	"FHL2"	2274	"ENSG00000115641"
+"202432_at"	"PPP3CB"	5532	"ENSG00000107758"
+"203655_at"	"XRCC1"	7515	"ENSG00000073050"
+"203689_s_at"	"FMR1"	2332	"ENSG00000102081"
+"204675_at"	"SRD5A1"	6715	"ENSG00000145545"
+"205171_at"	"PTPN4"	5775	"ENSG00000088179"
+"202466_at"	"TENT4A"	11044	"ENSG00000112941"
+"200025_s_at"	"RPL27"	6155	"ENSG00000131469"
+"201541_s_at"	"ZNHIT1"	10467	"ENSG00000106400"
+"201715_s_at"	"ACIN1"	22985	"ENSG00000100813"
+"201227_s_at"	"NDUFB8"	4714	"ENSG00000166136"
+"200058_s_at"	"SNRNP200"	23020	"ENSG00000144028"
+"201375_s_at"	"PPP2CB"	5516	"ENSG00000104695"
+"201374_x_at"	"PPP2CB"	5516	"ENSG00000104695"
+"200093_s_at"	"HINT1"	3094	"ENSG00000169567"
+"205300_s_at"	"SNRNP35"	11066	"ENSG00000184209"
+"203482_at"	"SLF2"	55719	"ENSG00000119906"
+"203481_at"	"SLF2"	55719	"ENSG00000119906"
+"201773_at"	"ADNP"	23394	"ENSG00000101126"
+"203576_at"	"BCAT2"	587	"ENSG00000105552"
+"203044_at"	"CHSY1"	22856	"ENSG00000131873"
+"202452_at"	"ZER1"	10444	"ENSG00000160445"
+"202456_s_at"	"ZER1"	10444	"ENSG00000160445"
+"202448_s_at"	"ZER1"	10444	"ENSG00000160445"
+"204885_s_at"	"MSLN"	10232	"ENSG00000102854"
+"204423_at"	"MKLN1"	4289	"ENSG00000128585"
+"203304_at"	"BAMBI"	25805	"ENSG00000095739"
+"204100_at"	"THRA"	7067	"ENSG00000126351"
+"201657_at"	"ARL1"	400	"ENSG00000120805"
+"201658_at"	"ARL1"	400	"ENSG00000120805"
+"201659_s_at"	"ARL1"	400	"ENSG00000120805"
+"205180_s_at"	"ADAM8"	101	"ENSG00000151651"
+"205179_s_at"	"ADAM8"	101	"ENSG00000151651"
+"203094_at"	"MAD2L1BP"	9587	"ENSG00000124688"
+"203343_at"	"UGDH"	7358	"ENSG00000109814"
+"203888_at"	"THBD"	7056	"ENSG00000178726"
+"203887_s_at"	"THBD"	7056	"ENSG00000178726"
+"202878_s_at"	"CD93"	22918	"ENSG00000125810"
+"202877_s_at"	"CD93"	22918	"ENSG00000125810"
+"205261_at"	"PGC"	5225	"ENSG00000096088"
+"204336_s_at"	"RGS19"	10287	"ENSG00000171700"
+"204824_at"	"ENDOG"	2021	"ENSG00000167136"
+"202660_at"	"ITPR2"	3709	"ENSG00000123104"
+"202662_s_at"	"ITPR2"	3709	"ENSG00000123104"
+"201135_at"	"ECHS1"	1892	"ENSG00000127884"
+"204388_s_at"	"MAOA"	4128	"ENSG00000189221"
+"204389_at"	"MAOA"	4128	"ENSG00000189221"
+"202776_at"	"DNTTIP2"	30836	"ENSG00000067334"
+"200635_s_at"	"PTPRF"	5792	"ENSG00000142949"
+"200636_s_at"	"PTPRF"	5792	"ENSG00000142949"
+"200637_s_at"	"PTPRF"	5792	"ENSG00000142949"
+"201063_at"	"RCN1"	5954	"ENSG00000049449"
+"204079_at"	"TPST2"	8459	"ENSG00000128294"
+"204969_s_at"	"RDX"	5962	"ENSG00000137710"
+"203555_at"	"PTPN18"	26469	"ENSG00000072135"
+"204488_at"	"DOLK"	22845	"ENSG00000175283"
+"205452_at"	"PIGB"	9488	"ENSG00000069943"
+"205214_at"	"STK17B"	9262	"ENSG00000081320"
+"202701_at"	"BMP1"	649	"ENSG00000168487"
+"202159_at"	"FARSA"	2193	"ENSG00000179115"
+"200862_at"	"DHCR24"	1718	"ENSG00000116133"
+"203528_at"	"SEMA4D"	10507	"ENSG00000187764"
+"201046_s_at"	"RAD23A"	5886	"ENSG00000179262"
+"201039_s_at"	"RAD23A"	5886	"ENSG00000179262"
+"204112_s_at"	"HNMT"	3176	"ENSG00000150540"
+"204111_at"	"HNMT"	3176	"ENSG00000150540"
+"205060_at"	"PARG"	8505	"ENSG00000227345"
+"204101_at"	"MTM1"	4534	"ENSG00000171100"
+"202143_s_at"	"COPS8"	10920	"ENSG00000198612"
+"202142_at"	"COPS8"	10920	"ENSG00000198612"
+"202141_s_at"	"COPS8"	10920	"ENSG00000198612"
+"201392_s_at"	"IGF2R"	3482	"ENSG00000197081"
+"201393_s_at"	"IGF2R"	3482	"ENSG00000197081"
+"202405_at"	"TIAL1"	7073	"ENSG00000151923"
+"202406_s_at"	"TIAL1"	7073	"ENSG00000151923"
+"203257_s_at"	"CSTPP1"	79096	"ENSG00000149179"
+"204125_at"	"NDUFAF1"	51103	"ENSG00000137806"
+"201379_s_at"	"TPD52L2"	7165	"ENSG00000101150"
+"201405_s_at"	"COPS6"	10980	"ENSG00000168090"
+"200003_s_at"	"RPL28"	6158	"ENSG00000108107"
+"205325_at"	"PHYHIP"	9796	"ENSG00000168490"
+"205229_s_at"	"COCH"	1690	"ENSG00000100473"
+"203468_at"	"CDK10"	8558	"ENSG00000185324"
+"203469_s_at"	"CDK10"	8558	"ENSG00000185324"
+"201119_s_at"	"COX8A"	1351	"ENSG00000176340"
+"203921_at"	"CHST2"	9435	"ENSG00000175040"
+"202861_at"	"PER1"	5187	"ENSG00000179094"
+"204496_at"	"STRN3"	29966	"ENSG00000196792"
+"205230_at"	"RPH3A"	22895	"ENSG00000089169"
+"201933_at"	"CHMP1A"	5119	"ENSG00000131165"
+"202854_at"	"HPRT1"	3251	"ENSG00000165704"
+"200898_s_at"	"OGA"	10724	"ENSG00000198408"
+"200899_s_at"	"OGA"	10724	"ENSG00000198408"
+"201754_at"	"COX6C"	1345	"ENSG00000164919"
+"202850_at"	"ABCD3"	5825	"ENSG00000117528"
+"202295_s_at"	"CTSH"	1512	"ENSG00000103811"
+"205354_at"	"GAMT"	2593	"ENSG00000130005"
+"201787_at"	"FBLN1"	2192	"ENSG00000077942"
+"202995_s_at"	"FBLN1"	2192	"ENSG00000077942"
+"202994_s_at"	"FBLN1"	2192	"ENSG00000077942"
+"205269_at"	"LCP2"	3937	"ENSG00000043462"
+"205270_s_at"	"LCP2"	3937	"ENSG00000043462"
+"202118_s_at"	"CPNE3"	8895	"ENSG00000085719"
+"202119_s_at"	"CPNE3"	8895	"ENSG00000085719"
+"202463_s_at"	"MBD3"	53615	"ENSG00000071655"
+"203165_s_at"	"SLC33A1"	9197	"ENSG00000169359"
+"203164_at"	"SLC33A1"	9197	"ENSG00000169359"
+"202042_at"	"HARS1"	3035	"ENSG00000170445"
+"205320_at"	"APC2"	10297	"ENSG00000115266"
+"204000_at"	"GNB5"	10681	"ENSG00000069966"
+"201141_at"	"GPNMB"	10457	"ENSG00000136235"
+"204021_s_at"	"PURA"	5813	"ENSG00000185129"
+"204020_at"	"PURA"	5813	"ENSG00000185129"
+"204032_at"	"BCAR3"	8412	"ENSG00000137936"
+"201507_at"	"PFDN1"	5201	"ENSG00000113068"
+"204618_s_at"	"GABPB1"	2553	"ENSG00000104064"
+"203941_at"	"INTS9"	55756	"ENSG00000104299"
+"203775_at"	"SLC25A13"	10165	"ENSG00000004864"
+"204097_s_at"	"RBMX2"	51634	"ENSG00000134597"
+"204098_at"	"RBMX2"	51634	"ENSG00000134597"
+"204690_at"	"STX8"	9482	"ENSG00000170310"
+"201445_at"	"CNN3"	1266	"ENSG00000117519"
+"202508_s_at"	"SNAP25"	6616	"ENSG00000132639"
+"202507_s_at"	"SNAP25"	6616	"ENSG00000132639"
+"203490_at"	"ELF4"	2000	"ENSG00000102034"
+"202912_at"	"ADM"	133	"ENSG00000148926"
+"203571_s_at"	"ADIRF"	10974	"ENSG00000148671"
+"202146_at"	"IFRD1"	3475	"ENSG00000006652"
+"204646_at"	"DPYD"	1806	"ENSG00000188641"
+"205221_at"	"HGD"	3081	"ENSG00000113924"
+"205063_at"	"GEMIN2"	8487	"ENSG00000092208"
+"204642_at"	"S1PR1"	1901	"ENSG00000170989"
+"202852_s_at"	"AAGAB"	79719	"ENSG00000103591"
+"202851_at"	"AAGAB"	79719	"ENSG00000103591"
+"204631_at"	"MYH2"	4620	"ENSG00000125414"
+"200661_at"	"CTSA"	5476	"ENSG00000064601"
+"202637_s_at"	"ICAM1"	3383	"ENSG00000090339"
+"202638_s_at"	"ICAM1"	3383	"ENSG00000090339"
+"202193_at"	"LIMK2"	3985	"ENSG00000182541"
+"203491_s_at"	"CEP57"	9702	"ENSG00000166037"
+"203493_s_at"	"CEP57"	9702	"ENSG00000166037"
+"203492_x_at"	"CEP57"	9702	"ENSG00000166037"
+"203494_s_at"	"CEP57"	9702	"ENSG00000166037"
+"202477_s_at"	"TUBGCP2"	10844	"ENSG00000130640"
+"202476_s_at"	"TUBGCP2"	10844	"ENSG00000130640"
+"202371_at"	"TCEAL4"	79921	"ENSG00000133142"
+"204247_s_at"	"CDK5"	1020	"ENSG00000164885"
+"201968_s_at"	"PGM1"	5236	"ENSG00000079739"
+"205258_at"	"INHBB"	3625	"ENSG00000163083"
+"205034_at"	"CCNE2"	9134	"ENSG00000175305"
+"205437_at"	"ZNF211"	10520	"ENSG00000121417"
+"202255_s_at"	"SIPA1L1"	26037	"ENSG00000197555"
+"202254_at"	"SIPA1L1"	26037	"ENSG00000197555"
+"202471_s_at"	"IDH3G"	3421	"ENSG00000067829"
+"203925_at"	"GCLM"	2730	"ENSG00000023909"
+"202041_s_at"	"FIBP"	9158	"ENSG00000172500"
+"204324_s_at"	"GOLIM4"	27333	"ENSG00000173905"
+"204322_at"	"GOLIM4"	27333	"ENSG00000173905"
+"205418_at"	"FES"	2242	"ENSG00000182511"
+"204731_at"	"TGFBR3"	7049	"ENSG00000069702"
+"204540_at"	"EEF1A2"	1917	"ENSG00000101210"
+"201126_s_at"	"MGAT1"	4245	"ENSG00000131446"
+"201215_at"	"PLS3"	5358	"ENSG00000102024"
+"204610_s_at"	"CCDC85B"	11007	"ENSG00000175602"
+"204420_at"	"FOSL1"	8061	"ENSG00000175592"
+"203395_s_at"	"HES1"	3280	"ENSG00000114315"
+"204653_at"	"TFAP2A"	7020	"ENSG00000137203"
+"204654_s_at"	"TFAP2A"	7020	"ENSG00000137203"
+"201769_at"	"CLINT1"	9685	"ENSG00000113282"
+"201768_s_at"	"CLINT1"	9685	"ENSG00000113282"
+"202483_s_at"	"RANBP1"	5902	"ENSG00000099901"
+"202482_x_at"	"RANBP1"	5902	"ENSG00000099901"
+"203900_at"	"SZT2"	23334	"ENSG00000198198"
+"203258_at"	"DRAP1"	10589	"ENSG00000175550"
+"202100_at"	"RALB"	5899	"ENSG00000144118"
+"202101_s_at"	"RALB"	5899	"ENSG00000144118"
+"202686_s_at"	"AXL"	558	"ENSG00000167601"
+"202685_s_at"	"AXL"	558	"ENSG00000167601"
+"205092_x_at"	"ZBTB1"	22890	"ENSG00000126804"
+"200051_at"	"SART1"	9092	"ENSG00000175467"
+"200989_at"	"HIF1A"	3091	"ENSG00000100644"
+"202206_at"	"ARL4C"	10123	"ENSG00000188042"
+"202207_at"	"ARL4C"	10123	"ENSG00000188042"
+"202208_s_at"	"ARL4C"	10123	"ENSG00000188042"
+"205222_at"	"EHHADH"	1962	"ENSG00000113790"
+"203266_s_at"	"MAP2K4"	6416	"ENSG00000065559"
+"203265_s_at"	"MAP2K4"	6416	"ENSG00000065559"
+"205223_at"	"DEPDC5"	9681	"ENSG00000100150"
+"205443_at"	"SNAPC1"	6617	"ENSG00000023608"
+"202882_x_at"	"NOL7"	51406	"ENSG00000225921"
+"202583_s_at"	"RANBP9"	10048	"ENSG00000010017"
+"202582_s_at"	"RANBP9"	10048	"ENSG00000010017"
+"201767_s_at"	"ELAC2"	60528	"ENSG00000006744"
+"200946_x_at"	"GLUD1"	2746	"ENSG00000148672"
+"200947_s_at"	"GLUD1"	2746	"ENSG00000148672"
+"203768_s_at"	"STS"	412	"ENSG00000101846"
+"203767_s_at"	"STS"	412	"ENSG00000101846"
+"203770_s_at"	"STS"	412	"ENSG00000101846"
+"203769_s_at"	"STS"	412	"ENSG00000101846"
+"202227_s_at"	"BRD8"	10902	"ENSG00000112983"
+"200619_at"	"SF3B2"	10992	"ENSG00000087365"
+"205345_at"	"BARD1"	580	"ENSG00000138376"
+"204363_at"	"F3"	2152	"ENSG00000117525"
+"201032_at"	"BLCAP"	10904	"ENSG00000166619"
+"204239_s_at"	"NNAT"	4826	"ENSG00000053438"
+"203868_s_at"	"VCAM1"	7412	"ENSG00000162692"
+"201945_at"	"FURIN"	5045	"ENSG00000140564"
+"200901_s_at"	"M6PR"	4074	"ENSG00000003056"
+"200900_s_at"	"M6PR"	4074	"ENSG00000003056"
+"202418_at"	"YIF1A"	10897	"ENSG00000174851"
+"204698_at"	"ISG20"	3669	"ENSG00000172183"
+"200968_s_at"	"PPIB"	5479	"ENSG00000166794"
+"200967_at"	"PPIB"	5479	"ENSG00000166794"
+"203858_s_at"	"COX10"	1352	"ENSG00000006695"
+"203162_s_at"	"KATNB1"	10300	"ENSG00000140854"
+"203163_at"	"KATNB1"	10300	"ENSG00000140854"
+"204210_s_at"	"PCYT1A"	5130	"ENSG00000161217"
+"204209_at"	"PCYT1A"	5130	"ENSG00000161217"
+"205211_s_at"	"RIN1"	9610	"ENSG00000174791"
+"202393_s_at"	"KLF10"	7071	"ENSG00000155090"
+"202529_at"	"PRPSAP1"	5635	"ENSG00000161542"
+"202866_at"	"DNAJB12"	54788	"ENSG00000148719"
+"202865_at"	"DNAJB12"	54788	"ENSG00000148719"
+"202867_s_at"	"DNAJB12"	54788	"ENSG00000148719"
+"204974_at"	"RAB3A"	5864	"ENSG00000105649"
+"203188_at"	"B4GAT1"	11041	"ENSG00000174684"
+"204717_s_at"	"SLC29A2"	3177	"ENSG00000174669"
+"203751_x_at"	"JUND"	3727	"ENSG00000130522"
+"203752_s_at"	"JUND"	3727	"ENSG00000130522"
+"202737_s_at"	"LSM4"	25804	"ENSG00000130520"
+"202736_s_at"	"LSM4"	25804	"ENSG00000130520"
+"201580_s_at"	"TMX4"	56255	"ENSG00000125827"
+"201581_at"	"TMX4"	56255	"ENSG00000125827"
+"200964_at"	"UBA1"	7317	"ENSG00000130985"
+"202952_s_at"	"ADAM12"	8038	"ENSG00000148848"
+"204943_at"	"ADAM12"	8038	"ENSG00000148848"
+"201475_x_at"	"MARS1"	4141	"ENSG00000166986"
+"203140_at"	"BCL6"	604	"ENSG00000113916"
+"204767_s_at"	"FEN1"	2237	"ENSG00000168496"
+"204768_s_at"	"FEN1"	2237	"ENSG00000168496"
+"203566_s_at"	"AGL"	178	"ENSG00000162688"
+"202506_at"	"ITPRID2"	6744	"ENSG00000138434"
+"205198_s_at"	"ATP7A"	538	"ENSG00000165240"
+"205197_s_at"	"ATP7A"	538	"ENSG00000165240"
+"202247_s_at"	"MTA1"	9112	"ENSG00000182979"
+"202016_at"	"MEST"	4232	"ENSG00000106484"
+"202082_s_at"	"SEC14L1"	6397	"ENSG00000129657"
+"202084_s_at"	"SEC14L1"	6397	"ENSG00000129657"
+"202083_s_at"	"SEC14L1"	6397	"ENSG00000129657"
+"203739_at"	"ZNF217"	7764	"ENSG00000171940"
+"203541_s_at"	"KLF9"	687	"ENSG00000119138"
+"203542_s_at"	"KLF9"	687	"ENSG00000119138"
+"203543_s_at"	"KLF9"	687	"ENSG00000119138"
+"204257_at"	"FADS3"	3995	"ENSG00000221968"
+"203712_at"	"PUM3"	9933	"ENSG00000080608"
+"201376_s_at"	"HNRNPF"	3185	"ENSG00000169813"
+"205458_at"	"MC1R"	4157	"ENSG00000258839"
+"204921_at"	"GAS8"	2622	"ENSG00000141013"
+"204073_s_at"	"MYRF"	745	"ENSG00000124920"
+"203557_s_at"	"PCBD1"	5092	"ENSG00000166228"
+"203227_s_at"	"TSPAN31"	6302	"ENSG00000135452"
+"203226_s_at"	"TSPAN31"	6302	"ENSG00000135452"
+"205412_at"	"ACAT1"	38	"ENSG00000075239"
+"201995_at"	"EXT1"	2131	"ENSG00000182197"
+"204027_s_at"	"METTL1"	4234	"ENSG00000037897"
+"201263_at"	"TARS1"	6897	"ENSG00000113407"
+"200884_at"	"CKB"	1152	"ENSG00000166165"
+"201178_at"	"FBXO7"	25793	"ENSG00000100225"
+"202961_s_at"	"ATP5MF"	9551	"ENSG00000241468"
+"201150_s_at"	"TIMP3"	7078	"ENSG00000100234"
+"201148_s_at"	"TIMP3"	7078	"ENSG00000100234"
+"201149_s_at"	"TIMP3"	7078	"ENSG00000100234"
+"201147_s_at"	"TIMP3"	7078	"ENSG00000100234"
+"203349_s_at"	"ETV5"	2119	"ENSG00000244405"
+"203348_s_at"	"ETV5"	2119	"ENSG00000244405"
+"203699_s_at"	"DIO2"	1734	"ENSG00000211448"
+"203700_s_at"	"DIO2"	1734	"ENSG00000211448"
+"203485_at"	"RTN1"	6252	"ENSG00000139970"
+"205028_at"	"TRO"	7216	"ENSG00000067445"
+"202092_s_at"	"ARL2BP"	23568	"ENSG00000102931"
+"204590_x_at"	"VPS33A"	65082	"ENSG00000139719"
+"204600_at"	"EPHB3"	2049	"ENSG00000182580"
+"202947_s_at"	"GYPC"	2995	"ENSG00000136732"
+"200780_x_at"	"GNAS"	2778	"ENSG00000087460"
+"200981_x_at"	"GNAS"	2778	"ENSG00000087460"
+"203432_at"	"TMPO"	7112	"ENSG00000120802"
+"201849_at"	"BNIP3"	664	"ENSG00000176171"
+"203779_s_at"	"MPZL2"	10205	"ENSG00000149573"
+"203780_at"	"MPZL2"	10205	"ENSG00000149573"
+"204991_s_at"	"NF2"	4771	"ENSG00000186575"
+"204437_s_at"	"FOLR1"	2348	"ENSG00000110195"
+"201013_s_at"	"PAICS"	10606	"ENSG00000128050"
+"203211_s_at"	"MTMR2"	8898	"ENSG00000087053"
+"203212_s_at"	"MTMR2"	8898	"ENSG00000087053"
+"202248_at"	"E2F4"	1874	"ENSG00000205250"
+"204985_s_at"	"TRAPPC6A"	79090	"ENSG00000007255"
+"203971_at"	"SLC31A1"	1317	"ENSG00000136868"
+"200871_s_at"	"PSAP"	5660	"ENSG00000197746"
+"200866_s_at"	"PSAP"	5660	"ENSG00000197746"
+"201841_s_at"	"HSPB1"	3315	"ENSG00000106211"
+"205288_at"	"CDC14A"	8556	"ENSG00000079335"
+"203404_at"	"ARMCX2"	9823	"ENSG00000184867"
+"200801_x_at"	"ACTB"	60	"ENSG00000075624"
+"204251_s_at"	"CEP164"	22897	"ENSG00000110274"
+"204250_s_at"	"CEP164"	22897	"ENSG00000110274"
+"201554_x_at"	"GYG1"	2992	"ENSG00000163754"
+"201564_s_at"	"FSCN1"	6624	"ENSG00000075618"
+"204099_at"	"SMARCD3"	6604	"ENSG00000082014"
+"200957_s_at"	"SSRP1"	6749	"ENSG00000149136"
+"200956_s_at"	"SSRP1"	6749	"ENSG00000149136"
+"202983_at"	"HLTF"	6596	"ENSG00000071794"
+"204130_at"	"HSD11B2"	3291	"ENSG00000176387"
+"203416_at"	"CD53"	963	"ENSG00000143119"
+"203301_s_at"	"DMTF1"	9988	"ENSG00000135164"
+"202968_s_at"	"DYRK2"	8445	"ENSG00000127334"
+"202971_s_at"	"DYRK2"	8445	"ENSG00000127334"
+"202969_at"	"DYRK2"	8445	"ENSG00000127334"
+"202970_at"	"DYRK2"	8445	"ENSG00000127334"
+"201248_s_at"	"SREBF2"	6721	"ENSG00000198911"
+"201247_at"	"SREBF2"	6721	"ENSG00000198911"
+"203817_at"	"GUCY1B1"	2983	"ENSG00000061918"
+"204407_at"	"TTF2"	8458	"ENSG00000116830"
+"203874_s_at"	"SMARCA1"	6594	"ENSG00000102038"
+"203875_at"	"SMARCA1"	6594	"ENSG00000102038"
+"203611_at"	"TERF2"	7014	"ENSG00000132604"
+"200922_at"	"KDELR1"	10945	"ENSG00000105438"
+"201011_at"	"RPN1"	6184	"ENSG00000163902"
+"200022_at"	"RPL18"	6141	"ENSG00000063177"
+"203912_s_at"	"DNASE1L1"	1774	"ENSG00000013563"
+"202342_s_at"	"TRIM2"	23321	"ENSG00000109654"
+"202341_s_at"	"TRIM2"	23321	"ENSG00000109654"
+"201352_at"	"YME1L1"	10730	"ENSG00000136758"
+"201351_s_at"	"YME1L1"	10730	"ENSG00000136758"
+"200690_at"	"HSPA9"	3313	"ENSG00000113013"
+"200691_s_at"	"HSPA9"	3313	"ENSG00000113013"
+"200692_s_at"	"HSPA9"	3313	"ENSG00000113013"
+"203903_s_at"	"HEPH"	9843	"ENSG00000089472"
+"203902_at"	"HEPH"	9843	"ENSG00000089472"
+"203634_s_at"	"CPT1A"	1374	"ENSG00000110090"
+"203633_at"	"CPT1A"	1374	"ENSG00000110090"
+"203731_s_at"	"ZKSCAN5"	23660	"ENSG00000196652"
+"203730_s_at"	"ZKSCAN5"	23660	"ENSG00000196652"
+"205128_x_at"	"PTGS1"	5742	"ENSG00000095303"
+"205127_at"	"PTGS1"	5742	"ENSG00000095303"
+"203658_at"	"SLC25A20"	788	"ENSG00000178537"
+"203559_s_at"	"AOC1"	26	"ENSG00000002726"
+"202038_at"	"UBE4A"	9354	"ENSG00000110344"
+"202427_s_at"	"MPC2"	25874	"ENSG00000143158"
+"203951_at"	"CNN1"	1264	"ENSG00000130176"
+"204310_s_at"	"NPR2"	4882	"ENSG00000159899"
+"204643_s_at"	"ENOX2"	10495	"ENSG00000165675"
+"204644_at"	"ENOX2"	10495	"ENSG00000165675"
+"204141_at"	"TUBB2A"	7280	"ENSG00000137267"
+"203538_at"	"CAMLG"	819	"ENSG00000164615"
+"203513_at"	"SPG11"	80208	"ENSG00000104133"
+"202462_s_at"	"DDX46"	9879	"ENSG00000145833"
+"204230_s_at"	"SLC17A7"	57030	"ENSG00000104888"
+"204229_at"	"SLC17A7"	57030	"ENSG00000104888"
+"200770_s_at"	"LAMC1"	3915	"ENSG00000135862"
+"200771_at"	"LAMC1"	3915	"ENSG00000135862"
+"204525_at"	"PHF14"	9678	"ENSG00000106443"
+"201403_s_at"	"MGST3"	4259	"ENSG00000143198"
+"201439_at"	"GBF1"	8729	"ENSG00000107862"
+"202793_at"	"LPCAT3"	10162	"ENSG00000111684"
+"203454_s_at"	"ATOX1"	475	"ENSG00000177556"
+"203112_s_at"	"NELFA"	7469	"ENSG00000185049"
+"200052_s_at"	"ILF2"	3608	"ENSG00000143621"
+"203843_at"	"RPS6KA3"	6197	"ENSG00000177189"
+"204705_x_at"	"ALDOB"	229	"ENSG00000136872"
+"204704_s_at"	"ALDOB"	229	"ENSG00000136872"
+"202606_s_at"	"TLK1"	9874	"ENSG00000198586"
+"203495_at"	"LRRC14"	9684	"ENSG00000160959"
+"205199_at"	"CA9"	768	"ENSG00000107159"
+"200031_s_at"	"RPS11"	6205	"ENSG00000142534"
+"201505_at"	"LAMB1"	3912	"ENSG00000091136"
+"201045_s_at"	"RAB6A"	5870	"ENSG00000175582"
+"201048_x_at"	"RAB6A"	5870	"ENSG00000175582"
+"204298_s_at"	"LOX"	4015	"ENSG00000113083"
+"205010_at"	"GNL3L"	54552	"ENSG00000130119"
+"201592_at"	"EIF3H"	8667	"ENSG00000147677"
+"204503_at"	"EVPL"	2125	"ENSG00000167880"
+"201832_s_at"	"USO1"	8615	"ENSG00000138768"
+"201831_s_at"	"USO1"	8615	"ENSG00000138768"
+"204206_at"	"MNT"	4335	"ENSG00000070444"
+"203333_at"	"KIFAP3"	22920	"ENSG00000075945"
+"205208_at"	"ALDH1L1"	10840	"ENSG00000144908"
+"200961_at"	"SEPHS2"	22928	"ENSG00000179918"
+"200813_s_at"	"PAFAH1B1"	5048	"ENSG00000007168"
+"200816_s_at"	"PAFAH1B1"	5048	"ENSG00000007168"
+"200815_s_at"	"PAFAH1B1"	5048	"ENSG00000007168"
+"202621_at"	"IRF3"	3661	"ENSG00000126456"
+"204118_at"	"CD48"	962	"ENSG00000117091"
+"203653_s_at"	"COIL"	8161	"ENSG00000121058"
+"203654_s_at"	"COIL"	8161	"ENSG00000121058"
+"201731_s_at"	"TPR"	7175	"ENSG00000047410"
+"201730_s_at"	"TPR"	7175	"ENSG00000047410"
+"202862_at"	"FAH"	2184	"ENSG00000103876"
+"201955_at"	"CCNC"	892	"ENSG00000112237"
+"201674_s_at"	"AKAP1"	8165	"ENSG00000121057"
+"201675_at"	"AKAP1"	8165	"ENSG00000121057"
+"203575_at"	"CSNK2A2"	1459	"ENSG00000070770"
+"201462_at"	"SCRN1"	9805	"ENSG00000136193"
+"203295_s_at"	"ATP1A2"	477	"ENSG00000018625"
+"203296_s_at"	"ATP1A2"	477	"ENSG00000018625"
+"201792_at"	"AEBP1"	165	"ENSG00000106624"
+"203270_at"	"DTYMK"	1841	"ENSG00000168393"
+"204038_s_at"	"LPAR1"	1902	"ENSG00000198121"
+"204037_at"	"LPAR1"	1902	"ENSG00000198121"
+"204036_at"	"LPAR1"	1902	"ENSG00000198121"
+"203625_x_at"	"SKP2"	6502	"ENSG00000145604"
+"203626_s_at"	"SKP2"	6502	"ENSG00000145604"
+"203799_at"	"CD302"	9936	"ENSG00000241399"
+"203741_s_at"	"ADCY7"	113	"ENSG00000121281"
+"204889_s_at"	"NEURL1"	9148	"ENSG00000107954"
+"204888_s_at"	"NEURL1"	9148	"ENSG00000107954"
+"204761_at"	"USP6NL"	9712	"ENSG00000148429"
+"201042_at"	"TGM2"	7052	"ENSG00000198959"
+"204729_s_at"	"STX1A"	6804	"ENSG00000106089"
+"202566_s_at"	"SVIL"	6840	"ENSG00000197321"
+"202565_s_at"	"SVIL"	6840	"ENSG00000197321"
+"202171_at"	"VEZF1"	7716	"ENSG00000136451"
+"202172_at"	"VEZF1"	7716	"ENSG00000136451"
+"204516_at"	"ATXN7"	6314	"ENSG00000163635"
+"201741_x_at"	"SRSF1"	6426	"ENSG00000136450"
+"205406_s_at"	"SPA17"	53340	"ENSG00000064199"
+"202550_s_at"	"VAPB"	9217	"ENSG00000124164"
+"202549_at"	"VAPB"	9217	"ENSG00000124164"
+"204507_s_at"	"PPP3R1"	5534	"ENSG00000221823"
+"204506_at"	"PPP3R1"	5534	"ENSG00000221823"
+"203922_s_at"	"CYBB"	1536	"ENSG00000165168"
+"203923_s_at"	"CYBB"	1536	"ENSG00000165168"
+"201514_s_at"	"G3BP1"	10146	"ENSG00000145907"
+"201503_at"	"G3BP1"	10146	"ENSG00000145907"
+"203643_at"	"ERF"	2077	"ENSG00000105722"
+"201744_s_at"	"LUM"	4060	"ENSG00000139329"
+"203954_x_at"	"CLDN3"	1365	"ENSG00000165215"
+"203953_s_at"	"CLDN3"	1365	"ENSG00000165215"
+"201893_x_at"	"DCN"	1634	"ENSG00000011465"
+"202864_s_at"	"SP100"	6672	"ENSG00000067066"
+"202863_at"	"SP100"	6672	"ENSG00000067066"
+"202237_at"	"NNMT"	4837	"ENSG00000166741"
+"202238_s_at"	"NNMT"	4837	"ENSG00000166741"
+"201359_at"	"COPB1"	1315	"ENSG00000129083"
+"201358_s_at"	"COPB1"	1315	"ENSG00000129083"
+"201765_s_at"	"HEXA"	3073	"ENSG00000213614"
+"200703_at"	"DYNLL1"	8655	"ENSG00000088986"
+"201851_at"	"SH3GL1"	6455	"ENSG00000141985"
+"202267_at"	"LAMC2"	3918	"ENSG00000058085"
+"205112_at"	"PLCE1"	51196	"ENSG00000138193"
+"205111_s_at"	"PLCE1"	51196	"ENSG00000138193"
+"204839_at"	"POP5"	51367	"ENSG00000167272"
+"201121_s_at"	"PGRMC1"	10857	"ENSG00000101856"
+"201120_s_at"	"PGRMC1"	10857	"ENSG00000101856"
+"203975_s_at"	"CHAF1A"	10036	"ENSG00000167670"
+"203976_s_at"	"CHAF1A"	10036	"ENSG00000167670"
+"200657_at"	"SLC25A5"	292	"ENSG00000005022"
+"205173_x_at"	"CD58"	965	"ENSG00000116815"
+"201899_s_at"	"UBE2A"	7319	"ENSG00000077721"
+"201898_s_at"	"UBE2A"	7319	"ENSG00000077721"
+"200607_s_at"	"RAD21"	5885	"ENSG00000164754"
+"200608_s_at"	"RAD21"	5885	"ENSG00000164754"
+"201373_at"	"PLEC"	5339	"ENSG00000178209"
+"202162_s_at"	"CNOT8"	9337	"ENSG00000155508"
+"202164_s_at"	"CNOT8"	9337	"ENSG00000155508"
+"202163_s_at"	"CNOT8"	9337	"ENSG00000155508"
+"203747_at"	"AQP3"	360	"ENSG00000165272"
+"201307_at"	"SEPTIN11"	55752	"ENSG00000138758"
+"201308_s_at"	"SEPTIN11"	55752	"ENSG00000138758"
+"202731_at"	"PDCD4"	27250	"ENSG00000150593"
+"202730_s_at"	"PDCD4"	27250	"ENSG00000150593"
+"200979_at"	"PDHA1"	5160	"ENSG00000131828"
+"200980_s_at"	"PDHA1"	5160	"ENSG00000131828"
+"200734_s_at"	"ARF3"	377	"ENSG00000134287"
+"200011_s_at"	"ARF3"	377	"ENSG00000134287"
+"204413_at"	"TRAF2"	7186	"ENSG00000127191"
+"200631_s_at"	"SET"	6418	"ENSG00000119335"
+"200630_x_at"	"SET"	6418	"ENSG00000119335"
+"201221_s_at"	"SNRNP70"	6625	"ENSG00000104852"
+"202777_at"	"SHOC2"	8036	"ENSG00000108061"
+"200830_at"	"PSMD2"	5708	"ENSG00000175166"
+"200791_s_at"	"IQGAP1"	8826	"ENSG00000140575"
+"204604_at"	"CDK14"	5218	"ENSG00000058091"
+"203218_at"	"MAPK9"	5601	"ENSG00000050748"
+"204630_s_at"	"GOSR1"	9527	"ENSG00000108587"
+"202275_at"	"G6PD"	2539	"ENSG00000160211"
+"204070_at"	"PLAAT4"	5920	"ENSG00000133321"
+"204452_s_at"	"FZD1"	8321	"ENSG00000157240"
+"204451_at"	"FZD1"	8321	"ENSG00000157240"
+"203065_s_at"	"CAV1"	857	"ENSG00000105974"
+"202826_at"	"SPINT1"	6692	"ENSG00000166145"
+"202813_at"	"TARBP1"	6894	"ENSG00000059588"
+"203547_at"	"CD4"	920	"ENSG00000010610"
+"204702_s_at"	"NFE2L3"	9603	"ENSG00000050344"
+"201091_s_at"	"CBX3"	11335	"ENSG00000122565"
+"200037_s_at"	"CBX3"	11335	"ENSG00000122565"
+"202574_s_at"	"CSNK1G2"	1455	"ENSG00000133275"
+"202573_at"	"CSNK1G2"	1455	"ENSG00000133275"
+"202140_s_at"	"CLK3"	1198	"ENSG00000179335"
+"205299_s_at"	"BTN2A2"	10385	"ENSG00000124508"
+"205298_s_at"	"BTN2A2"	10385	"ENSG00000124508"
+"205056_s_at"	"GPR162"	27239	"ENSG00000250510"
+"204559_s_at"	"LSM7"	51690	"ENSG00000130332"
+"202761_s_at"	"SYNE2"	23224	"ENSG00000054654"
+"204116_at"	"IL2RG"	3561	"ENSG00000147168"
+"204854_at"	"P3H3"	10536	"ENSG00000110811"
+"201826_s_at"	"SCCPDH"	51097	"ENSG00000143653"
+"201825_s_at"	"SCCPDH"	51097	"ENSG00000143653"
+"203918_at"	"PCDH1"	5097	"ENSG00000156453"
+"200600_at"	"MSN"	4478	"ENSG00000147065"
+"202278_s_at"	"SPTLC1"	10558	"ENSG00000090054"
+"202277_at"	"SPTLC1"	10558	"ENSG00000090054"
+"205285_s_at"	"FYB1"	2533	"ENSG00000082074"
+"204976_s_at"	"AMMECR1"	9949	"ENSG00000101935"
+"201479_at"	"DKC1"	1736	"ENSG00000130826"
+"201478_s_at"	"DKC1"	1736	"ENSG00000130826"
+"204821_at"	"BTN3A3"	10384	"ENSG00000111801"
+"201875_s_at"	"MPZL1"	9019	"ENSG00000197965"
+"201874_at"	"MPZL1"	9019	"ENSG00000197965"
+"204357_s_at"	"LIMK1"	3984	"ENSG00000106683"
+"202329_at"	"CSK"	1445	"ENSG00000103653"
+"203428_s_at"	"ASF1A"	25842	"ENSG00000111875"
+"203427_at"	"ASF1A"	25842	"ENSG00000111875"
+"201067_at"	"PSMC2"	5701	"ENSG00000161057"
+"201068_s_at"	"PSMC2"	5701	"ENSG00000161057"
+"202839_s_at"	"NDUFB7"	4713	"ENSG00000099795"
+"201313_at"	"ENO2"	2026	"ENSG00000111674"
+"204573_at"	"CROT"	54677	"ENSG00000005469"
+"204256_at"	"ELOVL6"	79071	"ENSG00000170522"
+"203738_at"	"C5orf22"	55322	"ENSG00000082213"
+"202733_at"	"P4HA2"	8974	"ENSG00000072682"
+"203271_s_at"	"UNC119"	9094	"ENSG00000109103"
+"200845_s_at"	"PRDX6"	9588	"ENSG00000117592"
+"200844_s_at"	"PRDX6"	9588	"ENSG00000117592"
+"202022_at"	"ALDOC"	230	"ENSG00000109107"
+"201864_at"	"GDI1"	2664	"ENSG00000203879"
+"200664_s_at"	"DNAJB1"	3337	"ENSG00000132002"
+"200666_s_at"	"DNAJB1"	3337	"ENSG00000132002"
+"201254_x_at"	"RPS6"	6194	"ENSG00000137154"
+"202622_s_at"	"ATXN2"	6311	"ENSG00000204842"
+"202306_at"	"POLR2G"	5436	"ENSG00000168002"
+"203145_at"	"SPAG5"	10615	"ENSG00000076382"
+"203013_at"	"ECD"	11319	"ENSG00000122882"
+"203517_at"	"MTX2"	10651	"ENSG00000128654"
+"203090_at"	"SDF2"	6388	"ENSG00000132581"
+"204563_at"	"SELL"	6402	"ENSG00000188404"
+"202539_s_at"	"HMGCR"	3156	"ENSG00000113161"
+"202540_s_at"	"HMGCR"	3156	"ENSG00000113161"
+"204511_at"	"FARP2"	9855	"ENSG00000006607"
+"201366_at"	"ANXA7"	310	"ENSG00000138279"
+"203814_s_at"	"NQO2"	4835	"ENSG00000124588"
+"203092_at"	"TIMM44"	10469	"ENSG00000104980"
+"203093_s_at"	"TIMM44"	10469	"ENSG00000104980"
+"205215_at"	"RNF2"	6045	"ENSG00000121481"
+"202824_s_at"	"ELOC"	6921	"ENSG00000154582"
+"202823_at"	"ELOC"	6921	"ENSG00000154582"
+"202157_s_at"	"CELF2"	10659	"ENSG00000048740"
+"202156_s_at"	"CELF2"	10659	"ENSG00000048740"
+"202158_s_at"	"CELF2"	10659	"ENSG00000048740"
+"203754_s_at"	"BRF1"	2972	"ENSG00000185024"
+"203083_at"	"THBS2"	7058	"ENSG00000186340"
+"205089_at"	"ZNF7"	7553	"ENSG00000147789"
+"202670_at"	"MAP2K1"	5604	"ENSG00000169032"
+"201362_at"	"IVNS1ABP"	10625	"ENSG00000116679"
+"201363_s_at"	"IVNS1ABP"	10625	"ENSG00000116679"
+"204528_s_at"	"NAP1L1"	4673	"ENSG00000187109"
+"203934_at"	"KDR"	3791	"ENSG00000128052"
+"204114_at"	"NID2"	22795	"ENSG00000087303"
+"202653_s_at"	"MARCHF7"	64844	"ENSG00000136536"
+"202654_x_at"	"MARCHF7"	64844	"ENSG00000136536"
+"201154_x_at"	"RPL4"	6124	"ENSG00000174444"
+"202127_at"	"PRPF4B"	8899	"ENSG00000112739"
+"202126_at"	"PRPF4B"	8899	"ENSG00000112739"
+"204834_at"	"FGL2"	10875	"ENSG00000127951"
+"203718_at"	"PNPLA6"	10908	"ENSG00000032444"
+"202025_x_at"	"ACAA1"	30	"ENSG00000060971"
+"201314_at"	"STK25"	10494	"ENSG00000115694"
+"203696_s_at"	"RFC2"	5982	"ENSG00000049541"
+"200846_s_at"	"PPP1CA"	5499	"ENSG00000172531"
+"202384_s_at"	"TCOF1"	6949	"ENSG00000070814"
+"202385_s_at"	"TCOF1"	6949	"ENSG00000070814"
+"202007_at"	"NID1"	4811	"ENSG00000116962"
+"202008_s_at"	"NID1"	4811	"ENSG00000116962"
+"201426_s_at"	"VIM"	7431	"ENSG00000026025"
+"203777_s_at"	"RPS6KB2"	6199	"ENSG00000175634"
+"202189_x_at"	"PTBP1"	5725	"ENSG00000011304"
+"204227_s_at"	"TK2"	7084	"ENSG00000166548"
+"204277_s_at"	"TK2"	7084	"ENSG00000166548"
+"204276_at"	"TK2"	7084	"ENSG00000166548"
+"204926_at"	"INHBA"	3624	"ENSG00000122641"
+"200952_s_at"	"CCND2"	894	"ENSG00000118971"
+"200953_s_at"	"CCND2"	894	"ENSG00000118971"
+"200951_s_at"	"CCND2"	894	"ENSG00000118971"
+"204903_x_at"	"ATG4B"	23192	"ENSG00000168397"
+"204902_s_at"	"ATG4B"	23192	"ENSG00000168397"
+"205415_s_at"	"ATXN3"	4287	"ENSG00000066427"
+"205416_s_at"	"ATXN3"	4287	"ENSG00000066427"
+"202265_at"	"BMI1"	648	"ENSG00000168283"
+"204574_s_at"	"MMP19"	4327	"ENSG00000123342"
+"204575_s_at"	"MMP19"	4327	"ENSG00000123342"
+"202800_at"	"SLC1A3"	6507	"ENSG00000079215"
+"203385_at"	"DGKA"	1606	"ENSG00000065357"
+"200620_at"	"TMEM59"	9528	"ENSG00000116209"
+"200917_s_at"	"SRPRA"	6734	"ENSG00000182934"
+"200918_s_at"	"SRPRA"	6734	"ENSG00000182934"
+"201451_x_at"	"LINC02637"	NA	"ENSG00000272430"
+"201572_x_at"	"DCTD"	1635	"ENSG00000129187"
+"201571_s_at"	"DCTD"	1635	"ENSG00000129187"
+"202892_at"	"CDC23"	8697	"ENSG00000094880"
+"201304_at"	"NDUFA5"	4698	"ENSG00000128609"
+"205167_s_at"	"CDC25C"	995	"ENSG00000158402"
+"200026_at"	"RPL34"	6164	"ENSG00000109475"
+"203759_at"	"ST3GAL4"	6484	"ENSG00000110080"
+"205400_at"	"WAS"	7454	"ENSG00000015285"
+"204641_at"	"NEK2"	4751	"ENSG00000117650"
+"203051_at"	"BAHD1"	22893	"ENSG00000140320"
+"202465_at"	"PCOLCE"	5118	"ENSG00000106333"
+"203682_s_at"	"IVD"	3712	"ENSG00000128928"
+"200795_at"	"SPARCL1"	8404	"ENSG00000152583"
+"203581_at"	"RAB4A"	5867	"ENSG00000168118"
+"203582_s_at"	"RAB4A"	5867	"ENSG00000168118"
+"201693_s_at"	"EGR1"	1958	"ENSG00000120738"
+"201694_s_at"	"EGR1"	1958	"ENSG00000120738"
+"204527_at"	"MYO5A"	4644	"ENSG00000197535"
+"200662_s_at"	"TOMM20"	9804	"ENSG00000173726"
+"202024_at"	"GET3"	439	"ENSG00000198356"
+"201473_at"	"JUNB"	3726	"ENSG00000171223"
+"200852_x_at"	"GNB2"	2783	"ENSG00000172354"
+"202420_s_at"	"DHX9"	1660	"ENSG00000135829"
+"203938_s_at"	"TAF1C"	9013	"ENSG00000103168"
+"203937_s_at"	"TAF1C"	9013	"ENSG00000103168"
+"203238_s_at"	"NOTCH3"	4854	"ENSG00000074181"
+"205256_at"	"ZBTB39"	9880	"ENSG00000166860"
+"200778_s_at"	"SEPTIN2"	4735	"ENSG00000168385"
+"200015_s_at"	"SEPTIN2"	4735	"ENSG00000168385"
+"203514_at"	"MAP3K3"	4215	"ENSG00000198909"
+"203980_at"	"FABP4"	2167	"ENSG00000170323"
+"204185_x_at"	"PPID"	5481	"ENSG00000171497"
+"204186_s_at"	"PPID"	5481	"ENSG00000171497"
+"202060_at"	"CTR9"	9646	"ENSG00000198730"
+"203011_at"	"IMPA1"	3612	"ENSG00000133731"
+"203688_at"	"PKD2"	5311	"ENSG00000118762"
+"202531_at"	"IRF1"	3659	"ENSG00000125347"
+"205066_s_at"	"ENPP1"	5167	"ENSG00000197594"
+"205065_at"	"ENPP1"	5167	"ENSG00000197594"
+"200865_at"	"EIF3F"	8665	"ENSG00000175390"
+"203563_at"	"AFAP1"	60312	"ENSG00000196526"
+"204442_x_at"	"LTBP4"	8425	"ENSG00000090006"
+"202894_at"	"EPHB4"	2050	"ENSG00000196411"
+"204001_at"	"SNAPC3"	6619	"ENSG00000164975"
+"201331_s_at"	"STAT6"	6778	"ENSG00000166888"
+"201332_s_at"	"STAT6"	6778	"ENSG00000166888"
+"204405_x_at"	"DIMT1"	27292	"ENSG00000086189"
+"203193_at"	"ESRRA"	2101	"ENSG00000173153"
+"201956_s_at"	"GNPAT"	8443	"ENSG00000116906"
+"202893_at"	"UNC13B"	10497	"ENSG00000198722"
+"201487_at"	"CTSC"	1075	"ENSG00000109861"
+"201680_x_at"	"SRRT"	51593	"ENSG00000087087"
+"201679_at"	"SRRT"	51593	"ENSG00000087087"
+"200766_at"	"CTSD"	1509	"ENSG00000117984"
+"202666_s_at"	"ACTL6A"	86	"ENSG00000136518"
+"203778_at"	"MANBA"	4126	"ENSG00000109323"
+"203256_at"	"CDH3"	1001	"ENSG00000062038"
+"200668_s_at"	"UBE2D3"	7323	"ENSG00000109332"
+"200669_s_at"	"UBE2D3"	7323	"ENSG00000109332"
+"200667_at"	"UBE2D3"	7323	"ENSG00000109332"
+"201169_s_at"	"BHLHE40"	8553	"ENSG00000134107"
+"201170_s_at"	"BHLHE40"	8553	"ENSG00000134107"
+"201130_s_at"	"CDH1"	999	"ENSG00000039068"
+"201131_s_at"	"CDH1"	999	"ENSG00000039068"
+"202986_at"	"ARNT2"	9915	"ENSG00000172379"
+"204615_x_at"	"IDI1"	3422	"ENSG00000067064"
+"203279_at"	"EDEM1"	9695	"ENSG00000134109"
+"204291_at"	"ZNF518A"	9849	"ENSG00000177853"
+"205184_at"	"GNG4"	2786	"ENSG00000168243"
+"200700_s_at"	"KDELR2"	11014	"ENSG00000136240"
+"200698_at"	"KDELR2"	11014	"ENSG00000136240"
+"200699_at"	"KDELR2"	11014	"ENSG00000136240"
+"204505_s_at"	"DMTN"	2039	"ENSG00000158856"
+"202111_at"	"SLC4A2"	6522	"ENSG00000164889"
+"203955_at"	"PPP1R26"	9858	"ENSG00000196422"
+"205154_at"	"LRRN2"	10446	"ENSG00000170382"
+"202187_s_at"	"PPP2R5A"	5525	"ENSG00000066027"
+"202186_x_at"	"PPP2R5A"	5525	"ENSG00000066027"
+"205312_at"	"SPI1"	6688	"ENSG00000066336"
+"204122_at"	"TYROBP"	7305	"ENSG00000011600"
+"202155_s_at"	"NUP214"	8021	"ENSG00000126883"
+"205078_at"	"PIGF"	5281	"ENSG00000151665"
+"204255_s_at"	"VDR"	7421	"ENSG00000111424"
+"204253_s_at"	"VDR"	7421	"ENSG00000111424"
+"204254_s_at"	"VDR"	7421	"ENSG00000111424"
+"201740_at"	"NDUFS3"	4722	"ENSG00000213619"
+"202815_s_at"	"HEXIM1"	10614	"ENSG00000186834"
+"202814_s_at"	"HEXIM1"	10614	"ENSG00000186834"
+"201764_at"	"TMEM106C"	79022	"ENSG00000134291"
+"201157_s_at"	"NMT1"	4836	"ENSG00000136448"
+"201159_s_at"	"NMT1"	4836	"ENSG00000136448"
+"201158_at"	"NMT1"	4836	"ENSG00000136448"
+"201264_at"	"COPE"	11316	"ENSG00000105669"
+"204182_s_at"	"ZBTB43"	23099	"ENSG00000169155"
+"204181_s_at"	"ZBTB43"	23099	"ENSG00000169155"
+"204180_s_at"	"ZBTB43"	23099	"ENSG00000169155"
+"200861_at"	"CNOT1"	23019	"ENSG00000125107"
+"200860_s_at"	"CNOT1"	23019	"ENSG00000125107"
+"201527_at"	"ATP6V1F"	9296	"ENSG00000128524"
+"203657_s_at"	"CTSF"	8722	"ENSG00000174080"
+"204168_at"	"MGST2"	4258	"ENSG00000085871"
+"205201_at"	"GLI3"	2737	"ENSG00000106571"
+"205105_at"	"MAN2A1"	4124	"ENSG00000112893"
+"202541_at"	"AIMP1"	9255	"ENSG00000164022"
+"202542_s_at"	"AIMP1"	9255	"ENSG00000164022"
+"204647_at"	"HOMER3"	9454	"ENSG00000051128"
+"203231_s_at"	"ATXN1"	6310	"ENSG00000124788"
+"203232_s_at"	"ATXN1"	6310	"ENSG00000124788"
+"203439_s_at"	"STC2"	8614	"ENSG00000113739"
+"203438_at"	"STC2"	8614	"ENSG00000113739"
+"204426_at"	"TMED2"	10959	"ENSG00000086598"
+"204427_s_at"	"TMED2"	10959	"ENSG00000086598"
+"200087_s_at"	"TMED2"	10959	"ENSG00000086598"
+"204650_s_at"	"APBB3"	10307	"ENSG00000113108"
+"205429_s_at"	"PALS2"	51678	"ENSG00000105926"
+"203612_at"	"BYSL"	705	"ENSG00000112578"
+"203085_s_at"	"TGFB1"	7040	"ENSG00000105329"
+"203084_at"	"TGFB1"	7040	"ENSG00000105329"
+"200707_at"	"PRKCSH"	5589	"ENSG00000130175"
+"201700_at"	"CCND3"	896	"ENSG00000112576"
+"201632_at"	"EIF2B1"	1967	"ENSG00000111361"
+"204394_at"	"SLC43A1"	8501	"ENSG00000149150"
+"203341_at"	"CEBPZ"	10153	"ENSG00000115816"
+"201649_at"	"UBE2L6"	9246	"ENSG00000156587"
+"204107_at"	"NFYA"	4800	"ENSG00000001167"
+"204108_at"	"NFYA"	4800	"ENSG00000001167"
+"204109_s_at"	"NFYA"	4800	"ENSG00000001167"
+"201175_at"	"TMX2"	51075	"ENSG00000213593"
+"200986_at"	"SERPING1"	710	"ENSG00000149131"
+"201396_s_at"	"SGTA"	6449	"ENSG00000104969"
+"201587_s_at"	"IRAK1"	3654	"ENSG00000184216"
+"205174_s_at"	"QPCT"	25797	"ENSG00000115828"
+"200708_at"	"GOT2"	2806	"ENSG00000125166"
+"200926_at"	"RPS23"	6228	"ENSG00000186468"
+"201365_at"	"OAZ2"	4947	"ENSG00000180304"
+"201364_s_at"	"OAZ2"	4947	"ENSG00000180304"
+"201035_s_at"	"HADH"	3033	"ENSG00000138796"
+"201036_s_at"	"HADH"	3033	"ENSG00000138796"
+"203235_at"	"THOP1"	7064	"ENSG00000172009"
+"201092_at"	"RBBP7"	5931	"ENSG00000102054"
+"201434_at"	"TTC1"	7265	"ENSG00000113312"
+"203915_at"	"CXCL9"	4283	"ENSG00000138755"
+"204533_at"	"CXCL10"	3627	"ENSG00000169245"
+"203735_x_at"	"PPFIBP1"	8496	"ENSG00000110841"
+"203736_s_at"	"PPFIBP1"	8496	"ENSG00000110841"
+"202417_at"	"KEAP1"	9817	"ENSG00000079999"
+"201939_at"	"PLK2"	10769	"ENSG00000145632"
+"202831_at"	"GPX2"	2877	"ENSG00000176153"
+"200655_s_at"	"CALM1"	801	"ENSG00000198668"
+"200653_s_at"	"CALM1"	801	"ENSG00000198668"
+"202623_at"	"EAPP"	55837	"ENSG00000129518"
+"200029_at"	"RPL19"	6143	"ENSG00000108298"
+"204425_at"	"ARHGAP4"	393	"ENSG00000089820"
+"202908_at"	"WFS1"	7466	"ENSG00000109501"
+"200706_s_at"	"LITAF"	9516	"ENSG00000189067"
+"200704_at"	"LITAF"	9516	"ENSG00000189067"
+"205250_s_at"	"CEP290"	80184	"ENSG00000198707"
+"203025_at"	"NAA10"	8260	"ENSG00000102030"
+"203679_at"	"TMED1"	11018	"ENSG00000099203"
+"201924_at"	"AFF1"	4299	"ENSG00000172493"
+"202074_s_at"	"OPTN"	10133	"ENSG00000123240"
+"202073_at"	"OPTN"	10133	"ENSG00000123240"
+"202184_s_at"	"NUP133"	55746	"ENSG00000069248"
+"204055_s_at"	"MIA2"	4253	"ENSG00000150527"
+"204975_at"	"EMP2"	2013	"ENSG00000213853"
+"203388_at"	"ARRB2"	409	"ENSG00000141480"
+"202988_s_at"	"RGS1"	5996	"ENSG00000090104"
+"203589_s_at"	"TFDP2"	7029	"ENSG00000114126"
+"203588_s_at"	"TFDP2"	7029	"ENSG00000114126"
+"201953_at"	"CIB1"	10519	"ENSG00000185043"
+"202389_s_at"	"HTT"	3064	"ENSG00000197386"
+"202112_at"	"VWF"	7450	"ENSG00000110799"
+"200786_at"	"PSMB7"	5695	"ENSG00000136930"
+"203335_at"	"PHYH"	5264	"ENSG00000107537"
+"200069_at"	"SART3"	9733	"ENSG00000075856"
+"205125_at"	"PLCD1"	5333	"ENSG00000187091"
+"202617_s_at"	"MECP2"	4204	"ENSG00000169057"
+"202616_s_at"	"MECP2"	4204	"ENSG00000169057"
+"202618_s_at"	"MECP2"	4204	"ENSG00000169057"
+"202359_s_at"	"SNX19"	399979	"ENSG00000120451"
+"202358_s_at"	"SNX19"	399979	"ENSG00000120451"
+"205162_at"	"ERCC8"	1161	"ENSG00000049167"
+"202210_x_at"	"GSK3A"	2931	"ENSG00000105723"
+"204780_s_at"	"FAS"	355	"ENSG00000026103"
+"204781_s_at"	"FAS"	355	"ENSG00000026103"
+"203564_at"	"FANCG"	2189	"ENSG00000221829"
+"202753_at"	"PSMD6"	9861	"ENSG00000163636"
+"203683_s_at"	"VEGFB"	7423	"ENSG00000173511"
+"202890_at"	"MAP7"	9053	"ENSG00000135525"
+"202889_x_at"	"MAP7"	9053	"ENSG00000135525"
+"201325_s_at"	"EMP1"	2012	"ENSG00000134531"
+"201324_at"	"EMP1"	2012	"ENSG00000134531"
+"201413_at"	"HSD17B4"	3295	"ENSG00000133835"
+"205378_s_at"	"ACHE"	43	"ENSG00000087085"
+"205377_s_at"	"ACHE"	43	"ENSG00000087085"
+"204024_at"	"OSGIN2"	734	"ENSG00000164823"
+"202447_at"	"DECR1"	1666	"ENSG00000104325"
+"203881_s_at"	"DMD"	1756	"ENSG00000198947"
+"202367_at"	"CUX1"	1523	"ENSG00000257923"
+"205310_at"	"FBXO46"	23403	"ENSG00000177051"
+"202132_at"	"WWTR1"	25937	"ENSG00000018408"
+"202134_s_at"	"WWTR1"	25937	"ENSG00000018408"
+"202133_at"	"WWTR1"	25937	"ENSG00000018408"
+"202905_x_at"	"NBN"	4683	"ENSG00000104320"
+"202906_s_at"	"NBN"	4683	"ENSG00000104320"
+"202907_s_at"	"NBN"	4683	"ENSG00000104320"
+"205242_at"	"CXCL13"	10563	"ENSG00000156234"
+"204360_s_at"	"NAGLU"	4669	"ENSG00000108784"
+"203939_at"	"NT5E"	4907	"ENSG00000135318"
+"201913_s_at"	"COASY"	80347	"ENSG00000068120"
+"204289_at"	"ALDH6A1"	4329	"ENSG00000119711"
+"204290_s_at"	"ALDH6A1"	4329	"ENSG00000119711"
+"202464_s_at"	"PFKFB3"	5209	"ENSG00000170525"
+"200021_at"	"CFL1"	1072	"ENSG00000172757"
+"203981_s_at"	"ABCD4"	5826	"ENSG00000119688"
+"203982_s_at"	"ABCD4"	5826	"ENSG00000119688"
+"204956_at"	"MTAP"	4507	"ENSG00000099810"
+"203413_at"	"NELL2"	4753	"ENSG00000184613"
+"203894_at"	"TUBG2"	27175	"ENSG00000037042"
+"204676_at"	"TMEM186"	25880	"ENSG00000184857"
+"202338_at"	"TK1"	7083	"ENSG00000167900"
+"203973_s_at"	"CEBPD"	1052	"ENSG00000221869"
+"203228_at"	"PAFAH1B3"	5050	"ENSG00000079462"
+"202095_s_at"	"BIRC5"	332	"ENSG00000089685"
+"202094_at"	"BIRC5"	332	"ENSG00000089685"
+"204599_s_at"	"MRPL28"	10573	"ENSG00000086504"
+"200050_at"	"ZNF146"	7705	"ENSG00000167635"
+"204091_at"	"PDE6D"	5147	"ENSG00000156973"
+"201030_x_at"	"LDHB"	3945	"ENSG00000111716"
+"203311_s_at"	"ARF6"	382	"ENSG00000165527"
+"203312_x_at"	"ARF6"	382	"ENSG00000165527"
+"201486_at"	"RCN2"	5955	"ENSG00000117906"
+"201485_s_at"	"RCN2"	5955	"ENSG00000117906"
+"204475_at"	"MMP1"	4312	"ENSG00000196611"
+"200973_s_at"	"TSPAN3"	10099	"ENSG00000140391"
+"200972_at"	"TSPAN3"	10099	"ENSG00000140391"
+"205413_at"	"MPPED2"	744	"ENSG00000066382"
+"201780_s_at"	"RNF13"	11342	"ENSG00000082996"
+"201779_s_at"	"RNF13"	11342	"ENSG00000082996"
+"204664_at"	"ALPP"	250	"ENSG00000163283"
+"204510_at"	"CDC7"	8317	"ENSG00000097046"
+"204170_s_at"	"CKS2"	1164	"ENSG00000123975"
+"203133_at"	"SEC61B"	10952	"ENSG00000106803"
+"204745_x_at"	"MT1G"	4495	"ENSG00000125144"
+"200767_s_at"	"FAM120A"	23196	"ENSG00000048828"
+"200774_at"	"FAM120A"	23196	"ENSG00000048828"
+"202714_s_at"	"PRORP"	9692	"ENSG00000100890"
+"204177_s_at"	"KLHL20"	27252	"ENSG00000076321"
+"204176_at"	"KLHL20"	27252	"ENSG00000076321"
+"200738_s_at"	"PGK1"	5230	"ENSG00000102144"
+"200737_at"	"PGK1"	5230	"ENSG00000102144"
+"201361_at"	"TMEM109"	79073	"ENSG00000110108"
+"204392_at"	"CAMK1"	8536	"ENSG00000134072"
+"203350_at"	"AP1G1"	164	"ENSG00000166747"
+"204571_x_at"	"PIN4"	5303	"ENSG00000102309"
+"204572_s_at"	"PIN4"	5303	"ENSG00000102309"
+"200933_x_at"	"RPS4X"	6191	"ENSG00000198034"
+"204399_s_at"	"EML2"	24139	"ENSG00000125746"
+"204398_s_at"	"EML2"	24139	"ENSG00000125746"
+"204636_at"	"COL17A1"	1308	"ENSG00000065618"
+"205051_s_at"	"KIT"	3815	"ENSG00000157404"
+"204548_at"	"STAR"	6770	"ENSG00000147465"
+"205116_at"	"LAMA2"	3908	"ENSG00000196569"
+"202336_s_at"	"PAM"	5066	"ENSG00000145730"
+"203534_at"	"LSM1"	27257	"ENSG00000175324"
+"201491_at"	"AHSA1"	10598	"ENSG00000100591"
+"203128_at"	"SPTLC2"	9517	"ENSG00000100596"
+"203127_s_at"	"SPTLC2"	9517	"ENSG00000100596"
+"204957_at"	"ORC5"	5001	"ENSG00000164815"
+"204351_at"	"S100P"	6286	"ENSG00000163993"
+"203215_s_at"	"MYO6"	4646	"ENSG00000196586"
+"203216_s_at"	"MYO6"	4646	"ENSG00000196586"
+"202680_at"	"GTF2E2"	2961	"ENSG00000197265"
+"205040_at"	"ORM1"	5004	"ENSG00000229314"
+"200043_at"	"ERH"	2079	"ENSG00000100632"
+"204964_s_at"	"SSPN"	8082	"ENSG00000123096"
+"204963_at"	"SSPN"	8082	"ENSG00000123096"
+"203175_at"	"RHOG"	391	"ENSG00000177105"
+"201477_s_at"	"RRM1"	6240	"ENSG00000167325"
+"201476_s_at"	"RRM1"	6240	"ENSG00000167325"
+"200828_s_at"	"ZNF207"	7756	"ENSG00000010244"
+"200829_x_at"	"ZNF207"	7756	"ENSG00000010244"
+"202102_s_at"	"BRD4"	23476	"ENSG00000141867"
+"202103_at"	"BRD4"	23476	"ENSG00000141867"
+"204586_at"	"BSN"	8927	"ENSG00000164061"
+"201760_s_at"	"WSB2"	55884	"ENSG00000176871"
+"203791_at"	"DMXL1"	1657	"ENSG00000172869"
+"201284_s_at"	"APEH"	327	"ENSG00000164062"
+"202064_s_at"	"SEL1L"	6400	"ENSG00000071537"
+"202063_s_at"	"SEL1L"	6400	"ENSG00000071537"
+"202062_s_at"	"SEL1L"	6400	"ENSG00000071537"
+"202061_s_at"	"SEL1L"	6400	"ENSG00000071537"
+"202678_at"	"GTF2A2"	2958	"ENSG00000140307"
+"202348_s_at"	"TOR1A"	1861	"ENSG00000136827"
+"202349_at"	"TOR1A"	1861	"ENSG00000136827"
+"203407_at"	"PPL"	5493	"ENSG00000118898"
+"200010_at"	"RPL11"	6135	"ENSG00000142676"
+"203965_at"	"USP20"	10868	"ENSG00000136878"
+"202292_x_at"	"LYPLA2"	11313	"ENSG00000011009"
+"202081_at"	"IER2"	9592	"ENSG00000160888"
+"203135_at"	"TBP"	6908	"ENSG00000112592"
+"203744_at"	"HMGB3"	3149	"ENSG00000029993"
+"201494_at"	"PRCP"	5547	"ENSG00000137509"
+"201099_at"	"USP9X"	8239	"ENSG00000124486"
+"201100_s_at"	"USP9X"	8239	"ENSG00000124486"
+"200696_s_at"	"GSN"	2934	"ENSG00000148180"
+"202528_at"	"GALE"	2582	"ENSG00000117308"
+"201251_at"	"PKM"	5315	"ENSG00000067225"
+"200061_s_at"	"RPS24"	6229	"ENSG00000138326"
+"200651_at"	"RACK1"	10399	"ENSG00000204628"
+"203692_s_at"	"E2F3"	1871	"ENSG00000112242"
+"203693_s_at"	"E2F3"	1871	"ENSG00000112242"
+"205178_s_at"	"RBBP6"	5930	"ENSG00000122257"
+"203498_at"	"RCAN2"	10231	"ENSG00000172348"
+"201079_at"	"SYNGR2"	9144	"ENSG00000108639"
+"203704_s_at"	"RREB1"	6239	"ENSG00000124782"
+"205368_at"	"FAM131B"	9715	"ENSG00000159784"
+"200912_s_at"	"EIF4A2"	1974	"ENSG00000156976"
+"203201_at"	"PMM2"	5373	"ENSG00000140650"
+"202191_s_at"	"GAS7"	8522	"ENSG00000007237"
+"202192_s_at"	"GAS7"	8522	"ENSG00000007237"
+"205107_s_at"	"EFNA4"	1945	"ENSG00000243364"
+"201931_at"	"ETFA"	2108	"ENSG00000140374"
+"202023_at"	"EFNA1"	1942	"ENSG00000169242"
+"204579_at"	"FGFR4"	2264	"ENSG00000160867"
+"205445_at"	"PRL"	5617	"ENSG00000172179"
+"201520_s_at"	"GRSF1"	2926	"ENSG00000132463"
+"201501_s_at"	"GRSF1"	2926	"ENSG00000132463"
+"202759_s_at"	"PALM2AKAP2"	445815	"ENSG00000157654"
+"202760_s_at"	"PALM2AKAP2"	445815	"ENSG00000157654"
+"203308_x_at"	"HPS1"	3257	"ENSG00000107521"
+"203309_s_at"	"HPS1"	3257	"ENSG00000107521"
+"202984_s_at"	"BAG5"	9529	"ENSG00000166170"
+"202985_s_at"	"BAG5"	9529	"ENSG00000166170"
+"205192_at"	"MAP3K14"	9020	"ENSG00000006062"
+"204384_at"	"GOLGA2"	2801	"ENSG00000167110"
+"201037_at"	"PFKP"	5214	"ENSG00000067057"
+"204766_s_at"	"NUDT1"	4521	"ENSG00000106268"
+"201601_x_at"	"IFITM1"	8519	"ENSG00000185885"
+"204722_at"	"SCN3B"	55800	"ENSG00000166257"
+"204723_at"	"SCN3B"	55800	"ENSG00000166257"
+"200070_at"	"CNPPD1"	27013	"ENSG00000115649"
+"204513_s_at"	"ELMO1"	9844	"ENSG00000155849"
+"204329_s_at"	"ZNF202"	7753	"ENSG00000166261"
+"204327_s_at"	"ZNF202"	7753	"ENSG00000166261"
+"204280_at"	"RGS14"	10636	"ENSG00000169220"
+"201428_at"	"CLDN4"	1364	"ENSG00000189143"
+"204683_at"	"ICAM2"	3384	"ENSG00000108622"
+"205352_at"	"SERPINI1"	5274	"ENSG00000163536"
+"202302_s_at"	"RSRC2"	65117	"ENSG00000111011"
+"202301_s_at"	"RSRC2"	65117	"ENSG00000111011"
+"204033_at"	"TRIP13"	9319	"ENSG00000071539"
+"202856_s_at"	"SLC16A3"	9123	"ENSG00000141526"
+"202855_s_at"	"SLC16A3"	9123	"ENSG00000141526"
+"200851_s_at"	"IST1"	9798	"ENSG00000182149"
+"203171_s_at"	"RRP8"	23378	"ENSG00000132275"
+"203170_at"	"RRP8"	23378	"ENSG00000132275"
+"201234_at"	"ILK"	3611	"ENSG00000166333"
+"205129_at"	"NPM3"	10360	"ENSG00000107833"
+"201568_at"	"UQCRQ"	27089	"ENSG00000164405"
+"201118_at"	"PGD"	5226	"ENSG00000142657"
+"202430_s_at"	"PLSCR1"	5359	"ENSG00000188313"
+"202446_s_at"	"PLSCR1"	5359	"ENSG00000188313"
+"204716_at"	"CCDC6"	8030	"ENSG00000108091"
+"205046_at"	"CENPE"	1062	"ENSG00000138778"
+"203277_at"	"DFFA"	1676	"ENSG00000160049"
+"203214_x_at"	"CDK1"	983	"ENSG00000170312"
+"203213_at"	"CDK1"	983	"ENSG00000170312"
+"204436_at"	"PLEKHO2"	80301	"ENSG00000241839"
+"205309_at"	"SMPDL3B"	27293	"ENSG00000130768"
+"205331_s_at"	"REEP2"	51308	"ENSG00000132563"
+"201877_s_at"	"PPP2R5C"	5527	"ENSG00000078304"
+"203545_at"	"ALG8"	79053	"ENSG00000159063"
+"204798_at"	"MYB"	4602	"ENSG00000118513"
+"203835_at"	"LRRC32"	2615	"ENSG00000137507"
+"201772_at"	"AZIN1"	51582	"ENSG00000155096"
+"204080_at"	"TOE1"	114034	"ENSG00000132773"
+"201167_x_at"	"ARHGDIA"	396	"ENSG00000141522"
+"202536_at"	"CHMP2B"	25978	"ENSG00000083937"
+"202538_s_at"	"CHMP2B"	25978	"ENSG00000083937"
+"202537_s_at"	"CHMP2B"	25978	"ENSG00000083937"
+"205209_at"	"ACVR1B"	91	"ENSG00000135503"
+"205302_at"	"IGFBP1"	3484	"ENSG00000146678"
+"205036_at"	"LSM6"	11157	"ENSG00000164167"
+"205166_at"	"CAPN5"	726	"ENSG00000149260"
+"202340_x_at"	"NR4A1"	3164	"ENSG00000123358"
+"204470_at"	"CXCL1"	2919	"ENSG00000163739"
+"204133_at"	"RRP9"	9136	"ENSG00000114767"
+"204945_at"	"PTPRN"	5798	"ENSG00000054356"
+"201306_s_at"	"ANP32B"	10541	"ENSG00000136938"
+"201305_x_at"	"ANP32B"	10541	"ENSG00000136938"
+"201186_at"	"LRPAP1"	4043	"ENSG00000163956"
+"203148_s_at"	"TRIM14"	9830	"ENSG00000106785"
+"203147_s_at"	"TRIM14"	9830	"ENSG00000106785"
+"205318_at"	"KIF5A"	3798	"ENSG00000155980"
+"204274_at"	"EBAG9"	9166	"ENSG00000147654"
+"204278_s_at"	"EBAG9"	9166	"ENSG00000147654"
+"200663_at"	"CD63"	967	"ENSG00000135404"
+"203310_at"	"STXBP3"	6814	"ENSG00000116266"
+"204244_s_at"	"DBF4"	10926	"ENSG00000006634"
+"203822_s_at"	"ELF2"	1998	"ENSG00000109381"
+"200697_at"	"HK1"	3098	"ENSG00000156515"
+"202370_s_at"	"CBFB"	865	"ENSG00000067955"
+"202220_at"	"KHDC4"	22889	"ENSG00000132680"
+"204862_s_at"	"NME3"	4832	"ENSG00000103024"
+"200652_at"	"SSR2"	6746	"ENSG00000163479"
+"203453_at"	"SCNN1A"	6337	"ENSG00000111319"
+"204970_s_at"	"MAFG"	4097	"ENSG00000197063"
+"202005_at"	"ST14"	6768	"ENSG00000149418"
+"202806_at"	"DBN1"	1627	"ENSG00000113758"
+"203823_at"	"RGS3"	5998	"ENSG00000138835"
+"202148_s_at"	"PYCR1"	5831	"ENSG00000183010"
+"202009_at"	"TWF2"	11344	"ENSG00000247596"
+"204370_at"	"CLP1"	10978	"ENSG00000172409"
+"203005_at"	"LTBR"	4055	"ENSG00000111321"
+"201806_s_at"	"ATXN2L"	11273	"ENSG00000168488"
+"201934_at"	"WDR82"	80335	"ENSG00000164091"
+"201419_at"	"BAP1"	8314	"ENSG00000163930"
+"204605_at"	"CGRRF1"	10668	"ENSG00000100532"
+"201005_at"	"CD9"	928	"ENSG00000010278"
+"200910_at"	"CCT3"	7203	"ENSG00000163468"
+"201998_at"	"ST6GAL1"	6480	"ENSG00000073849"
+"202137_s_at"	"ZMYND11"	10771	"ENSG00000015171"
+"202136_at"	"ZMYND11"	10771	"ENSG00000015171"
+"204796_at"	"EML1"	2009	"ENSG00000066629"
+"204797_s_at"	"EML1"	2009	"ENSG00000066629"
+"201322_at"	"ATP5F1B"	506	"ENSG00000110955"
+"200935_at"	"CALR"	811	"ENSG00000179218"
+"200627_at"	"PTGES3"	10728	"ENSG00000110958"
+"201641_at"	"BST2"	684	"ENSG00000130303"
+"205097_at"	"SLC26A2"	1836	"ENSG00000155850"
+"200928_s_at"	"RAB14"	51552	"ENSG00000119396"
+"200927_s_at"	"RAB14"	51552	"ENSG00000119396"
+"205074_at"	"SLC22A5"	6584	"ENSG00000197375"
+"205236_x_at"	"SOD3"	6649	"ENSG00000109610"
+"201646_at"	"SCARB2"	950	"ENSG00000138760"
+"201647_s_at"	"SCARB2"	950	"ENSG00000138760"
+"203828_s_at"	"IL32"	9235	"ENSG00000008517"
+"202006_at"	"PTPN12"	5782	"ENSG00000127947"
+"200735_x_at"	"NACA"	4666	"ENSG00000196531"
+"202309_at"	"MTHFD1"	4522	"ENSG00000100714"
+"202421_at"	"IGSF3"	3321	"ENSG00000143061"
+"201023_at"	"TAF7"	6879	"ENSG00000178913"
+"204459_at"	"CSTF2"	1478	"ENSG00000101811"
+"200648_s_at"	"GLUL"	2752	"ENSG00000135821"
+"201098_at"	"COPB2"	9276	"ENSG00000184432"
+"200656_s_at"	"P4HB"	5034	"ENSG00000185624"
+"200654_at"	"P4HB"	5034	"ENSG00000185624"
+"203854_at"	"CFI"	3426	"ENSG00000205403"
+"201262_s_at"	"BGN"	633	"ENSG00000182492"
+"201261_x_at"	"BGN"	633	"ENSG00000182492"
+"200993_at"	"IPO7"	10527	"ENSG00000205339"
+"200994_at"	"IPO7"	10527	"ENSG00000205339"
+"200992_at"	"IPO7"	10527	"ENSG00000205339"
+"200995_at"	"IPO7"	10527	"ENSG00000205339"
+"201714_at"	"TUBG1"	7283	"ENSG00000131462"
+"200066_at"	"IK"	3550	"ENSG00000113141"
+"203095_at"	"MTIF2"	4528	"ENSG00000085760"
+"205110_s_at"	"FGF13"	2258	"ENSG00000129682"
+"203249_at"	"EZH1"	2145	"ENSG00000108799"
+"204817_at"	"ESPL1"	9700	"ENSG00000135476"
+"203041_s_at"	"LAMP2"	3920	"ENSG00000005893"
+"203042_at"	"LAMP2"	3920	"ENSG00000005893"
+"200821_at"	"LAMP2"	3920	"ENSG00000005893"
+"200978_at"	"MDH1"	4190	"ENSG00000014641"
+"203848_at"	"AKAP8"	10270	"ENSG00000105127"
+"203847_s_at"	"AKAP8"	10270	"ENSG00000105127"
+"205145_s_at"	"MYL5"	4636	"ENSG00000215375"
+"203989_x_at"	"F2R"	2149	"ENSG00000181104"
+"201041_s_at"	"DUSP1"	1843	"ENSG00000120129"
+"200991_s_at"	"SNX17"	9784	"ENSG00000115234"
+"204850_s_at"	"DCX"	1641	"ENSG00000077279"
+"204851_s_at"	"DCX"	1641	"ENSG00000077279"
+"200096_s_at"	"ATP6V0E1"	8992	"ENSG00000113732"
+"201172_x_at"	"ATP6V0E1"	8992	"ENSG00000113732"
+"202859_x_at"	"CXCL8"	3576	"ENSG00000169429"
+"204930_s_at"	"BNIP1"	662	"ENSG00000113734"
+"200913_at"	"PPM1G"	5496	"ENSG00000115241"
+"201210_at"	"DDX3X"	1654	"ENSG00000215301"
+"201211_s_at"	"DDX3X"	1654	"ENSG00000215301"
+"203275_at"	"IRF2"	3660	"ENSG00000168310"
+"203867_s_at"	"NLE1"	54475	"ENSG00000073536"
+"203866_at"	"NLE1"	54475	"ENSG00000073536"
+"202799_at"	"CLPP"	8192	"ENSG00000125656"
+"203286_at"	"RNF44"	22838	"ENSG00000146083"
+"200787_s_at"	"PEA15"	8682	"ENSG00000162734"
+"200788_s_at"	"PEA15"	8682	"ENSG00000162734"
+"203475_at"	"CYP19A1"	1588	"ENSG00000137869"
+"203358_s_at"	"EZH2"	2146	"ENSG00000106462"
+"201502_s_at"	"NFKBIA"	4792	"ENSG00000100906"
+"201774_s_at"	"NCAPD2"	9918	"ENSG00000010292"
+"205262_at"	"KCNH2"	3757	"ENSG00000055118"
+"204588_s_at"	"SLC7A7"	9056	"ENSG00000155465"
+"201504_s_at"	"TSN"	7247	"ENSG00000211460"
+"201513_at"	"TSN"	7247	"ENSG00000211460"
+"201515_s_at"	"TSN"	7247	"ENSG00000211460"
+"204466_s_at"	"SNCA"	6622	"ENSG00000145335"
+"204467_s_at"	"SNCA"	6622	"ENSG00000145335"
+"201922_at"	"NSA2"	10412	"ENSG00000164346"
+"205327_s_at"	"ACVR2A"	92	"ENSG00000121989"
+"203351_s_at"	"ORC4"	5000	"ENSG00000115947"
+"203352_at"	"ORC4"	5000	"ENSG00000115947"
+"205239_at"	"AREG"	374	"ENSG00000109321"
+"201184_s_at"	"CHD4"	1108	"ENSG00000111642"
+"203444_s_at"	"MTA2"	9219	"ENSG00000149480"
+"201116_s_at"	"CPE"	1363	"ENSG00000109472"
+"201117_s_at"	"CPE"	1363	"ENSG00000109472"
+"204495_s_at"	"C15orf39"	56905	"ENSG00000167173"
+"204494_s_at"	"C15orf39"	56905	"ENSG00000167173"
+"203442_x_at"	"EML3"	256364	"ENSG00000149499"
+"203869_at"	"USP46"	64854	"ENSG00000109189"
+"203870_at"	"USP46"	64854	"ENSG00000109189"
+"201579_at"	"FAT1"	2195	"ENSG00000083857"
+"205163_at"	"MYL11"	29895	"ENSG00000180209"
+"203452_at"	"B3GAT3"	26229	"ENSG00000149541"
+"202681_at"	"USP4"	7375	"ENSG00000114316"
+"202682_s_at"	"USP4"	7375	"ENSG00000114316"
+"203668_at"	"MAN2C1"	4123	"ENSG00000140400"
+"201888_s_at"	"IL13RA1"	3597	"ENSG00000131724"
+"201887_at"	"IL13RA1"	3597	"ENSG00000131724"
+"200805_at"	"LMAN2"	10960	"ENSG00000169223"
+"202180_s_at"	"MVP"	9961	"ENSG00000013364"
+"201094_at"	"RPS29"	6235	"ENSG00000213741"
+"202183_s_at"	"KIF22"	3835	"ENSG00000079616"
+"205225_at"	"ESR1"	2099	"ENSG00000091831"
+"203102_s_at"	"MGAT2"	4247	"ENSG00000168282"
+"203101_s_at"	"MGAT2"	4247	"ENSG00000168282"
+"203701_s_at"	"TRMT1"	55621	"ENSG00000104907"
+"202958_at"	"PTPN9"	5780	"ENSG00000169410"
+"203141_s_at"	"AP3B1"	8546	"ENSG00000132842"
+"203142_s_at"	"AP3B1"	8546	"ENSG00000132842"
+"201871_s_at"	"UBXN1"	51035	"ENSG00000162191"
+"202614_at"	"SLC30A9"	10463	"ENSG00000014824"
+"200976_s_at"	"TAX1BP1"	8887	"ENSG00000106052"
+"200977_s_at"	"TAX1BP1"	8887	"ENSG00000106052"
+"201804_x_at"	"TBCB"	1155	"ENSG00000105254"
+"203460_s_at"	"PSEN1"	5663	"ENSG00000080815"
+"203558_at"	"CUL7"	9820	"ENSG00000044090"
+"200001_at"	"CAPNS1"	826	"ENSG00000126247"
+"205181_at"	"ZSCAN9"	7746	"ENSG00000137185"
+"201743_at"	"CD14"	929	"ENSG00000170458"
+"205126_at"	"VRK2"	7444	"ENSG00000028116"
+"204844_at"	"ENPEP"	2028	"ENSG00000138792"
+"204845_s_at"	"ENPEP"	2028	"ENSG00000138792"
+"204546_at"	"KIAA0513"	9764	"ENSG00000135709"
+"203713_s_at"	"LLGL2"	3993	"ENSG00000073350"
+"203977_at"	"TAFAZZIN"	6901	"ENSG00000102125"
+"201280_s_at"	"DAB2"	1601	"ENSG00000153071"
+"201279_s_at"	"DAB2"	1601	"ENSG00000153071"
+"201278_at"	"DAB2"	1601	"ENSG00000153071"
+"202281_at"	"GAK"	2580	"ENSG00000178950"
+"203897_at"	"LYRM1"	57149	"ENSG00000102897"
+"201043_s_at"	"ANP32A"	8125	"ENSG00000140350"
+"201051_at"	"ANP32A"	8125	"ENSG00000140350"
+"201038_s_at"	"ANP32A"	8125	"ENSG00000140350"
+"201267_s_at"	"PSMC3"	5702	"ENSG00000165916"
+"203637_s_at"	"MID1"	4281	"ENSG00000101871"
+"203636_at"	"MID1"	4281	"ENSG00000101871"
+"204811_s_at"	"CACNA2D2"	9254	"ENSG00000007402"
+"205057_s_at"	"IDUA"	3425	"ENSG00000127415"
+"205059_s_at"	"IDUA"	3425	"ENSG00000127415"
+"201834_at"	"PRKAB1"	5564	"ENSG00000111725"
+"201835_s_at"	"PRKAB1"	5564	"ENSG00000111725"
+"200948_at"	"MLF2"	8079	"ENSG00000089693"
+"203010_at"	"STAT5A"	6776	"ENSG00000126561"
+"203600_s_at"	"FAM193A"	8603	"ENSG00000125386"
+"203420_at"	"FAM8A1"	51439	"ENSG00000137414"
+"205375_at"	"MDFI"	4188	"ENSG00000112559"
+"201600_at"	"PHB2"	11331	"ENSG00000215021"
+"200092_s_at"	"RPL37"	6167	"ENSG00000145592"
+"203607_at"	"INPP5F"	22876	"ENSG00000198825"
+"204658_at"	"TRA2A"	29896	"ENSG00000164548"
+"204757_s_at"	"C2CD2L"	9854	"ENSG00000172375"
+"204758_s_at"	"C2CD2L"	9854	"ENSG00000172375"
+"202333_s_at"	"UBE2B"	7320	"ENSG00000119048"
+"202334_s_at"	"UBE2B"	7320	"ENSG00000119048"
+"202335_s_at"	"UBE2B"	7320	"ENSG00000119048"
+"201228_s_at"	"ARIH2"	10425	"ENSG00000177479"
+"201230_s_at"	"ARIH2"	10425	"ENSG00000177479"
+"201229_s_at"	"ARIH2"	10425	"ENSG00000177479"
+"204048_s_at"	"PHACTR2"	9749	"ENSG00000112419"
+"204047_s_at"	"PHACTR2"	9749	"ENSG00000112419"
+"204049_s_at"	"PHACTR2"	9749	"ENSG00000112419"
+"200628_s_at"	"WARS1"	7453	"ENSG00000140105"
+"200629_at"	"WARS1"	7453	"ENSG00000140105"
+"204349_at"	"MED7"	9443	"ENSG00000155868"
+"204350_s_at"	"MED7"	9443	"ENSG00000155868"
+"201618_x_at"	"GPAA1"	8733	"ENSG00000197858"
+"204934_s_at"	"HPN"	3249	"ENSG00000105707"
+"203002_at"	"AMOTL2"	51421	"ENSG00000114019"
+"201401_s_at"	"GRK2"	156	"ENSG00000173020"
+"201402_at"	"GRK2"	156	"ENSG00000173020"
+"201902_s_at"	"YY1"	7528	"ENSG00000100811"
+"200826_at"	"SNRPD2"	6633	"ENSG00000125743"
+"201193_at"	"IDH1"	3417	"ENSG00000138413"
+"202260_s_at"	"STXBP1"	6812	"ENSG00000136854"
+"202174_s_at"	"PCM1"	5108	"ENSG00000078674"
+"204828_at"	"RAD9A"	5883	"ENSG00000172613"
+"204374_s_at"	"GALK1"	2584	"ENSG00000108479"
+"203826_s_at"	"PITPNM1"	9600	"ENSG00000110697"
+"204953_at"	"SNAP91"	9892	"ENSG00000065609"
+"203302_at"	"DCK"	1633	"ENSG00000156136"
+"203149_at"	"NECTIN2"	5819	"ENSG00000130202"
+"203023_at"	"NOP16"	51491	"ENSG00000048162"
+"202264_s_at"	"TOMM40"	10452	"ENSG00000130204"
+"204965_at"	"GC"	2638	"ENSG00000145321"
+"205096_at"	"POM121"	9883	"ENSG00000196313"
+"205172_x_at"	"CLTB"	1212	"ENSG00000175416"
+"205391_x_at"	"ANK1"	286	"ENSG00000029534"
+"205389_s_at"	"ANK1"	286	"ENSG00000029534"
+"205390_s_at"	"ANK1"	286	"ENSG00000029534"
+"203252_at"	"CDK2AP2"	10263	"ENSG00000167797"
+"203381_s_at"	"APOE"	348	"ENSG00000130203"
+"203382_s_at"	"APOE"	348	"ENSG00000130203"
+"201620_at"	"MBTPS1"	8720	"ENSG00000140943"
+"204416_x_at"	"APOC1"	341	"ENSG00000130208"
+"200824_at"	"GSTP1"	2950	"ENSG00000084207"
+"202518_at"	"BCL7B"	9275	"ENSG00000106635"
+"201640_x_at"	"CLPTM1"	1209	"ENSG00000104853"
+"201705_at"	"PSMD7"	5713	"ENSG00000103035"
+"203088_at"	"FBLN5"	10516	"ENSG00000140092"
+"200827_at"	"PLOD1"	5351	"ENSG00000083444"
+"200932_s_at"	"DCTN2"	10540	"ENSG00000175203"
+"200085_s_at"	"ELOB"	6923	"ENSG00000103363"
+"203991_s_at"	"KDM6A"	7403	"ENSG00000147050"
+"203990_s_at"	"KDM6A"	7403	"ENSG00000147050"
+"203992_s_at"	"KDM6A"	7403	"ENSG00000147050"
+"203500_at"	"GCDH"	2639	"ENSG00000105607"
+"204547_at"	"RAB40B"	10966	"ENSG00000141542"
+"202123_s_at"	"ABL1"	25	"ENSG00000097007"
+"201277_s_at"	"HNRNPAB"	3182	"ENSG00000197451"
+"205425_at"	"HIP1"	3092	"ENSG00000127946"
+"205426_s_at"	"HIP1"	3092	"ENSG00000127946"
+"201645_at"	"TNC"	3371	"ENSG00000041982"
+"201290_at"	"SEC11A"	23478	"ENSG00000140612"
+"202109_at"	"ARFIP2"	23647	"ENSG00000132254"
+"202948_at"	"IL1R1"	3554	"ENSG00000115594"
+"205226_at"	"PDGFRL"	5157	"ENSG00000104213"
+"205454_at"	"HPCA"	3208	"ENSG00000121905"
+"200743_s_at"	"TPP1"	1200	"ENSG00000166340"
+"200742_s_at"	"TPP1"	1200	"ENSG00000166340"
+"204788_s_at"	"PPOX"	5498	"ENSG00000143224"
+"203461_at"	"CHD2"	1106	"ENSG00000173575"
+"204232_at"	"FCER1G"	2207	"ENSG00000158869"
+"203008_x_at"	"TXNDC9"	10190	"ENSG00000115514"
+"202218_s_at"	"FADS2"	9415	"ENSG00000134824"
+"205121_at"	"SGCB"	6443	"ENSG00000163069"
+"205120_s_at"	"SGCB"	6443	"ENSG00000163069"
+"200076_s_at"	"KXD1"	79036	"ENSG00000105700"
+"204883_s_at"	"HUS1"	3364	"ENSG00000136273"
+"204884_s_at"	"HUS1"	3364	"ENSG00000136273"
+"203856_at"	"VRK1"	7443	"ENSG00000100749"
+"201387_s_at"	"UCHL1"	7345	"ENSG00000154277"
+"202977_s_at"	"CREBZF"	58487	"ENSG00000137504"
+"202978_s_at"	"CREBZF"	58487	"ENSG00000137504"
+"202979_s_at"	"CREBZF"	58487	"ENSG00000137504"
+"205137_x_at"	"USH1C"	10083	"ENSG00000006611"
+"201071_x_at"	"SF3B1"	23451	"ENSG00000115524"
+"201070_x_at"	"SF3B1"	23451	"ENSG00000115524"
+"201633_s_at"	"CYB5B"	80777	"ENSG00000103018"
+"201634_s_at"	"CYB5B"	80777	"ENSG00000103018"
+"200609_s_at"	"WDR1"	9948	"ENSG00000071127"
+"200611_s_at"	"WDR1"	9948	"ENSG00000071127"
+"202284_s_at"	"CDKN1A"	1026	"ENSG00000124762"
+"204612_at"	"PKIA"	5569	"ENSG00000171033"
+"202919_at"	"MOB4"	25843	"ENSG00000115540"
+"205308_at"	"ZC2HC1A"	51101	"ENSG00000104427"
+"204564_at"	"PCGF3"	10336	"ENSG00000185619"
+"203462_x_at"	"EIF3B"	8662	"ENSG00000106263"
+"203686_at"	"MPG"	4350	"ENSG00000103152"
+"201220_x_at"	"CTBP2"	1488	"ENSG00000175029"
+"201219_at"	"CTBP2"	1488	"ENSG00000175029"
+"201138_s_at"	"SSB"	6741	"ENSG00000138385"
+"201139_s_at"	"SSB"	6741	"ENSG00000138385"
+"204951_at"	"RHOH"	399	"ENSG00000168421"
+"200911_s_at"	"TACC1"	6867	"ENSG00000147526"
+"205264_at"	"POLR1G"	10849	"ENSG00000117877"
+"202763_at"	"CASP3"	836	"ENSG00000164305"
+"202590_s_at"	"PDK2"	5164	"ENSG00000005882"
+"201353_s_at"	"BAZ2A"	11176	"ENSG00000076108"
+"201354_s_at"	"BAZ2A"	11176	"ENSG00000076108"
+"201355_s_at"	"BAZ2A"	11176	"ENSG00000076108"
+"203400_s_at"	"TF"	7018	"ENSG00000091513"
+"205003_at"	"DOCK4"	9732	"ENSG00000128512"
+"201348_at"	"GPX3"	2878	"ENSG00000211445"
+"204368_at"	"SLCO2A1"	6578	"ENSG00000174640"
+"204050_s_at"	"CLTA"	1211	"ENSG00000122705"
+"200960_x_at"	"CLTA"	1211	"ENSG00000122705"
+"202311_s_at"	"COL1A1"	1277	"ENSG00000108821"
+"202310_s_at"	"COL1A1"	1277	"ENSG00000108821"
+"202312_s_at"	"COL1A1"	1277	"ENSG00000108821"
+"204015_s_at"	"DUSP4"	1846	"ENSG00000120875"
+"204014_at"	"DUSP4"	1846	"ENSG00000120875"
+"200054_at"	"ZPR1"	8882	"ENSG00000109917"
+"203325_s_at"	"COL5A1"	1289	"ENSG00000130635"
+"205357_s_at"	"AGTR1"	185	"ENSG00000144891"
+"204284_at"	"PPP1R3C"	5507	"ENSG00000119938"
+"202544_at"	"GMFB"	2764	"ENSG00000197045"
+"202543_s_at"	"GMFB"	2764	"ENSG00000197045"
+"204450_x_at"	"APOA1"	335	"ENSG00000118137"
+"203716_s_at"	"DPP4"	1803	"ENSG00000197635"
+"203717_at"	"DPP4"	1803	"ENSG00000197635"
+"204157_s_at"	"SIK3"	23387	"ENSG00000160584"
+"204156_at"	"SIK3"	23387	"ENSG00000160584"
+"204155_s_at"	"SIK3"	23387	"ENSG00000160584"
+"205237_at"	"FCN1"	2219	"ENSG00000085265"
+"201241_at"	"DDX1"	1653	"ENSG00000079785"
+"204872_at"	"TLE4"	7091	"ENSG00000106829"
+"201873_s_at"	"ABCE1"	6059	"ENSG00000164163"
+"202676_x_at"	"FASTK"	10922	"ENSG00000164896"
+"201155_s_at"	"MFN2"	9927	"ENSG00000116688"
+"203327_at"	"IDE"	3416	"ENSG00000119912"
+"203328_x_at"	"IDE"	3416	"ENSG00000119912"
+"203480_s_at"	"OTUD4"	54726	"ENSG00000164164"
+"202200_s_at"	"SRPK1"	6732	"ENSG00000096063"
+"202199_s_at"	"SRPK1"	6732	"ENSG00000096063"
+"203522_at"	"CCS"	9973	"ENSG00000173992"
+"202431_s_at"	"MYC"	4609	"ENSG00000136997"
+"203926_x_at"	"ATP5F1D"	513	"ENSG00000099624"
+"203595_s_at"	"IFIT5"	24138	"ENSG00000152778"
+"203596_s_at"	"IFIT5"	24138	"ENSG00000152778"
+"204178_s_at"	"RBM14"	10432	"ENSG00000239306"
+"203050_at"	"TP53BP1"	7158	"ENSG00000067369"
+"203431_s_at"	"ARHGAP32"	9743	"ENSG00000134909"
+"202939_at"	"ZMPSTE24"	10269	"ENSG00000084073"
+"202151_s_at"	"UBAC1"	10422	"ENSG00000130560"
+"203370_s_at"	"PDLIM7"	9260	"ENSG00000196923"
+"203369_x_at"	"PDLIM7"	9260	"ENSG00000196923"
+"204562_at"	"IRF4"	3662	"ENSG00000137265"
+"202727_s_at"	"IFNGR1"	3459	"ENSG00000027697"
+"205315_s_at"	"SNTB2"	6645	"ENSG00000168807"
+"203151_at"	"MAP1A"	4130	"ENSG00000166963"
+"204461_x_at"	"RAD1"	5810	"ENSG00000113456"
+"204460_s_at"	"RAD1"	5810	"ENSG00000113456"
+"204578_at"	"PPIP5K1"	9677	"ENSG00000168781"
+"204543_at"	"RAPGEF1"	2889	"ENSG00000107263"
+"203645_s_at"	"CD163"	9332	"ENSG00000177575"
+"203007_x_at"	"LYPLA1"	10434	"ENSG00000120992"
+"200941_at"	"HSBP1"	3281	"ENSG00000230989"
+"201781_s_at"	"AIP"	9049	"ENSG00000110711"
+"204662_at"	"CCP110"	9738	"ENSG00000103540"
+"203621_at"	"NDUFB5"	4711	"ENSG00000136521"
+"200783_s_at"	"STMN1"	3925	"ENSG00000117632"
+"203632_s_at"	"GPRC5B"	51704	"ENSG00000167191"
+"203631_s_at"	"GPRC5B"	51704	"ENSG00000167191"
+"203474_at"	"IQGAP2"	10788	"ENSG00000145703"
+"204003_s_at"	"NUP42"	11097	"ENSG00000136243"
+"205245_at"	"PARD6A"	50855	"ENSG00000102981"
+"202472_at"	"MPI"	4351	"ENSG00000178802"
+"205101_at"	"CIITA"	4261	"ENSG00000179583"
+"203434_s_at"	"MME"	4311	"ENSG00000196549"
+"203435_s_at"	"MME"	4311	"ENSG00000196549"
+"203676_at"	"GNS"	2799	"ENSG00000135677"
+"204958_at"	"PLK3"	1263	"ENSG00000173846"
+"203663_s_at"	"COX5A"	9377	"ENSG00000178741"
+"200965_s_at"	"ABLIM1"	3983	"ENSG00000099204"
+"204712_at"	"WIF1"	11197	"ENSG00000156076"
+"202923_s_at"	"GCLC"	2729	"ENSG00000001084"
+"202922_at"	"GCLC"	2729	"ENSG00000001084"
+"201819_at"	"SCARB1"	949	"ENSG00000073060"
+"204551_s_at"	"AHSG"	197	"ENSG00000145192"
+"205132_at"	"ACTC1"	70	"ENSG00000159251"
+"201198_s_at"	"PSMD1"	5707	"ENSG00000173692"
+"201199_s_at"	"PSMD1"	5707	"ENSG00000173692"
+"202521_at"	"CTCF"	10664	"ENSG00000102974"
+"201882_x_at"	"B4GALT1"	2683	"ENSG00000086062"
+"201883_s_at"	"B4GALT1"	2683	"ENSG00000086062"
+"202387_at"	"BAG1"	573	"ENSG00000107262"
+"201108_s_at"	"THBS1"	7057	"ENSG00000137801"
+"201110_s_at"	"THBS1"	7057	"ENSG00000137801"
+"201107_s_at"	"THBS1"	7057	"ENSG00000137801"
+"201109_s_at"	"THBS1"	7057	"ENSG00000137801"
+"205025_at"	"ZBTB48"	3104	"ENSG00000204859"
+"203254_s_at"	"TLN1"	7094	"ENSG00000137076"
+"204105_s_at"	"NRCAM"	4897	"ENSG00000091129"
+"200007_at"	"SRP14"	6727	"ENSG00000140319"
+"200059_s_at"	"RHOA"	387	"ENSG00000067560"
+"202766_s_at"	"FBN1"	2200	"ENSG00000166147"
+"202765_s_at"	"FBN1"	2200	"ENSG00000166147"
+"202773_s_at"	"SFSWAP"	6433	"ENSG00000061936"
+"202774_s_at"	"SFSWAP"	6433	"ENSG00000061936"
+"202775_s_at"	"SFSWAP"	6433	"ENSG00000061936"
+"205185_at"	"SPINK5"	11005	"ENSG00000133710"
+"201915_at"	"SEC63"	11231	"ENSG00000025796"
+"201916_s_at"	"SEC63"	11231	"ENSG00000025796"
+"201914_s_at"	"SEC63"	11231	"ENSG00000025796"
+"201756_at"	"RPA2"	6118	"ENSG00000117748"
+"204868_at"	"MRPL58"	3396	"ENSG00000167862"
+"203355_s_at"	"PSD3"	23362	"ENSG00000156011"
+"203354_s_at"	"PSD3"	23362	"ENSG00000156011"
+"203078_at"	"CUL2"	8453	"ENSG00000108094"
+"203079_s_at"	"CUL2"	8453	"ENSG00000108094"
+"201345_s_at"	"UBE2D2"	7322	"ENSG00000131508"
+"201343_at"	"UBE2D2"	7322	"ENSG00000131508"
+"201344_at"	"UBE2D2"	7322	"ENSG00000131508"
+"203549_s_at"	"LPL"	4023	"ENSG00000175445"
+"203548_s_at"	"LPL"	4023	"ENSG00000175445"
+"200599_s_at"	"HSP90B1"	7184	"ENSG00000166598"
+"200598_s_at"	"HSP90B1"	7184	"ENSG00000166598"
+"201289_at"	"CCN1"	3491	"ENSG00000142871"
+"204428_s_at"	"LCAT"	3931	"ENSG00000213398"
+"201089_at"	"ATP6V1B2"	526	"ENSG00000147416"
+"202942_at"	"ETFB"	2109	"ENSG00000105379"
+"203410_at"	"AP3M2"	10947	"ENSG00000070718"
+"203224_at"	"RFK"	55312	"ENSG00000135002"
+"203225_s_at"	"RFK"	55312	"ENSG00000135002"
+"201890_at"	"RRM2"	6241	"ENSG00000171848"
+"205019_s_at"	"VIPR1"	7433	"ENSG00000114812"
+"203743_s_at"	"TDG"	6996	"ENSG00000139372"
+"204592_at"	"DLG4"	1742	"ENSG00000132535"
+"205462_s_at"	"HPCAL1"	3241	"ENSG00000115756"
+"205265_s_at"	"SPEG"	10290	"ENSG00000072195"
+"205340_at"	"ZBTB24"	9841	"ENSG00000112365"
+"203987_at"	"FZD6"	8323	"ENSG00000164930"
+"203028_s_at"	"CYBA"	1535	"ENSG00000051523"
+"204515_at"	"HSD3B1"	3283	"ENSG00000203857"
+"204607_at"	"HMGCS2"	3158	"ENSG00000134240"
+"204864_s_at"	"IL6ST"	3572	"ENSG00000134352"
+"204863_s_at"	"IL6ST"	3572	"ENSG00000134352"
+"203027_s_at"	"MVD"	4597	"ENSG00000167508"
+"201397_at"	"PHGDH"	26227	"ENSG00000092621"
+"205280_at"	"GLRB"	2743	"ENSG00000109738"
+"205279_s_at"	"GLRB"	2743	"ENSG00000109738"
+"202869_at"	"OAS1"	4938	"ENSG00000089127"
+"201597_at"	"COX7A2"	1347	"ENSG00000112695"
+"201286_at"	"SDC1"	6382	"ENSG00000115884"
+"201287_s_at"	"SDC1"	6382	"ENSG00000115884"
+"200710_at"	"ACADVL"	37	"ENSG00000072778"
+"201342_at"	"SNRPC"	6631	"ENSG00000124562"
+"203357_s_at"	"CAPN7"	23473	"ENSG00000131375"
+"203356_at"	"CAPN7"	23473	"ENSG00000131375"
+"204972_at"	"OAS2"	4939	"ENSG00000111335"
+"203253_s_at"	"PPIP5K2"	23262	"ENSG00000145725"
+"201811_x_at"	"SH3BP5"	9467	"ENSG00000131370"
+"201810_s_at"	"SH3BP5"	9467	"ENSG00000131370"
+"200073_s_at"	"HNRNPD"	3184	"ENSG00000138668"
+"203219_s_at"	"APRT"	353	"ENSG00000198931"
+"200035_at"	"CTDNEP1"	23399	"ENSG00000175826"
+"201993_x_at"	"HNRNPDL"	9987	"ENSG00000152795"
+"203477_at"	"COL15A1"	1306	"ENSG00000204291"
+"200838_at"	"CTSB"	1508	"ENSG00000164733"
+"200839_s_at"	"CTSB"	1508	"ENSG00000164733"
+"203837_at"	"MAP3K5"	4217	"ENSG00000197442"
+"203836_s_at"	"MAP3K5"	4217	"ENSG00000197442"
+"203805_s_at"	"FANCA"	2175	"ENSG00000187741"
+"203806_s_at"	"FANCA"	2175	"ENSG00000187741"
+"200067_x_at"	"SNX3"	8724	"ENSG00000112335"
+"202860_at"	"DENND4B"	9909	"ENSG00000198837"
+"204521_at"	"FAM216A"	29902	"ENSG00000204856"
+"202320_at"	"GTF3C1"	2975	"ENSG00000077235"
+"203071_at"	"SEMA3B"	7869	"ENSG00000012171"
+"204887_s_at"	"PLK4"	10733	"ENSG00000142731"
+"204886_at"	"PLK4"	10733	"ENSG00000142731"
+"205396_at"	"SMAD3"	4088	"ENSG00000166949"
+"205398_s_at"	"SMAD3"	4088	"ENSG00000166949"
+"205397_x_at"	"SMAD3"	4088	"ENSG00000166949"
+"203540_at"	"GFAP"	2670	"ENSG00000131095"
+"203245_s_at"	"BRD3OS"	266655	"ENSG00000235106"
+"200726_at"	"PPP1CC"	5501	"ENSG00000186298"
+"203825_at"	"BRD3"	8019	"ENSG00000169925"
+"201809_s_at"	"ENG"	2022	"ENSG00000106991"
+"201808_s_at"	"ENG"	2022	"ENSG00000106991"
+"202698_x_at"	"COX4I1"	1327	"ENSG00000131143"
+"200086_s_at"	"COX4I1"	1327	"ENSG00000131143"
+"202987_at"	"TRAF3IP2"	10758	"ENSG00000056972"
+"204075_s_at"	"CEP104"	9731	"ENSG00000116198"
+"204074_s_at"	"CEP104"	9731	"ENSG00000116198"
+"204057_at"	"IRF8"	3394	"ENSG00000140968"
+"204106_at"	"TESK1"	7016	"ENSG00000107140"
+"204637_at"	"CGA"	1081	"ENSG00000135346"
+"203890_s_at"	"DAPK3"	1613	"ENSG00000167657"
+"203891_s_at"	"DAPK3"	1613	"ENSG00000167657"
+"203572_s_at"	"TAF6"	6878	"ENSG00000106290"
+"201555_at"	"MCM3"	4172	"ENSG00000112118"
+"200094_s_at"	"EEF2"	1938	"ENSG00000167658"
+"204102_s_at"	"EEF2"	1938	"ENSG00000167658"
+"201297_s_at"	"MOB1A"	55233	"ENSG00000114978"
+"201298_s_at"	"MOB1A"	55233	"ENSG00000114978"
+"201299_s_at"	"MOB1A"	55233	"ENSG00000114978"
+"202424_at"	"MAP2K2"	5605	"ENSG00000126934"
+"201761_at"	"MTHFD2"	10797	"ENSG00000065911"
+"201701_s_at"	"PGRMC2"	10424	"ENSG00000164040"
+"204649_at"	"TROAP"	10024	"ENSG00000135451"
+"204771_s_at"	"TTF1"	7270	"ENSG00000125482"
+"204772_s_at"	"TTF1"	7270	"ENSG00000125482"
+"202444_s_at"	"ERLIN1"	10613	"ENSG00000107566"
+"202441_at"	"ERLIN1"	10613	"ENSG00000107566"
+"201758_at"	"TSG101"	7251	"ENSG00000074319"
+"201903_at"	"UQCRC1"	7384	"ENSG00000010256"
+"200810_s_at"	"CIRBP"	1153	"ENSG00000099622"
+"200811_at"	"CIRBP"	1153	"ENSG00000099622"
+"203233_at"	"IL4R"	3566	"ENSG00000077238"
+"200906_s_at"	"PALLD"	23022	"ENSG00000129116"
+"200907_s_at"	"PALLD"	23022	"ENSG00000129116"
+"200897_s_at"	"PALLD"	23022	"ENSG00000129116"
+"200831_s_at"	"SCD"	6319	"ENSG00000099194"
+"200832_s_at"	"SCD"	6319	"ENSG00000099194"
+"201275_at"	"FDPS"	2224	"ENSG00000160752"
+"205293_x_at"	"BAIAP2"	10458	"ENSG00000175866"
+"205294_at"	"BAIAP2"	10458	"ENSG00000175866"
+"201276_at"	"RAB5B"	5869	"ENSG00000111540"
+"200974_at"	"ACTA2"	59	"ENSG00000107796"
+"203908_at"	"SLC4A4"	8671	"ENSG00000080493"
+"205240_at"	"GPSM2"	29899	"ENSG00000121957"
+"204067_at"	"SUOX"	6821	"ENSG00000139531"
+"205165_at"	"CELSR3"	1951	"ENSG00000008300"
+"202012_s_at"	"EXT2"	2132	"ENSG00000151348"
+"202013_s_at"	"EXT2"	2132	"ENSG00000151348"
+"202641_at"	"ARL3"	403	"ENSG00000138175"
+"203702_s_at"	"TTLL4"	9654	"ENSG00000135912"
+"203703_s_at"	"TTLL4"	9654	"ENSG00000135912"
+"203096_s_at"	"RAPGEF2"	9693	"ENSG00000109756"
+"203097_s_at"	"RAPGEF2"	9693	"ENSG00000109756"
+"204136_at"	"COL7A1"	1294	"ENSG00000114270"
+"203979_at"	"CYP27A1"	1593	"ENSG00000135929"
+"205155_s_at"	"SPTBN2"	6712	"ENSG00000173898"
+"204474_at"	"ZNF142"	7701	"ENSG00000115568"
+"203639_s_at"	"FGFR2"	2263	"ENSG00000066468"
+"203638_s_at"	"FGFR2"	2263	"ENSG00000066468"
+"202276_at"	"SEM1"	7979	"ENSG00000127922"
+"204580_at"	"MMP12"	4321	"ENSG00000262406"
+"204526_s_at"	"TBC1D8"	11138	"ENSG00000204634"
+"201321_s_at"	"SMARCC2"	6601	"ENSG00000139613"
+"201320_at"	"SMARCC2"	6601	"ENSG00000139613"
+"204369_at"	"PIK3CA"	5290	"ENSG00000121879"
+"201323_at"	"EBNA1BP2"	10969	"ENSG00000117395"
+"202920_at"	"ANK2"	287	"ENSG00000145362"
+"202921_s_at"	"ANK2"	287	"ENSG00000145362"
+"203087_s_at"	"KIF2A"	3796	"ENSG00000068796"
+"203086_at"	"KIF2A"	3796	"ENSG00000068796"
+"201937_s_at"	"DNPEP"	23549	"ENSG00000123992"
+"201165_s_at"	"PUM1"	9698	"ENSG00000134644"
+"201164_s_at"	"PUM1"	9698	"ENSG00000134644"
+"201166_s_at"	"PUM1"	9698	"ENSG00000134644"
+"201962_s_at"	"RNF41"	10193	"ENSG00000181852"
+"201961_s_at"	"RNF41"	10193	"ENSG00000181852"
+"204023_at"	"RFC4"	5984	"ENSG00000163918"
+"203067_at"	"PDHX"	8050	"ENSG00000110435"
+"203048_s_at"	"SKIC3"	9652	"ENSG00000198677"
+"203049_s_at"	"SKIC3"	9652	"ENSG00000198677"
+"203419_at"	"KMT2B"	9757	"ENSG00000272333"
+"202881_x_at"	""	NA	"ENSG00000261071"
+"204818_at"	"HSD17B2"	3294	"ENSG00000086696"
+"205348_s_at"	"DYNC1I1"	1780	"ENSG00000158560"
+"203740_at"	"MPHOSPH6"	10200	"ENSG00000135698"
+"201591_s_at"	"NISCH"	11188	"ENSG00000010322"
+"202455_at"	"HDAC5"	10014	"ENSG00000108840"
+"205427_at"	"ZNF354A"	6940	"ENSG00000169131"
+"201912_s_at"	"GSPT1"	2935	"ENSG00000103342"
+"200982_s_at"	"ANXA6"	309	"ENSG00000197043"
+"203519_s_at"	"UPF2"	26019	"ENSG00000151461"
+"205344_at"	"CSPG5"	10675	"ENSG00000114646"
+"205381_at"	"LRRC17"	10234	"ENSG00000128606"
+"203365_s_at"	"MMP15"	4324	"ENSG00000102996"
+"201725_at"	"CDC123"	8872	"ENSG00000151465"
+"204617_s_at"	"ACD"	65057	"ENSG00000102977"
+"201980_s_at"	"RSU1"	6251	"ENSG00000148484"
+"204696_s_at"	"CDC25A"	993	"ENSG00000164045"
+"204695_at"	"CDC25A"	993	"ENSG00000164045"
+"203666_at"	"CXCL12"	6387	"ENSG00000107562"
+"201938_at"	"CDK2AP1"	8099	"ENSG00000111328"
+"202738_s_at"	"PHKB"	5257	"ENSG00000102893"
+"202739_s_at"	"PHKB"	5257	"ENSG00000102893"
+"202290_at"	"PDAP1"	11333	"ENSG00000106244"
+"205176_s_at"	"ITGB3BP"	23421	"ENSG00000142856"
+"204583_x_at"	"KLK3"	354	"ENSG00000142515"
+"204582_s_at"	"KLK3"	354	"ENSG00000142515"
+"201542_at"	"SAR1A"	56681	"ENSG00000079332"
+"201543_s_at"	"SAR1A"	56681	"ENSG00000079332"
+"202523_s_at"	"SPOCK2"	9806	"ENSG00000107742"
+"202524_s_at"	"SPOCK2"	9806	"ENSG00000107742"
+"201194_at"	"SELENOW"	6415	"ENSG00000178980"
+"200975_at"	"PPT1"	5538	"ENSG00000131238"
+"205457_at"	"ILRUN"	64771	"ENSG00000196821"
+"205207_at"	"IL6"	3569	"ENSG00000136244"
+"205190_at"	"PLS1"	5357	"ENSG00000120756"
+"200595_s_at"	"EIF3A"	8661	"ENSG00000107581"
+"200597_at"	"EIF3A"	8661	"ENSG00000107581"
+"200596_s_at"	"EIF3A"	8661	"ENSG00000107581"
+"203234_at"	"UPP1"	7378	"ENSG00000183696"
+"203125_x_at"	"SLC11A2"	4891	"ENSG00000110911"
+"203123_s_at"	"SLC11A2"	4891	"ENSG00000110911"
+"203124_s_at"	"SLC11A2"	4891	"ENSG00000110911"
+"202196_s_at"	"DKK3"	27122	"ENSG00000050165"
+"201619_at"	"PRDX3"	10935	"ENSG00000165672"
+"204395_s_at"	"GRK5"	2869	"ENSG00000198873"
+"204396_s_at"	"GRK5"	2869	"ENSG00000198873"
+"202404_s_at"	"COL1A2"	1278	"ENSG00000164692"
+"202403_s_at"	"COL1A2"	1278	"ENSG00000164692"
+"205235_s_at"	"KIF20B"	9585	"ENSG00000138182"
+"204734_at"	"KRT15"	3866	"ENSG00000171346"
+"204481_at"	"BRPF1"	7862	"ENSG00000156983"
+"205131_x_at"	"CLEC11A"	6320	"ENSG00000105472"
+"201650_at"	"KRT19"	3880	"ENSG00000171345"
+"201975_at"	"CLIP1"	6249	"ENSG00000130779"
+"201467_s_at"	"NQO1"	1728	"ENSG00000181019"
+"201468_s_at"	"NQO1"	1728	"ENSG00000181019"
+"202021_x_at"	"EIF1"	10209	"ENSG00000173812"
+"202029_x_at"	"RPL38"	6169	"ENSG00000172809"
+"202028_s_at"	""	85001	"ENSG00000246731"
+"204016_at"	"LARS2"	23395	"ENSG00000011376"
+"203472_s_at"	"SLCO2B1"	11309	"ENSG00000137491"
+"203473_at"	"SLCO2B1"	11309	"ENSG00000137491"
+"205098_at"	"CCR1"	1230	"ENSG00000163823"
+"205099_s_at"	"CCR1"	1230	"ENSG00000163823"
+"200923_at"	"LGALS3BP"	3959	"ENSG00000108679"
+"204523_at"	"ZNF140"	7699	"ENSG00000196387"
+"202018_s_at"	"LTF"	4057	"ENSG00000012223"
+"204589_at"	"NUAK1"	9891	"ENSG00000074590"
+"205284_at"	"URB2"	9816	"ENSG00000135763"
+"205311_at"	"DDC"	1644	"ENSG00000132437"
+"204455_at"	"DST"	667	"ENSG00000151914"
+"203787_at"	"SSBP2"	23635	"ENSG00000145687"
+"201498_at"	"USP7"	7874	"ENSG00000187555"
+"201499_s_at"	"USP7"	7874	"ENSG00000187555"
+"203546_at"	"IPO13"	9670	"ENSG00000117408"
+"205039_s_at"	"IKZF1"	10320	"ENSG00000185811"
+"202940_at"	"WNK1"	65125	"ENSG00000060237"
+"200078_s_at"	"ATP6V0B"	533	"ENSG00000117410"
+"204791_at"	"NR2C1"	7181	"ENSG00000120798"
+"204774_at"	"EVI2A"	2123	"ENSG00000126860"
+"205367_at"	"SH2B2"	10603	"ENSG00000160999"
+"201115_at"	"POLD2"	5425	"ENSG00000106628"
+"205456_at"	"CD3E"	916	"ENSG00000198851"
+"203278_s_at"	"PHF21A"	51317	"ENSG00000135365"
+"200030_s_at"	"SLC25A3"	5250	"ENSG00000075415"
+"205373_at"	"CTNNA2"	1496	"ENSG00000066032"
+"205292_s_at"	"HNRNPA2B1"	3181	"ENSG00000122566"
+"203765_at"	"GCA"	25801	"ENSG00000115271"
+"204859_s_at"	"APAF1"	317	"ENSG00000120868"
+"203114_at"	"ZNRD2"	10534	"ENSG00000173465"
+"204211_x_at"	"EIF2AK2"	5610	"ENSG00000055332"
+"202629_at"	"APPBP2"	10513	"ENSG00000062725"
+"202631_s_at"	"APPBP2"	10513	"ENSG00000062725"
+"202630_at"	"APPBP2"	10513	"ENSG00000062725"
+"203652_at"	"MAP3K11"	4296	"ENSG00000173327"
+"203782_s_at"	"POLRMT"	5442	"ENSG00000099821"
+"200633_at"	"UBB"	7314	"ENSG00000170315"
+"204164_at"	"SIPA1"	6494	"ENSG00000213445"
+"201127_s_at"	"ACLY"	47	"ENSG00000131473"
+"201128_s_at"	"ACLY"	47	"ENSG00000131473"
+"204040_at"	"RNF144A"	9781	"ENSG00000151692"
+"201461_s_at"	"MAPKAPK2"	9261	"ENSG00000162889"
+"201460_at"	"MAPKAPK2"	9261	"ENSG00000162889"
+"203592_s_at"	"FSTL3"	10272	"ENSG00000070404"
+"202327_s_at"	"PKD1"	5310	"ENSG00000008710"
+"202707_at"	"UMPS"	7372	"ENSG00000114491"
+"202706_s_at"	"UMPS"	7372	"ENSG00000114491"
+"202530_at"	"MAPK14"	1432	"ENSG00000112062"
+"204213_at"	"PIGR"	5284	"ENSG00000162896"
+"201124_at"	"ITGB5"	3693	"ENSG00000082781"
+"201125_s_at"	"ITGB5"	3693	"ENSG00000082781"
+"203964_at"	"NMI"	9111	"ENSG00000123609"
+"204371_s_at"	"KHSRP"	8570	"ENSG00000088247"
+"204372_s_at"	"KHSRP"	8570	"ENSG00000088247"
+"204661_at"	"CD52"	1043	"ENSG00000169442"
+"202416_at"	"DNAJC7"	7266	"ENSG00000168259"
+"202535_at"	"FADD"	8772	"ENSG00000168040"
+"201988_s_at"	"CREBL2"	1389	"ENSG00000111269"
+"201990_s_at"	"CREBL2"	1389	"ENSG00000111269"
+"201989_s_at"	"CREBL2"	1389	"ENSG00000111269"
+"201055_s_at"	"HNRNPA0"	10949	"ENSG00000177733"
+"201054_at"	"HNRNPA0"	10949	"ENSG00000177733"
+"202138_x_at"	"AIMP2"	7965	"ENSG00000106305"
+"205085_at"	"ORC1"	4998	"ENSG00000085840"
+"203118_at"	"PCSK7"	9159	"ENSG00000160613"
+"205043_at"	"CFTR"	1080	"ENSG00000001626"
+"203109_at"	"UBE2M"	9040	"ENSG00000130725"
+"201719_s_at"	"EPB41L2"	2037	"ENSG00000079819"
+"201718_s_at"	"EPB41L2"	2037	"ENSG00000079819"
+"202121_s_at"	"CHMP2A"	27243	"ENSG00000130724"
+"204909_at"	"DDX6"	1656	"ENSG00000110367"
+"202324_s_at"	"ACBD3"	64746	"ENSG00000182827"
+"202323_s_at"	"ACBD3"	64746	"ENSG00000182827"
+"201176_s_at"	"ARCN1"	372	"ENSG00000095139"
+"202182_at"	"KAT2A"	2648	"ENSG00000108773"
+"204252_at"	"CDK2"	1017	"ENSG00000123374"
+"203024_s_at"	"C5orf15"	56951	"ENSG00000113583"
+"200747_s_at"	"NUMA1"	4926	"ENSG00000137497"
+"204566_at"	"PPM1D"	8493	"ENSG00000170836"
+"205255_x_at"	"TCF7"	6932	"ENSG00000081059"
+"205254_x_at"	"TCF7"	6932	"ENSG00000081059"
+"204221_x_at"	"GLIPR1"	11010	"ENSG00000139278"
+"204222_s_at"	"GLIPR1"	11010	"ENSG00000139278"
+"205463_s_at"	"PDGFA"	5154	"ENSG00000197461"
+"203203_s_at"	"KRR1"	11103	"ENSG00000111615"
+"203202_at"	"KRR1"	11103	"ENSG00000111615"
+"201064_s_at"	"PABPC4"	8761	"ENSG00000090621"
+"205157_s_at"	"KRT17"	3872	"ENSG00000128422"
+"204916_at"	"RAMP1"	10267	"ENSG00000132329"
+"202871_at"	"TRAF4"	9618	"ENSG00000076604"
+"202454_s_at"	"ERBB3"	2065	"ENSG00000065361"
+"201662_s_at"	"ACSL3"	2181	"ENSG00000123983"
+"201661_s_at"	"ACSL3"	2181	"ENSG00000123983"
+"201660_at"	"ACSL3"	2181	"ENSG00000123983"
+"202596_at"	"ENSA"	2029	"ENSG00000143420"
+"201983_s_at"	"EGFR"	1956	"ENSG00000146648"
+"201984_s_at"	"EGFR"	1956	"ENSG00000146648"
+"204719_at"	"ABCA8"	10351	"ENSG00000141338"
+"201726_at"	"ELAVL1"	1994	"ENSG00000066044"
+"201727_s_at"	"ELAVL1"	1994	"ENSG00000066044"
+"204258_at"	"CHD1"	1105	"ENSG00000153922"
+"204346_s_at"	"RASSF1"	11186	"ENSG00000068028"
+"201095_at"	"DAP"	1611	"ENSG00000112977"
+"203108_at"	"GPRC5A"	9052	"ENSG00000013588"
+"204856_at"	"B3GNT3"	10331	"ENSG00000179913"
+"205414_s_at"	"ARHGAP44"	9912	"ENSG00000006740"
+"204095_s_at"	"ELL"	8178	"ENSG00000105656"
+"204096_s_at"	"ELL"	8178	"ENSG00000105656"
+"201192_s_at"	"PITPNA"	5306	"ENSG00000174238"
+"201191_at"	"PITPNA"	5306	"ENSG00000174238"
+"201190_s_at"	"PITPNA"	5306	"ENSG00000174238"
+"201216_at"	"ERP29"	10961	"ENSG00000089248"
+"201152_s_at"	"MBNL1"	4154	"ENSG00000152601"
+"201151_s_at"	"MBNL1"	4154	"ENSG00000152601"
+"201153_s_at"	"MBNL1"	4154	"ENSG00000152601"
+"202091_at"	"PLLP"	51090	"ENSG00000102934"
+"204519_s_at"	"PLLP"	51090	"ENSG00000102934"
+"204952_at"	"LYPD3"	27076	"ENSG00000124466"
+"201270_x_at"	"NUDCD3"	23386	"ENSG00000015676"
+"201269_s_at"	"NUDCD3"	23386	"ENSG00000015676"
+"204275_at"	"CAPN15"	6650	"ENSG00000103326"
+"202837_at"	"TRAFD1"	10906	"ENSG00000135148"
+"204034_at"	"ETHE1"	23474	"ENSG00000105755"
+"204815_s_at"	"DHX34"	9704	"ENSG00000134815"
+"203821_at"	"HBEGF"	1839	"ENSG00000113070"
+"200665_s_at"	"SPARC"	6678	"ENSG00000113140"
+"204214_s_at"	"RAB32"	10981	"ENSG00000118508"
+"204228_at"	"PPIH"	10465	"ENSG00000171960"
+"201732_s_at"	"CLCN3"	1182	"ENSG00000109572"
+"201734_at"	"CLCN3"	1182	"ENSG00000109572"
+"201735_s_at"	"CLCN3"	1182	"ENSG00000109572"
+"201733_at"	"CLCN3"	1182	"ENSG00000109572"
+"202992_at"	"C7"	730	"ENSG00000112936"
+"203184_at"	"FBN2"	2201	"ENSG00000138829"
+"202517_at"	"CRMP1"	1400	"ENSG00000072832"
+"203710_at"	"ITPR1"	3708	"ENSG00000150995"
+"201232_s_at"	"PSMD13"	5719	"ENSG00000185627"
+"201233_at"	"PSMD13"	5719	"ENSG00000185627"
+"204910_s_at"	"TRIM3"	10612	"ENSG00000110171"
+"204911_s_at"	"TRIM3"	10612	"ENSG00000110171"
+"203398_s_at"	"GALNT3"	2591	"ENSG00000115339"
+"203397_s_at"	"GALNT3"	2591	"ENSG00000115339"
+"204733_at"	"KLK6"	5653	"ENSG00000167755"
+"201963_at"	"ACSL1"	2180	"ENSG00000151726"
+"200988_s_at"	"PSME3"	10197	"ENSG00000131467"
+"200987_x_at"	"PSME3"	10197	"ENSG00000131467"
+"202124_s_at"	"TRAK2"	66008	"ENSG00000115993"
+"202125_s_at"	"TRAK2"	66008	"ENSG00000115993"
+"201209_at"	"HDAC1"	3065	"ENSG00000116478"
+"200644_at"	"MARCKSL1"	65108	"ENSG00000175130"
+"204988_at"	"FGB"	2244	"ENSG00000171564"
+"205234_at"	"SLC16A4"	9122	"ENSG00000168679"
+"203154_s_at"	"PAK4"	10298	"ENSG00000130669"
+"204829_s_at"	"FOLR2"	2350	"ENSG00000165457"
+"205202_at"	"PCMT1"	5110	"ENSG00000120265"
+"202300_at"	"LAMTOR5"	10542	"ENSG00000134248"
+"202299_s_at"	"LAMTOR5"	10542	"ENSG00000134248"
+"201606_s_at"	"PWP1"	11137	"ENSG00000136045"
+"201608_s_at"	"PWP1"	11137	"ENSG00000136045"
+"201607_at"	"PWP1"	11137	"ENSG00000136045"
+"204422_s_at"	"FGF2"	2247	"ENSG00000138685"
+"204421_s_at"	"FGF2"	2247	"ENSG00000138685"
+"204379_s_at"	"FGFR3"	2261	"ENSG00000068078"
+"204380_s_at"	"FGFR3"	2261	"ENSG00000068078"
+"202975_s_at"	"RHOBTB3"	22836	"ENSG00000164292"
+"202976_s_at"	"RHOBTB3"	22836	"ENSG00000164292"
+"201598_s_at"	"INPPL1"	3636	"ENSG00000165458"
+"204031_s_at"	"PCBP2"	5094	"ENSG00000197111"
+"204490_s_at"	"CD44"	960	"ENSG00000026508"
+"204489_s_at"	"CD44"	960	"ENSG00000026508"
+"202347_s_at"	"UBE2K"	3093	"ENSG00000078140"
+"202346_at"	"UBE2K"	3093	"ENSG00000078140"
+"205447_s_at"	"MAP3K12"	7786	"ENSG00000139625"
+"205448_s_at"	"MAP3K12"	7786	"ENSG00000139625"
+"204022_at"	"WWP2"	11060	"ENSG00000198373"
+"205358_at"	"GRIA2"	2891	"ENSG00000120251"
+"201739_at"	"SGK1"	6446	"ENSG00000118515"
+"202891_at"	"NIT1"	4817	"ENSG00000158793"
+"204674_at"	"IRAG2"	4033	"ENSG00000118308"
+"202480_s_at"	"DEDD"	9191	"ENSG00000158796"
+"201667_at"	"GJA1"	2697	"ENSG00000152661"
+"204491_at"	"PDE4D"	5144	"ENSG00000113448"
+"201757_at"	"NDUFS5"	4725	"ENSG00000168653"
+"205401_at"	"AGPS"	8540	"ENSG00000018510"
+"201441_at"	"COX6B1"	1340	"ENSG00000126267"
+"204288_s_at"	"SORBS2"	8470	"ENSG00000154556"
+"204638_at"	"ACP5"	54	"ENSG00000102575"
+"201596_x_at"	"KRT18"	3875	"ENSG00000111057"
+"205376_at"	"INPP4B"	8821	"ENSG00000109452"
+"203675_at"	"NUCB2"	4925	"ENSG00000070081"
+"204652_s_at"	"NRF1"	4899	"ENSG00000106459"
+"203317_at"	"PSD4"	23550	"ENSG00000125637"
+"204715_at"	"PANX1"	24145	"ENSG00000110218"
+"204762_s_at"	"GNAO1"	2775	"ENSG00000087258"
+"204763_s_at"	"GNAO1"	2775	"ENSG00000087258"
+"202642_s_at"	"TRRAP"	8295	"ENSG00000196367"
+"202363_at"	"SPOCK1"	6695	"ENSG00000152377"
+"205342_s_at"	"SULT1C2"	6819	"ENSG00000198203"
+"205343_at"	"SULT1C2"	6819	"ENSG00000198203"
+"204135_at"	"FILIP1L"	11259	"ENSG00000168386"
+"201736_s_at"	"MARCHF6"	10299	"ENSG00000145495"
+"201737_s_at"	"MARCHF6"	10299	"ENSG00000145495"
+"201966_at"	"NDUFS2"	4720	"ENSG00000158864"
+"201678_s_at"	"HMCES"	56941	"ENSG00000183624"
+"201677_at"	"HMCES"	56941	"ENSG00000183624"
+"203173_s_at"	"VPS35L"	57020	"ENSG00000103544"
+"202149_at"	"NEDD9"	4739	"ENSG00000111859"
+"202150_s_at"	"NEDD9"	4739	"ENSG00000111859"
+"203813_s_at"	"SLIT3"	6586	"ENSG00000184347"
+"203812_at"	"SLIT3"	6586	"ENSG00000184347"
+"203464_s_at"	"EPN2"	22905	"ENSG00000072134"
+"203463_s_at"	"EPN2"	22905	"ENSG00000072134"
+"201427_s_at"	"SELENOP"	6414	"ENSG00000250722"
+"202291_s_at"	"MGP"	4256	"ENSG00000111341"
+"201288_at"	"ARHGDIB"	397	"ENSG00000111348"
+"204217_s_at"	"RTN2"	6253	"ENSG00000125744"
+"202274_at"	"ACTG2"	72	"ENSG00000163017"
+"203526_s_at"	"APC"	324	"ENSG00000134982"
+"203525_s_at"	"APC"	324	"ENSG00000134982"
+"203527_s_at"	"APC"	324	"ENSG00000134982"
+"201970_s_at"	"NASP"	4678	"ENSG00000132780"
+"201969_at"	"NASP"	4678	"ENSG00000132780"
+"205436_s_at"	"H2AX"	3014	"ENSG00000188486"
+"200681_at"	"GLO1"	2739	"ENSG00000124767"
+"203816_at"	"DGUOK"	1716	"ENSG00000114956"
+"201315_x_at"	"IFITM2"	10581	"ENSG00000185201"
+"205421_at"	"SLC22A3"	6581	"ENSG00000146477"
+"204089_x_at"	"MAP3K4"	4216	"ENSG00000085511"
+"204218_at"	"ANAPC15"	25906	"ENSG00000110200"
+"202722_s_at"	"GFPT1"	2673	"ENSG00000198380"
+"202721_s_at"	"GFPT1"	2673	"ENSG00000198380"
+"200617_at"	"MLEC"	9761	"ENSG00000110917"
+"200616_s_at"	"MLEC"	9761	"ENSG00000110917"
+"202366_at"	"ACADS"	35	"ENSG00000122971"
+"203130_s_at"	"KIF5C"	3800	"ENSG00000168280"
+"200634_at"	"PFN1"	5216	"ENSG00000108518"
+"204483_at"	"ENO3"	2027	"ENSG00000108515"
+"200893_at"	"TRA2B"	6434	"ENSG00000136527"
+"200892_s_at"	"TRA2B"	6434	"ENSG00000136527"
+"200053_at"	"SPAG7"	9552	"ENSG00000091640"
+"205267_at"	"POU2AF1"	5450	"ENSG00000110777"
+"203593_at"	"CD2AP"	23607	"ENSG00000198087"
+"203706_s_at"	"FZD7"	8324	"ENSG00000155760"
+"203705_s_at"	"FZD7"	8324	"ENSG00000155760"
+"204671_s_at"	"ANKRD6"	22881	"ENSG00000135299"
+"204672_s_at"	"ANKRD6"	22881	"ENSG00000135299"
+"201979_s_at"	"PPP5C"	5536	"ENSG00000011485"
+"200606_at"	"DSP"	1832	"ENSG00000096696"
+"205044_at"	"GABRP"	2568	"ENSG00000094755"
+"200028_s_at"	"STARD7"	56910	"ENSG00000084090"
+"202122_s_at"	"PLIN3"	10226	"ENSG00000105355"
+"204684_at"	"NPTX1"	4884	"ENSG00000171246"
+"201340_s_at"	"ENC1"	8507	"ENSG00000171617"
+"201341_at"	"ENC1"	8507	"ENSG00000171617"
+"201944_at"	"HEXB"	3074	"ENSG00000049860"
+"204853_at"	"ORC2"	4999	"ENSG00000115942"
+"203371_s_at"	"NDUFB3"	4709	"ENSG00000119013"
+"204982_at"	"GIT2"	9815	"ENSG00000139436"
+"204203_at"	"CEBPG"	1054	"ENSG00000153879"
+"200077_s_at"	"OAZ1"	4946	"ENSG00000104904"
+"200659_s_at"	"PHB1"	5245	"ENSG00000167085"
+"200658_s_at"	"PHB1"	5245	"ENSG00000167085"
+"204776_at"	"THBS4"	7060	"ENSG00000113296"
+"203763_at"	"DYNC2LI1"	51626	"ENSG00000138036"
+"203762_s_at"	"DYNC2LI1"	51626	"ENSG00000138036"
+"201643_x_at"	"KDM3B"	51780	"ENSG00000120733"
+"201574_at"	"ETF1"	2107	"ENSG00000120705"
+"203392_s_at"	"CTBP1"	1487	"ENSG00000159692"
+"202108_at"	"PEPD"	5184	"ENSG00000124299"
+"200625_s_at"	"CAP1"	10487	"ENSG00000131236"
+"203728_at"	"BAK1"	578	"ENSG00000030110"
+"201188_s_at"	"ITPR3"	3710	"ENSG00000096433"
+"201189_s_at"	"ITPR3"	3710	"ENSG00000096433"
+"201187_s_at"	"ITPR3"	3710	"ENSG00000096433"
+"203960_s_at"	"IFT25"	51668	"ENSG00000081870"
+"204627_s_at"	"ITGB3"	3690	"ENSG00000259207"
+"204628_s_at"	"ITGB3"	3690	"ENSG00000259207"
+"204626_s_at"	"ITGB3"	3690	"ENSG00000259207"
+"202152_x_at"	"USF2"	7392	"ENSG00000105698"
+"201436_at"	"EIF4E"	1977	"ENSG00000151247"
+"204088_at"	"P2RX4"	5025	"ENSG00000135124"
+"201616_s_at"	"CALD1"	800	"ENSG00000122786"
+"201615_x_at"	"CALD1"	800	"ENSG00000122786"
+"201617_x_at"	"CALD1"	800	"ENSG00000122786"
+"201790_s_at"	"DHCR7"	1717	"ENSG00000172893"
+"201791_s_at"	"DHCR7"	1717	"ENSG00000172893"
+"203236_s_at"	"LGALS9"	3965	"ENSG00000168961"
+"201801_s_at"	"SLC29A1"	2030	"ENSG00000112759"
+"201802_at"	"SLC29A1"	2030	"ENSG00000112759"
+"200755_s_at"	"CALU"	813	"ENSG00000128595"
+"200756_x_at"	"CALU"	813	"ENSG00000128595"
+"200757_s_at"	"CALU"	813	"ENSG00000128595"
+"201884_at"	"CEACAM5"	1048	"ENSG00000105388"
+"203757_s_at"	"CEACAM6"	4680	"ENSG00000086548"
+"202107_s_at"	"MCM2"	4171	"ENSG00000073111"
+"204424_s_at"	"LMO3"	55885	"ENSG00000048540"
+"200064_at"	"HSP90AB1"	3326	"ENSG00000096384"
+"202649_x_at"	"RPS19"	6223	"ENSG00000105372"
+"203927_at"	"NFKBIE"	4794	"ENSG00000146232"
+"202440_s_at"	"DENND2B"	6764	"ENSG00000166444"
+"202957_at"	"HCLS1"	3059	"ENSG00000180353"
+"204677_at"	"CDH5"	1003	"ENSG00000179776"
+"201900_s_at"	"AKR1A1"	10327	"ENSG00000117448"
+"202811_at"	"STAMBP"	10617	"ENSG00000124356"
+"205049_s_at"	"CD79A"	973	"ENSG00000105369"
+"202268_s_at"	"NAE1"	8883	"ENSG00000159593"
+"203181_x_at"	"SRPK2"	6733	"ENSG00000135250"
+"203182_s_at"	"SRPK2"	6733	"ENSG00000135250"
+"205316_at"	"SLC15A2"	6565	"ENSG00000163406"
+"205317_s_at"	"SLC15A2"	6565	"ENSG00000163406"
+"201259_s_at"	"SYPL1"	6856	"ENSG00000008282"
+"201260_s_at"	"SYPL1"	6856	"ENSG00000008282"
+"202555_s_at"	"MYLK"	4638	"ENSG00000065534"
+"201682_at"	"PMPCB"	9512	"ENSG00000105819"
+"202450_s_at"	"CTSK"	1513	"ENSG00000143387"
+"202901_x_at"	"CTSS"	1520	"ENSG00000163131"
+"202902_s_at"	"CTSS"	1520	"ENSG00000163131"
+"204802_at"	"RRAD"	6236	"ENSG00000166592"
+"204803_s_at"	"RRAD"	6236	"ENSG00000166592"
+"205386_s_at"	"MDM2"	4193	"ENSG00000135679"
+"202633_at"	"TOPBP1"	11073	"ENSG00000163781"
+"201330_at"	"RARS1"	5917	"ENSG00000113643"
+"204925_at"	"CTNS"	1497	"ENSG00000040531"
+"203786_s_at"	"TPD52L1"	7164	"ENSG00000111907"
+"203935_at"	"ACVR1"	90	"ENSG00000115170"
+"203680_at"	"PRKAR2B"	5577	"ENSG00000005249"
+"203259_s_at"	"HDDC2"	51020	"ENSG00000111906"
+"203260_at"	"HDDC2"	51020	"ENSG00000111906"
+"204977_at"	"DDX10"	1662	"ENSG00000178105"
+"202270_at"	"GBP1"	2633	"ENSG00000117228"
+"202748_at"	"GBP2"	2634	"ENSG00000162645"
+"204906_at"	"RPS6KA2"	6196	"ENSG00000071242"
+"205055_at"	"ITGAE"	3682	"ENSG00000083457"
+"205002_at"	"AHDC1"	27245	"ENSG00000126705"
+"201027_s_at"	"EIF5B"	9669	"ENSG00000158417"
+"201025_at"	"EIF5B"	9669	"ENSG00000158417"
+"201024_x_at"	"EIF5B"	9669	"ENSG00000158417"
+"202379_s_at"	"NKTR"	4820	"ENSG00000114857"
+"202380_s_at"	"NKTR"	4820	"ENSG00000114857"
+"204439_at"	"IFI44L"	10964	"ENSG00000137959"
+"204065_at"	"CHST10"	9486	"ENSG00000115526"
+"205203_at"	"PLD1"	5337	"ENSG00000075651"
+"204694_at"	"AFP"	174	"ENSG00000081051"
+"203040_s_at"	"HMBS"	3145	"ENSG00000256269"
+"204748_at"	"PTGS2"	5743	"ENSG00000073756"
+"202500_at"	"DNAJB2"	3300	"ENSG00000135924"
+"205118_at"	"FPR1"	2357	"ENSG00000171051"
+"205119_s_at"	"FPR1"	2357	"ENSG00000171051"
+"202115_s_at"	"NOC2L"	26155	"ENSG00000188976"
+"202643_s_at"	"TNFAIP3"	7128	"ENSG00000118503"
+"202644_s_at"	"TNFAIP3"	7128	"ENSG00000118503"
+"200749_at"	"RAN"	5901	"ENSG00000132341"
+"204686_at"	"IRS1"	3667	"ENSG00000169047"
+"201770_at"	"SNRPA"	6626	"ENSG00000077312"
+"203291_at"	"CNOT4"	4850	"ENSG00000080802"
+"204113_at"	"CELF1"	10658	"ENSG00000149187"
+"204807_at"	"RXYLT1"	10329	"ENSG00000118600"
+"204808_s_at"	"RXYLT1"	10329	"ENSG00000118600"
+"204924_at"	"TLR2"	7097	"ENSG00000137462"
+"203389_at"	"KIF3C"	3797	"ENSG00000084731"
+"203390_s_at"	"KIF3C"	3797	"ENSG00000084731"
+"203073_at"	"COG2"	22796	"ENSG00000135775"
+"204242_s_at"	"ACOX3"	8310	"ENSG00000087008"
+"204241_at"	"ACOX3"	8310	"ENSG00000087008"
+"204950_at"	"CARD8"	22900	"ENSG00000105483"
+"204874_x_at"	"BAIAP3"	8938	"ENSG00000007516"
+"205461_at"	"RAB35"	11021	"ENSG00000111737"
+"201282_at"	"OGDH"	4967	"ENSG00000105953"
+"201786_s_at"	"ADAR"	103	"ENSG00000160710"
+"203729_at"	"EMP3"	2014	"ENSG00000142227"
+"202726_at"	"LIG1"	3978	"ENSG00000105486"
+"201087_at"	"PXN"	5829	"ENSG00000089159"
+"201778_s_at"	"EFCAB14"	9813	"ENSG00000159658"
+"201777_s_at"	"EFCAB14"	9813	"ENSG00000159658"
+"201776_s_at"	"EFCAB14"	9813	"ENSG00000159658"
+"201775_s_at"	"EFCAB14"	9813	"ENSG00000159658"
+"201788_at"	"DDX42"	11325	"ENSG00000198231"
+"201438_at"	"COL6A3"	1293	"ENSG00000163359"
+"204352_at"	"TRAF5"	7188	"ENSG00000082512"
+"201827_at"	"SMARCD2"	6603	"ENSG00000108604"
+"202222_s_at"	"DES"	1674	"ENSG00000175084"
+"203952_at"	"ATF6"	22926	"ENSG00000118217"
+"204710_s_at"	"WIPI2"	26100	"ENSG00000157954"
+"202031_s_at"	"WIPI2"	26100	"ENSG00000157954"
+"203255_at"	"FBXO11"	80204	"ENSG00000138081"
+"202045_s_at"	"ARHGAP35"	2909	"ENSG00000160007"
+"202046_s_at"	"ARHGAP35"	2909	"ENSG00000160007"
+"202044_at"	"ARHGAP35"	2909	"ENSG00000160007"
+"202394_s_at"	"ABCF3"	55324	"ENSG00000161204"
+"200820_at"	"PSMD8"	5714	"ENSG00000099341"
+"202870_s_at"	"CDC20"	991	"ENSG00000117399"
+"205297_s_at"	"CD79B"	974	"ENSG00000007312"
+"204453_at"	"ZNF84"	7637	"ENSG00000198040"
+"205205_at"	"RELB"	5971	"ENSG00000104856"
+"204978_at"	"CLASRP"	11129	"ENSG00000104859"
+"202106_at"	"GOLGA3"	2802	"ENSG00000090615"
+"204328_at"	"TMC6"	11322	"ENSG00000141524"
+"202478_at"	"TRIB2"	28951	"ENSG00000071575"
+"202479_s_at"	"TRIB2"	28951	"ENSG00000071575"
+"201908_at"	"DVL3"	1857	"ENSG00000161202"
+"202153_s_at"	"NUP62"	23636	"ENSG00000213024"
+"205026_at"	"STAT5B"	6777	"ENSG00000173757"
+"200613_at"	"AP2M1"	1173	"ENSG00000161203"
+"203809_s_at"	"AKT2"	208	"ENSG00000105221"
+"204169_at"	"IMPDH1"	3614	"ENSG00000106348"
+"203949_at"	"MPO"	4353	"ENSG00000005381"
+"203948_s_at"	"MPO"	4353	"ENSG00000005381"
+"203831_at"	"R3HDM2"	22864	"ENSG00000179912"
+"202201_at"	"BLVRB"	645	"ENSG00000090013"
+"203832_at"	"SNRPF"	6636	"ENSG00000139343"
+"203117_s_at"	"PAN2"	9924	"ENSG00000135473"
+"201517_at"	"NCBP2"	22916	"ENSG00000114503"
+"201521_s_at"	"NCBP2"	22916	"ENSG00000114503"
+"204094_s_at"	"TSC22D2"	9819	"ENSG00000196428"
+"202575_at"	"CRABP2"	1382	"ENSG00000143320"
+"203030_s_at"	"PTPRN2"	5799	"ENSG00000155093"
+"203029_s_at"	"PTPRN2"	5799	"ENSG00000155093"
+"201237_at"	"CAPZA2"	830	"ENSG00000198898"
+"201238_s_at"	"CAPZA2"	830	"ENSG00000198898"
+"203853_s_at"	"GAB2"	9846	"ENSG00000033327"
+"204225_at"	"HDAC4"	9759	"ENSG00000068024"
+"205080_at"	"RARB"	5915	"ENSG00000077092"
+"201565_s_at"	"ID2"	3398	"ENSG00000115738"
+"201697_s_at"	"DNMT1"	1786	"ENSG00000130816"
+"201384_s_at"	"NBR1"	4077	"ENSG00000188554"
+"201383_s_at"	"NBR1"	4077	"ENSG00000188554"
+"204146_at"	"RAD51AP1"	10635	"ENSG00000111247"
+"205370_x_at"	"DBT"	1629	"ENSG00000137992"
+"205369_x_at"	"DBT"	1629	"ENSG00000137992"
+"205371_s_at"	"DBT"	1629	"ENSG00000137992"
+"203594_at"	"RTCA"	8634	"ENSG00000137996"
+"205455_at"	"MST1R"	4486	"ENSG00000164078"
+"204202_at"	"IQCE"	23288	"ENSG00000106012"
+"201967_at"	"RBM6"	10180	"ENSG00000004534"
+"200040_at"	"KHDRBS1"	10657	"ENSG00000121774"
+"201488_x_at"	"KHDRBS1"	10657	"ENSG00000121774"
+"204173_at"	"MYL6B"	140465	"ENSG00000196465"
+"201395_at"	"RBM5"	10181	"ENSG00000003756"
+"201394_s_at"	"RBM5"	10181	"ENSG00000003756"
+"205054_at"	"NEB"	4703	"ENSG00000183091"
+"200695_at"	"PPP2R1A"	5518	"ENSG00000105568"
+"200937_s_at"	"RPL5"	6125	"ENSG00000122406"
+"203734_at"	"FOXJ2"	55810	"ENSG00000065970"
+"203346_s_at"	"MTF2"	22823	"ENSG00000143033"
+"203347_s_at"	"MTF2"	22823	"ENSG00000143033"
+"203345_s_at"	"MTF2"	22823	"ENSG00000143033"
+"204971_at"	"CSTA"	1475	"ENSG00000121552"
+"202055_at"	"KPNA1"	3836	"ENSG00000114030"
+"202057_at"	"KPNA1"	3836	"ENSG00000114030"
+"202056_at"	"KPNA1"	3836	"ENSG00000114030"
+"202058_s_at"	"KPNA1"	3836	"ENSG00000114030"
+"202059_s_at"	"KPNA1"	3836	"ENSG00000114030"
+"204680_s_at"	"RAPGEF5"	9771	"ENSG00000136237"
+"204681_s_at"	"RAPGEF5"	9771	"ENSG00000136237"
+"201749_at"	"ECE1"	1889	"ENSG00000117298"
+"201750_s_at"	"ECE1"	1889	"ENSG00000117298"
+"205449_at"	"SAC3D1"	29901	"ENSG00000168061"
+"205403_at"	"IL1R2"	7850	"ENSG00000115590"
+"201745_at"	"TWF1"	5756	"ENSG00000151239"
+"200024_at"	"RPS5"	6193	"ENSG00000083845"
+"202950_at"	"CRYZ"	1429	"ENSG00000116791"
+"201717_at"	"MRPL49"	740	"ENSG00000149792"
+"202014_at"	"PPP1R15A"	23645	"ENSG00000087074"
+"204104_at"	"SNAPC2"	6618	"ENSG00000104976"
+"200752_s_at"	"CAPN1"	823	"ENSG00000014216"
+"201836_s_at"	"SUPT7L"	9913	"ENSG00000119760"
+"201838_s_at"	"SUPT7L"	9913	"ENSG00000119760"
+"201837_s_at"	"SUPT7L"	9913	"ENSG00000119760"
+"200955_at"	"IMMT"	10989	"ENSG00000132305"
+"201820_at"	"KRT5"	3852	"ENSG00000186081"
+"203399_x_at"	"PSG3"	5671	"ENSG00000221826"
+"205446_s_at"	"ATF2"	1386	"ENSG00000115966"
+"201266_at"	"TXNRD1"	7296	"ENSG00000198431"
+"203069_at"	"SV2A"	9900	"ENSG00000159164"
+"204912_at"	"IL10RA"	3587	"ENSG00000110324"
+"204056_s_at"	"MVK"	4598	"ENSG00000110921"
+"201817_at"	"UBE3C"	9690	"ENSG00000009335"
+"204411_at"	"KIF21B"	23046	"ENSG00000116852"
+"203046_s_at"	"TIMELESS"	8914	"ENSG00000111602"
+"205170_at"	"STAT2"	6773	"ENSG00000170581"
+"203510_at"	"MET"	4233	"ENSG00000105976"
+"203054_s_at"	"TCTA"	6988	"ENSG00000145022"
+"204992_s_at"	"PFN2"	5217	"ENSG00000070087"
+"203774_at"	"MTR"	4548	"ENSG00000116984"
+"204812_at"	"ZW10"	9183	"ENSG00000086827"
+"204236_at"	"FLI1"	2313	"ENSG00000151702"
+"202699_s_at"	"TMEM63A"	9725	"ENSG00000196187"
+"202700_s_at"	"TMEM63A"	9725	"ENSG00000196187"
+"202017_at"	"EPHX1"	2052	"ENSG00000143819"
+"202205_at"	"VASP"	7408	"ENSG00000125753"
+"202556_s_at"	"MCRS1"	10445	"ENSG00000187778"
+"201516_at"	"SRM"	6723	"ENSG00000116649"
+"203080_s_at"	"BAZ2B"	29994	"ENSG00000123636"
+"204039_at"	"CEBPA"	1050	"ENSG00000245848"
+"202553_s_at"	"SYF2"	25949	"ENSG00000117614"
+"205333_s_at"	"RCE1"	9986	"ENSG00000173653"
+"204476_s_at"	"PC"	5091	"ENSG00000173599"
+"203886_s_at"	"FBLN2"	2199	"ENSG00000163520"
+"202428_x_at"	"DBI"	1622	"ENSG00000155368"
+"201673_s_at"	"GYS1"	2997	"ENSG00000104812"
+"200812_at"	"CCT7"	10574	"ENSG00000135624"
+"201783_s_at"	"RELA"	5970	"ENSG00000173039"
+"200895_s_at"	"FKBP4"	2288	"ENSG00000004478"
+"200894_s_at"	"FKBP4"	2288	"ENSG00000004478"
+"202475_at"	"TMEM147"	10430	"ENSG00000105677"
+"202515_at"	"DLG1"	1739	"ENSG00000075711"
+"202516_s_at"	"DLG1"	1739	"ENSG00000075711"
+"202514_at"	"DLG1"	1739	"ENSG00000075711"
+"202580_x_at"	"FOXM1"	2305	"ENSG00000111206"
+"204281_at"	"TEAD4"	7004	"ENSG00000197905"
+"203190_at"	"NDUFS8"	4728	"ENSG00000110717"
+"204266_s_at"	"CHKA"	1119	"ENSG00000110721"
+"204233_s_at"	"CHKA"	1119	"ENSG00000110721"
+"204907_s_at"	"BCL3"	602	"ENSG00000069399"
+"203009_at"	"BCAM"	4059	"ENSG00000187244"
+"202330_s_at"	"UNG"	7374	"ENSG00000076248"
+"201050_at"	"PLD3"	23646	"ENSG00000105223"
+"204893_s_at"	"ZFYVE9"	9372	"ENSG00000157077"
+"204879_at"	"PDPN"	10630	"ENSG00000162493"
+"205395_s_at"	"MRE11"	4361	"ENSG00000020922"
+"204966_at"	"ADGRB2"	576	"ENSG00000121753"
+"204949_at"	"ICAM3"	3385	"ENSG00000076662"
+"201106_at"	"GPX4"	2879	"ENSG00000167468"
+"200714_x_at"	"OS9"	10956	"ENSG00000135506"
+"201371_s_at"	"CUL3"	8452	"ENSG00000036257"
+"201372_s_at"	"CUL3"	8452	"ENSG00000036257"
+"201370_s_at"	"CUL3"	8452	"ENSG00000036257"
+"201814_at"	"TBC1D5"	9779	"ENSG00000131374"
+"201813_s_at"	"TBC1D5"	9779	"ENSG00000131374"
+"201815_s_at"	"TBC1D5"	9779	"ENSG00000131374"
+"202764_at"	"STIM1"	6786	"ENSG00000167323"
+"200675_at"	"CD81"	975	"ENSG00000110651"
+"201440_at"	"DDX23"	9416	"ENSG00000174243"
+"205417_s_at"	"DAG1"	1605	"ENSG00000173402"
+"204942_s_at"	"ALDH3B2"	222	"ENSG00000132746"
+"204941_s_at"	"ALDH3B2"	222	"ENSG00000132746"
+"202545_at"	"PRKCD"	5580	"ENSG00000163932"
+"203409_at"	"DDB2"	1643	"ENSG00000134574"
+"203105_s_at"	"DNM1L"	10059	"ENSG00000087470"
+"202767_at"	"ACP2"	53	"ENSG00000134575"
+"203055_s_at"	"ARHGEF1"	9138	"ENSG00000076928"
+"200872_at"	"S100A10"	6281	"ENSG00000197747"
+"205339_at"	"STIL"	6491	"ENSG00000123473"
+"203920_at"	"NR1H3"	10062	"ENSG00000025434"
+"201918_at"	"SLC25A36"	55186	"ENSG00000114120"
+"201919_at"	"SLC25A36"	55186	"ENSG00000114120"
+"201917_s_at"	"SLC25A36"	55186	"ENSG00000114120"
+"201454_s_at"	"NPEPPS"	9520	"ENSG00000141279"
+"201455_s_at"	"NPEPPS"	9520	"ENSG00000141279"
+"200924_s_at"	"SLC3A2"	6520	"ENSG00000168003"
+"202120_x_at"	"AP2S1"	1175	"ENSG00000042753"
+"200649_at"	"NUCB1"	4924	"ENSG00000104805"
+"200646_s_at"	"NUCB1"	4924	"ENSG00000104805"
+"201533_at"	"CTNNB1"	1499	"ENSG00000168036"
+"203223_at"	"RABEP1"	9135	"ENSG00000029725"
+"203280_at"	"SAFB2"	9667	"ENSG00000130254"
+"202900_s_at"	"NUP88"	4927	"ENSG00000108559"
+"203872_at"	"ACTA1"	58	"ENSG00000143632"
+"201459_at"	"RUVBL2"	10856	"ENSG00000183207"
+"204401_at"	"KCNN4"	3783	"ENSG00000104783"
+"200614_at"	"CLTC"	1213	"ENSG00000141367"
+"203842_s_at"	"MAPRE3"	22924	"ENSG00000084764"
+"203841_x_at"	"MAPRE3"	22924	"ENSG00000084764"
+"205093_at"	"PLEKHA6"	22874	"ENSG00000143850"
+"202116_at"	"DPF2"	5977	"ENSG00000133884"
+"202040_s_at"	"KDM5A"	5927	"ENSG00000073614"
+"201537_s_at"	"DUSP3"	1845	"ENSG00000108861"
+"201538_s_at"	"DUSP3"	1845	"ENSG00000108861"
+"201536_at"	"DUSP3"	1845	"ENSG00000108861"
+"201283_s_at"	"TRAK1"	22906	"ENSG00000182606"
+"202079_s_at"	"TRAK1"	22906	"ENSG00000182606"
+"202080_s_at"	"TRAK1"	22906	"ENSG00000182606"
+"204163_at"	"EMILIN1"	11117	"ENSG00000138080"
+"202170_s_at"	"AASDHPPT"	60496	"ENSG00000149313"
+"202169_s_at"	"AASDHPPT"	60496	"ENSG00000149313"
+"202067_s_at"	"LDLR"	3949	"ENSG00000130164"
+"202068_s_at"	"LDLR"	3949	"ENSG00000130164"
+"204087_s_at"	"SLC5A6"	8884	"ENSG00000138074"
+"204959_at"	"MNDA"	4332	"ENSG00000163563"
+"202715_at"	"CAD"	790	"ENSG00000084774"
+"204081_at"	"NRGN"	4900	"ENSG00000154146"
+"203998_s_at"	"SYT1"	6857	"ENSG00000067715"
+"203999_at"	"SYT1"	6857	"ENSG00000067715"
+"203602_s_at"	"ZBTB17"	7709	"ENSG00000116809"
+"203601_s_at"	"ZBTB17"	7709	"ENSG00000116809"
+"205152_at"	"SLC6A1"	6529	"ENSG00000157103"
+"203466_at"	"MPV17"	4358	"ENSG00000115204"
+"201687_s_at"	"API5"	8539	"ENSG00000166181"
+"202647_s_at"	"NRAS"	4893	"ENSG00000213281"
+"204666_s_at"	"SIKE1"	80143	"ENSG00000052723"
+"204292_x_at"	"STK11"	6794	"ENSG00000118046"
+"204431_at"	"TLE2"	7089	"ENSG00000065717"
+"203947_at"	"CSTF3"	1479	"ENSG00000176102"
+"205303_at"	"KCNJ8"	3764	"ENSG00000121361"
+"205304_s_at"	"KCNJ8"	3764	"ENSG00000121361"
+"204741_at"	"BICD1"	636	"ENSG00000151746"
+"204249_s_at"	"LMO2"	4005	"ENSG00000135363"
+"200722_s_at"	"CAPRIN1"	4076	"ENSG00000135387"
+"200723_s_at"	"CAPRIN1"	4076	"ENSG00000135387"
+"203603_s_at"	"ZEB2"	9839	"ENSG00000169554"
+"200072_s_at"	"HNRNPM"	4670	"ENSG00000099783"
+"204789_at"	"FMNL1"	752	"ENSG00000184922"
+"203032_s_at"	"FH"	2271	"ENSG00000091483"
+"203033_x_at"	"FH"	2271	"ENSG00000091483"
+"205306_x_at"	"KMO"	8564	"ENSG00000117009"
+"205307_s_at"	"KMO"	8564	"ENSG00000117009"
+"203838_s_at"	"TNK2"	10188	"ENSG00000061938"
+"203839_s_at"	"TNK2"	10188	"ENSG00000061938"
+"204293_at"	"SGSH"	6448	"ENSG00000181523"
+"204129_at"	"BCL9"	607	"ENSG00000116128"
+"204603_at"	"EXO1"	9156	"ENSG00000174371"
+"204784_s_at"	"MLF1"	4291	"ENSG00000178053"
+"204783_at"	"MLF1"	4291	"ENSG00000178053"
+"201698_s_at"	"SRSF9"	8683	"ENSG00000111786"
+"200044_at"	"SRSF9"	8683	"ENSG00000111786"
+"202652_at"	"APBB1"	322	"ENSG00000166313"
+"205082_s_at"	"AOX1"	316	"ENSG00000138356"
+"205083_at"	"AOX1"	316	"ENSG00000138356"
+"200777_s_at"	"BZW1"	9689	"ENSG00000082153"
+"202768_at"	"FOSB"	2354	"ENSG00000125740"
+"201635_s_at"	"FXR1"	8087	"ENSG00000114416"
+"201636_at"	"FXR1"	8087	"ENSG00000114416"
+"201637_s_at"	"FXR1"	8087	"ENSG00000114416"
+"201795_at"	"LBR"	3930	"ENSG00000143815"
+"203719_at"	"ERCC1"	2067	"ENSG00000012061"
+"203720_s_at"	"ERCC1"	2067	"ENSG00000012061"
+"200004_at"	"EIF4G2"	1982	"ENSG00000110321"
+"201511_at"	"AAMP"	14	"ENSG00000127837"
+"203486_s_at"	"ARMC8"	25852	"ENSG00000114098"
+"203487_s_at"	"ARMC8"	25852	"ENSG00000114098"
+"202253_s_at"	"DNM2"	1785	"ENSG00000079805"
+"205095_s_at"	"ATP6V0A1"	535	"ENSG00000033627"
+"205140_at"	"FPGT"	8790	"ENSG00000254685"
+"202499_s_at"	"SLC2A3"	6515	"ENSG00000059804"
+"202497_x_at"	"SLC2A3"	6515	"ENSG00000059804"
+"202498_s_at"	"SLC2A3"	6515	"ENSG00000059804"
+"200984_s_at"	"CD59"	966	"ENSG00000085063"
+"200985_s_at"	"CD59"	966	"ENSG00000085063"
+"201655_s_at"	"HSPG2"	3339	"ENSG00000142798"
+"201654_s_at"	"HSPG2"	3339	"ENSG00000142798"
+"204549_at"	"IKBKE"	9641	"ENSG00000263528"
+"201850_at"	"CAPG"	822	"ENSG00000042493"
+"201056_at"	"GOLGB1"	2804	"ENSG00000173230"
+"201057_s_at"	"GOLGB1"	2804	"ENSG00000173230"
+"200769_s_at"	"MAT2A"	4144	"ENSG00000168906"
+"200768_s_at"	"MAT2A"	4144	"ENSG00000168906"
+"202546_at"	"VAMP8"	8673	"ENSG00000118640"
+"204929_s_at"	"VAMP5"	10791	"ENSG00000168899"
+"204995_at"	"CDK5R1"	8851	"ENSG00000176749"
+"204996_s_at"	"CDK5R1"	8851	"ENSG00000176749"
+"204441_s_at"	"POLA2"	23649	"ENSG00000014138"
+"203020_at"	"RABGAP1L"	9910	"ENSG00000152061"
+"203648_at"	"TATDN2"	9797	"ENSG00000157014"
+"202039_at"	"MYO18A"	399687	"ENSG00000196535"
+"201244_s_at"	"RAF1"	5894	"ENSG00000132155"
+"205453_at"	"HOXB2"	3212	"ENSG00000173917"
+"205366_s_at"	"HOXB6"	3216	"ENSG00000108511"
+"204779_s_at"	"HOXB7"	3217	"ENSG00000260027"
+"204778_x_at"	"HOXB7"	3217	"ENSG00000260027"
+"203677_s_at"	"TARBP2"	6895	"ENSG00000139546"
+"203511_s_at"	"TRAPPC3"	27095	"ENSG00000054116"
+"203512_at"	"TRAPPC3"	27095	"ENSG00000054116"
+"200856_x_at"	"NCOR1"	9611	"ENSG00000141027"
+"200855_at"	"NCOR1"	9611	"ENSG00000141027"
+"200854_at"	"NCOR1"	9611	"ENSG00000141027"
+"200857_s_at"	"NCOR1"	9611	"ENSG00000141027"
+"205351_at"	"GGCX"	2677	"ENSG00000115486"
+"204663_at"	"ME3"	10873	"ENSG00000151376"
+"203186_s_at"	"S100A4"	6275	"ENSG00000196154"
+"204268_at"	"S100A2"	6273	"ENSG00000196754"
+"205334_at"	"S100A1"	6271	"ENSG00000160678"
+"203641_s_at"	"COBLL1"	22837	"ENSG00000082438"
+"203642_s_at"	"COBLL1"	22837	"ENSG00000082438"
+"204010_s_at"	"KRAS"	3845	"ENSG00000133703"
+"204009_s_at"	"KRAS"	3845	"ENSG00000133703"
+"203172_at"	"FXR2"	9513	"ENSG00000129245"
+"203408_s_at"	"SATB1"	6304	"ENSG00000182568"
+"201656_at"	"ITGA6"	3655	"ENSG00000091409"
+"203319_s_at"	"ZNF148"	7707	"ENSG00000163848"
+"203318_s_at"	"ZNF148"	7707	"ENSG00000163848"
+"202195_s_at"	"TMED5"	50999	"ENSG00000117500"
+"202194_at"	"TMED5"	50999	"ENSG00000117500"
+"201411_s_at"	"PLEKHB2"	55041	"ENSG00000115762"
+"201410_at"	"PLEKHB2"	55041	"ENSG00000115762"
+"202175_at"	"CHPF"	79586	"ENSG00000123989"
+"201349_at"	"NHERF1"	9368	"ENSG00000109062"
+"204382_at"	"NAT9"	26151	"ENSG00000109065"
+"202166_s_at"	"PPP1R2"	5504	"ENSG00000184203"
+"201525_at"	"APOD"	347	"ENSG00000189058"
+"205064_at"	"SPRR1B"	6699	"ENSG00000169469"
+"203618_at"	"FAIM2"	23017	"ENSG00000135472"
+"203619_s_at"	"FAIM2"	23017	"ENSG00000135472"
+"204852_s_at"	"PTPN7"	5778	"ENSG00000143851"
+"205156_s_at"	"ASIC1"	41	"ENSG00000110881"
+"203183_s_at"	"SMARCD1"	6602	"ENSG00000066117"
+"204997_at"	"GPD1"	2819	"ENSG00000167588"
+"201696_at"	"SRSF4"	6429	"ENSG00000116350"
+"203210_s_at"	"RFC5"	5985	"ENSG00000111445"
+"203209_at"	"RFC5"	5985	"ENSG00000111445"
+"203515_s_at"	"PMVK"	10654	"ENSG00000163344"
+"202352_s_at"	"PSMD12"	5718	"ENSG00000197170"
+"202353_s_at"	"PSMD12"	5718	"ENSG00000197170"
+"203194_s_at"	"NUP98"	4928	"ENSG00000110713"
+"203195_s_at"	"NUP98"	4928	"ENSG00000110713"
+"204777_s_at"	"MAL"	4118	"ENSG00000172005"
+"203796_s_at"	"BCL7A"	605	"ENSG00000110987"
+"203795_s_at"	"BCL7A"	605	"ENSG00000110987"
+"201425_at"	"ALDH2"	217	"ENSG00000111275"
+"202832_at"	"GCC2"	9648	"ENSG00000135968"
+"203586_s_at"	"ARL4D"	379	"ENSG00000175906"
+"203334_at"	"DHX8"	1659	"ENSG00000067596"
+"204312_x_at"	"CREB1"	1385	"ENSG00000118260"
+"204314_s_at"	"CREB1"	1385	"ENSG00000118260"
+"204313_s_at"	"CREB1"	1385	"ENSG00000118260"
+"205076_s_at"	"MTMR11"	10903	"ENSG00000014914"
+"203363_s_at"	"ATG13"	9776	"ENSG00000175224"
+"203364_s_at"	"ATG13"	9776	"ENSG00000175224"
+"202117_at"	"ARHGAP1"	392	"ENSG00000175220"
+"202658_at"	"PEX11B"	8799	"ENSG00000131779"
+"202656_s_at"	"SERTAD2"	9792	"ENSG00000179833"
+"202657_s_at"	"SERTAD2"	9792	"ENSG00000179833"
+"201008_s_at"	"TXNIP"	10628	"ENSG00000265972"
+"201009_s_at"	"TXNIP"	10628	"ENSG00000265972"
+"201010_s_at"	"TXNIP"	10628	"ENSG00000265972"
+"204296_at"	""	NA	"ENSG00000264324"
+"204634_at"	"NEK4"	6787	"ENSG00000114904"
+"201429_s_at"	"RPL37A"	6168	"ENSG00000197756"
+"201350_at"	"FLOT2"	2319	"ENSG00000132589"
+"202718_at"	"IGFBP2"	3485	"ENSG00000115457"
+"203426_s_at"	"IGFBP5"	3488	"ENSG00000115461"
+"203425_s_at"	"IGFBP5"	3488	"ENSG00000115461"
+"203424_s_at"	"IGFBP5"	3488	"ENSG00000115461"
+"202458_at"	"PRSS23"	11098	"ENSG00000150687"
+"201936_s_at"	"EIF4G3"	8672	"ENSG00000075151"
+"201935_s_at"	"EIF4G3"	8672	"ENSG00000075151"
+"201246_s_at"	"OTUB1"	55611	"ENSG00000167770"
+"201245_s_at"	"OTUB1"	55611	"ENSG00000167770"
+"203942_s_at"	"MARK2"	2011	"ENSG00000072518"
+"203723_at"	"ITPKB"	3707	"ENSG00000143772"
+"201015_s_at"	"JUP"	3728	"ENSG00000173801"
+"200660_at"	"S100A11"	6282	"ENSG00000163191"
+"204078_at"	"P3H4"	10609	"ENSG00000141696"
+"203119_at"	"CCDC86"	79080	"ENSG00000110104"
+"204922_at"	"C11orf80"	79703	"ENSG00000173715"
+"204847_at"	"ZBTB11"	27107	"ENSG00000066422"
+"205383_s_at"	"ZBTB20"	26137	"ENSG00000181722"
+"205094_at"	"PEX12"	5193	"ENSG00000108733"
+"205216_s_at"	"APOH"	350	"ENSG00000091583"
+"204753_s_at"	"HLF"	3131	"ENSG00000108924"
+"204755_x_at"	"HLF"	3131	"ENSG00000108924"
+"204754_at"	"HLF"	3131	"ENSG00000108924"
+"203414_at"	"MMD"	23531	"ENSG00000108960"
+"203089_s_at"	"HTRA2"	27429	"ENSG00000115317"
+"203167_at"	"TIMP2"	7077	"ENSG00000035862"
+"204299_at"	"SRSF10"	10772	"ENSG00000188529"
+"200877_at"	"CCT4"	10575	"ENSG00000115484"
+"204990_s_at"	"ITGB4"	3691	"ENSG00000132470"
+"204989_s_at"	"ITGB4"	3691	"ENSG00000132470"
+"204895_x_at"	"MUC4"	4585	"ENSG00000145113"
+"204134_at"	"PDE2A"	5138	"ENSG00000186642"
+"202351_at"	"ITGAV"	3685	"ENSG00000138448"
+"202846_s_at"	"PIGC"	5279	"ENSG00000135845"
+"204323_x_at"	"NF1"	4763	"ENSG00000196712"
+"204325_s_at"	"NF1"	4763	"ENSG00000196712"
+"204805_s_at"	"H1-10"	8971	"ENSG00000184897"
+"202786_at"	"STK39"	27347	"ENSG00000198648"
+"203855_at"	"WDR47"	22911	"ENSG00000085433"
+"204393_s_at"	"ACP3"	55	"ENSG00000014257"
+"205278_at"	"GAD1"	2571	"ENSG00000128683"
+"201712_s_at"	"RANBP2"	5903	"ENSG00000153201"
+"201713_s_at"	"RANBP2"	5903	"ENSG00000153201"
+"204882_at"	"ARHGAP25"	9938	"ENSG00000163219"
+"200836_s_at"	"MAP4"	4134	"ENSG00000047849"
+"200835_s_at"	"MAP4"	4134	"ENSG00000047849"
+"201624_at"	"DARS1"	1615	"ENSG00000115866"
+"201623_s_at"	"DARS1"	1615	"ENSG00000115866"
+"201097_s_at"	"ARF4"	378	"ENSG00000168374"
+"201096_s_at"	"ARF4"	378	"ENSG00000168374"
+"202794_at"	"INPP1"	3628	"ENSG00000151689"
+"204804_at"	"TRIM21"	6737	"ENSG00000132109"
+"203711_s_at"	"HIBCH"	26275	"ENSG00000198130"
+"202445_s_at"	"NOTCH2"	4853	"ENSG00000134250"
+"202443_x_at"	"NOTCH2"	4853	"ENSG00000134250"
+"204685_s_at"	"ATP2B2"	491	"ENSG00000157087"
+"200678_x_at"	"GRN"	2896	"ENSG00000030582"
+"204531_s_at"	"BRCA1"	672	"ENSG00000012048"
+"202076_at"	"BIRC2"	329	"ENSG00000110330"
+"204259_at"	"MMP7"	4316	"ENSG00000137673"
+"204385_at"	"KYNU"	8942	"ENSG00000115919"
+"200049_at"	"KAT7"	11143	"ENSG00000136504"
+"201920_at"	"SLC20A1"	6574	"ENSG00000144136"
+"203496_s_at"	"MED1"	5469	"ENSG00000125686"
+"203497_at"	"MED1"	5469	"ENSG00000125686"
+"201450_s_at"	"TIA1"	7072	"ENSG00000116001"
+"201449_at"	"TIA1"	7072	"ENSG00000116001"
+"201448_at"	"TIA1"	7072	"ENSG00000116001"
+"201446_s_at"	"TIA1"	7072	"ENSG00000116001"
+"201447_at"	"TIA1"	7072	"ENSG00000116001"
+"202026_at"	"SDHD"	6392	"ENSG00000204370"
+"202645_s_at"	"MEN1"	4221	"ENSG00000133895"
+"203803_at"	"PCYOX1"	51449	"ENSG00000116005"
+"204171_at"	"RPS6KB1"	6198	"ENSG00000108443"
+"205393_s_at"	"CHEK1"	1111	"ENSG00000149554"
+"205394_at"	"CHEK1"	1111	"ENSG00000149554"
+"203217_s_at"	"ST3GAL5"	8869	"ENSG00000115525"
+"201567_s_at"	"GOLGA4"	2803	"ENSG00000144674"
+"203781_at"	"MRPL33"	9553	"ENSG00000243147"
+"202819_s_at"	"ELOA"	6924	"ENSG00000011007"
+"202818_s_at"	"ELOA"	6924	"ENSG00000011007"
+"202772_at"	"HMGCL"	3155	"ENSG00000117305"
+"205409_at"	"FOSL2"	2355	"ENSG00000075426"
+"202838_at"	"FUCA1"	2517	"ENSG00000179163"
+"204345_at"	"COL16A1"	1307	"ENSG00000084636"
+"204843_s_at"	"PRKAR2A"	5576	"ENSG00000114302"
+"204842_x_at"	"PRKAR2A"	5576	"ENSG00000114302"
+"202619_s_at"	"PLOD2"	5352	"ENSG00000152952"
+"202620_s_at"	"PLOD2"	5352	"ENSG00000152952"
+"203267_s_at"	"DRG2"	1819	"ENSG00000108591"
+"203268_s_at"	"DRG2"	1819	"ENSG00000108591"
+"202797_at"	"SACM1L"	22908	"ENSG00000211456"
+"202708_s_at"	"H2BC21"	8349	"ENSG00000184678"
+"203537_at"	"PRPSAP2"	5636	"ENSG00000141127"
+"201839_s_at"	"EPCAM"	4072	"ENSG00000119888"
+"201971_s_at"	"ATP6V1A"	523	"ENSG00000114573"
+"201972_at"	"ATP6V1A"	523	"ENSG00000114573"
+"200083_at"	"USP22"	23326	"ENSG00000124422"
+"200887_s_at"	"STAT1"	6772	"ENSG00000115415"
+"203437_at"	"TMEM11"	8834	"ENSG00000178307"
+"205227_at"	"IL1RAP"	3556	"ENSG00000196083"
+"203830_at"	"C17orf75"	64149	"ENSG00000108666"
+"200618_at"	"LASP1"	3927	"ENSG00000002834"
+"203287_at"	"LAD1"	3898	"ENSG00000159166"
+"201140_s_at"	"RAB5C"	5878	"ENSG00000108774"
+"201156_s_at"	"RAB5C"	5878	"ENSG00000108774"
+"200621_at"	"CSRP1"	1465	"ENSG00000159176"
+"205424_at"	"TBKBP1"	9755	"ENSG00000198933"
+"204150_at"	"STAB1"	23166	"ENSG00000010327"
+"204367_at"	"SP2"	6668	"ENSG00000167182"
+"203035_s_at"	"PIAS3"	10401	"ENSG00000131788"
+"202664_at"	"WIPF1"	7456	"ENSG00000115935"
+"202663_at"	"WIPF1"	7456	"ENSG00000115935"
+"202665_s_at"	"WIPF1"	7456	"ENSG00000115935"
+"200758_s_at"	"NFE2L1"	4779	"ENSG00000082641"
+"200759_x_at"	"NFE2L1"	4779	"ENSG00000082641"
+"205301_s_at"	"OGG1"	4968	"ENSG00000114026"
+"201986_at"	"MED13"	9969	"ENSG00000108510"
+"201987_at"	"MED13"	9969	"ENSG00000108510"
+"202879_s_at"	"CYTH1"	9267	"ENSG00000108669"
+"202880_s_at"	"CYTH1"	9267	"ENSG00000108669"
+"200672_x_at"	"SPTBN1"	6711	"ENSG00000115306"
+"200671_s_at"	"SPTBN1"	6711	"ENSG00000115306"
+"200841_s_at"	"EPRS1"	2058	"ENSG00000136628"
+"200843_s_at"	"EPRS1"	2058	"ENSG00000136628"
+"200842_s_at"	"EPRS1"	2058	"ENSG00000136628"
+"200604_s_at"	"PRKAR1A"	5573	"ENSG00000108946"
+"200603_at"	"PRKAR1A"	5573	"ENSG00000108946"
+"200605_s_at"	"PRKAR1A"	5573	"ENSG00000108946"
+"201746_at"	"TP53"	7157	"ENSG00000141510"
+"203906_at"	"IQSEC1"	9922	"ENSG00000144711"
+"203907_s_at"	"IQSEC1"	9922	"ENSG00000144711"
+"202374_s_at"	"RAB3GAP2"	25782	"ENSG00000118873"
+"202373_s_at"	"RAB3GAP2"	25782	"ENSG00000118873"
+"202372_at"	"RAB3GAP2"	25782	"ENSG00000118873"
+"203423_at"	"RBP1"	5947	"ENSG00000114115"
+"204365_s_at"	"REEP1"	65055	"ENSG00000068615"
+"204364_s_at"	"REEP1"	65055	"ENSG00000068615"
+"203794_at"	"CDC42BPA"	8476	"ENSG00000143776"
+"202636_at"	"RNF103"	7844	"ENSG00000239305"
+"202756_s_at"	"GPC1"	2817	"ENSG00000063660"
+"202755_s_at"	"GPC1"	2817	"ENSG00000063660"
+"205246_at"	"PEX13"	5194	"ENSG00000162928"
+"200754_x_at"	"SRSF2"	6427	"ENSG00000161547"
+"200753_x_at"	"SRSF2"	6427	"ENSG00000161547"
+"201557_at"	"VAMP2"	6844	"ENSG00000220205"
+"201556_s_at"	"VAMP2"	6844	"ENSG00000220205"
+"201728_s_at"	"BLTP2"	9703	"ENSG00000007202"
+"201729_s_at"	"BLTP2"	9703	"ENSG00000007202"
+"200761_s_at"	"ARL6IP5"	10550	"ENSG00000144746"
+"200760_s_at"	"ARL6IP5"	10550	"ENSG00000144746"
+"203336_s_at"	"ITGB1BP1"	9270	"ENSG00000119185"
+"203337_x_at"	"ITGB1BP1"	9270	"ENSG00000119185"
+"204471_at"	"GAP43"	2596	"ENSG00000172020"
+"204167_at"	"BTD"	686	"ENSG00000169814"
+"200693_at"	"YWHAQ"	10971	"ENSG00000134308"
+"201576_s_at"	"GLB1"	2720	"ENSG00000170266"
+"201380_at"	"CRTAP"	10491	"ENSG00000170275"
+"204066_s_at"	"AGAP1"	116987	"ENSG00000157985"
+"204035_at"	"SCG2"	7857	"ENSG00000171951"
+"202743_at"	"PIK3R3"	8503	"ENSG00000117461"
+"204558_at"	"RAD54L"	8438	"ENSG00000085999"
+"202655_at"	"MANF"	7873	"ENSG00000145050"
+"202689_at"	"RBM15B"	29890	"ENSG00000259956"
+"204377_s_at"	"DCAF1"	9730	"ENSG00000145041"
+"204376_at"	"DCAF1"	9730	"ENSG00000145041"
+"201146_at"	"NFE2L2"	4780	"ENSG00000116044"
+"202853_s_at"	"RYK"	6259	"ENSG00000163785"
+"202909_at"	"EPM2AIP1"	9852	"ENSG00000178567"
+"202520_s_at"	"MLH1"	4292	"ENSG00000076242"
+"200790_at"	"ODC1"	4953	"ENSG00000115758"
+"203840_at"	"BLZF1"	8548	"ENSG00000117475"
+"204713_s_at"	"F5"	2153	"ENSG00000198734"
+"204714_s_at"	"F5"	2153	"ENSG00000198734"
+"202646_s_at"	"CSDE1"	7812	"ENSG00000009307"
+"204235_s_at"	"GULP1"	51454	"ENSG00000144366"
+"204237_at"	"GULP1"	51454	"ENSG00000144366"
+"202926_at"	"NBAS"	51594	"ENSG00000151779"
+"204743_at"	"TAGLN3"	29114	"ENSG00000144834"
+"204621_s_at"	"NR4A2"	4929	"ENSG00000153234"
+"204622_x_at"	"NR4A2"	4929	"ENSG00000153234"
+"203844_at"	"VHL"	7428	"ENSG00000134086"
+"201906_s_at"	"CTDSPL"	10217	"ENSG00000144677"
+"201904_s_at"	"CTDSPL"	10217	"ENSG00000144677"
+"201905_s_at"	"CTDSPL"	10217	"ENSG00000144677"
+"202821_s_at"	"LPP"	4026	"ENSG00000145012"
+"202822_at"	"LPP"	4026	"ENSG00000145012"
+"203068_at"	"KLHL21"	9903	"ENSG00000162413"
+"202263_at"	"CYB5R1"	51706	"ENSG00000159348"
+"202139_at"	"AKR7A2"	8574	"ENSG00000053371"
+"204477_at"	"RABIF"	5877	"ENSG00000183155"
+"204478_s_at"	"RABIF"	5877	"ENSG00000183155"
+"201663_s_at"	"SMC4"	10051	"ENSG00000113810"
+"201664_at"	"SMC4"	10051	"ENSG00000113810"
+"203155_at"	"SETDB1"	9869	"ENSG00000143379"
+"203056_s_at"	"PRDM2"	7799	"ENSG00000116731"
+"205277_at"	"PRDM2"	7799	"ENSG00000116731"
+"203057_s_at"	"PRDM2"	7799	"ENSG00000116731"
+"201593_s_at"	"ZC3H15"	55854	"ENSG00000065548"
+"201595_s_at"	"ZC3H15"	55854	"ENSG00000065548"
+"201408_at"	"PPP1CB"	5500	"ENSG00000213639"
+"201409_s_at"	"PPP1CB"	5500	"ENSG00000213639"
+"201407_s_at"	"PPP1CB"	5500	"ENSG00000213639"
+"201793_x_at"	"SMG7"	9887	"ENSG00000116698"
+"201794_s_at"	"SMG7"	9887	"ENSG00000116698"
+"204334_at"	"KLF7"	8609	"ENSG00000118263"
+"203849_s_at"	"KIF1A"	547	"ENSG00000130294"
+"202178_at"	"PRKCZ"	5590	"ENSG00000067606"
+"203708_at"	"PDE4B"	5142	"ENSG00000184588"
+"204484_at"	"PIK3C2B"	5287	"ENSG00000133056"
+"202261_at"	"VPS72"	6944	"ENSG00000163159"
+"205432_at"	"OVGP1"	5016	"ENSG00000085465"
+"200728_at"	"ACTR2"	10097	"ENSG00000138071"
+"200729_s_at"	"ACTR2"	10097	"ENSG00000138071"
+"200727_s_at"	"ACTR2"	10097	"ENSG00000138071"
+"201421_s_at"	"WDR77"	79084	"ENSG00000116455"
+"202020_s_at"	"LANCL1"	10314	"ENSG00000115365"
+"202019_s_at"	"LANCL1"	10314	"ENSG00000115365"
+"202362_at"	"RAP1A"	5906	"ENSG00000116473"
+"204920_at"	"CPS1"	1373	"ENSG00000021826"
+"201243_s_at"	"ATP1B1"	481	"ENSG00000143153"
+"201242_s_at"	"ATP1B1"	481	"ENSG00000143153"
+"200902_at"	"SELENOF"	9403	"ENSG00000183291"
+"203284_s_at"	"HS2ST1"	9653	"ENSG00000153936"
+"203283_s_at"	"HS2ST1"	9653	"ENSG00000153936"
+"203285_s_at"	"HS2ST1"	9653	"ENSG00000153936"
+"205073_at"	"CYP2J2"	1573	"ENSG00000134716"
+"202337_at"	"PMF1"	11243	"ENSG00000160783"
+"202215_s_at"	"NFYC"	4802	"ENSG00000066136"
+"202216_x_at"	"NFYC"	4802	"ENSG00000066136"
+"201546_at"	"TRIP12"	9320	"ENSG00000153827"
+"200686_s_at"	"SRSF11"	9295	"ENSG00000116754"
+"200685_at"	"SRSF11"	9295	"ENSG00000116754"
+"204137_at"	"GPR137B"	7107	"ENSG00000077585"
+"201493_s_at"	"PUM2"	23369	"ENSG00000055917"
+"204019_s_at"	"SH3YL1"	26751	"ENSG00000035115"
+"200802_at"	"SARS1"	6301	"ENSG00000031698"
+"204029_at"	"CELSR2"	1952	"ENSG00000143126"
+"201629_s_at"	"ACP1"	52	"ENSG00000143727"
+"201630_s_at"	"ACP1"	52	"ENSG00000143727"
+"201896_s_at"	"PSRC1"	84722	"ENSG00000134222"
+"201367_s_at"	"ZFP36L2"	678	"ENSG00000152518"
+"201369_s_at"	"ZFP36L2"	678	"ENSG00000152518"
+"201368_at"	"ZFP36L2"	678	"ENSG00000152518"
+"201274_at"	"PSMA5"	5686	"ENSG00000143106"
+"202953_at"	"C1QB"	713	"ENSG00000173369"
+"202931_x_at"	"BIN1"	274	"ENSG00000136717"
+"205404_at"	"HSD11B1"	3290	"ENSG00000117594"
+"202176_at"	"ERCC3"	2071	"ENSG00000163161"
+"202597_at"	"IRF6"	3664	"ENSG00000117595"
+"204700_x_at"	"UTP25"	27042	"ENSG00000117597"
+"204699_s_at"	"UTP25"	27042	"ENSG00000117597"
+"201706_s_at"	"PEX19"	5824	"ENSG00000162735"
+"201707_at"	"PEX19"	5824	"ENSG00000162735"
+"203470_s_at"	"PLEK"	5341	"ENSG00000115956"
+"203471_s_at"	"PLEK"	5341	"ENSG00000115956"
+"202322_s_at"	"GGPS1"	9453	"ENSG00000152904"
+"202321_at"	"GGPS1"	9453	"ENSG00000152904"
+"203911_at"	"RAP1GAP"	5909	"ENSG00000076864"
+"204645_at"	"CCNT2"	905	"ENSG00000082258"
+"201585_s_at"	"SFPQ"	6421	"ENSG00000116560"
+"201586_s_at"	"SFPQ"	6421	"ENSG00000116560"
+"202494_at"	"PPIE"	10450	"ENSG00000084072"
+"203698_s_at"	"FRZB"	2487	"ENSG00000162998"
+"203697_at"	"FRZB"	2487	"ENSG00000162998"
+"203158_s_at"	"GLS"	2744	"ENSG00000115419"
+"203159_at"	"GLS"	2744	"ENSG00000115419"
+"203157_s_at"	"GLS"	2744	"ENSG00000115419"
+"204552_at"	"INPP4A"	3631	"ENSG00000040933"
+"204553_x_at"	"INPP4A"	3631	"ENSG00000040933"
+"203583_at"	"UNC50"	25972	"ENSG00000115446"
+"205175_s_at"	"KHK"	3795	"ENSG00000138030"
+"201927_s_at"	"PKP4"	8502	"ENSG00000144283"
+"201929_s_at"	"PKP4"	8502	"ENSG00000144283"
+"205168_at"	"DDR2"	4921	"ENSG00000162733"
+"205434_s_at"	"AAK1"	22848	"ENSG00000115977"
+"205435_s_at"	"AAK1"	22848	"ENSG00000115977"
+"205251_at"	"PER2"	8864	"ENSG00000132326"
+"202613_at"	"CTPS1"	1503	"ENSG00000171793"
+"202834_at"	"AGT"	183	"ENSG00000135744"
+"201862_s_at"	"LRRFIP1"	9208	"ENSG00000124831"
+"201861_s_at"	"LRRFIP1"	9208	"ENSG00000124831"
+"202762_at"	"ROCK2"	9475	"ENSG00000134318"
+"204914_s_at"	"SOX11"	6664	"ENSG00000176887"
+"204915_s_at"	"SOX11"	6664	"ENSG00000176887"
+"204913_s_at"	"SOX11"	6664	"ENSG00000176887"
+"202754_at"	"R3HDM1"	23518	"ENSG00000048991"
+"204891_s_at"	"LCK"	3932	"ENSG00000182866"
+"204890_s_at"	"LCK"	3932	"ENSG00000182866"
+"201930_at"	"MCM6"	4175	"ENSG00000076003"
+"201214_s_at"	"PPP1R7"	5510	"ENSG00000115685"
+"201213_at"	"PPP1R7"	5510	"ENSG00000115685"
+"200643_at"	"HDLBP"	3069	"ENSG00000115677"
+"202481_at"	"DHRS3"	9249	"ENSG00000162496"
+"203518_at"	"LYST"	1130	"ENSG00000143669"
+"204962_s_at"	"CENPA"	1058	"ENSG00000115163"
+"202287_s_at"	"TACSTD2"	4070	"ENSG00000184292"
+"202286_s_at"	"TACSTD2"	4070	"ENSG00000184292"
+"202435_s_at"	"CYP1B1"	1545	"ENSG00000138061"
+"202436_s_at"	"CYP1B1"	1545	"ENSG00000138061"
+"202437_s_at"	"CYP1B1"	1545	"ENSG00000138061"
+"202434_s_at"	"CYP1B1"	1545	"ENSG00000138061"
+"203016_s_at"	"SSX2IP"	117178	"ENSG00000117155"
+"203018_s_at"	"SSX2IP"	117178	"ENSG00000117155"
+"203015_s_at"	"SSX2IP"	117178	"ENSG00000117155"
+"203019_x_at"	"SSX2IP"	117178	"ENSG00000117155"
+"203017_s_at"	"SSX2IP"	117178	"ENSG00000117155"
+"201250_s_at"	"SLC2A1"	6513	"ENSG00000117394"
+"201249_at"	"SLC2A1"	6513	"ENSG00000117394"
+"205210_at"	"TGFBRAP1"	9392	"ENSG00000135966"
+"203120_at"	"TP53BP2"	7159	"ENSG00000143514"
+"202388_at"	"RGS2"	5997	"ENSG00000116741"
+"201145_at"	"HAX1"	10456	"ENSG00000143575"
+"202911_at"	"MSH6"	2956	"ENSG00000116062"
+"203725_at"	"GADD45A"	1647	"ENSG00000116717"
+"203535_at"	"S100A9"	6280	"ENSG00000163220"
+"202917_s_at"	"S100A8"	6279	"ENSG00000143546"
+"202251_at"	"PRPF3"	9129	"ENSG00000117360"
+"203230_at"	"DVL1"	1855	"ENSG00000107404"
+"202502_at"	"ACADM"	34	"ENSG00000117054"
+"201561_s_at"	"CLSTN1"	22883	"ENSG00000171603"
+"203081_at"	"CTNNBIP1"	56998	"ENSG00000178585"
+"203879_at"	"PIK3CD"	5293	"ENSG00000171608"
+"201336_at"	"VAMP3"	9341	"ENSG00000049245"
+"201337_s_at"	"VAMP3"	9341	"ENSG00000049245"
+"200006_at"	"PARK7"	11315	"ENSG00000116288"
+"204514_at"	"DPH2"	1802	"ENSG00000132768"
+"201648_at"	"JAK1"	3716	"ENSG00000162434"
+"205263_at"	"BCL10"	8915	"ENSG00000142867"
+"201926_s_at"	"CD55"	1604	"ENSG00000196352"
+"201925_s_at"	"CD55"	1604	"ENSG00000196352"
+"200065_s_at"	"ARF1"	375	"ENSG00000143761"
+"205253_at"	"PBX1"	5087	"ENSG00000185630"
+"203649_s_at"	"PLA2G2A"	5320	"ENSG00000188257"
+"201200_at"	"CREG1"	8804	"ENSG00000143162"
+"205103_at"	"MIR9-1HG"	10485	"ENSG00000125462"
+"202288_at"	"MTOR"	2475	"ENSG00000198793"
+"202964_s_at"	"RFX5"	5993	"ENSG00000143390"
+"202963_at"	"RFX5"	5993	"ENSG00000143390"
+"202243_s_at"	"PSMB4"	5692	"ENSG00000159377"
+"202244_at"	"PSMB4"	5692	"ENSG00000159377"
+"200020_at"	"TARDBP"	23435	"ENSG00000120948"
+"203811_s_at"	"DNAJB4"	11080	"ENSG00000162616"
+"203810_at"	"DNAJB4"	11080	"ENSG00000162616"
+"203091_at"	"FUBP1"	8880	"ENSG00000162613"
+"204648_at"	"NPR1"	4881	"ENSG00000169418"
+"200745_s_at"	"GNB1"	2782	"ENSG00000078369"
+"200744_s_at"	"GNB1"	2782	"ENSG00000078369"
+"200746_s_at"	"GNB1"	2782	"ENSG00000078369"
+"204149_s_at"	"GSTM4"	2948	"ENSG00000168765"
+"202554_s_at"	"GSTM3"	2947	"ENSG00000134202"
+"201231_s_at"	"ENO1"	2023	"ENSG00000074800"
+"200939_s_at"	"RERE"	473	"ENSG00000142599"
+"200938_s_at"	"RERE"	473	"ENSG00000142599"
+"200940_s_at"	"RERE"	473	"ENSG00000142599"
+"200594_x_at"	"HNRNPU"	3192	"ENSG00000153187"
+"200593_s_at"	"HNRNPU"	3192	"ENSG00000153187"
+"201997_s_at"	"SPEN"	23013	"ENSG00000065526"
+"201996_s_at"	"SPEN"	23013	"ENSG00000065526"
+"204270_at"	"SKI"	6497	"ENSG00000157933"
+"201548_s_at"	"KDM5B"	10765	"ENSG00000117139"
+"201549_x_at"	"KDM5B"	10765	"ENSG00000117139"
+"201957_at"	"PPP1R12B"	4660	"ENSG00000077157"
+"201958_s_at"	"PPP1R12B"	4660	"ENSG00000077157"
+"202915_s_at"	"FAM20B"	9917	"ENSG00000116199"
+"202916_s_at"	"FAM20B"	9917	"ENSG00000116199"
+"203863_at"	"ACTN2"	88	"ENSG00000077522"
+"203861_s_at"	"ACTN2"	88	"ENSG00000077522"
+"203864_s_at"	"ACTN2"	88	"ENSG00000077522"
+"203862_s_at"	"ACTN2"	88	"ENSG00000077522"
+"201482_at"	"QSOX1"	5768	"ENSG00000116260"
+"201559_s_at"	"CLIC4"	25932	"ENSG00000169504"
+"201560_at"	"CLIC4"	25932	"ENSG00000169504"
+"201225_s_at"	"SRRM1"	10250	"ENSG00000133226"
+"204223_at"	"PRELP"	5549	"ENSG00000188783"
+"205410_s_at"	"ATP2B4"	493	"ENSG00000058668"
+"201949_x_at"	"CAPZB"	832	"ENSG00000077549"
+"201950_x_at"	"CAPZB"	832	"ENSG00000077549"
+"204198_s_at"	"RUNX3"	864	"ENSG00000020633"
+"204197_s_at"	"RUNX3"	864	"ENSG00000020633"
+"202709_at"	"FMOD"	2331	"ENSG00000122176"
+"204320_at"	"COL11A1"	1301	"ENSG00000060718"
+"204373_s_at"	"CEP350"	9857	"ENSG00000135837"
+"200919_at"	"PHC2"	1912	"ENSG00000134686"
+"201236_s_at"	"BTG2"	7832	"ENSG00000159388"
+"201235_s_at"	"BTG2"	7832	"ENSG00000159388"
+"201611_s_at"	"ICMT"	23463	"ENSG00000116237"
+"201609_x_at"	"ICMT"	23463	"ENSG00000116237"
+"201610_at"	"ICMT"	23463	"ENSG00000116237"
+"204338_s_at"	"RGS4"	5999	"ENSG00000117152"
+"204339_s_at"	"RGS4"	5999	"ENSG00000117152"
+"204337_at"	"RGS4"	5999	"ENSG00000117152"
+"200075_s_at"	"GUK1"	2987	"ENSG00000143774"
+"201377_at"	"UBAP2L"	9898	"ENSG00000143569"
+"201378_s_at"	"UBAP2L"	9898	"ENSG00000143569"
+"200848_at"	"AHCYL1"	10768	"ENSG00000168710"
+"200849_s_at"	"AHCYL1"	10768	"ENSG00000168710"
+"200850_s_at"	"AHCYL1"	10768	"ENSG00000168710"
+"202742_s_at"	"PRKACB"	5567	"ENSG00000142875"
+"202741_at"	"PRKACB"	5567	"ENSG00000142875"
+"204678_s_at"	"KCNK1"	3775	"ENSG00000135750"
+"204679_at"	"KCNK1"	3775	"ENSG00000135750"
+"203402_at"	"KCNAB2"	8514	"ENSG00000069424"
+"201465_s_at"	"JUN"	3725	"ENSG00000177606"
+"201464_x_at"	"JUN"	3725	"ENSG00000177606"
+"201466_s_at"	"JUN"	3725	"ENSG00000177606"
+"203950_s_at"	"CLCN6"	1185	"ENSG00000011021"
+"205323_s_at"	"MTF1"	4520	"ENSG00000188786"
+"205322_s_at"	"MTF1"	4520	"ENSG00000188786"
+"203818_s_at"	"SF3A3"	10946	"ENSG00000183431"
+"201932_at"	"LRRC41"	10489	"ENSG00000132128"
+"204231_s_at"	"FAAH"	2166	"ENSG00000117480"
+"201339_s_at"	"SCP2"	6342	"ENSG00000116171"
+"203053_at"	"BCAS2"	10286	"ENSG00000116752"
+"200896_x_at"	"HDGF"	3068	"ENSG00000143321"
+"202559_x_at"	"CHTOP"	26097	"ENSG00000160679"
+"202560_s_at"	"CHTOP"	26097	"ENSG00000160679"
+"203429_s_at"	"SUCO"	51430	"ENSG00000094975"
+"201382_at"	"CACYBP"	27101	"ENSG00000116161"
+"203800_s_at"	"MRPS14"	63931	"ENSG00000120333"
+"203801_at"	"MRPS14"	63931	"ENSG00000120333"
+"203144_s_at"	"KIAA0040"	9674	"ENSG00000235750"
+"203143_s_at"	"KIAA0040"	9674	"ENSG00000235750"
+"205177_at"	"TNNI1"	7135	"ENSG00000159173"
+"203766_s_at"	"LMOD1"	25802	"ENSG00000163431"
+"201821_s_at"	"TIMM17A"	10440	"ENSG00000134375"
+"201822_at"	"TIMM17A"	10440	"ENSG00000134375"
+"205169_at"	"RBBP5"	5929	"ENSG00000117222"
+"202672_s_at"	"ATF3"	467	"ENSG00000162772"
+"202271_at"	"FBXO28"	23219	"ENSG00000143756"
+"202272_s_at"	"FBXO28"	23219	"ENSG00000143756"
+"203983_at"	"TSNAX"	7257	"ENSG00000116918"
+"203411_s_at"	"LMNA"	4000	"ENSG00000160789"
+"202675_at"	"SDHB"	6390	"ENSG00000117118"
+"201181_at"	"GNAI3"	2773	"ENSG00000065135"
+"201180_s_at"	"GNAI3"	2773	"ENSG00000065135"
+"201179_s_at"	"GNAI3"	2773	"ENSG00000065135"
+"203591_s_at"	"CSF3R"	1441	"ENSG00000119535"
+"203984_s_at"	"CASP9"	842	"ENSG00000132906"
+"207063_at"	"TTTY14"	83869	"ENSG00000176728"
+"206700_s_at"	"KDM5D"	8284	"ENSG00000012817"
+"206279_at"	"PRKY"	5616	"ENSG00000099725"
+"207893_at"	"SRY"	6736	"ENSG00000184895"
+"207246_at"	"ZFY"	7544	"ENSG00000067646"
+"208067_x_at"	"UTY"	7404	"ENSG00000183878"
+"210322_x_at"	"UTY"	7404	"ENSG00000183878"
+"208220_x_at"	"AMELY"	266	"ENSG00000099721"
+"207703_at"	"NLGN4Y"	22829	"ENSG00000165246"
+"207638_at"	"TMPRSS15"	5651	"ENSG00000154646"
+"208395_s_at"	"URB1"	9875	"ENSG00000142207"
+"206387_at"	"CDX2"	1045	"ENSG00000165556"
+"205669_at"	"NCAM2"	4685	"ENSG00000154654"
+"207258_at"	"DSCR4"	10281	"ENSG00000184029"
+"207322_at"	"ITSN1"	6453	"ENSG00000205726"
+"209297_at"	"ITSN1"	6453	"ENSG00000205726"
+"209298_s_at"	"ITSN1"	6453	"ENSG00000205726"
+"206884_s_at"	"SCEL"	8796	"ENSG00000136155"
+"209212_s_at"	"KLF5"	688	"ENSG00000102554"
+"209211_at"	"KLF5"	688	"ENSG00000102554"
+"206940_s_at"	"POU4F1"	5457	"ENSG00000152192"
+"210454_s_at"	"KCNJ6"	3763	"ENSG00000157542"
+"209686_at"	"S100B"	6285	"ENSG00000160307"
+"205656_at"	"PCDH17"	27253	"ENSG00000118946"
+"210119_at"	"KCNJ15"	3772	"ENSG00000157551"
+"207881_at"	""	NA	"ENSG00000279365"
+"206566_at"	"SLC7A1"	6541	"ENSG00000139514"
+"207254_at"	"SLC15A1"	6564	"ENSG00000088386"
+"209213_at"	"CBR1"	873	"ENSG00000159228"
+"209858_x_at"	"MPPE1"	65258	"ENSG00000154889"
+"206764_x_at"	"MPPE1"	65258	"ENSG00000154889"
+"206915_at"	"NKX2-2"	4821	"ENSG00000125820"
+"206803_at"	"PDYN"	5173	"ENSG00000101327"
+"206502_s_at"	"INSM1"	3642	"ENSG00000173404"
+"205548_s_at"	"BTG3"	10950	"ENSG00000154640"
+"207925_at"	"CST5"	1473	"ENSG00000170367"
+"206558_at"	"SIM2"	6493	"ENSG00000159263"
+"208157_at"	"SIM2"	6493	"ENSG00000159263"
+"206652_at"	"ZMYM5"	9205	"ENSG00000132950"
+"206744_s_at"	"ZMYM5"	9205	"ENSG00000132950"
+"208533_at"	"SOX1"	6656	"ENSG00000182968"
+"207267_s_at"	"RIPPLY3"	53820	"ENSG00000183145"
+"210140_at"	"CST7"	8530	"ENSG00000077984"
+"206656_s_at"	"APMAP"	57136	"ENSG00000101474"
+"206746_at"	"BFSP1"	631	"ENSG00000125864"
+"208409_at"	"SLC14A2"	8170	"ENSG00000132874"
+"208555_x_at"	"CST2"	1470	"ENSG00000170369"
+"208979_at"	"NCOA6"	23054	"ENSG00000198646"
+"209954_x_at"	"SS18"	6760	"ENSG00000141380"
+"209185_s_at"	"IRS2"	8660	"ENSG00000185950"
+"209184_s_at"	"IRS2"	8660	"ENSG00000185950"
+"209099_x_at"	"JAG1"	182	"ENSG00000101384"
+"209098_s_at"	"JAG1"	182	"ENSG00000101384"
+"209097_s_at"	"JAG1"	182	"ENSG00000101384"
+"209237_s_at"	"SLC23A2"	9962	"ENSG00000089057"
+"209236_at"	"SLC23A2"	9962	"ENSG00000089057"
+"209033_s_at"	"DYRK1A"	1859	"ENSG00000157540"
+"206984_s_at"	"RIT2"	6014	"ENSG00000152214"
+"206674_at"	"FLT3"	2322	"ENSG00000122025"
+"209692_at"	"EYA2"	2139	"ENSG00000064655"
+"208064_s_at"	"ST8SIA3"	51046	"ENSG00000177511"
+"208065_at"	"ST8SIA3"	51046	"ENSG00000177511"
+"207018_s_at"	"RAB27B"	5874	"ENSG00000041353"
+"207017_at"	"RAB27B"	5874	"ENSG00000041353"
+"209060_x_at"	"NCOA3"	8202	"ENSG00000124151"
+"209061_at"	"NCOA3"	8202	"ENSG00000124151"
+"209062_x_at"	"NCOA3"	8202	"ENSG00000124151"
+"207700_s_at"	"NCOA3"	8202	"ENSG00000124151"
+"209775_x_at"	"SLC19A1"	6573	"ENSG00000173638"
+"209777_s_at"	"SLC19A1"	6573	"ENSG00000173638"
+"209776_s_at"	"SLC19A1"	6573	"ENSG00000173638"
+"205557_at"	"BPI"	671	"ENSG00000101425"
+"208131_s_at"	"PTGIS"	5740	"ENSG00000124212"
+"208492_at"	"RFXAP"	5994	"ENSG00000133111"
+"208299_at"	"CACNA1I"	8911	"ENSG00000100346"
+"206651_s_at"	"CPB2"	1361	"ENSG00000080618"
+"206898_at"	"CDH19"	28513	"ENSG00000071991"
+"208885_at"	"LCP1"	3936	"ENSG00000136167"
+"207594_s_at"	"SYNJ1"	8867	"ENSG00000159082"
+"209724_s_at"	"ZBTB14"	7541	"ENSG00000198081"
+"208199_s_at"	"ZBTB14"	7541	"ENSG00000198081"
+"210014_x_at"	"IDH3B"	3420	"ENSG00000101365"
+"210418_s_at"	"IDH3B"	3420	"ENSG00000101365"
+"208726_s_at"	"EIF2S2"	8894	"ENSG00000125977"
+"208725_at"	"EIF2S2"	8894	"ENSG00000125977"
+"210144_at"	"TBC1D22A"	25771	"ENSG00000054611"
+"209650_s_at"	"TBC1D22A"	25771	"ENSG00000054611"
+"207302_at"	"SGCG"	6445	"ENSG00000102683"
+"209072_at"	"MBP"	4155	"ENSG00000197971"
+"207323_s_at"	"MBP"	4155	"ENSG00000197971"
+"210136_at"	"MBP"	4155	"ENSG00000197971"
+"209591_s_at"	"BMP7"	655	"ENSG00000101144"
+"209590_at"	"BMP7"	655	"ENSG00000101144"
+"209009_at"	"ESD"	2098	"ENSG00000139684"
+"207135_at"	"HTR2A"	3356	"ENSG00000102468"
+"208089_s_at"	"TDRD3"	81550	"ENSG00000083544"
+"208854_s_at"	"STK24"	8428	"ENSG00000102572"
+"208855_s_at"	"STK24"	8428	"ENSG00000102572"
+"206546_at"	"SYCP2"	10388	"ENSG00000196074"
+"210150_s_at"	"LAMA5"	3911	"ENSG00000130702"
+"210276_s_at"	"TRIOBP"	11078	"ENSG00000100106"
+"207315_at"	"CD226"	10666	"ENSG00000150637"
+"207735_at"	"RNF125"	54941	"ENSG00000101695"
+"205593_s_at"	"PDE9A"	5152	"ENSG00000160191"
+"208399_s_at"	"EDN3"	1908	"ENSG00000124205"
+"209423_s_at"	"PHF20"	51230	"ENSG00000025293"
+"206567_s_at"	"PHF20"	51230	"ENSG00000025293"
+"209422_at"	"PHF20"	51230	"ENSG00000025293"
+"208590_x_at"	"GJA3"	2700	"ENSG00000121743"
+"205794_s_at"	"NOVA1"	4857	"ENSG00000139910"
+"207437_at"	"NOVA1"	4857	"ENSG00000139910"
+"210281_s_at"	"ZMYM2"	7750	"ENSG00000121741"
+"210282_at"	"ZMYM2"	7750	"ENSG00000121741"
+"207482_at"	"TP53TG5"	27296	"ENSG00000124251"
+"207873_x_at"	"SEZ6L"	23544	"ENSG00000100095"
+"208601_s_at"	"TUBB1"	81027	"ENSG00000101162"
+"206614_at"	"GDF5"	8200	"ENSG00000125965"
+"208410_x_at"	"AMELX"	265	"ENSG00000125363"
+"205722_s_at"	"GFRA2"	2675	"ENSG00000168546"
+"205721_at"	"GFRA2"	2675	"ENSG00000168546"
+"206436_at"	"MPPED1"	758	"ENSG00000186732"
+"205817_at"	"SIX1"	6495	"ENSG00000126778"
+"207956_x_at"	"PDS5B"	23047	"ENSG00000083642"
+"205780_at"	"BIK"	638	"ENSG00000100290"
+"205652_s_at"	"TTLL1"	25809	"ENSG00000100271"
+"209020_at"	"OSER1"	51526	"ENSG00000132823"
+"206108_s_at"	"SRSF6"	6431	"ENSG00000124193"
+"208804_s_at"	"SRSF6"	6431	"ENSG00000124193"
+"206934_at"	"SIRPB1"	10326	"ENSG00000101307"
+"206115_at"	"EGR3"	1960	"ENSG00000179388"
+"207250_at"	"SIX6"	4990	"ENSG00000184302"
+"209222_s_at"	"OSBPL2"	9885	"ENSG00000130703"
+"209221_s_at"	"OSBPL2"	9885	"ENSG00000130703"
+"210279_at"	"GPR18"	2841	"ENSG00000125245"
+"208090_s_at"	"AIRE"	326	"ENSG00000160224"
+"207929_at"	"GRPR"	2925	"ENSG00000126010"
+"209431_s_at"	"PATZ1"	23598	"ENSG00000100105"
+"209494_s_at"	"PATZ1"	23598	"ENSG00000100105"
+"209656_s_at"	"TMEM47"	83604	"ENSG00000147027"
+"209655_s_at"	"TMEM47"	83604	"ENSG00000147027"
+"210407_at"	"PPM1A"	5494	"ENSG00000100614"
+"206731_at"	"CNKSR2"	22866	"ENSG00000149970"
+"209042_s_at"	"UBE2G2"	7327	"ENSG00000184787"
+"209041_s_at"	"UBE2G2"	7327	"ENSG00000184787"
+"208529_at"	"BTF3P11"	NA	"ENSG00000118903"
+"207936_x_at"	"RFPL3"	10738	"ENSG00000128276"
+"207448_at"	"POFUT2"	23275	"ENSG00000186866"
+"209578_s_at"	"POFUT2"	23275	"ENSG00000186866"
+"207449_s_at"	"POFUT2"	23275	"ENSG00000186866"
+"208423_s_at"	"MSR1"	4481	"ENSG00000038945"
+"208422_at"	"MSR1"	4481	"ENSG00000038945"
+"207701_at"	"YWHAH-AS1"	25775	"ENSG00000128254"
+"205663_at"	"PCBP3"	54039	"ENSG00000183570"
+"207095_at"	"SLC10A2"	6555	"ENSG00000125255"
+"206735_at"	"CHRNA4"	1137	"ENSG00000101204"
+"206736_x_at"	"CHRNA4"	1137	"ENSG00000101204"
+"205595_at"	"DSG3"	1830	"ENSG00000134757"
+"206185_at"	"CRYBB1"	1414	"ENSG00000100122"
+"206843_at"	"CRYBA4"	1413	"ENSG00000196431"
+"209660_at"	"TTR"	7276	"ENSG00000118271"
+"206498_at"	"OCA2"	4948	"ENSG00000104044"
+"207200_at"	"OTC"	5009	"ENSG00000036473"
+"206482_at"	"PTK6"	5753	"ENSG00000101213"
+"205961_s_at"	"PSIP1"	11168	"ENSG00000164985"
+"209337_at"	"PSIP1"	11168	"ENSG00000164985"
+"206002_at"	"ADGRG2"	10149	"ENSG00000173698"
+"209189_at"	"FOS"	2353	"ENSG00000170345"
+"208387_s_at"	"MMP24"	10893	"ENSG00000125966"
+"209706_at"	"NKX3-1"	4824	"ENSG00000167034"
+"205510_s_at"	"GABPB1-IT1"	55056	"ENSG00000285410"
+"205511_at"	"GABPB1-IT1"	55056	"ENSG00000285410"
+"206235_at"	"LIG4"	3981	"ENSG00000174405"
+"207576_x_at"	"OXT"	5020	"ENSG00000101405"
+"207848_at"	"AVP"	551	"ENSG00000101200"
+"209171_at"	"ITPA"	3704	"ENSG00000125877"
+"208937_s_at"	"ID1"	3397	"ENSG00000125968"
+"205751_at"	"SH3GL2"	6456	"ENSG00000107295"
+"210052_s_at"	"TPX2"	22974	"ENSG00000088325"
+"208259_x_at"	"IFNA7"	3444	"ENSG00000214042"
+"208351_s_at"	"MAPK1"	5594	"ENSG00000100030"
+"210268_at"	"NFX1"	4799	"ENSG00000086102"
+"210077_s_at"	"SRSF5"	6430	"ENSG00000100650"
+"206665_s_at"	"BCL2L1"	598	"ENSG00000171552"
+"208427_s_at"	"ELAVL2"	1993	"ENSG00000107105"
+"209399_at"	"HLCS"	3141	"ENSG00000159267"
+"207833_s_at"	"HLCS"	3141	"ENSG00000159267"
+"209160_at"	"AKR1C3"	8644	"ENSG00000196139"
+"207885_at"	"S100G"	795	"ENSG00000169906"
+"206473_at"	"MBTPS2"	51360	"ENSG00000012174"
+"209838_at"	"COPS2"	9318	"ENSG00000166200"
+"206147_x_at"	"SCML2"	10389	"ENSG00000102098"
+"208961_s_at"	"KLF6"	1316	"ENSG00000067082"
+"208960_s_at"	"KLF6"	1316	"ENSG00000067082"
+"205711_x_at"	"ATP5F1C"	509	"ENSG00000165629"
+"208870_x_at"	"ATP5F1C"	509	"ENSG00000165629"
+"207069_s_at"	"SMAD6"	4091	"ENSG00000137834"
+"209886_s_at"	"SMAD6"	4091	"ENSG00000137834"
+"210270_at"	"RGS6"	9628	"ENSG00000182732"
+"206756_at"	"CHST7"	56548	"ENSG00000147119"
+"206704_at"	"CLCN5"	1184	"ENSG00000171365"
+"206802_at"	"PAX5"	5079	"ENSG00000196092"
+"206404_at"	"FGF9"	2254	"ENSG00000102678"
+"209654_at"	"ICE1"	23379	"ENSG00000164151"
+"205664_at"	"KIN"	22944	"ENSG00000151657"
+"210187_at"	"FKBP1A"	2280	"ENSG00000088832"
+"205562_at"	"RPP38"	10557	"ENSG00000152464"
+"206575_at"	"CDKL5"	6792	"ENSG00000008086"
+"208513_at"	"FOXB1"	27023	"ENSG00000171956"
+"210384_at"	"PRMT2"	3275	"ENSG00000160310"
+"209597_s_at"	"PNMA2"	10687	"ENSG00000240694"
+"209598_at"	"PNMA2"	10687	"ENSG00000240694"
+"206775_at"	"CUBN"	8029	"ENSG00000107611"
+"206712_at"	"GRTP1"	79774	"ENSG00000139835"
+"206022_at"	"NDP"	4693	"ENSG00000124479"
+"206308_at"	"TRDMT1"	1787	"ENSG00000107614"
+"207019_s_at"	"AKAP4"	8852	"ENSG00000147081"
+"208097_s_at"	"TMX1"	81542	"ENSG00000139921"
+"209476_at"	"TMX1"	81542	"ENSG00000139921"
+"209584_x_at"	"APOBEC3C"	27350	"ENSG00000244509"
+"209851_at"	"ZC3H13"	23091	"ENSG00000123200"
+"208491_s_at"	"PGM5"	5239	"ENSG00000154330"
+"209764_at"	"MGAT3"	4248	"ENSG00000128268"
+"208058_s_at"	"MGAT3"	4248	"ENSG00000128268"
+"210388_at"	"PLCB2"	5330	"ENSG00000137841"
+"207386_at"	"CYP7B1"	9420	"ENSG00000172817"
+"208482_at"	"SSTR1"	6751	"ENSG00000139874"
+"205708_s_at"	"TRPM2"	7226	"ENSG00000142185"
+"208678_at"	"ATP6V1E1"	529	"ENSG00000131100"
+"205570_at"	"PIP4K2A"	5305	"ENSG00000150867"
+"207469_s_at"	"PIR"	8544	"ENSG00000087842"
+"208519_x_at"	"GNRH2"	2797	"ENSG00000125787"
+"210042_s_at"	"CTSZ"	1522	"ENSG00000101160"
+"206889_at"	"ARHGDIG"	398	"ENSG00000242173"
+"206780_at"	"GAD2"	2572	"ENSG00000136750"
+"208900_s_at"	"TOP1"	7150	"ENSG00000198900"
+"205694_at"	"TYRP1"	7306	"ENSG00000107165"
+"206550_s_at"	"NUP155"	9631	"ENSG00000113569"
+"210275_s_at"	"ZFAND5"	7763	"ENSG00000107372"
+"206947_at"	"B3GALT5"	10317	"ENSG00000183778"
+"210296_s_at"	"PEX2"	5828	"ENSG00000164751"
+"205775_at"	"FAM50B"	26240	"ENSG00000145945"
+"206503_x_at"	"PML"	5371	"ENSG00000140464"
+"210362_x_at"	"PML"	5371	"ENSG00000140464"
+"206631_at"	"PTGER2"	5732	"ENSG00000125384"
+"206176_at"	"BMP6"	654	"ENSG00000153162"
+"210068_s_at"	"AQP4"	361	"ENSG00000171885"
+"210067_at"	"AQP4"	361	"ENSG00000171885"
+"210066_s_at"	"AQP4"	361	"ENSG00000171885"
+"207676_at"	"ONECUT2"	9480	"ENSG00000119547"
+"210005_at"	"GART"	2618	"ENSG00000159131"
+"210318_at"	"RBP3"	5949	"ENSG00000265203"
+"207015_s_at"	"ALDH1A2"	8854	"ENSG00000128918"
+"207016_s_at"	"ALDH1A2"	8854	"ENSG00000128918"
+"207606_s_at"	"ARHGAP12"	94134	"ENSG00000165322"
+"207456_at"	"HNF4G"	3174	"ENSG00000164749"
+"207780_at"	"CYLC2"	1539	"ENSG00000155833"
+"208742_s_at"	"SAP18"	10284	"ENSG00000150459"
+"208741_at"	"SAP18"	10284	"ENSG00000150459"
+"208740_at"	"SAP18"	10284	"ENSG00000150459"
+"208864_s_at"	"TXN"	7295	"ENSG00000136810"
+"206918_s_at"	"CPNE1"	8904	"ENSG00000214078"
+"207367_at"	"ATP12A"	479	"ENSG00000075673"
+"206107_at"	"RGS11"	8786	"ENSG00000076344"
+"206104_at"	"ISL1"	3670	"ENSG00000016082"
+"210002_at"	"GATA6"	2627	"ENSG00000141448"
+"206159_at"	"GDF10"	2662	"ENSG00000266524"
+"206258_at"	"ST8SIA5"	29906	"ENSG00000101638"
+"205877_s_at"	"ZC3H7B"	23264	"ENSG00000100403"
+"206169_x_at"	"ZC3H7B"	23264	"ENSG00000100403"
+"206377_at"	"FOXF2"	2295	"ENSG00000137273"
+"206217_at"	"EDA"	1896	"ENSG00000158813"
+"210167_s_at"	"TEF"	7008	"ENSG00000167074"
+"207099_s_at"	"CHM"	1121	"ENSG00000188419"
+"209292_at"	"ID4"	3400	"ENSG00000172201"
+"209293_x_at"	"ID4"	3400	"ENSG00000172201"
+"209291_at"	"ID4"	3400	"ENSG00000172201"
+"207608_x_at"	"CYP1A2"	1544	"ENSG00000140505"
+"207609_s_at"	"CYP1A2"	1544	"ENSG00000140505"
+"205769_at"	"SLC27A2"	11001	"ENSG00000140284"
+"205768_s_at"	"SLC27A2"	11001	"ENSG00000140284"
+"206375_s_at"	"HSPB3"	8988	"ENSG00000169271"
+"207345_at"	"FST"	10468	"ENSG00000134363"
+"208663_s_at"	"TTC3"	7267	"ENSG00000182670"
+"208073_x_at"	"TTC3"	7267	"ENSG00000182670"
+"208662_s_at"	"TTC3"	7267	"ENSG00000182670"
+"208664_s_at"	"TTC3"	7267	"ENSG00000182670"
+"205498_at"	"GHR"	2690	"ENSG00000112964"
+"205625_s_at"	"CALB1"	793	"ENSG00000104327"
+"205626_s_at"	"CALB1"	793	"ENSG00000104327"
+"206946_at"	"HCN4"	10021	"ENSG00000138622"
+"205932_s_at"	"MSX1"	4487	"ENSG00000163132"
+"207012_at"	"MMP16"	4325	"ENSG00000156103"
+"207013_s_at"	"MMP16"	4325	"ENSG00000156103"
+"208167_s_at"	"MMP16"	4325	"ENSG00000156103"
+"208166_at"	"MMP16"	4325	"ENSG00000156103"
+"207729_at"	"CDH9"	1007	"ENSG00000113100"
+"208486_at"	"DRD5"	1816	"ENSG00000169676"
+"206481_s_at"	"LDB2"	9079	"ENSG00000169744"
+"210482_x_at"	"MAP2K5"	5607	"ENSG00000137764"
+"206319_s_at"	"EPPIN"	57119	"ENSG00000101448"
+"206318_at"	"EPPIN"	57119	"ENSG00000101448"
+"210032_s_at"	"SPAG6"	9576	"ENSG00000077327"
+"210033_s_at"	"SPAG6"	9576	"ENSG00000077327"
+"205613_at"	"SYT17"	51760	"ENSG00000103528"
+"209659_s_at"	"CDC16"	8881	"ENSG00000130177"
+"209658_at"	"CDC16"	8881	"ENSG00000130177"
+"210048_at"	"NAPG"	8774	"ENSG00000134265"
+"206698_at"	"XK"	7504	"ENSG00000047597"
+"208487_at"	"LMX1B"	4010	"ENSG00000136944"
+"206860_s_at"	"MIOS"	54468	"ENSG00000164654"
+"209672_s_at"	"MIOS"	54468	"ENSG00000164654"
+"206167_s_at"	"ARHGAP6"	395	"ENSG00000047648"
+"208085_s_at"	"ARHGAP6"	395	"ENSG00000047648"
+"206201_s_at"	"MEOX2"	4223	"ENSG00000106511"
+"207775_at"	""	79150	"ENSG00000283117"
+"206020_at"	"SOCS6"	9306	"ENSG00000170677"
+"206280_at"	"CDH18"	1016	"ENSG00000145526"
+"210473_s_at"	"ADGRA3"	166647	"ENSG00000152990"
+"207488_at"	""	NA	"ENSG00000203392"
+"208349_at"	"TRPA1"	8989	"ENSG00000104321"
+"208818_s_at"	"COMT"	1312	"ENSG00000093010"
+"208817_at"	"COMT"	1312	"ENSG00000093010"
+"209847_at"	"CDH17"	1015	"ENSG00000079112"
+"206762_at"	"KCNA5"	3741	"ENSG00000130037"
+"206487_at"	"SUN1"	23353	"ENSG00000164828"
+"205784_x_at"	"ARVCF"	421	"ENSG00000099889"
+"209758_s_at"	"MFAP5"	8076	"ENSG00000197614"
+"208948_s_at"	"STAU1"	6780	"ENSG00000124214"
+"207320_x_at"	"STAU1"	6780	"ENSG00000124214"
+"206409_at"	"TIAM1"	7074	"ENSG00000156299"
+"207005_s_at"	"BCL2"	596	"ENSG00000171791"
+"207694_at"	"POU3F4"	5456	"ENSG00000196767"
+"206583_at"	"KRBOX4"	55634	"ENSG00000147121"
+"205818_at"	"BRINP1"	1620	"ENSG00000078725"
+"209191_at"	"TUBB6"	84617	"ENSG00000176014"
+"207360_s_at"	"NTSR1"	4923	"ENSG00000101188"
+"207377_at"	"PPP1R2C"	80316	"ENSG00000102055"
+"210443_x_at"	"OGFR"	11054	"ENSG00000060491"
+"205585_at"	"ETV6"	2120	"ENSG00000139083"
+"209519_at"	"NCBP1"	4686	"ENSG00000136937"
+"209520_s_at"	"NCBP1"	4686	"ENSG00000136937"
+"209897_s_at"	"SLIT2"	9353	"ENSG00000145147"
+"207949_s_at"	"ICA1"	3382	"ENSG00000003147"
+"207149_at"	"CDH12"	1010	"ENSG00000154162"
+"208869_s_at"	"GABARAPL1"	23710	"ENSG00000139112"
+"208868_s_at"	"GABARAPL1"	23710	"ENSG00000139112"
+"205505_at"	"GCNT1"	2650	"ENSG00000187210"
+"206976_s_at"	"HSPH1"	10808	"ENSG00000120694"
+"208744_x_at"	"HSPH1"	10808	"ENSG00000120694"
+"206606_at"	"LIPC"	3990	"ENSG00000166035"
+"209103_s_at"	"UFD1"	7353	"ENSG00000070010"
+"206200_s_at"	"ANXA11"	311	"ENSG00000122359"
+"209507_at"	"RPA3"	6119	"ENSG00000106399"
+"208271_at"	"PAPOLB"	56903	"ENSG00000218823"
+"206032_at"	"DSC3"	1825	"ENSG00000134762"
+"206033_s_at"	"DSC3"	1825	"ENSG00000134762"
+"207795_s_at"	"KLRD1"	3824	"ENSG00000134539"
+"207796_x_at"	"KLRD1"	3824	"ENSG00000134539"
+"205667_at"	"WRN"	7486	"ENSG00000165392"
+"207385_at"	"TFDP3"	51270	"ENSG00000183434"
+"207324_s_at"	"DSC1"	1823	"ENSG00000134765"
+"209912_s_at"	"AP5Z1"	9907	"ENSG00000242802"
+"209913_x_at"	"AP5Z1"	9907	"ENSG00000242802"
+"208788_at"	"ELOVL5"	60481	"ENSG00000012660"
+"206642_at"	"DSG1"	1828	"ENSG00000134760"
+"210004_at"	"OLR1"	4973	"ENSG00000173391"
+"209585_s_at"	"MINPP1"	9562	"ENSG00000107789"
+"210114_at"	"INVS"	27130	"ENSG00000119509"
+"208541_x_at"	"TFAM"	7019	"ENSG00000108064"
+"207300_s_at"	"F7"	2155	"ENSG00000057593"
+"207369_at"	"BRS3"	680	"ENSG00000102239"
+"207197_at"	"ZIC3"	7547	"ENSG00000156925"
+"205620_at"	"F10"	2159	"ENSG00000126218"
+"209768_s_at"	"SEPTIN5"	5413	"ENSG00000184702"
+"208034_s_at"	"PROZ"	8858	"ENSG00000126231"
+"205523_at"	"HAPLN1"	1404	"ENSG00000145681"
+"205524_s_at"	"HAPLN1"	1404	"ENSG00000145681"
+"210274_at"	"MAGEA8"	4107	"ENSG00000156009"
+"209301_at"	"CA2"	760	"ENSG00000104267"
+"210262_at"	"CRISP2"	7180	"ENSG00000124490"
+"208121_s_at"	"PTPRO"	5800	"ENSG00000151490"
+"209664_x_at"	"NFATC1"	4772	"ENSG00000131196"
+"208196_x_at"	"NFATC1"	4772	"ENSG00000131196"
+"210162_s_at"	"NFATC1"	4772	"ENSG00000131196"
+"206001_at"	"NPY"	4852	"ENSG00000122585"
+"206075_s_at"	"CSNK2A1"	1457	"ENSG00000101266"
+"208311_at"	"GPR50"	9248	"ENSG00000102195"
+"209671_x_at"	"TRAC"	NA	"ENSG00000277734"
+"209670_at"	"TRAC"	NA	"ENSG00000277734"
+"210391_at"	"NR6A1"	2649	"ENSG00000148200"
+"207742_s_at"	"NR6A1"	2649	"ENSG00000148200"
+"210392_x_at"	"NR6A1"	2649	"ENSG00000148200"
+"208146_s_at"	"CPVL"	54504	"ENSG00000106066"
+"208717_at"	"OXA1L"	5018	"ENSG00000155463"
+"207695_s_at"	"IGSF1"	3547	"ENSG00000147255"
+"209379_s_at"	"CCSER2"	54462	"ENSG00000107771"
+"209378_s_at"	"CCSER2"	54462	"ENSG00000107771"
+"205466_s_at"	"HS3ST1"	9957	"ENSG00000002587"
+"209745_at"	"COQ7"	10229	"ENSG00000167186"
+"209746_s_at"	"COQ7"	10229	"ENSG00000167186"
+"208027_s_at"	"TLL2"	7093	"ENSG00000095587"
+"207540_s_at"	"SYK"	6850	"ENSG00000165025"
+"209269_s_at"	"SYK"	6850	"ENSG00000165025"
+"207010_at"	"GABRB1"	2560	"ENSG00000163288"
+"207305_s_at"	"TRAPPC8"	22878	"ENSG00000153339"
+"207546_at"	"ATP4B"	496	"ENSG00000186009"
+"210221_at"	"CHRNA3"	1136	"ENSG00000080644"
+"207084_at"	"POU3F2"	5454	"ENSG00000184486"
+"207158_at"	"APOBEC1"	339	"ENSG00000111701"
+"206666_at"	"GZMK"	3003	"ENSG00000113088"
+"206129_s_at"	"ARSB"	411	"ENSG00000113273"
+"209065_at"	"UQCRB"	7381	"ENSG00000156467"
+"209066_x_at"	"UQCRB"	7381	"ENSG00000156467"
+"205849_s_at"	"UQCRB"	7381	"ENSG00000156467"
+"205487_s_at"	"VGLL1"	51442	"ENSG00000102243"
+"206533_at"	"CHRNA5"	1138	"ENSG00000169684"
+"206609_at"	"MAGEC1"	9947	"ENSG00000155495"
+"205756_s_at"	"F8"	2157	"ENSG00000185010"
+"208672_s_at"	"SRSF3"	6428	"ENSG00000112081"
+"208673_s_at"	"SRSF3"	6428	"ENSG00000112081"
+"208029_s_at"	"LAPTM4B"	55353	"ENSG00000104341"
+"208767_s_at"	"LAPTM4B"	55353	"ENSG00000104341"
+"206105_at"	"AFF2"	2334	"ENSG00000155966"
+"207859_s_at"	"CHRNB3"	1142	"ENSG00000147432"
+"209627_s_at"	"OSBPL3"	26031	"ENSG00000070882"
+"209626_s_at"	"OSBPL3"	26031	"ENSG00000070882"
+"207900_at"	"CCL17"	6361	"ENSG00000102970"
+"209493_at"	"PDZD2"	23037	"ENSG00000133401"
+"209274_s_at"	"ISCA1"	81689	"ENSG00000135070"
+"209529_at"	"PLPP2"	8612	"ENSG00000141934"
+"206912_at"	"FOXE1"	2304	"ENSG00000178919"
+"209122_at"	"PLIN2"	123	"ENSG00000147872"
+"206701_x_at"	"EDNRB"	1910	"ENSG00000136160"
+"207861_at"	"CCL22"	6367	"ENSG00000102962"
+"207406_at"	"CYP7A1"	1581	"ENSG00000167910"
+"208080_at"	"FAM210B"	116151	"ENSG00000124098"
+"207999_s_at"	"ADARB1"	104	"ENSG00000197381"
+"209979_at"	"ADARB1"	104	"ENSG00000197381"
+"208079_s_at"	"AURKA"	6790	"ENSG00000087586"
+"205978_at"	"KL"	9365	"ENSG00000133116"
+"208799_at"	"PSMB5"	5693	"ENSG00000100804"
+"205865_at"	"ARID3A"	1820	"ENSG00000116017"
+"206172_at"	"IL13RA2"	3598	"ENSG00000123496"
+"207601_at"	"SULT1B1"	27284	"ENSG00000173597"
+"206106_at"	"MAPK12"	6300	"ENSG00000188130"
+"209741_x_at"	"SCAPER"	49855	"ENSG00000140386"
+"208651_x_at"	"CD24"	100133941	"ENSG00000272398"
+"209771_x_at"	"CD24"	100133941	"ENSG00000272398"
+"208882_s_at"	"UBR5"	51366	"ENSG00000104517"
+"208884_s_at"	"UBR5"	51366	"ENSG00000104517"
+"208883_at"	"UBR5"	51366	"ENSG00000104517"
+"206040_s_at"	"MAPK11"	5600	"ENSG00000185386"
+"209512_at"	"HSDL2"	84263	"ENSG00000119471"
+"209513_s_at"	"HSDL2"	84263	"ENSG00000119471"
+"206309_at"	"CNMD"	11061	"ENSG00000136110"
+"206935_at"	"PCDH8"	5100	"ENSG00000136099"
+"205578_at"	"ROR2"	4920	"ENSG00000169071"
+"207441_at"	"SMR3B"	10879	"ENSG00000171201"
+"205471_s_at"	"DACH1"	1602	"ENSG00000276644"
+"205472_s_at"	"DACH1"	1602	"ENSG00000276644"
+"206356_s_at"	"GNAL"	2774	"ENSG00000141404"
+"206355_at"	"GNAL"	2774	"ENSG00000141404"
+"207108_s_at"	"NIPBL"	25836	"ENSG00000164190"
+"206437_at"	"S1PR4"	8698	"ENSG00000125910"
+"205813_s_at"	"MAT1A"	4143	"ENSG00000151224"
+"209347_s_at"	"MAF"	4094	"ENSG00000178573"
+"206363_at"	"MAF"	4094	"ENSG00000178573"
+"209348_s_at"	"MAF"	4094	"ENSG00000178573"
+"205773_at"	"CPEB3"	22849	"ENSG00000107864"
+"206443_at"	"RORB"	6096	"ENSG00000198963"
+"210287_s_at"	"FLT1"	2321	"ENSG00000102755"
+"207251_at"	"MEP1B"	4225	"ENSG00000141434"
+"208370_s_at"	"RCAN1"	1827	"ENSG00000159200"
+"210376_x_at"	"ELK1"	2002	"ENSG00000126767"
+"209173_at"	"AGR2"	10551	"ENSG00000106541"
+"207559_s_at"	"ZMYM3"	9203	"ENSG00000147130"
+"207242_s_at"	"GRIK1"	2897	"ENSG00000171189"
+"209995_s_at"	"TCL1A"	8115	"ENSG00000100721"
+"207774_at"	"ATG10"	83734	"ENSG00000152348"
+"206663_at"	"SP4"	6671	"ENSG00000105866"
+"206141_at"	"MOCS3"	27304	"ENSG00000124217"
+"205816_at"	"ITGB8"	3696	"ENSG00000105855"
+"208837_at"	"TMED3"	23423	"ENSG00000166557"
+"209595_at"	"GTF2F2"	2963	"ENSG00000188342"
+"207783_x_at"	"TPT1"	7178	"ENSG00000133112"
+"210487_at"	"DNTT"	1791	"ENSG00000107447"
+"206929_s_at"	"NFIC"	4782	"ENSG00000141905"
+"209684_at"	"RIN2"	54453	"ENSG00000132669"
+"209943_at"	"FBXL4"	26235	"ENSG00000112234"
+"207681_at"	"CXCR3"	2833	"ENSG00000186810"
+"209182_s_at"	"DEPP1"	11067	"ENSG00000165507"
+"209183_s_at"	"DEPP1"	11067	"ENSG00000165507"
+"205621_at"	"ALKBH1"	8846	"ENSG00000100601"
+"207516_at"	"CHRNB4"	1143	"ENSG00000117971"
+"207602_at"	"TMPRSS11D"	9407	"ENSG00000153802"
+"208018_s_at"	"HCK"	3055	"ENSG00000101336"
+"210120_s_at"	"RANBP3"	8498	"ENSG00000031823"
+"208272_at"	"RANBP3"	8498	"ENSG00000031823"
+"210413_x_at"	"SERPINB4"	6318	"ENSG00000206073"
+"205887_x_at"	"MSH3"	4437	"ENSG00000113318"
+"207208_at"	"RBMXL2"	27288	"ENSG00000170748"
+"207388_s_at"	"PTGES"	9536	"ENSG00000148344"
+"210367_s_at"	"PTGES"	9536	"ENSG00000148344"
+"207781_s_at"	"ZNF711"	7552	"ENSG00000147180"
+"209511_at"	"POLR2F"	5435	"ENSG00000100142"
+"209719_x_at"	"SERPINB3"	6317	"ENSG00000057149"
+"208183_at"	"TACR3"	6870	"ENSG00000169836"
+"207551_s_at"	"MSL3"	10943	"ENSG00000005302"
+"206896_s_at"	"GNG7"	2788	"ENSG00000176533"
+"209156_s_at"	"COL6A2"	1292	"ENSG00000142173"
+"206045_s_at"	"NOL4"	8715	"ENSG00000101746"
+"205553_s_at"	"CSRP3"	8048	"ENSG00000129170"
+"206605_at"	"ENDOU"	8909	"ENSG00000111405"
+"206206_at"	"CD180"	4064	"ENSG00000134061"
+"205798_at"	"IL7R"	3575	"ENSG00000168685"
+"209652_s_at"	"PGF"	5228	"ENSG00000119630"
+"206163_at"	"MAB21L1"	4081	"ENSG00000180660"
+"205931_s_at"	"CREB5"	9586	"ENSG00000146592"
+"206710_s_at"	"EPB41L3"	23136	"ENSG00000082397"
+"209990_s_at"	"GABBR2"	9568	"ENSG00000136928"
+"209991_x_at"	"GABBR2"	9568	"ENSG00000136928"
+"210021_s_at"	"CCNO"	10309	"ENSG00000152669"
+"209299_x_at"	"PPIL2"	23759	"ENSG00000100023"
+"206063_x_at"	"PPIL2"	23759	"ENSG00000100023"
+"206064_s_at"	"PPIL2"	23759	"ENSG00000100023"
+"205478_at"	"PPP1R1A"	5502	"ENSG00000135447"
+"210476_s_at"	"PRLR"	5618	"ENSG00000113494"
+"206346_at"	"PRLR"	5618	"ENSG00000113494"
+"210331_at"	"HECW1"	23072	"ENSG00000002746"
+"208249_s_at"	"TGDS"	23483	"ENSG00000088451"
+"208468_at"	"SOX21"	11166	"ENSG00000125285"
+"206224_at"	"CST1"	1469	"ENSG00000170373"
+"206994_at"	"CST4"	1472	"ENSG00000101441"
+"210426_x_at"	"RORA"	6095	"ENSG00000069667"
+"210479_s_at"	"RORA"	6095	"ENSG00000069667"
+"207021_at"	"ZPBP"	11055	"ENSG00000042813"
+"209443_at"	"SERPINA5"	5104	"ENSG00000188488"
+"207851_s_at"	"INSR"	3643	"ENSG00000171105"
+"205881_at"	"ZNF74"	7625	"ENSG00000185252"
+"208424_s_at"	"CIAPIN1"	57019	"ENSG00000005194"
+"208968_s_at"	"CIAPIN1"	57019	"ENSG00000005194"
+"209314_s_at"	"HBS1L"	10767	"ENSG00000112339"
+"209315_at"	"HBS1L"	10767	"ENSG00000112339"
+"209316_s_at"	"HBS1L"	10767	"ENSG00000112339"
+"210349_at"	"CAMK4"	814	"ENSG00000152495"
+"207172_s_at"	"CDH11"	1009	"ENSG00000140937"
+"207173_x_at"	"CDH11"	1009	"ENSG00000140937"
+"207189_s_at"	"ZZEF1"	23140	"ENSG00000074755"
+"207190_at"	"ZZEF1"	23140	"ENSG00000074755"
+"207843_x_at"	"CYB5A"	1528	"ENSG00000166347"
+"209366_x_at"	"CYB5A"	1528	"ENSG00000166347"
+"209303_at"	"NDUFS4"	4724	"ENSG00000164258"
+"209043_at"	"PAPSS1"	9061	"ENSG00000138801"
+"210248_at"	"WNT7A"	7476	"ENSG00000154764"
+"210091_s_at"	"DTNA"	1837	"ENSG00000134769"
+"208430_s_at"	"DTNA"	1837	"ENSG00000134769"
+"205741_s_at"	"DTNA"	1837	"ENSG00000134769"
+"206219_s_at"	"VAV1"	7409	"ENSG00000141968"
+"208499_s_at"	"DNAJC3"	5611	"ENSG00000102580"
+"208670_s_at"	"EID1"	23741	"ENSG00000255302"
+"208669_s_at"	"EID1"	23741	"ENSG00000255302"
+"205825_at"	"PCSK1"	5122	"ENSG00000175426"
+"208019_at"	"ZNF157"	7712	"ENSG00000147117"
+"209014_at"	"MAGED1"	9500	"ENSG00000179222"
+"209657_s_at"	"HSF2"	3298	"ENSG00000025156"
+"206850_at"	"RASL10A"	10633	"ENSG00000100276"
+"207067_s_at"	"HDC"	3067	"ENSG00000140287"
+"207326_at"	"BTC"	685	"ENSG00000174808"
+"210401_at"	"P2RX1"	5023	"ENSG00000108405"
+"209418_s_at"	"THOC5"	8563	"ENSG00000100296"
+"209419_at"	"THOC5"	8563	"ENSG00000100296"
+"207404_s_at"	"HTR1E"	3354	"ENSG00000168830"
+"206706_at"	"NTF3"	4908	"ENSG00000185652"
+"205701_at"	"IPO8"	10526	"ENSG00000133704"
+"206463_s_at"	"DHRS2"	10202	"ENSG00000100867"
+"206067_s_at"	"WT1"	7490	"ENSG00000184937"
+"208358_s_at"	"UGT8"	7368	"ENSG00000174607"
+"210307_s_at"	"KLHL25"	64410	"ENSG00000183655"
+"209147_s_at"	"PLPP1"	8611	"ENSG00000067113"
+"207722_s_at"	"BTBD2"	55643	"ENSG00000133243"
+"206299_at"	"NALF2"	27112	"ENSG00000130054"
+"206336_at"	"CXCL6"	6372	"ENSG00000124875"
+"207522_s_at"	"ATP2A3"	489	"ENSG00000074370"
+"207521_s_at"	"ATP2A3"	489	"ENSG00000074370"
+"206267_s_at"	"MATK"	4145	"ENSG00000007264"
+"208323_s_at"	"ANXA13"	312	"ENSG00000104537"
+"209436_at"	"SPON1"	10418	"ENSG00000262655"
+"209437_s_at"	"SPON1"	10418	"ENSG00000262655"
+"209864_at"	"FRAT2"	23401	"ENSG00000181274"
+"206039_at"	"RAB33A"	9363	"ENSG00000134594"
+"206320_s_at"	"SMAD9"	4093	"ENSG00000120693"
+"207306_at"	"TCF15"	6939	"ENSG00000125878"
+"209808_x_at"	"ING1"	3621	"ENSG00000153487"
+"210350_x_at"	"ING1"	3621	"ENSG00000153487"
+"208415_x_at"	"ING1"	3621	"ENSG00000153487"
+"205512_s_at"	"AIFM1"	9131	"ENSG00000156709"
+"208368_s_at"	"BRCA2"	675	"ENSG00000139618"
+"207878_at"	"KRT76"	51350	"ENSG00000185069"
+"208467_at"	"KLF12"	11278	"ENSG00000118922"
+"206966_s_at"	"KLF12"	11278	"ENSG00000118922"
+"206965_at"	"KLF12"	11278	"ENSG00000118922"
+"205899_at"	"CCNA1"	8900	"ENSG00000133101"
+"208731_at"	"RAB2A"	5862	"ENSG00000104388"
+"208730_x_at"	"RAB2A"	5862	"ENSG00000104388"
+"208732_at"	"RAB2A"	5862	"ENSG00000104388"
+"208734_x_at"	"RAB2A"	5862	"ENSG00000104388"
+"208733_at"	"RAB2A"	5862	"ENSG00000104388"
+"208101_s_at"	"URM1"	81605	"ENSG00000167118"
+"208033_s_at"	"ZFHX3"	463	"ENSG00000140836"
+"208141_s_at"	"DOHH"	83475	"ENSG00000129932"
+"209679_s_at"	"SMAGP"	57228	"ENSG00000170545"
+"206273_at"	"PRELID3A"	10650	"ENSG00000141391"
+"205639_at"	"AOAH"	313	"ENSG00000136250"
+"207174_at"	"GPC5"	2262	"ENSG00000179399"
+"210229_s_at"	"CSF2"	1437	"ENSG00000164400"
+"209363_s_at"	"MED21"	9412	"ENSG00000152944"
+"209362_at"	"MED21"	9412	"ENSG00000152944"
+"207057_at"	"SLC16A7"	9194	"ENSG00000118596"
+"207696_at"	"FUT9"	10690	"ENSG00000172461"
+"208996_s_at"	"POLR2C"	5432	"ENSG00000102978"
+"209953_s_at"	"CDC37"	11140	"ENSG00000105401"
+"209410_s_at"	"GRB10"	2887	"ENSG00000106070"
+"209409_at"	"GRB10"	2887	"ENSG00000106070"
+"205941_s_at"	"COL10A1"	1300	"ENSG00000123500"
+"209088_s_at"	"UBN1"	29855	"ENSG00000118900"
+"207253_s_at"	"UBN1"	29855	"ENSG00000118900"
+"209708_at"	"MOXD1"	26002	"ENSG00000079931"
+"208735_s_at"	"CTDSP2"	10106	"ENSG00000175215"
+"207666_x_at"	"SSX3"	10214	"ENSG00000165584"
+"205670_at"	"GAL3ST1"	9514	"ENSG00000128242"
+"208142_at"	"EDDM3A"	10876	"ENSG00000181562"
+"208143_s_at"	"EDDM3A"	10876	"ENSG00000181562"
+"209144_s_at"	"CBFA2T2"	9139	"ENSG00000078699"
+"207625_s_at"	"CBFA2T2"	9139	"ENSG00000078699"
+"209145_s_at"	"CBFA2T2"	9139	"ENSG00000078699"
+"206111_at"	"RNASE2"	6036	"ENSG00000169385"
+"208172_s_at"	"KCNB2"	9312	"ENSG00000182674"
+"208123_at"	"KCNB2"	9312	"ENSG00000182674"
+"207621_s_at"	"PEMT"	10400	"ENSG00000133027"
+"205935_at"	"FOXF1"	2294	"ENSG00000103241"
+"208441_at"	"IGF1R"	3480	"ENSG00000140443"
+"205673_s_at"	"ASB9"	140462	"ENSG00000102048"
+"208245_at"	"RAB9BP1"	9366	"ENSG00000232159"
+"206233_at"	"B4GALT6"	9331	"ENSG00000118276"
+"206232_s_at"	"B4GALT6"	9331	"ENSG00000118276"
+"207610_s_at"	"ADGRE2"	30817	"ENSG00000127507"
+"206742_at"	"VEGFD"	2277	"ENSG00000165197"
+"209120_at"	"NR2F2"	7026	"ENSG00000185551"
+"209121_x_at"	"NR2F2"	7026	"ENSG00000185551"
+"209119_x_at"	"NR2F2"	7026	"ENSG00000185551"
+"210247_at"	"SYN2"	6854	"ENSG00000157152"
+"210315_at"	"SYN2"	6854	"ENSG00000157152"
+"205718_at"	"ITGB7"	3695	"ENSG00000139626"
+"206930_at"	"GLYAT"	10249	"ENSG00000149124"
+"207420_at"	"COLEC10"	10584	"ENSG00000184374"
+"205777_at"	"DUSP9"	1852	"ENSG00000130829"
+"208521_at"	"OR5I1"	10798	"ENSG00000167825"
+"206805_at"	"SEMA3A"	10371	"ENSG00000075213"
+"209747_at"	"TGFB3"	7043	"ENSG00000119699"
+"209432_s_at"	"CREB3"	10488	"ENSG00000107175"
+"207525_s_at"	"GIPC1"	10755	"ENSG00000123159"
+"210290_at"	"ZNF174"	7727	"ENSG00000103343"
+"208116_s_at"	"MAN1A1"	4121	"ENSG00000111885"
+"208550_x_at"	"KCNG2"	26251	"ENSG00000178342"
+"208318_s_at"	"XYLB"	9942	"ENSG00000093217"
+"208507_at"	"OR7C2"	26658	"ENSG00000127529"
+"210452_x_at"	"CYP4F2"	8529	"ENSG00000186115"
+"208503_s_at"	"GATAD1"	57798	"ENSG00000157259"
+"208890_s_at"	"PLXNB2"	23654	"ENSG00000196576"
+"207908_at"	"KRT2"	3849	"ENSG00000172867"
+"206815_at"	"SPAG8"	26206	"ENSG00000137098"
+"206816_s_at"	"SPAG8"	26206	"ENSG00000137098"
+"208091_s_at"	"VOPP1"	81552	"ENSG00000154978"
+"206010_at"	"HABP2"	3026	"ENSG00000148702"
+"206281_at"	"ADCYAP1"	116	"ENSG00000141433"
+"207839_s_at"	"TMEM8B"	51754	"ENSG00000137103"
+"206539_s_at"	"CYP4F12"	66002	"ENSG00000186204"
+"207195_at"	"CNTN6"	27255	"ENSG00000134115"
+"206223_at"	"LMTK2"	22853	"ENSG00000164715"
+"206216_at"	"SRPK3"	26576	"ENSG00000184343"
+"208591_s_at"	"PDE3B"	5140	"ENSG00000152270"
+"210010_s_at"	"SLC25A1"	6576	"ENSG00000100075"
+"207650_x_at"	"PTGER1"	5731	"ENSG00000160951"
+"209958_s_at"	"BBS9"	27241	"ENSG00000122507"
+"208193_at"	"IL9"	3578	"ENSG00000145839"
+"206276_at"	"LY6D"	8581	"ENSG00000167656"
+"205731_s_at"	"NCOA2"	10499	"ENSG00000140396"
+"205732_s_at"	"NCOA2"	10499	"ENSG00000140396"
+"210421_s_at"	"SLC24A1"	9187	"ENSG00000074621"
+"210420_at"	"SLC24A1"	9187	"ENSG00000074621"
+"206081_at"	"SLC24A1"	9187	"ENSG00000074621"
+"205725_at"	"SCGB1A1"	7356	"ENSG00000149021"
+"205599_at"	"TRAF1"	7185	"ENSG00000056558"
+"207379_at"	"EDIL3"	10085	"ENSG00000164176"
+"206587_at"	"CCT6B"	10693	"ENSG00000132141"
+"205688_at"	"TFAP4"	7023	"ENSG00000090447"
+"206617_s_at"	"RENBP"	5973	"ENSG00000102032"
+"206089_at"	"NELL1"	4745	"ENSG00000165973"
+"209485_s_at"	"OSBPL1A"	114876	"ENSG00000141447"
+"209532_at"	"PLAA"	9373	"ENSG00000137055"
+"209533_s_at"	"PLAA"	9373	"ENSG00000137055"
+"207348_s_at"	"LIG3"	3980	"ENSG00000005156"
+"206084_at"	"PTPRR"	5801	"ENSG00000153233"
+"207409_at"	"LECT2"	3950	"ENSG00000145826"
+"205532_s_at"	"CDH6"	1004	"ENSG00000113361"
+"205533_s_at"	"CDH6"	1004	"ENSG00000113361"
+"208000_at"	"GML"	2765	"ENSG00000104499"
+"205610_at"	"MYOM1"	8736	"ENSG00000101605"
+"208481_at"	"ASB4"	51666	"ENSG00000005981"
+"205672_at"	"XPA"	7507	"ENSG00000136936"
+"207458_at"	"RHPN1-AS1"	78998	"ENSG00000254389"
+"205519_at"	"WDR76"	79968	"ENSG00000092470"
+"209560_s_at"	"DLK1"	8788	"ENSG00000185559"
+"209440_at"	"PRPS1"	5631	"ENSG00000147224"
+"208447_s_at"	"PRPS1"	5631	"ENSG00000147224"
+"206767_at"	"RBMS3"	27303	"ENSG00000144642"
+"206382_s_at"	"BDNF"	627	"ENSG00000176697"
+"206552_s_at"	"TAC1"	6863	"ENSG00000006128"
+"206811_at"	"ADCY8"	114	"ENSG00000155897"
+"206897_at"	"PAGE1"	8712	"ENSG00000068985"
+"205564_at"	"PAGE4"	9506	"ENSG00000101951"
+"205515_at"	"PRSS12"	8492	"ENSG00000164099"
+"208334_at"	"NDST4"	64579	"ENSG00000138653"
+"208454_s_at"	"CPQ"	10404	"ENSG00000104324"
+"207444_at"	"SLC22A13"	9390	"ENSG00000172940"
+"209045_at"	"XPNPEP1"	7511	"ENSG00000108039"
+"208453_s_at"	"XPNPEP1"	7511	"ENSG00000108039"
+"205822_s_at"	"HMGCS1"	3157	"ENSG00000112972"
+"209504_s_at"	"PLEKHB1"	58473	"ENSG00000021300"
+"207994_s_at"	"OPRM1"	4988	"ENSG00000112038"
+"207989_at"	"OPRM1"	4988	"ENSG00000112038"
+"208377_s_at"	"CACNA1F"	778	"ENSG00000102001"
+"207209_at"	"CETN1"	1068	"ENSG00000177143"
+"208394_x_at"	"ESM1"	11082	"ENSG00000164283"
+"206837_at"	"ALX1"	8092	"ENSG00000180318"
+"205576_at"	"SERPIND1"	3053	"ENSG00000099937"
+"209547_s_at"	"SUGP1"	57794	"ENSG00000105705"
+"205900_at"	"KRT1"	3848	"ENSG00000167768"
+"205857_at"	"SLC18A2"	6571	"ENSG00000165646"
+"206184_at"	"CRKL"	1399	"ENSG00000099942"
+"210271_at"	"NEUROD2"	4761	"ENSG00000171532"
+"206016_at"	"CCDC22"	28952	"ENSG00000101997"
+"206288_at"	"PGGT1B"	5229	"ENSG00000164219"
+"210089_s_at"	"LAMA4"	3910	"ENSG00000112769"
+"209475_at"	"USP15"	9958	"ENSG00000135655"
+"207514_s_at"	"GNAT1"	2779	"ENSG00000114349"
+"205842_s_at"	"JAK2"	3717	"ENSG00000096968"
+"205841_at"	"JAK2"	3717	"ENSG00000096968"
+"209534_x_at"	"AKAP13"	11214	"ENSG00000170776"
+"208325_s_at"	"AKAP13"	11214	"ENSG00000170776"
+"207045_at"	"VPS50"	55610	"ENSG00000004766"
+"205488_at"	"GZMA"	3001	"ENSG00000145649"
+"210373_at"	"NPRL2"	10641	"ENSG00000114388"
+"206711_at"	"SLITRK2"	84631	"ENSG00000185985"
+"208608_s_at"	"SNTB1"	6641	"ENSG00000172164"
+"205618_at"	"PRRG1"	5638	"ENSG00000130962"
+"206119_at"	"BHMT"	635	"ENSG00000145692"
+"206408_at"	"LRRTM2"	26045	"ENSG00000146006"
+"208463_at"	"GABRA4"	2557	"ENSG00000109158"
+"208861_s_at"	"ATRX"	546	"ENSG00000085224"
+"208860_s_at"	"ATRX"	546	"ENSG00000085224"
+"208859_s_at"	"ATRX"	546	"ENSG00000085224"
+"207528_s_at"	"SLC7A11"	23657	"ENSG00000151012"
+"209921_at"	"SLC7A11"	23657	"ENSG00000151012"
+"207056_s_at"	"SLC4A8"	9498	"ENSG00000050438"
+"209089_at"	"RAB5A"	5868	"ENSG00000144566"
+"206113_s_at"	"RAB5A"	5868	"ENSG00000144566"
+"209718_at"	"NCAPH2"	29781	"ENSG00000025770"
+"208004_at"	"OPRPN"	58503	"ENSG00000171199"
+"205933_at"	"SETBP1"	26040	"ENSG00000152217"
+"207178_s_at"	"FRK"	2444	"ENSG00000111816"
+"206577_at"	"VIP"	7432	"ENSG00000146469"
+"208839_s_at"	"CAND1"	55832	"ENSG00000111530"
+"207483_s_at"	"CAND1"	55832	"ENSG00000111530"
+"208838_at"	"CAND1"	55832	"ENSG00000111530"
+"209974_s_at"	"BUB3"	9184	"ENSG00000154473"
+"210342_s_at"	"TPO"	7173	"ENSG00000115705"
+"205540_s_at"	"RRAGB"	10325	"ENSG00000083750"
+"208986_at"	"TCF12"	6938	"ENSG00000140262"
+"210324_at"	"C8G"	733	"ENSG00000176919"
+"206925_at"	"ST8SIA4"	7903	"ENSG00000113532"
+"207329_at"	"MMP8"	4317	"ENSG00000118113"
+"209404_s_at"	"TMED7"	51014	"ENSG00000134970"
+"207159_x_at"	"CRTC1"	23373	"ENSG00000105662"
+"208115_x_at"	"EDRF1"	26098	"ENSG00000107938"
+"210051_at"	"RAPGEF3"	10411	"ENSG00000079337"
+"207372_s_at"	"ENTPD2"	954	"ENSG00000054179"
+"209277_at"	"TFPI2"	7980	"ENSG00000105825"
+"209278_s_at"	"TFPI2"	7980	"ENSG00000105825"
+"205629_s_at"	"CRH"	1392	"ENSG00000147571"
+"205630_at"	"CRH"	1392	"ENSG00000147571"
+"206464_at"	"BMX"	660	"ENSG00000102010"
+"207054_at"	"IMPG1"	3617	"ENSG00000112706"
+"206432_at"	"HAS2"	3037	"ENSG00000170961"
+"210378_s_at"	"SSNA1"	8636	"ENSG00000176101"
+"207073_at"	"CDKL2"	8999	"ENSG00000138769"
+"207612_at"	"WNT8B"	7479	"ENSG00000075290"
+"208977_x_at"	"TUBB4B"	10383	"ENSG00000188229"
+"206702_at"	"TEK"	7010	"ENSG00000120156"
+"205882_x_at"	"ADD3"	120	"ENSG00000148700"
+"206855_s_at"	"HYAL2"	8692	"ENSG00000068001"
+"208581_x_at"	"MT1X"	4501	"ENSG00000187193"
+"208603_s_at"	"MAPK8IP2"	23542	"ENSG00000008735"
+"205489_at"	"CRYM"	1428	"ENSG00000103316"
+"206829_x_at"	"ZNF430"	80264	"ENSG00000118620"
+"207519_at"	"SLC6A4"	6532	"ENSG00000108576"
+"206059_at"	"ZNF91"	7644	"ENSG00000167232"
+"206515_at"	"CYP4F3"	4051	"ENSG00000186529"
+"206345_s_at"	"PON1"	5444	"ENSG00000005421"
+"206344_at"	"PON1"	5444	"ENSG00000005421"
+"210040_at"	"SLC12A5"	57468	"ENSG00000124140"
+"208891_at"	"DUSP6"	1848	"ENSG00000139318"
+"208893_s_at"	"DUSP6"	1848	"ENSG00000139318"
+"208892_s_at"	"DUSP6"	1848	"ENSG00000139318"
+"209960_at"	"HGF"	3082	"ENSG00000019991"
+"209961_s_at"	"HGF"	3082	"ENSG00000019991"
+"205889_s_at"	"JAKMIP2"	9832	"ENSG00000176049"
+"205888_s_at"	"JAKMIP2"	9832	"ENSG00000176049"
+"206127_at"	"ELK3"	2004	"ENSG00000111145"
+"209885_at"	"RHOD"	29984	"ENSG00000173156"
+"208266_at"	"C8orf17"	100507249	"ENSG00000250733"
+"208886_at"	"H1-0"	3005	"ENSG00000189060"
+"208588_at"	"TPT1P8"	NA	"ENSG00000219491"
+"209814_at"	"ZNF330"	27309	"ENSG00000109445"
+"206796_at"	"CCN4"	8840	"ENSG00000104415"
+"206839_at"	"C22orf31"	25770	"ENSG00000100249"
+"206337_at"	"CCR7"	1236	"ENSG00000126353"
+"206414_s_at"	"ASAP2"	8853	"ENSG00000151693"
+"206793_at"	"PNMT"	5409	"ENSG00000141744"
+"206398_s_at"	"CD19"	930	"ENSG00000177455"
+"205566_at"	"ABHD2"	11057	"ENSG00000140526"
+"210117_at"	"SPAG1"	6674	"ENSG00000104450"
+"206899_at"	"NTSR2"	23620	"ENSG00000169006"
+"206154_at"	"RLBP1"	6017	"ENSG00000140522"
+"208629_s_at"	"HADHA"	3030	"ENSG00000084754"
+"208631_s_at"	"HADHA"	3030	"ENSG00000084754"
+"208630_at"	"HADHA"	3030	"ENSG00000084754"
+"206952_at"	"G6PC1"	2538	"ENSG00000131482"
+"208821_at"	"SNRPB"	6628	"ENSG00000125835"
+"206938_at"	"SRD5A2"	6716	"ENSG00000277893"
+"208347_at"	"HMGN2P9"	NA	"ENSG00000180150"
+"207303_at"	"PDE1C"	5137	"ENSG00000154678"
+"205526_s_at"	"KATNA1"	11104	"ENSG00000186625"
+"206528_at"	"TRPC6"	7225	"ENSG00000137672"
+"206057_x_at"	"SPN"	6693	"ENSG00000197471"
+"206056_x_at"	"SPN"	6693	"ENSG00000197471"
+"208987_s_at"	"KDM2A"	22992	"ENSG00000173120"
+"208988_at"	"KDM2A"	22992	"ENSG00000173120"
+"208989_s_at"	"KDM2A"	22992	"ENSG00000173120"
+"208102_s_at"	"PSD"	5662	"ENSG00000059915"
+"206352_s_at"	"PEX10"	5192	"ENSG00000157911"
+"206351_s_at"	"PEX10"	5192	"ENSG00000157911"
+"205862_at"	"GREB1"	9687	"ENSG00000196208"
+"208946_s_at"	"BECN1"	8678	"ENSG00000126581"
+"208945_s_at"	"BECN1"	8678	"ENSG00000126581"
+"206098_at"	"ZBTB6"	10773	"ENSG00000186130"
+"207547_s_at"	"FAM107A"	11170	"ENSG00000168309"
+"209074_s_at"	"FAM107A"	11170	"ENSG00000168309"
+"205479_s_at"	"PLAU"	5328	"ENSG00000122861"
+"210198_s_at"	"PLP1"	5354	"ENSG00000123560"
+"206029_at"	"ANKRD1"	27063	"ENSG00000148677"
+"205744_at"	"DOC2A"	8448	"ENSG00000149927"
+"207685_at"	"CRYBB3"	1417	"ENSG00000100053"
+"207750_at"	"EPS15P1"	NA	"ENSG00000242948"
+"206778_at"	"CRYBB2"	1415	"ENSG00000244752"
+"206071_s_at"	"EPHA3"	2042	"ENSG00000044524"
+"206070_s_at"	"EPHA3"	2042	"ENSG00000044524"
+"209406_at"	"BAG2"	9532	"ENSG00000112208"
+"209635_at"	"AP1S1"	1174	"ENSG00000106367"
+"205565_s_at"	"FXN"	2395	"ENSG00000165060"
+"208932_at"	"PPP4C"	5531	"ENSG00000149923"
+"208382_s_at"	"DMC1"	11144	"ENSG00000100206"
+"208386_x_at"	"DMC1"	11144	"ENSG00000100206"
+"208835_s_at"	"LUC7L3"	51747	"ENSG00000108848"
+"206091_at"	"MATN3"	4148	"ENSG00000132031"
+"208666_s_at"	"ST13"	6767	"ENSG00000100380"
+"208667_s_at"	"ST13"	6767	"ENSG00000100380"
+"206488_s_at"	"CD36"	948	"ENSG00000135218"
+"209555_s_at"	"CD36"	948	"ENSG00000135218"
+"206133_at"	"XAF1"	54739	"ENSG00000132530"
+"206448_at"	"ZNF365"	22891	"ENSG00000138311"
+"207842_s_at"	"CASC3"	22794	"ENSG00000108349"
+"207119_at"	"PRKG1"	5592	"ENSG00000185532"
+"208398_s_at"	"TBPL1"	9519	"ENSG00000028839"
+"207064_s_at"	"AOC2"	314	"ENSG00000131480"
+"205766_at"	"TCAP"	8557	"ENSG00000173991"
+"208062_s_at"	"NRG2"	9542	"ENSG00000158458"
+"206879_s_at"	"NRG2"	9542	"ENSG00000158458"
+"206269_at"	"GCM1"	8521	"ENSG00000137270"
+"207249_s_at"	"SLC28A2"	9153	"ENSG00000137860"
+"207089_at"	"NRAP"	4892	"ENSG00000197893"
+"208780_x_at"	"VAPA"	9218	"ENSG00000101558"
+"209829_at"	"RIPOR2"	9750	"ENSG00000111913"
+"206707_x_at"	"RIPOR2"	9750	"ENSG00000111913"
+"207928_s_at"	"GLRA3"	8001	"ENSG00000145451"
+"209841_s_at"	"LRRN3"	54674	"ENSG00000173114"
+"209840_s_at"	"LRRN3"	54674	"ENSG00000173114"
+"209682_at"	"CBLB"	868	"ENSG00000114423"
+"208348_s_at"	"CBLB"	868	"ENSG00000114423"
+"209641_s_at"	"ABCC3"	8714	"ENSG00000108846"
+"208161_s_at"	"ABCC3"	8714	"ENSG00000108846"
+"210301_at"	"XDH"	7498	"ENSG00000158125"
+"207362_at"	"SLC30A4"	7782	"ENSG00000104154"
+"205561_at"	"KCTD17"	79734	"ENSG00000100379"
+"210260_s_at"	"TNFAIP8"	25816	"ENSG00000145779"
+"208296_x_at"	"TNFAIP8"	25816	"ENSG00000145779"
+"207938_at"	"PI15"	51050	"ENSG00000137558"
+"206751_s_at"	"PCYT1B"	9468	"ENSG00000102230"
+"210456_at"	"PCYT1B"	9468	"ENSG00000102230"
+"207966_s_at"	"GLG1"	2734	"ENSG00000090863"
+"206248_at"	"PRKCE"	5581	"ENSG00000171132"
+"209058_at"	"EDF1"	8721	"ENSG00000107223"
+"209059_s_at"	"EDF1"	8721	"ENSG00000107223"
+"209143_s_at"	"CLNS1A"	1207	"ENSG00000074201"
+"205631_at"	"KIAA0586"	9786	"ENSG00000100578"
+"207240_s_at"	"LHCGR"	3973	"ENSG00000138039"
+"205706_s_at"	"ANKRD26"	22852	"ENSG00000107890"
+"205705_at"	"ANKRD26"	22852	"ENSG00000107890"
+"206474_at"	"CDK17"	5128	"ENSG00000059758"
+"209238_at"	"STX3"	6809	"ENSG00000166900"
+"208221_s_at"	"SLIT1"	6585	"ENSG00000187122"
+"206876_at"	"SIM1"	6492	"ENSG00000112246"
+"209890_at"	"TSPAN5"	10098	"ENSG00000168785"
+"207906_at"	"IL3"	3562	"ENSG00000164399"
+"208556_at"	"GPR31"	2853	"ENSG00000120436"
+"207652_s_at"	"CMKLR1"	1240	"ENSG00000174600"
+"208565_at"	"MC5R"	4161	"ENSG00000176136"
+"210019_at"	"CALML3"	810	"ENSG00000178363"
+"210020_x_at"	"CALML3"	810	"ENSG00000178363"
+"207068_at"	"ZFP37"	7539	"ENSG00000136866"
+"206643_at"	"HAL"	3034	"ENSG00000084110"
+"205591_at"	"OLFM1"	10439	"ENSG00000130558"
+"206678_at"	"GABRA1"	2554	"ENSG00000022355"
+"208524_at"	"GPR15"	2838	"ENSG00000154165"
+"207418_s_at"	"DDO"	8528	"ENSG00000203797"
+"209582_s_at"	"CD200"	4345	"ENSG00000091972"
+"209583_s_at"	"CD200"	4345	"ENSG00000091972"
+"209723_at"	"SERPINB9"	5272	"ENSG00000170542"
+"209722_s_at"	"SERPINB9"	5272	"ENSG00000170542"
+"206504_at"	"CYP24A1"	1591	"ENSG00000019186"
+"207560_at"	"SLC28A1"	9154	"ENSG00000156222"
+"206349_at"	"LGI1"	9211	"ENSG00000108231"
+"207228_at"	"PRKACG"	5568	"ENSG00000165059"
+"209984_at"	"KDM4C"	23081	"ENSG00000107077"
+"210157_at"	"URI1"	8725	"ENSG00000105176"
+"207920_x_at"	"ZFX"	7543	"ENSG00000005889"
+"205791_x_at"	"ZNF230"	7773	"ENSG00000159882"
+"206175_x_at"	"ZNF222"	7673	"ENSG00000159885"
+"206627_s_at"	"SSX1"	6756	"ENSG00000126752"
+"208384_s_at"	"MID2"	11043	"ENSG00000080561"
+"209733_at"	"MID2"	11043	"ENSG00000080561"
+"209874_x_at"	"CNNM2"	54805	"ENSG00000148842"
+"206818_s_at"	"CNNM2"	54805	"ENSG00000148842"
+"208879_x_at"	"PRPF6"	24148	"ENSG00000101161"
+"208880_s_at"	"PRPF6"	24148	"ENSG00000101161"
+"207232_s_at"	"DZIP3"	9666	"ENSG00000198919"
+"207231_at"	"DZIP3"	9666	"ENSG00000198919"
+"205750_at"	"BPHL"	670	"ENSG00000137274"
+"206326_at"	"GRP"	2922	"ENSG00000134443"
+"206870_at"	"PPARA"	5465	"ENSG00000186951"
+"206265_s_at"	"GPLD1"	2822	"ENSG00000112293"
+"206264_at"	"GPLD1"	2822	"ENSG00000112293"
+"208242_at"	"RAX"	30062	"ENSG00000134438"
+"205981_s_at"	"ING2"	3622	"ENSG00000168556"
+"209453_at"	"SLC9A1"	6548	"ENSG00000090020"
+"206225_at"	"ZNF507"	22847	"ENSG00000168813"
+"208240_s_at"	"FGF1"	2246	"ENSG00000113578"
+"205856_at"	"SLC14A1"	6563	"ENSG00000141469"
+"206461_x_at"	"MT1H"	4496	"ENSG00000205358"
+"207176_s_at"	"CD80"	941	"ENSG00000121594"
+"207256_at"	"MBL2"	4153	"ENSG00000165471"
+"205555_s_at"	"MSX2"	4488	"ENSG00000120149"
+"210319_x_at"	"MSX2"	4488	"ENSG00000120149"
+"206691_s_at"	"PDIA2"	64714	"ENSG00000185615"
+"206334_at"	"LIPF"	8513	"ENSG00000182333"
+"208925_at"	"CLDND1"	56650	"ENSG00000080822"
+"205545_x_at"	"DNAJC8"	22826	"ENSG00000126698"
+"206923_at"	"PRKCA"	5578	"ENSG00000154229"
+"210298_x_at"	"FHL1"	2273	"ENSG00000022267"
+"210299_s_at"	"FHL1"	2273	"ENSG00000022267"
+"206914_at"	"CRTAM"	56253	"ENSG00000109943"
+"209002_s_at"	"CALCOCO1"	57658	"ENSG00000012822"
+"205992_s_at"	"IL15"	3600	"ENSG00000164136"
+"209457_at"	"DUSP5"	1847	"ENSG00000138166"
+"209311_at"	"BCL2L2"	599	"ENSG00000129473"
+"206460_at"	"AJAP1"	55966	"ENSG00000196581"
+"210055_at"	"TSHR"	7253	"ENSG00000165409"
+"206278_at"	"PTAFR"	5724	"ENSG00000169403"
+"207244_x_at"	"CYP2A6"	1548	"ENSG00000255974"
+"207400_at"	"NPY5R"	4889	"ENSG00000164129"
+"210336_x_at"	"MZF1"	7593	"ENSG00000099326"
+"207223_s_at"	"PTBP3"	9991	"ENSG00000119314"
+"205491_s_at"	"GJB3"	2707	"ENSG00000188910"
+"205490_x_at"	"GJB3"	2707	"ENSG00000188910"
+"206415_at"	"TLL1"	7092	"ENSG00000038295"
+"206379_at"	"EYA3"	2140	"ENSG00000158161"
+"206521_s_at"	"GTF2A1"	2957	"ENSG00000165417"
+"210419_at"	"BARX2"	8538	"ENSG00000043039"
+"206755_at"	"CYP2B6"	1555	"ENSG00000197408"
+"209077_at"	"TXN2"	25828	"ENSG00000100348"
+"209078_s_at"	"TXN2"	25828	"ENSG00000100348"
+"205949_at"	"CA1"	759	"ENSG00000133742"
+"205950_s_at"	"CA1"	759	"ENSG00000133742"
+"209620_s_at"	"ABCB7"	22	"ENSG00000131269"
+"205965_at"	"BATF"	10538	"ENSG00000156127"
+"208308_s_at"	"GPI"	2821	"ENSG00000105220"
+"206518_s_at"	"RGS9"	8787	"ENSG00000108370"
+"206340_at"	"NR1H4"	9971	"ENSG00000012504"
+"207279_s_at"	"NEBL"	10529	"ENSG00000078114"
+"205738_s_at"	"FABP3"	2170	"ENSG00000121769"
+"206774_at"	"FRMPD1"	22844	"ENSG00000070601"
+"208383_s_at"	"PCK1"	5105	"ENSG00000124253"
+"208099_x_at"	"TTLL5"	23093	"ENSG00000119685"
+"208087_s_at"	"ZBP1"	81030	"ENSG00000124256"
+"209049_s_at"	"ZMYND8"	23613	"ENSG00000101040"
+"209048_s_at"	"ZMYND8"	23613	"ENSG00000101040"
+"207130_at"	"ZMYND8"	23613	"ENSG00000101040"
+"208944_at"	"TGFBR2"	7048	"ENSG00000163513"
+"207334_s_at"	"TGFBR2"	7048	"ENSG00000163513"
+"210018_x_at"	"MALT1"	10892	"ENSG00000172175"
+"208309_s_at"	"MALT1"	10892	"ENSG00000172175"
+"210017_at"	"MALT1"	10892	"ENSG00000172175"
+"207736_s_at"	"TNP2"	7142	"ENSG00000178279"
+"210122_at"	"PRM2"	5620	"ENSG00000122304"
+"206358_at"	"PRM1"	5619	"ENSG00000175646"
+"207294_at"	"AGTR2"	186	"ENSG00000180772"
+"207293_s_at"	"AGTR2"	186	"ENSG00000180772"
+"208250_s_at"	"DMBT1"	1755	"ENSG00000187908"
+"207000_s_at"	"PPP3CC"	5533	"ENSG00000120910"
+"206421_s_at"	"SERPINB7"	8710	"ENSG00000166396"
+"208376_at"	"CCR4"	1233	"ENSG00000183813"
+"209946_at"	"VEGFC"	7424	"ENSG00000150630"
+"206612_at"	"CACNG1"	786	"ENSG00000108878"
+"206685_at"	"HCG4"	NA	"ENSG00000176998"
+"206178_at"	"PLA2G5"	5322	"ENSG00000127472"
+"209625_at"	"PIGH"	5283	"ENSG00000100564"
+"209471_s_at"	"FNTA"	2339	"ENSG00000168522"
+"208327_at"	"CYP2A13"	1553	"ENSG00000197838"
+"209452_s_at"	"VTI1B"	10490	"ENSG00000100568"
+"207365_x_at"	"USP34"	9736	"ENSG00000115464"
+"207403_at"	"IRS4"	8471	"ENSG00000133124"
+"206034_at"	"SERPINB8"	5271	"ENSG00000166401"
+"207451_at"	"NKX2-8"	26257	"ENSG00000136327"
+"207059_at"	"PAX9"	5083	"ENSG00000198807"
+"206484_s_at"	"XPNPEP2"	7512	"ENSG00000122121"
+"208899_x_at"	"ATP6V1D"	51382	"ENSG00000100554"
+"208898_at"	"ATP6V1D"	51382	"ENSG00000100554"
+"205876_at"	"LIFR"	3977	"ENSG00000113594"
+"206433_s_at"	"SPOCK3"	50859	"ENSG00000196104"
+"206434_at"	"SPOCK3"	50859	"ENSG00000196104"
+"209763_at"	"CHRDL1"	91851	"ENSG00000101938"
+"209391_at"	"DPM2"	8818	"ENSG00000136908"
+"205790_at"	"SKAP1"	8631	"ENSG00000141293"
+"207227_x_at"	"RFPL2"	10739	"ENSG00000128253"
+"209608_s_at"	"ACAT2"	39	"ENSG00000120437"
+"206156_at"	"GJB5"	2709	"ENSG00000189280"
+"206880_at"	"P2RX6"	9127	"ENSG00000099957"
+"205499_at"	"SRPX2"	27286	"ENSG00000102359"
+"206112_at"	"ANKRD7"	56311	"ENSG00000106013"
+"208060_at"	"PAX7"	5081	"ENSG00000009709"
+"208972_s_at"	"ATP5MC1"	516	"ENSG00000159199"
+"206329_at"	"EXTL1"	2134	"ENSG00000158008"
+"207029_at"	"KITLG"	4254	"ENSG00000049130"
+"210257_x_at"	"CUL4B"	8450	"ENSG00000158290"
+"209392_at"	"ENPP2"	5168	"ENSG00000136960"
+"206917_at"	"GNA13"	10672	"ENSG00000120063"
+"208191_x_at"	"PSG4"	5672	"ENSG00000243137"
+"205707_at"	"IL17RA"	23765	"ENSG00000177663"
+"206989_s_at"	"SCAF11"	9169	"ENSG00000139218"
+"209376_x_at"	"SCAF11"	9169	"ENSG00000139218"
+"207454_at"	"GRIK3"	2899	"ENSG00000163873"
+"210339_s_at"	"KLK2"	3817	"ENSG00000167751"
+"209854_s_at"	"KLK2"	3817	"ENSG00000167751"
+"209855_s_at"	"KLK2"	3817	"ENSG00000167751"
+"206470_at"	"PLXNC1"	10154	"ENSG00000136040"
+"206471_s_at"	"PLXNC1"	10154	"ENSG00000136040"
+"207502_at"	"GUCA2B"	2981	"ENSG00000044012"
+"207103_at"	"KCND2"	3751	"ENSG00000184408"
+"209594_x_at"	"PSG9"	5678	"ENSG00000183668"
+"207733_x_at"	"PSG9"	5678	"ENSG00000183668"
+"210064_s_at"	"UPK1B"	7348	"ENSG00000114638"
+"210065_s_at"	"UPK1B"	7348	"ENSG00000114638"
+"206372_at"	"MYF6"	4618	"ENSG00000111046"
+"209861_s_at"	"METAP2"	10988	"ENSG00000111142"
+"207115_x_at"	"MBTD1"	54799	"ENSG00000011258"
+"209730_at"	"SEMA3F"	6405	"ENSG00000001617"
+"206832_s_at"	"SEMA3F"	6405	"ENSG00000001617"
+"207767_s_at"	"EGR4"	1961	"ENSG00000135625"
+"207768_at"	"EGR4"	1961	"ENSG00000135625"
+"210321_at"	"GZMH"	2999	"ENSG00000100450"
+"209752_at"	"REG1A"	5967	"ENSG00000115386"
+"205653_at"	"CTSG"	1511	"ENSG00000100448"
+"207378_at"	"TREH"	11181	"ENSG00000118094"
+"205795_at"	"NRXN3"	9369	"ENSG00000021645"
+"206306_at"	"RYR3"	6263	"ENSG00000198838"
+"205582_s_at"	"GGT5"	2687	"ENSG00000099998"
+"207399_at"	"BFSP2"	8419	"ENSG00000170819"
+"206538_at"	"MRAS"	22808	"ENSG00000158186"
+"205602_x_at"	"PSG7"	5676	"ENSG00000221878"
+"206578_at"	"NKX2-5"	1482	"ENSG00000183072"
+"207589_at"	"ADRA1B"	147	"ENSG00000170214"
+"206715_at"	"TFEC"	22797	"ENSG00000105967"
+"209565_at"	"RNF113A"	7737	"ENSG00000125352"
+"208692_at"	"RPS3"	6188	"ENSG00000149273"
+"206807_s_at"	"ADD2"	119	"ENSG00000075340"
+"210297_s_at"	"MSMB"	4477	"ENSG00000263639"
+"207430_s_at"	"MSMB"	4477	"ENSG00000263639"
+"207011_s_at"	"PTK7"	5754	"ENSG00000112655"
+"208737_at"	"ATP6V1G1"	9550	"ENSG00000136888"
+"206660_at"	"IGLL1"	3543	"ENSG00000128322"
+"209573_s_at"	"LDLRAD4"	753	"ENSG00000168675"
+"207996_s_at"	"LDLRAD4"	753	"ENSG00000168675"
+"209574_s_at"	"LDLRAD4"	753	"ENSG00000168675"
+"207899_at"	"GIP"	2695	"ENSG00000159224"
+"205541_s_at"	"GSPT2"	23708	"ENSG00000189369"
+"209046_s_at"	"GABARAPL2"	11345	"ENSG00000034713"
+"208816_x_at"	"ANXA2P2"	NA	"ENSG00000231991"
+"210347_s_at"	"BCL11A"	53335	"ENSG00000119866"
+"208568_at"	"MC2R"	4158	"ENSG00000185231"
+"206556_at"	"CLUL1"	27098	"ENSG00000079101"
+"207714_s_at"	"SERPINH1"	871	"ENSG00000149257"
+"209926_at"	"BORCS8"	729991	"ENSG00000254901"
+"209845_at"	"MKRN1"	23608	"ENSG00000133606"
+"207809_s_at"	"ATP6AP1"	537	"ENSG00000071553"
+"207037_at"	"TNFRSF11A"	8792	"ENSG00000141655"
+"208406_s_at"	"GRAP2"	9402	"ENSG00000100351"
+"207678_s_at"	"SOX30"	11063	"ENSG00000039600"
+"208528_x_at"	"SSX5"	6758	"ENSG00000165583"
+"209576_at"	"GNAI1"	2770	"ENSG00000127955"
+"208156_x_at"	"EPPK1"	83481	"ENSG00000261150"
+"205892_s_at"	"FABP1"	2168	"ENSG00000163586"
+"207648_at"	"DRP2"	1821	"ENSG00000102385"
+"205925_s_at"	"RAB3B"	5865	"ENSG00000169213"
+"205924_at"	"RAB3B"	5865	"ENSG00000169213"
+"207109_at"	"POU2F3"	25833	"ENSG00000137709"
+"208999_at"	"SEPTIN8"	23176	"ENSG00000164402"
+"209000_s_at"	"SEPTIN8"	23176	"ENSG00000164402"
+"210111_s_at"	"KLHDC10"	23008	"ENSG00000128607"
+"209254_at"	"KLHDC10"	23008	"ENSG00000128607"
+"209255_at"	"KLHDC10"	23008	"ENSG00000128607"
+"209256_s_at"	"KLHDC10"	23008	"ENSG00000128607"
+"208574_at"	"SOX14"	8403	"ENSG00000168875"
+"207030_s_at"	"CSRP2"	1466	"ENSG00000175183"
+"206444_at"	"PDE1B"	5153	"ENSG00000123360"
+"207166_at"	"GNGT1"	2792	"ENSG00000127928"
+"208032_s_at"	"GRIA3"	2892	"ENSG00000125675"
+"206730_at"	"GRIA3"	2892	"ENSG00000125675"
+"205886_at"	"REG1B"	5968	"ENSG00000172023"
+"207123_s_at"	"MATN4"	8785	"ENSG00000124159"
+"206373_at"	"ZIC1"	7545	"ENSG00000152977"
+"208595_s_at"	"MBD1"	4152	"ENSG00000141644"
+"208538_at"	"ANP32C"	NA	"ENSG00000248546"
+"206696_at"	"GPR143"	4935	"ENSG00000101850"
+"205895_s_at"	"NOLC1"	9221	"ENSG00000166197"
+"205623_at"	"ALDH3A1"	218	"ENSG00000108602"
+"209674_at"	"CRY1"	1407	"ENSG00000008405"
+"209842_at"	"SOX10"	6663	"ENSG00000100146"
+"209843_s_at"	"SOX10"	6663	"ENSG00000100146"
+"208206_s_at"	"RASGRP2"	10235	"ENSG00000068831"
+"205870_at"	"BDKRB2"	624	"ENSG00000168398"
+"207539_s_at"	"IL4"	3565	"ENSG00000113520"
+"207538_at"	"IL4"	3565	"ENSG00000113520"
+"208049_s_at"	"TACR1"	6869	"ENSG00000115353"
+"208048_at"	"TACR1"	6869	"ENSG00000115353"
+"207765_s_at"	"ATOSB"	80256	"ENSG00000005238"
+"209296_at"	"PPM1B"	5495	"ENSG00000138032"
+"205792_at"	"CCN5"	8839	"ENSG00000064205"
+"209778_at"	"TRIP11"	9321	"ENSG00000100815"
+"207757_at"	"ZFP2"	80108	"ENSG00000198939"
+"207241_at"	"LINC01587"	10141	"ENSG00000082929"
+"206790_s_at"	"NDUFB1"	4707	"ENSG00000183648"
+"205723_at"	"CNTFR"	1271	"ENSG00000122756"
+"207357_s_at"	"GALNT10"	55568	"ENSG00000164574"
+"205913_at"	"PLIN1"	5346	"ENSG00000166819"
+"205577_at"	"PYGM"	5837	"ENSG00000068976"
+"208511_at"	"PTTG3P"	NA	"ENSG00000213005"
+"209265_s_at"	"METTL3"	56339	"ENSG00000165819"
+"208722_s_at"	"ANAPC5"	51433	"ENSG00000089053"
+"208721_s_at"	"ANAPC5"	51433	"ENSG00000089053"
+"209486_at"	"UTP3"	57050	"ENSG00000132467"
+"210251_s_at"	"RUFY3"	22902	"ENSG00000018189"
+"206524_at"	"TBXT"	6862	"ENSG00000164458"
+"210072_at"	"CCL19"	6363	"ENSG00000172724"
+"206015_s_at"	"FOXJ3"	22887	"ENSG00000198815"
+"205969_at"	"AADAC"	13	"ENSG00000114771"
+"208264_s_at"	"EIF3J"	8669	"ENSG00000104131"
+"208985_s_at"	"EIF3J"	8669	"ENSG00000104131"
+"208053_at"	"GUCY2F"	2986	"ENSG00000101890"
+"209629_s_at"	"NXT2"	55916	"ENSG00000101888"
+"209628_at"	"NXT2"	55916	"ENSG00000101888"
+"209037_s_at"	"EHD1"	10938	"ENSG00000110047"
+"209039_x_at"	"EHD1"	10938	"ENSG00000110047"
+"208112_x_at"	"EHD1"	10938	"ENSG00000110047"
+"209038_s_at"	"EHD1"	10938	"ENSG00000110047"
+"207766_at"	"CDKL1"	8814	"ENSG00000100490"
+"210175_at"	"GCFC2"	6936	"ENSG00000005436"
+"208771_s_at"	"LTA4H"	4048	"ENSG00000111144"
+"209208_at"	"MPDU1"	9526	"ENSG00000129255"
+"206608_s_at"	"RPGRIP1"	57096	"ENSG00000092200"
+"207849_at"	"IL2"	3558	"ENSG00000109471"
+"205910_s_at"	"CEL"	1056	"ENSG00000170835"
+"206187_at"	"PTGIR"	5739	"ENSG00000160013"
+"209444_at"	"RAP1GDS1"	5910	"ENSG00000138698"
+"206122_at"	"SOX15"	6665	"ENSG00000129194"
+"207665_at"	"ADAM21"	8747	"ENSG00000139985"
+"207423_s_at"	"ADAM20"	8748	"ENSG00000134007"
+"210093_s_at"	"MAGOH"	4116	"ENSG00000162385"
+"209116_x_at"	"HBB"	3043	"ENSG00000244734"
+"210104_at"	"MED6"	10001	"ENSG00000133997"
+"208055_s_at"	"HERC4"	26091	"ENSG00000148634"
+"208054_at"	"HERC4"	26091	"ENSG00000148634"
+"208177_at"	"SLC34A1"	6569	"ENSG00000131183"
+"205786_s_at"	"ITGAM"	3684	"ENSG00000169896"
+"206834_at"	"HBD"	3045	"ENSG00000223609"
+"206831_s_at"	"ARSD"	414	"ENSG00000006756"
+"207784_at"	"ARSD"	414	"ENSG00000006756"
+"206907_at"	"TNFSF9"	8744	"ENSG00000125657"
+"209711_at"	"SLC35D1"	23169	"ENSG00000116704"
+"209713_s_at"	"SLC35D1"	23169	"ENSG00000116704"
+"209712_at"	"SLC35D1"	23169	"ENSG00000116704"
+"210184_at"	"ITGAX"	3687	"ENSG00000140678"
+"206508_at"	"CD70"	970	"ENSG00000125726"
+"207148_x_at"	"MYOZ2"	51778	"ENSG00000172399"
+"208808_s_at"	"HMGB2"	3148	"ENSG00000164104"
+"205894_at"	"ARSL"	415	"ENSG00000157399"
+"208433_s_at"	"LRP8"	7804	"ENSG00000157193"
+"205475_at"	"SCRG1"	11341	"ENSG00000164106"
+"208212_s_at"	"ALK"	238	"ENSG00000171094"
+"208211_s_at"	"ALK"	238	"ENSG00000171094"
+"206353_at"	"COX6A2"	1339	"ENSG00000156885"
+"208697_s_at"	"EIF3E"	3646	"ENSG00000104408"
+"209651_at"	"TGFB1I1"	7041	"ENSG00000140682"
+"210427_x_at"	"ANXA2"	302	"ENSG00000182718"
+"207907_at"	"TNFSF14"	8740	"ENSG00000125735"
+"206489_s_at"	"DLGAP1"	9229	"ENSG00000170579"
+"206490_at"	"DLGAP1"	9229	"ENSG00000170579"
+"209386_at"	"TM4SF1"	4071	"ENSG00000169908"
+"209387_s_at"	"TM4SF1"	4071	"ENSG00000169908"
+"206102_at"	"GINS1"	9837	"ENSG00000101003"
+"206052_s_at"	"SLBP"	7884	"ENSG00000163950"
+"210103_s_at"	"FOXA2"	3170	"ENSG00000125798"
+"207771_at"	"SLC5A2"	6524	"ENSG00000140675"
+"210102_at"	"VWA5A"	4013	"ENSG00000110002"
+"210385_s_at"	"ERAP1"	51752	"ENSG00000164307"
+"209788_s_at"	"ERAP1"	51752	"ENSG00000164307"
+"206218_at"	"MAGEB2"	4113	"ENSG00000099399"
+"205692_s_at"	"CD38"	952	"ENSG00000004468"
+"207580_at"	"MAGEB4"	4115	"ENSG00000120289"
+"209339_at"	"SIAH2"	6478	"ENSG00000181788"
+"210293_s_at"	"SEC23B"	10483	"ENSG00000101310"
+"208949_s_at"	"LGALS3"	3958	"ENSG00000131981"
+"209477_at"	"EMD"	2010	"ENSG00000102119"
+"206019_at"	"RBM19"	9904	"ENSG00000122965"
+"206939_at"	"DCC"	1630	"ENSG00000187323"
+"207384_at"	"PGLYRP1"	8993	"ENSG00000008438"
+"209479_at"	"CCDC28A"	25901	"ENSG00000024862"
+"207212_at"	"SLC9A3"	6550	"ENSG00000066230"
+"207590_s_at"	"CENPI"	2491	"ENSG00000102384"
+"210074_at"	"CTSV"	1515	"ENSG00000136943"
+"207051_at"	"SLC17A4"	10050	"ENSG00000146039"
+"205964_at"	"ZNF426"	79088	"ENSG00000130818"
+"208144_s_at"	"TCEANC2"	127428	"ENSG00000116205"
+"206872_at"	"SLC17A1"	6568	"ENSG00000124568"
+"208359_s_at"	"KCNJ4"	3761	"ENSG00000168135"
+"206179_s_at"	"TPPP"	11076	"ENSG00000171368"
+"207264_at"	"KDELR3"	11015	"ENSG00000100196"
+"207265_s_at"	"KDELR3"	11015	"ENSG00000100196"
+"207713_s_at"	"RBCK1"	10616	"ENSG00000125826"
+"208719_s_at"	"DDX17"	10521	"ENSG00000100201"
+"208718_at"	"DDX17"	10521	"ENSG00000100201"
+"208151_x_at"	"DDX17"	10521	"ENSG00000100201"
+"207534_at"	"MAGEB1"	4112	"ENSG00000214107"
+"207298_at"	"SLC17A3"	10786	"ENSG00000124564"
+"206868_at"	"STARD8"	9754	"ENSG00000130052"
+"207579_at"	"MAGEB3"	4114	"ENSG00000198798"
+"209605_at"	"TST"	7263	"ENSG00000128311"
+"208484_at"	"H1-1"	3024	"ENSG00000124610"
+"208575_at"	"H3C1"	8350	"ENSG00000275714"
+"208046_at"	"H4C1"	8359	"ENSG00000278637"
+"208576_s_at"	"H3C2"	8358	"ENSG00000286522"
+"208569_at"	"H2AC4"	8335	"ENSG00000278463"
+"208547_at"	"H2BC3"	3018	"ENSG00000276410"
+"208577_at"	"H3C3"	8352	"ENSG00000287080"
+"209398_at"	"H1-2"	3006	"ENSG00000187837"
+"208553_at"	"H1-4"	3008	"ENSG00000168298"
+"208527_x_at"	"H2BC6"	8344	"ENSG00000274290"
+"208076_at"	"H4C4"	8360	"ENSG00000277157"
+"207337_at"	"CTAG2"	30848	"ENSG00000126890"
+"209521_s_at"	"AMOT"	154796	"ENSG00000126016"
+"206174_s_at"	"PPP6C"	5537	"ENSG00000119414"
+"210025_s_at"	"CARD10"	29775	"ENSG00000100065"
+"210026_s_at"	"CARD10"	29775	"ENSG00000100065"
+"207107_at"	"RPE65"	6121	"ENSG00000116745"
+"207071_s_at"	"ACO1"	48	"ENSG00000122729"
+"208450_at"	"LGALS2"	3957	"ENSG00000100079"
+"207419_s_at"	"RAC2"	5880	"ENSG00000128340"
+"210300_at"	"REM1"	28954	"ENSG00000088320"
+"209397_at"	"ME2"	4200	"ENSG00000082212"
+"210153_s_at"	"ME2"	4200	"ENSG00000082212"
+"210154_at"	"ME2"	4200	"ENSG00000082212"
+"209546_s_at"	"APOL1"	8542	"ENSG00000100342"
+"208927_at"	"SPOP"	8405	"ENSG00000121067"
+"205719_s_at"	"PAH"	5053	"ENSG00000171759"
+"207823_s_at"	"AIF1"	199	"ENSG00000204472"
+"208258_s_at"	"GAS2L1"	10634	"ENSG00000185340"
+"209729_at"	"GAS2L1"	10634	"ENSG00000185340"
+"207424_at"	"MYF5"	4617	"ENSG00000111049"
+"208501_at"	"GFI1B"	8328	"ENSG00000165702"
+"209833_at"	"CRADD"	8738	"ENSG00000169372"
+"206664_at"	"SI"	6476	"ENSG00000090402"
+"208743_s_at"	"YWHAB"	7529	"ENSG00000166913"
+"207102_at"	"AKR1D1"	6718	"ENSG00000122787"
+"208914_at"	"GGA2"	23062	"ENSG00000103365"
+"208915_s_at"	"GGA2"	23062	"ENSG00000103365"
+"208913_at"	"GGA2"	23062	"ENSG00000103365"
+"207218_at"	"F9"	2158	"ENSG00000101981"
+"208897_s_at"	"DDX18"	8886	"ENSG00000088205"
+"208895_s_at"	"DDX18"	8886	"ENSG00000088205"
+"205763_s_at"	"DDX18"	8886	"ENSG00000088205"
+"208896_at"	"DDX18"	8886	"ENSG00000088205"
+"207662_at"	"TBX1"	6899	"ENSG00000184058"
+"207366_at"	"KCNS1"	3787	"ENSG00000124134"
+"208147_s_at"	"CYP2C8"	1558	"ENSG00000138115"
+"206442_at"	"SEMG1"	6406	"ENSG00000124233"
+"208836_at"	"ATP1B3"	483	"ENSG00000069849"
+"209232_s_at"	"DCTN5"	84516	"ENSG00000166847"
+"209231_s_at"	"DCTN5"	84516	"ENSG00000166847"
+"209473_at"	"ENTPD1"	953	"ENSG00000138185"
+"207691_x_at"	"ENTPD1"	953	"ENSG00000138185"
+"209474_s_at"	"ENTPD1"	953	"ENSG00000138185"
+"205681_at"	"BCL2A1"	597	"ENSG00000140379"
+"208106_x_at"	"PSG6"	5675	"ENSG00000170848"
+"209738_x_at"	"PSG6"	5675	"ENSG00000170848"
+"206619_at"	"DKK4"	27121	"ENSG00000104371"
+"208845_at"	"VDAC3"	7419	"ENSG00000078668"
+"208846_s_at"	"VDAC3"	7419	"ENSG00000078668"
+"208397_x_at"	"KCNJ5"	3762	"ENSG00000120457"
+"208404_x_at"	"KCNJ5"	3762	"ENSG00000120457"
+"206932_at"	"CH25H"	9023	"ENSG00000138135"
+"209798_at"	"NPAT"	4863	"ENSG00000149308"
+"206535_at"	"SLC2A2"	6514	"ENSG00000163581"
+"209734_at"	"NCKAP1L"	3071	"ENSG00000123338"
+"206425_s_at"	"TRPC3"	7222	"ENSG00000138741"
+"206732_at"	"SLITRK3"	22865	"ENSG00000121871"
+"207455_at"	"P2RY1"	5028	"ENSG00000169860"
+"207177_at"	"PTGFR"	5737	"ENSG00000122420"
+"209283_at"	"CRYAB"	1410	"ENSG00000109846"
+"209004_s_at"	"FBXL5"	26234	"ENSG00000118564"
+"209005_at"	"FBXL5"	26234	"ENSG00000118564"
+"209204_at"	"LMO4"	8543	"ENSG00000143013"
+"209205_s_at"	"LMO4"	8543	"ENSG00000143013"
+"210445_at"	"FABP6"	2172	"ENSG00000170231"
+"209707_at"	"PIGK"	10026	"ENSG00000142892"
+"206227_at"	"CILP"	8483	"ENSG00000138615"
+"208648_at"	"VCP"	7415	"ENSG00000165280"
+"208649_s_at"	"VCP"	7415	"ENSG00000165280"
+"209550_at"	"NDN"	4692	"ENSG00000182636"
+"209725_at"	"UTP20"	27340	"ENSG00000120800"
+"207640_x_at"	"NTN3"	4917	"ENSG00000162068"
+"207003_at"	"GUCA2A"	2980	"ENSG00000197273"
+"208589_at"	"TRPC7"	57113	"ENSG00000069018"
+"210393_at"	"LGR5"	8549	"ENSG00000139292"
+"207641_at"	"TNFRSF13B"	23495	"ENSG00000240505"
+"205715_at"	"BST1"	683	"ENSG00000109743"
+"206625_at"	"PRPH2"	5961	"ENSG00000112619"
+"210360_s_at"	"MTSS1"	9788	"ENSG00000170873"
+"210359_at"	"MTSS1"	9788	"ENSG00000170873"
+"209765_at"	"ADAM19"	8728	"ENSG00000135074"
+"210295_at"	"MAGEA10"	4109	"ENSG00000124260"
+"206295_at"	"IL18"	3606	"ENSG00000150782"
+"209817_at"	"PPP3CB"	5532	"ENSG00000107758"
+"208350_at"	"CSN1S1"	1446	"ENSG00000126545"
+"206561_s_at"	"AKR1B10"	57016	"ENSG00000198074"
+"210357_s_at"	"SMOX"	54498	"ENSG00000088826"
+"205770_at"	"GSR"	2936	"ENSG00000104687"
+"209889_at"	"SEC31B"	25956	"ENSG00000075826"
+"207962_at"	"CAPN11"	11131	"ENSG00000137225"
+"209461_x_at"	"WDR18"	57418	"ENSG00000065268"
+"209822_s_at"	"VLDLR"	7436	"ENSG00000147852"
+"209694_at"	"PTS"	5805	"ENSG00000150787"
+"209317_at"	"POLR1C"	9533	"ENSG00000171453"
+"207515_s_at"	"POLR1C"	9533	"ENSG00000171453"
+"207721_x_at"	"HINT1"	3094	"ENSG00000169567"
+"208826_x_at"	"HINT1"	3094	"ENSG00000169567"
+"209417_s_at"	"IFI35"	3430	"ENSG00000068079"
+"208656_s_at"	"CCNI"	10983	"ENSG00000118816"
+"208655_at"	"CCNI"	10983	"ENSG00000118816"
+"209844_at"	"HOXB13"	10481	"ENSG00000159184"
+"208279_s_at"	"FBXW10B"	374286	"ENSG00000241322"
+"206927_s_at"	"GUCY1A2"	2977	"ENSG00000152402"
+"207442_at"	"CSF3"	1440	"ENSG00000108342"
+"207182_at"	"GABRA6"	2559	"ENSG00000145863"
+"208275_x_at"	"UTF1"	8433	"ENSG00000171794"
+"207376_at"	"VENTX"	27287	"ENSG00000151650"
+"207414_s_at"	"PCSK6"	5046	"ENSG00000140479"
+"207142_at"	"KCNJ3"	3760	"ENSG00000162989"
+"207141_s_at"	"KCNJ3"	3760	"ENSG00000162989"
+"209615_s_at"	"PAK1"	5058	"ENSG00000149269"
+"205947_s_at"	"VIPR2"	7434	"ENSG00000106018"
+"205946_at"	"VIPR2"	7434	"ENSG00000106018"
+"209472_at"	"KYAT3"	56267	"ENSG00000137944"
+"209531_at"	"GSTZ1"	2954	"ENSG00000100577"
+"210086_at"	"HR"	55806	"ENSG00000168453"
+"209596_at"	"MXRA5"	25878	"ENSG00000101825"
+"207347_at"	"ERCC6"	2074	"ENSG00000225830"
+"208283_at"	"GAGE1"	2543	"ENSG00000205777"
+"209985_s_at"	"ASCL1"	429	"ENSG00000139352"
+"209987_s_at"	"ASCL1"	429	"ENSG00000139352"
+"209988_s_at"	"ASCL1"	429	"ENSG00000139352"
+"208434_at"	"MECOM"	2122	"ENSG00000085276"
+"207150_at"	"SLC18A3"	6572	"ENSG00000187714"
+"205864_at"	"SLC7A4"	6545	"ENSG00000099960"
+"205574_x_at"	"BMP1"	649	"ENSG00000168487"
+"207595_s_at"	"BMP1"	649	"ENSG00000168487"
+"206725_x_at"	"BMP1"	649	"ENSG00000168487"
+"206720_at"	"MGAT5"	4249	"ENSG00000152127"
+"208416_s_at"	"SPTB"	6710	"ENSG00000070182"
+"209522_s_at"	"CRAT"	1384	"ENSG00000095321"
+"205843_x_at"	"CRAT"	1384	"ENSG00000095321"
+"206100_at"	"CPM"	1368	"ENSG00000135678"
+"207993_s_at"	"CHP1"	11261	"ENSG00000187446"
+"208552_at"	"GRIK4"	2900	"ENSG00000149403"
+"207060_at"	"EN2"	2020	"ENSG00000164778"
+"206878_at"	"DAO"	1610	"ENSG00000110887"
+"209224_s_at"	"NDUFA2"	4695	"ENSG00000131495"
+"209223_at"	"NDUFA2"	4695	"ENSG00000131495"
+"210011_s_at"	"EWSR1"	2130	"ENSG00000182944"
+"209214_s_at"	"EWSR1"	2130	"ENSG00000182944"
+"210012_s_at"	"EWSR1"	2130	"ENSG00000182944"
+"209252_at"	"HARS2"	23438	"ENSG00000112855"
+"208210_at"	"MAS1"	4142	"ENSG00000130368"
+"209631_s_at"	"GPR37"	2861	"ENSG00000170775"
+"206249_at"	"MAP3K13"	9175	"ENSG00000073803"
+"206053_at"	"ZNF510"	22869	"ENSG00000081386"
+"205874_at"	"ITPKA"	3706	"ENSG00000137825"
+"207201_s_at"	"SLC22A1"	6580	"ENSG00000175003"
+"209693_at"	"ASTN2"	23245	"ENSG00000148219"
+"207106_s_at"	"LTK"	4058	"ENSG00000062524"
+"206926_s_at"	"IL11"	3589	"ENSG00000095752"
+"206924_at"	"IL11"	3589	"ENSG00000095752"
+"207884_at"	"GUCY2D"	3000	"ENSG00000132518"
+"206714_at"	"ALOX15B"	247	"ENSG00000179593"
+"208361_s_at"	"POLR3D"	661	"ENSG00000168495"
+"208117_s_at"	"LAS1L"	81887	"ENSG00000001497"
+"209837_at"	"AP4M1"	9179	"ENSG00000221838"
+"205651_x_at"	"RAPGEF4"	11069	"ENSG00000091428"
+"207381_at"	"ALOX12B"	242	"ENSG00000179477"
+"209742_s_at"	"MYL2"	4633	"ENSG00000111245"
+"206960_at"	"LPAR4"	2846	"ENSG00000147145"
+"207006_s_at"	"CCDC106"	29903	"ENSG00000173581"
+"205781_at"	"VPS9D1"	9605	"ENSG00000075399"
+"208637_x_at"	"ACTN1"	87	"ENSG00000072110"
+"208636_at"	"ACTN1"	87	"ENSG00000072110"
+"206771_at"	"UPK3A"	7380	"ENSG00000100373"
+"209902_at"	"ATR"	545	"ENSG00000175054"
+"209903_s_at"	"ATR"	545	"ENSG00000175054"
+"206813_at"	"CTF1"	1489	"ENSG00000150281"
+"209137_s_at"	"USP10"	9100	"ENSG00000103194"
+"209136_s_at"	"USP10"	9100	"ENSG00000103194"
+"209464_at"	"AURKB"	9212	"ENSG00000178999"
+"206823_at"	"L3MBTL1"	26013	"ENSG00000185513"
+"206526_at"	"RIBC2"	26150	"ENSG00000128408"
+"208495_at"	"TLX3"	30012	"ENSG00000164438"
+"206987_x_at"	"FGF18"	8817	"ENSG00000156427"
+"207834_at"	"FBLN1"	2192	"ENSG00000077942"
+"207835_at"	"FBLN1"	2192	"ENSG00000077942"
+"208006_at"	"FOXI1"	2299	"ENSG00000168269"
+"206043_s_at"	"ATP2C2"	9914	"ENSG00000064270"
+"209948_at"	"KCNMB1"	3779	"ENSG00000145936"
+"207091_at"	"P2RX7"	5027	"ENSG00000089041"
+"207338_s_at"	"ZNF200"	7752	"ENSG00000010539"
+"209981_at"	"CSDC2"	27254	"ENSG00000172346"
+"207143_at"	"CDK6"	1021	"ENSG00000105810"
+"209937_at"	"TM4SF4"	7104	"ENSG00000169903"
+"206585_at"	"MKRN3"	7681	"ENSG00000179455"
+"205507_at"	"ARHGEF15"	22899	"ENSG00000198844"
+"205782_at"	"FGF7"	2252	"ENSG00000140285"
+"205982_x_at"	"SFTPC"	6440	"ENSG00000168484"
+"207124_s_at"	"GNB5"	10681	"ENSG00000069966"
+"207934_at"	"RFPL1"	5988	"ENSG00000128250"
+"205944_s_at"	"CLTCL1"	8218	"ENSG00000070371"
+"206173_x_at"	"GABPB1"	2553	"ENSG00000104064"
+"206551_x_at"	"KLHL24"	54800	"ENSG00000114796"
+"208449_s_at"	"FGF8"	2253	"ENSG00000107831"
+"208005_at"	"NTN1"	9423	"ENSG00000065320"
+"206046_at"	"ADAM23"	8745	"ENSG00000114948"
+"209306_s_at"	"SWAP70"	23075	"ENSG00000133789"
+"209307_at"	"SWAP70"	23075	"ENSG00000133789"
+"210369_at"	"SWAP70"	23075	"ENSG00000133789"
+"205696_s_at"	"GFRA1"	2674	"ENSG00000151892"
+"210278_s_at"	"AP4S1"	11154	"ENSG00000100478"
+"210277_at"	"AP4S1"	11154	"ENSG00000100478"
+"208872_s_at"	"REEP5"	7905	"ENSG00000129625"
+"208873_s_at"	"REEP5"	7905	"ENSG00000129625"
+"207569_at"	"ROS1"	6098	"ENSG00000047936"
+"205603_s_at"	"DIAPH2"	1730	"ENSG00000147202"
+"205726_at"	"DIAPH2"	1730	"ENSG00000147202"
+"206654_s_at"	"POLR3G"	10622	"ENSG00000113356"
+"206653_at"	"POLR3G"	10622	"ENSG00000113356"
+"209388_at"	"PAPOLA"	10914	"ENSG00000090060"
+"210433_at"	"POFUT1"	23509	"ENSG00000101346"
+"209342_s_at"	"IKBKB"	3551	"ENSG00000104365"
+"209341_s_at"	"IKBKB"	3551	"ENSG00000104365"
+"209877_at"	"SNCG"	6623	"ENSG00000173267"
+"206416_at"	"ZNF205"	7755	"ENSG00000122386"
+"209427_at"	"SMTN"	6525	"ENSG00000183963"
+"207390_s_at"	"SMTN"	6525	"ENSG00000183963"
+"206849_at"	"GABRG2"	2566	"ENSG00000113327"
+"207692_s_at"	"ACAN"	176	"ENSG00000157766"
+"205679_x_at"	"ACAN"	176	"ENSG00000157766"
+"209495_at"	"CEP250"	11190	"ENSG00000126001"
+"209922_at"	"BRAP"	8315	"ENSG00000089234"
+"209923_s_at"	"BRAP"	8315	"ENSG00000089234"
+"206203_at"	"RCVRN"	5957	"ENSG00000109047"
+"208208_at"	"MYH13"	8735	"ENSG00000006788"
+"206717_at"	"MYH8"	4626	"ENSG00000133020"
+"208887_at"	"EIF3G"	8666	"ENSG00000130811"
+"208148_at"	"MYH4"	4622	"ENSG00000264424"
+"208429_x_at"	"HNF4A"	3172	"ENSG00000101076"
+"205951_at"	"MYH1"	4619	"ENSG00000109061"
+"205581_s_at"	"NOS3"	4846	"ENSG00000164867"
+"208537_at"	"S1PR2"	9294	"ENSG00000267534"
+"206395_at"	"DGKG"	1608	"ENSG00000058866"
+"206851_at"	"RNASE3"	6037	"ENSG00000169397"
+"207280_at"	"RNF185-AS1"	NA	"ENSG00000254835"
+"206582_s_at"	"ADGRG1"	9289	"ENSG00000205336"
+"207583_at"	"ABCD2"	225	"ENSG00000173208"
+"207194_s_at"	"ICAM4"	3386	"ENSG00000105371"
+"207561_s_at"	"ASIC3"	9311	"ENSG00000213199"
+"209862_s_at"	"CEP57"	9702	"ENSG00000166037"
+"208137_x_at"	"ZNF611"	81856	"ENSG00000213020"
+"205940_at"	"MYH3"	4621	"ENSG00000109063"
+"207802_at"	"CRISP3"	10321	"ENSG00000096006"
+"206580_s_at"	"EFEMP2"	30008	"ENSG00000172638"
+"209356_x_at"	"EFEMP2"	30008	"ENSG00000172638"
+"206182_at"	"ZNF134"	7693	"ENSG00000213762"
+"207352_s_at"	"GABRB2"	2561	"ENSG00000145864"
+"208770_s_at"	"EIF4EBP2"	1979	"ENSG00000148730"
+"208769_at"	"EIF4EBP2"	1979	"ENSG00000148730"
+"207463_x_at"	"PRSS3"	5646	"ENSG00000010438"
+"209246_at"	"ABCF2"	10061	"ENSG00000033050"
+"209247_s_at"	"ABCF2"	10061	"ENSG00000033050"
+"209080_x_at"	"GLRX3"	10539	"ENSG00000108010"
+"207506_at"	"GLRX3"	10539	"ENSG00000108010"
+"207959_s_at"	"DNAH9"	1770	"ENSG00000007174"
+"210345_s_at"	"DNAH9"	1770	"ENSG00000007174"
+"205737_at"	"KCNQ2"	3785	"ENSG00000075043"
+"209662_at"	"CETN3"	1070	"ENSG00000153140"
+"207453_s_at"	"DNAJB5"	25822	"ENSG00000137094"
+"209859_at"	"TRIM9"	114088	"ENSG00000100505"
+"207897_at"	"CRHR2"	1395	"ENSG00000106113"
+"209220_at"	"GPC3"	2719	"ENSG00000147257"
+"205879_x_at"	"RET"	5979	"ENSG00000165731"
+"205733_at"	"BLM"	641	"ENSG00000197299"
+"209516_at"	"SMYD5"	10322	"ENSG00000135632"
+"208111_at"	"AVPR2"	554	"ENSG00000126895"
+"208108_s_at"	"AVPR2"	554	"ENSG00000126895"
+"208693_s_at"	"GARS1"	2617	"ENSG00000106105"
+"205702_at"	"PHTF1"	10745	"ENSG00000116793"
+"210191_s_at"	"PHTF1"	10745	"ENSG00000116793"
+"209941_at"	"RIPK1"	8737	"ENSG00000137275"
+"210439_at"	"ICOS"	29851	"ENSG00000163600"
+"210125_s_at"	"BANF1"	8815	"ENSG00000175334"
+"206844_at"	"FBP2"	8789	"ENSG00000130957"
+"210097_s_at"	"NOL7"	51406	"ENSG00000225921"
+"209696_at"	"FBP1"	2203	"ENSG00000165140"
+"206595_at"	"CST6"	1474	"ENSG00000175315"
+"208253_at"	"SIGLEC8"	27181	"ENSG00000105366"
+"210352_at"	"BRD8"	10902	"ENSG00000112983"
+"209630_s_at"	"FBXW2"	26190	"ENSG00000119402"
+"209740_s_at"	"PNPLA4"	8228	"ENSG00000006757"
+"209739_s_at"	"PNPLA4"	8228	"ENSG00000006757"
+"206920_s_at"	"GLE1"	2733	"ENSG00000119392"
+"206921_at"	"GLE1"	2733	"ENSG00000119392"
+"206520_x_at"	"SIGLEC6"	946	"ENSG00000105492"
+"206519_x_at"	"SIGLEC6"	946	"ENSG00000105492"
+"207886_s_at"	"CALCR"	799	"ENSG00000004948"
+"207887_s_at"	"CALCR"	799	"ENSG00000004948"
+"207705_s_at"	"NINL"	22981	"ENSG00000101004"
+"205497_at"	"ZNF175"	7728	"ENSG00000105497"
+"207316_at"	"HAS1"	3036	"ENSG00000105509"
+"206000_at"	"MEP1A"	4224	"ENSG00000112818"
+"210288_at"	"KLRG1"	10219	"ENSG00000139187"
+"206476_s_at"	"NOVA2"	4858	"ENSG00000104967"
+"206477_s_at"	"NOVA2"	4858	"ENSG00000104967"
+"210059_s_at"	"MAPK13"	5603	"ENSG00000156711"
+"210058_at"	"MAPK13"	5603	"ENSG00000156711"
+"207330_at"	"PZP"	5858	"ENSG00000126838"
+"206890_at"	"IL12RB1"	3594	"ENSG00000096996"
+"205678_at"	"AP3B2"	8120	"ENSG00000103723"
+"207147_at"	"DLX2"	1746	"ENSG00000115844"
+"207155_at"	"TBX5"	6910	"ENSG00000089225"
+"208984_x_at"	"RBM10"	8241	"ENSG00000182872"
+"207450_s_at"	"POU6F2"	11281	"ENSG00000106536"
+"207687_at"	"INHBC"	3626	"ENSG00000175189"
+"206646_at"	"GLI1"	2735	"ENSG00000111087"
+"205953_at"	"LRIG2"	9860	"ENSG00000198799"
+"205668_at"	"LY75"	4065	"ENSG00000054219"
+"209784_s_at"	"JAG2"	3714	"ENSG00000184916"
+"206770_s_at"	"SLC35A3"	23443	"ENSG00000117620"
+"209865_at"	"SLC35A3"	23443	"ENSG00000117620"
+"208380_at"	"LBX1"	10660	"ENSG00000138136"
+"207076_s_at"	"ASS1"	445	"ENSG00000130707"
+"206068_s_at"	"ACADL"	33	"ENSG00000115361"
+"206069_s_at"	"ACADL"	33	"ENSG00000115361"
+"207252_at"	"INE1"	8552	"ENSG00000224975"
+"208964_s_at"	"FADS1"	3992	"ENSG00000149485"
+"208963_x_at"	"FADS1"	3992	"ENSG00000149485"
+"208962_s_at"	"FADS1"	3992	"ENSG00000149485"
+"206212_at"	"CPA2"	1358	"ENSG00000158516"
+"207513_s_at"	"ZNF189"	7743	"ENSG00000136870"
+"209821_at"	"IL33"	90865	"ENSG00000137033"
+"206261_at"	"ZNF239"	8187	"ENSG00000196793"
+"209538_at"	"ZNF32"	7580	"ENSG00000169740"
+"208978_at"	"CRIP2"	1397	"ENSG00000182809"
+"207615_s_at"	"GAS8-AS1"	750	"ENSG00000221819"
+"207363_at"	"RS1"	6247	"ENSG00000102104"
+"209439_s_at"	"PHKA2"	5256	"ENSG00000044446"
+"209438_at"	"PHKA2"	5256	"ENSG00000044446"
+"206435_at"	"B4GALNT1"	2583	"ENSG00000135454"
+"208354_s_at"	"SLC12A3"	6559	"ENSG00000070915"
+"208110_x_at"	"MED25"	81857	"ENSG00000104973"
+"207179_at"	"TLX1"	3195	"ENSG00000107807"
+"206657_s_at"	"MYOD1"	4654	"ENSG00000129152"
+"208477_at"	"KCNC1"	3746	"ENSG00000129159"
+"206661_at"	"DBF4B"	80174	"ENSG00000161692"
+"207880_at"	"ADAM11"	4185	"ENSG00000073670"
+"206294_at"	"HSD3B2"	3284	"ENSG00000203859"
+"208460_at"	"GJC1"	10052	"ENSG00000182963"
+"207175_at"	"ADIPOQ"	9370	"ENSG00000181092"
+"205948_at"	"PTPRT"	11122	"ENSG00000196090"
+"205573_s_at"	"SNX7"	51375	"ENSG00000162627"
+"206210_s_at"	"CETP"	1071	"ENSG00000087237"
+"206688_s_at"	"CPSF4"	10898	"ENSG00000160917"
+"206628_at"	"SLC5A1"	6523	"ENSG00000100170"
+"205880_at"	"PRKD1"	5587	"ENSG00000184304"
+"206322_at"	"SYN3"	8224	"ENSG00000185666"
+"206993_at"	"DMAC2L"	27109	"ENSG00000125375"
+"206992_s_at"	"DMAC2L"	27109	"ENSG00000125375"
+"208908_s_at"	"CAST"	831	"ENSG00000153113"
+"207467_x_at"	"CAST"	831	"ENSG00000153113"
+"210222_s_at"	"RTN1"	6252	"ENSG00000139970"
+"206740_x_at"	"SYCP1"	6847	"ENSG00000198765"
+"209714_s_at"	"CDKN3"	1033	"ENSG00000100526"
+"208832_at"	"ATXN10"	25814	"ENSG00000130638"
+"208833_s_at"	"ATXN10"	25814	"ENSG00000130638"
+"205575_at"	"C1QL1"	10882	"ENSG00000131094"
+"207014_at"	"GABRA2"	2555	"ENSG00000151834"
+"209754_s_at"	"TMPO"	7112	"ENSG00000120802"
+"209753_s_at"	"TMPO"	7112	"ENSG00000120802"
+"207391_s_at"	"PIP5K1A"	8394	"ENSG00000143398"
+"210256_s_at"	"PIP5K1A"	8394	"ENSG00000143398"
+"205641_s_at"	"TRADD"	8717	"ENSG00000102871"
+"209976_s_at"	"CYP2E1"	1571	"ENSG00000130649"
+"209975_at"	"CYP2E1"	1571	"ENSG00000130649"
+"206761_at"	"CD96"	10225	"ENSG00000153283"
+"208084_at"	"ITGB6"	3694	"ENSG00000115221"
+"208083_s_at"	"ITGB6"	3694	"ENSG00000115221"
+"205939_at"	"CYP3A7"	1551	"ENSG00000160870"
+"210028_s_at"	"ORC3"	23595	"ENSG00000135336"
+"210110_x_at"	"HNRNPH3"	3189	"ENSG00000096746"
+"208990_s_at"	"HNRNPH3"	3189	"ENSG00000096746"
+"207127_s_at"	"HNRNPH3"	3189	"ENSG00000096746"
+"206453_s_at"	"NDRG2"	57447	"ENSG00000165795"
+"206547_s_at"	"PPEF1"	5475	"ENSG00000086717"
+"210139_s_at"	"PMP22"	5376	"ENSG00000109099"
+"210160_at"	"PAFAH1B2"	5049	"ENSG00000168092"
+"206017_at"	"KIAA0319"	9856	"ENSG00000137261"
+"209162_s_at"	"PRPF4"	9128	"ENSG00000136875"
+"209161_at"	"PRPF4"	9128	"ENSG00000136875"
+"209888_s_at"	"MYL1"	4632	"ENSG00000168530"
+"205547_s_at"	"TAGLN"	6876	"ENSG00000149591"
+"206862_at"	"ZNF254"	9534	"ENSG00000213096"
+"206348_s_at"	"PDK3"	5165	"ENSG00000067992"
+"206347_at"	"PDK3"	5165	"ENSG00000067992"
+"207788_s_at"	"SORBS3"	10174	"ENSG00000120896"
+"209253_at"	"SORBS3"	10174	"ENSG00000120896"
+"210440_s_at"	"CDC14A"	8556	"ENSG00000079335"
+"210441_at"	"CDC14A"	8556	"ENSG00000079335"
+"208828_at"	"POLE3"	54107	"ENSG00000148229"
+"206252_s_at"	"AVPR1A"	552	"ENSG00000166148"
+"206251_s_at"	"AVPR1A"	552	"ENSG00000166148"
+"206250_x_at"	"AVPR1A"	552	"ENSG00000166148"
+"205624_at"	"CPA3"	1359	"ENSG00000163751"
+"208174_x_at"	"ZRSR2"	8233	"ENSG00000169249"
+"210044_s_at"	"LYL1"	4066	"ENSG00000104903"
+"207799_x_at"	"ARMCX4"	100131755	"ENSG00000196440"
+"208763_s_at"	"TSC22D3"	1831	"ENSG00000157514"
+"207001_x_at"	"TSC22D3"	1831	"ENSG00000157514"
+"209989_at"	"ZNF268"	10795	"ENSG00000090612"
+"207415_at"	"PLA2R1"	22925	"ENSG00000153246"
+"208173_at"	"IFNB1"	3456	"ENSG00000171855"
+"207817_at"	"IFNW1"	3467	"ENSG00000177047"
+"207193_at"	"AGRP"	181	"ENSG00000159723"
+"208903_at"	"RPS28"	6234	"ENSG00000233927"
+"208902_s_at"	"RPS28"	6234	"ENSG00000233927"
+"206065_s_at"	"DPYS"	1807	"ENSG00000147647"
+"207234_at"	"RFX3"	5991	"ENSG00000080298"
+"207751_at"	""	NA	"ENSG00000179577"
+"205572_at"	"ANGPT2"	285	"ENSG00000091879"
+"206719_at"	"SYNGR4"	23546	"ENSG00000105467"
+"210416_s_at"	"CHEK2"	11200	"ENSG00000183765"
+"206354_at"	"SLCO1B3"	28234	"ENSG00000111700"
+"205759_s_at"	"SULT2B1"	6820	"ENSG00000088002"
+"208440_at"	"LINC01565"	23434	"ENSG00000198685"
+"208316_s_at"	"OCRL"	4952	"ENSG00000122126"
+"205976_at"	"FASTKD2"	22868	"ENSG00000118246"
+"206328_at"	"CDH15"	1013	"ENSG00000129910"
+"206327_s_at"	"CDH15"	1013	"ENSG00000129910"
+"206680_at"	"CD5L"	922	"ENSG00000073754"
+"208563_x_at"	"POU3F3"	5455	"ENSG00000198914"
+"210038_at"	"PRKCQ"	5588	"ENSG00000065675"
+"210039_s_at"	"PRKCQ"	5588	"ENSG00000065675"
+"205831_at"	"CD2"	914	"ENSG00000116824"
+"209606_at"	"CYTIP"	9595	"ENSG00000115165"
+"209857_s_at"	"SPHK2"	56848	"ENSG00000063176"
+"207292_s_at"	"MAPK7"	5598	"ENSG00000166484"
+"207616_s_at"	"TANK"	10010	"ENSG00000136560"
+"209451_at"	"TANK"	10010	"ENSG00000136560"
+"210458_s_at"	"TANK"	10010	"ENSG00000136560"
+"209782_s_at"	"DBP"	1628	"ENSG00000105516"
+"209783_at"	"DBP"	1628	"ENSG00000105516"
+"209726_at"	"CA11"	770	"ENSG00000063180"
+"210029_at"	"IDO1"	3620	"ENSG00000131203"
+"207707_s_at"	"SEC13"	6396	"ENSG00000157020"
+"206331_at"	"CALCRL"	10203	"ENSG00000064989"
+"207708_at"	"ALOXE3"	59344	"ENSG00000179148"
+"209962_at"	"EPOR"	2057	"ENSG00000187266"
+"209963_s_at"	"EPOR"	2057	"ENSG00000187266"
+"209257_s_at"	"SMC3"	9126	"ENSG00000108055"
+"209258_s_at"	"SMC3"	9126	"ENSG00000108055"
+"210060_at"	"PDE6G"	5148	"ENSG00000185527"
+"208066_s_at"	"GTF2B"	2959	"ENSG00000137947"
+"209441_at"	"RHOBTB2"	23221	"ENSG00000008853"
+"207426_s_at"	"TNFSF4"	7292	"ENSG00000117586"
+"207527_at"	"KCNJ9"	3765	"ENSG00000162728"
+"209716_at"	"CSF1"	1435	"ENSG00000184371"
+"207082_at"	"CSF1"	1435	"ENSG00000184371"
+"209294_x_at"	"TNFRSF10B"	8795	"ENSG00000120889"
+"210405_x_at"	"TNFRSF10B"	8795	"ENSG00000120889"
+"209295_at"	"TNFRSF10B"	8795	"ENSG00000120889"
+"207204_at"	"FSCN2"	25794	"ENSG00000186765"
+"206307_s_at"	"FOXD1"	2297	"ENSG00000251493"
+"209524_at"	"HDGFL3"	50810	"ENSG00000166503"
+"209526_s_at"	"HDGFL3"	50810	"ENSG00000166503"
+"209525_at"	"HDGFL3"	50810	"ENSG00000166503"
+"210309_at"	"RECQL5"	9400	"ENSG00000108469"
+"206581_at"	"BNC1"	646	"ENSG00000169594"
+"205492_s_at"	"DPYSL4"	10570	"ENSG00000151640"
+"205493_s_at"	"DPYSL4"	10570	"ENSG00000151640"
+"210483_at"	""	254896	"ENSG00000284948"
+"206222_at"	"TNFRSF10C"	8794	"ENSG00000173535"
+"206338_at"	"ELAVL3"	1995	"ENSG00000196361"
+"207725_at"	"POU4F2"	5458	"ENSG00000151615"
+"205477_s_at"	"AMBP"	259	"ENSG00000106927"
+"208045_at"	""	NA	"ENSG00000279376"
+"206417_at"	"CNGA1"	1259	"ENSG00000198515"
+"209177_at"	"NDUFAF3"	25915	"ENSG00000178057"
+"205845_at"	"CACNA1H"	8912	"ENSG00000196557"
+"206157_at"	"PTX3"	5806	"ENSG00000163661"
+"207644_at"	"FOXH1"	8928	"ENSG00000160973"
+"205647_at"	"RAD52"	5893	"ENSG00000002016"
+"207841_at"	"SPIN2A"	54466	"ENSG00000147059"
+"206709_x_at"	"GPT"	2875	"ENSG00000167701"
+"206588_at"	"DAZL"	1618	"ENSG00000092345"
+"207587_at"	"CRYGA"	1418	"ENSG00000168582"
+"207044_at"	"THRB"	7068	"ENSG00000151090"
+"207972_at"	"GLRA1"	2741	"ENSG00000145888"
+"209069_s_at"	"H3-3B"	3021	"ENSG00000132475"
+"209053_s_at"	"NSD2"	7468	"ENSG00000109685"
+"209054_s_at"	"NSD2"	7468	"ENSG00000109685"
+"209052_s_at"	"NSD2"	7468	"ENSG00000109685"
+"210379_s_at"	"TLK1"	9874	"ENSG00000198586"
+"209117_at"	"WBP2"	23558	"ENSG00000132471"
+"207853_s_at"	"SNCB"	6620	"ENSG00000074317"
+"205516_x_at"	"CIZ1"	25792	"ENSG00000148337"
+"209825_s_at"	"UCK2"	7371	"ENSG00000143179"
+"207715_at"	"CRYGB"	1419	"ENSG00000182187"
+"208760_at"	"UBE2I"	7329	"ENSG00000103275"
+"206158_s_at"	"CNBP"	7555	"ENSG00000169714"
+"206789_s_at"	"POU2F1"	5451	"ENSG00000143190"
+"207494_s_at"	"ZNF76"	7629	"ENSG00000065029"
+"209375_at"	"XPC"	7508	"ENSG00000154767"
+"209676_at"	"TFPI"	7035	"ENSG00000003436"
+"208044_s_at"	"PPARD"	5467	"ENSG00000112033"
+"209454_s_at"	"TEAD3"	7005	"ENSG00000007866"
+"205617_at"	"PRRG2"	5639	"ENSG00000126460"
+"207136_at"	"ARR3"	407	"ENSG00000120500"
+"207272_at"	"ZNF80"	7634	"ENSG00000174255"
+"206705_at"	"TULP1"	7287	"ENSG00000112041"
+"207922_s_at"	"MAEA"	10296	"ENSG00000090316"
+"206483_at"	"DNAAF11"	23639	"ENSG00000129295"
+"205954_at"	"RXRG"	6258	"ENSG00000143171"
+"205504_at"	"BTK"	695	"ENSG00000010671"
+"209496_at"	"RARRES2"	5919	"ENSG00000106538"
+"209932_s_at"	"DUT"	1854	"ENSG00000128951"
+"208956_x_at"	"DUT"	1854	"ENSG00000128951"
+"208955_at"	"DUT"	1854	"ENSG00000128951"
+"209430_at"	"BTAF1"	9044	"ENSG00000095564"
+"207892_at"	"CD40LG"	959	"ENSG00000102245"
+"209539_at"	"ARHGEF6"	9459	"ENSG00000129675"
+"207633_s_at"	"MUSK"	4593	"ENSG00000030304"
+"207632_at"	"MUSK"	4593	"ENSG00000030304"
+"209964_s_at"	"ATXN7"	6314	"ENSG00000163635"
+"207259_at"	"ANKRD40CL"	55018	"ENSG00000167117"
+"206439_at"	"EPYC"	1833	"ENSG00000083782"
+"209335_at"	"DCN"	1634	"ENSG00000011465"
+"210218_s_at"	"SP100"	6672	"ENSG00000067066"
+"209537_at"	"EXTL2"	2135	"ENSG00000162694"
+"207162_s_at"	"CACNA1B"	774	"ENSG00000148408"
+"206214_at"	"PLA2G7"	7941	"ENSG00000146070"
+"208319_s_at"	"RBM3"	5935	"ENSG00000102317"
+"206170_at"	"ADRB2"	154	"ENSG00000169252"
+"208301_at"	""	NA	"ENSG00000269318"
+"207517_at"	"LAMC2"	3918	"ENSG00000058085"
+"208093_s_at"	"NDEL1"	81565	"ENSG00000166579"
+"205484_at"	"SIT1"	27240	"ENSG00000137078"
+"207225_at"	"AANAT"	15	"ENSG00000129673"
+"205594_at"	"ZNF652"	22834	"ENSG00000198740"
+"207152_at"	"NTRK2"	4915	"ENSG00000148053"
+"205929_at"	"GPA33"	10223	"ENSG00000143167"
+"206365_at"	"XCL1"	6375	"ENSG00000143184"
+"206213_at"	"WNT10B"	7480	"ENSG00000169884"
+"206692_at"	"KCNJ10"	3766	"ENSG00000177807"
+"206859_s_at"	"PAEP"	5047	"ENSG00000122133"
+"207396_s_at"	"ALG3"	10195	"ENSG00000214160"
+"209029_at"	"COPS7A"	50813	"ENSG00000111652"
+"210046_s_at"	"IDH2"	3418	"ENSG00000182054"
+"210045_at"	"IDH2"	3418	"ENSG00000182054"
+"206838_at"	"TBX19"	9095	"ENSG00000143178"
+"208337_s_at"	"NR5A2"	2494	"ENSG00000116833"
+"210174_at"	"NR5A2"	2494	"ENSG00000116833"
+"208343_s_at"	"NR5A2"	2494	"ENSG00000116833"
+"206239_s_at"	"SPINK1"	6690	"ENSG00000164266"
+"205607_s_at"	"SCYL3"	57147	"ENSG00000000457"
+"209869_at"	"ADRA2A"	150	"ENSG00000150594"
+"210053_at"	"TAF5"	6877	"ENSG00000148835"
+"206140_at"	"LHX2"	9355	"ENSG00000106689"
+"209755_at"	"NMNAT2"	23057	"ENSG00000157064"
+"208841_s_at"	"G3BP2"	9908	"ENSG00000138757"
+"208840_s_at"	"G3BP2"	9908	"ENSG00000138757"
+"206383_s_at"	"G3BP2"	9908	"ENSG00000138757"
+"206486_at"	"LAG3"	3902	"ENSG00000089692"
+"208551_at"	"H4C7"	8369	"ENSG00000275663"
+"208506_at"	"H3C7"	8968	"ENSG00000277775"
+"208523_x_at"	"H2BC10"	8346	"ENSG00000278588"
+"209846_s_at"	"BTN3A2"	11118	"ENSG00000186470"
+"210370_s_at"	"LY9"	4063	"ENSG00000122224"
+"210164_at"	"GZMB"	3002	"ENSG00000100453"
+"208625_s_at"	"EIF4G1"	1981	"ENSG00000114867"
+"208624_s_at"	"EIF4G1"	1981	"ENSG00000114867"
+"210312_s_at"	"IFT20"	90410	"ENSG00000109083"
+"210477_x_at"	"MAPK8"	5599	"ENSG00000107643"
+"209305_s_at"	"GADD45B"	4616	"ENSG00000099860"
+"207574_s_at"	"GADD45B"	4616	"ENSG00000099860"
+"209304_x_at"	"GADD45B"	4616	"ENSG00000099860"
+"208540_x_at"	"S100A11P1"	NA	"ENSG00000237632"
+"205994_at"	"ELK4"	2005	"ENSG00000158711"
+"206919_at"	"ELK4"	2005	"ENSG00000158711"
+"207485_x_at"	"BTN3A1"	11119	"ENSG00000026950"
+"209770_at"	"BTN3A1"	11119	"ENSG00000026950"
+"206047_at"	"GNB3"	2784	"ENSG00000111664"
+"206620_at"	"GRAP"	10750	"ENSG00000154016"
+"207495_at"	"RAB28"	9364	"ENSG00000157869"
+"209084_s_at"	"RAB28"	9364	"ENSG00000157869"
+"206076_at"	"LRRC23"	10233	"ENSG00000010626"
+"210087_s_at"	"MPZL1"	9019	"ENSG00000197965"
+"205642_at"	"CNTRL"	11064	"ENSG00000119397"
+"208372_s_at"	"LIMK1"	3984	"ENSG00000106683"
+"207325_x_at"	"MAGEA1"	4100	"ENSG00000198681"
+"208824_x_at"	"CDK16"	5127	"ENSG00000102225"
+"208823_s_at"	"CDK16"	5127	"ENSG00000102225"
+"207239_s_at"	"CDK16"	5127	"ENSG00000102225"
+"206298_at"	"ARHGAP22"	58504	"ENSG00000128805"
+"206852_at"	"EPHA7"	2045	"ENSG00000135333"
+"205712_at"	"PTPRD"	5789	"ENSG00000153707"
+"208152_s_at"	"DDX21"	9188	"ENSG00000165732"
+"210100_s_at"	"ABCA2"	20	"ENSG00000107331"
+"205896_at"	"SLC22A4"	6583	"ENSG00000197208"
+"208871_at"	"ATN1"	1822	"ENSG00000111676"
+"208723_at"	"USP11"	8237	"ENSG00000102226"
+"207819_s_at"	"ABCB4"	5244	"ENSG00000005471"
+"208186_s_at"	"LIPE"	3991	"ENSG00000079435"
+"209215_at"	"MFSD10"	10227	"ENSG00000109736"
+"206687_s_at"	"PTPN6"	5777	"ENSG00000111679"
+"209405_s_at"	"FAM3A"	60343	"ENSG00000071889"
+"209498_at"	"CEACAM1"	634	"ENSG00000079385"
+"206576_s_at"	"CEACAM1"	634	"ENSG00000079385"
+"209646_x_at"	"ALDH1B1"	219	"ENSG00000137124"
+"209645_s_at"	"ALDH1B1"	219	"ENSG00000137124"
+"208554_at"	"POU4F3"	5459	"ENSG00000091010"
+"205684_s_at"	"DENND4C"	55667	"ENSG00000137145"
+"209993_at"	"ABCB1"	5243	"ENSG00000085563"
+"208365_s_at"	"GRK4"	2868	"ENSG00000125388"
+"206676_at"	"CEACAM8"	1088	"ENSG00000124469"
+"210050_at"	"TPI1"	7167	"ENSG00000111669"
+"209523_at"	"TAF2"	6873	"ENSG00000064313"
+"206211_at"	"SELE"	6401	"ENSG00000007908"
+"205643_s_at"	"PPP2R2B"	5521	"ENSG00000156475"
+"210116_at"	"SH2D1A"	4068	"ENSG00000183918"
+"207307_at"	"HTR2C"	3358	"ENSG00000147246"
+"209688_s_at"	"CCDC93"	54520	"ENSG00000125633"
+"209689_at"	"CCDC93"	54520	"ENSG00000125633"
+"205728_at"	"TENM1"	10178	"ENSG00000009694"
+"205955_at"	""	NA	"ENSG00000269176"
+"206759_at"	"FCER2"	2208	"ENSG00000104921"
+"206760_s_at"	"FCER2"	2208	"ENSG00000104921"
+"208830_s_at"	"SUPT6H"	6830	"ENSG00000109111"
+"208831_x_at"	"SUPT6H"	6830	"ENSG00000109111"
+"208420_x_at"	"SUPT6H"	6830	"ENSG00000109111"
+"206426_at"	"MLANA"	2315	"ENSG00000120215"
+"206427_s_at"	"MLANA"	2315	"ENSG00000120215"
+"209951_s_at"	"MAP2K7"	5609	"ENSG00000076984"
+"209952_s_at"	"MAP2K7"	5609	"ENSG00000076984"
+"209860_s_at"	"ANXA7"	310	"ENSG00000138279"
+"209071_s_at"	"RGS5"	8490	"ENSG00000143248"
+"209070_s_at"	"RGS5"	8490	"ENSG00000143248"
+"207276_at"	"CDR1"	NA	"ENSG00000288642"
+"207620_s_at"	"CASK"	8573	"ENSG00000147044"
+"206584_at"	"LY96"	23643	"ENSG00000154589"
+"205968_at"	"KCNS3"	3790	"ENSG00000170745"
+"205991_s_at"	"PRRX1"	5396	"ENSG00000116132"
+"205736_at"	"PGAM2"	5224	"ENSG00000164708"
+"210143_at"	"ANXA10"	11199	"ENSG00000109511"
+"206245_s_at"	"IVNS1ABP"	10625	"ENSG00000116679"
+"207277_at"	"CD209"	30835	"ENSG00000090659"
+"207097_s_at"	"SLC17A2"	10246	"ENSG00000112337"
+"208754_s_at"	"NAP1L1"	4673	"ENSG00000187109"
+"208752_x_at"	"NAP1L1"	4673	"ENSG00000187109"
+"207393_at"	"HCRTR2"	3062	"ENSG00000137252"
+"206160_at"	"APOBEC2"	10930	"ENSG00000124701"
+"208459_s_at"	"XPO7"	23039	"ENSG00000130227"
+"207349_s_at"	"UCP3"	7352	"ENSG00000175564"
+"206765_at"	"KCNJ2"	3759	"ENSG00000123700"
+"207896_s_at"	"DLEC1"	9940	"ENSG00000008226"
+"206798_x_at"	"DLEC1"	9940	"ENSG00000008226"
+"209527_at"	"EXOSC2"	23404	"ENSG00000130713"
+"209248_at"	"GHITM"	27069	"ENSG00000165678"
+"209249_s_at"	"GHITM"	27069	"ENSG00000165678"
+"205658_s_at"	"SNAPC4"	6621	"ENSG00000165684"
+"210402_at"	"KCNJ1"	3758	"ENSG00000151704"
+"210403_s_at"	"KCNJ1"	3758	"ENSG00000151704"
+"209959_at"	"NR4A3"	8013	"ENSG00000119508"
+"207978_s_at"	"NR4A3"	8013	"ENSG00000119508"
+"207070_at"	"RGR"	5995	"ENSG00000148604"
+"209736_at"	"SOX13"	9580	"ENSG00000143842"
+"210481_s_at"	"CLEC4M"	10332	"ENSG00000104938"
+"207995_s_at"	"CLEC4M"	10332	"ENSG00000104938"
+"205830_at"	"CLGN"	1047	"ENSG00000153132"
+"205967_at"	"H4C3"	8364	"ENSG00000197061"
+"207963_at"	"KIF25-AS1"	100505879	"ENSG00000229921"
+"209790_s_at"	"CASP6"	839	"ENSG00000138794"
+"209101_at"	"CCN2"	1490	"ENSG00000118523"
+"207032_s_at"	"CRISP1"	167	"ENSG00000124812"
+"205906_at"	"FOXJ1"	2302	"ENSG00000129654"
+"208314_at"	"RRH"	10692	"ENSG00000180245"
+"208329_at"	"PBOV1"	59351	"ENSG00000254440"
+"206579_at"	"ZKSCAN8"	7745	"ENSG00000198315"
+"208646_at"	"RPS14"	6208	"ENSG00000164587"
+"208645_s_at"	"RPS14"	6208	"ENSG00000164587"
+"205675_at"	"MTTP"	4547	"ENSG00000138823"
+"205638_at"	"ADGRB3"	577	"ENSG00000135298"
+"208015_at"	"SMAD1"	4086	"ENSG00000170365"
+"208214_at"	"ADRB1"	153	"ENSG00000043591"
+"207940_x_at"	"CNR1"	1268	"ENSG00000118432"
+"208243_s_at"	"CNR1"	1268	"ENSG00000118432"
+"208431_s_at"	"TUB"	7275	"ENSG00000166402"
+"206509_at"	"PIP"	5304	"ENSG00000159763"
+"208461_at"	"HIC1"	3090	"ENSG00000177374"
+"206747_at"	"GPRIN2"	9721	"ENSG00000204175"
+"210137_s_at"	"DCTD"	1635	"ENSG00000129187"
+"207661_s_at"	"SH3PXD2A"	9644	"ENSG00000107957"
+"205503_at"	"PTPN14"	5784	"ENSG00000152104"
+"205810_s_at"	"WASL"	8976	"ENSG00000106299"
+"205809_s_at"	"WASL"	8976	"ENSG00000106299"
+"209164_s_at"	"CYB561"	1534	"ENSG00000008283"
+"209163_at"	"CYB561"	1534	"ENSG00000008283"
+"207986_x_at"	"CYB561"	1534	"ENSG00000008283"
+"207883_s_at"	"TFR2"	7036	"ENSG00000106327"
+"210215_at"	"TFR2"	7036	"ENSG00000106327"
+"206272_at"	"RAB4A"	5867	"ENSG00000168118"
+"205911_at"	"PTH1R"	5745	"ENSG00000160801"
+"208954_s_at"	"LARP4B"	23185	"ENSG00000107929"
+"208953_at"	"LARP4B"	23185	"ENSG00000107929"
+"208952_s_at"	"LARP4B"	23185	"ENSG00000107929"
+"207797_s_at"	"LRP2BP"	55805	"ENSG00000109771"
+"206367_at"	"REN"	5972	"ENSG00000143839"
+"206846_s_at"	"HDAC6"	10013	"ENSG00000094631"
+"207432_at"	"BEST2"	54831	"ENSG00000039987"
+"206014_at"	"ACTL6B"	51412	"ENSG00000077080"
+"206013_s_at"	"ACTL6B"	51412	"ENSG00000077080"
+"206472_s_at"	"TLE3"	7090	"ENSG00000140332"
+"207181_s_at"	"CASP7"	840	"ENSG00000165806"
+"209455_at"	"FBXW11"	23291	"ENSG00000072803"
+"209456_s_at"	"FBXW11"	23291	"ENSG00000072803"
+"205530_at"	"ETFDH"	2110	"ENSG00000171503"
+"207952_at"	"IL5"	3567	"ENSG00000113525"
+"209804_at"	"DCLRE1A"	9937	"ENSG00000198924"
+"209482_at"	"POP7"	10248	"ENSG00000172336"
+"207257_at"	"EPO"	2056	"ENSG00000130427"
+"206826_at"	"PMP2"	5375	"ENSG00000147588"
+"207370_at"	"IBSP"	3381	"ENSG00000029559"
+"209735_at"	"ABCG2"	9429	"ENSG00000118777"
+"207248_at"	"KCNA4"	3739	"ENSG00000182255"
+"207098_s_at"	"MFN1"	55669	"ENSG00000171109"
+"209369_at"	"ANXA3"	306	"ENSG00000138772"
+"208974_x_at"	"KPNB1"	3837	"ENSG00000108424"
+"208975_s_at"	"KPNB1"	3837	"ENSG00000108424"
+"210330_at"	"SGCD"	6444	"ENSG00000170624"
+"210329_s_at"	"SGCD"	6444	"ENSG00000170624"
+"210465_s_at"	"SNAPC3"	6619	"ENSG00000164975"
+"209364_at"	"BAD"	572	"ENSG00000002330"
+"206845_s_at"	"RNF40"	9810	"ENSG00000103549"
+"207537_at"	"PFKFB1"	5207	"ENSG00000158571"
+"209909_s_at"	"TGFB2"	7042	"ENSG00000092969"
+"209908_s_at"	"TGFB2"	7042	"ENSG00000092969"
+"209129_at"	"TRIP6"	7205	"ENSG00000087077"
+"207301_at"	"EFNA5"	1946	"ENSG00000184349"
+"206263_at"	"FMO4"	2329	"ENSG00000076258"
+"209266_s_at"	"SLC39A8"	64116	"ENSG00000138821"
+"209267_s_at"	"SLC39A8"	64116	"ENSG00000138821"
+"209484_s_at"	"NSL1"	25936	"ENSG00000117697"
+"208981_at"	"PECAM1"	5175	"ENSG00000261371"
+"208982_at"	"PECAM1"	5175	"ENSG00000261371"
+"208983_s_at"	"PECAM1"	5175	"ENSG00000261371"
+"207375_s_at"	"IL15RA"	3601	"ENSG00000134470"
+"210446_at"	"GATA1"	2623	"ENSG00000102145"
+"205811_at"	"POLG2"	11232	"ENSG00000256525"
+"210263_at"	"KCNF1"	3754	"ENSG00000162975"
+"207563_s_at"	"OGT"	8473	"ENSG00000147162"
+"207564_x_at"	"OGT"	8473	"ENSG00000147162"
+"209240_at"	"OGT"	8473	"ENSG00000147162"
+"205596_s_at"	"SMURF2"	64750	"ENSG00000108854"
+"205666_at"	"FMO1"	2326	"ENSG00000010932"
+"208881_x_at"	"IDI1"	3422	"ENSG00000067064"
+"208047_s_at"	"NAB1"	4664	"ENSG00000138386"
+"209272_at"	"NAB1"	4664	"ENSG00000138386"
+"208247_at"	"ERC2-IT1"	711	"ENSG00000281708"
+"207655_s_at"	"BLNK"	29760	"ENSG00000095585"
+"208958_at"	"ERP44"	23071	"ENSG00000023318"
+"208959_s_at"	"ERP44"	23071	"ENSG00000023318"
+"208957_at"	"ERP44"	23071	"ENSG00000023318"
+"209462_at"	"APLP1"	333	"ENSG00000105290"
+"205634_x_at"	"ZDHHC24"	254359	"ENSG00000174165"
+"208473_s_at"	"GP2"	2813	"ENSG00000169347"
+"206681_x_at"	"GP2"	2813	"ENSG00000169347"
+"206891_at"	"ACTN3"	89	"ENSG00000248746"
+"206118_at"	"STAT4"	6775	"ENSG00000138378"
+"205749_at"	"CYP1A1"	1543	"ENSG00000140465"
+"207930_at"	"LCN1"	3933	"ENSG00000160349"
+"210428_s_at"	"HGS"	9146	"ENSG00000185359"
+"207911_s_at"	"TGM5"	9333	"ENSG00000104055"
+"206716_at"	"UMOD"	7369	"ENSG00000169344"
+"210145_at"	"PLA2G4A"	5321	"ENSG00000116711"
+"209553_at"	"VPS8"	23355	"ENSG00000156931"
+"207890_s_at"	"MMP25"	64386	"ENSG00000008516"
+"207289_at"	"MMP25"	64386	"ENSG00000008516"
+"209992_at"	"PFKFB2"	5208	"ENSG00000123836"
+"207931_s_at"	"PFKFB2"	5208	"ENSG00000123836"
+"207121_s_at"	"MAPK6"	5597	"ENSG00000069956"
+"209202_s_at"	"EXTL3"	2137	"ENSG00000012232"
+"208017_s_at"	"MCF2"	4168	"ENSG00000101977"
+"209096_at"	"UBE2V2"	7336	"ENSG00000169139"
+"208388_at"	"NR2E3"	10002	"ENSG00000278570"
+"208385_at"	"NR2E3"	10002	"ENSG00000278570"
+"206599_at"	"SLC16A5"	9121	"ENSG00000170190"
+"206600_s_at"	"SLC16A5"	9121	"ENSG00000170190"
+"209934_s_at"	"ATP2C1"	27032	"ENSG00000017260"
+"209935_at"	"ATP2C1"	27032	"ENSG00000017260"
+"208612_at"	"PDIA3"	2923	"ENSG00000167004"
+"206049_at"	"SELP"	6403	"ENSG00000174175"
+"208738_x_at"	"SUMO2"	6613	"ENSG00000188612"
+"210094_s_at"	"PARD3"	56288	"ENSG00000148498"
+"207821_s_at"	"PTK2"	5747	"ENSG00000169398"
+"208820_at"	"PTK2"	5747	"ENSG00000169398"
+"208180_s_at"	"H4C8"	8365	"ENSG00000158406"
+"207460_at"	"GZMM"	3004	"ENSG00000197540"
+"209434_s_at"	"PPAT"	5471	"ENSG00000128059"
+"209411_s_at"	"GGA3"	23163	"ENSG00000125447"
+"209270_at"	"LAMB3"	3914	"ENSG00000196878"
+"209774_x_at"	"CXCL2"	2920	"ENSG00000081041"
+"205704_s_at"	"ATP6V0A2"	23545	"ENSG00000185344"
+"209286_at"	"CDC42EP3"	10602	"ENSG00000163171"
+"209287_s_at"	"CDC42EP3"	10602	"ENSG00000163171"
+"209288_s_at"	"CDC42EP3"	10602	"ENSG00000163171"
+"210363_s_at"	"SCN2B"	6327	"ENSG00000149575"
+"210364_at"	"SCN2B"	6327	"ENSG00000149575"
+"210253_at"	"HTATIP2"	10553	"ENSG00000109854"
+"207180_s_at"	"HTATIP2"	10553	"ENSG00000109854"
+"209448_at"	"HTATIP2"	10553	"ENSG00000109854"
+"206645_s_at"	"NR0B1"	190	"ENSG00000169297"
+"206644_at"	"NR0B1"	190	"ENSG00000169297"
+"205645_at"	"REPS2"	9185	"ENSG00000169891"
+"209563_x_at"	"CALM1"	801	"ENSG00000198668"
+"207876_s_at"	"FLNC"	2318	"ENSG00000128591"
+"207342_at"	"CNGB1"	1258	"ENSG00000070729"
+"210240_s_at"	"CDKN2D"	1032	"ENSG00000129355"
+"208175_s_at"	"DMP1"	1758	"ENSG00000152592"
+"209875_s_at"	"SPP1"	6696	"ENSG00000118785"
+"210022_at"	"PCGF1"	84759	"ENSG00000115289"
+"210023_s_at"	"PCGF1"	84759	"ENSG00000115289"
+"208813_at"	"GOT1"	2805	"ENSG00000120053"
+"210355_at"	"PTHLH"	5744	"ENSG00000087494"
+"206300_s_at"	"PTHLH"	5744	"ENSG00000087494"
+"207410_s_at"	"TLX2"	3196	"ENSG00000115297"
+"206317_s_at"	"ABCB8"	11194	"ENSG00000197150"
+"207328_at"	"ALOX15"	246	"ENSG00000161905"
+"206534_at"	"GRIN2A"	2903	"ENSG00000183454"
+"209824_s_at"	"BMAL1"	406	"ENSG00000133794"
+"208758_at"	"ATIC"	471	"ENSG00000138363"
+"207624_s_at"	"RPGR"	6103	"ENSG00000156313"
+"209536_s_at"	"EHD4"	30844	"ENSG00000103966"
+"207706_at"	"USH2A"	7399	"ENSG00000042781"
+"208997_s_at"	"UCP2"	7351	"ENSG00000175567"
+"208998_at"	"UCP2"	7351	"ENSG00000175567"
+"210333_at"	"NR5A1"	2516	"ENSG00000136931"
+"209127_s_at"	"SART3"	9733	"ENSG00000075856"
+"209128_s_at"	"SART3"	9733	"ENSG00000075856"
+"205710_at"	"LRP2"	4036	"ENSG00000081479"
+"206242_at"	"TM4SF5"	9032	"ENSG00000142484"
+"208827_at"	"PSMB6"	5694	"ENSG00000142507"
+"209643_s_at"	"PLD2"	5338	"ENSG00000129219"
+"209075_s_at"	"ISCU"	23479	"ENSG00000136003"
+"208105_at"	"GIPR"	2696	"ENSG00000010310"
+"209241_x_at"	"MINK1"	50488	"ENSG00000141503"
+"209545_s_at"	"RIPK2"	8767	"ENSG00000104312"
+"209544_at"	"RIPK2"	8767	"ENSG00000104312"
+"206339_at"	"CARTPT"	9607	"ENSG00000164326"
+"207932_at"	"IFNA8"	3445	"ENSG00000120242"
+"208375_at"	"IFNA1"	3439	"ENSG00000197919"
+"208086_s_at"	"DMD"	1756	"ENSG00000198947"
+"207660_at"	"DMD"	1756	"ENSG00000198947"
+"207245_at"	"UGT2B17"	7367	"ENSG00000197888"
+"205680_at"	"MMP10"	4319	"ENSG00000166670"
+"210377_at"	"ACSM3"	6296	"ENSG00000005187"
+"205942_s_at"	"ACSM3"	6296	"ENSG00000005187"
+"206689_x_at"	"KAT5"	10524	"ENSG00000172977"
+"209192_x_at"	"KAT5"	10524	"ENSG00000172977"
+"206555_s_at"	"THUMPD1"	55623	"ENSG00000066654"
+"208107_s_at"	"REXO5"	81691	"ENSG00000005189"
+"207274_at"	"CHRNE"	1145	"ENSG00000108556"
+"205757_at"	"ENTPD5"	957	"ENSG00000187097"
+"209867_s_at"	"ADGRL3"	23284	"ENSG00000150471"
+"209866_s_at"	"ADGRL3"	23284	"ENSG00000150471"
+"206341_at"	"IL2RA"	3559	"ENSG00000134460"
+"205829_at"	"HSD17B1"	3292	"ENSG00000108786"
+"206364_at"	"KIF14"	9928	"ENSG00000118193"
+"207333_at"	"NMBR"	4829	"ENSG00000135577"
+"209883_at"	"COLGALT2"	23127	"ENSG00000198756"
+"206604_at"	"OVOL1"	5017	"ENSG00000172818"
+"205956_x_at"	"PSMC3IP"	29893	"ENSG00000131470"
+"209460_at"	"ABAT"	18	"ENSG00000183044"
+"206527_at"	"ABAT"	18	"ENSG00000183044"
+"209459_s_at"	"ABAT"	18	"ENSG00000183044"
+"206445_s_at"	"PRMT1"	3276	"ENSG00000126457"
+"207039_at"	"CDKN2A"	1029	"ENSG00000147889"
+"209644_x_at"	"CDKN2A"	1029	"ENSG00000147889"
+"208694_at"	"PRKDC"	5591	"ENSG00000253729"
+"207530_s_at"	"CDKN2B"	1030	"ENSG00000147883"
+"207673_at"	"NPHS1"	4868	"ENSG00000161270"
+"210334_x_at"	"BIRC5"	332	"ENSG00000089685"
+"209226_s_at"	"TNPO1"	3842	"ENSG00000083312"
+"207657_x_at"	"TNPO1"	3842	"ENSG00000083312"
+"209225_x_at"	"TNPO1"	3842	"ENSG00000083312"
+"208516_at"	"MTNR1B"	4544	"ENSG00000134640"
+"206507_at"	"ZSCAN12"	9753	"ENSG00000158691"
+"208789_at"	"CAVIN1"	284119	"ENSG00000177469"
+"208790_s_at"	"CAVIN1"	284119	"ENSG00000177469"
+"209282_at"	"PRKD2"	25865	"ENSG00000105287"
+"208992_s_at"	"STAT3"	6774	"ENSG00000168610"
+"208991_at"	"STAT3"	6774	"ENSG00000168610"
+"206458_s_at"	"WNT2B"	7482	"ENSG00000134245"
+"206459_s_at"	"WNT2B"	7482	"ENSG00000134245"
+"209227_at"	"TUSC3"	7991	"ENSG00000104723"
+"209228_x_at"	"TUSC3"	7991	"ENSG00000104723"
+"205502_at"	"CYP17A1"	1586	"ENSG00000148795"
+"208285_at"	"OR7A5"	26659	"ENSG00000188269"
+"210431_at"	"ALPG"	251	"ENSG00000163286"
+"206330_s_at"	"SHC3"	53358	"ENSG00000148082"
+"207140_at"	"ALPI"	248	"ENSG00000163295"
+"206296_x_at"	"MAP4K1"	11184	"ENSG00000104814"
+"208202_s_at"	"JADE2"	23338	"ENSG00000043143"
+"209155_s_at"	"NT5C2"	22978	"ENSG00000076685"
+"208515_at"	"H2BC14"	8342	"ENSG00000273703"
+"205859_at"	"LY86"	9450	"ENSG00000112799"
+"206110_at"	"H3C10"	8357	"ENSG00000278828"
+"208302_at"	"HMHB1"	57824	"ENSG00000158497"
+"209636_at"	"NFKB2"	4791	"ENSG00000077150"
+"207535_s_at"	"NFKB2"	4791	"ENSG00000077150"
+"207024_at"	"CHRND"	1144	"ENSG00000135902"
+"209514_s_at"	"RAB27A"	5873	"ENSG00000069974"
+"209515_s_at"	"RAB27A"	5873	"ENSG00000069974"
+"206916_x_at"	"TAT"	6898	"ENSG00000198650"
+"210368_at"	"PCDHGA8"	9708	"ENSG00000253767"
+"208602_x_at"	"CD6"	923	"ENSG00000013725"
+"209384_at"	"PLPBP"	11212	"ENSG00000147471"
+"209385_s_at"	"PLPBP"	11212	"ENSG00000147471"
+"208128_x_at"	"KIF25"	3834	"ENSG00000125337"
+"207682_s_at"	"KIF25"	3834	"ENSG00000125337"
+"209665_at"	"CYB561D2"	11068	"ENSG00000114395"
+"205590_at"	"RASGRP1"	10125	"ENSG00000172575"
+"208381_s_at"	"SGPL1"	8879	"ENSG00000166224"
+"206875_s_at"	"SLK"	9748	"ENSG00000065613"
+"206874_s_at"	"SLK"	9748	"ENSG00000065613"
+"207672_at"	"RFX4"	5992	"ENSG00000111783"
+"209569_x_at"	"NSG1"	27065	"ENSG00000168824"
+"209570_s_at"	"NSG1"	27065	"ENSG00000168824"
+"205923_at"	"RELN"	5649	"ENSG00000189056"
+"208598_s_at"	"HUWE1"	10075	"ENSG00000086758"
+"208599_at"	"HUWE1"	10075	"ENSG00000086758"
+"209480_at"	"HLA-DQB1"	3119	"ENSG00000179344"
+"207919_at"	"ART1"	417	"ENSG00000129744"
+"206812_at"	"ADRB3"	155	"ENSG00000188778"
+"206452_x_at"	"PTPA"	5524	"ENSG00000119383"
+"208874_x_at"	"PTPA"	5524	"ENSG00000119383"
+"210353_s_at"	"SLC6A2"	6530	"ENSG00000103546"
+"210480_s_at"	"MYO6"	4646	"ENSG00000196586"
+"208690_s_at"	"PDLIM1"	9124	"ENSG00000107438"
+"208036_at"	"OPN1SW"	611	"ENSG00000128617"
+"207868_at"	"CHRNA2"	1135	"ENSG00000120903"
+"209879_at"	"SELPLG"	6404	"ENSG00000110876"
+"209880_s_at"	"SELPLG"	6404	"ENSG00000110876"
+"208126_s_at"	"CYP2C18"	1562	"ENSG00000108242"
+"207642_at"	"HCRT"	3060	"ENSG00000161610"
+"206686_at"	"PDK1"	5163	"ENSG00000152256"
+"209368_at"	"EPHX2"	2053	"ENSG00000120915"
+"210158_at"	"ERCC4"	2072	"ENSG00000175595"
+"205627_at"	"CDA"	978	"ENSG00000158825"
+"209018_s_at"	"PINK1"	65018	"ENSG00000158828"
+"209019_s_at"	"PINK1"	65018	"ENSG00000158828"
+"210121_at"	"B3GALT2"	8707	"ENSG00000162630"
+"210382_at"	"SCTR"	6344	"ENSG00000080293"
+"207582_at"	"PIN1P1"	5301	"ENSG00000229359"
+"210242_x_at"	"ST20"	NA	"ENSG00000180953"
+"207785_s_at"	"RBPJ"	3516	"ENSG00000168214"
+"206085_s_at"	"CTH"	1491	"ENSG00000116761"
+"206389_s_at"	"PDE3A"	5139	"ENSG00000172572"
+"209593_s_at"	"TOR1B"	27348	"ENSG00000136816"
+"207542_s_at"	"AQP1"	358	"ENSG00000240583"
+"209047_at"	"AQP1"	358	"ENSG00000240583"
+"207825_s_at"	"GHRHR"	2692	"ENSG00000106128"
+"208791_at"	"CLU"	1191	"ENSG00000120885"
+"208792_s_at"	"CLU"	1191	"ENSG00000120885"
+"210169_at"	"SEC14L5"	9717	"ENSG00000103184"
+"209624_s_at"	"MCCC2"	64087	"ENSG00000131844"
+"209623_at"	"MCCC2"	64087	"ENSG00000131844"
+"206399_x_at"	"CACNA1A"	773	"ENSG00000141837"
+"209446_s_at"	"PKM"	5315	"ENSG00000067225"
+"207475_at"	"FABP2"	2169	"ENSG00000145384"
+"207680_x_at"	"PAX3"	5077	"ENSG00000135903"
+"207679_at"	"PAX3"	5077	"ENSG00000135903"
+"208021_s_at"	"RFC1"	5981	"ENSG00000035928"
+"209085_x_at"	"RFC1"	5981	"ENSG00000035928"
+"206350_at"	"APCS"	325	"ENSG00000132703"
+"205753_at"	"CRP"	1401	"ENSG00000132693"
+"206149_at"	"CHP2"	63928	"ENSG00000166869"
+"207957_s_at"	"PRKCB"	5579	"ENSG00000166501"
+"209685_s_at"	"PRKCB"	5579	"ENSG00000166501"
+"206638_at"	"HTR2B"	3357	"ENSG00000135914"
+"206530_at"	"RAB30"	27314	"ENSG00000137502"
+"209812_x_at"	"CASP2"	835	"ENSG00000106144"
+"209811_at"	"CASP2"	835	"ENSG00000106144"
+"208050_s_at"	"CASP2"	835	"ENSG00000106144"
+"206384_at"	"CACNG3"	10368	"ENSG00000006116"
+"207976_at"	"KLHL18"	23276	"ENSG00000114648"
+"206690_at"	"ASIC2"	40	"ENSG00000108684"
+"207704_s_at"	"GAS7"	8522	"ENSG00000007237"
+"210132_at"	"EFNA3"	1944	"ENSG00000143590"
+"210326_at"	"AGXT"	189	"ENSG00000172482"
+"206957_at"	"AGXT"	189	"ENSG00000172482"
+"210327_s_at"	"AGXT"	189	"ENSG00000172482"
+"209873_s_at"	"PKP3"	11187	"ENSG00000184363"
+"209872_s_at"	"PKP3"	11187	"ENSG00000184363"
+"207870_at"	"AKAP9"	10142	"ENSG00000127914"
+"205901_at"	"PNOC"	5368	"ENSG00000168081"
+"205852_at"	"CDK5R2"	8941	"ENSG00000171450"
+"207260_at"	"FEV"	54738	"ENSG00000163497"
+"210112_at"	"HPS1"	3257	"ENSG00000107521"
+"206243_at"	"TIMP4"	7079	"ENSG00000157150"
+"209561_at"	"THBS3"	7059	"ENSG00000169231"
+"206277_at"	"P2RY2"	5029	"ENSG00000175591"
+"208548_at"	"IFNA6"	3443	"ENSG00000120235"
+"208373_s_at"	"P2RY6"	5031	"ENSG00000171631"
+"209998_at"	"PIGO"	84720	"ENSG00000165282"
+"207023_x_at"	"KRT10"	3858	"ENSG00000186395"
+"208269_s_at"	"ADAM28"	10863	"ENSG00000042980"
+"205997_at"	"ADAM28"	10863	"ENSG00000042980"
+"208268_at"	"ADAM28"	10863	"ENSG00000042980"
+"206621_s_at"	"EIF4H"	7458	"ENSG00000106682"
+"207511_s_at"	"CNPPD1"	27013	"ENSG00000115649"
+"206450_at"	"DBH"	1621	"ENSG00000123454"
+"206134_at"	"ADAMDEC1"	27299	"ENSG00000134028"
+"206981_at"	"SCN4A"	6329	"ENSG00000007314"
+"205912_at"	"PNLIP"	5406	"ENSG00000175535"
+"206324_s_at"	"DAPK2"	23604	"ENSG00000035664"
+"206135_at"	"ST18"	9705	"ENSG00000147488"
+"207061_at"	"ERN1"	2081	"ENSG00000178607"
+"206936_x_at"	"NDUFC2"	4718	"ENSG00000151366"
+"206316_s_at"	"KNTC1"	9735	"ENSG00000184445"
+"209543_s_at"	"CD34"	947	"ENSG00000174059"
+"206430_at"	"CDX1"	1044	"ENSG00000113722"
+"206145_at"	"RHAG"	6005	"ENSG00000112077"
+"206146_s_at"	"RHAG"	6005	"ENSG00000112077"
+"210211_s_at"	"HSP90AA1"	3320	"ENSG00000080824"
+"207734_at"	"LAX1"	54900	"ENSG00000122188"
+"208784_s_at"	"KLHDC3"	116138	"ENSG00000124702"
+"209559_at"	"HIP1R"	9026	"ENSG00000130787"
+"209558_s_at"	"HIP1R"	9026	"ENSG00000130787"
+"210346_s_at"	"CLK4"	57396	"ENSG00000113240"
+"205494_at"	"ZNF821"	55565	"ENSG00000102984"
+"209469_at"	"GPM6A"	2823	"ENSG00000150625"
+"209470_s_at"	"GPM6A"	2823	"ENSG00000150625"
+"209308_s_at"	"BNIP2"	663	"ENSG00000140299"
+"205486_at"	"TESK2"	10420	"ENSG00000070759"
+"207558_s_at"	"PITX2"	5308	"ENSG00000164093"
+"205990_s_at"	"WNT5A"	7474	"ENSG00000114251"
+"207499_x_at"	"UNC45A"	55898	"ENSG00000140553"
+"208218_s_at"	"ACVR1B"	91	"ENSG00000135503"
+"208223_s_at"	"ACVR1B"	91	"ENSG00000135503"
+"208222_at"	"ACVR1B"	91	"ENSG00000135503"
+"208219_at"	"ACVR1B"	91	"ENSG00000135503"
+"206540_at"	"GLB1L"	79411	"ENSG00000163521"
+"210095_s_at"	"IGFBP3"	3486	"ENSG00000146674"
+"209178_at"	"DHX38"	9785	"ENSG00000140829"
+"208814_at"	"HSPA4"	3308	"ENSG00000170606"
+"208815_x_at"	"HSPA4"	3308	"ENSG00000170606"
+"210226_at"	"NR4A1"	3164	"ENSG00000123358"
+"207815_at"	"PF4V1"	5197	"ENSG00000109272"
+"209203_s_at"	"BICD2"	23299	"ENSG00000185963"
+"207844_at"	"IL13"	3596	"ENSG00000169194"
+"209622_at"	"STK16"	8576	"ENSG00000115661"
+"207850_at"	"CXCL3"	2921	"ENSG00000163734"
+"207027_at"	"HGFAC"	3083	"ENSG00000109758"
+"206517_at"	"CDH16"	1014	"ENSG00000166589"
+"207490_at"	"TUBA4B"	80086	"ENSG00000243910"
+"206412_at"	"FER"	2241	"ENSG00000151422"
+"205538_at"	"CORO2A"	7464	"ENSG00000106789"
+"209639_s_at"	"RGS12"	6002	"ENSG00000159788"
+"209637_s_at"	"RGS12"	6002	"ENSG00000159788"
+"205823_at"	"RGS12"	6002	"ENSG00000159788"
+"209577_at"	"PCYT2"	5833	"ENSG00000185813"
+"205716_at"	"SLC25A40"	55972	"ENSG00000075303"
+"205632_s_at"	"PIP5K1B"	8395	"ENSG00000107242"
+"208476_s_at"	"FRMD4A"	55691	"ENSG00000151474"
+"208475_at"	"FRMD4A"	55691	"ENSG00000151474"
+"209190_s_at"	"DIAPH1"	1729	"ENSG00000131504"
+"209667_at"	"CES2"	8824	"ENSG00000172831"
+"209668_x_at"	"CES2"	8824	"ENSG00000172831"
+"205551_at"	"SV2B"	9899	"ENSG00000185518"
+"208921_s_at"	"SRI"	6717	"ENSG00000075142"
+"208920_at"	"SRI"	6717	"ENSG00000075142"
+"206734_at"	"JRKL"	8690	"ENSG00000183340"
+"209604_s_at"	"GATA3"	2625	"ENSG00000107485"
+"209603_at"	"GATA3"	2625	"ENSG00000107485"
+"209602_s_at"	"GATA3"	2625	"ENSG00000107485"
+"208822_s_at"	"DAP3"	7818	"ENSG00000132676"
+"206788_s_at"	"CBFB"	865	"ENSG00000067955"
+"206500_s_at"	"MIS18BP1"	55320	"ENSG00000129534"
+"208517_x_at"	"BTF3"	689	"ENSG00000145741"
+"208227_x_at"	"ADAM22"	53616	"ENSG00000008277"
+"208226_x_at"	"ADAM22"	53616	"ENSG00000008277"
+"206615_s_at"	"ADAM22"	53616	"ENSG00000008277"
+"208237_x_at"	"ADAM22"	53616	"ENSG00000008277"
+"206616_s_at"	"ADAM22"	53616	"ENSG00000008277"
+"207951_at"	"CSN2"	1447	"ENSG00000135222"
+"209198_s_at"	"SYT11"	23208	"ENSG00000132718"
+"209197_at"	"SYT11"	23208	"ENSG00000132718"
+"206864_s_at"	"HRK"	8739	"ENSG00000135116"
+"206865_at"	"HRK"	8739	"ENSG00000135116"
+"205633_s_at"	"ALAS1"	211	"ENSG00000023330"
+"210001_s_at"	"SOCS1"	8651	"ENSG00000185338"
+"209999_x_at"	"SOCS1"	8651	"ENSG00000185338"
+"210165_at"	"DNASE1"	1773	"ENSG00000213918"
+"206549_at"	"INSL4"	3641	"ENSG00000120211"
+"209517_s_at"	"ASH2L"	9070	"ENSG00000129691"
+"207798_s_at"	"ATXN2L"	11273	"ENSG00000168488"
+"205476_at"	"CCL20"	6364	"ENSG00000115009"
+"208057_s_at"	"GLI2"	2736	"ENSG00000074047"
+"207034_s_at"	"GLI2"	2736	"ENSG00000074047"
+"207777_s_at"	"SP140"	11262	"ENSG00000079263"
+"210115_at"	"RPL39L"	116832	"ENSG00000163923"
+"207026_s_at"	"ATP2B3"	492	"ENSG00000067842"
+"206623_at"	"PDE6A"	5145	"ENSG00000132915"
+"207732_s_at"	"DLG3"	1741	"ENSG00000082458"
+"208611_s_at"	"SPTAN1"	6709	"ENSG00000197694"
+"210399_x_at"	"FUT6"	2528	"ENSG00000156413"
+"210398_x_at"	"FUT6"	2528	"ENSG00000156413"
+"208876_s_at"	"PAK2"	5062	"ENSG00000180370"
+"208878_s_at"	"PAK2"	5062	"ENSG00000180370"
+"208877_at"	"PAK2"	5062	"ENSG00000180370"
+"208875_s_at"	"PAK2"	5062	"ENSG00000180370"
+"208037_s_at"	"MADCAM1"	8174	"ENSG00000099866"
+"205700_at"	"HSD17B6"	8630	"ENSG00000025423"
+"208677_s_at"	"BSG"	682	"ENSG00000172270"
+"207800_at"	"AKAP5"	9495	"ENSG00000179841"
+"207217_s_at"	"NOX1"	27035	"ENSG00000007952"
+"206418_at"	"NOX1"	27035	"ENSG00000007952"
+"207380_x_at"	"NOX1"	27035	"ENSG00000007952"
+"208923_at"	"CYFIP1"	23191	"ENSG00000273749"
+"210304_at"	"PDE6B"	5158	"ENSG00000133256"
+"207036_x_at"	"GRIN2D"	2906	"ENSG00000105464"
+"206061_s_at"	"DICER1"	23405	"ENSG00000100697"
+"207555_s_at"	"TBXA2R"	6915	"ENSG00000006638"
+"207554_x_at"	"TBXA2R"	6915	"ENSG00000006638"
+"206485_at"	"CD5"	921	"ENSG00000110448"
+"206051_at"	"ELAVL4"	1996	"ENSG00000162374"
+"207462_at"	"GLRA2"	2742	"ENSG00000101958"
+"207335_x_at"	"ATP5ME"	521	"ENSG00000169020"
+"209492_x_at"	"ATP5ME"	521	"ENSG00000169020"
+"209168_at"	"GPM6B"	2824	"ENSG00000046653"
+"209169_at"	"GPM6B"	2824	"ENSG00000046653"
+"209167_at"	"GPM6B"	2824	"ENSG00000046653"
+"209170_s_at"	"GPM6B"	2824	"ENSG00000046653"
+"206795_at"	"F2RL2"	2151	"ENSG00000164220"
+"206429_at"	"F2RL1"	2150	"ENSG00000164251"
+"208619_at"	"DDB1"	1642	"ENSG00000167986"
+"205779_at"	"RAMP2"	10266	"ENSG00000131477"
+"207829_s_at"	"BNIP1"	662	"ENSG00000113734"
+"205527_s_at"	"GEMIN4"	50628	"ENSG00000179409"
+"208031_s_at"	"RFX2"	5990	"ENSG00000087903"
+"210176_at"	"TLR1"	7096	"ENSG00000174125"
+"207446_at"	"TLR6"	10333	"ENSG00000174130"
+"207617_at"	"DDX3X"	1654	"ENSG00000215301"
+"207586_at"	"SHH"	6469	"ENSG00000164690"
+"207255_at"	"LEPR"	3953	"ENSG00000116678"
+"209894_at"	"LEPR"	3953	"ENSG00000116678"
+"206892_at"	"AMHR2"	269	"ENSG00000135409"
+"210459_at"	"PSMD4"	5710	"ENSG00000159352"
+"210303_at"	"MAB21L2"	10586	"ENSG00000181541"
+"210302_s_at"	"MAB21L2"	10586	"ENSG00000181541"
+"207545_s_at"	"NUMB"	8650	"ENSG00000133961"
+"209073_s_at"	"NUMB"	8650	"ENSG00000133961"
+"209715_at"	"CBX5"	23468	"ENSG00000094916"
+"206933_s_at"	"H6PD"	9563	"ENSG00000049239"
+"209930_s_at"	"NFE2"	4778	"ENSG00000123405"
+"207653_at"	"FOXD2"	2306	"ENSG00000186564"
+"208675_s_at"	"DDOST"	1650	"ENSG00000244038"
+"206007_at"	"PRG4"	10216	"ENSG00000116690"
+"206197_at"	"NME5"	8382	"ENSG00000112981"
+"209131_s_at"	"SNAP23"	8773	"ENSG00000092531"
+"209130_at"	"SNAP23"	8773	"ENSG00000092531"
+"210036_s_at"	"KCNH2"	3757	"ENSG00000055118"
+"207827_x_at"	"SNCA"	6622	"ENSG00000145335"
+"209619_at"	"CD74"	972	"ENSG00000019582"
+"207776_s_at"	"CACNB2"	783	"ENSG00000165995"
+"205612_at"	"MMRN1"	22915	"ENSG00000138722"
+"208094_s_at"	"YJU2B"	81576	"ENSG00000104957"
+"205767_at"	"EREG"	2069	"ENSG00000124882"
+"209146_at"	"MSMO1"	6307	"ENSG00000052802"
+"209945_s_at"	"GSK3B"	2932	"ENSG00000082701"
+"207133_x_at"	"ALPK1"	80216	"ENSG00000073331"
+"208557_at"	"HOXA6"	3203	"ENSG00000106006"
+"206847_s_at"	"HOXA7"	3204	"ENSG00000122592"
+"206441_s_at"	"COMMD4"	54939	"ENSG00000140365"
+"209132_s_at"	"COMMD4"	54939	"ENSG00000140365"
+"209133_s_at"	"COMMD4"	54939	"ENSG00000140365"
+"209905_at"	"HOXA9"	3205	"ENSG00000078399"
+"208493_at"	"HOXA11"	3207	"ENSG00000005073"
+"207937_x_at"	"FGFR1"	2260	"ENSG00000077782"
+"207822_at"	"FGFR1"	2260	"ENSG00000077782"
+"207914_x_at"	"EVX1"	2128	"ENSG00000106038"
+"210127_at"	"RAB6B"	51560	"ENSG00000154917"
+"206544_x_at"	"SMARCA2"	6595	"ENSG00000080503"
+"206542_s_at"	"SMARCA2"	6595	"ENSG00000080503"
+"205806_at"	"ROM1"	6094	"ENSG00000149489"
+"206285_at"	"NPHP1"	4867	"ENSG00000144061"
+"208315_x_at"	"TRAF3"	7187	"ENSG00000131323"
+"206763_at"	"FKBP6"	8468	"ENSG00000077800"
+"209709_s_at"	"HMMR"	3161	"ENSG00000072571"
+"207165_at"	"HMMR"	3161	"ENSG00000072571"
+"207639_at"	"FZD9"	8326	"ENSG00000188763"
+"208621_s_at"	"EZR"	7430	"ENSG00000092820"
+"208623_s_at"	"EZR"	7430	"ENSG00000092820"
+"208622_s_at"	"EZR"	7430	"ENSG00000092820"
+"206667_s_at"	"SCAMP1"	9522	"ENSG00000085365"
+"206668_s_at"	"SCAMP1"	9522	"ENSG00000085365"
+"207585_s_at"	"RPL36AL"	6166	"ENSG00000165502"
+"206109_at"	"FUT1"	2523	"ENSG00000174951"
+"205909_at"	"POLE2"	5427	"ENSG00000100479"
+"210463_x_at"	"TRMT1"	55621	"ENSG00000104907"
+"207943_x_at"	"PLAGL1"	5325	"ENSG00000118495"
+"209318_x_at"	"PLAGL1"	5325	"ENSG00000118495"
+"207002_s_at"	"PLAGL1"	5325	"ENSG00000118495"
+"206726_at"	"HPGDS"	27306	"ENSG00000163106"
+"207009_at"	"PHOX2B"	8929	"ENSG00000109132"
+"209361_s_at"	"PCBP4"	57060	"ENSG00000090097"
+"207779_at"	""	NA	"ENSG00000280023"
+"207226_at"	"H2BC15"	8341	"ENSG00000233822"
+"208490_x_at"	"H2BC7"	8343	"ENSG00000277224"
+"208546_x_at"	"H2BC9"	8345	"ENSG00000275713"
+"206951_at"	"H4C5"	8367	"ENSG00000276966"
+"206683_at"	"ZNF165"	7718	"ENSG00000197279"
+"207782_s_at"	"PSEN1"	5663	"ENSG00000080815"
+"206254_at"	"EGF"	1950	"ENSG00000138798"
+"205814_at"	"GRM3"	2913	"ENSG00000198822"
+"208165_s_at"	"PRSS16"	10279	"ENSG00000112812"
+"209501_at"	"CDR2"	1039	"ENSG00000140743"
+"206238_s_at"	"YAF2"	10138	"ENSG00000015153"
+"209358_at"	"TAF11"	6882	"ENSG00000064995"
+"209789_at"	"CORO2B"	10391	"ENSG00000103647"
+"207894_s_at"	"TCL6"	124903372	"ENSG00000187621"
+"206727_at"	"C9"	735	"ENSG00000113600"
+"205774_at"	"F12"	2161	"ENSG00000131187"
+"207562_at"	"DGKQ"	1609	"ENSG00000145214"
+"209721_s_at"	"IFFO1"	25900	"ENSG00000010295"
+"210239_at"	"IRX5"	10265	"ENSG00000176842"
+"209310_s_at"	"CASP4"	837	"ENSG00000196954"
+"207684_at"	"TBX6"	6911	"ENSG00000149922"
+"207500_at"	"CASP5"	838	"ENSG00000137757"
+"208604_s_at"	"HOXA3"	3200	"ENSG00000105997"
+"209218_at"	"SQLE"	6713	"ENSG00000104549"
+"207568_at"	"CHRNA6"	8973	"ENSG00000147434"
+"205583_s_at"	"ALG13"	79868	"ENSG00000101901"
+"205584_at"	"ALG13"	79868	"ENSG00000101901"
+"209799_at"	"PRKAA1"	5562	"ENSG00000132356"
+"209899_s_at"	"PUF60"	22827	"ENSG00000179950"
+"208471_at"	"HPR"	3250	"ENSG00000261701"
+"210057_at"	"SMG1"	23049	"ENSG00000157106"
+"207425_s_at"	"SEPTIN9"	10801	"ENSG00000184640"
+"208657_s_at"	"SEPTIN9"	10801	"ENSG00000184640"
+"209175_at"	"SEC23IP"	11196	"ENSG00000107651"
+"209176_at"	"SEC23IP"	11196	"ENSG00000107651"
+"208025_s_at"	"HMGA2"	8091	"ENSG00000149948"
+"206495_s_at"	"HINFP"	25988	"ENSG00000172273"
+"210075_at"	"MARCHF2"	51257	"ENSG00000099785"
+"207593_at"	"ABCG4"	64137	"ENSG00000172350"
+"209371_s_at"	"SH3BP2"	6452	"ENSG00000087266"
+"209370_s_at"	"SH3BP2"	6452	"ENSG00000087266"
+"207901_at"	"IL12B"	3593	"ENSG00000113302"
+"209781_s_at"	"KHDRBS3"	10656	"ENSG00000131773"
+"209087_x_at"	"MCAM"	4162	"ENSG00000076706"
+"209086_x_at"	"MCAM"	4162	"ENSG00000076706"
+"209109_s_at"	"TSPAN6"	7105	"ENSG00000000003"
+"209108_at"	"TSPAN6"	7105	"ENSG00000000003"
+"208030_s_at"	"ADD1"	118	"ENSG00000087274"
+"209001_s_at"	"ANAPC13"	25847	"ENSG00000129055"
+"207743_at"	""	NA	"ENSG00000179038"
+"207950_s_at"	"ANK3"	288	"ENSG00000151150"
+"206385_s_at"	"ANK3"	288	"ENSG00000151150"
+"209442_x_at"	"ANK3"	288	"ENSG00000151150"
+"207101_at"	"VAMP1"	6843	"ENSG00000139190"
+"207100_s_at"	"VAMP1"	6843	"ENSG00000139190"
+"207185_at"	"SLC10A1"	6554	"ENSG00000100652"
+"206697_s_at"	"HP"	3240	"ENSG00000257017"
+"205986_at"	"AATK"	9625	"ENSG00000181409"
+"208543_at"	"OR10H2"	26538	"ENSG00000171942"
+"206386_at"	"SERPINA7"	6906	"ENSG00000123561"
+"208520_at"	"OR10H3"	26532	"ENSG00000171936"
+"206128_at"	"ADRA2C"	152	"ENSG00000184160"
+"209239_at"	"NFKB1"	4790	"ENSG00000109320"
+"209997_x_at"	"PCM1"	5108	"ENSG00000078674"
+"209996_x_at"	"PCM1"	5108	"ENSG00000078674"
+"208328_s_at"	"MEF2A"	4205	"ENSG00000068305"
+"208558_at"	"OR10H1"	26539	"ENSG00000186723"
+"209261_s_at"	"NR2F6"	2063	"ENSG00000160113"
+"209262_s_at"	"NR2F6"	2063	"ENSG00000160113"
+"206893_at"	"SALL1"	6299	"ENSG00000103449"
+"206284_x_at"	"CLTB"	1212	"ENSG00000175416"
+"207087_x_at"	"ANK1"	286	"ENSG00000029534"
+"208352_x_at"	"ANK1"	286	"ENSG00000029534"
+"208353_x_at"	"ANK1"	286	"ENSG00000029534"
+"208445_s_at"	"BAZ1B"	9031	"ENSG00000009954"
+"207658_s_at"	"FOXG1"	2290	"ENSG00000176165"
+"206018_at"	"FOXG1"	2290	"ENSG00000176165"
+"207745_at"	"CABP2"	51475	"ENSG00000167791"
+"207129_at"	"CA5B"	11238	"ENSG00000169239"
+"205936_s_at"	"HK3"	3101	"ENSG00000160883"
+"207480_s_at"	"MEIS2"	4212	"ENSG00000134138"
+"208714_at"	"NDUFV1"	4723	"ENSG00000167792"
+"206801_at"	"NPPB"	4879	"ENSG00000120937"
+"209967_s_at"	"CREM"	1390	"ENSG00000095794"
+"210171_s_at"	"CREM"	1390	"ENSG00000095794"
+"207518_at"	"DGKE"	8526	"ENSG00000153933"
+"207210_at"	"GABRA3"	2556	"ENSG00000011677"
+"205535_s_at"	"PCDH7"	5099	"ENSG00000169851"
+"210273_at"	"PCDH7"	5099	"ENSG00000169851"
+"205534_at"	"PCDH7"	5099	"ENSG00000169851"
+"206911_at"	"TRIM25"	7706	"ENSG00000121060"
+"208757_at"	"TMED9"	54732	"ENSG00000184840"
+"205812_s_at"	"TMED9"	54732	"ENSG00000184840"
+"208081_s_at"	"ZNF442"	79973	"ENSG00000198342"
+"206271_at"	"TLR3"	7098	"ENSG00000164342"
+"209076_s_at"	"WDR45B"	56270	"ENSG00000141580"
+"210343_s_at"	"SLC22A6"	9356	"ENSG00000197901"
+"208369_s_at"	"GCDH"	2639	"ENSG00000105607"
+"206301_at"	"TEC"	7006	"ENSG00000135605"
+"206729_at"	"TNFRSF8"	943	"ENSG00000120949"
+"207489_at"	"RPS2P45"	NA	"ENSG00000244378"
+"206828_at"	"TXK"	7294	"ENSG00000074966"
+"207983_s_at"	"STAG2"	10735	"ENSG00000101972"
+"209023_s_at"	"STAG2"	10735	"ENSG00000101972"
+"209022_at"	"STAG2"	10735	"ENSG00000101972"
+"206270_at"	"PRKCG"	5582	"ENSG00000126583"
+"207216_at"	"TNFSF8"	944	"ENSG00000106952"
+"206021_at"	""	NA	"ENSG00000291159"
+"207626_s_at"	"SLC7A2"	6542	"ENSG00000003989"
+"206031_s_at"	"USP5"	8078	"ENSG00000111667"
+"208535_x_at"	"COL13A1"	1305	"ENSG00000197467"
+"209104_s_at"	"NHP2"	55651	"ENSG00000145912"
+"205846_at"	"PTPRB"	5787	"ENSG00000127329"
+"205808_at"	"ASPH"	444	"ENSG00000198363"
+"209135_at"	"ASPH"	444	"ENSG00000198363"
+"207284_s_at"	"ASPH"	444	"ENSG00000198363"
+"206466_at"	"ACSBG1"	23205	"ENSG00000103740"
+"206465_at"	"ACSBG1"	23205	"ENSG00000103740"
+"209416_s_at"	"FZR1"	51343	"ENSG00000105325"
+"209415_at"	"FZR1"	51343	"ENSG00000105325"
+"209414_at"	"FZR1"	51343	"ENSG00000105325"
+"208038_at"	"IL1RL2"	8808	"ENSG00000115598"
+"209036_s_at"	"MDH2"	4191	"ENSG00000146701"
+"207526_s_at"	"IL1RL1"	9173	"ENSG00000115602"
+"210442_at"	"IL1RL1"	9173	"ENSG00000115602"
+"209113_s_at"	"HMG20B"	10362	"ENSG00000064961"
+"209830_s_at"	"NHERF2"	9351	"ENSG00000065054"
+"208708_x_at"	"EIF5"	1983	"ENSG00000100664"
+"208706_s_at"	"EIF5"	1983	"ENSG00000100664"
+"208290_s_at"	"EIF5"	1983	"ENSG00000100664"
+"208707_at"	"EIF5"	1983	"ENSG00000100664"
+"210243_s_at"	"B4GALT3"	8703	"ENSG00000158850"
+"205571_at"	"LIPT1"	51601	"ENSG00000144182"
+"208255_s_at"	"FKBP8"	23770	"ENSG00000105701"
+"209731_at"	"NTHL1"	4913	"ENSG00000065057"
+"208213_s_at"	"KCNAB1"	7881	"ENSG00000169282"
+"210079_x_at"	"KCNAB1"	7881	"ENSG00000169282"
+"210078_s_at"	"KCNAB1"	7881	"ENSG00000169282"
+"210471_s_at"	"KCNAB1"	7881	"ENSG00000169282"
+"205739_x_at"	"ZNF107"	51427	"ENSG00000196247"
+"207154_at"	"DIO3"	1735	"ENSG00000197406"
+"205883_at"	"ZBTB16"	7704	"ENSG00000109906"
+"207007_at"	"NR1I3"	9970	"ENSG00000143257"
+"205850_s_at"	"GABRB3"	2562	"ENSG00000166206"
+"206861_s_at"	"CGGBP1"	8545	"ENSG00000163320"
+"206150_at"	"CD27"	939	"ENSG00000139193"
+"206315_at"	"CRLF1"	9244	"ENSG00000006016"
+"206137_at"	"RIMS2"	9699	"ENSG00000176406"
+"209863_s_at"	"TP63"	8626	"ENSG00000073282"
+"207382_at"	"TP63"	8626	"ENSG00000073282"
+"206456_at"	"GABRA5"	2558	"ENSG00000186297"
+"208437_at"	"CLCN1"	1180	"ENSG00000188037"
+"206368_at"	"CPLX2"	10814	"ENSG00000145920"
+"206180_x_at"	"ZNF747"	65988	"ENSG00000169955"
+"208688_x_at"	"EIF3B"	8662	"ENSG00000106263"
+"209193_at"	"PIM1"	5292	"ENSG00000137193"
+"209827_s_at"	"IL16"	3603	"ENSG00000172349"
+"209828_s_at"	"IL16"	3603	"ENSG00000172349"
+"205983_at"	"DPEP1"	1800	"ENSG00000015413"
+"207803_s_at"	"CSN3"	1448	"ENSG00000171209"
+"207965_at"	"NEUROG3"	50674	"ENSG00000122859"
+"205844_at"	"VNN1"	8876	"ENSG00000112299"
+"205922_at"	"VNN2"	8875	"ENSG00000112303"
+"209209_s_at"	"FERMT2"	10979	"ENSG00000073712"
+"209210_s_at"	"FERMT2"	10979	"ENSG00000073712"
+"207196_s_at"	"TNIP1"	10318	"ENSG00000145901"
+"207854_at"	"GYPE"	2996	"ENSG00000197465"
+"205838_at"	"GYPA"	2993	"ENSG00000170180"
+"205509_at"	"CPB1"	1360	"ENSG00000153002"
+"205608_s_at"	"ANGPT1"	284	"ENSG00000154188"
+"205609_at"	"ANGPT1"	284	"ENSG00000154188"
+"206973_at"	"PPFIA2"	8499	"ENSG00000139220"
+"209928_s_at"	"MSC"	9242	"ENSG00000178860"
+"208016_s_at"	"AGTR1"	185	"ENSG00000144891"
+"205554_s_at"	"DNASE1L3"	1776	"ENSG00000163687"
+"205528_s_at"	"RUNX1T1"	862	"ENSG00000079102"
+"205529_s_at"	"RUNX1T1"	862	"ENSG00000079102"
+"206422_at"	"GCG"	2641	"ENSG00000115263"
+"206894_at"	"APOA4"	337	"ENSG00000110244"
+"205820_s_at"	"APOC3"	345	"ENSG00000110245"
+"208489_at"	"GJA8"	2703	"ENSG00000121634"
+"209159_s_at"	"NDRG4"	65009	"ENSG00000103034"
+"207845_s_at"	"ANAPC10"	10393	"ENSG00000164162"
+"208509_s_at"	"OR7A17"	26333	"ENSG00000185385"
+"209332_s_at"	"MAX"	4149	"ENSG00000125952"
+"209331_s_at"	"MAX"	4149	"ENSG00000125952"
+"208403_x_at"	"MAX"	4149	"ENSG00000125952"
+"207804_s_at"	"FCN2"	2220	"ENSG00000160339"
+"209352_s_at"	"SIN3B"	23309	"ENSG00000127511"
+"208671_at"	"SERINC1"	57515	"ENSG00000111897"
+"209280_at"	"MRC2"	9902	"ENSG00000011028"
+"206462_s_at"	"NTRK3"	4916	"ENSG00000140538"
+"207163_s_at"	"AKT1"	207	"ENSG00000142208"
+"206131_at"	"CLPS"	1208	"ENSG00000137392"
+"207614_s_at"	"CUL1"	8454	"ENSG00000055130"
+"207553_at"	"OPRK1"	4986	"ENSG00000082556"
+"210147_at"	"ART3"	419	"ENSG00000156219"
+"209497_s_at"	"RBM4B"	83759	"ENSG00000173914"
+"209727_at"	"GM2A"	2760	"ENSG00000196743"
+"210255_at"	"RAD51B"	5890	"ENSG00000182185"
+"209488_s_at"	"RBPMS"	11030	"ENSG00000157110"
+"209487_at"	"RBPMS"	11030	"ENSG00000157110"
+"207837_at"	"RBPMS"	11030	"ENSG00000157110"
+"207836_s_at"	"RBPMS"	11030	"ENSG00000157110"
+"208911_s_at"	"PDHB"	5162	"ENSG00000168291"
+"210192_at"	"ATP8A1"	10396	"ENSG00000124406"
+"207773_x_at"	"CYP3A43"	64816	"ENSG00000021461"
+"207543_s_at"	"P4HA1"	5033	"ENSG00000122884"
+"210138_at"	"RGS20"	8601	"ENSG00000147509"
+"205592_at"	"SLC4A1"	6521	"ENSG00000004939"
+"207219_at"	"ZFP69B"	65243	"ENSG00000187801"
+"206229_x_at"	"PAX2"	5076	"ENSG00000075891"
+"206228_at"	"PAX2"	5076	"ENSG00000075891"
+"210280_at"	"MPZ"	4359	"ENSG00000158887"
+"210216_x_at"	"RAD1"	5810	"ENSG00000113456"
+"206196_s_at"	"RUNDC3A"	10900	"ENSG00000108309"
+"205514_at"	"ZNF415"	55786	"ENSG00000170954"
+"207818_s_at"	"HTR7"	3363	"ENSG00000148680"
+"207927_at"	"HTR7"	3363	"ENSG00000148680"
+"206153_at"	"CYP4F11"	57834	"ENSG00000171903"
+"205914_s_at"	"GRIN1"	2902	"ENSG00000176884"
+"205915_x_at"	"GRIN1"	2902	"ENSG00000176884"
+"207031_at"	"NKX3-2"	579	"ENSG00000109705"
+"206493_at"	"ITGA2B"	3674	"ENSG00000005961"
+"206494_s_at"	"ITGA2B"	3674	"ENSG00000005961"
+"208532_x_at"	"KRTAP5-8"	57830	"ENSG00000241233"
+"209027_s_at"	"ABI1"	10006	"ENSG00000136754"
+"209028_s_at"	"ABI1"	10006	"ENSG00000136754"
+"206882_at"	"SLC1A6"	6511	"ENSG00000105143"
+"209408_at"	"KIF2C"	11004	"ENSG00000142945"
+"210246_s_at"	"ABCC8"	6833	"ENSG00000006071"
+"206573_at"	"KCNQ3"	3786	"ENSG00000184156"
+"208452_x_at"	"MYO9B"	4650	"ENSG00000099331"
+"206693_at"	"IL7"	3574	"ENSG00000104432"
+"206237_s_at"	"NRG1"	3084	"ENSG00000157168"
+"208230_s_at"	"NRG1"	3084	"ENSG00000157168"
+"208241_at"	"NRG1"	3084	"ENSG00000157168"
+"206343_s_at"	"NRG1"	3084	"ENSG00000157168"
+"208231_at"	"NRG1"	3084	"ENSG00000157168"
+"205999_x_at"	"CYP3A4"	1576	"ENSG00000160868"
+"205998_x_at"	"CYP3A4"	1576	"ENSG00000160868"
+"208367_x_at"	"CYP3A4"	1576	"ENSG00000160868"
+"205984_at"	"CRHBP"	1393	"ENSG00000145708"
+"209139_s_at"	"PRKRA"	8575	"ENSG00000180228"
+"210461_s_at"	"ABLIM1"	3983	"ENSG00000099204"
+"209095_at"	"DLD"	1738	"ENSG00000091140"
+"209818_s_at"	"HABP4"	22927	"ENSG00000130956"
+"208022_s_at"	"CDC14B"	8555	"ENSG00000081377"
+"208970_s_at"	"UROD"	7389	"ENSG00000126088"
+"208971_at"	"UROD"	7389	"ENSG00000126088"
+"206226_at"	"HRG"	3273	"ENSG00000113905"
+"207902_at"	"IL5RA"	3568	"ENSG00000091181"
+"206241_at"	"KPNA5"	3841	"ENSG00000196911"
+"207214_at"	"SPINK4"	27290	"ENSG00000122711"
+"207170_s_at"	"LETMD1"	25875	"ENSG00000050426"
+"206673_at"	"GPR176"	11245	"ENSG00000166073"
+"207813_s_at"	"FDXR"	2232	"ENSG00000161513"
+"207987_s_at"	"GNRH1"	2796	"ENSG00000147437"
+"210415_s_at"	"ODF2"	4957	"ENSG00000136811"
+"207128_s_at"	"ZNF223"	7766	"ENSG00000178386"
+"209333_at"	"ULK1"	8408	"ENSG00000177169"
+"207830_s_at"	"PPP1R8"	5511	"ENSG00000117751"
+"207125_at"	"ZNF225"	7768	"ENSG00000256294"
+"209323_at"	"THAP12"	5612	"ENSG00000137492"
+"207571_x_at"	"THEMIS2"	9473	"ENSG00000130775"
+"206116_s_at"	"TPM1"	7168	"ENSG00000140416"
+"206117_at"	"TPM1"	7168	"ENSG00000140416"
+"206234_s_at"	"MMP17"	4326	"ENSG00000198598"
+"206883_x_at"	"GP9"	2815	"ENSG00000169704"
+"210149_s_at"	"ATP5PD"	10476	"ENSG00000167863"
+"207312_at"	"PHKG1"	5260	"ENSG00000164776"
+"206797_at"	"NAT2"	10	"ENSG00000156006"
+"209792_s_at"	"KLK10"	5655	"ENSG00000129451"
+"205470_s_at"	"KLK11"	11012	"ENSG00000167757"
+"206974_at"	"CXCR6"	10663	"ENSG00000172215"
+"210190_at"	"STX11"	8676	"ENSG00000135604"
+"207808_s_at"	"PROS1"	5627	"ENSG00000184500"
+"208994_s_at"	"PPIG"	9360	"ENSG00000138398"
+"208993_s_at"	"PPIG"	9360	"ENSG00000138398"
+"208995_s_at"	"PPIG"	9360	"ENSG00000138398"
+"205783_at"	"KLK13"	26085	"ENSG00000167759"
+"207074_s_at"	"SLC18A1"	6570	"ENSG00000036565"
+"206030_at"	"ASPA"	443	"ENSG00000108381"
+"207224_s_at"	"SIGLEC7"	27036	"ENSG00000168995"
+"207206_s_at"	"ALOX12"	239	"ENSG00000108839"
+"206120_at"	"CD33"	945	"ENSG00000105383"
+"206613_s_at"	"TAF1A"	9015	"ENSG00000143498"
+"205560_at"	"PCSK5"	5125	"ENSG00000099139"
+"205559_s_at"	"PCSK5"	5125	"ENSG00000099139"
+"206682_at"	"CLEC10A"	10462	"ENSG00000132514"
+"208653_s_at"	"CD164"	8763	"ENSG00000135535"
+"208654_s_at"	"CD164"	8763	"ENSG00000135535"
+"208405_s_at"	"CD164"	8763	"ENSG00000135535"
+"209773_s_at"	"RRM2"	6241	"ENSG00000171848"
+"208939_at"	"SEPHS1"	22929	"ENSG00000086475"
+"208940_at"	"SEPHS1"	22929	"ENSG00000086475"
+"208941_s_at"	"SEPHS1"	22929	"ENSG00000086475"
+"206743_s_at"	"ASGR1"	432	"ENSG00000141505"
+"205622_at"	"SMPD2"	6610	"ENSG00000135587"
+"210166_at"	"TLR5"	7100	"ENSG00000187554"
+"206376_at"	"SLC6A15"	55117	"ENSG00000072041"
+"210041_s_at"	"PGM3"	5238	"ENSG00000013375"
+"206396_at"	"SLC1A1"	6505	"ENSG00000106688"
+"210141_s_at"	"INHA"	3623	"ENSG00000123999"
+"208322_s_at"	"ST3GAL1"	6482	"ENSG00000008513"
+"206887_at"	"ACKR2"	1238	"ENSG00000144648"
+"205918_at"	"SLC4A3"	6508	"ENSG00000114923"
+"205552_s_at"	"OAS1"	4938	"ENSG00000089127"
+"209940_at"	"PARP3"	10039	"ENSG00000041880"
+"206757_at"	"PDE5A"	8654	"ENSG00000138735"
+"206083_at"	"ADGRB1"	575	"ENSG00000181790"
+"205500_at"	"C5"	727	"ENSG00000106804"
+"210090_at"	"ARC"	23237	"ENSG00000198576"
+"207600_at"	"KCNC3"	3748	"ENSG00000131398"
+"208578_at"	"SCN10A"	6336	"ENSG00000185313"
+"209571_at"	"CIR1"	9541	"ENSG00000138433"
+"209289_at"	"NFIB"	4781	"ENSG00000147862"
+"209290_s_at"	"NFIB"	4781	"ENSG00000147862"
+"208803_s_at"	"SRP72"	6731	"ENSG00000174780"
+"208095_s_at"	"SRP72"	6731	"ENSG00000174780"
+"208801_at"	"SRP72"	6731	"ENSG00000174780"
+"208802_at"	"SRP72"	6731	"ENSG00000174780"
+"208263_at"	"SRP72"	6731	"ENSG00000174780"
+"209083_at"	"CORO1A"	11151	"ENSG00000102879"
+"205861_at"	"SPIB"	6689	"ENSG00000269404"
+"209330_s_at"	"HNRNPD"	3184	"ENSG00000138668"
+"206394_at"	"MYBPC2"	4606	"ENSG00000086967"
+"209832_s_at"	"CDT1"	81620	"ENSG00000167513"
+"206073_at"	"COLQ"	8292	"ENSG00000206561"
+"206335_at"	"GALNS"	2588	"ENSG00000141012"
+"206142_at"	"ZNF135"	7694	"ENSG00000176293"
+"208056_s_at"	"CBFA2T3"	863	"ENSG00000129993"
+"209068_at"	"HNRNPDL"	9987	"ENSG00000152795"
+"209067_s_at"	"HNRNPDL"	9987	"ENSG00000152795"
+"206438_x_at"	"TCTN2"	79867	"ENSG00000168778"
+"209587_at"	"PITX1"	5307	"ENSG00000069011"
+"208502_s_at"	"PITX1"	5307	"ENSG00000069011"
+"208497_x_at"	"NEUROG1"	4762	"ENSG00000181965"
+"206629_at"	"ADAMTSL2"	9719	"ENSG00000197859"
+"208494_at"	"SLC6A7"	6534	"ENSG00000011083"
+"205568_at"	"AQP9"	366	"ENSG00000103569"
+"207443_at"	"NR2E1"	7101	"ENSG00000112333"
+"207613_s_at"	"CAMK2A"	815	"ENSG00000070808"
+"210063_at"	"SARDH"	1757	"ENSG00000123453"
+"207889_at"	"SARDH"	1757	"ENSG00000123453"
+"205543_at"	"HSPA4L"	22824	"ENSG00000164070"
+"205536_at"	"VAV2"	7410	"ENSG00000160293"
+"205537_s_at"	"VAV2"	7410	"ENSG00000160293"
+"209017_s_at"	"LONP1"	9361	"ENSG00000196365"
+"210434_x_at"	"JTB"	10899	"ENSG00000143543"
+"209345_s_at"	"PI4K2A"	55361	"ENSG00000155252"
+"210179_at"	"KCNJ13"	3769	"ENSG00000115474"
+"206633_at"	"CHRNA1"	1134	"ENSG00000138435"
+"207468_s_at"	"SFRP5"	6425	"ENSG00000120057"
+"208402_at"	"IL17A"	3605	"ENSG00000112115"
+"210455_at"	"R3HCC1L"	27291	"ENSG00000166024"
+"206155_at"	"ABCC2"	1244	"ENSG00000023839"
+"206752_s_at"	"DFFB"	1677	"ENSG00000169598"
+"208035_at"	"GRM6"	2916	"ENSG00000113262"
+"206246_at"	"PFKFB4"	5210	"ENSG00000114268"
+"209118_s_at"	"TUBA1A"	7846	"ENSG00000167552"
+"208262_x_at"	"MEFV"	4210	"ENSG00000103313"
+"206256_at"	"CPN1"	1369	"ENSG00000120054"
+"210348_at"	"SEPTIN4"	5414	"ENSG00000108387"
+"209666_s_at"	"CHUK"	1147	"ENSG00000213341"
+"209390_at"	"TSC1"	7248	"ENSG00000165699"
+"208512_s_at"	"AFDN"	4301	"ENSG00000130396"
+"205695_at"	"SDS"	10993	"ENSG00000135094"
+"206943_at"	"TGFBR1"	7046	"ENSG00000106799"
+"208560_at"	"KCNA10"	3744	"ENSG00000143105"
+"208564_at"	"KCNA2"	3737	"ENSG00000177301"
+"208333_at"	"LHX5"	64211	"ENSG00000089116"
+"207618_s_at"	"BCS1L"	617	"ENSG00000074582"
+"209621_s_at"	"PDLIM3"	27295	"ENSG00000154553"
+"210170_at"	"PDLIM3"	27295	"ENSG00000154553"
+"209816_at"	"PTCH1"	5727	"ENSG00000185920"
+"209815_at"	"PTCH1"	5727	"ENSG00000185920"
+"208522_s_at"	"PTCH1"	5727	"ENSG00000185920"
+"207832_at"	"BAIAP2"	10458	"ENSG00000175866"
+"209502_s_at"	"BAIAP2"	10458	"ENSG00000175866"
+"208330_at"	"ALX4"	60529	"ENSG00000052850"
+"208472_at"	"IKZF4"	64375	"ENSG00000123411"
+"208676_s_at"	"PA2G4"	5036	"ENSG00000170515"
+"207383_s_at"	"RHBDL1"	9028	"ENSG00000103269"
+"210261_at"	"KCNK2"	3776	"ENSG00000082482"
+"208858_s_at"	"ESYT1"	23344	"ENSG00000139641"
+"207698_at"	"LINC01558"	26238	"ENSG00000146521"
+"207520_at"	"RO60"	6738	"ENSG00000116747"
+"210438_x_at"	"RO60"	6738	"ENSG00000116747"
+"209142_s_at"	"UBE2G1"	7326	"ENSG00000132388"
+"209141_at"	"UBE2G1"	7326	"ENSG00000132388"
+"208234_x_at"	"FGFR2"	2263	"ENSG00000066468"
+"208228_s_at"	"FGFR2"	2263	"ENSG00000066468"
+"208225_at"	"FGFR2"	2263	"ENSG00000066468"
+"208346_at"	""	10895	"ENSG00000290910"
+"205828_at"	"MMP3"	4314	"ENSG00000149968"
+"209807_s_at"	"NFIX"	4784	"ENSG00000008441"
+"205648_at"	"WNT2"	7472	"ENSG00000105989"
+"207508_at"	"ATP5MC3"	518	"ENSG00000154518"
+"207507_s_at"	"ATP5MC3"	518	"ENSG00000154518"
+"209242_at"	"PEG3"	5178	"ENSG00000198300"
+"209243_s_at"	"PEG3"	5178	"ENSG00000198300"
+"205542_at"	"STEAP1"	26872	"ENSG00000164647"
+"205743_at"	"STAC"	6769	"ENSG00000144681"
+"205960_at"	"PDK4"	5166	"ENSG00000004799"
+"205518_s_at"	"CMAHP"	NA	"ENSG00000168405"
+"207203_s_at"	"NR1I2"	8856	"ENSG00000144852"
+"207202_s_at"	"NR1I2"	8856	"ENSG00000144852"
+"210409_at"	"AFDN-DT"	NA	"ENSG00000198221"
+"206054_at"	"KNG1"	3827	"ENSG00000113889"
+"206240_s_at"	"ZNF136"	7695	"ENSG00000196646"
+"209904_at"	"TNNC1"	7134	"ENSG00000114854"
+"210284_s_at"	"TAB2"	23118	"ENSG00000055208"
+"209506_s_at"	"NR2F1"	7025	"ENSG00000175745"
+"209505_at"	"NR2F1"	7025	"ENSG00000175745"
+"209797_at"	"CNPY2"	10330	"ENSG00000257727"
+"207262_at"	"APOF"	319	"ENSG00000175336"
+"210366_at"	"SLCO1B1"	10599	"ENSG00000134538"
+"205697_at"	"SCGN"	10590	"ENSG00000079689"
+"207062_at"	"IAPP"	3375	"ENSG00000121351"
+"208400_at"	"GLP1R"	2740	"ENSG00000112164"
+"208391_s_at"	"GLP1R"	2740	"ENSG00000112164"
+"208401_s_at"	"GLP1R"	2740	"ENSG00000112164"
+"208390_s_at"	"GLP1R"	2740	"ENSG00000112164"
+"209916_at"	"DHTKD1"	55526	"ENSG00000181192"
+"207473_at"	"MLN"	4295	"ENSG00000096395"
+"206641_at"	"TNFRSF17"	608	"ENSG00000048462"
+"206750_at"	"MAFK"	7975	"ENSG00000198517"
+"210234_at"	"GRM4"	2914	"ENSG00000124493"
+"207199_at"	"TERT"	7015	"ENSG00000164362"
+"209530_at"	"CACNB3"	784	"ENSG00000167535"
+"207689_at"	"TBX10"	347853	"ENSG00000167800"
+"206821_x_at"	"AGFG2"	3268	"ENSG00000106351"
+"209381_x_at"	"SF3A2"	8175	"ENSG00000104897"
+"209509_s_at"	"DPAGT1"	1798	"ENSG00000172269"
+"210056_at"	"RND1"	27289	"ENSG00000172602"
+"209195_s_at"	"ADCY6"	112	"ENSG00000174233"
+"206516_at"	"AMH"	268	"ENSG00000104899"
+"210457_x_at"	"HMGA1"	3159	"ENSG00000137309"
+"206074_s_at"	"HMGA1"	3159	"ENSG00000137309"
+"206205_at"	"MPHOSPH9"	10198	"ENSG00000051825"
+"209687_at"	"CXCL12"	6387	"ENSG00000107562"
+"209568_s_at"	"RGL1"	23179	"ENSG00000143344"
+"210244_at"	"CAMP"	820	"ENSG00000164047"
+"210062_s_at"	"ZNF589"	51385	"ENSG00000164048"
+"210061_at"	"ZNF589"	51385	"ENSG00000164048"
+"209447_at"	"SYNE1"	23345	"ENSG00000131018"
+"205851_at"	"NME6"	10201	"ENSG00000172113"
+"205690_s_at"	"BUD31"	8896	"ENSG00000106245"
+"208542_x_at"	"ZNF208"	7757	"ENSG00000160321"
+"208104_s_at"	"TSC22D4"	81628	"ENSG00000166925"
+"208251_at"	"KCNC4"	3749	"ENSG00000116396"
+"208252_s_at"	"CHST3"	9469	"ENSG00000122863"
+"209834_at"	"CHST3"	9469	"ENSG00000122863"
+"209528_s_at"	"TELO2"	9894	"ENSG00000100726"
+"206968_s_at"	"NFRKB"	4798	"ENSG00000170322"
+"208713_at"	"HNRNPUL1"	11100	"ENSG00000105323"
+"209675_s_at"	"HNRNPUL1"	11100	"ENSG00000105323"
+"209235_at"	"CLCN7"	1186	"ENSG00000103249"
+"210412_at"	"GRIN2B"	2904	"ENSG00000273079"
+"210411_s_at"	"GRIN2B"	2904	"ENSG00000273079"
+"209445_x_at"	"COA1"	55744	"ENSG00000106603"
+"206497_at"	"COA1"	55744	"ENSG00000106603"
+"208277_at"	"PITX3"	5309	"ENSG00000107859"
+"210047_at"	"SLC11A2"	4891	"ENSG00000110911"
+"207120_at"	"ZNF667"	63934	"ENSG00000198046"
+"209766_at"	"PRDX3"	10935	"ENSG00000165672"
+"207716_at"	"KRT38"	8687	"ENSG00000171360"
+"207146_at"	"KRT32"	3882	"ENSG00000108759"
+"207935_s_at"	"KRT13"	3860	"ENSG00000171401"
+"206753_at"	"RDH16"	8608	"ENSG00000139547"
+"207747_s_at"	"DOK4"	55715	"ENSG00000125170"
+"209690_s_at"	"DOK4"	55715	"ENSG00000125170"
+"209691_s_at"	"DOK4"	55715	"ENSG00000125170"
+"207235_s_at"	"GRM5"	2915	"ENSG00000168959"
+"210414_at"	"FLRT1"	23769	"ENSG00000126500"
+"208188_at"	"KRT9"	3857	"ENSG00000171403"
+"209351_at"	"KRT14"	3861	"ENSG00000186847"
+"208934_s_at"	"LGALS8"	3964	"ENSG00000116977"
+"208933_s_at"	"LGALS8"	3964	"ENSG00000116977"
+"208935_s_at"	"LGALS8"	3964	"ENSG00000116977"
+"208936_x_at"	"LGALS8"	3964	"ENSG00000116977"
+"209800_at"	"KRT16"	3868	"ENSG00000186832"
+"208003_s_at"	"NFAT5"	10725	"ENSG00000102908"
+"207161_at"	"KIAA0087"	9808	"ENSG00000122548"
+"205588_s_at"	"CEP43"	11116	"ENSG00000213066"
+"210073_at"	"ST8SIA1"	6489	"ENSG00000111728"
+"207794_at"	"CCR2"	729230	"ENSG00000121807"
+"206978_at"	"CCR2"	729230	"ENSG00000121807"
+"208304_at"	"CCR3"	1232	"ENSG00000183625"
+"208478_s_at"	"BAX"	581	"ENSG00000087088"
+"205485_at"	"RYR1"	6261	"ENSG00000196218"
+"207598_x_at"	"XRCC2"	7516	"ENSG00000196584"
+"209642_at"	"BUB1"	699	"ENSG00000169679"
+"209467_s_at"	"MKNK1"	8569	"ENSG00000079277"
+"207230_at"	"CDON"	50937	"ENSG00000064309"
+"210237_at"	"ARTN"	9048	"ENSG00000117407"
+"207675_x_at"	"ARTN"	9048	"ENSG00000117407"
+"206440_at"	"LIN7A"	8825	"ENSG00000111052"
+"206782_s_at"	"DNAJC4"	3338	"ENSG00000110011"
+"207043_s_at"	"SLC6A9"	6536	"ENSG00000196517"
+"206529_x_at"	"SLC26A4"	5172	"ENSG00000091137"
+"208292_at"	"BMP10"	27302	"ENSG00000163217"
+"206143_at"	"SLC26A3"	1811	"ENSG00000091138"
+"207710_at"	"LCE2B"	26239	"ENSG00000159455"
+"208510_s_at"	"PPARG"	5468	"ENSG00000132170"
+"206531_at"	"DPF1"	8193	"ENSG00000011332"
+"207801_s_at"	"RNF10"	9921	"ENSG00000022840"
+"208632_at"	"RNF10"	9921	"ENSG00000022840"
+"210316_at"	"FLT4"	2324	"ENSG00000037280"
+"205815_at"	"REG3A"	5068	"ENSG00000172016"
+"208917_x_at"	"NADK"	65220	"ENSG00000008130"
+"208918_s_at"	"NADK"	65220	"ENSG00000008130"
+"208919_s_at"	"NADK"	65220	"ENSG00000008130"
+"207168_s_at"	"MACROH2A1"	9555	"ENSG00000113648"
+"208786_s_at"	"MAP1LC3B"	81631	"ENSG00000140941"
+"210325_at"	"CD1A"	909	"ENSG00000158477"
+"205987_at"	"CD1C"	911	"ENSG00000158481"
+"205873_at"	"PIGL"	9487	"ENSG00000108474"
+"206749_at"	"CD1B"	910	"ENSG00000158485"
+"208592_s_at"	"CD1E"	913	"ENSG00000158488"
+"207592_s_at"	"HCN2"	610	"ENSG00000099822"
+"206784_at"	"AQP8"	343	"ENSG00000103375"
+"205748_s_at"	"RNF126"	55658	"ENSG00000070423"
+"207654_x_at"	"DR1"	1810	"ENSG00000117505"
+"209188_x_at"	"DR1"	1810	"ENSG00000117505"
+"209187_at"	"DR1"	1810	"ENSG00000117505"
+"210337_s_at"	"ACLY"	47	"ENSG00000131473"
+"206569_at"	"IL24"	11009	"ENSG00000162892"
+"208466_at"	"RAB3D"	9545	"ENSG00000105514"
+"210449_x_at"	"MAPK14"	1432	"ENSG00000112062"
+"209010_s_at"	"TRIO"	7204	"ENSG00000038382"
+"209011_at"	"TRIO"	7204	"ENSG00000038382"
+"208178_x_at"	"TRIO"	7204	"ENSG00000038382"
+"209013_x_at"	"TRIO"	7204	"ENSG00000038382"
+"209012_at"	"TRIO"	7204	"ENSG00000038382"
+"206026_s_at"	"TNFAIP6"	7130	"ENSG00000123610"
+"206025_s_at"	"TNFAIP6"	7130	"ENSG00000123610"
+"207327_at"	"EYA4"	2070	"ENSG00000112319"
+"208912_s_at"	"CNP"	1267	"ENSG00000173786"
+"207183_at"	"GPR19"	2842	"ENSG00000183150"
+"208613_s_at"	"FLNB"	2317	"ENSG00000136068"
+"208614_s_at"	"FLNB"	2317	"ENSG00000136068"
+"208658_at"	"PDIA4"	9601	"ENSG00000155660"
+"210444_at"	"NPY6R"	4888	"ENSG00000226306"
+"209465_x_at"	"PTN"	5764	"ENSG00000105894"
+"209466_x_at"	"PTN"	5764	"ENSG00000105894"
+"208696_at"	"CCT5"	22948	"ENSG00000150753"
+"206369_s_at"	"PIK3CG"	5294	"ENSG00000105851"
+"206370_at"	"PIK3CG"	5294	"ENSG00000105851"
+"209971_x_at"	"AIMP2"	7965	"ENSG00000106305"
+"206371_at"	"FOLR3"	2352	"ENSG00000110203"
+"209186_at"	"ATP2A2"	488	"ENSG00000174437"
+"208092_s_at"	"CYRIA"	81553	"ENSG00000197872"
+"209683_at"	"CYRIA"	81553	"ENSG00000197872"
+"209848_s_at"	"PMEL"	6490	"ENSG00000185664"
+"207877_s_at"	"NVL"	4931	"ENSG00000143748"
+"206941_x_at"	"SEMA3E"	9723	"ENSG00000170381"
+"205709_s_at"	"CDS1"	1040	"ENSG00000163624"
+"207866_at"	"BMP8A"	353500	"ENSG00000183682"
+"206078_at"	"KALRN"	8997	"ENSG00000160145"
+"205635_at"	"KALRN"	8997	"ENSG00000160145"
+"210105_s_at"	"FYN"	2534	"ENSG00000010810"
+"207389_at"	"GP1BA"	2811	"ENSG00000185245"
+"205835_s_at"	"YTHDC2"	64848	"ENSG00000047188"
+"205836_s_at"	"YTHDC2"	64848	"ENSG00000047188"
+"207846_at"	"POU1F1"	5449	"ENSG00000064835"
+"209365_s_at"	"ECM1"	1893	"ENSG00000143369"
+"206124_s_at"	"LLGL1"	3996	"ENSG00000131899"
+"206123_at"	"LLGL1"	3996	"ENSG00000131899"
+"206132_at"	"MCC"	4163	"ENSG00000171444"
+"207192_at"	"DNASE1L2"	1775	"ENSG00000167968"
+"209759_s_at"	"ECI1"	1632	"ENSG00000167969"
+"207939_x_at"	"RNPS1"	10921	"ENSG00000205937"
+"206562_s_at"	"CSNK1A1"	1452	"ENSG00000113712"
+"208571_at"	"ANP32D"	23519	"ENSG00000139223"
+"207816_at"	"LALBA"	3906	"ENSG00000167531"
+"209618_at"	"CTNND2"	1501	"ENSG00000169862"
+"209617_s_at"	"CTNND2"	1501	"ENSG00000169862"
+"208305_at"	"PGR"	5241	"ENSG00000082175"
+"205469_s_at"	"IRF5"	3663	"ENSG00000128604"
+"205468_s_at"	"IRF5"	3663	"ENSG00000128604"
+"206231_at"	"KCNN1"	3780	"ENSG00000105642"
+"209100_at"	"IFRD2"	7866	"ENSG00000214706"
+"209112_at"	"CDKN1B"	1027	"ENSG00000111276"
+"207025_at"	"GJC2"	57165	"ENSG00000198835"
+"207299_s_at"	"GRM1"	2911	"ENSG00000152822"
+"207319_s_at"	"CDK13"	8621	"ENSG00000065883"
+"207318_s_at"	"CDK13"	8621	"ENSG00000065883"
+"206748_s_at"	"SPAG9"	9043	"ENSG00000008294"
+"205959_at"	"MMP13"	4322	"ENSG00000137745"
+"210168_at"	"C6"	729	"ENSG00000039537"
+"209377_s_at"	"HMGN3"	9324	"ENSG00000118418"
+"207408_at"	"SLC22A14"	9389	"ENSG00000144671"
+"208775_at"	"XPO1"	7514	"ENSG00000082898"
+"207984_s_at"	"MPP2"	4355	"ENSG00000108852"
+"209793_at"	"GRIA1"	2890	"ENSG00000155511"
+"208417_at"	"FGF6"	2251	"ENSG00000111241"
+"210267_at"	"NIPAL3"	57185	"ENSG00000001461"
+"209402_s_at"	"SLC12A4"	6560	"ENSG00000124067"
+"209401_s_at"	"SLC12A4"	6560	"ENSG00000124067"
+"205778_at"	"KLK7"	5650	"ENSG00000169035"
+"207275_s_at"	"ACSL1"	2180	"ENSG00000151726"
+"209852_x_at"	"PSME3"	10197	"ENSG00000131467"
+"209853_s_at"	"PSME3"	10197	"ENSG00000131467"
+"207308_at"	"SLCO1A2"	6579	"ENSG00000084453"
+"207578_s_at"	"HTR4"	3360	"ENSG00000164270"
+"207577_at"	"HTR4"	3360	"ENSG00000164270"
+"209977_at"	"PLG"	5340	"ENSG00000122194"
+"206650_at"	"IQCC"	55721	"ENSG00000160051"
+"210241_s_at"	"TP53TG1"	NA	"ENSG00000182165"
+"209917_s_at"	"TP53TG1"	NA	"ENSG00000182165"
+"205771_s_at"	"AKAP7"	9465	"ENSG00000118507"
+"206737_at"	"WNT11"	7481	"ENSG00000085741"
+"205650_s_at"	"FGA"	2243	"ENSG00000171560"
+"205649_s_at"	"FGA"	2243	"ENSG00000171560"
+"210156_s_at"	"PCMT1"	5110	"ENSG00000120265"
+"208857_s_at"	"PCMT1"	5110	"ENSG00000120265"
+"206824_at"	"CES1P1"	51716	"ENSG00000291109"
+"208338_at"	"P2RX3"	5024	"ENSG00000109991"
+"207824_s_at"	"MAZ"	4150	"ENSG00000103495"
+"209276_s_at"	"GLRX"	2745	"ENSG00000173221"
+"206662_at"	"GLRX"	2745	"ENSG00000173221"
+"207112_s_at"	"GAB1"	2549	"ENSG00000109458"
+"207968_s_at"	"MEF2C"	4208	"ENSG00000081189"
+"209199_s_at"	"MEF2C"	4208	"ENSG00000081189"
+"209200_at"	"MEF2C"	4208	"ENSG00000081189"
+"209835_x_at"	"CD44"	960	"ENSG00000026508"
+"209123_at"	"QDPR"	5860	"ENSG00000151552"
+"206684_s_at"	"ATF7"	11016	"ENSG00000170653"
+"206854_s_at"	"MAP3K7"	6885	"ENSG00000135341"
+"206853_s_at"	"MAP3K7"	6885	"ENSG00000135341"
+"210200_at"	"WWP2"	11060	"ENSG00000198373"
+"207552_at"	"ATP5MC2"	517	"ENSG00000135390"
+"208764_s_at"	"ATP5MC2"	517	"ENSG00000135390"
+"210335_at"	"RASSF9"	9182	"ENSG00000198774"
+"206291_at"	"NTS"	4922	"ENSG00000133636"
+"208040_s_at"	"MYBPC3"	4607	"ENSG00000134571"
+"207447_s_at"	"MGAT4C"	25834	"ENSG00000182050"
+"209092_s_at"	"GLOD4"	51031	"ENSG00000167699"
+"208189_s_at"	"MYO7A"	4647	"ENSG00000137474"
+"205927_s_at"	"CTSE"	1510	"ENSG00000196188"
+"210013_at"	"HPX"	3263	"ENSG00000110169"
+"206023_at"	"NMU"	10874	"ENSG00000109255"
+"209284_s_at"	"TASOR"	23272	"ENSG00000163946"
+"209285_s_at"	"TASOR"	23272	"ENSG00000163946"
+"207452_s_at"	"CNTN5"	53942	"ENSG00000149972"
+"205740_s_at"	"RBM42"	79171	"ENSG00000126254"
+"205920_at"	"SLC6A6"	6533	"ENSG00000131389"
+"205921_s_at"	"SLC6A6"	6533	"ENSG00000131389"
+"209806_at"	""	NA	"ENSG00000290032"
+"207286_at"	"CEP135"	9662	"ENSG00000174799"
+"206003_at"	"CEP135"	9662	"ENSG00000174799"
+"209338_at"	"TFCP2"	7024	"ENSG00000135457"
+"207627_s_at"	"TFCP2"	7024	"ENSG00000135457"
+"206130_s_at"	"ASGR2"	433	"ENSG00000161944"
+"208640_at"	"RAC1"	5879	"ENSG00000136238"
+"207080_s_at"	"PYY"	5697	"ENSG00000131096"
+"209320_at"	"ADCY3"	109	"ENSG00000138031"
+"209321_s_at"	"ADCY3"	109	"ENSG00000138031"
+"206177_s_at"	"ARG1"	383	"ENSG00000118520"
+"205834_s_at"	"PART1"	25859	"ENSG00000152931"
+"208562_s_at"	"ABCC9"	10060	"ENSG00000069431"
+"208561_at"	"ABCC9"	10060	"ENSG00000069431"
+"208462_s_at"	"ABCC9"	10060	"ENSG00000069431"
+"208644_at"	"PARP1"	142	"ENSG00000143799"
+"210311_at"	"FGF5"	2250	"ENSG00000138675"
+"210310_s_at"	"FGF5"	2250	"ENSG00000138675"
+"208378_x_at"	"FGF5"	2250	"ENSG00000138675"
+"209580_s_at"	"MBD4"	8930	"ENSG00000129071"
+"209579_s_at"	"MBD4"	8930	"ENSG00000129071"
+"207992_s_at"	"AMPD3"	272	"ENSG00000133805"
+"209491_s_at"	"AMPD3"	272	"ENSG00000133805"
+"206312_at"	"GUCY2C"	2984	"ENSG00000070019"
+"206455_s_at"	"RHO"	6010	"ENSG00000163914"
+"206454_s_at"	"RHO"	6010	"ENSG00000163914"
+"207220_at"	"ART4"	420	"ENSG00000111339"
+"205848_at"	"GAS2"	2620	"ENSG00000148935"
+"206723_s_at"	"LPAR2"	9170	"ENSG00000064547"
+"206722_s_at"	"LPAR2"	9170	"ENSG00000064547"
+"208680_at"	"PRDX1"	5052	"ENSG00000117450"
+"206841_at"	"PDE6H"	5149	"ENSG00000139053"
+"207728_at"	"ATF7IP"	55729	"ENSG00000171681"
+"209661_at"	"KIFC3"	3801	"ENSG00000140859"
+"209549_s_at"	"DGUOK"	1716	"ENSG00000114956"
+"207762_at"	"LPAL2"	80350	"ENSG00000290613"
+"207429_at"	"SLC22A2"	6582	"ENSG00000112499"
+"207584_at"	"LPA"	4018	"ENSG00000198670"
+"206357_at"	"OPA3"	80207	"ENSG00000125741"
+"206236_at"	"GPR4"	2828	"ENSG00000177464"
+"207151_at"	"ADCYAP1R1"	117	"ENSG00000078549"
+"208425_s_at"	"TANC2"	26115	"ENSG00000170921"
+"206310_at"	"SPINK2"	6691	"ENSG00000128040"
+"207904_s_at"	"LNPEP"	4012	"ENSG00000113441"
+"207187_at"	"JAK3"	3718	"ENSG00000105639"
+"207088_s_at"	"SLC25A11"	8402	"ENSG00000108528"
+"209003_at"	"SLC25A11"	8402	"ENSG00000108528"
+"210181_s_at"	"CABP1"	9478	"ENSG00000157782"
+"208320_at"	"CABP1"	9478	"ENSG00000157782"
+"208321_s_at"	"CABP1"	9478	"ENSG00000157782"
+"207651_at"	"GPR171"	29909	"ENSG00000174946"
+"206637_at"	"P2RY14"	9934	"ENSG00000174944"
+"209322_s_at"	"SH2B1"	25970	"ENSG00000178188"
+"207058_s_at"	"PRKN"	5071	"ENSG00000185345"
+"206810_at"	"ZNF44"	51710	"ENSG00000197857"
+"210180_s_at"	"TRA2B"	6434	"ENSG00000136527"
+"209702_at"	"FTO"	79068	"ENSG00000140718"
+"206506_s_at"	"SUPT3H"	8464	"ENSG00000196284"
+"206392_s_at"	"RARRES1"	5918	"ENSG00000118849"
+"206391_at"	"RARRES1"	5918	"ENSG00000118849"
+"209895_at"	"PTPN11"	5781	"ENSG00000179295"
+"205867_at"	"PTPN11"	5781	"ENSG00000179295"
+"209896_s_at"	"PTPN11"	5781	"ENSG00000179295"
+"205868_s_at"	"PTPN11"	5781	"ENSG00000179295"
+"208570_at"	"WNT1"	7471	"ENSG00000125084"
+"208070_s_at"	"REV3L"	5980	"ENSG00000009413"
+"209244_s_at"	"KIF1C"	10749	"ENSG00000129250"
+"209245_s_at"	"KIF1C"	10749	"ENSG00000129250"
+"208426_x_at"	"KIR2DL4"	3805	"ENSG00000189013"
+"206405_x_at"	"USP6"	9098	"ENSG00000129204"
+"209251_x_at"	"TUBA1C"	84790	"ENSG00000167553"
+"207310_s_at"	"NOS1"	4842	"ENSG00000089250"
+"207309_at"	"NOS1"	4842	"ENSG00000089250"
+"208809_s_at"	"C6orf62"	81688	"ENSG00000112308"
+"206618_at"	"IL18R1"	8809	"ENSG00000115604"
+"209157_at"	"DNAJA2"	10294	"ENSG00000069345"
+"205819_at"	"MARCO"	8685	"ENSG00000019169"
+"208980_s_at"	"UBC"	7316	"ENSG00000150991"
+"206086_x_at"	"HFE"	3077	"ENSG00000010704"
+"206087_x_at"	"HFE"	3077	"ENSG00000010704"
+"208442_s_at"	"ATM"	472	"ENSG00000149311"
+"208075_s_at"	"CCL7"	6354	"ENSG00000108688"
+"210133_at"	"CCL11"	6356	"ENSG00000172156"
+"206407_s_at"	"CCL13"	6357	"ENSG00000181374"
+"209025_s_at"	"SYNCRIP"	10492	"ENSG00000135316"
+"207533_at"	"CCL1"	6346	"ENSG00000108702"
+"209876_at"	"GIT2"	9815	"ENSG00000139436"
+"206931_at"	"ZNF141"	7700	"ENSG00000131127"
+"207459_x_at"	"GYPB"	2994	"ENSG00000250361"
+"206505_at"	"UGT2B4"	7363	"ENSG00000156096"
+"206044_s_at"	"BRAF"	673	"ENSG00000157764"
+"208244_at"	"BMP3"	651	"ENSG00000152785"
+"207505_at"	"PRKG2"	5593	"ENSG00000138669"
+"207321_s_at"	"ABCB9"	23457	"ENSG00000150967"
+"206982_at"	"CRYBA1"	1411	"ENSG00000108255"
+"209950_s_at"	"VILL"	50853	"ENSG00000136059"
+"207050_at"	"CACNA2D1"	781	"ENSG00000153956"
+"210088_x_at"	"MYL4"	4635	"ENSG00000198336"
+"210395_x_at"	"MYL4"	4635	"ENSG00000198336"
+"208787_at"	"MRPL3"	11222	"ENSG00000114686"
+"209589_s_at"	"EPHB2"	2048	"ENSG00000133216"
+"209588_at"	"EPHB2"	2048	"ENSG00000133216"
+"206189_at"	"UNC5C"	8633	"ENSG00000182168"
+"205525_at"	"CALD1"	800	"ENSG00000122786"
+"208716_s_at"	"TMCO1"	54499	"ENSG00000143183"
+"208715_at"	"TMCO1"	54499	"ENSG00000143183"
+"208610_s_at"	"SRRM2"	23524	"ENSG00000167978"
+"207435_s_at"	"SRRM2"	23524	"ENSG00000167978"
+"208848_at"	"ADH5"	128	"ENSG00000197894"
+"208847_s_at"	"ADH5"	128	"ENSG00000197894"
+"208190_s_at"	"LSR"	51599	"ENSG00000105699"
+"208136_s_at"	"ZNF213-AS1"	NA	"ENSG00000263072"
+"205730_s_at"	"ABLIM3"	22885	"ENSG00000173210"
+"207544_s_at"	"ADH6"	130	"ENSG00000172955"
+"205884_at"	"ITGA4"	3676	"ENSG00000115232"
+"205885_s_at"	"ITGA4"	3676	"ENSG00000115232"
+"207820_at"	"ADH1A"	124	"ENSG00000187758"
+"206198_s_at"	"CEACAM7"	1087	"ENSG00000007306"
+"209614_at"	"ADH1B"	125	"ENSG00000196616"
+"209613_s_at"	"ADH1B"	125	"ENSG00000196616"
+"209612_s_at"	"ADH1B"	125	"ENSG00000196616"
+"209264_s_at"	"TSPAN4"	7106	"ENSG00000214063"
+"209263_x_at"	"TSPAN4"	7106	"ENSG00000214063"
+"206262_at"	"ADH1C"	126	"ENSG00000248144"
+"210037_s_at"	"NOS2"	4843	"ENSG00000007171"
+"208052_x_at"	"CEACAM3"	1084	"ENSG00000170956"
+"205747_at"	"CBLN1"	869	"ENSG00000102924"
+"207789_s_at"	"DPP6"	1804	"ENSG00000130226"
+"206877_at"	"MXD1"	4084	"ENSG00000059728"
+"208620_at"	"PCBP1"	5093	"ENSG00000169564"
+"209055_s_at"	"CDC5L"	988	"ENSG00000096401"
+"209056_s_at"	"CDC5L"	988	"ENSG00000096401"
+"209057_x_at"	"CDC5L"	988	"ENSG00000096401"
+"208096_s_at"	"COL21A1"	81578	"ENSG00000124749"
+"205995_x_at"	"IQCB1"	9657	"ENSG00000173226"
+"208153_s_at"	"FAT2"	2196	"ENSG00000086570"
+"206005_s_at"	"CEP162"	22832	"ENSG00000135315"
+"206006_s_at"	"CEP162"	22832	"ENSG00000135315"
+"208796_s_at"	"CCNG1"	900	"ENSG00000113328"
+"209831_x_at"	"DNASE2"	1777	"ENSG00000105612"
+"207263_x_at"	"VEZT"	55591	"ENSG00000028203"
+"209034_at"	"PNRC1"	10957	"ENSG00000146278"
+"206525_at"	"GABRR1"	2569	"ENSG00000146276"
+"207926_at"	"GP5"	2814	"ENSG00000178732"
+"208217_at"	"GABRR2"	2570	"ENSG00000111886"
+"208928_at"	"POR"	5447	"ENSG00000127948"
+"207504_at"	"CA7"	766	"ENSG00000168748"
+"210135_s_at"	"SHOX2"	6474	"ENSG00000168779"
+"208443_x_at"	"SHOX2"	6474	"ENSG00000168779"
+"210134_x_at"	"SHOX2"	6474	"ENSG00000168779"
+"210372_s_at"	"TPD52L1"	7164	"ENSG00000111907"
+"210448_s_at"	"P2RX5"	5026	"ENSG00000083454"
+"205729_at"	"OSMR"	9180	"ENSG00000145623"
+"209780_at"	"PHTF2"	57157	"ENSG00000006576"
+"209794_at"	"SRGAP3"	9901	"ENSG00000196220"
+"209357_at"	"CITED2"	10370	"ENSG00000164442"
+"207980_s_at"	"CITED2"	10370	"ENSG00000164442"
+"207398_at"	"HOXD13"	3239	"ENSG00000128714"
+"207397_s_at"	"HOXD13"	3239	"ENSG00000128714"
+"207373_at"	"HOXD10"	3236	"ENSG00000128710"
+"205604_at"	"HOXD9"	3235	"ENSG00000128709"
+"207213_s_at"	"USP2"	9099	"ENSG00000036672"
+"205975_s_at"	"HOXD1"	3231	"ENSG00000128645"
+"206601_s_at"	"HOXD3"	3232	"ENSG00000128652"
+"206602_s_at"	"HOXD3"	3232	"ENSG00000128652"
+"206359_at"	"SOCS3"	9021	"ENSG00000184557"
+"206360_s_at"	"SOCS3"	9021	"ENSG00000184557"
+"208850_s_at"	"THY1"	7070	"ENSG00000154096"
+"208851_s_at"	"THY1"	7070	"ENSG00000154096"
+"208438_s_at"	"FGR"	2268	"ENSG00000000938"
+"205734_s_at"	"AFF3"	3899	"ENSG00000144218"
+"205735_s_at"	"AFF3"	3899	"ENSG00000144218"
+"208712_at"	"CCND1"	595	"ENSG00000110092"
+"208711_s_at"	"CCND1"	595	"ENSG00000110092"
+"207790_at"	"LRRC1"	55227	"ENSG00000137269"
+"206783_at"	"FGF4"	2249	"ENSG00000075388"
+"206126_at"	"CXCR5"	643	"ENSG00000160683"
+"206636_at"	"RASA2"	5922	"ENSG00000155903"
+"207862_at"	"UPK2"	7379	"ENSG00000110375"
+"207486_x_at"	"CHN2"	1124	"ENSG00000106069"
+"205878_at"	"POU6F1"	5463	"ENSG00000184271"
+"206840_at"	"AFM"	173	"ENSG00000079557"
+"208411_x_at"	"PPEF2"	5470	"ENSG00000156194"
+"209094_at"	"DDAH1"	23576	"ENSG00000153904"
+"205546_s_at"	"TYK2"	7297	"ENSG00000105397"
+"206806_at"	"DGKI"	9162	"ENSG00000157680"
+"206814_at"	"NGF"	4803	"ENSG00000134259"
+"206945_at"	"LCT"	3938	"ENSG00000115850"
+"205483_s_at"	"ISG15"	9636	"ENSG00000187608"
+"207628_s_at"	"BUD23"	114049	"ENSG00000071462"
+"206293_at"	"SULT2A1"	6822	"ENSG00000105398"
+"206292_s_at"	"SULT2A1"	6822	"ENSG00000105398"
+"206610_s_at"	"F11"	2160	"ENSG00000088926"
+"205615_at"	"CPA1"	1357	"ENSG00000091704"
+"205938_at"	"PPM1E"	22843	"ENSG00000175175"
+"209760_at"	"TMEM131L"	23240	"ENSG00000121210"
+"210204_s_at"	"CNOT4"	4850	"ENSG00000080802"
+"210203_at"	"CNOT4"	4850	"ENSG00000080802"
+"206066_s_at"	"RAD51C"	5889	"ENSG00000108384"
+"209849_s_at"	"RAD51C"	5889	"ENSG00000108384"
+"209489_at"	"CELF1"	10658	"ENSG00000149187"
+"210049_at"	"SERPINC1"	462	"ENSG00000117601"
+"208700_s_at"	"TKT"	7086	"ENSG00000163931"
+"208699_x_at"	"TKT"	7086	"ENSG00000163931"
+"209785_s_at"	"PLA2G4C"	8605	"ENSG00000105499"
+"210356_x_at"	"MS4A1"	931	"ENSG00000156738"
+"208063_s_at"	"CAPN9"	10753	"ENSG00000135773"
+"210006_at"	"ABHD14A"	25864	"ENSG00000248487"
+"206152_at"	"AGAP2"	116986	"ENSG00000135439"
+"206718_at"	"LMO1"	4004	"ENSG00000166407"
+"207863_at"	"ADPRH"	141	"ENSG00000144843"
+"209302_at"	"POLR2H"	5437	"ENSG00000163882"
+"205720_at"	"POMC"	5443	"ENSG00000115138"
+"205659_at"	"HDAC9"	9734	"ENSG00000048052"
+"205646_s_at"	"PAX6"	5080	"ENSG00000007372"
+"207659_s_at"	"MOBP"	4336	"ENSG00000168314"
+"210193_at"	"MOBP"	4336	"ENSG00000168314"
+"207770_x_at"	"CSH2"	1443	"ENSG00000213218"
+"206195_x_at"	"GH2"	2689	"ENSG00000136487"
+"208130_s_at"	"TBXAS1"	6916	"ENSG00000059377"
+"207754_at"	"RASSF8"	11228	"ENSG00000123094"
+"206381_at"	"SCN2A"	6326	"ENSG00000136531"
+"205539_at"	"AVIL"	10677	"ENSG00000135407"
+"209181_s_at"	"RABGGTB"	5876	"ENSG00000137955"
+"209180_at"	"RABGGTB"	5876	"ENSG00000137955"
+"206699_x_at"	"NPAS1"	4861	"ENSG00000130751"
+"209795_at"	"CD69"	969	"ENSG00000110848"
+"209732_at"	"CLEC2B"	9976	"ENSG00000110852"
+"210404_x_at"	"CAMK2B"	816	"ENSG00000058404"
+"209956_s_at"	"CAMK2B"	816	"ENSG00000058404"
+"206257_at"	"CCDC9"	26093	"ENSG00000105321"
+"208710_s_at"	"AP3D1"	8943	"ENSG00000065000"
+"206592_s_at"	"AP3D1"	8943	"ENSG00000065000"
+"207550_at"	"MPL"	4352	"ENSG00000117400"
+"206282_at"	"NEUROD1"	4760	"ENSG00000162992"
+"207567_at"	"SLC13A2"	9058	"ENSG00000007216"
+"209380_s_at"	"ABCC5"	10057	"ENSG00000114770"
+"207683_at"	"FOXN1"	8456	"ENSG00000109101"
+"206772_at"	"PTH2R"	5746	"ENSG00000144407"
+"207740_s_at"	"NUP62"	23636	"ENSG00000213024"
+"206362_x_at"	"MAP3K10"	4294	"ENSG00000130758"
+"207867_at"	"PAX4"	5078	"ENSG00000106331"
+"208942_s_at"	"SEC62"	7095	"ENSG00000008952"
+"208943_s_at"	"SEC62"	7095	"ENSG00000008952"
+"205839_s_at"	"TSPOAP1"	9256	"ENSG00000005379"
+"208465_at"	"GRM2"	2912	"ENSG00000164082"
+"209015_s_at"	"DNAJB6"	10049	"ENSG00000105993"
+"210249_s_at"	"NCOA1"	8648	"ENSG00000084676"
+"209106_at"	"NCOA1"	8648	"ENSG00000084676"
+"209105_at"	"NCOA1"	8648	"ENSG00000084676"
+"209107_x_at"	"NCOA1"	8648	"ENSG00000084676"
+"208114_s_at"	"ISG20L2"	81875	"ENSG00000143319"
+"206259_at"	"PROC"	5624	"ENSG00000115718"
+"209481_at"	"SNRK"	54861	"ENSG00000163788"
+"207474_at"	"SNRK"	54861	"ENSG00000163788"
+"205580_s_at"	"HRH1"	3269	"ENSG00000196639"
+"205579_at"	"HRH1"	3269	"ENSG00000196639"
+"208938_at"	"PRCC"	5546	"ENSG00000143294"
+"207351_s_at"	"SH2D2A"	9047	"ENSG00000027869"
+"208924_at"	"RNF11"	26994	"ENSG00000123091"
+"210113_s_at"	"NLRP1"	22861	"ENSG00000091592"
+"206557_at"	"ZNF702P"	79986	"ENSG00000242779"
+"209737_at"	"MAGI2"	9863	"ENSG00000187391"
+"207702_s_at"	"MAGI2"	9863	"ENSG00000187391"
+"207573_x_at"	"ATP5MG"	10632	"ENSG00000167283"
+"208745_at"	"ATP5MG"	10632	"ENSG00000167283"
+"206190_at"	"GPR17"	2840	"ENSG00000144230"
+"208530_s_at"	"RARB"	5915	"ENSG00000077092"
+"208413_at"	"RARB"	5915	"ENSG00000077092"
+"208412_s_at"	"RARB"	5915	"ENSG00000077092"
+"208626_s_at"	"VAT1"	10493	"ENSG00000108828"
+"205598_at"	"TRAIP"	10293	"ENSG00000183763"
+"206598_at"	"INS"	3630	"ENSG00000254647"
+"208291_s_at"	"TH"	7054	"ENSG00000180176"
+"209551_at"	"YIPF4"	84272	"ENSG00000119820"
+"207607_at"	"ASCL2"	430	"ENSG00000183734"
+"206787_at"	"BRDT"	676	"ENSG00000137948"
+"207344_at"	"AKAP3"	10566	"ENSG00000111254"
+"208969_at"	"NDUFA9"	4704	"ENSG00000139180"
+"205616_at"	"GALNT8"	26290	"ENSG00000130035"
+"208479_at"	"KCNA1"	3736	"ENSG00000111262"
+"206869_at"	"CHAD"	1101	"ENSG00000136457"
+"208256_at"	"EFNA2"	1943	"ENSG00000099617"
+"208072_s_at"	"DGKD"	8527	"ENSG00000077044"
+"207761_s_at"	"METTL7A"	25840	"ENSG00000185432"
+"209703_x_at"	"METTL7A"	25840	"ENSG00000185432"
+"210380_s_at"	"CACNA1G"	8913	"ENSG00000006283"
+"207869_s_at"	"CACNA1G"	8913	"ENSG00000006283"
+"209936_at"	"RBM5"	10181	"ENSG00000003756"
+"206804_at"	"CD3G"	917	"ENSG00000160654"
+"206011_at"	"CASP1"	834	"ENSG00000137752"
+"209970_x_at"	"CASP1"	834	"ENSG00000137752"
+"206523_at"	"CYTH3"	9265	"ENSG00000008256"
+"206501_x_at"	"ETV1"	2115	"ENSG00000006468"
+"205685_at"	"CD86"	942	"ENSG00000114013"
+"205686_s_at"	"CD86"	942	"ENSG00000114013"
+"209705_at"	"MTF2"	22823	"ENSG00000143033"
+"209704_at"	"MTF2"	22823	"ENSG00000143033"
+"209906_at"	"C3AR1"	719	"ENSG00000171860"
+"209300_s_at"	"NECAP1"	25977	"ENSG00000089818"
+"206900_x_at"	"ZNF253"	56242	"ENSG00000256771"
+"207090_x_at"	"ZFP30"	22835	"ENSG00000120784"
+"207895_at"	"NAALADL1"	10004	"ENSG00000168060"
+"208198_x_at"	"KIR2DS4"	3809	"ENSG00000221957"
+"209428_s_at"	"ZFPL1"	7542	"ENSG00000162300"
+"208762_at"	"SUMO1"	7341	"ENSG00000116030"
+"210130_s_at"	"TM7SF2"	7108	"ENSG00000149809"
+"207402_at"	"ZNF132"	7691	"ENSG00000131849"
+"205765_at"	"CYP3A5"	1577	"ENSG00000106258"
+"209920_at"	"BMPR2"	659	"ENSG00000204217"
+"210214_s_at"	"BMPR2"	659	"ENSG00000204217"
+"209309_at"	"AZGP1"	563	"ENSG00000160862"
+"209313_at"	"GPN1"	11321	"ENSG00000198522"
+"206144_at"	"MAGI1"	9223	"ENSG00000151276"
+"209016_s_at"	"KRT7"	3855	"ENSG00000135480"
+"208544_at"	"ADRA2B"	151	"ENSG00000274286"
+"207669_at"	"KRT83"	3889	"ENSG00000170523"
+"207670_at"	"KRT85"	3891	"ENSG00000135443"
+"207065_at"	"KRT75"	9119	"ENSG00000170454"
+"209125_at"	"KRT6A"	3853	"ENSG00000205420"
+"207604_s_at"	"SLC4A7"	9497	"ENSG00000033867"
+"210286_s_at"	"SLC4A7"	9497	"ENSG00000033867"
+"209884_s_at"	"SLC4A7"	9497	"ENSG00000033867"
+"205713_s_at"	"COMP"	1311	"ENSG00000105664"
+"208947_s_at"	"UPF1"	5976	"ENSG00000005007"
+"206570_s_at"	"PSG11"	5680	"ENSG00000243130"
+"208134_x_at"	"PSG2"	5670	"ENSG00000242221"
+"208257_x_at"	"PSG1"	5669	"ENSG00000231924"
+"210195_s_at"	"PSG1"	5669	"ENSG00000231924"
+"210196_s_at"	"PSG1"	5669	"ENSG00000231924"
+"209158_s_at"	"CYTH2"	9266	"ENSG00000105443"
+"209153_s_at"	"TCF3"	6929	"ENSG00000071564"
+"209151_x_at"	"TCF3"	6929	"ENSG00000071564"
+"209152_s_at"	"TCF3"	6929	"ENSG00000071564"
+"209044_x_at"	"SF3B4"	10262	"ENSG00000143368"
+"209420_s_at"	"SMPD1"	6609	"ENSG00000166311"
+"209344_at"	"TPM4"	7171	"ENSG00000167460"
+"209893_s_at"	"FUT4"	2526	"ENSG00000196371"
+"209892_at"	"FUT4"	2526	"ENSG00000196371"
+"206991_s_at"	"CCR5"	1234	"ENSG00000160791"
+"206554_x_at"	"SETMAR"	6419	"ENSG00000170364"
+"208819_at"	"RAB8A"	4218	"ENSG00000167461"
+"207643_s_at"	"TNFRSF1A"	7132	"ENSG00000067182"
+"208455_at"	"NECTIN1"	5818	"ENSG00000110400"
+"208485_x_at"	"CFLAR"	8837	"ENSG00000003402"
+"209508_x_at"	"CFLAR"	8837	"ENSG00000003402"
+"209939_x_at"	"CFLAR"	8837	"ENSG00000003402"
+"206038_s_at"	"NR2C2"	7182	"ENSG00000177463"
+"206012_at"	"LEFTY2"	7044	"ENSG00000143768"
+"207092_at"	"LEP"	3952	"ENSG00000174697"
+"206207_at"	"CLC"	1178	"ENSG00000105205"
+"207541_s_at"	"EXOSC10"	5394	"ENSG00000171824"
+"205558_at"	"TRAF6"	7189	"ENSG00000175104"
+"206591_at"	"RAG1"	5896	"ENSG00000166349"
+"209007_s_at"	"RSRP1"	57035	"ENSG00000117616"
+"209006_s_at"	"RSRP1"	57035	"ENSG00000117616"
+"205567_at"	"CHST1"	8534	"ENSG00000175264"
+"209566_at"	"INSIG2"	51141	"ENSG00000125629"
+"210429_at"	"RHD"	6007	"ENSG00000187010"
+"207236_at"	"ZNF345"	25850	"ENSG00000251247"
+"207636_at"	"SERPINI2"	5276	"ENSG00000114204"
+"209389_x_at"	"DBI"	1622	"ENSG00000155368"
+"208747_s_at"	"C1S"	716	"ENSG00000182326"
+"209343_at"	"EFHD1"	80303	"ENSG00000115468"
+"207066_at"	"HRC"	3270	"ENSG00000130528"
+"206745_at"	"HOXC11"	3227	"ENSG00000123388"
+"206708_at"	"FOXN2"	3344	"ENSG00000170802"
+"206858_s_at"	"HOXC6"	3223	"ENSG00000197757"
+"205952_at"	"KCNK3"	3777	"ENSG00000171303"
+"209878_s_at"	"RELA"	5970	"ENSG00000173039"
+"209915_s_at"	"NRXN1"	9378	"ENSG00000179915"
+"209914_s_at"	"NRXN1"	9378	"ENSG00000179915"
+"207116_s_at"	"GAPDHS"	26330	"ENSG00000105679"
+"207139_at"	"ATP4A"	495	"ENSG00000105675"
+"205854_at"	"TULP3"	7289	"ENSG00000078246"
+"205640_at"	"ALDH3B1"	221	"ENSG00000006534"
+"205665_at"	"TSPAN9"	10867	"ENSG00000011105"
+"207772_s_at"	"PRMT8"	56341	"ENSG00000111218"
+"209468_at"	"LRP5"	4041	"ENSG00000162337"
+"208248_x_at"	"APLP2"	334	"ENSG00000084234"
+"208704_x_at"	"APLP2"	334	"ENSG00000084234"
+"208703_s_at"	"APLP2"	334	"ENSG00000084234"
+"208702_x_at"	"APLP2"	334	"ENSG00000084234"
+"208615_s_at"	"PTP4A2"	8073	"ENSG00000184007"
+"208617_s_at"	"PTP4A2"	8073	"ENSG00000184007"
+"208616_s_at"	"PTP4A2"	8073	"ENSG00000184007"
+"208446_s_at"	"ZFYVE9"	9372	"ENSG00000157077"
+"205660_at"	"OASL"	8638	"ENSG00000135114"
+"206906_at"	"ICAM5"	7087	"ENSG00000105376"
+"209955_s_at"	"FAP"	2191	"ENSG00000078098"
+"206713_at"	"NTNG1"	22854	"ENSG00000162631"
+"206733_at"	"TULP2"	7288	"ENSG00000104804"
+"207374_at"	"PLSCR2"	57047	"ENSG00000163746"
+"210016_at"	"MYT1L"	23040	"ENSG00000186487"
+"210173_at"	"PTPRJ"	5795	"ENSG00000149177"
+"206902_s_at"	"EXOG"	9941	"ENSG00000157036"
+"205521_at"	"EXOG"	9941	"ENSG00000157036"
+"206903_at"	"EXOG"	9941	"ENSG00000157036"
+"209413_at"	"B4GALT2"	8704	"ENSG00000117411"
+"208195_at"	"TTN"	7273	"ENSG00000155657"
+"207055_at"	"GPR37L1"	9283	"ENSG00000170075"
+"208930_s_at"	"ILF3"	3609	"ENSG00000129351"
+"208931_s_at"	"ILF3"	3609	"ENSG00000129351"
+"206817_x_at"	"CELF3"	11189	"ENSG00000159409"
+"209609_s_at"	"MRPL9"	65005	"ENSG00000143436"
+"208059_at"	"CCR8"	1237	"ENSG00000179934"
+"205898_at"	"CX3CR1"	1524	"ENSG00000168329"
+"209556_at"	"NCDN"	23154	"ENSG00000020129"
+"209557_s_at"	"NCDN"	23154	"ENSG00000020129"
+"206607_at"	"CBL"	867	"ENSG00000110395"
+"206191_at"	"ENTPD3"	956	"ENSG00000168032"
+"208916_at"	"SLC1A5"	6510	"ENSG00000105281"
+"210354_at"	"IFNG"	3458	"ENSG00000111537"
+"208074_s_at"	"AP2S1"	1175	"ENSG00000042753"
+"206194_at"	"HOXC4"	3221	"ENSG00000198353"
+"206970_at"	"CNTN2"	6900	"ENSG00000184144"
+"208910_s_at"	"C1QBP"	708	"ENSG00000108561"
+"205676_at"	"CYP27B1"	1594	"ENSG00000111012"
+"207049_at"	"SCN8A"	6334	"ENSG00000196876"
+"206058_at"	"SLC6A12"	6539	"ENSG00000111181"
+"206977_at"	"PTH"	5741	"ENSG00000152266"
+"207304_at"	"ZNF45"	7596	"ENSG00000124459"
+"207184_at"	"SLC6A13"	6540	"ENSG00000010379"
+"208119_s_at"	"ZNF93"	81931	"ENSG00000184635"
+"206186_at"	"MPP3"	4356	"ENSG00000161647"
+"206948_at"	"NEU3"	10825	"ENSG00000162139"
+"207336_at"	"SOX5"	6660	"ENSG00000134532"
+"207153_s_at"	"GLMN"	11146	"ENSG00000174842"
+"205827_at"	"CCK"	885	"ENSG00000187094"
+"206942_s_at"	"PMCH"	5367	"ENSG00000183395"
+"209540_at"	"IGF1"	3479	"ENSG00000017427"
+"209542_x_at"	"IGF1"	3479	"ENSG00000017427"
+"209541_at"	"IGF1"	3479	"ENSG00000017427"
+"210155_at"	"MYOC"	4653	"ENSG00000034971"
+"208457_at"	"GABRD"	2563	"ENSG00000187730"
+"207035_at"	"SLC30A3"	7781	"ENSG00000115194"
+"208806_at"	"CHD3"	1107	"ENSG00000170004"
+"208807_s_at"	"CHD3"	1107	"ENSG00000170004"
+"206072_at"	"UCN"	7349	"ENSG00000163794"
+"205742_at"	"TNNI3"	7137	"ENSG00000129991"
+"206297_at"	"CTRC"	11330	"ENSG00000162438"
+"206950_at"	"SCN9A"	6335	"ENSG00000169432"
+"206162_x_at"	"SYT5"	6861	"ENSG00000129990"
+"206161_s_at"	"SYT5"	6861	"ENSG00000129990"
+"208300_at"	"PTPRH"	5794	"ENSG00000080031"
+"206937_at"	"SPTA1"	6708	"ENSG00000163554"
+"205797_s_at"	"TCP11L1"	55346	"ENSG00000176148"
+"205796_at"	"TCP11L1"	55346	"ENSG00000176148"
+"209281_s_at"	"ATP2B1"	490	"ENSG00000070961"
+"210148_at"	"HIPK3"	10114	"ENSG00000110422"
+"207764_s_at"	"HIPK3"	10114	"ENSG00000110422"
+"207111_at"	"ADGRE1"	2015	"ENSG00000174837"
+"210085_s_at"	"ANXA9"	8416	"ENSG00000143412"
+"209599_s_at"	"PRUNE1"	58497	"ENSG00000143363"
+"208159_x_at"	"DDX11"	1663	"ENSG00000013573"
+"206622_at"	"TRH"	7200	"ENSG00000170893"
+"205802_at"	"TRPC1"	7220	"ENSG00000144935"
+"205803_s_at"	"TRPC1"	7220	"ENSG00000144935"
+"209983_s_at"	"NRXN2"	9379	"ENSG00000110076"
+"209982_s_at"	"NRXN2"	9379	"ENSG00000110076"
+"207864_at"	"SCN7A"	6332	"ENSG00000136546"
+"207332_s_at"	"TFRC"	7037	"ENSG00000072274"
+"208691_at"	"TFRC"	7037	"ENSG00000072274"
+"209503_s_at"	"PSMC5"	5705	"ENSG00000087191"
+"207346_at"	"STX2"	2054	"ENSG00000111450"
+"206648_at"	"ZNF571"	51276	"ENSG00000180479"
+"206311_s_at"	"PLA2G1B"	5319	"ENSG00000170890"
+"206333_at"	"MSI1"	4440	"ENSG00000135097"
+"210381_s_at"	"CCKBR"	887	"ENSG00000110148"
+"208505_s_at"	"FUT2"	2524	"ENSG00000176920"
+"209663_s_at"	"ITGA7"	3679	"ENSG00000135424"
+"205917_at"	"ZNF264"	9422	"ENSG00000083844"
+"207753_at"	"ZNF304"	57343	"ENSG00000131845"
+"207786_at"	"CYP2R1"	120227	"ENSG00000186104"
+"207094_at"	"CXCR1"	3577	"ENSG00000163464"
+"207988_s_at"	"ARPC2"	10109	"ENSG00000163466"
+"208679_s_at"	"ARPC2"	10109	"ENSG00000163466"
+"210151_s_at"	"DYRK3"	8444	"ENSG00000143479"
+"208794_s_at"	"SMARCA4"	6597	"ENSG00000127616"
+"206928_at"	"ZNF124"	7678	"ENSG00000196418"
+"207760_s_at"	"NCOR2"	9612	"ENSG00000196498"
+"208888_s_at"	"NCOR2"	9612	"ENSG00000196498"
+"208889_s_at"	"NCOR2"	9612	"ENSG00000196498"
+"210422_x_at"	"SLC11A1"	6556	"ENSG00000018280"
+"210423_s_at"	"SLC11A1"	6556	"ENSG00000018280"
+"205506_at"	"VIL1"	7429	"ENSG00000127831"
+"208606_s_at"	"WNT4"	54361	"ENSG00000162552"
+"206967_at"	"CCNT1"	904	"ENSG00000129315"
+"206253_at"	"DLG2"	1740	"ENSG00000150672"
+"208260_at"	"AVPR1B"	553	"ENSG00000198049"
+"206741_at"	"SSUH2"	51066	"ENSG00000125046"
+"208204_s_at"	"CAV3"	859	"ENSG00000182533"
+"206825_at"	"OXTR"	5021	"ENSG00000180914"
+"205531_s_at"	"GLS2"	27165	"ENSG00000135423"
+"206274_s_at"	"CROCC"	9696	"ENSG00000058453"
+"207022_s_at"	"LDHC"	3948	"ENSG00000166796"
+"209810_at"	"SFTPB"	6439	"ENSG00000168878"
+"205495_s_at"	"GNLY"	10578	"ENSG00000115523"
+"206121_at"	"AMPD1"	270	"ENSG00000116748"
+"209393_s_at"	"EIF4E2"	9470	"ENSG00000135930"
+"207167_at"	"CD101"	9398	"ENSG00000134256"
+"206499_s_at"	"RCC1"	1104	"ENSG00000180198"
+"208224_at"	"HOXB1"	3211	"ENSG00000120094"
+"208414_s_at"	"HOXB3"	3213	"ENSG00000120093"
+"205600_x_at"	"HOXB5"	3215	"ENSG00000120075"
+"205601_s_at"	"HOXB5"	3215	"ENSG00000120075"
+"205891_at"	"ADORA2B"	136	"ENSG00000170425"
+"208313_s_at"	"SF1"	7536	"ENSG00000168066"
+"210172_at"	"SF1"	7536	"ENSG00000168066"
+"205801_s_at"	"RASGRP3"	25780	"ENSG00000152689"
+"206027_at"	"S100A3"	6274	"ENSG00000188015"
+"207748_at"	"DUTP1"	NA	"ENSG00000229048"
+"208389_s_at"	"SLC1A2"	6506	"ENSG00000110436"
+"207072_at"	"IL18RAP"	8807	"ENSG00000115607"
+"209600_s_at"	"ACOX1"	51	"ENSG00000161533"
+"207566_at"	"MR1"	3140	"ENSG00000153029"
+"207565_s_at"	"MR1"	3140	"ENSG00000153029"
+"210224_at"	"MR1"	3140	"ENSG00000153029"
+"210223_s_at"	"MR1"	3140	"ENSG00000153029"
+"207160_at"	"IL12A"	3592	"ENSG00000168811"
+"210400_at"	"GRIN2C"	2905	"ENSG00000161509"
+"206406_at"	"SMCP"	4184	"ENSG00000163206"
+"210108_at"	"CACNA1D"	776	"ENSG00000157388"
+"207998_s_at"	"CACNA1D"	776	"ENSG00000157388"
+"210252_s_at"	"MADD"	8567	"ENSG00000110514"
+"206672_at"	"AQP2"	359	"ENSG00000167580"
+"208435_s_at"	"AQP6"	363	"ENSG00000086159"
+"209518_at"	"SMARCD1"	6602	"ENSG00000066117"
+"206496_at"	"FMO3"	2328	"ENSG00000007933"
+"207838_x_at"	"PBXIP1"	57326	"ENSG00000163346"
+"205657_at"	"HAAO"	23498	"ENSG00000162882"
+"206996_x_at"	"CACNB1"	782	"ENSG00000067191"
+"210185_at"	"CACNB1"	782	"ENSG00000067191"
+"206024_at"	"HPD"	3242	"ENSG00000158104"
+"209334_s_at"	"PSMD9"	5715	"ENSG00000110801"
+"205661_s_at"	"FLAD1"	80308	"ENSG00000160688"
+"205853_at"	"ZBTB7B"	51043	"ENSG00000160685"
+"208638_at"	"PDIA6"	10130	"ENSG00000143870"
+"207668_x_at"	"PDIA6"	10130	"ENSG00000143870"
+"208639_x_at"	"PDIA6"	10130	"ENSG00000143870"
+"209633_at"	"PPP2R3A"	5523	"ENSG00000073711"
+"207749_s_at"	"PPP2R3A"	5523	"ENSG00000073711"
+"209632_at"	"PPP2R3A"	5523	"ENSG00000073711"
+"207945_s_at"	"CSNK1D"	1453	"ENSG00000141551"
+"208774_at"	"CSNK1D"	1453	"ENSG00000141551"
+"206724_at"	"CBX4"	8535	"ENSG00000141582"
+"206275_s_at"	"MICAL2"	9645	"ENSG00000133816"
+"207717_s_at"	"PKP2"	5318	"ENSG00000057294"
+"206215_at"	"OPCML"	4978	"ENSG00000183715"
+"207198_s_at"	"LIMS1"	3987	"ENSG00000169756"
+"208464_at"	"GRIA4"	2893	"ENSG00000152578"
+"209021_x_at"	"ATG13"	9776	"ENSG00000175224"
+"205619_s_at"	"MEOX1"	4222	"ENSG00000005102"
+"206766_at"	"ITGA10"	8515	"ENSG00000143127"
+"206136_at"	"FZD5"	7855	"ENSG00000163251"
+"205754_at"	"F2"	2147	"ENSG00000180210"
+"208396_s_at"	"PDE1A"	5136	"ENSG00000115252"
+"209271_at"	"BPTF"	2186	"ENSG00000171634"
+"205805_s_at"	"ROR1"	4919	"ENSG00000185483"
+"207350_s_at"	"VAMP4"	8674	"ENSG00000117533"
+"206568_at"	"TNP1"	7141	"ENSG00000118245"
+"210259_s_at"	"DLX4"	1748	"ENSG00000108813"
+"208216_at"	"DLX4"	1748	"ENSG00000108813"
+"206545_at"	"CD28"	940	"ENSG00000178562"
+"209478_at"	"CENPX"	201254	"ENSG00000169689"
+"207686_s_at"	"CASP8"	841	"ENSG00000064012"
+"205755_at"	"ITIH3"	3699	"ENSG00000162267"
+"206103_at"	"RAC3"	5881	"ENSG00000169750"
+"207291_at"	"PRRG4"	79056	"ENSG00000135378"
+"205467_at"	"CASP10"	843	"ENSG00000003400"
+"209201_x_at"	"CXCR4"	7852	"ENSG00000121966"
+"208138_at"	"GAST"	2520	"ENSG00000184502"
+"209260_at"	"SFN"	2810	"ENSG00000175793"
+"209030_s_at"	"CADM1"	23705	"ENSG00000182985"
+"209032_s_at"	"CADM1"	23705	"ENSG00000182985"
+"209031_at"	"CADM1"	23705	"ENSG00000182985"
+"206410_at"	"NR0B2"	8431	"ENSG00000131910"
+"209581_at"	"PLAAT3"	11145	"ENSG00000176485"
+"206290_s_at"	"RGS7"	6000	"ENSG00000182901"
+"206586_at"	"CNR2"	1269	"ENSG00000188822"
+"206095_s_at"	"SRSF10"	10772	"ENSG00000188529"
+"210178_x_at"	"SRSF10"	10772	"ENSG00000188529"
+"206468_s_at"	"METTL13"	51603	"ENSG00000010165"
+"209839_at"	"DNM3"	26052	"ENSG00000197959"
+"207572_at"	"EFCAB2"	84288	"ENSG00000203666"
+"210082_at"	"ABCA4"	24	"ENSG00000198691"
+"205474_at"	"CRLF3"	51379	"ENSG00000176390"
+"205655_at"	"MDM4"	4194	"ENSG00000198625"
+"205893_at"	"NLGN1"	22871	"ENSG00000169760"
+"207591_s_at"	"ARID1A"	8289	"ENSG00000117713"
+"207008_at"	"CXCR2"	3579	"ENSG00000180871"
+"206670_s_at"	"GAD1"	2571	"ENSG00000128683"
+"206669_at"	"GAD1"	2571	"ENSG00000128683"
+"206181_at"	"SLAMF1"	6504	"ENSG00000117090"
+"205858_at"	"NGFR"	4804	"ENSG00000064300"
+"208709_s_at"	"NRDC"	4898	"ENSG00000078618"
+"207812_s_at"	"GORASP2"	26003	"ENSG00000115806"
+"208843_s_at"	"GORASP2"	26003	"ENSG00000115806"
+"208842_s_at"	"GORASP2"	26003	"ENSG00000115806"
+"205972_at"	"SLC38A3"	10991	"ENSG00000188338"
+"210124_x_at"	"SEMA4F"	10505	"ENSG00000135622"
+"208124_s_at"	"SEMA4F"	10505	"ENSG00000135622"
+"206208_at"	"CA4"	762	"ENSG00000167434"
+"206209_s_at"	"CA4"	762	"ENSG00000167434"
+"207033_at"	"CBLIF"	2694	"ENSG00000134812"
+"206114_at"	"EPHA4"	2043	"ENSG00000116106"
+"205513_at"	"TCN1"	6947	"ENSG00000134827"
+"207497_s_at"	"MS4A2"	2206	"ENSG00000149534"
+"207496_at"	"MS4A2"	2206	"ENSG00000149534"
+"207145_at"	"MSTN"	2660	"ENSG00000138379"
+"207671_s_at"	"BEST1"	7439	"ENSG00000167995"
+"205993_s_at"	"TBX2"	6909	"ENSG00000121068"
+"207910_at"	"SCGB1D1"	10648	"ENSG00000168515"
+"205979_at"	"SCGB2A1"	4246	"ENSG00000124939"
+"206799_at"	"SCGB1D2"	10647	"ENSG00000124935"
+"206378_at"	"SCGB2A2"	4250	"ENSG00000110484"
+"210220_at"	"FZD2"	2535	"ENSG00000180340"
+"207048_at"	"SLC6A11"	6538	"ENSG00000132164"
+"209957_s_at"	"NPPA"	4878	"ENSG00000175206"
+"207599_at"	"MMP20"	9313	"ENSG00000137674"
+"209968_s_at"	"NCAM1"	4684	"ENSG00000149294"
+"210118_s_at"	"IL1A"	3552	"ENSG00000115008"
+"207709_at"	"PRKAA2"	5563	"ENSG00000162409"
+"209429_x_at"	"EIF2B4"	8890	"ENSG00000115211"
+"206590_x_at"	"DRD2"	1813	"ENSG00000149295"
+"206457_s_at"	"DIO1"	1733	"ENSG00000211452"
+"207847_s_at"	"MUC1"	4582	"ENSG00000185499"
+"210383_at"	"SCN1A"	6323	"ENSG00000144285"
+"210389_x_at"	"TUBD1"	51174	"ENSG00000108423"
+"207990_x_at"	"ACRV1"	56	"ENSG00000134940"
+"207969_x_at"	"ACRV1"	56	"ENSG00000134940"
+"206776_x_at"	"ACRV1"	56	"ENSG00000134940"
+"207973_x_at"	"ACRV1"	56	"ENSG00000134940"
+"207991_x_at"	"ACRV1"	56	"ENSG00000134940"
+"208013_s_at"	"ACRV1"	56	"ENSG00000134940"
+"207501_s_at"	"FGF12"	2257	"ENSG00000114279"
+"206867_at"	"GCKR"	2646	"ENSG00000084734"
+"207792_at"	"OPRD1"	4985	"ENSG00000116329"
+"207619_at"	"HCRTR1"	3061	"ENSG00000121764"
+"208140_s_at"	"DRC3"	83450	"ENSG00000171962"
+"207445_s_at"	"CCR9"	10803	"ENSG00000173585"
+"209648_x_at"	"SOCS5"	9655	"ENSG00000171150"
+"208127_s_at"	"SOCS5"	9655	"ENSG00000171150"
+"209647_s_at"	"SOCS5"	9655	"ENSG00000171150"
+"207243_s_at"	"CALM2"	805	"ENSG00000143933"
+"206953_s_at"	"ADGRL2"	23266	"ENSG00000117114"
+"208392_x_at"	"SP110"	3431	"ENSG00000135899"
+"209761_s_at"	"SP110"	3431	"ENSG00000135899"
+"208012_x_at"	"SP110"	3431	"ENSG00000135899"
+"209762_x_at"	"SP110"	3431	"ENSG00000135899"
+"209969_s_at"	"STAT1"	6772	"ENSG00000115415"
+"207667_s_at"	"MAP2K3"	5606	"ENSG00000034152"
+"207548_at"	"GRM7"	2917	"ENSG00000196277"
+"205985_x_at"	"CLCNKB"	1188	"ENSG00000184908"
+"210233_at"	"IL1RAP"	3556	"ENSG00000196083"
+"208776_at"	"PSMD11"	5717	"ENSG00000108671"
+"208777_s_at"	"PSMD11"	5717	"ENSG00000108671"
+"205930_at"	"GTF2E1"	2960	"ENSG00000153767"
+"205724_at"	"PKP1"	5317	"ENSG00000081277"
+"209677_at"	"PRKCI"	5584	"ENSG00000163558"
+"209678_s_at"	"PRKCI"	5584	"ENSG00000163558"
+"206675_s_at"	"SKIL"	6498	"ENSG00000136603"
+"206908_s_at"	"CLDN11"	5010	"ENSG00000013297"
+"210344_at"	"OSBPL7"	114881	"ENSG00000006025"
+"208163_s_at"	"OSBPL7"	114881	"ENSG00000006025"
+"208374_s_at"	"CAPZA1"	829	"ENSG00000116489"
+"205760_s_at"	"OGG1"	4968	"ENSG00000114026"
+"209907_s_at"	"ITSN2"	50618	"ENSG00000198399"
+"209898_x_at"	"ITSN2"	50618	"ENSG00000198399"
+"205698_s_at"	"MAP2K6"	5608	"ENSG00000108984"
+"205699_at"	"MAP2K6"	5608	"ENSG00000108984"
+"209463_s_at"	"TAF12"	6883	"ENSG00000120656"
+"205966_at"	"TAF13"	6884	"ENSG00000197780"
+"205569_at"	"LAMP3"	27074	"ENSG00000078081"
+"205480_s_at"	"UGP2"	7360	"ENSG00000169764"
+"206492_at"	"FHIT"	2272	"ENSG00000189283"
+"209750_at"	"NR1D2"	9975	"ENSG00000174738"
+"209965_s_at"	"RAD51D"	5892	"ENSG00000185379"
+"210264_at"	"GPR35"	2859	"ENSG00000178623"
+"206036_s_at"	"REL"	5966	"ENSG00000162924"
+"210486_at"	"ANKMY1"	51281	"ENSG00000144504"
+"208634_s_at"	"MACF1"	23499	"ENSG00000127603"
+"207358_x_at"	"MACF1"	23499	"ENSG00000127603"
+"208633_s_at"	"MACF1"	23499	"ENSG00000127603"
+"209115_at"	"UBA3"	9039	"ENSG00000144744"
+"205745_x_at"	"ADAM17"	6868	"ENSG00000151694"
+"205746_s_at"	"ADAM17"	6868	"ENSG00000151694"
+"209114_at"	"TSPAN1"	10103	"ENSG00000117472"
+"205758_at"	"CD8A"	925	"ENSG00000153563"
+"207688_s_at"	"NFE2L2"	4780	"ENSG00000116044"
+"210462_at"	"BLZF1"	8548	"ENSG00000117475"
+"206721_at"	"CCDC181"	57821	"ENSG00000117477"
+"206809_s_at"	"HNRNPA3"	220988	"ENSG00000170144"
+"209681_at"	"SLC19A2"	10560	"ENSG00000117479"
+"206571_s_at"	"MAP4K4"	9448	"ENSG00000071054"
+"210358_x_at"	"GATA2"	2624	"ENSG00000179348"
+"209710_at"	"GATA2"	2624	"ENSG00000179348"
+"205589_at"	"MYL3"	4634	"ENSG00000160808"
+"207233_s_at"	"MITF"	4286	"ENSG00000187098"
+"207413_s_at"	"SCN5A"	6331	"ENSG00000183873"
+"207282_s_at"	"MYOG"	4656	"ENSG00000122180"
+"206304_at"	"MYBPH"	4608	"ENSG00000133055"
+"209395_at"	"CHI3L1"	1116	"ENSG00000133048"
+"209396_s_at"	"CHI3L1"	1116	"ENSG00000133048"
+"206469_x_at"	"AKR7A3"	22977	"ENSG00000162482"
+"208168_s_at"	"CHIT1"	1118	"ENSG00000133063"
+"209124_at"	"MYD88"	4615	"ENSG00000172936"
+"207028_at"	"MYCNOS"	10408	"ENSG00000233718"
+"209757_s_at"	"MYCN"	4613	"ENSG00000134323"
+"209756_s_at"	"MYCN"	4613	"ENSG00000134323"
+"206283_s_at"	"TAL1"	6886	"ENSG00000162367"
+"207738_s_at"	"NCKAP1"	10787	"ENSG00000061676"
+"207855_s_at"	"CLCC1"	23155	"ENSG00000121940"
+"208100_x_at"	"SEMA6C"	10500	"ENSG00000143434"
+"209611_s_at"	"SLC1A4"	6509	"ENSG00000115902"
+"209610_s_at"	"SLC1A4"	6509	"ENSG00000115902"
+"207791_s_at"	"RAB1A"	5861	"ENSG00000138069"
+"208724_s_at"	"RAB1A"	5861	"ENSG00000138069"
+"206171_at"	"ADORA3"	140	"ENSG00000282608"
+"206758_at"	"EDN2"	1907	"ENSG00000127129"
+"206800_at"	"MTHFR"	4524	"ENSG00000177000"
+"207724_s_at"	"SPAST"	6683	"ENSG00000021574"
+"209748_at"	"SPAST"	6683	"ENSG00000021574"
+"207763_at"	"S100A5"	6276	"ENSG00000196420"
+"210015_s_at"	"MAP2"	4133	"ENSG00000078018"
+"209325_s_at"	"RGS16"	6004	"ENSG00000143333"
+"209324_s_at"	"RGS16"	6004	"ENSG00000143333"
+"206833_s_at"	"ACYP2"	98	"ENSG00000170634"
+"209340_at"	"UAP1"	6675	"ENSG00000117143"
+"208965_s_at"	"IFI16"	3428	"ENSG00000163565"
+"206332_s_at"	"IFI16"	3428	"ENSG00000163565"
+"208966_x_at"	"IFI16"	3428	"ENSG00000163565"
+"206513_at"	"AIM2"	9447	"ENSG00000163568"
+"205996_s_at"	"AK2"	204	"ENSG00000004455"
+"206305_s_at"	"C8A"	731	"ENSG00000157131"
+"207549_x_at"	"CD46"	4179	"ENSG00000117335"
+"208783_s_at"	"CD46"	4179	"ENSG00000117335"
+"210202_s_at"	"BIN1"	274	"ENSG00000136717"
+"210201_x_at"	"BIN1"	274	"ENSG00000136717"
+"208209_s_at"	"C4BPB"	725	"ENSG00000123843"
+"205654_at"	"C4BPA"	722	"ENSG00000123838"
+"205804_s_at"	"TRAF3IP3"	80342	"ENSG00000009790"
+"206979_at"	"C8B"	732	"ENSG00000021852"
+"208265_at"	""	56918	"ENSG00000290795"
+"205988_at"	"CD84"	8832	"ENSG00000066294"
+"206659_at"	""	NA	"ENSG00000291126"
+"208684_at"	"COPA"	1314	"ENSG00000122218"
+"207053_at"	"SLC8A1"	6546	"ENSG00000183023"
+"206165_s_at"	"CLCA2"	9635	"ENSG00000137975"
+"206166_s_at"	"CLCA2"	9635	"ENSG00000137975"
+"206164_at"	"CLCA2"	9635	"ENSG00000137975"
+"210107_at"	"CLCA1"	1179	"ENSG00000016490"
+"207693_at"	"CACNB4"	785	"ENSG00000182389"
+"208194_s_at"	"STAM2"	10254	"ENSG00000115145"
+"209649_at"	"STAM2"	10254	"ENSG00000115145"
+"210432_s_at"	"SCN3A"	6328	"ENSG00000153253"
+"206904_at"	"MATN1"	4146	"ENSG00000162510"
+"206905_s_at"	"MATN1"	4146	"ENSG00000162510"
+"207865_s_at"	"BMP8B"	656	"ENSG00000116985"
+"207971_s_at"	"CEP68"	23177	"ENSG00000011523"
+"206204_at"	"GRB14"	2888	"ENSG00000115290"
+"207924_x_at"	"PAX8"	7849	"ENSG00000125618"
+"209552_at"	"PAX8"	7849	"ENSG00000125618"
+"207921_x_at"	"PAX8"	7849	"ENSG00000125618"
+"207923_x_at"	"PAX8"	7849	"ENSG00000125618"
+"207261_at"	"CNGA3"	1261	"ENSG00000144191"
+"208363_s_at"	"INPP4A"	3631	"ENSG00000040933"
+"208364_at"	"INPP4A"	3631	"ENSG00000040933"
+"206949_s_at"	"RUSC1"	23623	"ENSG00000160753"
+"209435_s_at"	"ARHGEF2"	9181	"ENSG00000116584"
+"207629_s_at"	"ARHGEF2"	9181	"ENSG00000116584"
+"205550_s_at"	"BABAM2"	9577	"ENSG00000158019"
+"209856_x_at"	"ABI2"	10152	"ENSG00000138443"
+"207268_x_at"	"ABI2"	10152	"ENSG00000138443"
+"206589_at"	"GFI1"	2672	"ENSG00000162676"
+"208518_s_at"	"PER2"	8864	"ENSG00000132326"
+"206999_at"	"IL12RB2"	3595	"ENSG00000081985"
+"207433_at"	"IL10"	3586	"ENSG00000136634"
+"209234_at"	"KIF1B"	23095	"ENSG00000054523"
+"208756_at"	"EIF3I"	8668	"ENSG00000084623"
+"208009_s_at"	"ARHGEF16"	27237	"ENSG00000130762"
+"206794_at"	"ERBB4"	2066	"ENSG00000178568"
+"206634_at"	"SIX3"	6496	"ENSG00000138083"
+"206511_s_at"	"SIX2"	10736	"ENSG00000170577"
+"206510_at"	"SIX2"	10736	"ENSG00000170577"
+"205934_at"	"PLCL1"	5334	"ENSG00000115896"
+"208010_s_at"	"PTPN22"	26191	"ENSG00000134242"
+"206060_s_at"	"PTPN22"	26191	"ENSG00000134242"
+"208011_at"	"PTPN22"	26191	"ENSG00000134242"
+"206594_at"	"PASK"	23178	"ENSG00000115687"
+"208600_s_at"	"GPR39"	2863	"ENSG00000183840"
+"205937_at"	"CGREF1"	10669	"ENSG00000138028"
+"208536_s_at"	"BCL2L11"	10018	"ENSG00000153094"
+"207237_at"	"KCNA3"	3738	"ENSG00000177272"
+"205520_at"	"STRN"	6801	"ENSG00000115808"
+"209949_at"	"NCF2"	4688	"ENSG00000116701"
+"208500_x_at"	"FOXD3"	27022	"ENSG00000187140"
+"206028_s_at"	"MERTK"	10461	"ENSG00000153208"
+"207238_s_at"	"PTPRC"	5788	"ENSG00000081237"
+"210007_s_at"	"GPD2"	2820	"ENSG00000115159"
+"206419_at"	"RORC"	6097	"ENSG00000143365"
+"208642_s_at"	"XRCC5"	7520	"ENSG00000079246"
+"208643_s_at"	"XRCC5"	7520	"ENSG00000079246"
+"208683_at"	"CAPN2"	824	"ENSG00000162909"
+"209421_at"	"MSH2"	4436	"ENSG00000095002"
+"210258_at"	"RGS13"	6003	"ENSG00000127074"
+"207981_s_at"	"ESRRG"	2104	"ENSG00000196482"
+"209966_x_at"	"ESRRG"	2104	"ENSG00000196482"
+"206635_at"	"CHRNB2"	1141	"ENSG00000160716"
+"205902_at"	"KCNN3"	3782	"ENSG00000143603"
+"205903_s_at"	"KCNN3"	3782	"ENSG00000143603"
+"207720_at"	"LORICRIN"	4014	"ENSG00000203782"
+"205863_at"	"S100A12"	6283	"ENSG00000163221"
+"208458_at"	"SCNN1D"	6339	"ENSG00000162572"
+"208103_s_at"	"ANP32E"	81611	"ENSG00000143401"
+"209268_at"	"VPS45"	11311	"ENSG00000136631"
+"205945_at"	"IL6R"	3570	"ENSG00000160712"
+"207164_s_at"	"ZBTB18"	10472	"ENSG00000179456"
+"207840_at"	"CD160"	11126	"ENSG00000117281"
+"209382_at"	"POLR3C"	10623	"ENSG00000186141"
+"207536_s_at"	"TNFRSF9"	3604	"ENSG00000049249"
+"208759_at"	"NCSTN"	23385	"ENSG00000162736"
+"205544_s_at"	"CR2"	1380	"ENSG00000117322"
+"208488_s_at"	"CR1"	1378	"ENSG00000203710"
+"206244_at"	"CR1"	1378	"ENSG00000203710"
+"205866_at"	"FCN3"	8547	"ENSG00000142748"
+"210031_at"	"CD247"	919	"ENSG00000198821"
+"207041_at"	"MASP2"	10747	"ENSG00000009724"
+"208014_x_at"	"ELOA-AS1"	100506963	"ENSG00000236810"
+"206423_at"	"ANGPTL7"	10218	"ENSG00000171819"
+"210417_s_at"	"PI4KB"	5298	"ENSG00000143393"
+"206139_at"	"PI4KB"	5298	"ENSG00000143393"
+"206138_s_at"	"PI4KB"	5298	"ENSG00000143393"
+"205807_s_at"	"TUFT1"	7286	"ENSG00000143367"
+"207635_s_at"	"KCNH1"	3756	"ENSG00000143473"
+"205752_s_at"	"GSTM5"	2949	"ENSG00000134201"
+"205789_at"	"CD1D"	912	"ENSG00000158473"
+"206873_at"	"CA6"	765	"ENSG00000131686"
+"209882_at"	"RIT1"	6016	"ENSG00000143622"
+"206411_s_at"	"ABL2"	27	"ENSG00000143322"
+"209353_s_at"	"FAM163A"	148753	"ENSG00000143340"
+"209091_s_at"	"SH3GLB1"	51100	"ENSG00000097033"
+"209090_s_at"	"SH3GLB1"	51100	"ENSG00000097033"
+"210101_x_at"	"SH3GLB1"	51100	"ENSG00000097033"
+"206944_at"	"HTR6"	3362	"ENSG00000158748"
+"205776_at"	"FMO5"	2330	"ENSG00000131781"
+"207793_s_at"	"EPB41"	2035	"ENSG00000159023"
+"207828_s_at"	"CENPF"	1063	"ENSG00000117724"
+"209172_s_at"	"CENPF"	1063	"ENSG00000117724"
+"207331_at"	"CENPF"	1063	"ENSG00000117724"
+"207368_at"	"HTR1D"	3352	"ENSG00000179546"
+"208297_s_at"	"EVI5"	7813	"ENSG00000067208"
+"209717_at"	"EVI5"	7813	"ENSG00000067208"
+"208605_s_at"	"NTRK1"	4914	"ENSG00000198400"
+"208002_s_at"	"ACOT7"	11332	"ENSG00000097021"
+"208432_s_at"	"CACNA1E"	777	"ENSG00000198216"
+"209947_at"	"UBAP2L"	9898	"ENSG00000143569"
+"207690_at"	"ALX3"	257	"ENSG00000156150"
+"205689_at"	"PCNX2"	80003	"ENSG00000135749"
+"205481_at"	"ADORA1"	134	"ENSG00000163485"
+"210096_at"	"CYP4B1"	1580	"ENSG00000142973"
+"210374_x_at"	"PTGER3"	5733	"ENSG00000050628"
+"208169_s_at"	"PTGER3"	5733	"ENSG00000050628"
+"210375_at"	"PTGER3"	5733	"ENSG00000050628"
+"210475_at"	"POU3F1"	5453	"ENSG00000185668"
+"208345_s_at"	"POU3F1"	5453	"ENSG00000185668"
+"208973_at"	"ERI3"	79033	"ENSG00000117419"
+"207355_at"	"SLC1A7"	6512	"ENSG00000162383"
+"207317_s_at"	"CASQ2"	845	"ENSG00000118729"
+"210266_s_at"	"TRIM33"	51592	"ENSG00000197323"
+"209927_s_at"	"CHTOP"	26097	"ENSG00000160679"
+"208335_s_at"	"ACKR1"	2532	"ENSG00000213088"
+"206990_at"	"TNR"	7143	"ENSG00000116147"
+"207401_at"	"PROX1"	5629	"ENSG00000117707"
+"207431_s_at"	"DEGS1"	8560	"ENSG00000143753"
+"209250_at"	"DEGS1"	8560	"ENSG00000143753"
+"206090_s_at"	"DISC1"	27185	"ENSG00000162946"
+"207759_s_at"	"DISC1"	27185	"ENSG00000162946"
+"206971_at"	"GPR161"	23432	"ENSG00000143147"
+"206972_s_at"	"GPR161"	23432	"ENSG00000143147"
+"207290_at"	"PLXNA2"	5362	"ENSG00000076356"
+"207557_s_at"	"RYR2"	6262	"ENSG00000198626"
+"207077_at"	"CELA2B"	51032	"ENSG00000215704"
+"211149_at"	"UTY"	7404	"ENSG00000183878"
+"211462_s_at"	"TBL1Y"	90665	"ENSG00000092377"
+"211614_at"	""	NA	"ENSG00000254488"
+"214131_at"	""	246126	"ENSG00000291033"
+"212996_s_at"	"URB1"	9875	"ENSG00000142207"
+"213167_s_at"	"SLC5A3"	6526	"ENSG00000198743"
+"212944_at"	"SLC5A3"	6526	"ENSG00000198743"
+"213164_at"	"SLC5A3"	6526	"ENSG00000198743"
+"214558_at"	"GPR12"	2835	"ENSG00000132975"
+"210809_s_at"	"POSTN"	10631	"ENSG00000133110"
+"214981_at"	"POSTN"	10631	"ENSG00000133110"
+"214598_at"	"CLDN8"	9073	"ENSG00000156284"
+"213000_at"	"MORC3"	23515	"ENSG00000159256"
+"213239_at"	"PIBF1"	10464	"ENSG00000083535"
+"215091_s_at"	"GTF3A"	2971	"ENSG00000122034"
+"212418_at"	"ELF1"	1997	"ENSG00000120690"
+"212420_at"	"ELF1"	1997	"ENSG00000120690"
+"211341_at"	"POU4F1"	5457	"ENSG00000152192"
+"212768_s_at"	"OLFM4"	10562	"ENSG00000102837"
+"211954_s_at"	"IPO5"	3843	"ENSG00000065150"
+"211953_s_at"	"IPO5"	3843	"ENSG00000065150"
+"211955_at"	"IPO5"	3843	"ENSG00000065150"
+"211952_at"	"IPO5"	3843	"ENSG00000065150"
+"210689_at"	"CLDN14"	23562	"ENSG00000159261"
+"211806_s_at"	"KCNJ15"	3772	"ENSG00000157551"
+"213327_s_at"	"USP12"	219333	"ENSG00000152484"
+"212290_at"	"SLC7A1"	6541	"ENSG00000139514"
+"212292_at"	"SLC7A1"	6541	"ENSG00000139514"
+"212295_s_at"	"SLC7A1"	6541	"ENSG00000139514"
+"211349_at"	"SLC15A1"	6564	"ENSG00000088386"
+"215456_at"	""	NA	"ENSG00000274331"
+"212875_s_at"	"C2CD2"	25966	"ENSG00000157617"
+"214936_at"	"LRCH1"	23143	"ENSG00000136141"
+"214194_at"	"DIS3"	22894	"ENSG00000083520"
+"210961_s_at"	"ADRA1D"	146	"ENSG00000171873"
+"210960_at"	"ADRA1D"	146	"ENSG00000171873"
+"213727_x_at"	"MPPE1"	65258	"ENSG00000154889"
+"211964_at"	"COL4A2"	1284	"ENSG00000134871"
+"211966_at"	"COL4A2"	1284	"ENSG00000134871"
+"213134_x_at"	"BTG3"	10950	"ENSG00000154640"
+"212846_at"	"RRP1B"	23076	"ENSG00000160208"
+"212844_at"	"RRP1B"	23076	"ENSG00000160208"
+"215119_at"	"MYO16"	23026	"ENSG00000041515"
+"211980_at"	"COL4A1"	1282	"ENSG00000187498"
+"211981_at"	"COL4A1"	1282	"ENSG00000187498"
+"214825_at"	"NALF1"	728215	"ENSG00000204442"
+"212289_at"	"ANKRD12"	23253	"ENSG00000101745"
+"212286_at"	"ANKRD12"	23253	"ENSG00000101745"
+"211572_s_at"	"SLC23A2"	9962	"ENSG00000089057"
+"211541_s_at"	"DYRK1A"	1859	"ENSG00000157540"
+"211079_s_at"	"DYRK1A"	1859	"ENSG00000157540"
+"215234_at"	"DYRK1A"	1859	"ENSG00000157540"
+"212750_at"	"PPP1R16B"	26051	"ENSG00000101445"
+"211006_s_at"	"KCNB1"	3745	"ENSG00000158445"
+"215181_at"	"CDH22"	64405	"ENSG00000149654"
+"215040_at"	"RNASEH2B"	79621	"ENSG00000136104"
+"211678_s_at"	"RNF114"	55905	"ENSG00000124226"
+"213989_x_at"	"SETD4"	54093	"ENSG00000185917"
+"211352_s_at"	"NCOA3"	8202	"ENSG00000124151"
+"211576_s_at"	"SLC19A1"	6573	"ENSG00000173638"
+"213617_s_at"	"TPGS2"	25941	"ENSG00000134779"
+"213616_at"	"TPGS2"	25941	"ENSG00000134779"
+"212055_at"	"TPGS2"	25941	"ENSG00000134779"
+"210702_s_at"	"PTGIS"	5740	"ENSG00000124212"
+"211892_s_at"	"PTGIS"	5740	"ENSG00000124212"
+"212062_at"	"ATP9A"	10079	"ENSG00000054793"
+"213375_s_at"	"N4BP2L1"	90634	"ENSG00000139597"
+"214906_x_at"	"N4BP2L1"	90634	"ENSG00000139597"
+"213431_x_at"	"SFI1"	9814	"ENSG00000198089"
+"214402_s_at"	"SFI1"	9814	"ENSG00000198089"
+"210913_at"	"CDH20"	28316	"ENSG00000101542"
+"213136_at"	"PTPN2"	5771	"ENSG00000175354"
+"213137_s_at"	"PTPN2"	5771	"ENSG00000175354"
+"212719_at"	"PHLPP1"	23239	"ENSG00000081913"
+"211830_s_at"	"CACNA1I"	8911	"ENSG00000100346"
+"213254_at"	"TNRC6B"	23112	"ENSG00000100354"
+"212990_at"	"SYNJ1"	8867	"ENSG00000159082"
+"213132_s_at"	"MCAT"	27349	"ENSG00000100294"
+"213346_at"	"TEX30"	93081	"ENSG00000151287"
+"212914_at"	"CBX7"	23492	"ENSG00000100307"
+"214820_at"	"BRWD1"	54014	"ENSG00000185658"
+"211540_s_at"	"RB1"	5925	"ENSG00000139687"
+"214844_s_at"	"DOK5"	55816	"ENSG00000101134"
+"214747_at"	"ZBED4"	9889	"ENSG00000100426"
+"211666_x_at"	"RPL3"	6122	"ENSG00000100316"
+"211259_s_at"	"BMP7"	655	"ENSG00000101144"
+"211260_at"	"BMP7"	655	"ENSG00000101144"
+"211040_x_at"	"GTSE1"	51512	"ENSG00000075218"
+"214097_at"	"RPS21"	6227	"ENSG00000171858"
+"215096_s_at"	"ESD"	2098	"ENSG00000139684"
+"213140_s_at"	"SS18L1"	26039	"ENSG00000184402"
+"211616_s_at"	"HTR2A"	3356	"ENSG00000102468"
+"214028_x_at"	"TDRD3"	81550	"ENSG00000083544"
+"212526_at"	"SPART"	23111	"ENSG00000133104"
+"215188_at"	"STK24"	8428	"ENSG00000102572"
+"214750_at"	"PLAC4"	191585	"ENSG00000280109"
+"211113_s_at"	"ABCG1"	9619	"ENSG00000160179"
+"211754_s_at"	"SLC25A17"	10478	"ENSG00000100372"
+"214210_at"	"SLC25A17"	10478	"ENSG00000100372"
+"214476_at"	"TFF2"	7032	"ENSG00000160181"
+"214461_at"	"LBP"	3929	"ENSG00000129988"
+"211652_s_at"	"LBP"	3929	"ENSG00000129988"
+"212946_at"	"VWA8"	23078	"ENSG00000102763"
+"214231_s_at"	"VWA8"	23078	"ENSG00000102763"
+"213854_at"	"SYNGR1"	9145	"ENSG00000100321"
+"210613_s_at"	"SYNGR1"	9145	"ENSG00000100321"
+"211894_x_at"	"SEZ6L"	23544	"ENSG00000100095"
+"213609_s_at"	"SEZ6L"	23544	"ENSG00000100095"
+"213784_at"	"IFT27"	11020	"ENSG00000100360"
+"214318_s_at"	"FRY"	10129	"ENSG00000073910"
+"213868_s_at"	"PCNX4"	64430	"ENSG00000126773"
+"212168_at"	"RBM12"	10137	"ENSG00000244462"
+"212170_at"	"RBM12"	10137	"ENSG00000244462"
+"211769_x_at"	"SERINC3"	10955	"ENSG00000132824"
+"213447_at"	"SNHG14"	NA	"ENSG00000224078"
+"214961_at"	"MTUS2"	23281	"ENSG00000132938"
+"210581_x_at"	"PATZ1"	23598	"ENSG00000100105"
+"211391_s_at"	"PATZ1"	23598	"ENSG00000100105"
+"211392_s_at"	"PATZ1"	23598	"ENSG00000100105"
+"214309_s_at"	"PFKL"	5211	"ENSG00000141959"
+"211065_x_at"	"PFKL"	5211	"ENSG00000141959"
+"210932_s_at"	"RNF6"	6049	"ENSG00000127870"
+"210788_s_at"	"DHRS7"	51635	"ENSG00000100612"
+"211686_s_at"	"MAK16"	84549	"ENSG00000198042"
+"215175_at"	"PCNX1"	22990	"ENSG00000100731"
+"213159_at"	"PCNX1"	22990	"ENSG00000100731"
+"213173_at"	"PCNX1"	22990	"ENSG00000100731"
+"214442_s_at"	"PIAS2"	9063	"ENSG00000078043"
+"214593_at"	"PIAS2"	9063	"ENSG00000078043"
+"213262_at"	"SACS"	26278	"ENSG00000151835"
+"212192_at"	"KCTD12"	115207	"ENSG00000178695"
+"212188_at"	"KCTD12"	115207	"ENSG00000178695"
+"214409_at"	"RFPL3S"	10737	"ENSG00000205853"
+"214758_at"	"DCAF4"	26094	"ENSG00000119599"
+"211887_x_at"	"MSR1"	4481	"ENSG00000038945"
+"214770_at"	"MSR1"	4481	"ENSG00000038945"
+"213608_s_at"	"SRRD"	402055	"ENSG00000100104"
+"213019_at"	"RANBP6"	26953	"ENSG00000137040"
+"215469_at"	"SLITRK5"	26050	"ENSG00000165300"
+"214930_at"	"SLITRK5"	26050	"ENSG00000165300"
+"214491_at"	"SSTR3"	6753	"ENSG00000278195"
+"214955_at"	"TMPRSS6"	164656	"ENSG00000187045"
+"210758_at"	"PSIP1"	11168	"ENSG00000164985"
+"213508_at"	"SPTSSA"	171546	"ENSG00000165389"
+"212460_at"	"SPTSSA"	171546	"ENSG00000165389"
+"213171_s_at"	"MMP24"	10893	"ENSG00000125966"
+"212480_at"	"SPECC1L"	23384	"ENSG00000100014"
+"211491_at"	"ADRA1A"	148	"ENSG00000120907"
+"211492_s_at"	"ADRA1A"	148	"ENSG00000120907"
+"211489_at"	"ADRA1A"	148	"ENSG00000120907"
+"211490_at"	"ADRA1A"	148	"ENSG00000120907"
+"211497_x_at"	"NKX3-1"	4824	"ENSG00000167034"
+"211498_s_at"	"NKX3-1"	4824	"ENSG00000167034"
+"212947_at"	"SLC9A8"	23315	"ENSG00000197818"
+"212387_at"	"TCF4"	6925	"ENSG00000196628"
+"212385_at"	"TCF4"	6925	"ENSG00000196628"
+"212382_at"	"TCF4"	6925	"ENSG00000196628"
+"212386_at"	"TCF4"	6925	"ENSG00000196628"
+"213891_s_at"	"TCF4"	6925	"ENSG00000196628"
+"210938_at"	"PDX1"	3651	"ENSG00000139515"
+"210937_s_at"	"PDX1"	3651	"ENSG00000139515"
+"214927_at"	"ITGBL1"	9358	"ENSG00000198542"
+"215544_s_at"	"UBOX5"	22888	"ENSG00000185019"
+"213304_at"	"TOGARAM1"	23116	"ENSG00000198718"
+"212271_at"	"MAPK1"	5594	"ENSG00000100030"
+"211518_s_at"	"BMP4"	652	"ENSG00000125378"
+"211507_s_at"	"MTMR3"	8897	"ENSG00000100330"
+"212266_s_at"	"SRSF5"	6430	"ENSG00000100650"
+"215037_s_at"	"BCL2L1"	598	"ENSG00000171552"
+"212312_at"	"BCL2L1"	598	"ENSG00000171552"
+"212938_at"	"COL6A1"	1291	"ENSG00000142156"
+"213428_s_at"	"COL6A1"	1291	"ENSG00000142156"
+"212940_at"	"COL6A1"	1291	"ENSG00000142156"
+"212937_s_at"	"COL6A1"	1291	"ENSG00000142156"
+"212091_s_at"	"COL6A1"	1291	"ENSG00000142156"
+"214864_s_at"	"GRHPR"	9380	"ENSG00000137106"
+"212523_s_at"	"SPIDR"	23514	"ENSG00000164808"
+"213003_s_at"	"SPIDR"	23514	"ENSG00000164808"
+"215142_at"	"H2AP"	25763	"ENSG00000187516"
+"211778_s_at"	"OVOL2"	58495	"ENSG00000125850"
+"210712_at"	"LDHAL6B"	92483	"ENSG00000171989"
+"213824_at"	"OLIG2"	10215	"ENSG00000205927"
+"213825_at"	"OLIG2"	10215	"ENSG00000205927"
+"211610_at"	"KLF6"	1316	"ENSG00000067082"
+"213079_at"	"TSR2"	90121	"ENSG00000158526"
+"213366_x_at"	"ATP5F1C"	509	"ENSG00000165629"
+"215167_at"	"MED14"	9282	"ENSG00000180182"
+"213466_at"	"RAB40C"	57799	"ENSG00000197562"
+"214538_x_at"	"RGS6"	9628	"ENSG00000182732"
+"211448_s_at"	"RGS6"	9628	"ENSG00000182732"
+"212410_at"	"MICU2"	221154	"ENSG00000165487"
+"212450_at"	"SECISBP2L"	9728	"ENSG00000138593"
+"212451_at"	"SECISBP2L"	9728	"ENSG00000138593"
+"214119_s_at"	"FKBP1A"	2280	"ENSG00000088832"
+"215136_s_at"	"EXOSC8"	11340	"ENSG00000120699"
+"215219_at"	"DOP1B"	9980	"ENSG00000142197"
+"210720_s_at"	"NECAB3"	63941	"ENSG00000125967"
+"213217_at"	"ADCY2"	108	"ENSG00000078295"
+"213219_at"	"ADCY2"	108	"ENSG00000078295"
+"212849_at"	"AXIN1"	8312	"ENSG00000103126"
+"210735_s_at"	"CA12"	771	"ENSG00000074410"
+"214164_x_at"	"CA12"	771	"ENSG00000074410"
+"213728_at"	"LAMP1"	3916	"ENSG00000185896"
+"210754_s_at"	"LYN"	4067	"ENSG00000254087"
+"213040_s_at"	"NPTXR"	23467	"ENSG00000221890"
+"211426_x_at"	"GNAQ"	2776	"ENSG00000156052"
+"212224_at"	"ALDH1A1"	216	"ENSG00000165092"
+"213169_at"	"SEMA5A"	9037	"ENSG00000112902"
+"212330_at"	"TFDP1"	7027	"ENSG00000198176"
+"214994_at"	"APOBEC3F"	200316	"ENSG00000128394"
+"212402_at"	"ZC3H13"	23091	"ENSG00000123200"
+"212862_at"	"CDS2"	8760	"ENSG00000101290"
+"212864_at"	"CDS2"	8760	"ENSG00000101290"
+"211626_x_at"	"ERG"	2078	"ENSG00000157554"
+"213541_s_at"	"ERG"	2078	"ENSG00000157554"
+"214860_at"	"SLC9A7"	84679	"ENSG00000065923"
+"212829_at"	"PIP4K2A"	5305	"ENSG00000150867"
+"213990_s_at"	"PAK5"	57144	"ENSG00000101349"
+"210721_s_at"	"PAK5"	57144	"ENSG00000101349"
+"210558_at"	"AKR1C4"	1109	"ENSG00000198610"
+"211264_at"	"GAD2"	2572	"ENSG00000136750"
+"214106_s_at"	"GMDS"	2762	"ENSG00000112699"
+"212866_at"	"R3HCC1"	203069	"ENSG00000104679"
+"212269_s_at"	"MCM3AP"	8888	"ENSG00000160294"
+"214265_at"	"ITGA8"	8516	"ENSG00000077943"
+"212373_at"	"FEM1B"	10116	"ENSG00000169018"
+"212367_at"	"FEM1B"	10116	"ENSG00000169018"
+"212374_at"	"FEM1B"	10116	"ENSG00000169018"
+"213249_at"	"FBXL7"	23194	"ENSG00000183580"
+"211013_x_at"	"PML"	5371	"ENSG00000140464"
+"211012_s_at"	"PML"	5371	"ENSG00000140464"
+"211014_s_at"	"PML"	5371	"ENSG00000140464"
+"211588_s_at"	"PML"	5371	"ENSG00000140464"
+"213627_at"	"MAGED2"	10916	"ENSG00000102316"
+"215400_x_at"	"ADCY9"	115	"ENSG00000162104"
+"213634_s_at"	"TRMU"	55687	"ENSG00000100416"
+"213639_s_at"	"ZNF500"	26048	"ENSG00000103199"
+"213641_at"	"ZNF500"	26048	"ENSG00000103199"
+"212344_at"	"SULF1"	23213	"ENSG00000137573"
+"212354_at"	"SULF1"	23213	"ENSG00000137573"
+"212353_at"	"SULF1"	23213	"ENSG00000137573"
+"215529_x_at"	"DIP2A"	23181	"ENSG00000160305"
+"214719_at"	"SLC46A3"	283537	"ENSG00000139508"
+"210906_x_at"	"AQP4"	361	"ENSG00000171885"
+"211153_s_at"	"TNFSF11"	8600	"ENSG00000120659"
+"210643_at"	"TNFSF11"	8600	"ENSG00000120659"
+"213665_at"	""	NA	"ENSG00000283480"
+"213427_at"	"RPP40"	10799	"ENSG00000124787"
+"212856_at"	"GRAMD4"	23151	"ENSG00000075240"
+"213286_at"	"ZFR"	51663	"ENSG00000056097"
+"214594_x_at"	"ATP8B1"	5205	"ENSG00000081923"
+"211808_s_at"	"CREBBP"	1387	"ENSG00000005339"
+"214753_at"	"N4BP2L2"	10443	"ENSG00000244754"
+"212379_at"	"GART"	2618	"ENSG00000159131"
+"211725_s_at"	"BID"	637	"ENSG00000015475"
+"211810_s_at"	"GALC"	2581	"ENSG00000054983"
+"211872_s_at"	"RGS11"	8786	"ENSG00000076344"
+"213686_at"	"VPS13A"	23230	"ENSG00000197969"
+"214785_at"	"VPS13A"	23230	"ENSG00000197969"
+"214590_s_at"	"UBE2D1"	7321	"ENSG00000072401"
+"211764_s_at"	"UBE2D1"	7321	"ENSG00000072401"
+"213483_at"	"PPWD1"	23398	"ENSG00000113593"
+"215022_x_at"	"ZNF33B"	7582	"ENSG00000196693"
+"213323_s_at"	"ZC3H7B"	23264	"ENSG00000100403"
+"210510_s_at"	"NRP1"	8829	"ENSG00000099250"
+"212298_at"	"NRP1"	8829	"ENSG00000099250"
+"210615_at"	"NRP1"	8829	"ENSG00000099250"
+"213668_s_at"	"SOX4"	6659	"ENSG00000124766"
+"211128_at"	"EDA"	1896	"ENSG00000158813"
+"211131_s_at"	"EDA"	1896	"ENSG00000158813"
+"211127_x_at"	"EDA"	1896	"ENSG00000158813"
+"211129_x_at"	"EDA"	1896	"ENSG00000158813"
+"211130_x_at"	"EDA"	1896	"ENSG00000158813"
+"214877_at"	"CDKAL1"	54901	"ENSG00000145996"
+"212576_at"	"MGRN1"	23295	"ENSG00000102858"
+"214591_at"	"KLHL4"	56062	"ENSG00000102271"
+"210645_s_at"	"TTC3"	7267	"ENSG00000182670"
+"214666_x_at"	"IREB2"	3658	"ENSG00000136381"
+"212528_at"	"DESI1"	27351	"ENSG00000100418"
+"212527_at"	"DESI1"	27351	"ENSG00000100418"
+"213512_at"	"CLBA1"	122616	"ENSG00000140104"
+"212465_at"	"SETD3"	84193	"ENSG00000183576"
+"212210_at"	"INTS1"	26173	"ENSG00000164880"
+"212212_s_at"	"INTS1"	26173	"ENSG00000164880"
+"214807_at"	"PLXDC2"	84898	"ENSG00000120594"
+"212992_at"	"AHNAK2"	113146	"ENSG00000185567"
+"215503_at"	"SPINT3"	10816	"ENSG00000101446"
+"213316_at"	"JCAD"	57608	"ENSG00000165757"
+"211370_s_at"	"MAP2K5"	5607	"ENSG00000137764"
+"211724_x_at"	"MIOS"	54468	"ENSG00000164654"
+"211249_at"	"GPR68"	8111	"ENSG00000119714"
+"211214_s_at"	"DAPK1"	1612	"ENSG00000196730"
+"214462_at"	"SOCS6"	9306	"ENSG00000170677"
+"213981_at"	"COMT"	1312	"ENSG00000093010"
+"213115_at"	"ATG4A"	115201	"ENSG00000101844"
+"213017_at"	"ABHD3"	171586	"ENSG00000158201"
+"211589_at"	""	NA	"ENSG00000287543"
+"210766_s_at"	"CSE1L"	1434	"ENSG00000124207"
+"212074_at"	"SUN1"	23353	"ENSG00000164828"
+"214169_at"	"SUN1"	23353	"ENSG00000164828"
+"215069_at"	"NMT2"	9397	"ENSG00000152465"
+"213764_s_at"	"MFAP5"	8076	"ENSG00000197614"
+"213765_at"	"MFAP5"	8076	"ENSG00000197614"
+"213037_x_at"	"STAU1"	6780	"ENSG00000124214"
+"211505_s_at"	"STAU1"	6780	"ENSG00000124214"
+"213135_at"	"TIAM1"	7074	"ENSG00000156299"
+"213260_at"	"FOXC1"	2296	"ENSG00000054598"
+"211673_s_at"	"MOCS1"	4337	"ENSG00000124615"
+"213181_s_at"	"MOCS1"	4337	"ENSG00000124615"
+"212250_at"	"MTDH"	92140	"ENSG00000147649"
+"212251_at"	"MTDH"	92140	"ENSG00000147649"
+"212248_at"	"MTDH"	92140	"ENSG00000147649"
+"214615_at"	"P2RY10"	27334	"ENSG00000078589"
+"213161_at"	"TSTD2"	158427	"ENSG00000136925"
+"213449_at"	"POP1"	10940	"ENSG00000104356"
+"214709_s_at"	"KTN1"	3895	"ENSG00000126777"
+"215449_at"	"TSPO2"	222642	"ENSG00000112212"
+"211512_s_at"	"OGFR"	11054	"ENSG00000060491"
+"211513_s_at"	"OGFR"	11054	"ENSG00000060491"
+"212538_at"	"DOCK9"	23348	"ENSG00000088387"
+"215238_s_at"	"DOCK9"	23348	"ENSG00000088387"
+"215041_s_at"	"DOCK9"	23348	"ENSG00000088387"
+"215237_at"	"DOCK9"	23348	"ENSG00000088387"
+"211935_at"	"ARL6IP1"	23204	"ENSG00000170540"
+"212994_at"	"THOC2"	57187	"ENSG00000125676"
+"210547_x_at"	"ICA1"	3382	"ENSG00000003147"
+"211740_at"	"ICA1"	3382	"ENSG00000003147"
+"214849_at"	"KCTD20"	222658	"ENSG00000112078"
+"213213_at"	"DIDO1"	11083	"ENSG00000101191"
+"214848_at"	"YWHAZ"	7534	"ENSG00000164924"
+"214297_at"	"CSPG4"	1464	"ENSG00000173546"
+"212793_at"	"DAAM2"	23500	"ENSG00000146122"
+"214783_s_at"	"ANXA11"	311	"ENSG00000122359"
+"212437_at"	"CENPB"	1059	"ENSG00000125817"
+"211628_x_at"	"FTH1P5"	NA	"ENSG00000230204"
+"210606_x_at"	"KLRD1"	3824	"ENSG00000134539"
+"214660_at"	"ITGA1"	3672	"ENSG00000213949"
+"212336_at"	"EPB41L1"	2036	"ENSG00000088367"
+"212339_at"	"EPB41L1"	2036	"ENSG00000088367"
+"215082_at"	"ELOVL5"	60481	"ENSG00000012660"
+"212311_at"	"SEL1L3"	23231	"ENSG00000091490"
+"212314_at"	"SEL1L3"	23231	"ENSG00000091490"
+"211055_s_at"	"INVS"	27130	"ENSG00000119509"
+"211054_at"	"INVS"	27130	"ENSG00000119509"
+"212896_at"	"MTREX"	23517	"ENSG00000039123"
+"213253_at"	"SMC2"	10592	"ENSG00000136824"
+"214264_s_at"	"EFCAB11"	90141	"ENSG00000140025"
+"210525_x_at"	"EFCAB11"	90141	"ENSG00000140025"
+"211864_s_at"	"MYOF"	26509	"ENSG00000138119"
+"211782_at"	"IDS"	3423	"ENSG00000010404"
+"210666_at"	"IDS"	3423	"ENSG00000010404"
+"211105_s_at"	"NFATC1"	4772	"ENSG00000131196"
+"211571_s_at"	"VCAN"	1462	"ENSG00000038427"
+"215486_at"	"PRPS1L1"	221823	"ENSG00000229937"
+"210503_at"	"MAGEA11"	4110	"ENSG00000185247"
+"212073_at"	"CSNK2A1"	1457	"ENSG00000101266"
+"212072_s_at"	"CSNK2A1"	1457	"ENSG00000101266"
+"210972_x_at"	"TRAC"	NA	"ENSG00000277734"
+"211902_x_at"	"TRAC"	NA	"ENSG00000277734"
+"211177_s_at"	"TXNRD2"	10587	"ENSG00000184470"
+"210803_at"	"TXNRD2"	10587	"ENSG00000184470"
+"211402_x_at"	"NR6A1"	2649	"ENSG00000148200"
+"211374_x_at"	"OXA1L-DT"	NA	"ENSG00000258458"
+"210518_at"	"CDH8"	1006	"ENSG00000150394"
+"212637_s_at"	"WWP1"	11059	"ENSG00000123124"
+"212638_s_at"	"WWP1"	11059	"ENSG00000123124"
+"210820_x_at"	"COQ7"	10229	"ENSG00000167186"
+"215008_at"	"TLL2"	7093	"ENSG00000095587"
+"214512_s_at"	"SUB1"	10923	"ENSG00000113387"
+"212857_x_at"	"SUB1"	10923	"ENSG00000113387"
+"213821_s_at"	""	NA	"ENSG00000238039"
+"211587_x_at"	"CHRNA3"	1136	"ENSG00000080644"
+"211772_x_at"	"CHRNA3"	1136	"ENSG00000080644"
+"212935_at"	"MCF2L"	23263	"ENSG00000126217"
+"213967_at"	"RALYL"	138046	"ENSG00000184672"
+"214039_s_at"	"LAPTM4B"	55353	"ENSG00000104341"
+"210957_s_at"	"AFF2"	2334	"ENSG00000155966"
+"214988_s_at"	"SON"	6651	"ENSG00000159140"
+"213538_at"	"SON"	6651	"ENSG00000159140"
+"213122_at"	"TSPYL5"	85453	"ENSG00000180543"
+"212925_at"	"MISP"	126353	"ENSG00000099812"
+"214452_at"	"BCAT1"	586	"ENSG00000060982"
+"214390_s_at"	"BCAT1"	586	"ENSG00000060982"
+"213985_s_at"	""	NA	"ENSG00000274177"
+"215542_at"	""	NA	"ENSG00000280129"
+"214774_x_at"	"TOX3"	27324	"ENSG00000103460"
+"215108_x_at"	"TOX3"	27324	"ENSG00000103460"
+"212572_at"	"STK38L"	23012	"ENSG00000211455"
+"212565_at"	"STK38L"	23012	"ENSG00000211455"
+"213103_at"	"STARD13"	90627	"ENSG00000133121"
+"210880_s_at"	"EFS"	10278	"ENSG00000100842"
+"213292_s_at"	"SNX13"	23161	"ENSG00000071189"
+"215366_at"	"SNX13"	23161	"ENSG00000071189"
+"211500_at"	"MAPK11"	5600	"ENSG00000185386"
+"211499_s_at"	"MAPK11"	5600	"ENSG00000185386"
+"214341_at"	"AP1G2"	8906	"ENSG00000213983"
+"212812_at"	"SERINC5"	256987	"ENSG00000164300"
+"212928_at"	"TSPYL4"	23270	"ENSG00000187189"
+"214451_at"	"TFAP2B"	7021	"ENSG00000008196"
+"211011_at"	"COL19A1"	1310	"ENSG00000082293"
+"214071_at"	"GNAL"	2774	"ENSG00000141404"
+"213924_at"	"GNAL"	2774	"ENSG00000141404"
+"212469_at"	"NIPBL"	25836	"ENSG00000164190"
+"212483_at"	"NIPBL"	25836	"ENSG00000164190"
+"213918_s_at"	"NIPBL"	25836	"ENSG00000164190"
+"212711_at"	"CAMSAP1"	157922	"ENSG00000130559"
+"212710_at"	"CAMSAP1"	157922	"ENSG00000130559"
+"212712_at"	"CAMSAP1"	157922	"ENSG00000130559"
+"210603_at"	"NAA11"	84779	"ENSG00000156269"
+"213943_at"	"TWIST1"	7291	"ENSG00000122691"
+"215254_at"	"RCAN1"	1827	"ENSG00000159200"
+"210850_s_at"	"ELK1"	2002	"ENSG00000126767"
+"214608_s_at"	"EYA1"	2138	"ENSG00000104313"
+"213432_at"	"MUC5B"	727897	"ENSG00000117983"
+"212596_s_at"	"HMGXB4"	10042	"ENSG00000100281"
+"212597_s_at"	"HMGXB4"	10042	"ENSG00000100281"
+"212631_at"	"STX7"	8417	"ENSG00000079950"
+"212632_at"	"STX7"	8417	"ENSG00000079950"
+"215148_s_at"	"APBA3"	9546	"ENSG00000011132"
+"214611_at"	"GRIK1"	2897	"ENSG00000171189"
+"213429_at"	"BICC1"	80114	"ENSG00000122870"
+"211907_s_at"	"PARD6B"	84612	"ENSG00000124171"
+"214827_at"	"PARD6B"	84612	"ENSG00000124171"
+"213412_at"	"TJP3"	27134	"ENSG00000105289"
+"211488_s_at"	"ITGB8"	3696	"ENSG00000105855"
+"214790_at"	"SENP6"	26054	"ENSG00000112701"
+"214953_s_at"	"APP"	351	"ENSG00000142192"
+"211277_x_at"	"APP"	351	"ENSG00000142192"
+"212942_s_at"	"CEMIP"	57214	"ENSG00000103888"
+"215430_at"	"GK2"	2712	"ENSG00000196475"
+"211943_x_at"	"TPT1"	7178	"ENSG00000133112"
+"212869_x_at"	"TPT1"	7178	"ENSG00000133112"
+"214327_x_at"	"TPT1"	7178	"ENSG00000133112"
+"215102_at"	"DPY19L1P1"	NA	"ENSG00000229358"
+"212771_at"	"FAM171A1"	221061	"ENSG00000148468"
+"215461_at"	"ZNRF4"	148066	"ENSG00000105428"
+"214520_at"	"FOXC2"	2303	"ENSG00000176692"
+"214566_at"	"SMR3A"	26952	"ENSG00000109208"
+"213298_at"	"NFIC"	4782	"ENSG00000141905"
+"210706_s_at"	"RNF24"	11237	"ENSG00000101236"
+"213238_at"	"ATP10D"	57205	"ENSG00000145246"
+"214495_at"	"CACNG2"	10369	"ENSG00000166862"
+"213415_at"	"CLIC2"	1193	"ENSG00000155962"
+"215543_s_at"	"LARGE1"	9215	"ENSG00000133424"
+"213546_at"	""	NA	"ENSG00000235859"
+"212057_at"	"GSE1"	23199	"ENSG00000131149"
+"212056_at"	"GSE1"	23199	"ENSG00000131149"
+"214429_at"	"MTMR6"	9107	"ENSG00000139505"
+"214636_at"	"CALCB"	797	"ENSG00000175868"
+"211362_s_at"	"SERPINB13"	5275	"ENSG00000197641"
+"211361_s_at"	"SERPINB13"	5275	"ENSG00000197641"
+"211906_s_at"	"SERPINB4"	6318	"ENSG00000206073"
+"210947_s_at"	"MSH3"	4437	"ENSG00000113318"
+"213139_at"	"SNAI2"	6591	"ENSG00000019549"
+"215241_at"	"ANO3"	63982	"ENSG00000134343"
+"210552_s_at"	"RALGPS1"	9649	"ENSG00000136828"
+"215210_s_at"	"DLST"	1743	"ENSG00000119689"
+"215303_at"	"DCLK1"	9201	"ENSG00000133083"
+"212521_s_at"	"PDE8A"	5151	"ENSG00000073417"
+"212522_at"	"PDE8A"	5151	"ENSG00000073417"
+"214009_at"	"MSL3"	10943	"ENSG00000005302"
+"213290_at"	"COL6A2"	1292	"ENSG00000142173"
+"215427_s_at"	"ZCCHC14"	23174	"ENSG00000140948"
+"212655_at"	"ZCCHC14"	23174	"ENSG00000140948"
+"212905_at"	"CSTF2T"	23283	"ENSG00000177613"
+"212901_s_at"	"CSTF2T"	23283	"ENSG00000177613"
+"214321_at"	"CCN3"	4856	"ENSG00000136999"
+"212738_at"	"ARHGAP19"	84986	"ENSG00000213390"
+"212604_at"	"MRPS31"	10240	"ENSG00000102738"
+"212603_at"	"MRPS31"	10240	"ENSG00000102738"
+"215179_x_at"	"PGF"	5228	"ENSG00000119630"
+"215111_s_at"	"TSC22D1"	8848	"ENSG00000102804"
+"213075_at"	"OLFML2A"	169611	"ENSG00000185585"
+"213846_at"	"COX7C"	1350	"ENSG00000127184"
+"212681_at"	"EPB41L3"	23136	"ENSG00000082397"
+"211776_s_at"	"EPB41L3"	23136	"ENSG00000082397"
+"211679_x_at"	"GABBR2"	9568	"ENSG00000136928"
+"214525_x_at"	"MLH3"	27030	"ENSG00000119684"
+"214986_x_at"	"PPIL2"	23759	"ENSG00000100023"
+"215081_at"	"MINAR1"	23251	"ENSG00000169330"
+"211917_s_at"	"PRLR"	5618	"ENSG00000113494"
+"211595_s_at"	"MRPS11"	64963	"ENSG00000181991"
+"212319_at"	"SGSM2"	9905	"ENSG00000141258"
+"213911_s_at"	"H2AZ1"	3015	"ENSG00000164032"
+"212352_s_at"	"TMED10"	10972	"ENSG00000170348"
+"213874_at"	"SERPINA4"	5267	"ENSG00000100665"
+"213792_s_at"	"INSR"	3643	"ENSG00000171105"
+"213996_at"	"YPEL1"	29799	"ENSG00000100027"
+"211922_s_at"	"CAT"	847	"ENSG00000121691"
+"215190_at"	"EIF3M"	10480	"ENSG00000149100"
+"214595_at"	"KCNG1"	3755	"ENSG00000026559"
+"211053_at"	"KCNG1"	3755	"ENSG00000026559"
+"212496_s_at"	"KDM4B"	23030	"ENSG00000127663"
+"212492_s_at"	"KDM4B"	23030	"ENSG00000127663"
+"212495_at"	"KDM4B"	23030	"ENSG00000127663"
+"212422_at"	"PDCD11"	22984	"ENSG00000148843"
+"212424_at"	"PDCD11"	22984	"ENSG00000148843"
+"215495_s_at"	"SAMD4A"	23034	"ENSG00000020577"
+"215120_s_at"	"SAMD4A"	23034	"ENSG00000020577"
+"212845_at"	"SAMD4A"	23034	"ENSG00000020577"
+"215496_at"	"SAMD4A"	23034	"ENSG00000020577"
+"214138_at"	"ZNF79"	7633	"ENSG00000196152"
+"212934_at"	"UBXN2B"	137886	"ENSG00000215114"
+"212601_at"	"ZZEF1"	23140	"ENSG00000074755"
+"213245_at"	"ADCY1"	107	"ENSG00000164742"
+"215348_at"	"ADCY1"	107	"ENSG00000164742"
+"212651_at"	"RHOBTB1"	9886	"ENSG00000072422"
+"210611_s_at"	"DTNA"	1837	"ENSG00000134769"
+"210736_x_at"	"DTNA"	1837	"ENSG00000134769"
+"211493_x_at"	"DTNA"	1837	"ENSG00000134769"
+"213779_at"	"EMID1"	129080	"ENSG00000186998"
+"211698_at"	"EID1"	23741	"ENSG00000255302"
+"214914_at"	"FAM13C"	220965	"ENSG00000148541"
+"211220_s_at"	"HSF2"	3298	"ENSG00000025156"
+"212936_at"	"FAM172A"	83989	"ENSG00000113391"
+"215323_at"	"LUZP2"	338645	"ENSG00000187398"
+"210532_s_at"	"ATP5MJ"	9556	"ENSG00000156411"
+"214120_at"	"RFPL1S"	NA	"ENSG00000225465"
+"215419_at"	"ZFR2"	23217	"ENSG00000105278"
+"214079_at"	"DHRS2"	10202	"ENSG00000100867"
+"214679_x_at"	"GNA11"	2767	"ENSG00000088256"
+"213944_x_at"	"GNA11"	2767	"ENSG00000088256"
+"213766_x_at"	"GNA11"	2767	"ENSG00000088256"
+"211241_at"	"ANXA2P3"	NA	"ENSG00000216740"
+"210946_at"	"PLPP1"	8611	"ENSG00000067113"
+"214095_at"	"SHMT2"	6472	"ENSG00000182199"
+"214437_s_at"	"SHMT2"	6472	"ENSG00000182199"
+"214096_s_at"	"SHMT2"	6472	"ENSG00000182199"
+"210542_s_at"	"SLCO3A1"	28232	"ENSG00000176463"
+"215424_s_at"	"SNW1"	22938	"ENSG00000100603"
+"213930_at"	"ATG12"	9140	"ENSG00000145782"
+"213026_at"	"ATG12"	9140	"ENSG00000145782"
+"211685_s_at"	"NCALD"	83988	"ENSG00000104490"
+"213110_s_at"	"COL4A5"	1287	"ENSG00000188153"
+"212589_at"	"RRAS2"	22800	"ENSG00000133818"
+"213042_s_at"	"ATP2A3"	489	"ENSG00000074370"
+"213036_x_at"	"ATP2A3"	489	"ENSG00000074370"
+"213994_s_at"	"SPON1"	10418	"ENSG00000262655"
+"213993_at"	"SPON1"	10418	"ENSG00000262655"
+"215216_at"	"VPS16"	64601	"ENSG00000215305"
+"212798_s_at"	"ANKMY2"	57037	"ENSG00000106524"
+"214485_at"	"ODF1"	4956	"ENSG00000155087"
+"210642_at"	"CCIN"	881	"ENSG00000185972"
+"214727_at"	"BRCA2"	675	"ENSG00000139618"
+"213733_at"	"MYO1F"	4542	"ENSG00000142347"
+"212531_at"	"LCN2"	3934	"ENSG00000148346"
+"214276_at"	"KLF12"	11278	"ENSG00000118922"
+"213630_at"	"NACAD"	23148	"ENSG00000136274"
+"210701_at"	"CFDP1"	10428	"ENSG00000153774"
+"210527_x_at"	"TUBA3C"	7278	"ENSG00000198033"
+"213986_s_at"	"TMEM259"	91304	"ENSG00000182087"
+"212575_at"	"TMEM259"	91304	"ENSG00000182087"
+"212574_x_at"	"TMEM259"	91304	"ENSG00000182087"
+"214895_s_at"	"ADAM10"	102	"ENSG00000137845"
+"214668_at"	"SPRYD7"	57213	"ENSG00000123178"
+"211089_s_at"	"NEK3"	4752	"ENSG00000136098"
+"213116_at"	"NEK3"	4752	"ENSG00000136098"
+"212545_s_at"	"ZHX3"	23051	"ENSG00000174306"
+"213094_at"	"ADGRG6"	57211	"ENSG00000112414"
+"211078_s_at"	"STK3"	6788	"ENSG00000104375"
+"211447_s_at"	"PDE4A"	5141	"ENSG00000065989"
+"211901_s_at"	"PDE4A"	5141	"ENSG00000065989"
+"211591_s_at"	"PDE4A"	5141	"ENSG00000065989"
+"211382_s_at"	"TACC2"	10579	"ENSG00000138162"
+"213799_s_at"	"PTPRA"	5786	"ENSG00000132670"
+"213795_s_at"	"PTPRA"	5786	"ENSG00000132670"
+"213776_at"	"ZNNT1"	NA	"ENSG00000261087"
+"210807_s_at"	"SLC16A7"	9194	"ENSG00000118596"
+"214046_at"	"FUT9"	10690	"ENSG00000172461"
+"214263_x_at"	"POLR2C"	5432	"ENSG00000102978"
+"213602_s_at"	""	NA	"ENSG00000267954"
+"210999_s_at"	"GRB10"	2887	"ENSG00000106070"
+"210561_s_at"	"WSB1"	26118	"ENSG00000109046"
+"212815_at"	"ASCC3"	10973	"ENSG00000112249"
+"211670_x_at"	"SSX3"	10214	"ENSG00000165584"
+"211731_x_at"	"SSX3"	10214	"ENSG00000165584"
+"213566_at"	"RNASE6"	6039	"ENSG00000169413"
+"210994_x_at"	"TRIM23"	373	"ENSG00000113595"
+"210995_s_at"	"TRIM23"	373	"ENSG00000113595"
+"213853_at"	"DNAJC24"	120526	"ENSG00000170946"
+"213937_s_at"	"FTSJ1"	24140	"ENSG00000068438"
+"212962_at"	"SYDE1"	85360	"ENSG00000105137"
+"214691_x_at"	"MINDY2"	54629	"ENSG00000128923"
+"210616_s_at"	"SEC31A"	22872	"ENSG00000138674"
+"215073_s_at"	"NR2F2"	7026	"ENSG00000185551"
+"214769_at"	"CLCN4"	1183	"ENSG00000073464"
+"215170_s_at"	"CEP152"	22995	"ENSG00000103995"
+"212858_at"	"PAQR4"	124222	"ENSG00000162073"
+"214635_at"	"CLDN9"	9080	"ENSG00000213937"
+"213320_at"	"PRMT3"	10196	"ENSG00000185238"
+"212654_at"	"TPM2"	7169	"ENSG00000198467"
+"214633_at"	"SOX3"	6658	"ENSG00000134595"
+"212501_at"	"CEBPB"	1051	"ENSG00000172216"
+"214061_at"	"TBC1D31"	93594	"ENSG00000156787"
+"213395_at"	"MLC1"	23209	"ENSG00000100427"
+"213839_at"	"CLMN"	79789	"ENSG00000165959"
+"211729_x_at"	"BLVRA"	644	"ENSG00000106605"
+"214776_x_at"	"XYLB"	9942	"ENSG00000093217"
+"211132_at"	""	NA	"ENSG00000269823"
+"213018_at"	"GATAD1"	57798	"ENSG00000157259"
+"214718_at"	"GATAD1"	57798	"ENSG00000157259"
+"211706_s_at"	"CDK19"	23097	"ENSG00000155111"
+"212899_at"	"CDK19"	23097	"ENSG00000155111"
+"212897_at"	"CDK19"	23097	"ENSG00000155111"
+"210792_x_at"	"SIVA1"	10572	"ENSG00000184990"
+"214237_x_at"	"PAWR"	5074	"ENSG00000177425"
+"210724_at"	"ADGRE3"	84658	"ENSG00000131355"
+"212686_at"	"PPM1H"	57460	"ENSG00000111110"
+"214344_at"	"TMEM8B"	51754	"ENSG00000137103"
+"213064_at"	"ZC3H14"	79882	"ENSG00000100722"
+"213063_at"	"ZC3H14"	79882	"ENSG00000100722"
+"212157_at"	"SDC2"	6383	"ENSG00000169439"
+"212158_at"	"SDC2"	6383	"ENSG00000169439"
+"212154_at"	"SDC2"	6383	"ENSG00000169439"
+"213497_at"	"ABTB2"	25841	"ENSG00000166016"
+"212833_at"	"SLC25A46"	91137	"ENSG00000164209"
+"214582_at"	"PDE3B"	5140	"ENSG00000152270"
+"213558_at"	"PCLO"	27445	"ENSG00000186472"
+"210650_s_at"	"PCLO"	27445	"ENSG00000186472"
+"214371_at"	"TSSK2"	23617	"ENSG00000206203"
+"212577_at"	"SMCHD1"	23347	"ENSG00000101596"
+"212579_at"	"SMCHD1"	23347	"ENSG00000101596"
+"212569_at"	"SMCHD1"	23347	"ENSG00000101596"
+"214391_x_at"	"PTGER1"	5731	"ENSG00000160951"
+"213549_at"	"PDZD8"	118987	"ENSG00000165650"
+"210624_s_at"	"ILVBL"	10994	"ENSG00000105135"
+"213624_at"	"SMPDL3A"	10924	"ENSG00000172594"
+"211986_at"	"AHNAK"	79026	"ENSG00000124942"
+"214156_at"	"MYRIP"	25924	"ENSG00000170011"
+"214010_s_at"	"ATP9B"	374868	"ENSG00000166377"
+"214934_at"	"ATP9B"	374868	"ENSG00000166377"
+"210576_at"	"CYP4F8"	11283	"ENSG00000186526"
+"214581_x_at"	"TNFRSF21"	27242	"ENSG00000146072"
+"211849_s_at"	"RNGTT"	8732	"ENSG00000111880"
+"211387_x_at"	"RNGTT"	8732	"ENSG00000111880"
+"212867_at"	"NCOA2"	10499	"ENSG00000140396"
+"214389_at"	"SLC5A12"	159963	"ENSG00000148942"
+"213322_at"	"OARD1"	221443	"ENSG00000124596"
+"215394_at"	"PIK3C3"	5289	"ENSG00000078142"
+"211842_s_at"	"SLC24A1"	9187	"ENSG00000074621"
+"212646_at"	"RFTN1"	23180	"ENSG00000131378"
+"214787_at"	"DENND4A"	10260	"ENSG00000174485"
+"214623_at"	"FBXW4P1"	26226	"ENSG00000230701"
+"213386_at"	"PGAP4"	84302	"ENSG00000165152"
+"214725_at"	"SBSPON"	157869	"ENSG00000164764"
+"210675_s_at"	"PTPRR"	5801	"ENSG00000153233"
+"210639_s_at"	"ATG5"	9474	"ENSG00000057663"
+"210601_at"	"CDH6"	1004	"ENSG00000113361"
+"210602_s_at"	"CDH6"	1004	"ENSG00000113361"
+"214803_at"	"CDH6"	1004	"ENSG00000113361"
+"213793_s_at"	"HOMER1"	9456	"ENSG00000152413"
+"210761_s_at"	"GRB7"	2886	"ENSG00000141738"
+"214692_s_at"	"JRK"	8629	"ENSG00000234616"
+"210517_s_at"	"AKAP12"	9590	"ENSG00000131016"
+"214630_at"	"CYP11B2"	1585	"ENSG00000179142"
+"213479_at"	"NPTX2"	4885	"ENSG00000106236"
+"214536_at"	"SLURP1"	57152	"ENSG00000126233"
+"212880_at"	"WDR7"	23335	"ENSG00000091157"
+"210794_s_at"	"MEG3"	55384	"ENSG00000214548"
+"212732_at"	"MEG3"	55384	"ENSG00000214548"
+"215439_x_at"	"SYNPO2"	171024	"ENSG00000172403"
+"213975_s_at"	"LYZ"	4069	"ENSG00000090382"
+"213802_at"	"PRSS12"	8492	"ENSG00000164099"
+"214997_at"	"SCAI"	286205	"ENSG00000173611"
+"211617_at"	"ALDOAP2"	NA	"ENSG00000214297"
+"211359_s_at"	"OPRM1"	4988	"ENSG00000112038"
+"214577_at"	"MAP1B"	4131	"ENSG00000131711"
+"212233_at"	"MAP1B"	4131	"ENSG00000131711"
+"215023_s_at"	"PEX1"	5189	"ENSG00000127980"
+"213645_at"	"ENOSF1"	55556	"ENSG00000132199"
+"215209_at"	"SEC24D"	9871	"ENSG00000150961"
+"215004_s_at"	"SUGP1"	57794	"ENSG00000105705"
+"213256_at"	"MARCHF3"	115123	"ENSG00000173926"
+"212180_at"	"CRKL"	1399	"ENSG00000099942"
+"214518_at"	"PDHA2"	5161	"ENSG00000163114"
+"214571_at"	"FGF3"	2248	"ENSG00000186895"
+"212836_at"	"POLD3"	10714	"ENSG00000077514"
+"214037_s_at"	"CCDC22"	28952	"ENSG00000101997"
+"214202_at"	"PGGT1B"	5229	"ENSG00000164219"
+"213196_at"	"ZNF629"	23361	"ENSG00000102870"
+"210990_s_at"	"LAMA4"	3910	"ENSG00000112769"
+"210989_at"	"LAMA4"	3910	"ENSG00000112769"
+"214850_at"	""	NA	"ENSG00000281650"
+"210681_s_at"	"USP15"	9958	"ENSG00000135655"
+"214286_at"	"GNAT1"	2779	"ENSG00000114349"
+"213744_at"	"ATRNL1"	26033	"ENSG00000107518"
+"213745_at"	"ATRNL1"	26033	"ENSG00000107518"
+"214708_at"	"SNTB1"	6641	"ENSG00000172164"
+"215431_at"	"SNTB1"	6641	"ENSG00000172164"
+"213341_at"	"FEM1C"	56929	"ENSG00000145780"
+"211022_s_at"	"ATRX"	546	"ENSG00000085224"
+"215305_at"	"PDGFRA"	5156	"ENSG00000134853"
+"211445_x_at"	"NACA4P"	NA	"ENSG00000228224"
+"212682_s_at"	"LMF2"	91289	"ENSG00000100258"
+"213791_at"	"PENK"	5179	"ENSG00000181195"
+"210849_s_at"	"VPS41"	27072	"ENSG00000006715"
+"212448_at"	"NEDD4L"	23327	"ENSG00000049759"
+"212445_s_at"	"NEDD4L"	23327	"ENSG00000049759"
+"214885_at"	"KAT8"	84148	"ENSG00000103510"
+"214658_at"	"TMED7"	51014	"ENSG00000134970"
+"212050_at"	"WIPF2"	147179	"ENSG00000171475"
+"212051_at"	"WIPF2"	147179	"ENSG00000171475"
+"212049_at"	"WIPF2"	147179	"ENSG00000171475"
+"213091_at"	"CRTC1"	23373	"ENSG00000105662"
+"210653_s_at"	"BCKDHB"	594	"ENSG00000083123"
+"213321_at"	"BCKDHB"	594	"ENSG00000083123"
+"213410_at"	"EDRF1"	26098	"ENSG00000107938"
+"215072_x_at"	"EDRF1"	26098	"ENSG00000107938"
+"215027_at"	"RAPGEF3"	10411	"ENSG00000079337"
+"213396_s_at"	"AKAP10"	11216	"ENSG00000108599"
+"210697_at"	"ZNF257"	113835	"ENSG00000197134"
+"215532_x_at"	"ZNF492"	57615	"ENSG00000229676"
+"214755_at"	"UAP1L1"	91373	"ENSG00000197355"
+"215257_at"	"ERGIC3"	51614	"ENSG00000125991"
+"210844_x_at"	"CTNNA1"	1495	"ENSG00000044115"
+"213726_x_at"	"TUBB4B"	10383	"ENSG00000188229"
+"211560_s_at"	"ALAS2"	212	"ENSG00000158578"
+"212185_x_at"	"MT2A"	4502	"ENSG00000125148"
+"212859_x_at"	"MT1E"	4493	"ENSG00000169715"
+"213629_x_at"	"MT1F"	4494	"ENSG00000198417"
+"210524_x_at"	"MT1F"	4494	"ENSG00000198417"
+"214752_x_at"	"FLNA"	2316	"ENSG00000196924"
+"213746_s_at"	"FLNA"	2316	"ENSG00000196924"
+"213695_at"	"PON3"	5446	"ENSG00000105852"
+"213805_at"	"ABHD5"	51099	"ENSG00000011198"
+"213935_at"	"ABHD5"	51099	"ENSG00000011198"
+"210677_at"	"SOAT2"	8435	"ENSG00000167780"
+"212600_s_at"	"UQCRC2"	7385	"ENSG00000140740"
+"213370_s_at"	"SFMBT1"	51460	"ENSG00000163935"
+"210998_s_at"	"HGF"	3082	"ENSG00000019991"
+"210997_at"	"HGF"	3082	"ENSG00000019991"
+"210755_at"	"HGF"	3082	"ENSG00000019991"
+"215009_s_at"	"THAP9-AS1"	NA	"ENSG00000251022"
+"212708_at"	"MSL1"	339287	"ENSG00000188895"
+"211471_s_at"	"RAB36"	9609	"ENSG00000100228"
+"211605_s_at"	"RARA"	5914	"ENSG00000131759"
+"213760_s_at"	"ZNF330"	27309	"ENSG00000109445"
+"211312_s_at"	"CCN4"	8840	"ENSG00000104415"
+"213505_s_at"	"SUGP2"	10147	"ENSG00000064607"
+"214092_x_at"	"SUGP2"	10147	"ENSG00000064607"
+"212001_at"	"SUGP2"	10147	"ENSG00000064607"
+"212000_at"	"SUGP2"	10147	"ENSG00000064607"
+"213482_at"	"DOCK3"	1795	"ENSG00000088538"
+"214610_at"	"CYP11B1"	1584	"ENSG00000160882"
+"214288_s_at"	"PSMB1"	5689	"ENSG00000008018"
+"212658_at"	"LHFPL2"	10184	"ENSG00000145685"
+"213056_at"	"FRMD4B"	23150	"ENSG00000114541"
+"214087_s_at"	"MYBPC1"	4604	"ENSG00000196091"
+"214240_at"	"GAL"	51083	"ENSG00000069482"
+"212094_at"	"PEG10"	23089	"ENSG00000242265"
+"212092_at"	"PEG10"	23089	"ENSG00000242265"
+"213175_s_at"	"SNRPB"	6628	"ENSG00000125835"
+"215334_at"	"EFR3B"	22979	"ENSG00000084710"
+"211926_s_at"	"MYH9"	4627	"ENSG00000100345"
+"215335_at"	""	NA	"ENSG00000267934"
+"213702_x_at"	"ASAH1"	427	"ENSG00000104763"
+"210980_s_at"	"ASAH1"	427	"ENSG00000104763"
+"213902_at"	"ASAH1"	427	"ENSG00000104763"
+"212915_at"	"PDZRN3"	23024	"ENSG00000121440"
+"210855_at"	"GREB1"	9687	"ENSG00000196208"
+"210562_at"	"GREB1"	9687	"ENSG00000196208"
+"211559_s_at"	"CCNG2"	901	"ENSG00000138764"
+"213313_at"	"RABGAP1"	23637	"ENSG00000011454"
+"215070_x_at"	"RABGAP1"	23637	"ENSG00000011454"
+"211668_s_at"	"PLAU"	5328	"ENSG00000122861"
+"213581_at"	"PDCD2"	5134	"ENSG00000071994"
+"211747_s_at"	"LSM5"	23658	"ENSG00000106355"
+"211164_at"	"EPHA3"	2042	"ENSG00000044524"
+"212571_at"	"CHD8"	57680	"ENSG00000100888"
+"213387_at"	"ATAD2B"	54454	"ENSG00000119778"
+"212046_x_at"	"MAPK3"	5595	"ENSG00000102882"
+"215560_x_at"	"RGS17"	26575	"ENSG00000091844"
+"211552_s_at"	"ALDH4A1"	8659	"ENSG00000159423"
+"211380_s_at"	"PRKG1"	5592	"ENSG00000185532"
+"213296_at"	"RER1"	11079	"ENSG00000157916"
+"211717_at"	"ANKRD40"	91369	"ENSG00000154945"
+"214640_at"	"UNC93A"	54346	"ENSG00000112494"
+"212326_at"	"VPS13D"	55187	"ENSG00000048707"
+"212323_s_at"	"VPS13D"	55187	"ENSG00000048707"
+"212324_s_at"	"VPS13D"	55187	"ENSG00000048707"
+"210799_at"	"HTR1B"	3351	"ENSG00000135312"
+"210661_at"	"GLRA3"	8001	"ENSG00000145451"
+"210614_at"	"TTPA"	7274	"ENSG00000137561"
+"214979_at"	"ABCC3"	8714	"ENSG00000108846"
+"215146_s_at"	"TTC28"	23331	"ENSG00000100154"
+"213058_at"	"TTC28"	23331	"ENSG00000100154"
+"214238_at"	"GDF7"	151449	"ENSG00000143869"
+"214730_s_at"	"GLG1"	2734	"ENSG00000090863"
+"212045_at"	"GLG1"	2734	"ENSG00000090863"
+"212393_at"	"SBF1"	6305	"ENSG00000100241"
+"212389_at"	"SBF1"	6305	"ENSG00000100241"
+"213383_at"	"SBF1"	6305	"ENSG00000100241"
+"213859_x_at"	"SMARCA5"	8467	"ENSG00000153147"
+"213251_at"	"SMARCA5"	8467	"ENSG00000153147"
+"213601_at"	"SLIT1"	6585	"ENSG00000187122"
+"213118_at"	"BLTP3B"	23074	"ENSG00000111647"
+"210830_s_at"	"PON2"	5445	"ENSG00000105854"
+"214587_at"	"COL8A1"	1295	"ENSG00000144810"
+"211002_s_at"	"TRIM29"	23650	"ENSG00000137699"
+"211001_at"	"TRIM29"	23650	"ENSG00000137699"
+"210659_at"	"CMKLR1"	1240	"ENSG00000174600"
+"213471_at"	"NPHP4"	261734	"ENSG00000131697"
+"211201_at"	"FSHR"	2492	"ENSG00000170820"
+"214396_s_at"	"MBD2"	8932	"ENSG00000134046"
+"214397_at"	"MBD2"	8932	"ENSG00000134046"
+"212114_at"	"ATXN7L3B"	552889	"ENSG00000253719"
+"212113_at"	"ATXN7L3B"	552889	"ENSG00000253719"
+"212959_s_at"	"GNPTAB"	79158	"ENSG00000111670"
+"212923_s_at"	"PXDC1"	221749	"ENSG00000168994"
+"211681_s_at"	"PDLIM5"	10611	"ENSG00000163110"
+"212412_at"	"PDLIM5"	10611	"ENSG00000163110"
+"213684_s_at"	"PDLIM5"	10611	"ENSG00000163110"
+"211680_at"	"PDLIM5"	10611	"ENSG00000163110"
+"210924_at"	"OLFM1"	10439	"ENSG00000130558"
+"213131_at"	"OLFM1"	10439	"ENSG00000130558"
+"211093_at"	"PDE6C"	5146	"ENSG00000095464"
+"213338_at"	"TMEM158"	25907	"ENSG00000249992"
+"212268_at"	"SERPINB1"	1992	"ENSG00000021355"
+"213572_s_at"	"SERPINB1"	1992	"ENSG00000021355"
+"211474_s_at"	"SERPINB6"	5269	"ENSG00000124570"
+"214861_at"	"KDM4C"	23081	"ENSG00000107077"
+"214173_x_at"	"URI1"	8725	"ENSG00000105176"
+"211563_s_at"	"URI1"	8725	"ENSG00000105176"
+"214678_x_at"	"ZFX"	7543	"ENSG00000005889"
+"215395_x_at"	"PRSS3P2"	NA	"ENSG00000282667"
+"211267_at"	"HESX1"	8820	"ENSG00000163666"
+"215429_s_at"	"ZNF428"	126299	"ENSG00000131116"
+"213128_s_at"	"UBE3A"	7337	"ENSG00000114062"
+"214980_at"	"UBE3A"	7337	"ENSG00000114062"
+"211575_s_at"	"UBE3A"	7337	"ENSG00000114062"
+"213291_s_at"	"UBE3A"	7337	"ENSG00000114062"
+"211285_s_at"	"UBE3A"	7337	"ENSG00000114062"
+"212278_x_at"	"UBE3A"	7337	"ENSG00000114062"
+"212439_at"	"IP6K1"	9807	"ENSG00000176095"
+"215000_s_at"	"FEZ2"	9637	"ENSG00000171055"
+"210704_at"	"FEZ2"	9637	"ENSG00000171055"
+"213186_at"	"DZIP3"	9666	"ENSG00000198919"
+"212560_at"	"SORL1"	6653	"ENSG00000137642"
+"213358_at"	"MTCL1"	23255	"ENSG00000168502"
+"215259_s_at"	"CADM4"	199731	"ENSG00000105767"
+"215258_at"	"CADM4"	199731	"ENSG00000105767"
+"214440_at"	"NAT1"	9	"ENSG00000171428"
+"211630_s_at"	"GSS"	2937	"ENSG00000100983"
+"213600_at"	"SIPA1L3"	23094	"ENSG00000105738"
+"210771_at"	"PPARA"	5465	"ENSG00000186951"
+"215554_at"	"GPLD1"	2822	"ENSG00000112293"
+"213666_at"	"SEPTIN6"	23157	"ENSG00000125354"
+"212415_at"	"SEPTIN6"	23157	"ENSG00000125354"
+"212414_s_at"	"SEPTIN6"	23157	"ENSG00000125354"
+"212413_at"	"SEPTIN6"	23157	"ENSG00000125354"
+"214298_x_at"	"SEPTIN6"	23157	"ENSG00000125354"
+"214866_at"	"PLAUR"	5329	"ENSG00000011422"
+"210845_s_at"	"PLAUR"	5329	"ENSG00000011422"
+"211924_s_at"	"PLAUR"	5329	"ENSG00000011422"
+"215187_at"	"LINC01949"	NA	"ENSG00000288569"
+"212059_s_at"	"TRPC4AP"	26133	"ENSG00000100991"
+"212491_s_at"	"DNAJC8"	22826	"ENSG00000126698"
+"212490_at"	"DNAJC8"	22826	"ENSG00000126698"
+"213093_at"	"PRKCA"	5578	"ENSG00000154229"
+"215195_at"	"PRKCA"	5578	"ENSG00000154229"
+"214505_s_at"	"FHL1"	2273	"ENSG00000022267"
+"214846_s_at"	"ALPK3"	57538	"ENSG00000136383"
+"214392_at"	"IRGC"	56269	"ENSG00000124449"
+"213738_s_at"	"ATP5F1A"	498	"ENSG00000152234"
+"210870_s_at"	"EPM2A"	7957	"ENSG00000112425"
+"215149_at"	"AJAP1"	55966	"ENSG00000196581"
+"215442_s_at"	"TSHR"	7253	"ENSG00000165409"
+"215443_at"	"TSHR"	7253	"ENSG00000165409"
+"211661_x_at"	"PTAFR"	5724	"ENSG00000169403"
+"214070_s_at"	"ATP10B"	23120	"ENSG00000118322"
+"214697_s_at"	"PTBP3"	9991	"ENSG00000119314"
+"214698_at"	"PTBP3"	9991	"ENSG00000119314"
+"215243_s_at"	"GJB3"	2707	"ENSG00000188910"
+"214531_s_at"	"SNX1"	6642	"ENSG00000028528"
+"213364_s_at"	"SNX1"	6642	"ENSG00000028528"
+"212453_at"	"KIFBP"	26128	"ENSG00000198954"
+"215289_at"	"ZNF749"	388567	"ENSG00000186230"
+"214285_at"	"FABP3"	2170	"ENSG00000121769"
+"214162_at"	"ASXL3"	80816	"ENSG00000141431"
+"214672_at"	"TTLL5"	23093	"ENSG00000119685"
+"210539_at"	"TTLL5"	23093	"ENSG00000119685"
+"210806_at"	"TTLL5"	23093	"ENSG00000119685"
+"213273_at"	"TENM4"	26011	"ENSG00000149256"
+"213775_x_at"	"ZNF638"	27332	"ENSG00000075292"
+"211257_x_at"	"ZNF638"	27332	"ENSG00000075292"
+"214795_at"	"ZMYND8"	23613	"ENSG00000101040"
+"215138_s_at"	"KAZN"	23254	"ENSG00000189337"
+"213752_at"	"KAZN"	23254	"ENSG00000189337"
+"213478_at"	"KAZN"	23254	"ENSG00000189337"
+"215094_at"	"SPICE1"	152185	"ENSG00000163611"
+"211671_s_at"	"NR3C1"	2908	"ENSG00000113580"
+"212582_at"	"OSBPL8"	114882	"ENSG00000091039"
+"212585_at"	"OSBPL8"	114882	"ENSG00000091039"
+"215533_s_at"	"UBE4B"	10277	"ENSG00000130939"
+"210685_s_at"	"UBE4B"	10277	"ENSG00000130939"
+"211713_x_at"	"PCLAF"	9768	"ENSG00000166803"
+"212144_at"	"SUN2"	25777	"ENSG00000100242"
+"211423_s_at"	"SC5D"	6309	"ENSG00000109929"
+"215064_at"	"SC5D"	6309	"ENSG00000109929"
+"212564_at"	"KCTD2"	23510	"ENSG00000180901"
+"214483_s_at"	"ARFIP1"	27236	"ENSG00000164144"
+"212652_s_at"	"SNX4"	8723	"ENSG00000114520"
+"211320_s_at"	"PTPRU"	10076	"ENSG00000060656"
+"212066_s_at"	"USP34"	9736	"ENSG00000115464"
+"212065_s_at"	"USP34"	9736	"ENSG00000115464"
+"215013_s_at"	"USP34"	9736	"ENSG00000115464"
+"211923_s_at"	"ZNF471"	57573	"ENSG00000196263"
+"212876_at"	"B4GALT4"	8702	"ENSG00000121578"
+"210540_s_at"	"B4GALT4"	8702	"ENSG00000121578"
+"215460_x_at"	"BRD1"	23774	"ENSG00000100425"
+"211727_s_at"	"COX11"	1353	"ENSG00000166260"
+"214277_at"	"COX11"	1353	"ENSG00000166260"
+"214923_at"	"ATP6V1D"	51382	"ENSG00000100554"
+"210595_at"	"ZNF235"	9310	"ENSG00000159917"
+"214949_at"	"POMK"	84197	"ENSG00000185900"
+"214948_s_at"	"POMK"	84197	"ENSG00000185900"
+"212751_at"	"UBE2N"	7334	"ENSG00000177889"
+"212400_at"	"EEIG1"	399665	"ENSG00000167106"
+"211147_s_at"	"P2RX6"	9127	"ENSG00000099957"
+"210621_s_at"	"RASA1"	5921	"ENSG00000145715"
+"215516_at"	"LAMB4"	22798	"ENSG00000091128"
+"213523_at"	"CCNE1"	898	"ENSG00000105173"
+"211124_s_at"	"KITLG"	4254	"ENSG00000049130"
+"210839_s_at"	"ENPP2"	5168	"ENSG00000136960"
+"213850_s_at"	"SCAF11"	9169	"ENSG00000139218"
+"214738_s_at"	"NEK9"	91754	"ENSG00000119638"
+"212299_at"	"NEK9"	91754	"ENSG00000119638"
+"212820_at"	"DMXL2"	23312	"ENSG00000104093"
+"213306_at"	"MPDZ"	8777	"ENSG00000107186"
+"211252_x_at"	"PTCRA"	171558	"ENSG00000171611"
+"211837_s_at"	"PTCRA"	171558	"ENSG00000171611"
+"215492_x_at"	"PTCRA"	171558	"ENSG00000171611"
+"211697_x_at"	"PNO1"	56902	"ENSG00000115946"
+"213241_at"	"PLXNC1"	10154	"ENSG00000136040"
+"211159_s_at"	"PPP2R5D"	5528	"ENSG00000112640"
+"213591_at"	"ALDH7A1"	501	"ENSG00000164904"
+"212979_s_at"	"TCAF1"	9747	"ENSG00000198420"
+"212981_s_at"	"TCAF1"	9747	"ENSG00000198420"
+"213899_at"	"METAP2"	10988	"ENSG00000111142"
+"214434_at"	"HSPA12A"	259217	"ENSG00000165868"
+"212356_at"	"KHNYN"	23351	"ENSG00000100441"
+"212355_at"	"KHNYN"	23351	"ENSG00000100441"
+"213707_s_at"	"DLX5"	1749	"ENSG00000105880"
+"214533_at"	"CMA1"	1215	"ENSG00000092009"
+"214821_at"	"SLC25A4"	291	"ENSG00000151729"
+"213353_at"	"ABCA5"	23461	"ENSG00000154265"
+"215021_s_at"	"NRXN3"	9369	"ENSG00000021645"
+"215020_at"	"NRXN3"	9369	"ENSG00000021645"
+"212754_s_at"	"MON2"	23041	"ENSG00000061987"
+"212755_at"	"MON2"	23041	"ENSG00000061987"
+"212359_s_at"	"ZSWIM8"	23053	"ENSG00000214655"
+"210593_at"	"ZSWIM8"	23053	"ENSG00000214655"
+"212791_at"	"C1orf216"	127703	"ENSG00000142686"
+"214957_at"	"ACTL8"	81569	"ENSG00000117148"
+"214208_at"	"RPS3"	6188	"ENSG00000149273"
+"210879_s_at"	"RAB11FIP5"	26056	"ENSG00000135631"
+"214652_at"	"DRD1"	1812	"ENSG00000184845"
+"213484_at"	"ADD2"	119	"ENSG00000075340"
+"215548_s_at"	"SCFD1"	23256	"ENSG00000092108"
+"215196_at"	"ASLP1"	NA	"ENSG00000244723"
+"213343_s_at"	"GDPD5"	81544	"ENSG00000158555"
+"212894_at"	"SUPV3L1"	6832	"ENSG00000156502"
+"212341_at"	"YIPF6"	286451	"ENSG00000181704"
+"212343_at"	"YIPF6"	286451	"ENSG00000181704"
+"212342_at"	"YIPF6"	286451	"ENSG00000181704"
+"212340_at"	"YIPF6"	286451	"ENSG00000181704"
+"215494_at"	""	NA	"ENSG00000228095"
+"215107_s_at"	"TTC22"	55001	"ENSG00000006555"
+"215106_at"	"TTC22"	55001	"ENSG00000006555"
+"214539_at"	"SERPINB10"	5273	"ENSG00000242550"
+"212964_at"	"HIC2"	23119	"ENSG00000169635"
+"212966_at"	"HIC2"	23119	"ENSG00000169635"
+"212965_at"	"HIC2"	23119	"ENSG00000169635"
+"212640_at"	"HACD2"	201562	"ENSG00000206527"
+"210991_s_at"	"RIMS3"	9783	"ENSG00000117016"
+"213204_at"	"CUL9"	23113	"ENSG00000112659"
+"213871_s_at"	"CUL9"	23113	"ENSG00000112659"
+"212949_at"	"NCAPH"	23397	"ENSG00000121152"
+"212927_at"	"SMC5"	23137	"ENSG00000198887"
+"212926_at"	"SMC5"	23137	"ENSG00000198887"
+"215298_at"	"LINC02172"	105377443	"ENSG00000251632"
+"211549_s_at"	"HPGD"	3248	"ENSG00000164120"
+"211548_s_at"	"HPGD"	3248	"ENSG00000164120"
+"213836_s_at"	"WIPI1"	55062	"ENSG00000070540"
+"212595_s_at"	"DAZAP2"	9802	"ENSG00000183283"
+"214334_x_at"	"DAZAP2"	9802	"ENSG00000183283"
+"215355_at"	"POU2F3"	25833	"ENSG00000137709"
+"214273_x_at"	"NPRL3"	8131	"ENSG00000103148"
+"210672_s_at"	"NPRL3"	8131	"ENSG00000103148"
+"215214_at"	"IGLV3-25"	NA	"ENSG00000211659"
+"214198_s_at"	"DGCR2"	9993	"ENSG00000070413"
+"211126_s_at"	"CSRP2"	1466	"ENSG00000175183"
+"210544_s_at"	"ALDH3A2"	224	"ENSG00000072210"
+"212090_at"	"GRINA"	2907	"ENSG00000178719"
+"215283_at"	"LINC00667"	339290	"ENSG00000263753"
+"213325_at"	"NECTIN3"	25945	"ENSG00000177707"
+"215263_at"	"ZXDA"	7789	"ENSG00000198205"
+"212543_at"	"CRYBG1"	202	"ENSG00000112297"
+"215346_at"	"CD40"	958	"ENSG00000101017"
+"213751_at"	"PPP1R37"	284352	"ENSG00000104866"
+"213781_at"	"PPP1R37"	284352	"ENSG00000104866"
+"211376_s_at"	"NSMCE4A"	54780	"ENSG00000107672"
+"210556_at"	"NFATC3"	4775	"ENSG00000072736"
+"210555_s_at"	"NFATC3"	4775	"ENSG00000072736"
+"213400_s_at"	"TBL1X"	6907	"ENSG00000101849"
+"210730_s_at"	"NPY2R"	4887	"ENSG00000185149"
+"210729_at"	"NPY2R"	4887	"ENSG00000185149"
+"213904_at"	"FRRS1L"	23732	"ENSG00000260230"
+"211949_s_at"	"NOLC1"	9221	"ENSG00000166197"
+"211951_at"	"NOLC1"	9221	"ENSG00000166197"
+"215416_s_at"	"STOML2"	30968	"ENSG00000165283"
+"214369_s_at"	"RASGRP2"	10235	"ENSG00000068831"
+"214368_at"	"RASGRP2"	10235	"ENSG00000068831"
+"215154_at"	"ULK2"	9706	"ENSG00000083290"
+"210637_at"	"TACR1"	6869	"ENSG00000115353"
+"211433_x_at"	"ATOSB"	80256	"ENSG00000005238"
+"213225_at"	"PPM1B"	5495	"ENSG00000138032"
+"213659_at"	"ZNF75D"	7626	"ENSG00000186376"
+"214813_at"	"ZNF75D"	7626	"ENSG00000186376"
+"210760_x_at"	"TRIP11"	9321	"ENSG00000100815"
+"213890_x_at"	"RPS16"	6217	"ENSG00000105193"
+"215110_at"	"MBL1P"	8512	"ENSG00000242600"
+"214199_at"	"SFTPD"	6441	"ENSG00000133661"
+"212256_at"	"GALNT10"	55568	"ENSG00000164574"
+"211116_at"	"SLC9A2"	6549	"ENSG00000115616"
+"213653_at"	"METTL3"	56339	"ENSG00000165819"
+"212230_at"	"PLPP3"	8613	"ENSG00000162407"
+"211036_x_at"	"ANAPC5"	51433	"ENSG00000089053"
+"213283_s_at"	"SALL2"	6297	"ENSG00000165821"
+"212337_at"	"TUG1"	55000	"ENSG00000253352"
+"212725_s_at"	"TUG1"	55000	"ENSG00000253352"
+"213437_at"	"RUFY3"	22902	"ENSG00000018189"
+"213430_at"	"RUFY3"	22902	"ENSG00000018189"
+"213939_s_at"	"RUFY3"	22902	"ENSG00000018189"
+"212870_at"	"SOS2"	6655	"ENSG00000100485"
+"211665_s_at"	"SOS2"	6655	"ENSG00000100485"
+"211438_at"	"TRHR"	7201	"ENSG00000174417"
+"214484_s_at"	"SIGMAR1"	10280	"ENSG00000147955"
+"211379_x_at"	"B3GALNT1"	8706	"ENSG00000169255"
+"211812_s_at"	"B3GALNT1"	8706	"ENSG00000169255"
+"212731_at"	"ANKRD46"	157567	"ENSG00000186106"
+"212704_at"	"TUT4"	23318	"ENSG00000134744"
+"210876_at"	"ANXA2P1"	NA	"ENSG00000213406"
+"211522_s_at"	"GNRHR"	2798	"ENSG00000109163"
+"211523_at"	"GNRHR"	2798	"ENSG00000109163"
+"215157_x_at"	"PABPC1"	26986	"ENSG00000070756"
+"215173_at"	"DNAAF1"	123872	"ENSG00000154099"
+"215341_at"	"DNAH6"	1768	"ENSG00000115423"
+"211696_x_at"	"HBB"	3043	"ENSG00000244734"
+"211792_s_at"	"CDKN2C"	1031	"ENSG00000123080"
+"211788_s_at"	"TREX2"	11219	"ENSG00000183479"
+"210981_s_at"	"GRK6"	2870	"ENSG00000198055"
+"211543_s_at"	"GRK6"	2870	"ENSG00000198055"
+"212664_at"	"TUBB4A"	10382	"ENSG00000104833"
+"213174_at"	"TTC9"	23508	"ENSG00000133985"
+"213172_at"	"TTC9"	23508	"ENSG00000133985"
+"214969_at"	"MAP3K9"	4293	"ENSG00000006432"
+"213927_at"	"MAP3K9"	4293	"ENSG00000006432"
+"211476_at"	"MYOZ2"	51778	"ENSG00000172399"
+"213782_s_at"	"MYOZ2"	51778	"ENSG00000172399"
+"214490_at"	"ARSF"	416	"ENSG00000062096"
+"212887_at"	"SEC23A"	10484	"ENSG00000100934"
+"214498_at"	"ASIP"	434	"ENSG00000101440"
+"215534_at"	""	NA	"ENSG00000279821"
+"213215_at"	"AP3S2"	10239	"ENSG00000157823"
+"211855_s_at"	"SLC25A14"	9016	"ENSG00000102078"
+"211063_s_at"	"NCK1"	4690	"ENSG00000158092"
+"212037_at"	"PNN"	5411	"ENSG00000100941"
+"212036_s_at"	"PNN"	5411	"ENSG00000100941"
+"213763_at"	"HIPK2"	28996	"ENSG00000064393"
+"210883_x_at"	"EFNB3"	1949	"ENSG00000108947"
+"213503_x_at"	"ANXA2"	302	"ENSG00000182718"
+"212431_at"	"HMGXB3"	22993	"ENSG00000113716"
+"212279_at"	"TMEM97"	27346	"ENSG00000109084"
+"214283_at"	"TMEM97"	27346	"ENSG00000109084"
+"212282_at"	"TMEM97"	27346	"ENSG00000109084"
+"212281_s_at"	"TMEM97"	27346	"ENSG00000109084"
+"211258_s_at"	"TGFA"	7039	"ENSG00000163235"
+"210750_s_at"	"DLGAP1"	9229	"ENSG00000170579"
+"215034_s_at"	"TM4SF1"	4071	"ENSG00000169908"
+"215033_at"	"TM4SF1"	4071	"ENSG00000169908"
+"210617_at"	"PHEX"	5251	"ENSG00000102174"
+"214141_x_at"	"SRSF7"	6432	"ENSG00000115875"
+"213649_at"	"SRSF7"	6432	"ENSG00000115875"
+"213633_at"	"SH3BP1"	23616	"ENSG00000100092"
+"212499_s_at"	"FCF1"	51077	"ENSG00000119616"
+"212611_at"	"DTX4"	23220	"ENSG00000110042"
+"214746_s_at"	"ZNF467"	168544	"ENSG00000181444"
+"212787_at"	"YLPM1"	56252	"ENSG00000119596"
+"214659_x_at"	"YLPM1"	56252	"ENSG00000119596"
+"214713_at"	"YLPM1"	56252	"ENSG00000119596"
+"214656_x_at"	"MYO1C"	4641	"ENSG00000197879"
+"214034_at"	"ERAP1"	51752	"ENSG00000164307"
+"214012_at"	"ERAP1"	51752	"ENSG00000164307"
+"215264_at"	"EMX1"	2016	"ENSG00000135638"
+"215100_at"	"ADTRP"	84830	"ENSG00000111863"
+"210647_x_at"	"PLA2G6"	8398	"ENSG00000184381"
+"213771_at"	"IRF2BP1"	26145	"ENSG00000170604"
+"212630_at"	"EXOC3"	11336	"ENSG00000180104"
+"214993_at"	"ASPHD1"	253982	"ENSG00000174939"
+"213231_at"	"DMWD"	1762	"ENSG00000185800"
+"214804_at"	"CENPI"	2491	"ENSG00000102384"
+"213073_at"	"ZFYVE26"	23503	"ENSG00000072121"
+"211556_at"	"MAPRE2"	10982	"ENSG00000166974"
+"213489_at"	"MAPRE2"	10982	"ENSG00000166974"
+"210592_s_at"	"SAT1"	6303	"ENSG00000130066"
+"215084_s_at"	"LRRC42"	115353	"ENSG00000116212"
+"211451_s_at"	"KCNJ4"	3761	"ENSG00000168135"
+"212252_at"	"CAMKK2"	10645	"ENSG00000110931"
+"213812_s_at"	"CAMKK2"	10645	"ENSG00000110931"
+"210787_s_at"	"CAMKK2"	10645	"ENSG00000110931"
+"213998_s_at"	"DDX17"	10521	"ENSG00000100201"
+"214329_x_at"	"TNFSF10"	8743	"ENSG00000121858"
+"211009_s_at"	"ZNF271P"	10778	"ENSG00000257267"
+"212534_at"	"ZNF24"	7572	"ENSG00000172466"
+"211521_s_at"	"CYTH4"	27128	"ENSG00000100055"
+"213403_at"	"MFSD9"	84804	"ENSG00000135953"
+"213393_at"	"MFSD9"	84804	"ENSG00000135953"
+"212384_at"	"DDX39B"	7919	"ENSG00000198563"
+"211318_s_at"	"RAE1"	8480	"ENSG00000101146"
+"215521_at"	"PHC3"	80012	"ENSG00000173889"
+"211936_at"	"HSPA5"	3309	"ENSG00000044574"
+"212430_at"	"RBM38"	55544	"ENSG00000132819"
+"213603_s_at"	"RAC2"	5880	"ENSG00000128340"
+"214574_x_at"	"LST1"	7940	"ENSG00000204482"
+"211581_x_at"	"LST1"	7940	"ENSG00000204482"
+"210629_x_at"	"LST1"	7940	"ENSG00000204482"
+"214181_x_at"	"LST1"	7940	"ENSG00000204482"
+"211582_x_at"	"LST1"	7940	"ENSG00000204482"
+"212558_at"	"SPRY1"	10252	"ENSG00000164056"
+"212198_s_at"	"TM9SF4"	9777	"ENSG00000101337"
+"212194_s_at"	"TM9SF4"	9777	"ENSG00000101337"
+"211119_at"	"ESR2"	2100	"ENSG00000140009"
+"211117_x_at"	"ESR2"	2100	"ENSG00000140009"
+"211120_x_at"	"ESR2"	2100	"ENSG00000140009"
+"211118_x_at"	"ESR2"	2100	"ENSG00000140009"
+"210780_at"	"ESR2"	2100	"ENSG00000140009"
+"212419_at"	"ZCCHC24"	219654	"ENSG00000165424"
+"212423_at"	"ZCCHC24"	219654	"ENSG00000165424"
+"213683_at"	"ACSL6"	23305	"ENSG00000164398"
+"211207_s_at"	"ACSL6"	23305	"ENSG00000164398"
+"212705_x_at"	"PNPLA2"	57104	"ENSG00000177666"
+"215128_at"	"NOPCHAP1"	121053	"ENSG00000151131"
+"212748_at"	"MRTFA"	57591	"ENSG00000196588"
+"215292_s_at"	"MRTFA"	57591	"ENSG00000196588"
+"215291_at"	"MRTFA"	57591	"ENSG00000196588"
+"212920_at"	"REST"	5978	"ENSG00000084093"
+"213190_at"	"COG7"	91949	"ENSG00000168434"
+"212909_at"	"LYPD1"	116372	"ENSG00000150551"
+"215309_at"	"ZNF674"	641339	"ENSG00000251192"
+"210658_s_at"	"GGA2"	23062	"ENSG00000103365"
+"213772_s_at"	"GGA2"	23062	"ENSG00000103365"
+"214190_x_at"	"GGA2"	23062	"ENSG00000103365"
+"212182_at"	"NUDT4"	11163	"ENSG00000173598"
+"212183_at"	"NUDT4"	11163	"ENSG00000173598"
+"213102_at"	"ACTR3"	10096	"ENSG00000115091"
+"213101_s_at"	"ACTR3"	10096	"ENSG00000115091"
+"212264_s_at"	"WAPL"	23063	"ENSG00000062650"
+"212267_at"	"WAPL"	23063	"ENSG00000062650"
+"213130_at"	"ZNF473"	25888	"ENSG00000142528"
+"213124_at"	"ZNF473"	25888	"ENSG00000142528"
+"211273_s_at"	"TBX1"	6899	"ENSG00000184058"
+"211274_at"	"TBX1"	6899	"ENSG00000184058"
+"214421_x_at"	"CYP2C9"	1559	"ENSG00000138109"
+"214254_at"	"MAGEA4"	4103	"ENSG00000147381"
+"211730_s_at"	"POLR2L"	5441	"ENSG00000177700"
+"211085_s_at"	"STK4"	6789	"ENSG00000101109"
+"213444_at"	"ZNF862"	643641	"ENSG00000106479"
+"213049_at"	"RALGAPA1"	253959	"ENSG00000174373"
+"215162_at"	"RALGAPA1"	253959	"ENSG00000174373"
+"214401_at"	"PAX1"	5075	"ENSG00000125813"
+"215307_at"	"ZNF529"	57711	"ENSG00000186020"
+"213226_at"	"CCNA2"	890	"ENSG00000145386"
+"215522_at"	"SORCS3"	22986	"ENSG00000156395"
+"212115_at"	"JPT2"	90861	"ENSG00000206053"
+"212109_at"	"JPT2"	90861	"ENSG00000206053"
+"214742_at"	"CEP131"	22994	"ENSG00000141577"
+"211817_s_at"	"KCNJ5"	3762	"ENSG00000120457"
+"211584_s_at"	"NPAT"	4863	"ENSG00000149308"
+"210814_at"	"TRPC3"	7222	"ENSG00000138741"
+"212123_at"	"TCTN3"	26123	"ENSG00000119977"
+"212121_at"	"TCTN3"	26123	"ENSG00000119977"
+"210813_s_at"	"XRCC4"	7518	"ENSG00000152422"
+"210812_at"	"XRCC4"	7518	"ENSG00000152422"
+"212890_at"	"SLC38A10"	124565	"ENSG00000157637"
+"214724_at"	"DIXDC1"	85458	"ENSG00000150764"
+"213107_at"	"TNIK"	23043	"ENSG00000154310"
+"213109_at"	"TNIK"	23043	"ENSG00000154310"
+"211828_s_at"	"TNIK"	23043	"ENSG00000154310"
+"212989_at"	"SGMS1"	259230	"ENSG00000198964"
+"212760_at"	"UBR2"	23304	"ENSG00000024048"
+"212756_s_at"	"UBR2"	23304	"ENSG00000024048"
+"213880_at"	"LGR5"	8549	"ENSG00000139292"
+"213462_at"	"NPAS2"	4862	"ENSG00000170485"
+"211033_s_at"	"PEX7"	5191	"ENSG00000112357"
+"213301_x_at"	"TRIM24"	8805	"ENSG00000122779"
+"211081_s_at"	"MAP4K5"	11183	"ENSG00000012983"
+"213579_s_at"	"EP300"	2033	"ENSG00000100393"
+"211852_s_at"	"ATRN"	8455	"ENSG00000088812"
+"212517_at"	"ATRN"	8455	"ENSG00000088812"
+"211342_x_at"	"MED12"	9968	"ENSG00000184634"
+"212614_at"	"ARID5B"	84159	"ENSG00000150347"
+"211928_at"	"DYNC1H1"	1778	"ENSG00000197102"
+"215245_x_at"	"FMR1"	2332	"ENSG00000102081"
+"211056_s_at"	"SRD5A1"	6715	"ENSG00000145545"
+"210959_s_at"	"SRD5A1"	6715	"ENSG00000145545"
+"215003_at"	"DGCR5"	26220	"ENSG00000273032"
+"215229_at"	"CERNA1"	NA	"ENSG00000259577"
+"212892_at"	"ZNF282"	8427	"ENSG00000170265"
+"214982_at"	"SNRNP200"	23020	"ENSG00000144028"
+"212592_at"	"JCHAIN"	3512	"ENSG00000132465"
+"214553_s_at"	"ARPP19"	10776	"ENSG00000128989"
+"212127_at"	"RANGAP1"	5905	"ENSG00000100401"
+"212125_at"	"RANGAP1"	5905	"ENSG00000100401"
+"214045_at"	"LIAS"	11019	"ENSG00000121897"
+"212974_at"	"DENND3"	22898	"ENSG00000105339"
+"212975_at"	"DENND3"	22898	"ENSG00000105339"
+"212411_at"	"IMP4"	92856	"ENSG00000136718"
+"214883_at"	"THRA"	7067	"ENSG00000126351"
+"212406_s_at"	"PCMTD2"	55251	"ENSG00000203880"
+"212110_at"	"SLC39A14"	23516	"ENSG00000104635"
+"214556_at"	"SSTR4"	6754	"ENSG00000132671"
+"211360_s_at"	"ITPR2"	3709	"ENSG00000123104"
+"210553_x_at"	"PCSK6"	5046	"ENSG00000140479"
+"211263_s_at"	"PCSK6"	5046	"ENSG00000140479"
+"211262_at"	"PCSK6"	5046	"ENSG00000140479"
+"214771_x_at"	"MPRIP"	23164	"ENSG00000133030"
+"212197_x_at"	"MPRIP"	23164	"ENSG00000133030"
+"214694_at"	"MPRIP"	23164	"ENSG00000133030"
+"214570_x_at"	"POM121L4P"	NA	"ENSG00000217261"
+"213722_at"	"SOX2"	6657	"ENSG00000181449"
+"213721_at"	"SOX2"	6657	"ENSG00000181449"
+"211598_x_at"	"VIPR2"	7434	"ENSG00000106018"
+"212741_at"	"MAOA"	4128	"ENSG00000189221"
+"210825_s_at"	"PEBP1"	5037	"ENSG00000089220"
+"211941_s_at"	"PEBP1"	5037	"ENSG00000089220"
+"210926_at"	"POTEKP"	NA	"ENSG00000204434"
+"212397_at"	"RDX"	5962	"ENSG00000137710"
+"212398_at"	"RDX"	5962	"ENSG00000137710"
+"213768_s_at"	"ASCL1"	429	"ENSG00000139352"
+"213521_at"	"PTPN18"	26469	"ENSG00000072135"
+"212691_at"	"NUP188"	23511	"ENSG00000095319"
+"214675_at"	"NUP188"	23511	"ENSG00000095319"
+"213920_at"	"CUX2"	23316	"ENSG00000111249"
+"212821_at"	"PLEKHG3"	26030	"ENSG00000126822"
+"212823_s_at"	"PLEKHG3"	26030	"ENSG00000126822"
+"214376_at"	"MAPK10"	5602	"ENSG00000109339"
+"213269_at"	"ZNF248"	57209	"ENSG00000198105"
+"212098_at"	"MGAT5"	4249	"ENSG00000152127"
+"214145_s_at"	"SPTB"	6710	"ENSG00000070182"
+"210810_s_at"	"SLC6A5"	9152	"ENSG00000165970"
+"210774_s_at"	"NCOA4"	8031	"ENSG00000266412"
+"214665_s_at"	"CHP1"	11261	"ENSG00000187446"
+"211169_s_at"	"PPP1R3A"	5506	"ENSG00000154415"
+"212952_at"	""	NA	"ENSG00000267458"
+"214316_x_at"	""	NA	"ENSG00000267458"
+"213599_at"	"OIP5"	11339	"ENSG00000104147"
+"212889_x_at"	"RAD23A"	5886	"ENSG00000179262"
+"211732_x_at"	"HNMT"	3176	"ENSG00000150540"
+"212891_s_at"	"GADD45GIP1"	90480	"ENSG00000179271"
+"215312_at"	"RAD52P1"	NA	"ENSG00000237964"
+"214260_at"	"COPS8"	10920	"ENSG00000198612"
+"214586_at"	"GPR37"	2861	"ENSG00000170775"
+"214757_at"	"DTX2P1-UPK3BP1-PMS2P11"	441263	"ENSG00000265479"
+"211083_s_at"	"MAP3K13"	9175	"ENSG00000073803"
+"215407_s_at"	"ASTN2"	23245	"ENSG00000148219"
+"213504_at"	"COPS6"	10980	"ENSG00000168090"
+"213223_at"	"RPL28"	6158	"ENSG00000108107"
+"213170_at"	"GPX7"	2882	"ENSG00000116157"
+"210622_x_at"	"CDK10"	8558	"ENSG00000185324"
+"211431_s_at"	"TYRO3"	7301	"ENSG00000092445"
+"211432_s_at"	"TYRO3"	7301	"ENSG00000092445"
+"212009_s_at"	"STIP1"	10963	"ENSG00000168439"
+"213330_s_at"	"STIP1"	10963	"ENSG00000168439"
+"215505_s_at"	"STRN3"	29966	"ENSG00000196792"
+"210550_s_at"	"RASGRF1"	5923	"ENSG00000058335"
+"214905_at"	"RASGRF1"	5923	"ENSG00000058335"
+"212421_at"	"KIAA0930"	23313	"ENSG00000100364"
+"214965_at"	"SPATA2L"	124044	"ENSG00000158792"
+"210969_at"	"PKN2"	5586	"ENSG00000065243"
+"212629_s_at"	"PKN2"	5586	"ENSG00000065243"
+"212628_at"	"PKN2"	5586	"ENSG00000065243"
+"211160_x_at"	"ACTN1"	87	"ENSG00000072110"
+"214972_at"	"OGA"	10724	"ENSG00000198408"
+"213837_at"	"L3MBTL1"	26013	"ENSG00000185513"
+"211029_x_at"	"FGF18"	8817	"ENSG00000156427"
+"211485_s_at"	"FGF18"	8817	"ENSG00000156427"
+"212698_s_at"	"SEPTIN10"	151011	"ENSG00000186522"
+"214798_at"	"ATP2C2"	9914	"ENSG00000064270"
+"212916_at"	"PHF8"	23133	"ENSG00000172943"
+"215065_at"	"PHF8"	23133	"ENSG00000172943"
+"212893_at"	"ZZZ3"	26009	"ENSG00000036549"
+"213302_at"	"PFAS"	5198	"ENSG00000178921"
+"214733_s_at"	"YIPF1"	54432	"ENSG00000058799"
+"214706_at"	"ZNF200"	7752	"ENSG00000010539"
+"214478_at"	"SPP2"	6694	"ENSG00000072080"
+"211735_x_at"	"SFTPC"	6440	"ENSG00000168484"
+"214387_x_at"	"SFTPC"	6440	"ENSG00000168484"
+"215454_x_at"	"SFTPC"	6440	"ENSG00000168484"
+"212665_at"	"TIPARP"	25976	"ENSG00000163659"
+"215428_at"	""	NA	"ENSG00000259644"
+"215517_at"	"PYGO1"	26108	"ENSG00000171016"
+"211871_x_at"	"GNB5"	10681	"ENSG00000069966"
+"214609_at"	"PHOX2A"	401	"ENSG00000165462"
+"213921_at"	"SST"	6750	"ENSG00000157005"
+"213808_at"	"ADAM23"	8745	"ENSG00000114948"
+"214784_x_at"	"XPO6"	23214	"ENSG00000169180"
+"211982_x_at"	"XPO6"	23214	"ENSG00000169180"
+"210952_at"	"AP4S1"	11154	"ENSG00000100478"
+"212718_at"	"PAPOLA"	10914	"ENSG00000090060"
+"212720_at"	"PAPOLA"	10914	"ENSG00000090060"
+"215374_at"	"PAPOLA"	10914	"ENSG00000090060"
+"211027_s_at"	"IKBKB"	3551	"ENSG00000104365"
+"213992_at"	"COL4A6"	1288	"ENSG00000197565"
+"211473_s_at"	"COL4A6"	1288	"ENSG00000197565"
+"210945_at"	"COL4A6"	1288	"ENSG00000197565"
+"214760_at"	"ZNF337"	26152	"ENSG00000130684"
+"215487_x_at"	"FAM182B"	NA	"ENSG00000175170"
+"212467_at"	"DNAJC13"	23317	"ENSG00000138246"
+"210894_s_at"	"CEP250"	11190	"ENSG00000126001"
+"213473_at"	"BRAP"	8315	"ENSG00000089234"
+"212695_at"	"CRY2"	1408	"ENSG00000121671"
+"213651_at"	"INPP5J"	27124	"ENSG00000185133"
+"214308_s_at"	"HGD"	3081	"ENSG00000113924"
+"214307_at"	"HGD"	3081	"ENSG00000113924"
+"213014_at"	"MAPK8IP1"	9479	"ENSG00000121653"
+"210779_x_at"	"GEMIN2"	8487	"ENSG00000092208"
+"211115_x_at"	"GEMIN2"	8487	"ENSG00000092208"
+"211114_x_at"	"GEMIN2"	8487	"ENSG00000092208"
+"214832_at"	"HNF4A"	3172	"ENSG00000101076"
+"212933_x_at"	"RPL13"	6137	"ENSG00000167526"
+"214976_at"	"RPL13"	6137	"ENSG00000167526"
+"213046_at"	"PABPN1"	8106	"ENSG00000100836"
+"212758_s_at"	"ZEB1"	6935	"ENSG00000148516"
+"210875_s_at"	"ZEB1"	6935	"ENSG00000148516"
+"212764_at"	"ZEB1"	6935	"ENSG00000148516"
+"213059_at"	"CREB3L1"	90993	"ENSG00000157613"
+"213498_at"	"CREB3L1"	90993	"ENSG00000157613"
+"213398_s_at"	"SDR39U1"	56948	"ENSG00000100445"
+"215485_s_at"	"ICAM1"	3383	"ENSG00000090339"
+"210582_s_at"	"LIMK2"	3985	"ENSG00000182541"
+"212070_at"	"ADGRG1"	9289	"ENSG00000205336"
+"215540_at"	"TRAV27"	NA	"ENSG00000211809"
+"212827_at"	"IGHM"	NA	"ENSG00000211899"
+"212458_at"	"SPRED2"	200734	"ENSG00000198369"
+"212466_at"	"SPRED2"	200734	"ENSG00000198369"
+"215315_at"	"ZNF549"	256051	"ENSG00000121406"
+"211814_s_at"	"CCNE2"	9134	"ENSG00000175305"
+"210638_s_at"	"FBXO9"	26268	"ENSG00000112146"
+"212987_at"	"FBXO9"	26268	"ENSG00000112146"
+"212991_at"	"FBXO9"	26268	"ENSG00000112146"
+"213421_x_at"	"PRSS3"	5646	"ENSG00000010438"
+"214333_x_at"	"IDH3G"	3421	"ENSG00000067829"
+"214232_at"	"ABCF2"	10061	"ENSG00000033050"
+"214205_x_at"	"GLRX3"	10539	"ENSG00000108010"
+"213445_at"	"ZC3H3"	23144	"ENSG00000014164"
+"213282_at"	"APOOL"	139322	"ENSG00000155008"
+"213289_at"	"APOOL"	139322	"ENSG00000155008"
+"211486_s_at"	"KCNQ2"	3785	"ENSG00000075043"
+"212817_at"	"DNAJB5"	25822	"ENSG00000137094"
+"210669_at"	"TFAP2A"	7020	"ENSG00000137203"
+"215364_s_at"	"SZT2"	23334	"ENSG00000198198"
+"215380_s_at"	"GGCT"	79017	"ENSG00000006625"
+"213376_at"	"ZBTB1"	22890	"ENSG00000126804"
+"211510_s_at"	"CRHR2"	1395	"ENSG00000106113"
+"211421_s_at"	"RET"	5979	"ENSG00000165731"
+"213317_at"	"CLIC5"	53405	"ENSG00000112782"
+"212351_at"	"EIF2B5"	8893	"ENSG00000145191"
+"215285_s_at"	"PHTF1"	10745	"ENSG00000116793"
+"213550_s_at"	"TMCO6"	55374	"ENSG00000113119"
+"213838_at"	"NOL7"	51406	"ENSG00000225921"
+"213200_at"	"SYP"	6855	"ENSG00000102003"
+"212831_at"	"MEGF9"	1955	"ENSG00000106780"
+"212830_at"	"MEGF9"	1955	"ENSG00000106780"
+"214435_x_at"	"RALA"	5898	"ENSG00000006451"
+"212828_at"	"SYNJ2"	8871	"ENSG00000078269"
+"210612_s_at"	"SYNJ2"	8871	"ENSG00000078269"
+"210796_x_at"	"SIGLEC6"	946	"ENSG00000105492"
+"212688_at"	"PIK3CB"	5291	"ENSG00000051382"
+"210772_at"	"FPR2"	2358	"ENSG00000171049"
+"210773_s_at"	"FPR2"	2358	"ENSG00000171049"
+"214560_at"	"FPR3"	2359	"ENSG00000187474"
+"211886_s_at"	"TBX5"	6910	"ENSG00000089225"
+"210751_s_at"	"RGN"	9104	"ENSG00000130988"
+"215089_s_at"	"RBM10"	8241	"ENSG00000182872"
+"211538_s_at"	"HSPA2"	3306	"ENSG00000126803"
+"214272_at"	"CYLD"	1540	"ENSG00000083799"
+"213295_at"	"CYLD"	1540	"ENSG00000083799"
+"211024_s_at"	"NKX2-1"	7080	"ENSG00000136352"
+"210673_x_at"	"NKX2-1"	7080	"ENSG00000136352"
+"214606_at"	"TSPAN2"	10100	"ENSG00000134198"
+"214338_at"	"DNAJB12"	54788	"ENSG00000148719"
+"214739_at"	"LRCH3"	84859	"ENSG00000186001"
+"214326_x_at"	"JUND"	3727	"ENSG00000130522"
+"213243_at"	"VPS13B"	157680	"ENSG00000132549"
+"211925_s_at"	"PLCB1"	23236	"ENSG00000182621"
+"213222_at"	"PLCB1"	23236	"ENSG00000182621"
+"213790_at"	"ADAM12"	8038	"ENSG00000148848"
+"212380_at"	"CMTR1"	23070	"ENSG00000137200"
+"212778_at"	"PACS2"	23241	"ENSG00000179364"
+"210520_at"	"HRG-AS1"	NA	"ENSG00000197099"
+"214128_at"	"DAGLA"	747	"ENSG00000134780"
+"213671_s_at"	"MARS1"	4141	"ENSG00000166986"
+"213672_at"	"MARS1"	4141	"ENSG00000166986"
+"213691_at"	"PTOV1-AS2"	NA	"ENSG00000269352"
+"213690_s_at"	"PTOV1-AS2"	NA	"ENSG00000269352"
+"213311_s_at"	"TCF25"	22980	"ENSG00000141002"
+"214704_at"	"TCF25"	22980	"ENSG00000141002"
+"211783_s_at"	"MTA1"	9112	"ENSG00000182979"
+"213900_at"	"ENTREP1"	9413	"ENSG00000135063"
+"215028_at"	"SEMA6A"	57556	"ENSG00000092421"
+"214222_at"	"DNAH7"	56171	"ENSG00000118997"
+"212427_at"	"ECPAS"	23392	"ENSG00000136813"
+"214356_s_at"	"ECPAS"	23392	"ENSG00000136813"
+"212428_at"	"ECPAS"	23392	"ENSG00000136813"
+"213858_at"	"ZNF250"	58500	"ENSG00000196150"
+"214617_at"	"PRF1"	5551	"ENSG00000180644"
+"215274_at"	"SLC12A3"	6559	"ENSG00000070915"
+"215172_at"	"PTPN20"	26095	"ENSG00000204179"
+"213111_at"	"PIKFYVE"	200576	"ENSG00000115020"
+"214985_at"	"EXT1"	2131	"ENSG00000182197"
+"213569_at"	"VASH1-AS1"	100506603	"ENSG00000258301"
+"213099_at"	"ANGEL1"	23357	"ENSG00000013523"
+"212840_at"	"UBXN7"	26043	"ENSG00000163960"
+"213861_s_at"	"EEF1AKMT3"	25895	"ENSG00000123427"
+"213701_at"	"C12orf29"	91298	"ENSG00000133641"
+"213995_at"	"DMAC2L"	27109	"ENSG00000125375"
+"212586_at"	"CAST"	831	"ENSG00000153113"
+"212580_at"	"CAST"	831	"ENSG00000153113"
+"210819_x_at"	"DIO2"	1734	"ENSG00000211448"
+"211215_x_at"	"DIO2"	1734	"ENSG00000211448"
+"213682_at"	"NUP50"	10762	"ENSG00000093000"
+"214714_at"	"ZNF394"	84124	"ENSG00000160908"
+"211700_s_at"	"TRO"	7216	"ENSG00000067445"
+"210882_s_at"	"TRO"	7216	"ENSG00000067445"
+"211701_s_at"	"TRO"	7216	"ENSG00000067445"
+"213923_at"	"RAP2B"	5912	"ENSG00000181467"
+"214049_x_at"	"CD7"	924	"ENSG00000173762"
+"214551_s_at"	"CD7"	924	"ENSG00000173762"
+"214548_x_at"	"GNAS"	2778	"ENSG00000087460"
+"211858_x_at"	"GNAS"	2778	"ENSG00000087460"
+"212273_x_at"	"GNAS"	2778	"ENSG00000087460"
+"214157_at"	"GNAS"	2778	"ENSG00000087460"
+"211205_x_at"	"PIP5K1A"	8394	"ENSG00000143398"
+"213716_s_at"	"SECTM1"	6398	"ENSG00000141574"
+"211092_s_at"	"NF2"	4771	"ENSG00000186575"
+"211091_s_at"	"NF2"	4771	"ENSG00000186575"
+"211017_s_at"	"NF2"	4771	"ENSG00000186575"
+"210767_at"	"NF2"	4771	"ENSG00000186575"
+"214664_at"	"PAICS"	10606	"ENSG00000128050"
+"212060_at"	"U2SURP"	23350	"ENSG00000163714"
+"212058_at"	"U2SURP"	23350	"ENSG00000163714"
+"212061_at"	"U2SURP"	23350	"ENSG00000163714"
+"214649_s_at"	"MTMR2"	8898	"ENSG00000087053"
+"210588_x_at"	"HNRNPH3"	3189	"ENSG00000096746"
+"214529_at"	"TSHB"	7252	"ENSG00000134200"
+"214878_at"	"ZNF37A"	7587	"ENSG00000075407"
+"214348_at"	"TACR2"	6865	"ENSG00000075073"
+"210928_at"	""	NA	"ENSG00000279530"
+"212124_at"	"ZMIZ1"	57178	"ENSG00000108175"
+"213906_at"	"MYBL1"	4603	"ENSG00000185697"
+"213012_at"	"NEDD4"	4734	"ENSG00000069869"
+"210743_s_at"	"CDC14A"	8556	"ENSG00000079335"
+"210742_at"	"CDC14A"	8556	"ENSG00000079335"
+"214554_at"	"H2AC16"	8332	"ENSG00000276903"
+"214534_at"	"H1-5"	3009	"ENSG00000184357"
+"213456_at"	"SOSTDC1"	25928	"ENSG00000171243"
+"214509_at"	"H3C11"	8354	"ENSG00000275379"
+"214562_at"	"H4C13"	8368	"ENSG00000275126"
+"214646_at"	"H3C12"	8356	"ENSG00000197153"
+"214540_at"	"H2BC17"	8348	"ENSG00000274641"
+"213867_x_at"	"ACTB"	60	"ENSG00000075624"
+"213876_x_at"	"ZRSR2"	8233	"ENSG00000169249"
+"211275_s_at"	"GYG1"	2992	"ENSG00000163754"
+"214767_s_at"	"HSPB6"	126393	"ENSG00000004776"
+"210933_s_at"	"FSCN1"	6624	"ENSG00000075618"
+"211145_x_at"	"IFNA21"	3452	"ENSG00000137080"
+"215052_at"	"FRMPD4"	9758	"ENSG00000169933"
+"214681_at"	"GK"	2710	"ENSG00000198814"
+"212795_at"	"WASHC4"	23325	"ENSG00000136051"
+"212794_s_at"	"WASHC4"	23325	"ENSG00000136051"
+"215465_at"	"ABCA12"	26154	"ENSG00000144452"
+"211555_s_at"	"GUCY1B1"	2983	"ENSG00000061918"
+"211148_s_at"	"ANGPT2"	285	"ENSG00000091879"
+"215294_s_at"	"SMARCA1"	6594	"ENSG00000102038"
+"213005_s_at"	"KANK1"	23189	"ENSG00000107104"
+"213065_at"	"ZFC3H1"	196441	"ENSG00000133858"
+"212713_at"	"MFAP4"	4239	"ENSG00000166482"
+"212149_at"	"EFR3A"	23167	"ENSG00000132294"
+"212150_at"	"EFR3A"	23167	"ENSG00000132294"
+"212744_at"	"BBS4"	585	"ENSG00000140463"
+"212745_s_at"	"BBS4"	585	"ENSG00000140463"
+"210815_s_at"	"CALCRL"	10203	"ENSG00000064989"
+"212494_at"	"TNS2"	23371	"ENSG00000111077"
+"210688_s_at"	"CPT1A"	1374	"ENSG00000110090"
+"210687_at"	"CPT1A"	1374	"ENSG00000110090"
+"215054_at"	"EPOR"	2057	"ENSG00000187266"
+"211839_s_at"	"CSF1"	1435	"ENSG00000184371"
+"210557_x_at"	"CSF1"	1435	"ENSG00000184371"
+"213972_at"	"FOXD1-AS1"	NA	"ENSG00000247993"
+"212296_at"	"PSMD14"	10213	"ENSG00000115233"
+"213371_at"	"LDB3"	11155	"ENSG00000122367"
+"211468_s_at"	"RECQL5"	9400	"ENSG00000108469"
+"213394_at"	"MAPKBP1"	23005	"ENSG00000137802"
+"211163_s_at"	"TNFRSF10C"	8794	"ENSG00000173535"
+"210654_at"	"TNFRSF10D"	8793	"ENSG00000173530"
+"214023_x_at"	"TUBB2B"	347733	"ENSG00000137285"
+"213372_at"	"PAQR3"	152559	"ENSG00000163291"
+"212313_at"	"CHMP7"	91782	"ENSG00000147457"
+"214066_x_at"	"NPR2"	4882	"ENSG00000159899"
+"211775_x_at"	""	NA	"ENSG00000255384"
+"212900_at"	"SEC24A"	10802	"ENSG00000113615"
+"212902_at"	"SEC24A"	10802	"ENSG00000113615"
+"211904_x_at"	"RAD52"	5893	"ENSG00000002016"
+"210630_s_at"	"RAD52"	5893	"ENSG00000002016"
+"210745_at"	"ONECUT1"	3175	"ENSG00000169856"
+"213520_at"	"RECQL4"	9401	"ENSG00000160957"
+"211998_at"	"H3-3B"	3021	"ENSG00000132475"
+"211999_at"	"H3-3B"	3021	"ENSG00000132475"
+"211997_x_at"	"H3-3B"	3021	"ENSG00000132475"
+"211357_s_at"	"ALDOB"	229	"ENSG00000136872"
+"211077_s_at"	"TLK1"	9874	"ENSG00000198586"
+"211358_s_at"	"CIZ1"	25792	"ENSG00000148337"
+"213977_s_at"	"CIZ1"	25792	"ENSG00000148337"
+"213976_at"	"CIZ1"	25792	"ENSG00000148337"
+"214838_at"	"SFT2D2"	375035	"ENSG00000213064"
+"213535_s_at"	"UBE2I"	7329	"ENSG00000103275"
+"211008_s_at"	"UBE2I"	7329	"ENSG00000103275"
+"211651_s_at"	"LAMB1"	3912	"ENSG00000091136"
+"213640_s_at"	"LOX"	4015	"ENSG00000113083"
+"215446_s_at"	"LOX"	4015	"ENSG00000113083"
+"213113_s_at"	"SLC43A3"	29015	"ENSG00000134802"
+"210664_s_at"	"TFPI"	7035	"ENSG00000003436"
+"213258_at"	"TFPI"	7035	"ENSG00000003436"
+"210665_at"	"TFPI"	7035	"ENSG00000003436"
+"210636_at"	"PPARD"	5467	"ENSG00000112033"
+"212865_s_at"	"COL14A1"	7373	"ENSG00000187955"
+"215057_at"	"EOLA2-DT"	NA	"ENSG00000235703"
+"213105_s_at"	"TSR3"	115939	"ENSG00000007520"
+"213104_at"	"TSR3"	115939	"ENSG00000007520"
+"214765_s_at"	"NAAA"	27163	"ENSG00000138744"
+"212647_at"	"RRAS"	6237	"ENSG00000126458"
+"211547_s_at"	"PAFAH1B1"	5048	"ENSG00000007168"
+"213525_at"	""	NA	"ENSG00000239791"
+"212176_at"	"PNISR"	25957	"ENSG00000132424"
+"212179_at"	"PNISR"	25957	"ENSG00000132424"
+"212177_at"	"PNISR"	25957	"ENSG00000132424"
+"212234_at"	"ASXL1"	171023	"ENSG00000171456"
+"212238_at"	"ASXL1"	171023	"ENSG00000171456"
+"212237_at"	"ASXL1"	171023	"ENSG00000171456"
+"213475_s_at"	"ITGAL"	3683	"ENSG00000005844"
+"212802_s_at"	"GAPVD1"	26130	"ENSG00000165219"
+"212804_s_at"	"GAPVD1"	26130	"ENSG00000165219"
+"214869_x_at"	"GAPVD1"	26130	"ENSG00000165219"
+"213820_s_at"	"STARD5"	80765	"ENSG00000172345"
+"215220_s_at"	"TPR"	7175	"ENSG00000047410"
+"212247_at"	"NUP205"	23165	"ENSG00000155561"
+"210625_s_at"	"AKAP1"	8165	"ENSG00000121057"
+"210626_at"	"AKAP1"	8165	"ENSG00000121057"
+"212977_at"	"ACKR3"	57007	"ENSG00000144476"
+"214896_at"	"CTXND1"	100996492	"ENSG00000259417"
+"215126_at"	"CTXND1"	100996492	"ENSG00000259417"
+"214761_at"	"ZNF423"	23090	"ENSG00000102935"
+"211042_x_at"	"SKP2"	6502	"ENSG00000145604"
+"210567_s_at"	"SKP2"	6502	"ENSG00000145604"
+"213247_at"	"SVEP1"	79987	"ENSG00000165124"
+"212898_at"	"TTI1"	9675	"ENSG00000101407"
+"213528_at"	"METTL18"	92342	"ENSG00000171806"
+"215046_at"	"KANSL1L"	151050	"ENSG00000144445"
+"214667_s_at"	"TP53I11"	9537	"ENSG00000175274"
+"213970_at"	"RABL3"	285282	"ENSG00000144840"
+"211003_x_at"	"TGM2"	7052	"ENSG00000198959"
+"211573_x_at"	"TGM2"	7052	"ENSG00000198959"
+"215129_at"	"PIK3C2G"	5288	"ENSG00000139144"
+"213405_at"	"RAB22A"	57403	"ENSG00000124209"
+"214627_at"	"EPX"	8288	"ENSG00000121053"
+"211813_x_at"	"DCN"	1634	"ENSG00000011465"
+"211896_s_at"	"DCN"	1634	"ENSG00000011465"
+"212805_at"	"PRUNE2"	158471	"ENSG00000106772"
+"212806_at"	"PRUNE2"	158471	"ENSG00000106772"
+"212950_at"	"ADGRF5"	221395	"ENSG00000069122"
+"212951_at"	"ADGRF5"	221395	"ENSG00000069122"
+"215155_at"	"HEXA"	3073	"ENSG00000213614"
+"214711_at"	"GATC"	283459	"ENSG00000257218"
+"211960_s_at"	"RAB7A"	7879	"ENSG00000075785"
+"211961_s_at"	"RAB7A"	7879	"ENSG00000075785"
+"214159_at"	"PLCE1"	51196	"ENSG00000138193"
+"213623_at"	"KIF3A"	11127	"ENSG00000131437"
+"213384_x_at"	"PLCB3"	5331	"ENSG00000149782"
+"214426_x_at"	"CHAF1A"	10036	"ENSG00000167670"
+"214680_at"	"NTRK2"	4915	"ENSG00000148053"
+"211744_s_at"	"CD58"	965	"ENSG00000116815"
+"214788_x_at"	"DDN"	23109	"ENSG00000181418"
+"210817_s_at"	"CALCOCO2"	10241	"ENSG00000136436"
+"214293_at"	"SEPTIN11"	55752	"ENSG00000138758"
+"212594_at"	"PDCD4"	27250	"ENSG00000150593"
+"213220_at"	"BBIP1"	92482	"ENSG00000214413"
+"213224_s_at"	"BBIP1"	92482	"ENSG00000214413"
+"213542_at"	"ZNF710"	374655	"ENSG00000140548"
+"213658_at"	"ZNF710-AS1"	109729181	"ENSG00000259291"
+"213657_s_at"	"ZNF710-AS1"	109729181	"ENSG00000259291"
+"214471_x_at"	"LHB"	3972	"ENSG00000104826"
+"213047_x_at"	"SET"	6418	"ENSG00000119335"
+"213121_at"	"SNRNP70"	6625	"ENSG00000104852"
+"211457_at"	"GABARAPL3"	NA	"ENSG00000238244"
+"215233_at"	"JMJD6"	23210	"ENSG00000070495"
+"212722_s_at"	"JMJD6"	23210	"ENSG00000070495"
+"212723_at"	"JMJD6"	23210	"ENSG00000070495"
+"210840_s_at"	"IQGAP1"	8826	"ENSG00000140575"
+"213446_s_at"	"IQGAP1"	8826	"ENSG00000140575"
+"211502_s_at"	"CDK14"	5218	"ENSG00000058091"
+"210570_x_at"	"MAPK9"	5601	"ENSG00000050748"
+"213021_at"	"GOSR1"	9527	"ENSG00000108587"
+"213020_at"	"GOSR1"	9527	"ENSG00000108587"
+"211219_s_at"	"LHX2"	9355	"ENSG00000106689"
+"215501_s_at"	"DUSP10"	11221	"ENSG00000143507"
+"212097_at"	"CAV1"	857	"ENSG00000105974"
+"215071_s_at"	"H2AC6"	8334	"ENSG00000180573"
+"214537_at"	"H1-3"	3007	"ENSG00000124575"
+"212613_at"	"BTN3A2"	11118	"ENSG00000186470"
+"210671_x_at"	"MAPK8"	5599	"ENSG00000107643"
+"210948_s_at"	"LEF1"	51176	"ENSG00000138795"
+"215277_at"	"PCDH1"	5097	"ENSG00000156453"
+"213402_at"	"ZNF787"	126208	"ENSG00000142409"
+"213097_s_at"	"DNAJC2"	27000	"ENSG00000105821"
+"214831_at"	"ELK4"	2005	"ENSG00000158711"
+"211795_s_at"	"FYB1"	2533	"ENSG00000082074"
+"211794_at"	"FYB1"	2533	"ENSG00000082074"
+"212796_s_at"	"TBC1D2B"	23102	"ENSG00000167202"
+"210822_at"	"RPL13P5"	NA	"ENSG00000240370"
+"210594_x_at"	"MPZL1"	9019	"ENSG00000197965"
+"213362_at"	"PTPRD"	5789	"ENSG00000153707"
+"214043_at"	"PTPRD"	5789	"ENSG00000153707"
+"214778_at"	"MEGF8"	1954	"ENSG00000105429"
+"214175_x_at"	"PDLIM4"	8572	"ENSG00000131435"
+"211564_s_at"	"PDLIM4"	8572	"ENSG00000131435"
+"210868_s_at"	"ELOVL6"	79071	"ENSG00000170522"
+"212772_s_at"	"ABCA2"	20	"ENSG00000107331"
+"213257_at"	"SARM1"	23098	"ENSG00000004139"
+"213259_s_at"	"SARM1"	23098	"ENSG00000004139"
+"211076_x_at"	"ATN1"	1822	"ENSG00000111676"
+"213855_s_at"	"LIPE"	3991	"ENSG00000079435"
+"211883_x_at"	"CEACAM1"	634	"ENSG00000079385"
+"211889_x_at"	"CEACAM1"	634	"ENSG00000079385"
+"210610_at"	"CEACAM1"	634	"ENSG00000079385"
+"214661_s_at"	"NOP14"	8602	"ENSG00000087269"
+"210600_s_at"	"GRK4"	2868	"ENSG00000125388"
+"214547_at"	"ADCY10"	55811	"ENSG00000143199"
+"213011_s_at"	"TPI1"	7167	"ENSG00000111669"
+"215418_at"	"PARVA"	55742	"ENSG00000197702"
+"213675_at"	"PARVA"	55742	"ENSG00000197702"
+"214136_at"	"NUDT13"	25961	"ENSG00000166321"
+"213849_s_at"	"PPP2R2B"	5521	"ENSG00000156475"
+"211210_x_at"	"SH2D1A"	4068	"ENSG00000183918"
+"211211_x_at"	"SH2D1A"	4068	"ENSG00000183918"
+"211209_x_at"	"SH2D1A"	4068	"ENSG00000183918"
+"211479_s_at"	"HTR2C"	3358	"ENSG00000147246"
+"213209_at"	"TAF6L"	10629	"ENSG00000162227"
+"213210_at"	"TAF6L"	10629	"ENSG00000162227"
+"213211_s_at"	"TAF6L"	10629	"ENSG00000162227"
+"213961_s_at"	"TMEM223"	79064	"ENSG00000168569"
+"212205_at"	"H2AZ2"	94239	"ENSG00000105968"
+"212206_s_at"	"H2AZ2"	94239	"ENSG00000105968"
+"213379_at"	"COQ2"	27235	"ENSG00000173085"
+"212922_s_at"	"SMYD2"	56950	"ENSG00000143499"
+"213242_x_at"	"CEP170B"	283638	"ENSG00000099814"
+"213458_at"	"FAM149B1"	317662	"ENSG00000138286"
+"213463_s_at"	"FAM149B1"	317662	"ENSG00000138286"
+"213896_x_at"	"FAM149B1"	317662	"ENSG00000138286"
+"213092_x_at"	"DNAJC9"	23234	"ENSG00000213551"
+"211208_s_at"	"CASK"	8573	"ENSG00000147044"
+"213218_at"	"ZSCAN26"	7741	"ENSG00000197062"
+"212663_at"	"FKBP15"	23307	"ENSG00000119321"
+"211064_at"	"ZNF493"	284443	"ENSG00000196268"
+"213499_at"	"CLCN2"	1181	"ENSG00000114859"
+"213197_at"	"ASTN1"	460	"ENSG00000152092"
+"213864_s_at"	"NAP1L1"	4673	"ENSG00000187109"
+"212967_x_at"	"NAP1L1"	4673	"ENSG00000187109"
+"213203_at"	"SNAPC5"	10302	"ENSG00000174446"
+"214054_at"	"DOK2"	9046	"ENSG00000147443"
+"211710_x_at"	"RPL4"	6124	"ENSG00000174444"
+"212166_at"	"XPO7"	23039	"ENSG00000130227"
+"214186_s_at"	"HCP5"	10866	"ENSG00000206337"
+"211090_s_at"	"PRPF4B"	8899	"ENSG00000112739"
+"215343_at"	"CCDC88C"	440193	"ENSG00000015133"
+"211768_at"	"LAT2"	7462	"ENSG00000086730"
+"215085_x_at"	"DLEC1"	9940	"ENSG00000008226"
+"214507_s_at"	"EXOSC2"	23404	"ENSG00000130713"
+"211226_at"	"GALR2"	8811	"ENSG00000182687"
+"212034_s_at"	"EXOC7"	23265	"ENSG00000182473"
+"212035_s_at"	"EXOC7"	23265	"ENSG00000182473"
+"212026_s_at"	"EXOC7"	23265	"ENSG00000182473"
+"215413_at"	"EXOC7"	23265	"ENSG00000182473"
+"214802_at"	"EXOC7"	23265	"ENSG00000182473"
+"213369_at"	"CDHR1"	92211	"ENSG00000148600"
+"212096_s_at"	"MTUS1"	57509	"ENSG00000129422"
+"212093_s_at"	"MTUS1"	57509	"ENSG00000129422"
+"212095_s_at"	"MTUS1"	57509	"ENSG00000129422"
+"214274_s_at"	"ACAA1"	30	"ENSG00000060971"
+"211174_s_at"	"CCKAR"	886	"ENSG00000163394"
+"211353_at"	"LRIT1"	26103	"ENSG00000148602"
+"211031_s_at"	"CLIP2"	7461	"ENSG00000106665"
+"212015_x_at"	"PTBP1"	5725	"ENSG00000011304"
+"212016_s_at"	"PTBP1"	5725	"ENSG00000011304"
+"211270_x_at"	"PTBP1"	5725	"ENSG00000011304"
+"211271_x_at"	"PTBP1"	5725	"ENSG00000011304"
+"210511_s_at"	"INHBA"	3624	"ENSG00000122641"
+"212371_at"	"DESI2"	51029	"ENSG00000121644"
+"211111_at"	""	NA	"ENSG00000235994"
+"211350_s_at"	"KIF25-AS1"	100505879	"ENSG00000229921"
+"211351_at"	"KIF25-AS1"	100505879	"ENSG00000229921"
+"211464_x_at"	"CASP6"	839	"ENSG00000138794"
+"212280_x_at"	"ATG4B"	23192	"ENSG00000168397"
+"214245_at"	"RPS14"	6208	"ENSG00000164587"
+"210993_s_at"	"SMAD1"	4086	"ENSG00000170365"
+"211272_s_at"	"DGKA"	1606	"ENSG00000065357"
+"213436_at"	"CNR1"	1268	"ENSG00000118432"
+"210737_at"	"TUB"	7275	"ENSG00000166402"
+"214764_at"	"RRP15"	51018	"ENSG00000067533"
+"214940_s_at"	"SMG6"	23293	"ENSG00000070366"
+"213252_at"	"SH3PXD2A"	9644	"ENSG00000107957"
+"212364_at"	"MYO1B"	4430	"ENSG00000128641"
+"212365_at"	"MYO1B"	4430	"ENSG00000128641"
+"215074_at"	"MYO1B"	4430	"ENSG00000128641"
+"215467_x_at"	"DHX9-AS1"	NA	"ENSG00000287808"
+"214716_at"	"BMP2K"	55589	"ENSG00000138756"
+"211080_s_at"	"NEK2"	4751	"ENSG00000117650"
+"210816_s_at"	"CYB561"	1534	"ENSG00000008283"
+"213568_at"	"OSR2"	116039	"ENSG00000164920"
+"214216_s_at"	"LARP4B"	23185	"ENSG00000107929"
+"211722_s_at"	"HDAC6"	10013	"ENSG00000094631"
+"212770_at"	"TLE3"	7090	"ENSG00000140332"
+"212769_at"	"TLE3"	7090	"ENSG00000140332"
+"215067_x_at"	"PRDX2"	7001	"ENSG00000167815"
+"212105_s_at"	"DHX9"	1660	"ENSG00000135829"
+"212107_s_at"	"DHX9"	1660	"ENSG00000135829"
+"212443_at"	"NBEAL2"	23218	"ENSG00000160796"
+"214506_at"	"GPR182"	11318	"ENSG00000166856"
+"214731_at"	"SEPTIN2"	4735	"ENSG00000168385"
+"214588_s_at"	"MFAP3"	4238	"ENSG00000037749"
+"213123_at"	"MFAP3"	4238	"ENSG00000037749"
+"213272_s_at"	"LDAF1"	57146	"ENSG00000011638"
+"211916_s_at"	"MYO1A"	4640	"ENSG00000166866"
+"214489_at"	"FSHB"	2488	"ENSG00000131808"
+"211801_x_at"	"MFN1"	55669	"ENSG00000171109"
+"213176_s_at"	"LTBP4"	8425	"ENSG00000090006"
+"212619_at"	"NEMP1"	23306	"ENSG00000166881"
+"212621_at"	"NEMP1"	23306	"ENSG00000166881"
+"213573_at"	"KPNB1"	3837	"ENSG00000108424"
+"213507_s_at"	"KPNB1"	3837	"ENSG00000108424"
+"213803_at"	"KPNB1"	3837	"ENSG00000108424"
+"213574_s_at"	"KPNB1"	3837	"ENSG00000108424"
+"212803_at"	"NAB2"	4665	"ENSG00000166886"
+"213543_at"	"SGCD"	6444	"ENSG00000170624"
+"214492_at"	"SGCD"	6444	"ENSG00000170624"
+"210802_s_at"	"DIMT1"	27292	"ENSG00000086189"
+"210801_at"	"DIMT1"	27292	"ENSG00000086189"
+"215440_s_at"	"BEX4"	56271	"ENSG00000102409"
+"214036_at"	"EFNA5"	1946	"ENSG00000184349"
+"211767_at"	"GINS4"	84296	"ENSG00000147536"
+"212307_s_at"	"OGT"	8473	"ENSG00000147162"
+"213909_at"	"LRRC15"	131578	"ENSG00000172061"
+"213739_at"	""	103344931	"ENSG00000260917"
+"211139_s_at"	"NAB1"	4664	"ENSG00000138386"
+"213332_at"	"PAPPA2"	60676	"ENSG00000116183"
+"211918_x_at"	"PAPPA2"	60676	"ENSG00000116183"
+"214324_at"	"GP2"	2813	"ENSG00000169347"
+"214325_at"	"GP2"	2813	"ENSG00000169347"
+"210853_at"	"SCN11A"	11280	"ENSG00000168356"
+"214255_at"	"ATP10A"	57194	"ENSG00000206190"
+"214256_at"	"ATP10A"	57194	"ENSG00000206190"
+"211261_at"	"NUP214"	8021	"ENSG00000126883"
+"212120_at"	"RHOQ"	23433	"ENSG00000119729"
+"212122_at"	"RHOQ"	23433	"ENSG00000119729"
+"211570_s_at"	"RAPSN"	5913	"ENSG00000165917"
+"215470_at"	"GTF2H2C"	728340	"ENSG00000183474"
+"214081_at"	"PLXDC1"	57125	"ENSG00000161381"
+"213492_at"	"COL2A1"	1280	"ENSG00000139219"
+"213004_at"	"ANGPTL2"	23452	"ENSG00000136859"
+"213001_at"	"ANGPTL2"	23452	"ENSG00000136859"
+"213845_at"	"GRIK2"	2898	"ENSG00000164418"
+"211051_s_at"	"EXTL3"	2137	"ENSG00000012232"
+"212740_at"	"PIK3R4"	30849	"ENSG00000196455"
+"210811_s_at"	"DDX49"	54555	"ENSG00000105671"
+"214418_at"	"CT62"	196993	"ENSG00000225362"
+"215489_x_at"	"HOMER3"	9454	"ENSG00000051128"
+"213310_at"	"AGO2"	27161	"ENSG00000123908"
+"212017_at"	"FAM168B"	130074	"ENSG00000152102"
+"212255_s_at"	"ATP2C1"	27032	"ENSG00000017260"
+"211137_s_at"	"ATP2C1"	27032	"ENSG00000017260"
+"214080_x_at"	"PRKCSH"	5589	"ENSG00000130175"
+"211444_at"	"SUMO2"	6613	"ENSG00000188612"
+"215161_at"	"CAMK1G"	57172	"ENSG00000008118"
+"212540_at"	"CDC34"	997	"ENSG00000099804"
+"211084_x_at"	"PRKD3"	23683	"ENSG00000115825"
+"211815_s_at"	"GGA3"	23163	"ENSG00000125447"
+"212617_at"	"ZNF609"	23060	"ENSG00000180357"
+"212618_at"	"ZNF609"	23060	"ENSG00000180357"
+"212620_at"	"ZNF609"	23060	"ENSG00000180357"
+"211569_s_at"	"HADH"	3033	"ENSG00000138796"
+"212919_at"	"DCP2"	167227	"ENSG00000172795"
+"212331_at"	"RBL2"	5934	"ENSG00000103479"
+"212332_at"	"RBL2"	5934	"ENSG00000103479"
+"213959_s_at"	"RPGRIP1L"	23322	"ENSG00000103494"
+"215153_at"	"NOS1AP"	9722	"ENSG00000198929"
+"212703_at"	"TLN2"	83660	"ENSG00000171914"
+"212701_at"	"TLN2"	83660	"ENSG00000171914"
+"211122_s_at"	"CXCL11"	6373	"ENSG00000169248"
+"214374_s_at"	"PPFIBP1"	8496	"ENSG00000110841"
+"214375_at"	"PPFIBP1"	8496	"ENSG00000110841"
+"211446_at"	"RGSL1"	353299	"ENSG00000121446"
+"213688_at"	"CALM1"	801	"ENSG00000198668"
+"211985_s_at"	"CALM1"	801	"ENSG00000198668"
+"211984_at"	"CALM1"	801	"ENSG00000198668"
+"215075_s_at"	"GRB2"	2885	"ENSG00000177885"
+"214822_at"	"BRINP2"	57795	"ENSG00000198797"
+"212302_at"	"RTF1"	23168	"ENSG00000137815"
+"212301_at"	"RTF1"	23168	"ENSG00000137815"
+"212530_at"	"NEK7"	140609	"ENSG00000151414"
+"211099_s_at"	"CNGB1"	1258	"ENSG00000070729"
+"210769_at"	"CNGB1"	1258	"ENSG00000070729"
+"215056_at"	"PGBD5"	79605	"ENSG00000177614"
+"211756_at"	"PTHLH"	5744	"ENSG00000087494"
+"211049_at"	"TLX2"	3196	"ENSG00000115297"
+"210971_s_at"	"BMAL1"	406	"ENSG00000133794"
+"210605_s_at"	"MFGE8"	4240	"ENSG00000140545"
+"215451_s_at"	"AFF1"	4299	"ENSG00000172493"
+"211826_s_at"	"AFF1"	4299	"ENSG00000172493"
+"215354_s_at"	"PELP1"	27043	"ENSG00000141456"
+"210505_at"	"ADH7"	131	"ENSG00000196344"
+"213529_at"	"ZNF688"	146542	"ENSG00000229809"
+"213527_s_at"	"ZNF688"	146542	"ENSG00000229809"
+"213261_at"	"TRANK1"	9881	"ENSG00000168016"
+"212459_x_at"	"SUCLG2"	8801	"ENSG00000172340"
+"212142_at"	"MCM4"	4173	"ENSG00000104738"
+"212141_at"	"MCM4"	4173	"ENSG00000104738"
+"213474_at"	"KCTD7"	154881	"ENSG00000243335"
+"212668_at"	"SMURF1"	57154	"ENSG00000198742"
+"212666_at"	"SMURF1"	57154	"ENSG00000198742"
+"215458_s_at"	"SMURF1"	57154	"ENSG00000198742"
+"215180_at"	""	NA	"ENSG00000261478"
+"212357_at"	"FAM168A"	23201	"ENSG00000054965"
+"212749_s_at"	"RCHY1"	25898	"ENSG00000163743"
+"212743_at"	"RCHY1"	25898	"ENSG00000163743"
+"214281_s_at"	"RCHY1"	25898	"ENSG00000163743"
+"211659_at"	"GPR135"	64582	"ENSG00000181619"
+"214503_x_at"	"GPR135"	64582	"ENSG00000181619"
+"213008_at"	"FANCI"	55215	"ENSG00000140525"
+"213007_at"	"FANCI"	55215	"ENSG00000140525"
+"215471_s_at"	"MAP7"	9053	"ENSG00000135525"
+"214246_x_at"	"MINK1"	50488	"ENSG00000141503"
+"214625_s_at"	"MINK1"	50488	"ENSG00000141503"
+"212957_s_at"	"LINC01278"	92249	"ENSG00000235437"
+"214745_at"	"PLCH1"	23007	"ENSG00000114805"
+"213895_at"	"EMP1"	2012	"ENSG00000134531"
+"214569_at"	"IFNA5"	3442	"ENSG00000147873"
+"211938_at"	"EIF4B"	1975	"ENSG00000063046"
+"213233_s_at"	"KLHL9"	55958	"ENSG00000198642"
+"213117_at"	"KLHL9"	55958	"ENSG00000198642"
+"211338_at"	"IFNA2"	3440	"ENSG00000188379"
+"214743_at"	"CUX1"	1523	"ENSG00000257923"
+"212689_s_at"	"KDM3A"	55818	"ENSG00000115548"
+"214258_x_at"	"KAT5"	10524	"ENSG00000172977"
+"211596_s_at"	"LRIG1"	26018	"ENSG00000144749"
+"213025_at"	"THUMPD1"	55623	"ENSG00000066654"
+"215215_s_at"	"REXO5"	81691	"ENSG00000005189"
+"211269_s_at"	"IL2RA"	3559	"ENSG00000134460"
+"211463_at"	"ZIC4"	84107	"ENSG00000174963"
+"215432_at"	"ACSM1"	116285	"ENSG00000166743"
+"213951_s_at"	"PSMC3IP"	29893	"ENSG00000131470"
+"211154_at"	"THPO"	7066	"ENSG00000090534"
+"211831_s_at"	"THPO"	7066	"ENSG00000090534"
+"211155_s_at"	"THPO"	7066	"ENSG00000090534"
+"214616_at"	"H3C6"	8353	"ENSG00000274750"
+"212697_at"	"RETREG3"	162427	"ENSG00000141699"
+"211156_at"	"CDKN2A"	1029	"ENSG00000147889"
+"211364_at"	"CDKN2B-AS1"	100048912	"ENSG00000240498"
+"214450_at"	"CTSW"	1521	"ENSG00000172543"
+"210543_s_at"	"PRKDC"	5591	"ENSG00000253729"
+"215327_at"	""	NA	"ENSG00000213994"
+"213066_at"	"RUSC2"	9853	"ENSG00000198853"
+"212635_at"	"TNPO1"	3842	"ENSG00000083312"
+"214458_at"	"TRAF3IP1"	26146	"ENSG00000204104"
+"213051_at"	"ZC3HAV1"	56829	"ENSG00000105939"
+"214519_s_at"	"RLN2"	6019	"ENSG00000107014"
+"211753_s_at"	"RLN1"	6013	"ENSG00000107018"
+"213564_x_at"	"LDHB"	3945	"ENSG00000111716"
+"214655_at"	"GPR6"	2830	"ENSG00000146360"
+"212634_at"	"UFL1"	23376	"ENSG00000014123"
+"212633_at"	"UFL1"	23376	"ENSG00000014123"
+"212739_s_at"	"NME4"	4833	"ENSG00000103202"
+"214929_s_at"	"BLTP1"	84162	"ENSG00000138688"
+"212779_at"	"BLTP1"	84162	"ENSG00000138688"
+"213423_x_at"	"TUSC3"	7991	"ENSG00000104723"
+"211178_s_at"	"PSTPIP1"	9051	"ENSG00000140368"
+"213357_at"	"GTF2H5"	404672	"ENSG00000272047"
+"211618_s_at"	"ALPI"	248	"ENSG00000163295"
+"214339_s_at"	"MAP4K1"	11184	"ENSG00000104814"
+"214219_x_at"	"MAP4K1"	11184	"ENSG00000104814"
+"212660_at"	"JADE2"	23338	"ENSG00000043143"
+"212726_at"	"PHF2"	5253	"ENSG00000197724"
+"214829_at"	"AASS"	10157	"ENSG00000008311"
+"210852_s_at"	"AASS"	10157	"ENSG00000008311"
+"213100_at"	"UNC5B"	219699	"ENSG00000107731"
+"211880_x_at"	"PCDHGA1"	56114	"ENSG00000204956"
+"210516_at"	"FAM120A"	23196	"ENSG00000048828"
+"212533_at"	"WEE1"	7465	"ENSG00000166483"
+"210635_s_at"	"KLHL20"	27252	"ENSG00000076321"
+"210634_at"	"KLHL20"	27252	"ENSG00000076321"
+"210951_x_at"	"RAB27A"	5873	"ENSG00000069974"
+"214944_at"	"PHLPP2"	23035	"ENSG00000040199"
+"213407_at"	"PHLPP2"	23035	"ENSG00000040199"
+"211873_s_at"	"PCDHGA9"	56107	"ENSG00000261934"
+"211875_x_at"	"PCDHGA10"	56106	"ENSG00000253846"
+"211900_x_at"	"CD6"	923	"ENSG00000013725"
+"213958_at"	"CD6"	923	"ENSG00000013725"
+"211893_x_at"	"CD6"	923	"ENSG00000013725"
+"214631_at"	"ZBTB33"	10009	"ENSG00000177485"
+"211877_s_at"	"PCDHGA11"	56105	"ENSG00000253873"
+"214545_s_at"	"PLPBP"	11212	"ENSG00000147471"
+"214564_s_at"	"PCDHGC3"	5098	"ENSG00000240184"
+"214563_at"	"PCDHGC3"	5098	"ENSG00000240184"
+"214224_s_at"	"PIN4"	5303	"ENSG00000102309"
+"214225_at"	"PIN4"	5303	"ENSG00000102309"
+"212321_at"	"SGPL1"	8879	"ENSG00000166224"
+"212322_at"	"SGPL1"	8879	"ENSG00000166224"
+"213347_x_at"	"RPS4X"	6191	"ENSG00000198034"
+"213831_at"	"HLA-DQA1"	3117	"ENSG00000196735"
+"213533_at"	"NSG1"	27065	"ENSG00000168824"
+"214673_s_at"	"HUWE1"	10075	"ENSG00000086758"
+"213166_x_at"	"MZT2A"	653784	"ENSG00000173272"
+"212999_x_at"	"HLA-DQB1"	3119	"ENSG00000179344"
+"211654_x_at"	"HLA-DQB1"	3119	"ENSG00000179344"
+"215293_s_at"	"PGAP2"	27315	"ENSG00000148985"
+"214942_at"	"RBM34"	23029	"ENSG00000188739"
+"211807_x_at"	"PCDHGB5"	56101	"ENSG00000276547"
+"213519_s_at"	"LAMA2"	3908	"ENSG00000196569"
+"214620_x_at"	"PAM"	5066	"ENSG00000145730"
+"212958_x_at"	"PAM"	5066	"ENSG00000145730"
+"212215_at"	"PREPL"	9581	"ENSG00000138078"
+"212217_at"	"PREPL"	9581	"ENSG00000138078"
+"212216_at"	"PREPL"	9581	"ENSG00000138078"
+"214703_s_at"	"MAN2B2"	23324	"ENSG00000013288"
+"212690_at"	"DDHD2"	23259	"ENSG00000085788"
+"214741_at"	"ZNF131"	7690	"ENSG00000172262"
+"211212_s_at"	"ORC5"	5001	"ENSG00000164815"
+"211213_at"	"ORC5"	5001	"ENSG00000164815"
+"212199_at"	"MRFAP1L1"	114932	"ENSG00000178988"
+"212441_at"	"KIAA0232"	9778	"ENSG00000170871"
+"211496_s_at"	"PDC"	5132	"ENSG00000116703"
+"211086_x_at"	"NEK1"	4750	"ENSG00000137601"
+"213328_at"	"NEK1"	4750	"ENSG00000137601"
+"213331_s_at"	"NEK1"	4750	"ENSG00000137601"
+"214465_at"	"ORM2"	5005	"ENSG00000228278"
+"213381_at"	"VSTM4"	196740	"ENSG00000165633"
+"215103_at"	"CYP2C18"	1562	"ENSG00000108242"
+"214600_at"	"TEAD1"	7003	"ENSG00000187079"
+"211974_x_at"	"RBPJ"	3516	"ENSG00000168214"
+"213511_s_at"	"MTMR1"	8776	"ENSG00000063601"
+"214975_s_at"	"MTMR1"	8776	"ENSG00000063601"
+"212625_at"	"STX10"	8677	"ENSG00000104915"
+"212207_at"	"MED13L"	23389	"ENSG00000123066"
+"212208_at"	"MED13L"	23389	"ENSG00000123066"
+"212209_at"	"MED13L"	23389	"ENSG00000123066"
+"211544_s_at"	"GHRHR"	2692	"ENSG00000106128"
+"211545_at"	"GHRHR"	2692	"ENSG00000106128"
+"215417_at"	"EXOC6B"	23233	"ENSG00000144036"
+"212456_at"	"CLUH"	23277	"ENSG00000132361"
+"214040_s_at"	"GSN"	2934	"ENSG00000148180"
+"210770_s_at"	"CACNA1A"	773	"ENSG00000141837"
+"214933_at"	"CACNA1A"	773	"ENSG00000141837"
+"213700_s_at"	"PKM"	5315	"ENSG00000067225"
+"214372_x_at"	"ERN2"	10595	"ENSG00000134398"
+"210930_s_at"	"ERBB2"	2064	"ENSG00000141736"
+"213143_at"	"C2orf72"	257407	"ENSG00000204128"
+"213148_at"	"C2orf72"	257407	"ENSG00000204128"
+"213236_at"	"SASH1"	23328	"ENSG00000111961"
+"211140_s_at"	"CASP2"	835	"ENSG00000106144"
+"212783_at"	"RBBP6"	5930	"ENSG00000122257"
+"212781_at"	"RBBP6"	5930	"ENSG00000122257"
+"212882_at"	"KLHL18"	23276	"ENSG00000114648"
+"213618_at"	"ARAP2"	116984	"ENSG00000047365"
+"212824_at"	"FUBP3"	8939	"ENSG00000107164"
+"213708_s_at"	"MLX"	6945	"ENSG00000108788"
+"210752_s_at"	"MLX"	6945	"ENSG00000108788"
+"210872_x_at"	"GAS7"	8522	"ENSG00000007237"
+"211067_s_at"	"GAS7"	8522	"ENSG00000007237"
+"210861_s_at"	"CCN6"	8838	"ENSG00000112761"
+"212404_s_at"	"UBE3B"	89910	"ENSG00000151148"
+"212403_at"	"UBE3B"	89910	"ENSG00000151148"
+"213822_s_at"	"UBE3B"	89910	"ENSG00000151148"
+"211237_s_at"	"FGFR4"	2264	"ENSG00000160867"
+"213636_at"	"PHF24"	23349	"ENSG00000122733"
+"215030_at"	"GRSF1"	2926	"ENSG00000132463"
+"210962_s_at"	"AKAP9"	10142	"ENSG00000127914"
+"215483_at"	"AKAP9"	10142	"ENSG00000127914"
+"213656_s_at"	"KLC1"	3831	"ENSG00000126214"
+"212211_at"	"ANKRD17"	26057	"ENSG00000132466"
+"211059_s_at"	"GOLGA2"	2801	"ENSG00000167110"
+"210907_s_at"	"PDCD10"	11235	"ENSG00000114209"
+"215420_at"	"IHH"	3549	"ENSG00000163501"
+"214991_s_at"	"PIGO"	84720	"ENSG00000165282"
+"214990_at"	"PIGO"	84720	"ENSG00000165282"
+"210633_x_at"	"KRT10"	3858	"ENSG00000186395"
+"213287_s_at"	"KRT10"	3858	"ENSG00000186395"
+"213448_at"	""	NA	"ENSG00000236263"
+"211021_s_at"	"RGS14"	10636	"ENSG00000169220"
+"211238_at"	"ADAM7"	8756	"ENSG00000069206"
+"211239_s_at"	"ADAM7"	8756	"ENSG00000069206"
+"215184_at"	"DAPK2"	23604	"ENSG00000035664"
+"213620_s_at"	"ICAM2"	3384	"ENSG00000108622"
+"214343_s_at"	"ATXN7L1"	222255	"ENSG00000146776"
+"212203_x_at"	"IFITM3"	10410	"ENSG00000142089"
+"210670_at"	"PPY"	5539	"ENSG00000108849"
+"212532_s_at"	"LSM12"	124801	"ENSG00000161654"
+"213454_at"	"CENPS"	378708	"ENSG00000175279"
+"212648_at"	"DHX29"	54505	"ENSG00000067248"
+"211254_x_at"	"RHAG"	6005	"ENSG00000112077"
+"210559_s_at"	"CDK1"	983	"ENSG00000170312"
+"211968_s_at"	"HSP90AA1"	3320	"ENSG00000080824"
+"211969_at"	"HSP90AA1"	3320	"ENSG00000080824"
+"214328_s_at"	"HSP90AA1"	3320	"ENSG00000080824"
+"213305_s_at"	"PPP2R5C"	5527	"ENSG00000078304"
+"214083_at"	"PPP2R5C"	5527	"ENSG00000078304"
+"214383_x_at"	"KLHDC3"	116138	"ENSG00000124702"
+"213567_at"	"KPNA4"	3840	"ENSG00000186432"
+"215152_at"	"MYB"	4602	"ENSG00000118513"
+"215185_at"	"LINC00963"	124900275	"ENSG00000204054"
+"212461_at"	"AZIN1"	51582	"ENSG00000155096"
+"213606_s_at"	"ARHGDIA"	396	"ENSG00000141522"
+"211716_x_at"	"ARHGDIA"	396	"ENSG00000141522"
+"213425_at"	"WNT5A"	7474	"ENSG00000114251"
+"213198_at"	"ACVR1B"	91	"ENSG00000135503"
+"211774_s_at"	"MMACHC"	25974	"ENSG00000132763"
+"213632_at"	"DHODH"	1723	"ENSG00000102967"
+"212143_s_at"	"IGFBP3"	3486	"ENSG00000146674"
+"211015_s_at"	"HSPA4"	3308	"ENSG00000170606"
+"211016_x_at"	"HSPA4"	3308	"ENSG00000170606"
+"215358_x_at"	"ZNF37BP"	100129482	"ENSG00000234420"
+"214146_s_at"	"PPBP"	5473	"ENSG00000163736"
+"213154_s_at"	"BICD2"	23299	"ENSG00000185963"
+"212702_s_at"	"BICD2"	23299	"ENSG00000185963"
+"214974_x_at"	"CXCL5"	6374	"ENSG00000163735"
+"215101_s_at"	"CXCL5"	6374	"ENSG00000163735"
+"214596_at"	"CHRM3"	1131	"ENSG00000133019"
+"213199_at"	"C2CD3"	26005	"ENSG00000168014"
+"213361_at"	"TDRD7"	23424	"ENSG00000196116"
+"211044_at"	"TRIM14"	9830	"ENSG00000106785"
+"210846_x_at"	"TRIM14"	9830	"ENSG00000106785"
+"214361_s_at"	"RGS12"	6002	"ENSG00000159788"
+"214362_at"	"RGS12"	6002	"ENSG00000159788"
+"213514_s_at"	"DIAPH1"	1729	"ENSG00000131504"
+"215541_s_at"	"DIAPH1"	1729	"ENSG00000131504"
+"214523_at"	"CEBPE"	1053	"ENSG00000092067"
+"213509_x_at"	"CES2"	8824	"ENSG00000172831"
+"212288_at"	"FNBP1"	23048	"ENSG00000187239"
+"213940_s_at"	"FNBP1"	23048	"ENSG00000187239"
+"214158_s_at"	"PRDM10"	56980	"ENSG00000170325"
+"211939_x_at"	"BTF3"	689	"ENSG00000145741"
+"214800_x_at"	"BTF3"	689	"ENSG00000145741"
+"210977_s_at"	"HSF4"	3299	"ENSG00000102878"
+"213411_at"	"ADAM22"	53616	"ENSG00000008277"
+"210958_s_at"	"MAST4"	375449	"ENSG00000069020"
+"214793_at"	"DUSP7"	1849	"ENSG00000164086"
+"213848_at"	"DUSP7"	1849	"ENSG00000164086"
+"215026_x_at"	"SCNN1A"	6337	"ENSG00000111319"
+"212147_at"	"SMG5"	23381	"ENSG00000198952"
+"214971_s_at"	"ST6GAL1"	6480	"ENSG00000073849"
+"212953_x_at"	"CALR"	811	"ENSG00000179218"
+"214315_x_at"	"CALR"	811	"ENSG00000179218"
+"212561_at"	"DENND5A"	23258	"ENSG00000184014"
+"212785_s_at"	"LARP7"	51574	"ENSG00000174720"
+"213391_at"	"DPY19L4"	286148	"ENSG00000156162"
+"211503_s_at"	"RAB14"	51552	"ENSG00000119396"
+"213142_x_at"	"GSAP"	54103	"ENSG00000186088"
+"212728_at"	"DLG3"	1741	"ENSG00000082458"
+"212729_at"	"DLG3"	1741	"ENSG00000082458"
+"212727_at"	"DLG3"	1741	"ENSG00000082458"
+"212133_at"	"NIPA2"	81614	"ENSG00000140157"
+"212129_at"	"NIPA2"	81614	"ENSG00000140157"
+"215235_at"	"SPTAN1"	6709	"ENSG00000197694"
+"214925_s_at"	"SPTAN1"	6709	"ENSG00000197694"
+"211882_x_at"	"FUT6"	2528	"ENSG00000156413"
+"211465_x_at"	"FUT6"	2528	"ENSG00000156413"
+"211885_x_at"	"FUT6"	2528	"ENSG00000156413"
+"212272_at"	"LPIN1"	23175	"ENSG00000134324"
+"212274_at"	"LPIN1"	23175	"ENSG00000134324"
+"212276_at"	"LPIN1"	23175	"ENSG00000134324"
+"214482_at"	"ZBTB25"	7597	"ENSG00000089775"
+"210808_s_at"	"NOX1"	27035	"ENSG00000007952"
+"215001_s_at"	"GLUL"	2752	"ENSG00000135821"
+"213500_at"	"COPB2"	9276	"ENSG00000184432"
+"212622_at"	"TMEM41B"	440026	"ENSG00000166471"
+"212623_at"	"TMEM41B"	440026	"ENSG00000166471"
+"213905_x_at"	"BGN"	633	"ENSG00000182492"
+"212888_at"	"DICER1"	23405	"ENSG00000100697"
+"213229_at"	"DICER1"	23405	"ENSG00000100697"
+"211590_x_at"	"TBXA2R"	6915	"ENSG00000006638"
+"213815_x_at"	"CACTIN"	58509	"ENSG00000105298"
+"214892_x_at"	"CACTIN"	58509	"ENSG00000105298"
+"211310_at"	"EZH1"	2145	"ENSG00000108799"
+"212762_s_at"	"TCF7L2"	6934	"ENSG00000148737"
+"212761_at"	"TCF7L2"	6934	"ENSG00000148737"
+"212759_s_at"	"TCF7L2"	6934	"ENSG00000148737"
+"212861_at"	"MFSD5"	84975	"ENSG00000182544"
+"212518_at"	"PIP5K1C"	23396	"ENSG00000186111"
+"214269_at"	"SLC49A3"	84179	"ENSG00000169026"
+"214766_s_at"	"AHCTF1"	25909	"ENSG00000153207"
+"213506_at"	"F2RL1"	2150	"ENSG00000164251"
+"214150_x_at"	"ATP6V0E1"	8992	"ENSG00000113732"
+"211506_s_at"	"CXCL8"	3576	"ENSG00000169429"
+"212244_at"	"POLR2M"	81488	"ENSG00000255529"
+"210887_s_at"	"EVC"	2121	"ENSG00000072840"
+"212027_at"	"RBM25"	58517	"ENSG00000119707"
+"212028_at"	"RBM25"	58517	"ENSG00000119707"
+"212030_at"	"RBM25"	58517	"ENSG00000119707"
+"212031_at"	"RBM25"	58517	"ENSG00000119707"
+"212033_at"	"RBM25"	58517	"ENSG00000119707"
+"212514_x_at"	"DDX3X"	1654	"ENSG00000215301"
+"213455_at"	"FAM114A1"	92689	"ENSG00000197712"
+"214477_at"	"MLLT1"	4298	"ENSG00000130382"
+"211355_x_at"	"LEPR"	3953	"ENSG00000116678"
+"211356_x_at"	"LEPR"	3953	"ENSG00000116678"
+"211354_s_at"	"LEPR"	3953	"ENSG00000116678"
+"214732_at"	"SP1"	6667	"ENSG00000185591"
+"211609_x_at"	"PSMD4"	5710	"ENSG00000159352"
+"214109_at"	"LRBA"	987	"ENSG00000198589"
+"212692_s_at"	"LRBA"	987	"ENSG00000198589"
+"210978_s_at"	"TAGLN2"	8407	"ENSG00000158710"
+"214614_at"	"MNX1"	3110	"ENSG00000130675"
+"211167_s_at"	"GCK"	2645	"ENSG00000106633"
+"214544_s_at"	"SNAP23"	8773	"ENSG00000092531"
+"211546_x_at"	"SNCA"	6622	"ENSG00000145335"
+"211383_s_at"	"WDR37"	22884	"ENSG00000047056"
+"213954_at"	"FAM169A"	26049	"ENSG00000198780"
+"212581_x_at"	"GAPDH"	2597	"ENSG00000111640"
+"213453_x_at"	"GAPDH"	2597	"ENSG00000111640"
+"212615_at"	"CHD9"	80205	"ENSG00000177200"
+"212616_at"	"CHD9"	80205	"ENSG00000177200"
+"213714_at"	"CACNB2"	783	"ENSG00000165995"
+"210966_x_at"	"LARP1"	23367	"ENSG00000155506"
+"212193_s_at"	"LARP1"	23367	"ENSG00000155506"
+"212137_at"	"LARP1"	23367	"ENSG00000155506"
+"213922_at"	"TTBK2"	146057	"ENSG00000128881"
+"214676_x_at"	"MUC3A"	4584	"ENSG00000169894"
+"214898_x_at"	"MUC3A"	4584	"ENSG00000169894"
+"212945_s_at"	"MGA"	23269	"ENSG00000174197"
+"214808_at"	"TRIM56"	81844	"ENSG00000169871"
+"214639_s_at"	"HOXA1"	3198	"ENSG00000105991"
+"214457_at"	"HOXA2"	3199	"ENSG00000105996"
+"215087_at"	"C15orf39"	56905	"ENSG00000167173"
+"213844_at"	"HOXA5"	3202	"ENSG00000106004"
+"212969_x_at"	"EML3"	256364	"ENSG00000149499"
+"214651_s_at"	"HOXA9"	3205	"ENSG00000078399"
+"213823_at"	"HOXA11"	3207	"ENSG00000005073"
+"210973_s_at"	"FGFR1"	2260	"ENSG00000077782"
+"211535_s_at"	"FGFR1"	2260	"ENSG00000077782"
+"215404_x_at"	"FGFR1"	2260	"ENSG00000077782"
+"212257_s_at"	"SMARCA2"	6595	"ENSG00000080503"
+"212612_at"	"RCOR1"	23186	"ENSG00000089902"
+"214345_at"	"EDIL3-DT"	NA	"ENSG00000250320"
+"211800_s_at"	"USP4"	7375	"ENSG00000114316"
+"210922_at"	""	NA	"ENSG00000269653"
+"210715_s_at"	"SPINT2"	10653	"ENSG00000167642"
+"214626_s_at"	"GANAB"	23193	"ENSG00000089597"
+"211934_x_at"	"GANAB"	23193	"ENSG00000089597"
+"210904_s_at"	"IL13RA1"	3597	"ENSG00000131724"
+"211612_s_at"	"IL13RA1"	3597	"ENSG00000131724"
+"212347_x_at"	"MXD4"	10608	"ENSG00000123933"
+"212346_s_at"	"MXD4"	10608	"ENSG00000123933"
+"215324_at"	"SEMA3D"	223117	"ENSG00000153993"
+"214142_at"	"ZG16"	653808	"ENSG00000174992"
+"211234_x_at"	"ESR1"	2099	"ENSG00000091831"
+"211233_x_at"	"ESR1"	2099	"ENSG00000091831"
+"215552_s_at"	"ESR1"	2099	"ENSG00000091831"
+"211235_s_at"	"ESR1"	2099	"ENSG00000091831"
+"215551_at"	"ESR1"	2099	"ENSG00000091831"
+"212417_at"	"SCAMP1"	9522	"ENSG00000085365"
+"212416_at"	"SCAMP1"	9522	"ENSG00000085365"
+"212425_at"	"SCAMP1"	9522	"ENSG00000085365"
+"213146_at"	"KDM6B"	23135	"ENSG00000132510"
+"211061_s_at"	"MGAT2"	4247	"ENSG00000168282"
+"214819_at"	"IQSEC2"	23096	"ENSG00000124313"
+"210623_at"	"UBXN1"	51035	"ENSG00000162191"
+"212358_at"	"CLIP3"	25999	"ENSG00000105270"
+"213178_s_at"	"MAPK8IP3"	23162	"ENSG00000138834"
+"213177_at"	"MAPK8IP3"	23162	"ENSG00000138834"
+"213587_s_at"	"ATP6V0E2"	155066	"ENSG00000171130"
+"212872_s_at"	"MED20"	9477	"ENSG00000124641"
+"214607_at"	"PAK3"	5063	"ENSG00000077264"
+"213786_at"	"TAX1BP1"	8887	"ENSG00000106052"
+"212955_s_at"	"POLR2I"	5438	"ENSG00000105258"
+"214516_at"	"H4C2"	8366	"ENSG00000278705"
+"211759_x_at"	"TBCB"	1155	"ENSG00000105254"
+"213149_at"	"DLAT"	1737	"ENSG00000150768"
+"211150_s_at"	"DLAT"	1737	"ENSG00000150768"
+"212568_s_at"	"DLAT"	1737	"ENSG00000150768"
+"212650_at"	"EHBP1"	23301	"ENSG00000115504"
+"212653_s_at"	"EHBP1"	23301	"ENSG00000115504"
+"213625_at"	"ZKSCAN4"	387032	"ENSG00000187626"
+"212156_at"	"VPS39"	23339	"ENSG00000166887"
+"214751_at"	"ZNF468"	90333	"ENSG00000204604"
+"215218_s_at"	"WDR62"	284403	"ENSG00000075702"
+"215523_at"	"ZNF391"	346157	"ENSG00000124613"
+"213452_at"	"ZNF184"	7738	"ENSG00000096654"
+"213365_at"	"ERI2"	112479	"ENSG00000196678"
+"212204_at"	"TMEM87A"	25963	"ENSG00000103978"
+"212202_s_at"	"TMEM87A"	25963	"ENSG00000103978"
+"210757_x_at"	"DAB2"	1601	"ENSG00000153071"
+"214550_s_at"	"TNPO3"	23534	"ENSG00000064419"
+"212318_at"	"TNPO3"	23534	"ENSG00000064419"
+"212317_at"	"TNPO3"	23534	"ENSG00000064419"
+"213413_at"	"STON1"	11037	"ENSG00000243244"
+"212446_s_at"	"CERS6"	253782	"ENSG00000172292"
+"212442_s_at"	"CERS6"	253782	"ENSG00000172292"
+"213552_at"	"GLCE"	26035	"ENSG00000138604"
+"214830_at"	"SLC38A6"	145389	"ENSG00000139974"
+"213978_at"	"MTSS2"	92154	"ENSG00000132613"
+"213596_at"	"CASP4"	837	"ENSG00000196954"
+"213160_at"	"DOCK2"	1794	"ENSG00000134516"
+"210536_s_at"	"SPAM1"	6677	"ENSG00000106304"
+"212551_at"	"CAP2"	10486	"ENSG00000112186"
+"212554_at"	"CAP2"	10486	"ENSG00000112186"
+"215122_at"	"TBX6"	6911	"ENSG00000149922"
+"213562_s_at"	"SQLE"	6713	"ENSG00000104549"
+"213577_at"	"SQLE"	6713	"ENSG00000104549"
+"213285_at"	"TMEM30B"	161291	"ENSG00000182107"
+"213794_s_at"	"NGDN"	25983	"ENSG00000129460"
+"212041_at"	"ATP6V0D1"	9114	"ENSG00000159720"
+"214467_at"	"GPR65"	8477	"ENSG00000140030"
+"213638_at"	"PHACTR1"	221692	"ENSG00000112137"
+"215239_x_at"	"ZNF273"	10793	"ENSG00000198039"
+"214786_at"	"MAP3K1"	4214	"ENSG00000095015"
+"213575_at"	"TRA2A"	29896	"ENSG00000164548"
+"213039_at"	"ARHGEF18"	23370	"ENSG00000104880"
+"211763_s_at"	"UBE2B"	7320	"ENSG00000119048"
+"214183_s_at"	"TKTL1"	8277	"ENSG00000007350"
+"211250_s_at"	"SH3BP2"	6452	"ENSG00000087266"
+"214710_s_at"	"CCNB1"	891	"ENSG00000134057"
+"211340_s_at"	"MCAM"	4162	"ENSG00000076706"
+"210869_s_at"	"MCAM"	4162	"ENSG00000076706"
+"214736_s_at"	"ADD1"	118	"ENSG00000087274"
+"214726_x_at"	"ADD1"	118	"ENSG00000087274"
+"215282_at"	"ANAPC13"	25847	"ENSG00000129055"
+"211060_x_at"	"GPAA1"	8733	"ENSG00000197858"
+"213326_at"	"VAMP1"	6843	"ENSG00000139190"
+"211339_s_at"	"ITK"	3702	"ENSG00000113263"
+"213356_x_at"	"HNRNPA1"	3178	"ENSG00000135486"
+"214280_x_at"	"HNRNPA1"	3178	"ENSG00000135486"
+"215463_at"	"OR7E24"	26648	"ENSG00000237521"
+"212873_at"	"ARHGAP45"	23526	"ENSG00000180448"
+"210963_s_at"	"GYG2"	8908	"ENSG00000056998"
+"210964_s_at"	"GYG2"	8908	"ENSG00000056998"
+"214735_at"	"IPCEF1"	26034	"ENSG00000074706"
+"214118_x_at"	"PCM1"	5108	"ENSG00000078674"
+"214937_x_at"	"PCM1"	5108	"ENSG00000078674"
+"212535_at"	"MEF2A"	4205	"ENSG00000068305"
+"214684_at"	"MEF2A"	4205	"ENSG00000068305"
+"211965_at"	"ZFP36L1"	677	"ENSG00000185650"
+"211962_s_at"	"ZFP36L1"	677	"ENSG00000185650"
+"214430_at"	"GLA"	2717	"ENSG00000102393"
+"214555_at"	"SSTR5"	6755	"ENSG00000162009"
+"214011_s_at"	"NOP16"	51491	"ENSG00000048162"
+"212730_at"	"SYNM"	23336	"ENSG00000182253"
+"215005_at"	"NECAB2"	54550	"ENSG00000103154"
+"211043_s_at"	"CLTB"	1212	"ENSG00000175416"
+"214306_at"	"OPA1"	4976	"ENSG00000198836"
+"212213_x_at"	"OPA1"	4976	"ENSG00000198836"
+"212214_at"	"OPA1"	4976	"ENSG00000198836"
+"213336_at"	"BAZ1B"	9031	"ENSG00000009954"
+"212106_at"	"FAF2"	23197	"ENSG00000113194"
+"212108_at"	"FAF2"	23197	"ENSG00000113194"
+"212884_x_at"	"APOE"	348	"ENSG00000130203"
+"214082_at"	"CA5B"	11238	"ENSG00000169239"
+"211136_s_at"	"CLPTM1"	1209	"ENSG00000104853"
+"214508_x_at"	"CREM"	1390	"ENSG00000095794"
+"214384_s_at"	"DCTN2"	10540	"ENSG00000175203"
+"211110_s_at"	"AR"	367	"ENSG00000169083"
+"210941_at"	"PCDH7"	5099	"ENSG00000169851"
+"213877_x_at"	"ELOB"	6923	"ENSG00000103363"
+"214775_at"	"N4BP3"	23138	"ENSG00000145911"
+"213297_at"	"RMND5B"	64777	"ENSG00000145916"
+"214557_at"	"PTTG2"	10744	"ENSG00000250254"
+"210705_s_at"	"TRIM5"	85363	"ENSG00000132256"
+"213469_at"	"PGAP1"	80055	"ENSG00000197121"
+"211809_x_at"	"COL13A1"	1305	"ENSG00000197467"
+"211343_s_at"	"COL13A1"	1305	"ENSG00000197467"
+"212350_at"	"TBC1D1"	23216	"ENSG00000065882"
+"215561_s_at"	"IL1R1"	3554	"ENSG00000115594"
+"210896_s_at"	"ASPH"	444	"ENSG00000198363"
+"211865_s_at"	"FZR1"	51343	"ENSG00000105325"
+"213333_at"	"MDH2"	4191	"ENSG00000146701"
+"210719_s_at"	"HMG20B"	10362	"ENSG00000064961"
+"212851_at"	"DCUN1D4"	23142	"ENSG00000109184"
+"212853_at"	"DCUN1D4"	23142	"ENSG00000109184"
+"212855_at"	"DCUN1D4"	23142	"ENSG00000109184"
+"211758_x_at"	"TXNDC9"	10190	"ENSG00000115514"
+"215116_s_at"	"DNM1"	1759	"ENSG00000106976"
+"212240_s_at"	"PIK3R1"	5295	"ENSG00000145675"
+"212249_at"	"PIK3R1"	5295	"ENSG00000145675"
+"212239_at"	"PIK3R1"	5295	"ENSG00000145675"
+"213584_s_at"	"CREBZF"	58487	"ENSG00000137504"
+"215421_at"	"ARNILA"	NA	"ENSG00000235072"
+"211184_s_at"	"USH1C"	10083	"ENSG00000006611"
+"214305_s_at"	"SF3B1"	23451	"ENSG00000115524"
+"211185_s_at"	"SF3B1"	23451	"ENSG00000115524"
+"215478_at"	"RIMS2"	9699	"ENSG00000176406"
+"211834_s_at"	"TP63"	8626	"ENSG00000073282"
+"211195_s_at"	"TP63"	8626	"ENSG00000073282"
+"211194_s_at"	"TP63"	8626	"ENSG00000073282"
+"211193_at"	"TP63"	8626	"ENSG00000073282"
+"215531_s_at"	"GABRA5"	2558	"ENSG00000186297"
+"210935_s_at"	"WDR1"	9948	"ENSG00000071127"
+"212753_at"	"PCGF3"	10336	"ENSG00000185619"
+"211501_s_at"	"EIF3B"	8662	"ENSG00000106263"
+"212841_s_at"	"PPFIBP2"	8495	"ENSG00000166387"
+"210835_s_at"	"CTBP2"	1488	"ENSG00000175029"
+"214920_at"	"THSD7A"	221981	"ENSG00000005108"
+"213894_at"	"THSD7A"	221981	"ENSG00000005108"
+"213468_at"	"ERCC2"	2068	"ENSG00000104884"
+"213724_s_at"	"PDK2"	5164	"ENSG00000005882"
+"214063_s_at"	"TF"	7018	"ENSG00000091513"
+"214064_at"	"TF"	7018	"ENSG00000091513"
+"214091_s_at"	"GPX3"	2878	"ENSG00000211445"
+"214212_x_at"	"FERMT2"	10979	"ENSG00000073712"
+"213866_at"	"SAMD14"	201191	"ENSG00000167100"
+"212488_at"	"COL5A1"	1289	"ENSG00000130635"
+"212489_at"	"COL5A1"	1289	"ENSG00000130635"
+"212784_at"	"CIC"	23152	"ENSG00000079432"
+"212643_at"	"MAPK1IP1L"	93487	"ENSG00000168175"
+"214466_at"	"GJA5"	2702	"ENSG00000265107"
+"213679_at"	"TTC30A"	92104	"ENSG00000197557"
+"211478_s_at"	"DPP4"	1803	"ENSG00000197635"
+"210734_x_at"	"MAX"	4149	"ENSG00000125952"
+"214108_at"	"MAX"	4149	"ENSG00000125952"
+"213034_at"	"SIK3"	23387	"ENSG00000160584"
+"210632_s_at"	"SGCA"	6442	"ENSG00000108823"
+"214468_at"	"MYH6"	4624	"ENSG00000197616"
+"210975_x_at"	"FASTK"	10922	"ENSG00000164896"
+"214114_x_at"	"FASTK"	10922	"ENSG00000164896"
+"213960_at"	"NTRK3"	4916	"ENSG00000140538"
+"215311_at"	"NTRK3"	4916	"ENSG00000140538"
+"215115_x_at"	"NTRK3"	4916	"ENSG00000140538"
+"215025_at"	"NTRK3"	4916	"ENSG00000140538"
+"213681_at"	"ZFTRAF1"	50626	"ENSG00000187954"
+"211337_s_at"	"TUBGCP4"	27229	"ENSG00000137822"
+"213041_s_at"	"ATP5F1D"	513	"ENSG00000099624"
+"211945_s_at"	"ITGB1"	3688	"ENSG00000150093"
+"213718_at"	"RBM4"	5936	"ENSG00000173933"
+"212886_at"	"CCDC69"	26112	"ENSG00000198624"
+"211773_s_at"	"ZKSCAN3"	80317	"ENSG00000189298"
+"212737_at"	"GM2A"	2760	"ENSG00000196743"
+"213266_at"	"TP53BP1"	7158	"ENSG00000067369"
+"210791_s_at"	"ARHGAP32"	9743	"ENSG00000134909"
+"211023_at"	"PDHB"	5162	"ENSG00000168291"
+"213106_at"	"ATP8A1"	10396	"ENSG00000124406"
+"211442_x_at"	"CYP3A43"	64816	"ENSG00000021461"
+"211441_x_at"	"CYP3A43"	64816	"ENSG00000021461"
+"211440_x_at"	"CYP3A43"	64816	"ENSG00000021461"
+"212993_at"	"NACC2"	138151	"ENSG00000148411"
+"213622_at"	"COL9A2"	1298	"ENSG00000049089"
+"214266_s_at"	"PDLIM7"	9260	"ENSG00000196923"
+"214121_x_at"	"PDLIM7"	9260	"ENSG00000196923"
+"211676_s_at"	"IFNGR1"	3459	"ENSG00000027697"
+"212069_s_at"	"PRRC2B"	84726	"ENSG00000288701"
+"212068_s_at"	"PRRC2B"	84726	"ENSG00000288701"
+"212808_at"	"NFATC2IP"	84901	"ENSG00000176953"
+"212809_at"	"NFATC2IP"	84901	"ENSG00000176953"
+"215384_s_at"	"MAP1A"	4130	"ENSG00000166963"
+"213464_at"	"SHC2"	25759	"ENSG00000129946"
+"213439_x_at"	"RUNDC3A"	10900	"ENSG00000108309"
+"215049_x_at"	"CD163"	9332	"ENSG00000177575"
+"212449_s_at"	"LYPLA1"	10434	"ENSG00000120992"
+"213237_at"	"KNOP1"	400506	"ENSG00000103550"
+"213235_at"	"KNOP1"	400506	"ENSG00000103550"
+"211125_x_at"	"GRIN1"	2902	"ENSG00000176884"
+"210781_x_at"	"GRIN1"	2902	"ENSG00000176884"
+"210782_x_at"	"GRIN1"	2902	"ENSG00000176884"
+"214686_at"	"ZNF266"	10781	"ENSG00000174652"
+"214517_at"	"KRTAP5-9"	3846	"ENSG00000254997"
+"215130_s_at"	"IQCK"	124152	"ENSG00000174628"
+"213392_at"	"IQCK"	124152	"ENSG00000174628"
+"215131_at"	"IQCK"	124152	"ENSG00000174628"
+"211519_s_at"	"KIF2C"	11004	"ENSG00000142945"
+"212475_at"	"AVL9"	23080	"ENSG00000105778"
+"212471_at"	"AVL9"	23080	"ENSG00000105778"
+"212474_at"	"AVL9"	23080	"ENSG00000105778"
+"214076_at"	"GFOD2"	81577	"ENSG00000141098"
+"214780_s_at"	"MYO9B"	4650	"ENSG00000099331"
+"211884_s_at"	"CIITA"	4261	"ENSG00000179583"
+"210925_at"	"CIITA"	4261	"ENSG00000179583"
+"215270_at"	"LFNG"	3955	"ENSG00000106003"
+"212334_at"	"GNS"	2799	"ENSG00000135677"
+"212335_at"	"GNS"	2799	"ENSG00000135677"
+"212679_at"	"TBL2"	26608	"ENSG00000106638"
+"212685_s_at"	"TBL2"	26608	"ENSG00000106638"
+"212699_at"	"SCAMP5"	192683	"ENSG00000198794"
+"210585_s_at"	"TNPO2"	30000	"ENSG00000105576"
+"213083_at"	"SLC35D2"	11046	"ENSG00000130958"
+"214685_at"	"NOP14-AS1"	NA	"ENSG00000249673"
+"215141_at"	"NOP14-AS1"	NA	"ENSG00000249673"
+"214123_s_at"	"NOP14-AS1"	NA	"ENSG00000249673"
+"210929_s_at"	"AHSG"	197	"ENSG00000145192"
+"211348_s_at"	"CDC14B"	8555	"ENSG00000081377"
+"211347_at"	"CDC14B"	8555	"ENSG00000081377"
+"212087_s_at"	"ERAL1"	26284	"ENSG00000132591"
+"210521_s_at"	"FETUB"	26998	"ENSG00000090512"
+"212584_at"	"AQR"	9716	"ENSG00000021776"
+"212583_at"	"AQR"	9716	"ENSG00000021776"
+"211517_s_at"	"IL5RA"	3568	"ENSG00000091181"
+"210744_s_at"	"IL5RA"	3568	"ENSG00000091181"
+"211516_at"	"IL5RA"	3568	"ENSG00000091181"
+"212956_at"	"TBC1D9"	23158	"ENSG00000109436"
+"212960_at"	"TBC1D9"	23158	"ENSG00000109436"
+"211631_x_at"	"B4GALT1"	2683	"ENSG00000086062"
+"212696_s_at"	"RNF4"	6047	"ENSG00000063978"
+"211475_s_at"	"BAG1"	573	"ENSG00000107262"
+"211721_s_at"	"ZNF551"	90233	"ENSG00000204519"
+"212447_at"	"KBTBD2"	25948	"ENSG00000170852"
+"214715_x_at"	"ZNF160"	90338	"ENSG00000170949"
+"212669_at"	"CAMK2G"	818	"ENSG00000148660"
+"212757_s_at"	"CAMK2G"	818	"ENSG00000148660"
+"214322_at"	"CAMK2G"	818	"ENSG00000148660"
+"212112_s_at"	"STX12"	23673	"ENSG00000117758"
+"212111_at"	"STX12"	23673	"ENSG00000117758"
+"210785_s_at"	"THEMIS2"	9473	"ENSG00000130775"
+"210987_x_at"	"TPM1"	7168	"ENSG00000140416"
+"210986_s_at"	"TPM1"	7168	"ENSG00000140416"
+"213230_at"	"CDR2L"	30850	"ENSG00000109089"
+"214796_at"	"TRMT9B"	57604	"ENSG00000250305"
+"212277_at"	"MTMR4"	9110	"ENSG00000108389"
+"214268_s_at"	"MTMR4"	9110	"ENSG00000108389"
+"211829_s_at"	"GPER1"	2852	"ENSG00000164850"
+"210640_s_at"	"GPER1"	2852	"ENSG00000164850"
+"213150_at"	"HOXA10"	3206	"ENSG00000253293"
+"213147_at"	"HOXA10"	3206	"ENSG00000253293"
+"211469_s_at"	"CXCR6"	10663	"ENSG00000172215"
+"213271_s_at"	"DOP1A"	23033	"ENSG00000083097"
+"213267_at"	"DOP1A"	23033	"ENSG00000083097"
+"212910_at"	"THAP11"	57215	"ENSG00000168286"
+"212088_at"	"PMPCA"	23203	"ENSG00000165688"
+"214515_at"	"OR1E1"	8387	"ENSG00000180016"
+"212145_at"	"MRPS27"	23107	"ENSG00000113048"
+"213555_at"	"RWDD2A"	112611	"ENSG00000013392"
+"213141_at"	"PSKH1"	5681	"ENSG00000159792"
+"210569_s_at"	"SIGLEC9"	27180	"ENSG00000129450"
+"210764_s_at"	"CCN1"	3491	"ENSG00000142871"
+"214690_at"	"TAF1B"	9014	"ENSG00000115750"
+"215321_at"	"RUNDC3B"	154661	"ENSG00000105784"
+"213652_at"	"PCSK5"	5125	"ENSG00000099139"
+"212548_s_at"	"FRYL"	285527	"ENSG00000075539"
+"212546_s_at"	"FRYL"	285527	"ENSG00000075539"
+"212310_at"	"MIA3"	375056	"ENSG00000154305"
+"212305_s_at"	"MIA3"	375056	"ENSG00000154305"
+"213915_at"	"NKG7"	4818	"ENSG00000105374"
+"211422_at"	"TRPM3"	80036	"ENSG00000083067"
+"214947_at"	"OTULINL"	54491	"ENSG00000145569"
+"214206_at"	"PPIL6"	285755	"ENSG00000185250"
+"212814_at"	"AHCYL2"	23382	"ENSG00000158467"
+"210684_s_at"	"DLG4"	1742	"ENSG00000132535"
+"212552_at"	"HPCAL1"	3241	"ENSG00000115756"
+"214921_at"	"KCNMA1"	3778	"ENSG00000156113"
+"212670_at"	"ELN"	2006	"ENSG00000049540"
+"212776_s_at"	"OBSL1"	23363	"ENSG00000124006"
+"213946_s_at"	"OBSL1"	23363	"ENSG00000124006"
+"214928_at"	"OBSL1"	23363	"ENSG00000124006"
+"212775_at"	"OBSL1"	23363	"ENSG00000124006"
+"215302_at"	"BAALC-AS1"	105369147	"ENSG00000247081"
+"211819_s_at"	"SORBS1"	10580	"ENSG00000095637"
+"211705_s_at"	"SORBS1"	10580	"ENSG00000095637"
+"213664_at"	"SLC1A1"	6505	"ENSG00000106688"
+"211000_s_at"	"IL6ST"	3572	"ENSG00000134352"
+"212196_at"	"IL6ST"	3572	"ENSG00000134352"
+"212195_at"	"IL6ST"	3572	"ENSG00000134352"
+"214901_at"	"ZNF8"	7554	"ENSG00000278129"
+"212099_at"	"RHOB"	388	"ENSG00000143878"
+"213032_at"	"NFIB"	4781	"ENSG00000147862"
+"213029_at"	"NFIB"	4781	"ENSG00000147862"
+"213033_s_at"	"NFIB"	4781	"ENSG00000147862"
+"211467_s_at"	"NFIB"	4781	"ENSG00000147862"
+"211466_at"	"NFIB"	4781	"ENSG00000147862"
+"212904_at"	"LRRC47"	57470	"ENSG00000130764"
+"212747_at"	"ANKS1A"	23294	"ENSG00000064999"
+"212261_at"	"GIGYF2"	26058	"ENSG00000204120"
+"213359_at"	"HNRNPD"	3184	"ENSG00000138668"
+"213778_x_at"	"ZNF276"	92822	"ENSG00000158805"
+"213892_s_at"	"APRT"	353	"ENSG00000198931"
+"212454_x_at"	"HNRNPDL"	9987	"ENSG00000152795"
+"215530_at"	"FANCA"	2175	"ENSG00000187741"
+"213108_at"	"CAMK2A"	815	"ENSG00000070808"
+"211322_s_at"	"SARDH"	1757	"ENSG00000123453"
+"210862_s_at"	"SARDH"	1757	"ENSG00000123453"
+"213545_x_at"	"SNX3"	8724	"ENSG00000112335"
+"210648_x_at"	"SNX3"	8724	"ENSG00000112335"
+"212022_s_at"	"MKI67"	4288	"ENSG00000148773"
+"212020_s_at"	"MKI67"	4288	"ENSG00000148773"
+"212023_s_at"	"MKI67"	4288	"ENSG00000148773"
+"212021_s_at"	"MKI67"	4288	"ENSG00000148773"
+"211088_s_at"	"PLK4"	10733	"ENSG00000142731"
+"212503_s_at"	"DIP2C"	22982	"ENSG00000151240"
+"212504_at"	"DIP2C"	22982	"ENSG00000151240"
+"213788_s_at"	"BRD3OS"	266655	"ENSG00000235106"
+"210874_s_at"	"NAA80"	24142	"ENSG00000243477"
+"212547_at"	"BRD3"	8019	"ENSG00000169925"
+"213185_at"	"KATNIP"	23247	"ENSG00000047578"
+"210927_x_at"	"JTB"	10899	"ENSG00000143543"
+"215134_at"	"PI4K2A"	55361	"ENSG00000155252"
+"213758_at"	"COX4I1"	1327	"ENSG00000131143"
+"215411_s_at"	"TRAF3IP2"	10758	"ENSG00000056972"
+"211039_at"	"CHRNA1"	1134	"ENSG00000138435"
+"213420_at"	"DHX57"	90957	"ENSG00000163214"
+"212879_x_at"	"PIAS4"	51588	"ENSG00000105229"
+"212881_at"	"PIAS4"	51588	"ENSG00000105229"
+"211979_at"	"GPR107"	57720	"ENSG00000148358"
+"211977_at"	"GPR107"	57720	"ENSG00000148358"
+"213303_x_at"	"ZBTB7A"	51341	"ENSG00000178951"
+"213299_at"	"ZBTB7A"	51341	"ENSG00000178951"
+"214812_s_at"	"MOB1A"	55233	"ENSG00000114978"
+"213490_s_at"	"MAP2K2"	5605	"ENSG00000126934"
+"213227_at"	"PGRMC2"	10424	"ENSG00000164040"
+"214535_s_at"	"ADAMTS2"	9509	"ENSG00000087116"
+"214454_at"	"ADAMTS2"	9509	"ENSG00000087116"
+"212838_at"	"DNMBP"	23268	"ENSG00000107554"
+"210678_s_at"	"AGPAT2"	10555	"ENSG00000169692"
+"210657_s_at"	"SEPTIN4"	5414	"ENSG00000108387"
+"214469_at"	"H2AC8"	3012	"ENSG00000277075"
+"212368_at"	"ZNF292"	23036	"ENSG00000188994"
+"212366_at"	"ZNF292"	23036	"ENSG00000188994"
+"210892_s_at"	"GTF2I"	2969	"ENSG00000263001"
+"213626_at"	"CBR4"	84869	"ENSG00000145439"
+"214939_x_at"	"AFDN"	4301	"ENSG00000130396"
+"211708_s_at"	"SCD"	6319	"ENSG00000099194"
+"211162_x_at"	"SCD"	6319	"ENSG00000099194"
+"212837_at"	"ABRAXAS2"	23172	"ENSG00000165660"
+"212835_at"	"ABRAXAS2"	23172	"ENSG00000165660"
+"212502_at"	"ADO"	84890	"ENSG00000181915"
+"212500_at"	"ADO"	84890	"ENSG00000181915"
+"210739_x_at"	"SLC4A4"	8671	"ENSG00000080493"
+"211494_s_at"	"SLC4A4"	8671	"ENSG00000080493"
+"210738_s_at"	"SLC4A4"	8671	"ENSG00000080493"
+"213074_at"	"PHIP"	55023	"ENSG00000146247"
+"212542_s_at"	"PHIP"	55023	"ENSG00000146247"
+"213578_at"	"BMPR1A"	657	"ENSG00000107779"
+"213433_at"	"ARL3"	403	"ENSG00000138175"
+"212693_at"	"MDN1"	23195	"ENSG00000112159"
+"214794_at"	"PA2G4"	5036	"ENSG00000170515"
+"212852_s_at"	"RO60"	6738	"ENSG00000116747"
+"212839_s_at"	"RO60"	6738	"ENSG00000116747"
+"213027_at"	"RO60"	6738	"ENSG00000116747"
+"214002_at"	"MYL6"	4637	"ENSG00000092841"
+"211401_s_at"	"FGFR2"	2263	"ENSG00000066468"
+"213009_s_at"	"TRIM37"	4591	"ENSG00000108395"
+"210504_at"	"KLF1"	10661	"ENSG00000105610"
+"212792_at"	"DPY19L1"	23333	"ENSG00000173852"
+"215433_at"	"MIR548N"	100302152	"ENSG00000221669"
+"212721_at"	"SREK1"	140890	"ENSG00000153914"
+"213598_at"	"KIF2A"	3796	"ENSG00000068796"
+"215135_at"	"DNPEP"	23549	"ENSG00000123992"
+"212968_at"	"RFNG"	5986	"ENSG00000169733"
+"214791_at"	"SP140L"	93349	"ENSG00000185404"
+"212218_s_at"	"FASN"	2194	"ENSG00000169710"
+"210571_s_at"	"CMAHP"	NA	"ENSG00000168405"
+"211282_x_at"	"TNFRSF25"	8718	"ENSG00000215788"
+"210847_x_at"	"TNFRSF25"	8718	"ENSG00000215788"
+"211841_s_at"	"TNFRSF25"	8718	"ENSG00000215788"
+"213827_at"	"ARHGAP33"	115703	"ENSG00000004777"
+"215256_x_at"	"ARHGAP33"	115703	"ENSG00000004777"
+"215452_x_at"	"SUMO4"	387082	"ENSG00000177688"
+"212464_s_at"	"FN1"	2335	"ENSG00000115414"
+"210495_x_at"	"FN1"	2335	"ENSG00000115414"
+"211719_x_at"	"FN1"	2335	"ENSG00000115414"
+"214701_s_at"	"FN1"	2335	"ENSG00000115414"
+"214702_at"	"FN1"	2335	"ENSG00000115414"
+"212184_s_at"	"TAB2"	23118	"ENSG00000055208"
+"211675_s_at"	"MDFIC"	29969	"ENSG00000135272"
+"212018_s_at"	"RSL1D1"	26156	"ENSG00000171490"
+"213750_at"	"RSL1D1"	26156	"ENSG00000171490"
+"212019_at"	"RSL1D1"	26156	"ENSG00000171490"
+"215438_x_at"	"GSPT1"	2935	"ENSG00000103342"
+"213712_at"	"ELOVL2"	54898	"ENSG00000197977"
+"213878_at"	"PYROXD1"	79912	"ENSG00000121350"
+"211232_x_at"	"GLP1R"	2740	"ENSG00000112164"
+"212918_at"	"RECQL"	5965	"ENSG00000004700"
+"210568_s_at"	"RECQL"	5965	"ENSG00000004700"
+"212917_x_at"	"RECQL"	5965	"ENSG00000004700"
+"215266_at"	"DNAH3"	55567	"ENSG00000158486"
+"214865_at"	"DOT1L"	84444	"ENSG00000104885"
+"211976_at"	"NUDT3"	11165	"ENSG00000272325"
+"212641_at"	"HIVEP2"	3097	"ENSG00000010818"
+"212642_s_at"	"HIVEP2"	3097	"ENSG00000010818"
+"212505_s_at"	"MAU2"	23383	"ENSG00000129933"
+"213647_at"	"DNA2"	1763	"ENSG00000138346"
+"215350_at"	"SYNE1"	23345	"ENSG00000131018"
+"214140_at"	"SLC25A16"	8034	"ENSG00000122912"
+"214862_x_at"	""	NA	"ENSG00000260400"
+"210790_s_at"	"SAR1A"	56681	"ENSG00000079332"
+"213028_at"	"NFRKB"	4798	"ENSG00000170322"
+"214403_x_at"	"PACSIN1"	29993	"ENSG00000124507"
+"213441_x_at"	"SPDEF"	25803	"ENSG00000124664"
+"214404_x_at"	"SPDEF"	25803	"ENSG00000124664"
+"213817_at"	"IRAK3"	11213	"ENSG00000090376"
+"214857_at"	"C10orf95-AS1"	100505761	"ENSG00000269609"
+"213248_at"	""	730101	"ENSG00000291006"
+"215223_s_at"	"SOD2"	6648	"ENSG00000291237"
+"215078_at"	"SOD2"	6648	"ENSG00000291237"
+"214809_at"	""	100294145	"ENSG00000289047"
+"214247_s_at"	"DKK3"	27122	"ENSG00000050165"
+"214601_at"	"TPH1"	7166	"ENSG00000129167"
+"214576_at"	"KRT36"	8689	"ENSG00000126337"
+"213715_s_at"	"KANK3"	256949	"ENSG00000186994"
+"214217_at"	"GRM5"	2915	"ENSG00000168959"
+"210783_x_at"	"CLEC11A"	6320	"ENSG00000105472"
+"211709_s_at"	"CLEC11A"	6320	"ENSG00000105472"
+"210716_s_at"	"CLIP1"	6249	"ENSG00000130779"
+"210732_s_at"	"LGALS8"	3964	"ENSG00000116977"
+"210731_s_at"	"LGALS8"	3964	"ENSG00000116977"
+"210519_s_at"	"NQO1"	1728	"ENSG00000181019"
+"212225_at"	"EIF1"	10209	"ENSG00000173812"
+"211956_s_at"	"EIF1"	10209	"ENSG00000173812"
+"212130_x_at"	"EIF1"	10209	"ENSG00000173812"
+"212227_x_at"	"EIF1"	10209	"ENSG00000173812"
+"215092_s_at"	"NFAT5"	10725	"ENSG00000102908"
+"211557_x_at"	"SLCO2B1"	11309	"ENSG00000137491"
+"211752_s_at"	"NDUFS7"	374291	"ENSG00000115286"
+"214124_x_at"	"CEP43"	11116	"ENSG00000213066"
+"211434_s_at"	"CCRL2"	9034	"ENSG00000121797"
+"213023_at"	"UTRN"	7402	"ENSG00000152818"
+"213022_s_at"	"UTRN"	7402	"ENSG00000152818"
+"211833_s_at"	"BAX"	581	"ENSG00000087088"
+"215345_x_at"	"TRGV7"	NA	"ENSG00000249978"
+"213216_at"	"OTUD3"	23252	"ENSG00000169914"
+"215509_s_at"	"BUB1"	699	"ENSG00000169679"
+"215508_at"	"BUB1"	699	"ENSG00000169679"
+"214347_s_at"	"DDC"	1644	"ENSG00000132437"
+"215016_x_at"	"DST"	667	"ENSG00000151914"
+"212254_s_at"	"DST"	667	"ENSG00000151914"
+"212253_x_at"	"DST"	667	"ENSG00000151914"
+"212982_at"	"ZDHHC17"	23390	"ENSG00000186908"
+"212372_at"	"MYH10"	4628	"ENSG00000133026"
+"213067_at"	"MYH10"	4628	"ENSG00000133026"
+"210829_s_at"	"SSBP2"	23635	"ENSG00000145687"
+"214068_at"	"BEAN1"	146227	"ENSG00000166546"
+"213070_at"	"PIK3C2A"	5286	"ENSG00000011405"
+"211992_at"	"WNK1"	65125	"ENSG00000060237"
+"211994_at"	"WNK1"	65125	"ENSG00000060237"
+"211993_at"	"WNK1"	65125	"ENSG00000060237"
+"214781_at"	"SHANK1"	50944	"ENSG00000161681"
+"214966_at"	"GRIK5"	2901	"ENSG00000105737"
+"213913_s_at"	"TBC1D30"	23329	"ENSG00000111490"
+"215186_at"	"TBC1D30"	23329	"ENSG00000111490"
+"213912_at"	"TBC1D30"	23329	"ENSG00000111490"
+"210530_s_at"	"NR2C1"	7181	"ENSG00000120798"
+"210531_at"	"NR2C1"	7181	"ENSG00000120798"
+"215514_at"	""	NA	"ENSG00000273487"
+"212189_s_at"	"COG4"	25839	"ENSG00000103051"
+"215319_at"	"ATP8B3"	148229	"ENSG00000130270"
+"212786_at"	"CLEC16A"	23274	"ENSG00000038532"
+"212557_at"	"ZNF451"	26036	"ENSG00000112200"
+"215012_at"	"ZNF451"	26036	"ENSG00000112200"
+"213157_s_at"	"WSCD1"	23302	"ENSG00000179314"
+"213155_at"	"WSCD1"	23302	"ENSG00000179314"
+"211553_x_at"	"APAF1"	317	"ENSG00000120868"
+"211554_s_at"	"APAF1"	317	"ENSG00000120868"
+"213607_x_at"	"NADK"	65220	"ENSG00000008130"
+"215159_s_at"	"NADK"	65220	"ENSG00000008130"
+"213294_at"	"EIF2AK2"	5610	"ENSG00000055332"
+"215402_at"	"APPBP2"	10513	"ENSG00000062725"
+"214500_at"	"MACROH2A1"	9555	"ENSG00000113648"
+"214501_s_at"	"MACROH2A1"	9555	"ENSG00000113648"
+"213889_at"	"PIGL"	9487	"ENSG00000108474"
+"214893_x_at"	"HCN2"	610	"ENSG00000099822"
+"215031_x_at"	"RNF126"	55658	"ENSG00000070423"
+"213797_at"	"RSAD2"	91543	"ENSG00000134321"
+"215050_x_at"	"MAPKAPK2"	9261	"ENSG00000162889"
+"215165_x_at"	"UMPS"	7372	"ENSG00000114491"
+"211087_x_at"	"MAPK14"	1432	"ENSG00000112062"
+"211561_x_at"	"MAPK14"	1432	"ENSG00000112062"
+"212980_at"	"AHSA2P"	130872	"ENSG00000173209"
+"214700_x_at"	"RIF1"	55183	"ENSG00000080345"
+"214872_at"	"RIF1"	55183	"ENSG00000080345"
+"212303_x_at"	"KHSRP"	8570	"ENSG00000088247"
+"211048_s_at"	"PDIA4"	9601	"ENSG00000155660"
+"211737_x_at"	"PTN"	5764	"ENSG00000105894"
+"212361_s_at"	"ATP2A2"	488	"ENSG00000174437"
+"212362_at"	"ATP2A2"	488	"ENSG00000174437"
+"213138_at"	"ARID5A"	10865	"ENSG00000196843"
+"211771_s_at"	"POU2F2"	5452	"ENSG00000028277"
+"211660_at"	"POU2F2"	5452	"ENSG00000028277"
+"211804_s_at"	"CDK2"	1017	"ENSG00000123374"
+"214251_s_at"	"NUMA1"	4926	"ENSG00000137497"
+"214250_at"	"NUMA1"	4926	"ENSG00000137497"
+"212038_s_at"	"VDAC1"	7416	"ENSG00000213585"
+"214085_x_at"	"GLIPR1"	11010	"ENSG00000139278"
+"212606_at"	"WDFY3"	23001	"ENSG00000163625"
+"212602_at"	"WDFY3"	23001	"ENSG00000163625"
+"212598_at"	"WDFY3"	23001	"ENSG00000163625"
+"212236_x_at"	"KRT17"	3872	"ENSG00000128422"
+"212599_at"	"AUTS2"	26053	"ENSG00000158321"
+"215386_at"	"AUTS2"	26053	"ENSG00000158321"
+"212486_s_at"	"FYN"	2534	"ENSG00000010810"
+"211694_at"	"TSSK1B"	83942	"ENSG00000212122"
+"211899_s_at"	"TRAF4"	9618	"ENSG00000076604"
+"213077_at"	"YTHDC2"	64848	"ENSG00000047188"
+"210984_x_at"	"EGFR"	1956	"ENSG00000146648"
+"211550_at"	"EGFR"	1956	"ENSG00000146648"
+"211607_x_at"	"EGFR"	1956	"ENSG00000146648"
+"214817_at"	"UNC13A"	23025	"ENSG00000130477"
+"212444_at"	"GPRC5A"	9052	"ENSG00000013588"
+"215112_x_at"	"MCF2L2"	23101	"ENSG00000053524"
+"215232_at"	"ARHGAP44"	9912	"ENSG00000006740"
+"214400_at"	"INSL3"	3640	"ENSG00000248099"
+"214572_s_at"	"INSL3"	3640	"ENSG00000248099"
+"211780_x_at"	"DCTN1"	1639	"ENSG00000204843"
+"212906_at"	"GRAMD1B"	57476	"ENSG00000023171"
+"210939_s_at"	"GRM1"	2911	"ENSG00000152822"
+"210940_s_at"	"GRM1"	2911	"ENSG00000152822"
+"210965_x_at"	"CDK13"	8621	"ENSG00000065883"
+"214017_s_at"	"DHX34"	9704	"ENSG00000134815"
+"214479_at"	"GFRA3"	2676	"ENSG00000146013"
+"212468_at"	"SPAG9"	9043	"ENSG00000008294"
+"212470_at"	"SPAG9"	9043	"ENSG00000008294"
+"212667_at"	"SPARC"	6678	"ENSG00000113140"
+"211034_s_at"	"HECTD4"	283450	"ENSG00000173064"
+"215267_s_at"	"SLC8A2"	6543	"ENSG00000118160"
+"215273_s_at"	"TADA3"	10474	"ENSG00000171148"
+"211221_at"	"TADA3"	10474	"ENSG00000171148"
+"212943_at"	"C2CD5"	9847	"ENSG00000111731"
+"211323_s_at"	"ITPR1"	3708	"ENSG00000150995"
+"213270_at"	"MPP2"	4355	"ENSG00000108852"
+"211520_s_at"	"GRIA1"	2890	"ENSG00000155511"
+"213885_at"	"TRIM3"	10612	"ENSG00000110171"
+"213884_s_at"	"TRIM3"	10612	"ENSG00000110171"
+"214579_at"	"NIPAL3"	57185	"ENSG00000001461"
+"211112_at"	"SLC12A4"	6560	"ENSG00000124067"
+"211480_s_at"	"SLCO1A2"	6579	"ENSG00000084453"
+"211481_at"	"SLCO1A2"	6579	"ENSG00000084453"
+"215325_x_at"	"CBARP"	255057	"ENSG00000099625"
+"212134_at"	"PHLDB1"	23187	"ENSG00000019144"
+"212300_at"	"TXLNA"	200081	"ENSG00000084652"
+"210886_x_at"	"TP53TG1"	NA	"ENSG00000182165"
+"213050_at"	"COBL"	23242	"ENSG00000106078"
+"213043_s_at"	"MED24"	9862	"ENSG00000008838"
+"211172_x_at"	"AKAP7"	9465	"ENSG00000118507"
+"215326_at"	"PAK4"	10298	"ENSG00000130669"
+"210513_s_at"	"VEGFA"	7422	"ENSG00000112715"
+"211527_x_at"	"VEGFA"	7422	"ENSG00000112715"
+"212171_x_at"	"VEGFA"	7422	"ENSG00000112715"
+"210512_s_at"	"VEGFA"	7422	"ENSG00000112715"
+"212064_x_at"	"MAZ"	4150	"ENSG00000103495"
+"214987_at"	"GAB1"	2549	"ENSG00000109458"
+"213264_at"	"PCBP2"	5094	"ENSG00000197111"
+"213263_s_at"	"PCBP2"	5094	"ENSG00000197111"
+"210916_s_at"	"CD44"	960	"ENSG00000026508"
+"212014_x_at"	"CD44"	960	"ENSG00000026508"
+"212063_at"	"CD44"	960	"ENSG00000026508"
+"210534_s_at"	"B9D1"	27077	"ENSG00000108641"
+"210535_at"	"B9D1"	27077	"ENSG00000108641"
+"211389_x_at"	"KIR3DL1"	3811	"ENSG00000167633"
+"212138_at"	"PDS5A"	23244	"ENSG00000121892"
+"213983_s_at"	"PDS5A"	23244	"ENSG00000121892"
+"212140_at"	"PDS5A"	23244	"ENSG00000121892"
+"213984_at"	"PDS5A"	23244	"ENSG00000121892"
+"211898_s_at"	"EPHB1"	2047	"ENSG00000154928"
+"210753_s_at"	"EPHB1"	2047	"ENSG00000154928"
+"211816_x_at"	"FCAR"	2204	"ENSG00000186431"
+"211307_s_at"	"FCAR"	2204	"ENSG00000186431"
+"214597_at"	"SSTR2"	6752	"ENSG00000180616"
+"211536_x_at"	"MAP3K7"	6885	"ENSG00000135341"
+"211537_x_at"	"MAP3K7"	6885	"ENSG00000135341"
+"212559_at"	"PRKAR1B"	5575	"ENSG00000188191"
+"212555_at"	"PRKAR1B"	5575	"ENSG00000188191"
+"214721_x_at"	"CDC42EP4"	23580	"ENSG00000179604"
+"212432_at"	"GRPEL1"	80273	"ENSG00000109519"
+"212434_at"	"GRPEL1"	80273	"ENSG00000109519"
+"211104_s_at"	"MYO7A"	4647	"ENSG00000137474"
+"211103_at"	"MYO7A"	4647	"ENSG00000137474"
+"215356_at"	"TDRD12"	91646	"ENSG00000173809"
+"211255_x_at"	"DEDD"	9191	"ENSG00000158796"
+"215158_s_at"	"DEDD"	9191	"ENSG00000158796"
+"213053_at"	"HAUS5"	23354	"ENSG00000249115"
+"213054_at"	"HAUS5"	23354	"ENSG00000249115"
+"211840_s_at"	"PDE4D"	5144	"ENSG00000113448"
+"210837_s_at"	"PDE4D"	5144	"ENSG00000113448"
+"210836_x_at"	"PDE4D"	5144	"ENSG00000113448"
+"214455_at"	"H2BC4"	8347	"ENSG00000180596"
+"211030_s_at"	"SLC6A6"	6533	"ENSG00000131389"
+"215352_at"	"GIMAP5"	55340	"ENSG00000196329"
+"215510_at"	"ETV2"	2116	"ENSG00000105672"
+"213060_s_at"	"CHI3L2"	1117	"ENSG00000064886"
+"213035_at"	"ANKRD28"	23243	"ENSG00000206560"
+"214624_at"	"UPK1A"	11045	"ENSG00000105668"
+"213240_s_at"	"KRT4"	3851	"ENSG00000170477"
+"212306_at"	"CLASP2"	23122	"ENSG00000163539"
+"212308_at"	"CLASP2"	23122	"ENSG00000163539"
+"212309_at"	"CLASP2"	23122	"ENSG00000163539"
+"210828_s_at"	"ARNT"	405	"ENSG00000143437"
+"211045_s_at"	"KCNH6"	81033	"ENSG00000173826"
+"211046_at"	"KCNH6"	81033	"ENSG00000173826"
+"215053_at"	"SRCAP"	10847	"ENSG00000080603"
+"214908_s_at"	"TRRAP"	8295	"ENSG00000196367"
+"214890_s_at"	"FAM149A"	25854	"ENSG00000109794"
+"214889_at"	"FAM149A"	25854	"ENSG00000109794"
+"213120_at"	""	NA	"ENSG00000280088"
+"211470_s_at"	"SULT1C2"	6819	"ENSG00000198203"
+"215423_at"	"MARCHF6"	10299	"ENSG00000145495"
+"212498_at"	"MARCHF6"	10299	"ENSG00000145495"
+"215512_at"	"MARCHF6"	10299	"ENSG00000145495"
+"214047_s_at"	"MBD4"	8930	"ENSG00000129071"
+"214048_at"	"MBD4"	8930	"ENSG00000129071"
+"212235_at"	"PLXND1"	23129	"ENSG00000004399"
+"215310_at"	"APC"	324	"ENSG00000134982"
+"213592_at"	"APLNR"	187	"ENSG00000134817"
+"214754_at"	"TET3"	200424	"ENSG00000187605"
+"211266_s_at"	"GPR4"	2828	"ENSG00000177464"
+"214818_at"	"CCDC57"	284001	"ENSG00000176155"
+"211108_s_at"	"JAK3"	3718	"ENSG00000105639"
+"211109_at"	"JAK3"	3718	"ENSG00000105639"
+"212328_at"	"LIMCH1"	22998	"ENSG00000064042"
+"212327_at"	"LIMCH1"	22998	"ENSG00000064042"
+"212325_at"	"LIMCH1"	22998	"ENSG00000064042"
+"212047_s_at"	"RNF167"	26001	"ENSG00000108523"
+"211123_at"	"SLC5A5"	6528	"ENSG00000105641"
+"215472_at"	"PACRG"	135138	"ENSG00000112530"
+"214204_at"	"PACRG"	135138	"ENSG00000112530"
+"213151_s_at"	"SEPTIN7"	989	"ENSG00000122545"
+"215359_x_at"	"ZNF44"	51710	"ENSG00000197857"
+"212263_at"	"QKI"	9444	"ENSG00000112531"
+"212265_at"	"QKI"	9444	"ENSG00000112531"
+"214543_x_at"	"QKI"	9444	"ENSG00000112531"
+"212262_at"	"QKI"	9444	"ENSG00000112531"
+"214541_s_at"	"QKI"	9444	"ENSG00000112531"
+"212636_at"	"QKI"	9444	"ENSG00000112531"
+"212948_at"	"CAMTA2"	23125	"ENSG00000108509"
+"211106_at"	"SUPT3H"	8464	"ENSG00000196284"
+"212724_at"	"RND3"	390	"ENSG00000115963"
+"212610_at"	"PTPN11"	5781	"ENSG00000179295"
+"213221_s_at"	"SIK2"	23235	"ENSG00000170145"
+"210695_s_at"	"WWOX"	51741	"ENSG00000186153"
+"211245_x_at"	"KIR2DL4"	3805	"ENSG00000189013"
+"211242_x_at"	"KIR2DL4"	3805	"ENSG00000189013"
+"212231_at"	"FBXO21"	23014	"ENSG00000135108"
+"212229_s_at"	"FBXO21"	23014	"ENSG00000135108"
+"214891_at"	"FBXO21"	23014	"ENSG00000135108"
+"212813_at"	"JAM3"	83700	"ENSG00000166086"
+"211750_x_at"	"TUBA1C"	84790	"ENSG00000167553"
+"213875_x_at"	"C6orf62"	81688	"ENSG00000112308"
+"211296_x_at"	"UBC"	7316	"ENSG00000150991"
+"213191_at"	"TICAM1"	148022	"ENSG00000127666"
+"211866_x_at"	"HFE"	3077	"ENSG00000010704"
+"211863_x_at"	"HFE"	3077	"ENSG00000010704"
+"211326_x_at"	"HFE"	3077	"ENSG00000010704"
+"210864_x_at"	"HFE"	3077	"ENSG00000010704"
+"211327_x_at"	"HFE"	3077	"ENSG00000010704"
+"211332_x_at"	"HFE"	3077	"ENSG00000010704"
+"211329_x_at"	"HFE"	3077	"ENSG00000010704"
+"214647_s_at"	"HFE"	3077	"ENSG00000010704"
+"211330_s_at"	"HFE"	3077	"ENSG00000010704"
+"211331_x_at"	"HFE"	3077	"ENSG00000010704"
+"213038_at"	"RNF19B"	127544	"ENSG00000116514"
+"210858_x_at"	"ATM"	472	"ENSG00000149311"
+"212672_at"	"ATM"	472	"ENSG00000149311"
+"214038_at"	"CCL8"	6355	"ENSG00000108700"
+"213202_at"	"SETD1A"	9739	"ENSG00000099381"
+"212976_at"	"LRRC8B"	23507	"ENSG00000197147"
+"212978_at"	"LRRC8B"	23507	"ENSG00000197147"
+"214407_x_at"	"GYPB"	2994	"ENSG00000250361"
+"214098_at"	"BTBD8"	284697	"ENSG00000189195"
+"214859_at"	"FSTL4"	23105	"ENSG00000053108"
+"210878_s_at"	"KDM3B"	51780	"ENSG00000120733"
+"213307_at"	"SHANK2"	22941	"ENSG00000162105"
+"213308_at"	"SHANK2"	22941	"ENSG00000162105"
+"213980_s_at"	"CTBP1"	1487	"ENSG00000159692"
+"212863_x_at"	"CTBP1"	1487	"ENSG00000159692"
+"213798_s_at"	"CAP1"	10487	"ENSG00000131236"
+"212789_at"	"NCAPD3"	23310	"ENSG00000151503"
+"214209_s_at"	"ABCB9"	23457	"ENSG00000150967"
+"210523_at"	"BMPR1B"	658	"ENSG00000138696"
+"211615_s_at"	"LRPPRC"	10128	"ENSG00000138095"
+"211971_s_at"	"LRPPRC"	10128	"ENSG00000138095"
+"215240_at"	"ITGB3"	3690	"ENSG00000259207"
+"214879_x_at"	"USF2"	7392	"ENSG00000105698"
+"211165_x_at"	"EPHB2"	2048	"ENSG00000133216"
+"210651_s_at"	"EPHB2"	2048	"ENSG00000133216"
+"213208_at"	"BICRAL"	23506	"ENSG00000112624"
+"212077_at"	"CALD1"	800	"ENSG00000122786"
+"215198_s_at"	"CALD1"	800	"ENSG00000122786"
+"215199_at"	"CALD1"	800	"ENSG00000122786"
+"213485_s_at"	"ABCC10"	89845	"ENSG00000124574"
+"211098_x_at"	"TMCO1"	54499	"ENSG00000143183"
+"212673_at"	"METAP1"	23173	"ENSG00000164024"
+"214261_s_at"	"ADH6"	130	"ENSG00000172955"
+"215331_at"	"MYH15"	22989	"ENSG00000144821"
+"213416_at"	"ITGA4"	3676	"ENSG00000115232"
+"214845_s_at"	"CALU"	813	"ENSG00000128595"
+"211848_s_at"	"CEACAM7"	1087	"ENSG00000007306"
+"213195_at"	"LYRM9"	201229	"ENSG00000232859"
+"211657_at"	"CEACAM6"	4680	"ENSG00000086548"
+"210789_x_at"	"CEACAM3"	1084	"ENSG00000170956"
+"212973_at"	"RPIA"	22934	"ENSG00000153574"
+"214359_s_at"	"HSP90AB1"	3326	"ENSG00000096384"
+"214777_at"	"IGKV4-1"	NA	"ENSG00000211598"
+"213414_s_at"	"RPS19"	6223	"ENSG00000105372"
+"212440_at"	"SNRNP27"	11017	"ENSG00000124380"
+"213676_at"	"TMEM151B"	441151	"ENSG00000178233"
+"213678_at"	"TMEM151B"	441151	"ENSG00000178233"
+"213955_at"	"MYOZ3"	91977	"ENSG00000164591"
+"212287_at"	"SUZ12"	23512	"ENSG00000178691"
+"211026_s_at"	"MGLL"	11343	"ENSG00000074416"
+"214155_s_at"	"LARP4"	113251	"ENSG00000161813"
+"212714_at"	"LARP4"	113251	"ENSG00000161813"
+"214763_at"	"ACOT11"	26027	"ENSG00000162390"
+"213119_at"	"SLC36A1"	206358	"ENSG00000123643"
+"211707_s_at"	"IQCB1"	9657	"ENSG00000173226"
+"214931_s_at"	"SRPK2"	6733	"ENSG00000135250"
+"214992_s_at"	"DNASE2"	1777	"ENSG00000105612"
+"211597_s_at"	"HOPX"	84525	"ENSG00000171476"
+"211525_s_at"	"GP5"	2814	"ENSG00000178732"
+"213669_at"	"FCHO1"	23149	"ENSG00000130475"
+"213085_s_at"	"WWC1"	23286	"ENSG00000113645"
+"212010_s_at"	"CDV3"	55573	"ENSG00000091527"
+"213548_s_at"	"CDV3"	55573	"ENSG00000091527"
+"213554_s_at"	"CDV3"	55573	"ENSG00000091527"
+"211832_s_at"	"MDM2"	4193	"ENSG00000135679"
+"213419_at"	"APBB2"	323	"ENSG00000163697"
+"212970_at"	"APBB2"	323	"ENSG00000163697"
+"212972_x_at"	"APBB2"	323	"ENSG00000163697"
+"212985_at"	"APBB2"	323	"ENSG00000163697"
+"215459_at"	"CTNS"	1497	"ENSG00000040531"
+"213194_at"	"ROBO1"	6091	"ENSG00000169855"
+"215286_s_at"	"PHTF2"	57157	"ENSG00000006576"
+"215550_at"	"SRGAP3"	9901	"ENSG00000196220"
+"214604_at"	"HOXD11"	3237	"ENSG00000128713"
+"212912_at"	"RPS6KA2"	6196	"ENSG00000071242"
+"214913_at"	"ADAMTS3"	9508	"ENSG00000156140"
+"211298_s_at"	"ALB"	213	"ENSG00000163631"
+"214837_at"	"ALB"	213	"ENSG00000163631"
+"214314_s_at"	"EIF5B"	9669	"ENSG00000158417"
+"213869_x_at"	"THY1"	7070	"ENSG00000154096"
+"215339_at"	"NKTR"	4820	"ENSG00000114857"
+"215338_s_at"	"NKTR"	4820	"ENSG00000114857"
+"214584_x_at"	"ACACB"	32	"ENSG00000076555"
+"213144_at"	"GOSR2"	9570	"ENSG00000108433"
+"213206_at"	"GOSR2"	9570	"ENSG00000108433"
+"213180_s_at"	"GOSR2"	9570	"ENSG00000108433"
+"213207_s_at"	"GOSR2"	9570	"ENSG00000108433"
+"213344_s_at"	"HMBS"	3145	"ENSG00000256269"
+"211419_s_at"	"CHN2"	1124	"ENSG00000106069"
+"213385_at"	"CHN2"	1124	"ENSG00000106069"
+"210604_at"	"GNAT2"	2780	"ENSG00000134183"
+"212242_at"	"TUBA4A"	7277	"ENSG00000127824"
+"212329_at"	"SCAP"	22937	"ENSG00000114650"
+"212345_s_at"	"CREB3L2"	64764	"ENSG00000182158"
+"212007_at"	"UBXN4"	23190	"ENSG00000144224"
+"212008_at"	"UBXN4"	23190	"ENSG00000144224"
+"212006_at"	"UBXN4"	23190	"ENSG00000144224"
+"215124_at"	"ZNF550"	162972	"ENSG00000251369"
+"214729_at"	"POLR1F"	221830	"ENSG00000105849"
+"212285_s_at"	"AGRN"	375790	"ENSG00000188157"
+"212283_at"	"AGRN"	375790	"ENSG00000188157"
+"214641_at"	"COL4A3"	1285	"ENSG00000169031"
+"210866_s_at"	"CNOT4"	4850	"ENSG00000080802"
+"210867_at"	"CNOT4"	4850	"ENSG00000080802"
+"213076_at"	"ITPKC"	80271	"ENSG00000086544"
+"213926_s_at"	"AGFG1"	3267	"ENSG00000173744"
+"210641_at"	"CAPN9"	10753	"ENSG00000135773"
+"215080_s_at"	"AGAP2"	116986	"ENSG00000135439"
+"214059_at"	"IFI44"	10561	"ENSG00000137965"
+"214453_s_at"	"IFI44"	10561	"ENSG00000137965"
+"215015_at"	"BICDL1"	92558	"ENSG00000135127"
+"212139_at"	"GCN1"	10985	"ENSG00000089154"
+"214602_at"	"COL4A4"	1286	"ENSG00000081052"
+"211823_s_at"	"PXN"	5829	"ENSG00000089159"
+"214296_x_at"	"IZUMO4"	113177	"ENSG00000099840"
+"214816_x_at"	"FAAP24"	91442	"ENSG00000131944"
+"211508_s_at"	"GH2"	2689	"ENSG00000136487"
+"215502_at"	""	NA	"ENSG00000260532"
+"214027_x_at"	"DES"	1674	"ENSG00000175084"
+"212907_at"	"SLC30A1"	7779	"ENSG00000170385"
+"212493_s_at"	"SETD2"	29072	"ENSG00000181555"
+"215038_s_at"	"SETD2"	29072	"ENSG00000181555"
+"210507_s_at"	"AVIL"	10677	"ENSG00000135407"
+"213556_at"	"PINLYP"	390940	"ENSG00000234465"
+"213704_at"	"RABGGTB"	5876	"ENSG00000137955"
+"214699_x_at"	"WIPI2"	26100	"ENSG00000157954"
+"210533_at"	"MSH4"	4438	"ENSG00000057468"
+"213390_at"	"ZC3H4"	23211	"ENSG00000130749"
+"211483_x_at"	"CAMK2B"	816	"ENSG00000058404"
+"213276_at"	"CAMK2B"	816	"ENSG00000058404"
+"211692_s_at"	"BBC3"	27113	"ENSG00000105327"
+"210974_s_at"	"AP3D1"	8943	"ENSG00000065000"
+"211903_s_at"	"MPL"	4352	"ENSG00000117400"
+"215058_at"	"DENND5B"	160518	"ENSG00000170456"
+"213127_s_at"	"MED8"	112950	"ENSG00000159479"
+"213126_at"	"MED8"	112950	"ENSG00000159479"
+"213696_s_at"	"MED8"	112950	"ENSG00000159479"
+"213168_at"	"SP3"	6670	"ENSG00000172845"
+"212360_at"	"AMPD2"	271	"ENSG00000116337"
+"214958_s_at"	"TMC6"	11322	"ENSG00000141524"
+"212549_at"	"STAT5B"	6777	"ENSG00000173757"
+"212550_at"	"STAT5B"	6777	"ENSG00000173757"
+"211176_s_at"	"PAX4"	5078	"ENSG00000106331"
+"211453_s_at"	"AKT2"	208	"ENSG00000105221"
+"210682_at"	"LPO"	4025	"ENSG00000167419"
+"212709_at"	"NUP160"	23279	"ENSG00000030066"
+"214962_s_at"	"NUP160"	23279	"ENSG00000030066"
+"214963_at"	"NUP160"	23279	"ENSG00000030066"
+"210690_at"	"KLRC4"	8302	"ENSG00000183542"
+"210954_s_at"	"TSC22D2"	9819	"ENSG00000196428"
+"210953_at"	"TSC22D2"	9819	"ENSG00000196428"
+"211534_x_at"	"PTPRN2"	5799	"ENSG00000155093"
+"212766_s_at"	"ISG20L2"	81875	"ENSG00000143319"
+"211822_s_at"	"NLRP1"	22861	"ENSG00000091592"
+"211824_x_at"	"NLRP1"	22861	"ENSG00000091592"
+"214004_s_at"	"VGLL4"	9686	"ENSG00000144560"
+"212399_s_at"	"VGLL4"	9686	"ENSG00000144560"
+"215225_s_at"	"GPR17"	2840	"ENSG00000144230"
+"210587_at"	"INHBE"	83729	"ENSG00000139269"
+"214220_s_at"	"ALMS1"	7840	"ENSG00000116127"
+"214221_at"	"ALMS1"	7840	"ENSG00000116127"
+"214707_x_at"	"ALMS1"	7840	"ENSG00000116127"
+"210652_s_at"	"TTC39A"	22996	"ENSG00000085831"
+"213931_at"	"ID2"	3398	"ENSG00000115738"
+"213288_at"	"MBOAT2"	129642	"ENSG00000143797"
+"212162_at"	"KIDINS220"	57498	"ENSG00000134313"
+"212163_at"	"KIDINS220"	57498	"ENSG00000134313"
+"214932_at"	"KIDINS220"	57498	"ENSG00000134313"
+"212297_at"	"ATP13A3"	79572	"ENSG00000133657"
+"211196_at"	"DBT"	1629	"ENSG00000137992"
+"215539_at"	""	NA	"ENSG00000279544"
+"212954_at"	"DYRK4"	8798	"ENSG00000010219"
+"214185_at"	"KHDRBS1"	10657	"ENSG00000121774"
+"210599_at"	"ZNF614"	80110	"ENSG00000142556"
+"212101_at"	"KPNA6"	23633	"ENSG00000025800"
+"212103_at"	"KPNA6"	23633	"ENSG00000025800"
+"215068_s_at"	"FBXL18"	80028	"ENSG00000155034"
+"211802_x_at"	"CACNA1G"	8913	"ENSG00000006283"
+"211315_s_at"	"CACNA1G"	8913	"ENSG00000006283"
+"211314_at"	"CACNA1G"	8913	"ENSG00000006283"
+"213539_at"	"CD3D"	915	"ENSG00000167286"
+"215019_x_at"	"ZNF528"	84436	"ENSG00000167555"
+"215368_at"	"NEB"	4703	"ENSG00000183091"
+"211368_s_at"	"CASP1"	834	"ENSG00000137752"
+"211366_x_at"	"CASP1"	834	"ENSG00000137752"
+"211367_s_at"	"CASP1"	834	"ENSG00000137752"
+"210895_s_at"	"CD86"	942	"ENSG00000114013"
+"213689_x_at"	"DIPK1A"	388650	"ENSG00000154511"
+"211384_s_at"	"CASR"	846	"ENSG00000036828"
+"210577_at"	"CASR"	846	"ENSG00000036828"
+"213741_s_at"	"KPNA1"	3836	"ENSG00000114030"
+"210627_s_at"	"MOGS"	7841	"ENSG00000115275"
+"211372_s_at"	"IL1R2"	7850	"ENSG00000115590"
+"213424_at"	"MATCAP2"	23366	"ENSG00000164542"
+"211532_x_at"	"KIR2DS4"	3809	"ENSG00000221957"
+"214310_s_at"	"ZFPL1"	7542	"ENSG00000162300"
+"214311_at"	"ZFPL1"	7542	"ENSG00000162300"
+"213740_s_at"	"TMEM262"	100130348	"ENSG00000187066"
+"213865_at"	"DCBLD2"	131566	"ENSG00000057019"
+"215132_at"	""	NA	"ENSG00000290114"
+"214234_s_at"	"CYP3A5"	1577	"ENSG00000106258"
+"214235_at"	"CYP3A5"	1577	"ENSG00000106258"
+"213335_s_at"	"ST3GAL6"	10402	"ENSG00000064225"
+"213355_at"	"ST3GAL6"	10402	"ENSG00000064225"
+"210942_s_at"	"ST3GAL6"	10402	"ENSG00000064225"
+"214670_at"	"ZKSCAN1"	7586	"ENSG00000106261"
+"214900_at"	"ZKSCAN1"	7586	"ENSG00000106261"
+"214856_at"	"SPTBN1-AS2"	NA	"ENSG00000238018"
+"212684_at"	"ZNF3"	7551	"ENSG00000166526"
+"213234_at"	"FAM234B"	57613	"ENSG00000084444"
+"213045_at"	"MAST3"	23031	"ENSG00000099308"
+"215189_at"	"KRT86"	3892	"ENSG00000170442"
+"213711_at"	"KRT81"	3887	"ENSG00000205426"
+"213680_at"	"KRT6B"	3854	"ENSG00000185479"
+"214580_x_at"	"KRT6A"	3853	"ENSG00000205420"
+"211168_s_at"	"UPF1"	5976	"ENSG00000005007"
+"214683_s_at"	"CLK1"	1195	"ENSG00000013441"
+"214018_at"	"GRIP1"	23426	"ENSG00000155974"
+"211741_x_at"	"PSG3"	5671	"ENSG00000221826"
+"212984_at"	"ATF2"	1386	"ENSG00000115966"
+"210776_x_at"	"TCF3"	6929	"ENSG00000071564"
+"213811_x_at"	"TCF3"	6929	"ENSG00000071564"
+"213730_x_at"	"TCF3"	6929	"ENSG00000071564"
+"215260_s_at"	"TCF3"	6929	"ENSG00000071564"
+"212825_at"	"PAXIP1"	22976	"ENSG00000157212"
+"213010_at"	"CAVIN3"	112464	"ENSG00000170955"
+"210983_s_at"	"MCM7"	4176	"ENSG00000166508"
+"215455_at"	"TIMELESS"	8914	"ENSG00000111602"
+"213486_at"	"COPG2IT1"	NA	"ENSG00000286214"
+"213816_s_at"	"MET"	4233	"ENSG00000105976"
+"213807_x_at"	"MET"	4233	"ENSG00000105976"
+"211599_x_at"	"MET"	4233	"ENSG00000105976"
+"213677_s_at"	"PMS1"	5378	"ENSG00000064933"
+"211845_at"	"NECTIN1"	5818	"ENSG00000110400"
+"211846_s_at"	"NECTIN1"	5818	"ENSG00000110400"
+"210564_x_at"	"CFLAR"	8837	"ENSG00000003402"
+"211316_x_at"	"CFLAR"	8837	"ENSG00000003402"
+"211317_s_at"	"CFLAR"	8837	"ENSG00000003402"
+"211862_x_at"	"CFLAR"	8837	"ENSG00000003402"
+"214486_x_at"	"CFLAR"	8837	"ENSG00000003402"
+"210563_x_at"	"CFLAR"	8837	"ENSG00000003402"
+"214618_at"	"CFLAR"	8837	"ENSG00000003402"
+"210786_s_at"	"FLI1"	2313	"ENSG00000151702"
+"211825_s_at"	"FLI1"	2313	"ENSG00000151702"
+"214833_at"	"TMEM63A"	9725	"ENSG00000196187"
+"215231_at"	"PRKAG2"	51422	"ENSG00000106617"
+"213244_at"	"SCAMP4"	113178	"ENSG00000227500"
+"212316_at"	"NUP210"	23225	"ENSG00000132182"
+"213947_s_at"	"NUP210"	23225	"ENSG00000132182"
+"212315_s_at"	"NUP210"	23225	"ENSG00000132182"
+"213152_s_at"	"SRSF8"	10929	"ENSG00000263465"
+"214789_x_at"	"SRSF8"	10929	"ENSG00000263465"
+"212573_at"	"ENDOD1"	23052	"ENSG00000149218"
+"212570_at"	"ENDOD1"	23052	"ENSG00000149218"
+"215117_at"	"RAG2"	5897	"ENSG00000175097"
+"211070_x_at"	"DBI"	1622	"ENSG00000155368"
+"215249_at"	"RPL35A"	6165	"ENSG00000182899"
+"213687_s_at"	"RPL35A"	6165	"ENSG00000182899"
+"215280_s_at"	"PPFIA3"	8541	"ENSG00000177380"
+"213368_x_at"	"PPFIA3"	8541	"ENSG00000177380"
+"213184_at"	"SENP5"	205564	"ENSG00000119231"
+"214148_at"	"ITFG2"	55846	"ENSG00000111203"
+"211004_s_at"	"ALDH3B1"	221	"ENSG00000006534"
+"212662_at"	"PVR"	5817	"ENSG00000073008"
+"214443_at"	"PVR"	5817	"ENSG00000073008"
+"214875_x_at"	"APLP2"	334	"ENSG00000084234"
+"211404_s_at"	"APLP2"	334	"ENSG00000084234"
+"210797_s_at"	"OASL"	8638	"ENSG00000135114"
+"211334_at"	"MRE11"	4361	"ENSG00000020922"
+"213887_s_at"	"POLR2E"	5434	"ENSG00000099817"
+"215399_s_at"	"OS9"	10956	"ENSG00000135506"
+"210823_s_at"	"PTPRS"	5802	"ENSG00000105426"
+"212032_s_at"	"PTOV1"	53635	"ENSG00000104960"
+"213293_s_at"	"TRIM22"	10346	"ENSG00000132274"
+"213125_at"	"OLFML2B"	25903	"ENSG00000162745"
+"212780_at"	"SOS1"	6654	"ENSG00000115904"
+"212777_at"	"SOS1"	6654	"ENSG00000115904"
+"212128_s_at"	"DAG1"	1605	"ENSG00000173402"
+"211375_s_at"	"ILF3"	3609	"ENSG00000129351"
+"213615_at"	"EMG1"	10436	"ENSG00000126749"
+"215045_at"	"CELF3"	11189	"ENSG00000159409"
+"212375_at"	"EP400"	57634	"ENSG00000183495"
+"212376_s_at"	"EP400"	57634	"ENSG00000183495"
+"211594_s_at"	"MRPL9"	65005	"ENSG00000143436"
+"213863_s_at"	"OAZ3"	51686	"ENSG00000143450"
+"211975_at"	"ARFGAP2"	84364	"ENSG00000149182"
+"214180_at"	"MAN1C1"	57134	"ENSG00000117643"
+"213438_at"	"NFASC"	23114	"ENSG00000163531"
+"214799_at"	"NFASC"	23114	"ENSG00000163531"
+"211047_x_at"	"AP2S1"	1175	"ENSG00000042753"
+"213761_at"	"MDM1"	56890	"ENSG00000111554"
+"214552_s_at"	"RABEP1"	9135	"ENSG00000029725"
+"214192_at"	"NUP88"	4927	"ENSG00000108559"
+"215011_at"	"SNHG3"	8420	"ENSG00000242125"
+"213834_at"	"IQSEC3"	440073	"ENSG00000120645"
+"214797_s_at"	"CDK18"	5129	"ENSG00000117266"
+"214270_s_at"	"MAPRE3"	22924	"ENSG00000084764"
+"214924_s_at"	"TRAK1"	22906	"ENSG00000182606"
+"212512_s_at"	"CARM1"	10498	"ENSG00000142453"
+"215047_at"	"TRIM58"	25893	"ENSG00000162722"
+"211577_s_at"	"IGF1"	3479	"ENSG00000017427"
+"214030_at"	"CRYBG3"	131544	"ENSG00000080200"
+"213189_at"	"RIOX2"	84864	"ENSG00000170854"
+"213188_s_at"	"RIOX2"	84864	"ENSG00000170854"
+"213201_s_at"	"TNNT1"	7138	"ENSG00000105048"
+"212200_at"	"ANKLE2"	23141	"ENSG00000176915"
+"212201_at"	"ANKLE2"	23141	"ENSG00000176915"
+"214960_at"	"API5"	8539	"ENSG00000166181"
+"212510_at"	"GPD1L"	23171	"ENSG00000152642"
+"212930_at"	"ATP2B1"	490	"ENSG00000070961"
+"214772_at"	"KIAA1549L"	25758	"ENSG00000110427"
+"214806_at"	"BICD1"	636	"ENSG00000151746"
+"213703_at"	"LINC00342"	NA	"ENSG00000232931"
+"211203_s_at"	"CNTN1"	1272	"ENSG00000018236"
+"211712_s_at"	"ANXA9"	8416	"ENSG00000143412"
+"210988_s_at"	"PRUNE1"	58497	"ENSG00000143363"
+"214918_at"	"HNRNPM"	4670	"ENSG00000099783"
+"211625_s_at"	"DRD3"	1814	"ENSG00000151577"
+"214559_at"	"DRD3"	1814	"ENSG00000151577"
+"214871_x_at"	""	NA	"ENSG00000278834"
+"213349_at"	"TMCC1"	23023	"ENSG00000172765"
+"213352_at"	"TMCC1"	23023	"ENSG00000172765"
+"213351_s_at"	"TMCC1"	23023	"ENSG00000172765"
+"211071_s_at"	"MLLT11"	10962	"ENSG00000213190"
+"212683_at"	"SLC25A44"	9673	"ENSG00000160785"
+"214170_x_at"	"FH"	2271	"ENSG00000091483"
+"211138_s_at"	"KMO"	8564	"ENSG00000117009"
+"211602_s_at"	"TRPC1"	7220	"ENSG00000144935"
+"213835_x_at"	"GTPBP3"	84705	"ENSG00000130299"
+"212932_at"	"RAB3GAP1"	22930	"ENSG00000115839"
+"213530_at"	"RAB3GAP1"	22930	"ENSG00000115839"
+"213531_s_at"	"RAB3GAP1"	22930	"ENSG00000115839"
+"214470_at"	"KLRB1"	3820	"ENSG00000111796"
+"213847_at"	"PRPH"	5630	"ENSG00000135406"
+"213434_at"	"STX2"	2054	"ENSG00000111450"
+"214381_at"	""	441601	"ENSG00000291108"
+"210608_s_at"	"FUT2"	2524	"ENSG00000176920"
+"211107_s_at"	"AURKC"	6795	"ENSG00000105146"
+"213748_at"	"TRIM66"	9866	"ENSG00000166436"
+"213513_x_at"	"ARPC2"	10109	"ENSG00000163466"
+"210728_s_at"	"CALCA"	796	"ENSG00000110680"
+"210727_at"	"CALCA"	796	"ENSG00000110680"
+"214135_at"	"CLDN18"	51208	"ENSG00000066405"
+"214811_at"	"RIMBP2"	23504	"ENSG00000060709"
+"213496_at"	"PLPPR4"	9890	"ENSG00000117600"
+"212383_at"	"ATP6V0A1"	535	"ENSG00000033627"
+"212553_at"	"RPRD2"	23248	"ENSG00000163125"
+"214728_x_at"	"SMARCA4"	6597	"ENSG00000127616"
+"212520_s_at"	"SMARCA4"	6597	"ENSG00000127616"
+"213720_s_at"	"SMARCA4"	6597	"ENSG00000127616"
+"214360_at"	"SMARCA4"	6597	"ENSG00000127616"
+"214447_at"	"ETS1"	2113	"ENSG00000134954"
+"215205_x_at"	"NCOR2"	9612	"ENSG00000196498"
+"212463_at"	"CD59"	966	"ENSG00000085063"
+"213329_at"	"SRGAP2"	23380	"ENSG00000266028"
+"211987_at"	"TOP2B"	7155	"ENSG00000077097"
+"214398_s_at"	"IKBKE"	9641	"ENSG00000263528"
+"214734_at"	"EXPH5"	23086	"ENSG00000110723"
+"213929_at"	"EXPH5"	23086	"ENSG00000110723"
+"212338_at"	"MYO1D"	4642	"ENSG00000176658"
+"210838_s_at"	"ACVRL1"	94	"ENSG00000139567"
+"213982_s_at"	"RABGAP1L"	9910	"ENSG00000152061"
+"215342_s_at"	"RABGAP1L"	9910	"ENSG00000152061"
+"214354_x_at"	"SFTPB"	6439	"ENSG00000168878"
+"213936_x_at"	"SFTPB"	6439	"ENSG00000168878"
+"210976_s_at"	"PFKM"	5213	"ENSG00000152556"
+"213571_s_at"	"EIF4E2"	9470	"ENSG00000135930"
+"213570_at"	"EIF4E2"	9470	"ENSG00000135930"
+"212220_at"	"PSME4"	23198	"ENSG00000068878"
+"212222_at"	"PSME4"	23198	"ENSG00000068878"
+"212219_at"	"PSME4"	23198	"ENSG00000068878"
+"210515_at"	"HNF1A"	6927	"ENSG00000135100"
+"212333_at"	"FAM98A"	25940	"ENSG00000119812"
+"213705_at"	"GGCX"	2677	"ENSG00000115486"
+"214006_s_at"	"GGCX"	2677	"ENSG00000115486"
+"214005_at"	"GGCX"	2677	"ENSG00000115486"
+"214881_s_at"	"UBTF"	7343	"ENSG00000108312"
+"214915_at"	"ZNF362"	149076	"ENSG00000160094"
+"212369_at"	"ZNF384"	171017	"ENSG00000126746"
+"211248_s_at"	"CHRD"	8646	"ENSG00000090539"
+"215393_s_at"	"COBLL1"	22837	"ENSG00000082438"
+"211032_at"	"COBLL1"	22837	"ENSG00000082438"
+"214352_s_at"	"KRAS"	3845	"ENSG00000133703"
+"213501_at"	"ACOX1"	51	"ENSG00000161533"
+"215177_s_at"	"ITGA6"	3655	"ENSG00000091409"
+"212800_at"	"STX6"	10228	"ENSG00000135823"
+"214441_at"	"STX6"	10228	"ENSG00000135823"
+"212799_at"	"STX6"	10228	"ENSG00000135823"
+"210528_at"	"MR1"	3140	"ENSG00000153029"
+"212476_at"	"ACAP2"	23527	"ENSG00000114331"
+"212348_s_at"	"KDM1A"	23028	"ENSG00000004487"
+"214253_s_at"	"DTNB"	1838	"ENSG00000138101"
+"215295_at"	"DTNB"	1838	"ENSG00000138101"
+"213661_at"	"PAMR1"	25891	"ENSG00000149090"
+"214599_at"	"IVL"	3713	"ENSG00000163207"
+"211677_x_at"	"CADM3"	57863	"ENSG00000162706"
+"213948_x_at"	"CADM3"	57863	"ENSG00000162706"
+"213611_at"	"AQP5"	362	"ENSG00000161798"
+"213706_at"	"GPD1"	2819	"ENSG00000167588"
+"215174_at"	"FMO6P"	388714	"ENSG00000117507"
+"211726_s_at"	"FMO2"	2327	"ENSG00000094963"
+"213734_at"	"RFC5"	5985	"ENSG00000111445"
+"212801_at"	"CIT"	11113	"ENSG00000122966"
+"214480_at"	"ETV3"	2117	"ENSG00000117036"
+"212259_s_at"	"PBXIP1"	57326	"ENSG00000163346"
+"214177_s_at"	"PBXIP1"	57326	"ENSG00000163346"
+"214853_s_at"	"SHC1"	6464	"ENSG00000160691"
+"210793_s_at"	"NUP98"	4928	"ENSG00000110713"
+"210967_x_at"	"CACNB1"	782	"ENSG00000067191"
+"213153_at"	"SETD1B"	23067	"ENSG00000139718"
+"210679_x_at"	""	NA	"ENSG00000255856"
+"210620_s_at"	"GTF3C2"	2976	"ENSG00000115207"
+"212541_at"	"FLAD1"	80308	"ENSG00000160688"
+"213522_s_at"	"CSNK1D"	1453	"ENSG00000141551"
+"212694_s_at"	"PCCB"	5096	"ENSG00000114054"
+"212868_x_at"	"MAPKAPK5-AS1"	51275	"ENSG00000234608"
+"212473_s_at"	"MICAL2"	9645	"ENSG00000133816"
+"212472_at"	"MICAL2"	9645	"ENSG00000133816"
+"212871_at"	"MAPKAPK5"	8550	"ENSG00000089022"
+"214154_s_at"	"PKP2"	5318	"ENSG00000057294"
+"214111_at"	"OPCML"	4978	"ENSG00000183715"
+"213938_at"	"ERC2"	26059	"ENSG00000187672"
+"211603_s_at"	"ETV4"	2118	"ENSG00000175832"
+"214513_s_at"	"CREB1"	1385	"ENSG00000118260"
+"212822_at"	"HEG1"	57493	"ENSG00000173706"
+"213069_at"	"HEG1"	57493	"ENSG00000173706"
+"212832_s_at"	"CKAP5"	9793	"ENSG00000175216"
+"212850_s_at"	"LRP4"	4038	"ENSG00000134569"
+"212511_at"	"PICALM"	8301	"ENSG00000073921"
+"212506_at"	"PICALM"	8301	"ENSG00000073921"
+"215236_s_at"	"PICALM"	8301	"ENSG00000073921"
+"213459_at"	"RPL37A"	6168	"ENSG00000197756"
+"211299_s_at"	"FLOT2"	2319	"ENSG00000132589"
+"211057_at"	"ROR1"	4919	"ENSG00000185483"
+"210888_s_at"	"ITIH1"	3697	"ENSG00000055957"
+"211760_s_at"	"VAMP4"	8674	"ENSG00000117533"
+"213480_at"	"VAMP4"	8674	"ENSG00000117533"
+"211959_at"	"IGFBP5"	3488	"ENSG00000115461"
+"211958_at"	"IGFBP5"	3488	"ENSG00000115461"
+"214188_at"	"HEXIM2-AS1"	NA	"ENSG00000224505"
+"211856_x_at"	"CD28"	940	"ENSG00000178562"
+"211861_x_at"	"CD28"	940	"ENSG00000178562"
+"213373_s_at"	"CASP8"	841	"ENSG00000064012"
+"211082_x_at"	"MARK2"	2011	"ENSG00000072518"
+"211888_x_at"	"CASP10"	843	"ENSG00000003400"
+"210708_x_at"	"CASP10"	843	"ENSG00000003400"
+"210955_at"	"CASP10"	843	"ENSG00000003400"
+"211919_s_at"	"CXCR4"	7852	"ENSG00000121966"
+"211222_s_at"	"HAP1"	9001	"ENSG00000173805"
+"211604_x_at"	"HAP1"	9001	"ENSG00000173805"
+"212860_at"	"ZDHHC18"	84243	"ENSG00000204160"
+"210574_s_at"	"NUDC"	10726	"ENSG00000090273"
+"213644_at"	"CEP112"	201134	"ENSG00000154240"
+"211152_s_at"	"HTRA2"	27429	"ENSG00000115317"
+"211121_s_at"	"DOK1"	1796	"ENSG00000115325"
+"213594_x_at"	"SRSF10"	10772	"ENSG00000188529"
+"211905_s_at"	"ITGB4"	3691	"ENSG00000132470"
+"214292_at"	"ITGB4"	3691	"ENSG00000132470"
+"212076_at"	"KMT2A"	4297	"ENSG00000118058"
+"212080_at"	"KMT2A"	4297	"ENSG00000118058"
+"212405_s_at"	"METTL13"	51603	"ENSG00000010165"
+"212407_at"	"METTL13"	51603	"ENSG00000010165"
+"212659_s_at"	"IL1RN"	3557	"ENSG00000136689"
+"212657_s_at"	"IL1RN"	3557	"ENSG00000136689"
+"215242_at"	"PIGC"	5279	"ENSG00000135845"
+"214357_at"	"C1orf105"	92346	"ENSG00000180999"
+"211200_s_at"	"EFCAB2"	84288	"ENSG00000203666"
+"212516_at"	"ARAP1"	116985	"ENSG00000186635"
+"211094_s_at"	"NF1"	4763	"ENSG00000196712"
+"211095_at"	"NF1"	4763	"ENSG00000196712"
+"211914_x_at"	"NF1"	4763	"ENSG00000196712"
+"212678_at"	"NF1"	4763	"ENSG00000196712"
+"212676_at"	"NF1"	4763	"ENSG00000196712"
+"210631_at"	"NF1"	4763	"ENSG00000196712"
+"210649_s_at"	"ARID1A"	8289	"ENSG00000117713"
+"212152_x_at"	"ARID1A"	8289	"ENSG00000117713"
+"214674_at"	"USP19"	10869	"ENSG00000172046"
+"211947_s_at"	"PRRC2C"	23215	"ENSG00000117523"
+"211944_at"	"PRRC2C"	23215	"ENSG00000117523"
+"211946_s_at"	"PRRC2C"	23215	"ENSG00000117523"
+"214055_x_at"	"PRRC2C"	23215	"ENSG00000117523"
+"211948_x_at"	"PRRC2C"	23215	"ENSG00000117523"
+"212567_s_at"	"MAP4"	4134	"ENSG00000047849"
+"212566_at"	"MAP4"	4134	"ENSG00000047849"
+"214826_at"	"PDE12"	201626	"ENSG00000174840"
+"211702_s_at"	"USP32"	84669	"ENSG00000170832"
+"213374_x_at"	"HIBCH"	26275	"ENSG00000198130"
+"214211_at"	"FTH1"	2495	"ENSG00000167996"
+"212627_s_at"	"EXOSC7"	23016	"ENSG00000075914"
+"213648_at"	"EXOSC7"	23016	"ENSG00000075914"
+"213417_at"	"TBX2"	6909	"ENSG00000121068"
+"210756_s_at"	"NOTCH2"	4853	"ENSG00000134250"
+"212377_s_at"	"NOTCH2"	4853	"ENSG00000134250"
+"211586_s_at"	"ATP2B2"	491	"ENSG00000157087"
+"211284_s_at"	"GRN"	2896	"ENSG00000030582"
+"214493_s_at"	"PATJ"	10207	"ENSG00000132849"
+"214705_at"	"PATJ"	10207	"ENSG00000132849"
+"212487_at"	"GPATCH8"	23131	"ENSG00000186566"
+"212485_at"	"GPATCH8"	23131	"ENSG00000186566"
+"213769_at"	"KSR1"	8844	"ENSG00000141068"
+"213767_at"	"KSR1"	8844	"ENSG00000141068"
+"213342_at"	"YAP1"	10413	"ENSG00000137693"
+"210538_s_at"	"BIRC3"	330	"ENSG00000023445"
+"211851_x_at"	"BRCA1"	672	"ENSG00000012048"
+"211967_at"	"TMEM123"	114908	"ENSG00000152558"
+"211593_s_at"	"MAST2"	23139	"ENSG00000086015"
+"214952_at"	"NCAM1"	4684	"ENSG00000149294"
+"212843_at"	"NCAM1"	4684	"ENSG00000149294"
+"215482_s_at"	"EIF2B4"	8890	"ENSG00000115211"
+"210662_at"	"KYNU"	8942	"ENSG00000115919"
+"210663_s_at"	"KYNU"	8942	"ENSG00000115919"
+"211624_s_at"	"DRD2"	1813	"ENSG00000149295"
+"213467_at"	"RND2"	8153	"ENSG00000108830"
+"214393_at"	"RND2"	8153	"ENSG00000108830"
+"213016_at"	"BBX"	56987	"ENSG00000114439"
+"213015_at"	"BBX"	56987	"ENSG00000114439"
+"213713_s_at"	"GLB1L2"	89944	"ENSG00000149328"
+"213557_at"	"CDK12"	51755	"ENSG00000167258"
+"213693_s_at"	"MUC1"	4582	"ENSG00000185499"
+"211695_x_at"	"MUC1"	4582	"ENSG00000185499"
+"213300_at"	"ATG2A"	23130	"ENSG00000110046"
+"213280_at"	"RAP1GAP2"	23108	"ENSG00000132359"
+"215114_at"	"SENP3"	26168	"ENSG00000161956"
+"211075_s_at"	"CD47"	961	"ENSG00000196776"
+"213055_at"	"CD47"	961	"ENSG00000196776"
+"213857_s_at"	"CD47"	961	"ENSG00000196776"
+"214589_at"	"FGF12"	2257	"ENSG00000114279"
+"215506_s_at"	"DIRAS3"	9077	"ENSG00000162595"
+"213604_at"	"ELOA"	6924	"ENSG00000011007"
+"214840_at"	"TOM1L2"	146691	"ENSG00000175662"
+"213052_at"	"PRKAR2A"	5576	"ENSG00000114302"
+"214330_at"	"ATPAF2"	91647	"ENSG00000171953"
+"213057_at"	"ATPAF2"	91647	"ENSG00000171953"
+"214662_at"	"WDR43"	23160	"ENSG00000163811"
+"212245_at"	"MCFD2"	90411	"ENSG00000180398"
+"212246_at"	"MCFD2"	90411	"ENSG00000180398"
+"215151_at"	"DOCK10"	55619	"ENSG00000135905"
+"215499_at"	"MAP2K3"	5606	"ENSG00000034152"
+"215518_at"	"STXBP5L"	9515	"ENSG00000145087"
+"214744_s_at"	"RPL23"	9349	"ENSG00000125691"
+"213518_at"	"PRKCI"	5584	"ENSG00000163558"
+"213785_at"	"IPO9"	55705	"ENSG00000198700"
+"212885_at"	"MPHOSPH10"	10199	"ENSG00000124383"
+"214113_s_at"	"RBM8A"	9939	"ENSG00000265241"
+"213852_at"	"RBM8A"	9939	"ENSG00000265241"
+"214179_s_at"	"NFE2L1"	4779	"ENSG00000082641"
+"210694_s_at"	"ZNF514"	84874	"ENSG00000144026"
+"213729_at"	"PRPF40A"	55660	"ENSG00000196504"
+"214941_s_at"	"PRPF40A"	55660	"ENSG00000196504"
+"215272_at"	"OGG1"	4968	"ENSG00000114026"
+"210609_s_at"	"TP53I3"	9540	"ENSG00000115129"
+"210545_at"	"ITSN2"	50618	"ENSG00000198399"
+"212735_at"	"RUBCN"	9711	"ENSG00000145016"
+"212733_at"	"RUBCN"	9711	"ENSG00000145016"
+"214229_at"	"DNAH17"	8632	"ENSG00000187775"
+"212536_at"	"ATP11B"	23200	"ENSG00000058063"
+"212071_s_at"	"SPTBN1"	6711	"ENSG00000115306"
+"213547_at"	"CAND2"	23066	"ENSG00000144712"
+"211300_s_at"	"TP53"	7157	"ENSG00000141510"
+"210968_s_at"	"RTN4"	57142	"ENSG00000115310"
+"211509_s_at"	"RTN4"	57142	"ENSG00000115310"
+"214629_x_at"	"RTN4"	57142	"ENSG00000115310"
+"212519_at"	"UBE2E1"	7324	"ENSG00000170142"
+"214464_at"	"CDC42BPA"	8476	"ENSG00000143776"
+"213595_s_at"	"CDC42BPA"	8476	"ENSG00000143776"
+"215296_at"	"CDC42BPA"	8476	"ENSG00000143776"
+"214858_at"	"GPC1-AS1"	100130449	"ENSG00000218416"
+"214882_s_at"	"SRSF2"	6427	"ENSG00000161547"
+"214792_x_at"	"VAMP2"	6844	"ENSG00000220205"
+"215222_x_at"	"MACF1"	23499	"ENSG00000127603"
+"214894_x_at"	"MACF1"	23499	"ENSG00000127603"
+"213024_at"	"TMF1"	7110	"ENSG00000144747"
+"214460_at"	"LSAMP"	4045	"ENSG00000185565"
+"214117_s_at"	"BTD"	686	"ENSG00000169814"
+"214116_at"	"BTD"	686	"ENSG00000169814"
+"212426_s_at"	"YWHAQ"	10971	"ENSG00000134308"
+"213699_s_at"	"YWHAQ"	10971	"ENSG00000134308"
+"213532_at"	"ADAM17"	6868	"ENSG00000151694"
+"210560_at"	"GBX2"	2637	"ENSG00000168505"
+"214954_at"	"SUSD5"	26032	"ENSG00000173705"
+"214436_at"	"FBXL2"	25827	"ENSG00000153558"
+"212190_at"	"SERPINE2"	5270	"ENSG00000135919"
+"212478_at"	"RMND5A"	64795	"ENSG00000153561"
+"212482_at"	"RMND5A"	64795	"ENSG00000153561"
+"212479_s_at"	"RMND5A"	64795	"ENSG00000153561"
+"215332_s_at"	"CD8B"	926	"ENSG00000172116"
+"213205_s_at"	"RAD54L2"	23132	"ENSG00000164080"
+"214172_x_at"	"RYK"	6259	"ENSG00000163785"
+"211932_at"	"HNRNPA3"	220988	"ENSG00000170144"
+"211929_at"	"HNRNPA3"	220988	"ENSG00000170144"
+"211930_at"	"HNRNPA3"	220988	"ENSG00000170144"
+"213925_at"	"STUM"	375057	"ENSG00000203685"
+"211396_at"	"FCGR2C"	NA	"ENSG00000244682"
+"213435_at"	"SATB2"	23314	"ENSG00000119042"
+"212752_at"	"CLASP1"	23332	"ENSG00000074054"
+"212164_at"	"TMEM183A"	92703	"ENSG00000163444"
+"210723_x_at"	""	NA	"ENSG00000289018"
+"214978_s_at"	"PPFIA4"	8497	"ENSG00000143847"
+"214197_s_at"	"SETDB1"	9869	"ENSG00000143379"
+"212394_at"	"EMC1"	23065	"ENSG00000127463"
+"212396_s_at"	"EMC1"	23065	"ENSG00000127463"
+"212395_s_at"	"EMC1"	23065	"ENSG00000127463"
+"211377_x_at"	"MYCN"	4613	"ENSG00000134323"
+"211963_s_at"	"ARPC5"	10092	"ENSG00000162704"
+"212084_at"	"TEX261"	113419	"ENSG00000144043"
+"212083_at"	"TEX261"	113419	"ENSG00000144043"
+"213628_at"	"CLCC1"	23155	"ENSG00000121940"
+"211302_s_at"	"PDE4B"	5142	"ENSG00000184588"
+"212810_s_at"	"SLC1A4"	6509	"ENSG00000115902"
+"212811_x_at"	"SLC1A4"	6509	"ENSG00000115902"
+"213440_at"	"RAB1A"	5861	"ENSG00000138069"
+"211755_s_at"	"ATP5PB"	515	"ENSG00000116459"
+"213192_at"	"THAP3"	90326	"ENSG00000041988"
+"210889_s_at"	"FCGR2B"	2213	"ENSG00000072694"
+"213780_at"	"TCHH"	7062	"ENSG00000159450"
+"211797_s_at"	"NFYC"	4802	"ENSG00000066136"
+"211251_x_at"	"NFYC"	4802	"ENSG00000066136"
+"213742_at"	"SRSF11"	9295	"ENSG00000116754"
+"212013_at"	"PXDN"	7837	"ENSG00000130508"
+"212012_at"	"PXDN"	7837	"ENSG00000130508"
+"215227_x_at"	"ACP1"	52	"ENSG00000143727"
+"212797_at"	"SORT1"	6272	"ENSG00000134243"
+"212807_s_at"	"SORT1"	6272	"ENSG00000134243"
+"212172_at"	"AK2"	204	"ENSG00000004455"
+"212174_at"	"AK2"	204	"ENSG00000004455"
+"212173_at"	"AK2"	204	"ENSG00000004455"
+"211574_s_at"	"CD46"	4179	"ENSG00000117335"
+"214643_x_at"	"BIN1"	274	"ENSG00000136717"
+"214439_x_at"	"BIN1"	274	"ENSG00000136717"
+"215150_at"	"YOD1"	55432	"ENSG00000180667"
+"213524_s_at"	"G0S2"	50486	"ENSG00000123689"
+"213888_s_at"	"TRAF3IP3"	80342	"ENSG00000009790"
+"215275_at"	"TRAF3IP3"	80342	"ENSG00000009790"
+"214193_s_at"	"UTP25"	27042	"ENSG00000117597"
+"212048_s_at"	"YARS1"	8565	"ENSG00000134684"
+"214628_at"	"NHLH1"	4807	"ENSG00000171786"
+"211190_x_at"	"CD84"	8832	"ENSG00000066294"
+"211192_s_at"	"CD84"	8832	"ENSG00000066294"
+"211189_x_at"	"CD84"	8832	"ENSG00000066294"
+"211188_at"	"CD84"	8832	"ENSG00000066294"
+"211191_at"	"CD84"	8832	"ENSG00000066294"
+"214336_s_at"	"COPA"	1314	"ENSG00000122218"
+"214337_at"	"COPA"	1314	"ENSG00000122218"
+"214549_x_at"	"SPRR1A"	6698	"ENSG00000169474"
+"213796_at"	"SPRR1A"	6698	"ENSG00000169474"
+"212765_at"	"CAMSAP2"	23271	"ENSG00000118200"
+"212763_at"	"CAMSAP2"	23271	"ENSG00000118200"
+"210804_x_at"	"SLC8A1"	6546	"ENSG00000183023"
+"211805_s_at"	"SLC8A1"	6546	"ENSG00000183023"
+"214474_at"	"PRKAB2"	5565	"ENSG00000131791"
+"215044_s_at"	"STAM2"	10254	"ENSG00000115145"
+"213743_at"	"CCNT2"	905	"ENSG00000082258"
+"214638_s_at"	"CCNT2"	905	"ENSG00000082258"
+"214016_s_at"	"SFPQ"	6421	"ENSG00000116560"
+"212624_s_at"	"CHN1"	1123	"ENSG00000128656"
+"210502_s_at"	"PPIE"	10450	"ENSG00000084072"
+"212675_s_at"	"CEP68"	23177	"ENSG00000011523"
+"212677_s_at"	"CEP68"	23177	"ENSG00000011523"
+"211414_at"	"GLS"	2744	"ENSG00000115419"
+"214528_s_at"	"PAX8"	7849	"ENSG00000125618"
+"213917_at"	"PAX8"	7849	"ENSG00000125618"
+"211566_x_at"	"BABAM2"	9577	"ENSG00000158019"
+"212645_x_at"	"BABAM2"	9577	"ENSG00000158019"
+"211028_s_at"	"KHK"	3795	"ENSG00000138030"
+"214874_at"	"PKP4"	8502	"ENSG00000144283"
+"214998_at"	"AAK1"	22848	"ENSG00000115977"
+"211186_s_at"	"AAK1"	22848	"ENSG00000115977"
+"214956_at"	"AAK1"	22848	"ENSG00000115977"
+"211793_s_at"	"ABI2"	10152	"ENSG00000138443"
+"212819_at"	"ASB1"	51665	"ENSG00000065802"
+"212818_s_at"	"ASB1"	51665	"ENSG00000065802"
+"213800_at"	"CFH"	3075	"ENSG00000000971"
+"211452_x_at"	"LRRFIP1"	9208	"ENSG00000124831"
+"211504_x_at"	"ROCK2"	9475	"ENSG00000134318"
+"210714_at"	"R3HDM1"	23518	"ENSG00000048991"
+"210841_s_at"	"NRP2"	8828	"ENSG00000118257"
+"214632_at"	"NRP2"	8828	"ENSG00000118257"
+"211844_s_at"	"NRP2"	8828	"ENSG00000118257"
+"210842_at"	"NRP2"	8828	"ENSG00000118257"
+"214053_at"	"ERBB4"	2066	"ENSG00000178568"
+"213339_at"	"TP73-AS1"	57212	"ENSG00000227372"
+"213340_s_at"	"TP73-AS1"	57212	"ENSG00000227372"
+"213942_at"	"MEGF6"	1953	"ENSG00000162591"
+"213694_at"	"RSBN1"	54665	"ENSG00000081019"
+"213488_at"	"SNED1"	25992	"ENSG00000162804"
+"213493_at"	"SNED1"	25992	"ENSG00000162804"
+"214364_at"	"MTERF4"	130916	"ENSG00000122085"
+"213534_s_at"	"PASK"	23178	"ENSG00000115687"
+"213465_s_at"	"PPP1R7"	5510	"ENSG00000115685"
+"212293_at"	"HIPK1"	204851	"ENSG00000163349"
+"212291_at"	"HIPK1"	204851	"ENSG00000163349"
+"210943_s_at"	"LYST"	1130	"ENSG00000143669"
+"215415_s_at"	"LYST"	1130	"ENSG00000143669"
+"210821_x_at"	"CENPA"	1058	"ENSG00000115163"
+"210871_x_at"	"SSX2IP"	117178	"ENSG00000117155"
+"211175_at"	"GPR45"	11250	"ENSG00000135973"
+"211913_s_at"	"MERTK"	10461	"ENSG00000153208"
+"212588_at"	"PTPRC"	5788	"ENSG00000081237"
+"212587_s_at"	"PTPRC"	5788	"ENSG00000081237"
+"211613_s_at"	"GPD2"	2820	"ENSG00000115159"
+"214717_at"	"LINC01963"	150967	"ENSG00000260804"
+"214888_at"	"CAPN2"	824	"ENSG00000162909"
+"213098_at"	"CNOT9"	9125	"ENSG00000144580"
+"213179_at"	"CNOT9"	9125	"ENSG00000144580"
+"211450_s_at"	"MSH6"	2956	"ENSG00000116062"
+"211449_at"	"MSH6"	2956	"ENSG00000116062"
+"212294_at"	"GNG12"	55970	"ENSG00000172380"
+"213422_s_at"	"MXRA8"	54587	"ENSG00000162576"
+"212774_at"	"ZBTB18"	10472	"ENSG00000179456"
+"212742_at"	"RNF115"	27246	"ENSG00000265491"
+"210573_s_at"	"POLR3C"	10623	"ENSG00000186141"
+"211230_s_at"	"PIK3CD"	5293	"ENSG00000171608"
+"210865_at"	"FASLG"	356	"ENSG00000117560"
+"211333_s_at"	"FASLG"	356	"ENSG00000117560"
+"211749_s_at"	"VAMP3"	9341	"ENSG00000049245"
+"211786_at"	"TNFRSF9"	3604	"ENSG00000049249"
+"212151_at"	"PBX1"	5087	"ENSG00000185630"
+"212148_at"	"PBX1"	5087	"ENSG00000185630"
+"215497_s_at"	"WDTC1"	23038	"ENSG00000142784"
+"213654_at"	"TAF5L"	27097	"ENSG00000135801"
+"214228_x_at"	"TNFRSF4"	7293	"ENSG00000186827"
+"214295_at"	"NFIA"	4774	"ENSG00000162599"
+"214294_at"	"NFIA"	4774	"ENSG00000162599"
+"210798_x_at"	"MASP2"	10747	"ENSG00000009724"
+"213685_at"	"ELOA-AS1"	100506963	"ENSG00000236810"
+"214433_s_at"	"SELENBP1"	8991	"ENSG00000143416"
+"214093_s_at"	"FUBP1"	8880	"ENSG00000162613"
+"214094_at"	"FUBP1"	8880	"ENSG00000162613"
+"212847_at"	"FUBP1"	8880	"ENSG00000162613"
+"211827_s_at"	"KCND3"	3752	"ENSG00000171385"
+"211301_at"	"KCND3"	3752	"ENSG00000171385"
+"213832_at"	"KCND3"	3752	"ENSG00000171385"
+"215014_at"	"KCND3"	3752	"ENSG00000171385"
+"210912_x_at"	"GSTM4"	2948	"ENSG00000168765"
+"215367_at"	"KIAA1614"	57710	"ENSG00000135835"
+"212388_at"	"USP24"	23358	"ENSG00000162402"
+"212381_at"	"USP24"	23358	"ENSG00000162402"
+"214903_at"	"SYT2"	127833	"ENSG00000143858"
+"211202_s_at"	"KDM5B"	10765	"ENSG00000117139"
+"214613_at"	"GPR3"	2827	"ENSG00000181773"
+"214801_at"	"TOR1AIP2"	163590	"ENSG00000169905"
+"212408_at"	"TOR1AIP1"	26092	"ENSG00000143337"
+"212409_s_at"	"TOR1AIP1"	26092	"ENSG00000143337"
+"214365_at"	"TPM3"	7170	"ENSG00000143549"
+"212136_at"	"ATP2B4"	493	"ENSG00000058668"
+"212135_s_at"	"ATP2B4"	493	"ENSG00000058668"
+"213382_at"	""	NA	"ENSG00000290851"
+"215300_s_at"	"FMO5"	2330	"ENSG00000131781"
+"213165_at"	"CEP350"	9857	"ENSG00000135837"
+"213957_s_at"	"CEP350"	9857	"ENSG00000135837"
+"213956_at"	"CEP350"	9857	"ENSG00000135837"
+"214530_x_at"	"EPB41"	2035	"ENSG00000159023"
+"213965_s_at"	"CHD5"	26038	"ENSG00000116254"
+"214521_at"	"HES2"	54626	"ENSG00000069812"
+"214695_at"	"UBAP2L"	9898	"ENSG00000143569"
+"211791_s_at"	"KCNAB2"	8514	"ENSG00000069424"
+"212153_at"	"POGZ"	23126	"ENSG00000143442"
+"215281_x_at"	"POGZ"	23126	"ENSG00000143442"
+"215017_s_at"	"FNBP1L"	54874	"ENSG00000137942"
+"213268_at"	"CAMTA1"	23261	"ENSG00000171735"
+"215169_at"	""	NA	"ENSG00000290854"
+"210831_s_at"	"PTGER3"	5733	"ENSG00000050628"
+"211909_x_at"	"PTGER3"	5733	"ENSG00000050628"
+"210832_x_at"	"PTGER3"	5733	"ENSG00000050628"
+"213933_at"	"PTGER3"	5733	"ENSG00000050628"
+"210834_s_at"	"PTGER3"	5733	"ENSG00000050628"
+"210833_at"	"PTGER3"	5733	"ENSG00000050628"
+"213804_at"	"INPP5B"	3633	"ENSG00000204084"
+"213643_s_at"	"INPP5B"	3633	"ENSG00000204084"
+"211733_x_at"	"SCP2"	6342	"ENSG00000116171"
+"210923_at"	"SLC1A7"	6512	"ENSG00000162383"
+"213883_s_at"	"TM2D1"	83941	"ENSG00000162604"
+"211703_s_at"	"TM2D1"	83941	"ENSG00000162604"
+"214497_s_at"	"NHLH2"	4808	"ENSG00000177551"
+"215228_at"	"NHLH2"	4808	"ENSG00000177551"
+"212436_at"	"TRIM33"	51592	"ENSG00000197323"
+"212435_at"	"TRIM33"	51592	"ENSG00000197323"
+"214815_at"	"TRIM33"	51592	"ENSG00000197323"
+"211761_s_at"	"CACYBP"	27101	"ENSG00000116161"
+"215271_at"	"TNN"	63923	"ENSG00000120332"
+"213841_at"	"TNR"	7143	"ENSG00000116147"
+"211562_s_at"	"LMOD1"	25802	"ENSG00000163431"
+"215171_s_at"	"TIMM17A"	10440	"ENSG00000134375"
+"211515_s_at"	"DSTYK"	25778	"ENSG00000133059"
+"214663_at"	"DSTYK"	25778	"ENSG00000133059"
+"211514_at"	"DSTYK"	25778	"ENSG00000133059"
+"213096_at"	"TMCC2"	9911	"ENSG00000133069"
+"214075_at"	"NENF"	29937	"ENSG00000117691"
+"214841_at"	"CNIH3"	149111	"ENSG00000143786"
+"212086_x_at"	"LMNA"	4000	"ENSG00000160789"
+"214213_x_at"	"LMNA"	4000	"ENSG00000160789"
+"212089_at"	"LMNA"	4000	"ENSG00000160789"
+"214104_at"	"GPR161"	23432	"ENSG00000143147"
+"214773_x_at"	"TIPRL"	261726	"ENSG00000143155"
+"213030_s_at"	"PLXNA2"	5362	"ENSG00000076356"
+"212513_s_at"	"USP33"	23032	"ENSG00000077254"
+"214843_s_at"	"USP33"	23032	"ENSG00000077254"
+"214044_at"	"RYR2"	6262	"ENSG00000198626"
+"214058_at"	"MYCL"	4610	"ENSG00000116990"
+"215491_at"	"MYCL"	4610	"ENSG00000116990"
+"210775_x_at"	"CASP9"	842	"ENSG00000132906"
+"212908_at"	"DNAJC16"	23341	"ENSG00000116138"
+"212911_at"	"DNAJC16"	23341	"ENSG00000116138"
+"212146_at"	"PLEKHM2"	23207	"ENSG00000116786"
+"215778_x_at"	""	NA	"ENSG00000288431"
+"217269_s_at"	"TMPRSS15"	5651	"ENSG00000154646"
+"216822_x_at"	"CYCSP33"	NA	"ENSG00000233545"
+"216569_at"	"FABP3P2"	NA	"ENSG00000233259"
+"219213_at"	"JAM2"	58494	"ENSG00000154721"
+"218435_at"	"DNAJC15"	29103	"ENSG00000120675"
+"219535_at"	"HUNK"	30811	"ENSG00000142149"
+"215910_s_at"	"FNDC3A"	22862	"ENSG00000102531"
+"218515_at"	"PAXBP1"	94104	"ENSG00000159086"
+"218656_s_at"	"LHFPL6"	10186	"ENSG00000183722"
+"216826_at"	"ELL2P3"	NA	"ENSG00000234765"
+"218420_s_at"	"PROSER1"	80209	"ENSG00000120685"
+"219544_at"	"BORA"	79866	"ENSG00000136122"
+"216391_s_at"	"KLHL1"	57626	"ENSG00000150361"
+"216387_x_at"	"NPM1P22"	NA	"ENSG00000227969"
+"217332_at"	"CTAGE11P"	NA	"ENSG00000214249"
+"218050_at"	"UFM1"	51569	"ENSG00000120686"
+"216476_at"	"OR7E111P"	NA	"ENSG00000231667"
+"219867_at"	"CHODL"	140578	"ENSG00000154645"
+"216403_at"	"SP3P"	NA	"ENSG00000225530"
+"216820_at"	"HNRNPA1P31"	NA	"ENSG00000227862"
+"219767_s_at"	"CRYZL1"	9946	"ENSG00000205758"
+"217763_s_at"	"RAB31"	11031	"ENSG00000168461"
+"217762_s_at"	"RAB31"	11031	"ENSG00000168461"
+"217764_s_at"	"RAB31"	11031	"ENSG00000168461"
+"220311_at"	"N6AMT1"	29104	"ENSG00000156239"
+"219935_at"	"ADAMTS5"	11096	"ENSG00000154736"
+"218362_s_at"	"DIS3"	22894	"ENSG00000083520"
+"220485_s_at"	"SIRPG"	55423	"ENSG00000089012"
+"216553_x_at"	""	NA	"ENSG00000234573"
+"219738_s_at"	"PCDH9"	5101	"ENSG00000184226"
+"219737_s_at"	"PCDH9"	5101	"ENSG00000184226"
+"218558_s_at"	"MRPL39"	54148	"ENSG00000154719"
+"220330_s_at"	"SAMSN1"	64092	"ENSG00000155307"
+"216422_at"	"PA2G4P2"	NA	"ENSG00000235698"
+"219310_at"	"SYNDIG1"	79953	"ENSG00000101463"
+"216577_at"	"RPS11P1"	NA	"ENSG00000235544"
+"217376_at"	"SIRPB3P"	NA	"ENSG00000223750"
+"215948_x_at"	"ZMYM5"	9205	"ENSG00000132950"
+"218018_at"	"PDXK"	8566	"ENSG00000160209"
+"218019_s_at"	"PDXK"	8566	"ENSG00000160209"
+"216684_s_at"	"SS18"	6760	"ENSG00000141380"
+"218758_s_at"	"RRP1"	8568	"ENSG00000160214"
+"219723_x_at"	"AGPAT3"	56894	"ENSG00000160216"
+"220456_at"	"SPTLC3"	55304	"ENSG00000172296"
+"218093_s_at"	"ANKRD10"	55608	"ENSG00000088448"
+"216268_s_at"	"JAG1"	182	"ENSG00000101384"
+"217539_at"	"C18orf25"	147339	"ENSG00000152242"
+"217508_s_at"	"C18orf25"	147339	"ENSG00000152242"
+"218209_s_at"	"RPRD1A"	55197	"ENSG00000141425"
+"219443_at"	"TASP1"	55617	"ENSG00000089123"
+"218579_s_at"	"DHX35"	60625	"ENSG00000101452"
+"219303_at"	"OBI1"	79596	"ENSG00000152193"
+"218067_s_at"	"ARGLU1"	55082	"ENSG00000134884"
+"220363_s_at"	"ELMO2"	63916	"ENSG00000062598"
+"220180_at"	"CCDC68"	80323	"ENSG00000166510"
+"220508_at"	"CCT8L2"	150160	"ENSG00000198445"
+"216004_s_at"	"PKNOX1"	5316	"ENSG00000160199"
+"217731_s_at"	"ITM2B"	9445	"ENSG00000136156"
+"217732_s_at"	"ITM2B"	9445	"ENSG00000136156"
+"217637_at"	"KCNB1"	3745	"ENSG00000158445"
+"219056_at"	"RNASEH2B"	79621	"ENSG00000136104"
+"219377_at"	"GAREM1"	64762	"ENSG00000141441"
+"219447_s_at"	"SLC35C2"	51006	"ENSG00000080189"
+"217675_at"	"ZBTB7C"	201501	"ENSG00000184828"
+"219482_at"	"SETD4"	54093	"ENSG00000185917"
+"220506_at"	"GUCY1B2"	2974	"ENSG00000123201"
+"217337_at"	""	NA	"ENSG00000235485"
+"217197_x_at"	"N4BP2L1"	90634	"ENSG00000139597"
+"215699_x_at"	"SFI1"	9814	"ENSG00000198089"
+"219480_at"	"SNAI1"	6615	"ENSG00000124216"
+"219004_s_at"	"MIS18A"	54069	"ENSG00000159055"
+"219559_at"	"SLC17A9"	63910	"ENSG00000101194"
+"216088_s_at"	"PSMA7"	5688	"ENSG00000101182"
+"216828_at"	"MLLT10P1"	NA	"ENSG00000238151"
+"215738_at"	"LINC00563"	100861554	"ENSG00000261097"
+"218448_at"	"GID8"	54994	"ENSG00000101193"
+"217875_s_at"	"PMEPA1"	56937	"ENSG00000124225"
+"218637_at"	"IMPACT"	55364	"ENSG00000154059"
+"220271_x_at"	"EFCAB6"	64800	"ENSG00000186976"
+"219280_at"	"BRWD1"	54014	"ENSG00000185658"
+"219347_at"	"NUDT15"	55270	"ENSG00000136159"
+"217843_s_at"	"MED4"	29079	"ENSG00000136146"
+"219568_x_at"	"SOX18"	54345	"ENSG00000203883"
+"218422_s_at"	"RBM26"	64062	"ENSG00000139746"
+"220509_at"	"RBM26"	64062	"ENSG00000139746"
+"219536_s_at"	"ZFP64"	55734	"ENSG00000020256"
+"218968_s_at"	"ZFP64"	55734	"ENSG00000020256"
+"217286_s_at"	"NDRG3"	57446	"ENSG00000101079"
+"215942_s_at"	"GTSE1"	51512	"ENSG00000075218"
+"218626_at"	"EIF4ENIF1"	56478	"ENSG00000184708"
+"216965_x_at"	"SPART"	23111	"ENSG00000133104"
+"217019_at"	"RPS4XP3"	NA	"ENSG00000214541"
+"217867_x_at"	"BACE2"	25825	"ENSG00000182240"
+"216404_at"	"ATXN8OS"	NA	"ENSG00000230223"
+"218272_at"	"TTC38"	55020	"ENSG00000075234"
+"216210_x_at"	"TRIOBP"	11078	"ENSG00000100106"
+"219471_at"	"RUBCNL"	80183	"ENSG00000102445"
+"220177_s_at"	"TMPRSS3"	64699	"ENSG00000160183"
+"219653_at"	"LSM14B"	149986	"ENSG00000149657"
+"216251_s_at"	"TTLL12"	23170	"ENSG00000100304"
+"220418_at"	"UBASH3A"	53347	"ENSG00000160185"
+"219168_s_at"	"PRR5"	55615	"ENSG00000186654"
+"219048_at"	"PIGN"	23556	"ENSG00000197563"
+"219622_at"	"RAB20"	55647	"ENSG00000139832"
+"218153_at"	"CARS2"	79587	"ENSG00000134905"
+"218928_s_at"	"SLC37A1"	54020	"ENSG00000160190"
+"218421_at"	"CERK"	64781	"ENSG00000100422"
+"219822_at"	"MTRF1"	9617	"ENSG00000120662"
+"219378_at"	"NAA16"	79612	"ENSG00000172766"
+"217154_s_at"	"EDN3"	1908	"ENSG00000124205"
+"218723_s_at"	"RGCC"	28984	"ENSG00000102760"
+"216555_at"	"PRR14L"	253143	"ENSG00000183530"
+"218589_at"	"LPAR6"	10161	"ENSG00000139679"
+"217940_s_at"	"NAXD"	55739	"ENSG00000213995"
+"217386_at"	"MRPS11P1"	NA	"ENSG00000225803"
+"218444_at"	"ALG12"	79087	"ENSG00000182858"
+"216191_s_at"	"TRDC"	NA	"ENSG00000211829"
+"217143_s_at"	"TRDC"	NA	"ENSG00000211829"
+"220176_at"	"NUBPL"	80224	"ENSG00000151413"
+"216047_x_at"	"SEZ6L"	23544	"ENSG00000100095"
+"215894_at"	"PTGDR"	5729	"ENSG00000168229"
+"217801_at"	"ATP5F1E"	514	"ENSG00000124172"
+"217851_s_at"	"PRELID3B"	51012	"ENSG00000101166"
+"216543_at"	""	100093698	"ENSG00000231216"
+"220388_at"	"FER1L4"	NA	"ENSG00000088340"
+"219959_at"	"MOCOS"	55034	"ENSG00000075643"
+"217112_at"	"PDGFB"	5155	"ENSG00000100311"
+"216061_x_at"	"PDGFB"	5155	"ENSG00000100311"
+"219972_s_at"	"PCNX4"	64430	"ENSG00000126773"
+"220511_s_at"	"DLC1"	10395	"ENSG00000164741"
+"220512_at"	"DLC1"	10395	"ENSG00000164741"
+"219633_at"	"TTPAL"	79183	"ENSG00000124120"
+"215888_at"	"PDS5B"	23047	"ENSG00000083642"
+"217752_s_at"	"CNDP2"	55748	"ENSG00000133313"
+"218819_at"	"INTS6"	26512	"ENSG00000102786"
+"220385_at"	"JPH2"	57158	"ENSG00000149596"
+"218250_s_at"	"CNOT7"	29883	"ENSG00000198791"
+"218709_s_at"	"IFT52"	51098	"ENSG00000101052"
+"216421_at"	"RPL27AP"	NA	"ENSG00000215467"
+"217240_at"	"SIRPB1"	10326	"ENSG00000101307"
+"217712_at"	""	NA	"ENSG00000285756"
+"220392_at"	"EBF2"	64641	"ENSG00000221818"
+"219201_s_at"	"TWSG1"	57045	"ENSG00000128791"
+"216254_at"	""	NA	"ENSG00000280434"
+"217347_at"	"RPL35P8"	NA	"ENSG00000226142"
+"217266_at"	"RPL15P22"	NA	"ENSG00000231369"
+"217375_at"	"MDM4P1"	NA	"ENSG00000225066"
+"219772_s_at"	"SMPX"	23676	"ENSG00000091482"
+"220020_at"	"XPNPEP3"	63929	"ENSG00000196236"
+"219659_at"	"ATP8A2"	51761	"ENSG00000132932"
+"219660_s_at"	"ATP8A2"	51761	"ENSG00000132932"
+"219269_at"	"HMBOX1"	79618	"ENSG00000147421"
+"217888_s_at"	"ARFGAP1"	55738	"ENSG00000101199"
+"218544_s_at"	"RCL1"	10171	"ENSG00000120158"
+"217406_at"	""	NA	"ENSG00000241954"
+"220354_at"	"MCF2L-AS1"	NA	"ENSG00000235280"
+"216226_at"	"TAF4B"	6875	"ENSG00000141384"
+"220095_at"	"CNTLN"	54875	"ENSG00000044459"
+"216900_s_at"	"CHRNA4"	1137	"ENSG00000101204"
+"215842_s_at"	"ATP11A"	23250	"ENSG00000068650"
+"216488_s_at"	"ATP11A"	23250	"ENSG00000068650"
+"218393_s_at"	"SMU1"	55234	"ENSG00000122692"
+"218138_at"	"MKKS"	8195	"ENSG00000125863"
+"218010_x_at"	"PPDPF"	79144	"ENSG00000125534"
+"220426_at"	"FNDC11"	79025	"ENSG00000125531"
+"218136_s_at"	"SLC25A37"	51312	"ENSG00000147454"
+"217265_at"	"PLLPP1"	NA	"ENSG00000237782"
+"219232_s_at"	"EGLN3"	112399	"ENSG00000129521"
+"219921_s_at"	"DOCK5"	80005	"ENSG00000147459"
+"216505_x_at"	"RPS10P5"	NA	"ENSG00000101278"
+"218527_at"	"APTX"	54840	"ENSG00000137074"
+"218252_at"	"CKAP2"	26586	"ENSG00000136108"
+"219181_at"	"LIPG"	9388	"ENSG00000101670"
+"219512_at"	"DSN1"	79980	"ENSG00000149636"
+"219144_at"	"DUSP26"	78986	"ENSG00000133878"
+"216895_at"	"GABRG3"	2567	"ENSG00000182256"
+"218247_s_at"	"MEX3C"	51320	"ENSG00000176624"
+"220507_s_at"	"UPB1"	51733	"ENSG00000100024"
+"219668_at"	"GDAP1L1"	78997	"ENSG00000124194"
+"219583_s_at"	"SPATA7"	55812	"ENSG00000042317"
+"216497_at"	"RNU6-73P"	NA	"ENSG00000207330"
+"218258_at"	"POLR1D"	51082	"ENSG00000186184"
+"216262_s_at"	"TGIF2"	60436	"ENSG00000118707"
+"218724_s_at"	"TGIF2"	60436	"ENSG00000118707"
+"220408_x_at"	"SUPT20H"	55578	"ENSG00000102710"
+"216682_s_at"	"SUPT20H"	55578	"ENSG00000102710"
+"218159_at"	"DDRGK1"	65992	"ENSG00000198171"
+"218139_s_at"	"AP5M1"	55745	"ENSG00000053770"
+"217030_at"	""	NA	"ENSG00000286693"
+"220459_at"	"MCM3AP-AS1"	114044	"ENSG00000215424"
+"219440_at"	"RAI2"	10742	"ENSG00000131831"
+"219080_s_at"	"CTPS2"	56474	"ENSG00000047230"
+"219961_s_at"	"KIZ"	55857	"ENSG00000088970"
+"216308_x_at"	"GRHPR"	9380	"ENSG00000137106"
+"216515_x_at"	"PTMAP3"	NA	"ENSG00000218902"
+"220310_at"	"TUBAL3"	79861	"ENSG00000178462"
+"219463_at"	"LAMP5"	24141	"ENSG00000125869"
+"220523_at"	"EFHC2"	80258	"ENSG00000183690"
+"218498_s_at"	"ERO1A"	30001	"ENSG00000197930"
+"217828_at"	"SLTM"	79811	"ENSG00000137776"
+"216426_at"	"ELOCP3"	NA	"ENSG00000229919"
+"218352_at"	"RCBTB1"	55213	"ENSG00000136144"
+"217605_at"	"USP27X"	389856	"ENSG00000273820"
+"217092_x_at"	"RPL7P52"	NA	"ENSG00000228599"
+"220419_s_at"	"USP25"	29761	"ENSG00000155313"
+"218203_at"	"ALG5"	29880	"ENSG00000120697"
+"217135_x_at"	"COX6B1P3"	NA	"ENSG00000172912"
+"216863_s_at"	"MORC2"	22880	"ENSG00000133422"
+"220537_at"	"MTMR8"	55613	"ENSG00000102043"
+"218306_s_at"	"HERC1"	8925	"ENSG00000103657"
+"219064_at"	"ITIH5"	80760	"ENSG00000123243"
+"216923_at"	"CDKL5"	6792	"ENSG00000008086"
+"219200_at"	"FASTKD3"	79072	"ENSG00000124279"
+"219749_at"	"SH2D4A"	63898	"ENSG00000104611"
+"217687_at"	"ADCY2"	108	"ENSG00000078295"
+"219501_at"	"ENOX1"	55068	"ENSG00000120658"
+"215725_at"	"DGCR11"	25786	"ENSG00000273311"
+"219596_at"	"THAP10"	56906	"ENSG00000129028"
+"215867_x_at"	"CA12"	771	"ENSG00000074410"
+"219855_at"	"NUDT11"	55190	"ENSG00000196368"
+"220225_at"	"IRX4"	50805	"ENSG00000113430"
+"219116_s_at"	"DCUN1D2"	55208	"ENSG00000150401"
+"220240_s_at"	"TMCO3"	55002	"ENSG00000150403"
+"220241_at"	"TMCO3"	55002	"ENSG00000150403"
+"220405_at"	"SNTG1"	54212	"ENSG00000147481"
+"219428_s_at"	"PXMP4"	11264	"ENSG00000101417"
+"217346_at"	"PPIAP21"	NA	"ENSG00000226038"
+"215579_at"	"APOBEC3G"	60489	"ENSG00000239713"
+"220475_at"	"SLC28A3"	64078	"ENSG00000197506"
+"216222_s_at"	"MYO10"	4651	"ENSG00000145555"
+"218297_at"	"MINDY3"	80013	"ENSG00000148481"
+"219210_s_at"	"RAB8B"	51762	"ENSG00000166128"
+"217768_at"	"RTRAF"	51637	"ENSG00000087302"
+"217669_s_at"	"AKAP6"	9472	"ENSG00000151320"
+"219315_s_at"	"TMEM204"	79652	"ENSG00000131634"
+"218479_s_at"	"XPO4"	64328	"ENSG00000132953"
+"219147_s_at"	"NMRK1"	54981	"ENSG00000106733"
+"217792_at"	"SNX5"	27131	"ENSG00000089006"
+"220234_at"	"CA8"	767	"ENSG00000178538"
+"218573_at"	"MAGEH1"	28986	"ENSG00000187601"
+"219897_at"	"RNF122"	79845	"ENSG00000133874"
+"218997_at"	"POLR1E"	64425	"ENSG00000137054"
+"216998_s_at"	"ADAM5"	255926	"ENSG00000196115"
+"217771_at"	"GOLM1"	51280	"ENSG00000135052"
+"218371_s_at"	"PSPC1"	55269	"ENSG00000121390"
+"216288_at"	"CYSLTR1"	10800	"ENSG00000173198"
+"217955_at"	"BCL2L13"	23786	"ENSG00000099968"
+"219877_at"	"ZMAT4"	79698	"ENSG00000165061"
+"216651_s_at"	"GAD2"	2572	"ENSG00000136750"
+"217777_s_at"	"HACD3"	51495	"ENSG00000074696"
+"219018_s_at"	"CCDC85C"	317762	"ENSG00000205476"
+"219349_s_at"	"EXOC2"	55770	"ENSG00000112685"
+"220108_at"	"GNA14"	9630	"ENSG00000156049"
+"217741_s_at"	"ZFAND5"	7763	"ENSG00000107372"
+"216342_x_at"	"RPS4XP2"	NA	"ENSG00000226948"
+"215707_s_at"	"PRNP"	5621	"ENSG00000171867"
+"218506_x_at"	"GLYR1"	84656	"ENSG00000140632"
+"218455_at"	"NFS1"	9054	"ENSG00000244005"
+"215581_s_at"	"MCM3AP"	8888	"ENSG00000160294"
+"215580_at"	"MCM3AP"	8888	"ENSG00000160294"
+"219779_at"	"ZFHX4"	79776	"ENSG00000091656"
+"219362_at"	"NAA35"	60560	"ENSG00000135040"
+"218185_s_at"	"ARMC1"	55156	"ENSG00000104442"
+"219930_at"	"KLF8"	11279	"ENSG00000102349"
+"218113_at"	"CEMIP2"	23670	"ENSG00000135048"
+"217769_s_at"	"POMP"	51371	"ENSG00000132963"
+"219164_s_at"	"ATG2B"	55102	"ENSG00000066739"
+"216816_at"	"RPL6P17"	NA	"ENSG00000216754"
+"218904_s_at"	"C9orf40"	55071	"ENSG00000135045"
+"219451_at"	"MSRB2"	22921	"ENSG00000148450"
+"218773_s_at"	"MSRB2"	22921	"ENSG00000148450"
+"217262_s_at"	"CELSR1"	9620	"ENSG00000075275"
+"220361_at"	"IQCH"	64799	"ENSG00000103599"
+"217445_s_at"	"GART"	2618	"ENSG00000159131"
+"218409_s_at"	"DNAJC1"	64215	"ENSG00000136770"
+"216347_s_at"	"PPP1R13B"	23368	"ENSG00000088808"
+"218104_at"	"TEX10"	54881	"ENSG00000136891"
+"218358_at"	"CRELD2"	79174	"ENSG00000184164"
+"218241_at"	"GOLGA5"	9950	"ENSG00000066455"
+"219821_s_at"	"GFOD1"	54438	"ENSG00000145990"
+"218772_x_at"	"TMEM38B"	55151	"ENSG00000095209"
+"218516_s_at"	"BPNT2"	54928	"ENSG00000104331"
+"219757_s_at"	"TMEM260"	54916	"ENSG00000070269"
+"219845_at"	"BARX1"	56033	"ENSG00000131668"
+"218652_s_at"	"PIGG"	54872	"ENSG00000174227"
+"220115_s_at"	"CDH10"	1008	"ENSG00000040731"
+"217353_at"	"HNRNPA1P37"	NA	"ENSG00000218574"
+"220270_at"	"RNF17"	56163	"ENSG00000132972"
+"216253_s_at"	"PARVB"	29780	"ENSG00000188677"
+"218995_s_at"	"EDN1"	1906	"ENSG00000078401"
+"220076_at"	"ANKH"	56172	"ENSG00000154122"
+"216581_at"	"KRT18P38"	NA	"ENSG00000214012"
+"215620_at"	""	NA	"ENSG00000225092"
+"217514_at"	"ST8SIA5"	29906	"ENSG00000101638"
+"218399_s_at"	"CDCA4"	55038	"ENSG00000170779"
+"220382_s_at"	"ARHGAP28"	79822	"ENSG00000088756"
+"220381_at"	"ARHGAP28"	79822	"ENSG00000088756"
+"217039_x_at"	"ELK2AP"	NA	"ENSG00000213140"
+"219991_at"	"SLC2A9"	56606	"ENSG00000109667"
+"220039_s_at"	"CDKAL1"	54901	"ENSG00000145996"
+"218152_at"	"HMG20A"	10363	"ENSG00000140382"
+"219790_s_at"	"NPR3"	4883	"ENSG00000113389"
+"219789_at"	"NPR3"	4883	"ENSG00000113389"
+"219054_at"	"NPR3"	4883	"ENSG00000113389"
+"217131_at"	"RPS29P28"	NA	"ENSG00000232069"
+"219756_s_at"	"POF1B"	79983	"ENSG00000124429"
+"217309_s_at"	"VPS26C"	10311	"ENSG00000157538"
+"219273_at"	"CCNK"	8812	"ENSG00000090061"
+"218398_at"	"MRPS30"	10884	"ENSG00000112996"
+"219090_at"	"SLC24A3"	57419	"ENSG00000185052"
+"218559_s_at"	"MAFB"	9935	"ENSG00000204103"
+"219686_at"	"STK32B"	55351	"ENSG00000152953"
+"217050_at"	"DIAPH2-AS1"	10824	"ENSG00000236256"
+"219207_at"	"EDC3"	80153	"ENSG00000179151"
+"216814_at"	"ACTR3P2"	NA	"ENSG00000232267"
+"219837_s_at"	"CYTL1"	54360	"ENSG00000170891"
+"216354_at"	"RPL12P11"	NA	"ENSG00000232493"
+"217598_at"	"CINP"	51550	"ENSG00000100865"
+"216559_x_at"	"HNRNPA1P3"	NA	"ENSG00000226188"
+"219795_at"	"SLC6A14"	11254	"ENSG00000268104"
+"219309_at"	"C22orf46P"	79640	"ENSG00000184208"
+"219697_at"	"HS3ST2"	9956	"ENSG00000122254"
+"219715_s_at"	"TDP1"	55775	"ENSG00000042088"
+"220021_at"	"TMC7"	79905	"ENSG00000170537"
+"218273_s_at"	"PDP1"	54704	"ENSG00000164951"
+"217590_s_at"	"TRPA1"	8989	"ENSG00000104321"
+"218374_s_at"	"C12orf4"	57102	"ENSG00000047621"
+"217596_at"	"UPF3A"	65110	"ENSG00000169062"
+"216650_at"	"RPL29P17"	NA	"ENSG00000229700"
+"219450_at"	"C4orf19"	55286	"ENSG00000154274"
+"217516_x_at"	"ARVCF"	421	"ENSG00000099889"
+"220260_at"	"TBC1D19"	55296	"ENSG00000109680"
+"215743_at"	"NMT2"	9397	"ENSG00000152465"
+"218171_at"	"VPS4B"	9525	"ENSG00000119541"
+"217559_at"	"RPL10L"	140801	"ENSG00000165496"
+"219485_s_at"	"PSMD10"	5716	"ENSG00000101843"
+"217364_x_at"	"EIF3JP1"	NA	"ENSG00000228041"
+"219195_at"	"PPARGC1A"	10891	"ENSG00000109819"
+"219911_s_at"	"SLCO4A1"	28231	"ENSG00000101187"
+"217351_at"	"KRT8P17"	NA	"ENSG00000235124"
+"219859_at"	"CLEC4E"	26253	"ENSG00000166523"
+"218586_at"	"MRGBP"	55257	"ENSG00000101189"
+"216778_s_at"	"CYLC1"	1538	"ENSG00000183035"
+"216779_at"	"CYLC1"	1538	"ENSG00000183035"
+"217344_at"	"FDPSP5"	NA	"ENSG00000215035"
+"220319_s_at"	"MYLIP"	29116	"ENSG00000007944"
+"219761_at"	"CLEC1A"	51267	"ENSG00000150048"
+"217363_x_at"	"RPL22P22"	NA	"ENSG00000213653"
+"217400_at"	"PCNAP3"	NA	"ENSG00000214009"
+"217427_s_at"	"HIRA"	7290	"ENSG00000100084"
+"218888_s_at"	"NETO2"	81831	"ENSG00000171208"
+"218325_s_at"	"DIDO1"	11083	"ENSG00000101191"
+"220053_at"	"GDF3"	9573	"ENSG00000184344"
+"218945_at"	"METTL22"	79091	"ENSG00000067365"
+"218081_at"	"ADISSP"	54976	"ENSG00000101220"
+"217979_at"	"TSPAN13"	27075	"ENSG00000106537"
+"218006_s_at"	"ZNF22"	7570	"ENSG00000165512"
+"218005_at"	"ZNF22"	7570	"ENSG00000165512"
+"217392_at"	"CAPZA1P1"	NA	"ENSG00000230956"
+"216119_s_at"	"SPEF1"	25876	"ENSG00000101222"
+"220062_s_at"	"MAGEC2"	51438	"ENSG00000046774"
+"219368_at"	"NAP1L2"	4674	"ENSG00000186462"
+"220305_at"	"MAVS"	57506	"ENSG00000088888"
+"219439_at"	"C1GALT1"	56913	"ENSG00000106392"
+"216413_at"	"CYCSP44"	NA	"ENSG00000233548"
+"217009_at"	"PGK2"	5232	"ENSG00000170950"
+"217333_at"	"KRT18P44"	NA	"ENSG00000218728"
+"216549_s_at"	"TBC1D22B"	55633	"ENSG00000065491"
+"219297_at"	"WDR44"	54521	"ENSG00000131725"
+"218894_s_at"	"MAGOHB"	55110	"ENSG00000111196"
+"220229_s_at"	"AP4E1"	23431	"ENSG00000081014"
+"217773_s_at"	"NDUFA4"	4697	"ENSG00000189043"
+"219294_at"	"CENPQ"	55166	"ENSG00000031691"
+"216994_s_at"	"RUNX2"	860	"ENSG00000124813"
+"217385_at"	""	NA	"ENSG00000225469"
+"216823_at"	"RPS3AP5"	NA	"ENSG00000178429"
+"216592_at"	"MAGEC3"	139081	"ENSG00000165509"
+"220416_at"	"ATP8B4"	79895	"ENSG00000104043"
+"220128_s_at"	"NIPAL2"	79815	"ENSG00000104361"
+"215932_at"	""	NA	"ENSG00000250625"
+"219332_at"	"MICALL2"	79778	"ENSG00000164877"
+"218351_at"	"COMMD8"	54951	"ENSG00000169019"
+"218089_at"	"AAR2"	25980	"ENSG00000131043"
+"217015_at"	"RBBP4P4"	NA	"ENSG00000214561"
+"217518_at"	"MYOF"	26509	"ENSG00000138119"
+"219940_s_at"	"PCID2"	55795	"ENSG00000126226"
+"219457_s_at"	"RIN3"	79890	"ENSG00000100599"
+"219456_s_at"	"RIN3"	79890	"ENSG00000100599"
+"218359_at"	"NRSN2"	80023	"ENSG00000125841"
+"215646_s_at"	"VCAN"	1462	"ENSG00000038427"
+"217574_at"	"CDH8"	1006	"ENSG00000150394"
+"215933_s_at"	"HHEX"	3087	"ENSG00000152804"
+"219703_at"	"MNS1"	55329	"ENSG00000138587"
+"216411_s_at"	"GALK2"	2585	"ENSG00000156958"
+"220393_at"	"LGSN"	51557	"ENSG00000146166"
+"219816_s_at"	"RBM23"	55147	"ENSG00000100461"
+"215843_s_at"	"TLL2"	7093	"ENSG00000095587"
+"215709_at"	"PRIM2"	5558	"ENSG00000146143"
+"218348_s_at"	"ZC3H7A"	29066	"ENSG00000122299"
+"220356_at"	"CORIN"	10699	"ENSG00000145244"
+"217813_s_at"	"SPIN1"	10927	"ENSG00000106723"
+"218265_at"	"SECISBP2"	79048	"ENSG00000187742"
+"217192_s_at"	"PRDM1"	639	"ENSG00000057657"
+"217352_at"	"NDUFB3P5"	NA	"ENSG00000227779"
+"218674_at"	"TRAPPC13"	80006	"ENSG00000113597"
+"217256_x_at"	"RPL36AP52"	NA	"ENSG00000214925"
+"220301_at"	"CCDC102B"	79839	"ENSG00000150636"
+"218126_at"	"RMDN3"	55177	"ENSG00000137824"
+"219994_at"	"APBB1IP"	54518	"ENSG00000077420"
+"219928_s_at"	"CABYR"	26256	"ENSG00000154040"
+"217786_at"	"PRMT5"	10419	"ENSG00000100462"
+"219263_at"	"RNF128"	79589	"ENSG00000133135"
+"215736_at"	"KCNV1"	27012	"ENSG00000164794"
+"220294_at"	"KCNV1"	27012	"ENSG00000164794"
+"215729_s_at"	"VGLL1"	51442	"ENSG00000102243"
+"219434_at"	"TREM1"	54210	"ENSG00000124731"
+"216364_s_at"	"AFF2"	2334	"ENSG00000155966"
+"220432_s_at"	"CYP39A1"	51302	"ENSG00000146233"
+"220266_s_at"	"KLF4"	9314	"ENSG00000136826"
+"220156_at"	"CLXN"	79645	"ENSG00000034239"
+"219729_at"	"PRRX2"	51450	"ENSG00000167157"
+"218098_at"	"ARFGEF2"	10564	"ENSG00000124198"
+"215931_s_at"	"ARFGEF2"	10564	"ENSG00000124198"
+"217454_at"	"HMGB3P30"	NA	"ENSG00000213652"
+"219576_at"	"MAP7D3"	79649	"ENSG00000129680"
+"219626_at"	"MAP7D3"	79649	"ENSG00000129680"
+"220030_at"	"STYK1"	55359	"ENSG00000060140"
+"218143_s_at"	"SCAMP2"	10066	"ENSG00000140497"
+"219009_at"	"C14orf93"	60686	"ENSG00000100802"
+"219771_at"	"TBC1D8B"	54885	"ENSG00000133138"
+"216276_s_at"	"ADAM3A"	1587	"ENSG00000197475"
+"219577_s_at"	"ABCA7"	10347	"ENSG00000064687"
+"219038_at"	"MORC4"	79710	"ENSG00000133131"
+"216623_x_at"	"TOX3"	27324	"ENSG00000103460"
+"217808_s_at"	"MAPKAP1"	79109	"ENSG00000119487"
+"219494_at"	"RAD54B"	25788	"ENSG00000197275"
+"216399_s_at"	"SCAPER"	49855	"ENSG00000140386"
+"215848_at"	"SCAPER"	49855	"ENSG00000140386"
+"216379_x_at"	"CD24"	100133941	"ENSG00000272398"
+"218607_s_at"	"SDAD1"	55153	"ENSG00000198301"
+"216806_at"	"RPSAP44"	NA	"ENSG00000220773"
+"215820_x_at"	"SNX13"	23161	"ENSG00000071189"
+"216358_at"	"SMARCE1P2"	NA	"ENSG00000226309"
+"219429_at"	"FA2H"	79152	"ENSG00000103089"
+"219861_at"	"DNAJC17"	55192	"ENSG00000104129"
+"220238_s_at"	"KLHL7"	55975	"ENSG00000122550"
+"220239_at"	"KLHL7"	55975	"ENSG00000122550"
+"215686_x_at"	"TFAP2B"	7021	"ENSG00000008196"
+"217343_at"	""	NA	"ENSG00000189372"
+"217737_x_at"	"RTF2"	51507	"ENSG00000022277"
+"219355_at"	"RADX"	55086	"ENSG00000147231"
+"215803_at"	"RADX"	55086	"ENSG00000147231"
+"218741_at"	"CENPM"	79019	"ENSG00000100162"
+"220232_at"	"SCD5"	79966	"ENSG00000145284"
+"220410_s_at"	"CAMSAP1"	157922	"ENSG00000130559"
+"220409_at"	"CAMSAP1"	157922	"ENSG00000130559"
+"219657_s_at"	"KLF3"	51274	"ENSG00000109787"
+"218582_at"	"MARCHF5"	54708	"ENSG00000198060"
+"219479_at"	"POGLUT2"	79070	"ENSG00000134901"
+"219524_s_at"	"NDUFAF5"	79133	"ENSG00000101247"
+"218738_s_at"	"RNF138"	51444	"ENSG00000134758"
+"217186_at"	"ZPR1P1"	NA	"ENSG00000219565"
+"218137_s_at"	"SMAP1"	60682	"ENSG00000112305"
+"220077_at"	"CCDC134"	79879	"ENSG00000100147"
+"217107_at"	"RPS4XP9"	NA	"ENSG00000217404"
+"219532_at"	"ELOVL4"	6785	"ENSG00000118402"
+"216237_s_at"	"MCM5"	4174	"ENSG00000100297"
+"216091_s_at"	"BTRC"	8945	"ENSG00000166167"
+"219913_s_at"	"CRNKL1"	51340	"ENSG00000101343"
+"217957_at"	"CFAP20"	29105	"ENSG00000070761"
+"220171_x_at"	"GPALPP1"	55425	"ENSG00000133114"
+"217710_x_at"	"ITPK1"	3705	"ENSG00000100605"
+"220360_at"	"THAP9"	79725	"ENSG00000168152"
+"216520_s_at"	"TPT1"	7178	"ENSG00000133112"
+"218375_at"	"NUDT9"	53343	"ENSG00000170502"
+"220315_at"	"PARP11"	57097	"ENSG00000111224"
+"217327_at"	"ELOCP28"	NA	"ENSG00000105694"
+"219829_at"	"ITGB1BP2"	26548	"ENSG00000147166"
+"220059_at"	"STAP1"	26228	"ENSG00000035720"
+"217803_at"	"GOLPH3"	64083	"ENSG00000113384"
+"217205_at"	"PABPN1P1"	NA	"ENSG00000213018"
+"216348_at"	"RPS17P5"	NA	"ENSG00000060303"
+"217119_s_at"	"CXCR3"	2833	"ENSG00000186810"
+"218102_at"	"DERA"	51071	"ENSG00000023697"
+"215960_at"	"SLC5A4"	6527	"ENSG00000100191"
+"217826_s_at"	"UBE2J1"	51465	"ENSG00000198833"
+"217825_s_at"	"UBE2J1"	51465	"ENSG00000198833"
+"217823_s_at"	"UBE2J1"	51465	"ENSG00000198833"
+"217824_at"	"UBE2J1"	51465	"ENSG00000198833"
+"219339_s_at"	"EHMT1"	79813	"ENSG00000181090"
+"216479_at"	"RPL21P2"	NA	"ENSG00000215063"
+"220248_x_at"	"NSFL1C"	55968	"ENSG00000088833"
+"217830_s_at"	"NSFL1C"	55968	"ENSG00000088833"
+"217831_s_at"	"NSFL1C"	55968	"ENSG00000088833"
+"216712_at"	"SLC25A30"	253512	"ENSG00000174032"
+"220214_at"	"ZNF215"	7762	"ENSG00000149054"
+"219889_at"	"FRAT1"	10023	"ENSG00000165879"
+"216913_s_at"	"RRP12"	23223	"ENSG00000052749"
+"216360_x_at"	"RRP12"	23223	"ENSG00000052749"
+"217082_at"	""	NA	"ENSG00000279695"
+"218206_x_at"	"SCAND1"	51282	"ENSG00000171222"
+"218276_s_at"	"SAV1"	60485	"ENSG00000151748"
+"219296_at"	"ZDHHC13"	54503	"ENSG00000177054"
+"219999_at"	"MAN2A2"	4122	"ENSG00000196547"
+"220129_at"	"SOHLH2"	54937	"ENSG00000120669"
+"217272_s_at"	"SERPINB13"	5275	"ENSG00000197641"
+"216258_s_at"	"SERPINB13"	5275	"ENSG00000197641"
+"220497_at"	"ZNF214"	7761	"ENSG00000149050"
+"217080_s_at"	"HOMER2"	9455	"ENSG00000103942"
+"220150_s_at"	"FAM184A"	79632	"ENSG00000111879"
+"219108_x_at"	"DDX27"	55661	"ENSG00000124228"
+"215693_x_at"	"DDX27"	55661	"ENSG00000124228"
+"219363_s_at"	"MTERF3"	51001	"ENSG00000156469"
+"219000_s_at"	"DSCC1"	79075	"ENSG00000136982"
+"219667_s_at"	"BANK1"	55024	"ENSG00000153064"
+"219478_at"	"WFDC1"	58189	"ENSG00000103175"
+"218049_s_at"	"MRPL13"	28998	"ENSG00000172172"
+"218653_at"	"SLC25A15"	10166	"ENSG00000102743"
+"220098_at"	"HYDIN"	54768	"ENSG00000157423"
+"218689_at"	"FANCF"	2188	"ENSG00000183161"
+"217077_s_at"	"GABBR2"	9568	"ENSG00000136928"
+"218681_s_at"	"SDF2L1"	23753	"ENSG00000128228"
+"217216_x_at"	"MLH3"	27030	"ENSG00000119684"
+"216512_s_at"	"DCT"	1638	"ENSG00000080166"
+"216513_at"	"DCT"	1638	"ENSG00000080166"
+"220482_s_at"	"SERGEF"	26297	"ENSG00000129158"
+"217407_x_at"	"PPIL2"	23759	"ENSG00000100023"
+"216638_s_at"	"PRLR"	5618	"ENSG00000113494"
+"215919_s_at"	"MRPS11"	64963	"ENSG00000181991"
+"215584_at"	"HECW1"	23072	"ENSG00000002746"
+"217126_at"	""	NA	"ENSG00000274281"
+"217538_at"	"SGSM2"	9905	"ENSG00000141258"
+"218651_s_at"	"LARP6"	55323	"ENSG00000166173"
+"220107_s_at"	"ZC2HC1C"	79696	"ENSG00000119703"
+"218877_s_at"	"TRMT11"	60487	"ENSG00000066651"
+"219453_at"	"KLHL36"	79786	"ENSG00000135686"
+"218985_at"	"SLC2A8"	29988	"ENSG00000136856"
+"218390_s_at"	"FAM204A"	63877	"ENSG00000165669"
+"218237_s_at"	"SLC38A1"	81539	"ENSG00000111371"
+"218859_s_at"	"ESF1"	51575	"ENSG00000089048"
+"219868_s_at"	"ANKFY1"	51479	"ENSG00000185722"
+"215616_s_at"	"KDM4B"	23030	"ENSG00000127663"
+"216023_at"	"KDM4B"	23030	"ENSG00000127663"
+"218858_at"	"DEPTOR"	64798	"ENSG00000155792"
+"220188_at"	"JPH3"	57338	"ENSG00000154118"
+"216486_x_at"	"ZNF79"	7633	"ENSG00000196152"
+"215726_s_at"	"CYB5A"	1528	"ENSG00000166347"
+"216228_s_at"	"WDHD1"	11169	"ENSG00000198554"
+"220146_at"	"TLR7"	51284	"ENSG00000196664"
+"219800_s_at"	"THNSL1"	79896	"ENSG00000185875"
+"217290_at"	"PPIHP2"	NA	"ENSG00000220541"
+"218793_s_at"	"SCML1"	6322	"ENSG00000047634"
+"218891_at"	"ARMH3"	79591	"ENSG00000120029"
+"219586_at"	"WDR59"	79726	"ENSG00000103091"
+"218505_at"	"WDR59"	79726	"ENSG00000103091"
+"218041_x_at"	"SLC38A2"	54407	"ENSG00000134294"
+"218042_at"	"COPS4"	51138	"ENSG00000138663"
+"218801_at"	"UGGT2"	55757	"ENSG00000102595"
+"216192_at"	"FABP7"	2173	"ENSG00000164434"
+"218879_s_at"	"MTHFSD"	64779	"ENSG00000103248"
+"217000_at"	"KRT18P50"	NA	"ENSG00000219941"
+"217142_at"	"EEF1A1P42"	NA	"ENSG00000277043"
+"218207_s_at"	"STMN3"	50861	"ENSG00000197457"
+"219908_at"	"DKK2"	27123	"ENSG00000155011"
+"215984_s_at"	"ARFRP1"	10139	"ENSG00000101246"
+"217622_at"	"RHBDD3"	25807	"ENSG00000100263"
+"219522_at"	"FJX1"	24147	"ENSG00000179431"
+"216953_s_at"	"WT1"	7490	"ENSG00000184937"
+"219725_at"	"TREM2"	54209	"ENSG00000095970"
+"217976_s_at"	"DYNC1LI1"	51143	"ENSG00000144635"
+"220063_at"	"GSTCD"	79807	"ENSG00000138780"
+"219229_at"	"SLCO3A1"	28232	"ENSG00000176463"
+"220055_at"	"ZNF287"	57336	"ENSG00000141040"
+"218494_s_at"	"SLC2A4RG"	56731	"ENSG00000125520"
+"219361_s_at"	"AEN"	64782	"ENSG00000181026"
+"217982_s_at"	"MORF4L1"	10933	"ENSG00000185787"
+"220374_at"	"KLHL28"	54813	"ENSG00000179454"
+"218752_at"	"ZMAT5"	55954	"ENSG00000100319"
+"218190_s_at"	"UQCR10"	29796	"ENSG00000184076"
+"218842_at"	"RPAP3"	79657	"ENSG00000005175"
+"218340_s_at"	"UBA6"	55236	"ENSG00000033178"
+"220086_at"	"IKZF5"	64376	"ENSG00000095574"
+"216457_s_at"	"SF3A1"	10291	"ENSG00000099995"
+"218264_at"	"BCCIP"	56647	"ENSG00000107949"
+"218145_at"	"TRIB3"	57761	"ENSG00000101255"
+"219747_at"	"NDNF"	79625	"ENSG00000173376"
+"217271_at"	""	NA	"ENSG00000179342"
+"218328_at"	"COQ4"	51117	"ENSG00000167113"
+"220483_s_at"	"RNF19A"	25897	"ENSG00000034677"
+"217367_s_at"	"ZHX3"	23051	"ENSG00000174306"
+"216572_at"	"FOXL1"	2300	"ENSG00000176678"
+"217203_at"	"GLULP4"	NA	"ENSG00000178723"
+"216483_s_at"	"MYDGF"	56005	"ENSG00000074842"
+"216729_at"	"KLF17P1"	NA	"ENSG00000258316"
+"218564_at"	"RFWD3"	55159	"ENSG00000168411"
+"218614_at"	"RESF1"	55196	"ENSG00000174718"
+"218896_s_at"	"NCBP3"	55421	"ENSG00000074356"
+"216154_at"	""	NA	"ENSG00000282997"
+"218208_at"	"SLC66A2"	80148	"ENSG00000122490"
+"219958_at"	"TMEM74B"	55321	"ENSG00000125895"
+"219525_at"	"SLC47A1"	55244	"ENSG00000142494"
+"219441_s_at"	"LRRK1"	79705	"ENSG00000154237"
+"216346_at"	"SEC14L3"	266629	"ENSG00000100012"
+"218706_s_at"	"GRAMD2B"	65983	"ENSG00000155324"
+"216185_at"	"FUT9"	10690	"ENSG00000172461"
+"216282_x_at"	"POLR2C"	5432	"ENSG00000102978"
+"216402_at"	"SEC14L4"	284904	"ENSG00000133488"
+"217428_s_at"	"COL10A1"	1300	"ENSG00000123500"
+"218364_at"	"LRRFIP2"	9209	"ENSG00000093167"
+"215892_at"	"ZNF440"	126070	"ENSG00000171295"
+"215917_at"	"RAD21L1"	642636	"ENSG00000244588"
+"217024_x_at"	"SIRPAP1"	NA	"ENSG00000225774"
+"217568_at"	"EDDM3A"	10876	"ENSG00000181562"
+"220413_at"	"SLC39A2"	29986	"ENSG00000165794"
+"217461_x_at"	"BTF3P12"	NA	"ENSG00000213003"
+"218326_s_at"	"LGR4"	55366	"ENSG00000205213"
+"220326_s_at"	"ARHGEF40"	55701	"ENSG00000165801"
+"216475_at"	"TUBB4BP7"	NA	"ENSG00000217372"
+"219318_x_at"	"MED31"	51003	"ENSG00000108590"
+"217760_at"	"TRIM44"	54765	"ENSG00000166326"
+"217759_at"	"TRIM44"	54765	"ENSG00000166326"
+"216562_at"	"SRMP1"	NA	"ENSG00000215448"
+"216551_x_at"	"PLCG1"	5335	"ENSG00000124181"
+"216272_x_at"	"SYDE1"	85360	"ENSG00000105137"
+"216271_x_at"	"SYDE1"	85360	"ENSG00000105137"
+"215969_at"	"PIGA"	5277	"ENSG00000165195"
+"219977_at"	"AIPL1"	23746	"ENSG00000129221"
+"219314_s_at"	"ZNF219"	51222	"ENSG00000165804"
+"219383_at"	"PRR5L"	79899	"ENSG00000135362"
+"217947_at"	"CMTM6"	54918	"ENSG00000091317"
+"217556_at"	"CLCN4"	1183	"ENSG00000073464"
+"216899_s_at"	"SKAP2"	8935	"ENSG00000005020"
+"219833_s_at"	"EFHC1"	114327	"ENSG00000096093"
+"218072_at"	"COMMD9"	29099	"ENSG00000110442"
+"215882_at"	"CEP152"	22995	"ENSG00000103995"
+"220119_at"	"EPB41L4A"	64097	"ENSG00000129595"
+"220120_s_at"	"EPB41L4A"	64097	"ENSG00000129595"
+"218848_at"	"THOC6"	79228	"ENSG00000131652"
+"217329_x_at"	"LINC01399"	104310353	"ENSG00000233080"
+"216299_s_at"	"XRCC3"	7517	"ENSG00000126215"
+"216383_at"	"RPL18AP16"	NA	"ENSG00000237793"
+"216481_at"	"GRIP2"	80852	"ENSG00000144596"
+"218857_s_at"	"ASRGL1"	80150	"ENSG00000162174"
+"217960_s_at"	"TOMM22"	56993	"ENSG00000100216"
+"217945_at"	"BTBD1"	53339	"ENSG00000064726"
+"218708_at"	"NXT1"	29107	"ENSG00000132661"
+"215683_at"	""	NA	"ENSG00000267127"
+"217308_at"	"OR1F2P"	26184	"ENSG00000203581"
+"219419_at"	"RBFA"	79863	"ENSG00000101546"
+"219616_at"	"ACSS3"	79611	"ENSG00000111058"
+"217233_at"	""	NA	"ENSG00000219088"
+"218661_at"	"NAA60"	79903	"ENSG00000122390"
+"216824_at"	"ARF1P1"	NA	"ENSG00000219807"
+"219778_at"	"ZFPM2"	23414	"ENSG00000169946"
+"218523_at"	"LHPP"	64077	"ENSG00000107902"
+"218191_s_at"	"LMBRD1"	55788	"ENSG00000168216"
+"219489_s_at"	"NXN"	64359	"ENSG00000167693"
+"219325_s_at"	"ELAC1"	55520	"ENSG00000141642"
+"218198_at"	"DHX32"	55760	"ENSG00000089876"
+"219698_s_at"	"METTL4"	64863	"ENSG00000101574"
+"218981_at"	"SDHAF3"	57001	"ENSG00000196636"
+"217285_at"	"ESS2"	8220	"ENSG00000100056"
+"217345_at"	""	NA	"ENSG00000237434"
+"217758_s_at"	"TM9SF3"	56889	"ENSG00000077147"
+"219388_at"	"GRHL2"	79977	"ENSG00000083307"
+"218603_at"	"HECA"	51696	"ENSG00000112406"
+"220016_at"	"AHNAK"	79026	"ENSG00000124942"
+"216239_at"	"BBS9"	27241	"ENSG00000122507"
+"218856_at"	"TNFRSF21"	27242	"ENSG00000146072"
+"219191_s_at"	"BIN2"	51411	"ENSG00000110934"
+"220148_at"	"ALDH8A1"	64577	"ENSG00000118514"
+"218701_at"	"LACTB2"	51110	"ENSG00000147592"
+"220364_at"	"EPB41L4A-DT"	54508	"ENSG00000278921"
+"220105_at"	"RSPH14"	27156	"ENSG00000100218"
+"216731_s_at"	""	NA	"ENSG00000279154"
+"219956_at"	"GALNT6"	11226	"ENSG00000139629"
+"219990_at"	"E2F8"	79733	"ENSG00000129173"
+"220493_at"	"DMRT1"	1761	"ENSG00000137090"
+"218144_s_at"	"INF2"	64423	"ENSG00000203485"
+"219902_at"	"BHMT2"	23743	"ENSG00000132840"
+"219006_at"	"NDUFAF4"	29078	"ENSG00000123545"
+"219926_at"	"POPDC3"	64208	"ENSG00000132429"
+"219748_at"	"TREML2"	79865	"ENSG00000112195"
+"218535_s_at"	"RIOK2"	55781	"ENSG00000058729"
+"218854_at"	"DSE"	29940	"ENSG00000111817"
+"219276_x_at"	"CAAP1"	79886	"ENSG00000120159"
+"219307_at"	"PDSS2"	57107	"ENSG00000164494"
+"220014_at"	"PRR16"	51334	"ENSG00000184838"
+"218453_s_at"	"TMEM242"	729515	"ENSG00000215712"
+"220376_at"	"LRRC19"	64922	"ENSG00000184434"
+"217746_s_at"	"PDCD6IP"	10015	"ENSG00000170248"
+"217744_s_at"	"PERP"	64065	"ENSG00000112378"
+"216309_x_at"	"JRK"	8629	"ENSG00000234616"
+"218090_s_at"	"WDR11"	55717	"ENSG00000120008"
+"217228_s_at"	"ASB4"	51666	"ENSG00000005981"
+"220515_at"	"DUSP21"	63904	"ENSG00000189037"
+"219652_s_at"	"DIPK2B"	79742	"ENSG00000147113"
+"217129_at"	"TUBB8P2"	NA	"ENSG00000218896"
+"216414_at"	"HMGB3P19"	NA	"ENSG00000217085"
+"217980_s_at"	"MRPL16"	54948	"ENSG00000166902"
+"218785_s_at"	"IFT22"	64792	"ENSG00000128581"
+"219399_at"	"LIN7C"	55327	"ENSG00000148943"
+"217059_at"	"MUC7"	4589	"ENSG00000171195"
+"219786_at"	"TESMIN"	9633	"ENSG00000132749"
+"215860_at"	"SYT12"	91683	"ENSG00000173227"
+"218802_at"	"MCUB"	55013	"ENSG00000005059"
+"217349_s_at"	"PRICKLE3"	4007	"ENSG00000012211"
+"219402_s_at"	"DERL1"	79139	"ENSG00000136986"
+"218172_s_at"	"DERL1"	79139	"ENSG00000136986"
+"217684_at"	"TYMS"	7298	"ENSG00000176890"
+"220429_at"	"NDST3"	9348	"ENSG00000164100"
+"217690_at"	"ENOSF1"	55556	"ENSG00000132199"
+"215641_at"	"SEC24D"	9871	"ENSG00000150961"
+"218988_at"	"SLC35E3"	55508	"ENSG00000175782"
+"220396_at"	"SLC35E3"	55508	"ENSG00000175782"
+"217277_at"	"IGLVIVOR22-1"	NA	"ENSG00000271138"
+"220112_at"	"ANKRD55"	79722	"ENSG00000164512"
+"219180_s_at"	"PEX26"	55670	"ENSG00000215193"
+"217366_at"	"CTNNA1P1"	NA	"ENSG00000249026"
+"218327_s_at"	"SNAP29"	9342	"ENSG00000099940"
+"218043_s_at"	"AZI2"	64343	"ENSG00000163512"
+"219634_at"	"CHST11"	50515	"ENSG00000171310"
+"218492_s_at"	"THAP7"	80764	"ENSG00000184436"
+"216081_at"	"LAMA4"	3910	"ENSG00000112769"
+"216267_s_at"	"TMEM115"	11070	"ENSG00000126062"
+"218980_at"	"FHOD3"	80206	"ENSG00000134775"
+"216149_at"	""	NA	"ENSG00000214719"
+"215996_at"	""	NA	"ENSG00000213600"
+"218500_at"	"THEM6"	51337	"ENSG00000130193"
+"218899_s_at"	"BAALC"	79870	"ENSG00000164929"
+"215884_s_at"	"UBQLN2"	29978	"ENSG00000188021"
+"217971_at"	"LAMTOR3"	8649	"ENSG00000109270"
+"218936_s_at"	"CCDC59"	29080	"ENSG00000133773"
+"219193_at"	"WDR70"	55100	"ENSG00000082068"
+"217678_at"	"SLC7A11"	23657	"ENSG00000151012"
+"219047_s_at"	"ZNF668"	79759	"ENSG00000167394"
+"218910_at"	"ANO10"	55129	"ENSG00000160746"
+"220082_at"	"PPP1R14D"	54866	"ENSG00000166143"
+"218705_s_at"	"SNX24"	28966	"ENSG00000064652"
+"219436_s_at"	"EMCN"	51705	"ENSG00000164035"
+"220144_s_at"	"ANKEF1"	63926	"ENSG00000132623"
+"216715_at"	"EEF1DP5"	NA	"ENSG00000213130"
+"217115_at"	"MKRN7P"	NA	"ENSG00000225849"
+"219060_at"	"NTAQ1"	55093	"ENSG00000156795"
+"217497_at"	"TYMP"	1890	"ENSG00000025708"
+"219240_s_at"	"C10orf88"	80007	"ENSG00000119965"
+"219529_at"	"CLIC3"	9022	"ENSG00000169583"
+"220065_at"	"TNMD"	64102	"ENSG00000000005"
+"217696_at"	"FUT7"	2529	"ENSG00000180549"
+"219114_at"	"C3orf18"	51161	"ENSG00000088543"
+"216423_at"	""	NA	"ENSG00000279977"
+"220447_at"	"HRH3"	11255	"ENSG00000101180"
+"219354_at"	"KLHL26"	55295	"ENSG00000167487"
+"218555_at"	"ANAPC2"	29882	"ENSG00000176248"
+"218745_x_at"	"TMEM161A"	54929	"ENSG00000064545"
+"216032_s_at"	"ERGIC3"	51614	"ENSG00000125991"
+"215883_at"	"CTNNA1"	1495	"ENSG00000044115"
+"218782_s_at"	"ATAD2"	29028	"ENSG00000156802"
+"217380_s_at"	"ADD3-AS1"	100505933	"ENSG00000203876"
+"219773_at"	"NOX4"	50507	"ENSG00000086991"
+"219620_x_at"	"TOR4A"	54863	"ENSG00000198113"
+"217711_at"	"TEK"	7010	"ENSG00000120156"
+"218768_at"	"NUP107"	57122	"ENSG00000111581"
+"217047_s_at"	"FAM13A"	10144	"ENSG00000138640"
+"216516_at"	"RPL21P64"	NA	"ENSG00000220110"
+"217546_at"	"MT1M"	4499	"ENSG00000205364"
+"220487_at"	"SNTG2"	54221	"ENSG00000172554"
+"217165_x_at"	"MT1F"	4494	"ENSG00000198417"
+"217313_at"	""	NA	"ENSG00000213717"
+"218173_s_at"	"NSD3"	54904	"ENSG00000147548"
+"218739_at"	"ABHD5"	51099	"ENSG00000011198"
+"218496_at"	"RNASEH1"	246243	"ENSG00000171865"
+"220498_at"	"ACTL7B"	10880	"ENSG00000148156"
+"220501_at"	"ACTL7A"	10881	"ENSG00000187003"
+"218875_s_at"	"FBXO5"	26271	"ENSG00000112029"
+"219122_s_at"	"THG1L"	54974	"ENSG00000113272"
+"219290_x_at"	"DAPP1"	27071	"ENSG00000070190"
+"218472_s_at"	"PELO"	53918	"ENSG00000152684"
+"218781_at"	"SMC6"	79677	"ENSG00000163029"
+"217547_x_at"	"ZNF675"	171392	"ENSG00000197372"
+"220327_at"	"VGLL3"	389136	"ENSG00000206538"
+"216300_x_at"	"RARA"	5914	"ENSG00000131759"
+"217898_at"	"EMC7"	56851	"ENSG00000134153"
+"218791_s_at"	"KATNBL1"	79768	"ENSG00000134152"
+"219901_at"	"FGD6"	55785	"ENSG00000180263"
+"218974_at"	"SOBP"	55084	"ENSG00000112320"
+"215781_s_at"	"TOP3B"	8940	"ENSG00000100038"
+"219124_at"	"TTI2"	80185	"ENSG00000129696"
+"219057_at"	"RABEP2"	79874	"ENSG00000177548"
+"216564_at"	""	NA	"ENSG00000227948"
+"216815_at"	"RPL10P10"	NA	"ENSG00000216347"
+"219247_s_at"	"ZDHHC14"	79683	"ENSG00000175048"
+"220357_s_at"	"SGK2"	10110	"ENSG00000101049"
+"219412_at"	"RAB38"	23682	"ENSG00000123892"
+"216575_at"	"HMGB1P17"	NA	"ENSG00000217482"
+"220343_at"	"PDE7B"	27115	"ENSG00000171408"
+"215777_at"	"IGLV4-60"	NA	"ENSG00000211639"
+"219353_at"	"NHLRC2"	374354	"ENSG00000196865"
+"218826_at"	"SLC35F2"	54733	"ENSG00000110660"
+"218184_at"	"TULP4"	56995	"ENSG00000130338"
+"219199_at"	"AFF4"	27125	"ENSG00000072364"
+"217555_at"	"SMC1A"	8243	"ENSG00000072501"
+"219126_at"	"PHF10"	55274	"ENSG00000130024"
+"218998_at"	"ABITRAM"	54942	"ENSG00000119328"
+"218598_at"	"RINT1"	60561	"ENSG00000135249"
+"219425_at"	"SULT4A1"	25830	"ENSG00000130540"
+"216179_x_at"	"AIG1"	51390	"ENSG00000146416"
+"216869_at"	"PDE1C"	5137	"ENSG00000154678"
+"219750_at"	"TMEM144"	55314	"ENSG00000164124"
+"217613_at"	"TMEM144"	55314	"ENSG00000164124"
+"217287_s_at"	"TRPC6"	7225	"ENSG00000137672"
+"216981_x_at"	"SPN"	6693	"ENSG00000197471"
+"220202_s_at"	"RC3H2"	54542	"ENSG00000056586"
+"220201_at"	"RC3H2"	54542	"ENSG00000056586"
+"218499_at"	"STK26"	51765	"ENSG00000134602"
+"218097_s_at"	"CUEDC2"	79004	"ENSG00000107874"
+"217249_x_at"	"COX7A2P2"	NA	"ENSG00000236764"
+"220152_at"	"C10orf95"	79946	"ENSG00000120055"
+"219745_at"	"MFSD13A"	79847	"ENSG00000138111"
+"219716_at"	"APOL6"	80830	"ENSG00000221963"
+"219623_at"	"ACTR5"	79913	"ENSG00000101442"
+"218668_s_at"	"RAP2C"	57826	"ENSG00000123728"
+"218669_at"	"RAP2C"	57826	"ENSG00000123728"
+"219304_s_at"	"PDGFD"	80310	"ENSG00000170962"
+"219421_at"	"TTC33"	23548	"ENSG00000113638"
+"219677_at"	"SPSB1"	80176	"ENSG00000171621"
+"217467_at"	"BTF3P13"	NA	"ENSG00000227118"
+"218517_at"	"JADE1"	79960	"ENSG00000077684"
+"217524_x_at"	"PPARGC1B"	133522	"ENSG00000155846"
+"216580_at"	"RPL7P27"	NA	"ENSG00000220069"
+"217244_at"	"DNAJA1P4"	NA	"ENSG00000218089"
+"219008_at"	"LDAH"	60526	"ENSG00000118961"
+"220044_x_at"	"LUC7L3"	51747	"ENSG00000108848"
+"217800_s_at"	"NDFIP1"	80762	"ENSG00000131507"
+"219020_at"	"HS1BP3"	64342	"ENSG00000118960"
+"219722_s_at"	"GDPD3"	79153	"ENSG00000102886"
+"216948_at"	"RAB1AP2"	NA	"ENSG00000217272"
+"219813_at"	"LATS1"	9113	"ENSG00000131023"
+"219055_at"	"SRBD1"	55133	"ENSG00000068784"
+"218815_s_at"	"TMEM51"	55092	"ENSG00000171729"
+"220334_at"	"RGS17"	26575	"ENSG00000091844"
+"219975_x_at"	"OLAH"	55301	"ENSG00000152463"
+"217911_s_at"	"BAG3"	9531	"ENSG00000151929"
+"218715_at"	"UTP6"	55813	"ENSG00000108651"
+"218825_at"	"EGFL7"	51162	"ENSG00000172889"
+"217306_at"	""	NA	"ENSG00000217612"
+"219129_s_at"	"SAP30L"	79685	"ENSG00000164576"
+"216522_at"	"OR2B6"	26212	"ENSG00000124657"
+"216490_x_at"	"RPLP2P1"	NA	"ENSG00000214374"
+"217750_s_at"	"UBE2Z"	65264	"ENSG00000159202"
+"220221_at"	"VPS13D"	55187	"ENSG00000048707"
+"218557_at"	"NIT2"	56954	"ENSG00000114021"
+"218026_at"	"COA3"	28958	"ENSG00000183978"
+"216733_s_at"	"GATM"	2628	"ENSG00000171766"
+"218755_at"	"KIF20A"	10112	"ENSG00000112984"
+"216021_s_at"	"GLRA3"	8001	"ENSG00000145451"
+"219602_s_at"	"PIEZO2"	63895	"ENSG00000154864"
+"219828_at"	"RABL6"	55684	"ENSG00000196642"
+"218933_at"	"SPATA5L1"	79029	"ENSG00000171763"
+"219806_s_at"	"SMCO4"	56935	"ENSG00000166002"
+"218439_s_at"	"COMMD10"	51397	"ENSG00000145781"
+"220252_x_at"	"TASL"	80231	"ENSG00000120280"
+"218962_s_at"	"TMEM168"	64418	"ENSG00000146802"
+"218316_at"	"TIMM9"	26520	"ENSG00000100575"
+"220538_at"	"ADM2"	79924	"ENSG00000128165"
+"217995_at"	"SQOR"	58472	"ENSG00000137767"
+"218427_at"	"ENTR1"	10807	"ENSG00000165689"
+"220263_at"	"SMAD5-AS1"	9597	"ENSG00000164621"
+"220138_at"	"HAND1"	9421	"ENSG00000113196"
+"217951_s_at"	"PHF3"	23469	"ENSG00000118482"
+"217953_at"	"PHF3"	23469	"ENSG00000118482"
+"217952_x_at"	"PHF3"	23469	"ENSG00000118482"
+"215718_s_at"	"PHF3"	23469	"ENSG00000118482"
+"217954_s_at"	"PHF3"	23469	"ENSG00000118482"
+"216985_s_at"	"STX3"	6809	"ENSG00000166900"
+"216663_s_at"	"ZMYND10"	51364	"ENSG00000004838"
+"218259_at"	"MRTFB"	57496	"ENSG00000186260"
+"220141_at"	"JHY"	79864	"ENSG00000109944"
+"215955_x_at"	"ARHGAP26"	23092	"ENSG00000145819"
+"216344_at"	"NPHP4"	261734	"ENSG00000131697"
+"218628_at"	"WASHC3"	51019	"ENSG00000120860"
+"219317_at"	"POLI"	11201	"ENSG00000101751"
+"218513_at"	"TMA16"	55319	"ENSG00000198498"
+"220414_at"	"CALML5"	51806	"ENSG00000178372"
+"218935_at"	"EHD3"	30845	"ENSG00000013016"
+"218862_at"	"ASB13"	79754	"ENSG00000196372"
+"219160_s_at"	"PAPOLG"	64895	"ENSG00000115421"
+"217521_at"	"HAL"	3034	"ENSG00000084110"
+"216804_s_at"	"PDLIM5"	10611	"ENSG00000163110"
+"217210_at"	"DYNLL1P3"	NA	"ENSG00000235282"
+"218542_at"	"CEP55"	55165	"ENSG00000138180"
+"218015_s_at"	"WRNIP1"	56897	"ENSG00000124535"
+"219589_s_at"	"TMEM143"	55260	"ENSG00000161558"
+"218667_at"	"PJA1"	64219	"ENSG00000181191"
+"216106_at"	""	NA	"ENSG00000260619"
+"220325_at"	"TAF7L"	54457	"ENSG00000102387"
+"219235_s_at"	"PHACTR4"	65979	"ENSG00000204138"
+"219929_s_at"	"ZFYVE21"	79038	"ENSG00000100711"
+"220285_at"	"ABHD17B"	51104	"ENSG00000107362"
+"216565_x_at"	"IFITM3P7"	NA	"ENSG00000233419"
+"218615_s_at"	"TMEM39A"	55254	"ENSG00000176142"
+"217176_s_at"	"ZFX"	7543	"ENSG00000005889"
+"217974_at"	"TM7SF3"	51768	"ENSG00000064115"
+"216060_s_at"	"DAAM1"	23002	"ENSG00000100592"
+"219212_at"	"HSPA14"	51182	"ENSG00000187522"
+"216397_s_at"	"BOP1"	23246	"ENSG00000261236"
+"215901_at"	"ZNF81"	347344	"ENSG00000197779"
+"219016_at"	"FASTKD5"	60493	"ENSG00000215251"
+"220084_at"	"CCDC198"	55195	"ENSG00000100557"
+"219888_at"	"SPAG4"	6676	"ENSG00000061656"
+"220317_at"	"LRAT"	9227	"ENSG00000121207"
+"220022_at"	"ZNF334"	55713	"ENSG00000198185"
+"217370_x_at"	"FUS"	2521	"ENSG00000089280"
+"217405_x_at"	"GPLD1"	2822	"ENSG00000112293"
+"220430_at"	"FAM110D"	79927	"ENSG00000197245"
+"217284_x_at"	"SERHL2"	253190	"ENSG00000183569"
+"218889_at"	"NOC3L"	64318	"ENSG00000173145"
+"219584_at"	"PLA1A"	51365	"ENSG00000144837"
+"217471_at"	"LINC01482"	101928104	"ENSG00000267659"
+"218642_s_at"	"CHCHD7"	79145	"ENSG00000170791"
+"218218_at"	"APPL2"	55198	"ENSG00000136044"
+"219431_at"	"ARHGAP10"	79658	"ENSG00000071205"
+"217085_at"	""	NA	"ENSG00000266968"
+"218451_at"	"CDCP1"	64866	"ENSG00000163814"
+"217342_x_at"	"LINC01949"	NA	"ENSG00000288569"
+"218366_x_at"	"METTL17"	64745	"ENSG00000165792"
+"218368_s_at"	"TNFRSF12A"	51330	"ENSG00000006327"
+"219488_at"	"A4GALT"	53947	"ENSG00000128274"
+"218537_at"	"HCFC1R1"	54985	"ENSG00000103145"
+"218950_at"	"ARAP3"	64411	"ENSG00000120318"
+"218719_s_at"	"GINS3"	64785	"ENSG00000181938"
+"215856_at"	"SIGLEC15"	284266	"ENSG00000197046"
+"219136_s_at"	"LMF1"	64788	"ENSG00000103227"
+"219135_s_at"	"LMF1"	64788	"ENSG00000103227"
+"219074_at"	"TMEM184C"	55751	"ENSG00000164168"
+"219938_s_at"	"PSTPIP2"	9050	"ENSG00000152229"
+"219366_at"	"AVEN"	57099	"ENSG00000169857"
+"217371_s_at"	"IL15"	3600	"ENSG00000164136"
+"215790_at"	"AJAP1"	55966	"ENSG00000196581"
+"215789_s_at"	"AJAP1"	55966	"ENSG00000196581"
+"218947_s_at"	"MTPAP"	55149	"ENSG00000107951"
+"218394_at"	"ROGDI"	79641	"ENSG00000067836"
+"219438_at"	"NKAIN1"	79570	"ENSG00000084628"
+"219291_at"	"DTWD1"	56986	"ENSG00000104047"
+"215905_s_at"	"SNRNP40"	9410	"ENSG00000060688"
+"219601_s_at"	"LCOR"	84458	"ENSG00000196233"
+"220070_at"	"KDM8"	79831	"ENSG00000155666"
+"219661_at"	"RANBP17"	64901	"ENSG00000204764"
+"218624_s_at"	"CENPBD2P"	65996	"ENSG00000213753"
+"217133_x_at"	"CYP2B6"	1555	"ENSG00000197408"
+"218644_at"	"PLEK2"	26499	"ENSG00000100558"
+"220145_at"	"MAP9"	79884	"ENSG00000164114"
+"220340_at"	"GREB1L"	80000	"ENSG00000141449"
+"219316_s_at"	"FLVCR2"	55640	"ENSG00000119686"
+"216882_s_at"	"NEBL"	10529	"ENSG00000078114"
+"217585_at"	"NEBL"	10529	"ENSG00000078114"
+"218623_at"	"NSG2"	51617	"ENSG00000170091"
+"218391_at"	"SNF8"	11267	"ENSG00000159210"
+"217188_s_at"	"ERG28"	11161	"ENSG00000133935"
+"219001_s_at"	"DCAF10"	79269	"ENSG00000122741"
+"216321_s_at"	"NR3C1"	2908	"ENSG00000113580"
+"219720_s_at"	"GPATCH2L"	55668	"ENSG00000089916"
+"218502_s_at"	"TRPS1"	7227	"ENSG00000104447"
+"216334_s_at"	"CYP2A7P1"	NA	"ENSG00000213908"
+"217460_at"	"TNP2"	7142	"ENSG00000178279"
+"219502_at"	"NEIL3"	55247	"ENSG00000109674"
+"218032_at"	"SNN"	8303	"ENSG00000184602"
+"218033_s_at"	"SNN"	8303	"ENSG00000184602"
+"216169_at"	"TXNDC11-AS1"	NA	"ENSG00000262420"
+"217355_at"	""	NA	"ENSG00000188078"
+"218100_s_at"	"IFT57"	55081	"ENSG00000114446"
+"219407_s_at"	"LAMC3"	10319	"ENSG00000050555"
+"220087_at"	"BCO1"	53630	"ENSG00000135697"
+"215870_s_at"	"PLA2G5"	5322	"ENSG00000127472"
+"215871_at"	"PLA2G5"	5322	"ENSG00000127472"
+"218230_at"	"ARFIP1"	27236	"ENSG00000164144"
+"219444_at"	"BCORL1"	63035	"ENSG00000085185"
+"218017_s_at"	"HGSNAT"	138050	"ENSG00000165102"
+"217775_s_at"	"RDH11"	51109	"ENSG00000072042"
+"217776_at"	"RDH11"	51109	"ENSG00000072042"
+"216396_s_at"	"EI24"	9538	"ENSG00000149547"
+"219523_s_at"	"TENM3"	55714	"ENSG00000218336"
+"220421_at"	"BTNL8"	79908	"ENSG00000113303"
+"218817_at"	"SPCS3"	60559	"ENSG00000129128"
+"220302_at"	"MAK"	4117	"ENSG00000111837"
+"216235_s_at"	"EDNRA"	1909	"ENSG00000151617"
+"216910_at"	"XPNPEP2"	7512	"ENSG00000122121"
+"219321_at"	"PALS1"	64398	"ENSG00000072415"
+"219711_at"	"ZNF586"	54807	"ENSG00000083828"
+"219216_at"	"ETAA1"	54465	"ENSG00000143971"
+"218058_at"	"CXXC1"	30827	"ENSG00000154832"
+"220350_at"	"ZNF235"	9310	"ENSG00000159917"
+"218855_at"	"TPRA1"	131601	"ENSG00000163870"
+"219724_s_at"	"TESPA1"	9840	"ENSG00000135426"
+"219190_s_at"	"AGO4"	192670	"ENSG00000134698"
+"217038_at"	"HMGB1P12"	NA	"ENSG00000223904"
+"219599_at"	""	NA	"ENSG00000229939"
+"216590_at"	"GNAT3"	346562	"ENSG00000214415"
+"216639_at"	"SRPX2"	27286	"ENSG00000102359"
+"218160_at"	"NDUFA8"	4702	"ENSG00000119421"
+"216622_at"	"LAMB4"	22798	"ENSG00000091128"
+"218163_at"	"MCTS1"	28985	"ENSG00000232119"
+"215997_s_at"	"CUL4B"	8450	"ENSG00000158290"
+"220455_at"	"SLC16A8"	23539	"ENSG00000100156"
+"220015_at"	"CASZ1"	54897	"ENSG00000130940"
+"217907_at"	"MRPL18"	29074	"ENSG00000112110"
+"218908_at"	"ASPSCR1"	79058	"ENSG00000169696"
+"215721_at"	"IGHV5-51"	NA	"ENSG00000211966"
+"215761_at"	"DMXL2"	23312	"ENSG00000104093"
+"218339_at"	"MRPL22"	29093	"ENSG00000082515"
+"220237_at"	"ATG3"	64422	"ENSG00000144848"
+"218592_s_at"	"HDHD5"	27440	"ENSG00000069998"
+"218645_at"	"ZNF277"	11179	"ENSG00000198839"
+"217650_x_at"	"ST3GAL2"	6483	"ENSG00000157350"
+"220423_at"	"PLA2G2D"	26279	"ENSG00000117215"
+"219284_at"	"HSPBAP1"	79663	"ENSG00000169087"
+"219046_s_at"	"PKNOX2"	63876	"ENSG00000165495"
+"219311_at"	"CEP76"	79959	"ENSG00000101624"
+"219755_at"	"CBX8"	57332	"ENSG00000141570"
+"217147_s_at"	"TRAT1"	50852	"ENSG00000163519"
+"217847_s_at"	"THRAP3"	9967	"ENSG00000054118"
+"218467_at"	"PSMG2"	56984	"ENSG00000128789"
+"219157_at"	"KLHL2"	11275	"ENSG00000109466"
+"215826_x_at"	"ZNF835"	90485	"ENSG00000127903"
+"219669_at"	"CD177"	57126	"ENSG00000204936"
+"219509_at"	"MYOZ1"	58529	"ENSG00000177791"
+"219196_at"	"SCG3"	29106	"ENSG00000104112"
+"219804_at"	"SYNPO2L"	79933	"ENSG00000166317"
+"220503_at"	"SLC13A1"	6561	"ENSG00000081800"
+"220502_s_at"	"SLC13A1"	6561	"ENSG00000081800"
+"216849_at"	"LINC03050"	126568848	"ENSG00000235725"
+"219539_at"	"GEMIN6"	79833	"ENSG00000152147"
+"216064_s_at"	"AGA"	175	"ENSG00000038002"
+"218061_at"	"MEA1"	4201	"ENSG00000124733"
+"216266_s_at"	"ARFGEF1"	10565	"ENSG00000066777"
+"219237_s_at"	"DNAJB14"	79982	"ENSG00000164031"
+"216345_at"	"ZSWIM8"	23053	"ENSG00000214655"
+"218827_s_at"	"CEP192"	55125	"ENSG00000101639"
+"219505_at"	"ADA2"	51816	"ENSG00000093072"
+"219252_s_at"	"GEMIN8"	54960	"ENSG00000046647"
+"220486_x_at"	"TMEM164"	84187	"ENSG00000157600"
+"219820_at"	"SLC6A16"	28968	"ENSG00000063127"
+"218286_s_at"	"RNF7"	9616	"ENSG00000114125"
+"218304_s_at"	"OSBPL11"	114885	"ENSG00000144909"
+"219433_at"	"BCOR"	54880	"ENSG00000183337"
+"218436_at"	"SIL1"	64374	"ENSG00000120725"
+"218887_at"	"MRPL2"	51069	"ENSG00000112651"
+"218118_s_at"	"TIMM23"	100287932	"ENSG00000265354"
+"218676_s_at"	"PCTP"	58488	"ENSG00000141179"
+"217970_s_at"	"CNOT6"	57472	"ENSG00000113300"
+"218519_at"	"SLC35A5"	55032	"ENSG00000138459"
+"220088_at"	"C5AR1"	728	"ENSG00000197405"
+"217206_at"	"CYCSP19"	NA	"ENSG00000213310"
+"218543_s_at"	"PARP12"	64761	"ENSG00000059378"
+"218693_at"	"TSPAN15"	23555	"ENSG00000099282"
+"219230_at"	"TMEM100"	55273	"ENSG00000166292"
+"217938_s_at"	"KCMF1"	56888	"ENSG00000176407"
+"219497_s_at"	"BCL11A"	53335	"ENSG00000119866"
+"219498_s_at"	"BCL11A"	53335	"ENSG00000119866"
+"217434_at"	"MC2R"	4158	"ENSG00000185231"
+"219251_s_at"	"DYNC2I1"	55112	"ENSG00000126870"
+"219852_s_at"	"MORN1"	79906	"ENSG00000116151"
+"220309_at"	"TTC22"	55001	"ENSG00000006555"
+"218929_at"	"CDKN2AIP"	55602	"ENSG00000168564"
+"217733_s_at"	"TMSB10"	9168	"ENSG00000034510"
+"218775_s_at"	"WWC2"	80014	"ENSG00000151718"
+"218298_s_at"	"DGLUCY"	80017	"ENSG00000133943"
+"217207_s_at"	"BTNL3"	10917	"ENSG00000168903"
+"218083_at"	"PTGES2"	80142	"ENSG00000148334"
+"216911_s_at"	"HIC2"	23119	"ENSG00000169635"
+"219459_at"	"POLR3B"	55703	"ENSG00000013503"
+"217211_at"	"ACTBP9"	NA	"ENSG00000266920"
+"219062_s_at"	"ZCCHC2"	54877	"ENSG00000141664"
+"216013_at"	"ZXDB"	158586	"ENSG00000198455"
+"218392_x_at"	"SFXN1"	94081	"ENSG00000164466"
+"216545_at"	"GOT2P1"	NA	"ENSG00000231900"
+"218158_s_at"	"APPL1"	26060	"ENSG00000157500"
+"220124_at"	"GAN"	8139	"ENSG00000261609"
+"218686_s_at"	"RHBDF1"	64285	"ENSG00000007384"
+"217863_at"	"PIAS1"	8554	"ENSG00000033800"
+"217864_s_at"	"PIAS1"	8554	"ENSG00000033800"
+"217862_at"	"PIAS1"	8554	"ENSG00000033800"
+"216143_at"	"PIAS1"	8554	"ENSG00000033800"
+"216853_x_at"	"IGLV3-19"	NA	"ENSG00000211663"
+"215876_at"	""	NA	"ENSG00000226334"
+"217506_at"	"LINC00667"	339290	"ENSG00000263753"
+"216066_at"	"ABCA1"	19	"ENSG00000165029"
+"218179_s_at"	"TRAPPC11"	60684	"ENSG00000168538"
+"218047_at"	"OSBPL9"	114883	"ENSG00000117859"
+"219034_at"	"PARP16"	54956	"ENSG00000138617"
+"220004_at"	"DDX43"	55510	"ENSG00000080007"
+"217848_s_at"	"PPA1"	5464	"ENSG00000180817"
+"220284_at"	"DKKL1"	27120	"ENSG00000104901"
+"215841_at"	"GUCA1B"	2979	"ENSG00000112599"
+"216722_at"	"VENTXP1"	139538	"ENSG00000259849"
+"218106_s_at"	"MRPS10"	55173	"ENSG00000048544"
+"219357_at"	"GTPBP1"	9567	"ENSG00000100226"
+"219067_s_at"	"NSMCE4A"	54780	"ENSG00000107672"
+"218948_at"	"QRSL1"	55278	"ENSG00000130348"
+"218949_s_at"	"QRSL1"	55278	"ENSG00000130348"
+"218178_s_at"	"CHMP1B"	57132	"ENSG00000255112"
+"218177_at"	"CHMP1B"	57132	"ENSG00000255112"
+"219052_at"	"HPS6"	79803	"ENSG00000166189"
+"215684_s_at"	"ASCC2"	84164	"ENSG00000100325"
+"216705_s_at"	"ADA"	100	"ENSG00000196839"
+"219071_x_at"	"HGH1"	51236	"ENSG00000235173"
+"220100_at"	"SLC22A11"	55867	"ENSG00000168065"
+"219454_at"	"EGFL6"	25975	"ENSG00000198759"
+"219169_s_at"	"TFB1M"	51106	"ENSG00000029639"
+"216659_at"	"DHFRP3"	NA	"ENSG00000168129"
+"219174_at"	"IFT74"	80173	"ENSG00000096872"
+"218905_at"	"INTS8"	55656	"ENSG00000164941"
+"219446_at"	"RIC8B"	55188	"ENSG00000111785"
+"219036_at"	"CEP70"	80321	"ENSG00000114107"
+"219271_at"	"GALNT14"	79623	"ENSG00000158089"
+"218761_at"	"RNF111"	54778	"ENSG00000157450"
+"216711_s_at"	"TAF1"	6872	"ENSG00000147133"
+"217865_at"	"RNF130"	55819	"ENSG00000113269"
+"218820_at"	"C14orf132"	56967	"ENSG00000227051"
+"219338_s_at"	"LRRC49"	54839	"ENSG00000137821"
+"218031_s_at"	"FOXN3"	1112	"ENSG00000053254"
+"217279_x_at"	"MMP14"	4323	"ENSG00000157227"
+"219810_at"	"VCPIP1"	80124	"ENSG00000175073"
+"220216_at"	"C8orf44"	56260	"ENSG00000288596"
+"217948_at"	"RTL8A"	26071	"ENSG00000203950"
+"220529_at"	""	NA	"ENSG00000279555"
+"218174_s_at"	"TMEM254"	80195	"ENSG00000133678"
+"219987_at"	"ERVMER34-1"	100288413	"ENSG00000226887"
+"219484_at"	"HCFC2"	29915	"ENSG00000111727"
+"220125_at"	"DNAI1"	27019	"ENSG00000122735"
+"217783_s_at"	"YPEL5"	51646	"ENSG00000119801"
+"219955_at"	"L1TD1"	54596	"ENSG00000240563"
+"218445_at"	"MACROH2A2"	55506	"ENSG00000099284"
+"219033_at"	"PARP8"	79668	"ENSG00000151883"
+"219395_at"	"ESRP2"	80004	"ENSG00000103067"
+"218622_at"	"NUP37"	79023	"ENSG00000075188"
+"218315_s_at"	"CDK5RAP1"	51654	"ENSG00000101391"
+"216503_s_at"	"MLLT10"	8028	"ENSG00000078403"
+"216506_x_at"	"MLLT10"	8028	"ENSG00000078403"
+"219409_at"	"SNIP1"	79753	"ENSG00000163877"
+"218940_at"	"VCPKMT"	79609	"ENSG00000100483"
+"217644_s_at"	"SOS2"	6655	"ENSG00000100485"
+"217576_x_at"	"SOS2"	6655	"ENSG00000100485"
+"220067_at"	"SPTBN5"	51332	"ENSG00000137877"
+"217310_s_at"	"FOXJ3"	22887	"ENSG00000198815"
+"218538_s_at"	"MRS2"	57380	"ENSG00000124532"
+"218536_at"	"MRS2"	57380	"ENSG00000124532"
+"217612_at"	"TIMM50"	92609	"ENSG00000105197"
+"218482_at"	"ENY2"	56943	"ENSG00000120533"
+"220197_at"	"ATP6V0A4"	50617	"ENSG00000105929"
+"217876_at"	"GTF3C5"	9328	"ENSG00000148308"
+"220089_at"	"L2HGDH"	79944	"ENSG00000087299"
+"218402_s_at"	"HPS4"	89781	"ENSG00000100099"
+"219537_x_at"	"DLL3"	10683	"ENSG00000090932"
+"219695_at"	"SMPD3"	55512	"ENSG00000103056"
+"216305_s_at"	"GCFC2"	6936	"ENSG00000005436"
+"218824_at"	"PNMA8A"	55228	"ENSG00000182013"
+"217594_at"	"TUT4"	23318	"ENSG00000134744"
+"220183_s_at"	"NUDT6"	11162	"ENSG00000170917"
+"219588_s_at"	"NCAPG2"	54892	"ENSG00000146918"
+"216341_s_at"	"GNRHR"	2798	"ENSG00000109163"
+"219475_at"	"OSGIN1"	29948	"ENSG00000140961"
+"217457_s_at"	"RAP1GDS1"	5910	"ENSG00000138698"
+"218713_at"	"ICE2"	79664	"ENSG00000128915"
+"219156_at"	"SYNJ2BP"	55333	"ENSG00000213463"
+"217232_x_at"	"HBB"	3043	"ENSG00000244734"
+"217530_at"	"SLC34A1"	6569	"ENSG00000131183"
+"218416_s_at"	"SLC48A1"	55652	"ENSG00000211584"
+"218417_s_at"	"SLC48A1"	55652	"ENSG00000211584"
+"215689_s_at"	"SHBG"	6462	"ENSG00000129214"
+"220009_at"	"LONRF3"	79836	"ENSG00000175556"
+"220422_at"	"UBQLN3"	50613	"ENSG00000175520"
+"219171_s_at"	"ZNF236"	7776	"ENSG00000130856"
+"218303_x_at"	"KRCC1"	51315	"ENSG00000172086"
+"219742_at"	"PRR7"	80758	"ENSG00000131188"
+"218114_at"	"GGA1"	26088	"ENSG00000100083"
+"217560_at"	"GGA1"	26088	"ENSG00000100083"
+"217840_at"	"DDX41"	51428	"ENSG00000183258"
+"220480_at"	"HAND2"	9464	"ENSG00000164107"
+"218438_s_at"	"MED28"	80306	"ENSG00000118579"
+"219717_at"	"DCAF16"	54876	"ENSG00000163257"
+"217548_at"	"ARPIN"	348110	"ENSG00000242498"
+"218663_at"	"NCAPG"	64151	"ENSG00000109805"
+"218662_s_at"	"NCAPG"	64151	"ENSG00000109805"
+"219028_at"	"HIPK2"	28996	"ENSG00000064393"
+"217224_at"	"OR1E3"	NA	"ENSG00000142163"
+"218034_at"	"FIS1"	51024	"ENSG00000214253"
+"219513_s_at"	"SH2D3A"	10045	"ENSG00000125731"
+"216989_at"	""	105375483	"ENSG00000241345"
+"217806_s_at"	"POLDIP2"	26073	"ENSG00000004142"
+"216698_x_at"	"OR7E12P"	NA	"ENSG00000189398"
+"219274_at"	"TSPAN12"	23554	"ENSG00000106025"
+"217646_at"	"SURF1"	6834	"ENSG00000148290"
+"219927_at"	"FCF1"	51077	"ENSG00000119616"
+"217195_at"	"GCNT1P1"	NA	"ENSG00000236474"
+"218939_at"	"LETM1"	3954	"ENSG00000168924"
+"219672_at"	"AHSP"	51327	"ENSG00000169877"
+"215799_at"	"PDXP-DT"	101927051	"ENSG00000233360"
+"219542_at"	"NEK11"	79858	"ENSG00000114670"
+"218872_at"	"TESC"	54997	"ENSG00000088992"
+"218561_s_at"	"LYRM4"	57128	"ENSG00000214113"
+"215938_s_at"	"PLA2G6"	8398	"ENSG00000184381"
+"218625_at"	"NRN1"	51299	"ENSG00000124785"
+"219351_at"	"TRAPPC2"	6399	"ENSG00000196459"
+"217451_at"	"COX5AP1"	NA	"ENSG00000271180"
+"218539_at"	"FBXO34"	55030	"ENSG00000178974"
+"219685_at"	"TMEM35A"	59353	"ENSG00000126950"
+"217152_at"	""	NA	"ENSG00000200170"
+"219654_at"	"HACD1"	9200	"ENSG00000165996"
+"217045_x_at"	"NCR2"	9436	"ENSG00000096264"
+"217493_x_at"	"NCR2"	9436	"ENSG00000096264"
+"216247_at"	"RPS20"	6224	"ENSG00000008988"
+"218111_s_at"	"CMAS"	55907	"ENSG00000111726"
+"217677_at"	"PLEKHA2"	59339	"ENSG00000169499"
+"219531_at"	"CEP72"	55722	"ENSG00000112877"
+"219591_at"	"CEND1"	51286	"ENSG00000184524"
+"218238_at"	"GTPBP4"	23560	"ENSG00000107937"
+"218239_s_at"	"GTPBP4"	23560	"ENSG00000107937"
+"217631_at"	"GTPBP4"	23560	"ENSG00000107937"
+"218725_at"	"SLC25A22"	79751	"ENSG00000177542"
+"219163_at"	"ZNF562"	54811	"ENSG00000171466"
+"219183_s_at"	"CYTH4"	27128	"ENSG00000100055"
+"220127_s_at"	"FBXL12"	54850	"ENSG00000127452"
+"218112_at"	"MRPS34"	65993	"ENSG00000074071"
+"219086_at"	"ZNF839"	55778	"ENSG00000022976"
+"217901_at"	"DSG2"	1829	"ENSG00000046604"
+"219308_s_at"	"AK5"	26289	"ENSG00000154027"
+"220328_at"	"PHC3"	80012	"ENSG00000173889"
+"216570_x_at"	"RPL29P5"	NA	"ENSG00000213579"
+"219970_at"	"GIPC2"	54810	"ENSG00000137960"
+"219741_x_at"	"ZNF552"	79818	"ENSG00000178935"
+"220072_at"	"CSPP1"	79848	"ENSG00000104218"
+"219803_at"	"ANGPTL3"	27329	"ENSG00000132855"
+"215712_s_at"	"IGFALS"	3483	"ENSG00000099769"
+"219981_x_at"	"ZNF587"	84914	"ENSG00000198466"
+"216373_at"	"TAPT1"	202018	"ENSG00000169762"
+"220032_at"	"CPED1"	79974	"ENSG00000106034"
+"217874_at"	"SUCLG1"	8802	"ENSG00000163541"
+"216762_at"	"SUCLG1"	8802	"ENSG00000163541"
+"220368_s_at"	"PPP4R3A"	55671	"ENSG00000100796"
+"220369_at"	"PPP4R3A"	55671	"ENSG00000100796"
+"215633_x_at"	"LST1"	7940	"ENSG00000204482"
+"216361_s_at"	"KAT6A"	7994	"ENSG00000083168"
+"218169_at"	"VAC14"	55697	"ENSG00000103043"
+"220386_s_at"	"EML4"	27436	"ENSG00000143924"
+"217842_at"	"LUC7L2"	51631	"ENSG00000146963"
+"218022_at"	"VRK3"	51231	"ENSG00000105053"
+"219569_s_at"	"SLC35G2"	80723	"ENSG00000168917"
+"217583_at"	"PAH"	5053	"ENSG00000171759"
+"218618_s_at"	"FNDC3B"	64778	"ENSG00000075420"
+"217444_at"	""	NA	"ENSG00000236772"
+"218902_at"	"NOTCH1"	4851	"ENSG00000148400"
+"217501_at"	"CIAO1"	9391	"ENSG00000144021"
+"218835_at"	"SFTPA2"	729238	"ENSG00000185303"
+"219198_at"	"GTF3C4"	9329	"ENSG00000125484"
+"220050_at"	"SPACA9"	11092	"ENSG00000165698"
+"219134_at"	"ADGRL4"	64123	"ENSG00000162618"
+"219487_at"	"BBS10"	79738	"ENSG00000179941"
+"217718_s_at"	"YWHAB"	7529	"ENSG00000166913"
+"217717_s_at"	"YWHAB"	7529	"ENSG00000166913"
+"217584_at"	"NPC1"	4864	"ENSG00000141458"
+"219882_at"	"TTLL7"	79739	"ENSG00000137941"
+"217558_at"	"CYP2C9"	1559	"ENSG00000138109"
+"216025_x_at"	"CYP2C9"	1559	"ENSG00000138109"
+"216661_x_at"	"CYP2C9"	1559	"ENSG00000138109"
+"220017_x_at"	"CYP2C9"	1559	"ENSG00000138109"
+"216030_s_at"	"SEMG2"	6407	"ENSG00000124157"
+"218627_at"	"DRAM1"	55332	"ENSG00000136048"
+"217791_s_at"	"ALDH18A1"	5832	"ENSG00000059573"
+"216699_s_at"	"KLK1"	3816	"ENSG00000167748"
+"218012_at"	"TSPYL2"	64061	"ENSG00000184205"
+"217016_x_at"	"TMEM212"	389177	"ENSG00000186329"
+"218932_at"	"ZNHIT6"	54680	"ENSG00000117174"
+"218833_at"	"MAP3K20"	51776	"ENSG00000091436"
+"217827_s_at"	"SPG21"	51324	"ENSG00000090487"
+"219688_at"	"BBS7"	55212	"ENSG00000138686"
+"219382_at"	"SERTAD3"	29946	"ENSG00000167565"
+"217905_at"	"MCMBP"	79892	"ENSG00000197771"
+"216960_s_at"	"ZNF133"	7692	"ENSG00000125846"
+"219253_at"	"TMEM185B"	79134	"ENSG00000226479"
+"217549_at"	"NCKAP1L"	3071	"ENSG00000123338"
+"219167_at"	"RASL12"	51285	"ENSG00000103710"
+"219299_at"	"TRMT12"	55039	"ENSG00000183665"
+"218868_at"	"ACTR3B"	57180	"ENSG00000133627"
+"219496_at"	"SOWAHC"	65124	"ENSG00000198142"
+"219277_s_at"	"OGDHL"	55753	"ENSG00000197444"
+"219894_at"	"MAGEL2"	54551	"ENSG00000254585"
+"220333_at"	"PAQR5"	54852	"ENSG00000137819"
+"219797_at"	"MGAT4A"	11320	"ENSG00000071073"
+"218314_s_at"	"NKAPD1"	55216	"ENSG00000150776"
+"218117_at"	"RBX1"	9978	"ENSG00000100387"
+"218357_s_at"	"TIMM8B"	26521	"ENSG00000150779"
+"215645_at"	"FLCN"	201163	"ENSG00000154803"
+"216420_at"	"TARDBPP1"	NA	"ENSG00000233402"
+"216071_x_at"	"MED12"	9968	"ENSG00000184634"
+"217074_at"	"SMOX"	54498	"ENSG00000088826"
+"219371_s_at"	"KLF2"	10365	"ENSG00000127528"
+"217522_at"	"KCNV2"	169522	"ENSG00000168263"
+"218796_at"	"FERMT1"	55612	"ENSG00000101311"
+"219708_at"	"NT5M"	56953	"ENSG00000205309"
+"218372_at"	"MED9"	55090	"ENSG00000141026"
+"218813_s_at"	"SH3GLB2"	56904	"ENSG00000148341"
+"219951_s_at"	"DZANK1"	55184	"ENSG00000089091"
+"218966_at"	"MYO5C"	55930	"ENSG00000128833"
+"215983_s_at"	"UBXN8"	7993	"ENSG00000104691"
+"216560_x_at"	"IGLV3-10"	NA	"ENSG00000211669"
+"218475_at"	"TRMT2A"	27037	"ENSG00000099899"
+"218525_s_at"	"HIF1AN"	55662	"ENSG00000166135"
+"216338_s_at"	"YIPF3"	25844	"ENSG00000137207"
+"220024_s_at"	"PRX"	57716	"ENSG00000105227"
+"219710_at"	"SH3TC2"	79628	"ENSG00000169247"
+"215999_at"	"FBXW10B"	374286	"ENSG00000241322"
+"216062_at"	"CD44-AS1"	NA	"ENSG00000255443"
+"219051_x_at"	"METRN"	79006	"ENSG00000103260"
+"219709_x_at"	"ANTKMT"	65990	"ENSG00000103254"
+"218590_at"	"TWNK"	56652	"ENSG00000107815"
+"216350_s_at"	"ZNF10"	7556	"ENSG00000256223"
+"218742_at"	"CIAO3"	64428	"ENSG00000103245"
+"215654_at"	"BCAT2"	587	"ENSG00000105552"
+"217511_at"	"KAZALD1"	81621	"ENSG00000107821"
+"219380_x_at"	"POLH"	5429	"ENSG00000170734"
+"217502_at"	"IFIT2"	3433	"ENSG00000119922"
+"219511_s_at"	"SNCAIP"	9627	"ENSG00000064692"
+"218596_at"	"TBC1D13"	54662	"ENSG00000107021"
+"217021_at"	"CYB5AP4"	NA	"ENSG00000213882"
+"219113_x_at"	"HSD17B14"	51171	"ENSG00000087076"
+"219907_at"	"FRS3"	10817	"ENSG00000137218"
+"219643_at"	"LRP1B"	53353	"ENSG00000168702"
+"220452_x_at"	""	NA	"ENSG00000290931"
+"219896_at"	"CALY"	50632	"ENSG00000130643"
+"218897_at"	"TMEM177"	80775	"ENSG00000144120"
+"218337_at"	"FHIP2B"	64760	"ENSG00000158863"
+"219665_at"	"NUDT18"	79873	"ENSG00000275074"
+"220163_s_at"	"HR"	55806	"ENSG00000168453"
+"218084_x_at"	"FXYD5"	53827	"ENSG00000089327"
+"218777_at"	"REEP4"	80346	"ENSG00000168476"
+"217503_at"	"STK17B"	9262	"ENSG00000081320"
+"217915_s_at"	"RSL24D1"	51187	"ENSG00000137876"
+"216602_s_at"	"FARSA"	2193	"ENSG00000179115"
+"220445_s_at"	"CSAG3"	389903	"ENSG00000268916"
+"219655_at"	"SUGCT"	79783	"ENSG00000175600"
+"220068_at"	"VPREB3"	29802	"ENSG00000128218"
+"219890_at"	"CLEC5A"	23601	"ENSG00000258227"
+"216587_s_at"	"FZD8"	8325	"ENSG00000177283"
+"217500_at"	"TIAL1"	7073	"ENSG00000151923"
+"217184_s_at"	"LTK"	4058	"ENSG00000062524"
+"219726_at"	"NLGN3"	54413	"ENSG00000196338"
+"219707_at"	"CPNE7"	27132	"ENSG00000178773"
+"218441_s_at"	"RPAP1"	26015	"ENSG00000103932"
+"218734_at"	"NAA40"	79829	"ENSG00000110583"
+"218893_at"	"ISOC2"	79763	"ENSG00000063241"
+"219188_s_at"	"MACROD1"	28992	"ENSG00000133315"
+"217219_at"	""	26102	"ENSG00000262075"
+"218533_s_at"	"UCKL1"	54963	"ENSG00000198276"
+"215688_at"	"RASGRF1"	5923	"ENSG00000058335"
+"217118_s_at"	"KIAA0930"	23313	"ENSG00000100364"
+"218476_at"	"POMT1"	10585	"ENSG00000130714"
+"219629_at"	"FAM118A"	55007	"ENSG00000100376"
+"219702_at"	"PLAC1"	10761	"ENSG00000170965"
+"219417_s_at"	"BORCS6"	54785	"ENSG00000196544"
+"220101_x_at"	""	NA	"ENSG00000279152"
+"219250_s_at"	"FLRT3"	23767	"ENSG00000125848"
+"217700_at"	"CNPY4"	245812	"ENSG00000166997"
+"218549_s_at"	"RMDN1"	51115	"ENSG00000176623"
+"216353_s_at"	"RNF11P2"	NA	"ENSG00000227563"
+"217336_at"	"RPS10P2"	NA	"ENSG00000213950"
+"216076_at"	"L3MBTL1"	26013	"ENSG00000185513"
+"217166_at"	"PTMAP1"	NA	"ENSG00000228415"
+"218443_s_at"	"DAZAP1"	26528	"ENSG00000071626"
+"219815_at"	"GAL3ST4"	79690	"ENSG00000197093"
+"220025_at"	"TBR1"	10716	"ENSG00000136535"
+"220304_s_at"	"CNGB3"	54714	"ENSG00000170289"
+"218526_s_at"	"RANGRF"	29098	"ENSG00000108961"
+"217174_s_at"	"APC2"	10297	"ENSG00000115266"
+"217348_x_at"	"ARHGEF15"	22899	"ENSG00000198844"
+"220143_x_at"	"LUC7L"	55692	"ENSG00000007392"
+"220042_x_at"	"HIVEP3"	59269	"ENSG00000127124"
+"216386_at"	""	NA	"ENSG00000228286"
+"219414_at"	"CLSTN2"	64084	"ENSG00000158258"
+"219683_at"	"FZD3"	7976	"ENSG00000104290"
+"218807_at"	"VAV3"	10451	"ENSG00000134215"
+"218806_s_at"	"VAV3"	10451	"ENSG00000134215"
+"217246_s_at"	"DIAPH2"	1730	"ENSG00000147202"
+"218650_at"	"DGCR8"	54487	"ENSG00000128191"
+"218975_at"	"COL5A3"	50509	"ENSG00000080573"
+"219091_s_at"	"MMRN2"	79812	"ENSG00000173269"
+"219104_at"	"RNF141"	50862	"ENSG00000110315"
+"217161_x_at"	"ACAN"	176	"ENSG00000157766"
+"218429_s_at"	"SHFL"	55337	"ENSG00000130813"
+"215944_at"	"LINC01361"	101927498	"ENSG00000236268"
+"218684_at"	"LRRC8D"	55144	"ENSG00000171492"
+"219682_s_at"	"TBX3"	6926	"ENSG00000135111"
+"216889_s_at"	"HNF4A"	3172	"ENSG00000101076"
+"218587_s_at"	"POGLUT1"	56983	"ENSG00000163389"
+"219746_at"	"DPF3"	8110	"ENSG00000205683"
+"220137_at"	"VSIG10"	54621	"ENSG00000176834"
+"218197_s_at"	"OXR1"	55074	"ENSG00000164830"
+"218105_s_at"	"MRPL4"	51073	"ENSG00000105364"
+"218786_at"	"NT5DC3"	51559	"ENSG00000111696"
+"216539_at"	"ATXN3L"	92552	"ENSG00000123594"
+"220337_at"	"NGB"	58157	"ENSG00000165553"
+"217475_s_at"	"LIMK2"	3985	"ENSG00000182541"
+"217397_at"	"TRAV10"	NA	"ENSG00000211784"
+"215797_at"	"TRAV8-3"	NA	"ENSG00000211787"
+"217394_at"	"TRAV13-1"	NA	"ENSG00000211788"
+"215796_at"	"TRAV13-2"	NA	"ENSG00000211791"
+"217412_at"	"TRAV9-2"	NA	"ENSG00000211793"
+"217170_at"	"TRAV8-6"	NA	"ENSG00000211795"
+"215769_at"	"TRAV16"	NA	"ENSG00000211796"
+"216133_at"	"TRAV21"	NA	"ENSG00000211801"
+"218911_at"	"YEATS4"	8089	"ENSG00000127337"
+"217056_at"	"TRAV36DV7"	NA	"ENSG00000211815"
+"220287_at"	"ADAMTS9"	56999	"ENSG00000163638"
+"220121_at"	"LINS1"	55180	"ENSG00000140471"
+"218249_at"	"ZDHHC6"	64429	"ENSG00000023041"
+"219996_at"	"ASB7"	140460	"ENSG00000183475"
+"219563_at"	"SYNE3"	161176	"ENSG00000176438"
+"219192_at"	"UBAP2"	55833	"ENSG00000137073"
+"216521_s_at"	"BRCC3"	79184	"ENSG00000185515"
+"218385_at"	"MRPS18A"	55168	"ENSG00000096080"
+"219420_s_at"	"COA7"	65260	"ENSG00000162377"
+"217693_x_at"	"MAGOH2P"	NA	"ENSG00000264176"
+"220253_s_at"	"LRP12"	29967	"ENSG00000147650"
+"219631_at"	"LRP12"	29967	"ENSG00000147650"
+"220254_at"	"LRP12"	29967	"ENSG00000147650"
+"217481_x_at"	""	NA	"ENSG00000264727"
+"220462_at"	"CSRNP3"	80034	"ENSG00000178662"
+"220222_at"	"RBM12B-AS1"	55472	"ENSG00000279331"
+"218322_s_at"	"ACSL5"	51703	"ENSG00000197142"
+"219560_at"	"RTL10"	79680	"ENSG00000215012"
+"218636_s_at"	"MAN1B1"	11253	"ENSG00000177239"
+"215771_x_at"	"RET"	5979	"ENSG00000165731"
+"217628_at"	"CLIC5"	53405	"ENSG00000112782"
+"219866_at"	"CLIC5"	53405	"ENSG00000112782"
+"220048_at"	"EDAR"	10913	"ENSG00000135960"
+"220433_at"	"PRRG3"	79057	"ENSG00000130032"
+"219656_at"	"PCDH12"	51294	"ENSG00000113555"
+"218871_x_at"	"CSGALNACT2"	55454	"ENSG00000169826"
+"216125_s_at"	"RANBP9"	10048	"ENSG00000010017"
+"216328_at"	"SIGLEC8"	27181	"ENSG00000105366"
+"216327_s_at"	"SIGLEC8"	27181	"ENSG00000105366"
+"218941_at"	"FBXW2"	26190	"ENSG00000119402"
+"216180_s_at"	"SYNJ2"	8871	"ENSG00000078269"
+"216181_at"	"SYNJ2"	8871	"ENSG00000078269"
+"217620_s_at"	"PIK3CB"	5291	"ENSG00000051382"
+"220404_at"	"ADGRG3"	222487	"ENSG00000182885"
+"215665_at"	"HSD3BP2"	NA	"ENSG00000203858"
+"218251_at"	"MID1IP1"	58526	"ENSG00000165175"
+"219519_s_at"	"SIGLEC1"	6614	"ENSG00000088827"
+"220313_at"	"GPR88"	54112	"ENSG00000181656"
+"219609_at"	"WDR25"	79446	"ENSG00000176473"
+"217920_at"	"MAN1A2"	10905	"ENSG00000198162"
+"217922_at"	"MAN1A2"	10905	"ENSG00000198162"
+"217921_at"	"MAN1A2"	10905	"ENSG00000198162"
+"217282_at"	"MAN1A2"	10905	"ENSG00000198162"
+"217935_s_at"	"UQCC1"	55245	"ENSG00000101019"
+"219083_at"	"SHQ1"	55164	"ENSG00000144736"
+"219985_at"	"HS3ST3A1"	9955	"ENSG00000153976"
+"215685_s_at"	"DLX2"	1746	"ENSG00000115844"
+"219025_at"	"CD248"	57124	"ENSG00000174807"
+"218976_at"	"DNAJC12"	56521	"ENSG00000108176"
+"218609_s_at"	"NUDT2"	318	"ENSG00000164978"
+"218878_s_at"	"SIRT1"	23411	"ENSG00000096717"
+"215631_s_at"	"BRMS1"	25855	"ENSG00000174744"
+"217221_x_at"	"RBM10"	8241	"ENSG00000182872"
+"218938_at"	"FBXL15"	79176	"ENSG00000107872"
+"220224_at"	"HAO1"	54363	"ENSG00000101323"
+"219257_s_at"	"SPHK1"	8877	"ENSG00000176170"
+"216027_at"	"TMX4"	56255	"ENSG00000125827"
+"218345_at"	"TMEM176A"	55365	"ENSG00000002933"
+"219891_at"	"PGPEP1"	54858	"ENSG00000130517"
+"215687_x_at"	"PLCB1"	23236	"ENSG00000182621"
+"218141_at"	"UBE2O"	63893	"ENSG00000175931"
+"218200_s_at"	"NDUFB2"	4708	"ENSG00000090266"
+"218201_at"	"NDUFB2"	4708	"ENSG00000090266"
+"219185_at"	"SIRT5"	23408	"ENSG00000124523"
+"218266_s_at"	"NCS1"	23413	"ENSG00000107130"
+"218654_s_at"	"MRPS33"	51650	"ENSG00000090263"
+"215990_s_at"	"BCL6"	604	"ENSG00000113916"
+"218373_at"	"AKTIP"	64400	"ENSG00000166971"
+"218213_s_at"	"TMEM258"	746	"ENSG00000134825"
+"219202_at"	"RHBDF2"	79651	"ENSG00000129667"
+"219801_at"	"ZNF34"	80778	"ENSG00000196378"
+"218320_s_at"	"NDUFB11"	54539	"ENSG00000147123"
+"220520_s_at"	"NUP62CL"	54830	"ENSG00000198088"
+"218122_s_at"	"SENP2"	59343	"ENSG00000163904"
+"218961_s_at"	"PNKP"	11284	"ENSG00000039650"
+"220213_at"	"TSHZ2"	128553	"ENSG00000182463"
+"215861_at"	""	NA	"ENSG00000197670"
+"219570_at"	"KIF16B"	55614	"ENSG00000089177"
+"216080_s_at"	"FADS3"	3995	"ENSG00000221968"
+"220454_s_at"	"SEMA6A"	57556	"ENSG00000092421"
+"218942_at"	"PIP4K2C"	79837	"ENSG00000166908"
+"216548_x_at"	"HMGB3P1"	NA	"ENSG00000225336"
+"219983_at"	"PLAAT1"	57110	"ENSG00000127252"
+"219984_s_at"	"PLAAT1"	57110	"ENSG00000127252"
+"219579_at"	"RAB3IL1"	5866	"ENSG00000167994"
+"216937_s_at"	"RS1"	6247	"ENSG00000102104"
+"219470_x_at"	"CCNJ"	54619	"ENSG00000107443"
+"217463_s_at"	"MYRF"	745	"ENSG00000124920"
+"219736_at"	"TRIM36"	55521	"ENSG00000152503"
+"218619_s_at"	"SUV39H1"	6839	"ENSG00000101945"
+"215897_at"	"MED25"	81857	"ENSG00000104973"
+"219548_at"	"ZNF16"	7564	"ENSG00000170631"
+"218952_at"	"PCSK1N"	27344	"ENSG00000102109"
+"219639_x_at"	"PARP6"	56965	"ENSG00000137817"
+"218717_s_at"	"P3H2"	55214	"ENSG00000090530"
+"219899_x_at"	"NDOR1"	27158	"ENSG00000188566"
+"217168_s_at"	"HERPUD1"	9709	"ENSG00000051108"
+"215795_at"	"MYH7B"	57644	"ENSG00000078814"
+"218194_at"	"REXO2"	25996	"ENSG00000076043"
+"217100_s_at"	"UBXN7"	26043	"ENSG00000163960"
+"219013_at"	"GALNT11"	63917	"ENSG00000178234"
+"219719_at"	"HIGD1B"	51751	"ENSG00000131097"
+"219075_at"	"YIPF2"	78992	"ENSG00000130733"
+"218960_at"	"TMPRSS4"	56649	"ENSG00000137648"
+"217705_at"	"PRKD1"	5587	"ENSG00000184304"
+"216819_at"	"HSD3BP1"	NA	"ENSG00000187481"
+"218038_at"	"DMAC2"	55101	"ENSG00000105341"
+"216375_s_at"	"ETV5"	2119	"ENSG00000244405"
+"218964_at"	"ARID3B"	10620	"ENSG00000179361"
+"219923_at"	"TRIM45"	80263	"ENSG00000134253"
+"218294_s_at"	"NUP50"	10762	"ENSG00000093000"
+"218293_x_at"	"NUP50"	10762	"ENSG00000093000"
+"220306_at"	"TENT5C"	54855	"ENSG00000183508"
+"216917_s_at"	"SYCP1"	6847	"ENSG00000198765"
+"219701_at"	"TMOD2"	29767	"ENSG00000128872"
+"216039_at"	"GABRA2"	2555	"ENSG00000151834"
+"217057_s_at"	"GNAS"	2778	"ENSG00000087460"
+"218011_at"	"UBL5"	59286	"ENSG00000198258"
+"220198_s_at"	"EIF5A2"	56648	"ENSG00000163577"
+"217681_at"	"WNT7B"	7477	"ENSG00000188064"
+"218915_at"	"NF2"	4771	"ENSG00000186575"
+"217150_s_at"	"NF2"	4771	"ENSG00000186575"
+"219254_at"	"OGFOD3"	79701	"ENSG00000181396"
+"219543_at"	"PBLD"	64081	"ENSG00000108187"
+"219473_at"	"GDAP2"	54834	"ENSG00000196505"
+"217936_at"	"ARHGAP5"	394	"ENSG00000100852"
+"219411_at"	"ELMO3"	79767	"ENSG00000102890"
+"218882_s_at"	"WDR3"	10885	"ENSG00000065183"
+"219287_at"	"KCNMB4"	27345	"ENSG00000135643"
+"217757_at"	"A2M"	2	"ENSG00000175899"
+"218530_at"	"FHOD1"	29109	"ENSG00000135723"
+"215704_at"	"FLG"	2312	"ENSG00000143631"
+"218792_s_at"	"BSPRY"	54836	"ENSG00000119411"
+"218350_s_at"	"GMNN"	51053	"ENSG00000112312"
+"218487_at"	"ALAD"	210	"ENSG00000148218"
+"218489_s_at"	"ALAD"	210	"ENSG00000148218"
+"218694_at"	"ARMCX1"	51309	"ENSG00000126947"
+"217858_s_at"	"ARMCX3"	51566	"ENSG00000102401"
+"216408_at"	"OR2B2"	81697	"ENSG00000168131"
+"218503_at"	"FOCAD"	54914	"ENSG00000188352"
+"220003_at"	"LRRC36"	55282	"ENSG00000159708"
+"220246_at"	"CAMK1D"	57118	"ENSG00000183049"
+"216903_s_at"	"MICU1"	10367	"ENSG00000107745"
+"218424_s_at"	"STEAP3"	55240	"ENSG00000115107"
+"218922_s_at"	"CERS4"	79603	"ENSG00000090661"
+"219140_s_at"	"RBP4"	5950	"ENSG00000138207"
+"215696_s_at"	"SEC16A"	9919	"ENSG00000148396"
+"218529_at"	"CD320"	51293	"ENSG00000167775"
+"217913_at"	"VPS4A"	27183	"ENSG00000132612"
+"215936_s_at"	"WASHC4"	23325	"ENSG00000136051"
+"219031_s_at"	"NIP7"	51388	"ENSG00000132603"
+"219727_at"	"DUOX2"	50506	"ENSG00000140279"
+"217793_at"	"RAB11B"	9230	"ENSG00000185236"
+"219597_s_at"	"DUOX1"	53905	"ENSG00000137857"
+"215800_at"	"DUOX1"	53905	"ENSG00000137857"
+"219592_at"	"MCPH1"	79648	"ENSG00000147316"
+"219427_at"	"FAT4"	79633	"ENSG00000196159"
+"216996_s_at"	"FASTKD2"	22868	"ENSG00000118246"
+"217816_s_at"	"PCNP"	57092	"ENSG00000081154"
+"218095_s_at"	"TMEM165"	55858	"ENSG00000134851"
+"220295_x_at"	"DEPDC1"	55635	"ENSG00000024526"
+"215945_s_at"	"TRIM2"	23321	"ENSG00000109654"
+"219335_at"	"ARMCX5"	64860	"ENSG00000125962"
+"219754_at"	"RBM41"	55285	"ENSG00000089682"
+"216304_x_at"	"YME1L1"	10730	"ENSG00000136758"
+"219640_at"	"CLDN15"	24146	"ENSG00000106404"
+"215813_s_at"	"PTGS1"	5742	"ENSG00000095303"
+"219892_at"	"TM6SF1"	53346	"ENSG00000136404"
+"218769_s_at"	"ANKRA2"	57763	"ENSG00000164331"
+"216887_s_at"	"LDB3"	11155	"ENSG00000122367"
+"216693_x_at"	"HDGFL3"	50810	"ENSG00000166503"
+"217989_at"	"HSD17B11"	51170	"ENSG00000198189"
+"218808_at"	"DALRD3"	55152	"ENSG00000178149"
+"218254_s_at"	"SAR1B"	51128	"ENSG00000152700"
+"215980_s_at"	"IGHMBP2"	3508	"ENSG00000132740"
+"219061_s_at"	"LAGE3"	8270	"ENSG00000196976"
+"217965_s_at"	"SAP30BP"	29115	"ENSG00000161526"
+"218334_at"	"THOC7"	80145	"ENSG00000163634"
+"218883_s_at"	"CENPU"	79682	"ENSG00000151725"
+"218425_at"	"RNF216"	54476	"ENSG00000011275"
+"218426_s_at"	"RNF216"	54476	"ENSG00000011275"
+"217872_at"	"PIH1D1"	55011	"ENSG00000104872"
+"220495_s_at"	"TXNDC15"	79770	"ENSG00000113621"
+"219645_at"	"CASQ1"	844	"ENSG00000143318"
+"215637_at"	"CEP41"	95681	"ENSG00000106477"
+"219328_at"	"DDX31"	64794	"ENSG00000125485"
+"217238_s_at"	"ALDOB"	229	"ENSG00000136872"
+"219553_at"	"NME7"	29922	"ENSG00000143156"
+"217743_s_at"	"TMEM30A"	55754	"ENSG00000112697"
+"218831_s_at"	"FCGRT"	2217	"ENSG00000104870"
+"217632_at"	"GNL3L"	54552	"ENSG00000130119"
+"219102_at"	"RCN3"	57333	"ENSG00000142552"
+"217950_at"	"NOSIP"	51070	"ENSG00000142546"
+"218847_at"	"IGF2BP2"	10644	"ENSG00000073792"
+"216866_s_at"	"COL14A1"	7373	"ENSG00000187955"
+"216865_at"	"COL14A1"	7373	"ENSG00000187955"
+"215798_at"	"ALDH1L1"	10840	"ENSG00000144908"
+"219781_s_at"	"ZNF771"	51333	"ENSG00000179965"
+"219782_s_at"	"ZNF771"	51333	"ENSG00000179965"
+"218355_at"	"KIF4A"	24137	"ENSG00000090889"
+"218916_at"	"ZNF768"	79724	"ENSG00000169957"
+"219516_at"	"TRPV4"	59341	"ENSG00000111199"
+"218714_at"	"PRR14"	78994	"ENSG00000156858"
+"220291_at"	"GDPD2"	54857	"ENSG00000130055"
+"219793_at"	"SNX16"	64089	"ENSG00000104497"
+"218255_s_at"	"FBRS"	64319	"ENSG00000156860"
+"218907_s_at"	"LRRC61"	65999	"ENSG00000127399"
+"218217_at"	"SCPEP1"	59342	"ENSG00000121064"
+"219863_at"	"HERC5"	51191	"ENSG00000138646"
+"218257_s_at"	"UGGT1"	56886	"ENSG00000136731"
+"220046_s_at"	"CCNL1"	57018	"ENSG00000163660"
+"219872_at"	"GASK1B"	51313	"ENSG00000164125"
+"218069_at"	"DCTPP1"	79077	"ENSG00000179958"
+"218906_x_at"	"KLC2"	64837	"ENSG00000174996"
+"219390_at"	"FKBP14"	55033	"ENSG00000106080"
+"219552_at"	"SVEP1"	79987	"ENSG00000165124"
+"219942_at"	"MYL7"	58498	"ENSG00000106631"
+"219468_s_at"	"CUEDC1"	404093	"ENSG00000180891"
+"216919_at"	"TP53I11"	9537	"ENSG00000175274"
+"216183_at"	"TGM2"	7052	"ENSG00000198959"
+"217634_at"	"SVIL"	6840	"ENSG00000197321"
+"218430_s_at"	"RFX7"	64864	"ENSG00000181827"
+"218360_at"	"RAB22A"	57403	"ENSG00000124209"
+"219850_s_at"	"EHF"	26298	"ENSG00000135373"
+"220269_at"	"ZBBX"	79740	"ENSG00000169064"
+"220140_s_at"	"SNX11"	29916	"ENSG00000002919"
+"218593_at"	"RBM28"	55131	"ENSG00000106344"
+"216250_s_at"	"LPXN"	9404	"ENSG00000110031"
+"220286_at"	"MTMR10"	54893	"ENSG00000166912"
+"218657_at"	"RAPGEFL1"	51195	"ENSG00000108352"
+"218507_at"	"HILPDA"	29923	"ENSG00000135245"
+"217966_s_at"	"NIBAN1"	116496	"ENSG00000135842"
+"217967_s_at"	"NIBAN1"	116496	"ENSG00000135842"
+"219410_at"	"TMEM45A"	55076	"ENSG00000181458"
+"218403_at"	"TRIAP1"	51499	"ENSG00000170855"
+"218809_at"	"PANK2"	80025	"ENSG00000125779"
+"215925_s_at"	"CD72"	971	"ENSG00000137101"
+"216942_s_at"	"CD58"	965	"ENSG00000116815"
+"219118_at"	"FKBP11"	51303	"ENSG00000134285"
+"216971_s_at"	"PLEC"	5339	"ENSG00000178209"
+"219455_at"	"CFAP69"	79846	"ENSG00000105792"
+"219133_at"	"OXSM"	54995	"ENSG00000151093"
+"220389_at"	"CCDC81"	60494	"ENSG00000149201"
+"219805_at"	"STEEP1"	63932	"ENSG00000018610"
+"216297_at"	""	NA	"ENSG00000270589"
+"219760_at"	"LIN7B"	64130	"ENSG00000104863"
+"218925_s_at"	"CFAP68"	64776	"ENSG00000137720"
+"220151_at"	"C19orf73"	55150	"ENSG00000221916"
+"215617_at"	"SPATS2L"	26010	"ENSG00000196141"
+"218641_at"	"ZFTA"	65998	"ENSG00000188070"
+"215967_s_at"	"LY9"	4063	"ENSG00000122224"
+"216952_s_at"	"LMNB2"	84823	"ENSG00000176619"
+"218757_s_at"	"UPF3B"	65109	"ENSG00000125351"
+"219029_at"	"TMEM267"	64417	"ENSG00000151881"
+"218707_at"	"ZNF444"	55311	"ENSG00000167685"
+"218605_at"	"TFB2M"	64216	"ENSG00000162851"
+"215640_at"	"TBC1D2B"	23102	"ENSG00000167202"
+"216212_s_at"	"DKC1"	1736	"ENSG00000130826"
+"218212_s_at"	"MOCS2"	4338	"ENSG00000164172"
+"219673_at"	"MCM9"	254394	"ENSG00000111877"
+"218783_at"	"INTS7"	25896	"ENSG00000143493"
+"218630_at"	"MKS1"	54903	"ENSG00000011143"
+"218691_s_at"	"PDLIM4"	8572	"ENSG00000131435"
+"219023_at"	"AP1AR"	55435	"ENSG00000138660"
+"220008_at"	"PEAK1"	79834	"ENSG00000173517"
+"220274_at"	"IQCA1"	79781	"ENSG00000132321"
+"218716_x_at"	"MTO1"	25821	"ENSG00000135297"
+"219370_at"	"RPRM"	56475	"ENSG00000177519"
+"218269_at"	"DROSHA"	29102	"ENSG00000113360"
+"217562_at"	"BRINP3"	339479	"ENSG00000162670"
+"217368_at"	"ATP5MC2P1"	NA	"ENSG00000225712"
+"217305_s_at"	"ADCY10"	55811	"ENSG00000143199"
+"217890_s_at"	"PARVA"	55742	"ENSG00000197702"
+"220123_at"	"SLC35F5"	80255	"ENSG00000115084"
+"219483_s_at"	"PORCN"	64840	"ENSG00000102312"
+"220391_at"	"ZBTB3"	79842	"ENSG00000185670"
+"218110_at"	"XAB2"	56949	"ENSG00000076924"
+"219326_s_at"	"B3GNT2"	10678	"ENSG00000170340"
+"217602_at"	"PPIA"	5478	"ENSG00000196262"
+"219014_at"	"PLAC8"	51316	"ENSG00000145287"
+"219774_at"	"CCDC93"	54520	"ENSG00000125633"
+"219078_at"	"GPATCH2"	55105	"ENSG00000092978"
+"219403_s_at"	"HPSE"	10855	"ENSG00000173083"
+"216073_at"	"ANKRD34C"	390616	"ENSG00000235711"
+"220174_at"	"LRRC8E"	80131	"ENSG00000171017"
+"216206_x_at"	"MAP2K7"	5609	"ENSG00000076984"
+"218521_s_at"	"UBE2W"	55284	"ENSG00000104343"
+"218342_s_at"	"ERMP1"	79956	"ENSG00000099219"
+"218281_at"	"MRPL48"	51642	"ENSG00000175581"
+"218353_at"	"RGS5"	8490	"ENSG00000143248"
+"215833_s_at"	"SPPL2B"	56928	"ENSG00000005206"
+"215677_s_at"	"BRF1"	2972	"ENSG00000185024"
+"215676_at"	"BRF1"	2972	"ENSG00000185024"
+"219449_s_at"	"TMEM70"	54968	"ENSG00000175606"
+"220103_s_at"	"MRPS18C"	51023	"ENSG00000163319"
+"218957_s_at"	"PAAF1"	80227	"ENSG00000175575"
+"219258_at"	"TIPIN"	54962	"ENSG00000075131"
+"218986_s_at"	"DDX60"	55601	"ENSG00000137628"
+"219017_at"	"ETNK1"	55500	"ENSG00000139163"
+"218979_at"	"RMI1"	80010	"ENSG00000178966"
+"217785_s_at"	"YKT6"	10652	"ENSG00000106636"
+"217784_at"	"YKT6"	10652	"ENSG00000106636"
+"216532_x_at"	"GLRX3P2"	NA	"ENSG00000216657"
+"219952_s_at"	"MCOLN1"	57192	"ENSG00000090674"
+"218199_s_at"	"NOL6"	65083	"ENSG00000165271"
+"219827_at"	"UCP3"	7352	"ENSG00000175564"
+"218349_s_at"	"ZWILCH"	55055	"ENSG00000174442"
+"218585_s_at"	"DTL"	51514	"ENSG00000143476"
+"216117_at"	"EXOSC2"	23404	"ENSG00000130713"
+"217841_s_at"	"PPME1"	51400	"ENSG00000214517"
+"218025_s_at"	"ECI2"	10455	"ENSG00000198721"
+"215926_x_at"	"SNAPC4"	6621	"ENSG00000165684"
+"216979_at"	"NR4A3"	8013	"ENSG00000119508"
+"218666_s_at"	"STX17"	55014	"ENSG00000136874"
+"219500_at"	"CLCF1"	23529	"ENSG00000175505"
+"216494_at"	""	NA	"ENSG00000235008"
+"217984_at"	"RNASET2"	8635	"ENSG00000026297"
+"218800_at"	"SRD5A3"	79644	"ENSG00000128039"
+"219699_at"	"LGI2"	55203	"ENSG00000153012"
+"220329_s_at"	"RMND1"	55005	"ENSG00000155906"
+"220281_at"	"SLC12A1"	6557	"ENSG00000074803"
+"216306_x_at"	"PTBP1"	5725	"ENSG00000011304"
+"218195_at"	"ARMT1"	79624	"ENSG00000146476"
+"217125_at"	"UBBP2"	NA	"ENSG00000228247"
+"217839_at"	"TFG"	10342	"ENSG00000114354"
+"218550_s_at"	"LRRC20"	55222	"ENSG00000172731"
+"218048_at"	"COMMD3"	23412	"ENSG00000148444"
+"220169_at"	"TMEM156"	80008	"ENSG00000121895"
+"219875_s_at"	"DESI2"	51029	"ENSG00000121644"
+"217498_at"	"GDF11"	10220	"ENSG00000135414"
+"216860_s_at"	"GDF11"	10220	"ENSG00000135414"
+"218411_s_at"	"MBIP"	51562	"ENSG00000151332"
+"216314_at"	"CRISP1"	167	"ENSG00000124812"
+"219110_at"	"GAR1"	54433	"ENSG00000109534"
+"218531_at"	"TMEM134"	80194	"ENSG00000172663"
+"218556_at"	"ORMDL2"	29095	"ENSG00000123353"
+"219392_x_at"	"PRR11"	55771	"ENSG00000068489"
+"217298_at"	"RPS14"	6208	"ENSG00000164587"
+"219844_at"	"CCDC186"	55088	"ENSG00000165813"
+"219037_at"	"RRP15"	51018	"ENSG00000067533"
+"215664_s_at"	"EPHA5"	2044	"ENSG00000145242"
+"218474_s_at"	"KCTD5"	54442	"ENSG00000167977"
+"217396_at"	""	NA	"ENSG00000279391"
+"219814_at"	"MBNL3"	55796	"ENSG00000076770"
+"219024_at"	"PLEKHA1"	59338	"ENSG00000107679"
+"220051_at"	"PRSS21"	10942	"ENSG00000007038"
+"215850_s_at"	"NDUFA5"	4698	"ENSG00000128609"
+"218774_at"	"DCPS"	28960	"ENSG00000110063"
+"217010_s_at"	"CDC25C"	995	"ENSG00000158402"
+"219204_s_at"	"SRR"	63826	"ENSG00000167720"
+"219205_at"	"SRR"	63826	"ENSG00000167720"
+"215710_at"	"ST3GAL4"	6484	"ENSG00000110080"
+"219646_at"	"DEF8"	54849	"ENSG00000140995"
+"218156_s_at"	"TSR1"	55720	"ENSG00000167721"
+"218155_x_at"	"TSR1"	55720	"ENSG00000167721"
+"219546_at"	"BMP2K"	55589	"ENSG00000138756"
+"220249_at"	"HYAL4"	23553	"ENSG00000106302"
+"216958_s_at"	"IVD"	3712	"ENSG00000128928"
+"219070_s_at"	"MOSPD3"	64598	"ENSG00000106330"
+"217200_x_at"	"CYB561"	1534	"ENSG00000008283"
+"215863_at"	"TFR2"	7036	"ENSG00000106327"
+"219381_at"	"CPLANE1"	65250	"ENSG00000197603"
+"218234_at"	"ING4"	51147	"ENSG00000111653"
+"216065_at"	"B3GALT4"	8705	"ENSG00000235863"
+"216224_s_at"	"HDAC6"	10013	"ENSG00000094631"
+"218780_at"	"HOOK2"	29911	"ENSG00000095066"
+"218588_s_at"	"FAM114A2"	10827	"ENSG00000055147"
+"219992_at"	"TAC3"	6866	"ENSG00000166863"
+"219857_at"	"PLEKHS1"	79949	"ENSG00000148735"
+"217254_s_at"	"EPO"	2056	"ENSG00000130427"
+"220013_at"	"EPHX3"	79852	"ENSG00000105131"
+"219059_s_at"	"LYVE1"	10894	"ENSG00000133800"
+"220037_s_at"	"LYVE1"	10894	"ENSG00000133800"
+"215590_x_at"	"ACVR2B-AS1"	100128640	"ENSG00000229589"
+"220028_at"	"ACVR2B"	93	"ENSG00000114739"
+"218263_s_at"	"ZBED5"	58486	"ENSG00000236287"
+"219082_at"	"AMDHD2"	51005	"ENSG00000162066"
+"218413_s_at"	"ZNF639"	51193	"ENSG00000121864"
+"219159_s_at"	"SLAMF7"	57823	"ENSG00000026751"
+"218600_at"	"LIMD2"	80774	"ENSG00000136490"
+"217043_s_at"	"MFN1"	55669	"ENSG00000171109"
+"216680_s_at"	"EPHB4"	2050	"ENSG00000196411"
+"216017_s_at"	"NAB2"	4665	"ENSG00000166886"
+"218919_at"	"ZFAND1"	79752	"ENSG00000104231"
+"219072_at"	"BCL7C"	9274	"ENSG00000099385"
+"217106_x_at"	"DIMT1"	27292	"ENSG00000086189"
+"220371_s_at"	"SLC12A9"	56996	"ENSG00000146828"
+"220407_s_at"	"TGFB2"	7042	"ENSG00000092969"
+"218721_s_at"	"ODR4"	54953	"ENSG00000157181"
+"219520_s_at"	"WWC3"	55841	"ENSG00000047644"
+"216719_s_at"	""	NA	"ENSG00000249604"
+"219869_s_at"	"SLC39A8"	64116	"ENSG00000138821"
+"220434_at"	"COQ8B"	79934	"ENSG00000123815"
+"217513_at"	"MILR1"	284021	"ENSG00000271605"
+"218387_s_at"	"PGLS"	25796	"ENSG00000130313"
+"218388_at"	"PGLS"	25796	"ENSG00000130313"
+"217819_at"	"GOLGA7"	51125	"ENSG00000147533"
+"219162_s_at"	"MRPL11"	65003	"ENSG00000174547"
+"217729_s_at"	"TLE5"	166	"ENSG00000104964"
+"216458_at"	"SLC66A3"	130814	"ENSG00000162976"
+"216223_at"	"CPN2"	1370	"ENSG00000178772"
+"219007_at"	"NUP43"	348995	"ENSG00000120253"
+"217787_s_at"	"GALNT2"	2590	"ENSG00000143641"
+"217788_s_at"	"GALNT2"	2590	"ENSG00000143641"
+"219884_at"	"LHX6"	26468	"ENSG00000106852"
+"217852_s_at"	"ARL8B"	55207	"ENSG00000134108"
+"217937_s_at"	"HDAC7"	51564	"ENSG00000061273"
+"220061_at"	"ACSM5"	54988	"ENSG00000183549"
+"219413_at"	"ACBD4"	79777	"ENSG00000181513"
+"218643_s_at"	"CRIPT"	9419	"ENSG00000119878"
+"218176_at"	"MAGEF1"	64110	"ENSG00000177383"
+"219268_at"	"ETNK2"	55224	"ENSG00000143845"
+"220469_at"	"COPE"	11316	"ENSG00000105669"
+"216477_at"	"RPL23AP22"	NA	"ENSG00000237213"
+"219751_at"	"SETD6"	79918	"ENSG00000103037"
+"219700_at"	"PLXDC1"	57125	"ENSG00000161381"
+"218541_s_at"	"TCIM"	56892	"ENSG00000176907"
+"217404_s_at"	"COL2A1"	1280	"ENSG00000139219"
+"218726_at"	"HJURP"	55355	"ENSG00000123485"
+"219514_at"	"ANGPTL2"	23452	"ENSG00000136859"
+"215655_at"	"GRIK2"	2898	"ENSG00000164418"
+"219932_at"	"SLC27A6"	28965	"ENSG00000113396"
+"220226_at"	"TRPM8"	79054	"ENSG00000144481"
+"218629_at"	"SMO"	6608	"ENSG00000128602"
+"218170_at"	"ISOC1"	51015	"ENSG00000066583"
+"217004_s_at"	"MCF2"	4168	"ENSG00000101977"
+"218182_s_at"	"CLDN1"	9076	"ENSG00000163347"
+"220332_at"	"CLDN16"	10686	"ENSG00000113946"
+"218648_at"	"CRTC3"	64784	"ENSG00000140577"
+"219096_at"	"ARMC7"	79637	"ENSG00000125449"
+"219214_s_at"	"NT5C"	30833	"ENSG00000125458"
+"217755_at"	"JPT1"	51155	"ENSG00000189159"
+"216498_at"	"RPL29P1"	NA	"ENSG00000236512"
+"220394_at"	"FGF20"	26281	"ENSG00000078579"
+"216307_at"	"DGKB"	1607	"ENSG00000136267"
+"218014_at"	"NUP85"	79902	"ENSG00000125450"
+"218408_at"	"TIMM10"	26519	"ENSG00000134809"
+"217128_s_at"	"CAMK1G"	57172	"ENSG00000008118"
+"215720_s_at"	"NFYA"	4800	"ENSG00000001167"
+"218236_s_at"	"PRKD3"	23683	"ENSG00000115825"
+"218068_s_at"	"ZNF672"	79894	"ENSG00000171161"
+"218727_at"	"SLC38A7"	55238	"ENSG00000103042"
+"220320_at"	"DOK3"	79930	"ENSG00000146094"
+"217603_at"	"ATP6V0A2"	23545	"ENSG00000185344"
+"218764_at"	"PRKCH"	5583	"ENSG00000027075"
+"219153_s_at"	"THSD4"	79875	"ENSG00000187720"
+"219969_at"	"TXLNG"	55787	"ENSG00000086712"
+"217928_s_at"	"PPP6R3"	55291	"ENSG00000110075"
+"217248_s_at"	"SLC7A8"	23428	"ENSG00000092068"
+"217932_at"	"MRPS7"	51081	"ENSG00000125445"
+"217630_at"	"ANGEL2"	90806	"ENSG00000174606"
+"218884_s_at"	"GUF1"	60558	"ENSG00000151806"
+"219973_at"	"ARSJ"	79642	"ENSG00000180801"
+"218853_s_at"	"MOSPD1"	56180	"ENSG00000101928"
+"219256_s_at"	"SH3TC1"	54436	"ENSG00000125089"
+"218798_at"	"KRI1"	65095	"ENSG00000129347"
+"219467_at"	"GIN1"	54826	"ENSG00000145723"
+"219384_s_at"	"ADAT1"	23536	"ENSG00000065457"
+"219625_s_at"	"CERT1"	10087	"ENSG00000113163"
+"219225_at"	"PGBD5"	79605	"ENSG00000177614"
+"218261_at"	"AP1M2"	10053	"ENSG00000129354"
+"217067_s_at"	"DMP1"	1758	"ENSG00000152592"
+"219098_at"	"MYBBP1A"	10514	"ENSG00000132382"
+"218838_s_at"	"TTC31"	64427	"ENSG00000115282"
+"218909_at"	"RPS6KC1"	26750	"ENSG00000136643"
+"220166_at"	"CNNM1"	26507	"ENSG00000119946"
+"217942_at"	"MRPS35"	60488	"ENSG00000061794"
+"218789_s_at"	"C11orf71"	54494	"ENSG00000180425"
+"218379_at"	"RBM7"	10179	"ENSG00000076053"
+"220525_s_at"	"AUP1"	550	"ENSG00000115307"
+"217651_at"	"PELP1"	27043	"ENSG00000141456"
+"219228_at"	"ZNF331"	55422	"ENSG00000130844"
+"215930_s_at"	"MIA2"	4253	"ENSG00000150527"
+"216834_at"	"RGS1"	5996	"ENSG00000090104"
+"219288_at"	"C3orf14"	57415	"ENSG00000114405"
+"219910_at"	"FICD"	11153	"ENSG00000198855"
+"218007_s_at"	"RPS27L"	51065	"ENSG00000185088"
+"215772_x_at"	"SUCLG2"	8801	"ENSG00000172340"
+"219262_at"	"SUV39H2"	79723	"ENSG00000152455"
+"218973_at"	"EFL1"	79631	"ENSG00000140598"
+"217790_s_at"	"SSR3"	6747	"ENSG00000114850"
+"216252_x_at"	"FAS"	355	"ENSG00000026103"
+"215719_x_at"	"FAS"	355	"ENSG00000026103"
+"218581_at"	"ABHD4"	63874	"ENSG00000100439"
+"218762_at"	"ZNF574"	64763	"ENSG00000105732"
+"215767_at"	"ZNF804A"	91752	"ENSG00000170396"
+"217641_at"	"GPR135"	64582	"ENSG00000181619"
+"217895_at"	"PTCD3"	55037	"ENSG00000132300"
+"215909_x_at"	"MINK1"	50488	"ENSG00000141503"
+"216633_s_at"	"PLCH1"	23007	"ENSG00000114805"
+"216634_at"	"PLCH1"	23007	"ENSG00000114805"
+"219964_at"	"ST7L"	54879	"ENSG00000007341"
+"219607_s_at"	"MS4A4A"	51338	"ENSG00000110079"
+"220040_x_at"	"ZC4H2"	55906	"ENSG00000126970"
+"220438_at"	"QPCTL"	54814	"ENSG00000011478"
+"218890_x_at"	"MRPL35"	51318	"ENSG00000132313"
+"218760_at"	"COQ6"	51004	"ENSG00000119723"
+"218308_at"	"TACC3"	10460	"ENSG00000013810"
+"220460_at"	"SLCO1C1"	53919	"ENSG00000139155"
+"218418_s_at"	"KANK2"	25959	"ENSG00000197256"
+"219115_s_at"	"IL20RA"	53832	"ENSG00000016402"
+"217299_s_at"	"NBN"	4683	"ENSG00000104320"
+"219003_s_at"	"MANEA"	79694	"ENSG00000172469"
+"215880_at"	"NAGLU"	4669	"ENSG00000108784"
+"216547_at"	"RPSAP20"	NA	"ENSG00000229871"
+"220173_at"	"BBOF1"	80127	"ENSG00000119636"
+"219808_at"	"SCLY"	51540	"ENSG00000132330"
+"216685_s_at"	"MTAP"	4507	"ENSG00000099810"
+"218036_x_at"	"NMD3"	51068	"ENSG00000169251"
+"218401_s_at"	"ZNF281"	23528	"ENSG00000162702"
+"218463_s_at"	"MUS81"	80198	"ENSG00000172732"
+"220259_at"	"PLEKHH3"	79990	"ENSG00000068137"
+"220505_at"	"CDKN2A-DT"	NA	"ENSG00000224854"
+"218501_at"	"ARHGEF3"	50650	"ENSG00000163947"
+"218384_at"	"CARHSP1"	23589	"ENSG00000153048"
+"220536_at"	"VRTN"	55237	"ENSG00000133980"
+"217738_at"	"NAMPT"	10135	"ENSG00000105835"
+"219270_at"	"CHAC1"	79094	"ENSG00000128965"
+"218510_x_at"	"RETREG1"	54463	"ENSG00000154153"
+"218532_s_at"	"RETREG1"	54463	"ENSG00000154153"
+"218649_x_at"	"NEMF"	9147	"ENSG00000165525"
+"220104_at"	"ZC3HAV1"	56829	"ENSG00000105939"
+"218001_at"	"MRPS2"	51116	"ENSG00000122140"
+"218992_at"	"PLGRKT"	55848	"ENSG00000107020"
+"217098_s_at"	"ZSCAN12"	9753	"ENSG00000158691"
+"216883_x_at"	"PDE6D"	5147	"ENSG00000156973"
+"219758_at"	"TTC26"	79989	"ENSG00000105948"
+"220170_at"	"FHL5"	9457	"ENSG00000112214"
+"219194_at"	"SEMA4G"	57715	"ENSG00000095539"
+"220049_s_at"	"PDCD1LG2"	80380	"ENSG00000197646"
+"217985_s_at"	"BAZ1A"	11177	"ENSG00000198604"
+"217986_s_at"	"BAZ1A"	11177	"ENSG00000198604"
+"215692_s_at"	"MPPED2"	744	"ENSG00000066382"
+"219265_at"	"MOB3B"	79817	"ENSG00000120162"
+"220504_at"	"KERA"	11081	"ENSG00000139330"
+"216294_s_at"	"BLTP1"	84162	"ENSG00000138688"
+"217802_s_at"	"NUCKS1"	64710	"ENSG00000069275"
+"219945_at"	"DDX25"	29118	"ENSG00000109832"
+"218852_at"	"PPP2R3C"	55012	"ENSG00000092020"
+"218620_s_at"	"HEMK1"	51409	"ENSG00000114735"
+"218621_at"	"HEMK1"	51409	"ENSG00000114735"
+"216821_at"	"KRT8P11"	NA	"ENSG00000255815"
+"219914_at"	"ECEL1"	9427	"ENSG00000171551"
+"219734_at"	"SIDT1"	54847	"ENSG00000072858"
+"218788_s_at"	"SMYD3"	64754	"ENSG00000185420"
+"216410_at"	"CNN3P1"	NA	"ENSG00000218868"
+"219809_at"	"WDR55"	54853	"ENSG00000120314"
+"219344_at"	"SLC29A3"	55315	"ENSG00000198246"
+"215711_s_at"	"WEE1"	7465	"ENSG00000166483"
+"220446_s_at"	"CHST4"	10164	"ENSG00000140835"
+"217356_s_at"	"PGK1"	5230	"ENSG00000102144"
+"218834_s_at"	"TMEM132A"	54972	"ENSG00000006118"
+"218699_at"	"RAB29"	8934	"ENSG00000117280"
+"218700_s_at"	"RAB29"	8934	"ENSG00000117280"
+"219895_at"	"TMEM255A"	55026	"ENSG00000125355"
+"218423_x_at"	"VPS54"	51542	"ENSG00000143952"
+"217894_at"	"KCTD3"	51133	"ENSG00000136636"
+"219474_at"	"C3orf52"	79669	"ENSG00000114529"
+"218810_at"	"ZC3H12A"	80149	"ENSG00000163874"
+"218763_at"	"STX18"	53407	"ENSG00000168818"
+"218319_at"	"PELI1"	57162	"ENSG00000197329"
+"219650_at"	"ERCC6L"	54821	"ENSG00000186871"
+"218378_s_at"	"PRKRIP1"	79706	"ENSG00000128563"
+"218431_at"	"VIPAS39"	63894	"ENSG00000151445"
+"216326_s_at"	"HDAC3"	8841	"ENSG00000171720"
+"218955_at"	"BRF2"	55290	"ENSG00000104221"
+"218954_s_at"	"BRF2"	55290	"ENSG00000104221"
+"219593_at"	"SLC15A3"	51296	"ENSG00000110446"
+"220307_at"	"CD244"	51744	"ENSG00000122223"
+"219681_s_at"	"RAB11FIP1"	80223	"ENSG00000156675"
+"220210_at"	"CHRNA10"	57053	"ENSG00000129749"
+"217914_at"	"TPCN1"	53373	"ENSG00000186815"
+"217303_s_at"	"ADRB3"	155	"ENSG00000188778"
+"216105_x_at"	"PTPA"	5524	"ENSG00000119383"
+"216840_s_at"	"LAMA2"	3908	"ENSG00000196569"
+"219624_at"	"BAG4"	9530	"ENSG00000156735"
+"215715_at"	"SLC6A2"	6530	"ENSG00000103546"
+"216202_s_at"	"SPTLC2"	9517	"ENSG00000100596"
+"216203_at"	"SPTLC2"	9517	"ENSG00000100596"
+"219610_at"	"ARHGEF28"	64283	"ENSG00000214944"
+"216441_at"	""	NA	"ENSG00000279488"
+"217859_s_at"	"SLC39A9"	55334	"ENSG00000029364"
+"216009_at"	"SLC39A9"	55334	"ENSG00000029364"
+"218646_at"	"HPF1"	54969	"ENSG00000056050"
+"216460_at"	"CHST12"	55501	"ENSG00000136213"
+"218927_s_at"	"CHST12"	55501	"ENSG00000136213"
+"216596_at"	"LINC02249"	26082	"ENSG00000225930"
+"218309_at"	"CAMK2N1"	55450	"ENSG00000162545"
+"218246_at"	"MUL1"	79594	"ENSG00000090432"
+"218363_at"	"EXD2"	55218	"ENSG00000081177"
+"218578_at"	"CDC73"	79577	"ENSG00000134371"
+"217452_s_at"	"B3GALT2"	8707	"ENSG00000162630"
+"218577_at"	"LRRC40"	55631	"ENSG00000066557"
+"217104_at"	"ST20"	NA	"ENSG00000180953"
+"219508_at"	"GCNT3"	9245	"ENSG00000140297"
+"216303_s_at"	"MTMR1"	8776	"ENSG00000063601"
+"216095_x_at"	"MTMR1"	8776	"ENSG00000063601"
+"217127_at"	"CTH"	1491	"ENSG00000116761"
+"218116_at"	"C9orf78"	51759	"ENSG00000136819"
+"216109_at"	"MED13L"	23389	"ENSG00000123066"
+"215568_x_at"	"LYPLA2"	11313	"ENSG00000011009"
+"220247_at"	"KNL1"	57082	"ENSG00000137812"
+"219460_s_at"	"TMEM127"	55654	"ENSG00000135956"
+"216775_at"	"USP53"	54532	"ENSG00000145390"
+"219416_at"	"SCARA3"	51435	"ENSG00000168077"
+"218125_s_at"	"CCDC25"	55246	"ENSG00000147419"
+"216059_at"	"PAX3"	5077	"ENSG00000135903"
+"220085_at"	"HELLS"	3070	"ENSG00000119969"
+"217751_at"	"GSTK1"	373156	"ENSG00000197448"
+"216836_s_at"	"ERBB2"	2064	"ENSG00000141736"
+"220168_at"	"DNAI7"	55259	"ENSG00000118307"
+"219386_s_at"	"SLAMF8"	56833	"ENSG00000158714"
+"219385_at"	"SLAMF8"	56833	"ENSG00000158714"
+"220308_at"	"CFAP45"	25790	"ENSG00000213085"
+"219148_at"	"PBK"	55872	"ENSG00000168078"
+"218301_at"	"RNPEPL1"	57140	"ENSG00000142327"
+"219398_at"	"CIDEC"	63924	"ENSG00000187288"
+"219638_at"	"FBXO22"	26263	"ENSG00000167196"
+"219333_s_at"	"CAPN10"	11132	"ENSG00000142330"
+"217411_s_at"	"RREB1"	6239	"ENSG00000124782"
+"217909_s_at"	"MLX"	6945	"ENSG00000108788"
+"217910_x_at"	"MLX"	6945	"ENSG00000108788"
+"217449_at"	""	NA	"ENSG00000248103"
+"219359_at"	"PGGHG"	80162	"ENSG00000142102"
+"219125_s_at"	"SLC50A1"	55974	"ENSG00000169241"
+"220149_at"	"MAB21L4"	79919	"ENSG00000172478"
+"218331_s_at"	"TASOR2"	54906	"ENSG00000108021"
+"218921_at"	"SIGIRR"	59307	"ENSG00000185187"
+"218149_s_at"	"ZNF395"	55893	"ENSG00000186918"
+"220102_at"	"FOXL2"	668	"ENSG00000183770"
+"220136_s_at"	"CRYBA2"	1412	"ENSG00000163499"
+"219898_at"	"GPR85"	54329	"ENSG00000164604"
+"217341_at"	"GOLGA2"	2801	"ENSG00000167110"
+"220267_at"	"KRT24"	192666	"ENSG00000167916"
+"218037_at"	"RETREG2"	79137	"ENSG00000144567"
+"220155_s_at"	"BRD9"	65980	"ENSG00000028310"
+"220473_s_at"	"ZCCHC4"	29063	"ENSG00000168228"
+"219917_at"	"ZCCHC4"	29063	"ENSG00000168228"
+"219545_at"	"KCTD14"	65987	"ENSG00000151364"
+"218901_at"	"PLSCR4"	57088	"ENSG00000114698"
+"218616_at"	"INTS12"	57117	"ENSG00000138785"
+"217691_x_at"	"SLC16A3"	9123	"ENSG00000141526"
+"217226_s_at"	"SFXN3"	81855	"ENSG00000107819"
+"218219_s_at"	"LANCL2"	55915	"ENSG00000132434"
+"219352_at"	"HERC6"	55008	"ENSG00000138642"
+"220272_at"	"BNC2"	54796	"ENSG00000173068"
+"220153_at"	"ENTPD7"	57089	"ENSG00000198018"
+"217956_s_at"	"ENOPH1"	58478	"ENSG00000145293"
+"218970_s_at"	"CUTC"	51076	"ENSG00000119929"
+"219547_at"	"COX15"	1355	"ENSG00000014919"
+"219879_s_at"	"HROB"	78995	"ENSG00000125319"
+"219842_at"	"ARL15"	54622	"ENSG00000185305"
+"216675_at"	"LINC02913"	NA	"ENSG00000179082"
+"218419_s_at"	"TMUB2"	79089	"ENSG00000168591"
+"218892_at"	"DCHS1"	8642	"ENSG00000166341"
+"217931_at"	"CNPY3"	10695	"ENSG00000137161"
+"220539_at"	"CFAP46"	54777	"ENSG00000171811"
+"218753_at"	"XKR8"	55113	"ENSG00000158156"
+"217625_x_at"	"LINC00963"	124900275	"ENSG00000204054"
+"218274_s_at"	"ANKZF1"	55139	"ENSG00000163516"
+"218245_at"	"TSKU"	25987	"ENSG00000182704"
+"220468_at"	"ARL14"	80117	"ENSG00000179674"
+"217647_at"	"DHODH"	1723	"ENSG00000102967"
+"218794_s_at"	"TXNL4B"	54957	"ENSG00000140830"
+"219227_at"	"CCNJL"	79616	"ENSG00000135083"
+"219619_at"	"DIRAS2"	54769	"ENSG00000165023"
+"220114_s_at"	"STAB2"	55576	"ENSG00000136011"
+"218189_s_at"	"NANS"	54187	"ENSG00000095380"
+"218415_at"	"VPS33B"	26276	"ENSG00000184056"
+"220474_at"	"SLC25A21"	89874	"ENSG00000183032"
+"218040_at"	"PRPF38B"	55119	"ENSG00000134186"
+"218675_at"	"SLC22A17"	51310	"ENSG00000092096"
+"218074_at"	"CIAO2B"	51647	"ENSG00000166595"
+"218597_s_at"	"CISD1"	55847	"ENSG00000122873"
+"218692_at"	"SYBU"	55638	"ENSG00000147642"
+"220335_x_at"	"CES3"	23491	"ENSG00000172828"
+"219675_s_at"	"UXS1"	80146	"ENSG00000115652"
+"219515_at"	"PRDM10"	56980	"ENSG00000170325"
+"218003_s_at"	"FKBP3"	2287	"ENSG00000100442"
+"220187_at"	"STEAP4"	79689	"ENSG00000127954"
+"220133_at"	"ODAM"	54959	"ENSG00000109205"
+"218797_s_at"	"SIRT7"	51547	"ENSG00000187531"
+"218867_s_at"	"SPRING1"	79794	"ENSG00000111412"
+"217264_s_at"	"SCNN1A"	6337	"ENSG00000111319"
+"216905_s_at"	"ST14"	6768	"ENSG00000149418"
+"217025_s_at"	"DBN1"	1627	"ENSG00000113758"
+"220300_at"	"RGS3"	5998	"ENSG00000138835"
+"219953_s_at"	"AKIP1"	56672	"ENSG00000166452"
+"219574_at"	"MARCHF1"	55016	"ENSG00000145416"
+"218186_at"	"RAB25"	57111	"ENSG00000132698"
+"220122_at"	"MCTP1"	79772	"ENSG00000175471"
+"218746_at"	"TAPBPL"	55080	"ENSG00000139192"
+"218747_s_at"	"TAPBPL"	55080	"ENSG00000139192"
+"220344_at"	"C11orf16"	56673	"ENSG00000176029"
+"218065_s_at"	"TMEM9B"	56674	"ENSG00000175348"
+"219121_s_at"	"ESRP1"	54845	"ENSG00000104413"
+"220331_at"	"CYP46A1"	10858	"ENSG00000036530"
+"215929_at"	"LINC00837"	100507605	"ENSG00000235824"
+"219197_s_at"	"SCUBE2"	57758	"ENSG00000175356"
+"215911_x_at"	"ATP2B3"	492	"ENSG00000067842"
+"215632_at"	"NEUROG2"	63973	"ENSG00000178403"
+"218639_s_at"	"ZXDC"	79364	"ENSG00000070476"
+"215713_at"	""	NA	"ENSG00000279166"
+"220510_at"	"RHBG"	57127	"ENSG00000132677"
+"220027_s_at"	"RASIP1"	54922	"ENSG00000105538"
+"215754_at"	"SCARB2"	950	"ENSG00000138760"
+"216915_s_at"	"PTPN12"	5782	"ENSG00000127947"
+"219049_at"	"CSGALNACT1"	55790	"ENSG00000147408"
+"219630_at"	"PDZK1IP1"	10158	"ENSG00000162366"
+"219165_at"	"PDLIM2"	64236	"ENSG00000120913"
+"220312_at"	"FAM83E"	54854	"ENSG00000105523"
+"216260_at"	"DICER1"	23405	"ENSG00000100697"
+"219400_at"	"CNTNAP1"	8506	"ENSG00000108797"
+"218999_at"	"TMEM140"	55281	"ENSG00000146859"
+"215954_s_at"	"CACTIN"	58509	"ENSG00000105298"
+"218971_s_at"	"WDR91"	29062	"ENSG00000105875"
+"217846_at"	"QARS1"	5859	"ENSG00000172053"
+"219053_s_at"	"VPS37C"	55048	"ENSG00000167987"
+"216037_x_at"	"TCF7L2"	6934	"ENSG00000148737"
+"216511_s_at"	"TCF7L2"	6934	"ENSG00000148737"
+"216035_x_at"	"TCF7L2"	6934	"ENSG00000148737"
+"218829_s_at"	"CHD7"	55636	"ENSG00000171316"
+"218640_s_at"	"PLEKHF2"	79666	"ENSG00000175895"
+"216636_at"	"CASC19"	103164619	"ENSG00000254166"
+"218898_at"	"TLCD3A"	79850	"ENSG00000167695"
+"217099_s_at"	"GEMIN4"	50628	"ENSG00000179409"
+"218993_at"	"MRM3"	55178	"ENSG00000171861"
+"217608_at"	"SREK1IP1"	285672	"ENSG00000153006"
+"217765_at"	"NRBP1"	29959	"ENSG00000115216"
+"220499_at"	"FNDC8"	54752	"ENSG00000073598"
+"218843_at"	"FNDC4"	64838	"ENSG00000115226"
+"220186_s_at"	"CDHR2"	54825	"ENSG00000074276"
+"220182_at"	"SLC25A23"	79085	"ENSG00000125648"
+"217726_at"	"COPZ1"	22818	"ENSG00000111481"
+"216240_at"	"PVT1"	NA	"ENSG00000249859"
+"218688_at"	"TKFC"	26007	"ENSG00000149476"
+"218518_at"	"FAM13B"	51306	"ENSG00000031003"
+"216264_s_at"	"LAMB2"	3913	"ENSG00000172037"
+"219526_at"	"RIOX1"	79697	"ENSG00000170468"
+"217866_at"	"CPSF7"	79869	"ENSG00000149532"
+"219540_at"	"ZNF267"	10308	"ENSG00000185947"
+"218064_s_at"	"AKAP8L"	26993	"ENSG00000011243"
+"215741_x_at"	"AKAP8L"	26993	"ENSG00000011243"
+"217398_x_at"	"GAPDH"	2597	"ENSG00000111640"
+"220071_x_at"	"HAUS2"	55142	"ENSG00000137814"
+"219503_s_at"	"TMEM40"	55287	"ENSG00000088726"
+"216561_x_at"	"SOX5P1"	NA	"ENSG00000254376"
+"217916_s_at"	"CYRIB"	51571	"ENSG00000153310"
+"217534_at"	"CYRIB"	51571	"ENSG00000153310"
+"219571_s_at"	"ZNF12"	7559	"ENSG00000164631"
+"220346_at"	"MTHFD2L"	441024	"ENSG00000163738"
+"220195_at"	"MBD5"	55777	"ENSG00000204406"
+"218965_s_at"	"TUT1"	64852	"ENSG00000149016"
+"219528_s_at"	"BCL11B"	64919	"ENSG00000127152"
+"217926_at"	"C19orf53"	28974	"ENSG00000104979"
+"216583_x_at"	"NHP2P2"	NA	"ENSG00000213786"
+"217156_at"	"HADHAP1"	NA	"ENSG00000251596"
+"218720_x_at"	"SEZ6L2"	26470	"ENSG00000174938"
+"219943_s_at"	"USP46"	64854	"ENSG00000109189"
+"219396_s_at"	"NEIL1"	79661	"ENSG00000140398"
+"217933_s_at"	"LAP3"	51056	"ENSG00000002549"
+"220316_at"	"NPAS3"	64067	"ENSG00000151322"
+"220207_at"	"YIF1B"	90522	"ENSG00000167645"
+"215643_at"	"SEMA3D"	223117	"ENSG00000153993"
+"215656_at"	"LMAN2"	10960	"ENSG00000169223"
+"215872_at"	""	NA	"ENSG00000258517"
+"216969_s_at"	"KIF22"	3835	"ENSG00000079616"
+"217234_s_at"	"EZR"	7430	"ENSG00000092820"
+"217190_x_at"	"ESR1"	2099	"ENSG00000091831"
+"217163_at"	"ESR1"	2099	"ENSG00000091831"
+"219166_at"	"DNAAF2"	55172	"ENSG00000165506"
+"217906_at"	"KLHDC2"	23588	"ENSG00000165516"
+"216139_s_at"	"MAPK8IP3"	23162	"ENSG00000138834"
+"215779_s_at"	"H2BC8"	8339	"ENSG00000273802"
+"220471_s_at"	"MYCT1"	80177	"ENSG00000120279"
+"216194_s_at"	"TBCB"	1155	"ENSG00000105254"
+"218167_at"	"AMZ2"	51321	"ENSG00000196704"
+"219676_at"	"ZSCAN16"	80345	"ENSG00000196812"
+"217993_s_at"	"MAT2B"	27430	"ENSG00000038274"
+"219787_s_at"	"ECT2"	1894	"ENSG00000114346"
+"217379_at"	"RPL10P2"	NA	"ENSG00000174572"
+"218606_at"	"ZDHHC7"	55625	"ENSG00000153786"
+"216582_at"	"POM121L2"	94026	"ENSG00000158553"
+"216089_at"	"MCFD2P1"	NA	"ENSG00000237154"
+"220403_s_at"	"TP53AIP1"	63970	"ENSG00000120471"
+"220402_at"	"TP53AIP1"	63970	"ENSG00000120471"
+"217849_s_at"	"CDC42BPB"	9578	"ENSG00000198752"
+"218278_at"	"WDR74"	54663	"ENSG00000133316"
+"216667_at"	"RNASE2CP"	NA	"ENSG00000136315"
+"218323_at"	"RHOT1"	55288	"ENSG00000126858"
+"219408_at"	"PRMT7"	54496	"ENSG00000132600"
+"215993_at"	""	NA	"ENSG00000279739"
+"219840_s_at"	"TCL6"	124903372	"ENSG00000187621"
+"215847_at"	""	283755	"ENSG00000290376"
+"215961_at"	"F12"	2161	"ENSG00000131187"
+"215572_at"	"GOLGA6GP"	NA	"ENSG00000261303"
+"219647_at"	"POPDC2"	64091	"ENSG00000121577"
+"219824_at"	"SLC13A4"	26266	"ENSG00000164707"
+"220292_at"	"ZSCAN32"	54925	"ENSG00000140987"
+"218937_at"	"ZSCAN32"	54925	"ENSG00000140987"
+"220023_at"	"APOBR"	55911	"ENSG00000184730"
+"216263_s_at"	"NGDN"	25983	"ENSG00000129460"
+"219292_at"	"THAP1"	55145	"ENSG00000131931"
+"219015_s_at"	"ALG13"	79868	"ENSG00000101901"
+"219041_s_at"	"REPIN1"	29803	"ENSG00000214022"
+"220045_at"	"NEUROD6"	63974	"ENSG00000164600"
+"220231_at"	"PPP1R17"	10842	"ENSG00000106341"
+"218129_s_at"	"NFYB"	4801	"ENSG00000120837"
+"218128_at"	"NFYB"	4801	"ENSG00000120837"
+"218127_at"	"NFYB"	4801	"ENSG00000120837"
+"218514_at"	"SMG8"	55181	"ENSG00000167447"
+"216392_s_at"	"SEC23IP"	11196	"ENSG00000107651"
+"216370_s_at"	"TKTL1"	8277	"ENSG00000007350"
+"218335_x_at"	"TNIP2"	79155	"ENSG00000168884"
+"217798_at"	"CNOT2"	4848	"ENSG00000111596"
+"216008_s_at"	"ARIH2"	10425	"ENSG00000177479"
+"220094_s_at"	"MCUR1"	63933	"ENSG00000050393"
+"217627_at"	"ZNF573"	126231	"ENSG00000189144"
+"220303_at"	"NHERF4"	79849	"ENSG00000172367"
+"220181_x_at"	"SLC30A5"	64924	"ENSG00000145740"
+"218989_x_at"	"SLC30A5"	64924	"ENSG00000145740"
+"218205_s_at"	"MKNK2"	2872	"ENSG00000099875"
+"219437_s_at"	"ANKRD11"	29123	"ENSG00000167522"
+"215690_x_at"	"GPAA1"	8733	"ENSG00000197858"
+"218332_at"	"BEX1"	55859	"ENSG00000133169"
+"220110_s_at"	"NXF3"	56000	"ENSG00000147206"
+"217975_at"	"TCEAL9"	51186	"ENSG00000185222"
+"219132_at"	"PELI2"	57161	"ENSG00000139946"
+"217963_s_at"	"BEX3"	27018	"ENSG00000166681"
+"219175_s_at"	"SLC41A3"	54946	"ENSG00000114544"
+"217589_at"	"RAB40A"	142684	"ENSG00000172476"
+"218743_at"	"CHMP6"	79643	"ENSG00000176108"
+"216107_at"	""	NA	"ENSG00000280351"
+"219241_x_at"	"SSH3"	54961	"ENSG00000172830"
+"219919_s_at"	"SSH3"	54961	"ENSG00000172830"
+"217614_at"	"ARHGAP45"	23526	"ENSG00000180448"
+"219718_at"	"FGGY"	55277	"ENSG00000172456"
+"217968_at"	"EIPR1"	7260	"ENSG00000032389"
+"219874_at"	"SLC12A8"	84561	"ENSG00000221955"
+"217316_at"	"OR7A10"	390892	"ENSG00000127515"
+"217838_s_at"	"EVL"	51466	"ENSG00000196405"
+"218495_at"	"UXT"	8409	"ENSG00000126756"
+"215679_at"	"LUNAR1"	NA	"ENSG00000278090"
+"220339_s_at"	"TPSG1"	25823	"ENSG00000116176"
+"216934_at"	"CLTB"	1212	"ENSG00000175416"
+"219838_at"	"TTC23"	64927	"ENSG00000103852"
+"217543_s_at"	"MBTPS1"	8720	"ENSG00000140943"
+"220277_at"	"CXXC4"	80319	"ENSG00000168772"
+"218449_at"	"UFSP2"	55325	"ENSG00000109775"
+"218412_s_at"	"GTF2IRD1"	9569	"ENSG00000006704"
+"219373_at"	"DPM3"	54344	"ENSG00000179085"
+"219182_at"	"TMEM231"	79583	"ENSG00000205084"
+"218551_at"	"MIIP"	60672	"ENSG00000116691"
+"216599_x_at"	"SLC22A6"	9356	"ENSG00000197901"
+"218262_at"	"RMND5B"	64777	"ENSG00000145916"
+"217597_x_at"	"RAB40B"	10966	"ENSG00000141542"
+"218343_s_at"	"GTF3C3"	9330	"ENSG00000119041"
+"216101_at"	""	NA	"ENSG00000291259"
+"218210_at"	"FN3KRP"	79672	"ENSG00000141560"
+"215793_at"	"MTMR7"	9108	"ENSG00000003987"
+"216005_at"	"TNC"	3371	"ENSG00000041982"
+"219744_at"	"FN3K"	64122	"ENSG00000167363"
+"216274_s_at"	"SEC11A"	23478	"ENSG00000140612"
+"216128_at"	"TBCD"	6904	"ENSG00000141556"
+"217177_s_at"	"PTPRB"	5787	"ENSG00000127329"
+"217981_s_at"	"TIMM10B"	26515	"ENSG00000132286"
+"218370_s_at"	"S100PBP"	64766	"ENSG00000116497"
+"220395_at"	"DNAJA4"	55466	"ENSG00000140403"
+"218321_x_at"	"STYXL1"	51657	"ENSG00000127952"
+"217797_at"	"UFC1"	51506	"ENSG00000143222"
+"218256_s_at"	"NUP54"	53371	"ENSG00000138750"
+"218601_at"	"URGCP"	55665	"ENSG00000106608"
+"218837_s_at"	"UBE2D4"	51619	"ENSG00000078967"
+"219465_at"	"APOA2"	336	"ENSG00000158874"
+"219466_s_at"	"APOA2"	336	"ENSG00000158874"
+"217618_x_at"	"HUS1"	3364	"ENSG00000136273"
+"219179_at"	"DACT1"	51339	"ENSG00000165617"
+"220194_at"	"NSUN7"	79730	"ENSG00000179299"
+"217774_s_at"	"TRMT112"	51504	"ENSG00000173113"
+"215565_at"	"DTNB-AS1"	NA	"ENSG00000224220"
+"219735_s_at"	"TFCP2L1"	29842	"ENSG00000115112"
+"219239_s_at"	"ZNF654"	55279	"ENSG00000175105"
+"218958_at"	"REX1BD"	55049	"ENSG00000006015"
+"219005_at"	"TMEM59L"	25789	"ENSG00000105696"
+"217280_x_at"	"GABRA5"	2558	"ENSG00000186297"
+"219554_at"	"RHCG"	51458	"ENSG00000140519"
+"217525_at"	"OLFML1"	283298	"ENSG00000183801"
+"220276_at"	"RERGL"	79785	"ENSG00000111404"
+"218866_s_at"	"POLR3K"	51728	"ENSG00000161980"
+"218849_s_at"	"PPP1R13L"	10848	"ENSG00000104881"
+"219658_at"	"PTCD2"	79810	"ENSG00000049883"
+"217437_s_at"	"TACC1"	6867	"ENSG00000147526"
+"219870_at"	"ATF7IP2"	80063	"ENSG00000166669"
+"219995_s_at"	"ZNF750"	79755	"ENSG00000141579"
+"219679_s_at"	"WAC"	51322	"ENSG00000095787"
+"217742_s_at"	"WAC"	51322	"ENSG00000095787"
+"220109_at"	"TF"	7018	"ENSG00000091513"
+"218528_s_at"	"RNF38"	152006	"ENSG00000137075"
+"220230_s_at"	"CYB5R2"	51700	"ENSG00000166394"
+"218396_at"	"VPS13C"	54832	"ENSG00000129003"
+"220517_at"	"VPS13C"	54832	"ENSG00000129003"
+"216295_s_at"	"CLTA"	1211	"ENSG00000122705"
+"219851_at"	"ZNF613"	79898	"ENSG00000176024"
+"217430_x_at"	"COL1A1"	1277	"ENSG00000108821"
+"219266_at"	"ZNF350"	59348	"ENSG00000256683"
+"218839_at"	"HEY1"	23462	"ENSG00000164683"
+"219678_x_at"	"DCLRE1C"	64421	"ENSG00000152457"
+"216831_s_at"	"RUNX1T1"	862	"ENSG00000079102"
+"216832_at"	"RUNX1T1"	862	"ENSG00000079102"
+"219289_at"	"HEATR3"	55027	"ENSG00000155393"
+"219401_at"	"XYLT2"	64132	"ENSG00000015532"
+"217073_x_at"	"APOA1"	335	"ENSG00000118137"
+"219566_at"	"PLEKHF1"	79156	"ENSG00000166289"
+"219663_s_at"	"TMEM121"	80757	"ENSG00000184986"
+"217066_s_at"	"DMPK"	1760	"ENSG00000104936"
+"216997_x_at"	"TLE4"	7091	"ENSG00000106829"
+"216205_s_at"	"MFN2"	9927	"ENSG00000116688"
+"216265_x_at"	"MYH7"	4625	"ENSG00000092054"
+"217377_x_at"	"NTRK3"	4916	"ENSG00000140538"
+"217033_x_at"	"NTRK3"	4916	"ENSG00000140538"
+"217496_s_at"	"IDE"	3416	"ENSG00000119912"
+"219887_at"	"CCDC87"	55231	"ENSG00000182791"
+"216178_x_at"	"ITGB1"	3688	"ENSG00000150093"
+"215878_at"	"ITGB1"	3688	"ENSG00000150093"
+"219993_at"	"SOX17"	64321	"ENSG00000164736"
+"215891_s_at"	"GM2A"	2760	"ENSG00000196743"
+"215890_at"	"GM2A"	2760	"ENSG00000196743"
+"216880_at"	"RAD51B"	5890	"ENSG00000182185"
+"216986_s_at"	"IRF4"	3662	"ENSG00000137265"
+"216987_at"	"IRF4"	3662	"ENSG00000137265"
+"219642_s_at"	"PEX5L"	51555	"ENSG00000114757"
+"217919_s_at"	"MRPL42"	28977	"ENSG00000198015"
+"216184_s_at"	"RIMS1"	22999	"ENSG00000079841"
+"217526_at"	"NFATC2IP"	84901	"ENSG00000176953"
+"217527_s_at"	"NFATC2IP"	84901	"ENSG00000176953"
+"220060_s_at"	"PARPBP"	55010	"ENSG00000185480"
+"216241_s_at"	"TCEA1"	6917	"ENSG00000187735"
+"219177_at"	"BRIX1"	55299	"ENSG00000113460"
+"217860_at"	"NDUFA10"	4705	"ENSG00000130414"
+"218840_s_at"	"NADSYN1"	55191	"ENSG00000172890"
+"220011_at"	"AUNIP"	79000	"ENSG00000127423"
+"217809_at"	"BZW2"	28969	"ENSG00000136261"
+"218520_at"	"TBK1"	29110	"ENSG00000183735"
+"219462_at"	"TMEM53"	79639	"ENSG00000126106"
+"216086_at"	"SV2C"	22987	"ENSG00000122012"
+"216956_s_at"	"ITGA2B"	3674	"ENSG00000005961"
+"218027_at"	"MRPL15"	29088	"ENSG00000137547"
+"217297_s_at"	"MYO9B"	4650	"ENSG00000099331"
+"219871_at"	"KLF3-AS1"	NA	"ENSG00000231160"
+"219904_at"	"ZSCAN5A"	79149	"ENSG00000131848"
+"218553_s_at"	"KCTD15"	79047	"ENSG00000153885"
+"218534_s_at"	"AGGF1"	55109	"ENSG00000164252"
+"219143_s_at"	"RPP25"	54913	"ENSG00000178718"
+"218488_at"	"EIF2B3"	8891	"ENSG00000070785"
+"215844_at"	"TNPO2"	30000	"ENSG00000105576"
+"218029_at"	"RIPOR1"	79567	"ENSG00000039523"
+"218604_at"	"LEMD3"	23592	"ENSG00000174106"
+"218632_at"	"HECTD3"	79654	"ENSG00000126107"
+"219066_at"	"PPCDC"	60490	"ENSG00000138621"
+"215834_x_at"	"SCARB1"	949	"ENSG00000073060"
+"219963_at"	"DUSP13"	51207	"ENSG00000079393"
+"219598_s_at"	"RWDD1"	51389	"ENSG00000111832"
+"218131_s_at"	"GATAD2A"	54815	"ENSG00000167491"
+"218754_at"	"NOL9"	79707	"ENSG00000162408"
+"216627_s_at"	"B4GALT1"	2683	"ENSG00000086062"
+"217242_at"	"ZNF154"	7710	"ENSG00000179909"
+"219849_at"	"ZNF671"	79891	"ENSG00000083814"
+"218085_at"	"CHMP5"	51510	"ENSG00000086065"
+"219356_s_at"	"CHMP5"	51510	"ENSG00000086065"
+"215981_at"	"GPR176-DT"	100505534	"ENSG00000246863"
+"218055_s_at"	"WDR41"	55255	"ENSG00000164253"
+"216959_x_at"	"NRCAM"	4897	"ENSG00000091129"
+"218595_s_at"	"HEATR1"	55127	"ENSG00000119285"
+"218594_at"	"HEATR1"	55127	"ENSG00000119285"
+"217541_x_at"	"ZNF816"	125893	"ENSG00000180257"
+"219492_at"	"CHIC2"	26511	"ENSG00000109220"
+"216289_at"	"ADGRD2"	347088	"ENSG00000180264"
+"218823_s_at"	"KCTD9"	54793	"ENSG00000104756"
+"220019_s_at"	"ZNF224"	7767	"ENSG00000267680"
+"216983_s_at"	"ZNF224"	7767	"ENSG00000267680"
+"217663_at"	"ZNF234"	10780	"ENSG00000263002"
+"218670_at"	"PUS1"	80324	"ENSG00000177192"
+"219603_s_at"	"ZNF226"	7769	"ENSG00000167380"
+"218148_at"	"CENPT"	80152	"ENSG00000102901"
+"217403_s_at"	"ZNF227"	7770	"ENSG00000131115"
+"218613_at"	"PSD3"	23362	"ENSG00000156011"
+"215602_at"	"FGD2"	221472	"ENSG00000146192"
+"219002_at"	"FASTKD1"	79675	"ENSG00000138399"
+"218608_at"	"ATP13A2"	23400	"ENSG00000159363"
+"215808_at"	"KLK10"	5655	"ENSG00000129451"
+"219572_at"	"CADPS2"	93664	"ENSG00000081803"
+"217315_s_at"	"KLK13"	26085	"ENSG00000167759"
+"219458_s_at"	"NSUN3"	63899	"ENSG00000178694"
+"218751_s_at"	"FBXW7"	55294	"ENSG00000109670"
+"217159_x_at"	"SIGLEC7"	27036	"ENSG00000168995"
+"216537_s_at"	"SIGLEC7"	27036	"ENSG00000168995"
+"216449_x_at"	"HSP90B1"	7184	"ENSG00000166598"
+"216941_s_at"	"TAF1B"	9014	"ENSG00000115750"
+"220283_at"	"HHIPL2"	79802	"ENSG00000143512"
+"220179_at"	"DPEP3"	64180	"ENSG00000141096"
+"219452_at"	"DPEP2"	64174	"ENSG00000167261"
+"219042_at"	"LZTS1"	11178	"ENSG00000061337"
+"218486_at"	"KLF11"	8462	"ENSG00000172059"
+"219486_at"	"DUS2"	54920	"ENSG00000167264"
+"220519_s_at"	"LIM2"	3982	"ENSG00000105370"
+"216452_at"	"TRPM3"	80036	"ENSG00000083067"
+"219694_at"	"OTULINL"	54491	"ENSG00000145569"
+"215672_s_at"	"AHCYL2"	23382	"ENSG00000158467"
+"219231_at"	"TGS1"	96764	"ENSG00000137574"
+"218313_s_at"	"GALNT7"	51809	"ENSG00000109586"
+"218376_s_at"	"MICAL1"	64780	"ENSG00000135596"
+"219791_s_at"	"HAND2-AS1"	79804	"ENSG00000237125"
+"219905_at"	"ERMAP"	114625	"ENSG00000164010"
+"216269_s_at"	"ELN"	2006	"ENSG00000049540"
+"218283_at"	"SS18L2"	51188	"ENSG00000008324"
+"219312_s_at"	"ZBTB10"	65986	"ENSG00000205189"
+"218087_s_at"	"SORBS1"	10580	"ENSG00000095637"
+"219343_at"	"CDC37L1"	55664	"ENSG00000106993"
+"220218_at"	"SPATA6L"	55064	"ENSG00000106686"
+"218735_s_at"	"ZNF544"	27300	"ENSG00000198131"
+"219293_s_at"	"OLA1"	29789	"ENSG00000138430"
+"218400_at"	"OAS3"	4940	"ENSG00000111331"
+"218215_s_at"	"NR1H2"	7376	"ENSG00000131408"
+"215776_at"	"INSRR"	3645	"ENSG00000027644"
+"219234_x_at"	"SCRN3"	79634	"ENSG00000144306"
+"219022_at"	"C12orf43"	64897	"ENSG00000157895"
+"220378_at"	"TCP11"	6954	"ENSG00000124678"
+"218759_at"	"DVL2"	1856	"ENSG00000004975"
+"217781_s_at"	"ZNF106"	64397	"ENSG00000103994"
+"218885_s_at"	"GALNT12"	79695	"ENSG00000119514"
+"218312_s_at"	"ZSCAN18"	65982	"ENSG00000121413"
+"217593_at"	"ZSCAN18"	65982	"ENSG00000121413"
+"219765_at"	"ZNF329"	79673	"ENSG00000181894"
+"219762_s_at"	"RPL36"	25873	"ENSG00000130255"
+"218477_at"	"TMEM14A"	28978	"ENSG00000096092"
+"218354_at"	"TRAPPC2L"	51693	"ENSG00000167515"
+"220375_s_at"	"PITX1-AS1"	100996485	"ENSG00000224186"
+"218002_s_at"	"CXCL14"	9547	"ENSG00000145824"
+"220255_at"	"FANCE"	2178	"ENSG00000112039"
+"218461_at"	"GPN3"	51184	"ENSG00000111231"
+"219027_s_at"	"MYO9A"	4649	"ENSG00000066933"
+"218196_at"	"OSTM1"	28962	"ENSG00000081087"
+"218284_at"	"SMAD3"	4088	"ENSG00000166949"
+"219731_at"	"ENTPD1-AS1"	728558	"ENSG00000226688"
+"215785_s_at"	"CYFIP2"	26999	"ENSG00000055163"
+"219172_at"	"UBTD1"	80019	"ENSG00000165886"
+"219581_at"	"TSEN2"	80746	"ENSG00000154743"
+"218584_at"	"TCTN1"	79600	"ENSG00000204852"
+"218631_at"	"AVPI1"	60370	"ENSG00000119986"
+"218057_x_at"	"EMC8"	10328	"ENSG00000131148"
+"215807_s_at"	"PLXNB1"	5364	"ENSG00000164050"
+"215668_s_at"	"PLXNB1"	5364	"ENSG00000164050"
+"219092_s_at"	"IPPK"	64768	"ENSG00000127080"
+"218030_at"	"GIT1"	28964	"ENSG00000108262"
+"216876_s_at"	"IL17A"	3605	"ENSG00000112115"
+"218722_s_at"	"CCDC51"	79714	"ENSG00000164051"
+"219186_at"	"ZBTB7A"	51341	"ENSG00000178951"
+"218464_s_at"	"FAM222B"	55731	"ENSG00000173065"
+"218795_at"	"ACP6"	51205	"ENSG00000162836"
+"219613_s_at"	"SIRT6"	51548	"ENSG00000077463"
+"218920_at"	"FAM193B"	54540	"ENSG00000146067"
+"216186_at"	""	NA	"ENSG00000232036"
+"217941_s_at"	"ERBIN"	55914	"ENSG00000112851"
+"218787_x_at"	"CWF19L1"	55280	"ENSG00000095485"
+"220441_at"	"DNAJC22"	79962	"ENSG00000178401"
+"217288_at"	"DNAJC22"	79962	"ENSG00000178401"
+"215904_at"	"AFDN"	4301	"ENSG00000130396"
+"220161_s_at"	"EPB41L4B"	54566	"ENSG00000095203"
+"218749_s_at"	"SLC8B1"	80024	"ENSG00000089060"
+"219971_at"	"IL21R"	50615	"ENSG00000103522"
+"217667_at"	"SEC14L1P1"	NA	"ENSG00000213693"
+"218861_at"	"RNF25"	64320	"ENSG00000163481"
+"217340_at"	"RPL21P68"	NA	"ENSG00000216718"
+"217322_x_at"	""	NA	"ENSG00000213972"
+"219573_at"	"CARMIL1"	55604	"ENSG00000079691"
+"218697_at"	"NCKIPSD"	51517	"ENSG00000213672"
+"218228_s_at"	"TNKS2"	80351	"ENSG00000107854"
+"218192_at"	"IP6K2"	51447	"ENSG00000068745"
+"217934_x_at"	"STUB1"	10273	"ENSG00000103266"
+"215992_s_at"	"RAPGEF2"	9693	"ENSG00000109756"
+"219564_at"	"KCNJ16"	3773	"ENSG00000153822"
+"217312_s_at"	"COL7A1"	1294	"ENSG00000114270"
+"218248_at"	"FAM111A"	63901	"ENSG00000166801"
+"218946_at"	"NFU1"	27247	"ENSG00000169599"
+"216467_s_at"	"EPM2A-DT"	NA	"ENSG00000235652"
+"216527_at"	"HCG18"	414777	"ENSG00000231074"
+"217011_at"	"GBX1"	2636	"ENSG00000164900"
+"218071_s_at"	"MKRN2"	23609	"ENSG00000075975"
+"219628_at"	"ZMAT3"	64393	"ENSG00000172667"
+"219469_at"	"DYNC2H1"	79659	"ENSG00000187240"
+"218766_s_at"	"WARS2"	10352	"ENSG00000116874"
+"218814_s_at"	"PACC1"	55248	"ENSG00000065600"
+"220118_at"	"ZBTB32"	27033	"ENSG00000011590"
+"216897_s_at"	"FAM76A"	199870	"ENSG00000009780"
+"217818_s_at"	"ARPC4"	10093	"ENSG00000241553"
+"217817_at"	"ARPC4"	10093	"ENSG00000241553"
+"217604_at"	"DNPEP"	23549	"ENSG00000123992"
+"219933_at"	"GLRX2"	51022	"ENSG00000023572"
+"218811_at"	"ORAI2"	80228	"ENSG00000160991"
+"218812_s_at"	"ORAI2"	80228	"ENSG00000160991"
+"217529_at"	"ORAI2"	80228	"ENSG00000160991"
+"217027_x_at"	""	NA	"ENSG00000231397"
+"218903_s_at"	"NABP2"	79035	"ENSG00000139579"
+"217912_at"	"DUS1L"	64118	"ENSG00000169718"
+"217075_x_at"	"KMT2B"	9757	"ENSG00000272333"
+"217006_x_at"	"FASN"	2194	"ENSG00000169710"
+"219019_at"	"PIDD1"	55367	"ENSG00000177595"
+"217512_at"	"KNG1"	3827	"ENSG00000113889"
+"217904_s_at"	"BACE1"	23621	"ENSG00000186318"
+"220528_at"	"VNN3P"	55350	"ENSG00000093134"
+"219689_at"	"SEMA3G"	56920	"ENSG00000010319"
+"219423_x_at"	"TNFRSF25"	8718	"ENSG00000215788"
+"216442_x_at"	"FN1"	2335	"ENSG00000115414"
+"219088_s_at"	"ZNF576"	79177	"ENSG00000124444"
+"219089_s_at"	"ZNF576"	79177	"ENSG00000124444"
+"219974_x_at"	"ECHDC1"	55862	"ENSG00000093144"
+"217599_s_at"	"MDFIC"	29969	"ENSG00000135272"
+"218166_s_at"	"RSF1"	51773	"ENSG00000048649"
+"219666_at"	"MS4A6A"	64231	"ENSG00000110077"
+"219298_at"	"ECHDC3"	79746	"ENSG00000134463"
+"220054_at"	"IL23A"	51561	"ENSG00000110944"
+"217595_at"	"GSPT1"	2935	"ENSG00000103342"
+"220029_at"	"ELOVL2"	54898	"ENSG00000197977"
+"218344_s_at"	"RCOR3"	55758	"ENSG00000117625"
+"219802_at"	"PYROXD1"	79912	"ENSG00000121350"
+"217002_s_at"	"HTR3A"	3359	"ENSG00000166736"
+"216615_s_at"	"HTR3A"	3359	"ENSG00000166736"
+"218784_s_at"	"SAYSD1"	55776	"ENSG00000112167"
+"219233_s_at"	"GSDMB"	55876	"ENSG00000073605"
+"219615_s_at"	"KCNK5"	8645	"ENSG00000164626"
+"217191_x_at"	"COX6CP1"	NA	"ENSG00000260318"
+"219507_at"	"RSRC1"	51319	"ENSG00000174891"
+"219499_at"	"SEC61A2"	55176	"ENSG00000065665"
+"218193_s_at"	"GOLT1B"	51026	"ENSG00000111711"
+"218470_at"	"YARS2"	51067	"ENSG00000139131"
+"218060_s_at"	"USB1"	79650	"ENSG00000103005"
+"217450_at"	"AGFG2"	3268	"ENSG00000106351"
+"218229_s_at"	"POGK"	57645	"ENSG00000143157"
+"219236_at"	"PAQR6"	79957	"ENSG00000160781"
+"218967_s_at"	"PTER"	9317	"ENSG00000165983"
+"216743_at"	"ADCY6"	112	"ENSG00000174233"
+"216827_at"	""	NA	"ENSG00000217786"
+"220066_at"	"NOD2"	64127	"ENSG00000167207"
+"216926_s_at"	"MAU2"	23383	"ENSG00000129933"
+"217652_at"	"MAU2"	23383	"ENSG00000129933"
+"219968_at"	"ZNF589"	51385	"ENSG00000164048"
+"220444_at"	"ZNF557"	79230	"ENSG00000130544"
+"217624_at"	"PDAP1"	11333	"ENSG00000106244"
+"218737_at"	"SBNO1"	55206	"ENSG00000139697"
+"219348_at"	"USE1"	55850	"ENSG00000053501"
+"219358_s_at"	"ADAP2"	55803	"ENSG00000184060"
+"218434_s_at"	"AACS"	65985	"ENSG00000081760"
+"218165_at"	"MEAF6"	64769	"ENSG00000163875"
+"220261_s_at"	"ZDHHC4"	55146	"ENSG00000136247"
+"219336_s_at"	"ASCC1"	51008	"ENSG00000138303"
+"219261_at"	"INTS15"	79034	"ENSG00000146576"
+"220192_x_at"	"SPDEF"	25803	"ENSG00000124664"
+"217925_s_at"	"ILRUN"	64771	"ENSG00000196821"
+"217924_at"	"ILRUN"	64771	"ENSG00000196821"
+"217504_at"	"ABCA6"	23460	"ENSG00000154262"
+"216588_at"	"RPL7P25"	NA	"ENSG00000216636"
+"220034_at"	"IRAK3"	11213	"ENSG00000090376"
+"219141_s_at"	"AMBRA1"	55626	"ENSG00000110497"
+"219295_s_at"	"PCOLCE2"	26577	"ENSG00000163710"
+"220242_x_at"	"ZNF701"	55762	"ENSG00000167562"
+"220440_at"	"LGALS13"	29124	"ENSG00000105198"
+"220366_at"	"ELSPBP1"	64100	"ENSG00000169393"
+"218289_s_at"	"UBA5"	79876	"ENSG00000081307"
+"216841_s_at"	"SOD2"	6648	"ENSG00000291237"
+"219885_at"	"SLFN12"	55106	"ENSG00000172123"
+"218395_at"	"ACTR6"	64431	"ENSG00000075089"
+"220185_at"	"SPTBN4"	57731	"ENSG00000160460"
+"219342_at"	"CASD1"	64921	"ENSG00000127995"
+"218008_at"	"TMEM248"	55069	"ENSG00000106609"
+"216921_s_at"	"KRT35"	3886	"ENSG00000197079"
+"219826_at"	"ZNF419"	79744	"ENSG00000105136"
+"218404_at"	"SNX10"	29887	"ENSG00000086300"
+"218850_s_at"	"LIMD1"	8994	"ENSG00000144791"
+"220526_s_at"	"MRPL20"	55052	"ENSG00000242485"
+"220527_at"	"MRPL20"	55052	"ENSG00000242485"
+"218731_s_at"	"VWA1"	64856	"ENSG00000179403"
+"218832_x_at"	"ARRB1"	408	"ENSG00000137486"
+"217374_x_at"	"TRGV5P"	NA	"ENSG00000228668"
+"218268_at"	"TBC1D15"	64786	"ENSG00000121749"
+"219739_at"	"RNF186"	54546	"ENSG00000178828"
+"219966_x_at"	"BANP"	54971	"ENSG00000172530"
+"216277_at"	"BUB1"	699	"ENSG00000169679"
+"215748_at"	"KLHL35"	283212	"ENSG00000149243"
+"220349_s_at"	"ENGASE"	64772	"ENSG00000167280"
+"220154_at"	"DST"	667	"ENSG00000151914"
+"216918_s_at"	"DST"	667	"ENSG00000151914"
+"219949_at"	"LRRC2"	79442	"ENSG00000163827"
+"217486_s_at"	"ZDHHC17"	23390	"ENSG00000186908"
+"215989_at"	"CBX2"	84733	"ENSG00000173894"
+"216052_x_at"	"ARTN"	9048	"ENSG00000117407"
+"216901_s_at"	"IKZF1"	10320	"ENSG00000185811"
+"217509_x_at"	"GRIK5"	2901	"ENSG00000105737"
+"217657_at"	"WBP1LP2"	NA	"ENSG00000250474"
+"220018_at"	"CBLL1"	79872	"ENSG00000105879"
+"220191_at"	"GKN1"	56287	"ENSG00000169605"
+"216935_at"	"LCEP3"	NA	"ENSG00000285753"
+"218483_s_at"	"IFT46"	56912	"ENSG00000118096"
+"220092_s_at"	"ANTXR1"	84168	"ENSG00000169604"
+"220093_at"	"ANTXR1"	84168	"ENSG00000169604"
+"217361_at"	"PRKAR1AP1"	NA	"ENSG00000233401"
+"216175_at"	"POLD2"	5425	"ENSG00000106628"
+"217122_s_at"	"SLC35E2B"	728661	"ENSG00000189339"
+"220541_at"	"MMP26"	56547	"ENSG00000167346"
+"219880_at"	""	101928649	"ENSG00000233937"
+"219881_s_at"	""	101928649	"ENSG00000233937"
+"219097_x_at"	"SMIM7"	79086	"ENSG00000214046"
+"218508_at"	"DCP1A"	55802	"ENSG00000272886"
+"219255_x_at"	"IL17RB"	55540	"ENSG00000056736"
+"220412_x_at"	"KCNK7"	10089	"ENSG00000173338"
+"218658_s_at"	"ACTR8"	93973	"ENSG00000113812"
+"215784_at"	"CD1E"	913	"ENSG00000158488"
+"219282_s_at"	"TRPV2"	51393	"ENSG00000187688"
+"216652_s_at"	"DR1"	1810	"ENSG00000117505"
+"216653_at"	"DR1"	1810	"ENSG00000117505"
+"219922_s_at"	"LTBP3"	4054	"ENSG00000168056"
+"219424_at"	"EBI3"	10148	"ENSG00000105246"
+"216697_at"	"TRIO"	7204	"ENSG00000038382"
+"218473_s_at"	"COLGALT1"	79709	"ENSG00000130309"
+"219476_at"	"C1orf116"	79098	"ENSG00000182795"
+"219856_at"	"C1orf116"	79098	"ENSG00000182795"
+"218687_s_at"	"MUC13"	56667	"ENSG00000173702"
+"218509_at"	"PLPPR2"	64748	"ENSG00000105520"
+"218804_at"	"ANO1"	55107	"ENSG00000131620"
+"219058_x_at"	"TINAGL1"	64129	"ENSG00000142910"
+"217923_at"	"PEF1"	553115	"ENSG00000162517"
+"219562_at"	"RAB26"	25837	"ENSG00000167964"
+"217382_at"	"CLIC1P1"	NA	"ENSG00000231313"
+"216319_at"	"LINC01013"	NA	"ENSG00000228495"
+"215702_s_at"	"CFTR"	1080	"ENSG00000001626"
+"217026_at"	"CFTR"	1080	"ENSG00000001626"
+"215703_at"	"CFTR"	1080	"ENSG00000001626"
+"219445_at"	"BICRA"	29998	"ENSG00000063169"
+"219346_at"	"LRFN3"	79414	"ENSG00000126243"
+"219691_at"	"SAMD9"	54809	"ENSG00000205413"
+"218240_at"	"NKIRAS2"	28511	"ENSG00000168256"
+"219364_at"	"DHX58"	79132	"ENSG00000108771"
+"217357_at"	""	NA	"ENSG00000257823"
+"218900_at"	"CNNM4"	26504	"ENSG00000158158"
+"218728_s_at"	"CNIH4"	29097	"ENSG00000143771"
+"219830_at"	"RAI1"	10743	"ENSG00000108557"
+"218099_at"	"TEX2"	55852	"ENSG00000136478"
+"216867_s_at"	"PDGFA"	5154	"ENSG00000197461"
+"220203_at"	"BMP8A"	353500	"ENSG00000183682"
+"220204_s_at"	"BMP8A"	353500	"ENSG00000183682"
+"219671_at"	"HPCAL4"	51440	"ENSG00000116983"
+"219039_at"	"SEMA4C"	54910	"ENSG00000168758"
+"218225_at"	"ECSIT"	51295	"ENSG00000130159"
+"216033_s_at"	"FYN"	2534	"ENSG00000010810"
+"215638_at"	"ERBB3"	2065	"ENSG00000065361"
+"218410_s_at"	"PGP"	283871	"ENSG00000184207"
+"218481_at"	"EXOSC5"	56915	"ENSG00000077348"
+"219510_at"	"POLQ"	10721	"ENSG00000051341"
+"219937_at"	"TRHDE"	29953	"ENSG00000072657"
+"220164_s_at"	"FBXO40"	51725	"ENSG00000163833"
+"218361_at"	"GOLPH3L"	55204	"ENSG00000143457"
+"218522_s_at"	"MAP1S"	55201	"ENSG00000130479"
+"219063_at"	"C1orf35"	79169	"ENSG00000143793"
+"218450_at"	"HEBP1"	50865	"ENSG00000013583"
+"216099_at"	"HTR7P1"	93164	"ENSG00000183935"
+"219635_at"	"ZNF606"	80095	"ENSG00000166704"
+"215663_at"	"MBNL1"	4154	"ENSG00000152601"
+"218180_s_at"	"EPS8L2"	64787	"ENSG00000177106"
+"215973_at"	"HCG4B"	NA	"ENSG00000227262"
+"215717_s_at"	"FBN2"	2201	"ENSG00000138829"
+"220160_s_at"	"KPTN"	11133	"ENSG00000118162"
+"216944_s_at"	"ITPR1"	3708	"ENSG00000150995"
+"220064_at"	"TTC21B"	79809	"ENSG00000123607"
+"219608_s_at"	"FBXO38"	81545	"ENSG00000145868"
+"219864_s_at"	"RCAN3"	11123	"ENSG00000117602"
+"220457_at"	"SAMD4B"	55095	"ENSG00000179134"
+"218214_at"	"ATG101"	60673	"ENSG00000123395"
+"218554_s_at"	"ASH1L"	55870	"ENSG00000116539"
+"216939_s_at"	"HTR4"	3360	"ENSG00000164270"
+"216311_at"	"OVOL3"	728361	"ENSG00000105261"
+"219862_s_at"	"NARF"	26502	"ENSG00000141562"
+"216019_x_at"	"PHLDB1"	23187	"ENSG00000019144"
+"220116_at"	"KCNN2"	3781	"ENSG00000080709"
+"220073_s_at"	"PLEKHG6"	55200	"ENSG00000008323"
+"216238_s_at"	"FGB"	2244	"ENSG00000171564"
+"219612_s_at"	"FGG"	2266	"ENSG00000171557"
+"216048_s_at"	"RHOBTB3"	22836	"ENSG00000164292"
+"216049_at"	"RHOBTB3"	22836	"ENSG00000164292"
+"218329_at"	"PRDM4"	11108	"ENSG00000110851"
+"218664_at"	"MECR"	51102	"ENSG00000116353"
+"218638_s_at"	"SPON2"	10417	"ENSG00000159674"
+"217868_s_at"	"METTL9"	51108	"ENSG00000197006"
+"216056_at"	"CD44"	960	"ENSG00000026508"
+"217523_at"	"CD44"	960	"ENSG00000026508"
+"220384_at"	"NME8"	51314	"ENSG00000086288"
+"218546_at"	"C1orf115"	79762	"ENSG00000162817"
+"218365_s_at"	"DARS2"	55157	"ENSG00000117593"
+"220006_at"	"EFCC1"	79825	"ENSG00000114654"
+"219788_at"	"PILRA"	29992	"ENSG00000085514"
+"220359_s_at"	"ARPP21"	10777	"ENSG00000172995"
+"217455_s_at"	"SSTR2"	6752	"ENSG00000180616"
+"218956_s_at"	"PTCD1"	26024	"ENSG00000106246"
+"220476_s_at"	"INKA2"	55924	"ENSG00000197852"
+"218460_at"	"DNAAF5"	54919	"ENSG00000164818"
+"218063_s_at"	"CDC42EP4"	23580	"ENSG00000179604"
+"218062_x_at"	"CDC42EP4"	23580	"ENSG00000179604"
+"219275_at"	"PDCD5"	9141	"ENSG00000105185"
+"215840_at"	"DNAH2"	146754	"ENSG00000183914"
+"220135_s_at"	"SLC7A9"	11136	"ENSG00000021488"
+"218336_at"	"PFDN2"	5202	"ENSG00000143256"
+"217767_at"	"C3"	718	"ENSG00000125730"
+"219221_at"	"ZBTB38"	253461	"ENSG00000177311"
+"220370_s_at"	"USP36"	57602	"ENSG00000055483"
+"217893_s_at"	"AKIRIN1"	79647	"ENSG00000174574"
+"220235_s_at"	"LRIF1"	55791	"ENSG00000121931"
+"218330_s_at"	"NAV2"	89797	"ENSG00000166833"
+"219119_at"	"LSM8"	51691	"ENSG00000128534"
+"219472_at"	"CENPO"	79172	"ENSG00000138092"
+"218545_at"	"CCDC91"	55297	"ENSG00000123106"
+"217325_at"	"KRT3"	3850	"ENSG00000186442"
+"218851_s_at"	"WDR33"	55339	"ENSG00000136709"
+"218222_x_at"	"ARNT"	405	"ENSG00000143437"
+"218221_at"	"ARNT"	405	"ENSG00000143437"
+"218930_s_at"	"TMEM106B"	54664	"ENSG00000106460"
+"220367_s_at"	"SAP130"	79595	"ENSG00000136715"
+"215972_at"	"PART1"	25859	"ENSG00000152931"
+"218846_at"	"MED23"	9439	"ENSG00000112282"
+"220000_at"	"SIGLEC5"	8778	"ENSG00000268500"
+"215923_s_at"	"PSD4"	23550	"ENSG00000125637"
+"217799_x_at"	"UBE2H"	7328	"ENSG00000186591"
+"218567_x_at"	"DPP3"	10072	"ENSG00000254986"
+"215912_at"	"GNAO1"	2775	"ENSG00000087258"
+"217378_x_at"	"IGKV1OR2-108"	NA	"ENSG00000231292"
+"219170_at"	"FSD1"	79187	"ENSG00000105255"
+"217749_at"	"COPG1"	22820	"ENSG00000181789"
+"218432_at"	"FBXO3"	26273	"ENSG00000110429"
+"218428_s_at"	"REV1"	51455	"ENSG00000135945"
+"219372_at"	"IFT81"	28981	"ENSG00000122970"
+"219835_at"	"PRDM8"	56978	"ENSG00000152784"
+"218913_s_at"	"GMIP"	51291	"ENSG00000089639"
+"216337_at"	""	NA	"ENSG00000280017"
+"216216_at"	"SLIT3"	6586	"ENSG00000184347"
+"218052_s_at"	"ATP13A1"	57130	"ENSG00000105726"
+"219334_s_at"	"NABP1"	64859	"ENSG00000173559"
+"217822_at"	"WBP11"	51729	"ENSG00000084463"
+"217821_s_at"	"WBP11"	51729	"ENSG00000084463"
+"220470_at"	"BET1L"	51272	"ENSG00000177951"
+"219854_at"	"ZNF14"	7561	"ENSG00000105708"
+"218020_s_at"	"ZFAND3"	60685	"ENSG00000156639"
+"218711_s_at"	"CAVIN2"	8436	"ENSG00000168497"
+"219158_s_at"	"NAA15"	80155	"ENSG00000164134"
+"216933_x_at"	"APC"	324	"ENSG00000134982"
+"219242_at"	"CEP63"	80254	"ENSG00000182923"
+"218987_at"	"ATF7IP"	55729	"ENSG00000171681"
+"217401_at"	""	NA	"ENSG00000219273"
+"216199_s_at"	"MAP3K4"	4216	"ENSG00000085511"
+"219759_at"	"ERAP2"	64167	"ENSG00000164308"
+"218454_at"	"PLBD1"	79887	"ENSG00000121316"
+"217853_at"	"TNS3"	64759	"ENSG00000136205"
+"219936_s_at"	"GPR87"	53836	"ENSG00000138271"
+"220005_at"	"P2RY13"	53829	"ENSG00000181631"
+"219693_at"	"AGPAT4"	56895	"ENSG00000026652"
+"217877_s_at"	"GPBP1L1"	60313	"ENSG00000159592"
+"217721_at"	"SEPTIN7"	989	"ENSG00000122545"
+"217724_at"	"SERBP1"	26135	"ENSG00000142864"
+"217725_x_at"	"SERBP1"	26135	"ENSG00000142864"
+"217883_at"	"MMADHC"	27249	"ENSG00000168288"
+"219044_at"	"THNSL2"	55258	"ENSG00000144115"
+"220345_at"	"LRRTM4"	80059	"ENSG00000176204"
+"218109_s_at"	"MFSD1"	64747	"ENSG00000118855"
+"218610_s_at"	"CPPED1"	55313	"ENSG00000103381"
+"219915_s_at"	"SLC16A10"	117247	"ENSG00000112394"
+"220212_s_at"	"THADA"	63892	"ENSG00000115970"
+"219077_s_at"	"WWOX"	51741	"ENSG00000186153"
+"219644_at"	"CEP83"	51134	"ENSG00000173588"
+"219493_at"	"SHCBP1"	79801	"ENSG00000171241"
+"219319_at"	"HIF3A"	64344	"ENSG00000124440"
+"220215_at"	"ZNF669"	79862	"ENSG00000188295"
+"219105_x_at"	"ORC6"	23594	"ENSG00000091651"
+"219960_s_at"	"UCHL5"	51377	"ENSG00000116750"
+"220083_x_at"	"UCHL5"	51377	"ENSG00000116750"
+"219627_at"	""	79970	"ENSG00000291118"
+"217623_at"	"MYLK3"	91807	"ENSG00000140795"
+"215705_at"	"PPP5C"	5536	"ENSG00000011485"
+"218491_s_at"	"THYN1"	29087	"ENSG00000151500"
+"219442_at"	""	NA	"ENSG00000290927"
+"219825_at"	"CYP26B1"	56603	"ENSG00000003137"
+"219692_at"	"KREMEN2"	79412	"ENSG00000131650"
+"217833_at"	"SYNCRIP"	10492	"ENSG00000135316"
+"217834_s_at"	"SYNCRIP"	10492	"ENSG00000135316"
+"217832_at"	"SYNCRIP"	10492	"ENSG00000135316"
+"216598_s_at"	"CCL2"	6347	"ENSG00000108691"
+"220465_at"	"CEBPA-DT"	80054	"ENSG00000267296"
+"215952_s_at"	"OAZ1"	4946	"ENSG00000104904"
+"216833_x_at"	"GYPB"	2994	"ENSG00000250361"
+"216696_s_at"	"PRODH2"	58510	"ENSG00000250799"
+"218493_at"	"SNRNP25"	79622	"ENSG00000161981"
+"220383_at"	"ABCG5"	64240	"ENSG00000138075"
+"215829_at"	"SHANK2"	22941	"ENSG00000162105"
+"219220_x_at"	"MRPS22"	56945	"ENSG00000175110"
+"218984_at"	"PUS7"	54517	"ENSG00000091127"
+"219834_at"	"CARF"	79800	"ENSG00000138380"
+"219123_at"	"ZNF232"	7775	"ENSG00000167840"
+"217810_x_at"	"LARS1"	51520	"ENSG00000133706"
+"220111_s_at"	"ANO2"	57101	"ENSG00000047617"
+"219530_at"	"PALB2"	79728	"ENSG00000083093"
+"216054_x_at"	"MYL4"	4635	"ENSG00000198336"
+"215691_x_at"	"IFT25"	51668	"ENSG00000081870"
+"216261_at"	"ITGB3"	3690	"ENSG00000259207"
+"215737_x_at"	"USF2"	7392	"ENSG00000105698"
+"215873_x_at"	"ABCC10"	89845	"ENSG00000124574"
+"220491_at"	"HAMP"	57817	"ENSG00000105697"
+"216629_at"	"SRRM2"	23524	"ENSG00000167978"
+"216617_s_at"	"MAG"	4099	"ENSG00000105695"
+"220262_s_at"	"DLK2"	65989	"ENSG00000171462"
+"217891_at"	"RUSF1"	64755	"ENSG00000140688"
+"218458_at"	"GMCL1"	64395	"ENSG00000087338"
+"218953_s_at"	"PCYOX1L"	78991	"ENSG00000145882"
+"220273_at"	"IL17B"	27190	"ENSG00000127743"
+"219152_at"	"PODXL2"	50512	"ENSG00000114631"
+"219206_x_at"	"TMBIM4"	51643	"ENSG00000155957"
+"217896_s_at"	"PSME3IP1"	80011	"ENSG00000172775"
+"219128_at"	"C2orf42"	54980	"ENSG00000115998"
+"218134_s_at"	"RBM22"	55696	"ENSG00000086589"
+"220172_at"	"DCAF17"	80067	"ENSG00000115827"
+"218013_x_at"	"DCTN4"	51164	"ENSG00000132912"
+"216103_at"	"ACOT11"	26027	"ENSG00000162390"
+"217889_s_at"	"CYBRD1"	79901	"ENSG00000071967"
+"217443_at"	"DYNC1LI2-DT"	106699570	"ENSG00000246777"
+"219551_at"	"EAF2"	55840	"ENSG00000145088"
+"217510_at"	"CRX"	1406	"ENSG00000105392"
+"219632_s_at"	"TRPV1"	7442	"ENSG00000196689"
+"218346_s_at"	"SESN1"	27244	"ENSG00000080546"
+"219272_at"	"TRIM62"	55223	"ENSG00000116525"
+"216074_x_at"	"WWC1"	23286	"ENSG00000113645"
+"218035_s_at"	"RBM47"	54502	"ENSG00000163694"
+"217373_x_at"	"MDM2"	4193	"ENSG00000135679"
+"217542_at"	"MDM2"	4193	"ENSG00000135679"
+"215624_at"	"TSC2"	7249	"ENSG00000103197"
+"215735_s_at"	"TSC2"	7249	"ENSG00000103197"
+"216750_at"	"APBB2"	323	"ENSG00000163697"
+"218433_at"	"PANK3"	79646	"ENSG00000120137"
+"219713_at"	"SHPK"	23729	"ENSG00000197417"
+"219084_at"	"NSD1"	64324	"ENSG00000165671"
+"217097_s_at"	"PHTF2"	57157	"ENSG00000006576"
+"219743_at"	"HEY2"	23493	"ENSG00000135547"
+"218465_at"	"TMEM33"	55161	"ENSG00000109133"
+"218024_at"	"MPC1"	51660	"ENSG00000060762"
+"217076_s_at"	"HOXD3"	3232	"ENSG00000128652"
+"219394_at"	"PGS1"	9489	"ENSG00000087157"
+"216045_at"	"CCDC144A"	9720	"ENSG00000170160"
+"216255_s_at"	"GRM8"	2918	"ENSG00000179603"
+"216992_s_at"	"GRM8"	2918	"ENSG00000179603"
+"216256_at"	"GRM8"	2918	"ENSG00000179603"
+"218816_at"	"LRRC1"	55227	"ENSG00000137269"
+"217811_at"	"SELENOT"	51714	"ENSG00000198843"
+"216734_s_at"	"CXCR5"	643	"ENSG00000160683"
+"215723_s_at"	"PLD1"	5337	"ENSG00000075651"
+"215724_at"	"PLD1"	5337	"ENSG00000075651"
+"220324_at"	"LINC00472"	79940	"ENSG00000233237"
+"216330_s_at"	"POU6F1"	5463	"ENSG00000184271"
+"219582_at"	"OGFRL1"	79627	"ENSG00000119900"
+"220496_at"	"CLEC1B"	51266	"ENSG00000165682"
+"217987_at"	"ASNSD1"	54529	"ENSG00000138381"
+"217881_s_at"	"CDC27"	996	"ENSG00000004897"
+"217879_at"	"CDC27"	996	"ENSG00000004897"
+"217880_at"	"CDC27"	996	"ENSG00000004897"
+"217878_s_at"	"CDC27"	996	"ENSG00000004897"
+"215697_at"	""	NA	"ENSG00000279146"
+"217419_x_at"	"AGRN"	375790	"ENSG00000188157"
+"216893_s_at"	"COL4A3"	1285	"ENSG00000169031"
+"216898_s_at"	"COL4A3"	1285	"ENSG00000169031"
+"215622_x_at"	"PHF7"	51533	"ENSG00000010318"
+"217734_s_at"	"WDR6"	11180	"ENSG00000178252"
+"218091_at"	"AGFG1"	3267	"ENSG00000173744"
+"218092_s_at"	"AGFG1"	3267	"ENSG00000173744"
+"217231_s_at"	"MAST1"	22983	"ENSG00000105613"
+"220106_at"	"NPC1L1"	29881	"ENSG00000015520"
+"219154_at"	"TMEM120B"	144404	"ENSG00000188735"
+"217418_x_at"	"MS4A1"	931	"ENSG00000156738"
+"219045_at"	"RHOF"	54509	"ENSG00000139725"
+"217754_at"	"DDX56"	54606	"ENSG00000136271"
+"219636_s_at"	"ARMC9"	80210	"ENSG00000135931"
+"219637_at"	"ARMC9"	80210	"ENSG00000135931"
+"216356_x_at"	"BAIAP3"	8938	"ENSG00000007516"
+"218142_s_at"	"CRBN"	51185	"ENSG00000113851"
+"217978_s_at"	"UBE2Q1"	55585	"ENSG00000160714"
+"216232_s_at"	"GCN1"	10985	"ENSG00000089154"
+"219980_at"	"ABHD18"	80167	"ENSG00000164074"
+"218718_at"	"PDGFC"	56034	"ENSG00000145431"
+"215650_at"	""	NA	"ENSG00000280353"
+"217814_at"	"CCDC47"	57003	"ENSG00000108588"
+"215734_at"	"IZUMO4"	113177	"ENSG00000099840"
+"218103_at"	"FTSJ3"	117246	"ENSG00000108592"
+"215606_s_at"	"ERC1"	23085	"ENSG00000082805"
+"216690_at"	"OR7C1"	26664	"ENSG00000127530"
+"218576_s_at"	"DUSP12"	11266	"ENSG00000081721"
+"217550_at"	"ATF6"	22926	"ENSG00000118217"
+"220132_s_at"	"CLEC2D"	29121	"ENSG00000069493"
+"220448_at"	"KCNK12"	56660	"ENSG00000184261"
+"219208_at"	"FBXO11"	80204	"ENSG00000138081"
+"216975_x_at"	"NPAS1"	4861	"ENSG00000130751"
+"219219_at"	"TMEM160"	54958	"ENSG00000130748"
+"219696_at"	"DENND1B"	163486	"ENSG00000213047"
+"217946_s_at"	"SAE1"	10055	"ENSG00000142230"
+"218696_at"	"EIF2AK3"	9451	"ENSG00000172071"
+"220522_at"	"CRB1"	23418	"ENSG00000134376"
+"218803_at"	"CHFR"	55743	"ENSG00000072609"
+"216825_s_at"	"MPL"	4352	"ENSG00000117400"
+"218070_s_at"	"GMPPA"	29926	"ENSG00000144591"
+"219595_at"	"ZNF26"	7574	"ENSG00000198393"
+"220258_s_at"	"WRAP53"	55135	"ENSG00000141499"
+"219918_s_at"	"ASPM"	259266	"ENSG00000066279"
+"218912_at"	"GCC1"	79571	"ENSG00000179562"
+"218382_s_at"	"U2AF2"	11338	"ENSG00000063244"
+"218381_s_at"	"U2AF2"	11338	"ENSG00000063244"
+"220379_at"	"FSCN3"	29999	"ENSG00000106328"
+"220323_at"	"CCNP"	79935	"ENSG00000105219"
+"218926_at"	"MYNN"	55892	"ENSG00000085274"
+"219752_at"	"RASAL1"	8437	"ENSG00000111344"
+"220007_at"	"METTL8"	79828	"ENSG00000123600"
+"218548_x_at"	"TEX264"	51368	"ENSG00000164081"
+"218484_at"	"NDUFA4L2"	56901	"ENSG00000185633"
+"218704_at"	"RNF43"	54894	"ENSG00000108375"
+"219107_at"	"BCAN"	63827	"ENSG00000132692"
+"220041_at"	"PIGZ"	80235	"ENSG00000119227"
+"218678_at"	"NES"	10763	"ENSG00000132688"
+"219435_at"	"CTC1"	80169	"ENSG00000178971"
+"217892_s_at"	"LIMA1"	51474	"ENSG00000050405"
+"218914_at"	"METTL25B"	51093	"ENSG00000143303"
+"218270_at"	"MRPL24"	79590	"ENSG00000143314"
+"219035_s_at"	"RNF34"	80196	"ENSG00000170633"
+"218673_s_at"	"ATG7"	10533	"ENSG00000197548"
+"219337_at"	"C1orf159"	54991	"ENSG00000131591"
+"219217_at"	"NARS2"	79731	"ENSG00000137513"
+"218456_at"	"CAPRIN2"	65981	"ENSG00000110888"
+"215562_at"	"TTC39A"	22996	"ENSG00000085831"
+"217101_at"	"TTC39A"	22996	"ENSG00000085831"
+"219012_s_at"	"EMSY"	56946	"ENSG00000158636"
+"219558_at"	"ATP13A3"	79572	"ENSG00000133657"
+"219753_at"	"STAG3"	10734	"ENSG00000066923"
+"219365_s_at"	"CAMKV"	79012	"ENSG00000164076"
+"218710_at"	"TTC27"	55622	"ENSG00000018699"
+"218844_at"	"ACSF2"	80221	"ENSG00000167107"
+"220521_s_at"	"ATG16L1"	55054	"ENSG00000085978"
+"217124_at"	"IQCE"	23288	"ENSG00000106012"
+"218307_at"	"RSAD1"	55316	"ENSG00000136444"
+"218770_s_at"	"TMEM39B"	55116	"ENSG00000121775"
+"219848_s_at"	"ZNF432"	9668	"ENSG00000256087"
+"219585_at"	"CCDC28B"	79140	"ENSG00000160050"
+"217736_s_at"	"EIF2AK1"	27102	"ENSG00000086232"
+"217735_s_at"	"EIF2AK1"	27102	"ENSG00000086232"
+"220535_at"	"FAM90A1"	55138	"ENSG00000171847"
+"219841_at"	"AICDA"	57379	"ENSG00000111732"
+"217053_x_at"	"ETV1"	2115	"ENSG00000006468"
+"217061_s_at"	"ETV1"	2115	"ENSG00000006468"
+"216044_x_at"	"DIPK1A"	388650	"ENSG00000154511"
+"218490_s_at"	"ZNF302"	55900	"ENSG00000089335"
+"219538_at"	"WDR5B"	54554	"ENSG00000196981"
+"216126_at"	""	NA	"ENSG00000287533"
+"216552_x_at"	"KIR2DS4"	3809	"ENSG00000221957"
+"218512_at"	"WDR12"	55759	"ENSG00000138442"
+"219389_at"	"SUSD4"	55061	"ENSG00000143502"
+"217882_at"	"EMC3"	55831	"ENSG00000125037"
+"218140_x_at"	"SRPRB"	58477	"ENSG00000144867"
+"219618_at"	"IRAK4"	51135	"ENSG00000198001"
+"219900_s_at"	"ZNF446"	55663	"ENSG00000083838"
+"219733_s_at"	"SLC27A5"	10998	"ENSG00000083807"
+"219050_s_at"	"ZNHIT2"	741	"ENSG00000174276"
+"219605_at"	"ZNF3"	7551	"ENSG00000166526"
+"219604_s_at"	"ZNF3"	7551	"ENSG00000166526"
+"218135_at"	"ERGIC2"	51290	"ENSG00000087502"
+"218204_s_at"	"FYCO1"	79443	"ENSG00000163820"
+"220321_s_at"	"CCDC121"	79635	"ENSG00000176714"
+"218311_at"	"MAP4K3"	8491	"ENSG00000011566"
+"217545_at"	"MYH14"	79784	"ENSG00000105357"
+"217660_at"	"MYH14"	79784	"ENSG00000105357"
+"219946_x_at"	"MYH14"	79784	"ENSG00000105357"
+"216085_at"	"OBSCN"	84033	"ENSG00000154358"
+"218612_s_at"	"TSSC4"	10078	"ENSG00000184281"
+"219243_at"	"GIMAP4"	55303	"ENSG00000133574"
+"219777_at"	"GIMAP6"	474344	"ENSG00000133561"
+"220532_s_at"	"TMEM176B"	28959	"ENSG00000106565"
+"217873_at"	"CAB39"	51719	"ENSG00000135932"
+"215821_x_at"	"PSG3"	5671	"ENSG00000221826"
+"217897_at"	"FXYD6"	53826	"ENSG00000137726"
+"216645_at"	"TCF3"	6929	"ENSG00000071564"
+"219345_at"	"BOLA1"	51027	"ENSG00000178096"
+"215649_s_at"	"MVK"	4598	"ENSG00000110921"
+"216230_x_at"	"SMPD1"	6609	"ENSG00000166311"
+"217171_at"	"SMPD1"	6609	"ENSG00000166311"
+"218133_s_at"	"NIF3L1"	60491	"ENSG00000196290"
+"219565_at"	"CYP20A1"	57404	"ENSG00000119004"
+"219557_s_at"	"NRIP3"	56675	"ENSG00000175352"
+"217199_s_at"	"STAT2"	6773	"ENSG00000170581"
+"220417_s_at"	"THAP4"	51078	"ENSG00000176946"
+"216380_x_at"	""	NA	"ENSG00000235581"
+"217515_s_at"	"CACNA1S"	779	"ENSG00000081248"
+"219651_at"	"DPPA4"	55211	"ENSG00000121570"
+"217654_at"	"CFLAR"	8837	"ENSG00000003402"
+"215583_at"	"TMEM63A"	9725	"ENSG00000196187"
+"220158_at"	"LGALS14"	56891	"ENSG00000006659"
+"218292_s_at"	"PRKAG2"	51422	"ENSG00000106617"
+"220035_at"	"NUP210"	23225	"ENSG00000132182"
+"220278_at"	"KDM4D"	55693	"ENSG00000186280"
+"219818_s_at"	"GPATCH1"	55094	"ENSG00000076650"
+"219847_at"	"HDAC11"	79885	"ENSG00000163517"
+"218485_s_at"	"SLC35C1"	55343	"ENSG00000181830"
+"219491_at"	"LRFN4"	78999	"ENSG00000173621"
+"219109_at"	"SPAG16"	79582	"ENSG00000144451"
+"215749_s_at"	"GORASP1"	64689	"ENSG00000114745"
+"219832_s_at"	"HOXC13"	3229	"ENSG00000123364"
+"219360_s_at"	"TRPM4"	54795	"ENSG00000130529"
+"218959_at"	"HOXC10"	3226	"ENSG00000180818"
+"216096_s_at"	"NRXN1"	9378	"ENSG00000179915"
+"219594_at"	"NINJ2"	4815	"ENSG00000171840"
+"220043_s_at"	"MELTF"	4241	"ENSG00000163975"
+"217208_s_at"	"DLG1"	1739	"ENSG00000075711"
+"215988_s_at"	"DLG1"	1739	"ENSG00000075711"
+"219387_at"	"CCDC88A"	55704	"ENSG00000115355"
+"217766_s_at"	"TMEM50A"	23585	"ENSG00000183726"
+"218562_s_at"	"MACO1"	55219	"ENSG00000204178"
+"219495_s_at"	"ZNF180"	7733	"ENSG00000167384"
+"216283_s_at"	"PVR"	5817	"ENSG00000073008"
+"218299_at"	"C11orf24"	53838	"ENSG00000171067"
+"220243_at"	"ZBTB44"	29068	"ENSG00000196323"
+"216026_s_at"	"POLE"	5426	"ENSG00000177084"
+"219069_at"	"ANKRD49"	54851	"ENSG00000168876"
+"220036_s_at"	"LMBR1L"	55716	"ENSG00000139636"
+"217854_s_at"	"POLR2E"	5434	"ENSG00000099817"
+"219011_at"	"PLEKHA4"	57664	"ENSG00000105559"
+"218288_s_at"	"CCDC90B"	60492	"ENSG00000137500"
+"217836_s_at"	"YY1AP1"	55249	"ENSG00000163374"
+"216672_s_at"	"MYT1L"	23040	"ENSG00000186487"
+"218779_x_at"	"EPS8L1"	54869	"ENSG00000131037"
+"218778_x_at"	"EPS8L1"	54869	"ENSG00000131037"
+"216209_at"	"LINC00939"	400084	"ENSG00000249267"
+"220380_at"	"DNASE2B"	58511	"ENSG00000137976"
+"220282_at"	"RIC3"	79608	"ENSG00000166405"
+"219286_s_at"	"RBM15"	64783	"ENSG00000162775"
+"218560_s_at"	"JMJD4"	65094	"ENSG00000081692"
+"219323_s_at"	"IL18BP"	10068	"ENSG00000137496"
+"217805_at"	"ILF3"	3609	"ENSG00000129351"
+"217804_s_at"	"ILF3"	3609	"ENSG00000129351"
+"218744_s_at"	"PACSIN3"	29763	"ENSG00000165912"
+"217961_at"	"SLC25A38"	54977	"ENSG00000144659"
+"217087_at"	"C1orf68"	100129271	"ENSG00000198854"
+"217903_at"	"STRN4"	29888	"ENSG00000090372"
+"219853_at"	"FKRP"	79147	"ENSG00000181027"
+"218918_at"	"MAN1C1"	57134	"ENSG00000117643"
+"218242_s_at"	"KMT5B"	51111	"ENSG00000110066"
+"220397_at"	"MDM1"	56890	"ENSG00000111554"
+"217869_at"	"HSD17B12"	51144	"ENSG00000149084"
+"216962_at"	"RPAIN"	84268	"ENSG00000129197"
+"218685_s_at"	"SMUG1"	23583	"ENSG00000123415"
+"219397_at"	"COQ10B"	80219	"ENSG00000115520"
+"218457_s_at"	"DNMT3A"	1788	"ENSG00000119772"
+"218333_at"	"DERL2"	51009	"ENSG00000072849"
+"215845_x_at"	"ZNF567-DT"	101927621	"ENSG00000225975"
+"218211_s_at"	"MLPH"	79083	"ENSG00000115648"
+"218977_s_at"	"TRNAU1AP"	54952	"ENSG00000180098"
+"218277_s_at"	"DHX40"	79665	"ENSG00000108406"
+"218732_at"	"PTRH2"	51651	"ENSG00000141378"
+"218931_at"	"RAB17"	64284	"ENSG00000124839"
+"217899_at"	"TMEM214"	54867	"ENSG00000119777"
+"215698_at"	"KDM5A"	5927	"ENSG00000073614"
+"215758_x_at"	"ZNF93"	81931	"ENSG00000184635"
+"216468_s_at"	"ZNF682"	91120	"ENSG00000197124"
+"220206_at"	"ZMYM1"	79830	"ENSG00000197056"
+"218480_at"	"AGBL5"	60509	"ENSG00000084693"
+"216083_s_at"	"NEU3"	10825	"ENSG00000162139"
+"215576_at"	"ATP6V0E1P2"	NA	"ENSG00000223513"
+"217173_s_at"	"LDLR"	3949	"ENSG00000130164"
+"217861_s_at"	"PREB"	10113	"ENSG00000138073"
+"219504_s_at"	"RPAP2"	79871	"ENSG00000122484"
+"219550_at"	"ROBO3"	64221	"ENSG00000154134"
+"218934_s_at"	"HSPB7"	27129	"ENSG00000173641"
+"217992_s_at"	"EFHD2"	79180	"ENSG00000142634"
+"220466_at"	"CCDC15"	80071	"ENSG00000149548"
+"219329_s_at"	"ATRAID"	51374	"ENSG00000138085"
+"218972_at"	"TTC17"	55761	"ENSG00000052841"
+"219073_s_at"	"OSBPL10"	114884	"ENSG00000144645"
+"215716_s_at"	"ATP2B1"	490	"ENSG00000070961"
+"220178_at"	"MFSD12"	126321	"ENSG00000161091"
+"219178_at"	"QTRT2"	79691	"ENSG00000151576"
+"217884_at"	"NAT10"	55226	"ENSG00000135372"
+"218157_x_at"	"CDC42SE1"	56882	"ENSG00000197622"
+"218611_at"	"IER5"	51278	"ENSG00000162783"
+"220437_at"	"ANGPTL8"	55908	"ENSG00000130173"
+"219032_x_at"	"OPN3"	23596	"ENSG00000054277"
+"219068_x_at"	"ATAD3A"	55210	"ENSG00000197785"
+"219101_x_at"	"ABHD8"	79575	"ENSG00000127220"
+"218260_at"	"DDA1"	79016	"ENSG00000130311"
+"216439_at"	"TNK2"	10188	"ENSG00000061938"
+"218318_s_at"	"NLK"	51701	"ENSG00000087095"
+"218324_s_at"	"SPATS2"	65244	"ENSG00000123352"
+"220047_at"	"SIRT4"	23409	"ENSG00000089163"
+"219764_at"	"FZD10"	11211	"ENSG00000111432"
+"216957_at"	"PRIM1"	5557	"ENSG00000198056"
+"218729_at"	"LXN"	56925	"ENSG00000079257"
+"219944_at"	"CLIP4"	79745	"ENSG00000115295"
+"218841_at"	"ASB8"	140461	"ENSG00000177981"
+"216331_at"	"ITGA7"	3679	"ENSG00000135424"
+"216279_at"	"ZNF460"	10794	"ENSG00000197714"
+"216273_at"	""	NA	"ENSG00000279541"
+"215766_at"	"ZNF548"	147694	"ENSG00000188785"
+"217561_at"	"CALCA"	796	"ENSG00000110680"
+"217495_x_at"	"CALCA"	796	"ENSG00000110680"
+"217607_x_at"	"EIF4G2"	1982	"ENSG00000110321"
+"219149_x_at"	"DBR1"	51163	"ENSG00000138231"
+"219094_at"	"ARMC8"	25852	"ENSG00000114098"
+"217730_at"	"TMBIM1"	64114	"ENSG00000135926"
+"215714_s_at"	"SMARCA4"	6597	"ENSG00000127616"
+"217507_at"	"SLC11A1"	6556	"ENSG00000018280"
+"217473_x_at"	"SLC11A1"	6556	"ENSG00000018280"
+"218574_s_at"	"LMCD1"	29995	"ENSG00000071282"
+"220244_at"	"LMCD1"	29995	"ENSG00000071282"
+"219989_s_at"	"ANKS1B"	56899	"ENSG00000185046"
+"218253_s_at"	"EIF2D"	1939	"ENSG00000143486"
+"216419_at"	"CROCC"	9696	"ENSG00000058453"
+"219740_at"	"VASH2"	79805	"ENSG00000143494"
+"220033_at"	"CYB5RL"	606495	"ENSG00000215883"
+"217829_s_at"	"USP39"	10713	"ENSG00000168883"
+"218437_s_at"	"LZTFL1"	54585	"ENSG00000163818"
+"219173_at"	"MYO15B"	80022	"ENSG00000266714"
+"217716_s_at"	"SEC61A1"	29927	"ENSG00000058262"
+"220481_at"	"GPR75"	10936	"ENSG00000119737"
+"215747_s_at"	"RCC1"	1104	"ENSG00000180198"
+"218045_x_at"	"PTMS"	5763	"ENSG00000159335"
+"216973_s_at"	"HOXB7"	3217	"ENSG00000260027"
+"216417_x_at"	"HOXB9"	3219	"ENSG00000170689"
+"220090_at"	"CRNN"	49860	"ENSG00000143536"
+"217964_at"	"TTC19"	54902	"ENSG00000011295"
+"217943_s_at"	"MAP7D1"	55700	"ENSG00000116871"
+"216930_at"	"HNF1A"	6927	"ENSG00000135100"
+"218703_at"	"SEC22A"	26984	"ENSG00000121542"
+"217728_at"	"S100A6"	6277	"ENSG00000197956"
+"219680_at"	"NLRX1"	79671	"ENSG00000160703"
+"220348_at"	"KLHL29"	114818	"ENSG00000119771"
+"218677_at"	"S100A14"	57402	"ENSG00000189334"
+"219799_s_at"	"DHRS9"	10170	"ENSG00000073737"
+"220193_at"	"SH3D21"	79729	"ENSG00000214193"
+"216310_at"	"TAOK1"	57551	"ENSG00000160551"
+"217055_x_at"	"SLC1A2"	6506	"ENSG00000110436"
+"220134_x_at"	"EVA1B"	55194	"ENSG00000142694"
+"219176_at"	"MAIP1"	79568	"ENSG00000162972"
+"220097_s_at"	"TMEM104"	54868	"ENSG00000109066"
+"218990_s_at"	"SPRR3"	6707	"ENSG00000163209"
+"217442_at"	"CADM3-AS1"	NA	"ENSG00000225670"
+"220056_at"	"IL22RA1"	58985	"ENSG00000142677"
+"216219_at"	"AQP6"	363	"ENSG00000086159"
+"220443_s_at"	"VAX2"	25806	"ENSG00000116035"
+"216601_at"	"AOC4P"	90586	"ENSG00000291070"
+"218231_at"	"NAGK"	55577	"ENSG00000124357"
+"217796_s_at"	"NPLOC4"	55666	"ENSG00000182446"
+"218478_s_at"	"ZCCHC8"	55596	"ENSG00000033030"
+"216640_s_at"	"PDIA6"	10130	"ENSG00000143870"
+"219986_s_at"	"ACAD10"	80724	"ENSG00000111271"
+"217685_at"	"CSNK1D"	1453	"ENSG00000141551"
+"217007_s_at"	"ADAM15"	8751	"ENSG00000143537"
+"218591_s_at"	"NOL10"	79954	"ENSG00000115761"
+"219817_at"	"MAPKAPK5-AS1"	51275	"ENSG00000234608"
+"218733_at"	"MSL2"	55167	"ENSG00000174579"
+"219614_s_at"	"SLC6A20"	54716	"ENSG00000163817"
+"220031_at"	"OTUD7B"	56957	"ENSG00000264522"
+"216689_x_at"	"ARHGAP1"	392	"ENSG00000175220"
+"219998_at"	"LGALSL"	29094	"ENSG00000119862"
+"219224_x_at"	"ZNF408"	79797	"ENSG00000175213"
+"217850_at"	"GNL3"	26354	"ENSG00000163938"
+"218146_at"	"GLT8D1"	55830	"ENSG00000016864"
+"218147_s_at"	"GLT8D1"	55830	"ENSG00000016864"
+"217927_at"	"SPCS1"	28972	"ENSG00000114902"
+"219670_at"	"BEND5"	79656	"ENSG00000162373"
+"217247_at"	""	NA	"ENSG00000236741"
+"215788_at"	"CFAP74"	85452	"ENSG00000142609"
+"216807_at"	"CFAP74"	85452	"ENSG00000142609"
+"217939_s_at"	"AFTPH"	54812	"ENSG00000119844"
+"220338_at"	"RALGPS2"	55103	"ENSG00000116191"
+"215770_at"	"OR7E2P"	NA	"ENSG00000255203"
+"218665_at"	"FZD4"	8322	"ENSG00000174804"
+"217973_at"	"DCXR"	51181	"ENSG00000169738"
+"217155_at"	""	NA	"ENSG00000244535"
+"219705_at"	"QSER1"	79832	"ENSG00000060749"
+"217782_s_at"	"GPS1"	2873	"ENSG00000169727"
+"217028_at"	"CXCR4"	7852	"ENSG00000121966"
+"217144_at"	"UBBP1"	NA	"ENSG00000230037"
+"216874_at"	"TEX41"	401014	"ENSG00000226674"
+"217666_at"	"NAA50"	80218	"ENSG00000121579"
+"217745_s_at"	"NAA50"	80218	"ENSG00000121579"
+"219313_at"	"GRAMD1C"	54762	"ENSG00000178075"
+"219249_s_at"	"FKBP10"	60681	"ENSG00000141756"
+"219238_at"	"PIGV"	55650	"ENSG00000060642"
+"216464_x_at"	"PTGDR2"	11251	"ENSG00000183134"
+"218799_at"	"GPN2"	54707	"ENSG00000142751"
+"218895_at"	"GPATCH3"	63906	"ENSG00000198746"
+"219611_s_at"	"CEP85"	64793	"ENSG00000130695"
+"219823_at"	"LIN28A"	79727	"ENSG00000131914"
+"218073_s_at"	"NDC1"	55706	"ENSG00000058804"
+"219405_at"	"TRIM68"	55128	"ENSG00000167333"
+"217969_at"	"VPS51"	738	"ENSG00000149823"
+"217779_s_at"	"PNRC2"	55629	"ENSG00000189266"
+"216835_s_at"	"DOK1"	1796	"ENSG00000115325"
+"216624_s_at"	"KMT2A"	4297	"ENSG00000118058"
+"217110_s_at"	"MUC4"	4585	"ENSG00000145113"
+"220322_at"	"IL36G"	56300	"ENSG00000136688"
+"216243_s_at"	"IL1RN"	3557	"ENSG00000136689"
+"216244_at"	"IL1RN"	3557	"ENSG00000136689"
+"220223_at"	"ATAD5"	79915	"ENSG00000176208"
+"219146_at"	"TEFM"	79736	"ENSG00000172171"
+"216115_at"	"NF1"	4763	"ENSG00000196712"
+"218917_s_at"	"ARID1A"	8289	"ENSG00000117713"
+"219209_at"	"IFIH1"	64135	"ENSG00000115267"
+"216020_at"	"IFIH1"	64135	"ENSG00000115267"
+"218130_at"	"CYBC1"	79415	"ENSG00000178927"
+"216508_x_at"	"HMGB1P4"	NA	"ENSG00000214821"
+"219155_at"	"PITPNC1"	26207	"ENSG00000154217"
+"218080_x_at"	"FAF1"	11124	"ENSG00000185104"
+"219997_s_at"	"COPS7B"	64708	"ENSG00000144524"
+"217540_at"	"NXPE3"	91775	"ENSG00000144815"
+"218991_at"	"HEATR6"	63897	"ENSG00000068097"
+"220488_s_at"	"BCAS3"	54828	"ENSG00000141376"
+"219769_at"	"INCENP"	3619	"ENSG00000149503"
+"216120_s_at"	"ATP2B2"	491	"ENSG00000157087"
+"216041_x_at"	"GRN"	2896	"ENSG00000030582"
+"219770_at"	"GTDC1"	79712	"ENSG00000121964"
+"219430_at"	"GPR137"	56834	"ENSG00000173264"
+"220113_x_at"	"POLR1B"	84172	"ENSG00000125630"
+"215660_s_at"	"MAST2"	23139	"ENSG00000086015"
+"215903_s_at"	"MAST2"	23139	"ENSG00000086015"
+"217359_s_at"	"NCAM1"	4684	"ENSG00000149294"
+"219259_at"	"SEMA4A"	64218	"ENSG00000196189"
+"218077_s_at"	"ZDHHC3"	51304	"ENSG00000163812"
+"218078_s_at"	"ZDHHC3"	51304	"ENSG00000163812"
+"217388_s_at"	"KYNU"	8942	"ENSG00000115919"
+"219587_at"	"TTC12"	54970	"ENSG00000149292"
+"220117_at"	"ZNF385D"	79750	"ENSG00000151789"
+"218870_at"	"ARHGAP15"	55843	"ENSG00000075884"
+"219886_at"	"CEP97"	79598	"ENSG00000182504"
+"216924_s_at"	"DRD2"	1813	"ENSG00000149295"
+"216938_x_at"	"DRD2"	1813	"ENSG00000149295"
+"219768_at"	"VTCN1"	79679	"ENSG00000134258"
+"218765_at"	"SIDT2"	51092	"ENSG00000149577"
+"219521_at"	"B3GAT1"	27087	"ENSG00000109956"
+"219226_at"	"CDK12"	51755	"ENSG00000167258"
+"219248_at"	"THUMPD2"	80745	"ENSG00000138050"
+"219222_at"	"RBKS"	64080	"ENSG00000171174"
+"218881_s_at"	"FOSL2"	2355	"ENSG00000075426"
+"218880_at"	"FOSL2"	2355	"ENSG00000075426"
+"220058_at"	"GID4"	79018	"ENSG00000141034"
+"217908_s_at"	"DCAF6"	55827	"ENSG00000143164"
+"218452_at"	"SMARCAL1"	50485	"ENSG00000138375"
+"220288_at"	"MYO15A"	51168	"ENSG00000091536"
+"219130_at"	"TRMT13"	54482	"ENSG00000122435"
+"216795_at"	"ADGRL2"	23266	"ENSG00000117114"
+"219279_at"	"DOCK10"	55619	"ENSG00000135905"
+"217008_s_at"	"GRM7"	2917	"ENSG00000196277"
+"217591_at"	"SKIL"	6498	"ENSG00000136603"
+"218634_at"	"PHLDA3"	23612	"ENSG00000174307"
+"217885_at"	"IPO9"	55705	"ENSG00000198700"
+"218051_s_at"	"NT5DC2"	64943	"ENSG00000168268"
+"219127_at"	"PRR15L"	79170	"ENSG00000167183"
+"220355_s_at"	"PBRM1"	55193	"ENSG00000163939"
+"219561_at"	"COPZ2"	51226	"ENSG00000005243"
+"217857_s_at"	"RBM8A"	9939	"ENSG00000265241"
+"217856_at"	"RBM8A"	9939	"ENSG00000265241"
+"218164_at"	"SPATA20"	64847	"ENSG00000006282"
+"218053_at"	"PRPF40A"	55660	"ENSG00000196504"
+"219120_at"	"WDCP"	80304	"ENSG00000163026"
+"218583_s_at"	"DCUN1D1"	54165	"ENSG00000043093"
+"215918_s_at"	"SPTBN1"	6711	"ENSG00000115306"
+"218440_at"	"MCCC1"	56922	"ENSG00000078070"
+"217900_at"	"IARS2"	55699	"ENSG00000067704"
+"216057_at"	"RAB3GAP2"	25782	"ENSG00000118873"
+"217837_s_at"	"CHMP3"	51652	"ENSG00000115561"
+"220280_s_at"	"ANKMY1"	51281	"ENSG00000144504"
+"215855_s_at"	"TMF1"	7110	"ENSG00000144747"
+"216963_s_at"	"GAP43"	2596	"ENSG00000172020"
+"219906_at"	"EBLN2"	55096	"ENSG00000255423"
+"218202_x_at"	"MRPL44"	65080	"ENSG00000135900"
+"218082_s_at"	"UBP1"	7342	"ENSG00000153560"
+"217944_at"	"POMGNT1"	55624	"ENSG00000085998"
+"219714_s_at"	"CACNA2D3"	55799	"ENSG00000157445"
+"216976_s_at"	"RYK"	6259	"ENSG00000163785"
+"218736_s_at"	"PALMD"	54873	"ENSG00000099260"
+"219846_at"	"GON4L"	54856	"ENSG00000116580"
+"218181_s_at"	"MAP4K4"	9448	"ENSG00000071054"
+"218341_at"	"PPCS"	79717	"ENSG00000127125"
+"219939_s_at"	"CSDE1"	7812	"ENSG00000009307"
+"215913_s_at"	"GULP1"	51454	"ENSG00000144366"
+"219836_at"	"ZBED2"	79413	"ENSG00000177494"
+"218633_x_at"	"ABHD10"	55347	"ENSG00000144827"
+"220518_at"	"ABI3BP"	25890	"ENSG00000154175"
+"215591_at"	"SATB2"	23314	"ENSG00000119042"
+"216248_s_at"	"NR4A2"	4929	"ENSG00000153234"
+"217795_s_at"	"TMEM43"	79188	"ENSG00000170876"
+"217606_at"	""	NA	"ENSG00000279227"
+"217748_at"	"ADIPOR1"	51094	"ENSG00000159346"
+"215636_at"	"UBR4"	23352	"ENSG00000127481"
+"215627_at"	"ERICH2-DT"	101926913	"ENSG00000234350"
+"216381_x_at"	"AKR7A3"	22977	"ENSG00000162482"
+"215623_x_at"	"SMC4"	10051	"ENSG00000113810"
+"215792_s_at"	"DNAJC11"	55735	"ENSG00000007923"
+"218226_s_at"	"NDUFB4"	4710	"ENSG00000065518"
+"216433_s_at"	"PRDM2"	7799	"ENSG00000116731"
+"216317_x_at"	"RHCE"	6006	"ENSG00000188672"
+"215991_s_at"	"EMC1"	23065	"ENSG00000127463"
+"219858_s_at"	"MFSD6"	54842	"ENSG00000151690"
+"216188_at"	"MYCNOS"	10408	"ENSG00000233718"
+"219590_x_at"	"DPH5"	51611	"ENSG00000117543"
+"216925_s_at"	"TAL1"	6886	"ENSG00000162367"
+"220342_x_at"	"EDEM3"	80267	"ENSG00000116406"
+"217189_s_at"	"SMG7"	9887	"ENSG00000116698"
+"220428_at"	"CD207"	50489	"ENSG00000116031"
+"216556_x_at"	"SUMO1P2"	NA	"ENSG00000229612"
+"216177_at"	"RPL29P7"	NA	"ENSG00000213063"
+"219843_at"	"IPP"	3652	"ENSG00000197429"
+"219567_s_at"	"EXO5"	64789	"ENSG00000164002"
+"217564_s_at"	"CPS1"	1373	"ENSG00000021826"
+"219976_at"	"HOOK1"	51361	"ENSG00000134709"
+"217070_at"	"MTHFR"	4524	"ENSG00000177000"
+"217071_s_at"	"MTHFR"	4524	"ENSG00000177000"
+"220479_at"	"CPS1-IT1"	29034	"ENSG00000280837"
+"220012_at"	"ERO1B"	56605	"ENSG00000086619"
+"216221_s_at"	"PUM2"	23369	"ENSG00000055917"
+"219527_at"	"MTARC2"	54996	"ENSG00000117791"
+"218865_at"	"MTARC1"	64757	"ENSG00000186205"
+"218863_s_at"	"TNS1"	7145	"ENSG00000079308"
+"218864_at"	"TNS1"	7145	"ENSG00000079308"
+"216748_at"	"PYHIN1"	149628	"ENSG00000163564"
+"218232_at"	"C1QA"	712	"ENSG00000173372"
+"220251_at"	"UTP25"	27042	"ENSG00000117597"
+"217196_s_at"	"CAMSAP2"	23271	"ENSG00000118200"
+"219093_at"	"PID1"	55022	"ENSG00000153823"
+"219010_at"	"INAVA"	55765	"ENSG00000163362"
+"217528_at"	"CLCA2"	9635	"ENSG00000137975"
+"220026_at"	"CLCA4"	22802	"ENSG00000016602"
+"220078_at"	"USP48"	84196	"ENSG00000090686"
+"220079_s_at"	"USP48"	84196	"ENSG00000090686"
+"218617_at"	"TRIT1"	54802	"ENSG00000043514"
+"220484_at"	"MCOLN3"	55283	"ENSG00000055732"
+"216873_s_at"	"ATP8B2"	57198	"ENSG00000143515"
+"219873_at"	"COLEC11"	78989	"ENSG00000118004"
+"220365_at"	"ALLC"	55821	"ENSG00000151360"
+"218367_x_at"	"USP21"	27005	"ENSG00000143258"
+"219137_s_at"	"MFF"	56947	"ENSG00000168958"
+"219026_s_at"	"RASAL2"	9462	"ENSG00000075391"
+"220435_at"	"SLC30A10"	55532	"ENSG00000196660"
+"217820_s_at"	"ENAH"	55740	"ENSG00000154380"
+"218660_at"	"DYSF"	8291	"ENSG00000135636"
+"215783_s_at"	"ALPL"	249	"ENSG00000162551"
+"219957_at"	"LRRFIP1"	9208	"ENSG00000124831"
+"218004_at"	"BSDC1"	55108	"ENSG00000160058"
+"217929_s_at"	"KIAA0319L"	79932	"ENSG00000142687"
+"218291_at"	"LAMTOR2"	28956	"ENSG00000116586"
+"215947_s_at"	"FAM136A"	84908	"ENSG00000035141"
+"219367_s_at"	"NRP2"	8828	"ENSG00000118257"
+"219322_s_at"	"WRAP73"	49856	"ENSG00000116213"
+"219617_at"	"CAMKMT"	79823	"ENSG00000143919"
+"216945_x_at"	"PASK"	23178	"ENSG00000115687"
+"219490_s_at"	"DCLRE1B"	64858	"ENSG00000118655"
+"216001_at"	"PRAMEF12"	390999	"ENSG00000116726"
+"216302_at"	"HNRNPCL1"	343069	"ENSG00000179172"
+"219783_at"	"SLC35F6"	54978	"ENSG00000213699"
+"219305_x_at"	"FBXO2"	26232	"ENSG00000116661"
+"218462_at"	"RPF1"	80135	"ENSG00000117133"
+"218923_at"	"CTBS"	1486	"ENSG00000117151"
+"216016_at"	"NLRP3"	114548	"ENSG00000162711"
+"219662_at"	"C2orf49"	79074	"ENSG00000135974"
+"219649_at"	"ALG6"	29929	"ENSG00000088035"
+"219648_at"	"MREG"	55686	"ENSG00000118242"
+"220290_at"	"CRYBG2"	55057	"ENSG00000176092"
+"220289_s_at"	"CRYBG2"	55057	"ENSG00000176092"
+"219481_at"	"TTC13"	79573	"ENSG00000143643"
+"217844_at"	"CTDSP1"	58190	"ENSG00000144579"
+"218659_at"	"ASXL2"	55252	"ENSG00000143970"
+"217855_x_at"	"SDF4"	51150	"ENSG00000078808"
+"218223_s_at"	"PLEKHO1"	51177	"ENSG00000023902"
+"219464_at"	"CA14"	23632	"ENSG00000118298"
+"218389_s_at"	"APH1A"	51107	"ENSG00000117362"
+"219506_at"	"C1orf54"	79630	"ENSG00000118292"
+"218580_x_at"	"AURKAIP1"	54998	"ENSG00000175756"
+"219278_at"	"MAP3K6"	9064	"ENSG00000142733"
+"217489_s_at"	"IL6R"	3570	"ENSG00000160712"
+"217870_s_at"	"CMPK1"	51727	"ENSG00000162368"
+"219331_s_at"	"KLHDC8A"	55220	"ENSG00000162873"
+"217552_x_at"	"CR1"	1378	"ENSG00000203710"
+"217484_at"	"CR1"	1378	"ENSG00000203710"
+"218287_s_at"	"AGO1"	26523	"ENSG00000092847"
+"219426_at"	"AGO3"	192669	"ENSG00000126070"
+"216036_x_at"	"WDTC1"	23038	"ENSG00000142784"
+"215953_at"	"SMG7-AS1"	NA	"ENSG00000232860"
+"216968_at"	"MASP2"	10747	"ENSG00000009724"
+"220424_at"	"NPHS2"	7827	"ENSG00000116218"
+"219375_at"	"CEPT1"	10390	"ENSG00000134255"
+"220387_s_at"	"HHLA3"	11147	"ENSG00000197568"
+"219131_at"	"UBIAD1"	29914	"ENSG00000120942"
+"216584_at"	"UBE2V2P3"	NA	"ENSG00000238199"
+"218547_at"	"DHDDS"	79947	"ENSG00000117682"
+"219404_at"	"EPS8L3"	79574	"ENSG00000198758"
+"217294_s_at"	"ENO1"	2023	"ENSG00000074800"
+"216855_s_at"	"HNRNPU"	3192	"ENSG00000153187"
+"216868_s_at"	""	NA	"ENSG00000273175"
+"218107_at"	"WDR26"	80232	"ENSG00000162923"
+"215756_at"	"BTG2-DT"	730227	"ENSG00000233791"
+"218459_at"	"TOR3A"	64222	"ENSG00000186283"
+"216100_s_at"	"TOR1AIP1"	26092	"ENSG00000143337"
+"217544_at"	"ZNF731P"	NA	"ENSG00000227671"
+"215563_s_at"	""	NA	"ENSG00000290851"
+"220298_s_at"	"SPATA6"	54558	"ENSG00000132122"
+"220299_at"	"SPATA6"	54558	"ENSG00000132122"
+"217886_at"	"EPS15"	2060	"ENSG00000085832"
+"217887_s_at"	"EPS15"	2060	"ENSG00000085832"
+"217250_s_at"	"CHD5"	26038	"ENSG00000116254"
+"216674_at"	"HES2"	54626	"ENSG00000069812"
+"218683_at"	"PTBP2"	58155	"ENSG00000117569"
+"217991_x_at"	"SSBP3"	23648	"ENSG00000157216"
+"215728_s_at"	"ACOT7"	11332	"ENSG00000097021"
+"220461_at"	"PCNX2"	80003	"ENSG00000135749"
+"216220_s_at"	"ADORA1"	134	"ENSG00000163485"
+"219139_s_at"	""	114819	"ENSG00000290842"
+"218712_at"	"C1orf109"	54955	"ENSG00000116922"
+"218647_s_at"	"YRDC"	79693	"ENSG00000196449"
+"218818_at"	"FHL3"	2275	"ENSG00000183386"
+"218235_s_at"	"UTP11"	51118	"ENSG00000183520"
+"219988_s_at"	"RNF220"	55182	"ENSG00000187147"
+"215765_at"	"LRRC41"	10489	"ENSG00000132128"
+"218552_at"	"ECHDC2"	55268	"ENSG00000121310"
+"219330_at"	"VANGL1"	81839	"ENSG00000173218"
+"216484_x_at"	"HDGF"	3068	"ENSG00000143321"
+"218407_x_at"	"NENF"	29937	"ENSG00000117691"
+"220358_at"	"BATF3"	55509	"ENSG00000123685"
+"217358_at"	"DNAJC16"	23341	"ENSG00000116138"
+"224195_at"	"TTTY12"	83867	"ENSG00000237048"
+"224040_at"	"TTTY5"	83863	"ENSG00000215560"
+"224293_at"	"TTTY10"	246119	"ENSG00000229236"
+"224003_at"	"TTTY14"	83869	"ENSG00000176728"
+"224270_at"	""	NA	"ENSG00000225876"
+"221179_at"	"PRORY"	NA	"ENSG00000183146"
+"224292_at"	"TTTY13"	83868	"ENSG00000184991"
+"224174_at"	"TTTY11"	83866	"ENSG00000290381"
+"223646_s_at"	""	246126	"ENSG00000291033"
+"223790_at"	"KATNAL1"	84056	"ENSG00000102781"
+"224731_at"	"HMGB1"	3146	"ENSG00000189403"
+"224734_at"	"HMGB1"	3146	"ENSG00000189403"
+"221503_s_at"	"KPNA3"	3839	"ENSG00000102753"
+"221502_at"	"KPNA3"	3839	"ENSG00000102753"
+"220753_s_at"	"CRYL1"	51084	"ENSG00000165475"
+"221003_s_at"	"CAB39L"	81617	"ENSG00000102547"
+"224054_at"	""	NA	"ENSG00000273115"
+"221328_at"	"CLDN17"	26285	"ENSG00000156282"
+"224919_at"	"MRPS6"	64968	"ENSG00000243927"
+"222311_s_at"	"SCAF4"	57466	"ENSG00000156304"
+"222310_at"	"SCAF4"	57466	"ENSG00000156304"
+"220941_s_at"	"C21orf91"	54149	"ENSG00000154642"
+"221158_at"	"PAXBP1"	94104	"ENSG00000159086"
+"223810_at"	"KLHL1"	57626	"ENSG00000150361"
+"222502_s_at"	"UFM1"	51569	"ENSG00000120686"
+"224298_s_at"	"UBAC2"	337867	"ENSG00000134882"
+"220997_s_at"	"DIAPH3"	81624	"ENSG00000139734"
+"221019_s_at"	"COLEC12"	81035	"ENSG00000158270"
+"224181_at"	"LINC00470"	NA	"ENSG00000132204"
+"224045_x_at"	"LINC00470"	NA	"ENSG00000132204"
+"223977_s_at"	"LINC00470"	NA	"ENSG00000132204"
+"223450_s_at"	"COG3"	83548	"ENSG00000136152"
+"225539_at"	"ZBTB21"	49854	"ENSG00000173276"
+"221015_s_at"	"CDADC1"	81602	"ENSG00000102543"
+"223527_s_at"	"CDADC1"	81602	"ENSG00000102543"
+"222607_s_at"	"DIS3"	22894	"ENSG00000083520"
+"221134_at"	"ANGPT4"	51378	"ENSG00000101280"
+"221414_s_at"	"DEFB126"	81623	"ENSG00000125788"
+"223654_s_at"	"CELF4"	56853	"ENSG00000101489"
+"223653_x_at"	"CELF4"	56853	"ENSG00000101489"
+"220627_at"	"CST8"	10047	"ENSG00000125815"
+"223002_s_at"	"XRN2"	22803	"ENSG00000088930"
+"222492_at"	"PDXK"	8566	"ENSG00000160209"
+"222733_x_at"	"RRP1"	8568	"ENSG00000160214"
+"224282_s_at"	"AGPAT3"	56894	"ENSG00000160216"
+"223183_at"	"AGPAT3"	56894	"ENSG00000160216"
+"225440_at"	"AGPAT3"	56894	"ENSG00000160216"
+"223182_s_at"	"AGPAT3"	56894	"ENSG00000160216"
+"223184_s_at"	"AGPAT3"	56894	"ENSG00000160216"
+"223251_s_at"	"ANKRD10"	55608	"ENSG00000088448"
+"222559_s_at"	"RPRD1A"	55197	"ENSG00000141425"
+"222558_at"	"RPRD1A"	55197	"ENSG00000141425"
+"225473_at"	"SOGA1"	140710	"ENSG00000149639"
+"220747_at"	"LINC00652"	NA	"ENSG00000179935"
+"221170_at"	"HRH4"	59340	"ENSG00000134489"
+"221169_s_at"	"HRH4"	59340	"ENSG00000134489"
+"221365_at"	"MLNR"	2862	"ENSG00000102539"
+"222508_s_at"	"ARGLU1"	55082	"ENSG00000134884"
+"221528_s_at"	"ELMO2"	63916	"ENSG00000062598"
+"221883_at"	"PKNOX1"	5316	"ENSG00000160199"
+"221370_at"	""	NA	"ENSG00000288262"
+"222175_s_at"	"MED15"	51586	"ENSG00000099917"
+"221024_s_at"	"SLC2A10"	81031	"ENSG00000197496"
+"225037_at"	"SLC35C2"	51006	"ENSG00000080189"
+"221237_s_at"	"OSBP2"	23762	"ENSG00000184792"
+"223432_at"	"OSBP2"	23762	"ENSG00000184792"
+"223299_at"	"SEC11C"	90701	"ENSG00000166562"
+"220679_s_at"	"CDH7"	1005	"ENSG00000081138"
+"221442_at"	"MC3R"	4159	"ENSG00000124089"
+"224909_s_at"	"PREX1"	57580	"ENSG00000124126"
+"224925_at"	"PREX1"	57580	"ENSG00000124126"
+"221467_at"	"MC4R"	4160	"ENSG00000166603"
+"225302_at"	"TMX3"	54495	"ENSG00000166479"
+"222277_at"	"PCOTH"	542767	"ENSG00000205861"
+"222486_s_at"	"ADAMTS1"	9510	"ENSG00000154734"
+"222162_s_at"	"ADAMTS1"	9510	"ENSG00000154734"
+"224219_s_at"	"TRPC4"	7223	"ENSG00000133107"
+"224220_x_at"	"TRPC4"	7223	"ENSG00000133107"
+"220817_at"	"TRPC4"	7223	"ENSG00000133107"
+"220818_s_at"	"TRPC4"	7223	"ENSG00000133107"
+"221632_s_at"	"WDR4"	10785	"ENSG00000160193"
+"221631_at"	"CACNA1I"	8911	"ENSG00000100346"
+"221689_s_at"	"PIGP"	51227	"ENSG00000185808"
+"221095_s_at"	"KCNE2"	9992	"ENSG00000159197"
+"223526_at"	"C18orf21"	83608	"ENSG00000141428"
+"220821_at"	"GALR1"	2587	"ENSG00000166573"
+"225376_at"	"GID8"	54994	"ENSG00000101193"
+"222450_at"	"PMEPA1"	56937	"ENSG00000124225"
+"222449_at"	"PMEPA1"	56937	"ENSG00000124225"
+"220675_s_at"	"PNPLA3"	80339	"ENSG00000100344"
+"222698_s_at"	"IMPACT"	55364	"ENSG00000154059"
+"222761_at"	"BIVM"	54841	"ENSG00000134897"
+"225446_at"	"BRWD1"	54014	"ENSG00000185658"
+"222438_at"	"MED4"	29079	"ENSG00000136146"
+"224882_at"	"ACSS1"	84532	"ENSG00000154930"
+"222626_at"	"RBM26"	64062	"ENSG00000139746"
+"221484_at"	"B4GALT5"	9334	"ENSG00000158470"
+"221485_at"	"B4GALT5"	9334	"ENSG00000158470"
+"225407_at"	"MBP"	4155	"ENSG00000197971"
+"225408_at"	"MBP"	4155	"ENSG00000197971"
+"222897_s_at"	"ZFP64"	55734	"ENSG00000020256"
+"224368_s_at"	"NDRG3"	57446	"ENSG00000101079"
+"221082_s_at"	"NDRG3"	57446	"ENSG00000101079"
+"224400_s_at"	"CHST9"	83539	"ENSG00000154080"
+"223737_x_at"	"CHST9"	83539	"ENSG00000154080"
+"224493_x_at"	"TMEM241"	85019	"ENSG00000134490"
+"222446_s_at"	"BACE2"	25825	"ENSG00000182240"
+"224542_s_at"	"NFATC2"	4773	"ENSG00000101096"
+"221215_s_at"	"RIPK4"	54101	"ENSG00000183421"
+"223948_s_at"	"TMPRSS3"	64699	"ENSG00000160183"
+"223949_at"	"TMPRSS3"	64699	"ENSG00000160183"
+"224090_s_at"	"TNFRSF19"	55504	"ENSG00000127863"
+"223827_at"	"TNFRSF19"	55504	"ENSG00000127863"
+"223412_at"	"KBTBD7"	84078	"ENSG00000120696"
+"225313_at"	"FAM217B"	63939	"ENSG00000196227"
+"221830_at"	"RAP2A"	5911	"ENSG00000125249"
+"223228_at"	"RTL6"	84247	"ENSG00000188636"
+"223278_at"	"GJB2"	2706	"ENSG00000165474"
+"221377_s_at"	"RBPJL"	11317	"ENSG00000124232"
+"224670_at"	"SYS1"	90196	"ENSG00000204070"
+"224669_at"	"SYS1"	90196	"ENSG00000204070"
+"224668_at"	"SYS1"	90196	"ENSG00000204070"
+"220698_at"	"LINC01711"	79160	"ENSG00000268941"
+"222410_s_at"	"SNX6"	58533	"ENSG00000129515"
+"225261_x_at"	"NELFCD"	51497	"ENSG00000101158"
+"225006_x_at"	"NELFCD"	51497	"ENSG00000101158"
+"220607_x_at"	"NELFCD"	51497	"ENSG00000101158"
+"223379_s_at"	"LATS2"	26524	"ENSG00000150457"
+"223380_s_at"	"LATS2"	26524	"ENSG00000150457"
+"223513_at"	"CENPJ"	55835	"ENSG00000151849"
+"220885_s_at"	"CENPJ"	55835	"ENSG00000151849"
+"224274_at"	"FSCB"	84075	"ENSG00000189139"
+"222441_x_at"	"PRELID3B"	51012	"ENSG00000101166"
+"222245_s_at"	"FER1L4"	NA	"ENSG00000088340"
+"223562_at"	"PARVG"	64098	"ENSG00000138964"
+"224822_at"	"DLC1"	10395	"ENSG00000164741"
+"221473_x_at"	"SERINC3"	10955	"ENSG00000132824"
+"221472_at"	"SERINC3"	10955	"ENSG00000132824"
+"221471_at"	"SERINC3"	10955	"ENSG00000132824"
+"220681_at"	"PRR34"	NA	"ENSG00000182257"
+"221954_at"	"OSER1"	51526	"ENSG00000132823"
+"225053_at"	"CNOT7"	29883	"ENSG00000198791"
+"220548_at"	"PKDREJ"	10343	"ENSG00000130943"
+"221933_at"	"NLGN4X"	57502	"ENSG00000146938"
+"223699_at"	"CNDP1"	84735	"ENSG00000150656"
+"221974_at"	"SNHG14"	NA	"ENSG00000224078"
+"222196_at"	""	NA	"ENSG00000285756"
+"221209_s_at"	"OTOR"	56914	"ENSG00000125879"
+"225406_at"	"TWSG1"	57045	"ENSG00000128791"
+"223356_s_at"	"MTIF3"	219402	"ENSG00000122033"
+"221167_s_at"	"CCDC70"	83446	"ENSG00000123171"
+"224073_at"	"LINC01521"	NA	"ENSG00000213888"
+"225378_at"	"VPS37A"	137492	"ENSG00000155975"
+"223501_at"	"TNFSF13B"	10673	"ENSG00000102524"
+"223502_s_at"	"TNFSF13B"	10673	"ENSG00000102524"
+"221901_at"	"SHISAL1"	85352	"ENSG00000138944"
+"224188_s_at"	"XPNPEP3"	63929	"ENSG00000196236"
+"225504_at"	"HMBOX1"	79618	"ENSG00000147421"
+"221741_s_at"	"YTHDF1"	54915	"ENSG00000149658"
+"221017_s_at"	"LRRC3"	81543	"ENSG00000160233"
+"223976_at"	"FUT10"	84750	"ENSG00000172728"
+"223071_at"	"IER3IP1"	51124	"ENSG00000134049"
+"220887_at"	"CCDC177"	56936	"ENSG00000267909"
+"222666_s_at"	"RCL1"	10171	"ENSG00000120158"
+"225132_at"	"FBXL3"	26224	"ENSG00000005812"
+"223768_at"	"SSR4P1"	728039	"ENSG00000235374"
+"223215_s_at"	"JKAMP"	51528	"ENSG00000050130"
+"223547_at"	"JKAMP"	51528	"ENSG00000050130"
+"222685_at"	"HAUS6"	54801	"ENSG00000147874"
+"222618_at"	"SMU1"	55234	"ENSG00000122692"
+"223571_at"	"C1QTNF6"	114904	"ENSG00000133466"
+"221920_s_at"	"SLC25A37"	51312	"ENSG00000147454"
+"222528_s_at"	"SLC25A37"	51312	"ENSG00000147454"
+"222529_at"	"SLC25A37"	51312	"ENSG00000147454"
+"225075_at"	"PDRG1"	81572	"ENSG00000088356"
+"220813_at"	"CYSLTR2"	57105	"ENSG00000152207"
+"225312_at"	"COMMD6"	170622	"ENSG00000188243"
+"222847_s_at"	"EGLN3"	112399	"ENSG00000129521"
+"222478_at"	"VPS36"	51028	"ENSG00000136100"
+"221953_s_at"	"MMP24OS"	101410538	"ENSG00000126005"
+"222658_s_at"	"APTX"	54840	"ENSG00000137074"
+"223690_at"	"LTBP2"	4053	"ENSG00000119681"
+"223171_at"	"DYM"	54808	"ENSG00000141627"
+"223329_x_at"	"SUGT1"	10910	"ENSG00000165416"
+"224309_s_at"	"SUGT1"	10910	"ENSG00000165416"
+"223330_s_at"	"SUGT1"	10910	"ENSG00000165416"
+"222567_s_at"	"MEX3C"	51320	"ENSG00000176624"
+"223642_at"	"ZIC2"	7546	"ENSG00000043355"
+"222731_at"	"ZDHHC2"	51201	"ENSG00000104219"
+"222730_s_at"	"ZDHHC2"	51201	"ENSG00000104219"
+"224043_s_at"	"UPB1"	51733	"ENSG00000100024"
+"222146_s_at"	"TCF4"	6925	"ENSG00000196628"
+"224874_at"	"POLR1D"	51082	"ENSG00000186184"
+"224857_s_at"	"POLR1D"	51082	"ENSG00000186184"
+"224075_s_at"	"VSX1"	30813	"ENSG00000100987"
+"222972_at"	"VSX1"	30813	"ENSG00000100987"
+"221124_s_at"	"VSX1"	30813	"ENSG00000100987"
+"224074_at"	"VSX1"	30813	"ENSG00000100987"
+"221478_at"	"BNIP3L"	665	"ENSG00000104765"
+"221479_s_at"	"BNIP3L"	665	"ENSG00000104765"
+"224619_at"	"GOLM2"	113201	"ENSG00000166734"
+"225196_s_at"	"MRPS26"	64949	"ENSG00000125901"
+"221774_x_at"	"SUPT20H"	55578	"ENSG00000102710"
+"222531_s_at"	"AP5M1"	55745	"ENSG00000053770"
+"221036_s_at"	"APH1B"	83464	"ENSG00000138613"
+"224621_at"	"MAPK1"	5594	"ENSG00000100030"
+"224299_x_at"	"FTCD"	10841	"ENSG00000160282"
+"223702_x_at"	"FTCD"	10841	"ENSG00000160282"
+"224300_x_at"	"FTCD"	10841	"ENSG00000160282"
+"223979_x_at"	"FTCD"	10841	"ENSG00000160282"
+"220604_x_at"	"FTCD"	10841	"ENSG00000160282"
+"222819_at"	"CTPS2"	56474	"ENSG00000047230"
+"223270_at"	"CTDSPL2"	51496	"ENSG00000137770"
+"223271_s_at"	"CTDSPL2"	51496	"ENSG00000137770"
+"220648_at"	"ADARB2"	105	"ENSG00000185736"
+"221207_s_at"	"NBEA"	26960	"ENSG00000172915"
+"224412_s_at"	"TRPM6"	140803	"ENSG00000119121"
+"221102_s_at"	"TRPM6"	140803	"ENSG00000119121"
+"224606_at"	"KLF6"	1316	"ENSG00000067082"
+"220591_s_at"	"EFHC2"	80258	"ENSG00000183690"
+"222646_s_at"	"ERO1A"	30001	"ENSG00000197930"
+"221816_s_at"	"PHF11"	51131	"ENSG00000136147"
+"221969_at"	"PAX5"	5079	"ENSG00000196092"
+"223167_s_at"	"USP25"	29761	"ENSG00000155313"
+"224535_s_at"	"MRPL57"	78988	"ENSG00000173141"
+"224749_at"	"FAM234A"	83986	"ENSG00000167930"
+"222045_s_at"	"PCIF1"	63935	"ENSG00000100982"
+"221762_s_at"	"PCIF1"	63935	"ENSG00000100982"
+"222044_at"	"PCIF1"	63935	"ENSG00000100982"
+"221890_at"	"ZNF335"	63925	"ENSG00000198026"
+"223316_at"	"CCDC3"	83643	"ENSG00000151468"
+"225154_at"	"SYAP1"	94056	"ENSG00000169895"
+"221390_s_at"	"MTMR8"	55613	"ENSG00000102043"
+"223748_at"	"SLC4A11"	83959	"ENSG00000088836"
+"224331_s_at"	"MRPL36"	64979	"ENSG00000171421"
+"223954_x_at"	"NECAB3"	63941	"ENSG00000125967"
+"221564_at"	"PRMT2"	3275	"ENSG00000160310"
+"224862_at"	"GNAQ"	2776	"ENSG00000156052"
+"224861_at"	"GNAQ"	2776	"ENSG00000156052"
+"224863_at"	"GNAQ"	2776	"ENSG00000156052"
+"224210_s_at"	"PXMP4"	11264	"ENSG00000101417"
+"225119_at"	"CHMP4B"	128866	"ENSG00000101421"
+"225498_at"	"CHMP4B"	128866	"ENSG00000101421"
+"222846_at"	"RAB8B"	51762	"ENSG00000166128"
+"220892_s_at"	"PSAT1"	29968	"ENSG00000135069"
+"223062_s_at"	"PSAT1"	29968	"ENSG00000135069"
+"224319_s_at"	"MIEF1"	54471	"ENSG00000100335"
+"221516_s_at"	"MIEF1"	54471	"ENSG00000100335"
+"222079_at"	"ERG"	2078	"ENSG00000157554"
+"222649_at"	"XPO4"	64328	"ENSG00000132953"
+"225148_at"	"RPS19BP1"	91582	"ENSG00000187051"
+"222417_s_at"	"SNX5"	27131	"ENSG00000089006"
+"223666_at"	"SNX5"	27131	"ENSG00000089006"
+"223605_at"	"SLC25A18"	83733	"ENSG00000182902"
+"224815_at"	"COMMD7"	149951	"ENSG00000149600"
+"221771_s_at"	"MPHOSPH8"	54737	"ENSG00000196199"
+"221399_at"	"EDA2R"	60401	"ENSG00000131080"
+"222612_at"	"PSPC1"	55269	"ENSG00000121390"
+"222611_s_at"	"PSPC1"	55269	"ENSG00000121390"
+"222726_s_at"	"EXOC5"	10640	"ENSG00000070367"
+"225084_at"	"EXOC5"	10640	"ENSG00000070367"
+"223664_x_at"	"BCL2L13"	23786	"ENSG00000099968"
+"224035_s_at"	"BCL2L13"	23786	"ENSG00000099968"
+"221064_s_at"	"UNKL"	64718	"ENSG00000059145"
+"222899_at"	"ITGA11"	22801	"ENSG00000137809"
+"220933_s_at"	"TUT7"	79670	"ENSG00000083223"
+"223475_at"	"CRISPLD1"	83690	"ENSG00000121005"
+"221231_s_at"	"NRDE2"	55051	"ENSG00000119720"
+"222404_x_at"	"HACD3"	51495	"ENSG00000074696"
+"222405_at"	"HACD3"	51495	"ENSG00000074696"
+"222809_x_at"	"CCDC85C"	317762	"ENSG00000205476"
+"221136_at"	"GDF2"	2658	"ENSG00000263761"
+"223813_at"	"PRND"	23627	"ENSG00000171864"
+"222106_at"	"PRND"	23627	"ENSG00000171864"
+"222115_x_at"	"GLYR1"	84656	"ENSG00000140632"
+"222652_s_at"	"GLYR1"	84656	"ENSG00000140632"
+"221628_s_at"	"GLYR1"	84656	"ENSG00000140632"
+"223794_at"	"ODAD2"	55130	"ENSG00000169126"
+"221077_at"	"ODAD2"	55130	"ENSG00000169126"
+"220925_at"	"NAA35"	60560	"ENSG00000135040"
+"223398_at"	"CARD19"	84270	"ENSG00000165233"
+"222550_at"	"ARMC1"	55156	"ENSG00000104442"
+"224972_at"	"ROMO1"	140823	"ENSG00000125995"
+"223624_at"	"ZFAND4"	93550	"ENSG00000172671"
+"221374_at"	"FGF16"	8823	"ENSG00000196468"
+"221400_at"	"MYO3A"	53904	"ENSG00000095777"
+"222904_s_at"	"TMC5"	79838	"ENSG00000103534"
+"223345_at"	"HDAC8"	55869	"ENSG00000147099"
+"223908_at"	"HDAC8"	55869	"ENSG00000147099"
+"222402_at"	"POMP"	51371	"ENSG00000132963"
+"222840_at"	"ATG2B"	55102	"ENSG00000066739"
+"222781_s_at"	"C9orf40"	55071	"ENSG00000135045"
+"223670_s_at"	"HEMGN"	55363	"ENSG00000136929"
+"223669_at"	"HEMGN"	55363	"ENSG00000136929"
+"222803_at"	"PRTFDC1"	56952	"ENSG00000099256"
+"223984_s_at"	"NUP58"	9818	"ENSG00000139496"
+"225047_at"	"NUP58"	9818	"ENSG00000139496"
+"222990_at"	"UBQLN1"	29979	"ENSG00000135018"
+"222989_s_at"	"UBQLN1"	29979	"ENSG00000135018"
+"222991_s_at"	"UBQLN1"	29979	"ENSG00000135018"
+"221932_s_at"	"GLRX5"	51218	"ENSG00000182512"
+"224165_s_at"	"IQCH"	64799	"ENSG00000103599"
+"221899_at"	"N4BP2L2"	10443	"ENSG00000244754"
+"222621_at"	"DNAJC1"	64215	"ENSG00000136770"
+"222620_s_at"	"DNAJC1"	64215	"ENSG00000136770"
+"222735_at"	"TMEM38B"	55151	"ENSG00000095209"
+"222736_s_at"	"TMEM38B"	55151	"ENSG00000095209"
+"222655_s_at"	"BPNT2"	54928	"ENSG00000104331"
+"222654_at"	"BPNT2"	54928	"ENSG00000104331"
+"224744_at"	"BPNT2"	54928	"ENSG00000104331"
+"224743_at"	"BPNT2"	54928	"ENSG00000104331"
+"225270_at"	"NEO1"	4756	"ENSG00000067141"
+"224384_s_at"	"RNF17"	56163	"ENSG00000132972"
+"221033_s_at"	"RNF17"	56163	"ENSG00000132972"
+"224383_at"	"RNF17"	56163	"ENSG00000132972"
+"222802_at"	"EDN1"	1906	"ENSG00000078401"
+"221677_s_at"	"DONSON"	29980	"ENSG00000159147"
+"223094_s_at"	"ANKH"	56172	"ENSG00000154122"
+"223093_at"	"ANKH"	56172	"ENSG00000154122"
+"223092_at"	"ANKH"	56172	"ENSG00000154122"
+"225435_at"	"SSR1"	6745	"ENSG00000124783"
+"223493_at"	"FBXO4"	26272	"ENSG00000151876"
+"222925_at"	"DCDC2"	51473	"ENSG00000146038"
+"222926_at"	"DCDC2"	51473	"ENSG00000146038"
+"222243_s_at"	"TOB2"	10766	"ENSG00000183864"
+"221496_s_at"	"TOB2"	10766	"ENSG00000183864"
+"225309_at"	"PHF5A"	84844	"ENSG00000100410"
+"223520_s_at"	"KIF13A"	63971	"ENSG00000137177"
+"220777_at"	"KIF13A"	63971	"ENSG00000137177"
+"225506_at"	"RELCH"	57614	"ENSG00000134444"
+"225508_at"	"RELCH"	57614	"ENSG00000134444"
+"222275_at"	"MRPS30"	10884	"ENSG00000112996"
+"222670_s_at"	"MAFB"	9935	"ENSG00000204103"
+"224177_s_at"	"PBDC1"	51260	"ENSG00000102390"
+"223294_at"	"PBDC1"	51260	"ENSG00000102390"
+"225026_at"	"CHD6"	84181	"ENSG00000124177"
+"225031_at"	"CHD6"	84181	"ENSG00000124177"
+"225021_at"	"ZNF532"	55205	"ENSG00000074657"
+"220617_s_at"	"ZNF532"	55205	"ENSG00000074657"
+"225029_at"	"NBDY"	550643	"ENSG00000204272"
+"225028_at"	"NBDY"	550643	"ENSG00000204272"
+"223693_s_at"	"RADIL"	55698	"ENSG00000157927"
+"223614_at"	"MMP16"	4325	"ENSG00000156103"
+"221034_s_at"	"TEX13B"	56156	"ENSG00000170925"
+"223598_at"	"RAD23B"	5887	"ENSG00000119318"
+"221421_s_at"	"ADAMTS12"	81792	"ENSG00000151388"
+"225016_at"	"APCDD1"	147495	"ENSG00000154856"
+"220714_at"	"PRDM14"	63978	"ENSG00000147596"
+"225448_at"	"NAPG"	8774	"ENSG00000134265"
+"224825_at"	"DNTTIP1"	116092	"ENSG00000101457"
+"221325_at"	"KCNK13"	56659	"ENSG00000152315"
+"223647_x_at"	"HSCB"	150274	"ENSG00000100209"
+"222572_at"	"PDP1"	54704	"ENSG00000164951"
+"224662_at"	"KIF5B"	3799	"ENSG00000170759"
+"220706_at"	"ADAMTS7"	11173	"ENSG00000136378"
+"224478_s_at"	"C7orf50"	84310	"ENSG00000146540"
+"222613_at"	"C12orf4"	57102	"ENSG00000047621"
+"224704_at"	"TNRC6A"	27327	"ENSG00000090905"
+"224705_s_at"	"TNRC6A"	27327	"ENSG00000090905"
+"223607_x_at"	"ZSWIM1"	90204	"ENSG00000168612"
+"222230_s_at"	"ACTR10"	55860	"ENSG00000131966"
+"224737_x_at"	"CCAR1"	55749	"ENSG00000060339"
+"224736_at"	"CCAR1"	55749	"ENSG00000060339"
+"223239_at"	"GSKIP"	51527	"ENSG00000100744"
+"220852_at"	"FOXN3-AS2"	29018	"ENSG00000259073"
+"221295_at"	"CIDEA"	1149	"ENSG00000176194"
+"224802_at"	"NDFIP2"	54602	"ENSG00000102471"
+"224799_at"	"NDFIP2"	54602	"ENSG00000102471"
+"224801_at"	"NDFIP2"	54602	"ENSG00000102471"
+"222934_s_at"	"CLEC4E"	26253	"ENSG00000166523"
+"225067_at"	"ULK3"	25989	"ENSG00000140474"
+"223129_x_at"	"MYLIP"	29116	"ENSG00000007944"
+"223130_s_at"	"MYLIP"	29116	"ENSG00000007944"
+"220984_s_at"	"SLCO5A1"	81796	"ENSG00000137571"
+"222122_s_at"	"THOC2"	57187	"ENSG00000125676"
+"224450_s_at"	"RIOK1"	83732	"ENSG00000124784"
+"224816_at"	""	NA	"ENSG00000273151"
+"222774_s_at"	"NETO2"	81831	"ENSG00000171208"
+"223176_at"	"KCTD20"	222658	"ENSG00000112078"
+"222595_s_at"	"DIDO1"	11083	"ENSG00000101191"
+"221980_at"	"EMILIN2"	84034	"ENSG00000132205"
+"224374_s_at"	"EMILIN2"	84034	"ENSG00000132205"
+"220665_at"	"LUZP4"	51213	"ENSG00000102021"
+"220921_at"	"SPANXB1"	728695	"ENSG00000227234"
+"221474_at"	"MYL12B"	103910	"ENSG00000118680"
+"221657_s_at"	"ASB6"	140459	"ENSG00000148331"
+"222524_s_at"	"ASB6"	140459	"ENSG00000148331"
+"220752_at"	"PBX3-DT"	NA	"ENSG00000229582"
+"224597_at"	"NORAD"	647979	"ENSG00000260032"
+"223098_s_at"	"LONP2"	83752	"ENSG00000102910"
+"221833_at"	"LONP2"	83752	"ENSG00000102910"
+"221834_at"	"LONP2"	83752	"ENSG00000102910"
+"223099_s_at"	"LONP2"	83752	"ENSG00000102910"
+"223375_at"	"TBC1D22B"	55633	"ENSG00000065491"
+"225365_at"	"ZDHHC20"	253832	"ENSG00000180776"
+"224435_at"	"PRXL2A"	84293	"ENSG00000122378"
+"222776_at"	"MAGOHB"	55110	"ENSG00000111196"
+"224879_at"	"DMAC1"	90871	"ENSG00000137038"
+"224860_at"	"DMAC1"	90871	"ENSG00000137038"
+"221867_at"	"N4BP1"	9683	"ENSG00000102921"
+"221282_x_at"	"RUNX2"	860	"ENSG00000124813"
+"222272_x_at"	"SCIN"	85477	"ENSG00000006747"
+"221449_s_at"	"ITFG1"	81533	"ENSG00000129636"
+"224702_at"	"TMEM167A"	153339	"ENSG00000174695"
+"224853_at"	"SLAIN2"	57606	"ENSG00000109171"
+"224843_at"	"SLAIN2"	57606	"ENSG00000109171"
+"224844_at"	"SLAIN2"	57606	"ENSG00000109171"
+"224854_s_at"	"SLAIN2"	57606	"ENSG00000109171"
+"224845_s_at"	"SLAIN2"	57606	"ENSG00000109171"
+"225149_at"	"PCID2"	55795	"ENSG00000126226"
+"225091_at"	"ZCCHC3"	85364	"ENSG00000247315"
+"225314_at"	"OCIAD2"	132299	"ENSG00000145247"
+"221731_x_at"	"VCAN"	1462	"ENSG00000038427"
+"223564_s_at"	"GNB1L"	54584	"ENSG00000185838"
+"220762_s_at"	"GNB1L"	54584	"ENSG00000185838"
+"223563_at"	"GNB1L"	54584	"ENSG00000185838"
+"220917_s_at"	"WDR19"	57728	"ENSG00000157796"
+"221322_at"	"NPVF"	64111	"ENSG00000105954"
+"223807_at"	"IGSF1"	3547	"ENSG00000147255"
+"224586_x_at"	"SUB1"	10923	"ENSG00000113387"
+"224587_at"	"SUB1"	10923	"ENSG00000113387"
+"221727_at"	"SUB1"	10923	"ENSG00000113387"
+"223650_s_at"	"NRBF2"	29982	"ENSG00000148572"
+"221803_s_at"	"NRBF2"	29982	"ENSG00000148572"
+"222431_at"	"SPIN1"	10927	"ENSG00000106723"
+"221578_at"	"RASSF4"	83937	"ENSG00000107551"
+"224250_s_at"	"SECISBP2"	79048	"ENSG00000187742"
+"221586_s_at"	"E2F5"	1875	"ENSG00000133740"
+"225293_at"	"COL27A1"	85301	"ENSG00000196739"
+"225288_at"	"COL27A1"	85301	"ENSG00000196739"
+"225292_at"	"COL27A1"	85301	"ENSG00000196739"
+"221698_s_at"	"CLEC7A"	64581	"ENSG00000172243"
+"224279_s_at"	"CABYR"	26256	"ENSG00000154040"
+"225360_at"	"TRABD"	80305	"ENSG00000170638"
+"221807_s_at"	"TRABD"	80305	"ENSG00000170638"
+"222848_at"	"CENPK"	64105	"ENSG00000123219"
+"220781_at"	"DELEC1"	NA	"ENSG00000173077"
+"220993_s_at"	"GPR63"	81491	"ENSG00000112218"
+"223279_s_at"	"UACA"	55075	"ENSG00000137831"
+"221841_s_at"	"KLF4"	9314	"ENSG00000136826"
+"222089_s_at"	"DNAAF8"	146562	"ENSG00000166246"
+"221598_s_at"	"MED27"	9442	"ENSG00000160563"
+"221606_s_at"	"HMGN5"	79366	"ENSG00000198157"
+"221238_at"	"HMGN5"	79366	"ENSG00000198157"
+"225172_at"	"CRAMP1"	57585	"ENSG00000007545"
+"222518_at"	"ARFGEF2"	10564	"ENSG00000124198"
+"222327_x_at"	""	NA	"ENSG00000290963"
+"220966_x_at"	"ARPC5L"	81873	"ENSG00000136950"
+"223101_s_at"	"ARPC5L"	81873	"ENSG00000136950"
+"221696_s_at"	"STYK1"	55359	"ENSG00000060140"
+"224921_at"	"SCAMP2"	10066	"ENSG00000140497"
+"225285_at"	"BCAT1"	586	"ENSG00000060982"
+"223832_s_at"	"CAPNS2"	84290	"ENSG00000256812"
+"221143_at"	"RPA4"	29935	"ENSG00000204086"
+"224616_at"	"DYNC1LI2"	1783	"ENSG00000135720"
+"224614_at"	"DYNC1LI2"	1783	"ENSG00000135720"
+"224693_at"	"FAM210B"	116151	"ENSG00000124098"
+"224690_at"	"FAM210B"	116151	"ENSG00000124098"
+"222426_at"	"MAPKAP1"	79109	"ENSG00000119487"
+"223060_at"	"C14orf119"	55017	"ENSG00000179933"
+"224918_x_at"	"MGST1"	4257	"ENSG00000008394"
+"222833_at"	"LPCAT2"	54947	"ENSG00000087253"
+"224408_at"	"MCHR2"	84539	"ENSG00000152034"
+"221359_at"	"GDNF"	2668	"ENSG00000168621"
+"223250_at"	"KLHL7"	55975	"ENSG00000122550"
+"221022_s_at"	"PMFBP1"	83449	"ENSG00000118557"
+"224128_at"	"RTF2"	51507	"ENSG00000022277"
+"221654_s_at"	"USP3"	9960	"ENSG00000140455"
+"221310_at"	"FGF14"	2259	"ENSG00000102466"
+"224901_at"	"SCD5"	79966	"ENSG00000145284"
+"224018_s_at"	"SCD5"	79966	"ENSG00000145284"
+"225140_at"	"KLF3"	51274	"ENSG00000109787"
+"222913_at"	"KLF3"	51274	"ENSG00000109787"
+"225133_at"	"KLF3"	51274	"ENSG00000109787"
+"225344_at"	"NCOA7"	135112	"ENSG00000111912"
+"222206_s_at"	"NCLN"	56926	"ENSG00000125912"
+"220888_s_at"	"CASS4"	57091	"ENSG00000087589"
+"221914_at"	"SYN1"	6853	"ENSG00000008056"
+"222894_x_at"	"NDUFAF5"	79133	"ENSG00000101247"
+"223576_at"	"MTRES1"	51250	"ENSG00000130349"
+"222033_s_at"	"FLT1"	2321	"ENSG00000102755"
+"223951_at"	""	NA	"ENSG00000279390"
+"225076_s_at"	"ZNFX1"	57169	"ENSG00000124201"
+"222268_x_at"	"MUC5B"	727897	"ENSG00000117983"
+"224915_x_at"	"ZFAS1"	441951	"ENSG00000177410"
+"220660_at"	"LINC00474"	58483	"ENSG00000204148"
+"221093_at"	"BRD7P3"	NA	"ENSG00000169075"
+"221073_s_at"	"NOD1"	10392	"ENSG00000106100"
+"224190_x_at"	"NOD1"	10392	"ENSG00000106100"
+"220580_at"	"BICC1"	80114	"ENSG00000122870"
+"223677_at"	"ATG10"	83734	"ENSG00000152348"
+"223040_at"	"NAA20"	51126	"ENSG00000173418"
+"224471_s_at"	"BTRC"	8945	"ENSG00000166167"
+"222374_at"	"BTRC"	8945	"ENSG00000166167"
+"225070_at"	"NUS1"	116150	"ENSG00000153989"
+"225436_at"	"ABHD17C"	58489	"ENSG00000136379"
+"223606_x_at"	"GPALPP1"	55425	"ENSG00000133114"
+"221521_s_at"	"GINS2"	51659	"ENSG00000131153"
+"223039_at"	"GUCD1"	83606	"ENSG00000138867"
+"223955_at"	"CRACR2A"	84766	"ENSG00000130038"
+"223116_at"	"BCAR1"	9564	"ENSG00000050820"
+"224245_at"	"INGX"	27160	"ENSG00000243468"
+"222435_s_at"	"UBE2J1"	51465	"ENSG00000198833"
+"222873_s_at"	"EHMT1"	79813	"ENSG00000181090"
+"225461_at"	"EHMT1"	79813	"ENSG00000181090"
+"223535_at"	"NUDT12"	83594	"ENSG00000112874"
+"223866_at"	"ARMC2"	84071	"ENSG00000118690"
+"221434_s_at"	"SLIRP"	81892	"ENSG00000119705"
+"223705_s_at"	"GPBP1"	65056	"ENSG00000062194"
+"224648_at"	"GPBP1"	65056	"ENSG00000062194"
+"221285_at"	"ST8SIA2"	8128	"ENSG00000140557"
+"225081_s_at"	"CDCA7L"	55536	"ENSG00000164649"
+"223573_s_at"	"PPP2R2C"	5522	"ENSG00000074211"
+"223574_x_at"	"PPP2R2C"	5522	"ENSG00000074211"
+"222573_s_at"	"SAV1"	60485	"ENSG00000151748"
+"220786_s_at"	"SLC38A4"	55089	"ENSG00000139209"
+"221982_x_at"	"PLXNA3"	55558	"ENSG00000130827"
+"221766_s_at"	"TENT5A"	55603	"ENSG00000112773"
+"224973_at"	"TENT5A"	55603	"ENSG00000112773"
+"223853_at"	"BVES"	11149	"ENSG00000112276"
+"221746_at"	"UBL4A"	8266	"ENSG00000102178"
+"223706_at"	"C22orf23"	84645	"ENSG00000128346"
+"221780_s_at"	"DDX27"	55661	"ENSG00000124228"
+"222918_at"	"RAB9B"	51209	"ENSG00000123570"
+"222915_s_at"	"BANK1"	55024	"ENSG00000153064"
+"223534_s_at"	"RPS6KL1"	83694	"ENSG00000198208"
+"221687_s_at"	"MVB12B"	89853	"ENSG00000196814"
+"221828_s_at"	"MVB12B"	89853	"ENSG00000196814"
+"224167_at"	"SPZ1"	84654	"ENSG00000164299"
+"222705_s_at"	"SLC25A15"	10166	"ENSG00000102743"
+"225328_at"	"FBXO32"	114907	"ENSG00000156804"
+"225345_s_at"	"FBXO32"	114907	"ENSG00000156804"
+"224940_s_at"	"PAPPA"	5069	"ENSG00000182752"
+"224942_at"	"PAPPA"	5069	"ENSG00000182752"
+"224941_at"	"PAPPA"	5069	"ENSG00000182752"
+"221652_s_at"	"INTS13"	55726	"ENSG00000064102"
+"222713_s_at"	"FANCF"	2188	"ENSG00000183161"
+"225134_at"	"SPRYD3"	84926	"ENSG00000167778"
+"224437_s_at"	"VTA1"	51534	"ENSG00000009844"
+"223021_x_at"	"VTA1"	51534	"ENSG00000009844"
+"223022_s_at"	"VTA1"	51534	"ENSG00000009844"
+"220915_s_at"	""	NA	"ENSG00000288187"
+"220914_at"	""	NA	"ENSG00000288187"
+"221049_s_at"	"POLL"	27343	"ENSG00000166169"
+"223730_at"	"GPC6"	10082	"ENSG00000183098"
+"223483_at"	"SERGEF"	26297	"ENSG00000129158"
+"223177_at"	"NT5DC1"	221294	"ENSG00000178425"
+"223178_s_at"	"NT5DC1"	221294	"ENSG00000178425"
+"224480_s_at"	"GPAT3"	84803	"ENSG00000138678"
+"220907_at"	"ADGRF1"	266977	"ENSG00000153292"
+"223594_at"	"TMEM117"	84216	"ENSG00000139173"
+"223154_at"	"MRPL1"	65008	"ENSG00000169288"
+"222617_s_at"	"FAM204A"	63877	"ENSG00000165669"
+"224579_at"	"SLC38A1"	81539	"ENSG00000111371"
+"224580_at"	"SLC38A1"	81539	"ENSG00000111371"
+"222765_x_at"	"ESF1"	51575	"ENSG00000089048"
+"224049_at"	"KCNK17"	89822	"ENSG00000124780"
+"221519_at"	"FBXW4"	6468	"ENSG00000107829"
+"224900_at"	"ANKFY1"	51479	"ENSG00000185722"
+"221837_at"	"KLHL22"	84861	"ENSG00000099910"
+"221838_at"	"KLHL22"	84861	"ENSG00000099910"
+"220939_s_at"	"DPP8"	54878	"ENSG00000074603"
+"225145_at"	"NCOA5"	57727	"ENSG00000124160"
+"221873_at"	"ZNF143"	7702	"ENSG00000166478"
+"224061_at"	"INMT"	11185	"ENSG00000241644"
+"223180_s_at"	"TIMM21"	29090	"ENSG00000075336"
+"223181_at"	"TIMM21"	29090	"ENSG00000075336"
+"223019_at"	"NIBAN2"	64855	"ENSG00000136830"
+"222952_s_at"	"TLR7"	51284	"ENSG00000196664"
+"220900_at"	""	NA	"ENSG00000251023"
+"224123_at"	""	NA	"ENSG00000236529"
+"222931_s_at"	"THNSL1"	79896	"ENSG00000185875"
+"220562_at"	"CYP2W1"	54905	"ENSG00000073067"
+"221843_s_at"	"MEAK7"	57707	"ENSG00000140950"
+"222747_s_at"	"SCML1"	6322	"ENSG00000047634"
+"224534_at"	"KREMEN1"	83999	"ENSG00000183762"
+"225284_at"	"DNAJC3"	5611	"ENSG00000102580"
+"221981_s_at"	"WDR59"	79726	"ENSG00000103091"
+"221591_s_at"	"PIMREG"	54478	"ENSG00000129195"
+"220789_s_at"	"TBRG4"	9238	"ENSG00000136270"
+"222982_x_at"	"SLC38A2"	54407	"ENSG00000134294"
+"220924_s_at"	"SLC38A2"	54407	"ENSG00000134294"
+"222251_s_at"	"GMEB2"	26205	"ENSG00000101216"
+"225464_at"	"FRMD6"	122786	"ENSG00000139926"
+"225481_at"	"FRMD6"	122786	"ENSG00000139926"
+"222769_at"	"MTHFSD"	64779	"ENSG00000103248"
+"223460_at"	"CAMKK1"	84254	"ENSG00000004660"
+"222557_at"	"STMN3"	50861	"ENSG00000197457"
+"224199_at"	"DKK2"	27123	"ENSG00000155011"
+"223882_at"	"FAM172A"	83989	"ENSG00000113391"
+"221119_at"	"ARHGEF38"	54848	"ENSG00000236699"
+"223782_s_at"	"TINAG"	27283	"ENSG00000137251"
+"220930_s_at"	"SMIM2"	79024	"ENSG00000139656"
+"220931_at"	"SMIM2"	79024	"ENSG00000139656"
+"224540_at"	"LACRT"	90070	"ENSG00000135413"
+"225528_at"	"IPO8"	10526	"ENSG00000133704"
+"223361_at"	"ABRACL"	58527	"ENSG00000146386"
+"221254_s_at"	"PITPNM3"	83394	"ENSG00000091622"
+"221219_s_at"	"KLHDC4"	54758	"ENSG00000104731"
+"222479_s_at"	"DYNC1LI1"	51143	"ENSG00000144635"
+"225283_at"	"ARRDC4"	91947	"ENSG00000140450"
+"224272_at"	"RACGAP1P1"	NA	"ENSG00000257331"
+"224649_x_at"	"CCNY"	219771	"ENSG00000108100"
+"224651_at"	"CCNY"	219771	"ENSG00000108100"
+"224652_at"	"CCNY"	219771	"ENSG00000108100"
+"224647_at"	"CCNY"	219771	"ENSG00000108100"
+"222650_s_at"	"SLC2A4RG"	56731	"ENSG00000125520"
+"220808_at"	"THEG"	51298	"ENSG00000105549"
+"224273_at"	"C3orf20"	84077	"ENSG00000131379"
+"225505_s_at"	"PCED1A"	64773	"ENSG00000132635"
+"220741_s_at"	"PPA2"	27068	"ENSG00000138777"
+"225192_at"	"CACUL1"	143384	"ENSG00000151893"
+"224275_at"	"ADGRV1"	84059	"ENSG00000164199"
+"223582_at"	"ADGRV1"	84059	"ENSG00000164199"
+"224488_s_at"	"SPON1"	10418	"ENSG00000262655"
+"224028_at"	"CPA6"	57094	"ENSG00000165078"
+"223417_at"	"RAD18"	56852	"ENSG00000070950"
+"224200_s_at"	"RAD18"	56852	"ENSG00000070950"
+"220588_at"	"BCAS4"	55653	"ENSG00000124243"
+"222602_at"	"UBA6"	55236	"ENSG00000033178"
+"222601_at"	"UBA6"	55236	"ENSG00000033178"
+"222600_s_at"	"UBA6"	55236	"ENSG00000033178"
+"222165_x_at"	"BBLN"	79095	"ENSG00000171159"
+"223109_at"	"TRUB2"	26995	"ENSG00000167112"
+"221183_at"	"PARM1-AS1"	100507388	"ENSG00000249717"
+"225247_at"	"TMEM259"	91304	"ENSG00000182087"
+"223085_at"	"RNF19A"	25897	"ENSG00000034677"
+"221008_s_at"	"ETNPPL"	64850	"ENSG00000164089"
+"224511_s_at"	"TXNDC17"	84817	"ENSG00000129235"
+"224198_at"	"CELA1"	1990	"ENSG00000139610"
+"221739_at"	"MYDGF"	56005	"ENSG00000074842"
+"222779_s_at"	"NCBP3"	55421	"ENSG00000074356"
+"223382_s_at"	"ZNRF1"	84937	"ENSG00000186187"
+"223383_at"	"ZNRF1"	84937	"ENSG00000186187"
+"220595_at"	"PDZRN4"	29951	"ENSG00000165966"
+"223588_at"	"THAP2"	83591	"ENSG00000173451"
+"224583_at"	"COTL1"	23406	"ENSG00000103187"
+"221059_s_at"	"COTL1"	23406	"ENSG00000103187"
+"220655_at"	"TNIP3"	79931	"ENSG00000050730"
+"224796_at"	"ASAP1"	50807	"ENSG00000153317"
+"224790_at"	"ASAP1"	50807	"ENSG00000153317"
+"221039_s_at"	"ASAP1"	50807	"ENSG00000153317"
+"224791_at"	"ASAP1"	50807	"ENSG00000153317"
+"220610_s_at"	"LRRFIP2"	9209	"ENSG00000093167"
+"220759_at"	"EDDM3B"	64184	"ENSG00000181552"
+"224650_at"	"MAL2"	114569	"ENSG00000147676"
+"222596_s_at"	"LGR4"	55366	"ENSG00000205213"
+"225531_at"	"CABLES1"	91768	"ENSG00000134508"
+"225532_at"	"CABLES1"	91768	"ENSG00000134508"
+"225330_at"	"IGF1R"	3480	"ENSG00000140443"
+"222867_s_at"	"MED31"	51003	"ENSG00000108590"
+"224087_at"	""	NA	"ENSG00000280288"
+"222111_at"	"MINDY2"	54629	"ENSG00000128923"
+"220844_at"	"ELOA2"	51224	"ENSG00000206181"
+"222864_s_at"	"ZNF219"	51222	"ENSG00000165804"
+"223047_at"	"CMTM6"	54918	"ENSG00000091317"
+"220732_at"	"PREX2"	80243	"ENSG00000046889"
+"224636_at"	"ZFP91"	80829	"ENSG00000186660"
+"223697_x_at"	"C9orf64"	84267	"ENSG00000165118"
+"222083_at"	"GLYAT"	10249	"ENSG00000149124"
+"221907_at"	"TRMT61A"	115708	"ENSG00000166166"
+"223186_at"	"PEDS1"	387521	"ENSG00000240849"
+"222254_at"	"COX6CP2"	NA	"ENSG00000231715"
+"222764_at"	"ASRGL1"	80150	"ENSG00000162174"
+"220836_at"	"ZNF407"	55628	"ENSG00000215421"
+"220835_s_at"	"ZNF407"	55628	"ENSG00000215421"
+"222474_s_at"	"TOMM22"	56993	"ENSG00000100216"
+"224365_s_at"	"TIGD7"	91151	"ENSG00000140993"
+"224881_at"	"VKORC1L1"	154807	"ENSG00000196715"
+"225111_s_at"	"NAPB"	63908	"ENSG00000125814"
+"221460_at"	"OR2C1"	4993	"ENSG00000168158"
+"223921_s_at"	"GBA2"	57704	"ENSG00000070610"
+"224627_at"	"GBA2"	57704	"ENSG00000070610"
+"221042_s_at"	"CLMN"	79789	"ENSG00000165959"
+"221760_at"	"MAN1A1"	4121	"ENSG00000111885"
+"224538_s_at"	"PARD6G"	84552	"ENSG00000178184"
+"225023_at"	"GOPC"	57120	"ENSG00000047932"
+"225022_at"	"GOPC"	57120	"ENSG00000047932"
+"223236_at"	"NSRP1"	84081	"ENSG00000126653"
+"222030_at"	"SIVA1"	10572	"ENSG00000184990"
+"222869_s_at"	"ELAC1"	55520	"ENSG00000141642"
+"224797_at"	"ARRDC3"	57561	"ENSG00000113369"
+"223077_at"	"TMOD3"	29766	"ENSG00000138594"
+"223078_s_at"	"TMOD3"	29766	"ENSG00000138594"
+"220800_s_at"	"TMOD3"	29766	"ENSG00000138594"
+"221409_at"	"OR2S2"	56656	"ENSG00000278889"
+"225466_at"	"PATL1"	219988	"ENSG00000166889"
+"225468_at"	"PATL1"	219988	"ENSG00000166889"
+"222317_at"	"PDE3B"	5140	"ENSG00000152270"
+"221441_at"	"GSC2"	2928	"ENSG00000063515"
+"220838_at"	"EXD3"	54932	"ENSG00000187609"
+"222399_s_at"	"TM9SF3"	56889	"ENSG00000077147"
+"224755_at"	"TM9SF3"	56889	"ENSG00000077147"
+"222714_s_at"	"LACTB2"	51110	"ENSG00000147592"
+"223212_at"	"ZDHHC16"	84287	"ENSG00000171307"
+"225425_s_at"	"MRPL41"	64975	"ENSG00000182154"
+"224492_s_at"	"ZNF627"	199692	"ENSG00000198551"
+"224520_s_at"	"BEST3"	144453	"ENSG00000127325"
+"223975_at"	"TRIM51"	84767	"ENSG00000124900"
+"225395_s_at"	"FAM120AOS"	158293	"ENSG00000188938"
+"222535_at"	"INF2"	64423	"ENSG00000203485"
+"222534_s_at"	"INF2"	64423	"ENSG00000203485"
+"224469_s_at"	"INF2"	64423	"ENSG00000203485"
+"225275_at"	"EDIL3"	10085	"ENSG00000164176"
+"221056_x_at"	"EPS15L1"	58513	"ENSG00000127527"
+"222112_at"	"EPS15L1"	58513	"ENSG00000127527"
+"222113_s_at"	"EPS15L1"	58513	"ENSG00000127527"
+"221072_at"	"GSN-AS1"	57000	"ENSG00000235865"
+"221394_at"	"TAAR2"	9287	"ENSG00000146378"
+"224458_at"	"PGAP4"	84302	"ENSG00000165152"
+"222683_at"	"RNF20"	56254	"ENSG00000155827"
+"222663_at"	"RIOK2"	55781	"ENSG00000058729"
+"223817_at"	"LRRIQ1"	84125	"ENSG00000133640"
+"222638_s_at"	"TMEM242"	729515	"ENSG00000215712"
+"225066_at"	"PPP2R2D"	55844	"ENSG00000175470"
+"221772_s_at"	"PPP2R2D"	55844	"ENSG00000175470"
+"222394_at"	"PDCD6IP"	10015	"ENSG00000170248"
+"221779_at"	"MICALL1"	85377	"ENSG00000100139"
+"222392_x_at"	"PERP"	64065	"ENSG00000112378"
+"224684_at"	"SNX12"	29934	"ENSG00000147164"
+"221595_at"	"RBM48"	84060	"ENSG00000127993"
+"221596_s_at"	"RBM48"	84060	"ENSG00000127993"
+"222815_at"	"RLIM"	51132	"ENSG00000131263"
+"225416_at"	"RLIM"	51132	"ENSG00000131263"
+"221214_s_at"	"NSMF"	26012	"ENSG00000165802"
+"222911_s_at"	"DIPK2B"	79742	"ENSG00000147113"
+"222609_s_at"	"EXOSC1"	51013	"ENSG00000171311"
+"221332_at"	"BMP15"	9210	"ENSG00000130385"
+"225310_at"	"RBMX"	27316	"ENSG00000147274"
+"222742_s_at"	"IFT22"	64792	"ENSG00000128581"
+"221568_s_at"	"LIN7C"	55327	"ENSG00000148943"
+"223350_x_at"	"LIN7C"	55327	"ENSG00000148943"
+"220574_at"	"SEMA6D"	80031	"ENSG00000137872"
+"221711_s_at"	"BABAM1"	29086	"ENSG00000105393"
+"223001_at"	"OSTC"	58505	"ENSG00000198856"
+"222543_at"	"DERL1"	79139	"ENSG00000136986"
+"225488_at"	"DERL1"	79139	"ENSG00000136986"
+"221750_at"	"HMGCS1"	3157	"ENSG00000112972"
+"220723_s_at"	"CWH43"	80157	"ENSG00000109182"
+"220724_at"	"CWH43"	80157	"ENSG00000109182"
+"224409_s_at"	"TSSK6"	83983	"ENSG00000178093"
+"224027_at"	"CCL28"	56477	"ENSG00000151882"
+"224240_s_at"	"CCL28"	56477	"ENSG00000151882"
+"222597_at"	"SNAP29"	9342	"ENSG00000099940"
+"222498_at"	"AZI2"	64343	"ENSG00000163512"
+"223846_at"	"AZI2"	64343	"ENSG00000163512"
+"223536_at"	"PSD2"	84249	"ENSG00000146005"
+"224872_at"	"DIP2B"	57609	"ENSG00000066084"
+"224209_s_at"	"GDA"	9615	"ENSG00000119125"
+"221802_s_at"	"SHTN1"	57698	"ENSG00000187164"
+"222180_at"	""	NA	"ENSG00000264635"
+"223801_s_at"	"APOL4"	80832	"ENSG00000100336"
+"224491_at"	"APOL4"	80832	"ENSG00000100336"
+"222817_at"	"HSD3B7"	80270	"ENSG00000099377"
+"225219_at"	"SMAD5"	4090	"ENSG00000113658"
+"225223_at"	"SMAD5"	4090	"ENSG00000113658"
+"221718_s_at"	"AKAP13"	11214	"ENSG00000170776"
+"222024_s_at"	"AKAP13"	11214	"ENSG00000170776"
+"224884_at"	"AKAP13"	11214	"ENSG00000170776"
+"223729_at"	"CECR2"	27443	"ENSG00000099954"
+"222728_s_at"	"TAF1D"	79101	"ENSG00000166012"
+"221580_s_at"	"TAF1D"	79101	"ENSG00000166012"
+"223687_s_at"	"LY6K"	54742	"ENSG00000160886"
+"223688_s_at"	"LY6K"	54742	"ENSG00000160886"
+"223803_s_at"	"ZCCHC10"	54819	"ENSG00000155329"
+"221193_s_at"	"ZCCHC10"	54819	"ENSG00000155329"
+"222780_s_at"	"BAALC"	79870	"ENSG00000164929"
+"221092_at"	"IKZF3"	22806	"ENSG00000161405"
+"221504_s_at"	"ATP6V1H"	51606	"ENSG00000047249"
+"222792_s_at"	"CCDC59"	29080	"ENSG00000133773"
+"222813_at"	"ZNF668"	79759	"ENSG00000167394"
+"223604_at"	"GARNL3"	84253	"ENSG00000136895"
+"225450_at"	"AMOTL1"	154810	"ENSG00000166025"
+"225459_at"	"AMOTL1"	154810	"ENSG00000166025"
+"221300_at"	"NPAP1"	23742	"ENSG00000185823"
+"221633_at"	"NCAPH2"	29781	"ENSG00000025770"
+"222716_s_at"	"SNX24"	28966	"ENSG00000064652"
+"222885_at"	"EMCN"	51705	"ENSG00000164035"
+"222951_s_at"	"ANKEF1"	63926	"ENSG00000132623"
+"221820_s_at"	"KAT8"	84148	"ENSG00000103510"
+"221811_at"	"PGAP3"	93210	"ENSG00000161395"
+"223050_s_at"	"FBXW5"	54461	"ENSG00000159069"
+"222071_s_at"	"SLCO4C1"	353189	"ENSG00000173930"
+"222852_at"	"C10orf88"	80007	"ENSG00000119965"
+"224687_at"	"ANKIB1"	54467	"ENSG00000001629"
+"224682_at"	"ANKIB1"	54467	"ENSG00000001629"
+"221666_s_at"	"PYCARD"	29108	"ENSG00000103490"
+"221663_x_at"	"HRH3"	11255	"ENSG00000101180"
+"225499_at"	"RALGAPA2"	57186	"ENSG00000188559"
+"220783_at"	"MMP27"	64066	"ENSG00000137675"
+"222263_at"	"SLC35E1"	79939	"ENSG00000127526"
+"220796_x_at"	"SLC35E1"	79939	"ENSG00000127526"
+"223595_at"	"ARHGAP42"	143872	"ENSG00000165895"
+"222740_at"	"ATAD2"	29028	"ENSG00000156802"
+"222072_at"	"ADD3-AS1"	100505933	"ENSG00000203876"
+"224294_at"	""	NA	"ENSG00000280360"
+"225052_at"	"TMEM203"	94107	"ENSG00000187713"
+"221202_at"	""	NA	"ENSG00000279413"
+"221030_s_at"	"ARHGAP24"	83478	"ENSG00000138639"
+"223422_s_at"	"ARHGAP24"	83478	"ENSG00000138639"
+"225206_s_at"	"MTRF1L"	54516	"ENSG00000112031"
+"225165_at"	"PPP1R1B"	84152	"ENSG00000131771"
+"220902_at"	""	NA	"ENSG00000232334"
+"221088_s_at"	"PPP1R9A"	55607	"ENSG00000158528"
+"222013_x_at"	"EEF2KMT"	196483	"ENSG00000118894"
+"225354_s_at"	"SH3BGRL2"	83699	"ENSG00000198478"
+"221758_at"	"ARMC6"	93436	"ENSG00000105676"
+"223120_at"	"FUCA2"	2519	"ENSG00000001036"
+"221041_s_at"	"SLC17A5"	26503	"ENSG00000119899"
+"223441_at"	"SLC17A5"	26503	"ENSG00000119899"
+"224447_s_at"	"MIEN1"	84299	"ENSG00000141741"
+"225318_at"	"NSD3"	54904	"ENSG00000147548"
+"221248_s_at"	"NSD3"	54904	"ENSG00000147548"
+"222544_s_at"	"NSD3"	54904	"ENSG00000147548"
+"224076_s_at"	"NSD3"	54904	"ENSG00000147548"
+"225487_at"	"TMEM18"	129787	"ENSG00000151353"
+"225489_at"	"TMEM18"	129787	"ENSG00000151353"
+"222858_s_at"	"DAPP1"	27071	"ENSG00000070190"
+"222859_s_at"	"DAPP1"	27071	"ENSG00000070190"
+"224765_at"	"MSL1"	339287	"ENSG00000188895"
+"221773_at"	"ELK3"	2004	"ENSG00000111145"
+"222164_at"	"RPS20P22"	NA	"ENSG00000239218"
+"221822_at"	"SGF29"	112869	"ENSG00000176476"
+"223115_at"	"MED17"	9440	"ENSG00000042429"
+"222745_s_at"	"KATNBL1"	79768	"ENSG00000134152"
+"221323_at"	"ULBP1"	80329	"ENSG00000111981"
+"223857_x_at"	"EMC4"	51234	"ENSG00000128463"
+"223043_at"	"EMC4"	51234	"ENSG00000128463"
+"223712_at"	"PCBD2"	84105	"ENSG00000132570"
+"224046_s_at"	"PDE7A"	5150	"ENSG00000205268"
+"223358_s_at"	"PDE7A"	5150	"ENSG00000205268"
+"220953_s_at"	"MTMR12"	54545	"ENSG00000150712"
+"225232_at"	"MTMR12"	54545	"ENSG00000150712"
+"221815_at"	"ABHD2"	11057	"ENSG00000140526"
+"225337_at"	"ABHD2"	11057	"ENSG00000140526"
+"223259_at"	"ORMDL3"	94103	"ENSG00000172057"
+"222265_at"	"TNS4"	84951	"ENSG00000131746"
+"223784_at"	"CLTRN"	57393	"ENSG00000147003"
+"225096_at"	"COPRS"	55352	"ENSG00000172301"
+"221349_at"	"VPREB1"	7441	"ENSG00000169575"
+"224170_s_at"	"TULP4"	56995	"ENSG00000130338"
+"223596_at"	"SLC12A6"	9990	"ENSG00000140199"
+"220740_s_at"	"SLC12A6"	9990	"ENSG00000140199"
+"221950_at"	"EMX2"	2018	"ENSG00000170370"
+"225432_s_at"	"KAT14"	57325	"ENSG00000149474"
+"225229_at"	"AFF4"	27125	"ENSG00000072364"
+"225048_at"	"PHF10"	55274	"ENSG00000130024"
+"222209_s_at"	"TMEM135"	65084	"ENSG00000166575"
+"223393_s_at"	"TSHZ3"	57616	"ENSG00000121297"
+"223392_s_at"	"TSHZ3"	57616	"ENSG00000121297"
+"224467_s_at"	"PDCD2L"	84306	"ENSG00000126249"
+"223136_at"	"AIG1"	51390	"ENSG00000146416"
+"220894_x_at"	"PRDM12"	59335	"ENSG00000130711"
+"224949_at"	"YIPF5"	81555	"ENSG00000145817"
+"224953_at"	"YIPF5"	81555	"ENSG00000145817"
+"224934_at"	"YIPF5"	81555	"ENSG00000145817"
+"221423_s_at"	"YIPF5"	81555	"ENSG00000145817"
+"221065_s_at"	"CHST8"	64377	"ENSG00000124302"
+"221736_at"	"RALGAPB"	57148	"ENSG00000170471"
+"221738_at"	"RALGAPB"	57148	"ENSG00000170471"
+"224678_at"	"RALGAPB"	57148	"ENSG00000170471"
+"220928_s_at"	"PRDM16"	63976	"ENSG00000142611"
+"223816_at"	"SLC46A2"	57864	"ENSG00000119457"
+"223634_at"	"RASD2"	23551	"ENSG00000100302"
+"224407_s_at"	"STK26"	51765	"ENSG00000134602"
+"224117_at"	""	NA	"ENSG00000268818"
+"221653_x_at"	"APOL2"	23780	"ENSG00000128335"
+"221013_s_at"	"APOL2"	23780	"ENSG00000128335"
+"222147_s_at"	"ACTR5"	79913	"ENSG00000101442"
+"225525_at"	"KIAA1671"	85379	"ENSG00000197077"
+"223246_s_at"	"STRBP"	55342	"ENSG00000165209"
+"223245_at"	"STRBP"	55342	"ENSG00000165209"
+"222860_s_at"	"PDGFD"	80310	"ENSG00000170962"
+"224271_x_at"	"FRMD8P1"	NA	"ENSG00000227942"
+"222351_at"	"PPP2R1B"	5519	"ENSG00000137713"
+"222193_at"	"LDAH"	60526	"ENSG00000118961"
+"222192_s_at"	"LDAH"	60526	"ENSG00000118961"
+"223692_at"	"NMNAT1"	64802	"ENSG00000173614"
+"220830_at"	"IMPG2"	50939	"ENSG00000081148"
+"222422_s_at"	"NDFIP1"	80762	"ENSG00000131507"
+"222423_at"	"NDFIP1"	80762	"ENSG00000131507"
+"225121_at"	"TBC1D23"	55773	"ENSG00000036054"
+"221032_s_at"	"TMPRSS5"	80975	"ENSG00000166682"
+"223179_at"	"YPEL3"	83719	"ENSG00000090238"
+"220955_x_at"	"RAB23"	51715	"ENSG00000112210"
+"223463_at"	"RAB23"	51715	"ENSG00000112210"
+"223444_at"	"SENP7"	57337	"ENSG00000138468"
+"220735_s_at"	"SENP7"	57337	"ENSG00000138468"
+"224834_at"	"UBTD2"	92181	"ENSG00000168246"
+"224827_at"	"UBTD2"	92181	"ENSG00000168246"
+"222945_x_at"	"OLAH"	55301	"ENSG00000152463"
+"225074_at"	"RAB2B"	84932	"ENSG00000129472"
+"225509_at"	"SAP30L"	79685	"ENSG00000164576"
+"222102_at"	"GSTA3"	2940	"ENSG00000174156"
+"220947_s_at"	"TBC1D10B"	26000	"ENSG00000169221"
+"222749_at"	"SUFU"	51684	"ENSG00000107882"
+"224201_s_at"	"SUFU"	51684	"ENSG00000107882"
+"224202_at"	"SUFU"	51684	"ENSG00000107882"
+"224203_at"	"SUFU"	51684	"ENSG00000107882"
+"223615_at"	"ABI3"	51225	"ENSG00000108798"
+"224523_s_at"	"CMSS1"	84319	"ENSG00000184220"
+"222395_s_at"	"UBE2Z"	65264	"ENSG00000159202"
+"224168_at"	"TXNDC2"	84203	"ENSG00000168454"
+"223998_at"	"TTLL2"	83887	"ENSG00000120440"
+"225198_at"	"VAPA"	9218	"ENSG00000101558"
+"220701_at"	""	55451	"ENSG00000279636"
+"220770_s_at"	"FAM200C"	63920	"ENSG00000221886"
+"222908_at"	"PIEZO2"	63895	"ENSG00000154864"
+"223166_x_at"	"RABL6"	55684	"ENSG00000196642"
+"225377_at"	"RABL6"	55684	"ENSG00000196642"
+"223240_at"	"FBXO8"	26269	"ENSG00000164117"
+"221749_at"	"YTHDF3"	253943	"ENSG00000185728"
+"222163_s_at"	"SPATA5L1"	79029	"ENSG00000171763"
+"222637_at"	"COMMD10"	51397	"ENSG00000145781"
+"222826_at"	"BLOC1S6"	26258	"ENSG00000104164"
+"224883_at"	"BLOC1S6"	26258	"ENSG00000104164"
+"224892_at"	"BLOC1S6"	26258	"ENSG00000104164"
+"221279_at"	"GDAP1"	54332	"ENSG00000104381"
+"224179_s_at"	"MIOX"	55586	"ENSG00000100253"
+"221916_at"	"NEFL"	4747	"ENSG00000277586"
+"221801_x_at"	"NEFL"	4747	"ENSG00000277586"
+"223982_s_at"	"PNPLA8"	50640	"ENSG00000135241"
+"223310_x_at"	"PNPLA8"	50640	"ENSG00000135241"
+"223309_x_at"	"PNPLA8"	50640	"ENSG00000135241"
+"221918_at"	"CDK17"	5128	"ENSG00000059758"
+"223985_at"	"FSD1L"	83856	"ENSG00000106701"
+"223745_at"	"C16orf95"	100506581	"ENSG00000260456"
+"221493_at"	"TSPYL1"	7259	"ENSG00000189241"
+"221086_s_at"	"FEZF2"	55079	"ENSG00000153266"
+"225388_at"	"TSPAN5"	10098	"ENSG00000168785"
+"225387_at"	"TSPAN5"	10098	"ENSG00000168785"
+"223928_s_at"	"GUCA1C"	9626	"ENSG00000138472"
+"221152_at"	"COL8A1"	1295	"ENSG00000144810"
+"221168_at"	"PRDM13"	59336	"ENSG00000112238"
+"223446_s_at"	"DTNBP1"	84062	"ENSG00000047579"
+"223445_at"	"DTNBP1"	84062	"ENSG00000047579"
+"223763_at"	"DTNBP1"	84062	"ENSG00000047579"
+"223368_s_at"	"NTMT1"	28989	"ENSG00000148335"
+"223369_at"	"NTMT1"	28989	"ENSG00000148335"
+"224106_at"	"NTMT1"	28989	"ENSG00000148335"
+"222839_s_at"	"PAPOLG"	64895	"ENSG00000115421"
+"222273_at"	"PAPOLG"	64895	"ENSG00000115421"
+"224427_s_at"	"PAPOLG"	64895	"ENSG00000115421"
+"223323_x_at"	"TRPM7"	54822	"ENSG00000092439"
+"223324_s_at"	"TRPM7"	54822	"ENSG00000092439"
+"221994_at"	"PDLIM5"	10611	"ENSG00000163110"
+"222134_at"	"DDO"	8528	"ENSG00000203797"
+"225018_at"	"SPIRE1"	56907	"ENSG00000134278"
+"224995_at"	"SPIRE1"	56907	"ENSG00000134278"
+"222489_s_at"	"WRNIP1"	56897	"ENSG00000124535"
+"224679_at"	"MESD"	23184	"ENSG00000117899"
+"224672_x_at"	"MESD"	23184	"ENSG00000117899"
+"224675_at"	"MESD"	23184	"ENSG00000117899"
+"222905_s_at"	"TMEM143"	55260	"ENSG00000161558"
+"224485_s_at"	"SLC30A2"	7780	"ENSG00000158014"
+"224380_s_at"	"TAF7L"	54457	"ENSG00000102387"
+"224445_s_at"	"ZFYVE21"	79038	"ENSG00000100711"
+"222690_s_at"	"TMEM39A"	55254	"ENSG00000176142"
+"222477_s_at"	"TM7SF3"	51768	"ENSG00000064115"
+"223004_s_at"	"TIMMDC1"	51300	"ENSG00000113845"
+"225402_at"	"TP53RK"	112858	"ENSG00000172315"
+"224722_at"	"MIB1"	57534	"ENSG00000101752"
+"224720_at"	"MIB1"	57534	"ENSG00000101752"
+"224725_at"	"MIB1"	57534	"ENSG00000101752"
+"224726_at"	"MIB1"	57534	"ENSG00000101752"
+"221259_s_at"	"TEX11"	56159	"ENSG00000120498"
+"223437_at"	"PPARA"	5465	"ENSG00000186951"
+"223438_s_at"	"PPARA"	5465	"ENSG00000186951"
+"220773_s_at"	"GPHN"	10243	"ENSG00000171723"
+"223319_at"	"GPHN"	10243	"ENSG00000171723"
+"224629_at"	"LMAN1"	3998	"ENSG00000074695"
+"224285_at"	"GPR174"	84636	"ENSG00000147138"
+"223926_at"	"KIF2B"	84643	"ENSG00000141200"
+"223550_s_at"	"CA10"	56934	"ENSG00000154975"
+"220889_s_at"	"CA10"	56934	"ENSG00000154975"
+"221367_at"	"MOS"	4342	"ENSG00000172680"
+"222701_s_at"	"CHCHD7"	79145	"ENSG00000170791"
+"221858_at"	"TBC1D12"	23232	"ENSG00000108239"
+"221306_at"	"GPR27"	2850	"ENSG00000170837"
+"221790_s_at"	"LDLRAP1"	26119	"ENSG00000157978"
+"220828_s_at"	"LINC01949"	NA	"ENSG00000288569"
+"223528_s_at"	"METTL17"	64745	"ENSG00000165792"
+"223988_x_at"	"METTL17"	64745	"ENSG00000165792"
+"225030_at"	"BOD1"	91272	"ENSG00000145919"
+"223744_s_at"	"SIAE"	54414	"ENSG00000110013"
+"224391_s_at"	"SIAE"	54414	"ENSG00000110013"
+"224762_at"	"SERINC2"	347735	"ENSG00000168528"
+"221347_at"	"CHRM5"	1133	"ENSG00000184984"
+"223188_at"	"SMG9"	56006	"ENSG00000105771"
+"221335_x_at"	"SMG9"	56006	"ENSG00000105771"
+"222794_x_at"	"MTPAP"	55149	"ENSG00000107951"
+"224180_x_at"	"WDPCP"	51057	"ENSG00000143951"
+"220920_at"	"ATP10B"	23120	"ENSG00000118322"
+"224617_at"	"PTBP3"	9991	"ENSG00000119314"
+"224618_at"	"PTBP3"	9991	"ENSG00000119314"
+"224779_s_at"	"CIAO2A"	84191	"ENSG00000166797"
+"225297_at"	"HAUS1"	115106	"ENSG00000152240"
+"225433_at"	"GTF2A1"	2957	"ENSG00000165417"
+"222694_at"	"CENPBD2P"	65996	"ENSG00000213753"
+"221103_s_at"	"CFAP44"	55779	"ENSG00000206530"
+"221967_at"	"NXPH4"	11247	"ENSG00000182379"
+"221149_at"	"C5AR2"	27202	"ENSG00000134830"
+"220707_s_at"	"FOXRED2"	80020	"ENSG00000100350"
+"220640_at"	"CSNK1G1"	53944	"ENSG00000169118"
+"222866_s_at"	"FLVCR2"	55640	"ENSG00000119686"
+"220551_at"	"SLC17A6"	57084	"ENSG00000091664"
+"221258_s_at"	"KIF18A"	81930	"ENSG00000121621"
+"223593_at"	"AADAT"	51166	"ENSG00000109576"
+"221585_at"	"CACNG4"	27092	"ENSG00000075461"
+"221337_s_at"	"ADAM29"	11086	"ENSG00000168594"
+"223489_x_at"	"EXOSC3"	51010	"ENSG00000107371"
+"223490_s_at"	"EXOSC3"	51010	"ENSG00000107371"
+"225534_at"	"SMIM19"	114926	"ENSG00000176209"
+"222804_x_at"	"DCAF10"	79269	"ENSG00000122741"
+"220919_s_at"	"CFAP43"	80217	"ENSG00000197748"
+"224251_at"	"CFAP43"	80217	"ENSG00000197748"
+"224759_s_at"	"TMEM263"	90488	"ENSG00000151135"
+"222651_s_at"	"TRPS1"	7227	"ENSG00000104447"
+"224218_s_at"	"TRPS1"	7227	"ENSG00000104447"
+"220850_at"	"MORC1"	27136	"ENSG00000114487"
+"220628_s_at"	"SDK2"	54549	"ENSG00000069188"
+"223075_s_at"	"AIF1L"	83543	"ENSG00000126878"
+"223074_s_at"	"AIF1L"	83543	"ENSG00000126878"
+"222321_at"	"AGTR2"	186	"ENSG00000180772"
+"222451_s_at"	"ZDHHC9"	51114	"ENSG00000188706"
+"224474_x_at"	"PPP4R3B"	57223	"ENSG00000275052"
+"222270_at"	"PPP4R3B"	57223	"ENSG00000275052"
+"222519_s_at"	"IFT57"	55081	"ENSG00000114446"
+"222520_s_at"	"IFT57"	55081	"ENSG00000114446"
+"221098_x_at"	"UTP14A"	10813	"ENSG00000156697"
+"221514_at"	"UTP14A"	10813	"ENSG00000156697"
+"223133_at"	"TMEM14B"	81853	"ENSG00000137210"
+"223141_at"	"UCK1"	83549	"ENSG00000130717"
+"223142_s_at"	"UCK1"	83549	"ENSG00000130717"
+"222491_at"	"HGSNAT"	138050	"ENSG00000165102"
+"225216_at"	"FAM199X"	139231	"ENSG00000123575"
+"221160_s_at"	"CABP5"	56344	"ENSG00000105507"
+"221844_x_at"	"SPCS3"	60559	"ENSG00000129128"
+"222753_s_at"	"SPCS3"	60559	"ENSG00000129128"
+"222739_at"	"TMEM62"	80021	"ENSG00000137842"
+"222856_at"	"APLN"	8862	"ENSG00000171388"
+"223285_s_at"	"ST6GALNAC4"	27090	"ENSG00000136840"
+"220937_s_at"	"ST6GALNAC4"	27090	"ENSG00000136840"
+"221551_x_at"	"ST6GALNAC4"	27090	"ENSG00000136840"
+"220649_at"	"AGBL3"	340351	"ENSG00000146856"
+"223084_s_at"	"CCNDBP1"	23582	"ENSG00000166946"
+"220799_at"	"GCM2"	9247	"ENSG00000124827"
+"221011_s_at"	"LBH"	81606	"ENSG00000213626"
+"222920_s_at"	"TESPA1"	9840	"ENSG00000135426"
+"222133_s_at"	"PHF20L1"	51105	"ENSG00000129292"
+"222842_at"	"AGO4"	192670	"ENSG00000134698"
+"222010_at"	"TCP1"	6950	"ENSG00000120438"
+"222011_s_at"	"TCP1"	6950	"ENSG00000120438"
+"223386_at"	"FAM118B"	79607	"ENSG00000197798"
+"220556_at"	"ATP1B4"	23439	"ENSG00000101892"
+"225385_s_at"	"HNRNPLL"	92906	"ENSG00000143889"
+"225386_s_at"	"HNRNPLL"	92906	"ENSG00000143889"
+"225236_at"	"RBM18"	92400	"ENSG00000119446"
+"225126_at"	"MRRF"	92399	"ENSG00000148187"
+"224761_at"	"GNA13"	10672	"ENSG00000120063"
+"224393_s_at"	"TMEM121B"	27439	"ENSG00000183307"
+"225299_at"	"MYO5B"	4645	"ENSG00000167306"
+"225336_at"	"SCAF11"	9169	"ENSG00000139218"
+"224738_x_at"	"RPL7L1"	285855	"ENSG00000146223"
+"221492_s_at"	"ATG3"	64422	"ENSG00000144848"
+"225291_at"	"PNPT1"	87178	"ENSG00000138035"
+"222171_s_at"	"PKNOX2"	63876	"ENSG00000165495"
+"223689_at"	"IGF2BP1"	10642	"ENSG00000159217"
+"225341_at"	"MTERF2"	80298	"ENSG00000120832"
+"225346_at"	"MTERF2"	80298	"ENSG00000120832"
+"222440_s_at"	"THRAP3"	9967	"ENSG00000054118"
+"222439_s_at"	"THRAP3"	9967	"ENSG00000054118"
+"220911_s_at"	"NYNRIN"	57523	"ENSG00000205978"
+"224723_x_at"	"SMIM30"	401397	"ENSG00000214194"
+"223225_s_at"	"SEH1L"	81929	"ENSG00000085415"
+"221931_s_at"	"SEH1L"	81929	"ENSG00000085415"
+"224696_s_at"	"DCAF5"	8816	"ENSG00000139990"
+"224697_at"	"DCAF5"	8816	"ENSG00000139990"
+"224703_at"	"DCAF5"	8816	"ENSG00000139990"
+"222850_s_at"	"DNAJB14"	79982	"ENSG00000164031"
+"222675_s_at"	"BAIAP2L1"	55971	"ENSG00000006453"
+"225185_at"	"MRAS"	22808	"ENSG00000158186"
+"222854_s_at"	"GEMIN8"	54960	"ENSG00000046647"
+"223202_s_at"	"TMEM164"	84187	"ENSG00000157600"
+"223201_s_at"	"TMEM164"	84187	"ENSG00000157600"
+"223254_s_at"	"G2E3"	55632	"ENSG00000092140"
+"223258_s_at"	"G2E3"	55632	"ENSG00000092140"
+"223255_at"	"G2E3"	55632	"ENSG00000092140"
+"223257_at"	"G2E3"	55632	"ENSG00000092140"
+"223256_at"	"G2E3"	55632	"ENSG00000092140"
+"224063_at"	"NLN"	57486	"ENSG00000123213"
+"224439_x_at"	"RNF7"	9616	"ENSG00000114125"
+"224395_s_at"	"RNF7"	9616	"ENSG00000114125"
+"224394_at"	"RNF7"	9616	"ENSG00000114125"
+"223439_at"	"NKAP"	79576	"ENSG00000101882"
+"222586_s_at"	"OSBPL11"	114885	"ENSG00000144909"
+"223566_s_at"	"BCOR"	54880	"ENSG00000183337"
+"223916_s_at"	"BCOR"	54880	"ENSG00000183337"
+"223915_at"	"BCOR"	54880	"ENSG00000183337"
+"220670_at"	""	NA	"ENSG00000279863"
+"225535_s_at"	"TIMM23"	100287932	"ENSG00000265354"
+"224812_at"	"HIBADH"	11112	"ENSG00000106049"
+"224506_s_at"	"PLPP7"	84814	"ENSG00000160539"
+"221865_at"	"TMEM268"	203197	"ENSG00000157693"
+"221085_at"	"TNFSF15"	9966	"ENSG00000181634"
+"222476_at"	"CNOT6"	57472	"ENSG00000113300"
+"225533_at"	"PHF19"	26147	"ENSG00000119403"
+"223152_at"	"PPP1R12C"	54776	"ENSG00000125503"
+"224752_at"	"STMP1"	647087	"ENSG00000243317"
+"224751_at"	"STMP1"	647087	"ENSG00000243317"
+"220585_at"	"HKDC1"	80201	"ENSG00000156510"
+"225355_at"	"NEURL1B"	54492	"ENSG00000214357"
+"224379_at"	"FTHL17"	53940	"ENSG00000132446"
+"223786_at"	"CHST6"	4166	"ENSG00000183196"
+"222471_s_at"	"KCMF1"	56888	"ENSG00000176407"
+"221378_at"	"CER1"	9350	"ENSG00000147869"
+"222891_s_at"	"BCL11A"	53335	"ENSG00000119866"
+"224284_x_at"	""	NA	"ENSG00000279352"
+"223014_at"	"UBE2R2"	54926	"ENSG00000107341"
+"224789_at"	"DCAF12"	25853	"ENSG00000198876"
+"225106_s_at"	"OGFOD1"	55239	"ENSG00000087263"
+"221090_s_at"	"OGFOD1"	55239	"ENSG00000087263"
+"225109_at"	"OGFOD1"	55239	"ENSG00000087263"
+"225110_at"	"OGFOD1"	55239	"ENSG00000087263"
+"222738_at"	"WWC2"	80014	"ENSG00000151718"
+"223344_s_at"	"MS4A7"	58475	"ENSG00000166927"
+"224358_s_at"	"MS4A7"	58475	"ENSG00000166927"
+"220674_at"	"CD22"	933	"ENSG00000012124"
+"223509_at"	"CLDN2"	9075	"ENSG00000165376"
+"222816_s_at"	"ZCCHC2"	54877	"ENSG00000141664"
+"224503_s_at"	"ZCCHC2"	54877	"ENSG00000141664"
+"221868_at"	"PAIP2B"	400961	"ENSG00000124374"
+"221970_s_at"	"NOL11"	25926	"ENSG00000130935"
+"222538_s_at"	"APPL1"	26060	"ENSG00000157500"
+"220790_s_at"	"MS4A5"	64232	"ENSG00000166930"
+"225404_at"	"SMIM12"	113444	"ENSG00000163866"
+"222711_s_at"	"RHBDF1"	64285	"ENSG00000007384"
+"225054_x_at"	""	NA	"ENSG00000278730"
+"225055_at"	""	NA	"ENSG00000278730"
+"225510_at"	"OAF"	220323	"ENSG00000184232"
+"224436_s_at"	"NIPSNAP3A"	25934	"ENSG00000136783"
+"221104_s_at"	"NIPSNAP3B"	55335	"ENSG00000165028"
+"223764_x_at"	"NIPSNAP3B"	55335	"ENSG00000165028"
+"223491_at"	"COMMD2"	51122	"ENSG00000114744"
+"224461_s_at"	"AIFM2"	84883	"ENSG00000042286"
+"222994_at"	"PRDX5"	25824	"ENSG00000126432"
+"222025_s_at"	"OPLAH"	26873	"ENSG00000178814"
+"223663_at"	"CCDC88B"	283234	"ENSG00000168071"
+"225380_at"	"PKDCC"	91461	"ENSG00000162878"
+"222522_x_at"	"MRPS10"	55173	"ENSG00000048544"
+"224247_s_at"	"MRPS10"	55173	"ENSG00000048544"
+"221289_at"	"DLX6"	1750	"ENSG00000006377"
+"222292_at"	"CD40"	958	"ENSG00000101017"
+"220807_at"	"HBQ1"	3049	"ENSG00000086506"
+"223883_s_at"	"STK31"	56164	"ENSG00000196335"
+"220973_s_at"	"SHARPIN"	81858	"ENSG00000179526"
+"224509_s_at"	"RTN4IP1"	84816	"ENSG00000130347"
+"223829_at"	"TKTL2"	84076	"ENSG00000151005"
+"223282_at"	"TSHZ1"	10194	"ENSG00000179981"
+"223283_s_at"	"TSHZ1"	10194	"ENSG00000179981"
+"222998_at"	"MAF1"	84232	"ENSG00000179632"
+"224831_at"	"CPEB4"	80315	"ENSG00000113742"
+"224829_at"	"CPEB4"	80315	"ENSG00000113742"
+"224828_at"	"CPEB4"	80315	"ENSG00000113742"
+"221629_x_at"	"HGH1"	51236	"ENSG00000235173"
+"221294_at"	"GPR21"	2844	"ENSG00000188394"
+"223939_at"	"SUCNR1"	56670	"ENSG00000198829"
+"221808_at"	"RAB9A"	9367	"ENSG00000123595"
+"223205_s_at"	"L3MBTL2"	83746	"ENSG00000100395"
+"221089_at"	"NOX3"	50508	"ENSG00000074771"
+"224150_s_at"	"CEP70"	80321	"ENSG00000114107"
+"223858_at"	"ESRRB"	2103	"ENSG00000119715"
+"222494_at"	"FOXN3"	1112	"ENSG00000053254"
+"224695_at"	"CNOT11"	55571	"ENSG00000158435"
+"222015_at"	"CSNK1E"	1454	"ENSG00000213923"
+"221130_s_at"	""	NA	"ENSG00000279083"
+"224371_at"	"ADAMTSL1"	92949	"ENSG00000178031"
+"221641_s_at"	"ACOT9"	23597	"ENSG00000123130"
+"222545_s_at"	"TMEM254"	80195	"ENSG00000133678"
+"223156_at"	"MRPS23"	51649	"ENSG00000181610"
+"223749_at"	"C1QTNF2"	114898	"ENSG00000145861"
+"224656_s_at"	"MTPN"	136319	"ENSG00000105887"
+"225338_at"	"ZYG11B"	79699	"ENSG00000162378"
+"225350_s_at"	"ZYG11B"	79699	"ENSG00000162378"
+"222408_s_at"	"YPEL5"	51646	"ENSG00000119801"
+"225403_at"	"RPP25L"	138716	"ENSG00000164967"
+"221620_s_at"	"APOO"	79135	"ENSG00000184831"
+"224006_at"	"LINC02882"	100507377	"ENSG00000251138"
+"224701_at"	"PARP14"	54625	"ENSG00000173193"
+"221387_at"	"NPFFR1"	64106	"ENSG00000148734"
+"221592_at"	"RPL31"	6160	"ENSG00000071082"
+"221593_s_at"	"RPL31"	6160	"ENSG00000071082"
+"224462_s_at"	"CHCHD6"	84303	"ENSG00000159685"
+"223893_at"	"ENAM"	10117	"ENSG00000132464"
+"221354_s_at"	"MCHR1"	2847	"ENSG00000128285"
+"223855_s_at"	"MCHR1"	2847	"ENSG00000128285"
+"222244_s_at"	"TUG1"	55000	"ENSG00000253352"
+"222267_at"	"TMEM209"	84928	"ENSG00000146842"
+"224101_x_at"	"MRS2"	57380	"ENSG00000124532"
+"224913_s_at"	"TIMM50"	92609	"ENSG00000105197"
+"225414_at"	"RNF149"	284996	"ENSG00000163162"
+"220575_at"	"FAM106A"	80039	"ENSG00000273018"
+"225438_at"	"NUDCD1"	84955	"ENSG00000120526"
+"225439_at"	"NUDCD1"	84955	"ENSG00000120526"
+"224460_s_at"	"L2HGDH"	79944	"ENSG00000087299"
+"224459_at"	"L2HGDH"	79944	"ENSG00000087299"
+"222898_s_at"	"DLL3"	10683	"ENSG00000090932"
+"220668_s_at"	"DNMT3B"	1789	"ENSG00000088305"
+"222221_x_at"	"EHD1"	10938	"ENSG00000110047"
+"223374_s_at"	"B3GALNT1"	8706	"ENSG00000169255"
+"225417_at"	"EPC1"	80314	"ENSG00000120616"
+"223875_s_at"	"EPC1"	80314	"ENSG00000120616"
+"224859_at"	"CD276"	80381	"ENSG00000103855"
+"223248_at"	"HSDL1"	83693	"ENSG00000103160"
+"223315_at"	"NTN4"	59277	"ENSG00000074527"
+"222068_s_at"	"DNAAF1"	123872	"ENSG00000154099"
+"221080_s_at"	"DENND1C"	79958	"ENSG00000205744"
+"222516_at"	"AP3M1"	26985	"ENSG00000185009"
+"222517_at"	"AP3M1"	26985	"ENSG00000185009"
+"224366_s_at"	"REPS1"	85021	"ENSG00000135597"
+"224742_at"	"ABHD12"	26090	"ENSG00000100997"
+"223599_at"	"TRIM6"	117854	"ENSG00000121236"
+"221876_at"	"ZNF783"	100289678	"ENSG00000204946"
+"225286_at"	"ARSD"	414	"ENSG00000006756"
+"223696_at"	"ARSD"	414	"ENSG00000006756"
+"225280_x_at"	"ARSD"	414	"ENSG00000006756"
+"223695_s_at"	"ARSD"	414	"ENSG00000006756"
+"221618_s_at"	"TAF9B"	51616	"ENSG00000187325"
+"222585_x_at"	"KRCC1"	51315	"ENSG00000172086"
+"224072_s_at"	"KCNK9"	51305	"ENSG00000169427"
+"224378_x_at"	"MAP1LC3A"	84557	"ENSG00000101460"
+"224416_s_at"	"MED28"	80306	"ENSG00000118579"
+"222636_at"	"MED28"	80306	"ENSG00000118579"
+"222635_s_at"	"MED28"	80306	"ENSG00000118579"
+"225537_at"	"TRAPPC6B"	122553	"ENSG00000182400"
+"225272_at"	"SAT2"	112483	"ENSG00000141504"
+"225116_at"	"HIPK2"	28996	"ENSG00000064393"
+"225368_at"	"HIPK2"	28996	"ENSG00000064393"
+"225097_at"	"HIPK2"	28996	"ENSG00000064393"
+"225115_at"	"HIPK2"	28996	"ENSG00000064393"
+"224066_s_at"	"HIPK2"	28996	"ENSG00000064393"
+"224065_at"	"HIPK2"	28996	"ENSG00000064393"
+"223529_at"	"SYT4"	6860	"ENSG00000132872"
+"220986_s_at"	"TIGD6"	81789	"ENSG00000164296"
+"221444_at"	"TAS2R16"	50833	"ENSG00000128519"
+"223974_at"	"DLGAP1-AS2"	NA	"ENSG00000262001"
+"220671_at"	"NOCT"	25819	"ENSG00000151014"
+"222169_x_at"	"SH2D3A"	10045	"ENSG00000125731"
+"223734_at"	"MGARP"	84709	"ENSG00000137463"
+"221456_at"	"TAS2R3"	50831	"ENSG00000127362"
+"222425_s_at"	"POLDIP2"	26073	"ENSG00000004142"
+"224856_at"	"FKBP5"	2289	"ENSG00000096060"
+"224840_at"	"FKBP5"	2289	"ENSG00000096060"
+"222006_at"	"LETM1"	3954	"ENSG00000168924"
+"225080_at"	"MYO1C"	4641	"ENSG00000197879"
+"221440_s_at"	"RBBP9"	10741	"ENSG00000089050"
+"222057_at"	"NOL12"	79159	"ENSG00000273899"
+"224048_at"	"USP44"	84101	"ENSG00000136014"
+"223836_at"	"FGFBP2"	83888	"ENSG00000137441"
+"222672_at"	"LYRM4"	57128	"ENSG00000214113"
+"224665_at"	"ANAPC16"	119504	"ENSG00000166295"
+"224664_at"	"ANAPC16"	119504	"ENSG00000166295"
+"224667_x_at"	"ANAPC16"	119504	"ENSG00000166295"
+"224089_at"	""	NA	"ENSG00000279029"
+"220965_s_at"	"RSPH6A"	81492	"ENSG00000104941"
+"221075_s_at"	"NCR2"	9436	"ENSG00000096264"
+"220623_s_at"	"TSGA10"	80705	"ENSG00000135951"
+"223838_at"	"TSGA10"	80705	"ENSG00000135951"
+"225136_at"	"PLEKHA2"	59339	"ENSG00000169499"
+"221827_at"	"RBCK1"	10616	"ENSG00000125826"
+"224413_s_at"	"TM2D2"	83877	"ENSG00000169490"
+"223376_s_at"	"BRI3"	25798	"ENSG00000164713"
+"223304_at"	"SLC37A3"	84255	"ENSG00000157800"
+"224484_s_at"	"BRMS1L"	84312	"ENSG00000100916"
+"222259_s_at"	"SPO11"	23626	"ENSG00000054796"
+"221870_at"	"EHD2"	30846	"ENSG00000024422"
+"224483_s_at"	"MFSD9"	84804	"ENSG00000135953"
+"221709_s_at"	"ZNF839"	55778	"ENSG00000022976"
+"222862_s_at"	"AK5"	26289	"ENSG00000154027"
+"220722_s_at"	"SLC5A7"	60482	"ENSG00000115665"
+"222967_at"	"SLC5A7"	60482	"ENSG00000115665"
+"225429_at"	"PPP6C"	5537	"ENSG00000119414"
+"225426_at"	"PPP6C"	5537	"ENSG00000119414"
+"221699_s_at"	"DDX50"	79009	"ENSG00000107625"
+"221925_s_at"	"CSPP1"	79848	"ENSG00000104218"
+"221963_x_at"	"ZNF587B"	100293516	"ENSG00000269343"
+"225372_at"	"VSIR"	64115	"ENSG00000107738"
+"225373_at"	"VSIR"	64115	"ENSG00000107738"
+"223714_at"	"ZNF256"	10172	"ENSG00000152454"
+"224324_at"	"MRO"	83876	"ENSG00000134042"
+"224323_s_at"	"MRO"	83876	"ENSG00000134042"
+"224527_at"	"CDH23"	64072	"ENSG00000107736"
+"225342_at"	"AK4"	205	"ENSG00000162433"
+"222983_s_at"	"PAIP2"	51247	"ENSG00000120727"
+"222984_at"	"PAIP2"	51247	"ENSG00000120727"
+"223160_s_at"	"PPP4R3A"	55671	"ENSG00000100796"
+"223732_at"	"SLC23A1"	9963	"ENSG00000170482"
+"223157_at"	"NOA1"	84273	"ENSG00000084092"
+"223069_s_at"	"EML4"	27436	"ENSG00000143924"
+"223068_at"	"EML4"	27436	"ENSG00000143924"
+"223565_at"	"MZB1"	51237	"ENSG00000170476"
+"221286_s_at"	"MZB1"	51237	"ENSG00000170476"
+"221998_s_at"	"VRK3"	51231	"ENSG00000105053"
+"221999_at"	"VRK3"	51231	"ENSG00000105053"
+"225205_at"	"KIF3B"	9371	"ENSG00000101350"
+"225224_at"	"NOL4L"	140688	"ENSG00000197183"
+"225032_at"	"FNDC3B"	64778	"ENSG00000075420"
+"222693_at"	"FNDC3B"	64778	"ENSG00000075420"
+"222692_s_at"	"FNDC3B"	64778	"ENSG00000075420"
+"220979_s_at"	"ST6GALNAC5"	81849	"ENSG00000117069"
+"224724_at"	"SULF2"	55959	"ENSG00000196562"
+"221351_at"	"HTR1A"	3350	"ENSG00000178394"
+"223508_at"	"NOTCH1"	4851	"ENSG00000148400"
+"223543_at"	"PDZD4"	57595	"ENSG00000067840"
+"224974_at"	"SUDS3"	64426	"ENSG00000111707"
+"222305_at"	"HK2-DT"	NA	"ENSG00000272711"
+"221190_s_at"	"RMC1"	29919	"ENSG00000141452"
+"220923_s_at"	"PNMA3"	29944	"ENSG00000183837"
+"223621_at"	"PNMA3"	29944	"ENSG00000183837"
+"223876_at"	"SPATA16"	83893	"ENSG00000144962"
+"225364_at"	"STK4"	6789	"ENSG00000101109"
+"223746_at"	"STK4"	6789	"ENSG00000101109"
+"224878_at"	"UBFD1"	56061	"ENSG00000103353"
+"221113_s_at"	"WNT16"	51384	"ENSG00000002745"
+"224022_x_at"	"WNT16"	51384	"ENSG00000002745"
+"223061_at"	"CHID1"	66005	"ENSG00000177830"
+"220559_at"	"EN1"	2019	"ENSG00000163064"
+"221469_at"	"GPR32"	2854	"ENSG00000142511"
+"222416_at"	"ALDH18A1"	5832	"ENSG00000059573"
+"221299_at"	"GPR173"	54328	"ENSG00000184194"
+"221249_s_at"	"FAM117A"	81558	"ENSG00000121104"
+"222757_s_at"	"MAP3K20"	51776	"ENSG00000091436"
+"223519_at"	"MAP3K20"	51776	"ENSG00000091436"
+"223394_at"	"SERTAD1"	29950	"ENSG00000197019"
+"222464_s_at"	"MCMBP"	79892	"ENSG00000197771"
+"225263_at"	"HS6ST1"	9394	"ENSG00000136720"
+"223507_at"	"CLPX"	10845	"ENSG00000166855"
+"223230_at"	"PRPF38A"	84950	"ENSG00000134748"
+"222768_s_at"	"TRMT6"	51605	"ENSG00000089195"
+"224320_s_at"	"MCM8"	84515	"ENSG00000125885"
+"224088_at"	"NMUR2"	56923	"ENSG00000132911"
+"221800_s_at"	"FAAP100"	80233	"ENSG00000185504"
+"225322_s_at"	"FAAP100"	80233	"ENSG00000185504"
+"222009_at"	"CEMP1"	752014	"ENSG00000205923"
+"224986_s_at"	"PDPK1"	5170	"ENSG00000140992"
+"222992_s_at"	"NDUFB9"	4715	"ENSG00000147684"
+"222588_s_at"	"NKAPD1"	55216	"ENSG00000150776"
+"225384_at"	"DOCK7"	85440	"ENSG00000116641"
+"221128_at"	"ADAM19"	8728	"ENSG00000135074"
+"223478_at"	"TIMM8B"	26521	"ENSG00000150779"
+"224850_at"	"ATAD1"	84896	"ENSG00000138138"
+"224132_at"	""	NA	"ENSG00000266498"
+"221778_at"	"KDM7A"	80853	"ENSG00000006459"
+"225142_at"	"KDM7A"	80853	"ENSG00000006459"
+"222940_at"	"SULT1E1"	6783	"ENSG00000109193"
+"221438_s_at"	"TEX12"	56158	"ENSG00000150783"
+"225201_s_at"	"MRPL14"	64928	"ENSG00000180992"
+"225271_at"	"TMEM63B"	55362	"ENSG00000137216"
+"221220_s_at"	"SCYL2"	55681	"ENSG00000136021"
+"224960_at"	"SCYL2"	55681	"ENSG00000136021"
+"224961_at"	"SCYL2"	55681	"ENSG00000136021"
+"221944_at"	""	NA	"ENSG00000261613"
+"222260_at"	""	NA	"ENSG00000261093"
+"221199_at"	"GFRA4"	64096	"ENSG00000125861"
+"223076_s_at"	"NSUN2"	54888	"ENSG00000037474"
+"223163_s_at"	"ZC3HC1"	51530	"ENSG00000091732"
+"223467_at"	"RASD1"	51655	"ENSG00000108551"
+"224432_at"	"SH3GLB2"	56904	"ENSG00000148341"
+"224907_s_at"	"SH3GLB2"	56904	"ENSG00000148341"
+"224235_at"	""	NA	"ENSG00000279985"
+"224740_at"	"SMIM15"	643155	"ENSG00000188725"
+"221885_at"	"DENND2A"	27147	"ENSG00000146966"
+"221448_s_at"	"TEX15"	56154	"ENSG00000133863"
+"221482_s_at"	"ARPP19"	10776	"ENSG00000128989"
+"221483_s_at"	"ARPP19"	10776	"ENSG00000128989"
+"221817_at"	"DOLPP1"	57171	"ENSG00000167130"
+"221991_at"	"NXPH3"	11248	"ENSG00000182575"
+"223209_s_at"	"SELENOS"	55829	"ENSG00000131871"
+"221433_at"	"FGF21"	26291	"ENSG00000105550"
+"223055_s_at"	"XPO5"	57510	"ENSG00000124571"
+"223057_s_at"	"XPO5"	57510	"ENSG00000124571"
+"223056_s_at"	"XPO5"	57510	"ENSG00000124571"
+"220555_s_at"	"PDZD7"	79955	"ENSG00000186862"
+"221752_at"	"SSH1"	54434	"ENSG00000084112"
+"221753_at"	"SSH1"	54434	"ENSG00000084112"
+"221702_s_at"	"TM2D3"	80213	"ENSG00000184277"
+"221000_s_at"	"KAZALD1"	81621	"ENSG00000107821"
+"222879_s_at"	"POLH"	5429	"ENSG00000170734"
+"223701_s_at"	"USP47"	55031	"ENSG00000170242"
+"223118_s_at"	"USP47"	55031	"ENSG00000170242"
+"221518_s_at"	"USP47"	55031	"ENSG00000170242"
+"223119_s_at"	"USP47"	55031	"ENSG00000170242"
+"223117_s_at"	"USP47"	55031	"ENSG00000170242"
+"221126_at"	"USP47"	55031	"ENSG00000170242"
+"221127_s_at"	"USP47"	55031	"ENSG00000170242"
+"225526_at"	"MKLN1"	4289	"ENSG00000128585"
+"223789_s_at"	"GTPBP2"	54676	"ENSG00000172432"
+"221050_s_at"	"GTPBP2"	54676	"ENSG00000172432"
+"223788_at"	"GTPBP2"	54676	"ENSG00000172432"
+"221810_at"	"RAB15"	376267	"ENSG00000139998"
+"224497_x_at"	"HSD17B14"	51171	"ENSG00000087076"
+"224494_x_at"	"HSD17B14"	51171	"ENSG00000087076"
+"223457_at"	"COPG2"	26958	"ENSG00000158623"
+"220625_s_at"	"ELF5"	2001	"ENSG00000135374"
+"220624_s_at"	"ELF5"	2001	"ENSG00000135374"
+"225307_at"	"ZNF511"	118472	"ENSG00000198546"
+"223139_s_at"	"DHX36"	170506	"ENSG00000174953"
+"223138_s_at"	"DHX36"	170506	"ENSG00000174953"
+"221376_at"	"FGF17"	8822	"ENSG00000158815"
+"222355_at"	"ZNF585B"	92285	"ENSG00000245680"
+"220761_s_at"	"TAOK3"	51347	"ENSG00000135090"
+"222929_at"	"FHIP2B"	64760	"ENSG00000158863"
+"224053_s_at"	"SLC4A9"	83697	"ENSG00000113073"
+"224624_at"	"LRRC8A"	56262	"ENSG00000136802"
+"222048_at"	""	1416	"ENSG00000291087"
+"221197_s_at"	"CHAT"	1103	"ENSG00000070748"
+"225343_at"	"TMED8"	283578	"ENSG00000100580"
+"225193_at"	"TFIP11-DT"	100507599	"ENSG00000261188"
+"224252_s_at"	"FXYD5"	53827	"ENSG00000089327"
+"223602_at"	"USP30"	84749	"ENSG00000135093"
+"221553_at"	"MAGT1"	84061	"ENSG00000102158"
+"224899_s_at"	"MAGT1"	84061	"ENSG00000102158"
+"221884_at"	"MECOM"	2122	"ENSG00000085276"
+"225419_at"	"MPLKIP"	136647	"ENSG00000168303"
+"220886_at"	"GABRQ"	55879	"ENSG00000268089"
+"222465_at"	"RSL24D1"	51187	"ENSG00000137876"
+"224715_at"	"DYNC2I2"	89891	"ENSG00000119333"
+"220632_s_at"	"POMT2"	29954	"ENSG00000009830"
+"223036_at"	"FARSB"	10056	"ENSG00000116120"
+"223035_s_at"	"FARSB"	10056	"ENSG00000116120"
+"225495_x_at"	"RAD23A"	5886	"ENSG00000179262"
+"224936_at"	"EIF2S3"	1968	"ENSG00000130741"
+"224935_at"	"EIF2S3"	1968	"ENSG00000130741"
+"225294_s_at"	"TRAPPC1"	58485	"ENSG00000170043"
+"224325_at"	"FZD8"	8325	"ENSG00000177283"
+"224431_s_at"	"KMT5C"	84787	"ENSG00000133247"
+"224826_at"	"GPCPD1"	56261	"ENSG00000125772"
+"224835_at"	"GPCPD1"	56261	"ENSG00000125772"
+"221866_at"	"TFEB"	7942	"ENSG00000112561"
+"223058_at"	"FAM107B"	83641	"ENSG00000065809"
+"223059_s_at"	"FAM107B"	83641	"ENSG00000065809"
+"225389_at"	"BTBD6"	90135	"ENSG00000184887"
+"223340_at"	"ATL1"	51062	"ENSG00000198513"
+"222369_at"	"NAA40"	79829	"ENSG00000110583"
+"224782_at"	"ZMAT2"	153527	"ENSG00000146007"
+"223284_at"	"NAT14"	57106	"ENSG00000090971"
+"224548_at"	"HES7"	84667	"ENSG00000179111"
+"220686_s_at"	"PIWIL2"	55124	"ENSG00000197181"
+"224611_s_at"	"DNAJC5"	80331	"ENSG00000101152"
+"224612_s_at"	"DNAJC5"	80331	"ENSG00000101152"
+"224613_s_at"	"DNAJC5"	80331	"ENSG00000101152"
+"223610_at"	"SEMA5B"	54437	"ENSG00000082684"
+"224442_at"	"PHF6"	84295	"ENSG00000156531"
+"225501_at"	"PHF6"	84295	"ENSG00000156531"
+"221869_at"	"ZNF512B"	57473	"ENSG00000196700"
+"220748_s_at"	"ZNF580"	51157	"ENSG00000213015"
+"223389_s_at"	"ZNF581"	51545	"ENSG00000171425"
+"221141_x_at"	"EPN1"	29924	"ENSG00000063245"
+"223494_at"	"OGA"	10724	"ENSG00000198408"
+"222882_s_at"	"BORCS6"	54785	"ENSG00000196544"
+"225362_at"	"PABIR2"	159090	"ENSG00000156504"
+"225361_x_at"	"PABIR2"	159090	"ENSG00000156504"
+"222673_x_at"	"PABIR2"	159090	"ENSG00000156504"
+"222853_at"	"FLRT3"	23767	"ENSG00000125848"
+"222665_at"	"RMDN1"	51115	"ENSG00000176623"
+"220659_s_at"	"TRAPPC14"	55262	"ENSG00000146826"
+"221321_s_at"	"KCNIP2"	30819	"ENSG00000120049"
+"223727_at"	"KCNIP2"	30819	"ENSG00000120049"
+"222183_x_at"	"MBD3"	53615	"ENSG00000071655"
+"224848_at"	"CDK6"	1021	"ENSG00000105810"
+"224851_at"	"CDK6"	1021	"ENSG00000105810"
+"224847_at"	"CDK6"	1021	"ENSG00000105810"
+"222956_at"	"FIGN"	55137	"ENSG00000182263"
+"222959_at"	"CNGB3"	54714	"ENSG00000170289"
+"223575_at"	"KIAA1549"	57670	"ENSG00000122778"
+"223554_s_at"	"RANGRF"	29098	"ENSG00000108961"
+"221360_s_at"	"GHSR"	2693	"ENSG00000121853"
+"224554_at"	"GHSR"	2693	"ENSG00000121853"
+"223295_s_at"	"LUC7L"	55692	"ENSG00000007392"
+"223546_x_at"	"LUC7L"	55692	"ENSG00000007392"
+"223497_at"	"FAM135A"	57579	"ENSG00000082269"
+"221233_s_at"	"FAM135A"	57579	"ENSG00000082269"
+"223009_at"	"LAMTOR1"	55004	"ENSG00000149357"
+"220685_at"	"FAM120C"	54954	"ENSG00000184083"
+"224707_at"	"CYSTM1"	84418	"ENSG00000120306"
+"221684_s_at"	"NYX"	60506	"ENSG00000188937"
+"221986_s_at"	"KLHL24"	54800	"ENSG00000114796"
+"221985_at"	"KLHL24"	54800	"ENSG00000114796"
+"221392_at"	"TAS2R4"	50832	"ENSG00000127364"
+"223620_at"	"GPR34"	2857	"ENSG00000171659"
+"223164_at"	"CCM2"	83605	"ENSG00000136280"
+"224221_s_at"	"VAV3"	10451	"ENSG00000134215"
+"222822_s_at"	"MMRN2"	79812	"ENSG00000173269"
+"222035_s_at"	"PAPOLA"	10914	"ENSG00000090060"
+"223503_at"	"TMEM163"	81615	"ENSG00000152128"
+"222205_x_at"	"FAM182B"	NA	"ENSG00000175170"
+"221312_at"	"GLP2R"	9340	"ENSG00000065325"
+"220683_at"	"RDH8"	50700	"ENSG00000080511"
+"224377_s_at"	"RAB18"	22931	"ENSG00000099246"
+"224787_s_at"	"RAB18"	22931	"ENSG00000099246"
+"223336_s_at"	"RAB18"	22931	"ENSG00000099246"
+"223950_s_at"	"FLYWCH1"	84256	"ENSG00000059122"
+"221675_s_at"	"CHPT1"	56994	"ENSG00000111666"
+"221649_s_at"	"PPAN"	56342	"ENSG00000130810"
+"223210_at"	"CHURC1"	91612	"ENSG00000258289"
+"222917_s_at"	"TBX3"	6926	"ENSG00000135111"
+"225424_at"	"GPAM"	57678	"ENSG00000119927"
+"225420_at"	"GPAM"	57678	"ENSG00000119927"
+"221874_at"	"ELAPOR1"	57535	"ENSG00000116299"
+"221603_at"	"PEX16"	9409	"ENSG00000121680"
+"221604_s_at"	"PEX16"	9409	"ENSG00000121680"
+"222681_at"	"POGLUT1"	56983	"ENSG00000163389"
+"223845_at"	"VSIG10"	54621	"ENSG00000176834"
+"222553_x_at"	"OXR1"	55074	"ENSG00000164830"
+"223879_s_at"	"OXR1"	55074	"ENSG00000164830"
+"223743_s_at"	"MRPL4"	51073	"ENSG00000105364"
+"223742_at"	"MRPL4"	51073	"ENSG00000105364"
+"220780_at"	"PLA2G3"	50487	"ENSG00000100078"
+"224750_at"	"RNF185"	91445	"ENSG00000138942"
+"223262_s_at"	"FGFR1OP2"	26127	"ENSG00000111790"
+"223263_s_at"	"FGFR1OP2"	26127	"ENSG00000111790"
+"224533_s_at"	"TRAV23DV6"	NA	"ENSG00000211803"
+"220751_s_at"	"FAXDC2"	10826	"ENSG00000170271"
+"221756_at"	"PIK3IP1"	113791	"ENSG00000100100"
+"221757_at"	"PIK3IP1"	113791	"ENSG00000100100"
+"221087_s_at"	"APOL3"	80833	"ENSG00000128284"
+"225520_at"	"MTHFD1L"	25902	"ENSG00000120254"
+"223221_at"	"SCO1"	6341	"ENSG00000133028"
+"223589_at"	"ZNF416"	55659	"ENSG00000083817"
+"221839_s_at"	"UBAP2"	55833	"ENSG00000137073"
+"223401_at"	"ADPRM"	56985	"ENSG00000170222"
+"220606_s_at"	"ADPRM"	56985	"ENSG00000170222"
+"223153_x_at"	"TMUB1"	83590	"ENSG00000164897"
+"221196_x_at"	"BRCC3"	79184	"ENSG00000185515"
+"224653_at"	"EIF4EBP2"	1979	"ENSG00000148730"
+"224645_at"	"EIF4EBP2"	1979	"ENSG00000148730"
+"221693_s_at"	"MRPS18A"	55168	"ENSG00000096080"
+"222883_at"	"COA7"	65260	"ENSG00000162377"
+"220689_at"	""	NA	"ENSG00000280401"
+"225212_at"	"SLC25A25"	114789	"ENSG00000148339"
+"221489_s_at"	"SPRY4"	81848	"ENSG00000187678"
+"222751_at"	"HERPUD2"	64224	"ENSG00000122557"
+"222592_s_at"	"ACSL5"	51703	"ENSG00000197142"
+"222269_at"	"APOOL"	139322	"ENSG00000155008"
+"225331_at"	"CCDC50"	152137	"ENSG00000152492"
+"224135_at"	"WDR87"	83889	"ENSG00000171804"
+"223385_at"	"CYP2S1"	29785	"ENSG00000167600"
+"223396_at"	"TMEM60"	85025	"ENSG00000135211"
+"221534_at"	"C11orf68"	83638	"ENSG00000175573"
+"222659_at"	"IPO11"	51194	"ENSG00000086200"
+"223362_s_at"	"SEPTIN3"	55964	"ENSG00000100167"
+"225257_at"	"CCDC97"	90324	"ENSG00000142039"
+"225254_at"	"CCDC97"	90324	"ENSG00000142039"
+"223682_s_at"	"EIF1AD"	84285	"ENSG00000175376"
+"222235_s_at"	"CSGALNACT2"	55454	"ENSG00000169826"
+"221096_s_at"	"TMCO6"	55374	"ENSG00000113119"
+"223028_s_at"	"SNX9"	51429	"ENSG00000130340"
+"223027_at"	"SNX9"	51429	"ENSG00000130340"
+"223433_at"	"YAE1"	57002	"ENSG00000241127"
+"224880_at"	"RALA"	5898	"ENSG00000006451"
+"225371_at"	"GLE1"	2733	"ENSG00000119392"
+"223905_at"	"DRC7"	84229	"ENSG00000159625"
+"222470_s_at"	"UQCC1"	55245	"ENSG00000101019"
+"220816_at"	"LPAR3"	23566	"ENSG00000171517"
+"220815_at"	"CTNNA3"	29119	"ENSG00000183230"
+"221490_at"	"UBAP1"	51271	"ENSG00000165006"
+"225217_s_at"	"BRPF3"	27154	"ENSG00000096070"
+"225069_at"	"PCYT1A"	5130	"ENSG00000161217"
+"223721_s_at"	"DNAJC12"	56521	"ENSG00000108176"
+"223722_at"	"DNAJC12"	56521	"ENSG00000108176"
+"221062_at"	"HS3ST3B1"	9953	"ENSG00000125430"
+"224508_at"	""	NA	"ENSG00000266709"
+"224507_s_at"	""	NA	"ENSG00000266709"
+"220652_at"	"KIF24"	347240	"ENSG00000186638"
+"221903_s_at"	"CYLD"	1540	"ENSG00000083799"
+"222142_at"	"CYLD"	1540	"ENSG00000083799"
+"221905_at"	"CYLD"	1540	"ENSG00000083799"
+"223473_at"	"MPV17L2"	84769	"ENSG00000254858"
+"224225_s_at"	"ETV7"	51513	"ENSG00000010030"
+"221680_s_at"	"ETV7"	51513	"ENSG00000010030"
+"224451_x_at"	"ARHGAP9"	64333	"ENSG00000123329"
+"221140_s_at"	"GPR132"	29933	"ENSG00000183484"
+"223887_at"	"GPR132"	29933	"ENSG00000183484"
+"223469_at"	"PGPEP1"	54858	"ENSG00000130517"
+"223226_x_at"	"SSBP4"	170463	"ENSG00000130511"
+"220557_s_at"	"PACS1"	55690	"ENSG00000175115"
+"224658_x_at"	"PACS1"	55690	"ENSG00000175115"
+"224967_at"	"UGCG"	7357	"ENSG00000148154"
+"221765_at"	"UGCG"	7357	"ENSG00000148154"
+"221894_at"	"ADCK2"	90956	"ENSG00000133597"
+"221893_s_at"	"ADCK2"	90956	"ENSG00000133597"
+"222117_s_at"	"ADCK2"	90956	"ENSG00000133597"
+"225099_at"	"FBXO45"	200933	"ENSG00000174013"
+"225100_at"	"FBXO45"	200933	"ENSG00000174013"
+"221010_s_at"	"SIRT5"	23408	"ENSG00000124523"
+"222240_s_at"	"ISYNA1"	51477	"ENSG00000105655"
+"222570_at"	"NCS1"	23413	"ENSG00000107130"
+"222090_at"	"NDUFB2-AS1"	100134713	"ENSG00000240889"
+"221187_s_at"	"FUZ"	80199	"ENSG00000010361"
+"220637_at"	"FAM124B"	79843	"ENSG00000124019"
+"221203_s_at"	"YEATS2"	55689	"ENSG00000163872"
+"221621_at"	"SNHG20"	654434	"ENSG00000234912"
+"222523_at"	"SENP2"	59343	"ENSG00000163904"
+"221495_s_at"	"TCF25"	22980	"ENSG00000141002"
+"221569_at"	"AHI1"	54806	"ENSG00000135541"
+"220841_s_at"	"AHI1"	54806	"ENSG00000135541"
+"220842_at"	"AHI1"	54806	"ENSG00000135541"
+"223449_at"	"SEMA6A"	57556	"ENSG00000092421"
+"224260_at"	""	NA	"ENSG00000176868"
+"220715_at"	"MC1R"	4157	"ENSG00000258839"
+"224836_at"	"TP53INP2"	58476	"ENSG00000078804"
+"221835_at"	"DTX3"	196403	"ENSG00000178498"
+"223198_x_at"	"COMMD5"	28991	"ENSG00000170619"
+"223819_x_at"	"COMMD5"	28991	"ENSG00000170619"
+"224387_at"	"COMMD5"	28991	"ENSG00000170619"
+"222888_at"	"CCNJ"	54619	"ENSG00000107443"
+"222234_s_at"	"DBNDD1"	79007	"ENSG00000003249"
+"221565_s_at"	"CALHM2"	51063	"ENSG00000138172"
+"220795_s_at"	"BEGAIN"	57596	"ENSG00000183092"
+"221610_s_at"	"STAP2"	55620	"ENSG00000178078"
+"223986_x_at"	"DMRT2"	10655	"ENSG00000173253"
+"223704_s_at"	"DMRT2"	10655	"ENSG00000173253"
+"223989_s_at"	"REXO2"	25996	"ENSG00000076043"
+"223474_at"	"IRF2BPL"	64207	"ENSG00000119669"
+"224982_at"	"AKT1S1"	84335	"ENSG00000204673"
+"222398_s_at"	"EFTUD2"	9343	"ENSG00000108883"
+"222397_at"	"EFTUD2"	9343	"ENSG00000108883"
+"221939_at"	"YIPF2"	78992	"ENSG00000130733"
+"220645_at"	"NXPE4"	54827	"ENSG00000137634"
+"224615_x_at"	"HM13"	81502	"ENSG00000101294"
+"220977_x_at"	"EPB41L5"	57669	"ENSG00000115109"
+"224950_at"	"PTGFRN"	5738	"ENSG00000134247"
+"224937_at"	"PTGFRN"	5738	"ENSG00000134247"
+"225129_at"	"CPNE2"	221184	"ENSG00000140848"
+"221240_s_at"	"B3GNT4"	79369	"ENSG00000176383"
+"223302_s_at"	"ZNF655"	79027	"ENSG00000197343"
+"222039_at"	"KIF18B"	146909	"ENSG00000186185"
+"223440_at"	"PHAF1"	80262	"ENSG00000125149"
+"220601_at"	"PHAF1"	80262	"ENSG00000125149"
+"224944_at"	"TMPO"	7112	"ENSG00000120802"
+"223024_at"	"AP1M1"	8907	"ENSG00000072958"
+"223025_s_at"	"AP1M1"	8907	"ENSG00000072958"
+"223144_s_at"	"AKIRIN2"	55122	"ENSG00000135334"
+"223143_s_at"	"AKIRIN2"	55122	"ENSG00000135334"
+"223145_s_at"	"AKIRIN2"	55122	"ENSG00000135334"
+"220982_s_at"	"SPACA1"	81833	"ENSG00000118434"
+"224417_at"	"MTMR2"	8898	"ENSG00000087053"
+"223867_at"	"TEKT3"	64518	"ENSG00000125409"
+"221213_s_at"	"ZNF280D"	54816	"ENSG00000137871"
+"224777_s_at"	"PAFAH1B2"	5049	"ENSG00000168092"
+"222857_s_at"	"KCNMB4"	27345	"ENSG00000135643"
+"221597_s_at"	"TMEM208"	29100	"ENSG00000168701"
+"222985_at"	"YWHAG"	7532	"ENSG00000170027"
+"224363_at"	""	NA	"ENSG00000279512"
+"222746_s_at"	"BSPRY"	54836	"ENSG00000119411"
+"221957_at"	"PDK3"	5165	"ENSG00000067992"
+"221256_s_at"	"HDHD3"	81932	"ENSG00000119431"
+"222444_at"	"ARMCX3"	51566	"ENSG00000102401"
+"220650_s_at"	"SLC9A5"	6553	"ENSG00000135740"
+"224594_x_at"	"ACTB"	60	"ENSG00000075624"
+"225308_s_at"	"TANC1"	85461	"ENSG00000115183"
+"223877_at"	"C1QTNF7"	114905	"ENSG00000163145"
+"225105_at"	"C12orf75"	387882	"ENSG00000235162"
+"221942_s_at"	"GUCY1A1"	2982	"ENSG00000164116"
+"223557_s_at"	"TMEFF2"	23671	"ENSG00000144339"
+"224792_at"	"TNKS1BP1"	85456	"ENSG00000149115"
+"221979_at"	"SMIM27"	100129250	"ENSG00000235453"
+"220811_at"	"PRG3"	10394	"ENSG00000156575"
+"224464_s_at"	"NUDT22"	84304	"ENSG00000149761"
+"223333_s_at"	"ANGPTL4"	51129	"ENSG00000167772"
+"221009_s_at"	"ANGPTL4"	51129	"ENSG00000167772"
+"221266_s_at"	"DCSTAMP"	81501	"ENSG00000164935"
+"223397_s_at"	"NIP7"	51388	"ENSG00000132603"
+"223464_at"	"OSBPL5"	114879	"ENSG00000021762"
+"224385_s_at"	"MOV10L1"	54456	"ENSG00000073146"
+"221763_at"	"JMJD1C"	221037	"ENSG00000171988"
+"224933_s_at"	"JMJD1C"	221037	"ENSG00000171988"
+"224307_x_at"	"MAGI3"	260425	"ENSG00000081026"
+"221549_at"	"GRWD1"	83743	"ENSG00000105447"
+"222515_x_at"	"TMEM165"	55858	"ENSG00000134851"
+"220730_at"	"ZNF778"	197320	"ENSG00000170100"
+"222958_s_at"	"DEPDC1"	55635	"ENSG00000024526"
+"224575_at"	"BRK1"	55845	"ENSG00000254999"
+"224486_s_at"	"CDIN1"	84529	"ENSG00000186073"
+"223725_at"	"LINC00852"	84657	"ENSG00000231177"
+"221959_at"	"FAM110B"	90362	"ENSG00000169122"
+"223862_at"	"GHRL"	51738	"ENSG00000157017"
+"225003_at"	"TMEM205"	374882	"ENSG00000105518"
+"223603_at"	"RNF112"	7732	"ENSG00000128482"
+"222383_s_at"	"ALOXE3"	59344	"ENSG00000179148"
+"221797_at"	"OXLD1"	339229	"ENSG00000204237"
+"220980_s_at"	"ADPGK"	83440	"ENSG00000159322"
+"224455_s_at"	"ADPGK"	83440	"ENSG00000159322"
+"225315_at"	"MRPL21"	219927	"ENSG00000197345"
+"223754_at"	"C2orf88"	84281	"ENSG00000187699"
+"222125_s_at"	"P4HTM"	54681	"ENSG00000178467"
+"221686_s_at"	"RECQL5"	9400	"ENSG00000108469"
+"225002_s_at"	"SUMF2"	25870	"ENSG00000129103"
+"223583_at"	"TNFAIP8L2"	79626	"ENSG00000163154"
+"222258_s_at"	"SH3BP4"	23677	"ENSG00000130147"
+"221934_s_at"	"DALRD3"	55152	"ENSG00000178149"
+"225025_at"	"IGSF8"	93185	"ENSG00000162729"
+"223194_s_at"	"SLC22A23"	63027	"ENSG00000137266"
+"223512_at"	"SAR1B"	51128	"ENSG00000152700"
+"220840_s_at"	"C1orf112"	55732	"ENSG00000000460"
+"221162_at"	"HHLA1"	10086	"ENSG00000132297"
+"222475_at"	"SAP30BP"	29115	"ENSG00000161526"
+"225203_at"	"PPP1R16A"	84988	"ENSG00000160972"
+"225146_at"	"FAM219A"	203259	"ENSG00000164970"
+"221271_at"	"IL21"	59067	"ENSG00000138684"
+"224875_at"	"C5orf24"	134553	"ENSG00000181904"
+"224876_at"	"C5orf24"	134553	"ENSG00000181904"
+"221004_s_at"	"ITM2C"	81618	"ENSG00000135916"
+"225484_at"	"CEP41"	95681	"ENSG00000106477"
+"225485_at"	"CEP41"	95681	"ENSG00000106477"
+"221644_s_at"	"SLC45A2"	51151	"ENSG00000164175"
+"222778_s_at"	"NSD2"	7468	"ENSG00000109685"
+"222777_s_at"	"NSD2"	7468	"ENSG00000109685"
+"223472_at"	"NSD2"	7468	"ENSG00000109685"
+"222195_s_at"	"TRMO"	51531	"ENSG00000136932"
+"220988_s_at"	"C1QTNF3"	114899	"ENSG00000082196"
+"222166_at"	"CIZ1"	25792	"ENSG00000148337"
+"225356_at"	"SFT2D2"	375035	"ENSG00000213064"
+"222391_at"	"TMEM30A"	55754	"ENSG00000112697"
+"225235_at"	"TSPAN17"	26262	"ENSG00000048140"
+"223470_at"	"PIGM"	93183	"ENSG00000143315"
+"224532_at"	"USP26"	83844	"ENSG00000134588"
+"222109_at"	"GNL3L"	54552	"ENSG00000130119"
+"225295_at"	"SLC39A10"	57181	"ENSG00000196950"
+"221923_s_at"	"NPM1"	4869	"ENSG00000181163"
+"223963_s_at"	"IGF2BP2"	10644	"ENSG00000073792"
+"224607_s_at"	"SRP68"	6730	"ENSG00000167881"
+"223349_s_at"	"BOK"	666	"ENSG00000176720"
+"224946_s_at"	"CCDC115"	84317	"ENSG00000136710"
+"221466_at"	"P2RY4"	5030	"ENSG00000186912"
+"220797_at"	"METTL16"	79066	"ENSG00000127804"
+"225500_x_at"	"SCAF1"	58506	"ENSG00000126461"
+"222120_at"	"ZNF764"	92595	"ENSG00000169951"
+"223805_at"	"OSBPL6"	114880	"ENSG00000079156"
+"223713_at"	"RSPH3"	83861	"ENSG00000130363"
+"221227_x_at"	"COQ3"	51805	"ENSG00000132423"
+"223515_s_at"	"COQ3"	51805	"ENSG00000132423"
+"225507_at"	"PNISR"	25957	"ENSG00000132424"
+"224441_s_at"	"USP45"	85015	"ENSG00000123552"
+"223037_at"	"PDZD11"	51248	"ENSG00000120509"
+"222199_s_at"	"BIN3"	55909	"ENSG00000147439"
+"223268_at"	"C11orf54"	28970	"ENSG00000182919"
+"220542_s_at"	"BPIFA1"	51297	"ENSG00000198183"
+"223691_at"	"RGS22"	26166	"ENSG00000132554"
+"222568_at"	"UGGT1"	56886	"ENSG00000136731"
+"222569_at"	"UGGT1"	56886	"ENSG00000136731"
+"222349_x_at"	"RNF126P1"	376412	"ENSG00000261192"
+"224922_at"	"CSNK2A2"	1459	"ENSG00000070770"
+"221021_s_at"	"CTNNBL1"	56259	"ENSG00000132792"
+"223204_at"	"GASK1B"	51313	"ENSG00000164125"
+"223312_at"	"PRADC1"	84279	"ENSG00000135617"
+"225238_at"	"MSI2"	124540	"ENSG00000153944"
+"225233_at"	"MSI2"	124540	"ENSG00000153944"
+"225237_s_at"	"MSI2"	124540	"ENSG00000153944"
+"225240_s_at"	"MSI2"	124540	"ENSG00000153944"
+"224543_at"	"SVEP1"	79987	"ENSG00000165124"
+"220630_s_at"	"CHIA"	27159	"ENSG00000134216"
+"225024_at"	"RPRD1B"	58490	"ENSG00000101413"
+"223367_at"	"DNAJC30"	84277	"ENSG00000176410"
+"220552_at"	"TRPC5"	7224	"ENSG00000072315"
+"222630_at"	"RFX7"	64864	"ENSG00000181827"
+"223010_s_at"	"OCIAD1"	54940	"ENSG00000109180"
+"223011_s_at"	"OCIAD1"	54940	"ENSG00000109180"
+"224794_s_at"	"CERCAM"	51148	"ENSG00000167123"
+"225494_at"	"DYNLL2"	140735	"ENSG00000264364"
+"224189_x_at"	"EHF"	26298	"ENSG00000135373"
+"222932_at"	"EHF"	26298	"ENSG00000135373"
+"220545_s_at"	"TSKS"	60385	"ENSG00000126467"
+"220544_at"	"TSKS"	60385	"ENSG00000126467"
+"225007_at"	"G3BP1"	10146	"ENSG00000145907"
+"221499_s_at"	"STX16"	8675	"ENSG00000124222"
+"221500_s_at"	"STX16"	8675	"ENSG00000124222"
+"221895_at"	"MOSPD2"	158747	"ENSG00000130150"
+"223662_x_at"	"DDX59"	83479	"ENSG00000118197"
+"224733_at"	"CMTM3"	123920	"ENSG00000140931"
+"225430_at"	"GATC"	283459	"ENSG00000257218"
+"223342_at"	"RRM2B"	50484	"ENSG00000048392"
+"225320_at"	"MCU"	90550	"ENSG00000156026"
+"222228_s_at"	"ALKBH4"	54784	"ENSG00000160993"
+"223073_at"	"MFSD14B"	84641	"ENSG00000148110"
+"222138_s_at"	"WDR13"	64743	"ENSG00000101940"
+"220742_s_at"	"NGLY1"	55768	"ENSG00000151092"
+"225009_at"	"CMTM4"	146223	"ENSG00000183723"
+"224998_at"	"CMTM4"	146223	"ENSG00000183723"
+"225266_at"	"ZNF652"	22834	"ENSG00000198740"
+"221795_at"	"NTRK2"	4915	"ENSG00000148053"
+"221796_at"	"NTRK2"	4915	"ENSG00000148053"
+"223012_at"	"UBXN6"	80700	"ENSG00000167671"
+"220757_s_at"	"UBXN6"	80700	"ENSG00000167671"
+"223381_at"	"NUF2"	83540	"ENSG00000143228"
+"223252_at"	"HDGFL2"	84717	"ENSG00000167674"
+"224124_at"	"ZRANB3"	84083	"ENSG00000121988"
+"220616_at"	""	NA	"ENSG00000219410"
+"220792_at"	"PRDM5"	11107	"ENSG00000138738"
+"223249_at"	"CLDN12"	9069	"ENSG00000157224"
+"224709_s_at"	"CDC42SE2"	56990	"ENSG00000158985"
+"222785_x_at"	"CFAP68"	64776	"ENSG00000137720"
+"223828_s_at"	"LGALS12"	85329	"ENSG00000133317"
+"223897_at"	"ZNF765"	91661	"ENSG00000196417"
+"222154_s_at"	"SPATS2L"	26010	"ENSG00000196141"
+"221563_at"	"DUSP10"	11221	"ENSG00000143507"
+"221122_at"	"PLAAT2"	54979	"ENSG00000133328"
+"224893_at"	"ATL3"	25923	"ENSG00000184743"
+"223452_s_at"	"ATL3"	25923	"ENSG00000184743"
+"223453_s_at"	"ATL3"	25923	"ENSG00000184743"
+"225502_at"	"DOCK8"	81704	"ENSG00000107099"
+"224564_s_at"	"RTN3"	10313	"ENSG00000133318"
+"224111_x_at"	"KLF16"	83855	"ENSG00000129911"
+"221557_s_at"	"LEF1"	51176	"ENSG00000138795"
+"221558_s_at"	"LEF1"	51176	"ENSG00000138795"
+"225260_s_at"	"MRPL32"	64983	"ENSG00000106591"
+"225159_s_at"	"ELK4"	2005	"ENSG00000158711"
+"224242_at"	"GALP"	85569	"ENSG00000197487"
+"222250_s_at"	"INTS7"	25896	"ENSG00000143493"
+"224654_at"	"DDX21"	9188	"ENSG00000165732"
+"220695_at"	""	NA	"ENSG00000279719"
+"225327_at"	"ATOSA"	56204	"ENSG00000047346"
+"224430_s_at"	"MTO1"	25821	"ENSG00000135297"
+"222014_x_at"	"MTO1"	25821	"ENSG00000135297"
+"224329_s_at"	"CNFN"	84518	"ENSG00000105427"
+"222455_s_at"	"PARVA"	55742	"ENSG00000197702"
+"222454_s_at"	"PARVA"	55742	"ENSG00000197702"
+"220867_s_at"	"SLC24A2"	25769	"ENSG00000155886"
+"221688_s_at"	"IMP3"	55272	"ENSG00000177971"
+"222870_s_at"	"B3GNT2"	10678	"ENSG00000170340"
+"223825_at"	"RIC1"	57589	"ENSG00000107036"
+"223826_s_at"	"RIC1"	57589	"ENSG00000107036"
+"220570_at"	"RETN"	56729	"ENSG00000104918"
+"222881_at"	"HPSE"	10855	"ENSG00000173083"
+"225120_at"	"PURB"	5814	"ENSG00000146676"
+"222429_at"	"DBNL"	28988	"ENSG00000136279"
+"220832_at"	"TLR8"	51311	"ENSG00000101916"
+"220584_at"	"PRR36"	80164	"ENSG00000183248"
+"224721_at"	"WDR75"	84128	"ENSG00000115368"
+"222657_s_at"	"UBE2W"	55284	"ENSG00000104343"
+"222656_at"	"UBE2W"	55284	"ENSG00000104343"
+"222603_at"	"ERMP1"	79956	"ENSG00000099219"
+"224868_at"	"ZDHHC5"	25921	"ENSG00000156599"
+"224858_at"	"ZDHHC5"	25921	"ENSG00000156599"
+"224710_at"	"RAB34"	83871	"ENSG00000109113"
+"225249_at"	"SPPL2B"	56928	"ENSG00000005206"
+"225248_at"	"SPPL2B"	56928	"ENSG00000005206"
+"220647_s_at"	"COA4"	51287	"ENSG00000181924"
+"223812_at"	"FAM178B"	51252	"ENSG00000168754"
+"221904_at"	"FAM131A"	131408	"ENSG00000175182"
+"224453_s_at"	"ETNK1"	55500	"ENSG00000139163"
+"224454_at"	"ETNK1"	55500	"ENSG00000139163"
+"222262_s_at"	"ETNK1"	55500	"ENSG00000139163"
+"225290_at"	"ETNK1"	55500	"ENSG00000139163"
+"220860_at"	"PURG"	29942	"ENSG00000172733"
+"224183_at"	""	NA	"ENSG00000279926"
+"225524_at"	"ANTXR2"	118429	"ENSG00000163297"
+"221737_at"	"GNA12"	2768	"ENSG00000146535"
+"224681_at"	"GNA12"	2768	"ENSG00000146535"
+"221730_at"	"COL5A2"	1290	"ENSG00000204262"
+"221729_at"	"COL5A2"	1290	"ENSG00000204262"
+"222554_s_at"	"NOL6"	65083	"ENSG00000165271"
+"221581_s_at"	"LAT2"	7462	"ENSG00000086730"
+"222606_at"	"ZWILCH"	55055	"ENSG00000174442"
+"222680_s_at"	"DTL"	51514	"ENSG00000143476"
+"225497_at"	"ATE1"	11101	"ENSG00000107669"
+"220992_s_at"	"TRMT1L"	81627	"ENSG00000121486"
+"223404_s_at"	"TRMT1L"	81627	"ENSG00000121486"
+"223214_s_at"	"ZHX1"	11244	"ENSG00000165156"
+"223213_s_at"	"ZHX1"	11244	"ENSG00000165156"
+"221273_s_at"	"RNF208"	727800	"ENSG00000212864"
+"221561_at"	"SOAT1"	6646	"ENSG00000057252"
+"222708_s_at"	"STX17"	55014	"ENSG00000136874"
+"222631_at"	"PI4K2B"	55300	"ENSG00000038210"
+"220935_s_at"	"CDK5RAP2"	55755	"ENSG00000136861"
+"220581_at"	"CCDC170"	80129	"ENSG00000120262"
+"221384_at"	"UCP1"	7350	"ENSG00000109424"
+"222158_s_at"	"DESI2"	51029	"ENSG00000121644"
+"221166_at"	"FGF23"	8074	"ENSG00000118972"
+"221754_s_at"	"CORO1B"	57175	"ENSG00000172725"
+"223886_s_at"	"RNF146"	81847	"ENSG00000118518"
+"221430_s_at"	"RNF146"	81847	"ENSG00000118518"
+"224257_s_at"	"PBOV1"	59351	"ENSG00000254440"
+"223990_at"	"C4orf17"	84103	"ENSG00000138813"
+"222157_s_at"	"WDR48"	57599	"ENSG00000114742"
+"221735_at"	"WDR48"	57599	"ENSG00000114742"
+"222645_s_at"	"KCTD5"	54442	"ENSG00000167977"
+"224817_at"	"SH3PXD2A"	9644	"ENSG00000107957"
+"223651_x_at"	"CDC23"	8697	"ENSG00000094880"
+"222333_at"	"ALS2CL"	259173	"ENSG00000178038"
+"223264_at"	"TLNRD1"	59274	"ENSG00000140406"
+"223962_at"	"TTC29"	83894	"ENSG00000137473"
+"222844_s_at"	"SRR"	63826	"ENSG00000167720"
+"224813_at"	"WASL"	8976	"ENSG00000106299"
+"224332_s_at"	"MRPL43"	84545	"ENSG00000055950"
+"221987_s_at"	"TSR1"	55720	"ENSG00000167721"
+"225311_at"	"IVD"	3712	"ENSG00000128928"
+"223341_s_at"	"SCOC"	60592	"ENSG00000153130"
+"224786_at"	"SCOC"	60592	"ENSG00000153130"
+"224434_s_at"	"WDR83"	84292	"ENSG00000123154"
+"223717_s_at"	"ACRBP"	84519	"ENSG00000111644"
+"223718_at"	"ACRBP"	84519	"ENSG00000111644"
+"225187_at"	"CCAR2"	57805	"ENSG00000158941"
+"222307_at"	"PDCD4-AS1"	NA	"ENSG00000203497"
+"223419_at"	"FBXW9"	84261	"ENSG00000132004"
+"223003_at"	"TRIR"	79002	"ENSG00000123144"
+"225455_at"	"TADA1"	117143	"ENSG00000152382"
+"221236_s_at"	"STMN4"	81551	"ENSG00000015592"
+"222682_s_at"	"FAM114A2"	10827	"ENSG00000055147"
+"223548_at"	"SWT1"	54823	"ENSG00000116668"
+"224264_x_at"	"ZAN"	7455	"ENSG00000146839"
+"224268_x_at"	"ZAN"	7455	"ENSG00000146839"
+"224263_x_at"	"ZAN"	7455	"ENSG00000146839"
+"224267_x_at"	"ZAN"	7455	"ENSG00000146839"
+"224265_s_at"	"ZAN"	7455	"ENSG00000146839"
+"221662_s_at"	"SLC22A7"	10864	"ENSG00000137204"
+"220554_at"	"SLC22A7"	10864	"ENSG00000137204"
+"221661_at"	"SLC22A7"	10864	"ENSG00000137204"
+"221018_s_at"	"TDRD1"	56165	"ENSG00000095627"
+"224846_at"	"SHKBP1"	92799	"ENSG00000160410"
+"224473_x_at"	"LZTS2"	84445	"ENSG00000107816"
+"223856_at"	"AKR1E2"	83592	"ENSG00000165568"
+"222624_s_at"	"ZNF639"	51193	"ENSG00000121864"
+"222623_s_at"	"ZNF639"	51193	"ENSG00000121864"
+"222838_at"	"SLAMF7"	57823	"ENSG00000026751"
+"223779_at"	"AFAP1-AS1"	84740	"ENSG00000272620"
+"223436_s_at"	"TRPT1"	83707	"ENSG00000149743"
+"224070_at"	"AKR1C6P"	NA	"ENSG00000151631"
+"224626_at"	"SLC35A4"	113829	"ENSG00000176087"
+"222286_at"	"SNAPC3"	6619	"ENSG00000164975"
+"223809_at"	"RGS18"	64407	"ENSG00000150681"
+"224683_at"	"FBH1"	84893	"ENSG00000134452"
+"223994_s_at"	"SLC12A9"	56996	"ENSG00000146828"
+"223995_at"	"SLC12A9"	56996	"ENSG00000146828"
+"220910_at"	"FRAS1"	80144	"ENSG00000138759"
+"223488_s_at"	"GNB4"	59345	"ENSG00000114450"
+"223487_x_at"	"GNB4"	59345	"ENSG00000114450"
+"220684_at"	"TBX21"	30009	"ENSG00000073861"
+"224671_at"	"MRPL10"	124995	"ENSG00000159111"
+"222720_x_at"	"ODR4"	54953	"ENSG00000157181"
+"225273_at"	"WWC3"	55841	"ENSG00000047644"
+"224059_s_at"	"NUMBL"	9253	"ENSG00000105245"
+"223325_at"	"TXNDC11"	51061	"ENSG00000153066"
+"225513_at"	"SCRN2"	90507	"ENSG00000141295"
+"221681_s_at"	"DSPP"	1834	"ENSG00000152591"
+"224643_at"	"PRRC1"	133619	"ENSG00000164244"
+"221734_at"	"PRRC1"	133619	"ENSG00000164244"
+"222047_s_at"	"SRRT"	51593	"ENSG00000087087"
+"222046_at"	"SRRT"	51593	"ENSG00000087087"
+"222935_x_at"	"SLC39A8"	64116	"ENSG00000138821"
+"223485_at"	"HAGHL"	84264	"ENSG00000103253"
+"224776_at"	"GPAT4"	137964	"ENSG00000158669"
+"222376_at"	""	NA	"ENSG00000248161"
+"220594_at"	"OGT"	8473	"ENSG00000147162"
+"223480_s_at"	"MRPL47"	57129	"ENSG00000136522"
+"220738_s_at"	"RPS6KA6"	27330	"ENSG00000072133"
+"223991_s_at"	"GALNT2"	2590	"ENSG00000143641"
+"223200_s_at"	"LSG1"	55341	"ENSG00000041802"
+"221536_s_at"	"LSG1"	55341	"ENSG00000041802"
+"221535_at"	"LSG1"	55341	"ENSG00000041802"
+"224556_s_at"	"LHX6"	26468	"ENSG00000106852"
+"223755_at"	"KIRREL2"	84063	"ENSG00000126259"
+"223082_at"	"SH3KBP1"	30011	"ENSG00000147010"
+"223966_at"	"UBE2D3"	7323	"ENSG00000109332"
+"223511_at"	"SPRTN"	83932	"ENSG00000010072"
+"221291_at"	"ULBP2"	80328	"ENSG00000131015"
+"222442_s_at"	"ARL8B"	55207	"ENSG00000134108"
+"224314_s_at"	"EGLN1"	54583	"ENSG00000135766"
+"223045_at"	"EGLN1"	54583	"ENSG00000135766"
+"223390_at"	"ARRDC1-AS1"	85026	"ENSG00000203993"
+"221946_at"	"PIERCE1"	138162	"ENSG00000160345"
+"224029_x_at"	"SCN11A"	11280	"ENSG00000168356"
+"220791_x_at"	"SCN11A"	11280	"ENSG00000168356"
+"220848_x_at"	"OBP2A"	29991	"ENSG00000122136"
+"225277_at"	"SLC39A13"	91252	"ENSG00000165915"
+"223640_at"	"HCST"	10870	"ENSG00000126264"
+"221287_at"	"RNASEL"	6041	"ENSG00000135828"
+"225300_at"	"KNSTRN"	90417	"ENSG00000128944"
+"222702_x_at"	"CRIPT"	9419	"ENSG00000119878"
+"220996_s_at"	"SHCBP1L"	81626	"ENSG00000157060"
+"220603_s_at"	"MCTP2"	55784	"ENSG00000140563"
+"223289_s_at"	"USP38"	84640	"ENSG00000170185"
+"223288_at"	"USP38"	84640	"ENSG00000170185"
+"222922_at"	"KCNE3"	10008	"ENSG00000175538"
+"222923_s_at"	"KCNE3"	10008	"ENSG00000175538"
+"224928_at"	"SETD7"	80854	"ENSG00000145391"
+"225152_at"	"ZNF622"	90441	"ENSG00000173545"
+"222549_at"	"CLDN1"	9076	"ENSG00000163347"
+"222396_at"	"JPT1"	51155	"ENSG00000189159"
+"221527_s_at"	"PARD3"	56288	"ENSG00000148498"
+"221280_s_at"	"PARD3"	56288	"ENSG00000148498"
+"221526_x_at"	"PARD3"	56288	"ENSG00000148498"
+"222104_x_at"	"GTF2H3"	2967	"ENSG00000111358"
+"220943_s_at"	"NDUFAF7"	55471	"ENSG00000003509"
+"223560_s_at"	"NDUFAF7"	55471	"ENSG00000003509"
+"222565_s_at"	"PRKD3"	23683	"ENSG00000115825"
+"222509_s_at"	"ZNF672"	79894	"ENSG00000171161"
+"222215_at"	"SLC38A7"	55238	"ENSG00000103042"
+"223917_s_at"	"SLC39A3"	29985	"ENSG00000141873"
+"221324_at"	"TAS2R1"	50834	"ENSG00000169777"
+"223553_s_at"	"DOK3"	79930	"ENSG00000146094"
+"221656_s_at"	"ARHGEF10L"	55160	"ENSG00000074964"
+"225186_at"	"RAPH1"	65059	"ENSG00000173166"
+"225189_s_at"	"RAPH1"	65059	"ENSG00000173166"
+"225188_at"	"RAPH1"	65059	"ENSG00000173166"
+"222835_at"	"THSD4"	79875	"ENSG00000187720"
+"222467_s_at"	"PPP6R3"	55291	"ENSG00000110075"
+"221825_at"	"ANGEL2"	90806	"ENSG00000174606"
+"221826_at"	"ANGEL2"	90806	"ENSG00000174606"
+"223222_at"	"SLC25A19"	60386	"ENSG00000125454"
+"221667_s_at"	"HSPB8"	26353	"ENSG00000152137"
+"223597_at"	"ITLN1"	55600	"ENSG00000179914"
+"220709_at"	"ZNF556"	80032	"ENSG00000172000"
+"222770_s_at"	"GUF1"	60558	"ENSG00000151806"
+"221265_s_at"	"INTS14"	81556	"ENSG00000138614"
+"223049_at"	"GRB2"	2885	"ENSG00000177885"
+"224819_at"	"TCEAL8"	90843	"ENSG00000180964"
+"224367_at"	"BEX2"	84707	"ENSG00000133134"
+"223466_x_at"	"CERT1"	10087	"ENSG00000113163"
+"223465_at"	"CERT1"	10087	"ENSG00000113163"
+"224476_s_at"	"MESP1"	55897	"ENSG00000166823"
+"223864_at"	"ANKRD30A"	91074	"ENSG00000148513"
+"224609_at"	"SLC44A2"	57153	"ENSG00000129353"
+"225175_s_at"	"SLC44A2"	57153	"ENSG00000129353"
+"222743_s_at"	"C11orf71"	54494	"ENSG00000180425"
+"221270_s_at"	"QTRT1"	81890	"ENSG00000213339"
+"221683_s_at"	"CEP290"	80184	"ENSG00000198707"
+"222825_at"	"OTUD6B"	51633	"ENSG00000155100"
+"221177_at"	"MIA2"	4253	"ENSG00000150527"
+"225078_at"	"EMP2"	2013	"ENSG00000213853"
+"225079_at"	"EMP2"	2013	"ENSG00000213853"
+"223158_s_at"	"NEK6"	10783	"ENSG00000119408"
+"223159_s_at"	"NEK6"	10783	"ENSG00000119408"
+"224169_at"	"NPFFR2"	10886	"ENSG00000056291"
+"223570_at"	"MCM10"	55388	"ENSG00000065328"
+"220651_s_at"	"MCM10"	55388	"ENSG00000065328"
+"222962_s_at"	"MCM10"	55388	"ENSG00000065328"
+"222906_at"	"FLVCR1"	28982	"ENSG00000162769"
+"223384_s_at"	"TRIM4"	89122	"ENSG00000146833"
+"224159_x_at"	"TRIM4"	89122	"ENSG00000146833"
+"224228_s_at"	"PRDM7"	11105	"ENSG00000126856"
+"223683_at"	"ZMYND15"	84225	"ENSG00000141497"
+"223627_at"	"MEX3B"	84206	"ENSG00000183496"
+"222036_s_at"	"MCM4"	4173	"ENSG00000104738"
+"222037_at"	"MCM4"	4173	"ENSG00000104738"
+"223898_at"	"ZNF670"	93474	"ENSG00000277462"
+"221761_at"	"ADSS2"	159	"ENSG00000035687"
+"222412_s_at"	"SSR3"	6747	"ENSG00000114850"
+"222411_s_at"	"SSR3"	6747	"ENSG00000114850"
+"224887_at"	"GNPTG"	84572	"ENSG00000090581"
+"222016_s_at"	"ZSCAN31"	64288	"ENSG00000235109"
+"221135_s_at"	"ASTE1"	28990	"ENSG00000034533"
+"225434_at"	"DEDD2"	162989	"ENSG00000160570"
+"224965_at"	"GNG2"	54331	"ENSG00000186469"
+"224964_s_at"	"GNG2"	54331	"ENSG00000186469"
+"223785_at"	"FANCI"	55215	"ENSG00000140525"
+"220834_at"	"MS4A12"	54860	"ENSG00000071203"
+"224357_s_at"	"MS4A4A"	51338	"ENSG00000110079"
+"225125_at"	"MMGT1"	93380	"ENSG00000169446"
+"222775_s_at"	"MRPL35"	51318	"ENSG00000132313"
+"225255_at"	"MRPL35"	51318	"ENSG00000132313"
+"220778_x_at"	"SEMA6B"	10501	"ENSG00000167680"
+"223567_at"	"SEMA6B"	10501	"ENSG00000167680"
+"224182_x_at"	"SEMA6B"	10501	"ENSG00000167680"
+"221068_at"	"KANK2"	25959	"ENSG00000197256"
+"222829_s_at"	"IL20RA"	53832	"ENSG00000016402"
+"222581_at"	"XPR1"	9213	"ENSG00000143324"
+"222805_at"	"MANEA"	79694	"ENSG00000172469"
+"224780_at"	"RBM17"	84991	"ENSG00000134453"
+"224781_s_at"	"RBM17"	84991	"ENSG00000134453"
+"221589_s_at"	"ALDH6A1"	4329	"ENSG00000119711"
+"221588_x_at"	"ALDH6A1"	4329	"ENSG00000119711"
+"221590_s_at"	"ALDH6A1"	4329	"ENSG00000119711"
+"221345_at"	"FFAR2"	2867	"ENSG00000126262"
+"222497_x_at"	"NMD3"	51068	"ENSG00000169251"
+"222619_at"	"ZNF281"	23528	"ENSG00000162702"
+"222942_s_at"	"TIAM2"	26230	"ENSG00000146426"
+"221548_s_at"	"ILKAP"	80895	"ENSG00000132323"
+"223346_at"	"VPS18"	57617	"ENSG00000104142"
+"223525_at"	"DLL4"	54567	"ENSG00000128917"
+"224910_at"	"CARHSP1"	23589	"ENSG00000153048"
+"223111_x_at"	"ARID4B"	51742	"ENSG00000054267"
+"221230_s_at"	"ARID4B"	51742	"ENSG00000054267"
+"224322_at"	"ARID4B"	51742	"ENSG00000054267"
+"225357_s_at"	"INO80"	54617	"ENSG00000128908"
+"221829_s_at"	"TNPO1"	3842	"ENSG00000083312"
+"221330_at"	"CHRM2"	1129	"ENSG00000181072"
+"221882_s_at"	"PGAP6"	58986	"ENSG00000129925"
+"225127_at"	"TMEM181"	57583	"ENSG00000146433"
+"223834_at"	"CD274"	29126	"ENSG00000120217"
+"224788_at"	"ARF6"	382	"ENSG00000165527"
+"224663_s_at"	"CFL2"	1073	"ENSG00000165410"
+"224352_s_at"	"CFL2"	1073	"ENSG00000165410"
+"221348_at"	"NPPC"	4880	"ENSG00000163273"
+"225289_at"	"STAT3"	6774	"ENSG00000168610"
+"223377_x_at"	"CISH"	1154	"ENSG00000114737"
+"223961_s_at"	"CISH"	1154	"ENSG00000114737"
+"221223_x_at"	"CISH"	1154	"ENSG00000114737"
+"224399_at"	"PDCD1LG2"	80380	"ENSG00000197646"
+"224093_at"	"IFNK"	56832	"ENSG00000147896"
+"223265_at"	"SH3BP5L"	80851	"ENSG00000175137"
+"224581_s_at"	"NUCKS1"	64710	"ENSG00000069275"
+"224582_s_at"	"NUCKS1"	64710	"ENSG00000069275"
+"222424_s_at"	"NUCKS1"	64710	"ENSG00000069275"
+"223891_at"	"KCNQ5"	56479	"ENSG00000185760"
+"221277_s_at"	"PUS3"	83480	"ENSG00000110060"
+"224864_at"	"SRA1"	10011	"ENSG00000213523"
+"224130_s_at"	"SRA1"	10011	"ENSG00000213523"
+"225334_at"	"BORCS7"	119032	"ENSG00000166275"
+"224211_at"	"FOXP3"	50943	"ENSG00000049768"
+"221334_s_at"	"FOXP3"	50943	"ENSG00000049768"
+"221333_at"	"FOXP3"	50943	"ENSG00000049768"
+"225445_at"	"UBN2"	254048	"ENSG00000157741"
+"225444_at"	"UBN2"	254048	"ENSG00000157741"
+"222302_at"	""	NA	"ENSG00000224945"
+"221313_at"	"GPR52"	9293	"ENSG00000203737"
+"221156_x_at"	"CCPG1"	9236	"ENSG00000260916"
+"222760_at"	"ZNF703"	80139	"ENSG00000183779"
+"221542_s_at"	"ERLIN2"	11160	"ENSG00000147475"
+"221543_s_at"	"ERLIN2"	11160	"ENSG00000147475"
+"223833_at"	"WDR55"	54853	"ENSG00000120314"
+"222114_x_at"	"WDR55"	54853	"ENSG00000120314"
+"225398_at"	"RPUSD4"	84881	"ENSG00000165526"
+"225017_at"	"CCDC14"	64770	"ENSG00000175455"
+"222294_s_at"	"RAB27A"	5873	"ENSG00000069974"
+"222758_s_at"	"TMEM132A"	54972	"ENSG00000006118"
+"221071_at"	"EIF3K"	27335	"ENSG00000178982"
+"221355_at"	"CHRNG"	1146	"ENSG00000196811"
+"222627_at"	"VPS54"	51542	"ENSG00000143952"
+"225173_at"	"ARHGAP18"	93663	"ENSG00000146376"
+"225171_at"	"ARHGAP18"	93663	"ENSG00000146376"
+"225166_at"	"ARHGAP18"	93663	"ENSG00000146376"
+"225462_at"	"TMEM128"	85013	"ENSG00000132406"
+"225086_at"	"FAM98B"	283742	"ENSG00000171262"
+"223655_at"	"CD163L1"	283316	"ENSG00000177675"
+"221814_at"	"ADGRA2"	25960	"ENSG00000020181"
+"224595_at"	"SLC44A1"	23446	"ENSG00000070214"
+"224596_at"	"SLC44A1"	23446	"ENSG00000070214"
+"222364_at"	"SLC44A1"	23446	"ENSG00000070214"
+"223104_at"	"JAGN1"	84522	"ENSG00000171135"
+"224536_s_at"	"PCDHGC5"	56097	"ENSG00000240764"
+"224537_at"	"PCDHGC5"	56097	"ENSG00000240764"
+"222615_s_at"	"PRKRIP1"	79706	"ENSG00000128563"
+"223673_at"	"RFX4"	5992	"ENSG00000111783"
+"225177_at"	"RAB11FIP1"	80223	"ENSG00000156675"
+"221539_at"	"EIF4EBP1"	1978	"ENSG00000187840"
+"221842_s_at"	"ZNF131"	7690	"ENSG00000172262"
+"225095_at"	"SPTLC2"	9517	"ENSG00000100596"
+"221784_at"	"WIZ"	58525	"ENSG00000011451"
+"221785_at"	"WIZ"	58525	"ENSG00000011451"
+"221783_at"	"WIZ"	58525	"ENSG00000011451"
+"223431_at"	"BLOC1S4"	55330	"ENSG00000186222"
+"220802_at"	"KCNH4"	23415	"ENSG00000089558"
+"222445_at"	"SLC39A9"	55334	"ENSG00000029364"
+"221676_s_at"	"CORO1C"	23603	"ENSG00000110880"
+"222409_at"	"CORO1C"	23603	"ENSG00000110880"
+"222786_at"	"CHST12"	55501	"ENSG00000136213"
+"224238_at"	""	NA	"ENSG00000279129"
+"221290_s_at"	"PWWP3A"	84939	"ENSG00000160953"
+"223347_at"	"PWWP3A"	84939	"ENSG00000160953"
+"223348_x_at"	"PWWP3A"	84939	"ENSG00000160953"
+"221887_s_at"	"WHRN"	25861	"ENSG00000095397"
+"224955_at"	"TEAD1"	7003	"ENSG00000187079"
+"223418_x_at"	"ANKRD13C"	81573	"ENSG00000118454"
+"223044_at"	"SLC40A1"	30061	"ENSG00000138449"
+"225397_at"	"CCDC32"	90416	"ENSG00000128891"
+"222043_at"	"CLU"	1191	"ENSG00000120885"
+"223123_s_at"	"PITHD1"	57095	"ENSG00000057757"
+"223124_s_at"	"PITHD1"	57095	"ENSG00000057757"
+"221940_at"	"RPUSD2"	27079	"ENSG00000166133"
+"224139_at"	"SHANK2-AS3"	220070	"ENSG00000171671"
+"222887_s_at"	"TMEM127"	55654	"ENSG00000135956"
+"224186_s_at"	"RNF123"	63891	"ENSG00000164068"
+"221063_x_at"	"RNF123"	63891	"ENSG00000164068"
+"223871_x_at"	"ING5"	84289	"ENSG00000168395"
+"223958_s_at"	"DNAL1"	83544	"ENSG00000119661"
+"223959_at"	"DNAL1"	83544	"ENSG00000119661"
+"222512_at"	"NUB1"	51667	"ENSG00000013374"
+"224605_at"	"C4orf3"	401152	"ENSG00000164096"
+"224602_at"	"C4orf3"	401152	"ENSG00000164096"
+"224604_at"	"C4orf3"	401152	"ENSG00000164096"
+"223842_s_at"	"SCARA3"	51435	"ENSG00000168077"
+"223843_at"	"SCARA3"	51435	"ENSG00000168077"
+"223694_at"	"TRIM7"	81786	"ENSG00000146054"
+"222525_s_at"	"CCDC25"	55246	"ENSG00000147419"
+"223411_at"	"MIF4GD"	57409	"ENSG00000125457"
+"223556_at"	"HELLS"	3070	"ENSG00000119969"
+"223402_at"	"DUSP23"	54935	"ENSG00000158716"
+"222034_at"	"RACK1"	10399	"ENSG00000204628"
+"222710_at"	"GMPPB"	29925	"ENSG00000173540"
+"224388_s_at"	"COL25A1"	84570	"ENSG00000188517"
+"224389_s_at"	"COL25A1"	84570	"ENSG00000188517"
+"224747_at"	"UBE2Q2"	92912	"ENSG00000140367"
+"225451_at"	"GRIPAP1"	56850	"ENSG00000068400"
+"221383_at"	"NMUR1"	10316	"ENSG00000171596"
+"220994_s_at"	"STXBP6"	29091	"ENSG00000168952"
+"220995_at"	"STXBP6"	29091	"ENSG00000168952"
+"223802_s_at"	"RBBP6"	5930	"ENSG00000122257"
+"221040_at"	"CAPN10"	11132	"ENSG00000142330"
+"225469_at"	"ETFRF1"	144363	"ENSG00000205707"
+"220948_s_at"	"ATP1A1"	476	"ENSG00000163399"
+"221562_s_at"	"SIRT3"	23410	"ENSG00000142082"
+"221913_at"	"SIRT3"	23410	"ENSG00000142082"
+"224481_s_at"	"HECTD1"	25831	"ENSG00000092148"
+"221094_s_at"	"ELP3"	55140	"ENSG00000134014"
+"223208_at"	"KCTD10"	83892	"ENSG00000110906"
+"221897_at"	"TRIM52"	84851	"ENSG00000183718"
+"225183_at"	"HAPSTR1"	29035	"ENSG00000182831"
+"221114_at"	"AMBN"	258	"ENSG00000178522"
+"225020_at"	"DAB2IP"	153090	"ENSG00000136848"
+"223709_s_at"	"WNT10A"	80326	"ENSG00000135925"
+"220772_at"	"BPESC1"	60467	"ENSG00000232416"
+"225479_at"	"LRRC58"	116064	"ENSG00000163428"
+"223625_at"	"HYCC1"	84668	"ENSG00000122591"
+"221672_s_at"	"TRAPPC9"	83696	"ENSG00000167632"
+"221836_s_at"	"TRAPPC9"	83696	"ENSG00000167632"
+"221060_s_at"	"TLR4"	7099	"ENSG00000136869"
+"224341_x_at"	"TLR4"	7099	"ENSG00000136869"
+"224232_s_at"	"PRELID1"	27166	"ENSG00000169230"
+"221547_at"	"PRPF18"	8559	"ENSG00000165630"
+"223685_s_at"	"PRPF18"	8559	"ENSG00000165630"
+"222129_at"	"RETREG2"	79137	"ENSG00000144567"
+"221984_s_at"	"RETREG2"	79137	"ENSG00000144567"
+"221983_at"	"RETREG2"	79137	"ENSG00000144567"
+"221622_s_at"	"TMEM126B"	55863	"ENSG00000171204"
+"223334_at"	"TMEM126A"	84233	"ENSG00000171202"
+"221002_s_at"	"TSPAN14"	81619	"ENSG00000108219"
+"223314_at"	"TSPAN14"	81619	"ENSG00000108219"
+"222521_x_at"	"NDUFC2"	4718	"ENSG00000151366"
+"220974_x_at"	"SFXN3"	81855	"ENSG00000107819"
+"222561_at"	"LANCL2"	55915	"ENSG00000132434"
+"222560_at"	"LANCL2"	55915	"ENSG00000132434"
+"221129_at"	"FAM215A"	23591	"ENSG00000267496"
+"222413_s_at"	"KMT2C"	58508	"ENSG00000055609"
+"222415_at"	"KMT2C"	58508	"ENSG00000055609"
+"222414_at"	"KMT2C"	58508	"ENSG00000055609"
+"225004_at"	"TMEM101"	84336	"ENSG00000091947"
+"221275_s_at"	"TMEM101"	84336	"ENSG00000091947"
+"221550_at"	"COX15"	1355	"ENSG00000014919"
+"223281_s_at"	"COX15"	1355	"ENSG00000014919"
+"225010_at"	"CCDC6"	8030	"ENSG00000108091"
+"223235_s_at"	"SMOC2"	64094	"ENSG00000112562"
+"223518_at"	"DFFA"	1676	"ENSG00000160049"
+"222216_s_at"	"MRPL17"	63875	"ENSG00000158042"
+"224131_at"	"HCAR1"	27198	"ENSG00000196917"
+"222101_s_at"	"DCHS1"	8642	"ENSG00000166341"
+"221432_s_at"	"SLC25A28"	81894	"ENSG00000155287"
+"223192_at"	"SLC25A28"	81894	"ENSG00000155287"
+"223414_s_at"	"LYAR"	55646	"ENSG00000145220"
+"223413_s_at"	"LYAR"	55646	"ENSG00000145220"
+"221150_at"	"MEPE"	56955	"ENSG00000152595"
+"225268_at"	"KPNA4"	3840	"ENSG00000186432"
+"225267_at"	"KPNA4"	3840	"ENSG00000186432"
+"223468_s_at"	"RGMA"	56963	"ENSG00000182175"
+"223366_at"	"ZNF704"	619279	"ENSG00000164684"
+"221704_s_at"	"VPS37B"	79720	"ENSG00000139722"
+"222687_s_at"	"ACER3"	55331	"ENSG00000078124"
+"222689_at"	"ACER3"	55331	"ENSG00000078124"
+"222688_at"	"ACER3"	55331	"ENSG00000078124"
+"222060_at"	"KRT8P12"	NA	"ENSG00000229320"
+"220719_at"	""	NA	"ENSG00000280381"
+"221708_s_at"	"UNC45A"	55898	"ENSG00000140553"
+"222748_s_at"	"TXNL4B"	54957	"ENSG00000140830"
+"224126_at"	"SLC10A7"	84068	"ENSG00000120519"
+"221361_at"	"OMP"	4975	"ENSG00000254550"
+"223933_at"	"KIF5A"	3798	"ENSG00000155980"
+"222173_s_at"	"TBC1D2"	55357	"ENSG00000095383"
+"225167_at"	"FRMD4A"	55691	"ENSG00000151474"
+"225163_at"	"FRMD4A"	55691	"ENSG00000151474"
+"225168_at"	"FRMD4A"	55691	"ENSG00000151474"
+"223300_s_at"	"CCDC82"	79780	"ENSG00000149231"
+"223301_s_at"	"CCDC82"	79780	"ENSG00000149231"
+"220693_at"	"CCDC82"	79780	"ENSG00000149231"
+"222495_at"	"TMEM167B"	56900	"ENSG00000215717"
+"223623_at"	"ECRG4"	84417	"ENSG00000119147"
+"220553_s_at"	"PRPF39"	55015	"ENSG00000185246"
+"223997_at"	"FNIP1"	96459	"ENSG00000217128"
+"220805_at"	"HRH2"	3274	"ENSG00000113749"
+"222348_at"	"MAST4"	375449	"ENSG00000069020"
+"222767_s_at"	"SPRING1"	79794	"ENSG00000111412"
+"224129_s_at"	"DPY30"	84661	"ENSG00000162961"
+"224466_s_at"	"MAFG"	4097	"ENSG00000197063"
+"221403_s_at"	"INSL6"	11172	"ENSG00000120210"
+"225014_at"	"SMIM20"	389203	"ENSG00000250317"
+"220736_at"	"SLC19A3"	80704	"ENSG00000135917"
+"224513_s_at"	"UBQLN4"	56893	"ENSG00000160803"
+"220749_at"	"CCDC7"	79741	"ENSG00000216937"
+"221682_s_at"	"PCDHGB6"	56100	"ENSG00000253305"
+"223110_at"	"VIRMA"	25962	"ENSG00000164944"
+"222507_s_at"	"TMEM9B"	56674	"ENSG00000175348"
+"223544_at"	"TMEM79"	84283	"ENSG00000163472"
+"221302_at"	"KLF15"	28999	"ENSG00000163884"
+"220824_at"	""	124906280	"ENSG00000279328"
+"224959_at"	"SLC26A2"	1836	"ENSG00000155850"
+"224963_at"	"SLC26A2"	1836	"ENSG00000155850"
+"222150_s_at"	"GSAP"	54103	"ENSG00000186088"
+"221314_at"	"GDF9"	2661	"ENSG00000164404"
+"224983_at"	"SCARB2"	950	"ENSG00000138760"
+"220621_at"	"FOXE3"	2301	"ENSG00000186790"
+"222018_at"	"NACA"	4666	"ENSG00000196531"
+"224456_s_at"	"FOXD2-AS1"	84793	"ENSG00000237424"
+"224457_at"	"FOXD2-AS1"	84793	"ENSG00000237424"
+"224166_at"	"SLC25A2"	83884	"ENSG00000120329"
+"221118_at"	"PKD2L2"	27039	"ENSG00000078795"
+"224226_at"	"PKD2L2"	27039	"ENSG00000078795"
+"220949_s_at"	"CYREN"	78996	"ENSG00000122783"
+"220565_at"	"CCR10"	2826	"ENSG00000184451"
+"222799_at"	"WDR91"	29062	"ENSG00000105875"
+"221880_s_at"	"FAM174B"	400451	"ENSG00000185442"
+"222755_s_at"	"CHD7"	55636	"ENSG00000171316"
+"220619_at"	"CHD7"	55636	"ENSG00000171316"
+"223500_at"	"CPLX1"	10815	"ENSG00000168993"
+"223387_at"	"ZFYVE1"	53349	"ENSG00000165861"
+"223388_s_at"	"ZFYVE1"	53349	"ENSG00000165861"
+"222699_s_at"	"PLEKHF2"	79666	"ENSG00000175895"
+"223902_at"	""	NA	"ENSG00000272163"
+"224807_at"	"GRAMD1A"	57655	"ENSG00000089351"
+"224608_s_at"	"VPS25"	84313	"ENSG00000131475"
+"223783_s_at"	"DBIL5P"	NA	"ENSG00000231784"
+"223750_s_at"	"TLR10"	81793	"ENSG00000174123"
+"223751_x_at"	"TLR10"	81793	"ENSG00000174123"
+"223847_s_at"	"ERGIC1"	57222	"ENSG00000113719"
+"224576_at"	"ERGIC1"	57222	"ENSG00000113719"
+"224577_at"	"ERGIC1"	57222	"ENSG00000113719"
+"224024_at"	"ERGIC1"	57222	"ENSG00000113719"
+"220991_s_at"	"RNF32"	140545	"ENSG00000105982"
+"224993_at"	"MLLT1"	4298	"ENSG00000130382"
+"223337_at"	"CWC27"	10283	"ENSG00000153015"
+"223318_s_at"	"ALKBH7"	84266	"ENSG00000125652"
+"222505_at"	"LMBR1"	64327	"ENSG00000105983"
+"222506_at"	"LMBR1"	64327	"ENSG00000105983"
+"224410_s_at"	"LMBR1"	64327	"ENSG00000105983"
+"224036_s_at"	"LMBR1"	64327	"ENSG00000105983"
+"224754_at"	"SP1"	6667	"ENSG00000185591"
+"224760_at"	"SP1"	6667	"ENSG00000185591"
+"220866_at"	"ADAMTS6"	11174	"ENSG00000049192"
+"221892_at"	"H6PD"	9563	"ENSG00000049239"
+"222386_s_at"	"COPZ1"	22818	"ENSG00000111481"
+"222087_at"	"PVT1"	NA	"ENSG00000249859"
+"224259_at"	"WNT8A"	7478	"ENSG00000061492"
+"224735_at"	"CYB561A3"	220002	"ENSG00000162144"
+"223767_at"	"GPR84"	53831	"ENSG00000139572"
+"223086_x_at"	"MRPL51"	51258	"ENSG00000111639"
+"224334_s_at"	"MRPL51"	51258	"ENSG00000111639"
+"225392_at"	"GFM2"	84340	"ENSG00000164347"
+"224714_at"	"NIFK"	84365	"ENSG00000155438"
+"224713_at"	"NIFK"	84365	"ENSG00000155438"
+"222160_at"	"AKAP8L"	26993	"ENSG00000011243"
+"220703_at"	"IDI2-AS1"	55853	"ENSG00000232656"
+"220586_at"	"CHD9"	80205	"ENSG00000177200"
+"222892_s_at"	"TMEM40"	55287	"ENSG00000088726"
+"221250_s_at"	"MXD3"	83463	"ENSG00000213347"
+"221927_s_at"	"ABHD11"	83451	"ENSG00000106077"
+"223048_at"	"SDHAF2"	54949	"ENSG00000167985"
+"221340_at"	"CDX4"	1046	"ENSG00000131264"
+"223770_x_at"	"MRI1"	84245	"ENSG00000037757"
+"224310_s_at"	"BCL11B"	64919	"ENSG00000127152"
+"222895_s_at"	"BCL11B"	64919	"ENSG00000127152"
+"223458_at"	"SEZ6L2"	26470	"ENSG00000174938"
+"222941_at"	"USP46"	64854	"ENSG00000109189"
+"221716_s_at"	"ACSBG2"	81616	"ENSG00000130377"
+"221792_at"	"RAB6B"	51560	"ENSG00000154917"
+"225259_at"	"RAB6B"	51560	"ENSG00000154917"
+"224588_at"	"XIST"	7503	"ENSG00000229807"
+"224589_at"	"XIST"	7503	"ENSG00000229807"
+"221175_at"	"C3orf36"	80111	"ENSG00000288547"
+"220989_s_at"	"AMN"	81693	"ENSG00000166126"
+"223587_s_at"	"AMN"	81693	"ENSG00000166126"
+"221571_at"	"TRAF3"	7187	"ENSG00000131323"
+"222811_at"	"CMTR2"	55783	"ENSG00000180917"
+"222172_at"	"NPAS3"	64067	"ENSG00000151322"
+"221247_s_at"	"RCC1L"	81554	"ENSG00000274523"
+"221364_at"	"GRID2"	2895	"ENSG00000152208"
+"221336_at"	"ATOH1"	474	"ENSG00000172238"
+"223197_s_at"	"SMARCAD1"	56916	"ENSG00000163104"
+"224785_at"	"UBALD2"	283991	"ENSG00000185262"
+"224783_at"	"UBALD2"	283991	"ENSG00000185262"
+"222128_at"	""	NA	"ENSG00000240291"
+"221818_at"	"INTS5"	80789	"ENSG00000185085"
+"225135_at"	"SIN3A"	25942	"ENSG00000169375"
+"221459_at"	"TAAR5"	9038	"ENSG00000135569"
+"222067_x_at"	"H2BC5"	3017	"ENSG00000158373"
+"223757_at"	"DIO3OS"	64150	"ENSG00000258498"
+"222005_s_at"	"GNG3"	2785	"ENSG00000162188"
+"225405_at"	"HNRNPUL2"	221092	"ENSG00000214753"
+"222264_at"	"HNRNPUL2"	221092	"ENSG00000214753"
+"221846_s_at"	"CASKIN2"	57513	"ENSG00000177303"
+"221541_at"	"CRISPLD2"	83716	"ENSG00000103196"
+"224289_s_at"	"VN1R10P"	NA	"ENSG00000220758"
+"223772_s_at"	"TMEM87A"	25963	"ENSG00000103978"
+"223919_at"	"TP53AIP1"	63970	"ENSG00000120471"
+"223920_s_at"	"TP53AIP1"	63970	"ENSG00000120471"
+"225073_at"	"PPHLN1"	51535	"ENSG00000134283"
+"221712_s_at"	"WDR74"	54663	"ENSG00000133316"
+"222148_s_at"	"RHOT1"	55288	"ENSG00000126858"
+"224044_at"	"RHOT1"	55288	"ENSG00000126858"
+"223462_at"	"TMEM175"	84286	"ENSG00000127419"
+"221054_s_at"	"TCL6"	124903372	"ENSG00000187621"
+"221624_at"	"TCL6"	124903372	"ENSG00000187621"
+"225264_at"	"RARS2"	57038	"ENSG00000146282"
+"224146_s_at"	"ABCC11"	85320	"ENSG00000121270"
+"223992_x_at"	"ZCWPW1"	55063	"ENSG00000078487"
+"220618_s_at"	"ZCWPW1"	55063	"ENSG00000078487"
+"225394_s_at"	"ZCRB1"	85437	"ENSG00000139168"
+"221685_s_at"	"SPDL1"	54908	"ENSG00000040275"
+"221329_at"	"OR52A1"	23538	"ENSG00000182070"
+"220733_at"	"SLC26A1"	10861	"ENSG00000145217"
+"223321_s_at"	"FGFRL1"	53834	"ENSG00000127418"
+"223648_s_at"	"FGFRL1"	53834	"ENSG00000127418"
+"224991_at"	"CMIP"	80790	"ENSG00000153815"
+"224992_s_at"	"CMIP"	80790	"ENSG00000153815"
+"220985_s_at"	"RNF170"	81790	"ENSG00000120925"
+"222808_at"	"ALG13"	79868	"ENSG00000101901"
+"222501_s_at"	"REPIN1"	29803	"ENSG00000214022"
+"224359_s_at"	"HOOK3"	84376	"ENSG00000168172"
+"224766_at"	"RPL37"	6167	"ENSG00000145592"
+"224763_at"	"RPL37"	6167	"ENSG00000145592"
+"224767_at"	"RPL37"	6167	"ENSG00000145592"
+"222890_at"	"CCDC113"	29070	"ENSG00000103021"
+"224414_s_at"	"CARD6"	84674	"ENSG00000132357"
+"224842_at"	"SMG1"	23049	"ENSG00000157106"
+"220727_at"	"KCNK10"	54207	"ENSG00000100433"
+"221908_at"	"RNFT2"	84900	"ENSG00000135119"
+"221909_at"	"RNFT2"	84900	"ENSG00000135119"
+"225306_s_at"	"SLC25A29"	123096	"ENSG00000197119"
+"222182_s_at"	"CNOT2"	4848	"ENSG00000111596"
+"220663_at"	"IL1RAPL1"	11141	"ENSG00000169306"
+"222963_s_at"	"IL1RAPL1"	11141	"ENSG00000169306"
+"223199_at"	"MKNK2"	2872	"ENSG00000099875"
+"223766_at"	""	NA	"ENSG00000290921"
+"223719_s_at"	"RTBDN"	83546	"ENSG00000132026"
+"223311_s_at"	"MTA3"	57504	"ENSG00000057935"
+"220768_s_at"	"CSNK1G3"	1456	"ENSG00000151292"
+"224718_at"	"YY1"	7528	"ENSG00000100811"
+"224711_at"	"YY1"	7528	"ENSG00000100811"
+"224518_s_at"	"ZNF559"	84527	"ENSG00000188321"
+"224931_at"	"SLC41A3"	54946	"ENSG00000114544"
+"221112_at"	"IL1RAPL2"	26280	"ENSG00000189108"
+"222784_at"	"SMOC1"	64093	"ENSG00000198732"
+"222783_s_at"	"SMOC1"	64093	"ENSG00000198732"
+"221429_x_at"	"TEX13A"	56157	"ENSG00000268629"
+"221919_at"	"HNRNPA1"	3178	"ENSG00000135486"
+"222040_at"	"HNRNPA1"	3178	"ENSG00000135486"
+"220661_s_at"	"ZNF692"	55657	"ENSG00000171163"
+"223523_at"	"TMEM108"	66000	"ENSG00000144868"
+"223524_s_at"	"TMEM108"	66000	"ENSG00000144868"
+"224502_s_at"	"KIAA1191"	57179	"ENSG00000122203"
+"222198_at"	""	NA	"ENSG00000260588"
+"221416_at"	"PLA2G2F"	64600	"ENSG00000158786"
+"220971_at"	"IL25"	64806	"ENSG00000166090"
+"220793_at"	"SAGE1"	55511	"ENSG00000181433"
+"223041_at"	"CD99L2"	83692	"ENSG00000102181"
+"220746_s_at"	"UIMC1"	51720	"ENSG00000087206"
+"222884_at"	"ZNF346"	23567	"ENSG00000113761"
+"224968_at"	"CFAP36"	112942	"ENSG00000163001"
+"224304_x_at"	"NIN"	51199	"ENSG00000100503"
+"224303_x_at"	"NIN"	51199	"ENSG00000100503"
+"223981_at"	"NIN"	51199	"ENSG00000100503"
+"224806_at"	"TRIM25"	7706	"ENSG00000121060"
+"223738_s_at"	"PGM2"	55276	"ENSG00000169299"
+"225367_at"	"PGM2"	55276	"ENSG00000169299"
+"225366_at"	"PGM2"	55276	"ENSG00000169299"
+"222191_s_at"	"B4GALT7"	11285	"ENSG00000027847"
+"223410_s_at"	""	NA	"ENSG00000261845"
+"223408_s_at"	""	NA	"ENSG00000261845"
+"223409_at"	""	NA	"ENSG00000261845"
+"223541_at"	"HAS3"	3038	"ENSG00000103044"
+"221298_s_at"	"SLC22A8"	9376	"ENSG00000149452"
+"224920_x_at"	"MYADM"	91663	"ENSG00000179820"
+"222604_at"	"GTF3C3"	9330	"ENSG00000119041"
+"225396_at"	"RBBP4"	5928	"ENSG00000162521"
+"225250_at"	"STIM2"	57620	"ENSG00000109689"
+"225246_at"	"STIM2"	57620	"ENSG00000109689"
+"223830_s_at"	"TRIM5"	85363	"ENSG00000132256"
+"225516_at"	"SLC7A2"	6542	"ENSG00000003989"
+"220576_at"	"PGAP1"	80055	"ENSG00000197121"
+"224137_at"	"CACNG7"	59284	"ENSG00000105605"
+"224291_at"	"CACNG6"	59285	"ENSG00000130433"
+"223710_at"	"CCL26"	10344	"ENSG00000006606"
+"221463_at"	"CCL24"	6369	"ENSG00000106178"
+"222995_s_at"	"RHBDD2"	57414	"ENSG00000005486"
+"221276_s_at"	"SYNC"	81493	"ENSG00000162520"
+"223482_at"	"TMEM120A"	83862	"ENSG00000189077"
+"224746_at"	"KIAA1522"	57648	"ENSG00000162522"
+"224996_at"	"ASPH"	444	"ENSG00000198363"
+"225008_at"	"ASPH"	444	"ENSG00000198363"
+"222481_at"	"TIMM10B"	26515	"ENSG00000132286"
+"222610_s_at"	"S100PBP"	64766	"ENSG00000116497"
+"225061_at"	"DNAJA4"	55466	"ENSG00000140403"
+"225536_at"	"TMEM54"	113452	"ENSG00000121900"
+"221531_at"	"SKIC8"	80349	"ENSG00000140395"
+"221532_s_at"	"SKIC8"	80349	"ENSG00000140395"
+"225454_at"	"CCDC124"	115098	"ENSG00000007080"
+"225077_at"	"CHD2"	1106	"ENSG00000173575"
+"221949_at"	"UBE2D4"	51619	"ENSG00000078967"
+"224173_s_at"	"MRPL30"	51263	"ENSG00000185414"
+"224971_at"	"MRPL30"	51263	"ENSG00000185414"
+"221172_at"	"PKD1L1-AS1"	80099	"ENSG00000136275"
+"220819_at"	"FRMD1"	79981	"ENSG00000153303"
+"221700_s_at"	"UBA52"	7311	"ENSG00000221983"
+"224600_at"	"CGGBP1"	8545	"ENSG00000163320"
+"224599_at"	"CGGBP1"	8545	"ENSG00000163320"
+"222851_at"	"ZNF654"	55279	"ENSG00000175105"
+"221308_at"	"FRS2"	10818	"ENSG00000166225"
+"222500_at"	"PPIL1"	51645	"ENSG00000137168"
+"224988_at"	"C6orf89"	221477	"ENSG00000198663"
+"224987_at"	"C6orf89"	221477	"ENSG00000198663"
+"224977_at"	"C6orf89"	221477	"ENSG00000198663"
+"225391_at"	""	93622	"ENSG00000170846"
+"221619_s_at"	"MTCH1"	23787	"ENSG00000137409"
+"222766_at"	"POLR3K"	51728	"ENSG00000161980"
+"224981_at"	"TMEM219"	124446	"ENSG00000149932"
+"225130_at"	"ZRANB1"	54764	"ENSG00000019995"
+"225138_at"	"ZRANB1"	54764	"ENSG00000019995"
+"225131_at"	"ZRANB1"	54764	"ENSG00000019995"
+"221234_s_at"	"BACH2"	60468	"ENSG00000112182"
+"220967_s_at"	"ZNF696"	79943	"ENSG00000185730"
+"225437_s_at"	"BRAT1"	221927	"ENSG00000106009"
+"220839_at"	"METTL5"	29081	"ENSG00000138382"
+"221570_s_at"	"METTL5"	29081	"ENSG00000138382"
+"222389_s_at"	"WAC"	51322	"ENSG00000095787"
+"222390_at"	"WAC"	51322	"ENSG00000095787"
+"222660_s_at"	"RNF38"	152006	"ENSG00000137075"
+"222108_at"	"AMIGO2"	347902	"ENSG00000139211"
+"225124_at"	"PPP1R9B"	84687	"ENSG00000108819"
+"224504_s_at"	"BUD13"	84811	"ENSG00000137656"
+"225296_at"	"ZNF317"	57693	"ENSG00000130803"
+"222233_s_at"	"DCLRE1C"	64421	"ENSG00000152457"
+"221552_at"	"ABHD6"	57406	"ENSG00000163686"
+"221679_s_at"	"ABHD6"	57406	"ENSG00000163686"
+"224243_at"	"APOA5"	116519	"ENSG00000110243"
+"224244_s_at"	"APOA5"	116519	"ENSG00000110243"
+"223775_at"	"HHIP"	64399	"ENSG00000164161"
+"224330_s_at"	"MRPL27"	51264	"ENSG00000108826"
+"222914_s_at"	"TMEM121"	80757	"ENSG00000184986"
+"222231_s_at"	"LRRC59"	55379	"ENSG00000108829"
+"225332_at"	"OIP5-AS1"	729082	"ENSG00000247556"
+"225225_at"	"OIP5-AS1"	729082	"ENSG00000247556"
+"223424_s_at"	"ZSCAN21"	7589	"ENSG00000166529"
+"223551_at"	"PKIB"	5570	"ENSG00000135549"
+"220669_at"	"OTUD4"	54726	"ENSG00000164164"
+"223421_at"	"TMEM276"	84773	"ENSG00000291317"
+"224021_at"	"RP1"	6101	"ENSG00000104237"
+"224962_at"	"TMEM250"	90120	"ENSG00000238227"
+"221670_s_at"	"LHX3"	8022	"ENSG00000107187"
+"222910_s_at"	"PEX5L"	51555	"ENSG00000114757"
+"224411_at"	"PLA2G12B"	84647	"ENSG00000138308"
+"222466_s_at"	"MRPL42"	28977	"ENSG00000198015"
+"223559_s_at"	"INIP"	58493	"ENSG00000148153"
+"223558_at"	"INIP"	58493	"ENSG00000148153"
+"224280_s_at"	"MTFR1L"	56181	"ENSG00000117640"
+"223307_at"	"CDCA3"	83461	"ENSG00000111665"
+"221436_s_at"	"CDCA3"	83461	"ENSG00000111665"
+"221218_s_at"	"TPK1"	27010	"ENSG00000196511"
+"223686_at"	"TPK1"	27010	"ENSG00000196511"
+"220831_at"	"GCNT4"	51301	"ENSG00000176928"
+"223649_s_at"	"SLC25A39"	51629	"ENSG00000013306"
+"220951_s_at"	"A1CF"	29974	"ENSG00000148584"
+"222946_s_at"	"AUNIP"	79000	"ENSG00000127423"
+"221863_at"	"MIER2"	54531	"ENSG00000105556"
+"225511_at"	"GPRC5B"	51704	"ENSG00000167191"
+"220865_s_at"	"PDSS1"	23590	"ENSG00000148459"
+"223728_at"	"CENPBD1P"	92806	"ENSG00000177946"
+"223407_at"	"ENKD1"	84080	"ENSG00000124074"
+"221028_s_at"	"GFOD2"	81577	"ENSG00000141098"
+"224814_at"	"DPP7"	29952	"ENSG00000176978"
+"224804_s_at"	"FAM219B"	57184	"ENSG00000178761"
+"224798_s_at"	"FAM219B"	57184	"ENSG00000178761"
+"224805_s_at"	"FAM219B"	57184	"ENSG00000178761"
+"222664_at"	"KCTD15"	79047	"ENSG00000153885"
+"222668_at"	"KCTD15"	79047	"ENSG00000153885"
+"222661_at"	"AGGF1"	55109	"ENSG00000164252"
+"221292_at"	"PTCH2"	8643	"ENSG00000117425"
+"223415_at"	"RPP25"	54913	"ENSG00000178718"
+"221506_s_at"	"TNPO2"	30000	"ENSG00000105576"
+"221507_at"	"TNPO2"	30000	"ENSG00000105576"
+"223644_s_at"	"CRYGS"	1427	"ENSG00000213139"
+"223370_at"	"PLEKHA3"	65977	"ENSG00000116095"
+"221556_at"	"CDC14B"	8555	"ENSG00000081377"
+"221555_x_at"	"CDC14B"	8555	"ENSG00000081377"
+"222074_at"	"UROD"	7389	"ENSG00000126088"
+"221407_at"	"GJD2"	57369	"ENSG00000159248"
+"225220_at"	"SNHG8"	NA	"ENSG00000269893"
+"222526_at"	"GATAD2A"	54815	"ENSG00000167491"
+"221369_at"	"MTNR1A"	4543	"ENSG00000168412"
+"225517_at"	"ZNF770"	54989	"ENSG00000198146"
+"220608_s_at"	""	NA	"ENSG00000279364"
+"223584_s_at"	"KBTBD2"	25948	"ENSG00000170852"
+"223585_x_at"	"KBTBD2"	25948	"ENSG00000170852"
+"225164_s_at"	"EIF2AK4"	440275	"ENSG00000128829"
+"223533_at"	"LRRC8C"	84230	"ENSG00000171488"
+"222503_s_at"	"WDR41"	55255	"ENSG00000164253"
+"221809_at"	"RANBP10"	57610	"ENSG00000141084"
+"223611_s_at"	"LNX1"	84708	"ENSG00000072201"
+"223612_s_at"	"LNX1"	84708	"ENSG00000072201"
+"225042_s_at"	"CSRNP2"	81566	"ENSG00000110925"
+"221260_s_at"	"CSRNP2"	81566	"ENSG00000110925"
+"220760_x_at"	"ZNF665"	79788	"ENSG00000197497"
+"222220_s_at"	"TSNAXIP1"	55815	"ENSG00000102904"
+"224160_s_at"	"ACAD9"	28976	"ENSG00000177646"
+"224014_at"	"ZNF160"	90338	"ENSG00000170949"
+"221007_s_at"	"FIP1L1"	81608	"ENSG00000145216"
+"223835_x_at"	"OTP"	23440	"ENSG00000171540"
+"224004_at"	"ZNF226"	7769	"ENSG00000167380"
+"224698_at"	"ESYT2"	57488	"ENSG00000117868"
+"224699_s_at"	"ESYT2"	57488	"ENSG00000117868"
+"221372_s_at"	"P2RX2"	22953	"ENSG00000187848"
+"224069_x_at"	"P2RX2"	22953	"ENSG00000187848"
+"224557_x_at"	"P2RX2"	22953	"ENSG00000187848"
+"221356_x_at"	"P2RX2"	22953	"ENSG00000187848"
+"221464_at"	"OR1D2"	4991	"ENSG00000184166"
+"222224_at"	"NACA2"	342538	"ENSG00000253506"
+"223429_x_at"	"ISY1"	57461	"ENSG00000240682"
+"223428_s_at"	"ISY1"	57461	"ENSG00000240682"
+"222827_s_at"	"KLHL41"	10324	"ENSG00000239474"
+"221703_at"	"BRIP1"	83990	"ENSG00000136492"
+"221263_s_at"	"SF3B5"	83443	"ENSG00000169976"
+"224516_s_at"	"CXXC5"	51523	"ENSG00000171604"
+"222996_s_at"	"CXXC5"	51523	"ENSG00000171604"
+"220782_x_at"	"KLK12"	43849	"ENSG00000186474"
+"220573_at"	"KLK14"	43847	"ENSG00000129437"
+"222886_at"	"NSUN3"	63899	"ENSG00000178694"
+"222729_at"	"FBXW7"	55294	"ENSG00000109670"
+"222830_at"	"GRHL1"	29841	"ENSG00000134317"
+"222107_x_at"	"LZTS1"	11178	"ENSG00000061337"
+"221722_x_at"	"LZTS1"	11178	"ENSG00000061337"
+"221721_s_at"	"LZTS1"	11178	"ENSG00000061337"
+"221719_s_at"	"LZTS1"	11178	"ENSG00000061337"
+"221630_s_at"	"DDX4"	54514	"ENSG00000152670"
+"221583_s_at"	"KCNMA1"	3778	"ENSG00000156113"
+"221584_s_at"	"KCNMA1"	3778	"ENSG00000156113"
+"222335_at"	"TGS1"	96764	"ENSG00000137574"
+"222587_s_at"	"GALNT7"	51809	"ENSG00000109586"
+"225460_at"	"SEC22C"	9117	"ENSG00000093183"
+"224470_at"	"SEC22C"	9117	"ENSG00000093183"
+"222863_at"	"ZBTB10"	65986	"ENSG00000205189"
+"223572_at"	"HHATL"	57467	"ENSG00000010282"
+"222513_s_at"	"SORBS1"	10580	"ENSG00000095637"
+"221788_at"	"PGM3"	5238	"ENSG00000013375"
+"224079_at"	"IL17C"	27189	"ENSG00000124391"
+"220843_s_at"	"DCAF13"	25879	"ENSG00000164934"
+"223447_at"	"REG4"	83998	"ENSG00000134193"
+"225033_at"	"ST3GAL1"	6482	"ENSG00000008513"
+"225034_at"	"ST3GAL1"	6482	"ENSG00000008513"
+"224655_at"	"AK3"	50808	"ENSG00000147853"
+"224151_s_at"	"AK3"	50808	"ENSG00000147853"
+"221446_at"	"ADAM30"	11085	"ENSG00000134249"
+"224525_s_at"	"OLA1"	29789	"ENSG00000138430"
+"222849_s_at"	"SCRN3"	79634	"ENSG00000144306"
+"221823_at"	"MACIR"	90355	"ENSG00000181751"
+"221480_at"	"HNRNPD"	3184	"ENSG00000138668"
+"221481_x_at"	"HNRNPD"	3184	"ENSG00000138668"
+"224906_at"	"ANO6"	196527	"ENSG00000177119"
+"224727_at"	"EMC10"	284361	"ENSG00000161671"
+"222345_at"	"EMC10"	284361	"ENSG00000161671"
+"223081_at"	"PHF23"	79142	"ENSG00000040633"
+"222407_s_at"	"ZNF106"	64397	"ENSG00000103994"
+"222773_s_at"	"GALNT12"	79695	"ENSG00000119514"
+"222772_at"	"MYEF2"	50804	"ENSG00000104177"
+"222771_s_at"	"MYEF2"	50804	"ENSG00000104177"
+"222153_at"	"MYEF2"	50804	"ENSG00000104177"
+"223211_at"	"HACL1"	26061	"ENSG00000131373"
+"221293_s_at"	"DEF6"	50619	"ENSG00000023892"
+"222484_s_at"	"CXCL14"	9547	"ENSG00000145824"
+"221840_at"	"PTPRE"	5791	"ENSG00000132334"
+"221037_s_at"	"SLC25A31"	83447	"ENSG00000151475"
+"224001_at"	"FAM135B"	51059	"ENSG00000147724"
+"223026_s_at"	"VPS29"	51699	"ENSG00000111237"
+"220718_at"	"HEXA-AS1"	80072	"ENSG00000260339"
+"220564_at"	"RNLS"	55328	"ENSG00000184719"
+"223824_at"	"RNLS"	55328	"ENSG00000184719"
+"225204_at"	"PPTC7"	160760	"ENSG00000196850"
+"225213_at"	"PPTC7"	160760	"ENSG00000196850"
+"222197_s_at"	"GFAP"	2670	"ENSG00000131095"
+"220999_s_at"	"CYFIP2"	26999	"ENSG00000055163"
+"221232_s_at"	"ANKRD2"	26287	"ENSG00000165887"
+"225170_at"	"WDR5"	11091	"ENSG00000196363"
+"223308_s_at"	"WDR5"	11091	"ENSG00000196363"
+"223095_at"	"MARVELD1"	83742	"ENSG00000155254"
+"225218_at"	"ZFYVE27"	118813	"ENSG00000155256"
+"222504_s_at"	"EMC8"	10328	"ENSG00000131148"
+"224966_s_at"	"DUS3L"	56931	"ENSG00000141994"
+"221368_at"	"NEU2"	4759	"ENSG00000115488"
+"222823_at"	"IPPK"	64768	"ENSG00000127080"
+"221204_s_at"	"CRTAC1"	55118	"ENSG00000095713"
+"220927_s_at"	"HPSE2"	60495	"ENSG00000172987"
+"221786_at"	"C6orf120"	387263	"ENSG00000185127"
+"221787_at"	"C6orf120"	387263	"ENSG00000185127"
+"224133_at"	""	NA	"ENSG00000217702"
+"222641_s_at"	"FAM222B"	55731	"ENSG00000173065"
+"221605_s_at"	"PIPOX"	51268	"ENSG00000179761"
+"224246_at"	""	NA	"ENSG00000279201"
+"224092_at"	"BARHL1"	56751	"ENSG00000125492"
+"223126_s_at"	"C1orf21"	81563	"ENSG00000116667"
+"221272_s_at"	"C1orf21"	81563	"ENSG00000116667"
+"223125_s_at"	"C1orf21"	81563	"ENSG00000116667"
+"223127_s_at"	"C1orf21"	81563	"ENSG00000116667"
+"222473_s_at"	"ERBIN"	55914	"ENSG00000112851"
+"221424_s_at"	"OR51E2"	81285	"ENSG00000167332"
+"224666_at"	"NSMCE1"	197370	"ENSG00000169189"
+"225049_at"	"BLOC1S2"	282991	"ENSG00000196072"
+"225191_at"	"CIRBP"	1153	"ENSG00000099622"
+"224685_at"	"AFDN"	4301	"ENSG00000130396"
+"220775_s_at"	"UEVLD"	55293	"ENSG00000151116"
+"221061_at"	"PKD2L1"	9033	"ENSG00000107593"
+"224793_s_at"	"TGFBR1"	7046	"ENSG00000106799"
+"224505_s_at"	"PLCD4"	84812	"ENSG00000115556"
+"221572_s_at"	"SLC26A6"	65010	"ENSG00000225697"
+"223007_s_at"	"TMEM245"	23731	"ENSG00000106771"
+"223006_s_at"	"TMEM245"	23731	"ENSG00000106771"
+"223005_s_at"	"TMEM245"	23731	"ENSG00000106771"
+"223008_s_at"	"TMEM245"	23731	"ENSG00000106771"
+"223859_at"	"EPB41L4B"	54566	"ENSG00000095203"
+"223427_s_at"	"EPB41L4B"	54566	"ENSG00000095203"
+"223426_s_at"	"EPB41L4B"	54566	"ENSG00000095203"
+"222727_s_at"	"SLC8B1"	80024	"ENSG00000089060"
+"221658_s_at"	"IL21R"	50615	"ENSG00000103522"
+"223703_at"	"LRMDA"	83938	"ENSG00000148655"
+"221922_at"	"GPSM2"	29899	"ENSG00000121957"
+"223132_s_at"	"TRIM8"	81603	"ENSG00000171206"
+"221012_s_at"	"TRIM8"	81603	"ENSG00000171206"
+"223131_s_at"	"TRIM8"	81603	"ENSG00000171206"
+"221311_x_at"	"LYRM2"	57226	"ENSG00000083099"
+"222562_s_at"	"TNKS2"	80351	"ENSG00000107854"
+"222563_s_at"	"TNKS2"	80351	"ENSG00000107854"
+"223165_s_at"	"IP6K2"	51447	"ENSG00000068745"
+"223911_at"	"STUB1-DT"	105371184	"ENSG00000260394"
+"222901_s_at"	"KCNJ16"	3773	"ENSG00000153822"
+"225363_at"	"PTEN"	5728	"ENSG00000171862"
+"221445_at"	"OR1A2"	26189	"ENSG00000172150"
+"224886_at"	"JMJD8"	339123	"ENSG00000161999"
+"221413_at"	"KCNAB3"	9196	"ENSG00000170049"
+"223293_at"	"WDR24"	84219	"ENSG00000127580"
+"224512_s_at"	"NAA38"	84316	"ENSG00000183011"
+"225441_x_at"	"NAA38"	84316	"ENSG00000183011"
+"223707_at"	"RPL27A"	6157	"ENSG00000166441"
+"222131_x_at"	"RHOT2"	89941	"ENSG00000140983"
+"221789_x_at"	"RHOT2"	89941	"ENSG00000140983"
+"221587_s_at"	"FAM174C"	55009	"ENSG00000228300"
+"223151_at"	"DCUN1D5"	84259	"ENSG00000137692"
+"222510_s_at"	"MKRN2"	23609	"ENSG00000075975"
+"221945_at"	"FBXO41"	150726	"ENSG00000163013"
+"222734_at"	"WARS2"	10352	"ENSG00000116874"
+"222752_s_at"	"PACC1"	55248	"ENSG00000065600"
+"221906_at"	"TXNRD3"	114112	"ENSG00000197763"
+"221458_at"	"HTR1F"	3355	"ENSG00000179097"
+"224821_at"	"ABHD14B"	84836	"ENSG00000114779"
+"220653_at"	"ZIM2"	23619	"ENSG00000269699"
+"223934_at"	"SP140L"	93349	"ENSG00000185404"
+"225207_at"	"PDK4"	5166	"ENSG00000004799"
+"222080_s_at"	""	NA	"ENSG00000261071"
+"222081_at"	""	NA	"ENSG00000261071"
+"221859_at"	"SYT13"	57586	"ENSG00000019505"
+"221640_s_at"	"PIDD1"	55367	"ENSG00000177595"
+"224335_s_at"	"BACE1"	23621	"ENSG00000186318"
+"222463_s_at"	"BACE1"	23621	"ENSG00000186318"
+"222462_s_at"	"BACE1"	23621	"ENSG00000186318"
+"220566_at"	"PIK3R5"	23533	"ENSG00000141506"
+"221889_at"	"KCTD13"	253980	"ENSG00000174943"
+"221877_at"	"IRGQ"	126298	"ENSG00000167378"
+"223087_at"	"ECHDC1"	55862	"ENSG00000093144"
+"223088_x_at"	"ECHDC1"	55862	"ENSG00000093144"
+"224890_s_at"	"LAMTOR4"	389541	"ENSG00000188186"
+"223818_s_at"	"RSF1"	51773	"ENSG00000048649"
+"222541_at"	"RSF1"	51773	"ENSG00000048649"
+"222540_s_at"	"RSF1"	51773	"ENSG00000048649"
+"223150_s_at"	"PTPN23"	25930	"ENSG00000076201"
+"223149_s_at"	"PTPN23"	25930	"ENSG00000076201"
+"224356_x_at"	"MS4A6A"	64231	"ENSG00000110077"
+"223280_x_at"	"MS4A6A"	64231	"ENSG00000110077"
+"223922_x_at"	"MS4A6A"	64231	"ENSG00000110077"
+"225276_at"	"GSPT1"	2935	"ENSG00000103342"
+"223277_at"	"ELP6"	54859	"ENSG00000163832"
+"222605_at"	"RCOR3"	55758	"ENSG00000117625"
+"221388_at"	"OR1A1"	8383	"ENSG00000172146"
+"221951_at"	"TMEM80"	283232	"ENSG00000177042"
+"222741_s_at"	"SAYSD1"	55776	"ENSG00000112167"
+"222552_at"	"GOLT1B"	51026	"ENSG00000111711"
+"223108_s_at"	"ZCCHC17"	51538	"ENSG00000121766"
+"223107_s_at"	"ZCCHC17"	51538	"ENSG00000121766"
+"221067_s_at"	"SPX"	80763	"ENSG00000134548"
+"223363_at"	"PSMG3"	84262	"ENSG00000157778"
+"223100_s_at"	"NUDT5"	11164	"ENSG00000165609"
+"222824_at"	"NUDT5"	11164	"ENSG00000165609"
+"222377_at"	"TBX10"	347853	"ENSG00000167800"
+"222362_at"	"AGFG2"	3268	"ENSG00000106351"
+"222126_at"	"AGFG2"	3268	"ENSG00000106351"
+"221647_s_at"	"RIC8A"	60626	"ENSG00000177963"
+"223020_at"	"CLPTM1L"	81037	"ENSG00000049656"
+"222564_at"	"POGK"	57645	"ENSG00000143157"
+"223941_at"	"FBXO24"	26261	"ENSG00000106336"
+"221157_s_at"	"FBXO24"	26261	"ENSG00000106336"
+"222798_at"	"PTER"	9317	"ENSG00000165983"
+"221357_at"	"CHRM4"	1132	"ENSG00000180720"
+"224157_at"	"KAAG1"	353219	"ENSG00000146049"
+"220801_s_at"	"HAO2"	51179	"ENSG00000116882"
+"221706_s_at"	"USE1"	55850	"ENSG00000053501"
+"223477_s_at"	"MTRFR"	91574	"ENSG00000130921"
+"223476_s_at"	"MTRFR"	91574	"ENSG00000130921"
+"223364_s_at"	"DHX37"	57647	"ENSG00000150990"
+"223365_at"	"DHX37"	57647	"ENSG00000150990"
+"222876_s_at"	"ADAP2"	55803	"ENSG00000184060"
+"221417_x_at"	"S1PR5"	53637	"ENSG00000180739"
+"222020_s_at"	"NTM"	50863	"ENSG00000182667"
+"223137_at"	"ZDHHC4"	55146	"ENSG00000136247"
+"224360_s_at"	"PACSIN1"	29993	"ENSG00000124507"
+"221537_at"	"PLXNA1"	5361	"ENSG00000114554"
+"221538_s_at"	"PLXNA1"	5361	"ENSG00000114554"
+"224110_at"	""	100133319	"ENSG00000278873"
+"222271_at"	"CHD9NB"	105371267	"ENSG00000277639"
+"222578_s_at"	"UBA5"	79876	"ENSG00000081307"
+"222579_at"	"UBA5"	79876	"ENSG00000081307"
+"222365_at"	"TBCEL"	219899	"ENSG00000154114"
+"221477_s_at"	"SOD2"	6648	"ENSG00000291237"
+"220678_at"	""	NA	"ENSG00000173862"
+"225143_at"	"SFXN4"	119559	"ENSG00000183605"
+"222143_s_at"	"MTMR14"	64419	"ENSG00000163719"
+"221560_at"	"MARK4"	57787	"ENSG00000007047"
+"223420_at"	"DNAJC14"	85406	"ENSG00000135392"
+"222135_at"	"ZNF814"	730051	"ENSG00000204514"
+"224145_s_at"	"SPTBN4"	57731	"ENSG00000160460"
+"224297_s_at"	"SPTBN4"	57731	"ENSG00000160460"
+"224551_s_at"	"SPTBN4"	57731	"ENSG00000160460"
+"224144_at"	"SPTBN4"	57731	"ENSG00000160460"
+"224688_at"	"TMEM248"	55069	"ENSG00000106609"
+"223865_at"	"SOX6"	55553	"ENSG00000110693"
+"224178_s_at"	"SOX6"	55553	"ENSG00000110693"
+"221943_x_at"	""	85001	"ENSG00000246731"
+"223741_s_at"	"TTYH2"	94015	"ENSG00000141540"
+"221668_s_at"	"DNAI2"	64446	"ENSG00000171595"
+"220636_at"	"DNAI2"	64446	"ENSG00000171595"
+"223600_s_at"	"IQCN"	80726	"ENSG00000130518"
+"222762_x_at"	"LIMD1"	8994	"ENSG00000144791"
+"223065_s_at"	"STARD3NL"	83930	"ENSG00000010270"
+"225093_at"	"UTRN"	7402	"ENSG00000152818"
+"222723_at"	"VWA1"	64856	"ENSG00000179403"
+"222912_at"	"ARRB1"	408	"ENSG00000137486"
+"222756_s_at"	"ARRB1"	408	"ENSG00000137486"
+"223320_s_at"	"ABCB10"	23456	"ENSG00000135776"
+"221732_at"	"CANT1"	124583	"ENSG00000171302"
+"224197_s_at"	"C1QTNF1"	114897	"ENSG00000173918"
+"220975_s_at"	"C1QTNF1"	114897	"ENSG00000173918"
+"221389_at"	"PLA2G2E"	30814	"ENSG00000188784"
+"225538_at"	"ZCCHC9"	84240	"ENSG00000131732"
+"224138_at"	"CBX2"	84733	"ENSG00000173894"
+"221447_s_at"	"GLT8D2"	83468	"ENSG00000120820"
+"222032_s_at"	"USP7"	7874	"ENSG00000187555"
+"220704_at"	"IKZF1"	10320	"ENSG00000185811"
+"220563_s_at"	"SHANK1"	50944	"ENSG00000161681"
+"223514_at"	"CARD11"	84433	"ENSG00000198286"
+"221051_s_at"	"NMRK2"	27231	"ENSG00000077009"
+"224694_at"	"ANTXR1"	84168	"ENSG00000169604"
+"224482_s_at"	"RAB11FIP4"	84440	"ENSG00000131242"
+"223244_s_at"	"NDUFA12"	55967	"ENSG00000184752"
+"223242_s_at"	"MFSD11"	79157	"ENSG00000092931"
+"223658_at"	"KCNK6"	9424	"ENSG00000099337"
+"225107_at"	"HNRNPA2B1"	3181	"ENSG00000122566"
+"223983_s_at"	"C19orf12"	83636	"ENSG00000131943"
+"223542_at"	"SLF1"	84250	"ENSG00000133302"
+"221988_at"	"SMIM7"	79086	"ENSG00000214046"
+"224717_s_at"	"SMIM7"	79086	"ENSG00000214046"
+"224712_x_at"	"SMIM7"	79086	"ENSG00000214046"
+"225443_at"	"DCP1A"	55802	"ENSG00000272886"
+"221755_at"	"EHBP1L1"	254102	"ENSG00000173442"
+"224162_s_at"	"FBXO31"	79791	"ENSG00000103264"
+"222352_at"	"FBXO31"	79791	"ENSG00000103264"
+"224156_x_at"	"IL17RB"	55540	"ENSG00000056736"
+"224361_s_at"	"IL17RB"	55540	"ENSG00000056736"
+"224055_x_at"	"KCNK7"	10089	"ENSG00000173338"
+"224008_s_at"	"KCNK7"	10089	"ENSG00000173338"
+"222008_at"	"COL9A1"	1297	"ENSG00000112280"
+"222707_s_at"	"ACTR8"	93973	"ENSG00000113812"
+"221515_s_at"	"LCMT1"	51451	"ENSG00000205629"
+"222896_at"	"TMEM38A"	79041	"ENSG00000072954"
+"223545_at"	"FANCD2"	2177	"ENSG00000144554"
+"222855_s_at"	"TRPV2"	51393	"ENSG00000187688"
+"225174_at"	"DNAJC10"	54431	"ENSG00000077232"
+"221781_s_at"	"DNAJC10"	54431	"ENSG00000077232"
+"221782_at"	"DNAJC10"	54431	"ENSG00000077232"
+"221315_s_at"	"FGF22"	27006	"ENSG00000070388"
+"223332_x_at"	"RNF126"	55658	"ENSG00000070423"
+"220657_at"	"KLHL11"	55175	"ENSG00000178502"
+"225001_at"	"RAB3D"	9545	"ENSG00000105514"
+"221601_s_at"	"FCMR"	9214	"ENSG00000162894"
+"221602_s_at"	"FCMR"	9214	"ENSG00000162894"
+"222644_s_at"	"COLGALT1"	79709	"ENSG00000130309"
+"223924_at"	"ODAD4"	83538	"ENSG00000204815"
+"221373_x_at"	"PSPN"	5623	"ENSG00000125650"
+"223275_at"	"PRMT6"	55170	"ENSG00000198890"
+"222712_s_at"	"MUC13"	56667	"ENSG00000173702"
+"221269_s_at"	"SH3BGRL3"	83442	"ENSG00000142669"
+"221031_s_at"	"APOLD1"	81575	"ENSG00000178878"
+"223031_s_at"	"TRAF7"	84231	"ENSG00000131653"
+"223029_s_at"	"TRAF7"	84231	"ENSG00000131653"
+"223609_at"	"ROPN1L"	83853	"ENSG00000145491"
+"224465_s_at"	"PYM1"	84305	"ENSG00000170473"
+"221855_at"	"SDHAF1"	644096	"ENSG00000205138"
+"220950_s_at"	"KANSL3"	55683	"ENSG00000114982"
+"224318_s_at"	"KANSL3"	55683	"ENSG00000114982"
+"220587_s_at"	"MLST8"	64223	"ENSG00000167965"
+"222105_s_at"	"NKIRAS2"	28511	"ENSG00000168256"
+"221274_s_at"	"LMAN2L"	81562	"ENSG00000114988"
+"223993_s_at"	"CNIH4"	29097	"ENSG00000143771"
+"221366_at"	"NKX6-1"	4825	"ENSG00000163623"
+"220739_s_at"	"CNNM3"	26505	"ENSG00000168763"
+"220662_s_at"	"HEYL"	26508	"ENSG00000163909"
+"222091_at"	"HPCAL4"	51440	"ENSG00000116983"
+"223532_at"	"ANKRD39"	51239	"ENSG00000213337"
+"225019_at"	"CAMK2D"	817	"ENSG00000145349"
+"224994_at"	"CAMK2D"	817	"ENSG00000145349"
+"222622_at"	"PGP"	283871	"ENSG00000184207"
+"221486_at"	"ENSA"	2029	"ENSG00000143420"
+"224999_at"	"EGFR"	1956	"ENSG00000146648"
+"222954_at"	"FBXO40"	51725	"ENSG00000163833"
+"223804_s_at"	"THUMPD3"	25917	"ENSG00000134077"
+"223861_at"	"HORMAD1"	84072	"ENSG00000143452"
+"221318_at"	"NEUROD4"	58158	"ENSG00000123307"
+"221109_at"	"LINC02809"	100506571	"ENSG00000276255"
+"221577_x_at"	"GDF15"	9518	"ENSG00000130513"
+"223630_at"	"RNF32-DT"	100506380	"ENSG00000182648"
+"223815_at"	"CEP95"	90799	"ENSG00000258890"
+"223906_s_at"	"TEX101"	83639	"ENSG00000131126"
+"222324_at"	""	NA	"ENSG00000287315"
+"221217_s_at"	"RBFOX1"	54715	"ENSG00000078328"
+"225339_at"	"SPAG9"	9043	"ENSG00000008294"
+"222546_s_at"	"EPS8L2"	64787	"ENSG00000177106"
+"223970_at"	"RETNLB"	84666	"ENSG00000163515"
+"223969_s_at"	"RETNLB"	84666	"ENSG00000163515"
+"223189_x_at"	"KMT2E"	55904	"ENSG00000005483"
+"223190_s_at"	"KMT2E"	55904	"ENSG00000005483"
+"220750_s_at"	"P3H1"	64175	"ENSG00000117385"
+"222242_s_at"	"KLK5"	25818	"ENSG00000167754"
+"225521_at"	"ANAPC7"	51434	"ENSG00000196510"
+"223720_at"	"SPINK7"	84651	"ENSG00000145879"
+"224369_s_at"	"FBXO38"	81545	"ENSG00000145868"
+"221257_x_at"	"FBXO38"	81545	"ENSG00000145868"
+"223033_s_at"	"SCYL1"	57410	"ENSG00000142186"
+"225058_at"	"GPR108"	56927	"ENSG00000125734"
+"222667_s_at"	"ASH1L"	55870	"ENSG00000116539"
+"223657_at"	"FAM167B"	84734	"ENSG00000183615"
+"223260_s_at"	"POLK"	51426	"ENSG00000122008"
+"223261_at"	"POLK"	51426	"ENSG00000122008"
+"225194_at"	"PLRG1"	5356	"ENSG00000171566"
+"224062_x_at"	"KLK4"	9622	"ENSG00000167749"
+"222947_at"	"ZNF225-AS1"	NA	"ENSG00000186019"
+"223798_at"	"SLC41A2"	84102	"ENSG00000136052"
+"223840_s_at"	"SPATA9"	83890	"ENSG00000145757"
+"223841_s_at"	"SPATA9"	83890	"ENSG00000145757"
+"225202_at"	"RHOBTB3"	22836	"ENSG00000164292"
+"222295_x_at"	"LINC00921"	283876	"ENSG00000281005"
+"222447_at"	"METTL9"	51108	"ENSG00000197006"
+"221047_s_at"	"MARK1"	4139	"ENSG00000116141"
+"224989_at"	"SMIM14"	201895	"ENSG00000163683"
+"224990_at"	"SMIM14"	201895	"ENSG00000163683"
+"223253_at"	"EPDR1"	54749	"ENSG00000086289"
+"225179_at"	"UBE2K"	3093	"ENSG00000078140"
+"224926_at"	"EXOC4"	60412	"ENSG00000131558"
+"222218_s_at"	"PILRA"	29992	"ENSG00000085514"
+"224622_at"	"TBC1D14"	57533	"ENSG00000132405"
+"222796_at"	"PTCD1"	26024	"ENSG00000106246"
+"221048_x_at"	"C17orf80"	55028	"ENSG00000141219"
+"223352_s_at"	"C17orf80"	55028	"ENSG00000141219"
+"223351_at"	"C17orf80"	55028	"ENSG00000141219"
+"222354_at"	"F11R"	50848	"ENSG00000158769"
+"225319_s_at"	"FAM104A"	84923	"ENSG00000133193"
+"221014_s_at"	"RAB33B"	83452	"ENSG00000172007"
+"221522_at"	"ANKRD27"	84079	"ENSG00000105186"
+"220614_s_at"	"ADGB"	79747	"ENSG00000118492"
+"223540_at"	"NECTIN4"	81607	"ENSG00000143217"
+"224184_s_at"	"BOC"	91653	"ENSG00000144857"
+"225512_at"	"ZBTB38"	253461	"ENSG00000177311"
+"224979_s_at"	"USP36"	57602	"ENSG00000055483"
+"224978_s_at"	"USP36"	57602	"ENSG00000055483"
+"222127_s_at"	"EXOC1"	55763	"ENSG00000090989"
+"224433_s_at"	"DDX54"	79039	"ENSG00000123064"
+"225428_s_at"	"DDX54"	79039	"ENSG00000123064"
+"222458_s_at"	"AKIRIN1"	79647	"ENSG00000174574"
+"222459_at"	"AKIRIN1"	79647	"ENSG00000174574"
+"222599_s_at"	"NAV2"	89797	"ENSG00000166833"
+"222598_s_at"	"NAV2"	89797	"ENSG00000166833"
+"221777_at"	"RITA1"	84934	"ENSG00000139405"
+"225114_at"	"AGPS"	8540	"ENSG00000018510"
+"225113_at"	"AGPS"	8540	"ENSG00000018510"
+"225108_at"	"AGPS"	8540	"ENSG00000018510"
+"221081_s_at"	"DENND2D"	79961	"ENSG00000162777"
+"224674_at"	"TTYH3"	80727	"ENSG00000136295"
+"223504_at"	"DNAJC27"	51277	"ENSG00000115137"
+"223505_s_at"	"DNAJC27"	51277	"ENSG00000115137"
+"221163_s_at"	"MLXIPL"	51085	"ENSG00000009950"
+"225228_at"	"DRAM2"	128338	"ENSG00000156171"
+"225230_at"	"DRAM2"	128338	"ENSG00000156171"
+"221544_s_at"	"MED16"	10025	"ENSG00000175221"
+"223146_at"	"WDR33"	55339	"ENSG00000136709"
+"223147_s_at"	"WDR33"	55339	"ENSG00000136709"
+"222763_s_at"	"WDR33"	55339	"ENSG00000136709"
+"222787_s_at"	"TMEM106B"	54664	"ENSG00000106460"
+"221023_s_at"	"KCNH6"	81033	"ENSG00000173826"
+"223947_s_at"	"MED23"	9439	"ENSG00000112282"
+"223946_at"	"MED23"	9439	"ENSG00000112282"
+"223878_at"	"INPP4B"	8821	"ENSG00000109452"
+"221744_at"	"DCAF7"	10238	"ENSG00000136485"
+"224730_at"	"DCAF7"	10238	"ENSG00000136485"
+"221745_at"	"DCAF7"	10238	"ENSG00000136485"
+"224748_at"	"DCAF7"	10238	"ENSG00000136485"
+"221462_x_at"	"KLK15"	55554	"ENSG00000174562"
+"224969_at"	"ATXN7L3"	56970	"ENSG00000087152"
+"222953_at"	"GPR83"	10888	"ENSG00000123901"
+"222419_x_at"	"UBE2H"	7328	"ENSG00000186591"
+"221962_s_at"	"UBE2H"	7328	"ENSG00000186591"
+"222420_s_at"	"UBE2H"	7328	"ENSG00000186591"
+"222421_at"	"UBE2H"	7328	"ENSG00000186591"
+"222938_x_at"	"ENPP3"	5169	"ENSG00000154269"
+"220687_at"	"TRRAP"	8295	"ENSG00000196367"
+"222291_at"	"FAM149A"	25854	"ENSG00000109794"
+"221224_s_at"	"DCAKD"	79877	"ENSG00000172992"
+"224522_s_at"	"DCAKD"	79877	"ENSG00000172992"
+"221225_at"	"DCAKD"	79877	"ENSG00000172992"
+"221221_s_at"	"KLHL3"	26249	"ENSG00000146021"
+"223455_at"	"TCHP"	84260	"ENSG00000139437"
+"223456_s_at"	"TCHP"	84260	"ENSG00000139437"
+"224810_s_at"	"ANKRD13A"	88455	"ENSG00000076513"
+"220798_x_at"	"PLPPR3"	79948	"ENSG00000129951"
+"221764_at"	"R3HDM4"	91300	"ENSG00000198858"
+"221566_s_at"	"NOL3"	8996	"ENSG00000140939"
+"221567_at"	"NOL3"	8996	"ENSG00000140939"
+"222629_at"	"REV1"	51455	"ENSG00000135945"
+"222628_s_at"	"REV1"	51455	"ENSG00000135945"
+"223736_at"	"IFT81"	28981	"ENSG00000122970"
+"222782_s_at"	"GMIP"	51291	"ENSG00000089639"
+"223498_at"	"SPECC1"	92521	"ENSG00000128487"
+"222872_x_at"	"NABP1"	64859	"ENSG00000173559"
+"224301_x_at"	"H2AJ"	55766	"ENSG00000246705"
+"225245_x_at"	"H2AJ"	55766	"ENSG00000246705"
+"220936_s_at"	"H2AJ"	55766	"ENSG00000246705"
+"223023_at"	"BET1L"	51272	"ENSG00000177951"
+"221769_at"	"SPSB3"	90864	"ENSG00000162032"
+"222493_s_at"	"ZFAND3"	60685	"ENSG00000156639"
+"222717_at"	"CAVIN2"	8436	"ENSG00000168497"
+"222837_s_at"	"NAA15"	80155	"ENSG00000164134"
+"221084_at"	"HTR3B"	9177	"ENSG00000149305"
+"223778_at"	"KIF9"	64147	"ENSG00000088727"
+"224952_at"	"TANC2"	26115	"ENSG00000170921"
+"225176_at"	"LNPEP"	4012	"ENSG00000113441"
+"224639_at"	"SPPL3"	121665	"ENSG00000157837"
+"224640_at"	"SPPL3"	121665	"ENSG00000157837"
+"224638_at"	"SPPL3"	121665	"ENSG00000157837"
+"223740_at"	"AGPAT4"	56895	"ENSG00000026652"
+"224102_at"	"P2RY12"	64805	"ENSG00000169313"
+"222452_s_at"	"GPBP1L1"	60313	"ENSG00000159592"
+"223944_at"	"NLRP12"	91662	"ENSG00000142405"
+"223335_at"	"TMEM69"	51249	"ENSG00000159596"
+"223968_at"	"ZNF44"	51710	"ENSG00000197857"
+"225475_at"	"MIER1"	57708	"ENSG00000198160"
+"220711_at"	"MAML1"	9794	"ENSG00000161021"
+"221872_at"	"RARRES1"	5918	"ENSG00000118849"
+"223430_at"	"SIK2"	23235	"ENSG00000170145"
+"222686_s_at"	"CPPED1"	55313	"ENSG00000103381"
+"222939_s_at"	"SLC16A10"	117247	"ENSG00000112394"
+"220766_at"	"BTG4"	54766	"ENSG00000137707"
+"225118_at"	"KMT5A"	387893	"ENSG00000183955"
+"223747_x_at"	"WWOX"	51741	"ENSG00000186153"
+"223868_s_at"	"WWOX"	51741	"ENSG00000186153"
+"221147_x_at"	"WWOX"	51741	"ENSG00000186153"
+"222144_at"	"KIF17"	57576	"ENSG00000117245"
+"220756_s_at"	"SLC52A1"	55065	"ENSG00000132517"
+"224837_at"	"FOXP1"	27086	"ENSG00000114861"
+"224838_at"	"FOXP1"	27086	"ENSG00000114861"
+"223937_at"	"FOXP1"	27086	"ENSG00000114861"
+"221524_s_at"	"RRAGD"	58528	"ENSG00000025039"
+"221523_s_at"	"RRAGD"	58528	"ENSG00000025039"
+"222123_s_at"	"HIF3A"	64344	"ENSG00000124440"
+"222124_at"	"HIF3A"	64344	"ENSG00000124440"
+"220717_at"	"ADAMTS20"	80070	"ENSG00000173157"
+"225483_at"	"VPS26B"	112936	"ENSG00000151502"
+"224839_s_at"	"GPT2"	84706	"ENSG00000166123"
+"223711_s_at"	"THYN1"	29087	"ENSG00000151500"
+"221307_at"	"KCNIP1"	30820	"ENSG00000182132"
+"221669_s_at"	"ACAD8"	27034	"ENSG00000151498"
+"223495_at"	"CCDC8"	83987	"ENSG00000169515"
+"223496_s_at"	"CCDC8"	83987	"ENSG00000169515"
+"223175_s_at"	"FEM1A"	55527	"ENSG00000141965"
+"223873_s_at"	"VN1R3"	NA	"ENSG00000180663"
+"224290_at"	"VN1R3"	NA	"ENSG00000180663"
+"220938_s_at"	"GMEB1"	10691	"ENSG00000162419"
+"223613_at"	"UQCR11"	10975	"ENSG00000127540"
+"225323_at"	"CC2D1B"	200014	"ENSG00000154222"
+"220868_s_at"	"SLC7A10"	56301	"ENSG00000130876"
+"223795_at"	"TSPAN10"	83882	"ENSG00000182612"
+"220611_at"	"DAB1"	1600	"ENSG00000173406"
+"225527_at"	"CEBPG"	1054	"ENSG00000153879"
+"221759_at"	"G6PC3"	92579	"ENSG00000141349"
+"222691_at"	"SLC35B3"	51000	"ENSG00000124786"
+"223448_x_at"	"MRPS22"	56945	"ENSG00000175110"
+"222820_at"	"TNRC6C"	57690	"ENSG00000078687"
+"221035_s_at"	"TEX14"	56155	"ENSG00000121101"
+"223015_at"	"EIF2A"	83939	"ENSG00000144895"
+"222427_s_at"	"LARS1"	51520	"ENSG00000133706"
+"222428_s_at"	"LARS1"	51520	"ENSG00000133706"
+"223888_s_at"	"LARS1"	51520	"ENSG00000133706"
+"224958_at"	"NUFIP2"	57532	"ENSG00000108256"
+"224938_at"	"NUFIP2"	57532	"ENSG00000108256"
+"224956_at"	"NUFIP2"	57532	"ENSG00000108256"
+"224939_at"	"NUFIP2"	57532	"ENSG00000108256"
+"224448_s_at"	"UQCC2"	84300	"ENSG00000137288"
+"224980_at"	"LEMD2"	221496	"ENSG00000161904"
+"220806_x_at"	"GNG13"	51764	"ENSG00000127588"
+"221857_s_at"	"TJAP1"	93643	"ENSG00000137221"
+"222704_at"	"POLR1A"	25885	"ENSG00000068654"
+"222278_at"	"MYMX"	101929726	"ENSG00000262179"
+"221139_s_at"	"CSAD"	51380	"ENSG00000139631"
+"222170_at"	"ZNF213-AS1"	NA	"ENSG00000263072"
+"225326_at"	"RBM27"	54439	"ENSG00000091009"
+"223781_x_at"	"ADH4"	127	"ENSG00000198099"
+"223128_at"	"FOXRED1"	55572	"ENSG00000110074"
+"221402_at"	"OR1F1"	4992	"ENSG00000168124"
+"222190_s_at"	"RUSF1"	64755	"ENSG00000140688"
+"221651_x_at"	"IGKC"	NA	"ENSG00000211592"
+"224795_x_at"	"IGKC"	NA	"ENSG00000211592"
+"221671_x_at"	"IGKC"	NA	"ENSG00000211592"
+"221362_at"	"HTR5A"	3361	"ENSG00000157219"
+"222460_s_at"	"PSME3IP1"	80011	"ENSG00000172775"
+"223406_x_at"	"PSME3IP1"	80011	"ENSG00000172775"
+"224248_x_at"	"PSME3IP1"	80011	"ENSG00000172775"
+"223305_at"	"TMEM216"	51259	"ENSG00000187049"
+"224068_x_at"	"RBM22"	55696	"ENSG00000086589"
+"222527_s_at"	"RBM22"	55696	"ENSG00000086589"
+"222488_s_at"	"DCTN4"	51164	"ENSG00000132912"
+"225102_at"	"MGLL"	11343	"ENSG00000074416"
+"222453_at"	"CYBRD1"	79901	"ENSG00000071967"
+"223276_at"	"SMIM3"	85027	"ENSG00000256235"
+"224530_s_at"	"KCNIP4"	80333	"ENSG00000185774"
+"223675_s_at"	"VEZT"	55591	"ENSG00000028203"
+"223090_x_at"	"VEZT"	55591	"ENSG00000028203"
+"223089_at"	"VEZT"	55591	"ENSG00000028203"
+"225156_at"	"ELOF1"	84337	"ENSG00000130165"
+"225421_at"	"PM20D2"	135293	"ENSG00000146281"
+"225431_x_at"	"PM20D2"	135293	"ENSG00000146281"
+"224823_at"	"MYLK"	4638	"ENSG00000065534"
+"221375_at"	"OR1G1"	8390	"ENSG00000183024"
+"221151_at"	"PRDM9"	56979	"ENSG00000164256"
+"221107_at"	"CHRNA9"	55584	"ENSG00000174343"
+"222496_s_at"	"RBM47"	54502	"ENSG00000163694"
+"225160_x_at"	"MDM2"	4193	"ENSG00000135679"
+"221751_at"	"PANK3"	79646	"ENSG00000120137"
+"221161_at"	"ASCL3"	56676	"ENSG00000176009"
+"221255_s_at"	"EMC6"	83460	"ENSG00000127774"
+"223434_at"	"GBP3"	2635	"ENSG00000117226"
+"221191_at"	""	NA	"ENSG00000290951"
+"223823_at"	"KCNMB2"	10242	"ENSG00000197584"
+"222921_s_at"	"HEY2"	23493	"ENSG00000135547"
+"222642_s_at"	"TMEM33"	55161	"ENSG00000109133"
+"225492_at"	"TMEM33"	55161	"ENSG00000109133"
+"224947_at"	"RNF26"	79102	"ENSG00000173456"
+"224338_s_at"	"RNF26"	79102	"ENSG00000173456"
+"221411_at"	"HOXD12"	3238	"ENSG00000170178"
+"223759_s_at"	"HASPIN"	83903	"ENSG00000177602"
+"221928_at"	"ACACB"	32	"ENSG00000076555"
+"222919_at"	"TRDN"	10345	"ENSG00000186439"
+"222287_at"	"TRDN"	10345	"ENSG00000186439"
+"223761_at"	"FGF19"	9965	"ENSG00000162344"
+"225181_at"	"ARID1B"	57492	"ENSG00000049618"
+"225184_at"	"ARID1B"	57492	"ENSG00000049618"
+"223070_at"	"SELENOK"	58515	"ENSG00000113811"
+"220631_at"	"OSGEPL1"	64172	"ENSG00000128694"
+"223187_s_at"	"ORMDL1"	94101	"ENSG00000128699"
+"224125_at"	"PLEKHN1"	84069	"ENSG00000187583"
+"222986_s_at"	"SHISA5"	51246	"ENSG00000164054"
+"221659_s_at"	"MYL10"	93408	"ENSG00000106436"
+"221660_at"	"MYL10"	93408	"ENSG00000106436"
+"223787_s_at"	"CCDC174"	51244	"ENSG00000154781"
+"222052_at"	"ACTMAP"	284325	"ENSG00000188493"
+"222073_at"	"COL4A3"	1285	"ENSG00000169031"
+"221611_s_at"	"PHF7"	51533	"ENSG00000010318"
+"221742_at"	"CELF1"	10658	"ENSG00000149187"
+"221743_at"	"CELF1"	10658	"ENSG00000149187"
+"220639_at"	"TM4SF20"	79853	"ENSG00000168955"
+"222993_at"	"MRPL37"	51253	"ENSG00000116221"
+"224305_s_at"	"NPC1L1"	29881	"ENSG00000015520"
+"224306_at"	"NPC1L1"	29881	"ENSG00000015520"
+"223122_s_at"	"SFRP2"	6423	"ENSG00000145423"
+"223121_s_at"	"SFRP2"	6423	"ENSG00000145423"
+"222812_s_at"	"RHOF"	54509	"ENSG00000139725"
+"222981_s_at"	"RAB10"	10890	"ENSG00000084733"
+"222980_at"	"RAB10"	10890	"ENSG00000084733"
+"223063_at"	"C1orf198"	84886	"ENSG00000119280"
+"220754_at"	"ARMC9"	80210	"ENSG00000135931"
+"223113_at"	"TMEM138"	51524	"ENSG00000149483"
+"221993_s_at"	"BAIAP3"	8938	"ENSG00000007516"
+"222533_at"	"CRBN"	51185	"ENSG00000113851"
+"221819_at"	"RAB35"	11021	"ENSG00000111737"
+"224676_at"	"TMED4"	222068	"ENSG00000158604"
+"224680_at"	"TMED4"	222068	"ENSG00000158604"
+"222480_at"	"UBE2Q1"	55585	"ENSG00000160714"
+"222719_s_at"	"PDGFC"	56034	"ENSG00000145431"
+"221525_at"	"ZMIZ2"	83637	"ENSG00000122515"
+"221924_at"	"ZMIZ2"	83637	"ENSG00000122515"
+"220572_at"	"ANKRD42-DT"	NA	"ENSG00000247137"
+"222432_s_at"	"CCDC47"	57003	"ENSG00000108588"
+"225530_at"	"MOB3A"	126308	"ENSG00000172081"
+"223537_s_at"	"WNT5B"	81029	"ENSG00000111186"
+"221029_s_at"	"WNT5B"	81029	"ENSG00000111186"
+"221530_s_at"	"BHLHE41"	79365	"ENSG00000123095"
+"220946_s_at"	"SETD2"	29072	"ENSG00000181555"
+"222119_s_at"	"FBXO11"	80204	"ENSG00000138081"
+"220646_s_at"	"KLRF1"	51348	"ENSG00000150045"
+"221806_s_at"	"SETD5"	55209	"ENSG00000168137"
+"222575_at"	"SETD5"	55209	"ENSG00000168137"
+"223931_s_at"	"CHFR"	55743	"ENSG00000072609"
+"223967_at"	"ANGPTL6"	83854	"ENSG00000130812"
+"225496_s_at"	"SYTL2"	54843	"ENSG00000137501"
+"220613_s_at"	"SYTL2"	54843	"ENSG00000137501"
+"220567_at"	"IKZF2"	22807	"ENSG00000030419"
+"222821_s_at"	"GEMIN7"	79760	"ENSG00000142252"
+"224208_at"	"PLEKHA8"	84725	"ENSG00000106086"
+"223665_at"	"ACTRT3"	84517	"ENSG00000184378"
+"224206_x_at"	"MYNN"	55892	"ENSG00000085274"
+"225471_s_at"	"AKT2"	208	"ENSG00000105221"
+"220622_at"	"LRRC31"	79782	"ENSG00000114248"
+"225352_at"	"SEC62"	7095	"ENSG00000008952"
+"221470_s_at"	"IL37"	27178	"ENSG00000125571"
+"224555_x_at"	"IL37"	27178	"ENSG00000125571"
+"222000_at"	"C1orf174"	339448	"ENSG00000198912"
+"221695_s_at"	"MAP3K2"	10746	"ENSG00000169967"
+"223423_at"	"GPR160"	26996	"ENSG00000173890"
+"223964_x_at"	"TEX264"	51368	"ENSG00000164081"
+"223874_at"	"ACTR3C"	653857	"ENSG00000106526"
+"221733_s_at"	"NAXE"	128240	"ENSG00000163382"
+"220596_at"	"NAXE"	128240	"ENSG00000163382"
+"225427_s_at"	"NAXE"	128240	"ENSG00000163382"
+"221623_at"	"BCAN"	63827	"ENSG00000132692"
+"222457_s_at"	"LIMA1"	51474	"ENSG00000050405"
+"222456_s_at"	"LIMA1"	51474	"ENSG00000050405"
+"220765_s_at"	"LIMS2"	55679	"ENSG00000072163"
+"224025_s_at"	"ATG7"	10533	"ENSG00000197548"
+"222709_at"	"ATG7"	10533	"ENSG00000197548"
+"223913_s_at"	"MIR7-3HG"	284424	"ENSG00000176840"
+"223973_at"	"MIR7-3HG"	284424	"ENSG00000176840"
+"221297_at"	"GPRC5D"	55507	"ENSG00000111291"
+"222806_s_at"	"EMSY"	56946	"ENSG00000158636"
+"222807_at"	"EMSY"	56946	"ENSG00000158636"
+"222379_at"	"KCNE4"	23704	"ENSG00000152049"
+"223267_at"	"TRMT10C"	54931	"ENSG00000174173"
+"220561_at"	"IGF2-AS"	51214	"ENSG00000099869"
+"220560_at"	"C11orf21"	29125	"ENSG00000110665"
+"220558_x_at"	"TSPAN32"	10077	"ENSG00000064201"
+"221794_at"	"DOCK6"	57572	"ENSG00000130158"
+"222003_s_at"	"DOCK6"	57572	"ENSG00000130158"
+"224500_s_at"	"MON1A"	84315	"ENSG00000164077"
+"220721_at"	"ZNF614"	80110	"ENSG00000142556"
+"222103_at"	"ATF1"	466	"ENSG00000123268"
+"220896_at"	"FBXL18"	80028	"ENSG00000155034"
+"222283_at"	"ZNF480"	147657	"ENSG00000198464"
+"221912_s_at"	"CCDC28B"	79140	"ENSG00000160050"
+"223331_s_at"	"DDX20"	11218	"ENSG00000064703"
+"224315_at"	"DDX20"	11218	"ENSG00000064703"
+"224499_s_at"	"AICDA"	57379	"ENSG00000111732"
+"225147_at"	"CYTH3"	9265	"ENSG00000008256"
+"221910_at"	"ETV1"	2115	"ENSG00000006468"
+"221911_at"	"ETV1"	2115	"ENSG00000006468"
+"221845_s_at"	"CLPB"	81570	"ENSG00000162129"
+"224510_s_at"	"CLPB"	81570	"ENSG00000162129"
+"223193_x_at"	"FAM162A"	26355	"ENSG00000114023"
+"220942_x_at"	"FAM162A"	26355	"ENSG00000114023"
+"224345_x_at"	"FAM162A"	26355	"ENSG00000114023"
+"221533_at"	"FAM162A"	26355	"ENSG00000114023"
+"221626_at"	"ZNF506"	440515	"ENSG00000081665"
+"223581_at"	"ZNF577"	84765	"ENSG00000161551"
+"223220_s_at"	"PARP9"	83666	"ENSG00000138496"
+"225415_at"	"DTX3L"	151636	"ENSG00000163840"
+"221025_x_at"	"PUS7L"	83448	"ENSG00000129317"
+"222608_s_at"	"ANLN"	54443	"ENSG00000011426"
+"224753_at"	"CDCA5"	113130	"ENSG00000146670"
+"223821_s_at"	"SUSD4"	55061	"ENSG00000143502"
+"223822_at"	"SUSD4"	55061	"ENSG00000143502"
+"222532_at"	"SRPRB"	58477	"ENSG00000144867"
+"222843_at"	"FIGNL1"	63979	"ENSG00000132436"
+"224911_s_at"	"DCBLD2"	131566	"ENSG00000057019"
+"223096_at"	"NOP58"	51602	"ENSG00000055044"
+"222318_at"	"ZNF324B"	388569	"ENSG00000249471"
+"225144_at"	"BMPR2"	659	"ENSG00000204217"
+"222814_s_at"	"ZNHIT2"	741	"ENSG00000174276"
+"220615_s_at"	"FAR2"	55711	"ENSG00000064763"
+"225221_at"	"ZKSCAN1"	7586	"ENSG00000106261"
+"225050_at"	"ZNF512"	84450	"ENSG00000243943"
+"225090_at"	"SYVN1"	84447	"ENSG00000162298"
+"220643_s_at"	"FAIM"	55179	"ENSG00000158234"
+"225465_at"	"MAGI1"	9223	"ENSG00000151276"
+"225474_at"	"MAGI1"	9223	"ENSG00000151276"
+"224191_x_at"	"ROPN1"	54763	"ENSG00000065371"
+"223935_at"	"TRPM5"	29850	"ENSG00000070985"
+"224311_s_at"	"CAB39"	51719	"ENSG00000135932"
+"223601_at"	"OLFM2"	93145	"ENSG00000105088"
+"221363_x_at"	"GPR25"	2848	"ENSG00000170128"
+"223237_x_at"	"AP2A1"	160	"ENSG00000196961"
+"222900_at"	"NRIP3"	56675	"ENSG00000175352"
+"222988_s_at"	"TMEM9"	252839	"ENSG00000116857"
+"222987_s_at"	"TMEM9"	252839	"ENSG00000116857"
+"224057_s_at"	"THAP4"	51078	"ENSG00000176946"
+"223885_at"	"CALN1"	83698	"ENSG00000183166"
+"225169_at"	"INTS4"	92105	"ENSG00000149262"
+"223586_at"	"BMAL2"	56938	"ENSG00000029153"
+"220658_s_at"	"BMAL2"	56938	"ENSG00000029153"
+"224204_x_at"	"BMAL2"	56938	"ENSG00000029153"
+"225211_at"	"NECTIN1"	5818	"ENSG00000110400"
+"224261_at"	"CFLAR"	8837	"ENSG00000003402"
+"225477_s_at"	"NR2C2"	7182	"ENSG00000177463"
+"224593_at"	"ZNF664"	144348	"ENSG00000179195"
+"223552_at"	"LRRC4"	64101	"ENSG00000128594"
+"223726_at"	"KCNH3"	23416	"ENSG00000135519"
+"225269_s_at"	"RBMS1"	5937	"ENSG00000153250"
+"222582_at"	"PRKAG2"	51422	"ENSG00000106617"
+"223067_at"	"CWC15"	51503	"ENSG00000150316"
+"225123_at"	"SESN3"	143686	"ENSG00000149212"
+"222647_at"	"SLC35C1"	55343	"ENSG00000181830"
+"224888_at"	"SELENOI"	85465	"ENSG00000138018"
+"224039_at"	"FAM186B"	84070	"ENSG00000135436"
+"221645_s_at"	"ZNF83"	55769	"ENSG00000167766"
+"221185_s_at"	"IQCG"	84223	"ENSG00000114473"
+"225190_x_at"	"RPL35A"	6165	"ENSG00000182899"
+"221350_at"	"HOXC8"	3224	"ENSG00000037965"
+"222110_at"	"SENP5"	205564	"ENSG00000119231"
+"223723_at"	"MELTF"	4241	"ENSG00000163975"
+"220589_s_at"	"ITFG2"	55846	"ENSG00000111203"
+"220590_at"	"ITFG2"	55846	"ENSG00000111203"
+"222280_at"	"TMEM147-AS1"	100506469	"ENSG00000236144"
+"225045_at"	"CCDC88A"	55704	"ENSG00000115355"
+"221078_s_at"	"CCDC88A"	55704	"ENSG00000115355"
+"222237_s_at"	"ZNF112"	7771	"ENSG00000062370"
+"221964_at"	"TULP3"	7289	"ENSG00000078246"
+"222401_s_at"	"TMEM50A"	23585	"ENSG00000183726"
+"225399_at"	"TSEN15"	116461	"ENSG00000198860"
+"225400_at"	"TSEN15"	116461	"ENSG00000198860"
+"220968_s_at"	"TSPAN9"	10867	"ENSG00000011105"
+"223618_at"	"FMN2"	56776	"ENSG00000155816"
+"224370_s_at"	"CAPS2"	84698	"ENSG00000180881"
+"220794_at"	"GREM2"	64388	"ENSG00000180875"
+"220638_s_at"	"CBLC"	23624	"ENSG00000142273"
+"220578_at"	"ADAMTSL4"	54507	"ENSG00000143382"
+"221898_at"	"PDPN"	10630	"ENSG00000162493"
+"220676_at"	"ADAMTS8"	11095	"ENSG00000134917"
+"220677_s_at"	"ADAMTS8"	11095	"ENSG00000134917"
+"223622_s_at"	"HYI"	81888	"ENSG00000178922"
+"223769_x_at"	"HYI"	81888	"ENSG00000178922"
+"221435_x_at"	"HYI"	81888	"ENSG00000178922"
+"223577_x_at"	"TALAM1"	109136579	"ENSG00000289740"
+"223578_x_at"	"TALAM1"	109136579	"ENSG00000289740"
+"220571_at"	"PRDM11"	56981	"ENSG00000019485"
+"222577_at"	"CCDC90B"	60492	"ENSG00000137500"
+"223806_s_at"	"NAPSA"	9476	"ENSG00000131400"
+"223303_at"	"FERMT3"	83706	"ENSG00000149781"
+"221665_s_at"	"EPS8L1"	54869	"ENSG00000131037"
+"221655_x_at"	"EPS8L1"	54869	"ENSG00000131037"
+"224514_x_at"	"IL17RC"	84818	"ENSG00000163702"
+"225244_at"	"SNAP47"	116841	"ENSG00000143740"
+"221600_s_at"	"AAMDC"	28971	"ENSG00000087884"
+"221599_at"	"AAMDC"	28971	"ENSG00000087884"
+"224071_at"	"IL20"	50604	"ENSG00000162891"
+"224569_s_at"	"IRF2BP2"	359948	"ENSG00000168264"
+"224572_s_at"	"IRF2BP2"	359948	"ENSG00000168264"
+"224571_at"	"IRF2BP2"	359948	"ENSG00000168264"
+"224570_s_at"	"IRF2BP2"	359948	"ENSG00000168264"
+"222671_s_at"	"JMJD4"	65094	"ENSG00000081692"
+"221860_at"	"HNRNPL"	3191	"ENSG00000104824"
+"225347_at"	"ARL8A"	127829	"ENSG00000143862"
+"222868_s_at"	"IL18BP"	10068	"ENSG00000137496"
+"224283_x_at"	"IL18BP"	10068	"ENSG00000137496"
+"221498_at"	"SNX27"	81609	"ENSG00000143376"
+"221006_s_at"	"SNX27"	81609	"ENSG00000143376"
+"224565_at"	"NEAT1"	283131	"ENSG00000245532"
+"224566_at"	"NEAT1"	283131	"ENSG00000245532"
+"225239_at"	"NEAT1"	283131	"ENSG00000245532"
+"220983_s_at"	"NEAT1"	283131	"ENSG00000245532"
+"222075_s_at"	"OAZ3"	51686	"ENSG00000143450"
+"225200_at"	"DPH3"	285381	"ENSG00000154813"
+"225195_at"	"DPH3"	285381	"ENSG00000154813"
+"223698_at"	"SLC25A36"	55186	"ENSG00000114120"
+"220744_s_at"	"IFT122"	55764	"ENSG00000163913"
+"225231_at"	"CBL"	867	"ENSG00000110395"
+"225234_at"	"CBL"	867	"ENSG00000110395"
+"224659_at"	"SELENON"	57190	"ENSG00000162430"
+"224011_at"	""	NA	"ENSG00000275719"
+"221111_at"	"IL26"	55801	"ENSG00000111536"
+"222566_at"	"KMT5B"	51111	"ENSG00000110066"
+"222759_at"	"KMT5B"	51111	"ENSG00000110066"
+"221165_s_at"	"IL22"	50616	"ENSG00000127318"
+"222974_at"	"IL22"	50616	"ENSG00000127318"
+"223679_at"	"CTNNB1"	1499	"ENSG00000168036"
+"225064_at"	"RABEP1"	9135	"ENSG00000029725"
+"225092_at"	"RABEP1"	9135	"ENSG00000029725"
+"223684_s_at"	"SMUG1"	23583	"ENSG00000123415"
+"221226_s_at"	"ASIC4"	55515	"ENSG00000072182"
+"222875_at"	"DHX33"	56919	"ENSG00000005100"
+"222640_at"	"DNMT3A"	1788	"ENSG00000119772"
+"221559_s_at"	"MIS12"	79003	"ENSG00000167842"
+"222800_at"	"TRNAU1AP"	54952	"ENSG00000180098"
+"222574_s_at"	"DHX40"	79665	"ENSG00000108406"
+"223174_at"	"BTBD10"	84280	"ENSG00000148925"
+"221443_x_at"	"PRLH"	51052	"ENSG00000071677"
+"224865_at"	"FAR1"	84188	"ENSG00000197601"
+"224866_at"	"FAR1"	84188	"ENSG00000197601"
+"223659_at"	"TMPRSS13"	84000	"ENSG00000137747"
+"223956_at"	"TMPRSS13"	84000	"ENSG00000137747"
+"222028_at"	"ZNF45"	7596	"ENSG00000124459"
+"220847_x_at"	"ZNF221"	7638	"ENSG00000159905"
+"221201_s_at"	"ZNF155"	7711	"ENSG00000204920"
+"223869_at"	"SOST"	50964	"ENSG00000167941"
+"224521_s_at"	"CCDC77"	84318	"ENSG00000120647"
+"224637_at"	"OST4"	100128731	"ENSG00000228474"
+"223799_at"	"MSANTD4"	84437	"ENSG00000170903"
+"222893_s_at"	"RPAP2"	79871	"ENSG00000122484"
+"225369_at"	"ESAM"	90952	"ENSG00000149564"
+"221208_s_at"	"MSANTD2"	79684	"ENSG00000120458"
+"220758_s_at"	"ROBO4"	54538	"ENSG00000154133"
+"222483_at"	"EFHD2"	79180	"ENSG00000142634"
+"224985_at"	"NRAS"	4893	"ENSG00000213281"
+"221705_s_at"	"SIKE1"	80143	"ENSG00000052723"
+"224700_at"	"STT3B"	201595	"ENSG00000163527"
+"224852_at"	"TTC17"	55761	"ENSG00000052841"
+"224849_at"	"TTC17"	55761	"ENSG00000052841"
+"222219_s_at"	"TLE6"	79816	"ENSG00000104953"
+"223016_x_at"	"ZRANB2"	9406	"ENSG00000132485"
+"223716_s_at"	"ZRANB2"	9406	"ENSG00000132485"
+"223486_at"	"GTPBP8"	29083	"ENSG00000163607"
+"221046_s_at"	"GTPBP8"	29083	"ENSG00000163607"
+"224603_at"	"SNHG16"	100507246	"ENSG00000163597"
+"224601_at"	"SNHG16"	100507246	"ENSG00000163597"
+"225281_at"	"NEPRO"	25871	"ENSG00000163608"
+"225279_s_at"	"NEPRO"	25871	"ENSG00000163608"
+"222212_s_at"	"CERS2"	29956	"ENSG00000143418"
+"220881_at"	""	NA	"ENSG00000184566"
+"225340_s_at"	"CAPRIN1"	4076	"ENSG00000135387"
+"221222_s_at"	"C1orf56"	54964	"ENSG00000143443"
+"223674_s_at"	"CDC42SE1"	56882	"ENSG00000197622"
+"222537_s_at"	"CDC42SE1"	56882	"ENSG00000197622"
+"225381_at"	"MIR100HG"	399959	"ENSG00000255248"
+"224392_s_at"	"OPN3"	23596	"ENSG00000054277"
+"221692_s_at"	"MRPL34"	64981	"ENSG00000130312"
+"223053_x_at"	"SSU72"	29101	"ENSG00000160075"
+"223051_at"	"SSU72"	29101	"ENSG00000160075"
+"221180_at"	"MAP3K19"	80122	"ENSG00000176601"
+"221529_s_at"	"PLVAP"	83483	"ENSG00000130300"
+"223506_at"	"ZC3H8"	84524	"ENSG00000144161"
+"222589_at"	"NLK"	51701	"ENSG00000087095"
+"222590_s_at"	"NLK"	51701	"ENSG00000087095"
+"222226_at"	""	6290	"ENSG00000290741"
+"222593_s_at"	"SPATS2"	65244	"ENSG00000123352"
+"222594_s_at"	"SPATS2"	65244	"ENSG00000123352"
+"221697_at"	"MAP1LC3C"	440738	"ENSG00000197769"
+"221316_at"	"CATSPERG"	57828	"ENSG00000099338"
+"222248_s_at"	"SIRT4"	23409	"ENSG00000089163"
+"223637_s_at"	"FHIP1B"	84067	"ENSG00000051009"
+"224172_at"	""	NA	"ENSG00000260907"
+"220769_s_at"	"DNAI4"	79819	"ENSG00000152763"
+"225161_at"	"GFM1"	85476	"ENSG00000168827"
+"225158_at"	"GFM1"	85476	"ENSG00000168827"
+"225153_at"	"GFM1"	85476	"ENSG00000168827"
+"220903_at"	"GFM1"	85476	"ENSG00000168827"
+"223672_at"	"SGIP1"	84251	"ENSG00000118473"
+"222754_at"	"TRNT1"	51095	"ENSG00000072756"
+"223814_at"	"TRNT1"	51095	"ENSG00000072756"
+"220952_s_at"	"PLEKHA5"	54477	"ENSG00000052126"
+"225178_at"	"TTC14"	151613	"ENSG00000163728"
+"225180_at"	"TTC14"	151613	"ENSG00000163728"
+"223987_at"	"CHRDL2"	25884	"ENSG00000054938"
+"220583_at"	""	NA	"ENSG00000279353"
+"225358_at"	"DNAJC19"	131118	"ENSG00000205981"
+"225359_at"	"DNAJC19"	131118	"ENSG00000205981"
+"220895_at"	"USP29"	57663	"ENSG00000131864"
+"224327_s_at"	"DGAT2"	84649	"ENSG00000062282"
+"225256_at"	""	NA	"ENSG00000268205"
+"220812_s_at"	"HHLA2"	11148	"ENSG00000114455"
+"221133_s_at"	"CLDN18"	51208	"ENSG00000066405"
+"221132_at"	"CLDN18"	51208	"ENSG00000066405"
+"221131_at"	"A4GNT"	51146	"ENSG00000118017"
+"221371_at"	"TNFSF18"	8995	"ENSG00000120337"
+"224397_s_at"	"TMTC1"	83857	"ENSG00000133687"
+"221091_at"	"INSL5"	10022	"ENSG00000172410"
+"224833_at"	"ETS1"	2113	"ENSG00000134954"
+"225298_at"	"PNKD"	25953	"ENSG00000127838"
+"225493_at"	"CCNT1"	904	"ENSG00000129315"
+"222281_s_at"	""	NA	"ENSG00000285417"
+"220829_s_at"	"B3GALT1"	8708	"ENSG00000172318"
+"222969_at"	"B3GALT1"	8708	"ENSG00000172318"
+"223170_at"	"TMEM98"	26022	"ENSG00000006042"
+"223322_at"	"RASSF5"	83593	"ENSG00000266094"
+"223064_at"	"RNF181"	51255	"ENSG00000168894"
+"225128_at"	"POGLUT3"	143888	"ENSG00000178202"
+"221252_s_at"	"GSG1"	83445	"ENSG00000111305"
+"222632_s_at"	"LZTFL1"	54585	"ENSG00000163818"
+"221878_at"	"C2orf68"	388969	"ENSG00000168887"
+"222385_x_at"	"SEC61A1"	29927	"ENSG00000058262"
+"223405_at"	"NPL"	80896	"ENSG00000135838"
+"221210_s_at"	"NPL"	80896	"ENSG00000135838"
+"221278_at"	"HOXB8"	3218	"ENSG00000120068"
+"224628_at"	"ERLEC1"	27248	"ENSG00000068912"
+"224630_at"	"ERLEC1"	27248	"ENSG00000068912"
+"220620_at"	"CRCT1"	54544	"ENSG00000169509"
+"224328_s_at"	"LCE3D"	84648	"ENSG00000163202"
+"223097_at"	"ADPRS"	54936	"ENSG00000116863"
+"221900_at"	"COL8A2"	1296	"ENSG00000171812"
+"221674_s_at"	"CHRD"	8646	"ENSG00000090539"
+"224009_x_at"	"DHRS9"	10170	"ENSG00000073737"
+"223952_x_at"	"DHRS9"	10170	"ENSG00000073737"
+"223066_at"	"SNAPIN"	23557	"ENSG00000143553"
+"224355_s_at"	"MS4A8"	83661	"ENSG00000166959"
+"224769_at"	"TAOK1"	57551	"ENSG00000160551"
+"224778_s_at"	"TAOK1"	57551	"ENSG00000160551"
+"223852_s_at"	"STK40"	83931	"ENSG00000196182"
+"225015_s_at"	"STK40"	83931	"ENSG00000196182"
+"225491_at"	"SLC1A2"	6506	"ENSG00000110436"
+"224644_at"	"FGD5-AS1"	100505641	"ENSG00000225733"
+"225043_at"	"SLC15A4"	121260	"ENSG00000139370"
+"225057_at"	"SLC15A4"	121260	"ENSG00000139370"
+"223667_at"	"FKBP7"	51661	"ENSG00000079150"
+"224002_s_at"	"FKBP7"	51661	"ENSG00000079150"
+"221437_s_at"	"MRPS15"	64960	"ENSG00000116898"
+"221710_x_at"	"EVA1B"	55194	"ENSG00000142694"
+"223735_at"	"ARL6"	84100	"ENSG00000113966"
+"221612_at"	"LRTM1"	57408	"ENSG00000144771"
+"220664_at"	"SPRR2C"	NA	"ENSG00000229035"
+"221921_s_at"	"CADM3"	57863	"ENSG00000162706"
+"222077_s_at"	"RACGAP1"	29127	"ENSG00000161800"
+"221110_x_at"	"PDE11A"	50940	"ENSG00000128655"
+"224223_s_at"	"PDE11A"	50940	"ENSG00000128655"
+"224224_s_at"	"PDE11A"	50940	"ENSG00000128655"
+"220654_at"	"PPY2P"	23614	"ENSG00000290672"
+"225056_at"	"SIPA1L2"	57568	"ENSG00000116991"
+"221182_at"	"MROH9"	80133	"ENSG00000117501"
+"224951_at"	"CERS5"	91012	"ENSG00000139624"
+"225370_at"	"PYGO2"	90780	"ENSG00000163348"
+"223792_at"	"ZNF2"	7549	"ENSG00000275111"
+"225157_at"	"MLXIP"	22877	"ENSG00000175727"
+"221509_at"	"DENR"	8562	"ENSG00000139726"
+"222684_s_at"	"NOL10"	79954	"ENSG00000115761"
+"222116_s_at"	"TBC1D16"	125058	"ENSG00000167291"
+"222648_at"	"TBC1D16"	125058	"ENSG00000167291"
+"225490_at"	"ARID2"	196528	"ENSG00000189079"
+"225486_at"	"ARID2"	196528	"ENSG00000189079"
+"224141_at"	"GCC2-AS1"	644903	"ENSG00000214184"
+"221245_s_at"	"FZD5"	7855	"ENSG00000163251"
+"220787_at"	""	NA	"ENSG00000243415"
+"224015_s_at"	"MRPS25"	64432	"ENSG00000131368"
+"220871_at"	""	NA	"ENSG00000279324"
+"223454_at"	"CXCL16"	58191	"ENSG00000161921"
+"222472_at"	"AFTPH"	54812	"ENSG00000119844"
+"224339_s_at"	"ANGPTL1"	9068	"ENSG00000116194"
+"224337_s_at"	"FZD4"	8322	"ENSG00000174804"
+"222393_s_at"	"NAA50"	80218	"ENSG00000121579"
+"221856_s_at"	"MINDY1"	55793	"ENSG00000143409"
+"225044_at"	"NT5C3B"	115024	"ENSG00000141698"
+"220599_s_at"	"CARD14"	79092	"ENSG00000141527"
+"220598_at"	"CARD14"	79092	"ENSG00000141527"
+"224113_at"	"CARD14"	79092	"ENSG00000141527"
+"222357_at"	"ZBTB20"	26137	"ENSG00000181722"
+"222696_at"	"AXIN2"	8313	"ENSG00000168646"
+"224176_s_at"	"AXIN2"	8313	"ENSG00000168646"
+"222633_at"	"TBL1XR1"	79718	"ENSG00000177565"
+"223013_at"	"TBL1XR1"	79718	"ENSG00000177565"
+"221428_s_at"	"TBL1XR1"	79718	"ENSG00000177565"
+"222634_s_at"	"TBL1XR1"	79718	"ENSG00000177565"
+"224692_at"	"PPP1R15B"	84919	"ENSG00000158615"
+"221331_x_at"	"CTLA4"	1493	"ENSG00000163599"
+"222406_s_at"	"PNRC2"	55629	"ENSG00000189266"
+"224560_at"	"TIMP2"	7077	"ENSG00000035862"
+"225348_at"	"SRSF10"	10772	"ENSG00000188529"
+"223731_at"	"MYCBPAP"	84073	"ENSG00000136449"
+"221426_s_at"	"OR3A3"	8392	"ENSG00000159961"
+"220546_at"	"KMT2A"	4297	"ENSG00000118058"
+"221404_at"	"IL36A"	27179	"ENSG00000136694"
+"224230_at"	"IL36B"	27177	"ENSG00000136696"
+"224262_at"	"IL1F10"	84639	"ENSG00000136697"
+"224428_s_at"	"CDCA7"	83879	"ENSG00000144354"
+"222223_s_at"	"IL36RN"	26525	"ENSG00000136695"
+"221386_at"	"OR3A2"	4995	"ENSG00000221882"
+"223608_at"	"EFCAB2"	84288	"ENSG00000203666"
+"222214_at"	""	NA	"ENSG00000280069"
+"220912_at"	"RN7SL724P"	NA	"ENSG00000244692"
+"225150_s_at"	"RTKN"	6242	"ENSG00000114993"
+"225151_at"	"RTKN"	6242	"ENSG00000114993"
+"223103_at"	"STARD10"	10809	"ENSG00000214530"
+"224855_at"	"PYCR2"	29920	"ENSG00000143811"
+"223217_s_at"	"NFKBIZ"	64332	"ENSG00000144802"
+"223218_s_at"	"NFKBIZ"	64332	"ENSG00000144802"
+"221353_at"	"OR3A1"	4994	"ENSG00000180090"
+"222511_x_at"	"FAF1"	11124	"ENSG00000185104"
+"224217_s_at"	"FAF1"	11124	"ENSG00000185104"
+"224550_s_at"	"IRAG1"	10335	"ENSG00000072952"
+"221189_s_at"	"TARS2"	80222	"ENSG00000143374"
+"221052_at"	"TDRKH"	11022	"ENSG00000182134"
+"221053_s_at"	"TDRKH"	11022	"ENSG00000182134"
+"223530_at"	"TDRKH"	11022	"ENSG00000182134"
+"220634_at"	"TBX4"	9496	"ENSG00000121075"
+"223681_s_at"	"PATJ"	10207	"ENSG00000132849"
+"221966_at"	"GPR137"	56834	"ENSG00000173264"
+"224463_s_at"	"CFAP300"	85016	"ENSG00000137691"
+"224894_at"	"YAP1"	10413	"ENSG00000137693"
+"224895_at"	"YAP1"	10413	"ENSG00000137693"
+"224896_s_at"	"TTL"	150465	"ENSG00000114999"
+"224908_s_at"	"TTL"	150465	"ENSG00000114999"
+"223403_s_at"	"POLR1B"	84172	"ENSG00000125630"
+"223479_s_at"	"CHCHD5"	84269	"ENSG00000125611"
+"221427_s_at"	"CCNL2"	81669	"ENSG00000221978"
+"222999_s_at"	"CCNL2"	81669	"ENSG00000221978"
+"223881_at"	"ICA1L"	130026	"ENSG00000163596"
+"222580_at"	"ZNF644"	84146	"ENSG00000122482"
+"220909_at"	"TRIM46"	80128	"ENSG00000163462"
+"223135_s_at"	"BBX"	56987	"ENSG00000114439"
+"223134_at"	"BBX"	56987	"ENSG00000114439"
+"225452_at"	"MED1"	5469	"ENSG00000125686"
+"225456_at"	"MED1"	5469	"ENSG00000125686"
+"225274_at"	"PCYOX1"	51449	"ENSG00000116005"
+"220990_s_at"	"VMP1"	81671	"ENSG00000062716"
+"221326_s_at"	"TUBD1"	51174	"ENSG00000108423"
+"223940_x_at"	"MALAT1"	NA	"ENSG00000251562"
+"224567_x_at"	"MALAT1"	NA	"ENSG00000251562"
+"224568_x_at"	"MALAT1"	NA	"ENSG00000251562"
+"225262_at"	"FOSL2"	2355	"ENSG00000075426"
+"225000_at"	"PRKAR2A"	5576	"ENSG00000114302"
+"225011_at"	"PRKAR2A"	5576	"ENSG00000114302"
+"221229_s_at"	"TRMT61B"	55006	"ENSG00000171103"
+"221468_at"	"XCR1"	2829	"ENSG00000173578"
+"220745_at"	"IL19"	29949	"ENSG00000142224"
+"222924_at"	"SLMAP"	7871	"ENSG00000163681"
+"224149_x_at"	"SLMAP"	7871	"ENSG00000163681"
+"225243_s_at"	"SLMAP"	7871	"ENSG00000163681"
+"223980_s_at"	"SP110"	3431	"ENSG00000135899"
+"220862_s_at"	"USP22"	23326	"ENSG00000124422"
+"220690_s_at"	"DHRS7B"	25979	"ENSG00000109016"
+"224116_at"	""	NA	"ENSG00000270207"
+"221083_at"	"KCNQ4"	9132	"ENSG00000117013"
+"221854_at"	"PKP1"	5317	"ENSG00000081277"
+"225227_at"	"SKIL"	6498	"ENSG00000136603"
+"224912_at"	"TTC7A"	57217	"ENSG00000068724"
+"224923_at"	"TTC7A"	57217	"ENSG00000068724"
+"224924_at"	"TTC7A"	57217	"ENSG00000068724"
+"224773_at"	"NAV1"	89796	"ENSG00000134369"
+"224770_s_at"	"NAV1"	89796	"ENSG00000134369"
+"224771_at"	"NAV1"	89796	"ENSG00000134369"
+"224774_s_at"	"NAV1"	89796	"ENSG00000134369"
+"224772_at"	"NAV1"	89796	"ENSG00000134369"
+"222653_at"	"PNPO"	55163	"ENSG00000108439"
+"224152_s_at"	"PBRM1"	55193	"ENSG00000163939"
+"223238_s_at"	"PBRM1"	55193	"ENSG00000163939"
+"223400_s_at"	"PBRM1"	55193	"ENSG00000163939"
+"221212_x_at"	"PBRM1"	55193	"ENSG00000163939"
+"224000_at"	"C2orf16"	84226	"ENSG00000221843"
+"224308_s_at"	"INTS2"	57508	"ENSG00000108506"
+"223416_at"	"SF3B6"	51639	"ENSG00000115128"
+"223849_s_at"	"MOV10"	4343	"ENSG00000155363"
+"223780_s_at"	"MED13"	9969	"ENSG00000108510"
+"224642_at"	"FYTTD1"	84248	"ENSG00000122068"
+"224641_at"	"FYTTD1"	84248	"ENSG00000122068"
+"222678_s_at"	"DCUN1D1"	54165	"ENSG00000043093"
+"222679_s_at"	"DCUN1D1"	54165	"ENSG00000043093"
+"224185_at"	"TP53"	7157	"ENSG00000141510"
+"222437_s_at"	"CHMP3"	51652	"ENSG00000115561"
+"221476_s_at"	"RPL15"	6138	"ENSG00000174748"
+"223297_at"	"AMMECR1L"	83607	"ENSG00000144233"
+"221935_s_at"	"EOGT"	285203	"ENSG00000163378"
+"224058_s_at"	"HSD17B7"	51478	"ENSG00000132196"
+"225242_s_at"	"CCDC80"	151887	"ENSG00000091986"
+"225241_at"	"CCDC80"	151887	"ENSG00000091986"
+"225082_at"	"CPSF3"	51692	"ENSG00000119203"
+"225519_at"	"PPP4R2"	151987	"ENSG00000163605"
+"224800_at"	"WDFY1"	57590	"ENSG00000085449"
+"222555_s_at"	"MRPL44"	65080	"ENSG00000135900"
+"222725_s_at"	"PALMD"	54873	"ENSG00000099260"
+"223555_at"	"GON4L"	54856	"ENSG00000116580"
+"222548_s_at"	"MAP4K4"	9448	"ENSG00000071054"
+"222547_at"	"MAP4K4"	9448	"ENSG00000071054"
+"222975_s_at"	"CSDE1"	7812	"ENSG00000009307"
+"223837_at"	"GULP1"	51454	"ENSG00000144366"
+"222697_s_at"	"ABHD10"	55347	"ENSG00000144827"
+"223395_at"	"ABI3BP"	25890	"ENSG00000154175"
+"224635_s_at"	"BIRC6"	57448	"ENSG00000115760"
+"222418_s_at"	"TMEM43"	79188	"ENSG00000170876"
+"224811_at"	"LPP"	4026	"ENSG00000145012"
+"224531_at"	"GPR61"	83873	"ENSG00000156097"
+"225005_at"	"PHF13"	148479	"ENSG00000116273"
+"225068_at"	"KLHL12"	59349	"ENSG00000117153"
+"220688_s_at"	"MRTO4"	51154	"ENSG00000053372"
+"225325_at"	"MFSD6"	54842	"ENSG00000151690"
+"223671_x_at"	"DPH5"	51611	"ENSG00000117543"
+"224196_x_at"	"DPH5"	51611	"ENSG00000117543"
+"222360_at"	"DPH5"	51611	"ENSG00000117543"
+"224060_s_at"	"DPH5"	51611	"ENSG00000117543"
+"220926_s_at"	"EDEM3"	80267	"ENSG00000116406"
+"223243_s_at"	"EDEM3"	80267	"ENSG00000116406"
+"225470_at"	"NUP35"	129401	"ENSG00000163002"
+"225482_at"	"KIF1A"	547	"ENSG00000130294"
+"224020_at"	"LINC00626"	79100	"ENSG00000225826"
+"223762_at"	"TMOD4"	29765	"ENSG00000163157"
+"225282_at"	"SMAP2"	64744	"ENSG00000084070"
+"224592_x_at"	"HP1BP3"	50809	"ENSG00000127483"
+"224591_at"	"HP1BP3"	50809	"ENSG00000127483"
+"220633_s_at"	"HP1BP3"	50809	"ENSG00000127483"
+"222902_s_at"	"EXO5"	64789	"ENSG00000164002"
+"224768_at"	"IWS1"	55677	"ENSG00000163166"
+"224775_at"	"IWS1"	55677	"ENSG00000163166"
+"225085_at"	"USP40"	55230	"ENSG00000085982"
+"225089_at"	"USP40"	55230	"ENSG00000085982"
+"223660_at"	"TMIGD3"	57413	"ENSG00000121933"
+"225059_at"	"AGTRAP"	57085	"ENSG00000177674"
+"221770_at"	"RPE"	6120	"ENSG00000197713"
+"225039_at"	"RPE"	6120	"ENSG00000197713"
+"225040_s_at"	"RPE"	6120	"ENSG00000197713"
+"225411_at"	"TMEM87B"	84910	"ENSG00000153214"
+"225412_at"	"TMEM87B"	84910	"ENSG00000153214"
+"221636_s_at"	"MTARC2"	54996	"ENSG00000117791"
+"224728_at"	"ATPAF1"	64756	"ENSG00000123472"
+"224729_s_at"	"ATPAF1"	64756	"ENSG00000123472"
+"221216_s_at"	"SCMH1"	22955	"ENSG00000010803"
+"224390_s_at"	"RGS8"	85397	"ENSG00000135824"
+"224818_at"	"SORT1"	6272	"ENSG00000134243"
+"223953_s_at"	"ZBTB37"	84614	"ENSG00000185278"
+"221246_x_at"	"TNS1"	7145	"ENSG00000079308"
+"221748_s_at"	"TNS1"	7145	"ENSG00000079308"
+"221747_at"	"TNS1"	7145	"ENSG00000079308"
+"225353_s_at"	"C1QC"	714	"ENSG00000159189"
+"223636_at"	"ZMYND12"	84217	"ENSG00000066185"
+"225278_at"	"PRKAB2"	5565	"ENSG00000131791"
+"225258_at"	"FBLIM1"	54751	"ENSG00000162458"
+"221171_at"	"CCDC30"	728621	"ENSG00000186409"
+"221768_at"	"SFPQ"	6421	"ENSG00000116560"
+"224529_s_at"	"NT5C1A"	84618	"ENSG00000116981"
+"223079_s_at"	"GLS"	2744	"ENSG00000115419"
+"221510_s_at"	"GLS"	2744	"ENSG00000115419"
+"225316_at"	"MFSD2A"	84879	"ENSG00000168389"
+"224364_s_at"	"PPIL3"	53938	"ENSG00000240344"
+"223904_at"	"PRKAG3"	53632	"ENSG00000115592"
+"221609_s_at"	"WNT6"	7475	"ENSG00000115596"
+"221990_at"	"PAX8"	7849	"ENSG00000125618"
+"222312_s_at"	""	NA	"ENSG00000280099"
+"225410_at"	"COA5"	493753	"ENSG00000183513"
+"225409_at"	"COA5"	493753	"ENSG00000183513"
+"224406_s_at"	"FCRL5"	83416	"ENSG00000143297"
+"224404_s_at"	"FCRL5"	83416	"ENSG00000143297"
+"224405_at"	"FCRL5"	83416	"ENSG00000143297"
+"224403_at"	"FCRL4"	83417	"ENSG00000163518"
+"224402_s_at"	"FCRL4"	83417	"ENSG00000163518"
+"224401_s_at"	"FCRL4"	83417	"ENSG00000163518"
+"224193_s_at"	"FCRL2"	79368	"ENSG00000132704"
+"221239_s_at"	"FCRL2"	79368	"ENSG00000132704"
+"224192_at"	"FCRL2"	79368	"ENSG00000132704"
+"222832_s_at"	"MFF"	56947	"ENSG00000168958"
+"223091_x_at"	"MFF"	56947	"ENSG00000168958"
+"223354_x_at"	"MFF"	56947	"ENSG00000168958"
+"224691_at"	"UHMK1"	127933	"ENSG00000152332"
+"225442_at"	"DDR2"	4921	"ENSG00000162733"
+"222810_s_at"	"RASAL2"	9462	"ENSG00000075391"
+"225522_at"	"AAK1"	22848	"ENSG00000115977"
+"223938_at"	"TEX35"	84066	"ENSG00000240021"
+"225112_at"	"ABI2"	10152	"ENSG00000138443"
+"225098_at"	"ABI2"	10152	"ENSG00000138443"
+"222434_at"	"ENAH"	55740	"ENSG00000154380"
+"222433_at"	"ENAH"	55740	"ENSG00000154380"
+"220845_at"	"ACOXL"	55289	"ENSG00000153093"
+"224820_at"	"COX20"	116228	"ENSG00000203667"
+"223492_s_at"	"LRRFIP1"	9208	"ENSG00000124831"
+"223034_s_at"	"C1orf43"	25912	"ENSG00000143612"
+"222200_s_at"	"BSDC1"	55108	"ENSG00000160058"
+"222468_at"	"KIAA0319L"	79932	"ENSG00000142687"
+"223510_at"	"NRP2"	8828	"ENSG00000118257"
+"222877_at"	"NRP2"	8828	"ENSG00000118257"
+"224871_at"	"TPRG1L"	127262	"ENSG00000158109"
+"220804_s_at"	"TP73"	7161	"ENSG00000078900"
+"224099_at"	"KCNH7"	90134	"ENSG00000184611"
+"222791_at"	"RSBN1"	54665	"ENSG00000081019"
+"222789_at"	"RSBN1"	54665	"ENSG00000081019"
+"222788_s_at"	"RSBN1"	54665	"ENSG00000081019"
+"222790_s_at"	"RSBN1"	54665	"ENSG00000081019"
+"222889_at"	"DCLRE1B"	64858	"ENSG00000118655"
+"221767_x_at"	"HDLBP"	3069	"ENSG00000115677"
+"225012_at"	"HDLBP"	3069	"ENSG00000115677"
+"222916_s_at"	"HDLBP"	3069	"ENSG00000115677"
+"224100_s_at"	"DPYSL5"	56896	"ENSG00000157851"
+"222797_at"	"DPYSL5"	56896	"ENSG00000157851"
+"223517_at"	"FBXO44"	93611	"ENSG00000132879"
+"222861_x_at"	"FBXO44"	93611	"ENSG00000132879"
+"222700_at"	"ATL2"	64225	"ENSG00000119787"
+"223234_at"	"MAD2L2"	10459	"ENSG00000116670"
+"222343_at"	"BCL2L11"	10018	"ENSG00000153094"
+"221235_s_at"	"TGFBRAP1"	9392	"ENSG00000135966"
+"225447_at"	"GPD2"	2820	"ENSG00000115159"
+"221142_s_at"	"PECR"	55825	"ENSG00000115425"
+"223619_x_at"	"PECR"	55825	"ENSG00000115425"
+"225401_at"	"GLMP"	112770	"ENSG00000198715"
+"223223_at"	"ARV1"	64801	"ENSG00000173409"
+"223676_at"	"TMEM234"	56063	"ENSG00000160055"
+"223656_s_at"	"TMEM234"	56063	"ENSG00000160055"
+"222834_s_at"	"GNG12"	55970	"ENSG00000172380"
+"221958_s_at"	"WLS"	79971	"ENSG00000116729"
+"220944_at"	"PGLYRP4"	57115	"ENSG00000163218"
+"223851_s_at"	"TNFRSF18"	8784	"ENSG00000186891"
+"224553_s_at"	"TNFRSF18"	8784	"ENSG00000186891"
+"224472_x_at"	"SDF4"	51150	"ENSG00000078808"
+"221972_s_at"	"SDF4"	51150	"ENSG00000078808"
+"224347_x_at"	"UBE2J2"	118424	"ENSG00000160087"
+"225209_s_at"	"UBE2J2"	118424	"ENSG00000160087"
+"221505_at"	"ANP32E"	81611	"ENSG00000143401"
+"222997_s_at"	"MRPS21"	54460	"ENSG00000266472"
+"225529_at"	"ACAP3"	116983	"ENSG00000131584"
+"220734_s_at"	"CPTP"	80772	"ENSG00000224051"
+"221512_at"	"TMEM222"	84065	"ENSG00000186501"
+"221045_s_at"	"PER3"	8863	"ENSG00000049246"
+"220785_at"	"UTS2"	10911	"ENSG00000049247"
+"220784_s_at"	"UTS2"	10911	"ENSG00000049247"
+"224657_at"	"ERRFI1"	54206	"ENSG00000116285"
+"222448_s_at"	"CMPK1"	51727	"ENSG00000162368"
+"223229_at"	"UBE2T"	29089	"ENSG00000077152"
+"220987_s_at"	"NUAK2"	81788	"ENSG00000163545"
+"222871_at"	"KLHDC8A"	55220	"ENSG00000162873"
+"222576_s_at"	"AGO1"	26523	"ENSG00000092847"
+"221725_at"	"WASF2"	10163	"ENSG00000158195"
+"224562_at"	"WASF2"	10163	"ENSG00000158195"
+"224976_at"	"NFIA"	4774	"ENSG00000162599"
+"224975_at"	"NFIA"	4774	"ENSG00000162599"
+"224970_at"	"NFIA"	4774	"ENSG00000162599"
+"222384_at"	"SMG7-AS1"	NA	"ENSG00000232860"
+"224443_at"	"LINC00467"	NA	"ENSG00000153363"
+"224444_s_at"	"LINC00467"	NA	"ENSG00000153363"
+"224841_x_at"	"GAS5"	60674	"ENSG00000234741"
+"224741_x_at"	"GAS5"	60674	"ENSG00000234741"
+"222301_at"	"MIR9-1HG"	10485	"ENSG00000125462"
+"223232_s_at"	"CGN"	57530	"ENSG00000143375"
+"223233_s_at"	"CGN"	57530	"ENSG00000143375"
+"224064_s_at"	"DHDDS"	79947	"ENSG00000117682"
+"221264_s_at"	"TARDBP"	23435	"ENSG00000120948"
+"224501_at"	"PERM1"	84808	"ENSG00000187642"
+"220825_s_at"	"KIRREL1"	55243	"ENSG00000183853"
+"225303_at"	"KIRREL1"	55243	"ENSG00000183853"
+"221643_s_at"	"RERE"	473	"ENSG00000142599"
+"221639_x_at"	""	NA	"ENSG00000273175"
+"220846_s_at"	"PRKCZ-AS1"	100506504	"ENSG00000182873"
+"220579_at"	"FAAP20"	199990	"ENSG00000162585"
+"224905_at"	"WDR26"	80232	"ENSG00000162923"
+"224898_at"	"WDR26"	80232	"ENSG00000162923"
+"224897_at"	"WDR26"	80232	"ENSG00000162923"
+"223863_at"	"WDR26"	80232	"ENSG00000162923"
+"222095_s_at"	"FAM163A"	148753	"ENSG00000143340"
+"223930_at"	""	NA	"ENSG00000272906"
+"223929_s_at"	""	NA	"ENSG00000272906"
+"222054_at"	""	728448	"ENSG00000291129"
+"224164_at"	"TPM3"	7170	"ENSG00000143549"
+"223884_at"	"OPTC"	26254	"ENSG00000188770"
+"224362_at"	""	NA	"ENSG00000279214"
+"225051_at"	"EPB41"	2035	"ENSG00000159023"
+"221726_at"	"RPL22"	6146	"ENSG00000116251"
+"221902_at"	"GPR153"	387509	"ENSG00000158292"
+"222482_at"	"SSBP3"	23648	"ENSG00000157216"
+"221832_s_at"	"LUZP1"	7798	"ENSG00000169641"
+"221831_at"	"LUZP1"	7798	"ENSG00000169641"
+"223549_s_at"	"ESPN"	83715	"ENSG00000187017"
+"220680_at"	"RAVER2"	55225	"ENSG00000162437"
+"221057_at"	"SPATA1"	100505741	"ENSG00000122432"
+"225226_at"	"STRIP1"	85369	"ENSG00000143093"
+"223272_s_at"	"NTPCR"	84284	"ENSG00000135778"
+"223617_x_at"	"ATAD3B"	83858	"ENSG00000160072"
+"224708_at"	"KIAA2013"	90231	"ENSG00000116685"
+"221520_s_at"	"CDCA8"	55143	"ENSG00000134690"
+"222703_s_at"	"YRDC"	79693	"ENSG00000196449"
+"225480_at"	"C1orf122"	127687	"ENSG00000197982"
+"224163_s_at"	"DMAP1"	55929	"ENSG00000178028"
+"221648_s_at"	"AGMAT"	79814	"ENSG00000116771"
+"222930_s_at"	"AGMAT"	79814	"ENSG00000116771"
+"224449_at"	"DDI2"	84301	"ENSG00000197312"
+"227713_at"	"KATNAL1"	84056	"ENSG00000102781"
+"226374_at"	"CXADR"	1525	"ENSG00000154639"
+"229127_at"	"JAM2"	58494	"ENSG00000154721"
+"225915_at"	"CAB39L"	81617	"ENSG00000102547"
+"225914_s_at"	"CAB39L"	81617	"ENSG00000102547"
+"228665_at"	"CYYR1"	116159	"ENSG00000166265"
+"230305_at"	"DNAJC15"	29103	"ENSG00000120675"
+"227808_at"	"DNAJC15"	29103	"ENSG00000120675"
+"226082_s_at"	"SCAF4"	57466	"ENSG00000156304"
+"226109_at"	"C21orf91"	54149	"ENSG00000154642"
+"225578_at"	"MZT1"	440145	"ENSG00000204899"
+"225887_at"	"PROSER1"	80209	"ENSG00000120685"
+"230042_at"	"ITSN1"	6453	"ENSG00000205726"
+"225564_at"	"SPATA13"	221178	"ENSG00000182957"
+"227040_at"	"NHLRC3"	387921	"ENSG00000188811"
+"229097_at"	"DIAPH3"	81624	"ENSG00000139734"
+"228863_at"	"PCDH17"	27253	"ENSG00000118946"
+"227289_at"	"PCDH17"	27253	"ENSG00000118946"
+"229829_at"	"LINC00526"	NA	"ENSG00000264575"
+"226151_x_at"	"CRYZL1"	9946	"ENSG00000205758"
+"229357_at"	"ADAMTS5"	11096	"ENSG00000154736"
+"226795_at"	"LRCH1"	23143	"ENSG00000136141"
+"228377_at"	"KLHL14"	57565	"ENSG00000197705"
+"227188_at"	"EVA1C"	59271	"ENSG00000166979"
+"229615_at"	"SLX4IP"	128710	"ENSG00000149346"
+"225769_at"	"COG6"	57511	"ENSG00000133103"
+"226584_s_at"	"FAM110A"	83541	"ENSG00000125898"
+"227058_at"	"MEDAG"	84935	"ENSG00000102802"
+"227986_at"	"ZNF343"	79175	"ENSG00000088876"
+"226957_x_at"	"RALBP1"	10928	"ENSG00000017797"
+"225648_at"	"STK35"	140901	"ENSG00000125834"
+"225649_s_at"	"STK35"	140901	"ENSG00000125834"
+"227752_at"	"SPTLC3"	55304	"ENSG00000172296"
+"226406_at"	"C18orf25"	147339	"ENSG00000152242"
+"225953_at"	"RPRD1A"	55197	"ENSG00000141425"
+"228566_at"	"RPRD1A"	55197	"ENSG00000141425"
+"228737_at"	"TOX2"	84969	"ENSG00000124191"
+"227448_at"	"ARGLU1"	55082	"ENSG00000134884"
+"227996_at"	"FARP1"	10160	"ENSG00000152767"
+"230143_at"	"RNF165"	494470	"ENSG00000141622"
+"230262_at"	"ST8SIA3"	51046	"ENSG00000177511"
+"226563_at"	"SMAD2"	4087	"ENSG00000175387"
+"228708_at"	"RAB27B"	5874	"ENSG00000041353"
+"229943_at"	"TRIM13"	10206	"ENSG00000204977"
+"230192_at"	"TRIM13"	10206	"ENSG00000204977"
+"227654_at"	"RIPOR3"	140876	"ENSG00000042062"
+"225687_at"	"FAM83D"	81610	"ENSG00000101447"
+"229210_at"	"RNASEH2B"	79621	"ENSG00000136104"
+"228115_at"	"GAREM1"	64762	"ENSG00000141441"
+"227782_at"	"ZBTB7C"	201501	"ENSG00000184828"
+"230170_at"	"OSM"	5008	"ENSG00000099985"
+"230067_at"	"FAM124A"	220108	"ENSG00000150510"
+"227194_at"	"FAM3B"	54097	"ENSG00000183844"
+"229431_at"	"RFXAP"	5994	"ENSG00000133111"
+"228597_at"	"MIS18A"	54069	"ENSG00000159055"
+"226882_x_at"	"WDR4"	10785	"ENSG00000160193"
+"226616_s_at"	"NDUFV3"	4731	"ENSG00000160194"
+"226209_at"	"NDUFV3"	4731	"ENSG00000160194"
+"227428_at"	"GABPA"	2551	"ENSG00000154727"
+"227742_at"	"CLIC6"	54102	"ENSG00000159212"
+"226246_at"	"KCTD1"	284252	"ENSG00000134504"
+"226245_at"	"KCTD1"	284252	"ENSG00000134504"
+"228608_at"	"NALCN"	259232	"ENSG00000102452"
+"229036_at"	"TNRC6B"	23112	"ENSG00000100354"
+"228998_at"	"TNRC6B"	23112	"ENSG00000100354"
+"230343_at"	"CST3"	1471	"ENSG00000101439"
+"226677_at"	"ZNF521"	25925	"ENSG00000198795"
+"226676_at"	"ZNF521"	25925	"ENSG00000198795"
+"229924_s_at"	""	NA	"ENSG00000270792"
+"226924_at"	"ZNF407-AS1"	NA	"ENSG00000264247"
+"229433_at"	"RBM26"	64062	"ENSG00000139746"
+"226316_at"	"RBM26"	64062	"ENSG00000139746"
+"227355_at"	"RBM26"	64062	"ENSG00000139746"
+"227415_at"	"DGKH"	160851	"ENSG00000102780"
+"229661_at"	"SALL4"	57167	"ENSG00000101115"
+"228162_at"	"ESD"	2098	"ENSG00000139684"
+"227051_at"	"BACE2"	25825	"ENSG00000182240"
+"226991_at"	"NFATC2"	4773	"ENSG00000101096"
+"228442_at"	"NFATC2"	4773	"ENSG00000101096"
+"230178_s_at"	"ELP2"	55250	"ENSG00000134759"
+"227519_at"	"PLAC4"	191585	"ENSG00000280109"
+"225666_at"	"TMTC4"	84899	"ENSG00000125247"
+"227949_at"	"PHACTR3"	116154	"ENSG00000087495"
+"227609_at"	"EPSTI1"	94240	"ENSG00000133106"
+"227812_at"	"TNFRSF19"	55504	"ENSG00000127863"
+"230093_at"	"RSPH1"	89765	"ENSG00000160188"
+"229739_s_at"	"DENND6B"	414918	"ENSG00000205593"
+"228678_at"	"DENND6B"	414918	"ENSG00000205593"
+"226479_at"	"KBTBD6"	89890	"ENSG00000165572"
+"229970_at"	"KBTBD7"	84078	"ENSG00000120696"
+"229298_at"	"KBTBD7"	84078	"ENSG00000120696"
+"225585_at"	"RAP2A"	5911	"ENSG00000125249"
+"229811_at"	""	NA	"ENSG00000226332"
+"226512_at"	"ZMYM2"	7750	"ENSG00000121741"
+"228889_at"	"ARHGAP5-AS1"	NA	"ENSG00000258655"
+"225865_x_at"	"NELFCD"	51497	"ENSG00000101158"
+"228977_at"	""	NA	"ENSG00000278291"
+"227054_at"	"EEF1AKMT1"	221143	"ENSG00000150456"
+"227013_at"	"LATS2"	26524	"ENSG00000150457"
+"226747_at"	"TXNDC16"	57544	"ENSG00000087301"
+"230493_at"	"SHISA2"	387914	"ENSG00000180730"
+"227848_at"	"PEBP4"	157310	"ENSG00000134020"
+"226805_at"	"FITM2"	128486	"ENSG00000197296"
+"228031_at"	"TTPAL"	79183	"ENSG00000124120"
+"228347_at"	"SIX1"	6495	"ENSG00000126778"
+"227630_at"	"PPP2R5E"	5529	"ENSG00000154001"
+"228070_at"	"PPP2R5E"	5529	"ENSG00000154001"
+"229322_at"	"PPP2R5E"	5529	"ENSG00000154001"
+"229578_at"	"JPH2"	57158	"ENSG00000149596"
+"228853_at"	"STYX"	6815	"ENSG00000198252"
+"227699_at"	"L3HYPDH"	112849	"ENSG00000126790"
+"226591_at"	"SNHG14"	NA	"ENSG00000224078"
+"226587_at"	"SNHG14"	NA	"ENSG00000224078"
+"228370_at"	"SNHG14"	NA	"ENSG00000224078"
+"229796_at"	"SIX4"	51804	"ENSG00000100625"
+"227016_at"	"ERICH1"	157697	"ENSG00000104714"
+"227017_at"	"ERICH1"	157697	"ENSG00000104714"
+"228024_at"	"VPS37A"	137492	"ENSG00000155975"
+"227728_at"	"PPM1A"	5494	"ENSG00000100614"
+"229027_at"	"PPM1A"	5494	"ENSG00000100614"
+"227910_at"	"XPNPEP3"	63929	"ENSG00000196236"
+"226501_at"	"XPNPEP3"	63929	"ENSG00000196236"
+"227102_at"	"TRIM35"	23087	"ENSG00000104228"
+"226360_at"	"ZNRF3"	84133	"ENSG00000183579"
+"229116_at"	"CNKSR2"	22866	"ENSG00000149970"
+"229287_at"	"PCNX1"	22990	"ENSG00000100731"
+"227644_at"	"RIMS4"	140730	"ENSG00000101098"
+"228017_s_at"	"NKAIN4"	128414	"ENSG00000101198"
+"228018_at"	"NKAIN4"	128414	"ENSG00000101198"
+"226663_at"	"ANKRD10-IT1"	NA	"ENSG00000229152"
+"226938_at"	"DCAF4"	26094	"ENSG00000119599"
+"228446_at"	"KIAA2026"	158358	"ENSG00000183354"
+"225843_at"	"ZFYVE19"	84936	"ENSG00000166140"
+"227015_at"	"ASPHD2"	57168	"ENSG00000128203"
+"227014_at"	"ASPHD2"	57168	"ENSG00000128203"
+"230331_at"	"METTL21C"	196541	"ENSG00000139780"
+"227615_at"	"SRRD"	402055	"ENSG00000100104"
+"227401_at"	"IL17D"	53342	"ENSG00000172458"
+"226530_at"	"BMF"	90427	"ENSG00000104081"
+"226178_at"	"SOCS4"	122809	"ENSG00000180008"
+"227994_x_at"	"PPDPF"	79144	"ENSG00000125534"
+"226179_at"	"SLC25A37"	51312	"ENSG00000147454"
+"230263_s_at"	"DOCK5"	80005	"ENSG00000147459"
+"227547_at"	""	119746555	"ENSG00000260257"
+"225860_at"	"MMP24OS"	101410538	"ENSG00000126005"
+"228016_s_at"	"MMP24"	10893	"ENSG00000125966"
+"226837_at"	"SPRED1"	161742	"ENSG00000166068"
+"227730_at"	"DYM"	54808	"ENSG00000141627"
+"228045_at"	"SUGT1"	10910	"ENSG00000165416"
+"226007_at"	"ISCA2"	122961	"ENSG00000165898"
+"227329_at"	"ZBTB46"	140685	"ENSG00000130584"
+"227358_at"	"ZBTB46"	140685	"ENSG00000130584"
+"227362_at"	"ZBTB46"	140685	"ENSG00000130584"
+"226267_at"	"JDP2"	122953	"ENSG00000140044"
+"229073_at"	"PRTG"	283659	"ENSG00000166450"
+"229178_at"	"PRTG"	283659	"ENSG00000166450"
+"227569_at"	"LNX2"	222484	"ENSG00000139517"
+"228219_s_at"	"UPB1"	51733	"ENSG00000100024"
+"228837_at"	"TCF4"	6925	"ENSG00000196628"
+"226119_at"	"PCMTD1"	115294	"ENSG00000168300"
+"228064_at"	"LRRC75B"	388886	"ENSG00000178026"
+"227766_at"	"LIG4"	3981	"ENSG00000174405"
+"226330_s_at"	"SUPT20H"	55578	"ENSG00000102710"
+"225610_at"	"UHRF2"	115426	"ENSG00000147854"
+"227733_at"	"TMEM63C"	57156	"ENSG00000165548"
+"226358_at"	"APH1B"	83464	"ENSG00000138613"
+"228013_at"	"PPP2R2A"	5520	"ENSG00000221914"
+"229655_at"	"TAFA5"	25817	"ENSG00000219438"
+"229459_at"	"TAFA5"	25817	"ENSG00000219438"
+"227443_at"	"LURAP1L"	286343	"ENSG00000153714"
+"226956_at"	"MTMR3"	8897	"ENSG00000100330"
+"229731_at"	"FOXS1"	2307	"ENSG00000179772"
+"228291_s_at"	"KIZ"	55857	"ENSG00000088970"
+"228290_at"	"KIZ"	55857	"ENSG00000088970"
+"228260_at"	"ELAVL2"	1993	"ENSG00000107105"
+"226760_at"	"MBTPS2"	51360	"ENSG00000012174"
+"225890_at"	"MGME1"	92667	"ENSG00000125871"
+"228543_at"	"PET117"	100303755	"ENSG00000232838"
+"226439_s_at"	"NBEA"	26960	"ENSG00000172915"
+"228170_at"	"OLIG1"	116448	"ENSG00000184221"
+"228639_at"	"TSR2"	90121	"ENSG00000158526"
+"225750_at"	"ERO1A"	30001	"ENSG00000197930"
+"225679_at"	"NAA30"	122830	"ENSG00000139977"
+"226244_at"	"CLEC14A"	161198	"ENSG00000176435"
+"226595_at"	"SNX21"	90203	"ENSG00000124104"
+"228223_at"	"ZSWIM3"	140831	"ENSG00000132801"
+"226274_at"	"CLCN5"	1184	"ENSG00000171365"
+"226273_at"	"CLCN5"	1184	"ENSG00000171365"
+"227165_at"	"SKA3"	221150	"ENSG00000165480"
+"228449_at"	"MORC2"	22880	"ENSG00000133422"
+"227004_at"	"CDKL5"	6792	"ENSG00000008086"
+"228725_x_at"	"PRMT2"	3275	"ENSG00000160310"
+"228722_at"	"PRMT2"	3275	"ENSG00000160310"
+"228937_at"	"LACC1"	144811	"ENSG00000179630"
+"229377_at"	"GRTP1"	79774	"ENSG00000139835"
+"226380_at"	"PTPN21"	11099	"ENSG00000070778"
+"226050_at"	"TMCO3"	55002	"ENSG00000150403"
+"229427_at"	"SEMA5A"	9037	"ENSG00000112902"
+"225623_at"	"CIPC"	85457	"ENSG00000198894"
+"228740_at"	""	NA	"ENSG00000259969"
+"226633_at"	"RAB8B"	51762	"ENSG00000166128"
+"227536_at"	"ZC3H13"	23091	"ENSG00000123200"
+"226303_at"	"PGM5"	5239	"ENSG00000154330"
+"229599_at"	"SMIM22"	440335	"ENSG00000267795"
+"228456_s_at"	"CDS2"	8760	"ENSG00000101290"
+"228861_at"	"CDS2"	8760	"ENSG00000101290"
+"227887_at"	"FOXN3-AS1"	400236	"ENSG00000258920"
+"227865_at"	"IDNK"	414328	"ENSG00000148057"
+"227303_at"	"ANKS3"	124401	"ENSG00000168096"
+"226550_at"	"SLC9A7"	84679	"ENSG00000065923"
+"229981_at"	"SNX5"	27131	"ENSG00000089006"
+"227026_at"	"MPHOSPH8"	54737	"ENSG00000196199"
+"228418_at"	"EXOC5"	10640	"ENSG00000070367"
+"228159_at"	"WDFY2"	115825	"ENSG00000139668"
+"227490_at"	"WDFY2"	115825	"ENSG00000139668"
+"226798_at"	"BCL2L13"	23786	"ENSG00000099968"
+"229321_s_at"	"BCL2L13"	23786	"ENSG00000099968"
+"229908_s_at"	"UNKL"	64718	"ENSG00000059145"
+"227575_s_at"	"NRDE2"	55051	"ENSG00000119720"
+"229474_at"	"MICAL3"	57553	"ENSG00000243156"
+"226270_at"	"EXOC2"	55770	"ENSG00000112685"
+"230269_at"	"B3GALT5"	10317	"ENSG00000183778"
+"228225_at"	"PEX2"	5828	"ENSG00000164751"
+"228723_at"	"NPTN-IT1"	NA	"ENSG00000281183"
+"228324_at"	"CARNMT1"	138199	"ENSG00000156017"
+"226544_x_at"	"BLOC1S5"	63915	"ENSG00000188428"
+"230217_at"	"CLVS1"	157807	"ENSG00000177182"
+"227421_at"	"YBEY"	54059	"ENSG00000182362"
+"226404_at"	"RBM39"	9584	"ENSG00000131051"
+"227223_at"	"RBM39"	9584	"ENSG00000131051"
+"227354_at"	"PAG1"	55824	"ENSG00000076641"
+"225622_at"	"PAG1"	55824	"ENSG00000076641"
+"225626_at"	"PAG1"	55824	"ENSG00000076641"
+"229893_at"	"FRMD3"	257019	"ENSG00000172159"
+"227021_at"	"KDM1B"	221656	"ENSG00000165097"
+"229469_at"	"XAGE2"	9502	"ENSG00000155622"
+"228206_at"	"HS3ST4"	9951	"ENSG00000182601"
+"227199_at"	"DIP2A"	23181	"ENSG00000160305"
+"226228_at"	"AQP4"	361	"ENSG00000171885"
+"226684_at"	"ATG2B"	55102	"ENSG00000066739"
+"227475_at"	"FOXQ1"	94234	"ENSG00000164379"
+"230271_at"	"ONECUT2"	9480	"ENSG00000119547"
+"226302_at"	"ATP8B1"	5205	"ENSG00000081923"
+"228177_at"	"CREBBP"	1387	"ENSG00000005339"
+"230097_at"	"GART"	2618	"ENSG00000159131"
+"227143_s_at"	"BID"	637	"ENSG00000015475"
+"228367_at"	"ALPK2"	115701	"ENSG00000198796"
+"226623_at"	"PHYHIPL"	84457	"ENSG00000165443"
+"230179_at"	"GFOD1"	54438	"ENSG00000145990"
+"229882_at"	"RPS15A"	6210	"ENSG00000134419"
+"225675_at"	"TMEM260"	54916	"ENSG00000070269"
+"226165_at"	"RBIS"	401466	"ENSG00000176731"
+"226199_at"	"UPRT"	139596	"ENSG00000094841"
+"227179_at"	"STAU2"	27067	"ENSG00000040341"
+"229417_at"	"STAU2"	27067	"ENSG00000040341"
+"227628_at"	"GPX8"	493869	"ENSG00000164294"
+"228141_at"	"GPX8"	493869	"ENSG00000164294"
+"228557_at"	"L3MBTL4"	91133	"ENSG00000154655"
+"229176_at"	"ANKH"	56172	"ENSG00000154122"
+"229642_at"	"ARHGEF7"	8874	"ENSG00000102606"
+"227987_at"	"VPS13A"	23230	"ENSG00000197969"
+"227988_s_at"	"VPS13A"	23230	"ENSG00000197969"
+"226712_at"	"SSR1"	6745	"ENSG00000124783"
+"227911_at"	"ARHGAP28"	79822	"ENSG00000088756"
+"225840_at"	"TEF"	7008	"ENSG00000167074"
+"227871_at"	"CHM"	1121	"ENSG00000188419"
+"225682_s_at"	"POLR3H"	171568	"ENSG00000100413"
+"225678_at"	"POLR3H"	171568	"ENSG00000100413"
+"226847_at"	"FST"	10468	"ENSG00000134363"
+"225824_at"	"CCNK"	8812	"ENSG00000090061"
+"227600_at"	"MRPS30"	10884	"ENSG00000112996"
+"225892_at"	"IREB2"	3658	"ENSG00000136381"
+"229286_at"	"MAGEE1"	57692	"ENSG00000198934"
+"229940_at"	"SETD3"	84193	"ENSG00000183576"
+"229742_at"	"C15orf61"	145853	"ENSG00000189227"
+"230208_at"	"HCN4"	10021	"ENSG00000138622"
+"227276_at"	"PLXDC2"	84898	"ENSG00000120594"
+"227995_at"	"PLXDC2"	84898	"ENSG00000120594"
+"226865_at"	"PLXDC2"	84898	"ENSG00000120594"
+"226042_at"	"EDC3"	80153	"ENSG00000179151"
+"230223_at"	"CINP"	51550	"ENSG00000100865"
+"228885_at"	"MAMDC2"	256691	"ENSG00000165072"
+"226152_at"	"TTC7B"	145567	"ENSG00000165914"
+"226650_at"	"ZFAND2A"	90637	"ENSG00000178381"
+"226997_at"	"ADAMTS12"	81792	"ENSG00000151388"
+"229053_at"	"SYT17"	51760	"ENSG00000103528"
+"230443_at"	"SNU13"	4809	"ENSG00000100138"
+"229055_at"	"GPR68"	8111	"ENSG00000119714"
+"227542_at"	"SOCS6"	9306	"ENSG00000170677"
+"226044_at"	"TDP1"	55775	"ENSG00000042088"
+"226866_at"	"ESCO1"	114799	"ENSG00000141446"
+"226715_at"	"FOXK1"	221937	"ENSG00000164916"
+"230342_at"	"FOXK1"	221937	"ENSG00000164916"
+"228438_at"	"MSC-AS1"	100132891	"ENSG00000235531"
+"229850_at"	"KDSR"	2531	"ENSG00000119537"
+"226194_at"	"CHAMP1"	283489	"ENSG00000198824"
+"230210_at"	"SUN1"	23353	"ENSG00000164828"
+"225624_at"	"SNX29"	92017	"ENSG00000048471"
+"225608_at"	"SNX29"	92017	"ENSG00000048471"
+"230136_at"	""	NA	"ENSG00000275964"
+"227688_at"	"LRCH2"	57631	"ENSG00000130224"
+"227277_at"	"MTDH"	92140	"ENSG00000147649"
+"229344_x_at"	"RIMKLB"	57494	"ENSG00000166532"
+"226164_x_at"	"RIMKLB"	57494	"ENSG00000166532"
+"225999_at"	"RIMKLB"	57494	"ENSG00000166532"
+"225978_at"	"RIMKLB"	57494	"ENSG00000166532"
+"225764_at"	"ETV6"	2120	"ENSG00000139083"
+"227379_at"	"MBOAT1"	154141	"ENSG00000172197"
+"228098_s_at"	"MYLIP"	29116	"ENSG00000007944"
+"228700_at"	"CXorf38"	159013	"ENSG00000185753"
+"225874_at"	"UBALD1"	124402	"ENSG00000153443"
+"228654_at"	"SPIN4"	139886	"ENSG00000186767"
+"225744_at"	"ZDHHC8"	29801	"ENSG00000099904"
+"226626_at"	"THOC2"	57187	"ENSG00000125676"
+"226628_at"	"THOC2"	57187	"ENSG00000125676"
+"229761_at"	"LINC02893"	440173	"ENSG00000269994"
+"228850_s_at"	"SLIT2"	9353	"ENSG00000145147"
+"227132_at"	"ZNF706"	51123	"ENSG00000120963"
+"228299_at"	"KCTD20"	222658	"ENSG00000112078"
+"229040_at"	"ITGB2-AS1"	100505746	"ENSG00000227039"
+"229041_s_at"	"ITGB2-AS1"	100505746	"ENSG00000227039"
+"227335_at"	"DIDO1"	11083	"ENSG00000101191"
+"227125_at"	"IFNAR2"	3455	"ENSG00000159110"
+"229300_at"	"RAB3C"	115827	"ENSG00000152932"
+"229172_at"	"HSPA12B"	116835	"ENSG00000132622"
+"229886_at"	"C5orf34"	375444	"ENSG00000172244"
+"228727_at"	"ANXA11"	311	"ENSG00000122359"
+"227180_at"	"ELOVL7"	79993	"ENSG00000164181"
+"229741_at"	"MAVS"	57506	"ENSG00000088888"
+"226495_at"	"MAVS"	57506	"ENSG00000088888"
+"226107_at"	"C1GALT1"	56913	"ENSG00000106392"
+"226105_at"	"C1GALT1"	56913	"ENSG00000106392"
+"226731_at"	"ITGA1"	3672	"ENSG00000213949"
+"227811_at"	"FGD3"	89846	"ENSG00000127084"
+"229663_at"	"LONP2"	83752	"ENSG00000102910"
+"227100_at"	"B3GLCT"	145173	"ENSG00000187676"
+"227083_at"	"B3GLCT"	145173	"ENSG00000187676"
+"228155_at"	"PRXL2A"	84293	"ENSG00000122378"
+"228164_at"	"AP4E1"	23431	"ENSG00000081014"
+"229160_at"	"PWWP3B"	139221	"ENSG00000157502"
+"227447_at"	"MTREX"	23517	"ENSG00000039123"
+"227191_at"	"ITFG1"	81533	"ENSG00000129636"
+"225974_at"	"TMEM64"	169200	"ENSG00000180694"
+"225972_at"	"TMEM64"	169200	"ENSG00000180694"
+"229013_at"	"TCF12-DT"	145783	"ENSG00000285331"
+"227001_at"	"NIPAL2"	79815	"ENSG00000104361"
+"226276_at"	"TMEM167A"	153339	"ENSG00000174695"
+"230204_at"	"HAPLN1"	1404	"ENSG00000145681"
+"226664_at"	"TBC1D20"	128637	"ENSG00000125875"
+"226409_at"	"TBC1D20"	128637	"ENSG00000125875"
+"227870_at"	"IGDCC4"	57722	"ENSG00000103742"
+"226430_at"	"RELL1"	768211	"ENSG00000181826"
+"227182_at"	"SUSD3"	203328	"ENSG00000157303"
+"228550_at"	"RTN4R"	65078	"ENSG00000040608"
+"228770_at"	"GPR146"	115330	"ENSG00000164849"
+"227496_at"	"NR6A1"	2649	"ENSG00000148200"
+"227494_at"	"NR6A1"	2649	"ENSG00000148200"
+"228894_at"	"NR6A1"	2649	"ENSG00000148200"
+"227252_at"	"LRP10"	26020	"ENSG00000197324"
+"227757_at"	"CUL4A"	8451	"ENSG00000139842"
+"225785_at"	"REEP3"	221035	"ENSG00000165476"
+"227298_at"	"TRAM2-AS1"	401264	"ENSG00000225791"
+"226068_at"	"SYK"	6850	"ENSG00000165025"
+"225600_at"	"TRIQK"	286144	"ENSG00000205133"
+"225603_s_at"	"TRIQK"	286144	"ENSG00000205133"
+"225599_s_at"	"TRIQK"	286144	"ENSG00000205133"
+"226897_s_at"	"ZC3H7A"	29066	"ENSG00000122299"
+"226436_at"	"RASSF4"	83937	"ENSG00000107551"
+"228964_at"	"PRDM1"	639	"ENSG00000057657"
+"226459_at"	"PIK3AP1"	118788	"ENSG00000155629"
+"227626_at"	"PAQR8"	85315	"ENSG00000170915"
+"226423_at"	"PAQR8"	85315	"ENSG00000170915"
+"229900_at"	"CD109"	135228	"ENSG00000156535"
+"226545_at"	"CD109"	135228	"ENSG00000156535"
+"227424_x_at"	"URB1-AS1"	84996	"ENSG00000256073"
+"228908_s_at"	"LINC00205"	642852	"ENSG00000223768"
+"228909_at"	"LINC00205"	642852	"ENSG00000223768"
+"226995_at"	"LINC00205"	642852	"ENSG00000223768"
+"227531_at"	"CLOCK"	9575	"ENSG00000134852"
+"225856_at"	"CLOCK"	9575	"ENSG00000134852"
+"225758_s_at"	"TUBGCP6"	85378	"ENSG00000128159"
+"225669_at"	"IFNAR1"	3454	"ENSG00000142166"
+"225661_at"	"IFNAR1"	3454	"ENSG00000142166"
+"226465_s_at"	"SON"	6651	"ENSG00000159140"
+"228236_at"	"SLC52A3"	113278	"ENSG00000101276"
+"226914_at"	"ARPC5L"	81873	"ENSG00000136950"
+"226915_s_at"	"ARPC5L"	81873	"ENSG00000136950"
+"226214_at"	"GDE1"	51573	"ENSG00000006007"
+"226517_at"	"BCAT1"	586	"ENSG00000060982"
+"225619_at"	"SLAIN1"	122060	"ENSG00000139737"
+"226208_at"	"ZSWIM6"	57688	"ENSG00000130449"
+"227314_at"	"ITGA2"	3673	"ENSG00000164171"
+"227174_at"	"WDR72"	256764	"ENSG00000166415"
+"229846_s_at"	"MAPKAP1"	79109	"ENSG00000119487"
+"229845_at"	"MAPKAP1"	79109	"ENSG00000119487"
+"228008_at"	"ARID3A"	1820	"ENSG00000116017"
+"227412_at"	"PPP1R3E"	90673	"ENSG00000235194"
+"227409_at"	"PPP1R3E"	90673	"ENSG00000235194"
+"229001_at"	"PPP1R3E"	90673	"ENSG00000235194"
+"229876_at"	"PHKA1"	5255	"ENSG00000067177"
+"228408_s_at"	"SDAD1"	55153	"ENSG00000198301"
+"228007_at"	"CEP85L"	387119	"ENSG00000111860"
+"227031_at"	"SNX13"	23161	"ENSG00000071189"
+"227889_at"	"LPCAT2"	54947	"ENSG00000087253"
+"230483_at"	"CKAP2-DT"	NA	"ENSG00000278238"
+"226352_at"	"JMY"	133746	"ENSG00000152409"
+"227803_at"	"ENPP5"	59084	"ENSG00000112796"
+"230090_at"	"GDNF"	2668	"ENSG00000168621"
+"229953_x_at"	"LCA5"	167691	"ENSG00000135338"
+"227086_at"	"C22orf39"	128977	"ENSG00000242259"
+"229312_s_at"	"GKAP1"	80318	"ENSG00000165113"
+"230075_at"	"RAB39B"	116442	"ENSG00000155961"
+"230011_at"	"MEI1"	150365	"ENSG00000167077"
+"228915_at"	"DACH1"	1602	"ENSG00000276644"
+"225548_at"	"SHROOM3"	57619	"ENSG00000138771"
+"228400_at"	"SHROOM3"	57619	"ENSG00000138771"
+"228185_at"	"ZNF25"	219749	"ENSG00000175395"
+"226652_at"	"USP3"	9960	"ENSG00000140455"
+"230231_at"	"FGF14"	2259	"ENSG00000102466"
+"230288_at"	"FGF14"	2259	"ENSG00000102466"
+"228995_at"	"CAMSAP1"	157922	"ENSG00000130559"
+"230351_at"	"FGF14-AS2"	283481	"ENSG00000272143"
+"226394_at"	"MARCHF5"	54708	"ENSG00000198060"
+"226415_at"	"VAT1L"	57687	"ENSG00000171724"
+"229974_at"	"EVC2"	132884	"ENSG00000173040"
+"226467_at"	"TANGO6"	79613	"ENSG00000103047"
+"227160_s_at"	"NDUFAF5"	79133	"ENSG00000101247"
+"225563_at"	"PAN3"	255967	"ENSG00000152520"
+"226259_at"	"EXOC6"	54536	"ENSG00000138190"
+"226385_s_at"	"MALSU1"	115416	"ENSG00000156928"
+"226386_at"	"MALSU1"	115416	"ENSG00000156928"
+"229146_at"	"C7orf31"	136895	"ENSG00000153790"
+"226498_at"	"FLT1"	2321	"ENSG00000102755"
+"226497_s_at"	"FLT1"	2321	"ENSG00000102755"
+"227944_at"	"PTPN3"	5774	"ENSG00000070159"
+"228969_at"	"AGR2"	10551	"ENSG00000106541"
+"226504_at"	"PHETA2"	150368	"ENSG00000177096"
+"226069_at"	"PRICKLE1"	144165	"ENSG00000139174"
+"226065_at"	"PRICKLE1"	144165	"ENSG00000139174"
+"226227_x_at"	"ZFAS1"	441951	"ENSG00000177410"
+"229214_at"	"STX7"	8417	"ENSG00000079950"
+"228069_at"	"MTFR2"	113115	"ENSG00000146410"
+"226189_at"	"ITGB8"	3696	"ENSG00000105855"
+"226429_at"	"GPALPP1"	55425	"ENSG00000133114"
+"229078_s_at"	"GPALPP1"	55425	"ENSG00000133114"
+"229891_x_at"	"GPALPP1"	55425	"ENSG00000133114"
+"228109_at"	"RASGRF2"	5924	"ENSG00000113319"
+"230185_at"	"THAP9"	79725	"ENSG00000168152"
+"228241_at"	"AGR3"	155465	"ENSG00000173467"
+"227072_at"	"RTTN"	25914	"ENSG00000176225"
+"229138_at"	"PARP11"	57097	"ENSG00000111224"
+"228389_at"	""	NA	"ENSG00000275764"
+"228752_at"	"CRACR2A"	84766	"ENSG00000130038"
+"227710_s_at"	"TPT1-AS1"	NA	"ENSG00000170919"
+"227709_at"	"TPT1-AS1"	NA	"ENSG00000170919"
+"228913_at"	"TPT1-AS1"	NA	"ENSG00000170919"
+"226407_at"	"TPT1-AS1"	NA	"ENSG00000170919"
+"228745_at"	"SGTB"	54557	"ENSG00000197860"
+"226895_at"	"NFIC"	4782	"ENSG00000141905"
+"226377_at"	"NFIC"	4782	"ENSG00000141905"
+"226542_at"	"RNF24"	11237	"ENSG00000101236"
+"226782_at"	"SLC25A30"	253512	"ENSG00000174032"
+"227525_at"	"GLCCI1"	113263	"ENSG00000106415"
+"225706_at"	"GLCCI1"	113263	"ENSG00000106415"
+"225700_at"	"GLCCI1"	113263	"ENSG00000106415"
+"227482_at"	"ADCK1"	57143	"ENSG00000063761"
+"227471_at"	"HACE1"	57531	"ENSG00000085382"
+"230496_at"	"AMER2"	219287	"ENSG00000165566"
+"228789_at"	"MTMR6"	9107	"ENSG00000139505"
+"228140_s_at"	"PPP2R2C"	5522	"ENSG00000074211"
+"228010_at"	"PPP2R2C"	5522	"ENSG00000074211"
+"228298_at"	"PCED1B"	91523	"ENSG00000179715"
+"229203_at"	"B4GALNT3"	283358	"ENSG00000139044"
+"229909_at"	"B4GALNT3"	283358	"ENSG00000139044"
+"230338_x_at"	"GSX2"	170825	"ENSG00000180613"
+"227116_at"	"MON1B"	22879	"ENSG00000103111"
+"228783_at"	"BVES"	11149	"ENSG00000112276"
+"229491_at"	"SLC9B2"	133308	"ENSG00000164038"
+"226258_at"	"AMN1"	196394	"ENSG00000151743"
+"225812_at"	"FAM229B"	619208	"ENSG00000203778"
+"226124_at"	"ZFP90"	146198	"ENSG00000184939"
+"228988_at"	"ZNF711"	7552	"ENSG00000147180"
+"225809_at"	"PARM1"	25849	"ENSG00000169116"
+"229800_at"	"DCLK1"	9201	"ENSG00000133083"
+"228831_s_at"	"GNG7"	2788	"ENSG00000176533"
+"230386_at"	""	NA	"ENSG00000278058"
+"226606_s_at"	"MTG2"	26164	"ENSG00000101181"
+"226854_at"	"MTG2"	26164	"ENSG00000101181"
+"226598_s_at"	"MTG2"	26164	"ENSG00000101181"
+"225801_at"	"FBXO32"	114907	"ENSG00000156804"
+"225803_at"	"FBXO32"	114907	"ENSG00000156804"
+"226218_at"	"IL7R"	3575	"ENSG00000168685"
+"228128_x_at"	"PAPPA"	5069	"ENSG00000182752"
+"229228_at"	"CREB5"	9586	"ENSG00000146592"
+"228044_at"	"SERP2"	387923	"ENSG00000151778"
+"226009_at"	"DPCD"	25911	"ENSG00000166171"
+"228876_at"	"BAIAP2L2"	80115	"ENSG00000128298"
+"229990_at"	"TSC22D1-AS1"	641467	"ENSG00000278156"
+"227042_at"	"YDJC"	150223	"ENSG00000161179"
+"226383_at"	"ARL14EP"	120534	"ENSG00000152219"
+"227059_at"	"GPC6"	10082	"ENSG00000183098"
+"227629_at"	"PRLR"	5618	"ENSG00000113494"
+"227813_at"	"THAP6"	152815	"ENSG00000174796"
+"228802_at"	"RBPMS2"	348093	"ENSG00000166831"
+"227176_at"	"SLC2A13"	114134	"ENSG00000151229"
+"226689_at"	"CISD2"	493856	"ENSG00000145354"
+"228358_at"	"SOX12"	6666	"ENSG00000177732"
+"226682_at"	"RORA"	6095	"ENSG00000069667"
+"226607_at"	"DNAAF9"	25943	"ENSG00000088854"
+"225825_at"	"DNAAF9"	25943	"ENSG00000088854"
+"227319_at"	"KLHL36"	79786	"ENSG00000135686"
+"226424_at"	"CAPS"	828	"ENSG00000105519"
+"230283_at"	"NEURL2"	140825	"ENSG00000124257"
+"226212_s_at"	"INSR"	3643	"ENSG00000171105"
+"226216_at"	"INSR"	3643	"ENSG00000171105"
+"226450_at"	"INSR"	3643	"ENSG00000171105"
+"228788_at"	"YPEL1"	29799	"ENSG00000100027"
+"228296_at"	"YPEL1"	29799	"ENSG00000100027"
+"226126_at"	"TBCK"	93627	"ENSG00000145348"
+"225553_at"	"CNIH1"	10175	"ENSG00000100528"
+"226343_at"	"DPP8"	54878	"ENSG00000074603"
+"227018_at"	"DPP8"	54878	"ENSG00000074603"
+"229029_at"	"CAMK4"	814	"ENSG00000152495"
+"229294_at"	"JPH3"	57338	"ENSG00000154118"
+"229645_at"	"DIPK1C"	125704	"ENSG00000187773"
+"230497_at"	"CELF5"	60680	"ENSG00000161082"
+"226390_at"	"STARD4"	134429	"ENSG00000164211"
+"227084_at"	"DTNA"	1837	"ENSG00000134769"
+"227250_at"	"KREMEN1"	83999	"ENSG00000183762"
+"228941_at"	"ALG10B"	144245	"ENSG00000175548"
+"228295_at"	"WDR59"	79726	"ENSG00000103091"
+"228014_at"	"PTRH1"	138428	"ENSG00000187024"
+"229349_at"	"LIN28B"	389421	"ENSG00000187772"
+"230442_at"	"MTHFSD"	64779	"ENSG00000103248"
+"226533_at"	"HINT3"	135114	"ENSG00000111911"
+"226537_at"	"HINT3"	135114	"ENSG00000111911"
+"228697_at"	"HINT3"	135114	"ENSG00000111911"
+"229543_at"	"CALHM6-AS1"	NA	"ENSG00000244158"
+"227972_at"	"TOR2A"	27433	"ENSG00000160404"
+"229714_at"	"HS6ST3"	266722	"ENSG00000185352"
+"226673_at"	"SH2D3C"	10044	"ENSG00000095370"
+"230076_at"	"PITPNM3"	83394	"ENSG00000091622"
+"229035_s_at"	"KLHDC4"	54758	"ENSG00000104731"
+"229000_at"	"ZNF77"	58492	"ENSG00000175691"
+"228956_at"	"UGT8"	7368	"ENSG00000174607"
+"226463_at"	"ATP6V1C1"	528	"ENSG00000155097"
+"229776_at"	"SLCO3A1"	28232	"ENSG00000176463"
+"227367_at"	"SLCO3A1"	28232	"ENSG00000176463"
+"229071_at"	"C17orf100"	388327	"ENSG00000256806"
+"227860_at"	"CPXM1"	56265	"ENSG00000088882"
+"229454_at"	"BCLAF1"	9774	"ENSG00000029363"
+"228328_at"	"KLHL28"	54813	"ENSG00000179454"
+"229971_at"	"ADGRG5"	221188	"ENSG00000159618"
+"227257_s_at"	"CACUL1"	143384	"ENSG00000151893"
+"227258_at"	"CACUL1"	143384	"ENSG00000151893"
+"228142_at"	"UQCR10"	29796	"ENSG00000184076"
+"226133_s_at"	"TBC1D10A"	83874	"ENSG00000099992"
+"227719_at"	"SMAD9"	4093	"ENSG00000120693"
+"225602_at"	"GLIPR2"	152007	"ENSG00000122694"
+"225604_s_at"	"GLIPR2"	152007	"ENSG00000122694"
+"228787_s_at"	"BCAS4"	55653	"ENSG00000124243"
+"227825_at"	"NAIF1"	203245	"ENSG00000171169"
+"227786_at"	"MED30"	90390	"ENSG00000164758"
+"227787_s_at"	"MED30"	90390	"ENSG00000164758"
+"227467_at"	"RDH10"	157506	"ENSG00000121039"
+"226021_at"	"RDH10"	157506	"ENSG00000121039"
+"226680_at"	"IKZF5"	64376	"ENSG00000095574"
+"227516_at"	"SF3A1"	10291	"ENSG00000099995"
+"228844_at"	"SLC13A5"	284111	"ENSG00000141485"
+"228220_at"	"FCHO2"	115548	"ENSG00000157107"
+"229881_at"	"KLF12"	11278	"ENSG00000118922"
+"227261_at"	"KLF12"	11278	"ENSG00000118922"
+"227322_s_at"	"BCCIP"	56647	"ENSG00000107949"
+"227896_at"	"BCCIP"	56647	"ENSG00000107949"
+"228931_at"	"COQ4"	51117	"ENSG00000167113"
+"230402_at"	"DUSP15"	128853	"ENSG00000149599"
+"228365_at"	"CPNE8"	144402	"ENSG00000139117"
+"230151_at"	"SPRYD7"	57213	"ENSG00000123178"
+"230316_at"	"SEC14L2"	23541	"ENSG00000100003"
+"228855_at"	"NUDT7"	283927	"ENSG00000140876"
+"225779_at"	"SLC27A4"	10999	"ENSG00000167114"
+"228743_at"	"TXNDC17"	84817	"ENSG00000129235"
+"226807_at"	"ZFP1"	162239	"ENSG00000184517"
+"228626_at"	"URM1"	81605	"ENSG00000167118"
+"226137_at"	"ZFHX3"	463	"ENSG00000140836"
+"225797_at"	"MRPL54"	116541	"ENSG00000183617"
+"227152_at"	"RESF1"	55196	"ENSG00000174718"
+"229889_at"	"LRRC75A"	388341	"ENSG00000181350"
+"228983_at"	"NCBP3"	55421	"ENSG00000074356"
+"229342_at"	"NCBP3"	55421	"ENSG00000074356"
+"225959_s_at"	"ZNRF1"	84937	"ENSG00000186187"
+"225962_at"	"ZNRF1"	84937	"ENSG00000186187"
+"225960_at"	"ZNRF1"	84937	"ENSG00000186187"
+"230040_at"	"ADAMTS18"	170692	"ENSG00000140873"
+"226817_at"	"DSC2"	1824	"ENSG00000134755"
+"230380_at"	"THAP2"	83591	"ENSG00000173451"
+"230003_at"	"SLC16A7"	9194	"ENSG00000118596"
+"230267_at"	"WSB1"	26118	"ENSG00000109046"
+"229732_at"	"ZNF823"	55552	"ENSG00000197933"
+"227423_at"	"LRRC28"	123355	"ENSG00000168904"
+"229696_at"	"FECH"	2235	"ENSG00000066926"
+"230285_at"	"SVIP"	258010	"ENSG00000198168"
+"230006_s_at"	"SVIP"	258010	"ENSG00000198168"
+"230005_at"	"SVIP"	258010	"ENSG00000198168"
+"226278_at"	"SVIP"	258010	"ENSG00000198168"
+"227806_at"	"C16orf74"	404550	"ENSG00000154102"
+"228636_at"	"BHLHE22"	27319	"ENSG00000180828"
+"226294_x_at"	"FAM91A1"	157769	"ENSG00000176853"
+"227290_at"	"CDYL2"	124359	"ENSG00000166446"
+"227855_at"	"ARHGEF40"	55701	"ENSG00000165801"
+"228511_s_at"	"ARHGEF40"	55701	"ENSG00000165801"
+"226907_at"	"PPP1R14C"	81706	"ENSG00000198729"
+"228034_x_at"	"ALKBH5"	54890	"ENSG00000091542"
+"226911_at"	"EGFLAM"	133584	"ENSG00000164318"
+"226873_at"	"MINDY2"	54629	"ENSG00000128923"
+"229092_at"	"NR2F2"	7026	"ENSG00000185551"
+"225639_at"	"SKAP2"	8935	"ENSG00000005020"
+"225656_at"	"EFHC1"	114327	"ENSG00000096093"
+"229039_at"	"SYN2"	6854	"ENSG00000157152"
+"228692_at"	"PREX2"	80243	"ENSG00000046889"
+"229063_s_at"	"CCDC107"	203260	"ENSG00000159884"
+"228256_s_at"	"EPB41L4A"	64097	"ENSG00000129595"
+"227480_at"	"SUSD2"	56241	"ENSG00000099994"
+"226579_at"	""	NA	"ENSG00000269958"
+"227397_at"	"TPM2"	7169	"ENSG00000198467"
+"229411_at"	"PNCK"	139728	"ENSG00000130822"
+"226860_at"	"TMEM19"	55266	"ENSG00000139291"
+"229126_at"	"TMEM19"	55266	"ENSG00000139291"
+"227768_at"	"ZNF407"	55628	"ENSG00000215421"
+"227756_at"	"FAM81A"	145773	"ENSG00000157470"
+"229548_at"	""	NA	"ENSG00000272669"
+"225884_s_at"	"GZF1"	64412	"ENSG00000125812"
+"229222_at"	"ACSS3"	79611	"ENSG00000111058"
+"228283_at"	"CMC1"	152100	"ENSG00000187118"
+"225759_x_at"	"CLMN"	79789	"ENSG00000165959"
+"225757_s_at"	"CLMN"	79789	"ENSG00000165959"
+"228202_at"	"PLN"	5350	"ENSG00000198523"
+"227204_at"	"PARD6G"	84552	"ENSG00000178184"
+"227215_at"	"GOPC"	57120	"ENSG00000047932"
+"227214_at"	"GOPC"	57120	"ENSG00000047932"
+"226323_at"	"ZNF830"	91603	"ENSG00000198783"
+"226315_at"	"ZNF830"	91603	"ENSG00000198783"
+"226567_at"	"USP14"	9097	"ENSG00000101557"
+"229515_at"	"PAWR"	5074	"ENSG00000177425"
+"226231_at"	"PAWR"	5074	"ENSG00000177425"
+"226223_at"	"PAWR"	5074	"ENSG00000177425"
+"229556_at"	"TRAPPC12"	51112	"ENSG00000274891"
+"229691_at"	"ZBTB42"	100128927	"ENSG00000179627"
+"227507_at"	"ZNF592"	9640	"ENSG00000166716"
+"230237_at"	"ADCYAP1"	116	"ENSG00000141433"
+"228811_at"	"TMEM8B"	51754	"ENSG00000137103"
+"229729_at"	"TMEM8B"	51754	"ENSG00000137103"
+"230356_at"	"NKX1-2"	390010	"ENSG00000229544"
+"226831_at"	"SLC25A46"	91137	"ENSG00000164209"
+"226375_at"	"LMTK2"	22853	"ENSG00000164715"
+"230416_at"	"PDZD8"	118987	"ENSG00000165650"
+"225830_at"	"PDZD8"	118987	"ENSG00000165650"
+"225829_at"	"PDZD8"	118987	"ENSG00000165650"
+"225897_at"	"MARCKS"	4082	"ENSG00000277443"
+"226301_at"	"SLC18B1"	116843	"ENSG00000146409"
+"228383_at"	"PNPLA7"	375775	"ENSG00000130653"
+"228405_at"	"RHPN1"	114822	"ENSG00000158106"
+"226812_at"	""	NA	"ENSG00000269570"
+"226167_at"	"SYT7"	9066	"ENSG00000011347"
+"227186_s_at"	"MRPL41"	64975	"ENSG00000182154"
+"225586_at"	"DPH7"	92715	"ENSG00000148399"
+"226120_at"	"TTC8"	123016	"ENSG00000165533"
+"227477_at"	"ZMYND19"	116225	"ENSG00000165724"
+"226405_s_at"	"ARRDC1"	92714	"ENSG00000197070"
+"229705_at"	"PIK3C3"	5289	"ENSG00000078142"
+"229977_at"	"RSPH14"	27156	"ENSG00000100218"
+"228303_at"	"GALNT6"	11226	"ENSG00000139629"
+"230308_at"	"FAM120AOS"	158293	"ENSG00000188938"
+"230309_at"	"BHMT2"	23743	"ENSG00000132840"
+"228819_at"	"TSPAN18"	90139	"ENSG00000157570"
+"227307_at"	"TSPAN18"	90139	"ENSG00000157570"
+"226934_at"	"CPSF6"	11052	"ENSG00000111605"
+"225580_at"	"MRPL50"	54534	"ENSG00000136897"
+"225581_s_at"	"MRPL50"	54534	"ENSG00000136897"
+"227559_at"	"NDUFAF4"	29078	"ENSG00000123545"
+"227213_at"	"ADAT2"	134637	"ENSG00000189007"
+"226984_at"	"FGD5"	152273	"ENSG00000154783"
+"226985_at"	"FGD5"	152273	"ENSG00000154783"
+"230472_at"	"IRX1"	79192	"ENSG00000170549"
+"229861_at"	"LIG3"	3980	"ENSG00000005156"
+"230457_at"	"TMEM242"	729515	"ENSG00000215712"
+"225802_at"	"TOP1MT"	116447	"ENSG00000184428"
+"226466_s_at"	"CCNQ"	92002	"ENSG00000262919"
+"226651_at"	"HOMER1"	9456	"ENSG00000152413"
+"229025_s_at"	"IMMP1L"	196294	"ENSG00000148950"
+"226769_at"	"FIBIN"	387758	"ENSG00000176971"
+"229694_at"	"WDR11"	55717	"ENSG00000120008"
+"227530_at"	"AKAP12"	9590	"ENSG00000131016"
+"227529_s_at"	"AKAP12"	9590	"ENSG00000131016"
+"228862_at"	"TSNARE1"	203062	"ENSG00000171045"
+"227390_at"	"MEG3"	55384	"ENSG00000214548"
+"226210_s_at"	"MEG3"	55384	"ENSG00000214548"
+"226211_at"	"MEG3"	55384	"ENSG00000214548"
+"229557_at"	"MEG3"	55384	"ENSG00000214548"
+"227662_at"	"SYNPO2"	171024	"ENSG00000172403"
+"225721_at"	"SYNPO2"	171024	"ENSG00000172403"
+"225895_at"	"SYNPO2"	171024	"ENSG00000172403"
+"225894_at"	"SYNPO2"	171024	"ENSG00000172403"
+"225720_at"	"SYNPO2"	171024	"ENSG00000172403"
+"227481_at"	"CNKSR3"	154043	"ENSG00000153721"
+"226305_at"	"LYNX1"	66004	"ENSG00000180155"
+"229999_at"	"RBMX"	27316	"ENSG00000147274"
+"228174_at"	"SCAI"	286205	"ENSG00000173611"
+"226492_at"	"SEMA6D"	80031	"ENSG00000137872"
+"226030_at"	"ACADSB"	36	"ENSG00000196177"
+"227048_at"	"LAMA1"	284217	"ENSG00000101680"
+"228072_at"	"SYT12"	91683	"ENSG00000173227"
+"229415_at"	"CYCS"	54205	"ENSG00000172115"
+"227238_at"	"MUC15"	143662	"ENSG00000169550"
+"227241_at"	"MUC15"	143662	"ENSG00000169550"
+"226884_at"	"LRRN1"	57633	"ENSG00000175928"
+"226084_at"	"MAP1B"	4131	"ENSG00000131711"
+"228774_at"	"CEP78"	84131	"ENSG00000148019"
+"230385_at"	"MARCHF3"	115123	"ENSG00000173926"
+"227905_s_at"	"AZI2"	64343	"ENSG00000163512"
+"227904_at"	"AZI2"	64343	"ENSG00000163512"
+"226372_at"	"CHST11"	50515	"ENSG00000171310"
+"226368_at"	"CHST11"	50515	"ENSG00000171310"
+"229365_at"	"PPP1R3F"	89801	"ENSG00000049769"
+"227039_at"	"AKAP13"	11214	"ENSG00000170776"
+"226031_at"	"VPS50"	55610	"ENSG00000004766"
+"228677_s_at"	"RASAL3"	64926	"ENSG00000105122"
+"229395_at"	"STX4"	6810	"ENSG00000103496"
+"227030_at"	"IKZF3"	22806	"ENSG00000161405"
+"227634_at"	"STK32C"	282974	"ENSG00000165752"
+"226264_at"	"SUSD1"	64420	"ENSG00000106868"
+"226438_at"	"SNTB1"	6641	"ENSG00000172164"
+"227562_at"	"LAMTOR3"	8649	"ENSG00000109270"
+"228154_at"	"C19orf44"	84167	"ENSG00000105072"
+"228935_at"	"SLC4A8"	9498	"ENSG00000050438"
+"228175_at"	"SLC4A8"	9498	"ENSG00000050438"
+"229623_at"	"TMEM150C"	441027	"ENSG00000249242"
+"226536_at"	"NSMCE2"	286053	"ENSG00000156831"
+"228840_at"	"AMOTL1"	154810	"ENSG00000166025"
+"229898_at"	"SNX33"	257364	"ENSG00000173548"
+"227151_at"	"SNX33"	257364	"ENSG00000173548"
+"229878_at"	"CEP295"	85459	"ENSG00000166004"
+"227478_at"	"SETBP1"	26040	"ENSG00000152217"
+"227874_at"	"EMCN"	51705	"ENSG00000164035"
+"226974_at"	"NEDD4L"	23327	"ENSG00000049759"
+"229526_at"	"AQP11"	282679	"ENSG00000178301"
+"230261_at"	"ST8SIA4"	7903	"ENSG00000113532"
+"228710_at"	""	NA	"ENSG00000278133"
+"228946_at"	"INTU"	27152	"ENSG00000164066"
+"226070_at"	"PAXX"	286257	"ENSG00000148362"
+"230430_at"	"ENTPD2"	954	"ENSG00000054179"
+"229866_at"	"STK32A"	202374	"ENSG00000169302"
+"225777_at"	"SAPCD2"	89958	"ENSG00000186193"
+"227126_at"	"PTPRG"	5793	"ENSG00000144724"
+"229410_at"	"SLC35E1"	79939	"ENSG00000127526"
+"227518_at"	"SLC35E1"	79939	"ENSG00000127526"
+"228057_at"	"DDIT4L"	115265	"ENSG00000145358"
+"230047_at"	"ARHGAP42"	143872	"ENSG00000165895"
+"229907_at"	""	NA	"ENSG00000277879"
+"230372_at"	"HAS2"	3037	"ENSG00000170961"
+"228401_at"	"ATAD2"	29028	"ENSG00000156802"
+"225891_at"	"TPRN"	286262	"ENSG00000176058"
+"229901_at"	"ZNF488"	118738	"ENSG00000265763"
+"230264_s_at"	"AP1S2"	8905	"ENSG00000182287"
+"228415_at"	"AP1S2"	8905	"ENSG00000182287"
+"228494_at"	"PPP1R9A"	55607	"ENSG00000158528"
+"228186_s_at"	"RSPO3"	84870	"ENSG00000146374"
+"229233_at"	"NRG3"	10718	"ENSG00000185737"
+"229084_at"	"CNTN4"	152330	"ENSG00000144619"
+"228051_at"	"ARFGEF3"	57221	"ENSG00000112379"
+"226499_at"	"NRARP"	441478	"ENSG00000198435"
+"230025_at"	"GJD3"	125111	"ENSG00000183153"
+"226842_at"	"FBXL20"	84961	"ENSG00000108306"
+"226384_at"	"PLPP5"	84513	"ENSG00000147535"
+"226362_at"	""	NA	"ENSG00000273847"
+"226365_at"	""	NA	"ENSG00000273847"
+"226575_at"	"ZNF462"	58499	"ENSG00000148143"
+"226683_at"	"SNX18"	112574	"ENSG00000178996"
+"226824_at"	"CPXM2"	119587	"ENSG00000121898"
+"226472_at"	"PPIL4"	85313	"ENSG00000131013"
+"228635_at"	"PCDH10"	57575	"ENSG00000138650"
+"229018_at"	"METTL25"	84190	"ENSG00000127720"
+"227657_at"	"RNF150"	57484	"ENSG00000170153"
+"229024_at"	"RNF150"	57484	"ENSG00000170153"
+"226548_at"	"SBK1"	388228	"ENSG00000188322"
+"226549_at"	"SBK1"	388228	"ENSG00000188322"
+"227399_at"	"VGLL3"	389136	"ENSG00000206538"
+"228037_at"	"RARA-AS1"	101929693	"ENSG00000265666"
+"229802_at"	"CCN4"	8840	"ENSG00000104415"
+"225576_at"	"GINM1"	116254	"ENSG00000055211"
+"228653_at"	"SAMD5"	389432	"ENSG00000203727"
+"226799_at"	"FGD6"	55785	"ENSG00000180263"
+"229034_at"	"SOBP"	55084	"ENSG00000112320"
+"228394_at"	"STK10"	6793	"ENSG00000072786"
+"228326_at"	"WDR27"	253769	"ENSG00000184465"
+"226261_at"	"ZNRF2"	223082	"ENSG00000180233"
+"225667_s_at"	"LRATD1"	151354	"ENSG00000162981"
+"228459_at"	"LRATD1"	151354	"ENSG00000162981"
+"229546_at"	"LRATD1"	151354	"ENSG00000162981"
+"228490_at"	"ABHD2"	11057	"ENSG00000140526"
+"230390_at"	"WDR35-DT"	101928222	"ENSG00000227210"
+"230398_at"	"TNS4"	84951	"ENSG00000131746"
+"230109_at"	"PDE7B"	27115	"ENSG00000171408"
+"226741_at"	"SLC12A6"	9990	"ENSG00000140199"
+"230469_at"	"RTKN2"	219790	"ENSG00000182010"
+"226819_at"	"LSM11"	134353	"ENSG00000155858"
+"226826_at"	"LSM11"	134353	"ENSG00000155858"
+"227060_at"	"RELT"	84957	"ENSG00000054967"
+"227234_at"	"IPO5P1"	NA	"ENSG00000269837"
+"229139_at"	"JPH1"	56704	"ENSG00000104369"
+"229076_s_at"	"JOSD1"	9929	"ENSG00000100221"
+"229155_at"	"GSTO2"	119391	"ENSG00000065621"
+"227163_at"	"GSTO2"	119391	"ENSG00000065621"
+"228399_at"	"OSR1"	130497	"ENSG00000143867"
+"226838_at"	"TTC32"	130502	"ENSG00000183891"
+"226552_at"	"IER5L"	389792	"ENSG00000188483"
+"226559_at"	"IER5L"	389792	"ENSG00000188483"
+"228624_at"	"TMEM144"	55314	"ENSG00000164124"
+"227283_at"	"EFR3B"	22979	"ENSG00000084710"
+"228886_at"	"LRRC27"	80313	"ENSG00000148814"
+"228884_at"	"LRRC27"	80313	"ENSG00000148814"
+"230311_s_at"	"PRDM6"	93166	"ENSG00000061455"
+"226181_at"	"TUBE1"	51175	"ENSG00000074935"
+"229059_at"	"FAM225A"	286333	"ENSG00000231528"
+"230134_s_at"	"RC3H2"	54542	"ENSG00000056586"
+"230133_at"	"RC3H2"	54542	"ENSG00000056586"
+"225813_at"	"RC3H2"	54542	"ENSG00000056586"
+"227999_at"	"PWWP2B"	170394	"ENSG00000171813"
+"225748_at"	"LTV1"	84946	"ENSG00000135521"
+"226930_at"	"FNDC1"	84624	"ENSG00000164694"
+"229697_at"	"HIRIP3"	8479	"ENSG00000149929"
+"228081_at"	"CCNG2"	901	"ENSG00000138764"
+"226926_at"	"DMKN"	93099	"ENSG00000161249"
+"227286_at"	"INO80E"	283899	"ENSG00000169592"
+"227162_at"	"ZBTB26"	57684	"ENSG00000171448"
+"227581_at"	"TECPR1"	25851	"ENSG00000205356"
+"227580_s_at"	"TECPR1"	25851	"ENSG00000205356"
+"226698_at"	"FCHSD1"	89848	"ENSG00000197948"
+"226699_at"	"FCHSD1"	89848	"ENSG00000197948"
+"227790_at"	"UBE3D"	90025	"ENSG00000118420"
+"228536_at"	"PRMT9"	90826	"ENSG00000164169"
+"227636_at"	"THAP5"	168451	"ENSG00000177683"
+"228286_at"	"GEN1"	348654	"ENSG00000178295"
+"229513_at"	"STRBP"	55342	"ENSG00000165209"
+"228420_at"	"PDCD2"	5134	"ENSG00000071994"
+"229986_at"	"ZNF717"	100131827	"ENSG00000227124"
+"228062_at"	"NAP1L5"	266812	"ENSG00000177432"
+"228063_s_at"	"NAP1L5"	266812	"ENSG00000177432"
+"225735_at"	"ANKRD50"	57182	"ENSG00000151458"
+"225731_at"	"ANKRD50"	57182	"ENSG00000151458"
+"228434_at"	"BTNL9"	153579	"ENSG00000165810"
+"226075_at"	"SPSB1"	80176	"ENSG00000171621"
+"225820_at"	"JADE1"	79960	"ENSG00000077684"
+"225816_at"	"JADE1"	79960	"ENSG00000077684"
+"229158_at"	"WNK4"	65266	"ENSG00000126562"
+"228771_at"	"GRK3"	157	"ENSG00000100077"
+"229393_at"	"L3MBTL3"	84456	"ENSG00000198945"
+"230234_at"	"FXN"	2395	"ENSG00000165060"
+"229193_at"	"LUC7L3"	51747	"ENSG00000108848"
+"230019_s_at"	"DISP3"	57540	"ENSG00000204624"
+"225835_at"	"SLC12A2"	6558	"ENSG00000064651"
+"228766_at"	"CD36"	948	"ENSG00000135218"
+"229504_at"	"RAB23"	51715	"ENSG00000112210"
+"228617_at"	"XAF1"	54739	"ENSG00000132530"
+"227772_at"	"LATS1"	9113	"ENSG00000131023"
+"229499_at"	"CAPN13"	92291	"ENSG00000162949"
+"228060_at"	"SLC35F1"	222553	"ENSG00000196376"
+"227557_at"	"SCARF2"	91179	"ENSG00000244486"
+"228396_at"	"PRKG1"	5592	"ENSG00000185532"
+"226541_at"	"FBXO30"	84085	"ENSG00000118496"
+"229529_at"	"TCF21"	6943	"ENSG00000118526"
+"229002_at"	"DIPK1B"	138311	"ENSG00000165716"
+"227652_at"	"DIPK1B"	138311	"ENSG00000165716"
+"227064_at"	"ANKRD40"	91369	"ENSG00000154945"
+"228480_at"	"VAPA"	9218	"ENSG00000101558"
+"225568_at"	"TMEM141"	85014	"ENSG00000244187"
+"230141_at"	"ARID4A"	5926	"ENSG00000032219"
+"227900_at"	"CBLB"	868	"ENSG00000114423"
+"226752_at"	"FAM174A"	345757	"ENSG00000174132"
+"227193_at"	"SLC30A4"	7782	"ENSG00000104154"
+"225683_x_at"	"PHPT1"	29085	"ENSG00000054148"
+"228703_at"	"P4HA3"	283208	"ENSG00000149380"
+"229814_at"	"TNFAIP8"	25816	"ENSG00000145779"
+"229473_at"	"MAMDC4"	158056	"ENSG00000177943"
+"229947_at"	"PI15"	51050	"ENSG00000137558"
+"225918_at"	"GLG1"	2734	"ENSG00000090863"
+"225590_at"	"SH3RF1"	57630	"ENSG00000154447"
+"225589_at"	"SH3RF1"	57630	"ENSG00000154447"
+"226269_at"	"GDAP1"	54332	"ENSG00000104381"
+"226271_at"	"GDAP1"	54332	"ENSG00000104381"
+"226101_at"	"PRKCE"	5581	"ENSG00000171132"
+"227666_at"	"DCLK2"	166614	"ENSG00000170390"
+"228468_at"	"MASTL"	84930	"ENSG00000120539"
+"230058_at"	"ENTR1"	10807	"ENSG00000165689"
+"227181_at"	"LNP1"	348801	"ENSG00000206535"
+"226609_at"	"DCBLD1"	285761	"ENSG00000164465"
+"229501_s_at"	"USP8"	9101	"ENSG00000138592"
+"227970_at"	"GPR157"	80045	"ENSG00000180758"
+"229511_at"	"SMARCE1"	6605	"ENSG00000073584"
+"226576_at"	"ARHGAP26"	23092	"ENSG00000145819"
+"226773_at"	"PPM1K"	152926	"ENSG00000163644"
+"226237_at"	"COL8A1"	1295	"ENSG00000144810"
+"230440_at"	"ZNF469"	84627	"ENSG00000225614"
+"229121_at"	"CMKLR1"	1240	"ENSG00000174600"
+"225924_at"	"FNIP2"	57600	"ENSG00000052795"
+"226460_at"	"FNIP2"	57600	"ENSG00000052795"
+"225922_at"	"FNIP2"	57600	"ENSG00000052795"
+"228349_at"	"KIAA1958"	158405	"ENSG00000165185"
+"230166_at"	"KIAA1958"	158405	"ENSG00000165185"
+"228782_at"	"SCGB3A2"	117156	"ENSG00000164265"
+"228153_at"	"RNF144B"	255488	"ENSG00000137393"
+"227056_at"	"DELE1"	9812	"ENSG00000081791"
+"229442_at"	"C18orf54"	162681	"ENSG00000166845"
+"225940_at"	"EIF4E3"	317649	"ENSG00000163412"
+"225941_at"	"EIF4E3"	317649	"ENSG00000163412"
+"225939_at"	"EIF4E3"	317649	"ENSG00000163412"
+"227411_at"	"WTIP"	126374	"ENSG00000142279"
+"227255_at"	"PDIK1L"	149420	"ENSG00000175087"
+"228305_at"	"ZNF565"	147929	"ENSG00000196357"
+"226496_at"	"ZCCHC7"	84186	"ENSG00000147905"
+"230224_at"	"ZCCHC18"	644353	"ENSG00000166707"
+"226398_s_at"	"FRA10AC1"	118924	"ENSG00000148690"
+"230084_at"	"SLC30A2"	7780	"ENSG00000158014"
+"228726_at"	"SERPINB1"	1992	"ENSG00000021355"
+"226823_at"	"PHACTR4"	65979	"ENSG00000204138"
+"227485_at"	"INTS6L"	203522	"ENSG00000165359"
+"227551_at"	"ABHD17B"	51104	"ENSG00000107362"
+"225819_at"	"TBRG1"	84897	"ENSG00000154144"
+"225818_s_at"	"TBRG1"	84897	"ENSG00000154144"
+"230320_at"	"TBRG1"	84897	"ENSG00000154144"
+"229022_at"	"ZFX"	7543	"ENSG00000005889"
+"226478_at"	"TM7SF3"	51768	"ENSG00000064115"
+"227693_at"	"WDR20"	91833	"ENSG00000140153"
+"227541_at"	"WDR20"	91833	"ENSG00000140153"
+"226666_at"	"DAAM1"	23002	"ENSG00000100592"
+"227196_at"	"RHPN2"	85415	"ENSG00000131941"
+"228334_x_at"	"CEP44"	80817	"ENSG00000164118"
+"229335_at"	"CADM4"	199731	"ENSG00000105767"
+"226099_at"	"ELL2"	22936	"ENSG00000118985"
+"226982_at"	"ELL2"	22936	"ENSG00000118985"
+"229523_at"	"TMEM200C"	645369	"ENSG00000206432"
+"226978_at"	"PPARA"	5465	"ENSG00000186951"
+"225597_at"	"SLC45A4"	57210	"ENSG00000022567"
+"225598_at"	"SLC45A4"	57210	"ENSG00000022567"
+"227590_at"	"CDPF1"	150383	"ENSG00000205643"
+"229629_at"	"GPR174"	84636	"ENSG00000147138"
+"228574_at"	"TMTC2"	160335	"ENSG00000179104"
+"226327_at"	"ZNF507"	22847	"ENSG00000168813"
+"229641_at"	"CCBE1"	147372	"ENSG00000183287"
+"227769_at"	"GPR27"	2850	"ENSG00000170837"
+"229151_at"	"SLC14A1"	6563	"ENSG00000141469"
+"227648_at"	"SMDT1"	91689	"ENSG00000183172"
+"225633_at"	"DPY19L3"	147991	"ENSG00000178904"
+"227990_at"	"SLU7"	10569	"ENSG00000164609"
+"229916_at"	"ENPP6"	133121	"ENSG00000164303"
+"226489_at"	"TMCC3"	57458	"ENSG00000057704"
+"225574_at"	"RWDD4"	201965	"ENSG00000182552"
+"226868_at"	"GXYLT1"	283464	"ENSG00000151233"
+"228342_s_at"	"ALPK3"	57538	"ENSG00000136383"
+"227184_at"	"PTAFR"	5724	"ENSG00000169403"
+"229984_at"	"DTWD1"	56986	"ENSG00000104047"
+"228454_at"	"LCOR"	84458	"ENSG00000196233"
+"226520_at"	"LCOR"	84458	"ENSG00000196233"
+"226892_at"	"LCOR"	84458	"ENSG00000196233"
+"228244_at"	"BLOC1S3"	388552	"ENSG00000189114"
+"226170_at"	"EYA3"	2140	"ENSG00000158161"
+"226268_at"	"RAB21"	23011	"ENSG00000080371"
+"229699_at"	"LINC02035"	100129550	"ENSG00000273033"
+"228082_at"	"CLMP"	79827	"ENSG00000166250"
+"226834_at"	"CLMP"	79827	"ENSG00000166250"
+"230152_at"	"CFAP44"	55779	"ENSG00000206530"
+"228453_at"	"EPG5"	57724	"ENSG00000152223"
+"227638_at"	"EPG5"	57724	"ENSG00000152223"
+"226373_at"	"SFXN5"	94097	"ENSG00000144040"
+"230509_at"	"SNX22"	79856	"ENSG00000157734"
+"228423_at"	"MAP9"	79884	"ENSG00000164114"
+"226888_at"	"CSNK1G1"	53944	"ENSG00000169118"
+"227331_at"	"ZNF740"	283337	"ENSG00000139651"
+"227222_at"	"FBXO10"	26267	"ENSG00000147912"
+"228375_at"	"IGSF11"	152404	"ENSG00000144847"
+"226017_at"	"CMTM7"	112616	"ENSG00000153551"
+"228353_x_at"	"UBASH3B"	84959	"ENSG00000154127"
+"228359_at"	"UBASH3B"	84959	"ENSG00000154127"
+"229144_at"	"KAZN"	23254	"ENSG00000189337"
+"227916_x_at"	"EXOSC3"	51010	"ENSG00000107371"
+"226511_at"	"DCAF10"	79269	"ENSG00000122741"
+"229520_s_at"	"GPATCH2L"	55668	"ENSG00000089916"
+"229673_at"	"GPATCH2L"	55668	"ENSG00000089916"
+"229297_at"	"GPATCH2L"	55668	"ENSG00000089916"
+"229514_at"	"GPATCH2L"	55668	"ENSG00000089916"
+"226456_at"	"RMI2"	116028	"ENSG00000175643"
+"229587_at"	"UBA2"	10054	"ENSG00000126261"
+"228986_at"	"OSBPL8"	114882	"ENSG00000091039"
+"226196_s_at"	"IFT43"	112752	"ENSG00000119650"
+"226195_at"	"IFT43"	112752	"ENSG00000119650"
+"225726_s_at"	"PLEKHH1"	57475	"ENSG00000054690"
+"225727_at"	"PLEKHH1"	57475	"ENSG00000054690"
+"226230_at"	"PPP4R3B"	57223	"ENSG00000275052"
+"225910_at"	"HELZ"	9931	"ENSG00000198265"
+"225928_at"	"VTI1B"	10490	"ENSG00000100568"
+"225926_at"	"VTI1B"	10490	"ENSG00000100568"
+"226921_at"	"UBR1"	197131	"ENSG00000159459"
+"227564_at"	"HGSNAT"	138050	"ENSG00000165102"
+"227133_at"	"FAM199X"	139231	"ENSG00000123575"
+"227696_at"	"EXOSC6"	118460	"ENSG00000223496"
+"226822_at"	"STOX2"	56977	"ENSG00000173320"
+"226092_at"	"PALS1"	64398	"ENSG00000072415"
+"225575_at"	"LIFR"	3977	"ENSG00000113594"
+"227771_at"	"LIFR"	3977	"ENSG00000113594"
+"225571_at"	"LIFR"	3977	"ENSG00000113594"
+"229630_s_at"	"WTAP"	9589	"ENSG00000146457"
+"227595_at"	"ZMYM6"	9204	"ENSG00000163867"
+"227594_at"	"ZMYM6"	9204	"ENSG00000163867"
+"227523_s_at"	"PHF20L1"	51105	"ENSG00000129292"
+"226942_at"	"PHF20L1"	51105	"ENSG00000129292"
+"230098_at"	"PHF20L1"	51105	"ENSG00000129292"
+"227534_at"	"PRXL2C"	195827	"ENSG00000158122"
+"227930_at"	"AGO4"	192670	"ENSG00000134698"
+"229991_s_at"	"SRPX2"	27286	"ENSG00000102359"
+"230009_at"	"FAM118B"	79607	"ENSG00000197798"
+"227828_s_at"	"EVA1A"	84141	"ENSG00000115363"
+"230235_at"	"MCTS1"	28985	"ENSG00000232119"
+"229976_at"	"MORN5"	254956	"ENSG00000185681"
+"226534_at"	"KITLG"	4254	"ENSG00000049130"
+"230420_at"	"CASZ1"	54897	"ENSG00000130940"
+"227539_at"	"GNA13"	10672	"ENSG00000120063"
+"229295_at"	"IL17RA"	23765	"ENSG00000177663"
+"229101_at"	"IL17RA"	23765	"ENSG00000177663"
+"228685_at"	"IL17RA"	23765	"ENSG00000177663"
+"227081_at"	"DNALI1"	7802	"ENSG00000163879"
+"228458_at"	"C6orf226"	441150	"ENSG00000221821"
+"229336_at"	"ST3GAL2"	6483	"ENSG00000157350"
+"226072_at"	"FCSK"	197258	"ENSG00000157353"
+"227153_at"	"IMMP2L"	83943	"ENSG00000184903"
+"227377_at"	"IGF2BP1"	10642	"ENSG00000159217"
+"227993_at"	"METAP2"	10988	"ENSG00000111142"
+"226797_at"	"MBTD1"	54799	"ENSG00000011258"
+"228910_at"	"CD82"	3732	"ENSG00000085117"
+"225844_at"	"POLE4"	56655	"ENSG00000115350"
+"226224_at"	"FOXK2"	3607	"ENSG00000141568"
+"230310_at"	""	NA	"ENSG00000268584"
+"227711_at"	"GTSF1"	121355	"ENSG00000170627"
+"226748_at"	"LYSMD2"	256586	"ENSG00000140280"
+"230118_at"	"GEMIN6"	79833	"ENSG00000152147"
+"229649_at"	"NRXN3"	9369	"ENSG00000021645"
+"225788_at"	"RRP36"	88745	"ENSG00000124541"
+"227251_at"	"DCAF5"	8816	"ENSG00000139990"
+"225596_at"	"KLC4"	89953	"ENSG00000137171"
+"226287_at"	"CCDC34"	91057	"ENSG00000109881"
+"226348_at"	"FUT11"	170384	"ENSG00000196968"
+"226399_at"	"DNAJB14"	79982	"ENSG00000164031"
+"226896_at"	"CHCHD1"	118487	"ENSG00000172586"
+"229798_s_at"	"BAIAP2L1"	55971	"ENSG00000006453"
+"227372_s_at"	"BAIAP2L1"	55971	"ENSG00000006453"
+"227371_at"	"BAIAP2L1"	55971	"ENSG00000006453"
+"227717_at"	"ARHGEF37"	389337	"ENSG00000183111"
+"227676_at"	"FAM3D"	131177	"ENSG00000198643"
+"228797_at"	"NLN"	57486	"ENSG00000123213"
+"225942_at"	"NLN"	57486	"ENSG00000123213"
+"225944_at"	"NLN"	57486	"ENSG00000123213"
+"225943_at"	"NLN"	57486	"ENSG00000123213"
+"228493_at"	"NKAP"	79576	"ENSG00000101882"
+"228575_at"	"IL20RB"	53833	"ENSG00000174564"
+"229242_at"	"TNFSF15"	9966	"ENSG00000181634"
+"226080_at"	"SSH2"	85464	"ENSG00000141298"
+"227212_s_at"	"PHF19"	26147	"ENSG00000119403"
+"227211_at"	"PHF19"	26147	"ENSG00000119403"
+"228046_at"	"ZNF827"	152485	"ENSG00000151612"
+"226764_at"	"ZNF827"	152485	"ENSG00000151612"
+"227614_at"	"HKDC1"	80201	"ENSG00000156510"
+"228505_s_at"	"TMEM170A"	124491	"ENSG00000166822"
+"227586_at"	"TMEM170A"	124491	"ENSG00000166822"
+"229923_at"	""	NA	"ENSG00000272871"
+"226313_at"	"FAM241B"	219738	"ENSG00000171224"
+"226954_at"	"UBE2R2"	54926	"ENSG00000107341"
+"225663_at"	"ACBD5"	91452	"ENSG00000107897"
+"228441_s_at"	"FHIP1A"	729830	"ENSG00000164142"
+"228440_at"	"FHIP1A"	729830	"ENSG00000164142"
+"228233_at"	"FREM1"	158326	"ENSG00000164946"
+"225556_at"	"VMA21"	203547	"ENSG00000160131"
+"228005_at"	"ZXDB"	158586	"ENSG00000198455"
+"227692_at"	"GNAI1"	2770	"ENSG00000127955"
+"230069_at"	"SFXN1"	94081	"ENSG00000164466"
+"229350_x_at"	"PARP10"	84875	"ENSG00000178685"
+"226401_at"	"PARP10"	84875	"ENSG00000178685"
+"229510_at"	"MS4A14"	84689	"ENSG00000166928"
+"227741_at"	"HACD2"	201562	"ENSG00000206527"
+"230322_at"	"NFAM1"	150372	"ENSG00000235568"
+"227123_at"	"RAB3B"	5865	"ENSG00000169213"
+"228567_at"	"GAN"	8139	"ENSG00000261609"
+"226875_at"	"DOCK11"	139818	"ENSG00000147251"
+"228939_at"	"OAF"	220323	"ENSG00000184232"
+"230238_at"	"SOWAHA"	134548	"ENSG00000198944"
+"226627_at"	"SEPTIN8"	23176	"ENSG00000164402"
+"229015_at"	"NIPSNAP3B"	55335	"ENSG00000165028"
+"226910_at"	"COMMD2"	51122	"ENSG00000114744"
+"226235_at"	"LINC00667"	339290	"ENSG00000263753"
+"228160_at"	"LINC00667"	339290	"ENSG00000263753"
+"226004_at"	"CABLES2"	81928	"ENSG00000149679"
+"228445_at"	"AIFM2"	84883	"ENSG00000042286"
+"230477_at"	"PARD6G-AS1"	100130522	"ENSG00000267270"
+"229542_at"	"C20orf85"	128602	"ENSG00000124237"
+"226359_at"	"GTPBP1"	9567	"ENSG00000100226"
+"228989_at"	"TYMSOS"	NA	"ENSG00000176912"
+"225968_at"	"PRICKLE2"	166336	"ENSG00000163637"
+"225877_at"	"TYSND1"	219743	"ENSG00000156521"
+"229262_at"	"PPP1R37"	284352	"ENSG00000104866"
+"230144_at"	"GRIA3"	2892	"ENSG00000125675"
+"228506_at"	"NSMCE4A"	54780	"ENSG00000107672"
+"227583_at"	"POP4"	10775	"ENSG00000105171"
+"226862_at"	"MBD1"	4152	"ENSG00000141644"
+"228921_at"	"SLC25A42"	284439	"ENSG00000181035"
+"226737_at"	"SLC25A42"	284439	"ENSG00000181035"
+"225885_at"	"EEA1"	8411	"ENSG00000102189"
+"225866_at"	"RPF2"	84154	"ENSG00000197498"
+"228075_x_at"	"TFB1M"	51106	"ENSG00000029639"
+"229637_at"	"RIC8B"	55188	"ENSG00000111785"
+"227205_at"	"TAF1"	6872	"ENSG00000147133"
+"229240_at"	"ZDHHC21"	340481	"ENSG00000175893"
+"230139_at"	""	NA	"ENSG00000259959"
+"227220_at"	"NFXL1"	152518	"ENSG00000170448"
+"228033_at"	"E2F7"	144455	"ENSG00000165891"
+"226207_at"	"RILPL1"	353116	"ENSG00000188026"
+"225708_at"	"MED29"	55588	"ENSG00000063322"
+"225912_at"	"TP53INP1"	94241	"ENSG00000164938"
+"226604_at"	"TMTC3"	160418	"ENSG00000139324"
+"226600_at"	"TMTC3"	160418	"ENSG00000139324"
+"225979_at"	"PLEKHG2"	64857	"ENSG00000090924"
+"225756_at"	"CSNK1E"	1454	"ENSG00000213923"
+"226858_at"	"CSNK1E"	1454	"ENSG00000213923"
+"227627_at"	"SGK3"	23678	"ENSG00000104205"
+"228457_at"	"PPM1L"	151742	"ENSG00000163590"
+"229506_at"	"PPM1L"	151742	"ENSG00000163590"
+"228108_at"	"PPM1L"	151742	"ENSG00000163590"
+"229032_at"	"WSCD2"	9671	"ENSG00000075035"
+"228968_at"	"ZNF449"	203523	"ENSG00000173275"
+"230211_at"	"TRIP11"	9321	"ENSG00000100815"
+"226056_at"	"ARHGAP31"	57514	"ENSG00000031081"
+"226057_at"	"ARHGAP31"	57514	"ENSG00000031081"
+"226131_s_at"	"RPS16"	6217	"ENSG00000105193"
+"226130_at"	"RPS16"	6217	"ENSG00000105193"
+"229585_at"	"ADAMTSL1"	92949	"ENSG00000178031"
+"228143_at"	"CP"	1356	"ENSG00000047457"
+"227253_at"	"CP"	1356	"ENSG00000047457"
+"226749_at"	"MRPS9"	64965	"ENSG00000135972"
+"227098_at"	"DUSP18"	150290	"ENSG00000167065"
+"227348_at"	"PARS2"	25973	"ENSG00000162396"
+"228403_at"	"ENHO"	375704	"ENSG00000168913"
+"227918_s_at"	"ZYG11B"	79699	"ENSG00000162378"
+"225994_at"	"CPSF2"	53981	"ENSG00000165934"
+"225986_x_at"	"CPSF2"	53981	"ENSG00000165934"
+"228149_at"	"BMT2"	154743	"ENSG00000164603"
+"229080_at"	"COL26A1"	136227	"ENSG00000160963"
+"226067_at"	"BPIFB1"	92747	"ENSG00000125999"
+"229223_at"	""	NA	"ENSG00000262160"
+"225992_at"	"MLLT10"	8028	"ENSG00000078403"
+"230122_at"	"MLLT10"	8028	"ENSG00000078403"
+"230498_at"	"MCHR1"	2847	"ENSG00000128285"
+"225591_at"	"FBXO25"	26260	"ENSG00000147364"
+"228615_at"	"FBXO25"	26260	"ENSG00000147364"
+"225850_at"	"SFT2D1"	113402	"ENSG00000198818"
+"225849_s_at"	"SFT2D1"	113402	"ENSG00000198818"
+"228397_at"	"TUG1"	55000	"ENSG00000253352"
+"227802_at"	"RUFY3"	22902	"ENSG00000018189"
+"228489_at"	"TM4SF18"	116441	"ENSG00000163762"
+"230061_at"	"TM4SF18"	116441	"ENSG00000163762"
+"230303_at"	"SYNPR"	132204	"ENSG00000163630"
+"228542_at"	"MRS2"	57380	"ENSG00000124532"
+"226776_at"	"ENY2"	56943	"ENSG00000120533"
+"226775_at"	"ENY2"	56943	"ENSG00000120533"
+"227920_at"	"BEND3"	57673	"ENSG00000178409"
+"229644_at"	"PREP"	5550	"ENSG00000085377"
+"229153_at"	"SLC7A6OS"	84138	"ENSG00000103061"
+"225936_at"	"EID2"	163126	"ENSG00000176396"
+"230329_s_at"	"NUDT6"	11162	"ENSG00000170917"
+"228439_at"	"BATF2"	116071	"ENSG00000168062"
+"230129_at"	"PSTK"	118672	"ENSG00000179988"
+"228228_at"	"DACT3"	147906	"ENSG00000197380"
+"226887_at"	"MSANTD7"	100421372	"ENSG00000284024"
+"227650_at"	"MSANTD7"	100421372	"ENSG00000284024"
+"228960_at"	"ICE2"	79664	"ENSG00000128915"
+"226936_at"	"CENPW"	387103	"ENSG00000203760"
+"227274_at"	"SYNJ2BP"	55333	"ENSG00000213463"
+"225989_at"	"HERC4"	26091	"ENSG00000148634"
+"225988_at"	"HERC4"	26091	"ENSG00000148634"
+"228123_s_at"	"ABHD12"	26090	"ENSG00000100997"
+"228124_at"	"ABHD12"	26090	"ENSG00000100997"
+"226019_at"	"OMA1"	115209	"ENSG00000162600"
+"230131_x_at"	"ARSD"	414	"ENSG00000006756"
+"227442_at"	"COX18"	285521	"ENSG00000163626"
+"225997_at"	"MOB1B"	92597	"ENSG00000173542"
+"226037_s_at"	"TAF9B"	51616	"ENSG00000187325"
+"226863_at"	"FAM110C"	642273	"ENSG00000184731"
+"228955_at"	"LRP8"	7804	"ENSG00000157193"
+"228605_at"	"UBXN2A"	165324	"ENSG00000173960"
+"227219_x_at"	"MAP1LC3A"	84557	"ENSG00000101460"
+"227504_s_at"	"MED28"	80306	"ENSG00000118579"
+"228992_at"	"MED28"	80306	"ENSG00000118579"
+"227505_at"	"MED28"	80306	"ENSG00000118579"
+"225903_at"	"PIGU"	128869	"ENSG00000101464"
+"227738_s_at"	"ARMC5"	79798	"ENSG00000140691"
+"228106_at"	"DCAF16"	54876	"ENSG00000163257"
+"228666_at"	"ARPIN"	348110	"ENSG00000242498"
+"228791_at"	"ARPIN"	348110	"ENSG00000242498"
+"227049_at"	"PTGR3"	284273	"ENSG00000180011"
+"227977_at"	"PTGR3"	284273	"ENSG00000180011"
+"227978_s_at"	"PTGR3"	284273	"ENSG00000180011"
+"229182_at"	"TMEM199"	147007	"ENSG00000244045"
+"226841_at"	"MPEG1"	219972	"ENSG00000197629"
+"226818_at"	"MPEG1"	219972	"ENSG00000197629"
+"227791_at"	"SLC9A9"	285195	"ENSG00000181804"
+"226696_at"	"RBBP9"	10741	"ENSG00000089050"
+"230074_s_at"	""	NA	"ENSG00000260740"
+"227568_at"	"HECTD2"	143279	"ENSG00000165338"
+"229070_at"	"ADTRP"	84830	"ENSG00000111863"
+"228463_at"	"FOXA3"	3171	"ENSG00000170608"
+"226515_at"	"CCDC127"	133957	"ENSG00000164366"
+"227937_at"	"MYPOP"	339344	"ENSG00000176182"
+"228472_at"	"CCDC61"	729440	"ENSG00000104983"
+"228887_x_at"	"CCDC61"	729440	"ENSG00000104983"
+"228847_at"	"EXOC3"	11336	"ENSG00000180104"
+"227968_at"	"GATD1"	347862	"ENSG00000177225"
+"229145_at"	"ANAPC16"	119504	"ENSG00000166295"
+"226125_at"	"SLC9A3-AS1"	NA	"ENSG00000225138"
+"230205_at"	"ZNF561"	93134	"ENSG00000171469"
+"225642_at"	"KTI12"	112970	"ENSG00000198841"
+"230104_s_at"	"TPPP"	11076	"ENSG00000171368"
+"229920_at"	"RBCK1"	10616	"ENSG00000125826"
+"228002_at"	"GTPBP4"	23560	"ENSG00000107937"
+"230180_at"	"DDX17"	10521	"ENSG00000100201"
+"228927_at"	"ZNF397"	84307	"ENSG00000186812"
+"229125_at"	"KANK4"	163782	"ENSG00000132854"
+"228125_at"	"ZSCAN30"	100101467	"ENSG00000186814"
+"228130_at"	"ZSCAN30"	100101467	"ENSG00000186814"
+"226580_at"	"BRMS1L"	84312	"ENSG00000100916"
+"229582_at"	"INO80C"	125476	"ENSG00000153391"
+"229378_at"	"STOX1"	219736	"ENSG00000165730"
+"226508_at"	"PHC3"	80012	"ENSG00000173889"
+"230031_at"	"HSPA5"	3309	"ENSG00000044574"
+"227105_at"	"CSPP1"	79848	"ENSG00000104218"
+"229175_at"	"SMYD4"	114826	"ENSG00000186532"
+"227407_at"	"TAPT1"	202018	"ENSG00000169762"
+"226735_at"	"TAPT1"	202018	"ENSG00000169762"
+"228728_at"	"CPED1"	79974	"ENSG00000106034"
+"229075_at"	"SPATA5"	166378	"ENSG00000145375"
+"227095_at"	"LEPROT"	54741	"ENSG00000213625"
+"226925_at"	"PXYLP1"	92370	"ENSG00000155893"
+"225627_s_at"	"CACHD1"	57685	"ENSG00000158966"
+"229772_at"	"DEFB123"	245936	"ENSG00000180424"
+"226547_at"	"KAT6A"	7994	"ENSG00000083168"
+"228674_s_at"	"EML4"	27436	"ENSG00000143924"
+"226800_at"	"EFCAB7"	84455	"ENSG00000203965"
+"230110_at"	"MCOLN2"	255231	"ENSG00000153898"
+"227166_at"	"DNAJC18"	202052	"ENSG00000170464"
+"227169_at"	"DNAJC18"	202052	"ENSG00000170464"
+"229596_at"	"AMDHD1"	144193	"ENSG00000139344"
+"229865_at"	"FNDC3B"	64778	"ENSG00000075420"
+"230482_at"	"ST6GALNAC5"	81849	"ENSG00000117069"
+"227633_at"	"RHEB"	6009	"ENSG00000106615"
+"228190_at"	"ATG4C"	84938	"ENSG00000125703"
+"228461_at"	"SH3RF3"	344558	"ENSG00000172985"
+"229725_at"	"ACSL6"	23305	"ENSG00000164398"
+"227799_at"	"MYO1G"	64005	"ENSG00000136286"
+"225543_at"	"GTF3C4"	9329	"ENSG00000125484"
+"226349_at"	"NOPCHAP1"	121053	"ENSG00000151131"
+"228230_at"	"HELZ2"	85441	"ENSG00000130589"
+"227429_at"	"CRACR2B"	283229	"ENSG00000177685"
+"229318_at"	"NUTM2B-AS1"	101060691	"ENSG00000225484"
+"226670_s_at"	"PABPC1L"	80336	"ENSG00000101104"
+"227675_at"	"LRSAM1"	90678	"ENSG00000148356"
+"228603_at"	"ACTR3"	10096	"ENSG00000115091"
+"229278_at"	"USP51"	158880	"ENSG00000247746"
+"228724_at"	"TTLL7"	79739	"ENSG00000137941"
+"228406_at"	"SMYD1"	150572	"ENSG00000115593"
+"225993_at"	"EARS2"	124454	"ENSG00000103356"
+"227374_at"	"EARS2"	124454	"ENSG00000103356"
+"225541_at"	"RPL22L1"	200916	"ENSG00000163584"
+"229308_at"	"ANKRD29"	147463	"ENSG00000154065"
+"230010_at"	"SRRM4"	84530	"ENSG00000139767"
+"229709_at"	"ATP1B3"	483	"ENSG00000069849"
+"227840_at"	"C2orf76"	130355	"ENSG00000186132"
+"228585_at"	"ENTPD1"	953	"ENSG00000138185"
+"225662_at"	"MAP3K20"	51776	"ENSG00000091436"
+"225665_at"	"MAP3K20"	51776	"ENSG00000091436"
+"228920_at"	"ZNF260"	339324	"ENSG00000254004"
+"227145_at"	"LOXL4"	84171	"ENSG00000138131"
+"229333_at"	"GMPS"	8833	"ENSG00000163655"
+"230294_at"	"RALY-AS1"	101926888	"ENSG00000285230"
+"229995_at"	"SYCN"	342898	"ENSG00000179751"
+"227604_at"	"TMEM185B"	79134	"ENSG00000226479"
+"228658_at"	"MIAT"	440823	"ENSG00000225783"
+"227168_at"	"MIAT"	440823	"ENSG00000225783"
+"226408_at"	"TEAD2"	8463	"ENSG00000074219"
+"227155_at"	"LMO4"	8543	"ENSG00000143013"
+"229537_at"	"LMO4"	8543	"ENSG00000143013"
+"227034_at"	"SOWAHC"	65124	"ENSG00000198142"
+"229930_at"	"LINC01315"	102723775	"ENSG00000229891"
+"229450_at"	"IFIT3"	3437	"ENSG00000119917"
+"227044_at"	"TBC1D22A-DT"	NA	"ENSG00000260708"
+"227639_at"	"PIGK"	10026	"ENSG00000142892"
+"225967_s_at"	"NDUFAF8"	284184	"ENSG00000224877"
+"225966_at"	"NDUFAF8"	284184	"ENSG00000224877"
+"230448_at"	"SLC38A10"	124565	"ENSG00000157637"
+"227096_at"	"JOSD2"	126119	"ENSG00000161677"
+"226039_at"	"MGAT4A"	11320	"ENSG00000071073"
+"227270_at"	"FAM200B"	285550	"ENSG00000237765"
+"229094_at"	"ATP6V0E2-AS1"	401431	"ENSG00000204934"
+"227357_at"	"TAB3"	257397	"ENSG00000157625"
+"227037_at"	"PLD6"	201164	"ENSG00000179598"
+"227585_at"	"ATAD1"	84896	"ENSG00000138138"
+"227538_at"	"MED26"	9441	"ENSG00000105085"
+"229115_at"	"DYNC1H1"	1778	"ENSG00000197102"
+"227908_at"	"TBC1D24"	57465	"ENSG00000162065"
+"227632_at"	"TBC1D24"	57465	"ENSG00000162065"
+"228898_s_at"	"SMARCB1"	6598	"ENSG00000099956"
+"229719_s_at"	"SMARCB1"	6598	"ENSG00000099956"
+"229370_at"	"INSIG1-DT"	NA	"ENSG00000273117"
+"225609_at"	"GSR"	2936	"ENSG00000104687"
+"226646_at"	"KLF2"	10365	"ENSG00000127528"
+"229545_at"	"FERMT1"	55612	"ENSG00000101311"
+"228804_at"	"DGCR5"	26220	"ENSG00000273032"
+"230230_at"	"PTPN4"	5775	"ENSG00000088179"
+"226648_at"	"HIF1AN"	55662	"ENSG00000166135"
+"226839_at"	"NR2C2AP"	126382	"ENSG00000184162"
+"228841_at"	"LYRM7"	90624	"ENSG00000186687"
+"226426_at"	"ADNP"	23394	"ENSG00000101126"
+"230105_at"	"HOXB13"	10481	"ENSG00000159184"
+"228419_at"	"METRN"	79006	"ENSG00000103260"
+"228732_at"	"GUCY1A2"	2977	"ENSG00000152402"
+"228731_at"	"GUCY1A2"	2977	"ENSG00000152402"
+"228145_s_at"	"ZNF398"	57541	"ENSG00000197024"
+"226202_at"	"ZNF398"	57541	"ENSG00000197024"
+"228210_at"	"NXPH3"	11248	"ENSG00000182575"
+"225804_at"	"CYB5D2"	124936	"ENSG00000167740"
+"229848_at"	"ZNF10"	7556	"ENSG00000256223"
+"228918_at"	"SLC43A2"	124935	"ENSG00000167703"
+"226299_at"	"PKN3"	29941	"ENSG00000160447"
+"226088_at"	"ZDHHC12"	84885	"ENSG00000160446"
+"230186_at"	"TLCD5"	219902	"ENSG00000181264"
+"226757_at"	"IFIT2"	3433	"ENSG00000119922"
+"227611_at"	"TARS3"	123283	"ENSG00000185418"
+"228713_s_at"	"HSD17B14"	51171	"ENSG00000087076"
+"226241_s_at"	"MRPL52"	122704	"ENSG00000172590"
+"225896_at"	"MPRIP"	23164	"ENSG00000133030"
+"227708_at"	"EEF1A1"	1915	"ENSG00000156508"
+"228038_at"	"SOX2"	6657	"ENSG00000181449"
+"229794_at"	"ZNF585A"	199704	"ENSG00000196967"
+"225625_at"	"ALKBH2"	121642	"ENSG00000189046"
+"230100_x_at"	"PAK1"	5058	"ENSG00000149269"
+"226507_at"	"PAK1"	5058	"ENSG00000149269"
+"229461_x_at"	"NEGR1"	257194	"ENSG00000172260"
+"230259_at"	"FUOM"	282969	"ENSG00000148803"
+"229875_at"	"ZDHHC22"	283576	"ENSG00000177108"
+"230243_at"	"TRMT10A"	93587	"ENSG00000145331"
+"230366_at"	"LINC01431"	100505683	"ENSG00000232645"
+"227821_at"	"LGI4"	163175	"ENSG00000153902"
+"226846_at"	"PHYHD1"	254295	"ENSG00000175287"
+"230108_at"	"ERCC6"	2074	"ENSG00000225830"
+"229449_at"	"TPST2"	8459	"ENSG00000128294"
+"227572_at"	"USP30"	84749	"ENSG00000135093"
+"229457_at"	"ANKHD1"	54882	"ENSG00000131503"
+"226420_at"	"MECOM"	2122	"ENSG00000085276"
+"228004_at"	"LINC00261"	140828	"ENSG00000259974"
+"226525_at"	"STK17B"	9262	"ENSG00000081320"
+"229952_at"	"PLEKHG3"	26030	"ENSG00000126822"
+"226149_at"	"SNHG11"	128439	"ENSG00000174365"
+"225560_at"	"POMT2"	29954	"ENSG00000009830"
+"228891_at"	"SEMA4D"	10507	"ENSG00000187764"
+"228772_at"	"HNMT"	3176	"ENSG00000150540"
+"226281_at"	"DNER"	92737	"ENSG00000187957"
+"226370_at"	"KLHL15"	80311	"ENSG00000174010"
+"229722_at"	"LCDR"	100270804	"ENSG00000273148"
+"229966_at"	"EWSR1"	2130	"ENSG00000182944"
+"227405_s_at"	"FZD8"	8325	"ENSG00000177283"
+"228633_s_at"	"CNTROB"	116840	"ENSG00000170037"
+"230350_at"	"TIAL1"	7073	"ENSG00000151923"
+"228307_at"	"EMILIN3"	90187	"ENSG00000183798"
+"229992_at"	"LINC00654"	149837	"ENSG00000205181"
+"226556_at"	"MAP3K13"	9175	"ENSG00000073803"
+"226190_at"	"MAP3K13"	9175	"ENSG00000073803"
+"229771_at"	"MAP3K13"	9175	"ENSG00000073803"
+"228917_at"	"ZNF510"	22869	"ENSG00000081386"
+"227506_at"	"SLC16A9"	220963	"ENSG00000165449"
+"228570_at"	"ABTB3"	121551	"ENSG00000151136"
+"229759_s_at"	"VEPH1"	79674	"ENSG00000197415"
+"229760_at"	"VEPH1"	79674	"ENSG00000197415"
+"228221_at"	"SLC44A3"	126969	"ENSG00000143036"
+"229213_at"	"SLC49A4"	84925	"ENSG00000138463"
+"226026_at"	"SLC49A4"	84925	"ENSG00000138463"
+"228376_at"	"GGTA1"	2681	"ENSG00000204136"
+"229964_at"	"C9orf152"	401546	"ENSG00000188959"
+"230228_at"	"SSC5D"	284297	"ENSG00000179954"
+"228933_at"	"NHS"	4810	"ENSG00000188158"
+"226043_at"	"GPSM1"	26086	"ENSG00000160360"
+"229140_at"	"ZNF579"	163033	"ENSG00000218891"
+"228663_x_at"	"FIZ1"	84922	"ENSG00000179943"
+"226967_at"	"FIZ1"	84922	"ENSG00000179943"
+"228364_at"	"ZNF784"	147808	"ENSG00000179922"
+"227773_at"	"SAMD10"	140700	"ENSG00000130590"
+"227144_at"	"KIAA0930"	23313	"ENSG00000100364"
+"226667_x_at"	"EPN1"	29924	"ENSG00000063245"
+"226475_at"	"FAM118A"	55007	"ENSG00000100376"
+"228235_at"	"MIR503HG"	NA	"ENSG00000223749"
+"229784_at"	"MIR503HG"	NA	"ENSG00000223749"
+"229950_s_at"	""	NA	"ENSG00000279152"
+"227313_at"	"CNPY4"	245812	"ENSG00000166997"
+"229843_at"	"RMDN1"	51115	"ENSG00000176623"
+"229813_x_at"	"DAZAP1"	26528	"ENSG00000071626"
+"226620_x_at"	"DAZAP1"	26528	"ENSG00000071626"
+"229325_at"	"ZZZ3"	26009	"ENSG00000036549"
+"227965_at"	""	NA	"ENSG00000267317"
+"226378_s_at"	"C19orf25"	148223	"ENSG00000119559"
+"226379_s_at"	"C19orf25"	148223	"ENSG00000119559"
+"226434_at"	"PPP1R35"	221908	"ENSG00000160813"
+"229913_at"	"SPACDR"	402573	"ENSG00000185955"
+"225644_at"	"CCDC117"	150275	"ENSG00000159873"
+"228836_at"	"SLC25A35"	399512	"ENSG00000125434"
+"230287_at"	"SGSM1"	129049	"ENSG00000167037"
+"225822_at"	"TMEM125"	128218	"ENSG00000179178"
+"229512_at"	"FAM120C"	54954	"ENSG00000184083"
+"230359_at"	"KNDC1"	85442	"ENSG00000171798"
+"229167_at"	"PURA"	5813	"ENSG00000185129"
+"229580_at"	"CLSTN2"	64084	"ENSG00000158258"
+"227524_at"	"FZD3"	7976	"ENSG00000104290"
+"227499_at"	"FZD3"	7976	"ENSG00000104290"
+"226158_at"	"KLHL24"	54800	"ENSG00000114796"
+"229061_s_at"	"SLC25A13"	10165	"ENSG00000004864"
+"227670_at"	"ZNF75A"	7627	"ENSG00000162086"
+"227172_at"	"TMEM116"	89894	"ENSG00000198270"
+"227816_at"	"NTN1"	9423	"ENSG00000065320"
+"228629_s_at"	"WWTR1-AS1"	100128025	"ENSG00000241313"
+"230163_at"	"GFRA1"	2674	"ENSG00000151892"
+"227550_at"	"GFRA1"	2674	"ENSG00000151892"
+"229263_at"	"IL17RD"	54756	"ENSG00000144730"
+"227997_at"	"IL17RD"	54756	"ENSG00000144730"
+"225658_at"	"SPOPL"	339745	"ENSG00000144228"
+"230298_at"	"MBLAC2"	153364	"ENSG00000176055"
+"227933_at"	"LINGO1"	84894	"ENSG00000169783"
+"228569_at"	"PAPOLA"	10914	"ENSG00000090060"
+"229555_at"	"GALNT5"	11227	"ENSG00000136542"
+"226321_at"	"LYSMD3"	116068	"ENSG00000176018"
+"228073_at"	"NANP"	140838	"ENSG00000170191"
+"226106_at"	"RNF141"	50862	"ENSG00000110315"
+"227262_at"	"HAPLN3"	145864	"ENSG00000140511"
+"229241_at"	"LDHD"	197257	"ENSG00000166816"
+"229398_at"	"RAB18"	22931	"ENSG00000099246"
+"225952_at"	"FLYWCH1"	84256	"ENSG00000059122"
+"230048_at"	"IFRD1"	3475	"ENSG00000006652"
+"230364_at"	"CHPT1"	56994	"ENSG00000111666"
+"226051_at"	"SELENOM"	140606	"ENSG00000198832"
+"226736_at"	"CHURC1"	91612	"ENSG00000258289"
+"225544_at"	"TBX3"	6926	"ENSG00000135111"
+"229576_s_at"	"TBX3"	6926	"ENSG00000135111"
+"226588_at"	"CWC22"	57703	"ENSG00000163510"
+"229818_at"	"SVOP"	55530	"ENSG00000166111"
+"226248_s_at"	"ELAPOR1"	57535	"ENSG00000116299"
+"226485_at"	"VSIG10"	54621	"ENSG00000176834"
+"227684_at"	"S1PR2"	9294	"ENSG00000267534"
+"227829_at"	"LARGE2"	120071	"ENSG00000165905"
+"229590_at"	"RPL13"	6137	"ENSG00000167526"
+"226449_at"	"CEP120"	153241	"ENSG00000168944"
+"229613_at"	"NKD1"	85407	"ENSG00000140807"
+"229481_at"	"NKD1"	85407	"ENSG00000140807"
+"226753_at"	"FAM76B"	143684	"ENSG00000077458"
+"228167_at"	"KLHL6"	89857	"ENSG00000172578"
+"229859_at"	""	NA	"ENSG00000274425"
+"226814_at"	"ADAMTS9"	56999	"ENSG00000163638"
+"228464_at"	"MIR3685"	100500802	"ENSG00000265917"
+"228348_at"	"LINS1"	55180	"ENSG00000140471"
+"225712_at"	"GEMIN5"	25929	"ENSG00000082516"
+"226513_at"	"ASB7"	140460	"ENSG00000183475"
+"229436_x_at"	"BRCC3"	79184	"ENSG00000185515"
+"227729_at"	"ZNF134"	7693	"ENSG00000213762"
+"225717_at"	"LNPK"	80856	"ENSG00000144320"
+"229173_at"	"LNPK"	80856	"ENSG00000144320"
+"225718_at"	"LNPK"	80856	"ENSG00000144320"
+"229693_at"	"TMEM220"	388335	"ENSG00000187824"
+"227154_at"	"IGSF21"	84966	"ENSG00000117154"
+"227243_s_at"	"EBF3"	253738	"ENSG00000108001"
+"227242_s_at"	"EBF3"	253738	"ENSG00000108001"
+"225612_s_at"	"B3GNT5"	84002	"ENSG00000176597"
+"229266_at"	"SHISA6"	388336	"ENSG00000188803"
+"226778_at"	"TDRP"	157695	"ENSG00000180190"
+"229323_at"	"C10orf143"	387723	"ENSG00000237489"
+"230095_at"	"GLRX3"	10539	"ENSG00000108010"
+"226625_at"	"TGFBR3"	7049	"ENSG00000069702"
+"229328_at"	"ZNF571-AS1"	100507433	"ENSG00000267470"
+"227796_at"	"ZFP62"	643836	"ENSG00000196670"
+"229781_at"	"LINC03013"	NA	"ENSG00000227544"
+"226713_at"	"CCDC50"	152137	"ENSG00000152492"
+"228693_at"	"CCDC50"	152137	"ENSG00000152492"
+"229019_at"	"ZNF385B"	151126	"ENSG00000144331"
+"228963_at"	"RSBN1L"	222194	"ENSG00000187257"
+"226387_at"	"RSBN1L"	222194	"ENSG00000187257"
+"226204_at"	"RTL10"	79680	"ENSG00000215012"
+"230280_at"	"TRIM9"	114088	"ENSG00000100505"
+"229435_at"	"GLIS3"	169792	"ENSG00000107249"
+"230258_at"	"GLIS3"	169792	"ENSG00000107249"
+"229230_at"	"SLC51A"	200931	"ENSG00000163959"
+"229957_at"	"TMEM91"	641649	"ENSG00000142046"
+"229118_at"	"PRRG3"	79057	"ENSG00000130032"
+"226551_at"	"RIPK1"	8737	"ENSG00000137275"
+"225958_at"	"PHC1"	1911	"ENSG00000111752"
+"228345_at"	"CHIC1"	53344	"ENSG00000204116"
+"227545_at"	"BARD1"	580	"ENSG00000138376"
+"230422_at"	"FPR3"	2359	"ENSG00000187474"
+"230070_at"	"CNIH2"	254263	"ENSG00000174871"
+"229672_at"	"UQCC1"	55245	"ENSG00000101019"
+"226000_at"	"CTTNBP2NL"	55917	"ENSG00000143079"
+"227361_at"	"HS3ST3B1"	9953	"ENSG00000125430"
+"228100_at"	"PIFO"	128344	"ENSG00000173947"
+"228824_s_at"	"PTGR1"	22949	"ENSG00000106853"
+"228825_at"	"PTGR1"	22949	"ENSG00000106853"
+"227233_at"	"TSPAN2"	10100	"ENSG00000134198"
+"227236_at"	"TSPAN2"	10100	"ENSG00000134198"
+"228119_at"	"LRCH3"	84859	"ENSG00000186001"
+"230078_at"	"RAPGEF6"	51735	"ENSG00000158987"
+"226906_s_at"	"ARHGAP9"	64333	"ENSG00000123329"
+"226894_at"	"SLC35A3"	23443	"ENSG00000117620"
+"226859_at"	"DNAJC25"	548645	"ENSG00000059769"
+"229270_x_at"	"SSBP4"	170463	"ENSG00000130511"
+"229269_x_at"	"SSBP4"	170463	"ENSG00000130511"
+"226777_at"	"ADAM12"	8038	"ENSG00000148848"
+"226632_at"	"CYGB"	114757	"ENSG00000161544"
+"230015_at"	"PRCD"	768206	"ENSG00000214140"
+"225723_at"	"CCDC167"	154467	"ENSG00000198937"
+"229112_at"	"SIRT5"	23408	"ENSG00000124523"
+"229324_x_at"	"ISYNA1"	51477	"ENSG00000105655"
+"228552_s_at"	"ISYNA1"	51477	"ENSG00000105655"
+"227725_at"	"ST6GALNAC1"	55808	"ENSG00000070526"
+"230146_s_at"	"NCS1"	23413	"ENSG00000107130"
+"230406_at"	"ASS1"	445	"ENSG00000130707"
+"228758_at"	"BCL6"	604	"ENSG00000113916"
+"227706_at"	"SPIRE2"	84501	"ENSG00000204991"
+"227210_at"	"SFMBT2"	57713	"ENSG00000198879"
+"229744_at"	"ITPRID2"	6744	"ENSG00000138434"
+"228380_at"	"SENP2"	59343	"ENSG00000163904"
+"226076_s_at"	"MBD6"	114785	"ENSG00000166987"
+"227833_s_at"	"MBD6"	114785	"ENSG00000166987"
+"227832_at"	"MBD6"	114785	"ENSG00000166987"
+"227388_at"	"TUSC1"	286319	"ENSG00000198680"
+"225660_at"	"SEMA6A"	57556	"ENSG00000092421"
+"226470_at"	"GGT7"	2686	"ENSG00000131067"
+"226469_s_at"	"GGT7"	2686	"ENSG00000131067"
+"226471_at"	"GGT7"	2686	"ENSG00000131067"
+"229091_s_at"	"CCNJ"	54619	"ENSG00000107443"
+"228953_at"	"WHAMM"	123720	"ENSG00000156232"
+"226832_at"	"RNF168"	165918	"ENSG00000163961"
+"228398_at"	"SENP8"	123228	"ENSG00000166192"
+"230167_at"	"ADAMTS14"	140766	"ENSG00000138316"
+"229616_s_at"	"GRAMD2A"	196996	"ENSG00000175318"
+"225991_at"	"TMEM41A"	90407	"ENSG00000163900"
+"228598_at"	"DPP10"	57628	"ENSG00000175497"
+"227861_at"	"TMEM161B"	153396	"ENSG00000164180"
+"227599_at"	"MB21D2"	151963	"ENSG00000180611"
+"227778_at"	"MROH1"	727957	"ENSG00000179832"
+"230361_at"	"MROH1"	727957	"ENSG00000179832"
+"225607_at"	"CCDC43"	124808	"ENSG00000180329"
+"227814_at"	"WDR53"	348793	"ENSG00000185798"
+"229764_at"	"TPRG1"	285386	"ENSG00000188001"
+"229925_at"	"SLC6A17"	388662	"ENSG00000197106"
+"230183_at"	"EXT1"	2131	"ENSG00000182197"
+"226454_at"	"MARCHF9"	92979	"ENSG00000139266"
+"230001_at"	"MARCHF9"	92979	"ENSG00000139266"
+"228961_at"	"MIER3"	166968	"ENSG00000155545"
+"226975_at"	"RNPC3"	55599	"ENSG00000185946"
+"229903_x_at"	"RNPC3"	55599	"ENSG00000185946"
+"226999_at"	"RNPC3"	55599	"ENSG00000185946"
+"226356_at"	"MIGA2"	84895	"ENSG00000148343"
+"228776_at"	"GJC1"	10052	"ENSG00000182963"
+"228563_at"	"GJC1"	10052	"ENSG00000182963"
+"226217_at"	"SLC30A7"	148867	"ENSG00000162695"
+"226601_at"	"SLC30A7"	148867	"ENSG00000162695"
+"225948_at"	"COA8"	84334	"ENSG00000256053"
+"230107_at"	"HM13"	81502	"ENSG00000101294"
+"225855_at"	"EPB41L5"	57669	"ENSG00000115109"
+"229292_at"	"EPB41L5"	57669	"ENSG00000115109"
+"228378_at"	"C12orf29"	91298	"ENSG00000133641"
+"227680_at"	"ZNF326"	284695	"ENSG00000162664"
+"227815_at"	"VPS33A"	65082	"ENSG00000139719"
+"226811_at"	"TENT5C"	54855	"ENSG00000183508"
+"225945_at"	"ZNF655"	79027	"ENSG00000197343"
+"226186_at"	"TMOD2"	29767	"ENSG00000128872"
+"227295_at"	"IKBIP"	121457	"ENSG00000166130"
+"229274_at"	"GNAS"	2778	"ENSG00000087460"
+"228173_at"	"GNAS"	2778	"ENSG00000087460"
+"226058_at"	"B3GNT9"	84752	"ENSG00000237172"
+"226535_at"	"ITGB6"	3694	"ENSG00000115221"
+"230277_at"	"TMEM225B"	100289187	"ENSG00000244219"
+"228138_at"	"ZSCAN25"	221785	"ENSG00000197037"
+"230475_at"	"INSYN1"	388135	"ENSG00000205363"
+"228711_at"	"ZNF37A"	7587	"ENSG00000075407"
+"225911_at"	"NPNT"	255743	"ENSG00000168743"
+"228497_at"	"SLC22A15"	55356	"ENSG00000163393"
+"229267_at"	"ANAPC1"	64682	"ENSG00000153107"
+"230085_at"	"PDK3"	5165	"ENSG00000067992"
+"228959_at"	"PDK3"	5165	"ENSG00000067992"
+"227114_at"	"RNF214"	257160	"ENSG00000167257"
+"226514_at"	"ZNF71"	58491	"ENSG00000197951"
+"225782_at"	"MSRB3"	253827	"ENSG00000174099"
+"225790_at"	"MSRB3"	253827	"ENSG00000174099"
+"226917_s_at"	"ANAPC4"	29945	"ENSG00000053900"
+"226560_at"	"SGPP2"	130367	"ENSG00000163082"
+"229320_at"	"CRACDL"	343990	"ENSG00000196872"
+"228067_at"	"CRACDL"	343990	"ENSG00000196872"
+"227563_at"	"FAM27E3"	100131997	"ENSG00000274026"
+"230413_s_at"	"ZRSR2"	8233	"ENSG00000169249"
+"226382_at"	"CAMK1D"	57118	"ENSG00000183049"
+"226959_at"	"CAMK1D"	57118	"ENSG00000183049"
+"226304_at"	"HSPB6"	126393	"ENSG00000004776"
+"227444_at"	"ARMCX4"	100131755	"ENSG00000196440"
+"229530_at"	"GUCY1A1"	2982	"ENSG00000164116"
+"228637_at"	"ZDHHC1"	29800	"ENSG00000159714"
+"227770_at"	"COG8"	84342	"ENSG00000213380"
+"230403_at"	"RFX3"	5991	"ENSG00000080298"
+"229790_at"	"TERF2"	7014	"ENSG00000132604"
+"227071_at"	"ZNF414"	84330	"ENSG00000133250"
+"227139_s_at"	"HPS3"	84343	"ENSG00000163755"
+"230007_at"	"JMJD1C"	221037	"ENSG00000171988"
+"228793_at"	"JMJD1C"	221037	"ENSG00000171988"
+"226770_at"	"MAGI3"	260425	"ENSG00000081026"
+"230409_at"	"MAGI3"	260425	"ENSG00000081026"
+"227464_at"	"ACSF3"	197322	"ENSG00000176715"
+"228778_at"	"MCPH1"	79648	"ENSG00000147316"
+"226524_at"	"C3orf38"	285237	"ENSG00000179021"
+"229174_at"	"C3orf38"	285237	"ENSG00000179021"
+"229135_at"	"FASTKD2"	22868	"ENSG00000118246"
+"228466_at"	"GABPB2"	126626	"ENSG00000143458"
+"226825_s_at"	"TMEM165"	55858	"ENSG00000134851"
+"228780_at"	"POU3F3"	5455	"ENSG00000198914"
+"228790_at"	"FAM110B"	90362	"ENSG00000169122"
+"227800_at"	"FAM110B"	90362	"ENSG00000169122"
+"228410_at"	"GAB3"	139716	"ENSG00000160219"
+"227703_s_at"	"SYTL4"	94121	"ENSG00000102362"
+"227043_at"	"CCDC159"	126075	"ENSG00000183401"
+"227352_at"	"SWSAP1"	126074	"ENSG00000173928"
+"227402_s_at"	"UTP23"	84294	"ENSG00000147679"
+"227836_at"	"UTP23"	84294	"ENSG00000147679"
+"228471_at"	"ANKRD44"	91526	"ENSG00000065413"
+"226641_at"	"ANKRD44"	91526	"ENSG00000065413"
+"225933_at"	"CCDC137"	339230	"ENSG00000185298"
+"226874_at"	"KLHL8"	57563	"ENSG00000145332"
+"228877_at"	"RGL3"	57139	"ENSG00000205517"
+"228195_at"	"C2orf88"	84281	"ENSG00000187699"
+"229250_at"	"TPCN2"	219931	"ENSG00000162341"
+"228266_s_at"	"HDGFL3"	50810	"ENSG00000166503"
+"228043_at"	"UTP15"	84135	"ENSG00000164338"
+"228050_at"	"UTP15"	84135	"ENSG00000164338"
+"228172_at"	"TTLL11"	158135	"ENSG00000175764"
+"227345_at"	"TNFRSF10D"	8793	"ENSG00000173530"
+"227612_at"	"ELAVL3"	1995	"ENSG00000196361"
+"228217_s_at"	"PSMG4"	389362	"ENSG00000180822"
+"228864_at"	"ZNF653"	115950	"ENSG00000161914"
+"227669_at"	"MPC2"	25874	"ENSG00000143158"
+"229258_at"	"KIF12"	113220	"ENSG00000136883"
+"230397_at"	"SAR1B"	51128	"ENSG00000152700"
+"226742_at"	"SAR1B"	51128	"ENSG00000152700"
+"226344_at"	"ZMAT1"	84460	"ENSG00000166432"
+"227157_at"	"PRIMPOL"	201973	"ENSG00000164306"
+"226792_s_at"	"KIFC2"	90990	"ENSG00000167702"
+"226791_at"	"KIFC2"	90990	"ENSG00000167702"
+"229806_at"	""	NA	"ENSG00000272434"
+"228647_at"	"NINJ2-AS1"	100049716	"ENSG00000177406"
+"229012_at"	"C9orf24"	84688	"ENSG00000164972"
+"229305_at"	"CENPU"	79682	"ENSG00000151725"
+"229304_s_at"	"CENPU"	79682	"ENSG00000151725"
+"225664_at"	"COL12A1"	1303	"ENSG00000111799"
+"227065_at"	"RNF216"	54476	"ENSG00000011275"
+"228039_at"	"DDX46"	9879	"ENSG00000145833"
+"229547_s_at"	"WNK2"	65268	"ENSG00000165238"
+"227217_at"	"WNK2"	65268	"ENSG00000165238"
+"227869_at"	"FAM104B"	90736	"ENSG00000182518"
+"227624_at"	"TET2"	54790	"ENSG00000168769"
+"228095_at"	"PHF14"	9678	"ENSG00000106443"
+"228262_at"	"MAP7D2"	256714	"ENSG00000184368"
+"227296_at"	"MFSD3"	113655	"ENSG00000167700"
+"227873_at"	"TXNDC15"	79770	"ENSG00000113621"
+"229603_at"	"BBS12"	166379	"ENSG00000181004"
+"229657_at"	"THRB"	7068	"ENSG00000151090"
+"228716_at"	"THRB"	7068	"ENSG00000151090"
+"227592_at"	"ALDH16A1"	126133	"ENSG00000161618"
+"228880_at"	"NAT8L"	339983	"ENSG00000185818"
+"226335_at"	"RPS6KA3"	6197	"ENSG00000177189"
+"227556_at"	"NME7"	29922	"ENSG00000143156"
+"226376_at"	"UNK"	85451	"ENSG00000132478"
+"228357_at"	"UNK"	85451	"ENSG00000132478"
+"229922_at"	"GPRIN1"	114787	"ENSG00000169258"
+"227975_at"	"GPRIN1"	114787	"ENSG00000169258"
+"225763_at"	"RCSD1"	92241	"ENSG00000198771"
+"229670_at"	"RCSD1"	92241	"ENSG00000198771"
+"226710_at"	"C8orf82"	414919	"ENSG00000213563"
+"229734_at"	"IGSF9B"	22997	"ENSG00000080854"
+"225722_at"	"UCK2"	7371	"ENSG00000143179"
+"225868_at"	"TRIM47"	91107	"ENSG00000132481"
+"227731_at"	"CNBP"	7555	"ENSG00000169714"
+"227254_at"	"POU2F1"	5451	"ENSG00000143190"
+"229753_at"	"POU2F1"	5451	"ENSG00000143190"
+"229835_s_at"	""	NA	"ENSG00000289837"
+"230290_at"	"SCUBE3"	222663	"ENSG00000146197"
+"228407_at"	"SCUBE3"	222663	"ENSG00000146197"
+"228750_at"	"COL14A1"	7373	"ENSG00000187955"
+"230030_at"	"HS6ST2"	90161	"ENSG00000171004"
+"229562_at"	"MIR7111"	102465668	"ENSG00000276712"
+"227135_at"	"NAAA"	27163	"ENSG00000138744"
+"226744_at"	"METTL16"	79066	"ENSG00000127804"
+"227470_at"	"ZNF48"	197407	"ENSG00000180035"
+"226487_at"	"FAM222A"	84915	"ENSG00000139438"
+"227294_at"	"ZNF689"	115509	"ENSG00000156853"
+"227445_at"	"ZNF689"	115509	"ENSG00000156853"
+"229810_at"	"RSPH3"	83861	"ENSG00000130363"
+"229723_at"	"TAGAP"	117289	"ENSG00000164691"
+"230447_at"	"FAXC"	84553	"ENSG00000146267"
+"226412_at"	"PNISR"	25957	"ENSG00000132424"
+"230438_at"	"TBX15"	6913	"ENSG00000092607"
+"229618_at"	"SNX16"	64089	"ENSG00000104497"
+"228318_s_at"	"UVSSA"	57654	"ENSG00000163945"
+"229851_s_at"	"C11orf54"	28970	"ENSG00000182919"
+"226944_at"	"HTRA3"	94031	"ENSG00000170801"
+"228580_at"	"HTRA3"	94031	"ENSG00000170801"
+"228709_at"	"TPR"	7175	"ENSG00000047410"
+"226779_at"	"LMBRD2"	92255	"ENSG00000164187"
+"226946_at"	"NADK2"	133686	"ENSG00000152620"
+"229299_at"	"NADK2"	133686	"ENSG00000152620"
+"228594_at"	"NADK2"	133686	"ENSG00000152620"
+"226939_at"	"CPEB2"	132864	"ENSG00000137449"
+"226134_s_at"	"MSI2"	124540	"ENSG00000153944"
+"226177_at"	"GLTP"	51228	"ENSG00000139433"
+"227468_at"	"CPT1C"	126129	"ENSG00000169169"
+"225847_at"	"NCEH1"	57552	"ENSG00000144959"
+"226973_at"	"VSTM2L"	128434	"ENSG00000132821"
+"228341_at"	"NUDT16"	131870	"ENSG00000198585"
+"226464_at"	"DIPK2A"	205428	"ENSG00000181744"
+"228079_at"	"DIPK2A"	205428	"ENSG00000181744"
+"227667_at"	"CUEDC1"	404093	"ENSG00000180891"
+"226089_at"	"RABL3"	285282	"ENSG00000144840"
+"226090_x_at"	"RABL3"	285282	"ENSG00000144840"
+"229246_at"	""	NA	"ENSG00000264112"
+"227164_at"	"SRSF1"	6426	"ENSG00000136450"
+"229106_at"	"DYNLL2"	140735	"ENSG00000264364"
+"225923_at"	"VAPB"	9217	"ENSG00000124164"
+"225645_at"	"EHF"	26298	"ENSG00000135373"
+"228304_at"	"RBM43"	375287	"ENSG00000184898"
+"226843_s_at"	"TENT4B"	64282	"ENSG00000121274"
+"229043_at"	"TENT4B"	64282	"ENSG00000121274"
+"227263_at"	"C8orf58"	541565	"ENSG00000241852"
+"229554_at"	"LUM"	4060	"ENSG00000139329"
+"230313_at"	""	NA	"ENSG00000260755"
+"228011_at"	"CIBAR1"	137392	"ENSG00000188343"
+"225810_at"	"MTMR10"	54893	"ENSG00000166912"
+"229967_at"	"CMTM2"	146225	"ENSG00000140932"
+"228386_s_at"	"DDX59"	83479	"ENSG00000118197"
+"228385_at"	"DDX59"	83479	"ENSG00000118197"
+"229234_at"	"ZC3H12B"	340554	"ENSG00000102053"
+"228462_at"	"IRX2"	153572	"ENSG00000170561"
+"225680_at"	"LRWD1"	222229	"ENSG00000161036"
+"228680_at"	"KIF3A"	11127	"ENSG00000131437"
+"229463_at"	"NTRK2"	4915	"ENSG00000148053"
+"228308_at"	"FKBP11"	51303	"ENSG00000134285"
+"228581_at"	"KCNJ10"	3766	"ENSG00000177807"
+"230071_at"	"SEPTIN11"	55752	"ENSG00000138758"
+"228817_at"	"ALG9"	79796	"ENSG00000086848"
+"228993_s_at"	"BBIP1"	92482	"ENSG00000214413"
+"228509_at"	"SPHKAP"	80309	"ENSG00000153820"
+"227103_s_at"	"EEF1AKMT4"	110599564	"ENSG00000284753"
+"228648_at"	"LRG1"	116844	"ENSG00000171236"
+"227420_at"	"TNFAIP8L1"	126282	"ENSG00000185361"
+"229254_at"	"MFSD4A"	148808	"ENSG00000174514"
+"226592_at"	"ZNF618"	114991	"ENSG00000157657"
+"226590_at"	"ZNF618"	114991	"ENSG00000157657"
+"225975_at"	"PCDH18"	54510	"ENSG00000189184"
+"225977_at"	"PCDH18"	54510	"ENSG00000189184"
+"229989_at"	"FDXACB1"	91893	"ENSG00000255561"
+"225781_at"	"MAPK9"	5601	"ENSG00000050748"
+"227334_at"	"USP54"	159195	"ENSG00000166348"
+"226328_at"	"KLF16"	83855	"ENSG00000129911"
+"228893_at"	""	NA	"ENSG00000267232"
+"227292_at"	"SPINDOC"	144097	"ENSG00000168005"
+"225614_at"	"SAAL1"	113174	"ENSG00000166788"
+"229607_at"	""	NA	"ENSG00000267283"
+"226048_at"	"MAPK8"	5599	"ENSG00000107643"
+"229664_at"	"MAPK8"	5599	"ENSG00000107643"
+"226046_at"	"MAPK8"	5599	"ENSG00000107643"
+"227266_s_at"	"FYB1"	2533	"ENSG00000082074"
+"226421_at"	"AMMECR1"	9949	"ENSG00000101935"
+"229339_at"	"MYOCD"	93649	"ENSG00000141052"
+"230174_at"	"LYPLAL1"	127018	"ENSG00000143353"
+"226851_at"	"LYPLAL1"	127018	"ENSG00000143353"
+"229726_at"	"GRAP"	10750	"ENSG00000154016"
+"227003_at"	"RAB28"	9364	"ENSG00000157869"
+"225808_at"	"METTL23"	124512	"ENSG00000181038"
+"229288_at"	"EPHA7"	2045	"ENSG00000135333"
+"227327_at"	"MEGF8"	1954	"ENSG00000105429"
+"230112_at"	"MARCHF4"	57574	"ENSG00000144583"
+"227491_at"	"ELOVL6"	79071	"ENSG00000170522"
+"225913_at"	"PEAK1"	79834	"ENSG00000173517"
+"226960_at"	"CXCL17"	284340	"ENSG00000189377"
+"227760_at"	"IGFBPL1"	347252	"ENSG00000137142"
+"227606_s_at"	"STAMBPL1"	57559	"ENSG00000138134"
+"227607_at"	"STAMBPL1"	57559	"ENSG00000138134"
+"226867_at"	"DENND4C"	55667	"ENSG00000137145"
+"226381_at"	"SLC35F5"	80255	"ENSG00000115084"
+"225872_at"	"SLC35F5"	80255	"ENSG00000115084"
+"226175_at"	"TTC9C"	283237	"ENSG00000162222"
+"227306_at"	""	NA	"ENSG00000260912"
+"229110_at"	"SLC24A2"	25769	"ENSG00000155886"
+"226336_at"	"PPIA"	5478	"ENSG00000196262"
+"226221_at"	"RIC1"	57589	"ENSG00000107036"
+"226222_at"	"RIC1"	57589	"ENSG00000107036"
+"230049_at"	"TAF6L"	10629	"ENSG00000162227"
+"227085_at"	"H2AZ2"	94239	"ENSG00000105968"
+"228285_at"	"TDRD9"	122402	"ENSG00000156414"
+"226762_at"	"PURB"	5814	"ENSG00000146676"
+"227718_at"	"PURB"	5814	"ENSG00000146676"
+"229560_at"	"TLR8"	51311	"ENSG00000101916"
+"230188_at"	"NIPAL4"	348938	"ENSG00000172548"
+"229315_at"	"JPX"	554203	"ENSG00000225470"
+"229030_at"	"CAPN8"	388743	"ENSG00000203697"
+"229388_at"	""	414245	"ENSG00000227540"
+"225652_at"	"FARP2"	9855	"ENSG00000006607"
+"228126_x_at"	"CTXN1"	404217	"ENSG00000178531"
+"225858_s_at"	"XIAP"	331	"ENSG00000101966"
+"225859_at"	"XIAP"	331	"ENSG00000101966"
+"228363_at"	"XIAP"	331	"ENSG00000101966"
+"227178_at"	"CELF2"	10659	"ENSG00000048740"
+"228736_at"	"HELQ"	113510	"ENSG00000163312"
+"227156_at"	"CASK"	8573	"ENSG00000147044"
+"228019_s_at"	"MRPS18C"	51023	"ENSG00000163319"
+"226521_s_at"	"ABRAXAS1"	84142	"ENSG00000163322"
+"226695_at"	"PRRX1"	5396	"ENSG00000116132"
+"229168_at"	"COL23A1"	91522	"ENSG00000050767"
+"228738_at"	"D2HGDH"	728294	"ENSG00000180902"
+"226432_at"	"ETNK1"	55500	"ENSG00000139163"
+"227190_at"	"TMEM37"	140738	"ENSG00000171227"
+"229420_at"	""	NA	"ENSG00000264577"
+"227804_at"	"TLCD1"	116238	"ENSG00000160606"
+"228573_at"	"ANTXR2"	118429	"ENSG00000163297"
+"227265_at"	"FGL2"	10875	"ENSG00000127951"
+"227228_s_at"	"CCDC88C"	440193	"ENSG00000015133"
+"228076_s_at"	"NOL6"	65083	"ENSG00000165271"
+"229169_at"	"CFAP70"	118491	"ENSG00000156042"
+"229170_s_at"	"CFAP70"	118491	"ENSG00000156042"
+"227735_s_at"	"GPR15LG"	387695	"ENSG00000188373"
+"227736_at"	"GPR15LG"	387695	"ENSG00000188373"
+"228479_at"	"SOAT1"	6646	"ENSG00000057252"
+"226655_at"	"STX17"	55014	"ENSG00000136874"
+"228091_at"	"STX17"	55014	"ENSG00000136874"
+"226662_at"	"STX17"	55014	"ENSG00000136874"
+"225551_at"	"CNST"	163882	"ENSG00000162852"
+"225550_at"	"CNST"	163882	"ENSG00000162852"
+"230275_at"	"ARSI"	340075	"ENSG00000183876"
+"228258_at"	"TBC1D10C"	374403	"ENSG00000175463"
+"227982_at"	"SEPSECS"	51091	"ENSG00000109618"
+"226284_at"	"ZBTB2"	57621	"ENSG00000181472"
+"227140_at"	"INHBA"	3624	"ENSG00000122641"
+"228875_at"	"FAM162B"	221303	"ENSG00000183807"
+"226502_at"	"ELMOD2"	255520	"ENSG00000179387"
+"230157_at"	"CDH24"	64403	"ENSG00000139880"
+"226234_at"	"GDF11"	10220	"ENSG00000135414"
+"226232_at"	"GDF11"	10220	"ENSG00000135414"
+"229069_at"	"SARNP"	84324	"ENSG00000205323"
+"228084_at"	"PLA2G12A"	81579	"ENSG00000123739"
+"225684_at"	"SKA2"	348235	"ENSG00000182628"
+"226102_at"	"ZKSCAN8"	7745	"ENSG00000198315"
+"228273_at"	"PRR11"	55771	"ENSG00000068489"
+"228696_at"	"SLC45A3"	85414	"ENSG00000158715"
+"229380_at"	"ILDR2"	387597	"ENSG00000143195"
+"227798_at"	"SMAD1"	4086	"ENSG00000170365"
+"229309_at"	"ADRB1"	153	"ENSG00000043591"
+"227701_at"	"CCDC186"	55088	"ENSG00000165813"
+"229399_at"	"CCDC186"	55088	"ENSG00000165813"
+"228883_at"	"TUB"	7275	"ENSG00000166402"
+"228882_at"	"TUB"	7275	"ENSG00000166402"
+"228835_at"	"TMEM59"	9528	"ENSG00000116209"
+"230218_at"	"HIC1"	3090	"ENSG00000177374"
+"229498_at"	"MBNL3"	55796	"ENSG00000076770"
+"230113_at"	"MBNL3"	55796	"ENSG00000076770"
+"226599_at"	"FHDC1"	85462	"ENSG00000137460"
+"226247_at"	"PLEKHA1"	59338	"ENSG00000107679"
+"227122_at"	"ZNF791"	163049	"ENSG00000173875"
+"229887_at"	"ALS2CL"	259173	"ENSG00000178038"
+"229597_s_at"	"WDFY4"	57705	"ENSG00000128815"
+"226282_at"	"PTPN14"	5784	"ENSG00000152104"
+"229177_at"	"C16orf89"	146556	"ENSG00000153446"
+"230027_s_at"	"MRPL43"	84545	"ENSG00000055950"
+"230026_at"	"MRPL43"	84545	"ENSG00000055950"
+"225637_at"	"DEF8"	54849	"ENSG00000140995"
+"225567_at"	"INAFM2"	100505573	"ENSG00000259330"
+"229579_s_at"	"DISP2"	85455	"ENSG00000140323"
+"227010_at"	"WASL-DT"	NA	"ENSG00000272686"
+"226853_at"	"BMP2K"	55589	"ENSG00000138756"
+"226314_at"	"CHST14"	113189	"ENSG00000169105"
+"230252_at"	"LPAR5"	57121	"ENSG00000184574"
+"227820_at"	"TBC1D25"	4943	"ENSG00000068354"
+"226173_at"	"TBC1D25"	4943	"ENSG00000068354"
+"227761_at"	"MYO5A"	4644	"ENSG00000197535"
+"227463_at"	"ACE"	1636	"ENSG00000159640"
+"228340_at"	"TLE3"	7090	"ENSG00000140332"
+"228469_at"	"ETFDH"	2110	"ENSG00000171503"
+"230405_at"	"IRF1-AS1"	NA	"ENSG00000197536"
+"225976_at"	"BTF3L4"	91408	"ENSG00000134717"
+"227131_at"	"MAP3K3"	4215	"ENSG00000198909"
+"228952_at"	"ENPP1"	5167	"ENSG00000197594"
+"229088_at"	"ENPP1"	5167	"ENSG00000197594"
+"227841_at"	"AMDHD2"	51005	"ENSG00000162066"
+"230479_at"	"EIF3F"	8665	"ENSG00000175390"
+"228602_at"	"SGCD"	6444	"ENSG00000170624"
+"229712_at"	"SNAPC3"	6619	"ENSG00000164975"
+"229058_at"	"ANKRD16"	54522	"ENSG00000134461"
+"226145_s_at"	"FRAS1"	80144	"ENSG00000138759"
+"225647_s_at"	"CTSC"	1075	"ENSG00000109861"
+"225646_at"	"CTSC"	1075	"ENSG00000109861"
+"225710_at"	"GNB4"	59345	"ENSG00000114450"
+"228730_s_at"	"SCRN2"	90507	"ENSG00000141295"
+"227955_s_at"	"EFNA5"	1946	"ENSG00000184349"
+"226402_at"	"CYP2U1"	113612	"ENSG00000155016"
+"226393_at"	"CYP2U1"	113612	"ENSG00000155016"
+"226803_at"	"CHMP4C"	92421	"ENSG00000164695"
+"228539_at"	"KANTR"	102723508	"ENSG00000232593"
+"229869_at"	"KANTR"	102723508	"ENSG00000232593"
+"227324_at"	"COQ8B"	79934	"ENSG00000123815"
+"227875_at"	"KLHL13"	90293	"ENSG00000003096"
+"229577_at"	"GPAT4"	137964	"ENSG00000158669"
+"225579_at"	"SLC66A3"	130814	"ENSG00000162976"
+"227489_at"	"SMURF2"	64750	"ENSG00000108854"
+"228503_at"	"RPS6KA6"	27330	"ENSG00000072133"
+"228502_at"	"RPS6KA6"	27330	"ENSG00000072133"
+"229082_at"	"CCDC125"	202243	"ENSG00000183323"
+"226768_at"	"GIGYF1"	64599	"ENSG00000146830"
+"228755_at"	"GIGYF1"	64599	"ENSG00000146830"
+"227410_at"	"FAM43A"	131583	"ENSG00000185112"
+"229355_at"	"UBE2D3"	7323	"ENSG00000109332"
+"225886_at"	"DDX5"	1655	"ENSG00000108654"
+"225832_s_at"	"DAGLB"	221955	"ENSG00000164535"
+"225833_at"	"DAGLB"	221955	"ENSG00000164535"
+"226640_at"	"DAGLB"	221955	"ENSG00000164535"
+"225828_at"	"DAGLB"	221955	"ENSG00000164535"
+"227876_at"	"ARHGAP39"	80728	"ENSG00000147799"
+"228122_at"	"CCDC66"	285331	"ENSG00000180376"
+"227549_x_at"	"ZDHHC24"	254359	"ENSG00000174165"
+"229142_s_at"	"ZDHHC24"	254359	"ENSG00000174165"
+"228237_at"	"PAPPA2"	60676	"ENSG00000116183"
+"228902_at"	"NUP214"	8021	"ENSG00000126883"
+"229285_at"	"RNASEL"	6041	"ENSG00000135828"
+"227942_s_at"	"CRIPT"	9419	"ENSG00000119878"
+"229535_at"	"PTPMT1"	114971	"ENSG00000110536"
+"225901_at"	"PTPMT1"	114971	"ENSG00000110536"
+"228954_at"	"LYSMD4"	145748	"ENSG00000183060"
+"226140_s_at"	"OTUD1"	220213	"ENSG00000165312"
+"227476_at"	"LPGAT1"	9926	"ENSG00000123684"
+"226972_s_at"	"CCDC136"	64753	"ENSG00000128596"
+"229021_at"	"MCTP2"	55784	"ENSG00000140563"
+"229005_at"	"MCTP2"	55784	"ENSG00000140563"
+"227991_x_at"	"ZBTB43"	23099	"ENSG00000169155"
+"229553_at"	"PGM2L1"	283209	"ENSG00000165434"
+"229256_at"	"PGM2L1"	283209	"ENSG00000165434"
+"226733_at"	"PFKFB2"	5208	"ENSG00000123836"
+"227647_at"	"KCNE3"	10008	"ENSG00000175538"
+"225775_at"	"TSPAN33"	340348	"ENSG00000158457"
+"228922_at"	"SHF"	90525	"ENSG00000138606"
+"228888_at"	"STAC2"	342667	"ENSG00000141750"
+"228720_at"	"SORCS2"	57537	"ENSG00000184985"
+"230411_at"	"UBE2V2"	7336	"ENSG00000169139"
+"228734_at"	"UBE2V2"	7336	"ENSG00000169139"
+"228867_at"	"TATDN3"	128387	"ENSG00000203705"
+"227376_at"	"GLI3"	2737	"ENSG00000106571"
+"226538_at"	"MAN2A1"	4124	"ENSG00000112893"
+"227605_at"	"AIMP1"	9255	"ENSG00000164022"
+"225864_at"	"LRATD2"	157638	"ENSG00000168672"
+"228870_at"	"LRATD2"	157638	"ENSG00000168672"
+"229906_at"	"ARMC7"	79637	"ENSG00000125449"
+"225827_at"	"AGO2"	27161	"ENSG00000123908"
+"225569_at"	"AGO2"	27161	"ENSG00000123908"
+"230117_at"	"VSTM2A"	222008	"ENSG00000170419"
+"229946_at"	"FAM168B"	130074	"ENSG00000152102"
+"227877_at"	"ANXA2R"	389289	"ENSG00000177721"
+"227033_at"	"PDIA3"	2923	"ENSG00000167004"
+"229453_at"	"PDIA3"	2923	"ENSG00000167004"
+"226263_at"	"SNRNP48"	154007	"ENSG00000168566"
+"228041_at"	"AASDH"	132949	"ENSG00000157426"
+"229345_at"	"RTN4RL2"	349667	"ENSG00000186907"
+"229746_x_at"	"CEBPZOS"	100505876	"ENSG00000218739"
+"225681_at"	"CTHRC1"	115908	"ENSG00000164932"
+"230379_x_at"	"NDUFAF7"	55471	"ENSG00000003509"
+"228433_at"	"NFYA"	4800	"ENSG00000001167"
+"228431_at"	"NFYA"	4800	"ENSG00000001167"
+"227903_x_at"	"TPGS1"	91978	"ENSG00000141933"
+"228951_at"	"SLC38A7"	55238	"ENSG00000103042"
+"226573_at"	"DIRAS1"	148252	"ENSG00000176490"
+"229677_at"	"SLC39A3"	29985	"ENSG00000141873"
+"229572_at"	"ATP6V0A2"	23545	"ENSG00000185344"
+"225685_at"	"CDC42EP3"	10602	"ENSG00000163171"
+"227722_at"	"RPS23"	6228	"ENSG00000186468"
+"230124_at"	"PRKCH"	5583	"ENSG00000027075"
+"226506_at"	"THSD4"	79875	"ENSG00000187720"
+"227520_at"	"TXLNG"	55787	"ENSG00000086712"
+"229817_at"	"ZNF608"	57507	"ENSG00000168916"
+"227425_at"	"REPS2"	9185	"ENSG00000169891"
+"227022_at"	"GNPDA2"	132789	"ENSG00000163281"
+"228265_at"	""	NA	"ENSG00000286623"
+"225898_at"	"WDR54"	84058	"ENSG00000005448"
+"230149_at"	""	NA	"ENSG00000272936"
+"227587_at"	"KRI1"	65095	"ENSG00000129347"
+"227976_at"	"SMIM10"	644538	"ENSG00000184785"
+"227110_at"	"HNRNPC"	3183	"ENSG00000092199"
+"227577_at"	"EXOC8"	149371	"ENSG00000116903"
+"226277_at"	"CERT1"	10087	"ENSG00000113163"
+"229195_at"	"MESP1"	55897	"ENSG00000166823"
+"225671_at"	"SPNS2"	124976	"ENSG00000183018"
+"225770_at"	"RSPRY1"	89970	"ENSG00000159579"
+"225774_at"	"RSPRY1"	89970	"ENSG00000159579"
+"225773_at"	"RSPRY1"	89970	"ENSG00000159579"
+"225963_at"	"KLHL42"	57542	"ENSG00000087448"
+"225961_at"	"KLHL42"	57542	"ENSG00000087448"
+"225732_at"	"KLHL42"	57542	"ENSG00000087448"
+"226829_at"	"AFAP1L2"	84632	"ENSG00000169129"
+"229539_at"	"ABCB8"	11194	"ENSG00000197150"
+"229730_at"	"SMTNL2"	342527	"ENSG00000188176"
+"228107_at"	"C8orf88"	100127983	"ENSG00000253250"
+"226338_at"	"PIP4P2"	55529	"ENSG00000155099"
+"227765_at"	"OTUD6B-AS1"	NA	"ENSG00000253738"
+"226341_at"	"OTUD6B-AS1"	NA	"ENSG00000253738"
+"227613_at"	"ZNF331"	55422	"ENSG00000130844"
+"228460_at"	"ZNF319"	57567	"ENSG00000166188"
+"226157_at"	"TFDP2"	7029	"ENSG00000114126"
+"228191_at"	"FLVCR1"	28982	"ENSG00000162769"
+"229074_at"	"EHD4"	30844	"ENSG00000103966"
+"225570_at"	"SLC41A1"	254428	"ENSG00000133065"
+"226354_at"	"LACTB"	114294	"ENSG00000103642"
+"228074_at"	"ITPRIPL2"	162073	"ENSG00000205730"
+"227954_at"	"ITPRIPL2"	162073	"ENSG00000205730"
+"227514_at"	"ITPRIPL2"	162073	"ENSG00000205730"
+"227792_at"	"ITPRIPL2"	162073	"ENSG00000205730"
+"228171_s_at"	"PLEKHG4"	25894	"ENSG00000196155"
+"226958_s_at"	"MED11"	400569	"ENSG00000161920"
+"226027_at"	"SWI5"	375757	"ENSG00000175854"
+"228211_at"	"ERCC6L2"	375748	"ENSG00000182150"
+"229710_at"	"ERCC6L2"	375748	"ENSG00000182150"
+"229743_at"	"ZNF438"	220929	"ENSG00000183621"
+"226001_at"	"KLHL5"	51088	"ENSG00000109790"
+"227565_at"	"KLHL5"	51088	"ENSG00000109790"
+"230021_at"	"TICRR"	90381	"ENSG00000140534"
+"229405_at"	"KIF7"	374654	"ENSG00000166813"
+"230041_at"	"POU2F2-AS2"	NA	"ENSG00000259436"
+"228919_at"	"DANT2"	642776	"ENSG00000235244"
+"228512_at"	"PTCD3"	55037	"ENSG00000132300"
+"228020_at"	"PTCD3"	55037	"ENSG00000132300"
+"228590_at"	"PTCD3"	55037	"ENSG00000132300"
+"227300_at"	"TMEM119"	338773	"ENSG00000183160"
+"230079_at"	"ST7L"	54879	"ENSG00000007341"
+"229011_at"	"EMP1"	2012	"ENSG00000134531"
+"225784_s_at"	"ZC4H2"	55906	"ENSG00000126970"
+"225937_at"	"CUX1"	1523	"ENSG00000257923"
+"227069_at"	"CUX1"	1523	"ENSG00000257923"
+"225935_at"	"CUX1"	1523	"ENSG00000257923"
+"226615_at"	"XPR1"	9213	"ENSG00000143324"
+"226003_at"	"KIF21A"	55605	"ENSG00000139116"
+"226594_at"	"ENTPD5"	957	"ENSG00000187097"
+"225751_at"	"RBM17"	84991	"ENSG00000134453"
+"226453_at"	"RNASEH2C"	84153	"ENSG00000172922"
+"227543_at"	"RNASEH2C"	84153	"ENSG00000172922"
+"229396_at"	"OVOL1"	5017	"ENSG00000172818"
+"229065_at"	"SLC35F3"	148641	"ENSG00000183780"
+"228785_at"	"ZNF281"	23528	"ENSG00000162702"
+"229475_at"	"MAEL"	84944	"ENSG00000143194"
+"227866_at"	"TIAM2"	26230	"ENSG00000146426"
+"229622_at"	"ERFE"	151176	"ENSG00000178752"
+"227248_at"	"PLEKHH3"	79990	"ENSG00000068137"
+"228583_at"	"LIN52"	91750	"ENSG00000205659"
+"229356_x_at"	"INO80"	54617	"ENSG00000128908"
+"226446_at"	"HES6"	55502	"ENSG00000144485"
+"228773_at"	"ZDHHC12-DT"	100506100	"ENSG00000223478"
+"225765_at"	"TNPO1"	3842	"ENSG00000083312"
+"225766_s_at"	"TNPO1"	3842	"ENSG00000083312"
+"229941_at"	"FAM166B"	730112	"ENSG00000215187"
+"225634_at"	"ZC3HAV1"	56829	"ENSG00000105939"
+"227458_at"	"CD274"	29126	"ENSG00000120217"
+"227597_at"	"DIS3L2"	129563	"ENSG00000144535"
+"227038_at"	"SGMS2"	166929	"ENSG00000164023"
+"230282_at"	"TSPAN3"	10099	"ENSG00000140391"
+"229568_at"	"MOB3B"	79817	"ENSG00000120162"
+"226844_at"	"MOB3B"	79817	"ENSG00000120162"
+"225919_s_at"	"C9orf72"	203228	"ENSG00000147894"
+"229353_s_at"	"NUCKS1"	64710	"ENSG00000069275"
+"227687_at"	"HYLS1"	219844	"ENSG00000198331"
+"227111_at"	"ZBTB34"	403341	"ENSG00000177125"
+"228176_at"	"S1PR3"	1903	"ENSG00000213694"
+"229824_at"	"SHC3"	53358	"ENSG00000148082"
+"225621_at"	"ALG2"	85365	"ENSG00000119523"
+"226899_at"	"UNC5B"	219699	"ENSG00000107731"
+"226908_at"	"LRIG3"	121227	"ENSG00000139263"
+"227068_at"	"PGK1"	5230	"ENSG00000102144"
+"228483_s_at"	"PGK1"	5230	"ENSG00000102144"
+"226111_s_at"	"ZNF385A"	25946	"ENSG00000161642"
+"226255_at"	"ZBTB33"	10009	"ENSG00000177485"
+"229089_at"	"ZBTB49"	166793	"ENSG00000168826"
+"225771_at"	"AP1G1"	164	"ENSG00000166747"
+"225754_at"	"AP1G1"	164	"ENSG00000166747"
+"226110_at"	"PTAR1"	375743	"ENSG00000188647"
+"228485_s_at"	"SLC44A1"	23446	"ENSG00000070214"
+"227620_at"	"SLC44A1"	23446	"ENSG00000070214"
+"228486_at"	"SLC44A1"	23446	"ENSG00000070214"
+"229290_at"	"DAPL1"	92196	"ENSG00000163331"
+"228189_at"	"BAG4"	9530	"ENSG00000156735"
+"225916_at"	"ZNF131"	7690	"ENSG00000172262"
+"228212_at"	"ISM2"	145501	"ENSG00000100593"
+"228781_at"	"STN1"	79991	"ENSG00000107960"
+"230417_at"	"GALNT16"	57452	"ENSG00000100626"
+"230418_s_at"	"GALNT16"	57452	"ENSG00000100626"
+"229190_at"	"LINC02482"	NA	"ENSG00000251580"
+"229189_s_at"	"LINC02482"	NA	"ENSG00000251580"
+"230404_at"	"C5orf63"	401207	"ENSG00000164241"
+"229860_x_at"	"C4orf48"	401115	"ENSG00000243449"
+"225701_at"	"AKNA"	80709	"ENSG00000106948"
+"226932_at"	"SSPN"	8082	"ENSG00000123096"
+"228231_at"	"SNX8"	29886	"ENSG00000106266"
+"228152_s_at"	"DDX60L"	91351	"ENSG00000181381"
+"226452_at"	"PDK1"	5163	"ENSG00000152256"
+"229033_s_at"	"PWWP3A"	84939	"ENSG00000160953"
+"228157_at"	"ZNF207"	7756	"ENSG00000010244"
+"229765_at"	"ZNF207"	7756	"ENSG00000010244"
+"227682_at"	"SPPL2A"	84888	"ENSG00000138600"
+"228478_at"	"SPPL2A"	84888	"ENSG00000138600"
+"226353_at"	"SPPL2A"	84888	"ENSG00000138600"
+"229131_at"	"EXD2"	55218	"ENSG00000081177"
+"229828_at"	"CDC73"	79577	"ENSG00000134371"
+"226597_at"	"REEP6"	92840	"ENSG00000115255"
+"226052_at"	"BRD4"	23476	"ENSG00000141867"
+"226054_at"	"BRD4"	23476	"ENSG00000141867"
+"227544_at"	"TMEM229B"	161145	"ENSG00000198133"
+"226849_at"	"DENND1A"	57706	"ENSG00000119522"
+"229983_at"	"TIGD2"	166815	"ENSG00000180346"
+"227375_at"	"ANKRD13C"	81573	"ENSG00000118454"
+"229540_at"	"RBPJ"	3516	"ENSG00000168214"
+"230376_at"	"GTF2A2"	2958	"ENSG00000140307"
+"228507_at"	"PDE3A"	5139	"ENSG00000172572"
+"227461_at"	"STON2"	85439	"ENSG00000140022"
+"225900_at"	"EXOC6B"	23233	"ENSG00000144036"
+"226510_at"	"HEATR5A"	25938	"ENSG00000129493"
+"228323_at"	"KNL1"	57082	"ENSG00000137812"
+"225601_at"	"HMGB3"	3149	"ENSG00000029993"
+"227872_at"	"POLR3A"	11128	"ENSG00000148606"
+"228287_at"	"ING5"	84289	"ENSG00000168395"
+"229197_at"	"ING5"	84289	"ENSG00000168395"
+"229573_at"	"USP9X"	8239	"ENSG00000124486"
+"226309_at"	"DNAL1"	83544	"ENSG00000119661"
+"230083_at"	"USP53"	54532	"ENSG00000145390"
+"226445_s_at"	"TRIM41"	90933	"ENSG00000146063"
+"227350_at"	"HELLS"	3070	"ENSG00000119969"
+"226901_at"	"C17orf58"	284018	"ENSG00000186665"
+"228281_at"	"DDIAS"	220042	"ENSG00000165490"
+"228795_at"	"PRKCB"	5579	"ENSG00000166501"
+"227817_at"	"PRKCB"	5579	"ENSG00000166501"
+"227824_at"	"PRKCB"	5579	"ENSG00000166501"
+"228003_at"	"RAB30"	27314	"ENSG00000137502"
+"229072_at"	"RAB30"	27314	"ENSG00000137502"
+"227842_at"	"RAB30"	27314	"ENSG00000137502"
+"228390_at"	"RAB30"	27314	"ENSG00000137502"
+"227753_at"	"TMEM139"	135932	"ENSG00000178826"
+"229634_at"	"TMEM139"	135932	"ENSG00000178826"
+"226022_at"	"SASH1"	23328	"ENSG00000111961"
+"226036_x_at"	"CASP2"	835	"ENSG00000106144"
+"226032_at"	"CASP2"	835	"ENSG00000106144"
+"226462_at"	"STXBP6"	29091	"ENSG00000168952"
+"228814_at"	"RBBP6"	5930	"ENSG00000122257"
+"225737_s_at"	"FBXO22"	26263	"ENSG00000167196"
+"225736_at"	"FBXO22"	26263	"ENSG00000167196"
+"225734_at"	"FBXO22"	26263	"ENSG00000167196"
+"226970_at"	"FBXO33"	254170	"ENSG00000165355"
+"227521_at"	"FBXO33"	254170	"ENSG00000165355"
+"229839_at"	"SCARA5"	286133	"ENSG00000168079"
+"225724_at"	"PSMA3-AS1"	379025	"ENSG00000257621"
+"227075_at"	"ELP3"	55140	"ENSG00000134014"
+"226518_at"	"KCTD10"	83892	"ENSG00000110906"
+"229517_at"	"PTPDC1"	138639	"ENSG00000158079"
+"226962_at"	"ZBTB41"	360023	"ENSG00000177888"
+"228373_at"	"HAPSTR1"	29035	"ENSG00000182831"
+"228860_at"	"UBE3B"	89910	"ENSG00000151148"
+"228942_s_at"	"DAB2IP"	153090	"ENSG00000136848"
+"226694_at"	"PALM2AKAP2"	445815	"ENSG00000157654"
+"228384_s_at"	"PYROXD2"	84795	"ENSG00000119943"
+"227393_at"	"ANO9"	338440	"ENSG00000185101"
+"228427_at"	"FBXO16"	157574	"ENSG00000214050"
+"227239_at"	"HYCC1"	84668	"ENSG00000122591"
+"230427_s_at"	"BAG5"	9529	"ENSG00000166170"
+"230335_at"	"C9orf50"	375759	"ENSG00000179058"
+"225852_at"	"ANKRD17"	26057	"ENSG00000132466"
+"230039_at"	"TRAPPC9"	83696	"ENSG00000167632"
+"225672_at"	"GOLGA2"	2801	"ENSG00000167110"
+"229358_at"	"IHH"	3549	"ENSG00000163501"
+"230488_s_at"	"DBH-AS1"	138948	"ENSG00000225756"
+"225826_at"	"MMAB"	326625	"ENSG00000139428"
+"226168_at"	"ZFAND2B"	130617	"ENSG00000158552"
+"227732_at"	"ATXN7L1"	222255	"ENSG00000146776"
+"228508_at"	"MAML3"	55534	"ENSG00000196782"
+"227755_at"	"ERN1"	2081	"ENSG00000178607"
+"226095_s_at"	"ATXN1L"	342371	"ENSG00000224470"
+"227373_at"	"ATXN1L"	342371	"ENSG00000224470"
+"229476_s_at"	"THRSP"	7069	"ENSG00000151365"
+"229477_at"	"THRSP"	7069	"ENSG00000151365"
+"228879_at"	"SNORD104"	NA	"ENSG00000199753"
+"229432_at"	"NAGS"	162417	"ENSG00000161653"
+"229942_at"	"BNC2"	54796	"ENSG00000173068"
+"229727_x_at"	"C2CD4B"	388125	"ENSG00000205502"
+"228252_at"	"PIF1"	80119	"ENSG00000140451"
+"227203_at"	"FBXL17"	64839	"ENSG00000145743"
+"226091_s_at"	"MRFAP1"	93621	"ENSG00000179010"
+"227113_at"	"ADHFE1"	137872	"ENSG00000147576"
+"228151_at"	"ARL15"	54622	"ENSG00000185305"
+"226116_at"	"DFFA"	1676	"ENSG00000160049"
+"230064_at"	""	NA	"ENSG00000288891"
+"230279_at"	"LINC01504"	100507540	"ENSG00000225434"
+"229497_at"	"ANKDD1A"	348094	"ENSG00000166839"
+"226159_at"	"RIMOC1"	285636	"ENSG00000205765"
+"227801_at"	"TRIM59"	286827	"ENSG00000213186"
+"228701_at"	"VXN"	254778	"ENSG00000169085"
+"228751_at"	"CLK4"	57396	"ENSG00000113240"
+"225951_s_at"	"CHASERR"	NA	"ENSG00000272888"
+"226242_at"	"C1orf131"	128061	"ENSG00000143633"
+"226280_at"	"BNIP2"	663	"ENSG00000140299"
+"227776_at"	"ACER3"	55331	"ENSG00000078124"
+"227008_at"	"HDDC3"	374659	"ENSG00000184508"
+"226635_at"	"EBLN3P"	100506710	"ENSG00000281649"
+"225640_at"	"EBLN3P"	100506710	"ENSG00000281649"
+"225635_s_at"	"EBLN3P"	100506710	"ENSG00000281649"
+"230307_at"	"SLC25A21-AS1"	100129794	"ENSG00000258708"
+"227893_at"	"ERCC6L2-AS1"	100128782	"ENSG00000175611"
+"229296_at"	"LINC01503"	100506119	"ENSG00000233901"
+"226292_at"	"CAPN5"	726	"ENSG00000149260"
+"228263_at"	"TAMALIN"	160622	"ENSG00000161835"
+"226320_at"	"ALYREF"	10189	"ENSG00000183684"
+"226319_s_at"	"ALYREF"	10189	"ENSG00000183684"
+"226488_at"	"RCCD1"	91433	"ENSG00000166965"
+"226153_s_at"	"CNOT6L"	246175	"ENSG00000138767"
+"227119_at"	"CNOT6L"	246175	"ENSG00000138767"
+"229609_at"	"NUTM2A-AS1"	728190	"ENSG00000223482"
+"226568_at"	"EEIG2"	284611	"ENSG00000162636"
+"227579_at"	"FER"	2241	"ENSG00000151422"
+"227852_at"	"RP9"	6100	"ENSG00000164610"
+"225841_at"	"HENMT1"	113802	"ENSG00000162639"
+"227177_at"	"CORO2A"	7464	"ENSG00000106789"
+"229090_at"	"ZEB1-AS1"	220930	"ENSG00000237036"
+"225980_at"	"MIDEAS"	91748	"ENSG00000156030"
+"230270_at"	"PRPF38B"	55119	"ENSG00000134186"
+"230044_at"	"PCYT2"	5833	"ENSG00000185813"
+"227012_at"	"SLC25A40"	55972	"ENSG00000075303"
+"226443_at"	"PABIR1"	116224	"ENSG00000187866"
+"228768_at"	"FNIP1"	96459	"ENSG00000217128"
+"228250_at"	"FNIP1"	96459	"ENSG00000217128"
+"230323_s_at"	"TMEM45B"	120224	"ENSG00000151715"
+"226226_at"	"TMEM45B"	120224	"ENSG00000151715"
+"225583_at"	"UXS1"	80146	"ENSG00000115652"
+"230389_at"	"FNBP1"	23048	"ENSG00000187239"
+"226630_at"	"MIS18BP1"	55320	"ENSG00000129534"
+"225987_at"	"STEAP4"	79689	"ENSG00000127954"
+"229373_at"	"HRH2"	3274	"ENSG00000113749"
+"225611_at"	"MAST4"	375449	"ENSG00000069020"
+"225613_at"	"MAST4"	375449	"ENSG00000069020"
+"229152_at"	"FDCSP"	260436	"ENSG00000181617"
+"229552_at"	"HRK"	8739	"ENSG00000135116"
+"226254_s_at"	"CFAP97"	57587	"ENSG00000164323"
+"229211_at"	"DUSP28"	285193	"ENSG00000188542"
+"226355_at"	"POC1A"	25886	"ENSG00000164087"
+"227408_s_at"	"SNX25"	83891	"ENSG00000109762"
+"226161_at"	"SLC30A6"	55676	"ENSG00000152683"
+"228929_at"	"DNASE1"	1773	"ENSG00000213918"
+"226745_at"	"CYP4V2"	285440	"ENSG00000145476"
+"228391_at"	"CYP4V2"	285440	"ENSG00000145476"
+"226074_at"	"PPM1M"	132160	"ENSG00000164088"
+"229383_at"	"MARCHF1"	55016	"ENSG00000145416"
+"228537_at"	"GLI2"	2736	"ENSG00000074047"
+"225846_at"	"ESRP1"	54845	"ENSG00000104413"
+"228859_at"	"ZGRF1"	55345	"ENSG00000138658"
+"230441_at"	"PLEKHG4B"	153478	"ENSG00000153404"
+"228649_at"	"NOTUM"	147111	"ENSG00000185269"
+"226721_at"	"DPY19L4"	286148	"ENSG00000156162"
+"230106_at"	"ZXDC"	79364	"ENSG00000070476"
+"227406_at"	"GABPB1-AS1"	NA	"ENSG00000244879"
+"225752_at"	"NIPA1"	123606	"ENSG00000170113"
+"229660_at"	"SPATA33"	124045	"ENSG00000167523"
+"226033_at"	"USP31"	57478	"ENSG00000103404"
+"226035_at"	"USP31"	57478	"ENSG00000103404"
+"230016_at"	"NDUFAF6"	137682	"ENSG00000156170"
+"226139_at"	"CCDC149"	91050	"ENSG00000181982"
+"226141_at"	"CCDC149"	91050	"ENSG00000181982"
+"227512_at"	"MEX3A"	92312	"ENSG00000254726"
+"226346_at"	"MEX3A"	92312	"ENSG00000254726"
+"227702_at"	"CYP4X1"	260293	"ENSG00000186377"
+"226256_at"	"COPB2"	9276	"ENSG00000184432"
+"228316_at"	"CLHC1"	130162	"ENSG00000162994"
+"230349_at"	"XKRX"	402415	"ENSG00000182489"
+"229883_at"	"GRIN2D"	2906	"ENSG00000105464"
+"230489_at"	"CD5"	921	"ENSG00000110448"
+"226671_at"	"LAMP2"	3920	"ENSG00000005893"
+"229352_at"	"SPESP1"	246777	"ENSG00000258484"
+"230245_s_at"	"LINC00926"	283663	"ENSG00000247982"
+"225817_at"	"CGNL1"	84952	"ENSG00000128849"
+"227823_at"	"RTL5"	340526	"ENSG00000242732"
+"225638_at"	"COA6"	388753	"ENSG00000168275"
+"230408_at"	"PCGF3-AS1"	100129917	"ENSG00000249592"
+"226123_at"	"CHD7"	55636	"ENSG00000171316"
+"228816_at"	"ATP6AP1L"	NA	"ENSG00000205464"
+"226115_at"	"AHCTF1"	25909	"ENSG00000153207"
+"230147_at"	"F2RL2"	2151	"ENSG00000164220"
+"228568_at"	"MYZAP"	100820829	"ENSG00000263155"
+"228715_at"	"ZCCHC12"	170261	"ENSG00000174460"
+"229147_at"	"RASSF6"	166824	"ENSG00000169435"
+"225957_at"	"CREBRF"	153222	"ENSG00000164463"
+"225956_at"	"CREBRF"	153222	"ENSG00000164463"
+"225839_at"	"RBM33"	155435	"ENSG00000184863"
+"226732_at"	"RBM33"	155435	"ENSG00000184863"
+"225753_at"	"ZNF513"	130557	"ENSG00000163795"
+"226872_at"	"RFX2"	5990	"ENSG00000087903"
+"228980_at"	"RFFL"	117584	"ENSG00000092871"
+"227288_at"	"SREK1IP1"	285672	"ENSG00000153006"
+"226697_at"	"FAM114A1"	92689	"ENSG00000197712"
+"226435_at"	"PAPLN"	89932	"ENSG00000100767"
+"227878_s_at"	"ALKBH7"	84266	"ENSG00000125652"
+"226324_s_at"	"IFT172"	26160	"ENSG00000138002"
+"226010_at"	"SLC25A23"	79085	"ENSG00000125648"
+"230449_x_at"	"VPS13B-DT"	124900254	"ENSG00000253948"
+"229220_x_at"	"NOM1"	64434	"ENSG00000146909"
+"227161_at"	"NOM1"	64434	"ENSG00000146909"
+"230383_x_at"	"SLFN5"	162394	"ENSG00000166750"
+"226725_at"	"SLFN5"	162394	"ENSG00000166750"
+"230462_at"	"NUMB"	8650	"ENSG00000133961"
+"226085_at"	"CBX5"	23468	"ENSG00000094916"
+"226160_at"	"H6PD"	9563	"ENSG00000049239"
+"228899_at"	""	NA	"ENSG00000273314"
+"229773_at"	"SNAP23"	8773	"ENSG00000092531"
+"225755_at"	"KLHDC8B"	200942	"ENSG00000185909"
+"227691_at"	"AKAP8L"	26993	"ENSG00000011243"
+"227091_at"	"CCDC146"	57639	"ENSG00000135205"
+"229232_at"	"LRRC57"	255252	"ENSG00000180979"
+"228416_at"	"ACVR2A"	92	"ENSG00000121989"
+"225547_at"	"SNHG6"	NA	"ENSG00000245910"
+"229181_s_at"	"HAUS2"	55142	"ENSG00000137814"
+"229208_at"	"HAUS2"	55142	"ENSG00000137814"
+"228744_at"	"HAUS2"	55142	"ENSG00000137814"
+"229586_at"	"CHD9"	80205	"ENSG00000177200"
+"228270_at"	"ZNF853"	54753	"ENSG00000236609"
+"227170_at"	"ZNF316"	100131017	"ENSG00000205903"
+"227108_at"	"STARD9"	57519	"ENSG00000159433"
+"228987_at"	"CYRIB"	51571	"ENSG00000153310"
+"226015_at"	"ZNF12"	7559	"ENSG00000164631"
+"228516_at"	"CDAN1"	146059	"ENSG00000140326"
+"227839_at"	"MBD5"	55777	"ENSG00000204406"
+"226964_at"	"TTBK2"	146057	"ENSG00000128881"
+"228077_at"	"MRI1"	84245	"ENSG00000037757"
+"226183_at"	"GSK3B"	2932	"ENSG00000082701"
+"226191_at"	"GSK3B"	2932	"ENSG00000082701"
+"226040_at"	"TRIM56"	81844	"ENSG00000169871"
+"227438_at"	"ALPK1"	80216	"ENSG00000073331"
+"230080_at"	"HOXA-AS2"	NA	"ENSG00000253552"
+"226705_at"	"FGFR1"	2260	"ENSG00000077782"
+"227959_at"	"ANKRD9"	122416	"ENSG00000156381"
+"226589_at"	"TMEM192"	201931	"ENSG00000170088"
+"227671_at"	"XIST"	7503	"ENSG00000229807"
+"230412_at"	"NPAS3"	64067	"ENSG00000151322"
+"229281_at"	"NPAS3"	64067	"ENSG00000151322"
+"227006_at"	"PPP1R14A"	94274	"ENSG00000167641"
+"226180_at"	"WDR36"	134430	"ENSG00000134987"
+"226437_at"	"YIF1B"	90522	"ENSG00000167645"
+"229807_s_at"	""	NA	"ENSG00000259952"
+"228798_x_at"	"MVP-DT"	112268170	"ENSG00000238045"
+"226785_at"	"ATP11C"	286410	"ENSG00000101974"
+"226642_s_at"	"NUDCD2"	134492	"ENSG00000170584"
+"227192_at"	"PRRT2"	112476	"ENSG00000167371"
+"225906_at"	"CASTOR2"	729438	"ENSG00000274070"
+"228054_at"	"TMEM44"	93109	"ENSG00000145014"
+"226433_at"	"RNF157"	114804	"ENSG00000141576"
+"228571_at"	"RBAK"	57786	"ENSG00000146587"
+"226996_at"	"LCLAT1"	253558	"ENSG00000172954"
+"229840_at"	"IQSEC2"	23096	"ENSG00000124313"
+"230200_at"	"NSUN6"	221078	"ENSG00000241058"
+"226345_at"	"ARL5B"	221079	"ENSG00000165997"
+"229099_at"	"UQCC3"	790955	"ENSG00000204922"
+"226804_at"	"FAM20A"	54757	"ENSG00000108950"
+"229500_at"	"SLC30A9"	10463	"ENSG00000014824"
+"226490_at"	"NHSL1"	57224	"ENSG00000135540"
+"229201_at"	"PAK3"	5063	"ENSG00000077264"
+"228500_at"	"THAP8"	199745	"ENSG00000161277"
+"226668_at"	"WDSUB1"	151525	"ENSG00000196151"
+"229485_x_at"	"SHISA3"	152573	"ENSG00000178343"
+"227608_at"	"HNRNPUL2"	221092	"ENSG00000214753"
+"226577_at"	"PSEN1"	5663	"ENSG00000080815"
+"229340_at"	"NKAPL"	222698	"ENSG00000189134"
+"225879_at"	"TSEN54"	283989	"ENSG00000182173"
+"228249_at"	"IFTAP"	119710	"ENSG00000166352"
+"229412_at"	"TAF8"	129685	"ENSG00000137413"
+"227025_at"	"PPHLN1"	51535	"ENSG00000134283"
+"227333_at"	"DCUN1D3"	123879	"ENSG00000188215"
+"227984_at"	"CEROX1"	115804232	"ENSG00000260807"
+"226913_s_at"	"SOX8"	30812	"ENSG00000005513"
+"225814_at"	"XRN1"	54464	"ENSG00000114127"
+"225783_at"	"UBE2F"	140739	"ENSG00000184182"
+"225791_at"	"UBE2F"	140739	"ENSG00000184182"
+"226691_at"	"TNRC18"	84629	"ENSG00000182095"
+"229257_at"	"TNRC18"	84629	"ENSG00000182095"
+"226654_at"	"MUC12"	10071	"ENSG00000205277"
+"227416_s_at"	"ZCRB1"	85437	"ENSG00000139168"
+"226366_at"	"SHPRH"	257218	"ENSG00000146414"
+"229227_at"	"DICER1-AS1"	400242	"ENSG00000235706"
+"226605_at"	"DGKQ"	1609	"ENSG00000145214"
+"227653_at"	"TRMT5"	57570	"ENSG00000126814"
+"226596_x_at"	"UMAD1"	729852	"ENSG00000219545"
+"228943_at"	"MAP6"	4135	"ENSG00000171533"
+"228448_at"	"MAP6"	4135	"ENSG00000171533"
+"228869_at"	"SNX20"	124460	"ENSG00000167208"
+"229045_at"	"SNX20"	124460	"ENSG00000167208"
+"230471_at"	"TMEM30B"	161291	"ENSG00000182107"
+"227029_at"	"FAM177A1"	283635	"ENSG00000151327"
+"229533_x_at"	"ZNF680"	340252	"ENSG00000173041"
+"226104_at"	"RNF170"	81790	"ENSG00000120925"
+"225985_at"	"PRKAA1"	5562	"ENSG00000132356"
+"225984_at"	"PRKAA1"	5562	"ENSG00000132356"
+"226397_s_at"	"PHACTR1"	221692	"ENSG00000112137"
+"226395_at"	"HOOK3"	84376	"ENSG00000168172"
+"228226_s_at"	"ZNF775"	285971	"ENSG00000196456"
+"230363_s_at"	"INPP5F"	22876	"ENSG00000198825"
+"230362_at"	"INPP5F"	22876	"ENSG00000198825"
+"225927_at"	"MAP3K1"	4214	"ENSG00000095015"
+"229740_at"	"SMIM5"	643008	"ENSG00000204323"
+"228061_at"	"CCDC126"	90693	"ENSG00000169193"
+"228087_at"	"CCDC126"	90693	"ENSG00000169193"
+"228600_x_at"	"FAM221A"	340277	"ENSG00000188732"
+"227932_at"	"ARIH2"	10425	"ENSG00000177479"
+"227413_at"	"UBLCP1"	134510	"ENSG00000164332"
+"227451_s_at"	"MCUR1"	63933	"ENSG00000050393"
+"227947_at"	"PHACTR2"	9749	"ENSG00000112419"
+"227618_at"	"NHSL2"	340527	"ENSG00000204131"
+"227282_at"	"PCDH19"	57526	"ENSG00000165194"
+"226012_at"	"ANKRD11"	29123	"ENSG00000167522"
+"228356_at"	"ANKRD11"	29123	"ENSG00000167522"
+"230249_at"	"KHDRBS3"	10656	"ENSG00000131773"
+"228729_at"	"CCNB1"	891	"ENSG00000134057"
+"226852_at"	"MTA3"	57504	"ENSG00000057935"
+"228786_at"	""	102724316	"ENSG00000291093"
+"227745_at"	"RNF139-DT"	101927612	"ENSG00000245149"
+"227767_at"	"CSNK1G3"	1456	"ENSG00000151292"
+"229702_at"	"CSNK1G3"	1456	"ENSG00000151292"
+"227705_at"	"TCEAL7"	56849	"ENSG00000182916"
+"226205_at"	"ANKRD13D"	338692	"ENSG00000172932"
+"227971_at"	"NRK"	203447	"ENSG00000123572"
+"227011_at"	"ZNF692"	55657	"ENSG00000171163"
+"230137_at"	"SMIM43"	132332	"ENSG00000164112"
+"227668_at"	"TEPSIN"	146705	"ENSG00000167302"
+"228805_at"	"SIMC1"	375484	"ENSG00000170085"
+"228905_at"	"PCM1"	5108	"ENSG00000078674"
+"227232_at"	"EVL"	51466	"ENSG00000196405"
+"229273_at"	"SALL1"	6299	"ENSG00000103449"
+"227552_at"	"SEPTIN1"	1731	"ENSG00000180096"
+"228843_at"	"ARL10"	285598	"ENSG00000175414"
+"228200_at"	"ZNF252P"	286101	"ENSG00000291080"
+"227781_x_at"	"TLCD3B"	83723	"ENSG00000149926"
+"229774_at"	"CXXC4"	80319	"ENSG00000168772"
+"227337_at"	"ANKRD37"	353322	"ENSG00000186352"
+"227117_at"	"XPOT"	11260	"ENSG00000184575"
+"228688_at"	""	NA	"ENSG00000259972"
+"229728_at"	""	NA	"ENSG00000259972"
+"230511_at"	"CREM"	1390	"ENSG00000095794"
+"228092_at"	"CREM"	1390	"ENSG00000095794"
+"225921_at"	"NIN"	51199	"ENSG00000100503"
+"226192_at"	"AR"	367	"ENSG00000169083"
+"226197_at"	"AR"	367	"ENSG00000169083"
+"228640_at"	"PCDH7"	5099	"ENSG00000169851"
+"230481_at"	"ACY3"	91703	"ENSG00000132744"
+"227002_at"	"FAM78A"	286336	"ENSG00000126882"
+"225673_at"	"MYADM"	91663	"ENSG00000179820"
+"226364_at"	"HIP1"	3092	"ENSG00000127946"
+"226519_s_at"	"PHYKPL"	85007	"ENSG00000175309"
+"228382_at"	"OTULIN"	90268	"ENSG00000154124"
+"229268_at"	"OTULIN"	90268	"ENSG00000154124"
+"229470_at"	"OTULIN"	90268	"ENSG00000154124"
+"227945_at"	"TBC1D1"	23216	"ENSG00000065882"
+"226055_at"	"ARRDC2"	27106	"ENSG00000105643"
+"230250_at"	"PTPRB"	5787	"ENSG00000127329"
+"229879_at"	"ASPH"	444	"ENSG00000198363"
+"230429_at"	"ASPH"	444	"ENSG00000198363"
+"230370_x_at"	"STYXL1"	51657	"ENSG00000127952"
+"228156_at"	"MFSD14CP"	84278	"ENSG00000290770"
+"228999_at"	"CHD2"	1106	"ENSG00000173575"
+"226329_s_at"	"MITD1"	129531	"ENSG00000158411"
+"226059_at"	"TOMM40L"	84134	"ENSG00000158882"
+"228584_at"	"SGCB"	6443	"ENSG00000163069"
+"226112_at"	"SGCB"	6443	"ENSG00000163069"
+"229331_at"	"SPATA18"	132671	"ENSG00000163071"
+"229316_at"	"KXD1"	79036	"ENSG00000105700"
+"225749_at"	"UQCC4"	283951	"ENSG00000174109"
+"227973_at"	"C2orf69"	205327	"ENSG00000178074"
+"225594_at"	"CREBZF"	58487	"ENSG00000137504"
+"225595_at"	"CREBZF"	58487	"ENSG00000137504"
+"229341_at"	"TFCP2L1"	29842	"ENSG00000115112"
+"227642_at"	"TFCP2L1"	29842	"ENSG00000115112"
+"227762_at"	"ZBTB16"	7704	"ENSG00000109906"
+"228854_at"	"ZBTB16"	7704	"ENSG00000109906"
+"228558_at"	"TEDC1"	283643	"ENSG00000185347"
+"229724_at"	"GABRB3"	2562	"ENSG00000166206"
+"227690_at"	"GABRB3"	2562	"ENSG00000166206"
+"227830_at"	"GABRB3"	2562	"ENSG00000166206"
+"229303_at"	"SF3B1"	23451	"ENSG00000115524"
+"228165_at"	"PIANP"	196500	"ENSG00000139200"
+"229823_at"	"RIMS2"	9699	"ENSG00000176406"
+"226045_at"	"FRS2"	10818	"ENSG00000166225"
+"226864_at"	"PKIA"	5569	"ENSG00000171033"
+"226325_at"	"ADSS1"	122622	"ENSG00000185100"
+"225729_at"	"C6orf89"	221477	"ENSG00000198663"
+"225815_at"	"CPLX2"	10814	"ENSG00000145920"
+"228856_at"	"ZNF747"	65988	"ENSG00000169955"
+"228312_at"	"PI16"	221476	"ENSG00000164530"
+"229122_x_at"	"MPG"	4350	"ENSG00000103152"
+"228513_at"	"TMEM219"	124446	"ENSG00000149932"
+"230434_at"	"PHOSPHO2"	493911	"ENSG00000144362"
+"227898_s_at"	"ZFP41"	286128	"ENSG00000181638"
+"227902_at"	"ZFP41"	286128	"ENSG00000181638"
+"228336_at"	"PWWP2A"	114825	"ENSG00000170234"
+"228337_at"	"PWWP2A"	114825	"ENSG00000170234"
+"226720_at"	"PWWP2A"	114825	"ENSG00000170234"
+"230248_x_at"	""	NA	"ENSG00000260296"
+"227173_s_at"	"BACH2"	60468	"ENSG00000112182"
+"228381_at"	"ATF7IP2"	80063	"ENSG00000166669"
+"229159_at"	"THSD7A"	221981	"ENSG00000005108"
+"230008_at"	"THSD7A"	221981	"ENSG00000005108"
+"229016_s_at"	"TRERF1"	55809	"ENSG00000124496"
+"230154_at"	"WAC"	51322	"ENSG00000095787"
+"225806_at"	"AJUBA"	84962	"ENSG00000129474"
+"225807_at"	"AJUBA"	84962	"ENSG00000129474"
+"227104_x_at"	"ZNF800"	168850	"ENSG00000048405"
+"227101_at"	"ZNF800"	168850	"ENSG00000048405"
+"227158_at"	"DTD2"	112487	"ENSG00000129480"
+"226474_at"	"NLRC5"	84166	"ENSG00000140853"
+"225853_at"	"GNPNAT1"	64841	"ENSG00000100522"
+"230455_at"	"PPP1R9B"	84687	"ENSG00000108819"
+"226122_at"	"PLEKHG1"	57480	"ENSG00000120278"
+"226034_at"	"DUSP4"	1846	"ENSG00000120875"
+"225970_at"	"DDHD1"	80821	"ENSG00000100523"
+"225965_at"	"DDHD1"	80821	"ENSG00000100523"
+"225971_at"	"DDHD1"	80821	"ENSG00000100523"
+"227419_x_at"	"PLAC9"	219348	"ENSG00000189129"
+"230246_at"	"PLAC9"	219348	"ENSG00000189129"
+"230029_x_at"	"UBR3"	130507	"ENSG00000144357"
+"228827_at"	"RUNX1T1"	862	"ENSG00000079102"
+"225643_at"	"MAPK1IP1L"	93487	"ENSG00000168175"
+"226701_at"	"GJA5"	2702	"ENSG00000265107"
+"230135_at"	"HHIP"	64399	"ENSG00000164161"
+"225796_at"	"PXK"	54899	"ENSG00000168297"
+"229319_at"	""	NA	"ENSG00000279453"
+"228849_at"	"NTRK3"	4916	"ENSG00000140538"
+"227721_at"	"CPAMD8"	27151	"ENSG00000160111"
+"226308_at"	"HAUS8"	93323	"ENSG00000131351"
+"228627_at"	"TLK2"	11011	"ENSG00000146872"
+"229944_at"	"OPRK1"	4986	"ENSG00000082556"
+"226562_at"	"ZSCAN29"	146050	"ENSG00000140265"
+"227907_at"	"TUBGCP4"	27229	"ENSG00000137822"
+"227979_at"	"RBM4"	5936	"ENSG00000173933"
+"229648_at"	"ARHGAP32"	9743	"ENSG00000134909"
+"226326_at"	"PCGF5"	84333	"ENSG00000180628"
+"229194_at"	"PCGF5"	84333	"ENSG00000180628"
+"227935_s_at"	"PCGF5"	84333	"ENSG00000180628"
+"230050_at"	"NACC2"	138151	"ENSG00000148411"
+"230478_at"	"OIT3"	170392	"ENSG00000138315"
+"227146_at"	"QSOX2"	169714	"ENSG00000165661"
+"226685_at"	"SNTB2"	6645	"ENSG00000168807"
+"227312_at"	"SNTB2"	6645	"ENSG00000168807"
+"229235_at"	"NFATC2IP"	84901	"ENSG00000176953"
+"227928_at"	"PARPBP"	55010	"ENSG00000185480"
+"228535_at"	"RAD1"	5810	"ENSG00000113456"
+"229448_at"	"CERS1"	10715	"ENSG00000223802"
+"226249_at"	"SNX30"	401548	"ENSG00000148158"
+"226845_s_at"	"COPS9"	150678	"ENSG00000172428"
+"225738_at"	"RAPGEF1"	2889	"ENSG00000107263"
+"226389_s_at"	"RAPGEF1"	2889	"ENSG00000107263"
+"227206_at"	"NDUFA10"	4705	"ENSG00000130414"
+"229912_at"	"SDK1"	221935	"ENSG00000146555"
+"229407_at"	"SDK1"	221935	"ENSG00000146555"
+"229558_at"	"KNOP1"	400506	"ENSG00000103550"
+"227267_at"	"POC5"	134359	"ENSG00000152359"
+"229768_at"	"OR51E1"	143503	"ENSG00000180785"
+"225821_s_at"	"BOD1L1"	259282	"ENSG00000038219"
+"226902_at"	"USP13"	8975	"ENSG00000058056"
+"230401_at"	"NUP42"	11097	"ENSG00000136243"
+"229700_at"	"ZNF738"	148203	"ENSG00000172687"
+"228579_at"	"KCNQ3"	3786	"ENSG00000184156"
+"228832_at"	""	90024	"ENSG00000254531"
+"228683_s_at"	"KCTD15"	79047	"ENSG00000153885"
+"229426_at"	"COX5A"	9377	"ENSG00000178741"
+"228402_at"	"ZBED3"	84327	"ENSG00000132846"
+"226428_at"	"TNPO2"	30000	"ENSG00000105576"
+"230426_at"	"DLD"	1738	"ENSG00000091140"
+"229551_x_at"	"ZNF367"	195828	"ENSG00000165244"
+"230171_at"	"UBE2D3-AS1"	NA	"ENSG00000246560"
+"226339_at"	"TRUB1"	142940	"ENSG00000165832"
+"226121_at"	"DHRS13"	147015	"ENSG00000167536"
+"230254_at"	"CALHM5"	254228	"ENSG00000178033"
+"228694_at"	"AQR"	9716	"ENSG00000021776"
+"225950_at"	"SAMD8"	142891	"ENSG00000156671"
+"229521_at"	"CCDC71L"	168455	"ENSG00000253276"
+"226756_at"	"CCDC71L"	168455	"ENSG00000253276"
+"227883_at"	"CCDC71L"	168455	"ENSG00000253276"
+"228330_at"	"ZUP1"	221302	"ENSG00000153975"
+"229317_at"	"KPNA5"	3841	"ENSG00000196911"
+"227934_at"	"KPNA5"	3841	"ENSG00000196911"
+"229720_at"	"BAG1"	573	"ENSG00000107262"
+"228652_at"	"ZNF776"	284309	"ENSG00000152443"
+"227846_at"	"GPR176"	11245	"ENSG00000166073"
+"228314_at"	"LRRC8C"	84230	"ENSG00000171488"
+"226923_at"	"SCFD2"	152579	"ENSG00000184178"
+"228351_at"	"HEATR1"	55127	"ENSG00000119285"
+"226870_at"	"COMTD1"	118881	"ENSG00000165644"
+"228974_at"	"ZNF677"	342926	"ENSG00000197928"
+"227293_at"	"FIP1L1"	81608	"ENSG00000145216"
+"225617_at"	"ODF2"	4957	"ENSG00000136811"
+"229123_at"	"ZNF224"	7767	"ENSG00000267680"
+"226661_at"	"CDCA2"	157313	"ENSG00000184661"
+"229969_at"	"SEC63"	11231	"ENSG00000025796"
+"225981_at"	"HID1"	283987	"ENSG00000167861"
+"229243_at"	"GVQW3"	100506127	"ENSG00000179240"
+"226788_at"	"CENPT"	80152	"ENSG00000102901"
+"227689_at"	"ZNF227"	7770	"ENSG00000131115"
+"227318_at"	"TMEM178B"	100507421	"ENSG00000261115"
+"225902_at"	"PPIG"	9360	"ENSG00000138398"
+"229632_s_at"	"INTS10"	55174	"ENSG00000104613"
+"225704_at"	"FBRSL1"	57666	"ENSG00000112787"
+"225703_at"	"FBRSL1"	57666	"ENSG00000112787"
+"228522_at"	"FBRSL1"	57666	"ENSG00000112787"
+"229786_at"	"RWDD2A"	112611	"ENSG00000013392"
+"229419_at"	"FBXW7"	55294	"ENSG00000109670"
+"228807_at"	"ASPA"	443	"ENSG00000108381"
+"228201_at"	"ARL13B"	200894	"ENSG00000169379"
+"229849_at"	"WIPF3"	644150	"ENSG00000122574"
+"228311_at"	"BCL6B"	255877	"ENSG00000161940"
+"226943_at"	"UQCC6"	728568	"ENSG00000204954"
+"226927_at"	"UQCC6"	728568	"ENSG00000204954"
+"227341_at"	"BEND7"	222389	"ENSG00000165626"
+"226483_at"	"TMEM68"	137695	"ENSG00000167904"
+"227936_at"	"TMEM68"	137695	"ENSG00000167904"
+"226801_s_at"	"AIDA"	64853	"ENSG00000186063"
+"226128_at"	"BROX"	148362	"ENSG00000162819"
+"229584_at"	"LRRK2"	120892	"ENSG00000188906"
+"228414_at"	"KCNMA1"	3778	"ENSG00000156113"
+"228372_at"	"TMEM273"	170371	"ENSG00000204161"
+"226108_at"	"ZC3H18"	124245	"ENSG00000158545"
+"228562_at"	"ZBTB10"	65986	"ENSG00000205189"
+"227573_s_at"	"OBSL1"	23363	"ENSG00000124006"
+"227574_at"	"OBSL1"	23363	"ENSG00000124006"
+"228184_at"	"DISP1"	84976	"ENSG00000154309"
+"230302_at"	"LINC02986"	NA	"ENSG00000260317"
+"229445_at"	"CYBA"	1535	"ENSG00000051523"
+"225676_s_at"	"DCAF13"	25879	"ENSG00000164934"
+"227080_at"	"ZNF697"	90874	"ENSG00000143067"
+"225713_at"	"STK11IP"	114790	"ENSG00000144589"
+"227385_at"	"PLPP6"	403313	"ENSG00000205808"
+"228561_at"	"CDC37L1"	55664	"ENSG00000106993"
+"228873_at"	"COL22A1"	169044	"ENSG00000169436"
+"227726_at"	"RNF166"	115992	"ENSG00000158717"
+"227601_at"	"METTL14"	57721	"ENSG00000145388"
+"226484_at"	"ZBTB47"	92999	"ENSG00000114853"
+"226500_at"	"ZBTB47"	92999	"ENSG00000114853"
+"226410_at"	"CTU2"	348180	"ENSG00000174177"
+"227088_at"	"PDE5A"	8654	"ENSG00000138735"
+"227508_at"	"ZNF8"	7554	"ENSG00000278129"
+"227509_x_at"	"ZNF8"	7554	"ENSG00000278129"
+"229229_at"	"AGXT2"	64902	"ENSG00000113492"
+"226909_at"	"ZNF518B"	85460	"ENSG00000178163"
+"227230_s_at"	"CRACD"	57482	"ENSG00000109265"
+"227231_at"	"CRACD"	57482	"ENSG00000109265"
+"227218_at"	"CARMIL2"	146206	"ENSG00000159753"
+"227216_at"	"CARMIL2"	146206	"ENSG00000159753"
+"226135_at"	"BLTP3A"	54887	"ENSG00000065060"
+"228607_at"	"OAS2"	4939	"ENSG00000111335"
+"227591_at"	"SH3BP5-AS1"	100505696	"ENSG00000224660"
+"229129_at"	"HNRNPD"	3184	"ENSG00000138668"
+"228868_x_at"	"CDT1"	81620	"ENSG00000167513"
+"229289_at"	"GARIN5A"	112703	"ENSG00000142530"
+"226952_at"	"EAF1"	85403	"ENSG00000144597"
+"226586_at"	"ANKS6"	203286	"ENSG00000165138"
+"228792_at"	"MYEF2"	50804	"ENSG00000104177"
+"229464_at"	"MYEF2"	50804	"ENSG00000104177"
+"225823_at"	"MICOS13"	125988	"ENSG00000174917"
+"228757_at"	"HSD11B1L"	374875	"ENSG00000167733"
+"226659_at"	"DEF6"	50619	"ENSG00000023892"
+"230360_at"	"GLDN"	342035	"ENSG00000186417"
+"229777_at"	"CLRN3"	119467	"ENSG00000180745"
+"226203_at"	"MYO9A"	4649	"ENSG00000066933"
+"226307_at"	"CRTC2"	200186	"ENSG00000160741"
+"226564_at"	"ZFAT"	57623	"ENSG00000066827"
+"226063_at"	"VAV2"	7410	"ENSG00000160293"
+"226455_at"	"CREB3L4"	148327	"ENSG00000143578"
+"229509_at"	"MFSD8"	256471	"ENSG00000164073"
+"228282_at"	"MFSD8"	256471	"ENSG00000164073"
+"229259_at"	"GFAP"	2670	"ENSG00000131095"
+"226879_at"	"HVCN1"	84329	"ENSG00000122986"
+"228354_at"	"MORN4"	118812	"ENSG00000171160"
+"229455_at"	""	NA	"ENSG00000289405"
+"227363_s_at"	"EMC8"	10328	"ENSG00000131148"
+"227240_at"	"NGEF"	25791	"ENSG00000066248"
+"228135_at"	"C1orf52"	148423	"ENSG00000162642"
+"226796_at"	"ABHD15"	116236	"ENSG00000168792"
+"225605_at"	"TP53I13"	90313	"ENSG00000167543"
+"228068_at"	"GOLGA7B"	401647	"ENSG00000155265"
+"227365_at"	"ATCAY"	85300	"ENSG00000167654"
+"228374_at"	"R3HCC1L"	27291	"ENSG00000166024"
+"229516_at"	"WDR31"	114987	"ENSG00000148225"
+"227720_at"	"ANKRD13B"	124930	"ENSG00000198720"
+"227291_s_at"	"BOLA3"	388962	"ENSG00000163170"
+"226554_at"	"ZBTB7A"	51341	"ENSG00000178951"
+"228499_at"	"PFKFB4"	5210	"ENSG00000114268"
+"230421_at"	"ZNF879"	345462	"ENSG00000234284"
+"228208_x_at"	"ZNF354C"	30832	"ENSG00000177932"
+"229418_at"	"FAM222B"	55731	"ENSG00000173065"
+"226311_at"	"ADAMTS2"	9509	"ENSG00000087116"
+"229006_at"	"LINC02615"	100507487	"ENSG00000251432"
+"226750_at"	"LARP1B"	55132	"ENSG00000138709"
+"226730_s_at"	"USP37"	57695	"ENSG00000135913"
+"226729_at"	"USP37"	57695	"ENSG00000135913"
+"226961_at"	"PRR15"	222171	"ENSG00000176532"
+"229038_at"	"CWF19L1"	55280	"ENSG00000095485"
+"225954_s_at"	"MIDN"	90007	"ENSG00000167470"
+"230142_s_at"	"CIRBP"	1153	"ENSG00000099622"
+"228519_x_at"	"CIRBP"	1153	"ENSG00000099622"
+"228845_at"	"PLBD2"	196463	"ENSG00000151176"
+"227853_at"	"PLBD2"	196463	"ENSG00000151176"
+"230176_at"	"UEVLD"	55293	"ENSG00000151116"
+"229124_at"	"PROK1"	84432	"ENSG00000143125"
+"228274_at"	"SDSL"	113675	"ENSG00000139410"
+"229280_s_at"	"CASC15"	NA	"ENSG00000272168"
+"228684_at"	"ZNF503"	84858	"ENSG00000165655"
+"227195_at"	"ZNF503"	84858	"ENSG00000165655"
+"228048_at"	"ZNF503-AS2"	100131213	"ENSG00000237149"
+"229594_at"	"SPTY2D1"	144108	"ENSG00000179119"
+"227326_at"	"MXRA7"	439921	"ENSG00000182534"
+"226127_at"	"ALKBH3"	221120	"ENSG00000166199"
+"226631_at"	"EEF1AKMT2"	399818	"ENSG00000203791"
+"226634_at"	"EEF1AKMT2"	399818	"ENSG00000203791"
+"230395_at"	""	NA	"ENSG00000261596"
+"225861_at"	"MCRIP2"	84331	"ENSG00000172366"
+"230002_at"	"GPSM2"	29899	"ENSG00000121957"
+"227894_at"	"WDR90"	197335	"ENSG00000161996"
+"227273_at"	"BMPR1A"	657	"ENSG00000107779"
+"228264_at"	"ACCS"	84680	"ENSG00000110455"
+"230236_at"	"TDRG1"	732253	"ENSG00000204091"
+"227797_x_at"	"LYRM2"	57226	"ENSG00000083099"
+"226919_at"	"LYRM2"	57226	"ENSG00000083099"
+"227712_at"	"LYRM2"	57226	"ENSG00000083099"
+"226166_x_at"	"STK36"	27148	"ENSG00000163482"
+"226761_at"	"IKZF4"	64375	"ENSG00000123411"
+"229752_at"	"IKZF4"	64375	"ENSG00000123411"
+"226759_at"	"IKZF4"	64375	"ENSG00000123411"
+"227560_at"	"SFXN2"	118980	"ENSG00000156398"
+"227625_s_at"	"STUB1"	10273	"ENSG00000103266"
+"226155_at"	"FHIP2A"	57700	"ENSG00000151553"
+"228006_at"	"PTEN"	5728	"ENSG00000171862"
+"229196_at"	"FAM111A"	63901	"ENSG00000166801"
+"226005_at"	"UBE2G1"	7326	"ENSG00000132388"
+"228194_s_at"	"SORCS1"	114815	"ENSG00000108018"
+"227430_at"	"ZC3H10"	84872	"ENSG00000135482"
+"230487_at"	"LINC02901"	100130967	"ENSG00000203711"
+"227890_at"	"TMEM198"	130612	"ENSG00000188760"
+"229252_at"	"ATG9B"	285973	"ENSG00000181652"
+"228278_at"	"NFIX"	4784	"ENSG00000008441"
+"227400_at"	"NFIX"	4784	"ENSG00000008441"
+"225725_at"	"ZMAT3"	64393	"ENSG00000172667"
+"228315_at"	"ZMAT3"	64393	"ENSG00000172667"
+"227221_at"	"ZMAT3"	64393	"ENSG00000172667"
+"227020_at"	"YPEL2"	388403	"ENSG00000175155"
+"229060_at"	"YPEL2"	388403	"ENSG00000175155"
+"228604_at"	"FAM76A"	199870	"ENSG00000009780"
+"226480_at"	"KIF2A"	3796	"ENSG00000068796"
+"225871_at"	"STEAP2"	261729	"ENSG00000157214"
+"226983_at"	"ZNF777"	27153	"ENSG00000196453"
+"225848_at"	"ZNF746"	155061	"ENSG00000181220"
+"230432_at"	"LINC02532"	100422737	"ENSG00000235142"
+"229522_at"	"SDR42E1"	93517	"ENSG00000184860"
+"228257_at"	"ANKRD52"	283373	"ENSG00000139645"
+"229604_at"	"CMAHP"	NA	"ENSG00000168405"
+"226086_at"	"SYT13"	57586	"ENSG00000019505"
+"225747_at"	"COQ10A"	93058	"ENSG00000135469"
+"227189_at"	"CPNE5"	57699	"ENSG00000124772"
+"227392_at"	"NISCH"	11188	"ENSG00000010322"
+"227645_at"	"PIK3R5"	23533	"ENSG00000141506"
+"228111_s_at"	"DNAH1"	25981	"ENSG00000114841"
+"229408_at"	"HDAC5"	10014	"ENSG00000108840"
+"230168_at"	"ZNF354B"	117608	"ENSG00000178338"
+"229885_at"	"RSF1"	51773	"ENSG00000048649"
+"228104_at"	"PLXNA4"	91584	"ENSG00000221866"
+"229801_at"	"PROSER2"	254427	"ENSG00000148426"
+"230051_at"	"PROSER2"	254427	"ENSG00000148426"
+"229863_s_at"	"ELP6"	54859	"ENSG00000163832"
+"229864_at"	"ELP6"	54859	"ENSG00000163832"
+"229004_at"	"ADAMTS15"	170689	"ENSG00000166106"
+"227124_at"	"SMIM13"	221710	"ENSG00000224531"
+"229962_at"	"LRRC37A3"	374819	"ENSG00000176809"
+"227985_at"	"GIRGL"	100506098	"ENSG00000233834"
+"227094_at"	"DHTKD1"	55526	"ENSG00000181192"
+"228747_at"	"SEC61A2"	55176	"ENSG00000065665"
+"230215_at"	"SEC61A2"	55176	"ENSG00000065665"
+"226206_at"	"MAFK"	7975	"ENSG00000198517"
+"229778_at"	"SPX"	80763	"ENSG00000134548"
+"229581_at"	"ELFN1"	392617	"ENSG00000225968"
+"226201_at"	"DOT1L"	84444	"ENSG00000104885"
+"226935_s_at"	"CLPTM1L"	81037	"ENSG00000049656"
+"226306_at"	"SMIM29"	221491	"ENSG00000186577"
+"230490_x_at"	"RSU1"	6251	"ENSG00000148484"
+"227974_at"	""	NA	"ENSG00000286388"
+"230191_at"	"TTBK1"	84630	"ENSG00000146216"
+"228346_at"	"ZNF844"	284391	"ENSG00000223547"
+"227465_at"	"MAU2"	23383	"ENSG00000129933"
+"228368_at"	"ARHGAP20"	57569	"ENSG00000137727"
+"229528_at"	"SBNO1"	55206	"ENSG00000139697"
+"230407_at"	"SBNO1"	55206	"ENSG00000139697"
+"230464_at"	"S1PR5"	53637	"ENSG00000180739"
+"228906_at"	"TET1"	80312	"ENSG00000138336"
+"227598_at"	"ZBED10P"	NA	"ENSG00000188707"
+"227566_at"	"NTM"	50863	"ENSG00000182667"
+"228436_at"	"KCNC4"	3749	"ENSG00000116396"
+"225716_at"	"BRI3BP"	140707	"ENSG00000184992"
+"228517_at"	"MEAF6"	64769	"ENSG00000163875"
+"230293_at"	"MEAF6"	64769	"ENSG00000163875"
+"227053_at"	"PACSIN1"	29993	"ENSG00000124507"
+"229444_at"	"ILRUN-AS1"	101929243	"ENSG00000272288"
+"229763_at"	"FOXP4"	116113	"ENSG00000137166"
+"227120_at"	"FOXP4"	116113	"ENSG00000137166"
+"228523_at"	"NANOS1"	340719	"ENSG00000188613"
+"227142_at"	"PLEKHG5"	57449	"ENSG00000171680"
+"228903_at"	"CES4A"	283848	"ENSG00000172824"
+"226716_at"	"PRR12"	57479	"ENSG00000126464"
+"227395_at"	"TBCEL"	219899	"ENSG00000154114"
+"226767_s_at"	"FAHD1"	81889	"ENSG00000180185"
+"227960_s_at"	"FAHD1"	81889	"ENSG00000180185"
+"229236_s_at"	"SFXN4"	119559	"ENSG00000183605"
+"229009_at"	"SIX5"	147912	"ENSG00000177045"
+"230508_at"	"DKK3"	27122	"ENSG00000050165"
+"226743_at"	"SLFN11"	91607	"ENSG00000172716"
+"225907_at"	""	728743	"ENSG00000284691"
+"229218_at"	"COL1A2"	1278	"ENSG00000164692"
+"226649_at"	"PANK1"	53354	"ENSG00000152782"
+"230272_at"	"LINC00461"	645323	"ENSG00000245526"
+"226073_at"	"TMEM218"	219854	"ENSG00000150433"
+"228967_at"	"EIF1"	10209	"ENSG00000173812"
+"229612_at"	"CCDC92B"	101928991	"ENSG00000277200"
+"227497_at"	"SOX6"	55553	"ENSG00000110693"
+"227498_at"	"SOX6"	55553	"ENSG00000110693"
+"225798_at"	"JAZF1"	221895	"ENSG00000153814"
+"225800_at"	"JAZF1"	221895	"ENSG00000153814"
+"229014_at"	"NR2F1-AS1"	441094	"ENSG00000237187"
+"230445_at"	"BTBD17"	388419	"ENSG00000204347"
+"227901_at"	"ANXA2R-OT1"	648987	"ENSG00000177738"
+"229347_at"	"MIR4458HG"	100505738	"ENSG00000247516"
+"228651_at"	"VWA1"	64856	"ENSG00000179403"
+"228444_at"	"ARRB1"	408	"ENSG00000137486"
+"230072_at"	"TBC1D15"	64786	"ENSG00000121749"
+"228686_at"	"SLC12A2-DT"	644873	"ENSG00000245937"
+"228928_x_at"	"BANP"	54971	"ENSG00000172530"
+"229815_at"	"TMEM161B-DT"	100505894	"ENSG00000247828"
+"227526_at"	"CDON"	50937	"ENSG00000064309"
+"229406_at"	"RBFOX3"	146713	"ENSG00000167281"
+"228259_s_at"	"EPB41L4A-AS1"	NA	"ENSG00000224032"
+"225698_at"	"EPB41L4A-AS1"	NA	"ENSG00000224032"
+"226473_at"	"CBX2"	84733	"ENSG00000173894"
+"229363_at"	"LINC00920"	NA	"ENSG00000246898"
+"227070_at"	"GLT8D2"	83468	"ENSG00000120820"
+"226889_at"	"WDR35"	57539	"ENSG00000118965"
+"226890_at"	"WDR35"	57539	"ENSG00000118965"
+"227929_at"	"LIN7A"	8825	"ENSG00000111052"
+"226094_at"	"PIK3C2A"	5286	"ENSG00000011405"
+"227983_at"	"RILPL2"	196383	"ENSG00000150977"
+"227346_at"	"IKZF1"	10320	"ENSG00000185811"
+"227344_at"	"IKZF1"	10320	"ENSG00000185811"
+"228622_s_at"	"DNAJC4"	3338	"ENSG00000110011"
+"226300_at"	"MED19"	219541	"ENSG00000156603"
+"226293_at"	"MED19"	219541	"ENSG00000156603"
+"228994_at"	"CCDC24"	149473	"ENSG00000159214"
+"226647_at"	"TMEM25"	84866	"ENSG00000149582"
+"228379_at"	"NUTF2"	10204	"ENSG00000102898"
+"229592_at"	"LINC01569"	NA	"ENSG00000262468"
+"227187_at"	"CBLL1"	79872	"ENSG00000105879"
+"229956_at"	"NR2C1"	7181	"ENSG00000120798"
+"227660_at"	"ANTXR1"	84168	"ENSG00000169604"
+"225746_at"	"RAB11FIP4"	84440	"ENSG00000131242"
+"225739_at"	"RAB11FIP4"	84440	"ENSG00000131242"
+"227185_at"	"FNDC10"	643988	"ENSG00000228594"
+"226644_at"	""	NA	"ENSG00000272106"
+"230378_at"	"SCGB3A1"	92304	"ENSG00000161055"
+"229902_at"	"FLT4"	2324	"ENSG00000037280"
+"227090_at"	"PHF21A"	51317	"ENSG00000135365"
+"228971_at"	"SLC25A3"	5250	"ENSG00000075415"
+"225882_at"	"SLC35B4"	84912	"ENSG00000205060"
+"225881_at"	"SLC35B4"	84912	"ENSG00000205060"
+"225932_s_at"	"HNRNPA2B1"	3181	"ENSG00000122566"
+"230367_at"	"SMTNL1"	219537	"ENSG00000214872"
+"228664_at"	"TRIM52-AS1"	100507602	"ENSG00000248275"
+"225863_s_at"	"C19orf12"	83636	"ENSG00000131943"
+"227704_at"	"C19orf12"	83636	"ENSG00000131943"
+"229593_at"	"MACROH2A1"	9555	"ENSG00000113648"
+"228560_at"	"CHDH"	55349	"ENSG00000016391"
+"229502_at"	"CHDH"	55349	"ENSG00000016391"
+"229954_at"	"CHDH"	55349	"ENSG00000016391"
+"230467_at"	"TMEM52"	339456	"ENSG00000178821"
+"229107_at"	""	NA	"ENSG00000275494"
+"229384_at"	""	NA	"ENSG00000269044"
+"226611_s_at"	"CENPV"	201161	"ENSG00000166582"
+"226610_at"	"CENPV"	201161	"ENSG00000166582"
+"229049_at"	"LCMT1-AS2"	100506655	"ENSG00000260034"
+"229588_at"	"DNAJC10"	54431	"ENSG00000077232"
+"227308_x_at"	"LTBP3"	4054	"ENSG00000168056"
+"227940_at"	"C2orf74-DT"	339803	"ENSG00000212978"
+"227941_at"	"C2orf74-DT"	339803	"ENSG00000212978"
+"226334_s_at"	"AHSA2P"	130872	"ENSG00000173209"
+"230148_at"	"AHSA2P"	130872	"ENSG00000173209"
+"226665_at"	"AHSA2P"	130872	"ENSG00000173209"
+"226147_s_at"	"PIGR"	5284	"ENSG00000162896"
+"228865_at"	"C1orf116"	79098	"ENSG00000182795"
+"226821_at"	"RIF1"	55183	"ENSG00000080345"
+"226503_at"	"RIF1"	55183	"ENSG00000080345"
+"229083_at"	"HNRNPA0"	10949	"ENSG00000177733"
+"225670_at"	"ATPSCKMT"	134145	"ENSG00000150756"
+"229068_at"	"CCT5"	22948	"ENSG00000150753"
+"227522_at"	"CMBL"	134147	"ENSG00000164237"
+"230276_at"	"CYRIA"	81553	"ENSG00000197872"
+"228409_at"	"PLIN4"	729359	"ENSG00000167676"
+"225549_at"	"DDX6"	1656	"ENSG00000110367"
+"229750_at"	"POU2F2"	5452	"ENSG00000028277"
+"228343_at"	"POU2F2"	5452	"ENSG00000028277"
+"227749_at"	"POU2F2"	5452	"ENSG00000028277"
+"228531_at"	"SAMD9"	54809	"ENSG00000205413"
+"230036_at"	"SAMD9L"	219285	"ENSG00000177409"
+"226603_at"	"SAMD9L"	219285	"ENSG00000177409"
+"230326_s_at"	"HIKESHI"	51501	"ENSG00000149196"
+"230510_at"	"HSPB9"	94086	"ENSG00000260325"
+"230330_at"	"PPM1D"	8493	"ENSG00000170836"
+"228306_at"	"CNIH4"	29097	"ENSG00000143771"
+"228437_at"	"CNIH4"	29097	"ENSG00000143771"
+"227856_at"	"FAM241A"	132720	"ENSG00000174749"
+"226143_at"	"RAI1"	10743	"ENSG00000108557"
+"226187_at"	"CDS1"	1040	"ENSG00000163624"
+"226185_at"	"CDS1"	1040	"ENSG00000163624"
+"226136_at"	"GLIPR1"	11010	"ENSG00000139278"
+"226142_at"	"GLIPR1"	11010	"ENSG00000139278"
+"230384_at"	"ANKRD23"	200539	"ENSG00000163126"
+"225969_at"	"ALKBH6"	84964	"ENSG00000239382"
+"227750_at"	"KALRN"	8997	"ENSG00000160145"
+"226828_s_at"	"HEYL"	26508	"ENSG00000163909"
+"226213_at"	"ERBB3"	2065	"ENSG00000065361"
+"228555_at"	"CAMK2D"	817	"ENSG00000145349"
+"227302_s_at"	"LLGL1"	3996	"ENSG00000131899"
+"226225_at"	"MCC"	4163	"ENSG00000171444"
+"226411_at"	"EVI5L"	115704	"ENSG00000142459"
+"228852_at"	"ENSA"	2029	"ENSG00000143420"
+"227340_s_at"	"RGMB"	285704	"ENSG00000174136"
+"226989_at"	"RGMB"	285704	"ENSG00000174136"
+"227339_at"	"RGMB"	285704	"ENSG00000174136"
+"227746_at"	"ELAVL1"	1994	"ENSG00000066044"
+"227453_at"	"UNC13A"	23025	"ENSG00000130477"
+"225730_s_at"	"THUMPD3"	25917	"ENSG00000134077"
+"225741_at"	"THUMPD3"	25917	"ENSG00000134077"
+"228422_at"	"LHFPL4"	375323	"ENSG00000156959"
+"228253_at"	"LOXL3"	84695	"ENSG00000115318"
+"228554_at"	"PGR"	5241	"ENSG00000082175"
+"225719_s_at"	"MRPL55"	128308	"ENSG00000162910"
+"229707_at"	"ZNF606"	80095	"ENSG00000166704"
+"227245_at"	"NAA25"	80018	"ENSG00000111300"
+"225888_at"	"NAA25"	80018	"ENSG00000111300"
+"225705_at"	"CEP95"	90799	"ENSG00000258890"
+"228613_at"	"RAB11FIP3"	9727	"ENSG00000090565"
+"229651_at"	"SEZ6"	124925	"ENSG00000063015"
+"230295_at"	"CAPN15"	6650	"ENSG00000103326"
+"226566_at"	"TRIM11"	81559	"ENSG00000154370"
+"228991_at"	"CDK13"	8621	"ENSG00000065883"
+"229936_at"	"GFRA3"	2676	"ENSG00000146013"
+"228327_x_at"	"MEIS3"	56917	"ENSG00000105419"
+"226100_at"	"KMT2E"	55904	"ENSG00000005483"
+"230046_at"	"SPRED3"	399473	"ENSG00000188766"
+"229614_at"	"ZNF320"	162967	"ENSG00000182986"
+"227694_at"	"STPG1"	90529	"ENSG00000001460"
+"228331_at"	"SELENOH"	280636	"ENSG00000211450"
+"225875_s_at"	"NIPAL3"	57185	"ENSG00000001461"
+"225876_at"	"NIPAL3"	57185	"ENSG00000001461"
+"225554_s_at"	"ANAPC7"	51434	"ENSG00000196510"
+"230446_at"	"ITGB8-AS1"	101927811	"ENSG00000271133"
+"230301_at"	""	NA	"ENSG00000234286"
+"229064_s_at"	"RCAN3"	11123	"ENSG00000117602"
+"226272_at"	"RCAN3"	11123	"ENSG00000117602"
+"227511_at"	"SAMD4B"	55095	"ENSG00000179134"
+"226714_at"	"SAMD4B"	55095	"ENSG00000179134"
+"229871_at"	"SAMD4B"	55095	"ENSG00000179134"
+"226447_at"	"ASH1L"	55870	"ENSG00000116539"
+"229690_at"	"PHETA1"	144717	"ENSG00000198324"
+"225699_at"	"SNHG15"	285958	"ENSG00000232956"
+"227951_s_at"	"FAM98C"	147965	"ENSG00000130244"
+"227246_at"	"PLRG1"	5356	"ENSG00000171566"
+"228455_at"	"SLC16A4-AS1"	NA	"ENSG00000273373"
+"227386_s_at"	"TMEM200B"	399474	"ENSG00000253304"
+"229937_x_at"	"LILRB1"	10859	"ENSG00000104972"
+"229114_at"	"GAB1"	2549	"ENSG00000109458"
+"226002_at"	"GAB1"	2549	"ENSG00000109458"
+"225998_at"	"GAB1"	2549	"ENSG00000109458"
+"229467_at"	"PCBP2"	5094	"ENSG00000197111"
+"229221_at"	"CD44"	960	"ENSG00000026508"
+"227351_at"	"MOSMO"	730094	"ENSG00000185716"
+"230296_at"	"MOSMO"	730094	"ENSG00000185716"
+"226653_at"	"MARK1"	4139	"ENSG00000116141"
+"228753_at"	"CBLL1-AS1"	101927974	"ENSG00000241764"
+"227052_at"	"SMIM14"	201895	"ENSG00000163683"
+"226291_at"	"ALS2"	57679	"ENSG00000003393"
+"230425_at"	"EPHB1"	2047	"ENSG00000154928"
+"228996_at"	"RC3H1"	149041	"ENSG00000135870"
+"225893_at"	"RC3H1"	149041	"ENSG00000135870"
+"228242_at"	"N4BP2"	55728	"ENSG00000078177"
+"227784_s_at"	"COG1"	9382	"ENSG00000166685"
+"229087_s_at"	"COG1"	9382	"ENSG00000166685"
+"228829_at"	"ATF7"	11016	"ENSG00000170653"
+"229382_at"	"INKA2"	55924	"ENSG00000197852"
+"229608_at"	"INKA2"	55924	"ENSG00000197852"
+"230266_at"	"RAB7B"	338382	"ENSG00000276600"
+"229972_at"	"PRKAR1B-AS1"	101926963	"ENSG00000237181"
+"229685_at"	""	NA	"ENSG00000287104"
+"226240_at"	"TADA2B"	93624	"ENSG00000173011"
+"226117_at"	"TIFA"	92610	"ENSG00000145365"
+"227751_at"	"PDCD5"	9141	"ENSG00000105185"
+"226482_s_at"	"TSTD1"	100131187	"ENSG00000215845"
+"227948_at"	"FGD4"	121512	"ENSG00000139132"
+"226219_at"	"ARHGAP30"	257106	"ENSG00000186517"
+"227582_at"	"KLHDC9"	126823	"ENSG00000162755"
+"229706_at"	"TCERG1"	10915	"ENSG00000113649"
+"227046_at"	"SLC39A11"	201266	"ENSG00000133195"
+"230035_at"	"BOC"	91653	"ENSG00000144857"
+"225990_at"	"BOC"	91653	"ENSG00000144857"
+"227093_at"	"USP36"	57602	"ENSG00000055483"
+"226980_at"	"DEPDC1B"	55789	"ENSG00000035499"
+"226540_at"	"CFAP73"	387885	"ENSG00000186710"
+"226539_s_at"	"CFAP73"	387885	"ENSG00000186710"
+"228962_at"	"PDE4D"	5144	"ENSG00000113448"
+"228110_x_at"	""	NA	"ENSG00000272831"
+"228754_at"	"SLC6A6"	6533	"ENSG00000131389"
+"228529_at"	"LSM8"	51691	"ENSG00000128534"
+"230020_at"	"LSM8"	51691	"ENSG00000128534"
+"227336_at"	"DTX1"	1840	"ENSG00000135144"
+"227637_at"	"TFCP2"	7024	"ENSG00000135457"
+"226794_at"	"STXBP5"	134957	"ENSG00000164506"
+"225728_at"	"SORBS2"	8470	"ENSG00000154556"
+"227826_s_at"	"SORBS2"	8470	"ENSG00000154556"
+"227827_at"	"SORBS2"	8470	"ENSG00000154556"
+"226025_at"	"ANKRD28"	23243	"ENSG00000206560"
+"229307_at"	"ANKRD28"	23243	"ENSG00000206560"
+"226118_at"	"CENPO"	79172	"ENSG00000138092"
+"227859_at"	"DNAJC27"	51277	"ENSG00000115137"
+"229910_at"	"SHE"	126669	"ENSG00000169291"
+"229472_at"	"WDR33"	55339	"ENSG00000136709"
+"229141_at"	"WDR33"	55339	"ENSG00000136709"
+"229716_at"	"PLA2G2C"	391013	"ENSG00000187980"
+"226639_at"	"SFT2D3"	84826	"ENSG00000173349"
+"228650_at"	"POLR2D"	5433	"ENSG00000144231"
+"226529_at"	"TMEM106B"	54664	"ENSG00000106460"
+"229838_at"	"NUCB2"	4925	"ENSG00000070081"
+"227107_at"	""	NA	"ENSG00000250519"
+"227474_at"	"PAX8-AS1"	654433	"ENSG00000189223"
+"228425_at"	"PAX8-AS1"	654433	"ENSG00000189223"
+"226079_at"	"FLYWCH2"	114984	"ENSG00000162076"
+"227845_s_at"	"SHD"	56961	"ENSG00000105251"
+"229955_at"	"FBXO3"	26273	"ENSG00000110429"
+"229635_at"	"LINC01094"	NA	"ENSG00000251442"
+"228900_at"	"SPECC1"	92521	"ENSG00000128487"
+"230491_at"	""	NA	"ENSG00000261324"
+"228213_at"	"H2AJ"	55766	"ENSG00000246705"
+"229620_at"	"SELENOP"	6414	"ENSG00000250722"
+"229888_at"	"C12orf60"	144608	"ENSG00000182993"
+"227450_at"	"ERP27"	121506	"ENSG00000139055"
+"226298_at"	"RUNDC1"	146923	"ENSG00000198863"
+"229867_at"	"BTBD9"	114781	"ENSG00000183826"
+"226998_at"	"NAA15"	80155	"ENSG00000164134"
+"225917_at"	"ATF7IP"	55729	"ENSG00000171681"
+"229559_at"	"PPM1N"	147699	"ENSG00000213889"
+"227462_at"	"ERAP2"	64167	"ENSG00000164308"
+"229624_at"	"OPA3"	80207	"ENSG00000125741"
+"227027_at"	"GFPT1"	2673	"ENSG00000198380"
+"226886_at"	"GFPT1"	2673	"ENSG00000198380"
+"228429_x_at"	"KIF9"	64147	"ENSG00000088727"
+"226690_at"	"ADCYAP1R1"	117	"ENSG00000078549"
+"225838_at"	"EPC2"	26122	"ENSG00000135999"
+"227783_at"	"CCDC57"	284001	"ENSG00000176155"
+"227677_at"	"JAK3"	3718	"ENSG00000105639"
+"228667_at"	"AGPAT4"	56895	"ENSG00000026652"
+"227528_s_at"	"KMT2D"	8085	"ENSG00000167548"
+"226011_at"	"CCDC12"	151903	"ENSG00000160799"
+"230450_at"	"SEPTIN7-DT"	NA	"ENSG00000228878"
+"226688_at"	"TCAIM"	285343	"ENSG00000179152"
+"228360_at"	"LYPD6B"	130576	"ENSG00000150556"
+"228718_at"	"ZNF44"	51710	"ENSG00000197857"
+"228540_at"	"QKI"	9444	"ENSG00000112531"
+"227763_at"	"LYPD6"	130574	"ENSG00000187123"
+"227764_at"	"LYPD6"	130574	"ENSG00000187123"
+"227369_at"	"SERBP1"	26135	"ENSG00000142864"
+"228129_at"	"SERBP1"	26135	"ENSG00000142864"
+"228614_at"	"MTLN"	205251	"ENSG00000175701"
+"228080_at"	"LAYN"	143903	"ENSG00000204381"
+"229638_at"	"IRX3"	79191	"ENSG00000177508"
+"227360_at"	"GP6-AS1"	NA	"ENSG00000267265"
+"229679_at"	"C12orf76"	400073	"ENSG00000174456"
+"226583_at"	"C12orf76"	400073	"ENSG00000174456"
+"229978_at"	"SHISA9"	729993	"ENSG00000237515"
+"227570_at"	"TMEM86A"	144110	"ENSG00000151117"
+"230458_at"	"SLC45A1"	50651	"ENSG00000162426"
+"227055_at"	"METTL7B"	196410	"ENSG00000170439"
+"229844_at"	"FOXP1"	27086	"ENSG00000114861"
+"229248_at"	"UCHL5"	51377	"ENSG00000116750"
+"230306_at"	"VPS26B"	112936	"ENSG00000151502"
+"229487_at"	"EBF1"	1879	"ENSG00000164330"
+"227646_at"	"EBF1"	1879	"ENSG00000164330"
+"226608_at"	"C16orf87"	388272	"ENSG00000155330"
+"229939_at"	"ENDOV"	284131	"ENSG00000173818"
+"226994_at"	"DNAJA2"	10294	"ENSG00000069345"
+"226243_at"	"PTRHD1"	391356	"ENSG00000184924"
+"228435_at"	""	NA	"ENSG00000269604"
+"226215_s_at"	"KDM2B"	84678	"ENSG00000089094"
+"229446_at"	"MARCHF6-DT"	101929977	"ENSG00000259802"
+"226702_at"	"CMPK2"	129607	"ENSG00000134326"
+"230081_at"	"PLCXD3"	345557	"ENSG00000182836"
+"225761_at"	"TENT2"	167153	"ENSG00000164329"
+"225558_at"	"GIT2"	9815	"ENSG00000139436"
+"227148_at"	"PLEKHH2"	130271	"ENSG00000152527"
+"228329_at"	"DAB1"	1600	"ENSG00000173406"
+"228289_at"	"BRD7"	29117	"ENSG00000166164"
+"226528_at"	"MTX3"	345778	"ENSG00000177034"
+"228029_at"	"ZNF721"	170960	"ENSG00000182903"
+"230355_at"	""	NA	"ENSG00000291207"
+"228147_at"	""	NA	"ENSG00000291207"
+"226257_x_at"	"MRPS22"	56945	"ENSG00000175110"
+"228059_x_at"	"MRPS22"	56945	"ENSG00000175110"
+"227149_at"	"TNRC6C"	57690	"ENSG00000078687"
+"226391_at"	"BRAF"	673	"ENSG00000157764"
+"228892_at"	"SH3RF2"	153769	"ENSG00000156463"
+"228114_x_at"	"METTL26"	84326	"ENSG00000130731"
+"227378_x_at"	"METTL26"	84326	"ENSG00000130731"
+"227641_at"	"FBXL16"	146330	"ENSG00000127585"
+"229975_at"	"BMPR1B"	658	"ENSG00000138696"
+"230194_at"	"LRPPRC"	10128	"ENSG00000138095"
+"227623_at"	"CACNA2D1"	781	"ENSG00000153956"
+"226078_at"	"RPUSD1"	113000	"ENSG00000007376"
+"229443_at"	"UQCC2"	84300	"ENSG00000137288"
+"228192_at"	"UQCC2"	84300	"ENSG00000137288"
+"226569_s_at"	"CHTF18"	63922	"ENSG00000127586"
+"230119_at"	"EPHB2"	2048	"ENSG00000133216"
+"230088_at"	"EPHB2"	2048	"ENSG00000133216"
+"227838_at"	"UNC5C"	8633	"ENSG00000182168"
+"228796_at"	"CPNE4"	131034	"ENSG00000196353"
+"228515_at"	"POLR1A"	25885	"ENSG00000068654"
+"228085_at"	"MMP25-AS1"	124900372	"ENSG00000261971"
+"227207_x_at"	"ZNF213"	7760	"ENSG00000085644"
+"229549_at"	"CALU"	813	"ENSG00000128595"
+"226955_at"	"AFAP1L1"	134265	"ENSG00000157510"
+"226881_at"	"GRPEL2"	134266	"ENSG00000164284"
+"228546_at"	"DPP6"	1804	"ENSG00000130226"
+"227183_at"	"CARMN"	NA	"ENSG00000249669"
+"226275_at"	"MXD1"	4084	"ENSG00000059728"
+"228846_at"	"MXD1"	4084	"ENSG00000059728"
+"226442_at"	"ABTB1"	80325	"ENSG00000114626"
+"229164_s_at"	"ABTB1"	80325	"ENSG00000114626"
+"228848_at"	"ABTB1"	80325	"ENSG00000114626"
+"230024_at"	"AARS2"	57505	"ENSG00000124608"
+"227515_at"	"STAMBP"	10617	"ENSG00000124356"
+"228144_at"	"ZNF300"	91975	"ENSG00000145908"
+"230055_at"	"KHDC1"	80759	"ENSG00000135314"
+"227226_at"	"MRAP2"	112609	"ENSG00000135324"
+"230091_at"	"SRPK2"	6733	"ENSG00000135250"
+"226077_at"	"RNF145"	153830	"ENSG00000145860"
+"229062_at"	"ARL9"	132946	"ENSG00000196503"
+"230473_s_at"	"HMGB4"	127540	"ENSG00000176256"
+"225588_s_at"	"TMEM129"	92305	"ENSG00000168936"
+"225587_at"	"TMEM129"	92305	"ENSG00000168936"
+"226169_at"	"SBF2"	81846	"ENSG00000133812"
+"229180_at"	"WWC1"	23286	"ENSG00000113645"
+"229440_at"	"RBM47"	54502	"ENSG00000163694"
+"229439_s_at"	"RBM47"	54502	"ENSG00000163694"
+"226855_at"	"PDP2"	57546	"ENSG00000172840"
+"229711_s_at"	"MDM2"	4193	"ENSG00000135679"
+"226885_at"	"RNF217"	154214	"ENSG00000146373"
+"225654_at"	"NSD1"	64324	"ENSG00000165671"
+"226621_at"	"OSMR"	9180	"ENSG00000145623"
+"227748_at"	"RBMXL1"	494115	"ENSG00000213516"
+"228338_at"	"POU2AF3"	120376	"ENSG00000214290"
+"228248_at"	"RICTOR"	253260	"ENSG00000164327"
+"226312_at"	"RICTOR"	253260	"ENSG00000164327"
+"226310_at"	"RICTOR"	253260	"ENSG00000164327"
+"227834_at"	"TXLNB"	167838	"ENSG00000164440"
+"229400_at"	"HOXD10"	3236	"ENSG00000128710"
+"229493_at"	"HOXD-AS2"	NA	"ENSG00000237380"
+"229337_at"	"USP2"	9099	"ENSG00000036672"
+"228601_at"	"HAGLR"	401022	"ENSG00000224189"
+"227697_at"	"SOCS3"	9021	"ENSG00000184557"
+"226266_at"	"PGS1"	9489	"ENSG00000087157"
+"227851_s_at"	"PGS1"	9489	"ENSG00000087157"
+"229766_at"	"ZNF445"	353274	"ENSG00000185219"
+"227342_s_at"	"MYEOV"	26579	"ENSG00000172927"
+"227198_at"	"AFF3"	3899	"ENSG00000144218"
+"228676_at"	"LTO1"	220064	"ENSG00000149716"
+"225561_at"	"SELENOT"	51714	"ENSG00000198843"
+"225996_at"	"LONRF2"	164832	"ENSG00000170500"
+"228065_at"	"BCL9L"	283149	"ENSG00000186174"
+"227616_at"	"BCL9L"	283149	"ENSG00000186174"
+"226392_at"	"RASA2"	5922	"ENSG00000155903"
+"229255_x_at"	"GOSR2"	9570	"ENSG00000108433"
+"227981_at"	"CYB561D1"	284613	"ENSG00000174151"
+"226636_at"	"PLD1"	5337	"ENSG00000075651"
+"226718_at"	"AMIGO1"	57463	"ENSG00000181754"
+"229809_at"	"POU6F1"	5463	"ENSG00000184271"
+"226810_at"	"OGFRL1"	79627	"ENSG00000119900"
+"230032_at"	"OSGEPL1"	64172	"ENSG00000128694"
+"227548_at"	"ORMDL1"	94101	"ENSG00000128699"
+"228801_at"	"ORMDL1"	94101	"ENSG00000128699"
+"228759_at"	"CREB3L2"	64764	"ENSG00000182158"
+"227347_x_at"	"HES4"	57801	"ENSG00000188290"
+"228099_at"	"ZNF550"	162972	"ENSG00000251369"
+"226784_at"	"POLR1F"	221830	"ENSG00000105849"
+"226948_at"	"RHBDD1"	84236	"ENSG00000144468"
+"226945_at"	"RHBDD1"	84236	"ENSG00000144468"
+"227414_at"	"RHBDD1"	84236	"ENSG00000144468"
+"225559_at"	"CCDC174"	51244	"ENSG00000154781"
+"226561_at"	"AGFG1"	3267	"ENSG00000173744"
+"228205_at"	"TKT"	7086	"ENSG00000163931"
+"228592_at"	"MS4A1"	931	"ENSG00000156738"
+"228599_at"	"MS4A1"	931	"ENSG00000156738"
+"228132_at"	"ABLIM2"	84448	"ENSG00000163995"
+"226369_at"	"LINC01089"	338799	"ENSG00000212694"
+"227794_at"	"GLYATL1"	92292	"ENSG00000166840"
+"227695_at"	"GLYATL1"	92292	"ENSG00000166840"
+"228028_at"	"GAREM2"	150946	"ENSG00000157833"
+"229917_at"	"AGAP2"	116986	"ENSG00000135439"
+"229130_at"	""	NA	"ENSG00000251615"
+"228641_at"	"CARD8"	22900	"ENSG00000105483"
+"228320_x_at"	"BICDL1"	92558	"ENSG00000135127"
+"225620_at"	"RAB35"	11021	"ENSG00000111737"
+"228035_at"	"STK33"	65975	"ENSG00000130413"
+"228086_at"	"STK33"	65975	"ENSG00000130413"
+"229831_at"	"CNTN3"	5067	"ENSG00000113805"
+"228042_at"	"ADPRH"	141	"ENSG00000144843"
+"228984_at"	"CARNS1"	57571	"ENSG00000172508"
+"227622_at"	"PCF11"	51585	"ENSG00000165494"
+"229779_at"	"COL4A4"	1286	"ENSG00000081052"
+"228916_at"	"CWF19L2"	143884	"ENSG00000152404"
+"226049_at"	"ERC1"	23085	"ENSG00000082805"
+"225946_at"	"RASSF8"	11228	"ENSG00000123094"
+"228181_at"	"SLC30A1"	7779	"ENSG00000170385"
+"229057_at"	"SCN2A"	6326	"ENSG00000136531"
+"226941_at"	"ATF6"	22926	"ENSG00000118217"
+"226986_at"	"WIPI2"	26100	"ENSG00000157954"
+"229394_s_at"	"ARHGAP35"	2909	"ENSG00000160007"
+"227281_at"	"SLC29A4"	222962	"ENSG00000164638"
+"228032_s_at"	"DENND1B"	163486	"ENSG00000213047"
+"227325_at"	"INAFM1"	255783	"ENSG00000257704"
+"227651_at"	"NACC1"	112939	"ENSG00000160877"
+"227353_at"	"TMC8"	147138	"ENSG00000167895"
+"227822_at"	"ZNF605"	100289635	"ENSG00000196458"
+"228630_at"	"ZNF84"	7637	"ENSG00000198040"
+"228551_at"	"DENND5B"	160518	"ENSG00000170456"
+"226363_at"	"ABCC5"	10057	"ENSG00000114770"
+"229217_at"	"SP3"	6670	"ENSG00000172845"
+"226949_at"	"GOLGA3"	2802	"ENSG00000090615"
+"228591_at"	"TMC6"	11322	"ENSG00000141524"
+"227247_at"	"PLEKHA8"	84725	"ENSG00000106086"
+"226018_at"	"MTURN"	222166	"ENSG00000180354"
+"225715_at"	"RPTOR"	57521	"ENSG00000141564"
+"229508_at"	"U2AF2"	11338	"ENSG00000063244"
+"226156_at"	"AKT2"	208	"ENSG00000105221"
+"228646_at"	"PPP1R1C"	151242	"ENSG00000150722"
+"226441_at"	"MAP3K2"	10746	"ENSG00000169967"
+"226979_at"	"MAP3K2"	10746	"ENSG00000169967"
+"227073_at"	"MAP3K2"	10746	"ENSG00000169967"
+"227434_at"	"GALNT17"	64409	"ENSG00000185274"
+"226678_at"	"UNC13D"	201294	"ENSG00000092929"
+"228352_at"	"UNC13D"	201294	"ENSG00000092929"
+"228350_at"	"UNC13D"	201294	"ENSG00000092929"
+"229346_at"	"NES"	10763	"ENSG00000132688"
+"229460_at"	"HYCC2"	285172	"ENSG00000155744"
+"230012_at"	"LINC00324"	284029	"ENSG00000178977"
+"228538_at"	"ZNF662"	389114	"ENSG00000182983"
+"230068_s_at"	""	NA	"ENSG00000286125"
+"229855_at"	"RNF34"	80196	"ENSG00000170633"
+"227554_at"	"MAGI2-AS3"	100505881	"ENSG00000234456"
+"229480_at"	"MAGI2-AS3"	100505881	"ENSG00000234456"
+"229873_at"	"KCTD21"	283219	"ENSG00000188997"
+"227578_at"	"TMPO-AS1"	100128191	"ENSG00000257167"
+"229198_at"	"USP35"	57558	"ENSG00000118369"
+"227479_at"	""	NA	"ENSG00000283103"
+"230132_at"	"PCAT19"	100505495	"ENSG00000267107"
+"227431_at"	"APTR"	100505854	"ENSG00000214293"
+"228813_at"	"HDAC4"	9759	"ENSG00000068024"
+"226726_at"	"MBOAT2"	129642	"ENSG00000143797"
+"229507_at"	"INKA1"	389119	"ENSG00000185614"
+"227321_at"	"CASTOR3P"	352954	"ENSG00000291122"
+"229833_at"	"ALOX12-AS1"	100506713	"ENSG00000215067"
+"229215_at"	"ASCL2"	430	"ENSG00000183734"
+"227045_at"	"ZNF614"	80110	"ENSG00000142556"
+"227484_at"	"SRGAP1"	57522	"ENSG00000196935"
+"229279_at"	""	NA	"ENSG00000275055"
+"226976_at"	"KPNA6"	23633	"ENSG00000025800"
+"227284_at"	"ZNF766"	90321	"ENSG00000196214"
+"227500_at"	"FBXL18"	80028	"ENSG00000155034"
+"226669_at"	"USP42"	84132	"ENSG00000106346"
+"226176_s_at"	"USP42"	84132	"ENSG00000106346"
+"226174_at"	"USP42"	84132	"ENSG00000106346"
+"228393_s_at"	"ZNF302"	55900	"ENSG00000089335"
+"228392_at"	"ZNF302"	55900	"ENSG00000089335"
+"229136_s_at"	""	NA	"ENSG00000274104"
+"228093_at"	"ZNF599"	148103	"ENSG00000153896"
+"229205_at"	"ZNF793-AS1"	101927720	"ENSG00000266916"
+"227807_at"	"PARP9"	83666	"ENSG00000138496"
+"228424_at"	"NAALADL1"	10004	"ENSG00000168060"
+"225630_at"	"EEPD1"	80820	"ENSG00000122547"
+"225631_at"	"EEPD1"	80820	"ENSG00000122547"
+"228769_at"	"ZSCAN22"	342945	"ENSG00000182318"
+"229751_s_at"	"PUS7L"	83448	"ENSG00000129317"
+"228775_at"	"EMC3"	55831	"ENSG00000125037"
+"227737_at"	"SRPRB"	58477	"ENSG00000144867"
+"228148_at"	"ZNF584"	201514	"ENSG00000171574"
+"227734_s_at"	"TM7SF2"	7108	"ENSG00000149809"
+"230175_s_at"	"ST3GAL6"	10402	"ENSG00000064225"
+"229862_x_at"	"ZBTB45"	84878	"ENSG00000119574"
+"229973_at"	"ERICH3"	127254	"ENSG00000178965"
+"226431_at"	"FAM117B"	150864	"ENSG00000138439"
+"226418_at"	"ERGIC2"	51290	"ENSG00000087502"
+"226422_at"	"ERGIC2"	51290	"ENSG00000087502"
+"226916_x_at"	"DPP9"	91039	"ENSG00000142002"
+"227141_at"	"TYW3"	127253	"ENSG00000162623"
+"230452_at"	"SLC20A1-DT"	NA	"ENSG00000237753"
+"226988_s_at"	"MYH14"	79784	"ENSG00000105357"
+"229854_at"	"OBSCN"	84033	"ENSG00000154358"
+"228071_at"	"GIMAP7"	168537	"ENSG00000179144"
+"229367_s_at"	"GIMAP6"	474344	"ENSG00000133561"
+"225789_at"	"AGAP3"	116988	"ENSG00000133612"
+"228794_at"	"XIRP2"	129446	"ENSG00000163092"
+"229631_at"	"DNHD1"	144132	"ENSG00000179532"
+"229617_x_at"	"AP2A1"	160	"ENSG00000196961"
+"225811_at"	"C11orf58"	10944	"ENSG00000110696"
+"228702_at"	"LINC-PINT"	378805	"ENSG00000231721"
+"225636_at"	"STAT2"	6773	"ENSG00000170581"
+"230480_at"	"PIWIL4"	143689	"ENSG00000134627"
+"229275_at"	"IGFN1"	91156	"ENSG00000163395"
+"228803_at"	"PMS1"	5378	"ENSG00000064933"
+"226969_at"	"MTR"	4548	"ENSG00000116984"
+"228799_at"	"NCK1-DT"	NA	"ENSG00000239213"
+"228549_at"	""	NA	"ENSG00000242861"
+"225743_at"	"RPUSD3"	285367	"ENSG00000156990"
+"230304_at"	""	NA	"ENSG00000261526"
+"228760_at"	"SRSF8"	10929	"ENSG00000263465"
+"230053_at"	"ENDOD1"	23052	"ENSG00000149218"
+"227264_at"	"TRAF6"	7189	"ENSG00000175104"
+"227679_at"	"HDAC11"	79885	"ENSG00000163517"
+"230115_at"	"LINC02716"	NA	"ENSG00000205106"
+"226966_at"	"PRPF40B"	25766	"ENSG00000110844"
+"229156_s_at"	"PRKAG2-AS1"	NA	"ENSG00000239911"
+"229157_at"	"PRKAG2-AS1"	NA	"ENSG00000239911"
+"227844_at"	"FMNL3"	91010	"ENSG00000161791"
+"229161_at"	"IQCG"	84223	"ENSG00000114473"
+"229611_at"	"LMLN"	89782	"ENSG00000185621"
+"227964_at"	"FRMD8"	83786	"ENSG00000126391"
+"226711_at"	"FOXN2"	3344	"ENSG00000170802"
+"228127_at"	"KCNK3"	3777	"ENSG00000171303"
+"228547_at"	"NRXN1"	9378	"ENSG00000179915"
+"226531_at"	"ORAI1"	84876	"ENSG00000276045"
+"226295_at"	"ITFG2"	55846	"ENSG00000111203"
+"225836_s_at"	"RHNO1"	83695	"ENSG00000171792"
+"225837_at"	"RHNO1"	83695	"ENSG00000171792"
+"230065_at"	"ZNF180"	7733	"ENSG00000167384"
+"230257_s_at"	"TSEN15"	116461	"ENSG00000198860"
+"230504_at"	"CEACAM19"	56971	"ENSG00000186567"
+"226071_at"	"ADAMTSL4"	54507	"ENSG00000143382"
+"225845_at"	"ZBTB44"	29068	"ENSG00000196323"
+"226148_at"	"ZBTB44"	29068	"ENSG00000196323"
+"226658_at"	"PDPN"	10630	"ENSG00000162493"
+"227007_at"	"TMCO4"	255104	"ENSG00000162542"
+"228582_x_at"	"TALAM1"	109136579	"ENSG00000289740"
+"227510_x_at"	"TALAM1"	109136579	"ENSG00000289740"
+"229687_s_at"	"PRDM11"	56981	"ENSG00000019485"
+"229688_at"	"PRDM11"	56981	"ENSG00000019485"
+"226571_s_at"	"PTPRS"	5802	"ENSG00000105426"
+"228450_at"	"PLEKHA7"	144100	"ENSG00000166689"
+"227396_at"	"PTPRJ"	5795	"ENSG00000149177"
+"227426_at"	"SOS1"	6654	"ENSG00000115904"
+"229261_at"	"SOS1"	6654	"ENSG00000115904"
+"230337_at"	"SOS1"	6654	"ENSG00000115904"
+"227106_at"	"TMEM198B"	440104	"ENSG00000182796"
+"227332_at"	"PXN-AS1"	NA	"ENSG00000255857"
+"230195_at"	"LINC01405"	100131138	"ENSG00000185847"
+"228675_at"	"USP30-AS1"	NA	"ENSG00000256262"
+"225869_s_at"	"UNC93B1"	81622	"ENSG00000110057"
+"229048_at"	"RBM15"	64783	"ENSG00000162775"
+"226060_at"	"RFT1"	91869	"ENSG00000163933"
+"227062_at"	"NEAT1"	283131	"ENSG00000245532"
+"226154_at"	"DNM1L"	10059	"ENSG00000087470"
+"230052_s_at"	"NFKBID"	84807	"ENSG00000167604"
+"225557_at"	"CSRNP1"	64651	"ENSG00000144655"
+"230428_at"	"C2CD4D-AS1"	NA	"ENSG00000234614"
+"229253_at"	"THEM4"	117145	"ENSG00000159445"
+"228501_at"	"GALNT15"	117248	"ENSG00000131386"
+"227686_at"	"OXNAD1"	92106	"ENSG00000154814"
+"229010_at"	"CBL"	867	"ENSG00000110395"
+"227882_at"	"FKRP"	79147	"ENSG00000181027"
+"229332_at"	"HPDL"	84842	"ENSG00000186603"
+"229544_at"	"RPL14"	9045	"ENSG00000188846"
+"230242_at"	"NFASC"	23114	"ENSG00000163531"
+"230164_at"	"ZNF621"	285268	"ENSG00000172888"
+"226790_at"	"MORN2"	729967	"ENSG00000188010"
+"228183_s_at"	"RPAIN"	84268	"ENSG00000129197"
+"227099_s_at"	"C11orf96"	387763	"ENSG00000187479"
+"230045_at"	"CNTN2"	6900	"ENSG00000184144"
+"229385_s_at"	"TINCR"	257000	"ENSG00000223573"
+"229314_at"	"ZNF181"	339318	"ENSG00000197841"
+"226582_at"	"LINC02381"	400043	"ENSG00000250742"
+"226262_at"	"DHX33"	56919	"ENSG00000005100"
+"229870_at"	""	644656	"ENSG00000268403"
+"230393_at"	""	NA	"ENSG00000288012"
+"226719_at"	"DERL2"	51009	"ENSG00000072849"
+"227925_at"	"GSEC"	NA	"ENSG00000280832"
+"230274_s_at"	"NUP88"	4927	"ENSG00000108559"
+"225904_at"	"CCSAP"	126731	"ENSG00000154429"
+"227115_at"	"LINC02762"	283140	"ENSG00000250303"
+"229150_at"	"MLPH"	79083	"ENSG00000115648"
+"228612_at"	"RAB30-DT"	NA	"ENSG00000246067"
+"228643_at"	"RAB30-DT"	NA	"ENSG00000246067"
+"230341_x_at"	"ADAMTS10"	81794	"ENSG00000142303"
+"229789_at"	"TIGD3"	220359	"ENSG00000173825"
+"229372_at"	"GOLT1A"	127845	"ENSG00000174567"
+"229245_at"	"PLEKHA6"	22874	"ENSG00000143850"
+"226367_at"	"KDM5A"	5927	"ENSG00000073614"
+"230226_s_at"	"KDM5A"	5927	"ENSG00000073614"
+"226371_at"	"KDM5A"	5927	"ENSG00000073614"
+"226739_at"	"RNF169"	254225	"ENSG00000166439"
+"228229_at"	"ZNF526"	116115	"ENSG00000167625"
+"226013_at"	"TRAK1"	22906	"ENSG00000182606"
+"227418_at"	"MSANTD4"	84437	"ENSG00000170903"
+"228777_at"	"KBTBD3"	143879	"ENSG00000182359"
+"227992_s_at"	"SPACA6"	147650	"ENSG00000182310"
+"230255_at"	"GABRD"	2563	"ENSG00000187730"
+"228232_s_at"	"VSIG2"	23584	"ENSG00000019102"
+"229369_at"	"VSIG2"	23584	"ENSG00000019102"
+"229132_at"	"RIOX2"	84864	"ENSG00000170854"
+"229381_at"	"SRARP"	149563	"ENSG00000183888"
+"226028_at"	"ROBO4"	54538	"ENSG00000154133"
+"230033_at"	"DNAAF3"	352909	"ENSG00000167646"
+"229199_at"	"SCN9A"	6335	"ENSG00000169432"
+"228828_at"	"TSPOAP1-AS1"	100506779	"ENSG00000265148"
+"228826_at"	"TSPOAP1-AS1"	100506779	"ENSG00000265148"
+"228970_at"	"ZBTB8OS"	339487	"ENSG00000176261"
+"228026_at"	"SIKE1"	80143	"ENSG00000052723"
+"229892_at"	""	NA	"ENSG00000291171"
+"226283_at"	"POC1B"	282809	"ENSG00000139323"
+"225711_at"	"ARL6IP6"	151188	"ENSG00000177917"
+"225707_at"	"ARL6IP6"	151188	"ENSG00000177917"
+"225709_at"	"ARL6IP6"	151188	"ENSG00000177917"
+"230451_at"	"COX10-DT"	100874058	"ENSG00000236088"
+"226793_at"	"LINC00294"	283267	"ENSG00000280798"
+"229666_s_at"	"CSTF3"	1479	"ENSG00000176102"
+"229665_at"	"CSTF3"	1479	"ENSG00000176102"
+"226297_at"	"HIPK3"	10114	"ENSG00000110422"
+"230314_at"	""	NA	"ENSG00000277511"
+"226516_at"	"MFSD12"	126321	"ENSG00000161091"
+"227963_at"	"SNHG29"	125144	"ENSG00000175061"
+"226912_at"	"ZDHHC23"	254887	"ENSG00000184307"
+"226990_at"	"CAPRIN1"	4076	"ENSG00000135387"
+"226289_at"	"CAPRIN1"	4076	"ENSG00000135387"
+"226285_at"	"CAPRIN1"	4076	"ENSG00000135387"
+"227209_at"	"CNTN1"	1272	"ENSG00000018236"
+"227202_at"	"CNTN1"	1272	"ENSG00000018236"
+"228476_at"	"CCDC191"	57577	"ENSG00000163617"
+"228333_at"	"ZEB2"	9839	"ENSG00000169554"
+"230392_at"	"HNRNPM"	4670	"ENSG00000099783"
+"227610_at"	"TSPAN11"	441631	"ENSG00000110900"
+"230468_s_at"	"C1orf56"	54964	"ENSG00000143443"
+"229120_s_at"	"CDC42SE1"	56882	"ENSG00000197622"
+"226565_at"	"KRT10-AS1"	147184	"ENSG00000167920"
+"227112_at"	"TMCC1"	23023	"ENSG00000172765"
+"228972_at"	"PITPNA-AS1"	100306951	"ENSG00000236618"
+"227472_at"	"DDA1"	79016	"ENSG00000130311"
+"226229_s_at"	"SSU72"	29101	"ENSG00000160075"
+"228261_at"	"MIB2"	142678	"ENSG00000197530"
+"229056_at"	""	NA	"ENSG00000290082"
+"226679_at"	"SLC26A11"	284129	"ENSG00000181045"
+"227864_s_at"	"MVB12A"	93343	"ENSG00000141971"
+"229247_at"	"FBLN7"	129804	"ENSG00000144152"
+"228504_at"	"SCN7A"	6332	"ENSG00000136546"
+"226728_at"	"SLC27A1"	376497	"ENSG00000130304"
+"227603_at"	"ZNF875"	284459	"ENSG00000181666"
+"229816_at"	"DNAI4"	79819	"ENSG00000152763"
+"227437_at"	"NRAV"	100506668	"ENSG00000248008"
+"229366_at"	"TRNT1"	51095	"ENSG00000072756"
+"225889_at"	"AEBP2"	121536	"ENSG00000139154"
+"226581_at"	"RBSN"	64145	"ENSG00000131381"
+"227758_at"	"RERG"	85004	"ENSG00000134533"
+"226425_at"	"CLIP4"	79745	"ENSG00000115295"
+"226861_at"	"ASB8"	140461	"ENSG00000177981"
+"229626_at"	"CCDC184"	387856	"ENSG00000177875"
+"226509_at"	"ZNF641"	121274	"ENSG00000167528"
+"229897_at"	"ZNF641"	121274	"ENSG00000167528"
+"230201_at"	"FXR1"	8087	"ENSG00000114416"
+"229519_at"	"FXR1"	8087	"ENSG00000114416"
+"230063_at"	"ZNF264"	9422	"ENSG00000083844"
+"226064_s_at"	"DGAT2"	84649	"ENSG00000062282"
+"229466_at"	"TRIM66"	9866	"ENSG00000166436"
+"227109_at"	"CYP2R1"	120227	"ENSG00000186104"
+"228131_at"	"ERCC1"	2067	"ENSG00000012061"
+"230240_at"	"DYRK3"	8444	"ENSG00000143479"
+"226322_at"	"TMTC1"	83857	"ENSG00000133687"
+"226931_at"	"TMTC1"	83857	"ENSG00000133687"
+"226527_at"	"RPRD2"	23248	"ENSG00000163125"
+"228748_at"	"CD59"	966	"ENSG00000085063"
+"228912_at"	"VIL1"	7429	"ENSG00000127831"
+"230381_at"	"RHEX"	440712	"ENSG00000263961"
+"228973_at"	"DLG2"	1740	"ENSG00000150672"
+"227441_s_at"	"ANKS1B"	56899	"ENSG00000185046"
+"227440_at"	"ANKS1B"	56899	"ENSG00000185046"
+"227439_at"	"ANKS1B"	56899	"ENSG00000185046"
+"227649_s_at"	"SRGAP2"	23380	"ENSG00000266028"
+"226286_at"	"ELMOD3"	84173	"ENSG00000115459"
+"228595_at"	"HSD17B1-AS1"	108783654	"ENSG00000266962"
+"225616_at"	"SPRYD4"	283377	"ENSG00000176422"
+"225776_at"	"RBMS2"	5939	"ENSG00000076067"
+"225778_at"	"RBMS2"	5939	"ENSG00000076067"
+"226239_at"	"TMEM150A"	129303	"ENSG00000168890"
+"230038_at"	"ATXN7L2"	127002	"ENSG00000162650"
+"226950_at"	"ACVRL1"	94	"ENSG00000139567"
+"226619_at"	"SENP1"	29843	"ENSG00000079387"
+"227747_at"	"MPZL3"	196264	"ENSG00000160588"
+"227743_at"	"MYO15B"	80022	"ENSG00000266714"
+"226734_at"	"EIF4E2"	9470	"ENSG00000135930"
+"229926_at"	"MIR3682"	100500850	"ENSG00000265452"
+"228904_at"	"HOXB3"	3213	"ENSG00000120093"
+"229667_s_at"	"HOXB8"	3218	"ENSG00000120068"
+"226461_at"	"HOXB9"	3219	"ENSG00000170689"
+"229119_s_at"	"ZSWIM7"	125150	"ENSG00000214941"
+"228719_at"	"ZSWIM7"	125150	"ENSG00000214941"
+"229929_at"	"SPSB4"	92369	"ENSG00000175093"
+"228182_at"	"ADCY5"	111	"ENSG00000173175"
+"225982_at"	"UBTF"	7343	"ENSG00000108312"
+"226820_at"	"ZNF362"	149076	"ENSG00000160094"
+"228923_at"	"S100A6"	6277	"ENSG00000197956"
+"229085_at"	"LRRC3B"	116135	"ENSG00000179796"
+"229310_at"	"KLHL29"	114818	"ENSG00000119771"
+"227998_at"	"S100A16"	140576	"ENSG00000188643"
+"229598_at"	"COBLL1"	22837	"ENSG00000082438"
+"229998_x_at"	"SH3D21"	79729	"ENSG00000214193"
+"227454_at"	"TAOK1"	57551	"ENSG00000160551"
+"230082_at"	"UBE2FP1"	NA	"ENSG00000224080"
+"225593_at"	"LSM10"	84967	"ENSG00000181817"
+"229770_at"	"GLT1D1"	144423	"ENSG00000151948"
+"227962_at"	"ACOX1"	51	"ENSG00000161533"
+"226296_s_at"	"MRPS15"	64960	"ENSG00000116898"
+"228113_at"	"RAB37"	326624	"ENSG00000172794"
+"228545_at"	"ZNF148"	7707	"ENSG00000163848"
+"227074_at"	"CCDC18-AS1"	NA	"ENSG00000223745"
+"226891_at"	"XXYLT1"	152002	"ENSG00000173950"
+"228739_at"	"CYS1"	192668	"ENSG00000205795"
+"228821_at"	"ST6GAL2"	84620	"ENSG00000144057"
+"226723_at"	"SVBP"	374969	"ENSG00000177868"
+"226337_at"	"GORAB"	92344	"ENSG00000120370"
+"226953_at"	"CADM3"	57863	"ENSG00000162706"
+"230284_at"	"MYOM3"	127294	"ENSG00000142661"
+"229479_at"	"LINC01614"	105373869	"ENSG00000230838"
+"229842_at"	"ELF3"	1999	"ENSG00000163435"
+"230495_at"	"LINC01102"	NA	"ENSG00000235597"
+"228430_at"	"BOLA3-DT"	100507171	"ENSG00000225439"
+"227819_at"	"LGR6"	59352	"ENSG00000133067"
+"225772_s_at"	"COX14"	84987	"ENSG00000178449"
+"228268_at"	"FMO2"	2327	"ENSG00000094963"
+"228618_at"	"PEAR1"	375033	"ENSG00000187800"
+"226238_at"	"MCEE"	84693	"ENSG00000124370"
+"227167_s_at"	"RASSF3"	283349	"ENSG00000153179"
+"228779_at"	""	NA	"ENSG00000291117"
+"227200_at"	"ETV3"	2117	"ENSG00000117036"
+"230460_at"	"MYLK-AS1"	100506826	"ENSG00000239523"
+"230099_at"	""	NA	"ENSG00000291214"
+"227567_at"	""	NA	"ENSG00000291214"
+"230193_at"	"CFAP251"	144406	"ENSG00000158023"
+"229338_at"	""	NA	"ENSG00000268129"
+"229754_at"	"TMEM44-AS1"	NA	"ENSG00000231770"
+"230334_at"	"COPB2-DT"	100507291	"ENSG00000248932"
+"227558_at"	"CBX4"	8535	"ENSG00000141582"
+"228488_at"	"TBC1D16"	125058	"ENSG00000167291"
+"225929_s_at"	"RNF213"	57674	"ENSG00000173821"
+"225931_s_at"	"RNF213"	57674	"ENSG00000173821"
+"230000_at"	"RNF213"	57674	"ENSG00000173821"
+"226413_at"	"LINC00938"	NA	"ENSG00000273015"
+"230339_at"	"CCDC138"	165055	"ENSG00000163006"
+"227079_at"	"DHX8"	1659	"ENSG00000067596"
+"225572_at"	"CREB1"	1385	"ENSG00000118260"
+"225565_at"	"CREB1"	1385	"ENSG00000118260"
+"229488_at"	"OTUD7B"	56957	"ENSG00000264522"
+"227436_at"	"OTUD7B"	56957	"ENSG00000264522"
+"228810_at"	"CCNYL1"	151195	"ENSG00000163249"
+"230244_at"	"SNORC"	389084	"ENSG00000182600"
+"226848_at"	"MRPS25"	64432	"ENSG00000131368"
+"226188_at"	"LGALSL"	29094	"ENSG00000119862"
+"225793_at"	"LIX1L"	128077	"ENSG00000271601"
+"228621_at"	"HJV"	148738	"ENSG00000168509"
+"230056_at"	"BPTF"	2186	"ENSG00000171634"
+"228495_at"	"GPATCH11"	253635	"ENSG00000152133"
+"227533_at"	"RALGPS2"	55103	"ENSG00000116191"
+"227224_at"	"RALGPS2"	55103	"ENSG00000116191"
+"226253_at"	"LRRC45"	201255	"ENSG00000169683"
+"229441_at"	"PRSS23"	11098	"ENSG00000150687"
+"226279_at"	"PRSS23"	11098	"ENSG00000150687"
+"226265_at"	"QSER1"	79832	"ENSG00000060749"
+"229982_at"	"QSER1"	79832	"ENSG00000060749"
+"228293_at"	"DEPDC7"	91614	"ENSG00000121690"
+"227435_at"	"USF3"	205717	"ENSG00000176542"
+"227433_at"	"USF3"	205717	"ENSG00000176542"
+"227862_at"	"TRNP1"	388610	"ENSG00000253368"
+"229518_at"	"TENT5B"	115572	"ENSG00000158246"
+"227818_at"	"CEP85"	64793	"ENSG00000130695"
+"226252_at"	"ZBTB20"	26137	"ENSG00000181722"
+"226250_at"	"ZBTB20"	26137	"ENSG00000181722"
+"227716_at"	"UBXN11"	91544	"ENSG00000158062"
+"228094_at"	"JAML"	120425	"ENSG00000160593"
+"229458_s_at"	"ITGB4"	3691	"ENSG00000132470"
+"226981_at"	"KMT2A"	4297	"ENSG00000118058"
+"230043_at"	"MUC20"	200958	"ENSG00000176945"
+"227171_at"	""	NA	"ENSG00000286360"
+"230060_at"	"CDCA7"	83879	"ENSG00000144354"
+"227370_at"	"FAM171B"	165215	"ENSG00000144369"
+"225742_at"	"MDM4"	4194	"ENSG00000198625"
+"225740_x_at"	"MDM4"	4194	"ENSG00000198625"
+"228090_at"	"NMNAT3"	349565	"ENSG00000163864"
+"226357_at"	"USP19"	10869	"ENSG00000172046"
+"225883_at"	"ATG16L2"	89849	"ENSG00000168010"
+"229389_at"	"ATG16L2"	89849	"ENSG00000168010"
+"226162_at"	""	NA	"ENSG00000289727"
+"226922_at"	"RANBP2"	5903	"ENSG00000153201"
+"229414_at"	"PITPNC1"	26207	"ENSG00000154217"
+"225696_at"	"COPS7B"	64708	"ENSG00000144524"
+"229276_at"	"IGSF9"	57549	"ENSG00000085552"
+"226047_at"	"IRAG1"	10335	"ENSG00000072952"
+"230214_at"	"IRAG1"	10335	"ENSG00000072952"
+"229566_at"	"WFDC21P"	NA	"ENSG00000261040"
+"228660_x_at"	"SEMA4F"	10505	"ENSG00000135622"
+"226965_at"	"DENND6A"	201627	"ENSG00000174839"
+"227449_at"	"EPHA4"	2043	"ENSG00000116106"
+"228948_at"	"EPHA4"	2043	"ENSG00000116106"
+"229374_at"	"EPHA4"	2043	"ENSG00000116106"
+"228978_at"	"TBX2-AS1"	103689912	"ENSG00000267280"
+"227041_at"	"SESTD1"	91404	"ENSG00000187231"
+"226763_at"	"SESTD1"	91404	"ENSG00000187231"
+"228088_at"	"SESTD1"	91404	"ENSG00000187231"
+"227727_at"	"MRGPRF"	116535	"ENSG00000172935"
+"230499_at"	"BIRC3"	330	"ENSG00000023445"
+"230286_at"	"SLC6A11"	6538	"ENSG00000132164"
+"226766_at"	"ROBO2"	6092	"ENSG00000185008"
+"226709_at"	"ROBO2"	6092	"ENSG00000185008"
+"229610_at"	"CKAP2L"	150468	"ENSG00000169607"
+"229799_s_at"	"NCAM1"	4684	"ENSG00000149294"
+"227394_at"	"NCAM1"	4684	"ENSG00000149294"
+"227892_at"	"PRKAA2"	5563	"ENSG00000162409"
+"226171_at"	"ZDHHC3"	51304	"ENSG00000163812"
+"230454_at"	"ICA1L"	130026	"ENSG00000163596"
+"226024_at"	"COMMD1"	150684	"ENSG00000173163"
+"229792_at"	"KLHL17"	339451	"ENSG00000187961"
+"230494_at"	"SLC20A1"	6574	"ENSG00000144136"
+"226331_at"	"BBX"	56987	"ENSG00000114439"
+"225691_at"	"CDK12"	51755	"ENSG00000167258"
+"225694_at"	"CDK12"	51755	"ENSG00000167258"
+"225690_at"	"CDK12"	51755	"ENSG00000167258"
+"225697_at"	"CDK12"	51755	"ENSG00000167258"
+"226675_s_at"	"MALAT1"	NA	"ENSG00000251562"
+"226660_at"	"RPS6KB1"	6198	"ENSG00000108443"
+"229423_at"	""	118567325	"ENSG00000288907"
+"228890_at"	"ATOH8"	84913	"ENSG00000168874"
+"227268_at"	"RNFT1"	51136	"ENSG00000189050"
+"226016_at"	"CD47"	961	"ENSG00000196776"
+"227259_at"	"CD47"	961	"ENSG00000196776"
+"229625_at"	"GBP5"	115362	"ENSG00000154451"
+"226198_at"	"TOM1L2"	146691	"ENSG00000175662"
+"228188_at"	"FOSL2"	2355	"ENSG00000075426"
+"228452_at"	"GID4"	79018	"ENSG00000141034"
+"230227_at"	"SOCS5"	9655	"ENSG00000171150"
+"228078_at"	""	NA	"ENSG00000266677"
+"228269_x_at"	"KCNIP3"	30818	"ENSG00000115041"
+"228587_at"	"FAM83G"	644815	"ENSG00000188522"
+"226657_at"	"NATD1"	256302	"ENSG00000274180"
+"228146_at"	"LINC02693"	339263	"ENSG00000212719"
+"225689_at"	"POMGNT2"	84892	"ENSG00000144647"
+"228625_at"	"CITED4"	163732	"ENSG00000179862"
+"227159_at"	"GHDC"	84514	"ENSG00000167925"
+"228335_at"	"CLDN11"	5010	"ENSG00000013297"
+"227946_at"	"OSBPL7"	114881	"ENSG00000006025"
+"228975_at"	"SP6"	80320	"ENSG00000189120"
+"227584_at"	"NAV1"	89796	"ENSG00000134369"
+"229826_at"	"UQCC5"	440957	"ENSG00000168273"
+"229044_at"	"NUDT17"	200035	"ENSG00000186364"
+"226687_at"	"PRPF40A"	55660	"ENSG00000196504"
+"230435_at"	"FAM228B"	375190	"ENSG00000219626"
+"229569_at"	"MAP2K6"	5608	"ENSG00000108984"
+"227278_at"	"TAF13"	6884	"ENSG00000197780"
+"226342_at"	"SPTBN1"	6711	"ENSG00000115306"
+"229656_s_at"	"EML6"	400954	"ENSG00000214595"
+"225930_at"	"NKIRAS1"	28512	"ENSG00000197885"
+"225768_at"	"NR1D2"	9975	"ENSG00000174738"
+"225651_at"	"UBE2E2"	7325	"ENSG00000182247"
+"229362_at"	"PUS10"	150962	"ENSG00000162927"
+"227685_at"	"TMF1"	7110	"ENSG00000144747"
+"227061_at"	"CCDC80"	151887	"ENSG00000091986"
+"228227_at"	"CPSF3"	51692	"ENSG00000119203"
+"229244_at"	"LSAMP"	4045	"ENSG00000185565"
+"228218_at"	"LSAMP"	4045	"ENSG00000185565"
+"225908_at"	"IAH1"	285148	"ENSG00000134330"
+"229948_at"	"BTD"	686	"ENSG00000169814"
+"226317_at"	"PPP4R2"	151987	"ENSG00000163605"
+"226656_at"	"CRTAP"	10491	"ENSG00000170275"
+"227138_at"	"CRTAP"	10491	"ENSG00000170275"
+"228240_at"	"AGAP1"	116987	"ENSG00000157985"
+"226987_at"	"RBM15B"	29890	"ENSG00000259956"
+"226476_s_at"	"DCAF1"	9730	"ENSG00000145041"
+"226481_at"	"DCAF1"	9730	"ENSG00000145041"
+"226477_at"	"DCAF1"	9730	"ENSG00000145041"
+"226624_at"	"RAD54L2"	23132	"ENSG00000164080"
+"227847_at"	"EPM2AIP1"	9852	"ENSG00000178567"
+"225688_s_at"	"PHLDB2"	90102	"ENSG00000144824"
+"229595_at"	"CHCHD4"	131474	"ENSG00000163528"
+"226066_at"	"MITF"	4286	"ENSG00000187098"
+"230325_at"	"LINC01816"	100133985	"ENSG00000231327"
+"229031_at"	""	NA	"ENSG00000289135"
+"228564_at"	"LINC01116"	NA	"ENSG00000163364"
+"226098_at"	"IFT80"	57560	"ENSG00000068885"
+"228714_at"	"CHROMR"	101927027	"ENSG00000223960"
+"228620_at"	"CHROMR"	101927027	"ENSG00000223960"
+"228940_at"	"NDUFB4"	4710	"ENSG00000065518"
+"230184_at"	"PANTR1"	100506421	"ENSG00000233639"
+"227969_at"	"PCBP1-AS1"	400960	"ENSG00000179818"
+"228412_at"	"BAZ2B-AS1"	NA	"ENSG00000224152"
+"226184_at"	"FMNL2"	114793	"ENSG00000157827"
+"228532_at"	"C1orf162"	128346	"ENSG00000143110"
+"228548_at"	"RAP1A"	5906	"ENSG00000116473"
+"230465_at"	"HS2ST1"	9653	"ENSG00000153936"
+"225792_at"	"HOOK1"	51361	"ENSG00000134709"
+"226929_at"	"MTHFR"	4524	"ENSG00000177000"
+"228451_at"	"FAM229A"	100128071	"ENSG00000225828"
+"230220_at"	"UNC80"	285175	"ENSG00000144406"
+"225540_at"	"MAP2"	4133	"ENSG00000078018"
+"226993_at"	"TRIP12"	9320	"ENSG00000153827"
+"227066_at"	"MOB3C"	148932	"ENSG00000142961"
+"230431_at"	"LINC02606"	100506022	"ENSG00000284693"
+"227417_at"	"MTARC2"	54996	"ENSG00000117791"
+"230354_at"	""	101929667	"ENSG00000287255"
+"230300_at"	"PSMA5"	5686	"ENSG00000143106"
+"228216_at"	"ZBTB37"	84614	"ENSG00000185278"
+"227309_at"	"YOD1"	55432	"ENSG00000180667"
+"230391_at"	"CD84"	8832	"ENSG00000066294"
+"226802_s_at"	""	NA	"ENSG00000291142"
+"228198_s_at"	""	NA	"ENSG00000291176"
+"228199_at"	""	NA	"ENSG00000291176"
+"226751_at"	"CNRIP1"	25927	"ENSG00000119865"
+"227593_at"	"SPEN-AS1"	729614	"ENSG00000179743"
+"227664_at"	"SPEN-AS1"	729614	"ENSG00000179743"
+"225925_s_at"	"USP48"	84196	"ENSG00000090686"
+"229812_at"	"USP48"	84196	"ENSG00000090686"
+"228254_at"	"STAM2"	10254	"ENSG00000115145"
+"229184_at"	"CCNT2"	905	"ENSG00000082258"
+"229375_at"	"PPIE"	10450	"ENSG00000084072"
+"226493_at"	"KCTD18"	130535	"ENSG00000155729"
+"230165_at"	"SGO2"	151246	"ENSG00000163535"
+"229797_at"	"MCOLN3"	55283	"ENSG00000055732"
+"226771_at"	"ATP8B2"	57198	"ENSG00000143515"
+"227087_at"	"INPP4A"	3631	"ENSG00000040933"
+"226029_at"	"VANGL2"	57216	"ENSG00000162738"
+"227019_at"	"C1orf226"	400793	"ENSG00000239887"
+"227740_at"	"UHMK1"	127933	"ENSG00000152332"
+"227561_at"	"DDR2"	4921	"ENSG00000162733"
+"227036_at"	"RASAL2"	9462	"ENSG00000075391"
+"229928_at"	""	NA	"ENSG00000289294"
+"228310_at"	"ENAH"	55740	"ENSG00000154380"
+"225878_at"	"KIF1B"	23095	"ENSG00000054523"
+"227391_x_at"	"LRRFIP1"	9208	"ENSG00000124831"
+"225566_at"	"NRP2"	8828	"ENSG00000118257"
+"229225_at"	"NRP2"	8828	"ENSG00000118257"
+"228411_at"	"PARD3B"	117583	"ENSG00000116117"
+"226869_at"	"MEGF6"	1953	"ENSG00000162591"
+"226486_at"	"MTERF4"	130916	"ENSG00000122085"
+"229105_at"	"GPR39"	2863	"ENSG00000183840"
+"229104_s_at"	"GPR39"	2863	"ENSG00000183840"
+"225695_at"	"SLC35F6"	54978	"ENSG00000213699"
+"225760_at"	"MYSM1"	114803	"ENSG00000162601"
+"225606_at"	"BCL2L11"	10018	"ENSG00000153094"
+"227899_at"	"VIT"	5212	"ENSG00000205221"
+"227422_at"	"STRN"	6801	"ENSG00000115808"
+"229302_at"	"TMEM178A"	130733	"ENSG00000152154"
+"225653_at"	"TGFBRAP1"	9392	"ENSG00000135966"
+"226951_at"	"C2orf49"	79074	"ENSG00000135974"
+"227809_at"	"ZC3H6"	376940	"ENSG00000188177"
+"228578_at"	"RBM45"	129831	"ENSG00000155636"
+"228981_at"	"TMEM169"	92691	"ENSG00000163449"
+"228806_at"	"RORC"	6097	"ENSG00000143365"
+"228950_s_at"	"WLS"	79971	"ENSG00000116729"
+"228949_at"	"WLS"	79971	"ENSG00000116729"
+"229359_at"	"ASXL2"	55252	"ENSG00000143970"
+"226251_at"	"ASXL2"	55252	"ENSG00000143970"
+"225733_at"	"B3GALT6"	126792	"ENSG00000176022"
+"226704_at"	"UBE2J2"	118424	"ENSG00000160087"
+"227285_at"	"CIART"	148523	"ENSG00000159208"
+"225542_at"	"ACAP3"	116983	"ENSG00000131584"
+"228800_x_at"	"AURKAIP1"	54998	"ENSG00000175756"
+"225552_x_at"	"AURKAIP1"	54998	"ENSG00000175756"
+"227134_at"	"SYTL1"	84958	"ENSG00000142765"
+"229960_at"	"MAP3K6"	9064	"ENSG00000142733"
+"226333_at"	"IL6R"	3570	"ENSG00000160712"
+"228671_at"	"TMEM201"	199953	"ENSG00000188807"
+"227617_at"	"TMEM201"	199953	"ENSG00000188807"
+"226087_at"	"LZIC"	84328	"ENSG00000162441"
+"226081_at"	"LZIC"	84328	"ENSG00000162441"
+"226532_at"	"LZIC"	84328	"ENSG00000162441"
+"226468_at"	"RNF115"	27246	"ENSG00000265491"
+"227926_s_at"	"NBPF9"	400818	"ENSG00000269713"
+"227927_at"	"NBPF9"	400818	"ENSG00000269713"
+"229927_at"	"LEMD1"	93273	"ENSG00000186007"
+"228120_at"	"AGO1"	26523	"ENSG00000092847"
+"228932_at"	"AGO3"	192669	"ENSG00000126070"
+"226806_s_at"	"NFIA"	4774	"ENSG00000162599"
+"230433_at"	"CNN3-DT"	NA	"ENSG00000235501"
+"229678_at"	"ZC3H12A-DT"	728431	"ENSG00000233621"
+"229364_at"	"PRDX6-AS1"	101928673	"ENSG00000203739"
+"230423_at"	"FOXD3-AS1"	100996301	"ENSG00000230798"
+"226458_at"	"ZMPSTE24-DT"	NA	"ENSG00000259943"
+"226457_at"	"ZMPSTE24-DT"	NA	"ENSG00000259943"
+"228661_s_at"	"DPH5-DT"	NA	"ENSG00000233184"
+"228238_at"	"GAS5"	60674	"ENSG00000234741"
+"227517_s_at"	"GAS5"	60674	"ENSG00000234741"
+"229348_at"	"UBIAD1"	29914	"ENSG00000120942"
+"229111_at"	"TARDBP"	23435	"ENSG00000120948"
+"226103_at"	"NEXN"	91624	"ENSG00000162614"
+"227201_at"	"LINC01128"	643837	"ENSG00000228794"
+"230004_at"	"USP24"	23358	"ENSG00000162402"
+"228577_x_at"	"ODF2L"	57489	"ENSG00000122417"
+"225786_at"	"HNRNPU"	3192	"ENSG00000153187"
+"225805_at"	"HNRNPU"	3192	"ENSG00000153187"
+"229113_s_at"	"FAAP20"	199990	"ENSG00000162585"
+"229265_at"	"SKI"	6497	"ENSG00000157933"
+"226893_at"	"ABL2"	27	"ENSG00000143322"
+"230321_at"	"TOR1AIP2"	163590	"ENSG00000169905"
+"225880_at"	"TOR1AIP2"	163590	"ENSG00000169905"
+"230241_at"	"TOR1AIP2"	163590	"ENSG00000169905"
+"226706_at"	"QSOX1"	5768	"ENSG00000116260"
+"228224_at"	"PRELP"	5549	"ENSG00000188783"
+"228096_at"	"MICOS10"	440574	"ENSG00000173436"
+"229271_x_at"	"COL11A1"	1301	"ENSG00000060718"
+"228733_at"	"PUSL1"	126789	"ENSG00000169972"
+"225920_at"	"MRPL20-AS1"	148413	"ENSG00000224870"
+"230092_at"	"UBXN10"	127733	"ENSG00000162543"
+"225831_at"	"LUZP1"	7798	"ENSG00000169641"
+"225615_at"	"IFFO2"	126917	"ENSG00000169991"
+"228944_at"	""	NA	"ENSG00000258634"
+"226813_at"	"NTPCR"	84284	"ENSG00000135778"
+"229919_at"	"NTPCR"	84284	"ENSG00000135778"
+"229202_at"	"PCNX2"	80003	"ENSG00000135749"
+"228565_at"	"MAP3K21"	84451	"ENSG00000143674"
+"227943_at"	""	NA	"ENSG00000290791"
+"228000_at"	"AZIN2"	113451	"ENSG00000142920"
+"225692_at"	"CAMTA1"	23261	"ENSG00000171735"
+"225693_s_at"	"CAMTA1"	23261	"ENSG00000171735"
+"227328_at"	"CAMTA1"	23261	"ENSG00000171735"
+"226132_s_at"	"MANEAL"	149175	"ENSG00000185090"
+"227150_at"	"MTF1"	4520	"ENSG00000188786"
+"230023_at"	"NSUN4"	387338	"ENSG00000117481"
+"226351_at"	"NSUN4"	387338	"ENSG00000117481"
+"226522_at"	"PODN"	127435	"ENSG00000174348"
+"229492_at"	"VANGL1"	81839	"ENSG00000173218"
+"229997_at"	"VANGL1"	81839	"ENSG00000173218"
+"229134_at"	"VANGL1"	81839	"ENSG00000173218"
+"227532_at"	"LRRC39"	127495	"ENSG00000122477"
+"229017_s_at"	"DSTYK"	25778	"ENSG00000133059"
+"229376_at"	"PROX1"	5629	"ENSG00000117707"
+"228656_at"	"PROX1"	5629	"ENSG00000117707"
+"226096_at"	"FNDC5"	252995	"ENSG00000160097"
+"226097_at"	"FNDC5"	252995	"ENSG00000160097"
+"227759_at"	"PCSK9"	255738	"ENSG00000169174"
+"230369_at"	"GPR161"	23432	"ENSG00000143147"
+"228619_x_at"	"TIPRL"	261726	"ENSG00000143155"
+"227032_at"	"PLXNA2"	5362	"ENSG00000076356"
+"225780_at"	"DDI2"	84301	"ENSG00000197312"
+"230760_at"	"ZFY"	7544	"ENSG00000067646"
+"232618_at"	""	246126	"ENSG00000291033"
+"231606_at"	"CDX2"	1045	"ENSG00000165556"
+"231367_s_at"	""	NA	"ENSG00000275202"
+"235044_at"	"CYYR1"	116159	"ENSG00000166265"
+"233753_at"	"SCAF4"	57466	"ENSG00000156304"
+"232390_at"	"NCAM2"	4685	"ENSG00000154654"
+"231491_at"	"LINC00113"	54088	"ENSG00000225298"
+"232056_at"	"SCEL"	8796	"ENSG00000136155"
+"230964_at"	"FREM2"	341640	"ENSG00000150893"
+"233021_at"	"RBM26-AS1"	100505538	"ENSG00000227354"
+"231354_at"	""	780529	"ENSG00000271776"
+"231119_at"	"RFC3"	5983	"ENSG00000133119"
+"232411_at"	"KCNJ6"	3763	"ENSG00000157542"
+"232596_at"	"DIAPH3"	81624	"ENSG00000139734"
+"230585_at"	"KCNJ15"	3772	"ENSG00000157551"
+"234676_s_at"	"N6AMT1"	29104	"ENSG00000156239"
+"232448_at"	"LINC00543"	100132234	"ENSG00000260704"
+"232839_at"	"STK24-AS1"	NA	"ENSG00000224418"
+"235368_at"	"ADAMTS5"	11096	"ENSG00000154736"
+"235012_at"	"LRCH1"	23143	"ENSG00000136141"
+"233602_at"	""	NA	"ENSG00000267651"
+"233952_s_at"	"ZBTB21"	49854	"ENSG00000173276"
+"233434_at"	""	NA	"ENSG00000272515"
+"233647_s_at"	"CDADC1"	81602	"ENSG00000102543"
+"233564_s_at"	"CDADC1"	81602	"ENSG00000102543"
+"235092_at"	""	NA	"ENSG00000277534"
+"234660_s_at"	"DIS3"	22894	"ENSG00000083520"
+"234757_at"	"DIS3"	22894	"ENSG00000083520"
+"233160_at"	"DEFB129"	140881	"ENSG00000125903"
+"234742_at"	"SIRPG"	55423	"ENSG00000089012"
+"235064_s_at"	"SHLD1"	149840	"ENSG00000171984"
+"235063_at"	"SHLD1"	149840	"ENSG00000171984"
+"232786_at"	"COG6"	57511	"ENSG00000133103"
+"233166_at"	"DEFB126"	81623	"ENSG00000125788"
+"232481_s_at"	"SLITRK6"	84189	"ENSG00000184564"
+"232176_at"	"SLITRK6"	84189	"ENSG00000184564"
+"231220_at"	"CELF4"	56853	"ENSG00000101489"
+"232888_at"	"ISM1"	140862	"ENSG00000101230"
+"235182_at"	"ISM1"	140862	"ENSG00000101230"
+"233878_s_at"	"XRN2"	22803	"ENSG00000088930"
+"232828_at"	"NALCN-AS1"	100885778	"ENSG00000233009"
+"230933_at"	"DSTN"	11034	"ENSG00000125868"
+"234449_at"	""	NA	"ENSG00000260202"
+"233343_at"	"DEFB127"	140850	"ENSG00000088782"
+"231333_at"	"LINC01723"	100505515	"ENSG00000234265"
+"230539_at"	"FAM182A"	284800	"ENSG00000125804"
+"234965_at"	""	NA	"ENSG00000279157"
+"233170_at"	"LINC00348"	100885781	"ENSG00000226846"
+"230869_at"	"NALF1"	728215	"ENSG00000204442"
+"232376_at"	"PCCA"	5095	"ENSG00000175198"
+"230829_at"	"CST9L"	128821	"ENSG00000101435"
+"233719_s_at"	"TASP1"	55617	"ENSG00000089123"
+"233913_at"	"WFDC10A"	140832	"ENSG00000180305"
+"234728_s_at"	"DHX35"	60625	"ENSG00000101452"
+"230777_s_at"	"PRDM15"	63977	"ENSG00000141956"
+"234524_at"	"PRDM15"	63977	"ENSG00000141956"
+"231931_at"	"PRDM15"	63977	"ENSG00000141956"
+"233552_at"	""	NA	"ENSG00000269189"
+"233529_at"	"LINC00396"	104355146	"ENSG00000231428"
+"230747_s_at"	"TTC39C"	125488	"ENSG00000168234"
+"232928_at"	"FARP1"	10160	"ENSG00000152767"
+"233598_at"	"LINC02871"	NA	"ENSG00000125899"
+"230533_at"	""	NA	"ENSG00000273451"
+"231150_at"	""	NA	"ENSG00000273335"
+"231053_at"	"KCNB1"	3745	"ENSG00000158445"
+"233156_at"	"RNASEH2B"	79621	"ENSG00000136104"
+"235065_at"	"GAREM1"	64762	"ENSG00000141441"
+"231492_at"	"LINC01523"	NA	"ENSG00000229522"
+"234946_at"	""	NA	"ENSG00000279322"
+"231368_at"	"BOD1L2"	284257	"ENSG00000228075"
+"231472_at"	"FBXO15"	201456	"ENSG00000141665"
+"234024_at"	"CBLN4"	140689	"ENSG00000054803"
+"234451_at"	"DKKL1P1"	NA	"ENSG00000215546"
+"231679_at"	""	NA	"ENSG00000263745"
+"230519_at"	"FAM124A"	220108	"ENSG00000150510"
+"232340_at"	"MIATNB"	NA	"ENSG00000244625"
+"233389_at"	"CFAP61"	26074	"ENSG00000089101"
+"234051_at"	""	NA	"ENSG00000267397"
+"231515_at"	""	NA	"ENSG00000267655"
+"233901_at"	""	NA	"ENSG00000261610"
+"233328_x_at"	"SLC17A9"	63910	"ENSG00000101194"
+"232922_s_at"	"SLC17A9"	63910	"ENSG00000101194"
+"232306_at"	"CDH26"	60437	"ENSG00000124215"
+"233663_s_at"	"CDH26"	60437	"ENSG00000124215"
+"233391_at"	"CDH26"	60437	"ENSG00000124215"
+"233662_at"	"CDH26"	60437	"ENSG00000124215"
+"230779_at"	"TNRC6B"	23112	"ENSG00000100354"
+"232836_at"	"LINC00687"	NA	"ENSG00000228422"
+"232707_at"	"ISX"	91464	"ENSG00000175329"
+"233030_at"	"PNPLA3"	80339	"ENSG00000100344"
+"233255_s_at"	"BIVM"	54841	"ENSG00000134897"
+"232549_at"	"RBM11"	54033	"ENSG00000185272"
+"234732_s_at"	"EFCAB6"	64800	"ENSG00000186976"
+"233839_at"	"EFCAB6"	64800	"ENSG00000186976"
+"234853_s_at"	"EFCAB6"	64800	"ENSG00000186976"
+"233600_at"	"EFCAB6"	64800	"ENSG00000186976"
+"233332_at"	""	NA	"ENSG00000272542"
+"234180_at"	""	NA	"ENSG00000264705"
+"231960_at"	"BRWD1"	54014	"ENSG00000185658"
+"231860_at"	"BRWD1"	54014	"ENSG00000185658"
+"233747_at"	""	124905150	"ENSG00000235154"
+"231134_at"	"SCP2D1"	140856	"ENSG00000132631"
+"234045_x_at"	"BHLHE23"	128408	"ENSG00000125533"
+"233646_at"	""	NA	"ENSG00000228444"
+"235348_at"	"ABHD13"	84945	"ENSG00000139826"
+"234993_at"	"ABHD13"	84945	"ENSG00000139826"
+"231760_at"	"LINC00029"	NA	"ENSG00000125514"
+"231801_at"	"NFATC2"	4773	"ENSG00000101096"
+"232605_s_at"	"SPART-AS1"	NA	"ENSG00000120664"
+"231713_s_at"	"ELP2"	55250	"ENSG00000134759"
+"231454_at"	"PLAC4"	191585	"ENSG00000280109"
+"234730_s_at"	"RIPK4"	54101	"ENSG00000183421"
+"233583_at"	""	NA	"ENSG00000231078"
+"231200_at"	"LSM14B"	149986	"ENSG00000149657"
+"235276_at"	"EPSTI1"	94240	"ENSG00000133106"
+"235199_at"	"RNF125"	54941	"ENSG00000101695"
+"234830_at"	"FRG2EP"	NA	"ENSG00000282842"
+"232101_s_at"	"PIGN"	23556	"ENSG00000197563"
+"231023_at"	"CARS2"	79587	"ENSG00000134905"
+"235389_at"	"PHF20"	51230	"ENSG00000025293"
+"235269_at"	"FAM83F"	113828	"ENSG00000133477"
+"231771_at"	"GJB6"	10804	"ENSG00000121742"
+"231614_at"	"NOVA1"	4857	"ENSG00000139910"
+"234023_s_at"	"CENPJ"	55835	"ENSG00000151849"
+"230690_at"	"TUBB1"	81027	"ENSG00000101162"
+"234440_at"	"TRDV3"	NA	"ENSG00000256590"
+"234165_at"	"PTGDR"	5729	"ENSG00000168229"
+"230535_s_at"	"ATP5F1E"	514	"ENSG00000124172"
+"233510_s_at"	"PARVG"	64098	"ENSG00000138964"
+"233061_at"	"FITM2"	128486	"ENSG00000197296"
+"232186_at"	"FITM2"	128486	"ENSG00000197296"
+"230950_at"	"CNDP2"	55748	"ENSG00000133313"
+"234538_at"	""	NA	"ENSG00000261728"
+"231330_at"	"LINC00445"	100507114	"ENSG00000236036"
+"235283_at"	"INTS6"	26512	"ENSG00000102786"
+"233829_at"	"TLDC2"	140711	"ENSG00000101342"
+"233019_at"	"CNOT7"	29883	"ENSG00000198791"
+"234386_s_at"	""	NA	"ENSG00000279735"
+"233532_x_at"	"IFT52"	51098	"ENSG00000101052"
+"235180_at"	"STYX"	6815	"ENSG00000198252"
+"231847_at"	"ANKRD54"	129138	"ENSG00000100124"
+"232820_s_at"	"GTSF1L"	149699	"ENSG00000124196"
+"232821_at"	"GTSF1L"	149699	"ENSG00000124196"
+"234107_s_at"	"DTD1"	92675	"ENSG00000125821"
+"231980_at"	"DOK6"	220164	"ENSG00000206052"
+"231797_at"	"SIX4"	51804	"ENSG00000100625"
+"230890_at"	"KIAA1328"	57536	"ENSG00000150477"
+"232358_at"	"KIAA1328"	57536	"ENSG00000150477"
+"235344_at"	"PPM1A"	5494	"ENSG00000100614"
+"232088_x_at"	"LINC00899"	NA	"ENSG00000231711"
+"231395_at"	"ATP8A2"	51761	"ENSG00000132932"
+"235082_at"	"PCNX1"	22990	"ENSG00000100731"
+"232962_x_at"	""	NA	"ENSG00000274776"
+"235107_at"	"PIAS2"	9063	"ENSG00000078043"
+"234774_at"	"R3HDML"	140902	"ENSG00000101074"
+"233299_at"	"RIMS4"	140730	"ENSG00000101098"
+"232536_at"	"LRRC3"	81543	"ENSG00000160233"
+"230668_at"	"NKAIN4"	128414	"ENSG00000101198"
+"235472_at"	"FUT10"	84750	"ENSG00000172728"
+"234001_s_at"	"ARFGAP1"	55738	"ENSG00000101199"
+"232755_at"	"UBE2G2"	7327	"ENSG00000184787"
+"231325_at"	"UNC5D"	137970	"ENSG00000156687"
+"235369_at"	"C14orf28"	122525	"ENSG00000179476"
+"233981_at"	"RCL1"	10171	"ENSG00000120158"
+"234385_at"	"IGLVIVOR22-2"	NA	"ENSG00000243519"
+"231245_s_at"	""	NA	"ENSG00000267857"
+"235020_at"	"TAF4B"	6875	"ENSG00000141384"
+"235021_at"	"KIAA2026"	158358	"ENSG00000183354"
+"233415_at"	"ERCC5"	2073	"ENSG00000134899"
+"233655_s_at"	"HAUS6"	54801	"ENSG00000147874"
+"235131_at"	"RHOJ"	57381	"ENSG00000126785"
+"235489_at"	"RHOJ"	57381	"ENSG00000126785"
+"235075_at"	"DSG3"	1830	"ENSG00000134757"
+"232422_at"	"GGACT"	87769	"ENSG00000134864"
+"230875_s_at"	"ATP11A"	23250	"ENSG00000068650"
+"233946_at"	"SMU1"	55234	"ENSG00000122692"
+"231607_at"	"LINC02853"	100507480	"ENSG00000259245"
+"233571_x_at"	"PPDPF"	79144	"ENSG00000125534"
+"234367_x_at"	"TMPRSS6"	164656	"ENSG00000187045"
+"232941_at"	"TMPRSS6"	164656	"ENSG00000187045"
+"231078_at"	"SLC25A37"	51312	"ENSG00000147454"
+"231991_at"	"CCM2L"	140706	"ENSG00000101331"
+"231652_at"	""	NA	"ENSG00000259907"
+"234340_at"	"MMP24OS"	101410538	"ENSG00000126005"
+"233962_at"	"FAM83C-AS1"	140846	"ENSG00000235214"
+"235074_at"	"SPRED1"	161742	"ENSG00000166068"
+"231436_at"	"RYR3-DT"	101928134	"ENSG00000259446"
+"232718_at"	"LINC00589"	619351	"ENSG00000251191"
+"234791_at"	"GSX1"	219409	"ENSG00000169840"
+"234929_s_at"	"SPATA7"	55812	"ENSG00000042317"
+"232196_at"	"LCA5L"	150082	"ENSG00000157578"
+"231993_at"	"ITGBL1"	9358	"ENSG00000198542"
+"232234_at"	"SLA2"	84174	"ENSG00000101082"
+"235238_at"	"SHC4"	399694	"ENSG00000185634"
+"230538_at"	"SHC4"	399694	"ENSG00000185634"
+"232156_at"	"AP5M1"	55745	"ENSG00000053770"
+"232761_at"	"COX4I2"	84701	"ENSG00000131055"
+"230831_at"	"FRMD5"	84978	"ENSG00000171877"
+"232740_at"	"MCM3AP-AS1"	114044	"ENSG00000215424"
+"233741_at"	"FTCD"	10841	"ENSG00000160282"
+"231792_at"	"MYLK2"	85366	"ENSG00000101306"
+"231228_at"	"BCL2L1"	598	"ENSG00000171552"
+"231447_at"	"LINC00851"	440757	"ENSG00000237282"
+"234864_s_at"	"TRPM6"	140803	"ENSG00000119121"
+"233565_s_at"	"SDCBP2"	27111	"ENSG00000125775"
+"235339_at"	"SETDB2"	83852	"ENSG00000136169"
+"235338_s_at"	"SETDB2"	83852	"ENSG00000136169"
+"234463_at"	"DPPA5P4"	NA	"ENSG00000119660"
+"231039_at"	"NAA30"	122830	"ENSG00000139977"
+"232891_at"	"SIRPD"	128646	"ENSG00000125900"
+"230620_at"	"USP27X"	389856	"ENSG00000273820"
+"232128_s_at"	"CLCN5"	1184	"ENSG00000171365"
+"232127_at"	"CLCN5"	1184	"ENSG00000171365"
+"234894_at"	"ITIH6"	347365	"ENSG00000102313"
+"230566_at"	"MORC2-AS1"	150291	"ENSG00000235989"
+"233550_s_at"	"SLC4A11"	83959	"ENSG00000088836"
+"231170_at"	"CDKL5"	6792	"ENSG00000008086"
+"231818_x_at"	"SLC20A2"	6575	"ENSG00000168575"
+"232191_at"	"ERVH48-1"	90625	"ENSG00000233056"
+"232121_at"	"TRDMT1"	1787	"ENSG00000107614"
+"231522_at"	"C20orf144"	128864	"ENSG00000149609"
+"234919_s_at"	"SNTG1"	54212	"ENSG00000147481"
+"232277_at"	"SLC28A3"	64078	"ENSG00000197506"
+"230515_at"	""	NA	"ENSG00000277801"
+"233679_at"	"TAB1"	10454	"ENSG00000100324"
+"233630_at"	"CDS2"	8760	"ENSG00000101290"
+"234434_at"	"LINC02152"	NA	"ENSG00000261319"
+"234450_at"	"PROKR2"	128674	"ENSG00000101292"
+"231458_at"	"LINC00658"	100507629	"ENSG00000226995"
+"235144_at"	"RASEF"	158158	"ENSG00000165105"
+"233804_at"	"LINC00544"	NA	"ENSG00000122043"
+"235438_at"	"CYP7B1"	9420	"ENSG00000172817"
+"230537_at"	""	NA	"ENSG00000288765"
+"232635_at"	"CEP128"	145508	"ENSG00000100629"
+"233859_at"	"CEP128"	145508	"ENSG00000100629"
+"231345_s_at"	"WDFY2"	115825	"ENSG00000139668"
+"230866_at"	"CYSLTR1"	10800	"ENSG00000173198"
+"231747_at"	"CYSLTR1"	10800	"ENSG00000173198"
+"235087_at"	"UNKL"	64718	"ENSG00000059145"
+"232766_at"	"BANF2"	140836	"ENSG00000125888"
+"233335_at"	"ITGA11"	22801	"ENSG00000137809"
+"235212_at"	"NRDE2"	55051	"ENSG00000119720"
+"234000_s_at"	"HACD3"	51495	"ENSG00000074696"
+"231985_at"	"MICAL3"	57553	"ENSG00000243156"
+"232849_at"	"RNU2-52P"	NA	"ENSG00000222612"
+"234807_x_at"	"RPL7AP12"	NA	"ENSG00000228210"
+"233975_at"	"PRNT"	149830	"ENSG00000180259"
+"234177_at"	""	101927950	"ENSG00000270174"
+"231303_at"	"LINC00158"	54072	"ENSG00000185433"
+"231475_at"	"TBC1D21"	161514	"ENSG00000167139"
+"232897_at"	"LERFS"	NA	"ENSG00000234665"
+"232745_x_at"	"SPEF2"	79925	"ENSG00000152582"
+"233429_at"	"SPEF2"	79925	"ENSG00000152582"
+"233269_at"	""	NA	"ENSG00000225335"
+"230645_at"	"FRMD3"	257019	"ENSG00000172159"
+"230986_at"	"KLF8"	11279	"ENSG00000102349"
+"232680_at"	"HDGFL1"	154150	"ENSG00000112273"
+"230720_at"	"RNF182"	221687	"ENSG00000180537"
+"234512_x_at"	"RPL7AP36"	NA	"ENSG00000216368"
+"233446_at"	"ONECUT2"	9480	"ENSG00000119547"
+"234639_x_at"	"KRTAP9-8"	83901	"ENSG00000292048"
+"230575_at"	"MSRB2"	22921	"ENSG00000148450"
+"231380_at"	"C8orf34"	116328	"ENSG00000165084"
+"235241_at"	"SLC38A9"	153129	"ENSG00000177058"
+"230978_at"	"LINC00967"	100505659	"ENSG00000253138"
+"233220_at"	"GRIN3A"	116443	"ENSG00000198785"
+"233171_at"	"GRIN3A"	116443	"ENSG00000198785"
+"233762_at"	""	NA	"ENSG00000282700"
+"232311_at"	"B2M"	567	"ENSG00000273686"
+"232271_at"	"HNF4G"	3174	"ENSG00000164749"
+"235309_at"	"RPS15A"	6210	"ENSG00000134419"
+"230762_at"	""	NA	"ENSG00000231856"
+"233654_at"	"PIGG"	54872	"ENSG00000174227"
+"235004_at"	"RBM24"	221662	"ENSG00000112183"
+"231284_at"	"CAPSL-DT"	100506406	"ENSG00000249748"
+"233136_at"	"PABPC5"	140886	"ENSG00000174740"
+"235156_at"	"BRWD3"	254065	"ENSG00000165288"
+"233366_at"	"FBXO4"	26272	"ENSG00000151876"
+"235072_s_at"	"KIF13A"	63971	"ENSG00000137177"
+"232837_at"	"KIF13A"	63971	"ENSG00000137177"
+"231207_at"	"MRPS30"	10884	"ENSG00000112996"
+"231098_at"	"LINC02984"	100507516	"ENSG00000237807"
+"233997_at"	""	NA	"ENSG00000268628"
+"232966_at"	"LPIN3"	64900	"ENSG00000132793"
+"234681_s_at"	"CHD6"	84181	"ENSG00000124177"
+"233305_at"	"NECAB1"	64168	"ENSG00000123119"
+"235097_at"	"TRMT44"	152992	"ENSG00000155275"
+"231051_at"	"MRLN"	100507027	"ENSG00000227877"
+"231842_at"	"JCAD"	57608	"ENSG00000165757"
+"231841_s_at"	"JCAD"	57608	"ENSG00000165757"
+"232602_at"	"WFDC3"	140686	"ENSG00000124116"
+"231226_at"	"MED14OS"	NA	"ENSG00000234636"
+"234653_at"	"NLRP2B"	286430	"ENSG00000215174"
+"234942_s_at"	"DNTTIP1"	116092	"ENSG00000101457"
+"231670_at"	""	NA	"ENSG00000258776"
+"235216_at"	"ESCO1"	114799	"ENSG00000141446"
+"233680_at"	"LINC02149"	NA	"ENSG00000249332"
+"234734_s_at"	"TNRC6A"	27327	"ENSG00000090905"
+"231379_at"	""	NA	"ENSG00000256654"
+"231460_at"	""	NA	"ENSG00000256969"
+"235350_at"	"C4orf19"	55286	"ENSG00000154274"
+"232149_s_at"	"NSMAF"	8439	"ENSG00000035681"
+"232148_at"	"NSMAF"	8439	"ENSG00000035681"
+"233458_at"	"POLR3E"	55718	"ENSG00000058600"
+"235396_at"	"TANGO2"	128989	"ENSG00000183597"
+"232848_at"	"MIR4500HG"	642345	"ENSG00000228824"
+"235346_at"	"FUNDC1"	139341	"ENSG00000069509"
+"231481_at"	"CCNB3"	85417	"ENSG00000147082"
+"231008_at"	"UNC5CL"	222643	"ENSG00000124602"
+"235056_at"	"ETV6"	2120	"ENSG00000139083"
+"231062_at"	"DOCK9-DT"	NA	"ENSG00000260992"
+"230532_at"	"CXorf38"	159013	"ENSG00000185753"
+"231237_x_at"	""	NA	"ENSG00000254208"
+"230650_at"	"SLCO5A1"	81796	"ENSG00000137571"
+"230731_x_at"	"ZDHHC8"	29801	"ENSG00000099904"
+"235022_at"	"FAM210A"	125228	"ENSG00000177150"
+"230739_at"	"FAM210A"	125228	"ENSG00000177150"
+"230639_at"	"ICA1"	3382	"ENSG00000003147"
+"233000_x_at"	"DPH3P1"	NA	"ENSG00000233838"
+"232365_at"	"SIAH1"	6477	"ENSG00000196470"
+"232712_at"	"FGF10"	2255	"ENSG00000070193"
+"231762_at"	"FGF10"	2255	"ENSG00000070193"
+"231388_at"	"ZNF318"	24149	"ENSG00000171467"
+"234610_at"	"HSPA12B"	116835	"ENSG00000132622"
+"230733_at"	"MYL12A"	10627	"ENSG00000101608"
+"233784_at"	""	101927769	"ENSG00000226097"
+"232377_at"	"NXPH1"	30010	"ENSG00000122584"
+"232636_at"	"SLITRK4"	139065	"ENSG00000179542"
+"230680_at"	"SLITRK4"	139065	"ENSG00000179542"
+"231829_at"	"MAVS"	57506	"ENSG00000088888"
+"235130_at"	"MIR103A2"	406896	"ENSG00000199024"
+"232662_x_at"	"PRXL2A"	84293	"ENSG00000122378"
+"235353_at"	"SEL1L3"	23231	"ENSG00000091490"
+"231270_at"	"CA13"	377677	"ENSG00000185015"
+"232231_at"	"RUNX2"	860	"ENSG00000124813"
+"231977_at"	"GRID1"	2894	"ENSG00000182771"
+"233230_s_at"	"SLAIN2"	57606	"ENSG00000109171"
+"230895_at"	"HAPLN1"	1404	"ENSG00000145681"
+"231905_at"	"C20orf96"	140680	"ENSG00000196476"
+"231831_at"	"COX19"	90639	"ENSG00000240230"
+"233246_at"	"FXNP2"	NA	"ENSG00000177736"
+"234889_at"	"MTND1P33"	NA	"ENSG00000235539"
+"232163_at"	"WDR19"	57728	"ENSG00000157796"
+"231438_x_at"	"CDH8"	1006	"ENSG00000150394"
+"230918_at"	"GALK2"	2585	"ENSG00000156958"
+"231861_at"	"LRP10"	26020	"ENSG00000197324"
+"232466_at"	"CUL4A"	8451	"ENSG00000139842"
+"235016_at"	"REEP3"	221035	"ENSG00000165476"
+"231627_at"	"LINC00919"	100505619	"ENSG00000260268"
+"230922_x_at"	"FUNDC2"	65991	"ENSG00000165775"
+"235273_at"	"DNAAF4"	161582	"ENSG00000256061"
+"230603_at"	"COL27A1"	85301	"ENSG00000196739"
+"230925_at"	"APBB1IP"	54518	"ENSG00000077420"
+"232804_at"	"LINC01426"	100506385	"ENSG00000234380"
+"232706_s_at"	"TRABD"	80305	"ENSG00000170638"
+"232197_x_at"	"ARSB"	411	"ENSG00000113273"
+"232695_at"	"KIF6"	221458	"ENSG00000164627"
+"233387_s_at"	"PCNT"	5116	"ENSG00000160299"
+"232037_at"	"IGDCC3"	9543	"ENSG00000174498"
+"230960_at"	"IGDCC3"	9543	"ENSG00000174498"
+"234308_at"	"TUBGCP6"	85378	"ENSG00000128159"
+"235324_at"	"SRSF3"	6428	"ENSG00000112081"
+"230632_at"	"IL10RB-DT"	NA	"ENSG00000223799"
+"230631_s_at"	"IL10RB-DT"	NA	"ENSG00000223799"
+"235183_at"	"FILIP1"	27145	"ENSG00000118407"
+"231945_at"	"FILIP1"	27145	"ENSG00000118407"
+"232870_at"	"HDAC10"	83933	"ENSG00000100429"
+"233026_s_at"	"PDZD2"	23037	"ENSG00000133401"
+"233025_at"	"PDZD2"	23037	"ENSG00000133401"
+"231518_at"	"LINC00922"	283867	"ENSG00000261742"
+"234420_at"	""	NA	"ENSG00000280393"
+"231331_at"	"FOXE1"	2304	"ENSG00000178919"
+"234288_at"	"LINC02842"	NA	"ENSG00000254119"
+"232401_at"	"KCNS2"	3788	"ENSG00000156486"
+"233451_at"	"SLC52A3"	113278	"ENSG00000101276"
+"231811_at"	"WASH5P"	375690	"ENSG00000282458"
+"231872_at"	"LRRCC1"	85444	"ENSG00000133739"
+"234799_at"	"ADARB1"	104	"ENSG00000197381"
+"231129_at"	"MCHR2-AS1"	728012	"ENSG00000229315"
+"230942_at"	"CMTM5"	116173	"ENSG00000166091"
+"231736_x_at"	"MGST1"	4257	"ENSG00000008394"
+"232444_at"	"CEP85L"	387119	"ENSG00000111860"
+"233194_at"	"STARD13-AS"	NA	"ENSG00000236581"
+"230819_at"	"C2CD4C"	126567	"ENSG00000183186"
+"234109_x_at"	"ONECUT3"	390874	"ENSG00000205922"
+"233892_at"	"GRIN3B"	116444	"ENSG00000116032"
+"231602_at"	"PRRX2-AS1"	NA	"ENSG00000236024"
+"234963_s_at"	"FA2H"	79152	"ENSG00000103089"
+"231612_at"	"CABS1"	85438	"ENSG00000145309"
+"234192_s_at"	"GKAP1"	80318	"ENSG00000165113"
+"231265_at"	"COX7B2"	170712	"ENSG00000170516"
+"233842_x_at"	"RTF2"	51507	"ENSG00000022277"
+"234926_s_at"	"RTF2"	51507	"ENSG00000022277"
+"235164_at"	"ZNF25"	219749	"ENSG00000175395"
+"233185_at"	"FGF14"	2259	"ENSG00000102466"
+"232513_x_at"	"FAM209B"	388799	"ENSG00000213714"
+"233924_s_at"	"EXOC6"	54536	"ENSG00000138190"
+"232599_at"	"EXOC6"	54536	"ENSG00000138190"
+"231040_at"	"RORB"	6096	"ENSG00000198963"
+"232388_at"	"CNTNAP4"	85445	"ENSG00000152910"
+"235434_at"	"CCDC134"	79879	"ENSG00000100147"
+"230708_at"	"PRICKLE1"	144165	"ENSG00000139174"
+"232811_x_at"	"PRICKLE1"	144165	"ENSG00000139174"
+"234315_at"	"BACH1-IT1"	NA	"ENSG00000248476"
+"234944_s_at"	"MTFR2"	113115	"ENSG00000146410"
+"234945_at"	"MTFR2"	113115	"ENSG00000146410"
+"235165_at"	"PARD6B"	84612	"ENSG00000124171"
+"232051_at"	"CCDC102A"	92922	"ENSG00000135736"
+"231982_at"	"SMIM24"	284422	"ENSG00000095932"
+"232531_at"	"EMX2OS"	196047	"ENSG00000229847"
+"230963_at"	"EMX2OS"	196047	"ENSG00000229847"
+"234052_at"	"TPT1-AS1"	NA	"ENSG00000170919"
+"231864_at"	"ZNF33A"	7581	"ENSG00000189180"
+"232084_at"	"SGTB"	54557	"ENSG00000197860"
+"235450_at"	"FBXL4"	26235	"ENSG00000112234"
+"232520_s_at"	"NSFL1C"	55968	"ENSG00000088833"
+"232455_x_at"	"GPBP1"	65056	"ENSG00000062194"
+"232798_at"	"DNAJC5B"	85479	"ENSG00000147570"
+"233188_at"	"GALNT18"	374378	"ENSG00000110328"
+"235465_at"	"AMER2"	219287	"ENSG00000165566"
+"231059_x_at"	"SCAND1"	51282	"ENSG00000171222"
+"232652_x_at"	"SCAND1"	51282	"ENSG00000171222"
+"234491_s_at"	"SAV1"	60485	"ENSG00000151748"
+"232440_at"	"ZDHHC13"	54503	"ENSG00000177054"
+"231617_at"	"TEX33"	339669	"ENSG00000185264"
+"233774_at"	""	NA	"ENSG00000279142"
+"233503_at"	"CCDC169"	728591	"ENSG00000242715"
+"233298_at"	"CCDC169"	728591	"ENSG00000242715"
+"234085_at"	"CCDC169"	728591	"ENSG00000242715"
+"233557_s_at"	"MON1B"	22879	"ENSG00000103111"
+"232229_at"	"SETX"	23064	"ENSG00000107290"
+"233436_at"	"MTBP"	27085	"ENSG00000172167"
+"232643_at"	"POLR2F"	5435	"ENSG00000100142"
+"230962_at"	"DCLK1"	9201	"ENSG00000133083"
+"232043_at"	"GNG7"	2788	"ENSG00000176533"
+"232394_at"	"ATP2C2-AS1"	105371374	"ENSG00000261286"
+"232984_at"	"HYDIN"	54768	"ENSG00000157423"
+"232445_at"	"SYT9"	143425	"ENSG00000170743"
+"232255_at"	""	NA	"ENSG00000273014"
+"232555_at"	"CREB5"	9586	"ENSG00000146592"
+"233077_at"	"NAV2-AS4"	NA	"ENSG00000254622"
+"235315_at"	"TSC22D1"	8848	"ENSG00000102804"
+"234767_at"	"FAR1P1"	NA	"ENSG00000235879"
+"232983_s_at"	"SERGEF"	26297	"ENSG00000129158"
+"234117_at"	"NPSR1-AS1"	404744	"ENSG00000197085"
+"235129_at"	"PPP1R1A"	5502	"ENSG00000135447"
+"231981_at"	"PRLR"	5618	"ENSG00000113494"
+"231871_at"	"GPR180"	160897	"ENSG00000152749"
+"233661_at"	"LINC00557"	100861544	"ENSG00000260962"
+"234268_at"	"SLC2A13"	114134	"ENSG00000151229"
+"233162_at"	"LINC03020"	101926892	"ENSG00000253967"
+"231729_s_at"	"CAPS"	828	"ENSG00000105519"
+"231728_at"	"CAPS"	828	"ENSG00000105519"
+"231710_at"	"CAPS"	828	"ENSG00000105519"
+"231079_at"	"NANOG"	79923	"ENSG00000111704"
+"234947_s_at"	"FAM204A"	63877	"ENSG00000165669"
+"230667_at"	"FAM204A"	63877	"ENSG00000165669"
+"230838_s_at"	"CIAPIN1"	57019	"ENSG00000005194"
+"231473_at"	"LINC02349"	100506530	"ENSG00000259284"
+"234471_s_at"	"NCOA5"	57727	"ENSG00000124160"
+"234987_at"	"SAMHD1"	25939	"ENSG00000101347"
+"232062_at"	"ADCY1"	107	"ENSG00000164742"
+"235049_at"	"ADCY1"	107	"ENSG00000164742"
+"231744_at"	"CELF5"	60680	"ENSG00000161082"
+"232416_at"	"CELF5"	60680	"ENSG00000161082"
+"233974_s_at"	"NIBAN2"	64855	"ENSG00000136830"
+"233973_at"	"LYZL1"	84569	"ENSG00000120563"
+"233423_at"	"MEAK7"	57707	"ENSG00000140950"
+"234843_s_at"	"KREMEN1"	83999	"ENSG00000183762"
+"235370_at"	"KREMEN1"	83999	"ENSG00000183762"
+"233513_at"	""	NA	"ENSG00000245482"
+"235341_at"	"DNAJC3"	5611	"ENSG00000102580"
+"234583_at"	"CHL1"	10752	"ENSG00000134121"
+"233351_at"	""	NA	"ENSG00000276809"
+"233945_at"	"UGGT2"	55757	"ENSG00000102595"
+"231172_at"	"CFAP157"	286207	"ENSG00000160401"
+"232276_at"	"HS6ST3"	266722	"ENSG00000185352"
+"232275_s_at"	"HS6ST3"	266722	"ENSG00000185352"
+"231154_x_at"	"TINAG"	27283	"ENSG00000137251"
+"235155_at"	"BDH2"	56898	"ENSG00000164039"
+"231790_at"	"DMGDH"	29958	"ENSG00000132837"
+"233889_at"	"TBX18"	9096	"ENSG00000112837"
+"233064_at"	"ZFR2"	23217	"ENSG00000105278"
+"232171_x_at"	"KLHDC4"	54758	"ENSG00000104731"
+"234738_s_at"	"KLHDC4"	54758	"ENSG00000104731"
+"233131_at"	"CFAP58"	159686	"ENSG00000120051"
+"233520_s_at"	"CMYA5"	202333	"ENSG00000164309"
+"235387_at"	"GSTCD"	79807	"ENSG00000138780"
+"234387_at"	"COL4A5"	1287	"ENSG00000188153"
+"234871_at"	"ADGRV1"	84059	"ENSG00000164199"
+"234796_at"	"CABP7"	164633	"ENSG00000100314"
+"231146_at"	"FAM24B"	196792	"ENSG00000213185"
+"231805_at"	"PRLHR"	2834	"ENSG00000119973"
+"234574_at"	"MYO1F"	4542	"ENSG00000142347"
+"234925_at"	"LINC00917"	732275	"ENSG00000168367"
+"232715_at"	""	NA	"ENSG00000261468"
+"232218_at"	"TRUB2"	26995	"ENSG00000167112"
+"233355_at"	"C20orf204"	284739	"ENSG00000196421"
+"231092_s_at"	""	NA	"ENSG00000247033"
+"233130_at"	"THRB-IT1"	NA	"ENSG00000224822"
+"234514_at"	"SRMS"	6725	"ENSG00000125508"
+"234829_at"	"DUSP15"	128853	"ENSG00000149599"
+"232933_at"	"RNF215"	200312	"ENSG00000099999"
+"234461_at"	"RNF215"	200312	"ENSG00000099999"
+"232523_at"	"MEGF10"	84466	"ENSG00000145794"
+"234954_at"	"GAPDHP73"	NA	"ENSG00000226540"
+"231938_at"	"SGO1"	151648	"ENSG00000129810"
+"233887_at"	"ADGRG6"	57211	"ENSG00000112414"
+"230927_at"	""	NA	"ENSG00000272010"
+"233752_s_at"	"ZFHX3"	463	"ENSG00000140836"
+"233372_at"	""	NA	"ENSG00000283097"
+"232291_at"	"MIR17HG"	407975	"ENSG00000215417"
+"233636_at"	"MIR17HG"	407975	"ENSG00000215417"
+"233659_at"	""	NA	"ENSG00000282864"
+"231033_at"	"DSC2"	1824	"ENSG00000134755"
+"234254_at"	"RPL7AP9"	NA	"ENSG00000213272"
+"232704_s_at"	"LRRFIP2"	9209	"ENSG00000093167"
+"232193_at"	"GSTT1"	2952	"ENSG00000277656"
+"234662_at"	"RAD21L1"	642636	"ENSG00000244588"
+"231269_at"	"ASCC3"	10973	"ENSG00000112249"
+"235059_at"	"RAB12"	201475	"ENSG00000206418"
+"232442_at"	""	NA	"ENSG00000280152"
+"233243_at"	"CBFA2T2"	9139	"ENSG00000078699"
+"234573_at"	""	101929718	"ENSG00000258471"
+"231140_at"	"TPPP2"	122664	"ENSG00000179636"
+"234699_at"	"RNASE7"	84659	"ENSG00000165799"
+"234700_s_at"	"RNASE7"	84659	"ENSG00000165799"
+"234395_at"	"OR4A1P"	NA	"ENSG00000254408"
+"233996_x_at"	"EYS"	346007	"ENSG00000188107"
+"235333_at"	"B4GALT6"	9331	"ENSG00000118276"
+"233397_at"	""	NA	"ENSG00000261037"
+"234302_s_at"	"ALKBH5"	54890	"ENSG00000091542"
+"232619_at"	"ACTL10"	170487	"ENSG00000288649"
+"232009_at"	"ADGRE2"	30817	"ENSG00000127507"
+"233827_s_at"	"SUPT16H"	11198	"ENSG00000092201"
+"231026_at"	"EFHC1"	114327	"ENSG00000096093"
+"231277_x_at"	"DTWD2"	285605	"ENSG00000169570"
+"233111_at"	""	100302522	"ENSG00000287736"
+"233408_at"	"PREX2"	80243	"ENSG00000046889"
+"230525_at"	"GREP1"	283875	"ENSG00000262152"
+"235477_at"	""	NA	"ENSG00000288586"
+"235437_at"	""	NA	"ENSG00000272079"
+"231683_at"	"GLYAT"	10249	"ENSG00000149124"
+"234310_s_at"	"SUSD2"	56241	"ENSG00000099994"
+"230521_at"	"ARHGEF39"	84904	"ENSG00000137135"
+"230522_s_at"	"ARHGEF39"	84904	"ENSG00000137135"
+"231892_at"	"ARHGEF39"	84904	"ENSG00000137135"
+"230766_at"	"GART"	2618	"ENSG00000262473"
+"233772_at"	"POU6F2-AS2"	NA	"ENSG00000233854"
+"235095_at"	"BICDL2"	146439	"ENSG00000162069"
+"234844_at"	"ZNF407"	55628	"ENSG00000215421"
+"232594_at"	"HSBP1L1"	440498	"ENSG00000226742"
+"234231_at"	"CASP16P"	197350	"ENSG00000228146"
+"234055_s_at"	"GZF1"	64412	"ENSG00000125812"
+"230542_at"	"ZNF597"	146434	"ENSG00000167981"
+"232132_at"	"PARD6G"	84552	"ENSG00000178184"
+"234803_at"	"CSTL1"	128817	"ENSG00000125823"
+"233797_s_at"	"CST11"	140880	"ENSG00000125831"
+"233968_at"	"CST11"	140880	"ENSG00000125831"
+"235226_at"	"CDK19"	23097	"ENSG00000155111"
+"233911_s_at"	"PPM1H"	57460	"ENSG00000111110"
+"234166_at"	""	NA	"ENSG00000261529"
+"235096_at"	"LEO1"	123169	"ENSG00000166477"
+"232624_at"	"ABTB2"	25841	"ENSG00000166016"
+"232194_at"	"METTL4"	64863	"ENSG00000101574"
+"235235_s_at"	"PATL1"	219988	"ENSG00000166889"
+"235234_at"	"PATL1"	219988	"ENSG00000166889"
+"230673_at"	"PKHD1L1"	93035	"ENSG00000205038"
+"231181_at"	"PKHD1L1"	93035	"ENSG00000205038"
+"235080_at"	"CLUAP1"	23059	"ENSG00000103351"
+"235281_x_at"	"AHNAK"	79026	"ENSG00000124942"
+"232368_at"	"TRAPPC3L"	100128327	"ENSG00000173626"
+"232226_at"	"LRRC4C"	57689	"ENSG00000148948"
+"231025_at"	"SYT7"	9066	"ENSG00000011347"
+"232025_at"	"SYT7"	9066	"ENSG00000011347"
+"235452_at"	""	NA	"ENSG00000275601"
+"231483_at"	""	100505985	"ENSG00000226733"
+"231424_at"	"SLC5A12"	159963	"ENSG00000148942"
+"232086_at"	"PIK3C3"	5289	"ENSG00000078142"
+"231800_s_at"	"DMRT3"	58524	"ENSG00000064218"
+"235116_at"	"TRAF1"	7185	"ENSG00000056558"
+"231926_at"	"EPS15L1"	58513	"ENSG00000127527"
+"235099_at"	"CMTM8"	152189	"ENSG00000170293"
+"234405_s_at"	"PHAX"	51808	"ENSG00000164902"
+"231812_x_at"	"PHAX"	51808	"ENSG00000164902"
+"230864_at"	"NIM1K"	167359	"ENSG00000177453"
+"231304_at"	"PPP3R2"	5535	"ENSG00000188386"
+"231995_at"	"CAAP1"	79886	"ENSG00000120159"
+"234998_at"	"RAB11A"	8766	"ENSG00000103769"
+"233153_at"	""	NA	"ENSG00000276687"
+"235210_s_at"	"SBSPON"	157869	"ENSG00000164764"
+"235209_at"	"SBSPON"	157869	"ENSG00000164764"
+"230661_at"	"SBSPON"	157869	"ENSG00000164764"
+"235394_at"	"PLAA"	9373	"ENSG00000137055"
+"234053_at"	"LINC02667"	728327	"ENSG00000224190"
+"231137_at"	"IDH3A"	3419	"ENSG00000166411"
+"230556_at"	"IMMP1L"	196294	"ENSG00000148950"
+"231723_at"	"SNX12"	29934	"ENSG00000147164"
+"230655_at"	"ULBP3"	79465	"ENSG00000131019"
+"231748_at"	"ULBP3"	79465	"ENSG00000131019"
+"234171_at"	"LINC01267"	101927565	"ENSG00000251576"
+"231001_at"	"FIBIN"	387758	"ENSG00000176971"
+"234324_at"	"HEBP2"	23593	"ENSG00000051620"
+"231034_s_at"	"HEBP2"	23593	"ENSG00000051620"
+"231280_at"	"HEBP2"	23593	"ENSG00000051620"
+"232661_s_at"	"RBM48"	84060	"ENSG00000127993"
+"231722_at"	"CASP14"	23581	"ENSG00000105141"
+"232143_at"	"DNM1P41"	NA	"ENSG00000280038"
+"234333_at"	"NEXMIF"	340533	"ENSG00000050030"
+"231317_at"	"TSNARE1"	203062	"ENSG00000171045"
+"231441_at"	"TEX47"	219557	"ENSG00000164645"
+"235077_at"	"MEG3"	55384	"ENSG00000214548"
+"232119_at"	"SYNPO2"	171024	"ENSG00000172403"
+"234985_at"	"LDLRAD3"	143458	"ENSG00000179241"
+"232968_at"	"FANK1"	92565	"ENSG00000203780"
+"233801_s_at"	"SEMA6D"	80031	"ENSG00000137872"
+"233882_s_at"	"SEMA6D"	80031	"ENSG00000137872"
+"232177_at"	""	NA	"ENSG00000280332"
+"231088_at"	"MORF4L2-AS1"	NA	"ENSG00000231154"
+"231569_at"	"TMEM31"	203562	"ENSG00000179363"
+"232314_at"	"MTFR1"	9650	"ENSG00000066855"
+"232955_at"	"MEG8"	NA	"ENSG00000225746"
+"230989_s_at"	"TSSK6"	83983	"ENSG00000178093"
+"235098_at"	"PEX26"	55670	"ENSG00000215193"
+"231467_at"	""	NA	"ENSG00000275134"
+"231300_at"	"CFAP119"	90835	"ENSG00000196118"
+"231990_at"	"USP15"	9958	"ENSG00000135655"
+"232211_at"	"PPP1R3F"	89801	"ENSG00000049769"
+"235451_at"	"SMAD5"	4090	"ENSG00000113658"
+"232199_at"	""	NA	"ENSG00000270012"
+"233082_at"	"ZNF630"	57232	"ENSG00000221994"
+"230691_at"	"STX1B"	112755	"ENSG00000099365"
+"233695_s_at"	"CECR2"	27443	"ENSG00000099954"
+"230934_at"	"STK32C"	282974	"ENSG00000165752"
+"233051_at"	"SLITRK2"	84631	"ENSG00000185985"
+"232560_at"	"UROS"	7390	"ENSG00000188690"
+"232730_at"	"C19orf44"	84167	"ENSG00000105072"
+"233437_at"	"GABRA4"	2557	"ENSG00000109158"
+"232919_at"	"AFG3L2"	10939	"ENSG00000141385"
+"231923_at"	"TMEM150C"	441027	"ENSG00000249242"
+"234806_at"	""	NA	"ENSG00000279397"
+"235277_at"	"AMOTL1"	154810	"ENSG00000166025"
+"234850_at"	"MOGAT3"	346606	"ENSG00000106384"
+"235224_s_at"	"CAND1"	55832	"ENSG00000111530"
+"232374_s_at"	"PRDM6-AS1"	NA	"ENSG00000223652"
+"230686_s_at"	"SLC13A3"	64849	"ENSG00000158296"
+"231217_at"	"SLC13A3"	64849	"ENSG00000158296"
+"230687_at"	"SLC13A3"	64849	"ENSG00000158296"
+"230836_at"	"ST8SIA4"	7903	"ENSG00000113532"
+"231202_at"	"ALDH1L2"	160428	"ENSG00000136010"
+"230717_at"	"LCN12"	286256	"ENSG00000184925"
+"234370_at"	"VSIG1"	340547	"ENSG00000101842"
+"231688_at"	"MMP8"	4317	"ENSG00000118113"
+"230536_at"	"PBX4"	80714	"ENSG00000105717"
+"231251_at"	"WIPF2"	147179	"ENSG00000171475"
+"230606_at"	"GJD3-AS1"	NA	"ENSG00000266208"
+"234540_at"	"GCNT7"	140687	"ENSG00000124091"
+"234546_at"	""	NA	"ENSG00000269504"
+"231826_at"	"RALGAPA2"	57186	"ENSG00000188559"
+"232500_at"	"RALGAPA2"	57186	"ENSG00000188559"
+"232721_at"	"TRIM55"	84675	"ENSG00000147573"
+"235301_at"	"ELAPOR2"	222223	"ENSG00000164659"
+"235035_at"	"SLC35E1"	79939	"ENSG00000127526"
+"232420_x_at"	"MAN1B1-DT"	100289341	"ENSG00000268996"
+"231257_at"	"TCERG1L"	256536	"ENSG00000176769"
+"231899_at"	"ZC3H12C"	85463	"ENSG00000149289"
+"235266_at"	"ATAD2"	29028	"ENSG00000156802"
+"230803_s_at"	"ARHGAP24"	83478	"ENSG00000138639"
+"230802_at"	"ARHGAP24"	83478	"ENSG00000138639"
+"231966_at"	"PPP1R9A"	55607	"ENSG00000158528"
+"233985_x_at"	"PPP1R9A"	55607	"ENSG00000158528"
+"233971_at"	"FAM166A"	401565	"ENSG00000188163"
+"233589_x_at"	"TOR4A"	54863	"ENSG00000198113"
+"231856_at"	"ARFGEF3"	57221	"ENSG00000112379"
+"234100_at"	""	NA	"ENSG00000275481"
+"231444_at"	"MIR7515HG"	102800315	"ENSG00000236172"
+"234116_at"	"GJD4"	219770	"ENSG00000177291"
+"232412_at"	"FBXL20"	84961	"ENSG00000108306"
+"235089_at"	"FBXL20"	84961	"ENSG00000108306"
+"234161_at"	"MIR3149"	100422921	"ENSG00000266712"
+"231752_at"	"NPBWR1"	2831	"ENSG00000288611"
+"232570_s_at"	"ADAM33"	80332	"ENSG00000149451"
+"233868_x_at"	"ADAM33"	80332	"ENSG00000149451"
+"232393_at"	"ZNF462"	58499	"ENSG00000148143"
+"234835_at"	""	NA	"ENSG00000268926"
+"234863_x_at"	"FBXO5"	26271	"ENSG00000112029"
+"231256_at"	"LINC01874"	727944	"ENSG00000223985"
+"232195_at"	"GPR158"	57512	"ENSG00000151025"
+"232501_at"	"RNF150"	57484	"ENSG00000170153"
+"234092_s_at"	"TM6SF2"	53345	"ENSG00000213996"
+"233403_x_at"	"TM6SF2"	53345	"ENSG00000213996"
+"232483_at"	"MED17"	9440	"ENSG00000042429"
+"232094_at"	"KATNBL1"	79768	"ENSG00000134152"
+"235050_at"	"SLC2A12"	154091	"ENSG00000146411"
+"234098_at"	"SOBP"	55084	"ENSG00000112320"
+"235298_at"	"WDR27"	253769	"ENSG00000184465"
+"234831_at"	"LINC01859"	101929164	"ENSG00000261558"
+"234331_s_at"	"LRATD1"	151354	"ENSG00000162981"
+"231439_at"	"LRATD1"	151354	"ENSG00000162981"
+"231451_s_at"	"GATB"	5188	"ENSG00000059691"
+"234875_at"	"RPL7AP10"	NA	"ENSG00000240522"
+"235133_at"	"ZDHHC14"	79683	"ENSG00000175048"
+"235136_at"	"ORMDL3"	94103	"ENSG00000172057"
+"230573_at"	"SGK2"	10110	"ENSG00000101049"
+"232338_at"	"ZNF431"	170959	"ENSG00000196705"
+"232664_at"	"LINC00954"	400946	"ENSG00000228784"
+"233950_at"	"CADPS"	8618	"ENSG00000163618"
+"234220_at"	"CADPS"	8618	"ENSG00000163618"
+"231141_at"	"POLG-DT"	NA	"ENSG00000261441"
+"235356_at"	"NHLRC2"	374354	"ENSG00000196865"
+"233396_s_at"	"KAT14"	57325	"ENSG00000149474"
+"233969_at"	"IGLV9-49"	NA	"ENSG00000223350"
+"234764_x_at"	"IGLV1-47"	NA	"ENSG00000211648"
+"232920_at"	"CCDC157"	550631	"ENSG00000187860"
+"232864_s_at"	"AFF4"	27125	"ENSG00000072364"
+"232865_at"	"AFF4"	27125	"ENSG00000072364"
+"232965_at"	"DPY19L3-DT"	400684	"ENSG00000267213"
+"235257_at"	"ODF3B"	440836	"ENSG00000177989"
+"231733_at"	"CARD18"	59082	"ENSG00000255501"
+"233983_at"	"TGM6"	343641	"ENSG00000166948"
+"232634_at"	"TSHZ3"	57616	"ENSG00000121297"
+"230520_at"	"AIG1"	51390	"ENSG00000146416"
+"232810_at"	"AIG1"	51390	"ENSG00000146416"
+"233597_at"	"PNPLA5"	150379	"ENSG00000100341"
+"232424_at"	"PRDM16"	63976	"ENSG00000142611"
+"235208_at"	"CCDC112"	153733	"ENSG00000164221"
+"231716_at"	"RC3H2"	54542	"ENSG00000056586"
+"231912_s_at"	"TECPR1"	25851	"ENSG00000205356"
+"233327_at"	"UBE3D"	90025	"ENSG00000118420"
+"235206_at"	"CNBD2"	140894	"ENSG00000149646"
+"231463_at"	"CNTD1"	124817	"ENSG00000176563"
+"233252_s_at"	"STRBP"	55342	"ENSG00000165209"
+"232272_at"	"ZNF624"	57547	"ENSG00000197566"
+"232638_at"	"COL20A1"	57642	"ENSG00000101203"
+"232733_s_at"	"COL20A1"	57642	"ENSG00000101203"
+"235024_at"	"JADE1"	79960	"ENSG00000077684"
+"230705_at"	"SLC2A5"	6518	"ENSG00000142583"
+"232181_at"	"PPARGC1B"	133522	"ENSG00000155846"
+"230750_at"	"BAG2"	9532	"ENSG00000112208"
+"234355_s_at"	"DISP3"	57540	"ENSG00000204624"
+"232908_at"	"ATAD2B"	54454	"ENSG00000119778"
+"232077_s_at"	"YPEL3"	83719	"ENSG00000090238"
+"233168_s_at"	"SELENOO"	83642	"ENSG00000073169"
+"233167_at"	"SELENOO"	83642	"ENSG00000073169"
+"233988_x_at"	"SCUBE1"	80274	"ENSG00000159307"
+"230784_at"	"PRAC1"	84366	"ENSG00000159182"
+"233126_s_at"	"OLAH"	55301	"ENSG00000152463"
+"231930_at"	"ELMOD1"	55531	"ENSG00000110675"
+"234908_s_at"	"DSCAML1"	57453	"ENSG00000177103"
+"232059_at"	"DSCAML1"	57453	"ENSG00000177103"
+"232135_at"	"SAP30L"	79685	"ENSG00000164576"
+"234509_at"	""	NA	"ENSG00000261757"
+"232648_at"	"PSMA3"	5684	"ENSG00000100567"
+"235313_at"	"NRAP"	4892	"ENSG00000197893"
+"235312_s_at"	"NRAP"	4892	"ENSG00000197893"
+"235139_at"	"GNGT2"	2793	"ENSG00000167083"
+"230682_x_at"	"ABCC3"	8714	"ENSG00000108846"
+"234004_at"	"TTC28"	23331	"ENSG00000100154"
+"233755_at"	""	NA	"ENSG00000253706"
+"234726_s_at"	"TMEM168"	64418	"ENSG00000146802"
+"232553_at"	"PCYT1B"	9468	"ENSG00000102230"
+"231823_s_at"	"SH3PXD2B"	285590	"ENSG00000174705"
+"233234_at"	"KCTD16"	57528	"ENSG00000183775"
+"230904_at"	"FSD1L"	83856	"ENSG00000106701"
+"235483_at"	"STX3"	6809	"ENSG00000166900"
+"231759_at"	"TAL2"	6887	"ENSG00000186051"
+"233972_s_at"	"FEZF2"	55079	"ENSG00000153266"
+"233953_at"	"GUCA1C"	9626	"ENSG00000138472"
+"235061_at"	"PPM1K"	152926	"ENSG00000163644"
+"233644_at"	"KATNAL2"	83473	"ENSG00000167216"
+"231485_at"	"SLIT1-AS1"	100505540	"ENSG00000234855"
+"230740_at"	"EHD3"	30845	"ENSG00000013016"
+"233987_at"	"TFAP2D"	83741	"ENSG00000008197"
+"234129_at"	"ARHGEF12"	23365	"ENSG00000196914"
+"231070_at"	"IYD"	389434	"ENSG00000009765"
+"234012_at"	""	NA	"ENSG00000280222"
+"232233_at"	"SLC22A16"	85413	"ENSG00000004809"
+"232232_s_at"	"SLC22A16"	85413	"ENSG00000004809"
+"233172_at"	"LINC01797"	NA	"ENSG00000237179"
+"231187_at"	"SLC28A1"	9154	"ENSG00000156222"
+"230975_at"	"LINC02727"	105369541	"ENSG00000254823"
+"230693_at"	"ATP2A1"	487	"ENSG00000196296"
+"234377_at"	""	NA	"ENSG00000282040"
+"232552_at"	"DAAM1"	23002	"ENSG00000100592"
+"234111_at"	"ZNF81"	347344	"ENSG00000197779"
+"230574_at"	""	NA	"ENSG00000267279"
+"235192_at"	"TP53RK"	112858	"ENSG00000172315"
+"230707_at"	"SORL1"	6653	"ENSG00000137642"
+"233514_x_at"	"TEX11"	56159	"ENSG00000120498"
+"234296_s_at"	"TEX11"	56159	"ENSG00000120498"
+"231850_x_at"	"CEP44"	80817	"ENSG00000164118"
+"232504_at"	"MIR3142HG"	107075116	"ENSG00000253522"
+"231108_at"	"FUS"	2521	"ENSG00000089280"
+"234941_s_at"	"GPHN"	10243	"ENSG00000171723"
+"233507_at"	""	NA	"ENSG00000260484"
+"231012_at"	"SLC35G1"	159371	"ENSG00000176273"
+"232010_at"	"FSTL5"	56884	"ENSG00000168843"
+"234932_s_at"	"CDCP1"	64866	"ENSG00000163814"
+"231718_at"	"SLU7"	10569	"ENSG00000164609"
+"235146_at"	"TMCC3"	57458	"ENSG00000057704"
+"232021_at"	"GXYLT1"	283464	"ENSG00000151233"
+"234402_at"	"TRAV5"	NA	"ENSG00000211779"
+"233990_at"	"SMG9"	56006	"ENSG00000105771"
+"233873_x_at"	"MTPAP"	55149	"ENSG00000107951"
+"231770_x_at"	"WDPCP"	51057	"ENSG00000143951"
+"232429_at"	"DTWD1"	56986	"ENSG00000104047"
+"231063_at"	""	NA	"ENSG00000249955"
+"233604_at"	"C3orf85"	401081	"ENSG00000241224"
+"230528_s_at"	"CENPBD2P"	65996	"ENSG00000213753"
+"232031_s_at"	"EPG5"	57724	"ENSG00000152223"
+"234048_s_at"	"EPG5"	57724	"ENSG00000152223"
+"232030_at"	"EPG5"	57724	"ENSG00000152223"
+"232691_at"	"SFXN5"	94097	"ENSG00000144040"
+"235460_at"	"SNX22"	79856	"ENSG00000157734"
+"231846_at"	"FOXRED2"	80020	"ENSG00000100350"
+"233250_x_at"	"FOXRED2"	80020	"ENSG00000100350"
+"233977_at"	"GREB1L"	80000	"ENSG00000141449"
+"230718_at"	"HSF5"	124535	"ENSG00000176160"
+"231920_s_at"	"CSNK1G1"	53944	"ENSG00000169118"
+"233536_at"	"ASXL3"	80816	"ENSG00000141431"
+"232838_at"	"ASXL3"	80816	"ENSG00000141431"
+"235303_at"	"TRMT10B"	158234	"ENSG00000165275"
+"234995_at"	"SPICE1"	152185	"ENSG00000163611"
+"231737_at"	"CACNG4"	27092	"ENSG00000075461"
+"232189_at"	"MALT1"	10892	"ENSG00000172175"
+"230679_at"	"DCAF10"	79269	"ENSG00000122741"
+"231084_at"	"CFAP43"	80217	"ENSG00000197748"
+"235302_at"	"GPATCH2L"	55668	"ENSG00000089916"
+"234351_x_at"	"TRPS1"	7227	"ENSG00000104447"
+"232061_at"	"SDK2"	54549	"ENSG00000069188"
+"233585_at"	"SDK2"	54549	"ENSG00000069188"
+"235015_at"	"ZDHHC9"	51114	"ENSG00000188706"
+"231178_at"	"SPATA4"	132851	"ENSG00000150628"
+"234773_x_at"	"LINC02504"	101928288	"ENSG00000248339"
+"235251_at"	""	NA	"ENSG00000261786"
+"233759_s_at"	"PPP4R3B"	57223	"ENSG00000275052"
+"232558_at"	"LAMC3"	10319	"ENSG00000050555"
+"232886_at"	""	NA	"ENSG00000260495"
+"230808_at"	"FNTA"	2339	"ENSG00000168522"
+"233572_s_at"	"BCORL1"	63035	"ENSG00000085185"
+"234711_s_at"	"BCORL1"	63035	"ENSG00000085185"
+"232117_at"	"ZNF471"	57573	"ENSG00000196263"
+"230578_at"	"ZNF471"	57573	"ENSG00000196263"
+"230572_at"	"WWC2-AS2"	152641	"ENSG00000251359"
+"230974_at"	"DDX19B"	11269	"ENSG00000157349"
+"231969_at"	"STOX2"	56977	"ENSG00000173320"
+"234937_x_at"	"ZFP28"	140612	"ENSG00000196867"
+"234300_s_at"	"ZFP28"	140612	"ENSG00000196867"
+"231943_at"	"ZFP28"	140612	"ENSG00000196867"
+"231145_at"	"PAX9"	5083	"ENSG00000198807"
+"230835_at"	"KRTDAP"	388533	"ENSG00000188508"
+"232395_x_at"	"AGBL3"	340351	"ENSG00000146856"
+"232690_at"	""	NA	"ENSG00000280161"
+"234921_at"	"ZNF470"	388566	"ENSG00000197016"
+"230652_at"	"ARAF"	369	"ENSG00000078061"
+"235342_at"	"SPOCK3"	50859	"ENSG00000196104"
+"232436_at"	"ZNF274"	10782	"ENSG00000171606"
+"231967_at"	"PHF20L1"	51105	"ENSG00000129292"
+"235290_at"	"ZNF782"	158431	"ENSG00000196597"
+"234334_s_at"	"LAMB4"	22798	"ENSG00000091128"
+"233863_at"	"CASZ1"	54897	"ENSG00000130940"
+"232597_x_at"	"SCAF11"	9169	"ENSG00000139218"
+"235403_at"	""	NA	"ENSG00000259306"
+"230593_at"	"GRIK3"	2899	"ENSG00000163873"
+"232106_s_at"	"CEP89"	84902	"ENSG00000121289"
+"235053_at"	""	NA	"ENSG00000279059"
+"235221_at"	"CBLN3"	643866	"ENSG00000139899"
+"231661_at"	"REG3G"	130120	"ENSG00000143954"
+"235223_at"	"RRP36"	88745	"ENSG00000124541"
+"232166_at"	"CEP126"	57562	"ENSG00000110318"
+"230758_at"	"GEMIN8"	54960	"ENSG00000046647"
+"232383_at"	"TFEC"	22797	"ENSG00000105967"
+"232385_x_at"	"STXBP4"	252983	"ENSG00000166263"
+"231804_at"	"RXFP1"	59350	"ENSG00000171509"
+"233923_at"	"RN7SKP115"	NA	"ENSG00000200047"
+"231572_at"	"PRSS37"	136242	"ENSG00000165076"
+"230824_at"	"MARCHF10"	162333	"ENSG00000173838"
+"233237_at"	"LINC01933"	101927115	"ENSG00000254226"
+"233238_s_at"	"LINC01933"	101927115	"ENSG00000254226"
+"235128_at"	"SYNPO"	11346	"ENSG00000171992"
+"230988_at"	"ADD2"	119	"ENSG00000075340"
+"232456_at"	"C10orf71"	118461	"ENSG00000177354"
+"231955_s_at"	"HIBADH"	11112	"ENSG00000106049"
+"231203_at"	"TEX48"	100505478	"ENSG00000230601"
+"234286_at"	"PPP1R12C"	54776	"ENSG00000125503"
+"231902_at"	"ZNF827"	152485	"ENSG00000151612"
+"234189_at"	""	NA	"ENSG00000261734"
+"233138_at"	"LDLRAD4"	753	"ENSG00000168675"
+"232833_at"	""	NA	"ENSG00000260118"
+"232588_at"	"STAG1"	10274	"ENSG00000118007"
+"234686_at"	"SUGT1P1"	NA	"ENSG00000226823"
+"234905_at"	"GNAO1-AS1"	26077	"ENSG00000261439"
+"234506_at"	"LINC02673"	NA	"ENSG00000260151"
+"232428_at"	"MOGAT2"	80168	"ENSG00000166391"
+"232222_at"	"ZCCHC2"	54877	"ENSG00000141664"
+"230792_at"	"FAAH2"	158584	"ENSG00000165591"
+"232055_at"	"SFXN1"	94081	"ENSG00000164466"
+"232165_at"	"EPPK1"	83481	"ENSG00000261150"
+"232164_s_at"	"EPPK1"	83481	"ENSG00000261150"
+"231151_at"	"DLGAP3"	58512	"ENSG00000116544"
+"232629_at"	"PROK2"	60675	"ENSG00000163421"
+"233610_at"	"MIR3976HG"	645355	"ENSG00000261738"
+"231373_at"	"RNF133"	168433	"ENSG00000188050"
+"231082_at"	"IGLV3-21"	NA	"ENSG00000211662"
+"231474_at"	"KHDC3L"	154288	"ENSG00000203908"
+"233558_s_at"	"TRAPPC11"	60684	"ENSG00000168538"
+"231880_at"	"STRIP2"	57464	"ENSG00000128578"
+"234412_at"	""	NA	"ENSG00000237171"
+"234511_at"	"ANKRD60"	140731	"ENSG00000124227"
+"234026_at"	"EML2-AS1"	100287177	"ENSG00000267757"
+"231883_at"	"FBXW8"	26259	"ENSG00000174989"
+"231677_at"	""	105377924	"ENSG00000282408"
+"233089_at"	"QRSL1"	55278	"ENSG00000130348"
+"234443_at"	"CLSTN2-AS1"	101927808	"ENSG00000250433"
+"230765_at"	"NWD2"	57495	"ENSG00000174145"
+"233344_x_at"	"WDR97"	340390	"ENSG00000179698"
+"233846_at"	"CCDC85A"	114800	"ENSG00000055813"
+"232022_at"	""	NA	"ENSG00000235381"
+"234513_at"	"ELOVL3"	83401	"ENSG00000119915"
+"230675_at"	"PFKP-DT"	NA	"ENSG00000273001"
+"235068_at"	"ZDHHC21"	340481	"ENSG00000175893"
+"230985_at"	"C9orf131"	138724	"ENSG00000174038"
+"230932_at"	"RNF130"	55819	"ENSG00000113269"
+"232192_at"	"RNF130"	55819	"ENSG00000113269"
+"231859_at"	"C14orf132"	56967	"ENSG00000227051"
+"233986_s_at"	"PLEKHG2"	64857	"ENSG00000090924"
+"230908_at"	"TACR1"	6869	"ENSG00000115353"
+"234988_at"	"VCPIP1"	80124	"ENSG00000175073"
+"233905_at"	"SUN5"	140732	"ENSG00000167098"
+"234504_at"	"SUN5"	140732	"ENSG00000167098"
+"231570_at"	"SAXO1"	158297	"ENSG00000155875"
+"232158_x_at"	"NIPAL1"	152519	"ENSG00000163293"
+"232698_at"	"BPIFB2"	80341	"ENSG00000078898"
+"232294_at"	"TMEM254-AS1"	NA	"ENSG00000230091"
+"235264_at"	"HCFC2"	29915	"ENSG00000111727"
+"234102_at"	"RASL11B"	65997	"ENSG00000128045"
+"233523_at"	"BPIFB4"	149954	"ENSG00000186191"
+"231448_at"	"ADAD1"	132612	"ENSG00000164113"
+"230906_at"	"GALNT10"	55568	"ENSG00000164574"
+"233208_x_at"	"CPSF2"	53981	"ENSG00000165934"
+"232097_at"	"TOX4"	9878	"ENSG00000092203"
+"233894_x_at"	"COL26A1"	136227	"ENSG00000160963"
+"231623_at"	"TMEM174"	134288	"ENSG00000164325"
+"232708_at"	"GALT"	2592	"ENSG00000213930"
+"232610_at"	"PARP14"	54625	"ENSG00000173193"
+"234413_at"	"MTCO2P34"	NA	"ENSG00000232198"
+"234507_at"	"BPIFB9P"	NA	"ENSG00000125997"
+"232487_at"	"SFT2D1"	113402	"ENSG00000198818"
+"230635_at"	"TUG1"	55000	"ENSG00000253352"
+"235158_at"	"TMEM209"	84928	"ENSG00000146842"
+"233173_x_at"	"GTF3C5"	9328	"ENSG00000148308"
+"234372_at"	"GAPDHP77"	NA	"ENSG00000215000"
+"232057_at"	"SLC7A6OS"	84138	"ENSG00000103061"
+"231732_at"	"SMPD3"	55512	"ENSG00000103056"
+"232003_at"	"PNMA8B"	57469	"ENSG00000204851"
+"234969_s_at"	"EPC1"	80314	"ENSG00000120616"
+"230530_at"	"MLYCD"	23417	"ENSG00000103150"
+"231210_at"	"MAJIN"	283129	"ENSG00000168070"
+"231106_at"	"TIMM23B"	100652748	"ENSG00000204152"
+"233416_at"	""	NA	"ENSG00000279161"
+"233249_at"	"LINC01798"	NA	"ENSG00000232046"
+"232609_at"	"CRB3"	92359	"ENSG00000130545"
+"234433_at"	"LINC01808"	105373460	"ENSG00000237992"
+"235189_at"	"ICE2"	79664	"ENSG00000128915"
+"234893_s_at"	"DNAH6"	1768	"ENSG00000115423"
+"234554_at"	"KCNK16"	83795	"ENSG00000095981"
+"234615_at"	"KLF18"	105378952	"ENSG00000283039"
+"234770_at"	"OR51A1P"	NA	"ENSG00000176752"
+"235473_at"	"MED6"	10001	"ENSG00000133997"
+"232026_at"	"HERC4"	26091	"ENSG00000148634"
+"234994_at"	"TMEM200A"	114801	"ENSG00000164484"
+"232620_at"	"WDR93"	56964	"ENSG00000140527"
+"234469_at"	"OR51B4"	79339	"ENSG00000183251"
+"234526_at"	"OR51B6"	390058	"ENSG00000176239"
+"233736_at"	"OR51J1"	NA	"ENSG00000184321"
+"232336_at"	"ZSWIM5"	57643	"ENSG00000162415"
+"234518_at"	"OR51A10P"	NA	"ENSG00000230484"
+"234617_at"	"OR52D1"	390066	"ENSG00000181609"
+"234014_at"	""	NA	"ENSG00000287777"
+"232423_at"	"ARSD"	414	"ENSG00000006756"
+"232173_at"	"CLEC2L"	154790	"ENSG00000236279"
+"233329_s_at"	"KRCC1"	51315	"ENSG00000172086"
+"231378_at"	"IKBKB-DT"	NA	"ENSG00000253408"
+"231780_at"	"GBGT1"	26301	"ENSG00000148288"
+"235327_x_at"	"UBXN2A"	165324	"ENSG00000173960"
+"232011_s_at"	"MAP1LC3A"	84557	"ENSG00000101460"
+"231764_at"	"CHRAC1"	54108	"ENSG00000104472"
+"235105_at"	"MED28"	80306	"ENSG00000118579"
+"235288_at"	"MED28"	80306	"ENSG00000118579"
+"231356_at"	""	NA	"ENSG00000266844"
+"233823_at"	"FAM184B"	27146	"ENSG00000047662"
+"235429_at"	"EIF3E"	3646	"ENSG00000104408"
+"235057_at"	"ITCH"	83737	"ENSG00000078747"
+"234977_at"	"PTGR3"	284273	"ENSG00000180011"
+"232146_at"	"NDUFC1"	4717	"ENSG00000109390"
+"230604_at"	""	NA	"ENSG00000272688"
+"233935_at"	"TNFSF14"	8740	"ENSG00000125735"
+"234349_at"	"SSPOP"	NA	"ENSG00000197558"
+"230625_s_at"	"TSPAN12"	23554	"ENSG00000106025"
+"235152_at"	"FAM111A-DT"	101927204	"ENSG00000245571"
+"232305_at"	"HMGCLL1"	54511	"ENSG00000146151"
+"233576_at"	"HMGCLL1"	54511	"ENSG00000146151"
+"233439_at"	"LETM1"	3954	"ENSG00000168924"
+"232593_at"	"NEURL3"	93082	"ENSG00000163121"
+"232751_at"	"RBBP9"	10741	"ENSG00000089050"
+"231126_at"	"FAM166C"	339778	"ENSG00000173557"
+"233984_at"	"FBXO34"	55030	"ENSG00000178974"
+"234825_at"	"KCTD13-DT"	NA	"ENSG00000247735"
+"233354_at"	"ZNF426"	79088	"ENSG00000130818"
+"235200_at"	"ZNF561"	93134	"ENSG00000171469"
+"235271_s_at"	"ZNF397"	84307	"ENSG00000186812"
+"235084_x_at"	"TRIM38"	10475	"ENSG00000112343"
+"234960_at"	"H2AC5P"	NA	"ENSG00000234816"
+"233512_at"	"SH3RF3-AS1"	NA	"ENSG00000259863"
+"234753_x_at"	""	NA	"ENSG00000275512"
+"234339_s_at"	"NOP53"	29997	"ENSG00000105373"
+"234876_at"	"COX6A1P1"	NA	"ENSG00000234108"
+"231820_x_at"	"ZNF587"	84914	"ENSG00000198466"
+"231358_at"	"MRO"	83876	"ENSG00000134042"
+"232846_s_at"	"CDH23"	64072	"ENSG00000107736"
+"232845_at"	"CDH23"	64072	"ENSG00000107736"
+"230966_at"	"IL4I1"	259307	"ENSG00000104951"
+"230630_at"	"AK4"	205	"ENSG00000162433"
+"234007_at"	"DEFB121"	245934	"ENSG00000204548"
+"233812_at"	"LINC00028"	140875	"ENSG00000233354"
+"232587_at"	"EML4"	27436	"ENSG00000143924"
+"230955_s_at"	"NOL4L"	140688	"ENSG00000197183"
+"234031_at"	"NOL4L"	140688	"ENSG00000197183"
+"230954_at"	"NOL4L"	140688	"ENSG00000197183"
+"233555_s_at"	"SULF2"	55959	"ENSG00000196562"
+"233116_at"	"ZFP92"	139735	"ENSG00000189420"
+"232517_s_at"	"HELZ2"	85441	"ENSG00000130589"
+"232518_at"	"HELZ2"	85441	"ENSG00000130589"
+"232787_at"	"HELZ2"	85441	"ENSG00000130589"
+"230976_at"	"AK8"	158067	"ENSG00000165695"
+"233841_s_at"	"SUDS3"	64426	"ENSG00000111707"
+"234974_at"	"GALM"	130589	"ENSG00000143891"
+"235256_s_at"	"GALM"	130589	"ENSG00000143891"
+"231838_at"	"PABPC1L"	80336	"ENSG00000101104"
+"233104_at"	"PABPC1L"	80336	"ENSG00000101104"
+"235449_at"	"LRSAM1"	90678	"ENSG00000148356"
+"230719_at"	"ING3"	54556	"ENSG00000071243"
+"231863_at"	"ING3"	54556	"ENSG00000071243"
+"232803_at"	""	NA	"ENSG00000280355"
+"231409_at"	""	NA	"ENSG00000286359"
+"231131_at"	"FAM133A"	286499	"ENSG00000179083"
+"231573_at"	"FATE1"	89885	"ENSG00000147378"
+"230912_at"	"ASPDH"	554235	"ENSG00000204653"
+"231757_at"	"TAS2R5"	54429	"ENSG00000127366"
+"230883_at"	"NXPH2"	11249	"ENSG00000144227"
+"230814_at"	"C19orf81"	342918	"ENSG00000235034"
+"234907_x_at"	"POLB"	5423	"ENSG00000070501"
+"230644_at"	"LRFN5"	145581	"ENSG00000165379"
+"231608_at"	"LINC02885"	NA	"ENSG00000286592"
+"234923_at"	"RALGAPA1"	253959	"ENSG00000174373"
+"233005_at"	"ZNHIT6"	54680	"ENSG00000117174"
+"232911_at"	"ZFP14"	57677	"ENSG00000142065"
+"233221_at"	"DEFB118"	117285	"ENSG00000131068"
+"231155_at"	"DEFB119"	245932	"ENSG00000180483"
+"235176_at"	"ZFP82"	284406	"ENSG00000181007"
+"231445_at"	"PAX1"	5075	"ENSG00000125813"
+"231778_at"	"DLX3"	1747	"ENSG00000064195"
+"233362_at"	"ZNF341"	84905	"ENSG00000131061"
+"231940_at"	"ZNF529"	57711	"ENSG00000186020"
+"235007_at"	"BBS7"	55212	"ENSG00000138686"
+"233028_at"	"MCMBP"	79892	"ENSG00000197771"
+"231164_at"	"ABCA17P"	650655	"ENSG00000238098"
+"233934_at"	""	349160	"ENSG00000234352"
+"230605_at"	""	NA	"ENSG00000272990"
+"230830_at"	"SLC51B"	123264	"ENSG00000186198"
+"231925_at"	"P2RY1"	5028	"ENSG00000169860"
+"231809_x_at"	"PDCD7"	10081	"ENSG00000090470"
+"235475_at"	"SERP1"	27230	"ENSG00000120742"
+"233970_s_at"	"TRMT6"	51605	"ENSG00000089195"
+"231133_at"	"DRC1"	92749	"ENSG00000157856"
+"231827_at"	"MCM8"	84515	"ENSG00000125885"
+"232198_at"	"MCM8"	84515	"ENSG00000125885"
+"234407_s_at"	"TRPC7"	57113	"ENSG00000069018"
+"231283_at"	"MGAT4A"	11320	"ENSG00000071073"
+"232246_at"	"TTC28-AS1"	284900	"ENSG00000235954"
+"233278_at"	""	NA	"ENSG00000278864"
+"235250_at"	"FLCN"	201163	"ENSG00000154803"
+"231341_at"	"SLC35D3"	340146	"ENSG00000182747"
+"235404_at"	"ARID5B"	84159	"ENSG00000150347"
+"231724_at"	"MED26"	9441	"ENSG00000105085"
+"230944_at"	"LINC03040"	221416	"ENSG00000181577"
+"234345_at"	""	NA	"ENSG00000231881"
+"232449_at"	"BCO2"	83875	"ENSG00000197580"
+"232151_at"	"MACC1"	346389	"ENSG00000183742"
+"232050_at"	""	NA	"ENSG00000269937"
+"232579_at"	"KDM7A-DT"	100134229	"ENSG00000260231"
+"234868_s_at"	"GFRA4"	64096	"ENSG00000125861"
+"231324_at"	"SMARCB1"	6598	"ENSG00000099956"
+"232267_at"	"ADGRD1"	283383	"ENSG00000111452"
+"232479_at"	"FERMT1"	55612	"ENSG00000101311"
+"232161_x_at"	"PTPN4"	5775	"ENSG00000088179"
+"234381_at"	"IGLV4-3"	NA	"ENSG00000211672"
+"232931_at"	"SNRNP200"	23020	"ENSG00000144028"
+"233074_at"	""	NA	"ENSG00000270244"
+"231840_x_at"	"LYRM7"	90624	"ENSG00000186687"
+"232760_at"	"TEX15"	56154	"ENSG00000133863"
+"231440_at"	"LINC00943"	100507206	"ENSG00000189238"
+"232269_x_at"	"METRN"	79006	"ENSG00000103260"
+"230665_at"	"GUCY1A2"	2977	"ENSG00000152402"
+"235366_at"	"ZNF10"	7556	"ENSG00000256223"
+"233850_s_at"	"EBF4"	57593	"ENSG00000088881"
+"232357_at"	"TTLL9"	164395	"ENSG00000131044"
+"234336_s_at"	"TTLL9"	164395	"ENSG00000131044"
+"234337_at"	"TTLL9"	164395	"ENSG00000131044"
+"230898_at"	""	NA	"ENSG00000273162"
+"231115_at"	"POLH"	5429	"ENSG00000170734"
+"233852_at"	"POLH"	5429	"ENSG00000170734"
+"235067_at"	"MKLN1"	4289	"ENSG00000128585"
+"233013_x_at"	"WAC-AS1"	NA	"ENSG00000254635"
+"233469_at"	"TPTEP1"	387590	"ENSG00000290418"
+"230695_s_at"	"RSPH9"	221421	"ENSG00000172426"
+"230796_at"	"LINC01191"	440900	"ENSG00000234199"
+"233569_at"	"COPG2"	26958	"ENSG00000158623"
+"232656_at"	"NAALADL2"	254827	"ENSG00000177694"
+"231255_at"	"MPRIP"	23164	"ENSG00000133030"
+"231416_at"	"DHDH"	27294	"ENSG00000104808"
+"230977_at"	"NPM2"	10361	"ENSG00000158806"
+"231089_at"	""	100505664	"ENSG00000230387"
+"234943_at"	""	NA	"ENSG00000291015"
+"233059_at"	"KCNJ3"	3760	"ENSG00000162989"
+"235262_at"	"ZNF585B"	92285	"ENSG00000245680"
+"234472_at"	"GALNT13"	114805	"ENSG00000144278"
+"231877_at"	"TRMT10A"	93587	"ENSG00000145331"
+"232679_at"	""	NA	"ENSG00000261754"
+"233047_at"	"FRMD7"	90167	"ENSG00000165694"
+"233183_at"	"SLC4A9"	83697	"ENSG00000113073"
+"235052_at"	"ZNF792"	126375	"ENSG00000180884"
+"233487_s_at"	"LRRC8A"	56262	"ENSG00000136802"
+"232892_at"	"MIR1-1HG"	128826	"ENSG00000174407"
+"232287_at"	"ERCC6"	2074	"ENSG00000225830"
+"233556_at"	""	1416	"ENSG00000291087"
+"232913_at"	"TMED8"	283578	"ENSG00000100580"
+"231914_at"	"NUDT14"	256281	"ENSG00000183828"
+"233205_at"	"KCNMB2-AS1"	NA	"ENSG00000237978"
+"234400_at"	""	NA	"ENSG00000286288"
+"235019_at"	"CPM"	1368	"ENSG00000135678"
+"234493_at"	"LINC01257"	116437	"ENSG00000204603"
+"234688_x_at"	"CNTROB"	116840	"ENSG00000170037"
+"231884_at"	"CNTROB"	116840	"ENSG00000170037"
+"233508_at"	"MAP3K13"	9175	"ENSG00000073803"
+"231457_at"	"COX6B2"	125965	"ENSG00000160471"
+"234002_at"	"ABHD16B"	140701	"ENSG00000183260"
+"231043_at"	"CFAP221"	200373	"ENSG00000163075"
+"234751_s_at"	"NLGN3"	54413	"ENSG00000196338"
+"232122_s_at"	"VEPH1"	79674	"ENSG00000197415"
+"232777_s_at"	"C6orf118"	168090	"ENSG00000112539"
+"232675_s_at"	"UCKL1"	54963	"ENSG00000198276"
+"233001_at"	"SAMD10"	140700	"ENSG00000130590"
+"234797_at"	"RPLP0P1"	NA	"ENSG00000226229"
+"235278_at"	"MACROD2"	140733	"ENSG00000172264"
+"233288_at"	"ATR"	545	"ENSG00000175054"
+"232822_x_at"	"LINC00629"	100506757	"ENSG00000227060"
+"231382_at"	"FGF18"	8817	"ENSG00000156427"
+"230741_at"	"P2RX7"	5027	"ENSG00000089041"
+"233942_at"	"CYP51A1-AS1"	613126	"ENSG00000188693"
+"235287_at"	"CDK6"	1021	"ENSG00000105810"
+"231198_at"	"CDK6"	1021	"ENSG00000105810"
+"235330_at"	"CCDC117"	150275	"ENSG00000159873"
+"232921_at"	"KIAA1549"	57670	"ENSG00000122778"
+"233730_at"	"FAM135A"	57579	"ENSG00000082269"
+"230683_at"	""	NA	"ENSG00000291067"
+"233069_at"	""	NA	"ENSG00000291067"
+"235122_at"	"HIVEP3"	59269	"ENSG00000127124"
+"232581_x_at"	"HIVEP3"	59269	"ENSG00000127124"
+"233146_at"	"KNDC1"	85442	"ENSG00000171798"
+"230558_at"	"KNDC1"	85442	"ENSG00000171798"
+"231512_at"	"ATP13A4-AS1"	NA	"ENSG00000225473"
+"234360_at"	"RPL7AP71"	NA	"ENSG00000234566"
+"234496_x_at"	"NYX"	60506	"ENSG00000188937"
+"230881_at"	"CCDC42"	146849	"ENSG00000161973"
+"233081_at"	"SRP19"	6728	"ENSG00000153037"
+"234133_s_at"	"TMEM116"	89894	"ENSG00000198270"
+"233871_at"	"SNAP25-AS1"	NA	"ENSG00000227906"
+"231260_at"	"ZNF582-DT"	386758	"ENSG00000267454"
+"233163_at"	""	731157	"ENSG00000255647"
+"232110_at"	"GALNT5"	11227	"ENSG00000136542"
+"230852_at"	"STAC3"	246329	"ENSG00000185482"
+"231544_s_at"	"LYSMD3"	116068	"ENSG00000176018"
+"232300_at"	"ADIRF-AS1"	NA	"ENSG00000272734"
+"233295_at"	"VN1R108P"	NA	"ENSG00000230772"
+"235170_at"	"ZNF92"	168374	"ENSG00000146757"
+"234106_s_at"	"FLYWCH1"	84256	"ENSG00000059122"
+"234980_at"	"TLCD4"	148534	"ENSG00000152078"
+"230772_at"	"HNF4A"	3172	"ENSG00000101076"
+"230914_at"	"HNF4A"	3172	"ENSG00000101076"
+"233190_at"	"CASC18"	101929110	"ENSG00000257859"
+"232080_at"	"HECW2"	57520	"ENSG00000138411"
+"235205_at"	"OXR1"	55074	"ENSG00000164830"
+"234737_at"	"NT5DC3"	51559	"ENSG00000111696"
+"232203_at"	"NKD1"	85407	"ENSG00000140807"
+"232048_at"	"FAM76B"	143684	"ENSG00000077458"
+"233398_at"	""	NA	"ENSG00000256146"
+"233898_s_at"	"FGFR1OP2"	26127	"ENSG00000111790"
+"232384_s_at"	""	NA	"ENSG00000260249"
+"234973_at"	"SLC38A5"	92745	"ENSG00000017483"
+"231446_at"	"LINC02366"	101928162	"ENSG00000256888"
+"234848_at"	"TRAV6"	NA	"ENSG00000211780"
+"234842_at"	"TRAV8-1"	NA	"ENSG00000211782"
+"234013_at"	"TRAV12-1"	NA	"ENSG00000211785"
+"234427_at"	"TRAV12-2"	NA	"ENSG00000211789"
+"234849_at"	"TRAV12-3"	NA	"ENSG00000211794"
+"234964_at"	"TRAV17"	NA	"ENSG00000211797"
+"234860_at"	"TRAV20"	NA	"ENSG00000211800"
+"234852_at"	"TRAV22"	NA	"ENSG00000211802"
+"234398_at"	"TRAV24"	NA	"ENSG00000211805"
+"234396_at"	"TRAV25"	NA	"ENSG00000211806"
+"234388_at"	"TRAV30"	NA	"ENSG00000259092"
+"234819_at"	"TRAV26-2"	NA	"ENSG00000211812"
+"234399_at"	"TRAV34"	NA	"ENSG00000211813"
+"234867_at"	"TRAV39"	NA	"ENSG00000211818"
+"234401_at"	"TRAV40"	NA	"ENSG00000211819"
+"230780_at"	"LINC00886"	730091	"ENSG00000240875"
+"233785_at"	"ADAMTS9"	56999	"ENSG00000163638"
+"232282_at"	"WNK3"	65267	"ENSG00000196632"
+"232373_at"	"NOXA1"	10811	"ENSG00000188747"
+"231976_at"	"LINS1"	55180	"ENSG00000140471"
+"231094_s_at"	"MTHFD1L"	25902	"ENSG00000120254"
+"234902_s_at"	"ZNF416"	55659	"ENSG00000083817"
+"232774_x_at"	"ZIK1"	284307	"ENSG00000171649"
+"232567_at"	"ARHGAP8"	23779	"ENSG00000241484"
+"231913_s_at"	"BRCC3"	79184	"ENSG00000185515"
+"230916_at"	"NODAL"	4838	"ENSG00000156574"
+"234804_at"	"PROX2"	283571	"ENSG00000119608"
+"232887_at"	"PIRT"	644139	"ENSG00000233670"
+"234986_at"	"GCLM"	2730	"ENSG00000023909"
+"230903_s_at"	"TDRP"	157695	"ENSG00000180190"
+"235018_at"	"CSRNP3"	80034	"ENSG00000178662"
+"235355_at"	"CSRNP3"	80034	"ENSG00000178662"
+"235017_s_at"	"CSRNP3"	80034	"ENSG00000178662"
+"235433_at"	"APOOL"	139322	"ENSG00000155008"
+"235051_at"	"CCDC50"	152137	"ENSG00000152492"
+"232221_x_at"	"RSBN1L"	222194	"ENSG00000187257"
+"232535_at"	"RSBN1L"	222194	"ENSG00000187257"
+"235304_at"	""	NA	"ENSG00000267152"
+"230609_at"	"CLINT1"	9685	"ENSG00000113282"
+"231249_at"	"SZT2"	23334	"ENSG00000198198"
+"234304_s_at"	"IPO11"	51194	"ENSG00000086200"
+"234329_at"	"CLIC5"	53405	"ENSG00000112782"
+"230563_at"	"RASGEF1A"	221002	"ENSG00000198915"
+"231632_at"	"ERICH4"	100170765	"ENSG00000204978"
+"235195_at"	"FBXW2"	26190	"ENSG00000119402"
+"232023_at"	"TMEM67"	91147	"ENSG00000164953"
+"232775_at"	"PANK2-AS1"	NA	"ENSG00000229539"
+"231056_at"	""	NA	"ENSG00000269388"
+"231192_at"	"LPAR3"	23566	"ENSG00000171517"
+"231822_at"	"CTTNBP2NL"	55917	"ENSG00000143079"
+"231185_at"	"MYORG"	57462	"ENSG00000164976"
+"232244_at"	"MYORG"	57462	"ENSG00000164976"
+"230939_at"	"MAILR"	NA	"ENSG00000253320"
+"231897_at"	"PTGR1"	22949	"ENSG00000106853"
+"231731_at"	"OTX2"	5015	"ENSG00000165588"
+"235347_at"	"LRCH3"	84859	"ENSG00000186001"
+"232024_at"	"GIMAP2"	26157	"ENSG00000106560"
+"232543_x_at"	"ARHGAP9"	64333	"ENSG00000123329"
+"231222_at"	"PACS1"	55690	"ENSG00000175115"
+"233504_at"	"SHOC1"	158401	"ENSG00000165181"
+"232237_at"	"MDGA1"	266727	"ENSG00000112139"
+"234356_at"	"MYRF-AS1"	26070	"ENSG00000124915"
+"232960_at"	"NUP62CL"	54830	"ENSG00000198088"
+"231554_at"	"TPD52L3"	89882	"ENSG00000170777"
+"231389_at"	"DNAAF6"	139212	"ENSG00000080572"
+"232938_at"	"SFMBT2"	57713	"ENSG00000198879"
+"232083_at"	"KIF16B"	55614	"ENSG00000089177"
+"231058_at"	"FXYD4"	53828	"ENSG00000150201"
+"234476_at"	"DNAH7"	56171	"ENSG00000118997"
+"234312_s_at"	"ACSS2"	55902	"ENSG00000131069"
+"231123_at"	"TRIM36"	55521	"ENSG00000152503"
+"231634_at"	"SLC12A3"	6559	"ENSG00000070915"
+"231122_x_at"	"ZDHHC19"	131540	"ENSG00000163958"
+"231052_at"	"GLOD5"	392465	"ENSG00000171433"
+"235037_at"	"TMEM41A"	90407	"ENSG00000163900"
+"232683_s_at"	"PARP6"	56965	"ENSG00000137817"
+"234710_s_at"	"PARP6"	56965	"ENSG00000137817"
+"232498_at"	"MROH1"	727957	"ENSG00000179832"
+"230813_at"	"P3H2"	55214	"ENSG00000090530"
+"230547_at"	"KCNC1"	3746	"ENSG00000129159"
+"234318_x_at"	"NDOR1"	27158	"ENSG00000188566"
+"230767_at"	""	NA	"ENSG00000273108"
+"232999_at"	""	NA	"ENSG00000267160"
+"234373_x_at"	"IGHE"	NA	"ENSG00000211891"
+"233287_at"	"SLC6A17"	388662	"ENSG00000197106"
+"234839_at"	""	NA	"ENSG00000259946"
+"230546_at"	"VASH1"	22846	"ENSG00000071246"
+"231975_s_at"	"MIER3"	166968	"ENSG00000155545"
+"233949_s_at"	"MYH7B"	57644	"ENSG00000078814"
+"233613_x_at"	"REXO2"	25996	"ENSG00000076043"
+"231048_at"	"GJC1"	10052	"ENSG00000182963"
+"234328_at"	""	NA	"ENSG00000229892"
+"234453_s_at"	"LRRC74A"	145497	"ENSG00000100565"
+"233941_at"	"LRRC74A"	145497	"ENSG00000100565"
+"233535_at"	"ATP13A4"	84239	"ENSG00000127249"
+"235174_s_at"	"LINC01003"	NA	"ENSG00000261455"
+"232209_x_at"	"HM13"	81502	"ENSG00000101294"
+"231890_at"	"SEC22B"	9554	"ENSG00000265808"
+"233020_at"	"SEC22B"	9554	"ENSG00000265808"
+"234093_at"	"ZNF326"	284695	"ENSG00000162664"
+"235231_at"	"ZNF789"	285989	"ENSG00000198556"
+"232881_at"	"GNAS-AS1"	149775	"ENSG00000235590"
+"235202_x_at"	"IKBIP"	121457	"ENSG00000166130"
+"235296_at"	"EIF5A2"	56648	"ENSG00000163577"
+"235289_at"	"EIF5A2"	56648	"ENSG00000163577"
+"230518_at"	"MPZL2"	10205	"ENSG00000149573"
+"233084_s_at"	"SYCE1"	93426	"ENSG00000171772"
+"233482_at"	"INSYN1"	388135	"ENSG00000205363"
+"233849_s_at"	"ARHGAP5"	394	"ENSG00000100852"
+"234485_at"	"EIF3LP3"	NA	"ENSG00000226086"
+"235013_at"	"SLC31A1"	1317	"ENSG00000136868"
+"232014_at"	"ZNF30"	90075	"ENSG00000168661"
+"233060_at"	"ZMIZ1"	57178	"ENSG00000108175"
+"231268_at"	"MYBL1"	4603	"ENSG00000185697"
+"235153_at"	"RNF183"	138065	"ENSG00000165188"
+"233754_x_at"	"ZNF71"	58491	"ENSG00000197951"
+"234570_at"	"ZNF71"	58491	"ENSG00000197951"
+"231215_at"	"ZNF570"	148268	"ENSG00000171827"
+"233594_at"	"CRPPA-AS1"	100506025	"ENSG00000229688"
+"232524_x_at"	"ANAPC4"	29945	"ENSG00000053900"
+"232325_at"	"RNU1-70P"	NA	"ENSG00000199488"
+"232875_at"	"FOCAD"	54914	"ENSG00000188352"
+"234039_at"	"TANC1"	85461	"ENSG00000115183"
+"232534_at"	"LIN37"	55957	"ENSG00000267796"
+"233910_at"	"TMEFF2"	23671	"ENSG00000144339"
+"232856_at"	"LRRC55"	219527	"ENSG00000183908"
+"232641_at"	"ZNF596"	169270	"ENSG00000172748"
+"230782_at"	"SORD"	6652	"ENSG00000140263"
+"233516_s_at"	"SPAG17"	200162	"ENSG00000155761"
+"233734_s_at"	"OSBPL5"	114879	"ENSG00000021762"
+"230615_at"	"DUOXA2"	405753	"ENSG00000140274"
+"231121_at"	"HPS3"	84343	"ENSG00000163755"
+"230862_at"	"RPN1"	6184	"ENSG00000163902"
+"232243_at"	"MCPH1"	79648	"ENSG00000147316"
+"231054_at"	"SPACA4"	171169	"ENSG00000177202"
+"234592_at"	""	NA	"ENSG00000260633"
+"230657_at"	"TMEM165"	55858	"ENSG00000134851"
+"232283_at"	"LYSMD1"	388695	"ENSG00000163155"
+"232812_at"	""	NA	"ENSG00000206567"
+"231531_at"	"FANCD2OS"	115795	"ENSG00000163705"
+"231779_at"	"IRAK2"	3656	"ENSG00000134070"
+"234984_at"	"NEDD1"	121441	"ENSG00000139350"
+"232506_s_at"	"CDIN1"	84529	"ENSG00000186073"
+"232507_at"	"CDIN1"	84529	"ENSG00000186073"
+"232860_x_at"	"RBM41"	55285	"ENSG00000089682"
+"232216_at"	"YME1L1"	10730	"ENSG00000136758"
+"232332_at"	"KIAA1210"	57481	"ENSG00000250423"
+"234996_at"	"CALCRL"	10203	"ENSG00000064989"
+"231344_at"	""	NA	"ENSG00000227907"
+"233361_at"	"ANKRD44"	91526	"ENSG00000065413"
+"235367_at"	"MYPN"	84665	"ENSG00000138347"
+"234861_at"	""	93463	"ENSG00000124835"
+"235194_at"	"TPCN2"	219931	"ENSG00000162341"
+"234130_at"	"LDB3"	11155	"ENSG00000122367"
+"230807_at"	"ODAD3"	115948	"ENSG00000198003"
+"231563_at"	"LINC02805"	NA	"ENSG00000232265"
+"234141_s_at"	""	286059	"ENSG00000246130"
+"230678_at"	""	127814295	"ENSG00000232995"
+"231468_at"	"SH3BP4"	23677	"ENSG00000130147"
+"231157_at"	"TTLL11"	158135	"ENSG00000175764"
+"234448_at"	""	NA	"ENSG00000260090"
+"233443_at"	"PSMG4"	389362	"ENSG00000180822"
+"231775_at"	"TNFRSF10A"	8797	"ENSG00000104689"
+"233076_at"	"JAKMIP3"	282973	"ENSG00000188385"
+"233447_at"	"SLC22A23"	63027	"ENSG00000137266"
+"233206_at"	"SLC22A23"	63027	"ENSG00000137266"
+"233767_at"	"HHLA1"	10086	"ENSG00000132297"
+"231407_s_at"	"FOXH1"	8928	"ENSG00000160973"
+"231766_s_at"	"COL12A1"	1303	"ENSG00000111799"
+"234951_s_at"	"COL12A1"	1303	"ENSG00000111799"
+"231879_at"	"COL12A1"	1303	"ENSG00000111799"
+"232403_at"	"SPG11"	80208	"ENSG00000104133"
+"232404_at"	"SHROOM4"	57477	"ENSG00000158352"
+"231497_at"	"ZBTB20-AS1"	100131117	"ENSG00000241560"
+"232990_at"	"FAM104B"	90736	"ENSG00000182518"
+"235461_at"	"TET2"	54790	"ENSG00000168769"
+"233307_x_at"	"MGST3"	4259	"ENSG00000143198"
+"233114_at"	"GBF1"	8729	"ENSG00000107862"
+"231085_s_at"	""	NA	"ENSG00000279799"
+"235436_at"	"DDX31"	64794	"ENSG00000125485"
+"234800_at"	""	NA	"ENSG00000260322"
+"235316_at"	"NAT8L"	339983	"ENSG00000185818"
+"232591_s_at"	"TMEM30A"	55754	"ENSG00000112697"
+"233360_at"	"UBE2I"	7329	"ENSG00000103275"
+"235168_at"	"PIGM"	93183	"ENSG00000143315"
+"235081_x_at"	"TRIM65"	201292	"ENSG00000141569"
+"232087_at"	"BCLAF3"	256643	"ENSG00000173681"
+"231745_at"	"GPR55"	9290	"ENSG00000135898"
+"230570_at"	"EIF3H"	8667	"ENSG00000147677"
+"232241_at"	"EOLA2-DT"	NA	"ENSG00000235703"
+"232157_at"	"SPRY3"	10251	"ENSG00000168939"
+"234858_at"	"CNN2P10"	NA	"ENSG00000232223"
+"232561_at"	"ZNF771"	51333	"ENSG00000179965"
+"231937_at"	"MIRLET7IHG"	120766144	"ENSG00000257354"
+"234050_at"	"TAGAP"	117289	"ENSG00000164691"
+"232067_at"	"FAXC"	84553	"ENSG00000146267"
+"233893_s_at"	"UVSSA"	57654	"ENSG00000163945"
+"234761_at"	"UVSSA"	57654	"ENSG00000163945"
+"231968_at"	"UGGT1"	56886	"ENSG00000136731"
+"232893_at"	"LMBRD2"	92255	"ENSG00000164187"
+"231287_s_at"	"PRSS54"	221191	"ENSG00000103023"
+"235479_at"	"CPEB2"	132864	"ENSG00000137449"
+"230728_at"	"FKBP14"	55033	"ENSG00000106080"
+"235311_at"	"FKBP14"	55033	"ENSG00000106080"
+"231223_at"	"CSMD1"	64478	"ENSG00000183117"
+"231425_at"	"PLCZ1"	89869	"ENSG00000139151"
+"235054_at"	"NUDT16"	131870	"ENSG00000198585"
+"235002_at"	"NUDT16"	131870	"ENSG00000198585"
+"230561_s_at"	"KANSL1L"	151050	"ENSG00000144445"
+"233072_at"	"NTNG2"	84628	"ENSG00000196358"
+"232527_at"	"ATXN7"	6314	"ENSG00000163635"
+"231893_at"	"KIAA1755"	85449	"ENSG00000149633"
+"232016_at"	"FAN1"	22909	"ENSG00000198690"
+"232361_s_at"	"EHF"	26298	"ENSG00000135373"
+"232360_at"	"EHF"	26298	"ENSG00000135373"
+"234104_at"	"DCN"	1634	"ENSG00000011465"
+"231844_at"	"RBM28"	55131	"ENSG00000106344"
+"233651_s_at"	"MPND"	84954	"ENSG00000008382"
+"230624_at"	"SLC25A27"	9481	"ENSG00000153291"
+"231787_at"	"SLC25A27"	9481	"ENSG00000153291"
+"232692_at"	"TDRD6"	221400	"ENSG00000180113"
+"234878_at"	"ZC3H12B"	340554	"ENSG00000102053"
+"232785_at"	"RTL9"	57529	"ENSG00000243978"
+"234378_at"	""	NA	"ENSG00000228238"
+"233511_at"	"MIR3147HG"	NA	"ENSG00000260653"
+"235076_at"	"CALCOCO2"	10241	"ENSG00000136436"
+"235154_at"	"TAF3"	83860	"ENSG00000165632"
+"235119_at"	"TAF3"	83860	"ENSG00000165632"
+"235442_at"	"STEEP1"	63932	"ENSG00000018610"
+"232885_at"	"BBIP1"	92482	"ENSG00000214413"
+"232396_at"	""	NA	"ENSG00000273691"
+"230706_s_at"	"CAMK2N2"	94032	"ENSG00000163888"
+"232910_at"	""	NA	"ENSG00000278601"
+"232512_at"	""	NA	"ENSG00000236283"
+"231530_s_at"	"CFAP68"	64776	"ENSG00000137720"
+"231442_at"	"ZPBP2"	124626	"ENSG00000186075"
+"231111_at"	"SCYL3"	57147	"ENSG00000000457"
+"232842_at"	"DOCK8"	81704	"ENSG00000107099"
+"232843_s_at"	"DOCK8"	81704	"ENSG00000107099"
+"230940_at"	""	NA	"ENSG00000267244"
+"230998_at"	"CBX3"	11335	"ENSG00000122565"
+"231124_x_at"	"LY9"	4063	"ENSG00000122224"
+"234437_at"	""	NA	"ENSG00000261019"
+"230597_at"	"SLC7A3"	84889	"ENSG00000165349"
+"231104_at"	"TDRD5"	163589	"ENSG00000162782"
+"233749_at"	"MSN"	4478	"ENSG00000147065"
+"230549_at"	"ELK4"	2005	"ENSG00000158711"
+"233418_at"	"TBC1D2B"	23102	"ENSG00000167202"
+"231621_at"	"MPZL1"	9019	"ENSG00000197965"
+"231102_at"	"CROT"	54677	"ENSG00000005469"
+"235360_at"	"PLEKHM3"	389072	"ENSG00000178385"
+"234060_at"	"SARM1"	23098	"ENSG00000004139"
+"233578_at"	"CATSPERE"	257044	"ENSG00000179397"
+"235193_at"	"ATOSA"	56204	"ENSG00000047346"
+"233665_x_at"	"MTO1"	25821	"ENSG00000135297"
+"231891_at"	"STAMBPL1"	57559	"ENSG00000138134"
+"234968_at"	"DENND4C"	55667	"ENSG00000137145"
+"231421_at"	"LINC00710"	NA	"ENSG00000229240"
+"235279_at"	"PARVA"	55742	"ENSG00000197702"
+"231556_at"	"DNAJB1"	3337	"ENSG00000132002"
+"234365_at"	"RPL7AP29"	NA	"ENSG00000248843"
+"234885_at"	"RPS26P57"	NA	"ENSG00000236880"
+"231542_at"	"SPAG5-AS1"	NA	"ENSG00000227543"
+"231541_s_at"	"SPAG5-AS1"	NA	"ENSG00000227543"
+"230753_at"	"PATL2"	197135	"ENSG00000229474"
+"234208_at"	""	NA	"ENSG00000253519"
+"235222_x_at"	"XIAP"	331	"ENSG00000101966"
+"231175_at"	"BEND6"	221336	"ENSG00000151917"
+"235005_at"	"DIS3L"	115752	"ENSG00000166938"
+"231869_at"	"KIAA1586"	57691	"ENSG00000168116"
+"230763_at"	"SPATA17"	128153	"ENSG00000162814"
+"233543_s_at"	"ABRAXAS1"	84142	"ENSG00000163322"
+"231099_at"	"FKBP15"	23307	"ENSG00000119321"
+"234914_at"	"ZNF7"	7553	"ENSG00000147789"
+"232806_s_at"	"FAM131A"	131408	"ENSG00000175182"
+"232807_at"	"FAM131A"	131408	"ENSG00000175182"
+"231470_at"	"LINC00664"	400680	"ENSG00000268658"
+"230937_at"	""	NA	"ENSG00000272221"
+"231946_at"	"ZFHX2"	85446	"ENSG00000136367"
+"231096_at"	"PCAT4"	118425	"ENSG00000251321"
+"231288_at"	"CCDC88C"	440193	"ENSG00000015133"
+"230936_at"	"DNAJB13"	374407	"ENSG00000187726"
+"232566_at"	"NOL6"	65083	"ENSG00000165271"
+"231642_at"	"TEX56P"	404220	"ENSG00000185689"
+"234584_s_at"	"ATE1"	11101	"ENSG00000107669"
+"233750_s_at"	"TRMT1L"	81627	"ENSG00000121486"
+"232722_at"	"RNASET2"	8635	"ENSG00000026297"
+"233540_s_at"	"CDK5RAP2"	55755	"ENSG00000136861"
+"231730_at"	"SEPSECS"	51091	"ENSG00000109618"
+"232028_at"	"ZNF678"	339500	"ENSG00000181450"
+"230534_at"	"ZNF678"	339500	"ENSG00000181450"
+"230776_at"	"RNF157-AS1"	NA	"ENSG00000267128"
+"235240_at"	"ATXN3"	4287	"ENSG00000066427"
+"233182_x_at"	"ATXN3"	4287	"ENSG00000066427"
+"234689_at"	"PTCHD4"	442213	"ENSG00000244694"
+"232215_x_at"	"PRR11"	55771	"ENSG00000068489"
+"232663_s_at"	"UBAP1L"	390595	"ENSG00000246922"
+"230700_at"	"RTN4RL1"	146760	"ENSG00000185924"
+"232074_at"	"PRSS27"	83886	"ENSG00000172382"
+"231988_x_at"	"ZNF490"	57474	"ENSG00000188033"
+"231459_at"	""	101927839	"ENSG00000225084"
+"231431_s_at"	"INAFM2"	100505573	"ENSG00000259330"
+"231788_at"	"LPAR5"	57121	"ENSG00000184574"
+"230833_at"	"ACRBP"	84519	"ENSG00000111644"
+"235088_at"	"C4orf46"	201725	"ENSG00000205208"
+"230541_at"	"LINC01341"	NA	"ENSG00000227953"
+"232253_at"	"IRF1-AS1"	NA	"ENSG00000197536"
+"232637_at"	"SEPTIN2"	4735	"ENSG00000168385"
+"231398_at"	"SLC22A7"	10864	"ENSG00000137204"
+"235127_at"	"PMP2"	5375	"ENSG00000147588"
+"234950_s_at"	"COP1"	64326	"ENSG00000143207"
+"232129_s_at"	"LZTS2"	84445	"ENSG00000107816"
+"234306_s_at"	"SLAMF7"	57823	"ENSG00000026751"
+"230730_at"	"SGCD"	6444	"ENSG00000170624"
+"231423_s_at"	"ANKRD16"	54522	"ENSG00000134461"
+"234666_at"	""	NA	"ENSG00000279733"
+"231234_at"	"CTSC"	1075	"ENSG00000109861"
+"230600_at"	"LRRC46"	90506	"ENSG00000141294"
+"230601_s_at"	"LRRC46"	90506	"ENSG00000141294"
+"230592_at"	"NSL1"	25936	"ENSG00000117697"
+"235029_at"	"GINS4"	84296	"ENSG00000147536"
+"231138_at"	"TRPC5OS"	100329135	"ENSG00000204025"
+"231901_at"	"TIMM29"	90580	"ENSG00000142444"
+"232020_at"	"SMURF2"	64750	"ENSG00000108854"
+"232091_s_at"	"ZDHHC24"	254359	"ENSG00000174165"
+"232627_at"	"HGS"	9146	"ENSG00000185359"
+"234436_x_at"	"OBP2A"	29991	"ENSG00000122136"
+"234841_x_at"	"OBP2A"	29991	"ENSG00000122136"
+"234971_x_at"	"PLCD3"	113026	"ENSG00000161714"
+"233068_at"	"CRIPT"	9419	"ENSG00000119878"
+"233831_at"	""	NA	"ENSG00000279846"
+"231807_at"	"KIAA1217"	56243	"ENSG00000120549"
+"232046_at"	"KIAA1217"	56243	"ENSG00000120549"
+"232989_s_at"	"CCDC136"	64753	"ENSG00000128596"
+"235149_at"	"PGM2L1"	283209	"ENSG00000165434"
+"231022_at"	"OCLN"	100506658	"ENSG00000197822"
+"232915_at"	"DDX49"	54555	"ENSG00000105671"
+"235069_at"	"TATDN3"	128387	"ENSG00000203705"
+"235103_at"	"MAN2A1"	4124	"ENSG00000112893"
+"232879_at"	"CRTC3"	64784	"ENSG00000140577"
+"231843_at"	"DDX55"	57696	"ENSG00000111364"
+"233642_s_at"	"HEATR5B"	54497	"ENSG00000008869"
+"234211_at"	""	NA	"ENSG00000279786"
+"235435_at"	"AASDH"	132949	"ENSG00000157426"
+"233289_at"	""	NA	"ENSG00000279838"
+"231819_at"	"CEBPZOS"	100505876	"ENSG00000218739"
+"232035_at"	"H4C8"	8365	"ENSG00000158406"
+"232713_at"	""	NA	"ENSG00000261342"
+"232115_at"	"SLC39A3"	29985	"ENSG00000141873"
+"232352_at"	"ISL2"	64843	"ENSG00000159556"
+"235255_at"	"ATP6V0A2"	23545	"ENSG00000185344"
+"230783_at"	"OTUD7A"	161725	"ENSG00000169918"
+"232562_at"	"OTUD7A"	161725	"ENSG00000169918"
+"235225_at"	"SCN2B"	6327	"ENSG00000149575"
+"235258_at"	"DCP2"	167227	"ENSG00000172795"
+"234423_x_at"	""	100996255	"ENSG00000289083"
+"231452_at"	"PLAAT5"	117245	"ENSG00000168004"
+"231050_at"	"PLAAT5"	117245	"ENSG00000168004"
+"232944_at"	"THSD4"	79875	"ENSG00000187720"
+"232303_at"	"ZNF608"	57507	"ENSG00000168916"
+"232491_at"	""	NA	"ENSG00000259370"
+"232625_at"	"TLN2"	83660	"ENSG00000171914"
+"232214_x_at"	"ZNF554"	115196	"ENSG00000172006"
+"230832_at"	"RTF1"	23168	"ENSG00000137815"
+"234725_s_at"	"SEMA4B"	10509	"ENSG00000185033"
+"230545_at"	"PARD3-DT"	NA	"ENSG00000226386"
+"233803_s_at"	"MYBBP1A"	10514	"ENSG00000132382"
+"235045_at"	"RBM7"	10179	"ENSG00000076053"
+"231384_at"	"GRIN2A"	2903	"ENSG00000183454"
+"233421_s_at"	"NUP133"	55746	"ENSG00000069248"
+"231076_at"	"C16orf82"	162083	"ENSG00000234186"
+"233980_s_at"	"VWF"	7450	"ENSG00000110799"
+"232381_s_at"	"DNAH5"	1767	"ENSG00000039139"
+"230863_at"	"LRP2"	4036	"ENSG00000081479"
+"232013_at"	"ERCC6L2"	375748	"ENSG00000182150"
+"232801_at"	"ERCC6L2"	375748	"ENSG00000182150"
+"233137_at"	""	NA	"ENSG00000228863"
+"232297_at"	"KLHL5"	51088	"ENSG00000109790"
+"233866_at"	"KLHL5"	51088	"ENSG00000109790"
+"232475_at"	"TICRR"	90381	"ENSG00000140534"
+"233820_at"	"FAS"	355	"ENSG00000026103"
+"235300_x_at"	"RCHY1"	25898	"ENSG00000163743"
+"233551_at"	"DANT2"	642776	"ENSG00000235244"
+"232458_at"	"MIR1245A"	100302219	"ENSG00000221502"
+"231291_at"	"GIPR"	2696	"ENSG00000010310"
+"230826_at"	"MMD2"	221938	"ENSG00000136297"
+"233141_s_at"	"ST7L"	54879	"ENSG00000007341"
+"234232_at"	"EMP1"	2012	"ENSG00000134531"
+"234233_s_at"	"EMP1"	2012	"ENSG00000134531"
+"232111_at"	"TUNAR"	NA	"ENSG00000250366"
+"235378_at"	"FAM161B"	145483	"ENSG00000156050"
+"230983_at"	"NIBAN3"	199786	"ENSG00000167483"
+"231875_at"	"KIF21A"	55605	"ENSG00000139116"
+"234219_at"	"LINC02535"	101928820	"ENSG00000234155"
+"235411_at"	"PGBD1"	84547	"ENSG00000137338"
+"232252_at"	"STYXL2"	92235	"ENSG00000198842"
+"231858_x_at"	"AP5B1"	91056	"ENSG00000254470"
+"231401_s_at"	"PSMC3IP"	29893	"ENSG00000131470"
+"230617_at"	"OVOL1-AS1"	101927828	"ENSG00000255120"
+"231984_at"	"MTAP"	4507	"ENSG00000099810"
+"231870_s_at"	"NMD3"	51068	"ENSG00000169251"
+"231194_at"	"SNX32"	254122	"ENSG00000172803"
+"231959_at"	"LIN52"	91750	"ENSG00000205659"
+"231887_s_at"	"PALD1"	27143	"ENSG00000107719"
+"230874_at"	"SLC36A4"	120103	"ENSG00000180773"
+"234978_at"	"SLC36A4"	120103	"ENSG00000180773"
+"231065_at"	"PDE6D"	5147	"ENSG00000156973"
+"233999_s_at"	"TTC26"	79989	"ENSG00000105948"
+"233496_s_at"	"CFL2"	1073	"ENSG00000165410"
+"232183_at"	"SERAC1"	84947	"ENSG00000122335"
+"233096_at"	"BLTP1"	84162	"ENSG00000138688"
+"231399_at"	"RAB3IP"	117177	"ENSG00000127328"
+"231279_at"	"PATE1"	160065	"ENSG00000171053"
+"232632_at"	""	NA	"ENSG00000278991"
+"232905_at"	"GTF2H5"	404672	"ENSG00000272047"
+"231073_at"	"FYB2"	199920	"ENSG00000187889"
+"232720_at"	"LINGO2"	158038	"ENSG00000174482"
+"231286_at"	"S1PR3"	1903	"ENSG00000213694"
+"231741_at"	"S1PR3"	1903	"ENSG00000213694"
+"232279_at"	"JADE2"	23338	"ENSG00000043143"
+"234392_at"	"H4C10P"	NA	"ENSG00000217862"
+"234183_at"	""	NA	"ENSG00000261257"
+"232419_at"	"TMEM132A"	54972	"ENSG00000006118"
+"233634_at"	"MARVELD3"	91862	"ENSG00000140832"
+"233656_s_at"	"VPS54"	51542	"ENSG00000143952"
+"234029_at"	""	NA	"ENSG00000279855"
+"233926_at"	""	NA	"ENSG00000259326"
+"232304_at"	"PELI1"	57162	"ENSG00000197329"
+"235484_at"	"PTAR1"	375743	"ENSG00000188647"
+"231754_at"	"PCDHGC4"	56098	"ENSG00000242419"
+"231753_s_at"	"PCDHGC4"	56098	"ENSG00000242419"
+"234847_at"	"LINC00309"	150992	"ENSG00000230923"
+"232434_at"	"DIRC3"	NA	"ENSG00000231672"
+"233140_s_at"	"VIPAS39"	63894	"ENSG00000151445"
+"234320_at"	"CD244"	51744	"ENSG00000122223"
+"231830_x_at"	"RAB11FIP1"	80223	"ENSG00000156675"
+"234021_at"	"EML2"	24139	"ENSG00000125746"
+"235219_at"	"EXOC3-AS1"	NA	"ENSG00000221990"
+"233740_at"	""	NA	"ENSG00000279589"
+"232867_at"	"RN7SL587P"	NA	"ENSG00000240233"
+"232548_at"	"GALNT16"	57452	"ENSG00000100626"
+"231350_at"	"LINC01350"	NA	"ENSG00000228309"
+"232366_at"	"KIAA0232"	9778	"ENSG00000170871"
+"232994_s_at"	"ARHGEF28"	64283	"ENSG00000214944"
+"231097_at"	""	NA	"ENSG00000279041"
+"231443_at"	"ELFN1-AS1"	101927125	"ENSG00000236081"
+"235471_at"	"VSTM4"	196740	"ENSG00000165633"
+"231802_at"	"CLEC3A"	10143	"ENSG00000166509"
+"234262_at"	""	NA	"ENSG00000280190"
+"234822_at"	""	NA	"ENSG00000279732"
+"231848_x_at"	"ZNF207"	7756	"ENSG00000010244"
+"235215_at"	"ERCC4"	2072	"ENSG00000175595"
+"235196_at"	"CDC73"	79577	"ENSG00000134371"
+"231028_at"	"LINC02749"	100506082	"ENSG00000254480"
+"235025_at"	"WDR89"	112840	"ENSG00000140006"
+"231924_at"	"LINC00958"	100506305	"ENSG00000251381"
+"231068_at"	"SLC47A2"	146802	"ENSG00000180638"
+"231209_at"	"EXOC3L4"	91828	"ENSG00000205436"
+"230677_at"	"EXOC3L4"	91828	"ENSG00000205436"
+"230915_at"	"DHRS7C"	201140	"ENSG00000184544"
+"231128_at"	"FAM181B"	220382	"ENSG00000182103"
+"231430_at"	"FAM181B"	220382	"ENSG00000182103"
+"231763_at"	"POLR3A"	11128	"ENSG00000148606"
+"233231_at"	"MCCC2"	64087	"ENSG00000131844"
+"230774_at"	"PTGR2"	145482	"ENSG00000140043"
+"231817_at"	"USP53"	54532	"ENSG00000145390"
+"231376_at"	"UPP2"	151531	"ENSG00000007001"
+"233155_at"	"UPP2"	151531	"ENSG00000007001"
+"231666_at"	"PAX3"	5077	"ENSG00000135903"
+"231727_s_at"	"MIF4GD"	57409	"ENSG00000125457"
+"234040_at"	"HELLS"	3070	"ENSG00000119969"
+"234354_x_at"	"ERBB2"	2064	"ENSG00000141736"
+"235178_x_at"	"ESCO2"	157570	"ENSG00000171320"
+"231116_at"	""	107985216	"ENSG00000272668"
+"231191_at"	""	NA	"ENSG00000287049"
+"232316_at"	"SAMD15"	161394	"ENSG00000100583"
+"231566_at"	"NOXRED1"	122945	"ENSG00000165555"
+"230560_at"	"STXBP6"	29091	"ENSG00000168952"
+"232044_at"	"RBBP6"	5930	"ENSG00000122257"
+"232571_at"	"CAPN10-DT"	NA	"ENSG00000260942"
+"232301_at"	"UBE3B"	89910	"ENSG00000151148"
+"232942_at"	"PYROXD2"	84795	"ENSG00000119943"
+"231734_at"	"RBP2"	5948	"ENSG00000114113"
+"233122_at"	"KRTCAP2"	200185	"ENSG00000163463"
+"231396_s_at"	"HYCC1"	84668	"ENSG00000122591"
+"234657_at"	"HYCC1"	84668	"ENSG00000122591"
+"232036_at"	"KLC1"	3831	"ENSG00000126214"
+"234303_s_at"	"GPR85"	54329	"ENSG00000164604"
+"232068_s_at"	"TLR4"	7099	"ENSG00000136869"
+"230949_at"	"SLC23A3"	151295	"ENSG00000213901"
+"230816_at"	"FAM163B"	642968	"ENSG00000196990"
+"232972_at"	"PRR29"	92340	"ENSG00000224383"
+"233311_at"	""	NA	"ENSG00000259280"
+"232265_at"	"ATXN7L1"	222255	"ENSG00000146776"
+"231620_at"	"ADAM7-AS2"	101929315	"ENSG00000253643"
+"232940_s_at"	"KMT2C"	58508	"ENSG00000055609"
+"230722_at"	"BNC2"	54796	"ENSG00000173068"
+"235204_at"	"ENTPD7"	57089	"ENSG00000198018"
+"233087_at"	"FBXL17"	64839	"ENSG00000145743"
+"231649_at"	""	NA	"ENSG00000255410"
+"231112_at"	"SNRPE"	6635	"ENSG00000182004"
+"231567_s_at"	"CCDC62"	84660	"ENSG00000130783"
+"235079_at"	"ZNF704"	619279	"ENSG00000164684"
+"230577_at"	"LINC00844"	NA	"ENSG00000237949"
+"232354_at"	""	NA	"ENSG00000280138"
+"231290_at"	"UNC45A"	55898	"ENSG00000140553"
+"234997_x_at"	""	NA	"ENSG00000259865"
+"232684_at"	"ZNF503-AS1"	253264	"ENSG00000226051"
+"235143_at"	"SLC10A7"	84068	"ENSG00000120519"
+"233592_at"	"ANKRD18B"	441459	"ENSG00000230453"
+"235203_at"	""	NA	"ENSG00000263731"
+"233562_at"	"LINC00839"	84856	"ENSG00000185904"
+"231708_at"	"C2CD3"	26005	"ENSG00000168014"
+"232064_at"	"FER"	2241	"ENSG00000151422"
+"235382_at"	"LVRN"	206338	"ENSG00000172901"
+"231934_at"	"TRIM14"	9830	"ENSG00000106785"
+"235430_at"	"MIDEAS"	91748	"ENSG00000156030"
+"232001_at"	"PRKCQ-AS1"	439949	"ENSG00000237943"
+"232426_at"	"SV2B"	9899	"ENSG00000185518"
+"235424_at"	"PABIR1"	116224	"ENSG00000187866"
+"235043_at"	"PABIR1"	116224	"ENSG00000187866"
+"231586_at"	"SPATA42"	642864	"ENSG00000203897"
+"232140_at"	""	NA	"ENSG00000280077"
+"232182_at"	""	NA	"ENSG00000279456"
+"232516_x_at"	"DAP3"	7818	"ENSG00000132676"
+"234008_s_at"	"CES3"	23491	"ENSG00000172828"
+"231971_at"	"FANCM"	57697	"ENSG00000187790"
+"234733_s_at"	"FANCM"	57697	"ENSG00000187790"
+"234017_at"	"LINC00923"	91948	"ENSG00000251209"
+"232000_at"	"TTC39B"	158219	"ENSG00000155158"
+"234983_at"	"SPRING1"	79794	"ENSG00000111412"
+"230569_at"	"CFAP97"	57587	"ENSG00000164323"
+"230567_at"	"CFAP97"	57587	"ENSG00000164323"
+"234749_s_at"	"POC1A"	25886	"ENSG00000164087"
+"232425_at"	"SNX25"	83891	"ENSG00000109762"
+"235385_at"	"MARCHF1"	55016	"ENSG00000145416"
+"234327_at"	"TMEM202-AS1"	105370888	"ENSG00000261423"
+"232878_at"	"NR2F2-AS1"	NA	"ENSG00000247809"
+"231557_at"	""	NA	"ENSG00000250604"
+"231204_at"	"ZGRF1"	55345	"ENSG00000138658"
+"231015_at"	"KLF15"	28999	"ENSG00000163884"
+"235124_at"	"EIF3J-DT"	645212	"ENSG00000179523"
+"232752_at"	"LOXL1-AS1"	100287616	"ENSG00000261801"
+"235274_at"	"GABPB1-AS1"	NA	"ENSG00000244879"
+"235172_at"	"GABPB1-AS1"	NA	"ENSG00000244879"
+"231979_at"	"GABPB1-AS1"	NA	"ENSG00000244879"
+"230811_at"	"SPATA33"	124045	"ENSG00000167523"
+"232293_at"	"LCORL"	254251	"ENSG00000178177"
+"232417_x_at"	"ZDHHC11"	79844	"ENSG00000188818"
+"235359_at"	"NRROS"	375387	"ENSG00000174004"
+"234307_s_at"	"KIF26A"	26153	"ENSG00000066735"
+"232069_at"	"KIF26A"	26153	"ENSG00000066735"
+"230860_at"	"CEP19"	84984	"ENSG00000174007"
+"235118_at"	"CADM2"	253559	"ENSG00000175161"
+"230846_at"	"AKAP5"	9495	"ENSG00000179841"
+"232302_at"	"PDLIM2"	64236	"ENSG00000120913"
+"230888_at"	"WDR91"	29062	"ENSG00000105875"
+"234904_x_at"	"ELAVL4"	1996	"ENSG00000162374"
+"232577_at"	""	NA	"ENSG00000291301"
+"231006_at"	"SPATA8"	145946	"ENSG00000185594"
+"235374_at"	"MDH1"	4190	"ENSG00000014641"
+"230648_at"	"LINC00926"	283663	"ENSG00000247982"
+"232040_at"	""	NA	"ENSG00000254290"
+"233788_at"	""	NA	"ENSG00000284902"
+"233491_at"	"RPL26L1-AS1"	100268168	"ENSG00000204758"
+"231032_at"	"PCMTD1-DT"	NA	"ENSG00000228801"
+"232731_x_at"	"RAMP2-AS1"	100190938	"ENSG00000197291"
+"234421_s_at"	"EVC"	2121	"ENSG00000072840"
+"230817_at"	"PCAT1"	100750225	"ENSG00000253438"
+"231833_at"	"RBM33"	155435	"ENSG00000184863"
+"233499_at"	"LRRC7"	57554	"ENSG00000033122"
+"230910_s_at"	"LNCOC1"	100288181	"ENSG00000253741"
+"235390_at"	"SREK1IP1"	285672	"ENSG00000153006"
+"235148_at"	"KRTCAP3"	200634	"ENSG00000157992"
+"233896_s_at"	"PAPLN"	89932	"ENSG00000100767"
+"235261_at"	"UNC45B"	146862	"ENSG00000141161"
+"235247_at"	""	NA	"ENSG00000289048"
+"231412_at"	"RIPK2-DT"	101929709	"ENSG00000251136"
+"234990_at"	"CBX5"	23468	"ENSG00000094916"
+"231862_at"	"CBX5"	23468	"ENSG00000094916"
+"230752_at"	"CBX5"	23468	"ENSG00000094916"
+"231071_at"	"YTHDF3-DT"	101410533	"ENSG00000270673"
+"231917_at"	"GFM2"	84340	"ENSG00000164347"
+"231918_s_at"	"GFM2"	84340	"ENSG00000164347"
+"232326_at"	"BAALC-AS2"	NA	"ENSG00000236939"
+"235048_at"	"FAM169A"	26049	"ENSG00000198780"
+"235171_at"	"TOX-DT"	100505501	"ENSG00000167912"
+"235388_at"	"CHD9"	80205	"ENSG00000177200"
+"232884_s_at"	"ZNF853"	54753	"ENSG00000236609"
+"231391_at"	"CTXN3"	613212	"ENSG00000205279"
+"235402_at"	"PPP1R32"	220004	"ENSG00000162148"
+"233083_at"	"MTHFD2L"	441024	"ENSG00000163738"
+"231503_at"	"LINC03000"	102546299	"ENSG00000241956"
+"235409_at"	"MGA"	23269	"ENSG00000174197"
+"231876_at"	"TRIM56"	81844	"ENSG00000169871"
+"233337_s_at"	"SEZ6L2"	26470	"ENSG00000174938"
+"231365_at"	"HOXA10-AS"	100874323	"ENSG00000253187"
+"231786_at"	"HOXA13"	3209	"ENSG00000106031"
+"231706_s_at"	"EVX1"	2128	"ENSG00000106038"
+"230972_at"	"ANKRD9"	122416	"ENSG00000156381"
+"232765_x_at"	"SLC22A31"	146429	"ENSG00000259803"
+"231592_at"	"TSIX"	9383	"ENSG00000270641"
+"230587_at"	""	NA	"ENSG00000225399"
+"235443_at"	"CKMT2-AS1"	100131067	"ENSG00000247572"
+"231014_at"	"TRIM50"	135892	"ENSG00000146755"
+"234899_at"	"H2BW2"	286436	"ENSG00000101812"
+"233340_at"	"SPINK13"	153218	"ENSG00000214510"
+"233454_at"	"POLN"	353497	"ENSG00000130997"
+"231211_s_at"	"YIF1B"	90522	"ENSG00000167645"
+"232408_at"	"ZFYVE28"	57732	"ENSG00000159733"
+"231878_at"	"PAGR1"	79447	"ENSG00000280789"
+"235113_at"	"LRR1"	122769	"ENSG00000165501"
+"233226_at"	"PTPN9"	5780	"ENSG00000169410"
+"230856_at"	""	NA	"ENSG00000267009"
+"235243_at"	"CLIP3"	25999	"ENSG00000105270"
+"232826_at"	""	NA	"ENSG00000288721"
+"232085_at"	"MAPK8IP3"	23162	"ENSG00000138834"
+"234321_x_at"	"NHSL1"	57224	"ENSG00000135540"
+"234922_s_at"	"NHSL1"	57224	"ENSG00000135540"
+"231947_at"	"MYCT1"	80177	"ENSG00000120279"
+"230896_at"	"BEND4"	389206	"ENSG00000188848"
+"232687_at"	"GPRIN3"	285513	"ENSG00000185477"
+"232738_at"	"CCSER1"	401145	"ENSG00000184305"
+"230804_at"	"NKAPL"	222698	"ENSG00000189134"
+"234992_x_at"	"ECT2"	1894	"ENSG00000114346"
+"231783_at"	"CHRM1"	1128	"ENSG00000168539"
+"235062_at"	"PIH1D2"	120379	"ENSG00000150773"
+"234459_at"	"PPHLN1"	51535	"ENSG00000134283"
+"232898_at"	"DAB2"	1601	"ENSG00000153071"
+"231795_at"	"STON1"	11037	"ENSG00000243244"
+"231911_at"	"ERMN"	57471	"ENSG00000136541"
+"235463_s_at"	"CERS6"	253782	"ENSG00000172292"
+"233787_at"	"C6orf163"	206412	"ENSG00000203872"
+"233632_s_at"	"XRN1"	54464	"ENSG00000114127"
+"231867_at"	"TENM2"	57451	"ENSG00000145934"
+"232901_at"	"RARS2"	57038	"ENSG00000146282"
+"232902_s_at"	"RARS2"	57038	"ENSG00000146282"
+"231814_at"	"MUC12"	10071	"ENSG00000205277"
+"235236_at"	"INSYN2B"	100131897	"ENSG00000204767"
+"231309_at"	"AMZ1"	155185	"ENSG00000174945"
+"235027_at"	"ZNF736"	728927	"ENSG00000234444"
+"232045_at"	"PHACTR1"	221692	"ENSG00000112137"
+"235114_x_at"	"HOOK3"	84376	"ENSG00000168172"
+"235306_at"	"GIMAP8"	155038	"ENSG00000171115"
+"231230_at"	"KCNK10"	54207	"ENSG00000100433"
+"232208_at"	"ISLR2"	57611	"ENSG00000167178"
+"231292_at"	"EID3"	493861	"ENSG00000255150"
+"231664_at"	"SLC25A29"	123096	"ENSG00000197119"
+"235006_at"	"CDKN2AIPNL"	91368	"ENSG00000237190"
+"232160_s_at"	"TNIP2"	79155	"ENSG00000168884"
+"233054_at"	"CNOT2"	4848	"ENSG00000111596"
+"232432_s_at"	"SLC30A5"	64924	"ENSG00000145740"
+"234701_at"	"ANKRD11"	29123	"ENSG00000167522"
+"231999_at"	"ANKRD11"	29123	"ENSG00000167522"
+"230736_at"	""	102724316	"ENSG00000291093"
+"230737_s_at"	""	102724316	"ENSG00000291093"
+"231272_at"	"MED7"	9443	"ENSG00000155868"
+"231176_at"	"PRR19"	284338	"ENSG00000188368"
+"234577_at"	"ZNF559"	84527	"ENSG00000188321"
+"231868_at"	"HOMEZ"	57594	"ENSG00000290292"
+"230794_at"	"PELI2"	57161	"ENSG00000139946"
+"232771_at"	"NRK"	203447	"ENSG00000123572"
+"234403_at"	"OR1I1"	126370	"ENSG00000094661"
+"235416_at"	""	NA	"ENSG00000283235"
+"234818_at"	"TMEM108"	66000	"ENSG00000144868"
+"231318_at"	""	NA	"ENSG00000290767"
+"232380_at"	"FGGY"	55277	"ENSG00000172456"
+"232078_at"	"NECTIN2"	5819	"ENSG00000130202"
+"232079_s_at"	"NECTIN2"	5819	"ENSG00000130202"
+"233399_x_at"	"ZNF252P"	286101	"ENSG00000291080"
+"232734_at"	"TTC23"	64927	"ENSG00000103852"
+"234620_at"	"TPM3P4"	NA	"ENSG00000214869"
+"235026_at"	"KICS2"	144577	"ENSG00000174206"
+"231562_at"	""	NA	"ENSG00000267114"
+"233825_s_at"	"CD99L2"	83692	"ENSG00000102181"
+"235034_at"	"VTI1A"	143187	"ENSG00000151532"
+"230900_at"	"CCDC110"	256309	"ENSG00000168491"
+"232753_at"	"ZNF346"	23567	"ENSG00000113761"
+"234299_s_at"	"NIN"	51199	"ENSG00000100503"
+"231375_at"	""	NA	"ENSG00000247679"
+"232398_at"	"CCDC150"	284992	"ENSG00000144395"
+"231352_at"	"SLC22A8"	9376	"ENSG00000149452"
+"232784_at"	""	NA	"ENSG00000200164"
+"234140_s_at"	"STIM2"	57620	"ENSG00000109689"
+"231625_at"	"SLC22A9"	114571	"ENSG00000149742"
+"232488_at"	"PHYKPL"	85007	"ENSG00000175309"
+"231355_at"	"CACNG8"	59283	"ENSG00000142408"
+"232053_x_at"	"RHBDD2"	57414	"ENSG00000005486"
+"235458_at"	"HAVCR2"	84868	"ENSG00000135077"
+"233982_x_at"	"STYXL1"	51657	"ENSG00000127952"
+"232353_s_at"	"STYXL1"	51657	"ENSG00000127952"
+"232075_at"	"SKIC8"	80349	"ENSG00000140395"
+"234066_at"	"IL1RL1"	9173	"ENSG00000115602"
+"231524_at"	"KCNAB1"	7881	"ENSG00000169282"
+"230723_at"	"SPATA18"	132671	"ENSG00000163071"
+"235181_at"	"TYW5"	129450	"ENSG00000162971"
+"231262_at"	"ZBTB16"	7704	"ENSG00000109906"
+"234247_at"	""	107984203	"ENSG00000287277"
+"235428_at"	"MINCR"	100507316	"ENSG00000253716"
+"232162_at"	"ZNF696"	79943	"ENSG00000185730"
+"233324_at"	"TRERF1"	55809	"ENSG00000124496"
+"235399_at"	"ERCC2"	2068	"ENSG00000104884"
+"233264_at"	"RAB33B-AS1"	NA	"ENSG00000273247"
+"232386_at"	"VPS13C"	54832	"ENSG00000129003"
+"235023_at"	"VPS13C"	54832	"ENSG00000129003"
+"233169_at"	"ZNF350"	59348	"ENSG00000256683"
+"232073_at"	"PPFIA2"	8499	"ENSG00000139220"
+"234982_at"	"UBR3"	130507	"ENSG00000144357"
+"235478_at"	"DCLRE1C"	64421	"ENSG00000152457"
+"231408_at"	"TMEM92"	162461	"ENSG00000167105"
+"235245_at"	"TMEM92"	162461	"ENSG00000167105"
+"231077_at"	"CFAP126"	257177	"ENSG00000188931"
+"234144_at"	""	NA	"ENSG00000289314"
+"234464_s_at"	"EME1"	146956	"ENSG00000154920"
+"234465_at"	"EME1"	146956	"ENSG00000154920"
+"234812_at"	"LRRC59"	55379	"ENSG00000108829"
+"231808_at"	"OIP5-AS1"	729082	"ENSG00000247556"
+"232227_at"	""	NA	"ENSG00000228401"
+"233575_s_at"	"TLE4"	7091	"ENSG00000106829"
+"232585_at"	""	NA	"ENSG00000264546"
+"231120_x_at"	"PKIB"	5570	"ENSG00000135549"
+"234777_at"	"OR51M1"	390059	"ENSG00000184698"
+"231263_at"	"ARMC12"	221481	"ENSG00000157343"
+"234521_at"	"OR51I2"	390064	"ENSG00000187918"
+"231469_at"	"NTRK3-AS1"	283738	"ENSG00000260305"
+"230930_at"	"ITGB1"	3688	"ENSG00000150093"
+"230943_at"	"SOX17"	64321	"ENSG00000164736"
+"231961_at"	"RBPMS"	11030	"ENSG00000157110"
+"231264_at"	"TMCO2"	127391	"ENSG00000188800"
+"235331_x_at"	"PCGF5"	84333	"ENSG00000180628"
+"231009_at"	"PLA2G12B"	84647	"ENSG00000138308"
+"235239_at"	"QSOX2"	169714	"ENSG00000165661"
+"231986_at"	"RIMS1"	22999	"ENSG00000079841"
+"235253_at"	"RAD1"	5810	"ENSG00000113456"
+"231334_at"	"MAPK8IP3-AS1"	101929480	"ENSG00000261399"
+"231772_x_at"	"CENPH"	64946	"ENSG00000153044"
+"231740_at"	"KCNJ11"	3767	"ENSG00000187486"
+"232936_at"	"KCNA7"	3743	"ENSG00000104848"
+"232946_s_at"	"NADSYN1"	55191	"ENSG00000172890"
+"235009_at"	"BOD1L1"	259282	"ENSG00000038219"
+"230647_at"	"TMEM53"	79639	"ENSG00000126106"
+"230524_at"	"MPI"	4351	"ENSG00000178802"
+"231153_at"	"C16orf86"	388284	"ENSG00000159761"
+"235109_at"	"ZBED3"	84327	"ENSG00000132846"
+"232446_at"	"TENM3-AS1"	NA	"ENSG00000177822"
+"230806_s_at"	"RIPOR1"	79567	"ENSG00000039523"
+"233325_at"	"SLC35D2"	11046	"ENSG00000130958"
+"231437_at"	"SLC35D2"	11046	"ENSG00000130958"
+"235365_at"	"PJVK"	494513	"ENSG00000204311"
+"230781_at"	"LINC01088"	NA	"ENSG00000249307"
+"235115_at"	"PDE8B"	8622	"ENSG00000113231"
+"233919_s_at"	"HABP4"	22927	"ENSG00000130956"
+"232341_x_at"	"HABP4"	22927	"ENSG00000130956"
+"230887_at"	"CDC14B"	8555	"ENSG00000081377"
+"235447_at"	"TRUB1"	142940	"ENSG00000165832"
+"234782_at"	"KLHL31"	401265	"ENSG00000124743"
+"232217_at"	"CALHM5"	254228	"ENSG00000178033"
+"231618_s_at"	"SUN3"	256979	"ENSG00000164744"
+"234939_s_at"	"PHF12"	57649	"ENSG00000109118"
+"231815_at"	"PHF12"	57649	"ENSG00000109118"
+"234294_x_at"	"GATAD2A"	54815	"ENSG00000167491"
+"230991_at"	"LINC03026"	102724156	"ENSG00000287750"
+"233071_at"	"RSPH4A"	345895	"ENSG00000111834"
+"235414_at"	"ZNF383"	163087	"ENSG00000188283"
+"235086_at"	"THBS1"	7057	"ENSG00000137801"
+"231796_at"	"EPHA8"	2046	"ENSG00000070886"
+"232329_at"	"RANBP10"	57610	"ENSG00000141084"
+"234611_at"	"LGALS8-AS1"	100287902	"ENSG00000223776"
+"232414_at"	"HEATR1"	55127	"ENSG00000119285"
+"235318_at"	"FBN1"	2200	"ENSG00000166147"
+"233405_at"	"FIP1L1"	81608	"ENSG00000145216"
+"231488_at"	"OTP"	23440	"ENSG00000171540"
+"235395_at"	"SEC63"	11231	"ENSG00000025796"
+"233461_x_at"	"ZNF226"	7769	"ENSG00000167380"
+"231717_s_at"	"ZNF226"	7769	"ENSG00000167380"
+"232142_at"	"ISY1"	57461	"ENSG00000240682"
+"232986_at"	"ZNF233"	353355	"ENSG00000159915"
+"230919_at"	"ZNF233"	353355	"ENSG00000159915"
+"233541_at"	"LIMD1-AS1"	NA	"ENSG00000230530"
+"233955_x_at"	"CXXC5"	51523	"ENSG00000171604"
+"234316_x_at"	"KLK12"	43849	"ENSG00000186474"
+"233586_s_at"	"KLK12"	43849	"ENSG00000186474"
+"231114_at"	"SPATA22"	84690	"ENSG00000141255"
+"235340_at"	"GANC"	2595	"ENSG00000214013"
+"233591_at"	"LINC02555"	NA	"ENSG00000260943"
+"233485_at"	""	NA	"ENSG00000273264"
+"232389_at"	"WIPF3"	644150	"ENSG00000122574"
+"230948_at"	""	NA	"ENSG00000269973"
+"231954_at"	"MIR4453HG"	54553	"ENSG00000268471"
+"231162_at"	"CLDND2"	125875	"ENSG00000160318"
+"233022_at"	"TRPM3"	80036	"ENSG00000083067"
+"230692_at"	"XKR4"	114786	"ENSG00000206579"
+"232153_at"	"SPEG"	10290	"ENSG00000072195"
+"235120_at"	"SEC22C"	9117	"ENSG00000093183"
+"232263_at"	"SLC6A15"	55117	"ENSG00000072041"
+"232780_s_at"	"ZNF691"	51058	"ENSG00000164011"
+"233899_x_at"	"ZBTB10"	65986	"ENSG00000205189"
+"235466_s_at"	"DISP1"	84976	"ENSG00000154309"
+"231784_s_at"	"DCAF13"	25879	"ENSG00000164934"
+"234967_at"	"IL6ST"	3572	"ENSG00000134352"
+"231501_at"	"LINC03024"	NA	"ENSG00000289906"
+"232494_at"	"CYP8B1"	1582	"ENSG00000180432"
+"234338_s_at"	"ZBTB47"	92999	"ENSG00000114853"
+"231525_at"	"IQCF5"	389124	"ENSG00000214681"
+"231828_at"	"CUTALP"	253039	"ENSG00000226752"
+"232666_at"	"OAS3"	4940	"ENSG00000111331"
+"230715_at"	"ZNF518B"	85460	"ENSG00000178163"
+"230531_at"	"KCNC3"	3748	"ENSG00000131398"
+"235032_at"	"DNAJC21"	134218	"ENSG00000168724"
+"230893_at"	"DNAJC21"	134218	"ENSG00000168724"
+"234094_x_at"	"DNAJC21"	134218	"ENSG00000168724"
+"235001_at"	"DNAJC21"	134218	"ENSG00000168724"
+"233245_at"	"BLTP3A"	54887	"ENSG00000065060"
+"233304_at"	"NFIB"	4781	"ENSG00000147862"
+"232739_at"	"SPIB"	6689	"ENSG00000269404"
+"231922_at"	"ZNF276"	92822	"ENSG00000158805"
+"232102_at"	"METTL6"	131965	"ENSG00000206562"
+"235379_at"	""	NA	"ENSG00000268518"
+"232866_at"	"ZSCAN18"	65982	"ENSG00000121413"
+"232676_x_at"	"MYEF2"	50804	"ENSG00000104177"
+"230981_at"	"CATSPER3"	347732	"ENSG00000152705"
+"233525_s_at"	""	NA	"ENSG00000290644"
+"233524_at"	""	NA	"ENSG00000290644"
+"231372_at"	"SLC25A48"	153328	"ENSG00000145832"
+"232649_at"	"GLDN"	342035	"ENSG00000186417"
+"233978_at"	"PTPRE"	5791	"ENSG00000132334"
+"232532_at"	"QRICH2"	84074	"ENSG00000129646"
+"235198_at"	"OSTM1"	28962	"ENSG00000081087"
+"235197_s_at"	"OSTM1"	28962	"ENSG00000081087"
+"235488_at"	"RASL10B"	91608	"ENSG00000270885"
+"232502_at"	"ENTPD1-AS1"	728558	"ENSG00000226688"
+"230589_at"	""	NA	"ENSG00000255389"
+"233486_at"	""	101928881	"ENSG00000222001"
+"231580_at"	"LINC01082"	100506542	"ENSG00000269186"
+"234408_at"	"IL17F"	112744	"ENSG00000112116"
+"232657_at"	"GPR107"	57720	"ENSG00000148358"
+"234976_x_at"	"MTHFD2"	10797	"ENSG00000065911"
+"234361_at"	"CREB3L3"	84699	"ENSG00000060566"
+"234409_at"	"ZNF354C"	30832	"ENSG00000177932"
+"233764_s_at"	"LARP1B"	55132	"ENSG00000138709"
+"231824_at"	"LARP1B"	55132	"ENSG00000138709"
+"233179_x_at"	"SIRT6"	51548	"ENSG00000077463"
+"232033_at"	"USP37"	57695	"ENSG00000135913"
+"233006_at"	"SEPTIN4"	5414	"ENSG00000108387"
+"232482_at"	"OR51E2"	81285	"ENSG00000167332"
+"233568_x_at"	"CWF19L1"	55280	"ENSG00000095485"
+"231072_at"	"MIDN"	90007	"ENSG00000167470"
+"230622_at"	"AFDN"	4301	"ENSG00000130396"
+"234627_at"	"NSMCE1-DT"	400512	"ENSG00000245888"
+"232230_at"	"OLMALINC"	90271	"ENSG00000235823"
+"233098_s_at"	"EPB41L4B"	54566	"ENSG00000095203"
+"233481_at"	"CASC15"	NA	"ENSG00000272168"
+"235440_at"	"SPTY2D1"	144108	"ENSG00000179119"
+"231639_at"	"FAM53B-AS1"	NA	"ENSG00000233334"
+"230610_at"	"GPSM2"	29899	"ENSG00000121957"
+"233058_at"	"GPSM2"	29899	"ENSG00000121957"
+"231516_at"	""	NA	"ENSG00000228201"
+"230979_at"	"BMPR1A"	657	"ENSG00000107779"
+"232697_at"	"LRFN2"	57497	"ENSG00000156564"
+"231161_x_at"	"TRIM8"	81603	"ENSG00000171206"
+"233763_at"	"LYRM2"	57226	"ENSG00000083099"
+"231806_s_at"	"STK36"	27148	"ENSG00000163482"
+"234005_x_at"	"STK36"	27148	"ENSG00000163482"
+"234854_at"	"MDN1"	23195	"ENSG00000112159"
+"233049_x_at"	"STUB1"	10273	"ENSG00000103266"
+"232492_at"	"BVES-AS1"	154442	"ENSG00000203808"
+"233314_at"	"PTEN"	5728	"ENSG00000171862"
+"230924_at"	"TTLL6"	284076	"ENSG00000170703"
+"231311_at"	"SPTBN2"	6712	"ENSG00000173898"
+"234234_at"	"SCIRT"	101929705	"ENSG00000237686"
+"232270_at"	"AOPEP"	84909	"ENSG00000148120"
+"232975_at"	"HCG18"	414777	"ENSG00000231074"
+"232959_at"	""	NA	"ENSG00000291203"
+"230608_at"	"TSACC"	128229	"ENSG00000163467"
+"231854_at"	"PIK3CA"	5290	"ENSG00000121879"
+"234706_x_at"	"CFTR-AS1"	111082987	"ENSG00000232661"
+"232136_s_at"	"CTTNBP2"	83992	"ENSG00000077063"
+"231406_at"	"ORAI2"	80228	"ENSG00000160991"
+"235459_at"	"RNF41"	10193	"ENSG00000181852"
+"232335_at"	"GMDS-DT"	NA	"ENSG00000250903"
+"233062_at"	"GMDS-DT"	NA	"ENSG00000250903"
+"233063_s_at"	"GMDS-DT"	NA	"ENSG00000250903"
+"231466_at"	"GARIN1B"	84691	"ENSG00000135248"
+"231667_at"	"SLC39A5"	283375	"ENSG00000139540"
+"233995_at"	"SKIC3"	9652	"ENSG00000198677"
+"231166_at"	"GPR155"	151556	"ENSG00000163328"
+"233885_at"	"ARHGAP33"	115703	"ENSG00000004777"
+"232005_at"	"DNAH1"	25981	"ENSG00000114841"
+"233124_s_at"	"ECHDC1"	55862	"ENSG00000093144"
+"232147_at"	"SLX4"	84464	"ENSG00000188827"
+"230854_at"	"BCAR4"	400500	"ENSG00000262117"
+"235381_at"	"RSF1"	51773	"ENSG00000048649"
+"230550_at"	"MS4A6A"	64231	"ENSG00000110077"
+"232725_s_at"	"MS4A6A"	64231	"ENSG00000110077"
+"232724_at"	"MS4A6A"	64231	"ENSG00000110077"
+"232317_at"	"PLXNA4"	91584	"ENSG00000221866"
+"234859_at"	"PLXNA4"	91584	"ENSG00000221866"
+"234975_at"	"GSPT1"	2935	"ENSG00000103342"
+"230882_at"	"DLX6-AS1"	NA	"ENSG00000231764"
+"231044_at"	"CFAP276"	127003	"ENSG00000179902"
+"235354_s_at"	"RSRC1"	51319	"ENSG00000174891"
+"230938_x_at"	"ATF5"	22809	"ENSG00000169136"
+"231021_at"	"SLC6A19"	340024	"ENSG00000174358"
+"231480_at"	"SLC6A19"	340024	"ENSG00000174358"
+"231232_at"	"ADCY6-DT"	100506125	"ENSG00000257660"
+"234766_at"	"OR8D2"	283160	"ENSG00000279116"
+"235432_at"	"NPHP3"	27031	"ENSG00000113971"
+"235410_at"	"NPHP3"	27031	"ENSG00000113971"
+"234626_at"	"OR51I1"	390063	"ENSG00000167359"
+"234486_at"	"OR51B2"	79345	"ENSG00000279012"
+"231297_at"	"DOT1L"	84444	"ENSG00000104885"
+"230871_at"	"DHX30"	22907	"ENSG00000132153"
+"233191_at"	"RUFY2"	55680	"ENSG00000204130"
+"233192_s_at"	"RUFY2"	55680	"ENSG00000204130"
+"235345_at"	"RUFY2"	55680	"ENSG00000204130"
+"232027_at"	"SYNE1"	23345	"ENSG00000131018"
+"234284_at"	"GNG8"	94235	"ENSG00000167414"
+"232650_at"	"MTRFR"	91574	"ENSG00000130921"
+"232603_at"	"DCDC1"	341019	"ENSG00000170959"
+"233743_x_at"	"S1PR5"	53637	"ENSG00000180739"
+"235467_s_at"	"KCNC4"	3749	"ENSG00000116396"
+"231810_at"	"BRI3BP"	140707	"ENSG00000184992"
+"235335_at"	"ABCA9"	10350	"ENSG00000154258"
+"233959_at"	"ADCY10P1"	NA	"ENSG00000161912"
+"234237_s_at"	"AMBRA1"	55626	"ENSG00000110497"
+"234236_at"	"AMBRA1"	55626	"ENSG00000110497"
+"233475_at"	""	153163	"ENSG00000250328"
+"231997_at"	"TBCEL"	219899	"ENSG00000154114"
+"235291_s_at"	""	NA	"ENSG00000287263"
+"235292_at"	""	NA	"ENSG00000287263"
+"232645_at"	"ANXA2R-AS1"	153684	"ENSG00000215068"
+"230517_at"	""	728743	"ENSG00000284691"
+"231626_at"	"TPH1"	7166	"ENSG00000129167"
+"231335_at"	"MS4A6E"	245802	"ENSG00000166926"
+"232239_at"	"LINC00865"	643529	"ENSG00000232229"
+"233522_at"	"MEF2C-AS1"	101929423	"ENSG00000248309"
+"232042_at"	"TTYH2"	94015	"ENSG00000141540"
+"234687_x_at"	"LIMD1"	8994	"ENSG00000144791"
+"235481_at"	""	NA	"ENSG00000271918"
+"230672_at"	"ANKHD1-DT"	NA	"ENSG00000249637"
+"231046_at"	"LINC01023"	NA	"ENSG00000272523"
+"234027_at"	"ITPRID1"	223075	"ENSG00000180347"
+"231653_at"	"ITPRID1"	223075	"ENSG00000180347"
+"230685_at"	"SLC12A2-DT"	644873	"ENSG00000245937"
+"232832_at"	""	93429	"ENSG00000268460"
+"233186_s_at"	"BANP"	54971	"ENSG00000172530"
+"235406_x_at"	"TMEM161B-DT"	100505894	"ENSG00000247828"
+"232098_at"	"DST"	667	"ENSG00000151914"
+"235468_at"	"RBFOX3"	146713	"ENSG00000167281"
+"231781_s_at"	"LRRC2"	79442	"ENSG00000163827"
+"235286_at"	""	NA	"ENSG00000289353"
+"230761_at"	"USP7"	7874	"ENSG00000187555"
+"232154_at"	"ADM5"	199800	"ENSG00000224420"
+"231148_at"	"IGFL2"	147920	"ENSG00000204866"
+"230642_at"	"LINC03064"	105371264	"ENSG00000260963"
+"231599_x_at"	"DPF1"	8193	"ENSG00000011332"
+"230548_at"	""	NA	"ENSG00000276075"
+"230591_at"	"MBTPS1-DT"	NA	"ENSG00000260018"
+"234379_at"	"FLT4"	2324	"ENSG00000037280"
+"234280_at"	"REG3A"	5068	"ENSG00000172016"
+"231221_at"	"CLEC16A"	23274	"ENSG00000038532"
+"231885_at"	"ZNF451"	26036	"ENSG00000112200"
+"232029_at"	"ZNF451"	26036	"ENSG00000112200"
+"231593_at"	""	105371508	"ENSG00000262231"
+"233915_at"	"KIAA0825"	285600	"ENSG00000185261"
+"231994_at"	"CHDH"	55349	"ENSG00000016391"
+"232262_at"	"PIGL"	9487	"ENSG00000108474"
+"232019_at"	"ZKSCAN2"	342357	"ENSG00000155592"
+"231455_at"	"LINC00487"	400941	"ENSG00000205837"
+"232876_at"	"MAPK14"	1432	"ENSG00000112062"
+"233895_at"	"ANKRD24"	170961	"ENSG00000089847"
+"231403_at"	"TRIO"	7204	"ENSG00000038382"
+"231496_at"	"FCAMR"	83953	"ENSG00000162897"
+"233781_s_at"	"RIF1"	55183	"ENSG00000080345"
+"233780_at"	"RIF1"	55183	"ENSG00000080345"
+"230756_at"	"ZNF683"	257101	"ENSG00000176083"
+"232521_at"	"PCSK7"	9159	"ENSG00000160613"
+"234702_x_at"	"CFTR"	1080	"ENSG00000001626"
+"230995_at"	"CMBL"	134147	"ENSG00000164237"
+"230716_at"	"SMLR1"	100507203	"ENSG00000256162"
+"231746_at"	"MIXL1"	83881	"ENSG00000185155"
+"234297_at"	""	NA	"ENSG00000291055"
+"233353_at"	"FER1L5"	90342	"ENSG00000249715"
+"233515_at"	"KRR1"	11103	"ENSG00000111615"
+"231793_s_at"	"CAMK2D"	817	"ENSG00000145349"
+"230748_at"	"SLC16A6"	9120	"ENSG00000108932"
+"232228_at"	"ZNF530"	348327	"ENSG00000183647"
+"235397_at"	"LINC00174"	285908	"ENSG00000179406"
+"231983_at"	"IBA57"	200205	"ENSG00000181873"
+"232266_x_at"	"CDK13"	8621	"ENSG00000065883"
+"235070_at"	"RBFOX1"	54715	"ENSG00000078328"
+"233795_at"	"ODF3"	113746	"ENSG00000177947"
+"232604_at"	"ZNF541"	84215	"ENSG00000118156"
+"231420_at"	"GGN"	199720	"ENSG00000179168"
+"233693_at"	"STPG1"	90529	"ENSG00000001460"
+"232313_at"	"TMEM132C"	92293	"ENSG00000181234"
+"231600_at"	"CLEC12B"	387837	"ENSG00000256660"
+"231357_at"	"CLEC12B"	387837	"ENSG00000256660"
+"233732_at"	"GARS1-DT"	NA	"ENSG00000196295"
+"231019_x_at"	"CBARP"	255057	"ENSG00000099625"
+"231402_at"	"FAM131B-AS2"	NA	"ENSG00000232533"
+"235407_at"	""	NA	"ENSG00000226824"
+"231782_s_at"	"KLK4"	9622	"ENSG00000167749"
+"233854_x_at"	"KLK4"	9622	"ENSG00000167749"
+"233142_at"	"LINC01224"	104472717	"ENSG00000269416"
+"235299_at"	"SLC41A2"	84102	"ENSG00000136052"
+"232089_at"	"ZNF263"	10127	"ENSG00000006194"
+"231410_at"	""	NA	"ENSG00000250377"
+"230721_at"	"MOSMO"	730094	"ENSG00000185716"
+"232184_at"	"ALS2"	57679	"ENSG00000003393"
+"231935_at"	"ARPP21"	10777	"ENSG00000172995"
+"230921_s_at"	"MAP3K12"	7786	"ENSG00000139625"
+"231996_at"	"N4BP2"	55728	"ENSG00000078177"
+"233310_at"	"SSTR2"	6752	"ENSG00000180616"
+"231813_s_at"	"COG1"	9382	"ENSG00000166685"
+"235160_at"	"ATF7"	11016	"ENSG00000170653"
+"232732_at"	""	100652999	"ENSG00000257550"
+"231768_at"	"USF1"	7391	"ENSG00000158773"
+"230559_x_at"	"FGD4"	121512	"ENSG00000139132"
+"235201_at"	"FOXP2"	93986	"ENSG00000128573"
+"235384_at"	"NUDT19"	390916	"ENSG00000213965"
+"231761_at"	"FFAR1"	2864	"ENSG00000126266"
+"230754_at"	"ZBTB38"	253461	"ENSG00000177311"
+"235470_at"	"LSM8"	51691	"ENSG00000128534"
+"231834_at"	""	NA	"ENSG00000283128"
+"235227_at"	"STXBP5"	134957	"ENSG00000164506"
+"233720_at"	"SORBS2"	8470	"ENSG00000154556"
+"233368_s_at"	"DNAJC27"	51277	"ENSG00000115137"
+"232038_at"	"TBC1D32"	221322	"ENSG00000146350"
+"232107_at"	""	NA	"ENSG00000288670"
+"230619_at"	"ARNT"	405	"ENSG00000143437"
+"235046_at"	"INPP4B"	8821	"ENSG00000109452"
+"233782_at"	"DCAF7"	10238	"ENSG00000136485"
+"233477_at"	"KLK15"	55554	"ENSG00000174562"
+"234495_at"	"KLK15"	55554	"ENSG00000174562"
+"232510_s_at"	"DPP3"	10072	"ENSG00000254986"
+"232737_s_at"	"ENPP3"	5169	"ENSG00000154269"
+"231951_at"	"GNAO1"	2775	"ENSG00000087258"
+"230696_at"	"ATP2A1-AS1"	100289092	"ENSG00000260442"
+"232545_at"	"FBXL9P"	26231	"ENSG00000125122"
+"232815_at"	"FBXO3"	26273	"ENSG00000110429"
+"231963_at"	"ANKRD33B"	651746	"ENSG00000164236"
+"234936_s_at"	"CC2D2A"	57545	"ENSG00000048342"
+"233052_at"	"DNAH8"	1769	"ENSG00000124721"
+"233085_s_at"	"NABP1"	64859	"ENSG00000173559"
+"235040_at"	"RUNDC1"	146923	"ENSG00000198863"
+"234682_at"	"BTBD9"	114781	"ENSG00000183826"
+"235248_at"	"BTBD9"	114781	"ENSG00000183826"
+"231825_x_at"	"ATF7IP"	55729	"ENSG00000171681"
+"235104_at"	"ERAP2"	64167	"ENSG00000164308"
+"231319_x_at"	"KIF9"	64147	"ENSG00000088727"
+"231799_at"	"TANC2"	26115	"ENSG00000170921"
+"231866_at"	"LNPEP"	4012	"ENSG00000113441"
+"232066_x_at"	"CTBP1-DT"	NA	"ENSG00000196810"
+"234661_at"	"CCDC57"	284001	"ENSG00000176155"
+"230865_at"	"LIX1"	167410	"ENSG00000145721"
+"230670_at"	"IGSF10"	285313	"ENSG00000152580"
+"231974_at"	"KMT2D"	8085	"ENSG00000167548"
+"233712_at"	"ZNF44"	51710	"ENSG00000197857"
+"232096_x_at"	"FOXP1-IT1"	NA	"ENSG00000242094"
+"233657_at"	"OPN5"	221391	"ENSG00000124818"
+"231189_at"	"THADA"	63892	"ENSG00000115970"
+"232139_s_at"	"MFSD4B"	91749	"ENSG00000173214"
+"232772_at"	"MFSD4B"	91749	"ENSG00000173214"
+"233471_at"	"PTPN5"	84867	"ENSG00000110786"
+"235444_at"	"FOXP1"	27086	"ENSG00000114861"
+"233517_s_at"	"HIF3A"	64344	"ENSG00000124440"
+"231720_s_at"	"JAM3"	83700	"ENSG00000166086"
+"231721_at"	"JAM3"	83700	"ENSG00000166086"
+"232204_at"	"EBF1"	1879	"ENSG00000164330"
+"231916_at"	"NOS1"	4842	"ENSG00000089250"
+"230853_at"	"FEM1A"	55527	"ENSG00000141965"
+"234721_s_at"	"CYP26B1"	56603	"ENSG00000003137"
+"230840_at"	"SMIM1"	388588	"ENSG00000235169"
+"235423_at"	"ORC2"	4999	"ENSG00000115942"
+"235233_s_at"	"GMEB1"	10691	"ENSG00000162419"
+"230613_at"	"GMEB1"	10691	"ENSG00000162419"
+"235232_at"	"GMEB1"	10691	"ENSG00000162419"
+"231254_at"	""	NA	"ENSG00000286705"
+"234127_at"	"DAB1"	1600	"ENSG00000173406"
+"233462_at"	"TBC1D28"	254272	"ENSG00000189375"
+"231751_at"	"ABCG8"	64241	"ENSG00000143921"
+"235217_at"	"LINC01004"	NA	"ENSG00000228393"
+"231314_at"	"MRPS22"	56945	"ENSG00000175110"
+"231565_at"	"CFAP299"	255119	"ENSG00000197826"
+"232409_x_at"	"FBXL16"	146330	"ENSG00000127585"
+"231179_at"	"IP6K3"	117283	"ENSG00000161896"
+"231651_at"	"EFCAB13"	124989	"ENSG00000178852"
+"231336_at"	"CPNE4"	131034	"ENSG00000196353"
+"235280_at"	"POLR1A"	25885	"ENSG00000068654"
+"231678_s_at"	"ADH4"	127	"ENSG00000198099"
+"231266_at"	"LYPD4"	147719	"ENSG00000273111"
+"235259_at"	"PACRGL"	133015	"ENSG00000163138"
+"235260_s_at"	"PACRGL"	133015	"ENSG00000163138"
+"231987_at"	"CARMN"	NA	"ENSG00000249669"
+"231845_at"	"AARS2"	57505	"ENSG00000124608"
+"235135_at"	"TAF10"	6881	"ENSG00000166337"
+"231921_at"	"DCAF17"	80067	"ENSG00000115827"
+"233490_at"	"DCTN4"	51164	"ENSG00000132912"
+"235361_at"	"STAMBP"	10617	"ENSG00000124356"
+"233134_at"	"RPH3AL"	9501	"ENSG00000181031"
+"233110_s_at"	"BCL2L12"	83596	"ENSG00000126453"
+"231742_at"	"CRX"	1406	"ENSG00000105392"
+"232152_at"	"CEP57L1"	285753	"ENSG00000183137"
+"233914_s_at"	"SBF2"	81846	"ENSG00000133812"
+"232617_at"	"CTSS"	1520	"ENSG00000163131"
+"232861_at"	"PDP2"	57546	"ENSG00000172840"
+"235039_x_at"	"LIN9"	286826	"ENSG00000183814"
+"232100_at"	"RNF217"	154214	"ENSG00000146373"
+"230956_at"	"COLCA1"	399948	"ENSG00000196167"
+"231577_s_at"	"GBP1"	2633	"ENSG00000117228"
+"232869_at"	"SRGAP3"	9901	"ENSG00000196220"
+"231906_at"	"HOXD8"	3234	"ENSG00000175879"
+"230965_at"	"USP2"	9099	"ENSG00000036672"
+"235175_at"	"GBP4"	115361	"ENSG00000162654"
+"233992_x_at"	"ZNF445"	353274	"ENSG00000185219"
+"231235_at"	"NKTR"	4820	"ENSG00000114857"
+"230669_at"	"RASA2"	5922	"ENSG00000155903"
+"231246_at"	"CHST10"	9486	"ENSG00000115526"
+"235041_at"	"GOSR2"	9570	"ENSG00000108433"
+"232530_at"	"PLD1"	5337	"ENSG00000075651"
+"230923_at"	"TAFA1"	407738	"ENSG00000183662"
+"233135_at"	"LINC01007"	100506527	"ENSG00000233123"
+"234678_at"	"KRTAP4-3"	85290	"ENSG00000196156"
+"234635_at"	"KRTAP4-1"	85285	"ENSG00000198443"
+"235297_at"	"CELF1"	10658	"ENSG00000149187"
+"233573_s_at"	"WDR6"	11180	"ENSG00000178252"
+"234444_at"	""	NA	"ENSG00000280425"
+"232015_at"	"GAREM2"	150946	"ENSG00000157833"
+"235386_at"	""	NA	"ENSG00000251615"
+"231855_at"	"CIP2A"	57650	"ENSG00000163507"
+"232969_at"	"CARD8"	22900	"ENSG00000105483"
+"231371_at"	"TDRD10"	126668	"ENSG00000163239"
+"231816_s_at"	"UBE2Q1"	55585	"ENSG00000160714"
+"234393_at"	"HDAC9"	9734	"ENSG00000048052"
+"230968_at"	"HDAC9"	9734	"ENSG00000048052"
+"231404_at"	"MISFA"	100506540	"ENSG00000247595"
+"230969_at"	"TEX38"	374973	"ENSG00000186118"
+"235163_at"	"MOB3A"	126308	"ENSG00000172081"
+"233320_at"	"TCAM1P"	146771	"ENSG00000240280"
+"235372_at"	"FCRLA"	84824	"ENSG00000132185"
+"235401_s_at"	"FCRLA"	84824	"ENSG00000132185"
+"235400_at"	"FCRLA"	84824	"ENSG00000132185"
+"230901_x_at"	"PCSK4"	54760	"ENSG00000115257"
+"232114_at"	"MED12L"	116931	"ENSG00000144893"
+"231243_s_at"	"BHLHE41"	79365	"ENSG00000123095"
+"231242_at"	"BHLHE41"	79365	"ENSG00000123095"
+"231927_at"	"ATF6"	22926	"ENSG00000118217"
+"233500_x_at"	"CLEC2D"	29121	"ENSG00000069493"
+"235047_x_at"	"NACC1"	112939	"ENSG00000160877"
+"233363_at"	""	124902709	"ENSG00000215841"
+"232709_at"	"SP3"	6670	"ENSG00000172845"
+"232914_s_at"	"SYTL2"	54843	"ENSG00000137501"
+"231929_at"	"IKZF2"	22807	"ENSG00000030419"
+"230526_at"	"TMC6"	11322	"ENSG00000141524"
+"231543_at"	"PLEKHA8"	84725	"ENSG00000106086"
+"232212_at"	"PLEKHA8"	84725	"ENSG00000106086"
+"233943_x_at"	"PLEKHA8"	84725	"ENSG00000106086"
+"232238_at"	"ASPM"	259266	"ENSG00000066279"
+"235375_x_at"	"TTC9B"	148014	"ENSG00000174521"
+"235078_at"	"NBEAL1"	65065	"ENSG00000144426"
+"233144_s_at"	"RASAL1"	8437	"ENSG00000111344"
+"231560_at"	""	NA	"ENSG00000270096"
+"232533_at"	"METTL8"	79828	"ENSG00000123600"
+"235011_at"	"MAP3K2"	10746	"ENSG00000169967"
+"235254_at"	"MAP3K2"	10746	"ENSG00000169967"
+"233350_s_at"	"TEX264"	51368	"ENSG00000164081"
+"234999_at"	"C19orf47"	126526	"ENSG00000160392"
+"230867_at"	"COL6A6"	131873	"ENSG00000206384"
+"231874_at"	"HYCC2"	285172	"ENSG00000155744"
+"232124_at"	"GASK1A"	729085	"ENSG00000144649"
+"235322_at"	"LINC02987"	101927151	"ENSG00000267575"
+"235267_at"	"MAGI2-AS3"	100505881	"ENSG00000234456"
+"233149_at"	""	NA	"ENSG00000243024"
+"235161_at"	"RASSF8-AS1"	NA	"ENSG00000246695"
+"235373_at"	"GPRC5D-AS1"	100506314	"ENSG00000247498"
+"235191_at"	"LINC00662"	148189	"ENSG00000261824"
+"232281_at"	"LINC00662"	148189	"ENSG00000261824"
+"234781_at"	"OR1R1P"	9596	"ENSG00000180042"
+"231895_at"	"SASS6"	163786	"ENSG00000156876"
+"231919_at"	"DBT"	1629	"ENSG00000137992"
+"235220_at"	"YIPF4"	84272	"ENSG00000119820"
+"233467_s_at"	"TSPAN32"	10077	"ENSG00000064201"
+"230849_at"	"KCNA1"	3736	"ENSG00000111262"
+"233217_at"	""	NA	"ENSG00000267174"
+"233888_s_at"	"SRGAP1"	57522	"ENSG00000196935"
+"232137_at"	"ZNF616"	90317	"ENSG00000204611"
+"231798_at"	"NOG"	9241	"ENSG00000183691"
+"232289_at"	"KCNJ12"	3768	"ENSG00000184185"
+"232315_at"	"ZNF880"	400713	"ENSG00000221923"
+"230742_at"	"RBM5"	10181	"ENSG00000003756"
+"235244_at"	"MIX23"	131076	"ENSG00000160124"
+"230973_at"	"SH2D5"	400745	"ENSG00000189410"
+"232462_s_at"	"A1BG-AS1"	503538	"ENSG00000268895"
+"230857_s_at"	"ZNF497"	162968	"ENSG00000174586"
+"234948_at"	"SLC27A5"	10998	"ENSG00000083807"
+"231873_at"	"BMPR2"	659	"ENSG00000204217"
+"234955_at"	""	NA	"ENSG00000235713"
+"231687_at"	"ERICH3-AS1"	101927320	"ENSG00000234497"
+"232497_at"	"ZNF3"	7551	"ENSG00000166526"
+"231957_s_at"	"DPP9"	91039	"ENSG00000142002"
+"232859_s_at"	"MAGI1"	9223	"ENSG00000151276"
+"231849_at"	"KRT80"	144501	"ENSG00000167767"
+"232977_x_at"	"MYH14"	79784	"ENSG00000105357"
+"234290_x_at"	"MYH14"	79784	"ENSG00000105357"
+"233029_at"	"OBSCN"	84033	"ENSG00000154358"
+"233158_at"	"KRT82"	3888	"ENSG00000161850"
+"231461_at"	"KRT71"	112802	"ENSG00000139648"
+"231583_at"	"KRT74"	121391	"ENSG00000170484"
+"231299_at"	"AGAP3"	116988	"ENSG00000133612"
+"233150_at"	"GALNTL5"	168391	"ENSG00000106648"
+"230738_at"	""	NA	"ENSG00000264207"
+"231027_at"	""	NA	"ENSG00000264207"
+"234470_at"	"SSU72L6"	136157	"ENSG00000230268"
+"232240_at"	"DNHD1"	144132	"ENSG00000179532"
+"234068_s_at"	"AP2A1"	160	"ENSG00000196961"
+"233016_at"	""	NA	"ENSG00000229191"
+"231539_at"	"CFAP20DC"	200844	"ENSG00000163689"
+"235094_at"	"TPM4"	7171	"ENSG00000167460"
+"232250_at"	"CFAP92"	57501	"ENSG00000114656"
+"230698_at"	"CALN1"	83698	"ENSG00000183166"
+"232399_at"	"DCLK3"	85443	"ENSG00000163673"
+"233193_x_at"	"INTS4"	92105	"ENSG00000149262"
+"232985_s_at"	"DPPA4"	55211	"ENSG00000121570"
+"234652_at"	""	NA	"ENSG00000189229"
+"232686_at"	""	284367	"ENSG00000291114"
+"235427_at"	"CFLAR"	8837	"ENSG00000003402"
+"231837_at"	"USP28"	57646	"ENSG00000048028"
+"230623_x_at"	"USP28"	57646	"ENSG00000048028"
+"233748_x_at"	"PRKAG2"	51422	"ENSG00000106617"
+"234410_at"	"GABRR3"	200959	"ENSG00000183185"
+"235073_at"	"SCAMP4"	113178	"ENSG00000227500"
+"235150_at"	"SESN3"	143686	"ENSG00000149212"
+"232327_at"	"THSD7B"	80731	"ENSG00000144229"
+"235358_at"	""	728485	"ENSG00000267260"
+"232249_at"	"FMNL3"	91010	"ENSG00000161791"
+"230640_at"	"FMNL3"	91010	"ENSG00000161791"
+"233938_at"	"C11orf86"	254439	"ENSG00000173237"
+"235108_at"	"KCNK3"	3777	"ENSG00000171303"
+"231936_at"	"HOXC9"	3225	"ENSG00000180806"
+"235272_at"	"SBSN"	374897	"ENSG00000189001"
+"232667_at"	""	NA	"ENSG00000250899"
+"230839_at"	"PRMT8"	56341	"ENSG00000111218"
+"233966_at"	"NTNG1"	22854	"ENSG00000162631"
+"231735_s_at"	"TALAM1"	109136579	"ENSG00000289740"
+"233067_at"	"PRDM11"	56981	"ENSG00000019485"
+"233947_s_at"	"TBX5-AS1"	255480	"ENSG00000255399"
+"230579_at"	"TMEM263-DT"	NA	"ENSG00000260329"
+"230810_at"	"SNAP47"	116841	"ENSG00000143740"
+"232971_at"	"RBM15"	64783	"ENSG00000162775"
+"232586_x_at"	"XNDC1N"	100133315	"ENSG00000254469"
+"235014_at"	"ILF3-DT"	147727	"ENSG00000267100"
+"234775_at"	"OR51B5"	282763	"ENSG00000167355"
+"234989_at"	"NEAT1"	283131	"ENSG00000245532"
+"230629_s_at"	"EP400"	57634	"ENSG00000183495"
+"230628_at"	"EP400"	57634	"ENSG00000183495"
+"235042_at"	"XIRP1"	165904	"ENSG00000168334"
+"235383_at"	"MYO7B"	4648	"ENSG00000169994"
+"231002_s_at"	"RABEP1"	9135	"ENSG00000029725"
+"233157_x_at"	"ODAD1"	93233	"ENSG00000105479"
+"235134_at"	"EMSY-DT"	124902718	"ENSG00000255135"
+"230999_at"	"GSEC"	NA	"ENSG00000280832"
+"230611_at"	"SYPL2"	284612	"ENSG00000143028"
+"232391_at"	"ZNF461"	92283	"ENSG00000197808"
+"232563_at"	"ZNF684"	127396	"ENSG00000117010"
+"232133_at"	"ADAMTS10"	81794	"ENSG00000142303"
+"233848_x_at"	"ZNF221"	7638	"ENSG00000159905"
+"235151_at"	""	NA	"ENSG00000261799"
+"231453_at"	"CFAP97D1"	284067	"ENSG00000231256"
+"232206_at"	"ULK4"	54986	"ENSG00000168038"
+"231149_s_at"	"ULK4"	54986	"ENSG00000168038"
+"231857_s_at"	"AGBL5"	60509	"ENSG00000084693"
+"233066_at"	""	NA	"ENSG00000278879"
+"235474_at"	"NEU3"	10825	"ENSG00000162139"
+"231306_at"	"LYZL4"	131375	"ENSG00000157093"
+"233184_at"	"EPHA6"	285220	"ENSG00000080224"
+"232093_at"	"SPACA6"	147650	"ENSG00000182310"
+"233527_at"	"ESAM-AS1"	101929340	"ENSG00000250073"
+"234223_at"	"RN7SL301P"	NA	"ENSG00000276014"
+"233669_s_at"	"TRIM54"	57159	"ENSG00000138100"
+"232611_at"	"GOLGA2P5"	55592	"ENSG00000290571"
+"233198_at"	"GOLGA2P5"	55592	"ENSG00000290571"
+"231229_at"	"H1-9P"	NA	"ENSG00000188662"
+"231038_s_at"	"TSPOAP1-AS1"	100506779	"ENSG00000265148"
+"235294_at"	"SIKE1"	80143	"ENSG00000052723"
+"232323_s_at"	"TTC17"	55761	"ENSG00000052841"
+"232646_at"	"TTC17"	55761	"ENSG00000052841"
+"231656_x_at"	"OSBPL10"	114884	"ENSG00000144645"
+"231017_at"	"STK11"	6794	"ENSG00000118046"
+"233472_at"	"TCP11L1"	55346	"ENSG00000176148"
+"235486_at"	"KIAA1549L"	25758	"ENSG00000110427"
+"231964_at"	"BICD1"	636	"ENSG00000151746"
+"234784_at"	""	NA	"ENSG00000255207"
+"231049_at"	"LMO2"	4005	"ENSG00000135363"
+"233031_at"	"ZEB2"	9839	"ENSG00000169554"
+"232490_s_at"	"PRUNE1"	58497	"ENSG00000143363"
+"233605_x_at"	"HNRNPM"	4670	"ENSG00000099783"
+"230602_at"	"ACMSD"	130013	"ENSG00000153086"
+"231836_at"	"ZNF875"	284459	"ENSG00000181666"
+"231261_at"	"CATSPERG"	57828	"ENSG00000099338"
+"234353_at"	"CATSPERG"	57828	"ENSG00000099338"
+"232296_s_at"	"GFM1"	85476	"ENSG00000168827"
+"232295_at"	"GFM1"	85476	"ENSG00000168827"
+"234475_x_at"	"CCKBR"	887	"ENSG00000110148"
+"232799_at"	"CMKLR2-AS"	NA	"ENSG00000279220"
+"235184_at"	"AEBP2"	121536	"ENSG00000139154"
+"231765_at"	"RBSN"	64145	"ENSG00000131381"
+"233040_at"	"PLEKHA5"	54477	"ENSG00000052126"
+"233506_at"	"BZW1"	9689	"ENSG00000082153"
+"235169_at"	"FBXO27"	126433	"ENSG00000161243"
+"230557_at"	"XRRA1"	143570	"ENSG00000166435"
+"235179_at"	"ZNF641"	121274	"ENSG00000167528"
+"233175_at"	"ZNF460"	10794	"ENSG00000197714"
+"232578_at"	"CLDN18"	51208	"ENSG00000066405"
+"235487_at"	"CD63-AS1"	NA	"ENSG00000258056"
+"233918_at"	"DCDC2B"	149069	"ENSG00000222046"
+"234295_at"	"DBR1"	51163	"ENSG00000138231"
+"232039_at"	"MAP10"	54627	"ENSG00000212916"
+"233357_at"	"TRIM67"	440730	"ENSG00000119283"
+"235010_at"	"ZBED5-AS1"	729013	"ENSG00000247271"
+"235415_at"	"RPRD2"	23248	"ENSG00000163125"
+"234394_at"	"ZNF124"	7678	"ENSG00000196418"
+"233177_s_at"	"PNKD"	25953	"ENSG00000127838"
+"230751_at"	"WNT4"	54361	"ENSG00000162552"
+"235439_at"	"RBMS2"	5939	"ENSG00000076067"
+"235343_at"	"VASH2"	79805	"ENSG00000143494"
+"232065_x_at"	"CENPL"	91687	"ENSG00000120334"
+"232418_at"	"LZTFL1"	54585	"ENSG00000163818"
+"232702_at"	"RABGAP1L"	9910	"ENSG00000152061"
+"232145_at"	"C2orf68"	388969	"ENSG00000168887"
+"235117_at"	"CHAC2"	494143	"ENSG00000143942"
+"230743_at"	"HOXB-AS3"	404266	"ENSG00000233101"
+"232979_at"	""	NA	"ENSG00000257178"
+"231250_at"	"LINC03057"	NA	"ENSG00000272763"
+"234763_at"	""	NA	"ENSG00000232862"
+"234313_at"	"NCOR1"	9611	"ENSG00000141027"
+"235413_at"	"GGCX"	2677	"ENSG00000115486"
+"230928_at"	"LRRC3B"	116135	"ENSG00000179796"
+"231640_at"	"KRAS"	3845	"ENSG00000133703"
+"231130_at"	"FKBP7"	51661	"ENSG00000079150"
+"231712_at"	"ASCL5"	647219	"ENSG00000232237"
+"232320_at"	"KIAA1614-AS1"	103344928	"ENSG00000232586"
+"235166_at"	"ZNF148"	7707	"ENSG00000163848"
+"230821_at"	"ZNF148"	7707	"ENSG00000163848"
+"235352_at"	"MR1"	3140	"ENSG00000153029"
+"232362_at"	"CCDC18"	343099	"ENSG00000122483"
+"235320_at"	"ARL6"	84100	"ENSG00000113966"
+"231865_at"	"NCKAP5L"	57701	"ENSG00000167566"
+"231381_at"	"ESRG"	790952	"ENSG00000265992"
+"234979_at"	"BCDIN3D"	144233	"ENSG00000186666"
+"232082_x_at"	"SPRR2A"	6700	"ENSG00000241794"
+"230935_at"	"HAGLROS"	NA	"ENSG00000226363"
+"234250_at"	""	100506405	"ENSG00000228496"
+"231471_at"	""	NA	"ENSG00000289463"
+"233587_s_at"	"SIPA1L2"	57568	"ENSG00000116991"
+"231285_at"	""	NA	"ENSG00000288926"
+"230798_at"	""	NA	"ENSG00000288926"
+"233233_at"	"RASSF3"	283349	"ENSG00000153179"
+"230551_at"	"KSR2"	283455	"ENSG00000171435"
+"231514_at"	"C1orf94"	84970	"ENSG00000142698"
+"233145_at"	"CSMD2"	114784	"ENSG00000121904"
+"232460_at"	""	NA	"ENSG00000262049"
+"231898_x_at"	"SOX2-OT"	347689	"ENSG00000242808"
+"235173_at"	"MBNL1-AS1"	401093	"ENSG00000229619"
+"232298_at"	"MBNL1-AS1"	401093	"ENSG00000229619"
+"232242_at"	"PTPRG-AS1"	100506994	"ENSG00000241472"
+"232251_at"	"NUDT16L2P"	152195	"ENSG00000246082"
+"232052_at"	"THUMPD3-AS1"	440944	"ENSG00000206573"
+"231896_s_at"	"DENR"	8562	"ENSG00000139726"
+"230786_at"	"ZCCHC8"	55596	"ENSG00000033030"
+"235145_at"	"ZBTB7B"	51043	"ENSG00000160685"
+"231298_at"	""	NA	"ENSG00000262768"
+"233880_at"	"RNF213"	57674	"ENSG00000173821"
+"232155_at"	"RNF213"	57674	"ENSG00000173821"
+"231956_at"	"RNF213"	57674	"ENSG00000173821"
+"231184_at"	"DHX8"	1659	"ENSG00000067596"
+"231776_at"	"EOMES"	8320	"ENSG00000163508"
+"234291_s_at"	"SLC6A20"	54716	"ENSG00000163817"
+"231482_at"	"LINC01206"	100996490	"ENSG00000242512"
+"235177_at"	"METTL21A"	151194	"ENSG00000144401"
+"231118_at"	"ANKRD35"	148741	"ENSG00000198483"
+"232299_at"	"SNORC"	389084	"ENSG00000182600"
+"232451_at"	""	NA	"ENSG00000261051"
+"235036_at"	"LIX1L"	128077	"ENSG00000271601"
+"232735_at"	"ANKRD34A"	284615	"ENSG00000272031"
+"231213_at"	"PDE1A"	5136	"ENSG00000115252"
+"233547_x_at"	"PDE1A"	5136	"ENSG00000115252"
+"232909_s_at"	"BPTF"	2186	"ENSG00000171634"
+"231953_at"	"BPTF"	2186	"ENSG00000171634"
+"231551_at"	"TEX46"	729059	"ENSG00000227868"
+"232493_at"	"NEK4"	6787	"ENSG00000114904"
+"232060_at"	"ROR1"	4919	"ENSG00000185483"
+"233916_at"	"NYAP2"	57624	"ENSG00000144460"
+"232112_at"	"RALGPS2"	55103	"ENSG00000116191"
+"231773_at"	"ANGPTL1"	9068	"ENSG00000116194"
+"230997_at"	"TTC21A"	199223	"ENSG00000168026"
+"232308_at"	"TTC21A"	199223	"ENSG00000168026"
+"230873_at"	"TTLL3"	26140	"ENSG00000214021"
+"231337_at"	"TEX41"	401014	"ENSG00000226674"
+"231199_at"	"DBTP1"	NA	"ENSG00000239280"
+"235431_s_at"	"PELI3"	246330	"ENSG00000174516"
+"231908_at"	"ZDHHC18"	84243	"ENSG00000204160"
+"235058_at"	"GPN2"	54707	"ENSG00000142751"
+"232608_x_at"	"CARD14"	79092	"ENSG00000141527"
+"232260_at"	"ZBTB11-AS1"	100009676	"ENSG00000256628"
+"232259_s_at"	"ZBTB11-AS1"	100009676	"ENSG00000256628"
+"232125_at"	"ZBTB20"	26137	"ENSG00000181722"
+"235308_at"	"ZBTB20"	26137	"ENSG00000181722"
+"233633_at"	"TBL1XR1"	79718	"ENSG00000177565"
+"234672_s_at"	"NDC1"	55706	"ENSG00000058804"
+"231433_at"	""	NA	"ENSG00000230015"
+"235110_at"	"PLAAT3"	11145	"ENSG00000176485"
+"235457_at"	"MAML2"	84441	"ENSG00000184384"
+"235106_at"	"MAML2"	84441	"ENSG00000184384"
+"234362_s_at"	"CTLA4"	1493	"ENSG00000163599"
+"231794_at"	"CTLA4"	1493	"ENSG00000163599"
+"234058_at"	""	NA	"ENSG00000262079"
+"231579_s_at"	"TIMP2"	7077	"ENSG00000035862"
+"232116_at"	"GRHL3"	57822	"ENSG00000158055"
+"231755_at"	"IL36B"	27177	"ENSG00000136696"
+"234900_at"	""	NA	"ENSG00000213060"
+"232090_at"	"DNM3OS"	NA	"ENSG00000230630"
+"233375_at"	"EFCAB2"	84288	"ENSG00000203666"
+"235162_at"	"MDM4"	4194	"ENSG00000198625"
+"231361_at"	"NLGN1"	22871	"ENSG00000169760"
+"232322_x_at"	"STARD10"	10809	"ENSG00000214530"
+"231715_s_at"	"PYCR2"	29920	"ENSG00000143811"
+"232647_at"	"PROCA1"	147011	"ENSG00000167525"
+"232970_at"	"FAM86DP"	692099	"ENSG00000291223"
+"235030_at"	"NXPE3"	91775	"ENSG00000144815"
+"231595_at"	"IRAG1-AS1"	100129827	"ENSG00000177112"
+"235066_at"	"MAP4"	4134	"ENSG00000047849"
+"231839_at"	"PDE12"	201626	"ENSG00000174840"
+"233951_at"	"NOTCH2"	4853	"ENSG00000134250"
+"234714_x_at"	"ATP2B2"	491	"ENSG00000157087"
+"232041_at"	"PATJ"	10207	"ENSG00000132849"
+"235252_at"	"KSR1"	8844	"ENSG00000141068"
+"233341_s_at"	"POLR1B"	84172	"ENSG00000125630"
+"234072_at"	"SEMA4A"	64218	"ENSG00000196189"
+"231532_at"	"TTC12-DT"	NA	"ENSG00000255129"
+"230773_at"	"ZNF385D"	79750	"ENSG00000151789"
+"232274_at"	"CCNL2"	81669	"ENSG00000221978"
+"234020_x_at"	""	NA	"ENSG00000229839"
+"232008_s_at"	"BBX"	56987	"ENSG00000114439"
+"231086_at"	"BACE1-AS"	NA	"ENSG00000278768"
+"231853_at"	"TUBD1"	51174	"ENSG00000108423"
+"231036_at"	"PPP1CB-DT"	112267877	"ENSG00000226833"
+"232349_x_at"	"DCAF6"	55827	"ENSG00000143164"
+"232489_at"	"TRMT13"	54482	"ENSG00000122435"
+"235190_at"	"CALM2"	805	"ENSG00000143933"
+"234198_at"	"KCNIP3"	30818	"ENSG00000115041"
+"231774_at"	"KCNIP3"	30818	"ENSG00000115041"
+"232375_at"	"STAT1"	6772	"ENSG00000115415"
+"232904_at"	"SLC7A14"	57709	"ENSG00000013293"
+"234826_at"	""	NA	"ENSG00000230552"
+"235282_at"	"SP2-DT"	102724532	"ENSG00000264920"
+"233870_at"	"NAV1"	89796	"ENSG00000134369"
+"231182_at"	"WIPF1"	7456	"ENSG00000115935"
+"233080_s_at"	"PRPF40A"	55660	"ENSG00000196504"
+"233917_s_at"	"MOV10"	4343	"ENSG00000155363"
+"230834_at"	"RUBCN"	9711	"ENSG00000145016"
+"231081_at"	"C2orf73"	129852	"ENSG00000177994"
+"230540_at"	"SPTBN1"	6711	"ENSG00000115306"
+"232103_at"	"BPNT1"	10380	"ENSG00000162813"
+"232180_at"	"UGP2"	7360	"ENSG00000169764"
+"232945_at"	"PUS10"	150962	"ENSG00000162927"
+"235093_at"	"PEX13"	5194	"ENSG00000162928"
+"232168_x_at"	"MACF1"	23499	"ENSG00000127603"
+"235111_at"	"LSAMP"	4045	"ENSG00000185565"
+"230621_at"	"IAH1"	285148	"ENSG00000134330"
+"235371_at"	"GXYLT2"	727936	"ENSG00000172986"
+"233559_s_at"	"WDFY1"	57590	"ENSG00000085449"
+"235214_at"	"LURAP1"	541468	"ENSG00000171357"
+"233638_s_at"	"POMGNT1"	55624	"ENSG00000085998"
+"233639_at"	"POMGNT1"	55624	"ENSG00000085998"
+"232639_at"	"EFCAB12"	90288	"ENSG00000172771"
+"231540_at"	""	100130691	"ENSG00000213963"
+"232651_at"	""	NA	"ENSG00000213062"
+"231029_at"	"F5"	2153	"ENSG00000198734"
+"232187_at"	"PALMD"	54873	"ENSG00000099260"
+"232104_at"	"STUM"	375057	"ENSG00000203685"
+"231756_at"	"ZP4"	57829	"ENSG00000116996"
+"235230_at"	"PLCXD2"	257068	"ENSG00000240891"
+"233093_s_at"	"BIRC6"	57448	"ENSG00000115760"
+"234016_at"	"FAM95A"	90499	"ENSG00000289811"
+"235000_at"	"LPP"	4026	"ENSG00000145012"
+"231630_at"	"REL-DT"	400957	"ENSG00000228414"
+"233590_at"	"MIR3681HG"	100506457	"ENSG00000224184"
+"233601_at"	""	NA	"ENSG00000279317"
+"232907_at"	""	NA	"ENSG00000272084"
+"231889_at"	"UBR4"	23352	"ENSG00000127481"
+"230799_at"	"LINC01119"	100134259	"ENSG00000239332"
+"235147_at"	"SATB2-AS1"	150538	"ENSG00000225953"
+"235132_at"	"NIFK-AS1"	254128	"ENSG00000236859"
+"232397_at"	"HECW2-AS1"	101927482	"ENSG00000229056"
+"232790_at"	"RNASEH1-DT"	100506054	"ENSG00000234171"
+"230744_at"	"FSTL1"	11167	"ENSG00000163430"
+"230729_at"	"USP34-DT"	NA	"ENSG00000270820"
+"235137_at"	"PCBP1-AS1"	400960	"ENSG00000179818"
+"235482_at"	"PCBP1-AS1"	400960	"ENSG00000179818"
+"230598_at"	"PPP4R3B-DT"	NA	"ENSG00000272606"
+"233826_at"	""	NA	"ENSG00000259915"
+"231135_at"	"LINC02610"	151174	"ENSG00000186235"
+"230649_at"	"PRKCZ"	5590	"ENSG00000067606"
+"232853_at"	""	NA	"ENSG00000260948"
+"231105_at"	"SCMH1-DT"	NA	"ENSG00000235358"
+"234898_at"	"SNAI1P1"	NA	"ENSG00000237194"
+"235417_at"	"SPOCD1"	90853	"ENSG00000134668"
+"234293_x_at"	"RAB4A-AS1"	105373159	"ENSG00000177788"
+"233281_at"	"SLC44A3-AS1"	101928079	"ENSG00000224081"
+"231944_at"	"ERO1B"	56605	"ENSG00000086619"
+"231427_at"	"LINC01686"	284648	"ENSG00000261504"
+"231547_at"	"ZBTB37"	84614	"ENSG00000185278"
+"231339_at"	"TSPYL6"	388951	"ENSG00000178021"
+"231489_x_at"	"CREG2"	200407	"ENSG00000175874"
+"230844_at"	"CT75"	440934	"ENSG00000291155"
+"232245_at"	"SLC25A34"	284723	"ENSG00000162461"
+"232621_at"	"USP48"	84196	"ENSG00000090686"
+"235275_at"	"BMP8B"	656	"ENSG00000116985"
+"235425_at"	"SGO2"	151246	"ENSG00000163535"
+"231397_at"	"PLPPR5"	163404	"ENSG00000117598"
+"231647_s_at"	"FCRL5"	83416	"ENSG00000143297"
+"231093_at"	"FCRL3"	115352	"ENSG00000160856"
+"231504_at"	"CCDC148"	130940	"ENSG00000153237"
+"234735_s_at"	"USP21"	27005	"ENSG00000143258"
+"232219_x_at"	"USP21"	27005	"ENSG00000143258"
+"231163_at"	"SPATA46"	284680	"ENSG00000171722"
+"235003_at"	"UHMK1"	127933	"ENSG00000152332"
+"234343_s_at"	"RASAL2"	9462	"ENSG00000075391"
+"231075_x_at"	"ABI2"	10152	"ENSG00000138443"
+"232546_at"	"TP73"	7161	"ENSG00000078900"
+"231962_at"	"AP4B1"	10717	"ENSG00000134262"
+"231714_s_at"	"AP4B1"	10717	"ENSG00000134262"
+"231549_at"	"CFAP107"	93190	"ENSG00000157330"
+"235349_at"	"RMDN2"	151393	"ENSG00000115841"
+"231769_at"	"FBXO6"	26270	"ENSG00000116663"
+"233285_at"	""	NA	"ENSG00000280276"
+"230734_x_at"	"STRN"	6801	"ENSG00000115808"
+"232682_at"	"MREG"	55686	"ENSG00000118242"
+"234006_s_at"	"TMEM234"	56063	"ENSG00000160055"
+"231103_at"	"KCNN3"	3782	"ENSG00000143603"
+"231363_at"	"LELP1"	149018	"ENSG00000203784"
+"232170_at"	"S100A7A"	338324	"ENSG00000184330"
+"232032_x_at"	"SDF4"	51150	"ENSG00000078808"
+"232437_at"	"INTS11"	54973	"ENSG00000127054"
+"233907_s_at"	"SERTAD4"	56256	"ENSG00000082497"
+"232105_at"	"BLACAT1"	101669762	"ENSG00000281406"
+"233273_at"	""	NA	"ENSG00000271917"
+"230643_at"	"WNT9A"	7483	"ENSG00000143816"
+"231364_at"	"NFIA-AS2"	100996570	"ENSG00000237928"
+"233004_x_at"	"NFIA"	4774	"ENSG00000162599"
+"234462_at"	"CD247"	919	"ENSG00000198821"
+"234677_at"	""	NA	"ENSG00000270171"
+"232339_at"	"DCAF8-DT"	100287049	"ENSG00000228606"
+"235362_at"	"CNN3-DT"	NA	"ENSG00000235501"
+"232450_at"	"LINC02609"	105378853	"ENSG00000233593"
+"230527_at"	"LINC01135"	101926907	"ENSG00000234807"
+"231313_at"	"LRRC8C-DT"	400761	"ENSG00000231999"
+"234665_x_at"	"HHLA3"	11147	"ENSG00000197568"
+"231690_at"	""	NA	"ENSG00000230623"
+"232589_at"	"DPH5-DT"	NA	"ENSG00000233184"
+"235126_at"	"FLVCR1-DT"	642946	"ENSG00000198468"
+"234924_s_at"	"ZNF687"	57592	"ENSG00000143373"
+"230787_at"	"RFX5-AS1"	NA	"ENSG00000237976"
+"231942_at"	"LINC01128"	643837	"ENSG00000228794"
+"231909_x_at"	"ODF2L"	57489	"ENSG00000122417"
+"230926_s_at"	"ODF2L"	57489	"ENSG00000122417"
+"232467_at"	"KIRREL1"	55243	"ENSG00000183853"
+"235285_at"	"KDM5B"	10765	"ENSG00000117139"
+"231233_at"	"PCAT6"	100506696	"ENSG00000228288"
+"233851_s_at"	"TOR3A"	64222	"ENSG00000186283"
+"231907_at"	"ABL2"	27	"ENSG00000143322"
+"231413_at"	""	NA	"ENSG00000271746"
+"231267_at"	""	128071543	"ENSG00000243062"
+"235453_at"	"TOR1AIP2"	163590	"ENSG00000169905"
+"231719_at"	"TOR1AIP2"	163590	"ENSG00000169905"
+"230523_at"	"QSOX1"	5768	"ENSG00000116260"
+"232781_at"	"LHX4"	89884	"ENSG00000121454"
+"234890_at"	""	100288175	"ENSG00000291156"
+"234928_x_at"	"RUNX3"	864	"ENSG00000020633"
+"234281_at"	"ESPNP"	NA	"ENSG00000268869"
+"232378_at"	"SLC5A9"	200010	"ENSG00000117834"
+"231928_at"	"HES2"	54626	"ENSG00000069812"
+"230837_at"	""	NA	"ENSG00000291232"
+"232109_at"	"UBXN10"	127733	"ENSG00000162543"
+"232598_at"	"NUP210L"	91181	"ENSG00000143552"
+"233979_s_at"	"ESPN"	83715	"ENSG00000187017"
+"231851_at"	"RAVER2"	55225	"ENSG00000162437"
+"231622_at"	"ASB17"	127247	"ENSG00000154007"
+"235334_at"	"ST6GALNAC3"	256435	"ENSG00000184005"
+"230822_at"	"TMEM61"	199964	"ENSG00000143001"
+"231564_at"	""	NA	"ENSG00000233728"
+"234776_at"	"DMBX1"	127343	"ENSG00000197587"
+"231517_at"	"ZYG11A"	440590	"ENSG00000203995"
+"235305_s_at"	"ECHDC2"	55268	"ENSG00000121310"
+"233148_at"	"PODN"	127435	"ENSG00000174348"
+"230769_at"	"DENND2C"	163259	"ENSG00000175984"
+"233294_at"	"DENND2C"	163259	"ENSG00000175984"
+"232350_x_at"	"GPR161"	23432	"ENSG00000143147"
+"235125_x_at"	"MIGA1"	374986	"ENSG00000180488"
+"239677_at"	""	NA	"ENSG00000286009"
+"239858_at"	""	NA	"ENSG00000273906"
+"237225_at"	"ZFY-AS1"	107987337	"ENSG00000233070"
+"236694_at"	""	246126	"ENSG00000291033"
+"240255_at"	""	NA	"ENSG00000279064"
+"239155_at"	"CXADR"	1525	"ENSG00000154639"
+"237351_at"	"LINC01697"	284825	"ENSG00000232079"
+"235824_at"	"LINC02573"	NA	"ENSG00000233236"
+"236801_at"	""	NA	"ENSG00000280441"
+"238880_at"	"GTF3A"	2971	"ENSG00000122034"
+"239903_at"	"TPBG"	7162	"ENSG00000283085"
+"239997_at"	"POU4F1"	5457	"ENSG00000152192"
+"236953_s_at"	"NHLRC3"	387921	"ENSG00000188811"
+"239314_at"	"NHLRC3"	387921	"ENSG00000188811"
+"236122_at"	"NHLRC3"	387921	"ENSG00000188811"
+"236906_x_at"	"IPO5"	3843	"ENSG00000065150"
+"237326_at"	"LINC00310"	114036	"ENSG00000227456"
+"240397_x_at"	"COLEC12"	81035	"ENSG00000158270"
+"239464_at"	"KCNJ15"	3772	"ENSG00000157551"
+"238428_at"	"KCNJ15"	3772	"ENSG00000157551"
+"237858_s_at"	"SLC7A1"	6541	"ENSG00000139514"
+"237699_at"	"LINC00427"	NA	"ENSG00000236463"
+"238228_at"	"COG3"	83548	"ENSG00000136152"
+"239834_at"	""	NA	"ENSG00000277534"
+"236560_at"	"DIS3"	22894	"ENSG00000083520"
+"237423_at"	"RSPO4"	343637	"ENSG00000101282"
+"236390_at"	"SLX4IP"	128710	"ENSG00000149346"
+"238676_at"	"CFAP298"	56683	"ENSG00000159079"
+"237793_at"	"SCP2D1-AS1"	NA	"ENSG00000149443"
+"236674_at"	""	NA	"ENSG00000226644"
+"235976_at"	"SLITRK6"	84189	"ENSG00000184564"
+"238919_at"	"PCDH9"	5101	"ENSG00000184226"
+"238966_at"	"CELF4"	56853	"ENSG00000101489"
+"237923_at"	"SIM2"	6493	"ENSG00000159263"
+"235620_x_at"	"ZMYM5"	9205	"ENSG00000132950"
+"237472_at"	"SOX1"	6656	"ENSG00000182968"
+"240177_at"	""	NA	"ENSG00000270001"
+"236449_at"	"CSTB"	1476	"ENSG00000160213"
+"236201_at"	"SPTLC3"	55304	"ENSG00000172296"
+"238226_at"	"TMEM255B"	348013	"ENSG00000184497"
+"239308_at"	"DYRK1A"	1859	"ENSG00000157540"
+"236412_at"	""	NA	"ENSG00000234967"
+"236061_at"	"PRDM15"	63977	"ENSG00000141956"
+"240264_at"	"L3MBTL4-AS1"	101927150	"ENSG00000264707"
+"238480_at"	"TTC39C"	125488	"ENSG00000168234"
+"239246_at"	"FARP1"	10160	"ENSG00000152767"
+"235501_at"	"FARP1"	10160	"ENSG00000152767"
+"237767_at"	"FARP1"	10160	"ENSG00000152767"
+"235598_at"	"SMAD2"	4087	"ENSG00000175387"
+"239271_at"	"SMAD2"	4087	"ENSG00000175387"
+"240219_at"	"LINC00327"	100506697	"ENSG00000232977"
+"235561_at"	"TXNL1"	9352	"ENSG00000091164"
+"237262_at"	"GAREM1"	64762	"ENSG00000141441"
+"239872_at"	"OSBP2"	23762	"ENSG00000184792"
+"235676_at"	"SEC11C"	90701	"ENSG00000166562"
+"236540_at"	"TPGS2"	25941	"ENSG00000134779"
+"235793_at"	"TPGS2"	25941	"ENSG00000134779"
+"237781_at"	"HORMAD2"	150280	"ENSG00000176635"
+"240453_at"	"CFAP61"	26074	"ENSG00000089101"
+"238353_at"	"RASL11A"	387496	"ENSG00000122035"
+"239953_at"	"ENTPD6"	955	"ENSG00000197586"
+"235639_at"	"CDH19"	28513	"ENSG00000071991"
+"236057_at"	"KCTD1"	284252	"ENSG00000134504"
+"238468_at"	"TNRC6B"	23112	"ENSG00000100354"
+"236258_at"	"RBBP8NL"	140893	"ENSG00000130701"
+"237623_at"	"CST3"	1471	"ENSG00000101439"
+"238127_at"	"GAS6-AS1"	NA	"ENSG00000233695"
+"238097_at"	"GAS6-AS1"	NA	"ENSG00000233695"
+"238890_at"	"BRWD1"	54014	"ENSG00000185658"
+"236938_at"	""	NA	"ENSG00000276093"
+"237552_at"	"LINC02582"	100505817	"ENSG00000261780"
+"237344_at"	"LINC01539"	100505474	"ENSG00000267712"
+"236324_at"	"MBP"	4155	"ENSG00000197971"
+"235952_at"	"DGKH"	160851	"ENSG00000102780"
+"240145_at"	"DGKH"	160851	"ENSG00000102780"
+"239558_at"	"GRK3-AS1"	100996404	"ENSG00000234884"
+"237166_at"	"NKILA"	105416157	"ENSG00000278709"
+"236600_at"	"SPART"	23111	"ENSG00000133104"
+"238709_at"	"ELP2"	55250	"ENSG00000134759"
+"236734_at"	"SLITRK1"	114798	"ENSG00000178235"
+"238173_at"	"TCEA2"	6919	"ENSG00000171703"
+"237555_at"	"CARS2"	79587	"ENSG00000134905"
+"238197_at"	"GATA5"	140628	"ENSG00000130700"
+"238095_at"	"GATA5"	140628	"ENSG00000130700"
+"238058_at"	"PRR34-AS1"	NA	"ENSG00000241990"
+"240174_at"	"FAM83F"	113828	"ENSG00000133477"
+"239572_at"	"GJA3"	2700	"ENSG00000121743"
+"236797_at"	""	NA	"ENSG00000275894"
+"238470_at"	"SYS1"	90196	"ENSG00000204070"
+"240368_at"	"LRFN5-DT"	124907392	"ENSG00000258636"
+"236051_at"	"NHIP"	105373085	"ENSG00000286381"
+"238576_at"	"MOCOS"	55034	"ENSG00000075643"
+"236647_at"	"JPH2"	57158	"ENSG00000149596"
+"236137_at"	""	NA	"ENSG00000287812"
+"237155_at"	""	NA	"ENSG00000285679"
+"240204_at"	"SNHG14"	NA	"ENSG00000224078"
+"238717_at"	""	NA	"ENSG00000285756"
+"236290_at"	"DOK6"	220164	"ENSG00000206052"
+"236467_at"	"ERICH1"	157697	"ENSG00000104714"
+"236634_at"	"C8orf48"	157773	"ENSG00000164743"
+"236332_at"	"DHRS7"	51635	"ENSG00000100612"
+"238832_at"	"CNKSR2"	22866	"ENSG00000149970"
+"238792_at"	"PCNX1"	22990	"ENSG00000100731"
+"239100_x_at"	"PCNX1"	22990	"ENSG00000100731"
+"238700_at"	"PIAS2"	9063	"ENSG00000078043"
+"238965_at"	""	NA	"ENSG00000184441"
+"239020_at"	"FUT10"	84750	"ENSG00000172728"
+"237593_at"	"MNAT1"	4331	"ENSG00000020426"
+"239509_at"	""	100192386	"ENSG00000275620"
+"236853_at"	"TEX29"	121793	"ENSG00000153495"
+"236446_at"	"CLN5"	1203	"ENSG00000102805"
+"238647_at"	"C14orf28"	122525	"ENSG00000179476"
+"235608_at"	"FBXL3"	26224	"ENSG00000005812"
+"238490_at"	"KIAA2026"	158358	"ENSG00000183354"
+"239989_at"	"CNTLN"	54875	"ENSG00000044459"
+"238905_at"	"RHOJ"	57381	"ENSG00000126785"
+"238906_s_at"	"RHOJ"	57381	"ENSG00000126785"
+"237869_at"	"GGACT"	87769	"ENSG00000134864"
+"237862_at"	""	NA	"ENSG00000228739"
+"236391_at"	""	NA	"ENSG00000278012"
+"236835_at"	"FUT8-AS1"	NA	"ENSG00000276116"
+"240030_at"	"COMMD6"	170622	"ENSG00000188243"
+"236369_at"	"TSPY26P"	NA	"ENSG00000235217"
+"239729_at"	""	119746555	"ENSG00000260257"
+"238662_at"	"DPH6"	89978	"ENSG00000134146"
+"238621_at"	"FMN1"	342184	"ENSG00000248905"
+"236164_at"	"GABPB1-IT1"	55056	"ENSG00000285410"
+"239085_at"	"JDP2"	122953	"ENSG00000140044"
+"238237_at"	""	NA	"ENSG00000254067"
+"237447_at"	"ADORA2A-AS1"	646023	"ENSG00000178803"
+"239513_at"	"ADORA2A-AS1"	646023	"ENSG00000178803"
+"237419_at"	""	NA	"ENSG00000272338"
+"237661_at"	""	NA	"ENSG00000273552"
+"238114_at"	"PCMTD1"	115294	"ENSG00000168300"
+"239683_at"	"CLYBL"	171425	"ENSG00000125246"
+"238440_at"	"CLYBL"	171425	"ENSG00000125246"
+"239712_at"	"CCDC171"	203238	"ENSG00000164989"
+"236945_at"	"CCDC171"	203238	"ENSG00000164989"
+"236004_at"	"AP5M1"	55745	"ENSG00000053770"
+"236492_at"	"PPP2R2A"	5520	"ENSG00000221914"
+"237094_at"	"TAFA5"	25817	"ENSG00000219438"
+"239133_at"	"CTDSPL2"	51496	"ENSG00000137770"
+"239702_x_at"	""	NA	"ENSG00000278054"
+"237437_s_at"	"ADARB2"	105	"ENSG00000185736"
+"240426_at"	"FAM47B"	170062	"ENSG00000189132"
+"236012_at"	"PSMF1"	9491	"ENSG00000125818"
+"235993_at"	"PSMF1"	9491	"ENSG00000125818"
+"237529_at"	"LINC00708"	100507143	"ENSG00000232170"
+"238731_at"	"SETDB2"	83852	"ENSG00000136169"
+"238684_at"	"SETDB2"	83852	"ENSG00000136169"
+"236726_at"	"RGS6"	9628	"ENSG00000182732"
+"239178_at"	"FGF9"	2254	"ENSG00000102678"
+"236887_at"	"KIN"	22944	"ENSG00000151657"
+"236669_at"	"FKBP1A"	2280	"ENSG00000088832"
+"240041_at"	"PTCHD1"	139411	"ENSG00000165186"
+"238125_at"	"ADAMTS16"	170690	"ENSG00000145536"
+"239359_at"	"MARCHF11"	441061	"ENSG00000183654"
+"237004_at"	""	105371046	"ENSG00000260989"
+"238485_at"	"IQCH-AS1"	100506686	"ENSG00000259673"
+"237053_at"	"SYNDIG1L"	646658	"ENSG00000183379"
+"238746_at"	"PXMP4"	11264	"ENSG00000101417"
+"238912_x_at"	"C9orf85"	138241	"ENSG00000155621"
+"235866_at"	"C9orf85"	138241	"ENSG00000155621"
+"238054_at"	"ADPRHL1"	113622	"ENSG00000153531"
+"236718_at"	"MYO10"	4651	"ENSG00000145555"
+"235827_at"	"TAB1"	10454	"ENSG00000100324"
+"237168_at"	"NEK5"	341676	"ENSG00000197168"
+"240275_at"	"ARMC3"	219681	"ENSG00000165309"
+"237102_at"	""	NA	"ENSG00000289235"
+"235591_at"	"SSTR1"	6751	"ENSG00000139874"
+"238537_at"	"CA8"	767	"ENSG00000178538"
+"237219_at"	"PHKA1-AS1"	101928259	"ENSG00000231944"
+"238194_at"	"DGKK"	139189	"ENSG00000274588"
+"237676_at"	"LINC02221"	NA	"ENSG00000250814"
+"240431_at"	"LINC00459"	100874180	"ENSG00000229307"
+"239722_at"	"CFAP90"	134121	"ENSG00000215217"
+"239468_at"	"MKX"	283078	"ENSG00000150051"
+"239994_at"	"B3GALT5"	10317	"ENSG00000183778"
+"238926_at"	"LINC01679"	101928399	"ENSG00000237989"
+"237081_at"	""	124902204	"ENSG00000287769"
+"235666_at"	"ITGA8"	8516	"ENSG00000077943"
+"239092_at"	"ITGA8"	8516	"ENSG00000077943"
+"239399_at"	""	NA	"ENSG00000285907"
+"237695_at"	"LERFS"	NA	"ENSG00000234665"
+"239582_at"	"PML"	5371	"ENSG00000140464"
+"235508_at"	"PML"	5371	"ENSG00000140464"
+"235798_at"	"TMEM170B"	100113407	"ENSG00000205269"
+"238541_at"	"C21orf58"	54058	"ENSG00000160298"
+"237651_x_at"	"LINC00518"	NA	"ENSG00000183674"
+"239553_at"	"LMO7DN"	729420	"ENSG00000178734"
+"240304_s_at"	"TMC5"	79838	"ENSG00000103534"
+"236983_at"	"TMC5"	79838	"ENSG00000103534"
+"240303_at"	"TMC5"	79838	"ENSG00000103534"
+"237749_at"	"TCF4-AS1"	105372127	"ENSG00000267028"
+"240012_at"	""	NA	"ENSG00000231990"
+"239263_at"	"LINC02925"	NA	"ENSG00000234869"
+"239911_at"	"ONECUT2"	9480	"ENSG00000119547"
+"239812_s_at"	"IQCH"	64799	"ENSG00000103599"
+"239813_at"	"IQCH"	64799	"ENSG00000103599"
+"237294_at"	""	NA	"ENSG00000273363"
+"237314_at"	"ENKUR"	219670	"ENSG00000151023"
+"240276_at"	"LINC01926"	105372147	"ENSG00000267593"
+"240435_at"	"ALDH1A2"	8854	"ENSG00000128918"
+"239293_at"	"NRSN1"	140767	"ENSG00000152954"
+"236519_at"	"CFAP95"	138255	"ENSG00000204711"
+"236769_at"	"LINC02977"	NA	"ENSG00000259953"
+"236416_at"	"ARHGEF7"	8874	"ENSG00000102606"
+"236110_at"	"ST8SIA5"	29906	"ENSG00000101638"
+"236101_at"	"SLC2A9"	56606	"ENSG00000109667"
+"240223_at"	"SLC2A9"	56606	"ENSG00000109667"
+"238380_s_at"	"IGHV3-25"	NA	"ENSG00000253441"
+"236627_at"	""	NA	"ENSG00000272425"
+"237883_at"	""	NA	"ENSG00000229771"
+"238455_at"	"PLXDC2"	84898	"ENSG00000120594"
+"236297_at"	"PLXDC2"	84898	"ENSG00000120594"
+"236988_x_at"	"ITGB2"	3689	"ENSG00000160255"
+"240211_at"	"APCDD1"	147495	"ENSG00000154856"
+"237572_at"	"UGT3A1"	133688	"ENSG00000145626"
+"235904_at"	"UGT3A1"	133688	"ENSG00000145626"
+"236597_at"	"UGT3A1"	133688	"ENSG00000145626"
+"238244_at"	"CIBAR1-DT"	642924	"ENSG00000246662"
+"235645_at"	"ESCO1"	114799	"ENSG00000141446"
+"236804_at"	"COMT"	1312	"ENSG00000093010"
+"236671_at"	"COMT"	1312	"ENSG00000093010"
+"240147_at"	"C7orf50"	84310	"ENSG00000146540"
+"239470_at"	"PAK6-AS1"	644809	"ENSG00000176753"
+"237837_at"	""	NA	"ENSG00000283125"
+"236992_at"	"C4orf19"	55286	"ENSG00000154274"
+"238387_s_at"	"LINC00226"	NA	"ENSG00000276210"
+"239781_at"	"LINC00545"	440132	"ENSG00000236094"
+"236280_at"	"P2RY10"	27334	"ENSG00000078589"
+"235933_at"	""	NA	"ENSG00000167046"
+"236911_at"	"RIMKLB"	57494	"ENSG00000166532"
+"239330_at"	"DCAF12L2"	340578	"ENSG00000198354"
+"237353_at"	""	NA	"ENSG00000233848"
+"239407_at"	"PAXBP1-AS1"	100506215	"ENSG00000238197"
+"239761_at"	"GCNT1"	2650	"ENSG00000187210"
+"235573_at"	"HSPH1"	10808	"ENSG00000120694"
+"239162_at"	"DAPK1-IT1"	100506897	"ENSG00000236709"
+"240316_at"	"C9orf57"	138240	"ENSG00000204669"
+"238920_at"	""	NA	"ENSG00000273759"
+"236881_at"	""	NA	"ENSG00000227089"
+"237301_at"	"MRPS30-DT"	NA	"ENSG00000251141"
+"237730_at"	""	NA	"ENSG00000260857"
+"239072_at"	"EMB"	133418	"ENSG00000170571"
+"240068_at"	"LINC00323"	284835	"ENSG00000226496"
+"239999_at"	"MIR99AHG"	388815	"ENSG00000215386"
+"240091_at"	"PSMA8"	143471	"ENSG00000154611"
+"237975_at"	""	NA	"ENSG00000238010"
+"238287_at"	"SLC7A13"	157724	"ENSG00000164893"
+"237475_x_at"	"CCDC152"	100129792	"ENSG00000198865"
+"235899_at"	"CA13"	377677	"ENSG00000185015"
+"236366_at"	""	NA	"ENSG00000274922"
+"238836_at"	"TFAM"	7019	"ENSG00000108064"
+"238443_at"	"TFAM"	7019	"ENSG00000108064"
+"237414_at"	"F7"	2155	"ENSG00000057593"
+"236859_at"	"RUNX2"	860	"ENSG00000124813"
+"236858_s_at"	"RUNX2"	860	"ENSG00000124813"
+"236271_at"	"LNMICC"	NA	"ENSG00000254027"
+"236033_at"	"ASB12"	142689	"ENSG00000198881"
+"235846_at"	"FSBP"	100861412	"ENSG00000265817"
+"238775_at"	"ITFG1"	81533	"ENSG00000129636"
+"236194_at"	""	NA	"ENSG00000272335"
+"235533_at"	"COX19"	90639	"ENSG00000240230"
+"237672_at"	"LDOC1"	23641	"ENSG00000182195"
+"239228_at"	"CSNK2A1"	1457	"ENSG00000101266"
+"238504_at"	"SDHAF4"	135154	"ENSG00000154079"
+"235699_at"	"REM2"	161253	"ENSG00000139890"
+"237696_at"	"LINC02283"	NA	"ENSG00000248184"
+"236701_at"	"GSG1L"	146395	"ENSG00000169181"
+"237784_at"	"SUB1"	10923	"ENSG00000113387"
+"239261_s_at"	"CORIN"	10699	"ENSG00000145244"
+"239260_at"	"CORIN"	10699	"ENSG00000145244"
+"237519_at"	""	NA	"ENSG00000227215"
+"236287_at"	"RASSF4"	83937	"ENSG00000107551"
+"239636_at"	"MCF2L"	23263	"ENSG00000126217"
+"236085_at"	"CAPSL"	133690	"ENSG00000152611"
+"237452_at"	"COL27A1"	85301	"ENSG00000196739"
+"239719_at"	"CD109"	135228	"ENSG00000156535"
+"239067_s_at"	"PANX2"	56666	"ENSG00000073150"
+"238211_at"	"CASC16"	643714	"ENSG00000249231"
+"239602_at"	"BRWD1-AS2"	103091865	"ENSG00000255568"
+"236048_at"	"LHFPL1"	340596	"ENSG00000182508"
+"236478_at"	""	NA	"ENSG00000289238"
+"238868_at"	"UACA"	55075	"ENSG00000137831"
+"236715_x_at"	"UACA"	55075	"ENSG00000137831"
+"240043_at"	"PRR32"	100130613	"ENSG00000183631"
+"237229_at"	""	NA	"ENSG00000259940"
+"239500_at"	"CLXN"	79645	"ENSG00000034239"
+"239936_at"	"DLEU2"	8847	"ENSG00000231607"
+"237500_at"	""	NA	"ENSG00000272545"
+"240225_at"	"EGFLAM-AS2"	100506475	"ENSG00000248572"
+"237842_at"	"MAP7D3"	79649	"ENSG00000129680"
+"240436_at"	""	NA	"ENSG00000291046"
+"236837_x_at"	""	NA	"ENSG00000291046"
+"238205_at"	"DCAF12L1"	139170	"ENSG00000198889"
+"239306_at"	"AJUBA-DT"	NA	"ENSG00000258457"
+"238067_at"	"TBC1D8B"	54885	"ENSG00000133138"
+"238253_at"	"WDR72"	256764	"ENSG00000166415"
+"236741_at"	"WDR72"	256764	"ENSG00000166415"
+"239925_at"	""	NA	"ENSG00000267073"
+"239985_at"	""	NA	"ENSG00000287557"
+"237381_at"	"PSMD7-DT"	101928035	"ENSG00000261404"
+"239324_at"	"PDCL"	5082	"ENSG00000136940"
+"239598_s_at"	"LPCAT2"	54947	"ENSG00000087253"
+"238501_at"	"SUGT1-DT"	116435302	"ENSG00000273723"
+"237054_at"	"ENPP5"	59084	"ENSG00000112796"
+"237345_at"	""	102724929	"ENSG00000225050"
+"236150_at"	"HYKK"	123688	"ENSG00000188266"
+"238695_s_at"	"RAB39B"	116442	"ENSG00000155961"
+"236716_at"	""	NA	"ENSG00000260918"
+"236702_at"	"RTF2"	51507	"ENSG00000022277"
+"239733_at"	"DYDC2"	84332	"ENSG00000133665"
+"237392_at"	"FGF14-IT1"	283480	"ENSG00000243319"
+"239034_at"	"LINC01560"	NA	"ENSG00000196741"
+"239765_at"	"CPEB3"	22849	"ENSG00000107864"
+"239143_x_at"	"RNF138"	51444	"ENSG00000134758"
+"235874_at"	"PRSS35"	167681	"ENSG00000146250"
+"235809_at"	"LIN54"	132660	"ENSG00000189308"
+"236352_at"	"VGLL2"	245806	"ENSG00000170162"
+"235822_at"	"COQ9"	57017	"ENSG00000088682"
+"236526_x_at"	"SHLD3"	112441434	"ENSG00000253251"
+"236265_at"	"SP4"	6671	"ENSG00000105866"
+"239115_at"	"TMED3"	23423	"ENSG00000166557"
+"239613_at"	"TMED3"	23423	"ENSG00000166557"
+"239787_at"	"KCTD4"	386618	"ENSG00000180332"
+"235863_at"	"JSRP1"	126306	"ENSG00000167476"
+"236982_at"	""	NA	"ENSG00000289009"
+"239058_at"	"FOXC2"	2303	"ENSG00000176692"
+"236994_at"	"FBXL4"	26235	"ENSG00000112234"
+"238294_at"	"EHMT1"	79813	"ENSG00000181090"
+"236721_at"	"ALKBH1"	8846	"ENSG00000100601"
+"238171_at"	"SLC25A30"	253512	"ENSG00000174032"
+"239537_at"	"ST8SIA2"	8128	"ENSG00000140557"
+"240201_at"	"C15orf40"	123207	"ENSG00000169609"
+"236606_at"	""	NA	"ENSG00000269906"
+"236506_at"	""	NA	"ENSG00000270062"
+"237391_at"	"LINC02619"	105377245	"ENSG00000249382"
+"237974_at"	"ABHD12B"	145447	"ENSG00000131969"
+"235698_at"	"ZFP90"	146198	"ENSG00000184939"
+"240163_at"	"RORA-AS1"	101928784	"ENSG00000245534"
+"236916_at"	"STRAP"	11171	"ENSG00000023734"
+"236165_at"	"MSL3"	10943	"ENSG00000005302"
+"238605_at"	"NOL4"	8715	"ENSG00000101746"
+"237275_at"	"LINC00458"	100507428	"ENSG00000234787"
+"239123_at"	"TSC22D1"	8848	"ENSG00000102804"
+"237196_at"	"MATN2"	4147	"ENSG00000132561"
+"237745_at"	"TSC22D1-AS1"	641467	"ENSG00000278156"
+"237719_x_at"	"RGS7BP"	401190	"ENSG00000186479"
+"240287_at"	"ACOD1"	730249	"ENSG00000102794"
+"237059_at"	"VTA1"	51534	"ENSG00000009844"
+"235830_at"	"NT5DC1"	221294	"ENSG00000178425"
+"237129_at"	""	NA	"ENSG00000259700"
+"236489_at"	"ADGRF1"	266977	"ENSG00000153292"
+"235988_at"	"ADGRF1"	266977	"ENSG00000153292"
+"238689_at"	"ADGRF1"	266977	"ENSG00000153292"
+"235653_s_at"	"THAP6"	152815	"ENSG00000174796"
+"237885_at"	"SOX21-AS1"	100507533	"ENSG00000227640"
+"237818_at"	"LARP6"	55323	"ENSG00000166173"
+"236565_s_at"	"LARP6"	55323	"ENSG00000166173"
+"236852_at"	"FBXO43"	286151	"ENSG00000156509"
+"235567_at"	"RORA"	6095	"ENSG00000069667"
+"236266_at"	"RORA"	6095	"ENSG00000069667"
+"238227_at"	""	NA	"ENSG00000271833"
+"238523_at"	"KLHL36"	79786	"ENSG00000135686"
+"238025_at"	"MLKL"	197259	"ENSG00000168404"
+"235997_at"	"ZNF74"	7625	"ENSG00000185252"
+"237838_at"	""	124901635	"ENSG00000228735"
+"239073_at"	"ANKFY1"	51479	"ENSG00000185722"
+"239848_at"	"EIF3M"	10480	"ENSG00000149100"
+"235964_x_at"	"SAMHD1"	25939	"ENSG00000101347"
+"235529_x_at"	"SAMHD1"	25939	"ENSG00000101347"
+"238903_at"	"UBXN2B"	137886	"ENSG00000215114"
+"236179_at"	"CDH11"	1009	"ENSG00000140937"
+"239286_at"	"CDH11"	1009	"ENSG00000140937"
+"239769_at"	"CDH11"	1009	"ENSG00000140937"
+"239076_at"	"ADCY1"	107	"ENSG00000164742"
+"237932_at"	"XACT"	NA	"ENSG00000241743"
+"236078_at"	"MEAK7"	57707	"ENSG00000140950"
+"239216_at"	"TEKT1"	83659	"ENSG00000167858"
+"238475_at"	"ALG10B"	144245	"ENSG00000175548"
+"238251_at"	"LINC02264"	NA	"ENSG00000229565"
+"235749_at"	"UGGT2"	55757	"ENSG00000102595"
+"237605_at"	"LINC02546"	105376606	"ENSG00000255117"
+"236833_at"	"TTC16"	158248	"ENSG00000167094"
+"238113_at"	"SMIM2-AS1"	NA	"ENSG00000227258"
+"240407_at"	"NAV2-AS6"	NA	"ENSG00000270607"
+"237645_at"	""	NA	"ENSG00000257228"
+"237981_at"	"CMYA5"	202333	"ENSG00000164309"
+"236023_at"	"CDK9"	1025	"ENSG00000136807"
+"236940_at"	""	107984270	"ENSG00000286289"
+"235758_at"	"PNMA6A"	84968	"ENSG00000235961"
+"238116_at"	"DYNLRB2"	83657	"ENSG00000168589"
+"239897_at"	"BCLAF1"	9774	"ENSG00000029363"
+"237428_at"	"TEX43"	389320	"ENSG00000196900"
+"235727_at"	"KLHL28"	54813	"ENSG00000179454"
+"235802_at"	"PLD4"	122618	"ENSG00000166428"
+"237574_at"	""	NA	"ENSG00000255271"
+"235520_at"	"ZNF280C"	55609	"ENSG00000056277"
+"238748_at"	"RAD18"	56852	"ENSG00000070950"
+"238670_at"	"RAD18"	56852	"ENSG00000070950"
+"238334_at"	"MTG1"	92170	"ENSG00000148824"
+"238333_s_at"	"MTG1"	92170	"ENSG00000148824"
+"238940_at"	"KLF12"	11278	"ENSG00000118922"
+"239019_at"	"KLF12"	11278	"ENSG00000118922"
+"236588_at"	"CFDP1"	10428	"ENSG00000153774"
+"239477_at"	"EFHB"	151651	"ENSG00000163576"
+"240024_at"	"SEC14L2"	23541	"ENSG00000100003"
+"236517_at"	"MEGF10"	84466	"ENSG00000145794"
+"237827_at"	"FAM205C"	100129969	"ENSG00000187791"
+"236384_at"	"NCBP3"	55421	"ENSG00000074356"
+"237297_at"	""	NA	"ENSG00000278831"
+"237728_at"	""	NA	"ENSG00000272123"
+"237117_at"	"CSPG4BP"	NA	"ENSG00000232517"
+"238162_at"	"LRRK1"	79705	"ENSG00000154237"
+"239419_at"	"PTPRA"	5786	"ENSG00000132670"
+"236533_at"	"ASAP1"	50807	"ENSG00000153317"
+"239492_at"	"SEC14L4"	284904	"ENSG00000133488"
+"239327_at"	"SEC14L4"	284904	"ENSG00000133488"
+"239252_at"	"COX7B"	1349	"ENSG00000131174"
+"238897_at"	"LRRC28"	123355	"ENSG00000168904"
+"239471_at"	"LRRC28"	123355	"ENSG00000168904"
+"238999_at"	"CTDSP2"	10106	"ENSG00000175215"
+"239891_x_at"	"RAB12"	201475	"ENSG00000206418"
+"237709_at"	""	NA	"ENSG00000258642"
+"237045_at"	"FAM91A1"	157769	"ENSG00000176853"
+"236822_at"	""	NA	"ENSG00000259359"
+"236434_at"	"PES1"	23481	"ENSG00000100029"
+"236241_at"	"MED31"	51003	"ENSG00000108590"
+"235731_at"	"AIPL1"	23746	"ENSG00000129221"
+"237329_at"	"RBMS3-AS3"	NA	"ENSG00000235904"
+"236363_at"	"LSM3"	27258	"ENSG00000170860"
+"238395_at"	"EFHC1"	114327	"ENSG00000096093"
+"240197_at"	"SYN2"	6854	"ENSG00000157152"
+"238535_at"	"CEP152"	22995	"ENSG00000103995"
+"239413_at"	"CEP152"	22995	"ENSG00000103995"
+"235940_at"	"C9orf64"	84267	"ENSG00000165118"
+"237810_at"	"CLDN6"	9074	"ENSG00000184697"
+"235946_at"	"RIBC1"	158787	"ENSG00000158423"
+"240129_at"	"PEDS1"	387521	"ENSG00000240849"
+"239585_at"	"KAT2B"	8850	"ENSG00000114166"
+"238793_at"	"TIGD7"	91151	"ENSG00000140993"
+"236117_at"	"ZNF597"	146434	"ENSG00000167981"
+"237358_at"	""	NA	"ENSG00000271192"
+"235496_at"	"HRCT1"	646962	"ENSG00000196196"
+"239730_at"	"ESS2"	8220	"ENSG00000100056"
+"237178_at"	"LNCARSR"	102723932	"ENSG00000233086"
+"240048_at"	"STRC"	161497	"ENSG00000242866"
+"237267_at"	"LINC03031"	100506675	"ENSG00000254584"
+"237617_at"	"LINC03031"	100506675	"ENSG00000254584"
+"236295_s_at"	"NLRC3"	197358	"ENSG00000167984"
+"237766_at"	"ATP9B"	374868	"ENSG00000166377"
+"236135_at"	"PNPLA7"	375775	"ENSG00000130653"
+"235998_at"	"RHPN1"	114822	"ENSG00000158106"
+"237003_at"	"BEST3"	144453	"ENSG00000127325"
+"238099_at"	""	NA	"ENSG00000286408"
+"237474_at"	""	NA	"ENSG00000207342"
+"238860_at"	"OARD1"	221443	"ENSG00000124596"
+"239300_at"	"PIK3C3"	5289	"ENSG00000078142"
+"239391_at"	"FAM120AOS"	158293	"ENSG00000188938"
+"235718_at"	"SRL"	6345	"ENSG00000185739"
+"237450_at"	"SMIM32"	389332	"ENSG00000271824"
+"239497_at"	"EPS15L1"	58513	"ENSG00000127527"
+"235767_x_at"	"PHAX"	51808	"ENSG00000164902"
+"236817_at"	"ADAT2"	134637	"ENSG00000189007"
+"237919_at"	"LIG3"	3980	"ENSG00000005156"
+"239713_at"	"CASC2"	255082	"ENSG00000177640"
+"237048_at"	"MRFAP1P1"	105373383	"ENSG00000260081"
+"237523_at"	"MRFAP1P1"	105373383	"ENSG00000260081"
+"236009_at"	"PERP"	64065	"ENSG00000112378"
+"238530_at"	"NNT"	23530	"ENSG00000112992"
+"237226_at"	""	NA	"ENSG00000224417"
+"239480_at"	""	NA	"ENSG00000231255"
+"237721_s_at"	"ASB4"	51666	"ENSG00000005981"
+"237720_at"	"ASB4"	51666	"ENSG00000005981"
+"235619_at"	"ASB4"	51666	"ENSG00000005981"
+"240427_at"	""	NA	"ENSG00000230600"
+"237509_at"	"LINC01616"	106456574	"ENSG00000261340"
+"238773_at"	"METTL15"	196074	"ENSG00000169519"
+"239680_at"	"WDR76"	79968	"ENSG00000092470"
+"235600_at"	"DLK1"	8788	"ENSG00000185559"
+"238447_at"	"RBMS3"	27303	"ENSG00000144642"
+"235570_at"	"RBMS3"	27303	"ENSG00000144642"
+"239367_at"	"BDNF"	627	"ENSG00000176697"
+"237122_at"	"WDR7"	23335	"ENSG00000091157"
+"237302_at"	"CNKSR3"	154043	"ENSG00000153721"
+"239493_at"	"RPL7"	6129	"ENSG00000147604"
+"238763_at"	"RBM20"	282996	"ENSG00000203867"
+"236239_at"	"XPNPEP1"	7511	"ENSG00000108039"
+"239061_at"	"TPRXL"	348825	"ENSG00000180438"
+"235919_at"	"CEP78"	84131	"ENSG00000148019"
+"237074_at"	"TH2LCRR"	101927761	"ENSG00000223442"
+"240083_at"	"MEG8"	NA	"ENSG00000225746"
+"239524_at"	"TSSK6"	83983	"ENSG00000178093"
+"238750_at"	"CCL28"	56477	"ENSG00000151882"
+"240124_at"	""	NA	"ENSG00000272942"
+"240228_at"	"CSMD3"	114788	"ENSG00000164796"
+"236968_at"	"CCER1"	196477	"ENSG00000197651"
+"239084_at"	"SNAP29"	9342	"ENSG00000099940"
+"237945_at"	"SNORD113-3"	767563	"ENSG00000201700"
+"235962_at"	"AZI2"	64343	"ENSG00000163512"
+"236312_at"	"MAD2L1"	4085	"ENSG00000164109"
+"239816_at"	"POLD3"	10714	"ENSG00000077514"
+"235615_at"	"PGGT1B"	5229	"ENSG00000164219"
+"235810_at"	"ZNF182"	7569	"ENSG00000147118"
+"236644_at"	"RNF180"	285671	"ENSG00000164197"
+"239752_at"	"CECR2"	27443	"ENSG00000099954"
+"236232_at"	"STX4"	6810	"ENSG00000103496"
+"236301_at"	"IKZF3"	22806	"ENSG00000161405"
+"239888_at"	"UBQLN2"	29978	"ENSG00000188021"
+"238077_at"	"KCTD6"	200845	"ENSG00000168301"
+"238001_at"	"KCTD6"	200845	"ENSG00000168301"
+"235510_at"	"USHBP1"	83878	"ENSG00000130307"
+"237774_at"	"PENK"	5179	"ENSG00000181195"
+"237924_at"	""	NA	"ENSG00000286215"
+"235924_at"	"FRK"	2444	"ENSG00000111816"
+"235625_at"	"VPS41"	27072	"ENSG00000006715"
+"239771_at"	"CAND1"	55832	"ENSG00000111530"
+"237245_at"	"BUB3"	9184	"ENSG00000154473"
+"239299_at"	"DDI1"	414301	"ENSG00000170967"
+"238041_at"	"TCF12"	6938	"ENSG00000140262"
+"238865_at"	"PABPC4L"	132430	"ENSG00000254535"
+"236006_s_at"	"AKAP10"	11216	"ENSG00000108599"
+"236007_at"	"AKAP10"	11216	"ENSG00000108599"
+"238047_at"	"ARHGAP36"	158763	"ENSG00000147256"
+"236175_at"	"TRIM55"	84675	"ENSG00000147573"
+"239353_at"	"STK32A"	202374	"ENSG00000169302"
+"236487_at"	"SCLT1"	132320	"ENSG00000151466"
+"236285_at"	"KLHDC7B"	113730	"ENSG00000130487"
+"239854_at"	"SYCE3"	644186	"ENSG00000217442"
+"240278_at"	"RASSF1-AS1"	102060282	"ENSG00000281358"
+"239818_x_at"	"TRIB1"	10221	"ENSG00000173334"
+"236331_at"	"CDKL2"	8999	"ENSG00000138769"
+"236843_at"	"NOX4"	50507	"ENSG00000086991"
+"238093_at"	"STPG3-AS1"	100129722	"ENSG00000275549"
+"237177_at"	"CNTN4"	152330	"ENSG00000144619"
+"236037_at"	"ARFGEF3"	57221	"ENSG00000112379"
+"238813_at"	"APEX2"	27301	"ENSG00000169188"
+"239223_s_at"	"FBXL20"	84961	"ENSG00000108306"
+"239224_at"	"FBXL20"	84961	"ENSG00000108306"
+"236385_at"	"CHRNA7"	1139	"ENSG00000175344"
+"238620_at"	""	NA	"ENSG00000275311"
+"238557_at"	"CHKB-DT"	100144603	"ENSG00000205559"
+"237807_at"	"SPATA12"	353324	"ENSG00000186451"
+"238614_x_at"	"ZNF430"	80264	"ENSG00000118620"
+"238496_at"	"NSD3"	54904	"ENSG00000147548"
+"238948_at"	"TM9SF1"	10548	"ENSG00000100926"
+"236541_at"	"ARSA"	410	"ENSG00000100299"
+"236128_at"	"ZNF91"	7644	"ENSG00000167232"
+"239465_at"	"UQCRC2"	7385	"ENSG00000140740"
+"236144_at"	"CPXM2"	119587	"ENSG00000121898"
+"239054_at"	"SFMBT1"	51460	"ENSG00000163935"
+"236707_at"	"DAPP1"	27071	"ENSG00000070190"
+"236038_at"	"RNF150"	57484	"ENSG00000170153"
+"236535_at"	"SMC6"	79677	"ENSG00000163029"
+"235821_at"	"CCN4"	8840	"ENSG00000104415"
+"240167_at"	"LINC01085"	152742	"ENSG00000248698"
+"238190_at"	"TUFM"	7284	"ENSG00000178952"
+"240115_at"	"PPM1F-AS1"	NA	"ENSG00000224086"
+"235576_at"	"WDR27"	253769	"ENSG00000184465"
+"239281_at"	"ZDHHC14"	79683	"ENSG00000175048"
+"237712_at"	""	NA	"ENSG00000231204"
+"239884_at"	"CADPS"	8618	"ENSG00000163618"
+"236768_at"	"LINC01233"	100128139	"ENSG00000269364"
+"239742_at"	"TULP4"	56995	"ENSG00000130338"
+"239482_x_at"	"ZNF708"	7562	"ENSG00000182141"
+"239575_at"	"OPALIN"	93377	"ENSG00000197430"
+"239439_at"	"AFF4"	27125	"ENSG00000072364"
+"239688_at"	"SMC1A"	8243	"ENSG00000072501"
+"237936_at"	"SMC1A"	8243	"ENSG00000072501"
+"238327_at"	"ODF3B"	440836	"ENSG00000177989"
+"239912_at"	"JOSD1"	9929	"ENSG00000100221"
+"238943_at"	"FIBCD1"	84929	"ENSG00000130720"
+"240042_at"	"FIBCD1"	84929	"ENSG00000130720"
+"237385_at"	"LINC00867"	100506126	"ENSG00000232139"
+"235945_at"	"SRD5A2"	6716	"ENSG00000277893"
+"236344_at"	"PDE1C"	5137	"ENSG00000154678"
+"239218_at"	"PDE1C"	5137	"ENSG00000154678"
+"236503_at"	""	NA	"ENSG00000281468"
+"236577_at"	"PRDM6"	93166	"ENSG00000061455"
+"239835_at"	"KBTBD8"	84541	"ENSG00000163376"
+"238421_at"	"RC3H2"	54542	"ENSG00000056586"
+"238051_x_at"	"PWWP2B"	170394	"ENSG00000171813"
+"235826_at"	""	NA	"ENSG00000261094"
+"236713_at"	""	NA	"ENSG00000273262"
+"239894_at"	"NEBL-AS1"	NA	"ENSG00000231920"
+"236531_at"	""	NA	"ENSG00000280347"
+"237581_at"	""	NA	"ENSG00000279110"
+"236189_at"	"ANKRD50"	57182	"ENSG00000151458"
+"237576_x_at"	""	NA	"ENSG00000231421"
+"235900_at"	"SPNS3"	201305	"ENSG00000182557"
+"237468_at"	"LIFR-AS1"	100506495	"ENSG00000244968"
+"236530_at"	"HS1BP3"	64342	"ENSG00000118960"
+"237407_at"	"HS1BP3"	64342	"ENSG00000118960"
+"240460_at"	"FNDC1-AS1"	NA	"ENSG00000233682"
+"236855_at"	"LINC01561"	404216	"ENSG00000177234"
+"236044_at"	"PLPP4"	196051	"ENSG00000203805"
+"237416_at"	"PLPP4"	196051	"ENSG00000203805"
+"238498_at"	""	NA	"ENSG00000260418"
+"239454_at"	"SCARF2"	91179	"ENSG00000244486"
+"237111_at"	"LINC01913"	388942	"ENSG00000214691"
+"237300_at"	"PSMA3"	5684	"ENSG00000100567"
+"236107_at"	"UBE2Z"	65264	"ENSG00000159202"
+"239750_x_at"	"VAPA"	9218	"ENSG00000101558"
+"236998_at"	"COA3"	28958	"ENSG00000183978"
+"238632_at"	"LINC02562"	NA	"ENSG00000260265"
+"236518_at"	""	NA	"ENSG00000273066"
+"239942_at"	"GNG11"	2791	"ENSG00000127920"
+"239217_x_at"	"ABCC3"	8714	"ENSG00000108846"
+"238845_at"	"SLC30A4"	7782	"ENSG00000104154"
+"239080_at"	"TIMM9"	26520	"ENSG00000100575"
+"236459_at"	"PRKCE"	5581	"ENSG00000171132"
+"237384_x_at"	"KCTD16"	57528	"ENSG00000183775"
+"238878_at"	"ARX"	170302	"ENSG00000004848"
+"240226_at"	"USP8"	9101	"ENSG00000138592"
+"239437_at"	"TSPYL1"	7259	"ENSG00000189241"
+"238066_at"	"RBP7"	116362	"ENSG00000162444"
+"237758_at"	"LINC03074"	100505685	"ENSG00000251249"
+"235658_at"	"JHY"	79864	"ENSG00000109944"
+"239161_at"	"FDX1"	2230	"ENSG00000137714"
+"236700_at"	"EIF3C"	8663	"ENSG00000184110"
+"236130_at"	"SNORA37"	677819	"ENSG00000207233"
+"238992_at"	"POLI"	11201	"ENSG00000101751"
+"240106_at"	"GNPTAB"	79158	"ENSG00000111670"
+"239484_at"	"TRPM7"	54822	"ENSG00000092439"
+"239704_at"	"RNF144B"	255488	"ENSG00000137393"
+"235549_at"	"RNF144B"	255488	"ENSG00000137393"
+"238659_at"	"DELE1"	9812	"ENSG00000081791"
+"238461_at"	"EIF4E3"	317649	"ENSG00000163412"
+"237871_x_at"	"LINC01883"	100996902	"ENSG00000235009"
+"238679_at"	"MESD"	23184	"ENSG00000117899"
+"236152_at"	"PAGE5"	90737	"ENSG00000158639"
+"238596_at"	"FRA10AC1"	118924	"ENSG00000148690"
+"237120_at"	"KRT77"	374454	"ENSG00000189182"
+"235709_at"	"GAS2L3"	283431	"ENSG00000139354"
+"238756_at"	"GAS2L3"	283431	"ENSG00000139354"
+"236092_at"	""	NA	"ENSG00000276449"
+"240079_at"	"ZNF81"	347344	"ENSG00000197779"
+"239450_at"	"NDUFV2-AS1"	NA	"ENSG00000266053"
+"237328_at"	"CCDC198"	55195	"ENSG00000100557"
+"237870_at"	""	NA	"ENSG00000288612"
+"238566_at"	"ZNF334"	55713	"ENSG00000198185"
+"238225_at"	"MIR3142HG"	107075116	"ENSG00000253522"
+"240038_at"	"ELL2"	22936	"ENSG00000118985"
+"238128_at"	""	121725015	"ENSG00000264449"
+"236096_at"	"SIPA1L3"	23094	"ENSG00000105738"
+"237142_at"	"PPARA"	5465	"ENSG00000186951"
+"238752_at"	"GPLD1"	2822	"ENSG00000112293"
+"236219_at"	"SLC35G1"	159371	"ENSG00000176273"
+"239265_at"	"SLC35G1"	159371	"ENSG00000176273"
+"240301_at"	"DPPA2"	151871	"ENSG00000163530"
+"236445_at"	"CYP2T1P"	171523	"ENSG00000233622"
+"235775_at"	"TMTC2"	160335	"ENSG00000179104"
+"235618_at"	"ZNF507"	22847	"ENSG00000168813"
+"239667_at"	"SLC3A1"	6519	"ENSG00000138079"
+"236021_at"	"CCBE1"	147372	"ENSG00000183287"
+"239514_at"	""	NA	"ENSG00000249479"
+"238155_at"	""	NA	"ENSG00000272343"
+"239146_at"	"CLDND1"	56650	"ENSG00000080822"
+"235806_at"	"ARAP3"	64411	"ENSG00000120318"
+"239863_at"	""	NA	"ENSG00000259994"
+"240261_at"	"TOM1L1"	10040	"ENSG00000141198"
+"238842_at"	"LCOR"	84458	"ENSG00000196233"
+"239329_at"	"RAB21"	23011	"ENSG00000080371"
+"236108_at"	"EPG5"	57724	"ENSG00000152223"
+"235550_at"	"MAP9"	79884	"ENSG00000164114"
+"239415_at"	"MAP9"	79884	"ENSG00000164114"
+"236810_at"	"ZNF740"	283337	"ENSG00000139651"
+"238587_at"	"UBASH3B"	84959	"ENSG00000154127"
+"238462_at"	"UBASH3B"	84959	"ENSG00000154127"
+"236490_at"	""	NA	"ENSG00000267396"
+"239478_x_at"	"GPATCH2L"	55668	"ENSG00000089916"
+"238574_at"	"SLC25A51"	92014	"ENSG00000122696"
+"235503_at"	"ASB5"	140458	"ENSG00000164122"
+"239332_at"	"LINC02086"	NA	"ENSG00000244649"
+"238641_at"	"TMEM51-AS1"	200197	"ENSG00000175147"
+"239120_at"	"TMEM51-AS1"	200197	"ENSG00000175147"
+"239873_at"	""	NA	"ENSG00000230289"
+"240402_at"	"KIRREL3"	84623	"ENSG00000149571"
+"238937_at"	"ZNF420"	147923	"ENSG00000197050"
+"238528_at"	"UBR1"	197131	"ENSG00000159459"
+"236579_at"	"NKX2-1-AS1"	100506237	"ENSG00000253563"
+"235981_at"	"PPDPFL"	492307	"ENSG00000168333"
+"235864_at"	"ATP6V1D"	51382	"ENSG00000100554"
+"239583_x_at"	"PSG5"	5673	"ENSG00000204941"
+"238243_at"	"RASA1"	5921	"ENSG00000145715"
+"239318_at"	"FAM118B"	79607	"ENSG00000197798"
+"237288_at"	"TGM7"	116179	"ENSG00000159495"
+"236104_at"	"HNRNPLL"	92906	"ENSG00000143889"
+"238963_at"	"RBM18"	92400	"ENSG00000119446"
+"236226_at"	"BTLA"	151888	"ENSG00000186265"
+"239498_at"	"MRRF"	92399	"ENSG00000148187"
+"235605_at"	"CASZ1"	54897	"ENSG00000130940"
+"235579_at"	"SCAF11"	9169	"ENSG00000139218"
+"238896_at"	"ST3GAL2"	6483	"ENSG00000157350"
+"239776_at"	"TMEM232"	642987	"ENSG00000186952"
+"238425_at"	"PSMB2"	5690	"ENSG00000126067"
+"235800_at"	"HSPA12A"	259217	"ENSG00000165868"
+"239760_at"	""	NA	"ENSG00000279059"
+"237668_at"	"LINC01815"	NA	"ENSG00000235519"
+"240062_at"	"FAM3C"	10447	"ENSG00000196937"
+"237332_at"	"MON2"	23041	"ENSG00000061987"
+"235650_at"	"CDHR3"	222256	"ENSG00000128536"
+"239592_at"	""	NA	"ENSG00000272223"
+"238551_at"	"FUT11"	170384	"ENSG00000196968"
+"235956_at"	"CEP126"	57562	"ENSG00000110318"
+"236325_at"	"CEP126"	57562	"ENSG00000110318"
+"236532_at"	"C11orf87"	399947	"ENSG00000185742"
+"236995_x_at"	"TFEC"	22797	"ENSG00000105967"
+"237706_at"	"STXBP4"	252983	"ENSG00000166263"
+"238206_at"	"RXFP1"	59350	"ENSG00000171509"
+"237282_s_at"	"AKAP14"	158798	"ENSG00000186471"
+"237281_at"	"AKAP14"	158798	"ENSG00000186471"
+"237724_at"	"MARCHF10"	162333	"ENSG00000173838"
+"235914_at"	"SYNPO"	11346	"ENSG00000171992"
+"239530_at"	"ADD2"	119	"ENSG00000075340"
+"237336_at"	"ADD2"	119	"ENSG00000075340"
+"238765_at"	"ATP6V1G1"	9550	"ENSG00000136888"
+"235583_at"	"ILDR1"	286676	"ENSG00000145103"
+"237324_s_at"	"HKDC1"	80201	"ENSG00000156510"
+"237323_at"	"HKDC1"	80201	"ENSG00000156510"
+"239770_at"	"ESYT3"	83850	"ENSG00000158220"
+"236233_at"	"TRIM32"	22954	"ENSG00000119401"
+"240430_at"	"KCMF1"	56888	"ENSG00000176407"
+"235651_at"	"TTC22"	55001	"ENSG00000006555"
+"238846_at"	"TNFRSF11A"	8792	"ENSG00000141655"
+"238448_at"	"MRPL19"	9801	"ENSG00000115364"
+"236392_at"	"CUL9"	23113	"ENSG00000112659"
+"239202_at"	"RAB3B"	5865	"ENSG00000169213"
+"236018_at"	"ADAL"	161823	"ENSG00000168803"
+"238424_at"	"ADAL"	161823	"ENSG00000168803"
+"239711_at"	"ADAL"	161823	"ENSG00000168803"
+"238356_at"	"DOCK11"	139818	"ENSG00000147251"
+"237725_x_at"	"SMC5"	23137	"ENSG00000198887"
+"240006_at"	"SNHG22"	103091864	"ENSG00000267322"
+"238640_at"	"SMIM12"	113444	"ENSG00000163866"
+"240365_at"	"MIR924HG"	647946	"ENSG00000267374"
+"235704_at"	"DAZAP2"	9802	"ENSG00000183283"
+"238055_at"	"ATP8B1-AS1"	100505549	"ENSG00000267040"
+"240066_at"	""	NA	"ENSG00000279265"
+"240184_at"	"SYNPR-AS1"	100874016	"ENSG00000241359"
+"237312_at"	"LINC02492"	NA	"ENSG00000250590"
+"239981_x_at"	""	NA	"ENSG00000288946"
+"236854_at"	"LINC00494"	284749	"ENSG00000235621"
+"237757_at"	"MIR122HG"	NA	"ENSG00000267391"
+"235528_at"	"GUCA1B"	2979	"ENSG00000112599"
+"240336_at"	"HBM"	3042	"ENSG00000206177"
+"237253_at"	"IGSF11-AS1"	100506765	"ENSG00000239877"
+"239309_at"	"DLX6"	1750	"ENSG00000006377"
+"236054_at"	"KDSR-DT"	NA	"ENSG00000267390"
+"236118_at"	"GATA6-AS1"	100128893	"ENSG00000266010"
+"238802_at"	"TYSND1"	219743	"ENSG00000156521"
+"237684_at"	"LINC02032"	100507461	"ENSG00000241131"
+"235908_at"	"MMP11"	4320	"ENSG00000099953"
+"236896_at"	"ZIC1"	7545	"ENSG00000152977"
+"236090_at"	"AMD1"	262	"ENSG00000123505"
+"236595_at"	""	NA	"ENSG00000273445"
+"238318_at"	"IFT74"	80173	"ENSG00000096872"
+"240286_at"	"OFD1"	8481	"ENSG00000046651"
+"238154_at"	"CEP70"	80321	"ENSG00000114107"
+"237799_at"	"SLC22A12"	116085	"ENSG00000197891"
+"236292_at"	"RNF130"	55819	"ENSG00000113269"
+"236748_at"	"RASGEF1C"	255426	"ENSG00000146090"
+"236339_at"	"PPM1L"	151742	"ENSG00000163590"
+"239488_at"	"PPM1L"	151742	"ENSG00000163590"
+"239455_at"	"CPNE8-AS1"	NA	"ENSG00000257718"
+"237188_x_at"	"SUN5"	140732	"ENSG00000167098"
+"236160_at"	"TRIP11"	9321	"ENSG00000100815"
+"238697_at"	"SMIM10L2A"	399668	"ENSG00000178947"
+"239909_at"	"ADAMTSL1"	92949	"ENSG00000178031"
+"239698_at"	""	NA	"ENSG00000270091"
+"235667_at"	"USP46-DT"	NA	"ENSG00000248866"
+"239277_at"	"ACOT9"	23597	"ENSG00000123130"
+"236942_at"	"CCDC182"	101927581	"ENSG00000166329"
+"238728_at"	"MRPS23"	51649	"ENSG00000181610"
+"237820_at"	""	NA	"ENSG00000264914"
+"236378_at"	"CIB4"	130106	"ENSG00000157884"
+"237099_at"	"BPIFA2"	140683	"ENSG00000131050"
+"237604_at"	"CNTFR-AS1"	415056	"ENSG00000237159"
+"240359_at"	"BPIFA3"	128861	"ENSG00000131059"
+"240114_s_at"	"TMEM174"	134288	"ENSG00000164325"
+"238103_at"	"SMIM31"	100505989	"ENSG00000248771"
+"236423_at"	""	NA	"ENSG00000276900"
+"238637_at"	"NUP37"	79023	"ENSG00000075188"
+"239887_at"	"ITPR2-AS1"	NA	"ENSG00000256234"
+"235926_at"	"ANAPC5"	51433	"ENSG00000089053"
+"239651_at"	"ANAPC5"	51433	"ENSG00000089053"
+"235837_at"	"SNIP1"	79753	"ENSG00000163877"
+"238008_at"	"PRR18"	285800	"ENSG00000176381"
+"238829_at"	"EIF3J"	8669	"ENSG00000104131"
+"235512_at"	"CDKL1"	8814	"ENSG00000100490"
+"238633_at"	"EPC1"	80314	"ENSG00000120616"
+"240243_at"	"NUDT6"	11162	"ENSG00000170917"
+"237230_at"	"GPHA2"	170589	"ENSG00000149735"
+"236907_at"	"PABPC1"	26986	"ENSG00000070756"
+"240040_at"	"PSTK"	118672	"ENSG00000179988"
+"237856_at"	"RAP1GDS1"	5910	"ENSG00000138698"
+"236362_at"	"INSYN1-AS1"	NA	"ENSG00000260469"
+"240161_s_at"	"MIR449A"	554213	"ENSG00000198983"
+"236463_at"	"ADAD2"	161931	"ENSG00000140955"
+"235722_at"	"SYNJ2BP"	55333	"ENSG00000213463"
+"236710_at"	"C1orf87"	127795	"ENSG00000162598"
+"236279_at"	""	NA	"ENSG00000275234"
+"236965_at"	"UBQLNL"	143630	"ENSG00000175518"
+"236615_at"	""	NA	"ENSG00000278107"
+"236984_at"	"ODAPH"	152816	"ENSG00000174792"
+"238839_at"	"OTX1"	5013	"ENSG00000115507"
+"239184_at"	"EMC2"	9694	"ENSG00000104412"
+"238232_at"	"MRGPRE"	116534	"ENSG00000184350"
+"238870_at"	"KCNK9"	51305	"ENSG00000169427"
+"236922_at"	"NCK1"	4690	"ENSG00000158092"
+"236989_at"	"EIF3E"	3646	"ENSG00000104408"
+"239187_at"	"DCAF16"	54876	"ENSG00000163257"
+"239101_at"	"ITCH"	83737	"ENSG00000078747"
+"240294_at"	"HIPK2"	28996	"ENSG00000064393"
+"238432_at"	"DLGAP1-AS1"	NA	"ENSG00000177337"
+"235527_at"	"DLGAP1"	9229	"ENSG00000170579"
+"239423_at"	"EFCAB10-AS1"	127138863	"ENSG00000272604"
+"239229_at"	"PHEX"	5251	"ENSG00000102174"
+"236585_at"	""	NA	"ENSG00000270157"
+"238803_at"	"HECTD2"	143279	"ENSG00000165338"
+"236688_at"	"FRMPD3"	84443	"ENSG00000147234"
+"236046_at"	"CCDC127"	133957	"ENSG00000164366"
+"238914_at"	"DCC"	1630	"ENSG00000187323"
+"236639_at"	"SLC16A12-AS1"	NA	"ENSG00000234452"
+"238142_at"	""	NA	"ENSG00000279789"
+"240101_at"	"STAM-DT"	102723166	"ENSG00000260589"
+"237779_at"	""	NA	"ENSG00000279284"
+"237057_at"	"TSGA10"	80705	"ENSG00000135951"
+"238737_at"	"TCEANC2"	127428	"ENSG00000116205"
+"238013_at"	"PLEKHA2"	59339	"ENSG00000169499"
+"237514_at"	"LINC01210"	100507274	"ENSG00000239513"
+"239339_at"	"ZNF397"	84307	"ENSG00000186812"
+"237537_at"	"LINC01360"	101927295	"ENSG00000233973"
+"239821_at"	"BRI3"	25798	"ENSG00000164713"
+"240371_at"	"LINC01192"	647107	"ENSG00000241369"
+"238825_at"	"GCNA"	93953	"ENSG00000147174"
+"238972_at"	"TRIM38"	10475	"ENSG00000112343"
+"238007_at"	"ZNF271P"	10778	"ENSG00000257267"
+"236231_at"	"ZNF271P"	10778	"ENSG00000257267"
+"238693_at"	"PHC3"	80012	"ENSG00000173889"
+"236548_at"	"GIPC2"	54810	"ENSG00000137960"
+"235854_x_at"	"ROCK1"	6093	"ENSG00000067900"
+"237622_at"	"ACO1"	48	"ENSG00000122729"
+"238798_at"	"TAPT1"	202018	"ENSG00000169762"
+"236675_at"	"RPA1"	6117	"ENSG00000132383"
+"236847_at"	"C19orf18"	147685	"ENSG00000177025"
+"236514_at"	"ACOT8"	10005	"ENSG00000101473"
+"239475_at"	"PXYLP1"	92370	"ENSG00000155893"
+"236425_at"	"LUC7L2"	51631	"ENSG00000146963"
+"239190_at"	"VRK3"	51231	"ENSG00000105053"
+"238115_at"	"DNAJC18"	202052	"ENSG00000170464"
+"238923_at"	"SPOP"	8405	"ENSG00000121067"
+"236714_at"	"HTR1A"	3350	"ENSG00000178394"
+"239053_at"	"CIAO1"	9391	"ENSG00000144021"
+"238578_at"	"TMEM182"	130827	"ENSG00000170417"
+"238867_at"	"TMEM182"	130827	"ENSG00000170417"
+"237403_at"	"GFI1B"	8328	"ENSG00000165702"
+"239410_at"	"HK2-DT"	NA	"ENSG00000272711"
+"240176_at"	""	NA	"ENSG00000270190"
+"239170_at"	"ACTR3"	10096	"ENSG00000115091"
+"237247_at"	"USP51"	158880	"ENSG00000247746"
+"238568_s_at"	"NPC1"	4864	"ENSG00000141458"
+"239481_at"	"FAM133A"	286499	"ENSG00000179083"
+"236926_at"	"TBX1"	6899	"ENSG00000184058"
+"237298_at"	"ZNF473CR"	400710	"ENSG00000204666"
+"235736_at"	"SMKR1"	100287482	"ENSG00000240204"
+"238332_at"	"ANKRD29"	147463	"ENSG00000154065"
+"239320_at"	"LRRC4B"	94030	"ENSG00000131409"
+"236695_at"	"STK4-DT"	100505826	"ENSG00000227477"
+"235725_at"	"SMAD4"	4089	"ENSG00000141646"
+"236259_at"	"STK4"	6789	"ENSG00000101109"
+"236151_at"	"SRRM4"	84530	"ENSG00000139767"
+"237828_at"	"SRRM4"	84530	"ENSG00000139767"
+"239879_at"	"LINC01114"	284998	"ENSG00000234177"
+"238724_at"	"BPGM"	669	"ENSG00000172331"
+"236176_at"	"LINC02777"	105378753	"ENSG00000232453"
+"235839_at"	"MIR3667HG"	348645	"ENSG00000188511"
+"238613_at"	"MAP3K20"	51776	"ENSG00000091436"
+"239207_at"	"KDM5C"	8242	"ENSG00000126012"
+"236648_at"	"GMPS"	8833	"ENSG00000163655"
+"239400_at"	""	NA	"ENSG00000204584"
+"240449_at"	"ZNF341"	84905	"ENSG00000131061"
+"237453_at"	"ZNF529"	57711	"ENSG00000186020"
+"240252_at"	""	NA	"ENSG00000277453"
+"237425_at"	"SORCS3-AS1"	100505890	"ENSG00000226387"
+"239910_at"	"PSG6"	5675	"ENSG00000170848"
+"238780_s_at"	"KCNJ5"	3762	"ENSG00000120457"
+"237186_at"	"KCNJ5"	3762	"ENSG00000120457"
+"237274_at"	"LINC01208"	NA	"ENSG00000223715"
+"236156_at"	"LIPA"	3988	"ENSG00000107798"
+"238668_at"	"NCKAP1L"	3071	"ENSG00000123338"
+"235689_at"	"MTFMT"	123263	"ENSG00000103707"
+"238323_at"	"TEAD2"	8463	"ENSG00000074219"
+"238322_s_at"	"TEAD2"	8463	"ENSG00000074219"
+"237421_at"	""	NA	"ENSG00000248636"
+"235612_at"	"PRPF38A"	84950	"ENSG00000134748"
+"235985_at"	"PITPNB"	23760	"ENSG00000180957"
+"238347_at"	"SLC38A10"	124565	"ENSG00000157637"
+"239103_at"	""	NA	"ENSG00000277173"
+"240268_at"	"LINC02372"	NA	"ENSG00000249873"
+"239288_at"	"TNIK"	23043	"ENSG00000154310"
+"236321_at"	"FAM200B"	285550	"ENSG00000237765"
+"237470_at"	"DOCK7"	85440	"ENSG00000116641"
+"240183_at"	"TMEM213"	155006	"ENSG00000214128"
+"239593_at"	"TMEM213"	155006	"ENSG00000214128"
+"236785_at"	"MAP3K5-AS1"	101928461	"ENSG00000234263"
+"236072_at"	"ATAD1"	84896	"ENSG00000138138"
+"239137_x_at"	"LINC03040"	221416	"ENSG00000181577"
+"236935_at"	"PTPN4"	5775	"ENSG00000088179"
+"240081_at"	"MYO5C"	55930	"ENSG00000128833"
+"240344_x_at"	"LYRM7"	90624	"ENSG00000186687"
+"235590_at"	"SLF2"	55719	"ENSG00000119906"
+"238429_at"	"TMEM71"	137835	"ENSG00000165071"
+"235708_at"	"KLB"	152831	"ENSG00000134962"
+"236335_at"	"GUCY1A2"	2977	"ENSG00000152402"
+"235513_at"	"ZNF398"	57541	"ENSG00000197024"
+"238638_at"	"SLC37A2"	219855	"ENSG00000134955"
+"236330_at"	"TM2D3"	80213	"ENSG00000184277"
+"238497_at"	"TLCD5"	219902	"ENSG00000181264"
+"237833_s_at"	"SNCAIP"	9627	"ENSG00000064692"
+"237834_at"	"SNCAIP"	9627	"ENSG00000064692"
+"237252_at"	"THBD"	7056	"ENSG00000178726"
+"239715_at"	""	NA	"ENSG00000291015"
+"237205_at"	"CCDC196"	440184	"ENSG00000196553"
+"237806_s_at"	"MIR646HG"	284757	"ENSG00000228340"
+"237805_at"	"MIR646HG"	284757	"ENSG00000228340"
+"236846_at"	"MIR646HG"	284757	"ENSG00000228340"
+"239548_at"	"NEGR1"	257194	"ENSG00000172260"
+"236536_at"	"GALNT13"	114805	"ENSG00000144278"
+"236040_at"	"XAGE3"	170626	"ENSG00000171402"
+"237033_at"	"SHISAL2A"	348378	"ENSG00000182183"
+"239921_at"	"COL28A1"	340267	"ENSG00000215018"
+"235761_at"	"TPST2"	8459	"ENSG00000128294"
+"237494_at"	""	105370829	"ENSG00000260937"
+"237654_at"	"PPP1R36"	145376	"ENSG00000165807"
+"239584_at"	"LINC02388"	101927653	"ENSG00000257259"
+"238061_at"	"LGI3"	203190	"ENSG00000168481"
+"236645_at"	"HBP1"	26959	"ENSG00000105856"
+"237413_at"	"MAPK10"	5602	"ENSG00000109339"
+"237255_at"	"PELATON"	100506115	"ENSG00000224397"
+"238123_at"	"GABRQ"	55879	"ENSG00000268089"
+"236403_at"	"THAP7-AS1"	439931	"ENSG00000230513"
+"239015_at"	"THAP7-AS1"	439931	"ENSG00000230513"
+"236508_at"	"SLC6A5"	9152	"ENSG00000165970"
+"235706_at"	"CPM"	1368	"ENSG00000135678"
+"239535_at"	"POMT2"	29954	"ENSG00000009830"
+"235816_s_at"	"RGL4"	266747	"ENSG00000159496"
+"239248_at"	"SDCBP2-AS1"	100507495	"ENSG00000234684"
+"236520_at"	"SDCBP2-AS1"	100507495	"ENSG00000234684"
+"238732_at"	"COL24A1"	255631	"ENSG00000171502"
+"236204_at"	"COPS8"	10920	"ENSG00000198612"
+"239789_at"	"CSTPP1"	79096	"ENSG00000149179"
+"237271_at"	"LINC03043"	NA	"ENSG00000275356"
+"237151_s_at"	"CFAP221"	200373	"ENSG00000163075"
+"237152_at"	"CFAP221"	200373	"ENSG00000163075"
+"239632_at"	"NLGN3"	54413	"ENSG00000196338"
+"238692_at"	"ABTB3"	121551	"ENSG00000151136"
+"236030_at"	"RCOR2"	283248	"ENSG00000167771"
+"235541_at"	"LAS1L"	81887	"ENSG00000001497"
+"237021_at"	"CEP83-DT"	144486	"ENSG00000278916"
+"237260_at"	""	100505978	"ENSG00000257711"
+"239303_at"	"PIWIL2"	55124	"ENSG00000197181"
+"239369_at"	"LCN8"	138307	"ENSG00000204001"
+"239703_at"	"ZNF579"	163033	"ENSG00000218891"
+"238683_at"	"ZNF524"	147807	"ENSG00000171443"
+"238794_at"	"SFR1"	119392	"ENSG00000156384"
+"236027_at"	"SFR1"	119392	"ENSG00000156384"
+"238590_x_at"	"TMEM107"	84314	"ENSG00000179029"
+"239824_s_at"	"TMEM107"	84314	"ENSG00000179029"
+"237760_at"	"LINC01364"	100505768	"ENSG00000227290"
+"238146_at"	"RMDN1"	51115	"ENSG00000176623"
+"239219_at"	"AURKB"	9212	"ENSG00000178999"
+"239420_at"	"LINC01187"	NA	"ENSG00000249601"
+"239422_at"	"GPC2"	221914	"ENSG00000213420"
+"236064_at"	"SLC25A35"	399512	"ENSG00000125434"
+"239710_at"	"FIGN"	55137	"ENSG00000182263"
+"238964_at"	"FIGN"	55137	"ENSG00000182263"
+"238885_at"	"KIAA1549"	57670	"ENSG00000122778"
+"237101_at"	"GHSR"	2693	"ENSG00000121853"
+"239741_at"	"PYGO1"	26108	"ENSG00000171016"
+"239082_at"	"FZD3"	7976	"ENSG00000104290"
+"236377_at"	"TMEM132D"	121256	"ENSG00000151952"
+"237286_at"	"INTS9"	55756	"ENSG00000104299"
+"239204_at"	"ZNF75A"	7627	"ENSG00000162086"
+"239738_at"	"DACH2"	117154	"ENSG00000126733"
+"236188_s_at"	""	NA	"ENSG00000183562"
+"240100_at"	"LINC02036"	NA	"ENSG00000225742"
+"235647_at"	"AP4S1"	11154	"ENSG00000100478"
+"239916_at"	"CFAP52"	146845	"ENSG00000166596"
+"238708_at"	"ZNF582-DT"	386758	"ENSG00000267454"
+"236262_at"	"MMRN2"	79812	"ENSG00000173269"
+"237439_at"	"USP43"	124739	"ENSG00000154914"
+"236129_at"	"GALNT5"	11227	"ENSG00000136542"
+"237183_at"	"GALNT5"	11227	"ENSG00000136542"
+"237170_at"	""	100507384	"ENSG00000254519"
+"236424_at"	"CEP250"	11190	"ENSG00000126001"
+"239637_at"	"RAB18"	22931	"ENSG00000099246"
+"237515_at"	"TLCD4"	148534	"ENSG00000152078"
+"237029_at"	"HGD"	3081	"ENSG00000113924"
+"237610_at"	"PSMD14-DT"	NA	"ENSG00000235724"
+"235987_at"	""	NA	"ENSG00000270127"
+"239401_at"	"S1PR1"	1901	"ENSG00000170989"
+"240025_x_at"	"S1PR1"	1901	"ENSG00000170989"
+"239221_at"	"ADGRA1"	84435	"ENSG00000197177"
+"237476_at"	""	NA	"ENSG00000275409"
+"240029_at"	"FREY1"	143678	"ENSG00000234776"
+"237829_at"	""	NA	"ENSG00000180019"
+"238532_at"	"DPF3"	8110	"ENSG00000205683"
+"236442_at"	"DPF3"	8110	"ENSG00000205683"
+"236089_at"	"HECW2"	57520	"ENSG00000138411"
+"239952_at"	"ZEB1"	6935	"ENSG00000148516"
+"236808_at"	"FGFR1OP2"	26127	"ENSG00000111790"
+"236677_at"	"NGB"	58157	"ENSG00000165553"
+"236236_at"	"WNK3"	65267	"ENSG00000196632"
+"238955_at"	"RFTN2"	130132	"ENSG00000162944"
+"239705_at"	"IGHV3-74"	NA	"ENSG00000224650"
+"238017_at"	"SDR16C5"	195814	"ENSG00000170786"
+"235773_at"	"ZIK1"	284307	"ENSG00000171649"
+"237896_at"	"NODAL"	4838	"ENSG00000156574"
+"238472_at"	"FBXO9"	26268	"ENSG00000112146"
+"237032_x_at"	"SIPA1L1"	26037	"ENSG00000197555"
+"236140_at"	"GCLM"	2730	"ENSG00000023909"
+"238002_at"	"GOLIM4"	27333	"ENSG00000173905"
+"238454_at"	"ZNF540"	163255	"ENSG00000171817"
+"236170_x_at"	"HERPUD2-AS1"	101930085	"ENSG00000271122"
+"237992_at"	""	NA	"ENSG00000224099"
+"236831_at"	"CCDC50"	152137	"ENSG00000152492"
+"238121_at"	"GK5"	256356	"ENSG00000175066"
+"235495_at"	"CCDC97"	90324	"ENSG00000142039"
+"239377_at"	"EIF1AD"	84285	"ENSG00000175376"
+"239077_at"	"CSGALNACT2"	55454	"ENSG00000169826"
+"239158_at"	""	NA	"ENSG00000277744"
+"238721_at"	"MDH1B"	130752	"ENSG00000138400"
+"237540_at"	"LINC00644"	101954204	"ENSG00000259142"
+"240257_at"	"SYNJ2"	8871	"ENSG00000078269"
+"238229_at"	"TMEM67"	91147	"ENSG00000164953"
+"240312_at"	""	389895	"ENSG00000230707"
+"235560_at"	"NOVA2"	4858	"ENSG00000104967"
+"238904_at"	"NOVA2"	4858	"ENSG00000104967"
+"239522_at"	"IL12RB1"	3594	"ENSG00000096996"
+"238754_at"	""	NA	"ENSG00000271155"
+"236576_at"	"CTNNA3"	29119	"ENSG00000183230"
+"239525_at"	"CTTNBP2NL"	55917	"ENSG00000143079"
+"235614_at"	"TMEM151A"	256472	"ENSG00000179292"
+"240273_at"	"LINC01525"	104355292	"ENSG00000235202"
+"238664_s_at"	""	NA	"ENSG00000266709"
+"240103_at"	"MAILR"	NA	"ENSG00000253320"
+"237273_at"	"KCNU1"	157855	"ENSG00000215262"
+"237115_at"	"LINC02924"	NA	"ENSG00000232874"
+"238653_at"	"LRIG2"	9860	"ENSG00000198799"
+"236254_at"	"VPS13B"	157680	"ENSG00000132549"
+"236401_at"	"GIMAP1"	170575	"ENSG00000213203"
+"236583_at"	"GIMAP1"	170575	"ENSG00000213203"
+"239438_at"	"RAPGEF6"	51735	"ENSG00000158987"
+"237202_at"	"PGPEP1"	54858	"ENSG00000130517"
+"239109_at"	"SYT15B"	102724488	"ENSG00000277758"
+"239110_s_at"	"SYT15B"	102724488	"ENSG00000277758"
+"238881_at"	"SLC35A3"	23443	"ENSG00000117620"
+"237808_at"	"ST7-AS2"	93654	"ENSG00000226367"
+"238543_x_at"	"MDGA1"	266727	"ENSG00000112139"
+"240391_at"	"NDUFB2"	4708	"ENSG00000090266"
+"238753_at"	"NCS1"	23413	"ENSG00000107130"
+"237083_at"	"MRPS33"	51650	"ENSG00000090263"
+"237063_at"	""	NA	"ENSG00000262714"
+"240032_at"	""	105274304	"ENSG00000261335"
+"238778_at"	"MPP7"	143098	"ENSG00000150054"
+"238451_at"	"MPP7"	143098	"ENSG00000150054"
+"237495_at"	"MPP7"	143098	"ENSG00000150054"
+"240051_at"	"TPD52L3"	89882	"ENSG00000170777"
+"236207_at"	"ITPRID2"	6744	"ENSG00000138434"
+"235665_at"	""	NA	"ENSG00000268047"
+"235815_at"	"TSHZ2"	128553	"ENSG00000182463"
+"235616_at"	"TSHZ2"	128553	"ENSG00000182463"
+"238577_s_at"	"TSHZ2"	128553	"ENSG00000182463"
+"235721_at"	"DTX3"	196403	"ENSG00000178498"
+"237222_at"	"FSD2"	123722	"ENSG00000186628"
+"237200_at"	"LINC02028"	285389	"ENSG00000230102"
+"236227_at"	"TMEM161B"	153396	"ENSG00000164180"
+"238783_at"	"TMEM161B"	153396	"ENSG00000164180"
+"238757_at"	"DBF4B"	80174	"ENSG00000161692"
+"238508_at"	"DBF4B"	80174	"ENSG00000161692"
+"237147_at"	""	NA	"ENSG00000273013"
+"239837_at"	"ADAM11"	4185	"ENSG00000073670"
+"239810_at"	"VASH1"	22846	"ENSG00000071246"
+"239616_at"	"REXO2"	25996	"ENSG00000076043"
+"236131_at"	""	NA	"ENSG00000270953"
+"239690_at"	""	NA	"ENSG00000273729"
+"240242_at"	"ATP13A4"	84239	"ENSG00000127249"
+"240206_at"	"TARS1"	6897	"ENSG00000113407"
+"239596_at"	"SLC30A7"	148867	"ENSG00000162695"
+"238219_at"	"C12orf50"	160419	"ENSG00000165805"
+"236196_at"	"ZNF326"	284695	"ENSG00000162664"
+"238799_at"	"DMAC2L"	27109	"ENSG00000125375"
+"239859_x_at"	"DMAC2L"	27109	"ENSG00000125375"
+"237787_at"	"TENT5C-DT"	NA	"ENSG00000236866"
+"237325_at"	"DRICH1"	51233	"ENSG00000189269"
+"240233_at"	"NUP50-DT"	100506714	"ENSG00000226328"
+"238609_at"	"FAM200A"	221786	"ENSG00000221909"
+"237687_at"	"AGBL1"	123624	"ENSG00000273540"
+"238622_at"	"RAP2B"	5912	"ENSG00000181467"
+"235871_at"	"LIPH"	200879	"ENSG00000163898"
+"236747_at"	"CLIP1-AS1"	NA	"ENSG00000257097"
+"236249_at"	"IKBIP"	121457	"ENSG00000166130"
+"237863_at"	"TMPO"	7112	"ENSG00000120802"
+"238105_x_at"	"WNT7B"	7477	"ENSG00000188064"
+"238618_at"	"NF2"	4771	"ENSG00000186575"
+"235715_at"	"SYCE1"	93426	"ENSG00000171772"
+"238331_at"	"SPRN"	503542	"ENSG00000203772"
+"235635_at"	"ARHGAP5"	394	"ENSG00000100852"
+"239107_at"	"ZNF280D"	54816	"ENSG00000137871"
+"236217_at"	"SLC31A1"	1317	"ENSG00000136868"
+"235880_at"	"SRRM3"	222183	"ENSG00000177679"
+"235930_at"	"KCNMB4"	27345	"ENSG00000135643"
+"236529_at"	"SSC4D"	136853	"ENSG00000146700"
+"236133_x_at"	"ZNF254"	9534	"ENSG00000213096"
+"238835_at"	"AVPR1A"	552	"ENSG00000166148"
+"238583_at"	"MSRB3"	253827	"ENSG00000174099"
+"238567_at"	"SGPP2"	130367	"ENSG00000163082"
+"235626_at"	"CAMK1D"	57118	"ENSG00000183049"
+"239349_at"	"C1QTNF7"	114905	"ENSG00000163145"
+"239983_at"	"SLC30A8"	169026	"ENSG00000164756"
+"237212_at"	"STEAP3"	55240	"ENSG00000115107"
+"238030_at"	"ZNF268"	10795	"ENSG00000090612"
+"238192_at"	"ZNF268"	10795	"ENSG00000090612"
+"236939_at"	"HACD4"	401494	"ENSG00000188921"
+"235746_s_at"	"PLA2R1"	22925	"ENSG00000153246"
+"240039_at"	"PLA2R1"	22925	"ENSG00000153246"
+"239290_at"	"FRMPD4"	9758	"ENSG00000169933"
+"240324_at"	""	NA	"ENSG00000273402"
+"237543_at"	"TBC1D8-AS1"	100506286	"ENSG00000272902"
+"238810_at"	"RFX3"	5991	"ENSG00000080298"
+"236034_at"	"ANGPT2"	285	"ENSG00000091879"
+"237261_at"	"ANGPT2"	285	"ENSG00000091879"
+"236430_at"	"TMED6"	146456	"ENSG00000157315"
+"235872_at"	"TERF2"	7014	"ENSG00000132604"
+"239257_at"	"MOV10L1"	54456	"ENSG00000073146"
+"238539_at"	"HPS3"	84343	"ENSG00000163755"
+"237162_at"	"KANK1"	23189	"ENSG00000107104"
+"238789_at"	"KANK1"	23189	"ENSG00000107104"
+"235823_at"	"ACSF3"	197322	"ENSG00000176715"
+"237577_at"	"PCNP"	57092	"ENSG00000081154"
+"235545_at"	"DEPDC1"	55635	"ENSG00000024526"
+"237598_at"	"SEC1P"	653677	"ENSG00000232871"
+"239617_at"	"GHRLOS"	100126793	"ENSG00000240288"
+"235932_x_at"	"HMCN2"	256158	"ENSG00000148357"
+"238561_s_at"	"UTP23"	84294	"ENSG00000147679"
+"238562_at"	"UTP23"	84294	"ENSG00000147679"
+"238669_at"	"PTGS1"	5742	"ENSG00000095303"
+"235778_s_at"	"ANKRD44"	91526	"ENSG00000065413"
+"235777_at"	"ANKRD44"	91526	"ENSG00000065413"
+"238426_at"	"TMEM130"	222865	"ENSG00000166448"
+"236098_at"	"SMIM6"	100130933	"ENSG00000259120"
+"236886_at"	"NINJ2-AS1"	100049716	"ENSG00000177406"
+"239150_at"	"SNTN"	132203	"ENSG00000188817"
+"237240_at"	""	NA	"ENSG00000271843"
+"240070_at"	"TIGIT"	201633	"ENSG00000181847"
+"239670_at"	"WNK2"	65268	"ENSG00000165238"
+"235617_x_at"	"STRIT1"	100507537	"ENSG00000240045"
+"238947_at"	"MFSD3"	113655	"ENSG00000167700"
+"237056_at"	"INSC"	387755	"ENSG00000188487"
+"236042_at"	""	NA	"ENSG00000250132"
+"239322_at"	"CEP41"	95681	"ENSG00000106477"
+"239328_at"	"RCSD1"	92241	"ENSG00000198771"
+"235532_at"	"PIGM"	93183	"ENSG00000143315"
+"236622_at"	"PIGM"	93183	"ENSG00000143315"
+"238608_at"	"LAMB1"	3912	"ENSG00000091136"
+"237559_at"	"GPR55"	9290	"ENSG00000135898"
+"236749_at"	"MNT"	4335	"ENSG00000070444"
+"238931_at"	"METTL16"	79066	"ENSG00000127804"
+"236261_at"	"OSBPL6"	114880	"ENSG00000079156"
+"238575_at"	"OSBPL6"	114880	"ENSG00000079156"
+"235889_at"	"RSPH3"	83861	"ENSG00000130363"
+"236587_at"	"DNAAF11"	23639	"ENSG00000129295"
+"238293_at"	""	NA	"ENSG00000234810"
+"238057_at"	"USP45"	85015	"ENSG00000123552"
+"237759_at"	"CD48"	962	"ENSG00000117091"
+"238771_at"	"FBRS"	64319	"ENSG00000156860"
+"235553_at"	"GAPVD1"	26130	"ENSG00000165219"
+"236481_at"	"FAH"	2184	"ENSG00000103876"
+"236138_at"	"LMBRD2"	92255	"ENSG00000164187"
+"239232_at"	"MSI2"	124540	"ENSG00000153944"
+"236709_at"	"CTXND1"	100996492	"ENSG00000259417"
+"240209_at"	"C16orf78"	123970	"ENSG00000166152"
+"236927_at"	"SVEP1"	79987	"ENSG00000165124"
+"238515_at"	"NUDT16"	131870	"ENSG00000198585"
+"238164_at"	"USP6NL"	9712	"ENSG00000148429"
+"235569_at"	"VPS37D"	155382	"ENSG00000176428"
+"239194_at"	"DNAJC30"	84277	"ENSG00000176410"
+"239018_at"	"DNAJC30"	84277	"ENSG00000176410"
+"237161_at"	"FBN1-DT"	105370809	"ENSG00000259705"
+"237743_at"	""	NA	"ENSG00000273925"
+"239748_x_at"	"OCIAD1"	54940	"ENSG00000109180"
+"239384_at"	""	NA	"ENSG00000264112"
+"239289_x_at"	"FAN1"	22909	"ENSG00000198690"
+"238467_at"	"DYNLL2"	140735	"ENSG00000264364"
+"239515_at"	"SPA17"	53340	"ENSG00000064199"
+"235548_at"	"APCDD1L"	164284	"ENSG00000198768"
+"239786_at"	"DCN"	1634	"ENSG00000011465"
+"238258_at"	"TMEM270"	135886	"ENSG00000175877"
+"235781_at"	"CACNA1B"	774	"ENSG00000148408"
+"236359_at"	"SCN4B"	6330	"ENSG00000177098"
+"236469_at"	""	NA	"ENSG00000261187"
+"238690_at"	"LINC03072"	NA	"ENSG00000273270"
+"239154_at"	"LINC03072"	NA	"ENSG00000273270"
+"238782_at"	"WDR13"	64743	"ENSG00000101940"
+"238548_at"	"PANK2"	80025	"ENSG00000125779"
+"239435_x_at"	"SHROOM1"	134549	"ENSG00000164403"
+"239732_x_at"	"FAM47C"	442444	"ENSG00000198173"
+"235577_at"	"ZNF652"	22834	"ENSG00000198740"
+"236095_at"	"NTRK2"	4915	"ENSG00000148053"
+"239538_at"	"ZRANB3"	84083	"ENSG00000121988"
+"240192_at"	"GATA3-AS1"	399717	"ENSG00000197308"
+"236303_at"	"ARF3"	377	"ENSG00000134287"
+"239864_at"	"BBIP1"	92482	"ENSG00000214413"
+"236043_at"	"BBIP1"	92482	"ENSG00000214413"
+"235764_at"	"PRDM5"	11107	"ENSG00000138738"
+"239335_at"	"ZNF710"	374655	"ENSG00000140548"
+"239700_at"	"ZNF710"	374655	"ENSG00000140548"
+"238862_at"	"MFSD4A"	148808	"ENSG00000174514"
+"239304_at"	"MFSD4A"	148808	"ENSG00000174514"
+"238444_at"	"ZNF618"	114991	"ENSG00000157657"
+"236218_at"	"PHOSPHO1"	162466	"ENSG00000173868"
+"239027_at"	"DOCK8"	81704	"ENSG00000107099"
+"236035_at"	"FZD1"	8321	"ENSG00000157240"
+"237659_at"	""	286023	"ENSG00000183470"
+"235546_at"	"SPINT1"	6692	"ENSG00000166145"
+"239669_at"	""	NA	"ENSG00000282988"
+"235599_at"	"LINC01139"	339535	"ENSG00000215808"
+"236471_at"	"NFE2L3"	9603	"ENSG00000050344"
+"238152_at"	"ZFTA"	65998	"ENSG00000188070"
+"236041_at"	"TBC1D9B"	23061	"ENSG00000197226"
+"238072_at"	"CLK3"	1198	"ENSG00000179335"
+"240343_at"	"LEF1"	51176	"ENSG00000138795"
+"238761_at"	"ELK4"	2005	"ENSG00000158711"
+"236760_at"	"AMMECR1"	9949	"ENSG00000101935"
+"237206_at"	"MYOCD"	93649	"ENSG00000141052"
+"236208_at"	"MOCS2"	4338	"ENSG00000164172"
+"238020_at"	"PSMC2"	5701	"ENSG00000161057"
+"238533_at"	"EPHA7"	2045	"ENSG00000135333"
+"238584_at"	"IQCA1"	79781	"ENSG00000132321"
+"235975_at"	"MTO1"	25821	"ENSG00000135297"
+"239196_at"	"ANKRD22"	118932	"ENSG00000152766"
+"238439_at"	"ANKRD22"	118932	"ENSG00000152766"
+"237522_at"	""	NA	"ENSG00000286116"
+"238589_s_at"	"ATXN2"	6311	"ENSG00000204842"
+"237434_x_at"	"MSANTD1"	345222	"ENSG00000188981"
+"239768_x_at"	"GPATCH2"	55105	"ENSG00000092978"
+"236026_at"	"GPATCH2"	55105	"ENSG00000092978"
+"238981_at"	"TMEM223"	79064	"ENSG00000168569"
+"238255_at"	""	NA	"ENSG00000248401"
+"238859_at"	"FAM149B1"	317662	"ENSG00000138286"
+"239433_at"	"LRRC8E"	80131	"ENSG00000171017"
+"235916_at"	"YPEL4"	219539	"ENSG00000166793"
+"236148_at"	"LINC01852"	107984773	"ENSG00000236914"
+"238699_s_at"	"CASK"	8573	"ENSG00000147044"
+"238698_at"	"CASK"	8573	"ENSG00000147044"
+"238852_at"	"PRRX1"	5396	"ENSG00000116132"
+"238423_at"	"SYTL3"	94120	"ENSG00000164674"
+"235604_x_at"	"ZNF493"	284443	"ENSG00000196268"
+"240155_x_at"	"ZNF493"	284443	"ENSG00000196268"
+"238122_at"	"RBM12B"	389677	"ENSG00000183808"
+"240127_at"	"RBM12B"	389677	"ENSG00000183808"
+"237910_x_at"	"RBM12B"	389677	"ENSG00000183808"
+"239360_at"	"LYPLAL1-AS1"	NA	"ENSG00000228536"
+"235634_at"	"PURG"	29942	"ENSG00000172733"
+"238218_at"	"OOEP"	441161	"ENSG00000203907"
+"240168_at"	"XPO7"	23039	"ENSG00000130227"
+"235796_at"	"XPO7"	23039	"ENSG00000130227"
+"238050_at"	"ANTXR2"	118429	"ENSG00000163297"
+"237619_at"	"FAM217A"	222826	"ENSG00000145975"
+"239790_s_at"	"EXOSC2"	23404	"ENSG00000130713"
+"238741_at"	"FAM83A"	84985	"ENSG00000147689"
+"238460_at"	"FAM83A"	84985	"ENSG00000147689"
+"239586_at"	"FAM83A"	84985	"ENSG00000147689"
+"239576_at"	"MTUS1"	57509	"ENSG00000129422"
+"238658_at"	""	NA	"ENSG00000276724"
+"236658_at"	"RPS6KA2-AS1"	NA	"ENSG00000231654"
+"239388_at"	"RNASET2"	8635	"ENSG00000026297"
+"237418_at"	"CDK5RAP2"	55755	"ENSG00000136861"
+"235516_at"	"SEPSECS"	51091	"ENSG00000109618"
+"240300_at"	"TK2"	7084	"ENSG00000166548"
+"239385_at"	"TFG"	10342	"ENSG00000114354"
+"239665_at"	""	441179	"ENSG00000269155"
+"238723_at"	"ATXN3"	4287	"ENSG00000066427"
+"238499_at"	"SLC45A3"	85414	"ENSG00000158715"
+"240153_at"	"ILDR2"	387597	"ENSG00000143195"
+"236488_s_at"	""	NA	"ENSG00000270055"
+"239852_at"	"MMAA"	166785	"ENSG00000151611"
+"236347_at"	"MMAA"	166785	"ENSG00000151611"
+"237831_x_at"	"MMAA"	166785	"ENSG00000151611"
+"238553_at"	""	NA	"ENSG00000289444"
+"237939_at"	"EPHA5"	2044	"ENSG00000145242"
+"237204_at"	""	NA	"ENSG00000287553"
+"235887_at"	"HIC1"	3090	"ENSG00000177374"
+"236731_at"	"LRRC2-AS1"	83598	"ENSG00000268324"
+"237595_at"	"LMX1A-AS2"	NA	"ENSG00000224702"
+"239057_at"	"LMOD2"	442721	"ENSG00000170807"
+"239042_at"	"TSR1"	55720	"ENSG00000167721"
+"235677_at"	"TSR1"	55720	"ENSG00000167721"
+"238298_at"	"LINC00845"	100507058	"ENSG00000227244"
+"237542_at"	""	NA	"ENSG00000288915"
+"240005_at"	"LARP4B"	23185	"ENSG00000107929"
+"238015_at"	"C4orf46"	201725	"ENSG00000205208"
+"236812_at"	"STMN4"	81551	"ENSG00000015592"
+"238675_x_at"	"BTF3L4"	91408	"ENSG00000134717"
+"236185_at"	"DCLRE1A"	9937	"ENSG00000198924"
+"236383_at"	"LYVE1"	10894	"ENSG00000133800"
+"235978_at"	"FABP4"	2167	"ENSG00000170323"
+"236126_at"	"ACVR2B"	93	"ENSG00000114739"
+"236028_at"	"IBSP"	3381	"ENSG00000029559"
+"235720_at"	"CRIP3"	401262	"ENSG00000146215"
+"238725_at"	"IRF1"	3659	"ENSG00000125347"
+"236497_at"	""	NA	"ENSG00000279369"
+"236614_at"	""	NA	"ENSG00000279369"
+"239801_at"	"RNF40"	9810	"ENSG00000103549"
+"235799_at"	"NSL1"	25936	"ENSG00000117697"
+"235536_at"	"SNORD89"	692205	"ENSG00000212283"
+"238474_at"	"NUP43"	348995	"ENSG00000120253"
+"239930_at"	"GALNT2"	2590	"ENSG00000143641"
+"236899_at"	""	NA	"ENSG00000228830"
+"235692_at"	"SH3KBP1"	30011	"ENSG00000147010"
+"240383_at"	"UBE2D3"	7323	"ENSG00000109332"
+"239608_at"	"LPCAT4"	254531	"ENSG00000176454"
+"238542_at"	"ULBP2"	80328	"ENSG00000131015"
+"236326_at"	"HDAC7"	51564	"ENSG00000061273"
+"236008_at"	""	100507103	"ENSG00000237422"
+"235982_at"	"FCRL1"	115350	"ENSG00000163534"
+"236780_at"	""	NA	"ENSG00000289285"
+"239875_at"	""	NA	"ENSG00000284052"
+"237603_at"	"C1orf100"	200159	"ENSG00000173728"
+"239258_at"	"RHOQ"	23433	"ENSG00000119729"
+"235596_at"	"GTF2H2C"	728340	"ENSG00000183474"
+"236581_at"	""	NA	"ENSG00000273384"
+"239049_at"	"CRIPT"	9419	"ENSG00000119878"
+"239050_s_at"	"CRIPT"	9419	"ENSG00000119878"
+"240332_at"	""	NA	"ENSG00000273403"
+"235562_at"	"C3orf70"	285382	"ENSG00000187068"
+"236937_at"	"VPS8"	23355	"ENSG00000156931"
+"239831_at"	"TMEM106C"	79022	"ENSG00000134291"
+"237675_at"	"BRINP3-DT"	NA	"ENSG00000237457"
+"238417_at"	"PGM2L1"	283209	"ENSG00000165434"
+"235937_at"	"OCLN"	100506658	"ENSG00000197822"
+"236875_at"	"ATP6V1FNB"	100130705	"ENSG00000272899"
+"239266_at"	"SNHG5"	NA	"ENSG00000203875"
+"239963_at"	""	NA	"ENSG00000289397"
+"235594_at"	"AIMP1"	9255	"ENSG00000164022"
+"236308_at"	"VSTM2A"	222008	"ENSG00000170419"
+"238716_at"	""	NA	"ENSG00000255495"
+"238458_at"	"MICU3"	286097	"ENSG00000155970"
+"239346_at"	"GTF2H3"	2967	"ENSG00000111358"
+"237550_at"	"LINC01735"	NA	"ENSG00000261453"
+"238779_at"	"DCP2"	167227	"ENSG00000172795"
+"238024_at"	""	NA	"ENSG00000265967"
+"239839_at"	"ZNF555"	148254	"ENSG00000186300"
+"239047_at"	"PABIR3"	159091	"ENSG00000156500"
+"239922_at"	"CCDC142"	84865	"ENSG00000135637"
+"236421_at"	"ANKRD45"	339416	"ENSG00000183831"
+"240160_x_at"	"SMYD3-IT1"	NA	"ENSG00000230184"
+"236225_at"	"GGT6"	124975	"ENSG00000167741"
+"236055_at"	"DQX1"	165545	"ENSG00000144045"
+"235759_at"	""	NA	"ENSG00000289502"
+"239929_at"	"PM20D1"	148811	"ENSG00000162877"
+"236905_at"	"NUP133"	55746	"ENSG00000069248"
+"239006_at"	"SLC26A7"	115111	"ENSG00000147606"
+"238500_at"	"EMP2"	2013	"ENSG00000213853"
+"235950_at"	"ZNF688"	146542	"ENSG00000229809"
+"238004_at"	"PGBD2"	267002	"ENSG00000185220"
+"237097_at"	"EHD4"	30844	"ENSG00000103966"
+"239472_at"	"EHD4"	30844	"ENSG00000103966"
+"235812_at"	"CNEP1R1"	255919	"ENSG00000205423"
+"236068_s_at"	"C3orf14"	57415	"ENSG00000114405"
+"237406_at"	""	NA	"ENSG00000227200"
+"236800_at"	"UCMA"	221044	"ENSG00000165623"
+"238935_at"	"RPS27L"	51065	"ENSG00000185088"
+"235751_s_at"	"VMO1"	284013	"ENSG00000182853"
+"235965_at"	"BHLHA15"	168620	"ENSG00000180535"
+"235660_at"	"SNX19"	399979	"ENSG00000120451"
+"238158_at"	"MEIG1"	644890	"ENSG00000197889"
+"237817_at"	"SSR3"	6747	"ENSG00000114850"
+"239242_at"	"SLC25A5-AS1"	100303728	"ENSG00000224281"
+"240180_at"	"MAP7"	9053	"ENSG00000135525"
+"236523_at"	"C4orf54"	285556	"ENSG00000248713"
+"240140_s_at"	"LRIG1"	26018	"ENSG00000144749"
+"238339_x_at"	"LRIG1"	26018	"ENSG00000144749"
+"236264_at"	"ADGRL3"	23284	"ENSG00000150471"
+"236711_at"	"ZIC4"	84107	"ENSG00000174963"
+"236641_at"	"KIF14"	9928	"ENSG00000118193"
+"239933_x_at"	"BBOF1"	80127	"ENSG00000119636"
+"237382_at"	"COLGALT2"	23127	"ENSG00000198756"
+"236792_at"	"CFL1"	1072	"ENSG00000172757"
+"239828_at"	"AK9"	221264	"ENSG00000155085"
+"236278_at"	"H3C6"	8353	"ENSG00000274750"
+"240329_at"	"PTP4A1"	7803	"ENSG00000112245"
+"236495_at"	"NAMPT"	10135	"ENSG00000105835"
+"236313_at"	"CDKN2B"	1030	"ENSG00000147883"
+"236260_at"	"USP7-AS1"	105371074	"ENSG00000260979"
+"236162_at"	"USP7-AS1"	105371074	"ENSG00000260979"
+"238494_at"	"TRAF3IP1"	26146	"ENSG00000204104"
+"236029_at"	"FAT3"	120114	"ENSG00000165323"
+"240181_at"	"ZSCAN12"	9753	"ENSG00000158691"
+"235949_at"	"TTC26"	79989	"ENSG00000105948"
+"238311_at"	"UFL1"	23376	"ENSG00000014123"
+"238291_at"	"UFL1"	23376	"ENSG00000014123"
+"238602_at"	"DIS3L2"	129563	"ENSG00000144535"
+"238853_at"	"RAB3IP"	117177	"ENSG00000127328"
+"238526_at"	"RAB3IP"	117177	"ENSG00000127328"
+"236123_at"	"WNT2B"	7482	"ENSG00000134245"
+"238512_at"	"WNT2B"	7482	"ENSG00000134245"
+"235801_at"	"TUSC3"	7991	"ENSG00000104723"
+"238625_at"	"FYB2"	199920	"ENSG00000187889"
+"239188_at"	"PPP2R3C"	55012	"ENSG00000092020"
+"238350_at"	"UBN2"	254048	"ENSG00000157741"
+"236703_at"	"NT5C2"	22978	"ENSG00000076685"
+"238615_at"	"ERLIN2"	11160	"ENSG00000147475"
+"237861_at"	""	NA	"ENSG00000247324"
+"239136_at"	"UNC5B-AS1"	728978	"ENSG00000237512"
+"235766_x_at"	"RAB27A"	5873	"ENSG00000069974"
+"239148_at"	"MARVELD3"	91862	"ENSG00000140832"
+"239350_at"	"MARVELD3"	91862	"ENSG00000140832"
+"239444_at"	""	NA	"ENSG00000233170"
+"236071_at"	"CFAP95-DT"	NA	"ENSG00000225626"
+"239671_at"	"SYT16"	83851	"ENSG00000139973"
+"236186_x_at"	"IL17RE"	132014	"ENSG00000163701"
+"236203_at"	"HLA-DQA1"	3117	"ENSG00000196735"
+"236294_at"	"HUWE1"	10075	"ENSG00000086758"
+"239717_at"	"CHRNA10"	57053	"ENSG00000129749"
+"235944_at"	"HMCN1"	83872	"ENSG00000143341"
+"240367_at"	""	NA	"ENSG00000261056"
+"239394_at"	"SLC6A2"	6530	"ENSG00000103546"
+"239623_at"	"C5orf63"	401207	"ENSG00000164241"
+"236642_at"	"C5orf63"	401207	"ENSG00000164241"
+"239798_at"	"PDK1"	5163	"ENSG00000152256"
+"237035_at"	""	NA	"ENSG00000260816"
+"237015_at"	""	NA	"ENSG00000277954"
+"239937_at"	"ZNF207"	7756	"ENSG00000010244"
+"238612_at"	"BRD4"	23476	"ENSG00000141867"
+"240360_at"	"BRD4"	23476	"ENSG00000141867"
+"238650_x_at"	"WDR89"	112840	"ENSG00000140006"
+"238820_at"	"TMEM229B"	161145	"ENSG00000198133"
+"240320_at"	"RNF212B"	100507650	"ENSG00000215277"
+"238597_at"	"ANKRD13C"	81573	"ENSG00000118454"
+"240049_at"	""	NA	"ENSG00000228748"
+"236300_at"	"PDE3A"	5139	"ENSG00000172572"
+"235852_at"	"STON2"	85439	"ENSG00000140022"
+"235828_at"	"PRELID2"	153768	"ENSG00000186314"
+"236513_at"	"PRELID2"	153768	"ENSG00000186314"
+"236626_at"	"ALG1"	56052	"ENSG00000033011"
+"235659_at"	"TMEM127"	55654	"ENSG00000135956"
+"236745_at"	"CCDC78"	124093	"ENSG00000162004"
+"237465_at"	"USP53"	54532	"ENSG00000145390"
+"239694_at"	"TRIM7"	81786	"ENSG00000146054"
+"239691_at"	"LINC02909"	196415	"ENSG00000226397"
+"239333_x_at"	"GSTK1"	373156	"ENSG00000197448"
+"235588_at"	"ESCO2"	157570	"ENSG00000171320"
+"236245_at"	"ODF3L1"	161753	"ENSG00000182950"
+"236502_at"	"RNU2-22P"	NA	"ENSG00000223198"
+"235849_at"	"SCARA5"	286133	"ENSG00000168079"
+"236902_at"	""	NA	"ENSG00000288802"
+"239432_at"	"PSMA3-AS1"	379025	"ENSG00000257621"
+"239193_at"	"FUBP3"	8939	"ENSG00000107164"
+"238841_at"	"PTPDC1"	138639	"ENSG00000158079"
+"239779_at"	""	NA	"ENSG00000255026"
+"236413_at"	"PGGHG"	80162	"ENSG00000142102"
+"236673_at"	"TIFAB"	497189	"ENSG00000255833"
+"238080_at"	"B4GALNT4"	338707	"ENSG00000182272"
+"238795_at"	"TASOR2"	54906	"ENSG00000108021"
+"239619_at"	"ZNF395"	55893	"ENSG00000186918"
+"239506_s_at"	"LINC00608"	NA	"ENSG00000236445"
+"239507_at"	"LINC00608"	NA	"ENSG00000236445"
+"239382_at"	"HPS1"	3257	"ENSG00000107521"
+"238506_at"	"LRRC58"	116064	"ENSG00000163428"
+"239508_x_at"	"CFAP65"	255101	"ENSG00000181378"
+"237905_at"	"KRT25"	147183	"ENSG00000204897"
+"240388_at"	"KRT27"	342574	"ENSG00000171446"
+"238975_at"	"MMAB"	326625	"ENSG00000139428"
+"239079_at"	"ADAM7"	8756	"ENSG00000069206"
+"235745_at"	"ERN1"	2081	"ENSG00000178607"
+"239045_at"	"ERN1"	2081	"ENSG00000178607"
+"239206_at"	"CR1L"	1379	"ENSG00000197721"
+"235723_at"	"BNC2"	54796	"ENSG00000173068"
+"238478_at"	"BNC2"	54796	"ENSG00000173068"
+"239780_at"	"RNU6-37P"	NA	"ENSG00000199562"
+"237729_at"	"RRS1-DT"	100505676	"ENSG00000246145"
+"240170_at"	"LSM12"	124801	"ENSG00000161654"
+"235855_at"	"COX15"	1355	"ENSG00000014919"
+"237316_at"	"ANKDD1A"	348094	"ENSG00000166839"
+"238463_at"	"GAS1RR"	100506834	"ENSG00000226237"
+"236024_at"	"GPM6A"	2823	"ENSG00000150625"
+"235732_at"	"ZNF704"	619279	"ENSG00000164684"
+"235905_at"	"ZNF704"	619279	"ENSG00000164684"
+"237031_at"	""	NA	"ENSG00000261578"
+"238945_at"	"ACER3"	55331	"ENSG00000078124"
+"236889_at"	""	NA	"ENSG00000280138"
+"239503_at"	"MIR1915HG"	399726	"ENSG00000204682"
+"237086_at"	"FOXA1"	3169	"ENSG00000129514"
+"236222_at"	"CFAP91"	89876	"ENSG00000183833"
+"239239_at"	"BANCR"	NA	"ENSG00000278910"
+"238704_at"	""	NA	"ENSG00000263731"
+"238572_at"	"STK16"	8576	"ENSG00000115661"
+"238438_at"	"CNOT6L"	246175	"ENSG00000138767"
+"239479_x_at"	"CHRM3-AS2"	100506915	"ENSG00000233355"
+"235505_s_at"	"LRPAP1"	4043	"ENSG00000163956"
+"236304_at"	"LINC00702"	NA	"ENSG00000233117"
+"237266_at"	"KCNIP2-AS1"	NA	"ENSG00000226009"
+"237320_at"	"GARIN1A"	346653	"ENSG00000205085"
+"236761_at"	"LHFPL3"	375612	"ENSG00000187416"
+"240366_at"	"LHFPL3-AS1"	645591	"ENSG00000226869"
+"239656_at"	"LHFPL3-AS2"	723809	"ENSG00000225329"
+"240015_at"	"PRKCQ-AS1"	439949	"ENSG00000237943"
+"237231_at"	"PABIR1"	116224	"ENSG00000187866"
+"239878_at"	"IPMK"	253430	"ENSG00000151151"
+"238739_at"	"IPMK"	253430	"ENSG00000151151"
+"237378_at"	"SPATA31D1"	389763	"ENSG00000214929"
+"239025_at"	"GLIDR"	389741	"ENSG00000278175"
+"236396_at"	""	NA	"ENSG00000259275"
+"236826_at"	"TTC39B"	158219	"ENSG00000155158"
+"238247_at"	"TMC3-AS1"	NA	"ENSG00000259343"
+"237187_at"	"HRK"	8739	"ENSG00000135116"
+"235936_at"	"MIR9-3HG"	254559	"ENSG00000255571"
+"238603_at"	"MIR9-3HG"	254559	"ENSG00000255571"
+"240119_at"	"TEPP"	374739	"ENSG00000159648"
+"240144_at"	"DNASE1"	1773	"ENSG00000213918"
+"239622_at"	"DNASE1"	1773	"ENSG00000213918"
+"236525_at"	"FBXO36"	130888	"ENSG00000153832"
+"238029_s_at"	"SLC16A14"	151473	"ENSG00000163053"
+"239345_at"	"SLC19A3"	80704	"ENSG00000135917"
+"235740_at"	"MCTP1"	79772	"ENSG00000175471"
+"238518_x_at"	"GLYCTK"	132158	"ENSG00000168237"
+"237012_at"	""	NA	"ENSG00000289032"
+"238818_at"	"VIRMA"	25962	"ENSG00000164944"
+"239594_at"	"DRAIC"	145837	"ENSG00000245750"
+"238284_at"	"LINC02269"	101928478	"ENSG00000250708"
+"236255_at"	"PLEKHG4B"	153478	"ENSG00000153404"
+"238742_x_at"	"SPINT1-AS1"	NA	"ENSG00000261183"
+"237272_at"	"CFAP100-DT"	100506907	"ENSG00000249833"
+"237734_s_at"	"CFAP100-DT"	100506907	"ENSG00000249833"
+"237735_at"	"CFAP100-DT"	100506907	"ENSG00000249833"
+"237017_s_at"	""	NA	"ENSG00000259347"
+"239296_at"	""	NA	"ENSG00000279166"
+"235970_at"	"LCORL"	254251	"ENSG00000178177"
+"236766_at"	"NDUFAF6"	137682	"ENSG00000156170"
+"235509_at"	"NDUFAF6"	137682	"ENSG00000156170"
+"237287_at"	"HMGA1P4"	NA	"ENSG00000234705"
+"237894_at"	"C3orf22"	152065	"ENSG00000180697"
+"240095_at"	"CCDC149"	91050	"ENSG00000181982"
+"236885_at"	"MEX3A"	92312	"ENSG00000254726"
+"237395_at"	"CYP4Z1"	199974	"ENSG00000186160"
+"240433_x_at"	"CADM2"	253559	"ENSG00000175161"
+"237224_at"	"LINC00853"	100874253	"ENSG00000224805"
+"239846_at"	""	NA	"ENSG00000272909"
+"238821_at"	"CSTF2"	1478	"ENSG00000101811"
+"236296_x_at"	"PDLIM2"	64236	"ENSG00000120913"
+"240373_at"	"CACTIN"	58509	"ENSG00000105298"
+"237990_x_at"	"CACTIN"	58509	"ENSG00000105298"
+"238073_at"	"ELAVL4"	1996	"ENSG00000162374"
+"237638_at"	""	NA	"ENSG00000258676"
+"239197_s_at"	"EZH1"	2145	"ENSG00000108799"
+"239198_at"	"EZH1"	2145	"ENSG00000108799"
+"238085_at"	"PDE6B-AS1"	NA	"ENSG00000242686"
+"238153_at"	""	NA	"ENSG00000272927"
+"237291_at"	"PRORSD1P"	344405	"ENSG00000162997"
+"236411_at"	"PCGF3-AS1"	100129917	"ENSG00000249592"
+"239365_at"	""	NA	"ENSG00000225606"
+"236578_at"	"ARHGEF35-AS1"	NA	"ENSG00000244198"
+"237637_at"	""	NA	"ENSG00000261265"
+"239105_at"	""	NA	"ENSG00000274818"
+"237601_at"	"LINC02314"	100507277	"ENSG00000259082"
+"240380_at"	"LINC02499"	728040	"ENSG00000250436"
+"235638_at"	"RASSF6"	166824	"ENSG00000169435"
+"236527_at"	"ATP6V0E1"	8992	"ENSG00000113732"
+"235556_at"	"CREBRF"	153222	"ENSG00000164463"
+"238476_at"	"CREBRF"	153222	"ENSG00000164463"
+"236613_at"	"RBM25"	58517	"ENSG00000119707"
+"238801_at"	"RBM33"	155435	"ENSG00000184863"
+"239767_at"	"LRRC7"	57554	"ENSG00000033122"
+"239021_at"	"TLR6"	10333	"ENSG00000174130"
+"236263_at"	"SHH"	6469	"ENSG00000164690"
+"236169_at"	""	NA	"ENSG00000272043"
+"240374_at"	""	NA	"ENSG00000288985"
+"240415_at"	""	NA	"ENSG00000270426"
+"238758_at"	"IRF2-DT"	NA	"ENSG00000271646"
+"236357_at"	"LMBR1"	64327	"ENSG00000105983"
+"238598_s_at"	"LMBR1"	64327	"ENSG00000105983"
+"238430_x_at"	"SLFN5"	162394	"ENSG00000166750"
+"237411_at"	"ADAMTS6"	11174	"ENSG00000049192"
+"236572_at"	""	NA	"ENSG00000258944"
+"236693_at"	"MIR124-2HG"	NA	"ENSG00000254377"
+"238661_at"	"MIR124-2HG"	NA	"ENSG00000254377"
+"236930_at"	"NUMB"	8650	"ENSG00000133961"
+"240117_at"	"FBN3"	84467	"ENSG00000142449"
+"236967_at"	"MNX1-AS1"	645249	"ENSG00000243479"
+"238027_at"	"SPATA24"	202051	"ENSG00000170469"
+"238869_at"	""	NA	"ENSG00000288928"
+"236081_at"	"SNCA"	6622	"ENSG00000145335"
+"238495_at"	"LRRC57"	255252	"ENSG00000180979"
+"236374_at"	"CTXN3"	613212	"ENSG00000205279"
+"239663_x_at"	"LARP1"	23367	"ENSG00000155506"
+"237908_at"	"FTX"	100302692	"ENSG00000230590"
+"239008_at"	"FTX"	100302692	"ENSG00000230590"
+"238762_at"	"MTHFD2L"	441024	"ENSG00000163738"
+"239562_at"	"MTHFD2L"	441024	"ENSG00000163738"
+"240011_at"	"TTBK2"	146057	"ENSG00000128881"
+"236666_s_at"	"LRRC10B"	390205	"ENSG00000204950"
+"238406_x_at"	"SEZ6L2"	26470	"ENSG00000174938"
+"239915_at"	"HOXA-AS3"	100133311	"ENSG00000254369"
+"235753_at"	"HOXA7"	3204	"ENSG00000122592"
+"238808_at"	"HOXA13"	3209	"ENSG00000106031"
+"238571_at"	"HOXA13"	3209	"ENSG00000106031"
+"239577_at"	""	NA	"ENSG00000271533"
+"237041_x_at"	"RCOR1"	23186	"ENSG00000089902"
+"239319_at"	"LINC00992"	NA	"ENSG00000248663"
+"238844_s_at"	"NPHP1"	4867	"ENSG00000144061"
+"238843_at"	"NPHP1"	4867	"ENSG00000144061"
+"238230_x_at"	"MAN2C1"	4123	"ENSG00000140400"
+"235737_at"	"TSLP"	85480	"ENSG00000145777"
+"238677_at"	"WDR36"	134430	"ENSG00000134987"
+"238266_at"	""	NA	"ENSG00000272774"
+"238132_at"	"RCC1L"	81554	"ENSG00000274523"
+"238824_at"	"RPS29"	6235	"ENSG00000213741"
+"237652_at"	"IQSEC2"	23096	"ENSG00000124313"
+"238089_at"	""	NA	"ENSG00000260274"
+"239316_at"	"CSKMT"	751071	"ENSG00000214756"
+"238005_s_at"	"SIN3A"	25942	"ENSG00000169375"
+"238006_at"	"SIN3A"	25942	"ENSG00000169375"
+"239727_at"	"DIO3OS"	64150	"ENSG00000258498"
+"238816_at"	"PSEN1"	5663	"ENSG00000080815"
+"240173_at"	"GPRIN3"	285513	"ENSG00000185477"
+"238378_at"	"GPRIN3"	285513	"ENSG00000185477"
+"236543_at"	"CCSER1"	401145	"ENSG00000184305"
+"237690_at"	"ADGRF4"	221393	"ENSG00000153294"
+"235958_at"	"PLA2G4F"	255189	"ENSG00000168907"
+"239406_at"	"ZSCAN9"	7746	"ENSG00000137185"
+"240412_s_at"	"MROH2B"	133558	"ENSG00000171495"
+"240411_at"	"MROH2B"	133558	"ENSG00000171495"
+"239648_at"	"DCUN1D3"	123879	"ENSG00000188215"
+"238971_at"	""	NA	"ENSG00000271780"
+"235954_at"	"ANP32A"	8125	"ENSG00000140350"
+"239964_at"	"TCL6"	124903372	"ENSG00000187621"
+"236991_at"	""	NA	"ENSG00000258526"
+"235672_at"	"MAP6"	4135	"ENSG00000171533"
+"236950_s_at"	"LINC00964"	157381	"ENSG00000249816"
+"235521_at"	"HOXA3"	3200	"ENSG00000105997"
+"238086_at"	"CMIP"	80790	"ENSG00000153815"
+"239633_at"	"ATP6V0D1"	9114	"ENSG00000159720"
+"236192_at"	"HOOK3"	84376	"ENSG00000168172"
+"238465_at"	"SETD9"	133383	"ENSG00000155542"
+"238096_at"	"RNF227"	284023	"ENSG00000179859"
+"239094_at"	"PPP2CA-DT"	NA	"ENSG00000270177"
+"236771_at"	"RIPPLY2"	134701	"ENSG00000203877"
+"237765_at"	"SLC25A47"	283600	"ENSG00000140107"
+"237339_at"	""	NA	"ENSG00000290801"
+"238369_s_at"	"LINC01607"	101927067	"ENSG00000272138"
+"238939_at"	"ADD1"	118	"ENSG00000087274"
+"238045_at"	"TMEM65"	157378	"ENSG00000164983"
+"238786_at"	"ANK3"	288	"ENSG00000151150"
+"238642_at"	"ANKRD13D"	338692	"ENSG00000172932"
+"236848_s_at"	"TEX13A"	56157	"ENSG00000268629"
+"238217_at"	""	NA	"ENSG00000262873"
+"239681_at"	"TEPSIN"	146705	"ENSG00000167302"
+"238980_x_at"	"TEPSIN"	146705	"ENSG00000167302"
+"236737_at"	"TEPSIN"	146705	"ENSG00000167302"
+"237620_at"	"ODF3L2"	284451	"ENSG00000181781"
+"239581_at"	"ARL10"	285598	"ENSG00000175414"
+"239403_at"	"CCDC120"	90060	"ENSG00000147144"
+"239753_at"	"ZNF252P"	286101	"ENSG00000291080"
+"237046_x_at"	"IL34"	146433	"ENSG00000157368"
+"240363_at"	"ANK1"	286	"ENSG00000029534"
+"236448_at"	"UNC5A"	90249	"ENSG00000113763"
+"238435_at"	""	340591	"ENSG00000290746"
+"236840_at"	"C12orf56"	115749	"ENSG00000185306"
+"235923_at"	"VTI1A"	143187	"ENSG00000151532"
+"236849_at"	"VTI1A"	143187	"ENSG00000151532"
+"237585_at"	"C4orf47"	441054	"ENSG00000205129"
+"236915_at"	"C4orf47"	441054	"ENSG00000205129"
+"236863_at"	"C17orf67"	339210	"ENSG00000214226"
+"236267_at"	"ZNF346"	23567	"ENSG00000113761"
+"238694_at"	"DGKE"	8526	"ENSG00000153933"
+"238457_at"	"DGKE"	8526	"ENSG00000153933"
+"236596_at"	"FAM193B-DT"	NA	"ENSG00000272459"
+"239627_at"	"TMED9"	54732	"ENSG00000184840"
+"239587_at"	"TLR3"	7098	"ENSG00000164342"
+"239371_at"	""	NA	"ENSG00000262652"
+"239305_at"	""	NA	"ENSG00000262652"
+"238220_at"	"KDM6A"	7403	"ENSG00000147050"
+"236211_at"	"RAB40B"	10966	"ENSG00000141542"
+"237304_at"	"SYCE2"	256126	"ENSG00000161860"
+"237490_at"	""	NA	"ENSG00000261296"
+"237333_at"	"RBBP4"	5928	"ENSG00000162521"
+"236195_x_at"	"PRKCG"	5582	"ENSG00000126583"
+"235735_at"	"TNFSF8"	944	"ENSG00000106952"
+"237169_at"	"TNC"	3371	"ENSG00000041982"
+"235669_at"	"PHYKPL"	85007	"ENSG00000175309"
+"239725_at"	"PGAP1"	80055	"ENSG00000197121"
+"238118_s_at"	"PPOX"	5498	"ENSG00000143224"
+"238117_at"	"PPOX"	5498	"ENSG00000143224"
+"238109_at"	"MFSD14CP"	84278	"ENSG00000290770"
+"236496_at"	"DEGS2"	123099	"ENSG00000168350"
+"236730_at"	"GIPC3"	126326	"ENSG00000179855"
+"240014_at"	"POLR2J4"	84820	"ENSG00000214783"
+"239607_at"	"GPR156"	165829	"ENSG00000175697"
+"236706_at"	"LYG1"	129530	"ENSG00000144214"
+"238983_at"	"NSUN7"	79730	"ENSG00000179299"
+"238974_at"	"C2orf69"	205327	"ENSG00000178074"
+"235686_at"	"TYW5"	129450	"ENSG00000162971"
+"237693_at"	"RIMS2"	9699	"ENSG00000176406"
+"238486_at"	"FRS2"	10818	"ENSG00000166225"
+"236079_at"	"WDR1"	9948	"ENSG00000071127"
+"240282_at"	"WDR1"	9948	"ENSG00000071127"
+"236485_at"	"ZNF433-AS1"	101928464	"ENSG00000219665"
+"237621_at"	"GABRG3-AS1"	NA	"ENSG00000228740"
+"239774_at"	"ZNF747"	65988	"ENSG00000169955"
+"238606_at"	"ZNF747"	65988	"ENSG00000169955"
+"239935_at"	"MDGA2"	161357	"ENSG00000139915"
+"238084_at"	"PCGF3"	10336	"ENSG00000185619"
+"235921_at"	"LINP1"	NA	"ENSG00000223784"
+"236274_at"	"EIF3B"	8662	"ENSG00000106263"
+"239853_at"	"KLC3"	147700	"ENSG00000104892"
+"236909_at"	"CFAP210"	129881	"ENSG00000154479"
+"238062_at"	"GPIHBP1"	338328	"ENSG00000277494"
+"237362_at"	"ZFP41"	286128	"ENSG00000181638"
+"236903_at"	"PTCD2"	79810	"ENSG00000049883"
+"238520_at"	"TRERF1"	55809	"ENSG00000124496"
+"235770_at"	"MASP1"	5648	"ENSG00000127241"
+"236729_at"	"CASP3"	836	"ENSG00000164305"
+"238740_at"	"PTGES3L"	100885848	"ENSG00000267060"
+"237449_at"	"SP8"	221833	"ENSG00000164651"
+"239743_at"	"SP8"	221833	"ENSG00000164651"
+"236570_at"	"ZNF366"	167465	"ENSG00000178175"
+"238028_at"	"C6orf132"	647024	"ENSG00000188112"
+"240421_x_at"	""	NA	"ENSG00000249741"
+"237055_at"	"ZNF649-AS1"	101928571	"ENSG00000268095"
+"239376_at"	"DCLRE1C"	64421	"ENSG00000152457"
+"236380_at"	"RPP14"	11102	"ENSG00000163684"
+"236213_at"	""	NA	"ENSG00000222043"
+"237466_s_at"	"HHIP"	64399	"ENSG00000164161"
+"239543_s_at"	"DPP4"	1803	"ENSG00000197635"
+"238223_at"	"PXK"	54899	"ENSG00000168297"
+"238187_at"	"TEX44"	165100	"ENSG00000177673"
+"236315_at"	""	NA	"ENSG00000273059"
+"235765_at"	"TLE4"	7091	"ENSG00000106829"
+"235696_at"	""	NA	"ENSG00000247134"
+"238848_at"	"OTUD4"	54726	"ENSG00000164164"
+"239931_at"	"MYC"	4609	"ENSG00000136997"
+"239635_at"	"RBM14"	10432	"ENSG00000239306"
+"236157_at"	"RBM4"	5936	"ENSG00000173933"
+"235840_at"	"ZKSCAN3"	80317	"ENSG00000189298"
+"235678_at"	"GM2A"	2760	"ENSG00000196743"
+"238136_at"	"SHISA7"	729956	"ENSG00000187902"
+"240053_x_at"	"PEX5L"	51555	"ENSG00000114757"
+"238925_at"	"SNTB2"	6645	"ENSG00000168807"
+"235939_at"	""	NA	"ENSG00000260920"
+"235917_at"	"INIP"	58493	"ENSG00000148153"
+"239363_at"	"INIP"	58493	"ENSG00000148153"
+"238600_at"	"JAKMIP1"	152789	"ENSG00000152969"
+"239298_at"	"BRIX1"	55299	"ENSG00000113460"
+"237070_at"	"TRPM1"	4308	"ENSG00000134160"
+"236281_x_at"	"HTR7"	3363	"ENSG00000148680"
+"236112_at"	"LINC01096"	NA	"ENSG00000246095"
+"235544_x_at"	"FAM171A2"	284069	"ENSG00000161682"
+"238365_s_at"	"ARMH1"	339541	"ENSG00000198520"
+"237682_at"	""	NA	"ENSG00000249001"
+"238376_at"	"CIITA"	4261	"ENSG00000179583"
+"237107_at"	"PRKRA"	8575	"ENSG00000180228"
+"236562_at"	"ZNF439"	90594	"ENSG00000171291"
+"240087_at"	"ATP6V0D1-DT"	NA	"ENSG00000270049"
+"236632_at"	"HHIP-AS1"	646576	"ENSG00000248890"
+"240256_at"	""	NA	"ENSG00000286835"
+"235814_at"	""	NA	"ENSG00000289515"
+"239398_at"	"KLHL31"	401265	"ENSG00000124743"
+"235869_at"	"SCOC-AS1"	100129858	"ENSG00000196951"
+"240214_at"	"RWDD1"	51389	"ENSG00000111832"
+"238241_at"	"EPHA5-AS1"	100144602	"ENSG00000250846"
+"238324_at"	"GATAD2A"	54815	"ENSG00000167491"
+"236776_at"	""	NA	"ENSG00000261386"
+"238213_at"	"MIR5188"	100847004	"ENSG00000265345"
+"238687_x_at"	"ZNF770"	54989	"ENSG00000198146"
+"239336_at"	"THBS1-IT1"	NA	"ENSG00000276107"
+"239552_at"	"VWDE"	221806	"ENSG00000146530"
+"237145_at"	"EIF2AK4"	440275	"ENSG00000128829"
+"236834_at"	"SCFD2"	152579	"ENSG00000184178"
+"237061_at"	"ZNF347"	84671	"ENSG00000197937"
+"238819_at"	"ZNF347"	84671	"ENSG00000197937"
+"240078_at"	"SFSWAP"	6433	"ENSG00000061936"
+"239976_at"	"ACAD9"	28976	"ENSG00000177646"
+"238522_at"	"PPP3CB-AS1"	101929145	"ENSG00000221817"
+"235772_at"	"PPP3CB-AS1"	101929145	"ENSG00000221817"
+"239954_at"	"ZNF160"	90338	"ENSG00000170949"
+"238556_at"	"CAMK2G"	818	"ENSG00000148660"
+"239179_at"	"CAMK2G"	818	"ENSG00000148660"
+"239462_at"	"ZNF284"	342909	"ENSG00000186026"
+"236957_at"	"CDCA2"	157313	"ENSG00000184661"
+"235702_at"	"ZNF225"	7768	"ENSG00000256294"
+"238042_at"	""	NA	"ENSG00000279283"
+"239297_at"	"TRMT9B"	57604	"ENSG00000250305"
+"238936_at"	"TMEM178B"	100507421	"ENSG00000261115"
+"235609_at"	"BRIP1"	83990	"ENSG00000136492"
+"235670_at"	"STX11"	8676	"ENSG00000135604"
+"237504_at"	"INTS10"	55174	"ENSG00000104613"
+"236077_at"	"GANC"	2595	"ENSG00000214013"
+"235714_at"	"GANC"	2595	"ENSG00000214013"
+"235675_at"	"DHFR2"	200895	"ENSG00000178700"
+"236065_at"	"LRRK2-DT"	NA	"ENSG00000225342"
+"239494_at"	"FBXW7"	55294	"ENSG00000109670"
+"239451_at"	"HSP90B1"	7184	"ENSG00000166598"
+"235901_at"	""	NA	"ENSG00000262089"
+"235673_at"	""	NA	"ENSG00000269973"
+"235878_at"	""	NA	"ENSG00000269973"
+"239913_at"	"SLC10A4"	201780	"ENSG00000145248"
+"238654_at"	"VSIG10L"	147645	"ENSG00000186806"
+"238491_at"	"TAF1A-AS1"	NA	"ENSG00000225265"
+"236275_at"	"KRBA1"	84626	"ENSG00000133619"
+"240065_at"	"FAM81B"	153643	"ENSG00000153347"
+"239147_at"	"ARSK"	153642	"ENSG00000164291"
+"239684_at"	"TRPM3"	80036	"ENSG00000083067"
+"239291_at"	"TRPM3"	80036	"ENSG00000083067"
+"237802_at"	"XKR4"	114786	"ENSG00000206579"
+"239078_at"	"BROX"	148362	"ENSG00000162819"
+"240212_at"	"GALNT7-DT"	101930370	"ENSG00000245213"
+"238346_s_at"	"TGS1"	96764	"ENSG00000137574"
+"239642_at"	"MCPH1-AS1"	NA	"ENSG00000249898"
+"236593_at"	"DPEP2NB"	100131303	"ENSG00000263201"
+"236268_at"	"SEC22C"	9117	"ENSG00000093183"
+"239056_at"	"SEC22C"	9117	"ENSG00000093183"
+"239708_at"	"HAND2-AS1"	79804	"ENSG00000237125"
+"236141_at"	"HAND2-AS1"	79804	"ENSG00000237125"
+"239352_at"	"SLC6A15"	55117	"ENSG00000072041"
+"240419_at"	"SLC6A15"	55117	"ENSG00000072041"
+"237463_at"	"ZFPM1"	161882	"ENSG00000179588"
+"238416_x_at"	"ZC3H18"	124245	"ENSG00000158545"
+"235726_at"	"ZBTB10"	65986	"ENSG00000205189"
+"236105_at"	"ZBTB10"	65986	"ENSG00000205189"
+"237244_at"	"C10orf71-AS1"	NA	"ENSG00000236208"
+"240110_at"	"HMGCS2"	3158	"ENSG00000134240"
+"238984_at"	"REG4"	83998	"ENSG00000134193"
+"235787_at"	"CDC37L1"	55664	"ENSG00000106993"
+"239452_at"	"ACKR2"	1238	"ENSG00000144648"
+"236060_at"	"METTL14"	57721	"ENSG00000145388"
+"235552_at"	"METTL14"	57721	"ENSG00000145388"
+"237363_at"	"SPATA6L"	55064	"ENSG00000106686"
+"236870_at"	"IQCF4P"	100506840	"ENSG00000224792"
+"236767_at"	"IQCF2"	389123	"ENSG00000184345"
+"240088_at"	"PDE5A"	8654	"ENSG00000138735"
+"239958_at"	"CUTALP"	253039	"ENSG00000226752"
+"238337_s_at"	"DNAJC21"	134218	"ENSG00000168724"
+"235833_at"	""	NA	"ENSG00000289393"
+"238666_at"	"FDFT1"	2222	"ENSG00000079459"
+"237052_x_at"	"GIGYF2"	26058	"ENSG00000204120"
+"236032_at"	""	NA	"ENSG00000275854"
+"236866_at"	"GALNS"	2588	"ENSG00000141012"
+"238626_at"	"ANKS6"	203286	"ENSG00000165138"
+"235903_at"	"ANKS6"	203286	"ENSG00000165138"
+"235607_at"	"HNRNPD-DT"	101928963	"ENSG00000272677"
+"239928_at"	"TCTN2"	79867	"ENSG00000168778"
+"237338_at"	"B3GNT8"	374907	"ENSG00000177191"
+"238628_s_at"	"TRAPPC2L"	51693	"ENSG00000167515"
+"238627_at"	"TRAPPC2L"	51693	"ENSG00000167515"
+"235776_x_at"	""	NA	"ENSG00000290644"
+"236444_x_at"	"EPIST"	101927953	"ENSG00000249082"
+"236976_at"	"FANCA"	2175	"ENSG00000187741"
+"237357_at"	"OSTM1-AS1"	100287366	"ENSG00000225174"
+"236786_at"	"FAM135B"	51059	"ENSG00000147724"
+"237929_at"	"C17orf50"	146853	"ENSG00000270806"
+"240305_at"	""	101930421	"ENSG00000225140"
+"238634_x_at"	""	NA	"ENSG00000289952"
+"235744_at"	"PPTC7"	160760	"ENSG00000196850"
+"237024_at"	"LSMEM2"	132228	"ENSG00000179564"
+"239659_at"	"BRD3"	8019	"ENSG00000169925"
+"239093_at"	"HOGA1"	112817	"ENSG00000241935"
+"240235_at"	"C10orf62"	414157	"ENSG00000203942"
+"236813_at"	"MORN4"	118812	"ENSG00000171160"
+"237020_at"	"CATSPERD"	257062	"ENSG00000174898"
+"239038_at"	"C1orf52"	148423	"ENSG00000162642"
+"238431_at"	"ARL5A"	26225	"ENSG00000162980"
+"236350_at"	"ARL5A"	26225	"ENSG00000162980"
+"236466_at"	"ARL5A"	26225	"ENSG00000162980"
+"239311_at"	"DHX57"	90957	"ENSG00000163214"
+"238979_at"	"HPS1-AS1"	101927278	"ENSG00000287261"
+"237000_at"	"WDR31"	114987	"ENSG00000148225"
+"238900_at"	"HLA-DRB1"	3123	"ENSG00000196126"
+"236901_at"	"ADAMTS2"	9509	"ENSG00000087116"
+"236121_at"	"OR51E2"	81285	"ENSG00000167332"
+"235935_at"	"LRRC73"	221424	"ENSG00000204052"
+"236003_x_at"	"OR2I1P"	442197	"ENSG00000237988"
+"239065_at"	"DNAJC22"	79962	"ENSG00000178401"
+"238599_at"	"IRAK1BP1"	134728	"ENSG00000146243"
+"238871_at"	"AFDN"	4301	"ENSG00000130396"
+"239118_at"	"KCNA2"	3737	"ENSG00000177301"
+"238069_at"	"PNISR-AS1"	NA	"ENSG00000228506"
+"238833_at"	""	NA	"ENSG00000227704"
+"237044_s_at"	"ZNF503-AS2"	100131213	"ENSG00000237149"
+"237753_at"	"IL21R"	50615	"ENSG00000103522"
+"235929_s_at"	""	NA	"ENSG00000273248"
+"235928_at"	""	NA	"ENSG00000273248"
+"240289_at"	"PDLIM3"	27295	"ENSG00000154553"
+"235836_at"	"MXRA7"	439921	"ENSG00000182534"
+"238044_at"	"TRIM8"	81603	"ENSG00000171206"
+"235685_at"	"EXT2"	2132	"ENSG00000151348"
+"236483_at"	"EXT2"	2132	"ENSG00000151348"
+"237334_at"	"SFXN2"	118980	"ENSG00000156398"
+"238453_at"	"FGFBP3"	143282	"ENSG00000174721"
+"239338_x_at"	"ZC3H10"	84872	"ENSG00000135482"
+"238063_at"	"TMEM154"	201799	"ENSG00000170006"
+"239186_at"	"SERPINB9P1"	NA	"ENSG00000230438"
+"240037_at"	"ITPRIPL1"	150771	"ENSG00000198885"
+"236510_at"	"HCG18"	414777	"ENSG00000231074"
+"239126_at"	"CIRBP-AS1"	148046	"ENSG00000267493"
+"236405_at"	"FBXO41"	150726	"ENSG00000163013"
+"238681_at"	"GDPD1"	284161	"ENSG00000153982"
+"235980_at"	"PIK3CA"	5290	"ENSG00000121879"
+"239326_at"	"ERBIN-DT"	NA	"ENSG00000269961"
+"238781_at"	"SREK1"	140890	"ENSG00000153914"
+"235611_at"	"SREK1"	140890	"ENSG00000153914"
+"238962_at"	"ZNF681"	148213	"ENSG00000196172"
+"238341_at"	"NPIPB13"	613037	"ENSG00000198064"
+"237019_at"	""	NA	"ENSG00000289981"
+"237731_at"	"LINC01010"	NA	"ENSG00000236700"
+"237389_at"	""	NA	"ENSG00000262228"
+"239620_at"	"TTC23L"	153657	"ENSG00000205838"
+"235774_at"	"LINC02532"	100422737	"ENSG00000235142"
+"236214_at"	"GARIN1B"	84691	"ENSG00000135248"
+"236738_at"	"C3orf80"	401097	"ENSG00000180044"
+"238315_s_at"	"ZNF567"	163081	"ENSG00000189042"
+"235648_at"	"ZNF567"	163081	"ENSG00000189042"
+"238316_at"	"ZNF567"	163081	"ENSG00000189042"
+"239533_at"	"GPR155"	151556	"ENSG00000163328"
+"237639_at"	"TMEM207"	131920	"ENSG00000198398"
+"239882_at"	"LINC03002"	NA	"ENSG00000232310"
+"240361_at"	"FARS2-AS1"	101927972	"ENSG00000269985"
+"236555_at"	"TRAF3IP2-AS1"	643749	"ENSG00000231889"
+"239177_at"	"IRGQ"	126298	"ENSG00000167378"
+"240355_at"	"SMIM15-AS1"	NA	"ENSG00000251279"
+"239059_at"	"DNAH1"	25981	"ENSG00000114841"
+"239687_at"	"SLX4"	84464	"ENSG00000188827"
+"240452_at"	"GSPT1"	2935	"ENSG00000103342"
+"237365_at"	"ELOVL2-AS1"	100506409	"ENSG00000230314"
+"237193_s_at"	""	NA	"ENSG00000243004"
+"237192_at"	""	NA	"ENSG00000243004"
+"235707_at"	"SMIM13"	221710	"ENSG00000224531"
+"240175_at"	"KCNK5"	8645	"ENSG00000164626"
+"238396_at"	"RPS23P6"	NA	"ENSG00000241641"
+"236282_at"	"DMTF1-AS1"	101927420	"ENSG00000224046"
+"235817_at"	"TMEM184A"	202915	"ENSG00000164855"
+"238177_at"	"SLC6A19"	340024	"ENSG00000174358"
+"238383_at"	"C6orf58"	352999	"ENSG00000184530"
+"238215_at"	"SLC6A18"	348932	"ENSG00000164363"
+"239392_s_at"	"POGK"	57645	"ENSG00000143157"
+"239772_x_at"	"DHX30"	22907	"ENSG00000132153"
+"238995_at"	"SULT1A1"	6817	"ENSG00000196502"
+"237158_s_at"	"MPHOSPH9"	10198	"ENSG00000051825"
+"239898_x_at"	"ZNF286A"	57335	"ENSG00000187607"
+"239998_at"	"C10orf53"	282966	"ENSG00000178645"
+"238550_at"	"RUFY2"	55680	"ENSG00000204130"
+"238898_at"	"FOXP4-AS1"	101060264	"ENSG00000234753"
+"238601_at"	"PHKB"	5257	"ENSG00000102893"
+"239259_at"	"ZNF557"	79230	"ENSG00000130544"
+"236358_at"	"ZNF429"	353088	"ENSG00000197013"
+"235747_at"	"SLC25A16"	8034	"ENSG00000122912"
+"236972_at"	"TRIM63"	84676	"ENSG00000158022"
+"237209_s_at"	"NFRKB"	4798	"ENSG00000170322"
+"237210_at"	"NFRKB"	4798	"ENSG00000170322"
+"239185_at"	"ABCA9"	10350	"ENSG00000154258"
+"239095_at"	"GRIN2B"	2904	"ENSG00000273079"
+"239490_at"	"COA1"	55744	"ENSG00000106603"
+"236832_at"	"ADCY10P1"	221442	"ENSG00000290554"
+"236589_at"	"ZNF701"	55762	"ENSG00000167562"
+"236682_at"	"CHD9NB"	105371267	"ENSG00000277639"
+"237106_at"	"SLC11A2"	4891	"ENSG00000110911"
+"238039_at"	"SCAMP1-AS1"	728769	"ENSG00000245556"
+"236635_at"	"ZNF667"	63934	"ENSG00000198046"
+"240136_at"	"PAQR9"	344838	"ENSG00000188582"
+"236124_at"	"GOLPH3-DT"	NA	"ENSG00000272086"
+"236174_at"	"BTF3-DT"	NA	"ENSG00000272525"
+"239679_at"	"ACTR6"	64431	"ENSG00000075089"
+"235654_at"	"TMEM218"	219854	"ENSG00000150433"
+"235876_at"	"TMEM218"	219854	"ENSG00000150433"
+"240444_x_at"	"CLIP1"	6249	"ENSG00000130779"
+"235687_at"	"ZNF626"	199777	"ENSG00000188171"
+"239434_at"	"CEP43"	11116	"ENSG00000213066"
+"239160_at"	"CEP43"	11116	"ENSG00000213066"
+"236591_at"	"MIR4458HG"	100505738	"ENSG00000247516"
+"238639_x_at"	"LINC01770"	NA	"ENSG00000225285"
+"239380_at"	"LINC01554"	202299	"ENSG00000236882"
+"237393_at"	"TPBGL"	100507050	"ENSG00000261594"
+"236076_at"	"MOCS2-DT"	257396	"ENSG00000247796"
+"239395_at"	"ARRDC3-AS1"	100129716	"ENSG00000281357"
+"235628_x_at"	"SLC12A2-DT"	644873	"ENSG00000245937"
+"239430_at"	"IGFL1"	374918	"ENSG00000188293"
+"238245_at"	"ENPP7"	339221	"ENSG00000182156"
+"240084_at"	"CBX2"	84733	"ENSG00000173894"
+"238160_at"	"ACOT12"	134526	"ENSG00000172497"
+"238484_s_at"	"SSBP2"	23635	"ENSG00000145687"
+"238861_at"	"SSBP2"	23635	"ENSG00000145687"
+"238483_at"	"SSBP2"	23635	"ENSG00000145687"
+"240027_at"	"LIN7A"	8825	"ENSG00000111052"
+"235792_x_at"	"PIK3C2A"	5286	"ENSG00000011405"
+"238631_at"	"ZNF891"	101060200	"ENSG00000214029"
+"238514_at"	"TMEM25"	84866	"ENSG00000149582"
+"238222_at"	"GKN2"	200504	"ENSG00000183607"
+"238022_at"	"CRNDE"	101927480	"ENSG00000245694"
+"238021_s_at"	"CRNDE"	101927480	"ENSG00000245694"
+"239579_at"	"EPHX4"	253152	"ENSG00000172031"
+"238719_at"	"PPP2CA"	5515	"ENSG00000113575"
+"235785_at"	"ZFHX3-AS1"	NA	"ENSG00000259768"
+"238815_at"	"LRRTM1"	347730	"ENSG00000162951"
+"239457_at"	"ATP8B3"	148229	"ENSG00000130270"
+"238418_at"	"SLC35B4"	84912	"ENSG00000205060"
+"238445_x_at"	"MGAT5B"	146664	"ENSG00000167889"
+"240096_at"	""	NA	"ENSG00000286725"
+"240089_at"	"HNRNPA2B1"	3181	"ENSG00000122566"
+"238743_at"	"EIF2AK2"	5610	"ENSG00000055332"
+"237754_at"	""	101928682	"ENSG00000261697"
+"236873_at"	"FBXO31"	79791	"ENSG00000103264"
+"239845_at"	"MAP1LC3B"	81631	"ENSG00000140941"
+"239943_x_at"	"PIGL"	9487	"ENSG00000108474"
+"236897_at"	""	NA	"ENSG00000271976"
+"235531_at"	""	NA	"ENSG00000271976"
+"235585_at"	"DR1"	1810	"ENSG00000117505"
+"237340_at"	"SLC26A8"	116369	"ENSG00000112053"
+"237144_at"	"LTBP3"	4054	"ENSG00000168056"
+"239800_at"	"UMPS"	7372	"ENSG00000114491"
+"239122_at"	"FCMR"	9214	"ENSG00000162894"
+"238877_at"	"EYA4"	2070	"ENSG00000112319"
+"236620_at"	"RIF1"	55183	"ENSG00000080345"
+"240098_at"	"RIF1"	55183	"ENSG00000080345"
+"239083_at"	"ZNF786"	136051	"ENSG00000197362"
+"236860_at"	"NPY6R"	4888	"ENSG00000226306"
+"239294_at"	"PIK3CG"	5294	"ENSG00000105851"
+"239996_x_at"	"ATP2A2"	488	"ENSG00000174437"
+"235515_at"	"SYNE4"	163183	"ENSG00000181392"
+"235661_at"	"POU2F2"	5452	"ENSG00000028277"
+"235888_at"	""	728411	"ENSG00000291102"
+"235643_at"	"SAMD9L"	219285	"ENSG00000177409"
+"236441_at"	"C17orf113"	110806298	"ENSG00000267221"
+"239751_at"	"LINC00513"	NA	"ENSG00000233559"
+"238619_at"	""	NA	"ENSG00000271204"
+"238296_at"	"GLIPR1L1"	256710	"ENSG00000173401"
+"238660_at"	"WDFY3"	23001	"ENSG00000163625"
+"236651_at"	"KALRN"	8997	"ENSG00000160145"
+"238081_at"	"WDFY3-AS2"	404201	"ENSG00000180769"
+"239113_at"	"CT66"	100507468	"ENSG00000234215"
+"235688_s_at"	"TRAF4"	9618	"ENSG00000076604"
+"236168_at"	"ACSL3"	2181	"ENSG00000123983"
+"236594_at"	"LLGL1"	3996	"ENSG00000131899"
+"235568_at"	"MCEMP1"	199675	"ENSG00000183019"
+"238569_at"	"GABBR1"	2550	"ENSG00000204681"
+"235791_x_at"	"CHD1"	1105	"ENSG00000153922"
+"238456_at"	"CHD1-DT"	100289230	"ENSG00000248489"
+"237701_at"	"C12orf54"	121273	"ENSG00000177627"
+"240353_s_at"	"C12orf54"	121273	"ENSG00000177627"
+"240221_at"	""	NA	"ENSG00000230551"
+"235563_at"	"GPRC5A"	9052	"ENSG00000013588"
+"236115_at"	"HTR7P1"	93164	"ENSG00000183935"
+"239412_at"	"IRF5"	3663	"ENSG00000128604"
+"240239_at"	"ZNF566"	84924	"ENSG00000186017"
+"235879_at"	"MBNL1"	4154	"ENSG00000152601"
+"236816_at"	"NAA25"	80018	"ENSG00000111300"
+"236340_at"	"RNF32-DT"	100506380	"ENSG00000182648"
+"236082_at"	"PHLDB3"	653583	"ENSG00000176531"
+"238188_at"	"IBA57-DT"	574432	"ENSG00000203684"
+"236629_at"	"IBA57"	200205	"ENSG00000181873"
+"237826_at"	"MICD"	NA	"ENSG00000229390"
+"238552_at"	"KMT2E"	55904	"ENSG00000005483"
+"235979_at"	"C7"	730	"ENSG00000112936"
+"236142_at"	""	NA	"ENSG00000234917"
+"240052_at"	"ITPR1"	3708	"ENSG00000150995"
+"235927_at"	"XPO1"	7514	"ENSG00000082898"
+"239896_at"	"LINC03011"	100289098	"ENSG00000237310"
+"239237_at"	"TRG-AS1"	100506776	"ENSG00000281103"
+"239381_at"	"KLK7"	5650	"ENSG00000169035"
+"239775_at"	""	NA	"ENSG00000237773"
+"239823_at"	"SNHG26"	109729180	"ENSG00000228649"
+"239973_at"	"SNHG26"	109729180	"ENSG00000228649"
+"240423_at"	"LINC02981"	NA	"ENSG00000214870"
+"240194_at"	"LINC02981"	NA	"ENSG00000214870"
+"240424_s_at"	"LINC02981"	NA	"ENSG00000214870"
+"237930_at"	"LINC02981"	NA	"ENSG00000214870"
+"238540_at"	"GARS1-DT"	NA	"ENSG00000196295"
+"239313_at"	"GARS1-DT"	NA	"ENSG00000196295"
+"239734_at"	"GARS1-DT"	NA	"ENSG00000196295"
+"239640_at"	"GARS1-DT"	NA	"ENSG00000196295"
+"239458_at"	"FLACC1"	130540	"ENSG00000155749"
+"237299_at"	"NARF"	26502	"ENSG00000141562"
+"237911_at"	""	NA	"ENSG00000288749"
+"239144_at"	"B3GAT2"	135152	"ENSG00000112309"
+"238412_at"	"RRN3P3"	100131998	"ENSG00000290865"
+"237956_s_at"	"C5orf58"	133874	"ENSG00000234511"
+"237237_at"	""	NA	"ENSG00000290101"
+"235572_at"	"SPC24"	147841	"ENSG00000161888"
+"238137_at"	"PLRG1"	5356	"ENSG00000171566"
+"236646_at"	"TMEM52B"	120939	"ENSG00000165685"
+"237597_at"	"EPHA1-AS1"	285965	"ENSG00000229153"
+"238180_at"	"MUC12-AS1"	102724094	"ENSG00000227053"
+"239142_at"	"RFESD"	317671	"ENSG00000175449"
+"236305_at"	"RFESD"	317671	"ENSG00000175449"
+"236468_at"	"TMEM132B"	114795	"ENSG00000139364"
+"236824_at"	"TMEM132B"	114795	"ENSG00000139364"
+"239201_at"	"CDK15"	65061	"ENSG00000138395"
+"236996_at"	""	NA	"ENSG00000272823"
+"238864_at"	"VWA3A"	146177	"ENSG00000175267"
+"235974_at"	"EXOC4"	60412	"ENSG00000131558"
+"235712_at"	"GAS5-AS1"	NA	"ENSG00000270084"
+"239031_at"	"SSTR2"	6752	"ENSG00000180616"
+"236036_at"	"INKA2-AS1"	NA	"ENSG00000227811"
+"238183_at"	"PRKAR1B"	5575	"ENSG00000188191"
+"238682_at"	"CCDC96"	257236	"ENSG00000173013"
+"236248_x_at"	"TADA2B"	93624	"ENSG00000173011"
+"235971_at"	"TIFA"	92610	"ENSG00000145365"
+"238858_at"	"TIFA"	92610	"ENSG00000145365"
+"240318_at"	"AFMID"	125061	"ENSG00000183077"
+"236538_at"	"GRIA2"	2891	"ENSG00000120251"
+"236981_at"	"C17orf99"	100141515	"ENSG00000187997"
+"238031_at"	"CD2BP2-DT"	101928707	"ENSG00000260219"
+"239499_at"	"DNAH2"	146754	"ENSG00000183914"
+"238838_at"	"TCERG1"	10915	"ENSG00000113649"
+"236557_at"	"ZBTB38"	253461	"ENSG00000177311"
+"237477_at"	"PDCL2"	132954	"ENSG00000163440"
+"236205_at"	"ABCC6P1"	653190	"ENSG00000291057"
+"237354_at"	"PDXDC1"	23042	"ENSG00000179889"
+"238921_at"	"LINC02604"	NA	"ENSG00000273142"
+"235884_at"	"LINC02604"	NA	"ENSG00000273142"
+"236102_at"	"NAV2"	89797	"ENSG00000166833"
+"238685_at"	"STXBP5-AS1"	NA	"ENSG00000233452"
+"238524_at"	"DENND2D"	79961	"ENSG00000162777"
+"235986_at"	"DENND2D"	79961	"ENSG00000162777"
+"237285_at"	"SORBS2"	8470	"ENSG00000154556"
+"238751_at"	"SORBS2"	8470	"ENSG00000154556"
+"238788_at"	"PHB1P19"	NA	"ENSG00000257246"
+"238036_at"	"SHE"	126669	"ENSG00000169291"
+"237493_at"	"IL22RA2"	116379	"ENSG00000164485"
+"236691_at"	""	NA	"ENSG00000286873"
+"235967_at"	""	NA	"ENSG00000273329"
+"235578_at"	"ABCC9"	10060	"ENSG00000069431"
+"236616_at"	"PSD4"	23550	"ENSG00000125637"
+"237163_x_at"	""	NA	"ENSG00000261127"
+"238547_at"	"HEXIM2"	124790	"ENSG00000168517"
+"240200_at"	"SULT1C2"	6819	"ENSG00000198203"
+"238686_at"	"FBXO3"	26273	"ENSG00000110429"
+"236337_at"	"SYCP2L"	221711	"ENSG00000153157"
+"240290_at"	""	NA	"ENSG00000255272"
+"236473_at"	"CC2D2A"	57545	"ENSG00000048342"
+"239974_at"	"SLIT3-AS1"	NA	"ENSG00000248222"
+"237484_at"	"SMCO3"	440087	"ENSG00000179256"
+"239231_at"	"ZNF101"	94039	"ENSG00000181896"
+"238481_at"	"MGP"	4256	"ENSG00000111341"
+"238064_at"	"CEP63"	80254	"ENSG00000182923"
+"238170_at"	"CEP63"	80254	"ENSG00000182923"
+"235542_at"	"TET3"	200424	"ENSG00000187605"
+"238630_at"	"OPA3"	80207	"ENSG00000125741"
+"236373_at"	"ADCYAP1R1"	117	"ENSG00000078549"
+"236728_at"	"LNPEP"	4012	"ENSG00000113441"
+"237642_at"	"CTBP1-DT"	NA	"ENSG00000196810"
+"236454_at"	"RNF212"	285498	"ENSG00000178222"
+"236163_at"	"LIX1"	167410	"ENSG00000145721"
+"236320_at"	"CCDC17"	149483	"ENSG00000159588"
+"235885_at"	"P2RY12"	64805	"ENSG00000169313"
+"237691_x_at"	"ENO3"	2027	"ENSG00000108515"
+"236250_at"	"AFG3L1P"	172	"ENSG00000223959"
+"236429_at"	""	122539214	"ENSG00000269825"
+"235829_at"	"CAHM"	100526820	"ENSG00000270419"
+"236154_at"	"QKI"	9444	"ENSG00000112531"
+"239028_at"	"LYPD6"	130574	"ENSG00000187123"
+"239447_at"	"TRA2B"	6434	"ENSG00000136527"
+"240227_at"	"MIER1"	57708	"ENSG00000198160"
+"239949_at"	"THNSL2"	55258	"ENSG00000144115"
+"236257_at"	"CD2AP"	23607	"ENSG00000198087"
+"239135_at"	"CPPED1"	55313	"ENSG00000103381"
+"236220_at"	"SLC16A10"	117247	"ENSG00000112394"
+"238828_at"	"MFSD4B"	91749	"ENSG00000173214"
+"238710_at"	"TMEM86A"	144110	"ENSG00000151117"
+"239282_at"	"CEP83"	51134	"ENSG00000173588"
+"239004_at"	"SQSTM1"	8878	"ENSG00000161011"
+"235530_at"	"SQSTM1"	8878	"ENSG00000161011"
+"238477_at"	"KIF1C"	10749	"ENSG00000129250"
+"236456_at"	"PTPN5"	84867	"ENSG00000110786"
+"235728_at"	"ZFP3"	124961	"ENSG00000180787"
+"238712_at"	"FOXP1"	27086	"ENSG00000114861"
+"236929_at"	"LINC03006"	441242	"ENSG00000290926"
+"238834_at"	"MYLK3"	91807	"ENSG00000140795"
+"239132_at"	"NOS1"	4842	"ENSG00000089250"
+"238401_at"	"ENDOV"	284131	"ENSG00000173818"
+"238402_s_at"	"ENDOV"	284131	"ENSG00000173818"
+"238623_at"	"MAP3K4-AS1"	117981787	"ENSG00000272841"
+"240382_at"	"DSP-AS1"	NA	"ENSG00000261189"
+"235920_at"	""	NA	"ENSG00000290927"
+"239112_at"	""	NA	"ENSG00000268536"
+"235754_at"	"HFE"	3077	"ENSG00000010704"
+"238510_at"	"KRBOX5"	124411	"ENSG00000197302"
+"239270_at"	"PLCXD3"	345557	"ENSG00000182836"
+"237337_at"	"CC2D1B"	200014	"ENSG00000154222"
+"239127_at"	"SUNO1"	NA	"ENSG00000277013"
+"238706_at"	"TENT2"	167153	"ENSG00000164329"
+"236146_at"	"SYNCRIP"	10492	"ENSG00000135316"
+"239568_at"	"PLEKHH2"	130271	"ENSG00000152527"
+"235580_at"	"ZNF141"	7700	"ENSG00000131127"
+"238545_at"	"BRD7"	29117	"ENSG00000166164"
+"237681_at"	"RBX1P2"	NA	"ENSG00000251050"
+"235690_at"	"ZNF594"	84622	"ENSG00000180626"
+"238473_at"	"KMT2E-AS1"	NA	"ENSG00000239569"
+"239532_at"	"PPM1B-DT"	NA	"ENSG00000273106"
+"236402_at"	"BRAF"	673	"ENSG00000157764"
+"235768_at"	"SH3RF2"	153769	"ENSG00000156463"
+"237783_at"	"PLAC8L1"	153770	"ENSG00000173261"
+"239542_at"	"ITPR3"	3710	"ENSG00000096433"
+"239563_at"	""	NA	"ENSG00000261167"
+"237121_at"	"ADH5"	128	"ENSG00000197894"
+"239180_at"	"MMP25-AS1"	124900372	"ENSG00000261971"
+"240054_at"	"MMP25-AS1"	124900372	"ENSG00000261971"
+"235554_x_at"	"PACRGL"	133015	"ENSG00000163138"
+"235517_at"	"PACRGL"	133015	"ENSG00000163138"
+"238427_at"	"GRPEL2"	134266	"ENSG00000164284"
+"236811_at"	"DMRTC2"	63946	"ENSG00000142025"
+"239355_at"	"GMCL1"	64395	"ENSG00000087338"
+"236334_at"	""	NA	"ENSG00000273183"
+"235587_at"	"PAXIP1-DT"	202781	"ENSG00000273344"
+"239344_at"	""	102724859	"ENSG00000279249"
+"237280_at"	"TCTE1"	202500	"ENSG00000146221"
+"235906_at"	"TAF10"	6881	"ENSG00000166337"
+"238959_at"	"LARP4"	113251	"ENSG00000161813"
+"238960_s_at"	"LARP4"	113251	"ENSG00000161813"
+"238120_at"	"RPH3AL"	9501	"ENSG00000181031"
+"236868_at"	""	NA	"ENSG00000285081"
+"236783_at"	"KCNIP4"	80333	"ENSG00000185774"
+"238949_at"	"RNF145"	153830	"ENSG00000145860"
+"239295_at"	"SRSF12"	135295	"ENSG00000154548"
+"236512_at"	"SESN1"	27244	"ENSG00000080546"
+"238733_at"	"MDM2"	4193	"ENSG00000135679"
+"237891_at"	"MDM2"	4193	"ENSG00000135679"
+"235492_at"	"RNF217"	154214	"ENSG00000146373"
+"236318_x_at"	"FBLL1"	345630	"ENSG00000188573"
+"235760_at"	"NSD1"	64324	"ENSG00000165671"
+"235892_at"	"COLCA1"	399948	"ENSG00000196167"
+"235907_at"	"TMEM33"	55161	"ENSG00000109133"
+"238831_at"	"TMEM33"	55161	"ENSG00000109133"
+"236681_at"	"HOXD13"	3239	"ENSG00000128714"
+"239215_at"	""	100289495	"ENSG00000286760"
+"239182_at"	"HAGLR"	401022	"ENSG00000224189"
+"235574_at"	"GBP4"	115361	"ENSG00000162654"
+"239139_at"	"CPNE9"	151835	"ENSG00000144550"
+"240293_at"	"CCDC153"	283152	"ENSG00000248712"
+"235977_at"	"LONRF2"	164832	"ENSG00000170500"
+"239159_at"	"GOSR2"	9570	"ENSG00000108433"
+"237613_at"	"FOXR1"	283150	"ENSG00000176302"
+"235771_at"	"LINC00472"	79940	"ENSG00000233237"
+"238469_at"	"OGFRL1"	79627	"ENSG00000119900"
+"238043_at"	"ARID1B"	57492	"ENSG00000049618"
+"240008_at"	"ARID1B"	57492	"ENSG00000049618"
+"239977_at"	"C12orf42"	374470	"ENSG00000179088"
+"240395_at"	"DGKI"	9162	"ENSG00000157680"
+"236705_at"	"TMEM196"	256130	"ENSG00000173452"
+"239463_at"	""	NA	"ENSG00000272622"
+"236690_at"	"RHBDD1"	84236	"ENSG00000144468"
+"237440_at"	""	NA	"ENSG00000270681"
+"235915_at"	"F11"	2160	"ENSG00000088926"
+"236302_at"	"PPM1E"	22843	"ENSG00000175175"
+"237211_x_at"	"MORN3"	283385	"ENSG00000139714"
+"236465_at"	"RNF175"	285533	"ENSG00000145428"
+"236667_at"	"TMEM120B"	144404	"ENSG00000188735"
+"236087_at"	"ABLIM2"	84448	"ENSG00000163995"
+"238525_at"	"DDX56"	54606	"ENSG00000136271"
+"238866_at"	"ZSWIM9"	374920	"ENSG00000185453"
+"239647_at"	"CHST13"	166012	"ENSG00000180767"
+"235938_at"	"ARMC9"	80210	"ENSG00000135931"
+"236240_at"	"ABHD18"	80167	"ENSG00000164074"
+"240342_at"	"TRIM61"	391712	"ENSG00000183439"
+"238990_x_at"	"TRIM61"	391712	"ENSG00000183439"
+"238505_at"	"ADPRH"	141	"ENSG00000144843"
+"236309_x_at"	"ZMIZ2"	83637	"ENSG00000122515"
+"239926_at"	"PCF11-AS1"	NA	"ENSG00000269939"
+"237040_at"	"CWF19L2"	143884	"ENSG00000152404"
+"236111_at"	"LINC01238"	102723927	"ENSG00000261186"
+"235795_at"	"PAX6"	5080	"ENSG00000007372"
+"235820_at"	"ERC1"	23085	"ENSG00000082805"
+"235794_at"	"MOBP"	4336	"ENSG00000168314"
+"236345_at"	"TBXAS1"	6916	"ENSG00000059377"
+"235996_at"	"RASSF8"	11228	"ENSG00000123094"
+"236563_at"	"RD3"	343035	"ENSG00000198570"
+"239825_at"	"ATF6"	22926	"ENSG00000118217"
+"235522_at"	"CLEC2D"	29121	"ENSG00000069493"
+"236022_at"	"MYO19"	80179	"ENSG00000278259"
+"238787_at"	"DENND1B"	163486	"ENSG00000213047"
+"236554_x_at"	"TMC8"	147138	"ENSG00000167895"
+"239805_at"	"SLC13A2"	9058	"ENSG00000007216"
+"238872_at"	"LINC02731"	100128239	"ENSG00000204241"
+"237512_at"	"NAV2-AS2"	NA	"ENSG00000254453"
+"238917_s_at"	"DENND5B"	160518	"ENSG00000170456"
+"237160_at"	"CCDC83"	220047	"ENSG00000150676"
+"238035_at"	"SP3"	6670	"ENSG00000172845"
+"239062_at"	"TMC6"	11322	"ENSG00000141524"
+"238607_at"	"ZNF296"	162979	"ENSG00000170684"
+"239002_at"	"ASPM"	259266	"ENSG00000066279"
+"236505_at"	"NUP62"	23636	"ENSG00000213024"
+"236664_at"	"AKT2"	208	"ENSG00000105221"
+"236917_at"	"LRRC34"	151827	"ENSG00000171757"
+"236918_s_at"	"LRRC34"	151827	"ENSG00000171757"
+"236654_s_at"	""	NA	"ENSG00000270135"
+"237635_at"	"FHL1P1"	100128164	"ENSG00000239219"
+"238010_at"	"C1orf174"	339448	"ENSG00000198912"
+"236661_at"	"IQCF6"	440956	"ENSG00000214686"
+"238932_at"	"TSC22D2"	9819	"ENSG00000196428"
+"235523_at"	"CTC1"	80169	"ENSG00000178971"
+"237942_at"	"SNRK-AS1"	NA	"ENSG00000234617"
+"239947_at"	""	NA	"ENSG00000289297"
+"240121_x_at"	"LINC02987"	101927151	"ENSG00000267575"
+"239244_at"	"LINC02397"	NA	"ENSG00000205056"
+"237025_at"	"RNF11"	26994	"ENSG00000123091"
+"236093_at"	"ZNF8-DT"	NA	"ENSG00000268516"
+"238126_at"	"APTR"	100505854	"ENSG00000214293"
+"240186_at"	"MAGI2"	9863	"ENSG00000187391"
+"236653_at"	"LINC00662"	148189	"ENSG00000261824"
+"235934_at"	"NAPA-AS1"	NA	"ENSG00000268061"
+"239362_at"	"NAPA-AS1"	NA	"ENSG00000268061"
+"236166_at"	"KIDINS220"	57498	"ENSG00000134313"
+"239699_s_at"	""	NA	"ENSG00000291178"
+"238087_at"	"RTCA"	8634	"ENSG00000137996"
+"239342_at"	"DGKZ"	8525	"ENSG00000149091"
+"238784_at"	"DPY19L2"	283417	"ENSG00000177990"
+"238956_at"	"EFNA2"	1943	"ENSG00000099617"
+"239007_at"	"ZNF616"	90317	"ENSG00000204611"
+"238107_at"	""	NA	"ENSG00000272953"
+"235953_at"	"ZNF610"	162963	"ENSG00000167554"
+"235913_at"	"ZNF880"	400713	"ENSG00000221923"
+"236574_at"	"ZNF528-AS1"	NA	"ENSG00000269834"
+"236136_at"	"CYTH3"	9265	"ENSG00000008256"
+"235850_at"	"FAM162A"	26355	"ENSG00000114023"
+"238493_at"	"ZNF506"	440515	"ENSG00000081665"
+"240109_at"	""	NA	"ENSG00000267481"
+"237812_at"	""	NA	"ENSG00000279655"
+"238565_at"	"PUS7L"	83448	"ENSG00000129317"
+"238826_x_at"	"WDR12"	55759	"ENSG00000138442"
+"235769_at"	"A1BG-AS1"	503538	"ENSG00000268895"
+"236069_at"	"LINC02560"	110806301	"ENSG00000268307"
+"239446_x_at"	"DCBLD2"	131566	"ENSG00000057019"
+"235835_at"	""	NA	"ENSG00000268912"
+"235498_at"	"LRRIQ3"	127255	"ENSG00000162620"
+"238516_at"	"BMPR2"	659	"ENSG00000204217"
+"237242_at"	"LINC00661"	126536	"ENSG00000205396"
+"239108_at"	"FAR2"	55711	"ENSG00000064763"
+"240172_at"	"ERGIC2"	51290	"ENSG00000087502"
+"237507_at"	"KRT73"	319101	"ENSG00000186049"
+"235957_at"	"GRIP1"	23426	"ENSG00000155974"
+"239026_x_at"	"AGAP3"	116988	"ENSG00000133612"
+"240323_at"	"FXYD6-AS1"	NA	"ENSG00000254528"
+"239706_x_at"	"PSG1"	5669	"ENSG00000231924"
+"237234_at"	"CYTH2"	9266	"ENSG00000105443"
+"238529_at"	""	NA	"ENSG00000264207"
+"236686_at"	"MVK"	4598	"ENSG00000110921"
+"236637_at"	"TAS2R15P"	NA	"ENSG00000212125"
+"237415_at"	""	NA	"ENSG00000257925"
+"238986_at"	"LINC-PINT"	378805	"ENSG00000231721"
+"237203_at"	""	NA	"ENSG00000229191"
+"239697_x_at"	"CFAP20DC"	200844	"ENSG00000163689"
+"235922_at"	"TPM4"	7171	"ENSG00000167460"
+"237284_at"	"DNAJB8"	165721	"ENSG00000179407"
+"239250_at"	""	147947	"ENSG00000290720"
+"236417_at"	""	NA	"ENSG00000289574"
+"238702_at"	"SPTSSB"	165679	"ENSG00000196542"
+"237367_x_at"	"CFLAR"	8837	"ENSG00000003402"
+"237722_at"	"FLI1"	2313	"ENSG00000151702"
+"238148_s_at"	"ZNF818P"	NA	"ENSG00000269001"
+"238149_at"	"ZNF818P"	NA	"ENSG00000269001"
+"236751_at"	""	NA	"ENSG00000270061"
+"236977_at"	"LINC03007"	646588	"ENSG00000223561"
+"238929_at"	"SRSF8"	10929	"ENSG00000263465"
+"235683_at"	"SESN3"	143686	"ENSG00000149212"
+"235684_s_at"	"SESN3"	143686	"ENSG00000149212"
+"237739_at"	"BGLT3"	103344929	"ENSG00000260629"
+"239340_at"	"ZNF536"	9745	"ENSG00000198597"
+"238319_at"	"PRKAG2-AS2"	644090	"ENSG00000242048"
+"235779_at"	"ZNF790-AS1"	284408	"ENSG00000267254"
+"238952_x_at"	"ZNF829"	374899	"ENSG00000185869"
+"237306_at"	"ZNF829"	374899	"ENSG00000185869"
+"238823_at"	"FMNL3"	91010	"ENSG00000161791"
+"239995_at"	"ZNF568"	374900	"ENSG00000198453"
+"238092_at"	"LRFN4"	78999	"ENSG00000173621"
+"238026_at"	"RPL35A"	6165	"ENSG00000182899"
+"238037_at"	"LMLN"	89782	"ENSG00000185621"
+"236436_at"	"SLC25A45"	283130	"ENSG00000162241"
+"237535_x_at"	"NRXN1"	9378	"ENSG00000179915"
+"235911_at"	"MELTF"	4241	"ENSG00000163975"
+"239233_at"	"CCDC88A"	55704	"ENSG00000115355"
+"238759_at"	"CCDC88A"	55704	"ENSG00000115355"
+"236328_at"	"ZNF285"	26974	"ENSG00000267508"
+"235717_at"	"ZNF229"	7772	"ENSG00000278318"
+"237251_at"	"LRRC71"	149499	"ENSG00000160838"
+"235504_at"	"GREM2"	64388	"ENSG00000180875"
+"235649_at"	"ADAMTS8"	11095	"ENSG00000134917"
+"235713_at"	"ALKBH8"	91801	"ENSG00000137760"
+"235610_at"	"ALKBH8"	91801	"ENSG00000137760"
+"236088_at"	"NTNG1"	22854	"ENSG00000162631"
+"237175_at"	"OS9"	10956	"ENSG00000135506"
+"239763_at"	"PRDM11"	56981	"ENSG00000019485"
+"238201_at"	""	105376975	"ENSG00000286352"
+"239919_at"	"TBX5-AS1"	255480	"ENSG00000255399"
+"239343_at"	"TMEM263-DT"	NA	"ENSG00000260329"
+"238242_at"	"SBNO1-AS1"	112268105	"ENSG00000256092"
+"237591_at"	"LINC00173"	100287569	"ENSG00000196668"
+"235539_at"	"IL18BP"	10068	"ENSG00000137496"
+"238320_at"	"NEAT1"	283131	"ENSG00000245532"
+"238755_at"	"RASSF10"	644943	"ENSG00000189431"
+"237131_at"	"RIIAD1"	284485	"ENSG00000178796"
+"237092_at"	""	NA	"ENSG00000283849"
+"239461_at"	"GALNT15"	117248	"ENSG00000131386"
+"236361_at"	"GALNT15"	117248	"ENSG00000131386"
+"237741_at"	"SLC25A36"	55186	"ENSG00000114120"
+"237002_at"	"NCDN"	23154	"ENSG00000020129"
+"239796_x_at"	"TIRAP"	114609	"ENSG00000150455"
+"236608_at"	"ADGRF3"	165082	"ENSG00000173567"
+"237748_at"	"SCGB2B2"	284402	"ENSG00000205209"
+"240346_at"	""	NA	"ENSG00000248576"
+"238216_at"	"SYT9-AS1"	100506258	"ENSG00000251364"
+"236479_at"	"SCN8A"	6334	"ENSG00000196876"
+"235969_at"	"SCN8A"	6334	"ENSG00000196876"
+"236329_at"	"SCN8A"	6334	"ENSG00000196876"
+"237790_at"	"SCN8A"	6334	"ENSG00000196876"
+"237364_at"	"ZNF529-AS1"	101927599	"ENSG00000233527"
+"240142_at"	""	NA	"ENSG00000288061"
+"238646_at"	""	NA	"ENSG00000273702"
+"236039_at"	"LYPD5"	284348	"ENSG00000159871"
+"239043_at"	"ZNF404"	342908	"ENSG00000176222"
+"237058_x_at"	"SLC6A13"	6540	"ENSG00000010379"
+"237643_at"	""	NA	"ENSG00000289259"
+"236269_at"	"ZNF628"	89887	"ENSG00000197483"
+"238288_at"	""	NA	"ENSG00000231691"
+"238889_at"	"AGBL5"	60509	"ENSG00000084693"
+"238665_at"	"ZNF865"	100507290	"ENSG00000261221"
+"238009_at"	"SOX5"	6660	"ENSG00000134532"
+"236461_at"	"ABHD1"	84696	"ENSG00000143994"
+"237319_at"	"PRR30"	339779	"ENSG00000186143"
+"236127_at"	"ZBTB17"	7709	"ENSG00000116809"
+"236059_at"	""	NA	"ENSG00000279342"
+"240075_at"	"FHAD1-AS1"	101927417	"ENSG00000233485"
+"238003_at"	"HEPACAM"	220296	"ENSG00000165478"
+"237641_at"	""	NA	"ENSG00000267649"
+"239625_at"	""	NA	"ENSG00000271327"
+"236521_at"	""	NA	"ENSG00000271259"
+"239402_at"	"COX10-DT"	100874058	"ENSG00000236088"
+"235877_at"	""	NA	"ENSG00000289147"
+"238893_at"	"ATP2B1-AS1"	NA	"ENSG00000271614"
+"236898_at"	""	NA	"ENSG00000274213"
+"236842_at"	"EFCAB13-DT"	102724508	"ENSG00000263293"
+"236611_at"	"ZNF232-AS1"	101928000	"ENSG00000234327"
+"239754_at"	"SNHG29"	125144	"ENSG00000175061"
+"236913_at"	"SNHG29"	125144	"ENSG00000175061"
+"235593_at"	"ZEB2"	9839	"ENSG00000169554"
+"236534_at"	"BNIPL"	149428	"ENSG00000163141"
+"239536_at"	"C1orf56"	54964	"ENSG00000143443"
+"237943_at"	"TMCC1"	23023	"ENSG00000172765"
+"236640_at"	"MIR100HG"	399959	"ENSG00000255248"
+"239527_at"	"RAB3GAP1"	22930	"ENSG00000115839"
+"239644_at"	"ZC3H8"	84524	"ENSG00000144161"
+"239984_at"	"SCN7A"	6332	"ENSG00000136546"
+"237215_s_at"	"TFRC"	7037	"ENSG00000072274"
+"237214_at"	"TFRC"	7037	"ENSG00000072274"
+"238624_at"	"NLK"	51701	"ENSG00000087095"
+"236158_at"	""	NA	"ENSG00000291089"
+"239900_x_at"	"GFM1"	85476	"ENSG00000168827"
+"238854_at"	"NRAV"	100506668	"ENSG00000248008"
+"239569_at"	"FZD10-AS1"	440119	"ENSG00000250208"
+"237090_at"	"UVRAG-DT"	100506113	"ENSG00000255507"
+"237666_at"	"XRRA1"	143570	"ENSG00000166435"
+"235960_at"	"FXR1"	8087	"ENSG00000114416"
+"237679_at"	"TRIM66"	9866	"ENSG00000166436"
+"239181_at"	"CYP2R1"	120227	"ENSG00000186104"
+"239785_at"	"DZIP1L"	199221	"ENSG00000158163"
+"238373_at"	"H1-7"	341567	"ENSG00000187166"
+"236876_at"	"H1-7"	341567	"ENSG00000187166"
+"237995_at"	"RIMBP2"	23504	"ENSG00000060709"
+"238817_at"	"RIMBP2"	23504	"ENSG00000060709"
+"237313_at"	"C1QTNF1-AS1"	NA	"ENSG00000265096"
+"236803_at"	""	NA	"ENSG00000262879"
+"239064_at"	""	NA	"ENSG00000261338"
+"236571_at"	"SLC2A3"	6515	"ENSG00000059804"
+"236025_at"	"NCOR2"	9612	"ENSG00000196498"
+"237360_at"	"ACTRT2"	140625	"ENSG00000169717"
+"239641_at"	"SENCR"	100507392	"ENSG00000254703"
+"240306_at"	"LMCD1"	29995	"ENSG00000071282"
+"240292_x_at"	"ANKS1B"	56899	"ENSG00000185046"
+"235558_at"	"RBMS2"	5939	"ENSG00000076067"
+"235992_s_at"	"CYB5RL"	606495	"ENSG00000215883"
+"238280_at"	"CYB5RL"	606495	"ENSG00000215883"
+"236546_at"	"POLA2"	23649	"ENSG00000014138"
+"236299_at"	"ZNF496"	84838	"ENSG00000162714"
+"237553_at"	"LZTFL1"	54585	"ENSG00000163818"
+"238768_at"	"C2orf68"	388969	"ENSG00000168887"
+"237189_at"	"HOXB-AS1"	100874362	"ENSG00000230148"
+"239791_at"	"HOXB-AS3"	404266	"ENSG00000233101"
+"236892_s_at"	"HOXB-AS3"	404266	"ENSG00000233101"
+"240151_at"	"HOXB-AS3"	404266	"ENSG00000233101"
+"236893_at"	"HOXB-AS3"	404266	"ENSG00000233101"
+"239153_at"	"HOTAIR"	100124700	"ENSG00000228630"
+"239389_at"	""	NA	"ENSG00000270175"
+"236668_at"	""	101926967	"ENSG00000260793"
+"239920_at"	""	NA	"ENSG00000288877"
+"239487_at"	"FAM98A"	25940	"ENSG00000119812"
+"240314_at"	"NCOR1"	9611	"ENSG00000141027"
+"238078_at"	"SEC22A"	26984	"ENSG00000121542"
+"238290_at"	"PHC2-AS1"	101929464	"ENSG00000233246"
+"238420_at"	"TAOK1"	57551	"ENSG00000160551"
+"236500_at"	""	NA	"ENSG00000271993"
+"238711_s_at"	"ZNF148"	7707	"ENSG00000163848"
+"239024_at"	"ZNF148"	7707	"ENSG00000163848"
+"236665_at"	"CCDC18"	343099	"ENSG00000122483"
+"236754_at"	"PPP1R2"	5504	"ENSG00000184203"
+"236119_s_at"	"SPRR2G"	6706	"ENSG00000159516"
+"238124_at"	"MYOM3"	127294	"ENSG00000142661"
+"240285_at"	"AQP2"	359	"ENSG00000167580"
+"236630_at"	"AQP2"	359	"ENSG00000167580"
+"236990_at"	"EIF2AK3-DT"	NA	"ENSG00000234028"
+"237113_at"	""	NA	"ENSG00000289429"
+"237075_at"	"ACTR3-AS1"	NA	"ENSG00000228857"
+"236400_at"	"IDH1-AS1"	100507475	"ENSG00000231908"
+"236336_at"	"BOLA3-DT"	100507171	"ENSG00000225439"
+"239517_at"	"LINC02478"	100505984	"ENSG00000285373"
+"237375_at"	"PDE11A-AS1"	NA	"ENSG00000229941"
+"237248_at"	"PDE11A"	50940	"ENSG00000128655"
+"237034_at"	""	NA	"ENSG00000279673"
+"239511_s_at"	"SRSF4"	6429	"ENSG00000116350"
+"239512_at"	"SRSF4"	6429	"ENSG00000116350"
+"239491_at"	"CERS5"	91012	"ENSG00000139624"
+"239764_at"	"ITPR1-DT"	100996539	"ENSG00000231249"
+"236575_at"	"ARHGEF26-AS1"	100507524	"ENSG00000243069"
+"236323_at"	"NECTIN3-AS1"	NA	"ENSG00000242242"
+"239347_at"	"GSK3B-DT"	NA	"ENSG00000242622"
+"237270_at"	""	107986163	"ENSG00000272970"
+"240272_at"	""	NA	"ENSG00000291165"
+"239666_at"	""	NA	"ENSG00000271380"
+"239736_at"	""	NA	"ENSG00000289524"
+"239521_at"	"MELTF-AS1"	100507057	"ENSG00000228109"
+"238969_at"	"SLC66A1L"	152078	"ENSG00000174899"
+"238982_at"	"DENR"	8562	"ENSG00000139726"
+"237482_s_at"	"ACAD10"	80724	"ENSG00000111271"
+"238655_at"	"ACAD10"	80724	"ENSG00000111271"
+"235886_at"	"DCST1-AS1"	NA	"ENSG00000232093"
+"239639_at"	"LINC01977"	NA	"ENSG00000262772"
+"237584_at"	""	NA	"ENSG00000279090"
+"235644_at"	"CCDC138"	165055	"ENSG00000163006"
+"238663_x_at"	"GRIA4"	2893	"ENSG00000152578"
+"237289_at"	"CREB1"	1385	"ENSG00000118260"
+"238573_at"	"OTUD7B"	56957	"ENSG00000264522"
+"238994_at"	"OTUD7B"	56957	"ENSG00000264522"
+"235931_at"	"METTL21A"	151194	"ENSG00000144401"
+"239287_at"	"LINC01857"	NA	"ENSG00000224137"
+"236234_at"	"PDE1A"	5136	"ENSG00000115252"
+"236704_at"	""	NA	"ENSG00000272755"
+"238442_at"	""	NA	"ENSG00000276728"
+"239183_at"	"ANGPTL1"	9068	"ENSG00000116194"
+"236458_at"	""	NA	"ENSG00000289519"
+"239220_at"	"PRSS23-AS1"	NA	"ENSG00000255471"
+"239262_at"	""	NA	"ENSG00000280339"
+"238513_at"	"PRRG4"	79056	"ENSG00000135378"
+"236954_at"	"BOLL"	66037	"ENSG00000152430"
+"238275_at"	"HAP1"	9001	"ENSG00000173805"
+"239138_at"	"NAA50"	80218	"ENSG00000121579"
+"236997_at"	"DPP3-DT"	101928069	"ENSG00000255517"
+"238139_at"	""	101928728	"ENSG00000260063"
+"238094_at"	""	101928728	"ENSG00000260063"
+"237335_at"	"ZP1"	22917	"ENSG00000149506"
+"239675_at"	"LINC00900"	NA	"ENSG00000246100"
+"239685_at"	"LINC00900"	NA	"ENSG00000246100"
+"235890_at"	"TBL1XR1"	79718	"ENSG00000177565"
+"240313_at"	"DMRTB1"	63948	"ENSG00000143006"
+"237960_at"	"CEP112"	201134	"ENSG00000154240"
+"236341_at"	"CTLA4"	1493	"ENSG00000163599"
+"239090_at"	"FAM161A"	84140	"ENSG00000170264"
+"236251_at"	"ITGAV"	3685	"ENSG00000138448"
+"236814_at"	"MDM4"	4194	"ENSG00000198625"
+"238295_at"	"TEFM"	79736	"ENSG00000172171"
+"239653_at"	"RTKN"	6242	"ENSG00000114993"
+"238591_at"	"CYBC1"	79415	"ENSG00000178927"
+"237030_at"	"ACP3"	55	"ENSG00000014257"
+"235845_at"	"SP5"	389058	"ENSG00000204335"
+"236273_at"	"NBPF1"	55672	"ENSG00000219481"
+"239427_at"	"SLAMF1"	6504	"ENSG00000117090"
+"240319_at"	""	NA	"ENSG00000289727"
+"236286_at"	"PROCA1"	147011	"ENSG00000167525"
+"236113_at"	""	NA	"ENSG00000289074"
+"238649_at"	"PITPNC1"	26207	"ENSG00000154217"
+"239749_at"	"FAF1"	11124	"ENSG00000185104"
+"236200_at"	"FAF1"	11124	"ENSG00000185104"
+"237431_at"	"USP32"	84669	"ENSG00000170832"
+"238671_at"	"EPHA4"	2043	"ENSG00000116106"
+"237249_at"	"KCNQ1OT1"	10984	"ENSG00000269821"
+"239357_at"	"ATP2B2"	491	"ENSG00000157087"
+"239390_at"	"GTDC1"	79712	"ENSG00000121964"
+"238585_at"	"GTDC1"	79712	"ENSG00000121964"
+"236457_at"	"GTDC1"	79712	"ENSG00000121964"
+"239173_at"	"PATJ"	10207	"ENSG00000132849"
+"238129_s_at"	"FZD2"	2535	"ENSG00000180340"
+"239081_at"	""	NA	"ENSG00000288833"
+"240425_x_at"	"ROBO2"	6092	"ENSG00000185008"
+"239241_at"	"TMEM123-DT"	101928424	"ENSG00000255337"
+"238441_at"	"PRKAA2"	5563	"ENSG00000162409"
+"238489_at"	"PRKAA2"	5563	"ENSG00000162409"
+"240349_at"	"PRKAA2"	5563	"ENSG00000162409"
+"236507_at"	"ZDHHC3"	51304	"ENSG00000163812"
+"235831_at"	"ZNF385D"	79750	"ENSG00000151789"
+"235918_x_at"	"CEP97"	79598	"ENSG00000182504"
+"236058_at"	"KDF1"	126695	"ENSG00000175707"
+"235606_at"	"DUBR"	344595	"ENSG00000243701"
+"239466_at"	"DUBR"	344595	"ENSG00000243701"
+"239833_at"	"COMMD1"	150684	"ENSG00000173163"
+"238147_at"	"TRIM46"	80128	"ENSG00000163462"
+"238112_at"	"B3GAT1-DT"	NA	"ENSG00000255545"
+"238075_at"	"CHEK1"	1111	"ENSG00000149554"
+"239755_at"	"ST3GAL5"	8869	"ENSG00000115525"
+"236198_at"	"LINC01215"	101929623	"ENSG00000271856"
+"238521_at"	"FGF12"	2257	"ENSG00000114279"
+"238581_at"	"GBP5"	115362	"ENSG00000154451"
+"237109_at"	"TOM1L2"	146691	"ENSG00000175662"
+"235703_at"	"PLB1"	151056	"ENSG00000163803"
+"238262_at"	"SPDYA"	245711	"ENSG00000163806"
+"236717_at"	"TOGARAM2"	165186	"ENSG00000189350"
+"237840_at"	"LINC01118"	388948	"ENSG00000222005"
+"237772_at"	""	NA	"ENSG00000225187"
+"237546_at"	"IL19"	29949	"ENSG00000142224"
+"239696_at"	""	NA	"ENSG00000289213"
+"239707_at"	"SLC5A10"	125206	"ENSG00000154025"
+"238167_at"	"LINC02693"	339263	"ENSG00000212719"
+"238166_s_at"	"LINC02693"	339263	"ENSG00000212719"
+"240236_at"	"STXBP5L"	9515	"ENSG00000145087"
+"238360_s_at"	"LASP1NB"	100505576	"ENSG00000263874"
+"236066_at"	"NHEJ1"	79840	"ENSG00000187736"
+"240369_at"	"TTC7A"	57217	"ENSG00000068724"
+"238953_at"	"SP2-AS1"	NA	"ENSG00000234494"
+"238207_at"	"UQCC5"	440957	"ENSG00000168273"
+"235897_at"	"COPZ2"	51226	"ENSG00000005243"
+"237560_at"	"MRPS5"	64969	"ENSG00000144029"
+"236779_at"	"MRPS5"	64969	"ENSG00000144029"
+"235729_at"	"ZNF514"	84874	"ENSG00000144026"
+"236477_at"	"PRPF40A"	55660	"ENSG00000196504"
+"238777_x_at"	""	NA	"ENSG00000273308"
+"238804_at"	""	NA	"ENSG00000236833"
+"235627_at"	"PFN4"	375189	"ENSG00000176732"
+"238811_at"	"ATP11B"	23200	"ENSG00000058063"
+"237408_at"	"DCUN1D1"	54165	"ENSG00000043093"
+"238879_at"	"DCUN1D1"	54165	"ENSG00000043093"
+"239063_at"	""	NA	"ENSG00000266947"
+"237579_at"	""	NA	"ENSG00000266947"
+"240234_at"	"RAB3GAP2"	25782	"ENSG00000118873"
+"237005_at"	""	NA	"ENSG00000291224"
+"239782_at"	"RBP1"	5947	"ENSG00000114115"
+"239880_at"	"UBE2E2-DT"	100505877	"ENSG00000233153"
+"238958_at"	"NKIRAS1"	28512	"ENSG00000197885"
+"237227_at"	"NEK10"	152110	"ENSG00000163491"
+"239486_at"	"REL"	5966	"ENSG00000162924"
+"235566_at"	"TMF1"	7110	"ENSG00000144747"
+"236829_at"	"TMF1"	7110	"ENSG00000144747"
+"235494_at"	"LSAMP"	4045	"ENSG00000185565"
+"237027_at"	"LSAMP-AS1"	101926903	"ENSG00000240922"
+"237190_at"	"BTD"	686	"ENSG00000169814"
+"235733_at"	"GXYLT2"	727936	"ENSG00000172986"
+"235968_at"	"AGAP1"	116987	"ENSG00000157985"
+"236314_at"	"EPM2AIP1"	9852	"ENSG00000178567"
+"239240_at"	""	100130691	"ENSG00000213963"
+"240340_at"	"SPATA3"	130560	"ENSG00000173699"
+"238727_at"	""	122319436	"ENSG00000288658"
+"238419_at"	"PHLDB2"	90102	"ENSG00000144824"
+"235584_at"	"STARD7-AS1"	NA	"ENSG00000204685"
+"235739_at"	"NR4A2"	4929	"ENSG00000153234"
+"238014_at"	"NEMP2"	100131211	"ENSG00000189362"
+"238559_at"	"AFTPH-DT"	101927402	"ENSG00000260101"
+"236719_at"	"ID2-AS1"	NA	"ENSG00000235092"
+"237880_at"	"MIR3681HG"	100506457	"ENSG00000224184"
+"237321_at"	"MIR3681HG"	100506457	"ENSG00000224184"
+"235861_at"	""	NA	"ENSG00000273456"
+"237934_at"	"DIRC3-AS1"	NA	"ENSG00000233143"
+"239325_at"	"DNAJC27-AS1"	729723	"ENSG00000224165"
+"236657_at"	"CRIM1-DT"	NA	"ENSG00000260025"
+"238934_at"	"LINC01116"	NA	"ENSG00000163364"
+"236451_at"	"LINC01806"	100996579	"ENSG00000227403"
+"236598_at"	"LINC01806"	100996579	"ENSG00000227403"
+"238887_at"	"PARTICL"	100630918	"ENSG00000286532"
+"235783_at"	"MRTO4"	51154	"ENSG00000053372"
+"237764_at"	"HDAC4-AS1"	101928111	"ENSG00000222020"
+"235813_at"	"CHROMR"	101927027	"ENSG00000223960"
+"237105_at"	"CHROMR"	101927027	"ENSG00000223960"
+"239168_at"	"SILC1"	NA	"ENSG00000232044"
+"236739_at"	"SILC1"	NA	"ENSG00000232044"
+"239366_at"	""	NA	"ENSG00000273080"
+"236351_at"	"DPP10-AS1"	389023	"ENSG00000235026"
+"240017_at"	"PCBP1-AS1"	400960	"ENSG00000179818"
+"240028_at"	"FSIP2"	401024	"ENSG00000188738"
+"237387_at"	"ARPC5"	10092	"ENSG00000162704"
+"238482_at"	"KLF7"	8609	"ENSG00000118263"
+"238517_at"	"KLF7"	8609	"ENSG00000118263"
+"240432_x_at"	"KLF7"	8609	"ENSG00000118263"
+"239809_at"	"KLF7"	8609	"ENSG00000118263"
+"239302_s_at"	"MAP3K2-DT"	NA	"ENSG00000236682"
+"239570_at"	"RAB1A"	5861	"ENSG00000138069"
+"235870_at"	"LINC01140"	339524	"ENSG00000267272"
+"238135_at"	"AGTRAP"	57085	"ENSG00000177674"
+"239035_at"	"MTHFR"	4524	"ENSG00000177000"
+"239631_at"	"FAM177B"	400823	"ENSG00000197520"
+"235763_at"	"SLC44A5"	204962	"ENSG00000137968"
+"237660_at"	"UNC80"	285175	"ENSG00000144406"
+"236398_s_at"	"LNCATV"	101927851	"ENSG00000238005"
+"236399_at"	"LNCATV"	101927851	"ENSG00000238005"
+"236601_at"	"EPHA2-AS1"	NA	"ENSG00000227959"
+"237680_at"	"SLC44A3-AS1"	101928079	"ENSG00000224081"
+"237060_at"	""	NA	"ENSG00000289291"
+"237276_at"	""	NA	"ENSG00000289407"
+"235898_at"	""	NA	"ENSG00000288886"
+"237627_at"	""	NA	"ENSG00000272156"
+"240413_at"	"PYHIN1"	149628	"ENSG00000163564"
+"238422_at"	"LBX2-AS1"	151534	"ENSG00000257702"
+"240265_at"	"TRAF3IP3"	80342	"ENSG00000009790"
+"235948_at"	"RIMKLA"	284716	"ENSG00000177181"
+"236884_at"	"RIMKLA"	284716	"ENSG00000177181"
+"236376_at"	"RIMKLA"	284716	"ENSG00000177181"
+"238760_at"	"YARS1"	8565	"ENSG00000134684"
+"238340_at"	"DCAF8"	50717	"ENSG00000132716"
+"235518_at"	"SLC8A1"	6546	"ENSG00000183023"
+"238546_at"	"SLC8A1"	6546	"ENSG00000183023"
+"237866_at"	"PID1"	55022	"ENSG00000153823"
+"237867_s_at"	"PID1"	55022	"ENSG00000153823"
+"236387_at"	"CCNT2-AS1"	NA	"ENSG00000224043"
+"239442_at"	"CEP68"	23177	"ENSG00000011523"
+"239847_at"	""	NA	"ENSG00000280099"
+"237501_at"	"EPCAM-DT"	101927043	"ENSG00000234690"
+"235695_at"	"INPP4A"	3631	"ENSG00000040933"
+"235595_at"	"ARHGEF2"	9181	"ENSG00000116584"
+"237685_at"	"TEX51"	101929926	"ENSG00000237524"
+"236638_at"	"AMER3"	205147	"ENSG00000178171"
+"240379_at"	"PKP4"	8502	"ENSG00000144283"
+"236752_at"	"PKP4"	8502	"ENSG00000144283"
+"235631_at"	"DDR2"	4921	"ENSG00000162733"
+"238100_at"	"AAK1"	22848	"ENSG00000115977"
+"237530_at"	"SLC30A10"	55532	"ENSG00000196660"
+"240189_at"	"ACOXL"	55289	"ENSG00000153093"
+"238991_at"	"ASB1"	51665	"ENSG00000065802"
+"238308_at"	"DYRK3-AS1"	105372876	"ENSG00000237605"
+"238250_at"	"DYRK3-AS1"	105372876	"ENSG00000237605"
+"237343_at"	"LINC01304"	100505964	"ENSG00000237401"
+"238977_at"	"MCM6"	4175	"ENSG00000076003"
+"240045_at"	""	NA	"ENSG00000287828"
+"236381_s_at"	"WRAP73"	49856	"ENSG00000116213"
+"236382_at"	"WRAP73"	49856	"ENSG00000116213"
+"237608_at"	"KCNH7-AS1"	101929570	"ENSG00000237750"
+"237039_at"	"LINC01833"	107985879	"ENSG00000259439"
+"236539_at"	"PTPN22"	26191	"ENSG00000134242"
+"236979_at"	"BCL2L15"	440603	"ENSG00000188761"
+"236083_at"	"BCL2L15"	440603	"ENSG00000188761"
+"235624_at"	"HDLBP"	3069	"ENSG00000115677"
+"238644_at"	"MYSM1"	114803	"ENSG00000162601"
+"235848_x_at"	"ATL2"	64225	"ENSG00000119787"
+"237968_at"	"ATL2"	64225	"ENSG00000119787"
+"238018_at"	"ALKAL2"	285016	"ENSG00000189292"
+"236980_at"	"STRN"	6801	"ENSG00000115808"
+"236388_at"	"STRN"	6801	"ENSG00000115808"
+"236958_at"	"C2orf49-DT"	NA	"ENSG00000272994"
+"239467_at"	"PTPRC"	5788	"ENSG00000081237"
+"236177_s_at"	"TP53BP2"	7159	"ENSG00000143514"
+"240148_at"	"MSH6"	2956	"ENSG00000116062"
+"237095_at"	"ASXL2"	55252	"ENSG00000143970"
+"240072_at"	"ASXL2"	55252	"ENSG00000143970"
+"237732_at"	"PRR9"	574414	"ENSG00000203783"
+"237327_at"	"APH1A"	51107	"ENSG00000117362"
+"239383_at"	"RNF115"	27246	"ENSG00000265491"
+"238950_at"	"TNFRSF9"	3604	"ENSG00000049249"
+"239130_at"	"MIR101-1"	406893	"ENSG00000199135"
+"239695_at"	"JAK1"	3716	"ENSG00000162434"
+"239982_at"	"CLCA4-AS1"	105378828	"ENSG00000236915"
+"237076_at"	"NCSTN"	23385	"ENSG00000162736"
+"239036_at"	"AGO1"	26523	"ENSG00000092847"
+"235782_at"	"AGO3"	192669	"ENSG00000126070"
+"239210_at"	""	NA	"ENSG00000269887"
+"238452_at"	"FCRLB"	127943	"ENSG00000162746"
+"236623_at"	"ATP1A1-AS1"	84852	"ENSG00000203865"
+"239797_at"	"CEPT1"	10390	"ENSG00000134255"
+"240352_at"	""	101929609	"ENSG00000288573"
+"239822_at"	"LINC01354"	100506795	"ENSG00000231768"
+"235571_at"	"MIR34AHG"	106614088	"ENSG00000228526"
+"235691_at"	"CNN3-DT"	NA	"ENSG00000235501"
+"239370_at"	"LINC01133"	NA	"ENSG00000224259"
+"240398_at"	"ITPKB-IT1"	100506443	"ENSG00000228382"
+"237154_at"	"HSD11B1-AS1"	101930114	"ENSG00000227591"
+"237065_s_at"	"LAMTOR5-AS1"	NA	"ENSG00000224699"
+"235808_at"	"DPH5-DT"	NA	"ENSG00000233184"
+"240309_at"	""	NA	"ENSG00000290127"
+"236080_at"	"ZNF687-AS1"	NA	"ENSG00000232671"
+"235867_at"	"GSTM3"	2947	"ENSG00000134202"
+"235497_at"	"LINC01128"	643837	"ENSG00000228794"
+"237011_at"	"LINC01128"	643837	"ENSG00000228794"
+"236624_at"	"LINC01128"	643837	"ENSG00000228794"
+"237420_at"	"ODF2L"	57489	"ENSG00000122417"
+"240258_at"	"ENO1"	2023	"ENSG00000074800"
+"237028_at"	"ENO1-AS1"	100505975	"ENSG00000230679"
+"239843_at"	"RIT1"	6016	"ENSG00000143622"
+"236723_at"	"HNRNPU"	3192	"ENSG00000153187"
+"235603_at"	"HNRNPU"	3192	"ENSG00000153187"
+"236498_s_at"	"FAAP20"	199990	"ENSG00000162585"
+"236584_at"	"FAAP20"	199990	"ENSG00000162585"
+"236499_at"	"FAAP20"	199990	"ENSG00000162585"
+"240310_at"	"TOR1AIP1"	26092	"ENSG00000143337"
+"237473_at"	""	728448	"ENSG00000291129"
+"238065_at"	"TPM3"	7170	"ENSG00000143549"
+"238079_at"	"TPM3"	7170	"ENSG00000143549"
+"240422_at"	"FMO5"	2330	"ENSG00000131781"
+"238070_at"	"CHD1L"	9557	"ENSG00000131778"
+"238459_x_at"	"SPATA6"	54558	"ENSG00000132122"
+"238131_at"	"PHC2"	1912	"ENSG00000134686"
+"236379_at"	"EPB41"	2035	"ENSG00000159023"
+"236962_at"	"PTBP2"	58155	"ENSG00000117569"
+"236418_at"	"TTLL10"	254173	"ENSG00000162571"
+"237173_at"	""	NA	"ENSG00000291232"
+"238657_at"	"UBXN10"	127733	"ENSG00000162543"
+"238652_at"	"LUZP1"	7798	"ENSG00000169641"
+"236013_at"	"CACNA1E"	777	"ENSG00000198216"
+"238747_at"	"CACNA1E"	777	"ENSG00000198216"
+"239280_at"	"PRKACB-DT"	NA	"ENSG00000271576"
+"235780_at"	"PRKACB"	5567	"ENSG00000142875"
+"239156_at"	"BCAR3-AS1"	NA	"ENSG00000224093"
+"237736_at"	"BSND"	7809	"ENSG00000162399"
+"236073_at"	"EPHA10"	284656	"ENSG00000183317"
+"236247_at"	"NSUN4"	387338	"ENSG00000117481"
+"239836_at"	""	NA	"ENSG00000230953"
+"236524_at"	"TM2D1"	83941	"ENSG00000162604"
+"237448_at"	"RTCA-AS1"	NA	"ENSG00000224616"
+"238389_s_at"	""	NA	"ENSG00000288999"
+"238503_at"	"CNIH3"	149111	"ENSG00000143786"
+"237563_s_at"	""	122526782	"ENSG00000233461"
+"237564_at"	""	122526782	"ENSG00000233461"
+"236986_at"	"LINC00582"	100287814	"ENSG00000229228"
+"238143_at"	"LYPD8"	646627	"ENSG00000259823"
+"235961_at"	"GPR161"	23432	"ENSG00000143147"
+"238056_at"	""	NA	"ENSG00000289106"
+"240437_at"	"CASP9"	842	"ENSG00000132906"
+"237451_x_at"	"CASP9"	842	"ENSG00000132906"
+"238519_at"	"DDI2"	84301	"ENSG00000197312"
+"36830_at"	"MIPEP"	4285	"ENSG00000027001"
+"240814_at"	"LINC01667"	441058	"ENSG00000280081"
+"242822_at"	"LINC01667"	441058	"ENSG00000280081"
+"243759_at"	"SCAF4"	57466	"ENSG00000156304"
+"244088_at"	"APP-DT"	NA	"ENSG00000273492"
+"240801_at"	"LINC01549"	NA	"ENSG00000232560"
+"241224_x_at"	"DSCR8"	84677	"ENSG00000198054"
+"241611_s_at"	"FNDC3A"	22862	"ENSG00000102531"
+"242102_at"	"DIAPH3-AS1"	100874195	"ENSG00000227528"
+"35776_at"	"ITSN1"	6453	"ENSG00000205726"
+"241672_at"	"SERTM1"	400120	"ENSG00000180440"
+"242276_at"	"LINC00470"	NA	"ENSG00000132204"
+"240809_at"	"ZNF295-AS1"	150142	"ENSG00000237232"
+"243947_s_at"	"ZNF295-AS1"	150142	"ENSG00000237232"
+"243507_s_at"	"SHLD1"	149840	"ENSG00000171984"
+"243508_at"	"SHLD1"	149840	"ENSG00000171984"
+"244369_at"	"CFAP298"	56683	"ENSG00000159079"
+"243098_at"	""	NA	"ENSG00000231324"
+"241726_at"	"SIM2"	6493	"ENSG00000159263"
+"243966_at"	"ZMYM5"	9205	"ENSG00000132950"
+"243884_at"	"TEX26"	122046	"ENSG00000175664"
+"243506_at"	"AKAIN1"	642597	"ENSG00000231824"
+"242073_at"	"RALBP1"	10928	"ENSG00000017797"
+"240719_at"	"ISM1-AS1"	NA	"ENSG00000226263"
+"243090_at"	""	NA	"ENSG00000278983"
+"242997_at"	""	NA	"ENSG00000274849"
+"241362_at"	"SOGA1"	140710	"ENSG00000149639"
+"41577_at"	"PPP1R16B"	26051	"ENSG00000101445"
+"241759_at"	"KCNK15-AS1"	NA	"ENSG00000244558"
+"55692_at"	"ELMO2"	63916	"ENSG00000062598"
+"240920_at"	""	NA	"ENSG00000224100"
+"54051_at"	"PKNOX1"	5316	"ENSG00000160199"
+"244051_at"	"RNU6-64P"	NA	"ENSG00000252928"
+"243978_at"	"RIPOR3"	140876	"ENSG00000042062"
+"240869_at"	"KCNB1"	3745	"ENSG00000158445"
+"244233_at"	"TPGS2"	25941	"ENSG00000134779"
+"243710_at"	"RIPOR3-AS1"	100506175	"ENSG00000234693"
+"242524_at"	"CBLN4"	140689	"ENSG00000054803"
+"240531_at"	""	NA	"ENSG00000287107"
+"241829_at"	"FAM124A"	220108	"ENSG00000150510"
+"241013_at"	"FAM124A"	220108	"ENSG00000150510"
+"243843_at"	"N4BP2L1"	90634	"ENSG00000139597"
+"36545_s_at"	"SFI1"	9814	"ENSG00000198089"
+"242867_x_at"	""	105372179	"ENSG00000264845"
+"241623_at"	"PTPN2"	5771	"ENSG00000175354"
+"241937_s_at"	"WDR4"	10785	"ENSG00000160193"
+"242913_at"	"CLIC6"	54102	"ENSG00000159212"
+"242880_at"	"NALCN"	259232	"ENSG00000102452"
+"243676_at"	"GID8"	54994	"ENSG00000101193"
+"242301_at"	"CBLN2"	147381	"ENSG00000141668"
+"244296_at"	"LINC01905"	102724698	"ENSG00000267057"
+"241064_at"	"LINC01905"	102724698	"ENSG00000267057"
+"241522_at"	"LINC00454"	100874178	"ENSG00000226921"
+"33778_at"	"TBC1D22A"	25771	"ENSG00000054611"
+"244564_at"	"LINC01927"	NA	"ENSG00000266312"
+"241573_at"	""	NA	"ENSG00000229882"
+"240754_at"	""	284933	"ENSG00000281732"
+"244231_at"	""	NA	"ENSG00000285347"
+"242291_at"	"EIF4ENIF1"	56478	"ENSG00000184708"
+"242683_at"	"LINC00668"	400643	"ENSG00000265933"
+"240887_at"	"LINC01718"	NA	"ENSG00000229606"
+"244495_x_at"	"TMEM241"	85019	"ENSG00000134490"
+"244130_at"	"HTR2A"	3356	"ENSG00000102468"
+"243735_at"	"ELP2"	55250	"ENSG00000134759"
+"243239_at"	"SAMM50"	25813	"ENSG00000100347"
+"243690_at"	"TRIOBP"	11078	"ENSG00000100106"
+"44790_s_at"	"RUBCNL"	80183	"ENSG00000102445"
+"242666_at"	"PIK3IP1-DT"	101929760	"ENSG00000228839"
+"47069_at"	"PRR5"	55615	"ENSG00000186654"
+"241428_x_at"	"TCEA2"	6919	"ENSG00000171703"
+"244763_at"	"MTRF1"	9617	"ENSG00000120662"
+"242996_at"	"MTRF1"	9617	"ENSG00000120662"
+"242597_at"	"ZMYM2"	7750	"ENSG00000121741"
+"240642_at"	"ZMYM2"	7750	"ENSG00000121741"
+"243499_at"	"G2E3-AS1"	NA	"ENSG00000257636"
+"243812_at"	"IFT27"	11020	"ENSG00000100360"
+"242592_at"	"GPR137C"	283554	"ENSG00000180998"
+"241398_at"	"MPPED1"	758	"ENSG00000186732"
+"244229_at"	"PARVG"	64098	"ENSG00000138964"
+"242631_x_at"	"DLC1"	10395	"ENSG00000164741"
+"244608_at"	"MIR4307HG"	101927081	"ENSG00000257612"
+"242408_at"	"STYX"	6815	"ENSG00000198252"
+"244030_at"	"STYX"	6815	"ENSG00000198252"
+"240589_at"	"LINC00313"	NA	"ENSG00000185186"
+"241834_at"	"SNHG14"	NA	"ENSG00000224078"
+"244449_at"	""	NA	"ENSG00000223975"
+"59433_at"	""	NA	"ENSG00000285756"
+"244885_at"	"EBF2"	64641	"ENSG00000221818"
+"241729_at"	"DOK6"	220164	"ENSG00000206052"
+"244676_s_at"	"MTUS2"	23281	"ENSG00000132938"
+"241283_at"	"LINC01500"	NA	"ENSG00000258583"
+"52837_at"	"SHISAL1"	85352	"ENSG00000138944"
+"241291_at"	"LINC01541"	100505776	"ENSG00000260676"
+"244724_at"	"ATP8A2"	51761	"ENSG00000132932"
+"37433_at"	"PIAS2"	9063	"ENSG00000078043"
+"243624_at"	"PIAS2"	9063	"ENSG00000078043"
+"242904_x_at"	""	NA	"ENSG00000272256"
+"244858_at"	"TGIF1"	7050	"ENSG00000177426"
+"244255_at"	"LINC02153"	286114	"ENSG00000253199"
+"241696_at"	"CNTLN"	54875	"ENSG00000044459"
+"244725_at"	"DMRTA1"	63951	"ENSG00000176399"
+"243481_at"	"RHOJ"	57381	"ENSG00000126785"
+"241603_at"	"ATP11A"	23250	"ENSG00000068650"
+"243081_at"	"DSG2-AS1"	NA	"ENSG00000264859"
+"243452_at"	""	NA	"ENSG00000259985"
+"242502_at"	"KCNH5"	27133	"ENSG00000140015"
+"242444_at"	"C1QTNF6"	114904	"ENSG00000133466"
+"242093_at"	"SYTL5"	94122	"ENSG00000147041"
+"242335_at"	"SLC25A37"	51312	"ENSG00000147454"
+"243101_x_at"	"XKR7"	343702	"ENSG00000260903"
+"241144_at"	""	101927702	"ENSG00000254718"
+"242889_x_at"	"FUT8-AS1"	NA	"ENSG00000276116"
+"78047_s_at"	"MMP24OS"	101410538	"ENSG00000126005"
+"49679_s_at"	"MMP24OS"	101410538	"ENSG00000126005"
+"244439_at"	"SPRED1"	161742	"ENSG00000166068"
+"243146_at"	"ADRA1A"	148	"ENSG00000120907"
+"244368_x_at"	"SUGT1"	10910	"ENSG00000165416"
+"240747_at"	""	102724587	"ENSG00000259188"
+"240721_at"	""	NA	"ENSG00000253200"
+"244779_at"	"ZDHHC2"	51201	"ENSG00000104219"
+"244706_at"	"PCMTD1"	115294	"ENSG00000168300"
+"244149_at"	"MYL9"	10398	"ENSG00000101335"
+"240462_at"	"CLYBL"	171425	"ENSG00000125246"
+"242821_at"	"CCDC171"	203238	"ENSG00000164989"
+"240799_at"	"SLC35F4"	341880	"ENSG00000151812"
+"240943_at"	"PSMF1"	9491	"ENSG00000125818"
+"240937_at"	""	NA	"ENSG00000253139"
+"240682_at"	"LINC00293"	497634	"ENSG00000253314"
+"89948_at"	"PCIF1"	63935	"ENSG00000100982"
+"241718_x_at"	"ICE1"	23379	"ENSG00000164151"
+"240703_s_at"	"HERC1"	8925	"ENSG00000103657"
+"242178_at"	"LIPI"	149998	"ENSG00000188992"
+"243782_at"	"CCDC122"	160857	"ENSG00000151773"
+"241230_at"	"CA12"	771	"ENSG00000074410"
+"244754_at"	"OGFRP1"	NA	"ENSG00000182057"
+"241538_at"	"CFAP47"	286464	"ENSG00000165164"
+"40524_at"	"PTPN21"	11099	"ENSG00000070778"
+"243406_at"	"TMCO5B"	NA	"ENSG00000215296"
+"243504_at"	"TRDMT1"	1787	"ENSG00000107614"
+"242939_at"	"TFDP1"	7027	"ENSG00000198176"
+"243200_at"	"LINC02303"	NA	"ENSG00000258616"
+"244350_at"	"MYO10"	4651	"ENSG00000145555"
+"240474_x_at"	""	NA	"ENSG00000259149"
+"241310_at"	"NEK5"	341676	"ENSG00000197168"
+"244707_at"	""	NA	"ENSG00000259650"
+"242893_at"	"LURAP1L-AS1"	NA	"ENSG00000235448"
+"244104_at"	"MGAT3"	4248	"ENSG00000128268"
+"241926_s_at"	"ERG"	2078	"ENSG00000157554"
+"240888_at"	"LINC02960"	NA	"ENSG00000275198"
+"244561_at"	"SLC9A7"	84679	"ENSG00000065923"
+"243862_at"	"RASEF"	158158	"ENSG00000165105"
+"241118_at"	"LINC00462"	100129597	"ENSG00000233610"
+"241972_at"	"ZNF674-AS1"	NA	"ENSG00000230844"
+"244033_at"	"CEP128"	145508	"ENSG00000100629"
+"240817_at"	"LINC02116"	101929034	"ENSG00000250417"
+"243514_at"	"WDFY2"	115825	"ENSG00000139668"
+"242660_at"	"MALRD1"	340895	"ENSG00000204740"
+"242776_at"	"TUT7"	79670	"ENSG00000083223"
+"243986_at"	"LINC00355"	144766	"ENSG00000227674"
+"244585_at"	"IFT140"	9742	"ENSG00000187535"
+"241140_at"	"LMO7"	4008	"ENSG00000136153"
+"243027_at"	"IGSF5"	150084	"ENSG00000183067"
+"35156_at"	"R3HCC1"	203069	"ENSG00000104679"
+"241614_at"	""	NA	"ENSG00000258424"
+"243580_at"	"GNA14"	9630	"ENSG00000156049"
+"241902_at"	"MKX"	283078	"ENSG00000150051"
+"244787_at"	"ZFAND5"	7763	"ENSG00000107372"
+"240689_at"	"REC114"	283677	"ENSG00000183324"
+"241942_at"	"PXDNL"	137902	"ENSG00000147485"
+"240860_at"	""	NA	"ENSG00000225775"
+"241781_at"	"CARNMT1"	138199	"ENSG00000156017"
+"241700_at"	"ZFHX4"	79776	"ENSG00000091656"
+"243405_at"	"BLOC1S5"	63915	"ENSG00000188428"
+"242071_x_at"	"ITGA8"	8516	"ENSG00000077943"
+"242565_x_at"	"YBEY"	54059	"ENSG00000182362"
+"244206_at"	"ZFAND4"	93550	"ENSG00000172671"
+"242650_at"	"ZFAND4"	93550	"ENSG00000172671"
+"244829_at"	"LINC00518"	NA	"ENSG00000183674"
+"242600_at"	"FRMD3"	257019	"ENSG00000172159"
+"241417_at"	"KLF8"	11279	"ENSG00000102349"
+"41113_at"	"ZNF500"	26048	"ENSG00000103199"
+"244364_at"	"MYO3A"	53904	"ENSG00000095777"
+"33148_at"	"ZFR"	51663	"ENSG00000056097"
+"41660_at"	"CELSR1"	9620	"ENSG00000075275"
+"241425_at"	"NUP58"	9818	"ENSG00000139496"
+"244465_at"	"LINC00841"	NA	"ENSG00000233395"
+"241326_at"	"AK7"	122481	"ENSG00000140057"
+"242576_x_at"	"N4BP2L2"	10443	"ENSG00000244754"
+"244822_at"	"GART"	2618	"ENSG00000159131"
+"244059_at"	""	NA	"ENSG00000270937"
+"243709_at"	"SLC38A9"	153129	"ENSG00000177058"
+"242330_at"	"SLC38A9"	153129	"ENSG00000177058"
+"243216_x_at"	"ARHGAP12"	94134	"ENSG00000165322"
+"240674_at"	"JARID2"	3720	"ENSG00000008083"
+"37966_at"	"PARVB"	29780	"ENSG00000188677"
+"37965_at"	"PARVB"	29780	"ENSG00000188677"
+"244758_at"	"SCAND3"	114821	"ENSG00000232040"
+"243610_at"	"CFAP95"	138255	"ENSG00000204711"
+"241187_at"	""	NA	"ENSG00000248624"
+"241120_s_at"	"GPX8"	493869	"ENSG00000164294"
+"243017_at"	"USP27X-DT"	158572	"ENSG00000234390"
+"242999_at"	"ARHGEF7"	8874	"ENSG00000102606"
+"244738_at"	"BRWD3"	254065	"ENSG00000165288"
+"241171_at"	""	NA	"ENSG00000249988"
+"243897_at"	""	NA	"ENSG00000262801"
+"242261_at"	"IREB2"	3658	"ENSG00000136381"
+"57588_at"	"SLC24A3"	57419	"ENSG00000185052"
+"241596_at"	"NUDT10"	170685	"ENSG00000122824"
+"240679_at"	"STK32B"	55351	"ENSG00000152953"
+"244116_at"	""	NA	"ENSG00000272732"
+"241436_at"	"SCNN1G"	6340	"ENSG00000166828"
+"242908_x_at"	""	NA	"ENSG00000272745"
+"241432_at"	"SLIT2-IT1"	100505893	"ENSG00000248228"
+"240900_at"	"C7orf50"	84310	"ENSG00000146540"
+"240828_at"	"JARID2-AS1"	NA	"ENSG00000235488"
+"241316_at"	"TNRC6A"	27327	"ENSG00000090905"
+"241847_at"	"ZFAND2A-DT"	NA	"ENSG00000229043"
+"240967_at"	"KRTAP19-3"	337970	"ENSG00000244025"
+"244119_at"	"LINC00551"	NA	"ENSG00000272274"
+"244035_at"	"BCL2"	596	"ENSG00000171791"
+"240616_at"	"PCCA-DT"	105370333	"ENSG00000274605"
+"241943_at"	""	NA	"ENSG00000267733"
+"241890_at"	""	NA	"ENSG00000273958"
+"242149_at"	"FAM210A"	125228	"ENSG00000177150"
+"244170_at"	"RAB3C"	115827	"ENSG00000152932"
+"242328_at"	"RAB3C"	115827	"ENSG00000152932"
+"241442_at"	"DAAM2"	23500	"ENSG00000146122"
+"242288_s_at"	"EMILIN2"	84034	"ENSG00000132205"
+"50314_i_at"	"ADISSP"	54976	"ENSG00000101220"
+"33736_at"	"STOML1"	9399	"ENSG00000067221"
+"242414_at"	"QPRT"	23475	"ENSG00000103485"
+"242158_at"	"PAPOLB"	56903	"ENSG00000218823"
+"244107_at"	"DSC3"	1825	"ENSG00000134762"
+"243786_at"	"ZDHHC20"	253832	"ENSG00000180776"
+"242519_at"	"CCDC152"	100129792	"ENSG00000198865"
+"48612_at"	"N4BP1"	9683	"ENSG00000102921"
+"32069_at"	"N4BP1"	9683	"ENSG00000102921"
+"242338_at"	"TMEM64"	169200	"ENSG00000180694"
+"243082_at"	"ATP8B4"	79895	"ENSG00000104043"
+"240561_at"	"RAP2C-AS1"	101928578	"ENSG00000232160"
+"243823_at"	""	NA	"ENSG00000230472"
+"243311_at"	"DEFB132"	400830	"ENSG00000186458"
+"241758_at"	"NUP93"	9688	"ENSG00000102900"
+"240549_at"	"NRSN2-AS1"	100507459	"ENSG00000225377"
+"60471_at"	"RIN3"	79890	"ENSG00000100599"
+"240811_at"	"PKHD1"	5314	"ENSG00000170927"
+"244410_at"	"PKHD1"	5314	"ENSG00000170927"
+"241694_at"	"PKHD1"	5314	"ENSG00000170927"
+"244790_at"	"MTCP1"	4515	"ENSG00000214827"
+"242292_at"	"FAM226B"	NA	"ENSG00000269911"
+"240687_at"	"PASD1"	139135	"ENSG00000166049"
+"241500_at"	"CDH8"	1006	"ENSG00000150394"
+"242194_at"	"CUL4A"	8451	"ENSG00000139842"
+"244604_at"	""	NA	"ENSG00000233967"
+"242455_at"	"POU3F2"	5454	"ENSG00000184486"
+"49306_at"	"RASSF4"	83937	"ENSG00000107551"
+"35147_at"	"MCF2L"	23263	"ENSG00000126217"
+"241098_at"	"CLEC7A"	64581	"ENSG00000172243"
+"244293_at"	"UQCRB"	7381	"ENSG00000156467"
+"240842_at"	""	NA	"ENSG00000235122"
+"51176_at"	"MED27"	9442	"ENSG00000160563"
+"241594_at"	""	107986277	"ENSG00000282904"
+"241961_at"	"TECRL"	253017	"ENSG00000205678"
+"240660_at"	""	NA	"ENSG00000279918"
+"242686_at"	"STARD13"	90627	"ENSG00000133121"
+"243298_at"	""	NA	"ENSG00000279656"
+"240917_at"	"LAMA4-AS1"	NA	"ENSG00000226440"
+"266_s_at"	"CD24"	100133941	"ENSG00000272398"
+"244688_at"	"SDAD1"	55153	"ENSG00000198301"
+"242190_at"	"SDAD1"	55153	"ENSG00000198301"
+"240519_at"	"LINC02344"	NA	"ENSG00000227911"
+"241985_at"	"JMY"	133746	"ENSG00000152409"
+"240767_x_at"	"VPS13A-AS1"	NA	"ENSG00000232998"
+"244401_at"	"LCA5"	167691	"ENSG00000135338"
+"242006_at"	"LCA5"	167691	"ENSG00000135338"
+"32723_at"	"CSTF1"	1477	"ENSG00000101138"
+"240894_at"	"LINC02180"	102467079	"ENSG00000261749"
+"243932_at"	"COL19A1"	1310	"ENSG00000082293"
+"242352_at"	"NIPBL"	25836	"ENSG00000164190"
+"244682_at"	"CAMSAP1"	157922	"ENSG00000130559"
+"243225_at"	"FGF14-AS2"	283481	"ENSG00000272143"
+"243807_at"	"NCOA7"	135112	"ENSG00000111912"
+"243092_at"	"PAN3-AS1"	NA	"ENSG00000261485"
+"244641_at"	"MALSU1"	115416	"ENSG00000156928"
+"242385_at"	"RORB"	6096	"ENSG00000198963"
+"243233_at"	"RNU6-82P"	NA	"ENSG00000200840"
+"241117_at"	"LOXHD1"	125336	"ENSG00000167210"
+"39318_at"	"TCL1A"	8115	"ENSG00000100721"
+"243698_at"	"CPVL-AS1"	107986703	"ENSG00000229452"
+"243477_at"	"ATG10"	83734	"ENSG00000152348"
+"35148_at"	"TJP3"	27134	"ENSG00000105289"
+"242982_x_at"	"ITGB8"	3696	"ENSG00000105855"
+"242928_at"	"TMED3"	23423	"ENSG00000166557"
+"243136_at"	"GINS2"	51659	"ENSG00000131153"
+"240512_x_at"	"KCTD4"	386618	"ENSG00000180332"
+"243750_x_at"	"SLX9"	85395	"ENSG00000160256"
+"242798_at"	"LINC01424"	NA	"ENSG00000236519"
+"242873_at"	"KLRK1-AS1"	101928100	"ENSG00000245648"
+"240938_at"	"LINC01227"	101928276	"ENSG00000260737"
+"243457_s_at"	"ZNF214"	7761	"ENSG00000149050"
+"243456_at"	"ZNF214"	7761	"ENSG00000149050"
+"243074_at"	"MSH3"	4437	"ENSG00000113318"
+"242400_at"	"ZFP90"	146198	"ENSG00000184939"
+"240755_at"	""	NA	"ENSG00000228707"
+"243515_at"	""	NA	"ENSG00000272582"
+"241760_x_at"	"RORA-AS1"	101928784	"ENSG00000245534"
+"241126_at"	"GSTCD-AS1"	101929529	"ENSG00000251175"
+"37577_at"	"ARHGAP19"	84986	"ENSG00000213390"
+"52975_at"	"MVB12B"	89853	"ENSG00000196814"
+"241762_at"	"FBXO32"	114907	"ENSG00000156804"
+"241763_s_at"	"FBXO32"	114907	"ENSG00000156804"
+"243217_at"	""	NA	"ENSG00000287837"
+"242329_at"	"CREB5"	9586	"ENSG00000146592"
+"243133_at"	"TSC22D1"	8848	"ENSG00000102804"
+"243566_at"	""	NA	"ENSG00000255179"
+"241749_at"	"CAVIN4"	347273	"ENSG00000170681"
+"241962_at"	"NT5DC1"	221294	"ENSG00000178425"
+"243783_at"	""	NA	"ENSG00000255858"
+"243414_at"	"PPIL2"	23759	"ENSG00000100023"
+"243755_at"	"PRLR"	5618	"ENSG00000113494"
+"243163_at"	"HECW1"	23072	"ENSG00000002746"
+"36129_at"	"SGSM2"	9905	"ENSG00000141258"
+"243928_s_at"	"ABCC4"	10257	"ENSG00000125257"
+"244275_at"	"CISD2"	493856	"ENSG00000145354"
+"240951_at"	"RORA"	6095	"ENSG00000069667"
+"240710_at"	"RNU4-82P"	NA	"ENSG00000199313"
+"242367_at"	"SLC38A1"	81539	"ENSG00000111371"
+"240602_at"	"HBS1L"	10767	"ENSG00000112339"
+"244209_at"	"LBX1-AS1"	NA	"ENSG00000227128"
+"49329_at"	"KLHL22"	84861	"ENSG00000099910"
+"240780_at"	"KDM4B"	23030	"ENSG00000127663"
+"241871_at"	"CAMK4"	814	"ENSG00000152495"
+"37652_at"	"CABIN1"	23523	"ENSG00000099991"
+"243679_at"	"JPH3"	57338	"ENSG00000154118"
+"241780_at"	"CDH11"	1009	"ENSG00000140937"
+"243734_x_at"	"VWC2"	375567	"ENSG00000188730"
+"244142_at"	"DTNA"	1837	"ENSG00000134769"
+"65438_at"	"MEAK7"	57707	"ENSG00000140950"
+"55662_at"	"ARMH3"	79591	"ENSG00000120029"
+"243029_at"	"KREMEN1"	83999	"ENSG00000183762"
+"242900_at"	"ALG10B"	144245	"ENSG00000175548"
+"240574_at"	"DNAJC3-DT"	100289274	"ENSG00000247400"
+"242159_at"	"LINC02450"	105369739	"ENSG00000257114"
+"44146_at"	"GMEB2"	26205	"ENSG00000101216"
+"244734_at"	"MTHFSD"	64779	"ENSG00000103248"
+"243856_at"	"LANCL3"	347404	"ENSG00000147036"
+"243197_at"	""	NA	"ENSG00000251081"
+"243343_at"	""	NA	"ENSG00000273216"
+"241412_at"	"BTC"	685	"ENSG00000174808"
+"33767_at"	"NEFH"	4744	"ENSG00000100285"
+"242107_x_at"	"TBX18"	9096	"ENSG00000112837"
+"244831_at"	""	NA	"ENSG00000254861"
+"243018_at"	"BBOX1-AS1"	103695435	"ENSG00000254560"
+"244025_at"	"ITPRIP"	85450	"ENSG00000148841"
+"242141_at"	"HDAC2"	3066	"ENSG00000196591"
+"564_at"	"GNA11"	2767	"ENSG00000088256"
+"40562_at"	"GNA11"	2767	"ENSG00000088256"
+"244589_at"	"LINC02624"	NA	"ENSG00000229775"
+"244405_s_at"	""	NA	"ENSG00000259478"
+"243850_at"	"ARNT2-DT"	NA	"ENSG00000259495"
+"244334_at"	"TRAM1L1"	133022	"ENSG00000174599"
+"243863_at"	"ZCWPW2"	152098	"ENSG00000206559"
+"243173_at"	"CABP7"	164633	"ENSG00000100314"
+"243432_at"	"CHL1-AS2"	101927174	"ENSG00000224318"
+"240618_at"	"VPS16"	64601	"ENSG00000215305"
+"244177_at"	"ING1"	3621	"ENSG00000153487"
+"242834_at"	"UBA6"	55236	"ENSG00000033178"
+"240707_at"	""	101929472	"ENSG00000250250"
+"244684_at"	""	NA	"ENSG00000271797"
+"41047_at"	"BBLN"	79095	"ENSG00000171159"
+"823_at"	"CX3CL1"	6376	"ENSG00000006210"
+"243727_at"	"CPNE8"	144402	"ENSG00000139117"
+"241706_at"	"CPNE8"	144402	"ENSG00000139117"
+"243049_at"	"PDCL3P2"	NA	"ENSG00000282989"
+"243409_at"	"FOXL1"	2300	"ENSG00000176678"
+"242738_s_at"	"ZFHX3"	463	"ENSG00000140836"
+"244874_at"	"CHST15"	51363	"ENSG00000182022"
+"243035_at"	"LINC02400"	101927038	"ENSG00000257784"
+"242386_x_at"	""	101927608	"ENSG00000273805"
+"240699_at"	"SEC14L3"	266629	"ENSG00000100012"
+"241925_x_at"	"SLC16A7"	9194	"ENSG00000118596"
+"241866_at"	"SLC16A7"	9194	"ENSG00000118596"
+"240741_x_at"	"LINC00690"	NA	"ENSG00000233570"
+"244325_at"	"LINC00690"	NA	"ENSG00000233570"
+"241731_x_at"	"ZNF440"	126070	"ENSG00000171295"
+"243697_at"	"MOXD1"	26002	"ENSG00000079931"
+"244434_at"	"GPR82"	27197	"ENSG00000171657"
+"244323_at"	"BHLHE22"	27319	"ENSG00000180828"
+"242562_at"	"DNAJC24"	120526	"ENSG00000170946"
+"243059_at"	"FENDRR"	400550	"ENSG00000268388"
+"242332_at"	"FENDRR"	400550	"ENSG00000268388"
+"58780_s_at"	"ARHGEF40"	55701	"ENSG00000165801"
+"241627_x_at"	"ARHGEF40"	55701	"ENSG00000165801"
+"243358_at"	"IGF1R"	3480	"ENSG00000140443"
+"241899_at"	"MIR3936HG"	553103	"ENSG00000233006"
+"240805_at"	"PLCG1"	5335	"ENSG00000124181"
+"44702_at"	"SYDE1"	85360	"ENSG00000105137"
+"37802_r_at"	"MINDY2"	54629	"ENSG00000128923"
+"240902_at"	"LINC00641"	283624	"ENSG00000258441"
+"244557_at"	"COMMD9"	29099	"ENSG00000110442"
+"52741_at"	"TRMT61A"	115708	"ENSG00000166166"
+"242206_at"	"ZNF727"	442319	"ENSG00000214652"
+"241503_at"	"FAM81A"	145773	"ENSG00000157470"
+"244163_at"	"SEMA3A"	10371	"ENSG00000075213"
+"243001_at"	"RBFA"	79863	"ENSG00000101546"
+"45526_g_at"	"NAA60"	79903	"ENSG00000122390"
+"242708_at"	""	NA	"ENSG00000244055"
+"240728_at"	"PLCB4"	5332	"ENSG00000101333"
+"242634_at"	"GATAD1"	57798	"ENSG00000157259"
+"243996_at"	""	NA	"ENSG00000227388"
+"241010_x_at"	"VOPP1"	81552	"ENSG00000154978"
+"243948_at"	"ZC3H14"	79882	"ENSG00000100722"
+"242443_at"	"ZC3H14"	79882	"ENSG00000100722"
+"241552_at"	""	100506677	"ENSG00000265544"
+"32032_at"	"ESS2"	8220	"ENSG00000100056"
+"242316_at"	"TMOD3"	29766	"ENSG00000138594"
+"242763_at"	"PKHD1L1"	93035	"ENSG00000205038"
+"241620_at"	"SMCHD1"	23347	"ENSG00000101596"
+"241363_at"	"EXD3"	54932	"ENSG00000187609"
+"243143_at"	"FAM24A"	118670	"ENSG00000203795"
+"244789_at"	"TEX36"	387718	"ENSG00000175018"
+"240566_at"	"LINC02718"	NA	"ENSG00000255418"
+"37549_g_at"	"BBS9"	27241	"ENSG00000122507"
+"37547_at"	"BBS9"	27241	"ENSG00000122507"
+"241585_at"	"LRRC4C"	57689	"ENSG00000148948"
+"243040_at"	""	NA	"ENSG00000225885"
+"242817_at"	"PGLYRP2"	114770	"ENSG00000161031"
+"242169_at"	"BHMT2"	23743	"ENSG00000132840"
+"243482_at"	"EPS15L1"	58513	"ENSG00000127527"
+"243219_x_at"	"MRPL50"	54534	"ENSG00000136897"
+"36475_at"	"GCAT"	23464	"ENSG00000100116"
+"244782_at"	"PPP3R2"	5535	"ENSG00000188386"
+"33579_i_at"	"GALR3"	8484	"ENSG00000128310"
+"243494_at"	"TBX18-AS1"	102724201	"ENSG00000228290"
+"241527_at"	""	NA	"ENSG00000259213"
+"55081_at"	"MICALL1"	85377	"ENSG00000100139"
+"244120_at"	""	NA	"ENSG00000225879"
+"244531_at"	"NNT"	23530	"ENSG00000112992"
+"244435_at"	"INSYN2A"	642938	"ENSG00000188916"
+"37872_at"	"JRK"	8629	"ENSG00000234616"
+"241317_at"	""	NA	"ENSG00000254906"
+"244370_at"	"NEXMIF"	340533	"ENSG00000050030"
+"244076_at"	"NEXMIF"	340533	"ENSG00000050030"
+"241381_at"	"DIPK2B"	79742	"ENSG00000147113"
+"241789_at"	"RBMS3"	27303	"ENSG00000144642"
+"242137_at"	"RBMS3"	27303	"ENSG00000144642"
+"244108_at"	"SYNPO2"	171024	"ENSG00000172403"
+"242394_at"	"CNKSR3"	154043	"ENSG00000153721"
+"240996_at"	""	NA	"ENSG00000254651"
+"241466_at"	"TESMIN"	9633	"ENSG00000132749"
+"241754_at"	"SCAI"	286205	"ENSG00000173611"
+"243683_at"	"MORF4L2"	9643	"ENSG00000123562"
+"243857_at"	"MORF4L2"	9643	"ENSG00000123562"
+"244546_at"	"CYCS"	54205	"ENSG00000172115"
+"241327_at"	"LINC01339"	NA	"ENSG00000248555"
+"243016_at"	"ENOSF1"	55556	"ENSG00000132199"
+"241592_at"	""	NA	"ENSG00000257194"
+"242970_at"	"DIP2B"	57609	"ENSG00000066084"
+"240770_at"	"TMEM171"	134285	"ENSG00000157111"
+"244722_at"	"PGGT1B"	5229	"ENSG00000164219"
+"244028_at"	"USP15"	9958	"ENSG00000135655"
+"244024_at"	"ZNF182"	7569	"ENSG00000147118"
+"244617_at"	"GPR26"	2849	"ENSG00000154478"
+"242033_at"	"RNF180"	285671	"ENSG00000164197"
+"242985_x_at"	"RNF180"	285671	"ENSG00000164197"
+"244084_at"	"AIFM3"	150209	"ENSG00000183773"
+"241266_at"	""	NA	"ENSG00000288530"
+"244800_x_at"	""	NA	"ENSG00000257943"
+"244692_at"	"CYP4F22"	126410	"ENSG00000171954"
+"240990_at"	"RAB5A"	5868	"ENSG00000144566"
+"31837_at"	"LMF2"	91289	"ENSG00000100258"
+"40640_at"	"NCAPH2"	29781	"ENSG00000025770"
+"244643_at"	"LINC02844"	105375679	"ENSG00000253679"
+"241396_at"	"NEDD4L"	23327	"ENSG00000049759"
+"242132_x_at"	"NEDD4L"	23327	"ENSG00000049759"
+"243910_x_at"	"CAND1"	55832	"ENSG00000111530"
+"55616_at"	"PGAP3"	93210	"ENSG00000161395"
+"242943_at"	"ST8SIA4"	7903	"ENSG00000113532"
+"241805_at"	"GABRG1"	2565	"ENSG00000163285"
+"243764_at"	"VSIG1"	340547	"ENSG00000101842"
+"241492_at"	""	NA	"ENSG00000279130"
+"243181_at"	"ANKIB1"	54467	"ENSG00000001629"
+"244497_at"	"PYCARD-AS1"	100652740	"ENSG00000261359"
+"244574_at"	"PTPRG"	5793	"ENSG00000144724"
+"244317_at"	"ELAPOR2"	222223	"ENSG00000164659"
+"79005_at"	"SLC35E1"	79939	"ENSG00000127526"
+"241945_at"	"LINC02064"	NA	"ENSG00000248391"
+"243754_at"	"KLHDC7B-DT"	NA	"ENSG00000272666"
+"43977_at"	"TMEM161A"	54929	"ENSG00000064545"
+"243302_at"	""	NA	"ENSG00000272129"
+"242098_at"	"ARFGEF3"	57221	"ENSG00000112379"
+"243332_at"	""	NA	"ENSG00000275536"
+"241804_at"	""	NA	"ENSG00000277036"
+"241841_at"	"CHKB-DT"	100144603	"ENSG00000205559"
+"240954_at"	""	NA	"ENSG00000272940"
+"244007_at"	"ZNF462"	58499	"ENSG00000148143"
+"241811_x_at"	"SLC6A4"	6532	"ENSG00000108576"
+"242009_at"	"SLC6A4"	6532	"ENSG00000108576"
+"241343_at"	"RNASEH1"	246243	"ENSG00000171865"
+"244259_s_at"	"ZNF91"	7644	"ENSG00000167232"
+"241755_at"	"UQCRC2"	7385	"ENSG00000140740"
+"31846_at"	"RHOD"	29984	"ENSG00000173156"
+"48117_at"	"SGF29"	112869	"ENSG00000176476"
+"64371_at"	"SUGP2"	10147	"ENSG00000064607"
+"37384_at"	"PPM1F"	9647	"ENSG00000100034"
+"242626_at"	"SAMD5"	389432	"ENSG00000203727"
+"243815_at"	"PGBD4"	161779	"ENSG00000182405"
+"244353_s_at"	"SLC2A12"	154091	"ENSG00000146411"
+"244279_at"	"SOBP"	55084	"ENSG00000112320"
+"40420_at"	"STK10"	6793	"ENSG00000072786"
+"77508_r_at"	"RABEP2"	79874	"ENSG00000177548"
+"74694_s_at"	"RABEP2"	79874	"ENSG00000177548"
+"241988_x_at"	""	NA	"ENSG00000265713"
+"63825_at"	"ABHD2"	11057	"ENSG00000140526"
+"87100_at"	"ABHD2"	11057	"ENSG00000140526"
+"240701_at"	"ORMDL3"	94103	"ENSG00000172057"
+"244663_at"	"ZNF431"	170959	"ENSG00000196705"
+"241815_at"	"ZNF431"	170959	"ENSG00000196705"
+"243491_at"	"ZNF431"	170959	"ENSG00000196705"
+"243438_at"	"PDE7B"	27115	"ENSG00000171408"
+"244320_at"	"NHLRC2"	374354	"ENSG00000196865"
+"241599_at"	"LSM11"	134353	"ENSG00000155858"
+"242112_at"	"LSM11"	134353	"ENSG00000155858"
+"244351_at"	"RBM46"	166863	"ENSG00000151962"
+"242516_x_at"	"RBM46"	166863	"ENSG00000151962"
+"242949_x_at"	"CCDC157"	550631	"ENSG00000187860"
+"243487_at"	"AFF4"	27125	"ENSG00000072364"
+"244628_at"	"AFF4"	27125	"ENSG00000072364"
+"243043_at"	"RINT1"	60561	"ENSG00000135249"
+"244467_at"	"SHISA8"	440829	"ENSG00000234965"
+"243060_at"	"LINC01532"	NA	"ENSG00000267014"
+"242914_at"	""	105378044	"ENSG00000226249"
+"243726_at"	"LINC01095"	100505545	"ENSG00000248809"
+"240685_at"	"LINC01095"	100505545	"ENSG00000248809"
+"241869_at"	"APOL6"	80830	"ENSG00000221963"
+"33760_at"	"PEX14"	5195	"ENSG00000142655"
+"240532_at"	"SLC32A1"	140679	"ENSG00000101438"
+"241124_at"	""	NA	"ENSG00000248165"
+"241337_at"	""	NA	"ENSG00000229116"
+"243844_at"	"LINC02511"	105377441	"ENSG00000248869"
+"243773_at"	"PDCD2"	5134	"ENSG00000071994"
+"242005_at"	"LINC00973"	105374003	"ENSG00000240476"
+"243892_at"	"LINC02272"	NA	"ENSG00000251283"
+"241369_at"	"ADAMTS9-AS1"	101929335	"ENSG00000241158"
+"242525_at"	"SLC2A5"	6518	"ENSG00000142583"
+"244344_at"	"WNK4"	65266	"ENSG00000126562"
+"241046_at"	""	102724511	"ENSG00000232197"
+"241856_at"	"IMPG2"	50939	"ENSG00000081148"
+"243601_at"	""	NA	"ENSG00000260997"
+"242389_at"	"LUC7L3"	51747	"ENSG00000108848"
+"241792_x_at"	"LUC7L3"	51747	"ENSG00000108848"
+"242205_at"	"ST13"	6767	"ENSG00000100380"
+"242197_x_at"	"CD36"	948	"ENSG00000135218"
+"242234_at"	"XAF1"	54739	"ENSG00000132530"
+"31637_s_at"	"NR1D1"	9572	"ENSG00000126368"
+"243768_at"	"RNU6-1016P"	NA	"ENSG00000252498"
+"243969_at"	"SLC24A4"	123041	"ENSG00000140090"
+"242007_at"	"FBXO30"	84085	"ENSG00000118496"
+"242303_at"	"NRG2"	9542	"ENSG00000158458"
+"241838_at"	"MIR3939"	100500857	"ENSG00000265828"
+"241358_at"	"WFIKKN2"	124857	"ENSG00000173714"
+"242780_at"	"VAPA"	9218	"ENSG00000101558"
+"241994_at"	"XDH"	7498	"ENSG00000158125"
+"242649_x_at"	"HMGN2P46"	NA	"ENSG00000179362"
+"48808_at"	"DHFR"	1719	"ENSG00000228716"
+"242492_at"	"CLNS1A"	1207	"ENSG00000074201"
+"37232_at"	"KIAA0586"	9786	"ENSG00000100578"
+"39835_at"	"SBF1"	6305	"ENSG00000100241"
+"242586_at"	"FSD1L"	83856	"ENSG00000106701"
+"242807_at"	"FSD1L"	83856	"ENSG00000106701"
+"244210_at"	""	NA	"ENSG00000253792"
+"240751_at"	"USP8"	9101	"ENSG00000138592"
+"242700_at"	"PON2"	5445	"ENSG00000105854"
+"242752_at"	"PPM1K"	152926	"ENSG00000163644"
+"240655_at"	"ALCAM"	214	"ENSG00000170017"
+"241992_at"	"WASHC3"	51019	"ENSG00000120860"
+"241507_x_at"	"CALML3-AS1"	NA	"ENSG00000205488"
+"241208_at"	"PDLIM5"	10611	"ENSG00000163110"
+"244324_at"	"C18orf54"	162681	"ENSG00000166845"
+"244118_at"	"GABRA1"	2554	"ENSG00000022355"
+"240856_at"	"FFAR4"	338557	"ENSG00000186188"
+"244767_at"	"FRA10AC1"	118924	"ENSG00000148690"
+"242348_at"	"TAFA4"	151647	"ENSG00000163377"
+"241374_at"	"TMEM39A"	55254	"ENSG00000176142"
+"244062_at"	"DAAM1"	23002	"ENSG00000100592"
+"242083_at"	"ZNF81"	347344	"ENSG00000197779"
+"242676_at"	"NDUFV2-AS1"	NA	"ENSG00000266053"
+"241778_at"	"CNNM2"	54805	"ENSG00000148842"
+"244549_at"	"FEZ2"	9637	"ENSG00000171055"
+"244855_at"	"NQO2-AS1"	NA	"ENSG00000224846"
+"241426_at"	"CEP44"	80817	"ENSG00000164118"
+"37831_at"	"SIPA1L3"	23094	"ENSG00000105738"
+"244689_at"	"PPARA"	5465	"ENSG00000186951"
+"242324_x_at"	"CCBE1"	147372	"ENSG00000183287"
+"57082_at"	"LDLRAP1"	26119	"ENSG00000157978"
+"45714_at"	"HCFC1R1"	54985	"ENSG00000103145"
+"45633_at"	"GINS3"	64785	"ENSG00000181938"
+"46142_at"	"LMF1"	64788	"ENSG00000103227"
+"242334_at"	"NLRP4"	147945	"ENSG00000160505"
+"242965_at"	""	NA	"ENSG00000275580"
+"40569_at"	"MZF1"	7593	"ENSG00000099326"
+"241263_at"	"RAB21"	23011	"ENSG00000080371"
+"241045_at"	"KDM8"	79831	"ENSG00000155666"
+"244198_at"	"RANBP17"	64901	"ENSG00000204764"
+"241999_at"	"SFXN5"	94097	"ENSG00000144040"
+"243179_at"	""	NA	"ENSG00000272341"
+"243907_at"	"GREB1L"	80000	"ENSG00000141449"
+"241782_at"	"NEBL"	10529	"ENSG00000078114"
+"241709_s_at"	"DOCK1"	1793	"ENSG00000150760"
+"241708_at"	"DOCK1"	1793	"ENSG00000150760"
+"242020_s_at"	"ZBP1"	81030	"ENSG00000124256"
+"243722_at"	"PYDC1"	260434	"ENSG00000169900"
+"62987_r_at"	"CACNG4"	27092	"ENSG00000075461"
+"244460_at"	"TMEM225"	338661	"ENSG00000204300"
+"243896_at"	"CFAP43"	80217	"ENSG00000197748"
+"243595_at"	"SHB"	6461	"ENSG00000107338"
+"242064_at"	"SDK2"	54549	"ENSG00000069188"
+"32541_at"	"PPP3CC"	5533	"ENSG00000120910"
+"244828_x_at"	"NAF1"	92345	"ENSG00000145414"
+"34858_at"	"KCTD2"	23510	"ENSG00000180901"
+"242761_s_at"	"ZNF420"	147923	"ENSG00000197050"
+"242647_at"	"USP34"	9736	"ENSG00000115464"
+"243104_at"	"ZFP28-DT"	101928982	"ENSG00000267421"
+"242781_at"	"FAM199X"	139231	"ENSG00000123575"
+"242998_at"	"RDH12"	145226	"ENSG00000139988"
+"240565_at"	"ZFP28"	140612	"ENSG00000196867"
+"241114_s_at"	"ACAA2"	10449	"ENSG00000167315"
+"244166_at"	""	NA	"ENSG00000287024"
+"243116_at"	"PIP5KL1"	138429	"ENSG00000167103"
+"241405_at"	"TOB1-AS1"	400604	"ENSG00000229980"
+"48580_at"	"CXXC1"	30827	"ENSG00000154832"
+"243308_at"	""	NA	"ENSG00000272420"
+"243737_at"	"ATP1B4"	23439	"ENSG00000101892"
+"243386_at"	"CASZ1"	54897	"ENSG00000130940"
+"240955_at"	"PANX3"	116337	"ENSG00000154143"
+"242531_at"	"RRAGC"	64121	"ENSG00000116954"
+"242627_at"	"PNO1"	56902	"ENSG00000115946"
+"242905_at"	"PNO1"	56902	"ENSG00000115946"
+"320_at"	"PEX6"	5190	"ENSG00000124587"
+"240784_at"	"NAT16"	375607	"ENSG00000167011"
+"63305_at"	"PKNOX2"	63876	"ENSG00000165495"
+"52285_f_at"	"CEP76"	79959	"ENSG00000101624"
+"241183_at"	""	NA	"ENSG00000242029"
+"240769_at"	"METAP2"	10988	"ENSG00000111142"
+"244185_at"	"METAP2"	10988	"ENSG00000111142"
+"243552_at"	"MBTD1"	54799	"ENSG00000011258"
+"243067_at"	"MBTD1"	54799	"ENSG00000011258"
+"243510_at"	""	124903956	"ENSG00000265246"
+"35666_at"	"SEMA3F"	6405	"ENSG00000001617"
+"242938_s_at"	"FOXK2"	3607	"ENSG00000141568"
+"243313_at"	"SYNPO2L"	79933	"ENSG00000166317"
+"242522_at"	"TCF24"	100129654	"ENSG00000261787"
+"243220_at"	"ARFGEF1"	10565	"ENSG00000066777"
+"244404_at"	"STXBP4"	252983	"ENSG00000166263"
+"241380_at"	"ARHGEF37"	389337	"ENSG00000183111"
+"242698_at"	"AKAP14"	158798	"ENSG00000186471"
+"242150_at"	"CLSPN"	63967	"ENSG00000092853"
+"243840_at"	"CLSPN"	63967	"ENSG00000092853"
+"240487_at"	""	NA	"ENSG00000253447"
+"241775_at"	"SCFD1"	23256	"ENSG00000092108"
+"243525_at"	"SCFD1"	23256	"ENSG00000092108"
+"241528_at"	"MAPK15"	225689	"ENSG00000181085"
+"242833_at"	"TEX53"	105376230	"ENSG00000230054"
+"242925_at"	"RNF148"	378925	"ENSG00000235631"
+"244254_at"	""	NA	"ENSG00000270917"
+"32502_at"	"GDPD5"	81544	"ENSG00000158555"
+"243345_at"	"RNF14"	9604	"ENSG00000013561"
+"243411_at"	"POLDIP3"	84271	"ENSG00000100227"
+"243617_at"	"ZNF827"	152485	"ENSG00000151612"
+"243618_s_at"	"ZNF827"	152485	"ENSG00000151612"
+"240859_at"	"ZFYVE16"	9765	"ENSG00000039319"
+"242887_at"	"KCMF1"	56888	"ENSG00000176407"
+"241032_at"	""	NA	"ENSG00000201340"
+"40687_at"	"GJA4"	2701	"ENSG00000187513"
+"244273_at"	""	NA	"ENSG00000267150"
+"242687_at"	"FHIP1A"	729830	"ENSG00000164142"
+"244832_at"	""	NA	"ENSG00000280219"
+"243555_at"	""	NA	"ENSG00000280219"
+"243161_x_at"	"ZFP42"	132625	"ENSG00000179059"
+"242474_s_at"	"VMA21"	203547	"ENSG00000160131"
+"243013_at"	"MRPL19"	9801	"ENSG00000115364"
+"244034_at"	"ZCCHC2"	54877	"ENSG00000141664"
+"243099_at"	"NFAM1"	150372	"ENSG00000235568"
+"242629_at"	"RAB3B"	5865	"ENSG00000169213"
+"241454_at"	"ADAL"	161823	"ENSG00000168803"
+"242100_at"	"CHSY3"	337876	"ENSG00000198108"
+"242971_at"	""	124904048	"ENSG00000265055"
+"241350_at"	"FBXL22"	283807	"ENSG00000197361"
+"242278_at"	"PIAS1"	8554	"ENSG00000033800"
+"243383_at"	"POU2F3"	25833	"ENSG00000137709"
+"241534_at"	"ATP8B1-AS1"	100505549	"ENSG00000267040"
+"244362_at"	""	NA	"ENSG00000273355"
+"39817_s_at"	"DNPH1"	10591	"ENSG00000112667"
+"243426_at"	"LINC00667"	339290	"ENSG00000263753"
+"241550_at"	"DPPA5"	340168	"ENSG00000203909"
+"241512_at"	"SPATC1"	375686	"ENSG00000186583"
+"243521_at"	"ZXDA"	7789	"ENSG00000198205"
+"240598_at"	"MIR122HG"	NA	"ENSG00000267391"
+"242940_x_at"	"DLX6"	1750	"ENSG00000006377"
+"35150_at"	"CD40"	958	"ENSG00000101017"
+"243742_at"	"NETO1-DT"	100505797	"ENSG00000263958"
+"40255_at"	"DDX28"	55794	"ENSG00000182810"
+"241308_at"	"LINC01255"	101927433	"ENSG00000267252"
+"241933_at"	"QRSL1"	55278	"ENSG00000130348"
+"241440_at"	"ZIC1"	7545	"ENSG00000152977"
+"35160_at"	"LDB1"	8861	"ENSG00000198728"
+"241813_at"	"MBD1"	4152	"ENSG00000141644"
+"242274_x_at"	"SLC25A42"	284439	"ENSG00000181035"
+"243900_at"	"WDR38"	401551	"ENSG00000136918"
+"243382_at"	"CCDC85A"	114800	"ENSG00000055813"
+"61732_r_at"	"IFT74"	80173	"ENSG00000096872"
+"241751_at"	"OFD1"	8481	"ENSG00000046651"
+"241067_at"	"LINC01863"	107986480	"ENSG00000253959"
+"241946_at"	"ZDHHC21"	340481	"ENSG00000175893"
+"243550_at"	"ZDHHC21"	340481	"ENSG00000175893"
+"243835_at"	"ZDHHC21"	340481	"ENSG00000175893"
+"243281_at"	"ZDHHC21"	340481	"ENSG00000175893"
+"241725_at"	"E2F7"	144455	"ENSG00000165891"
+"36711_at"	"MAFF"	23764	"ENSG00000185022"
+"241984_at"	"FOXN3"	1112	"ENSG00000053254"
+"244721_at"	"TP53INP1"	94241	"ENSG00000164938"
+"240467_at"	""	NA	"ENSG00000286964"
+"242668_x_at"	"SUN5"	140732	"ENSG00000167098"
+"241066_at"	"ZNF449"	203523	"ENSG00000173275"
+"240669_at"	""	NA	"ENSG00000265542"
+"241078_at"	"SLC35E4"	339665	"ENSG00000100036"
+"241218_at"	""	NA	"ENSG00000248115"
+"243630_at"	"NDUFB1"	4707	"ENSG00000183648"
+"240490_at"	"ST3GAL3-AS1"	101929592	"ENSG00000229444"
+"244870_at"	""	NA	"ENSG00000279086"
+"242734_x_at"	"GALT"	2592	"ENSG00000213930"
+"244008_at"	"PARP8"	79668	"ENSG00000151883"
+"242111_at"	"METTL3"	56339	"ENSG00000165819"
+"241017_at"	"RPL31"	6160	"ENSG00000071082"
+"244844_at"	"MRS2"	57380	"ENSG00000124532"
+"243270_at"	"FAM205A"	259308	"ENSG00000205108"
+"54037_at"	"HPS4"	89781	"ENSG00000100099"
+"37950_at"	"PREP"	5550	"ENSG00000085377"
+"242470_at"	"EID2B"	126272	"ENSG00000176401"
+"635_s_at"	"PPP2R5B"	5526	"ENSG00000068971"
+"241987_x_at"	"SNX31"	169166	"ENSG00000174226"
+"244096_at"	""	NA	"ENSG00000274698"
+"244372_at"	"LINC01799"	101060019	"ENSG00000230525"
+"244278_at"	""	NA	"ENSG00000260624"
+"242639_at"	"ICE2"	79664	"ENSG00000128915"
+"48106_at"	"SLC48A1"	55652	"ENSG00000211584"
+"78495_at"	"ZNF783"	100289678	"ENSG00000204946"
+"47571_at"	"ZNF236"	7776	"ENSG00000130856"
+"243171_at"	"LINC03008"	100128325	"ENSG00000229196"
+"45572_s_at"	"GGA1"	26088	"ENSG00000100083"
+"50277_at"	"GGA1"	26088	"ENSG00000100083"
+"243984_at"	"SCRG1"	11341	"ENSG00000164106"
+"242964_at"	"ALK"	238	"ENSG00000171094"
+"243668_at"	"MED28"	80306	"ENSG00000118579"
+"244487_at"	"NCK1"	4690	"ENSG00000158092"
+"243417_at"	"PTGR3"	284273	"ENSG00000180011"
+"242465_at"	"GAPLINC"	NA	"ENSG00000266835"
+"34221_at"	"HMGXB3"	22993	"ENSG00000113716"
+"32402_s_at"	"SYMPK"	8189	"ENSG00000125755"
+"244749_at"	"FAM111A-DT"	101927204	"ENSG00000245571"
+"240928_at"	"FCF1"	51077	"ENSG00000119616"
+"40284_at"	"FOXA2"	3170	"ENSG00000125798"
+"242587_at"	"SLC9A9"	285195	"ENSG00000181804"
+"32811_at"	"MYO1C"	4641	"ENSG00000197879"
+"241852_at"	""	NA	"ENSG00000257407"
+"241822_at"	"DM1-AS"	109729182	"ENSG00000267395"
+"244123_at"	"DM1-AS"	109729182	"ENSG00000267395"
+"33768_at"	"DMWD"	1762	"ENSG00000185800"
+"37943_at"	"ZFYVE26"	23503	"ENSG00000072121"
+"242260_at"	"SNHG4"	724102	"ENSG00000281398"
+"242262_x_at"	"LINC01360"	101927295	"ENSG00000233973"
+"241089_at"	"ZNF562"	54811	"ENSG00000171466"
+"242210_at"	"ZNF24"	7572	"ENSG00000172466"
+"240841_at"	"INSM2"	84684	"ENSG00000168348"
+"45297_at"	"EHD2"	30846	"ENSG00000024422"
+"244545_at"	"DSG2"	1829	"ENSG00000046604"
+"39402_at"	"IL1B"	3553	"ENSG00000125538"
+"243799_x_at"	"ANGPTL3"	27329	"ENSG00000132855"
+"244638_at"	"SUCLG1"	8802	"ENSG00000163541"
+"241546_at"	"SPATA5"	166378	"ENSG00000145375"
+"242251_at"	"SPATA5"	166378	"ENSG00000145375"
+"241157_at"	"TM9SF4"	9777	"ENSG00000101337"
+"240777_at"	"ESR2"	2100	"ENSG00000140009"
+"241931_at"	"XG"	7499	"ENSG00000124343"
+"243095_at"	""	NA	"ENSG00000263279"
+"242375_x_at"	"PAH"	5053	"ENSG00000171759"
+"242029_at"	"FNDC3B"	64778	"ENSG00000075420"
+"31874_at"	"GAS2L1"	10634	"ENSG00000185340"
+"39854_r_at"	"PNPLA2"	57104	"ENSG00000177666"
+"244654_at"	"MYO1G"	64005	"ENSG00000136286"
+"243228_at"	"GTF3C4"	9329	"ENSG00000125484"
+"241407_at"	"NOPCHAP1"	121053	"ENSG00000151131"
+"244596_at"	""	NA	"ENSG00000224992"
+"240804_at"	"LYPD1"	116372	"ENSG00000150551"
+"242293_at"	"ING3"	54556	"ENSG00000071243"
+"242941_x_at"	"TBX1"	6899	"ENSG00000184058"
+"243045_at"	"SMYD1"	150572	"ENSG00000115593"
+"243421_at"	""	105374811	"ENSG00000270571"
+"41469_at"	"PI3"	5266	"ENSG00000124102"
+"241715_x_at"	"ACP4"	93650	"ENSG00000142513"
+"241907_at"	"GPC3-AS1"	110806308	"ENSG00000286096"
+"244877_at"	"GPR173"	54328	"ENSG00000184194"
+"243517_at"	"LINC02885"	NA	"ENSG00000286592"
+"240729_at"	"ERICH6"	131831	"ENSG00000163645"
+"243994_at"	"LINC01208"	NA	"ENSG00000223715"
+"243663_at"	""	NA	"ENSG00000234877"
+"37254_at"	"ZNF133"	7692	"ENSG00000125846"
+"243766_s_at"	"TEAD2"	8463	"ENSG00000074219"
+"244347_at"	"TCTN3"	26123	"ENSG00000119977"
+"241587_at"	"NAALADL2-AS3"	100862679	"ENSG00000230292"
+"242638_at"	"CRADD-AS1"	101928731	"ENSG00000258274"
+"241922_at"	"LMO4"	8543	"ENSG00000143013"
+"244826_at"	"PITPNB"	23760	"ENSG00000180957"
+"242942_at"	"SLC38A10"	124565	"ENSG00000157637"
+"242783_at"	"TNIK"	23043	"ENSG00000154310"
+"243622_at"	"KIF23-AS1"	145694	"ENSG00000259426"
+"241411_at"	""	NA	"ENSG00000260293"
+"32029_at"	"PDPK1"	5170	"ENSG00000140992"
+"244629_s_at"	"PDPK1"	5170	"ENSG00000140992"
+"244189_at"	"TTC28-AS1"	284900	"ENSG00000235954"
+"242611_at"	"DOCK7"	85440	"ENSG00000116641"
+"39549_at"	"NPAS2"	4862	"ENSG00000170485"
+"39548_at"	"NPAS2"	4862	"ENSG00000170485"
+"243062_at"	"FLCN"	201163	"ENSG00000154803"
+"244431_at"	"KLLN"	100144748	"ENSG00000227268"
+"241084_x_at"	"DYNC1H1"	1778	"ENSG00000197102"
+"244768_at"	"DYNC1H1"	1778	"ENSG00000197102"
+"241793_at"	"MSS51"	118490	"ENSG00000166343"
+"243485_at"	""	101927531	"ENSG00000255595"
+"60474_at"	"FERMT1"	55612	"ENSG00000101311"
+"244863_at"	"SH3GLB2"	56904	"ENSG00000148341"
+"243708_at"	"TMEM132E"	124842	"ENSG00000181291"
+"53991_at"	"DENND2A"	27147	"ENSG00000146966"
+"59999_at"	"HIF1AN"	55662	"ENSG00000166135"
+"240966_at"	"SH3TC2"	79628	"ENSG00000169247"
+"244276_at"	"KLB"	152831	"ENSG00000134962"
+"242342_at"	"GUCY1A2"	2977	"ENSG00000152402"
+"242204_at"	"WFDC5"	149708	"ENSG00000175121"
+"242984_at"	"MKLN1"	4289	"ENSG00000128585"
+"244171_at"	"MKLN1"	4289	"ENSG00000128585"
+"59697_at"	"RAB15"	376267	"ENSG00000139998"
+"35846_at"	"THRA"	7067	"ENSG00000126351"
+"44696_at"	"TBC1D13"	54662	"ENSG00000107021"
+"244615_x_at"	"TARS3"	123283	"ENSG00000185418"
+"243952_at"	"TPTEP1"	387590	"ENSG00000290418"
+"243048_at"	""	NA	"ENSG00000290931"
+"243790_at"	"ZNF585A"	199704	"ENSG00000196967"
+"243357_at"	"NEGR1"	257194	"ENSG00000172260"
+"243779_at"	"GALNT13"	114805	"ENSG00000144278"
+"242442_x_at"	"TRMT10A"	93587	"ENSG00000145331"
+"50400_at"	"PAOX"	196743	"ENSG00000148832"
+"244176_at"	""	NA	"ENSG00000270624"
+"241355_at"	"HR"	55806	"ENSG00000168453"
+"242670_at"	"LGI4"	163175	"ENSG00000153902"
+"242345_at"	"COL28A1"	340267	"ENSG00000215018"
+"242617_at"	"TMED8"	283578	"ENSG00000100580"
+"244739_at"	"RDX"	5962	"ENSG00000137710"
+"244270_at"	"HSPA2-AS1"	102723809	"ENSG00000259116"
+"242760_x_at"	"PIGB"	9488	"ENSG00000069943"
+"243403_x_at"	"CPM"	1368	"ENSG00000135678"
+"241765_at"	"CPM"	1368	"ENSG00000135678"
+"241998_at"	"C2orf80"	389073	"ENSG00000188674"
+"244565_at"	"HMX2"	3167	"ENSG00000188816"
+"243914_at"	"EHMT2-AS1"	107986588	"ENSG00000237080"
+"243816_at"	"ZNF70"	7621	"ENSG00000187792"
+"242987_x_at"	"LAMA5-AS1"	101928158	"ENSG00000228812"
+"36920_at"	"MTM1"	4534	"ENSG00000171100"
+"244833_at"	"CCDC63"	160762	"ENSG00000173093"
+"50221_at"	"TFEB"	7942	"ENSG00000112561"
+"243478_at"	"CHST2"	9435	"ENSG00000175040"
+"244601_at"	"DNAJC5"	80331	"ENSG00000101152"
+"242800_at"	"NHS"	4810	"ENSG00000188158"
+"36829_at"	"PER1"	5187	"ENSG00000179094"
+"243204_at"	"LINC02352"	NA	"ENSG00000259448"
+"241799_x_at"	"LINC02352"	NA	"ENSG00000259448"
+"55872_at"	"ZNF512B"	57473	"ENSG00000196700"
+"240945_at"	""	NA	"ENSG00000230627"
+"244417_at"	""	NA	"ENSG00000279152"
+"242637_at"	"L3MBTL1"	26013	"ENSG00000185513"
+"240807_at"	"LINC01187"	NA	"ENSG00000249601"
+"244598_at"	"LCP2"	3937	"ENSG00000043462"
+"244251_at"	"LCP2"	3937	"ENSG00000043462"
+"244556_at"	"LCP2"	3937	"ENSG00000043462"
+"41160_at"	"MBD3"	53615	"ENSG00000071655"
+"243724_at"	"SLC33A1"	9197	"ENSG00000169359"
+"243000_at"	"CDK6"	1021	"ENSG00000105810"
+"242828_at"	"FIGN"	55137	"ENSG00000182263"
+"242921_at"	"SGSM1"	129049	"ENSG00000167037"
+"38691_s_at"	"SFTPC"	6440	"ENSG00000168484"
+"242404_at"	"GNB5"	10681	"ENSG00000069966"
+"244764_at"	"HIVEP3"	59269	"ENSG00000127124"
+"243251_at"	""	101929719	"ENSG00000254363"
+"242088_at"	"KLHL24"	54800	"ENSG00000114796"
+"243918_at"	"KLHL24"	54800	"ENSG00000114796"
+"242633_x_at"	"ZNF75A"	7627	"ENSG00000162086"
+"244463_at"	"ADAM23"	8745	"ENSG00000114948"
+"244363_at"	"ROS1"	6098	"ENSG00000047936"
+"243190_at"	""	NA	"ENSG00000225751"
+"31845_at"	"ELF4"	2000	"ENSG00000102034"
+"64474_g_at"	"DGCR8"	54487	"ENSG00000128191"
+"91617_at"	"DGCR8"	54487	"ENSG00000128191"
+"241312_at"	"LINC00911"	NA	"ENSG00000259107"
+"52255_s_at"	"COL5A3"	50509	"ENSG00000080573"
+"37860_at"	"ZNF337"	26152	"ENSG00000130684"
+"243397_at"	""	NA	"ENSG00000278383"
+"41512_at"	"BRAP"	8315	"ENSG00000089234"
+"53720_at"	"SHFL"	55337	"ENSG00000130813"
+"243526_at"	"WDR86"	349136	"ENSG00000187260"
+"243496_at"	"RAB18"	22931	"ENSG00000099246"
+"241861_at"	"CHPT1"	56994	"ENSG00000111666"
+"34471_at"	"MYH8"	4626	"ENSG00000133020"
+"240919_at"	"SNRPF-DT"	105369921	"ENSG00000258343"
+"243349_at"	"ELAPOR1"	57535	"ENSG00000116299"
+"49878_at"	"PEX16"	9409	"ENSG00000121680"
+"242264_at"	"VSIG10"	54621	"ENSG00000176834"
+"242699_at"	""	NA	"ENSG00000254141"
+"242319_at"	"DGKG"	1608	"ENSG00000058866"
+"244291_x_at"	""	NA	"ENSG00000232934"
+"243619_at"	"FGFR1OP2"	26127	"ENSG00000111790"
+"244842_x_at"	"TUBGCP2"	10844	"ENSG00000130640"
+"48030_i_at"	"FAXDC2"	10826	"ENSG00000170271"
+"48031_r_at"	"FAXDC2"	10826	"ENSG00000170271"
+"241698_at"	"RFTN2"	130132	"ENSG00000162944"
+"241095_at"	"LINC02790"	102723661	"ENSG00000237435"
+"240989_at"	""	NA	"ENSG00000287208"
+"242344_at"	"GABRB2"	2561	"ENSG00000145864"
+"244861_at"	"ZNF527"	84503	"ENSG00000189164"
+"242387_at"	"TDRP"	157695	"ENSG00000180190"
+"240857_at"	"DNAH9"	1770	"ENSG00000007174"
+"241056_at"	"ZC3H3"	23144	"ENSG00000014164"
+"242697_at"	"ZNF540"	163255	"ENSG00000171817"
+"242815_x_at"	""	NA	"ENSG00000273474"
+"243700_x_at"	"FAM47A"	158724	"ENSG00000185448"
+"241170_at"	"SIAH2-AS1"	NA	"ENSG00000244265"
+"244475_at"	"SIAH2-AS1"	NA	"ENSG00000244265"
+"241384_x_at"	"GK5"	256356	"ENSG00000175066"
+"241146_at"	"MAGI2-AS2"	100874021	"ENSG00000226978"
+"65884_at"	"MAN1B1"	11253	"ENSG00000177239"
+"244514_at"	"IPO11"	51194	"ENSG00000086200"
+"243917_at"	"CLIC5"	53405	"ENSG00000112782"
+"242917_at"	"RASGEF1A"	221002	"ENSG00000198915"
+"242265_at"	"BRD8"	10902	"ENSG00000112983"
+"243965_at"	""	NA	"ENSG00000286459"
+"241736_at"	"FBXW2"	26190	"ENSG00000119402"
+"243156_at"	"BARD1"	580	"ENSG00000138376"
+"242655_at"	"BARD1"	580	"ENSG00000138376"
+"243128_at"	"ZNF175"	7728	"ENSG00000105497"
+"44673_at"	"SIGLEC1"	6614	"ENSG00000088827"
+"241206_at"	"A2M-AS1"	144571	"ENSG00000245105"
+"244795_at"	"UQCC1"	55245	"ENSG00000101019"
+"33304_at"	"ISG20"	3669	"ENSG00000172183"
+"63009_at"	"SHQ1"	55164	"ENSG00000144736"
+"241521_at"	"LINC01753"	105378739	"ENSG00000230250"
+"241255_at"	"CTNNA3"	29119	"ENSG00000183230"
+"46270_at"	"UBAP1"	51271	"ENSG00000165006"
+"241247_at"	"LINC01213"	101927992	"ENSG00000244541"
+"244274_at"	"BRPF3-AS1"	NA	"ENSG00000246982"
+"240715_at"	"TBX5"	6910	"ENSG00000089225"
+"60084_at"	"CYLD"	1540	"ENSG00000083799"
+"39582_at"	"CYLD"	1540	"ENSG00000083799"
+"242128_at"	"OTX2"	5015	"ENSG00000165588"
+"242164_s_at"	"LRIG2"	9860	"ENSG00000198799"
+"242165_at"	"LRIG2"	9860	"ENSG00000198799"
+"32137_at"	"JAG2"	3714	"ENSG00000184916"
+"242460_at"	"ADAM12"	8038	"ENSG00000148848"
+"242757_at"	"MDGA1"	266727	"ENSG00000112139"
+"44120_at"	"ADCK2"	90956	"ENSG00000133597"
+"34406_at"	"PACS2"	23241	"ENSG00000179364"
+"242294_at"	"FBXO45"	200933	"ENSG00000174013"
+"243594_x_at"	"SPIRE2"	84501	"ENSG00000204991"
+"242077_x_at"	"CGAS"	115004	"ENSG00000164430"
+"240615_at"	"PTOV1-AS1"	100506033	"ENSG00000268006"
+"244699_at"	"AHI1"	54806	"ENSG00000135541"
+"243940_at"	"TSHZ2"	128553	"ENSG00000182463"
+"244521_at"	"TSHZ2"	128553	"ENSG00000182463"
+"242580_at"	"PUM3"	9933	"ENSG00000080608"
+"49051_g_at"	"DTX3"	196403	"ENSG00000178498"
+"49049_at"	"DTX3"	196403	"ENSG00000178498"
+"241738_at"	"ZNF250"	58500	"ENSG00000196150"
+"242507_at"	"UBXN7-AS1"	NA	"ENSG00000225822"
+"241564_at"	"GLOD5"	392465	"ENSG00000171433"
+"244513_at"	"TMEM161B"	153396	"ENSG00000164180"
+"241867_at"	"PARP6"	56965	"ENSG00000137817"
+"57715_at"	"CALHM2"	51063	"ENSG00000138172"
+"243212_at"	""	NA	"ENSG00000234699"
+"36865_at"	"ANGEL1"	23357	"ENSG00000013523"
+"244685_at"	"ANGEL1"	23357	"ENSG00000013523"
+"243502_at"	"GJC1"	10052	"ENSG00000182963"
+"242773_at"	"SLC5A1"	6523	"ENSG00000100170"
+"65086_at"	"YIPF2"	78992	"ENSG00000130733"
+"45828_at"	"DMAC2"	55101	"ENSG00000105341"
+"241720_at"	"ZNF326"	284695	"ENSG00000162664"
+"242056_at"	"TRIM45"	80263	"ENSG00000134253"
+"242307_at"	"ZNF789"	285989	"ENSG00000198556"
+"243024_at"	"ZNF394"	84124	"ENSG00000160908"
+"244400_at"	"VPS33A"	65082	"ENSG00000139719"
+"244843_x_at"	"LINC01731"	NA	"ENSG00000234283"
+"241898_at"	"LIPH"	200879	"ENSG00000163898"
+"240671_at"	"GYPC"	2995	"ENSG00000136732"
+"242816_at"	"GNAS"	2778	"ENSG00000087460"
+"242975_s_at"	"GNAS"	2778	"ENSG00000087460"
+"243117_at"	""	NA	"ENSG00000277959"
+"241367_at"	"TEX19"	400629	"ENSG00000182459"
+"242621_at"	"ZSCAN25"	221785	"ENSG00000197037"
+"241468_at"	""	NA	"ENSG00000260011"
+"53071_s_at"	"OGFOD3"	79701	"ENSG00000181396"
+"64438_at"	"OGFOD3"	79701	"ENSG00000181396"
+"240876_x_at"	"TERB2"	145645	"ENSG00000167014"
+"243609_at"	"CYP3A7"	1551	"ENSG00000160870"
+"38707_r_at"	"E2F4"	1874	"ENSG00000205250"
+"241996_at"	"HNRNPH3"	3189	"ENSG00000096746"
+"240825_at"	"ZNF37A"	7587	"ENSG00000075407"
+"243050_at"	"PMP22"	5376	"ENSG00000109099"
+"244747_at"	"NPNT"	255743	"ENSG00000168743"
+"242602_x_at"	"ZNF254"	9534	"ENSG00000213096"
+"241014_at"	"FLG-AS1"	339400	"ENSG00000237975"
+"243439_at"	"ZNF418"	147686	"ENSG00000196724"
+"242680_at"	"AVPR1A"	552	"ENSG00000166148"
+"244079_at"	"LRRC72"	100506049	"ENSG00000205858"
+"243577_at"	""	NA	"ENSG00000272361"
+"244780_at"	"SGPP2"	130367	"ENSG00000163082"
+"244538_at"	"KCTD19"	146212	"ENSG00000168676"
+"AFFX-HSAC07/X00351_M_at"	"ACTB"	60	"ENSG00000075624"
+"AFFX-HSAC07/X00351_3_at"	"ACTB"	60	"ENSG00000075624"
+"AFFX-HSAC07/X00351_5_at"	"ACTB"	60	"ENSG00000075624"
+"244050_at"	"HACD4"	401494	"ENSG00000188921"
+"242946_at"	"CD53"	963	"ENSG00000143119"
+"78383_at"	"SMIM27"	100129250	"ENSG00000235453"
+"241701_at"	"ARHGAP21"	57584	"ENSG00000107863"
+"243868_at"	"RFX3"	5991	"ENSG00000080298"
+"34478_at"	"RAB11B"	9230	"ENSG00000185236"
+"241742_at"	"PRAM1"	84106	"ENSG00000133246"
+"241036_at"	"HPS3"	84343	"ENSG00000163755"
+"241661_at"	"JMJD1C"	221037	"ENSG00000171988"
+"240614_at"	"KCNC2"	3747	"ENSG00000166006"
+"244572_at"	"KY"	339855	"ENSG00000174611"
+"240488_at"	""	NA	"ENSG00000231100"
+"40273_at"	"SPHK2"	56848	"ENSG00000063176"
+"243945_at"	"TRIM2"	23321	"ENSG00000109654"
+"35617_at"	"MAPK7"	5598	"ENSG00000166484"
+"243376_at"	"TANK"	10010	"ENSG00000136560"
+"241840_at"	"HSPA9"	3313	"ENSG00000113013"
+"244695_at"	"GHRLOS"	100126793	"ENSG00000240288"
+"241650_x_at"	"HMCN2"	256158	"ENSG00000148357"
+"37986_at"	"EPOR"	2057	"ENSG00000187266"
+"396_f_at"	"EPOR"	2057	"ENSG00000187266"
+"50374_at"	"OXLD1"	339229	"ENSG00000204237"
+"242648_at"	"KLHL8"	57563	"ENSG00000145332"
+"244113_at"	"KCNJ9"	3765	"ENSG00000162728"
+"242554_at"	"TPCN2"	219931	"ENSG00000162341"
+"34063_at"	"RECQL5"	9400	"ENSG00000108469"
+"242545_at"	"TTLL11"	158135	"ENSG00000175764"
+"240534_at"	"LMX1A-AS1"	NA	"ENSG00000238022"
+"242623_x_at"	"PSMG4"	389362	"ENSG00000180822"
+"241371_at"	"TNFRSF10A"	8797	"ENSG00000104689"
+"244886_at"	"TNFRSF10A-DT"	389641	"ENSG00000246582"
+"241328_at"	"ZMAT1"	84460	"ENSG00000166432"
+"241373_at"	"NDUFAF3"	25915	"ENSG00000178057"
+"31861_at"	"IGHMBP2"	3508	"ENSG00000132740"
+"243746_at"	"IGHMBP2"	3508	"ENSG00000132740"
+"240950_s_at"	"KASH5"	147872	"ENSG00000161609"
+"32042_at"	"ENOX2"	10495	"ENSG00000165675"
+"244841_at"	"SEC24A"	10802	"ENSG00000113615"
+"244009_at"	"CAMLG"	819	"ENSG00000164615"
+"241920_x_at"	"SPG11"	80208	"ENSG00000104133"
+"244825_at"	"SHROOM4"	57477	"ENSG00000158352"
+"243172_at"	"SHROOM4"	57477	"ENSG00000158352"
+"34225_at"	"NELFA"	7469	"ENSG00000185049"
+"243901_at"	"ALDOB"	229	"ENSG00000136872"
+"244389_at"	"TLK1"	9874	"ENSG00000198586"
+"241642_x_at"	"TLK1"	9874	"ENSG00000198586"
+"32062_at"	"LRRC14"	9684	"ENSG00000160959"
+"47530_at"	"TRMO"	51531	"ENSG00000136932"
+"241524_at"	"CIZ1"	25792	"ENSG00000148337"
+"241112_at"	"ZNF517"	340385	"ENSG00000197363"
+"241734_at"	"SRFBP1"	153443	"ENSG00000151304"
+"244006_at"	"POU2F1"	5451	"ENSG00000143190"
+"46947_at"	"GNL3L"	54552	"ENSG00000130119"
+"244580_at"	"SCUBE3-AS1"	NA	"ENSG00000272374"
+"61734_at"	"RCN3"	57333	"ENSG00000142552"
+"37152_at"	"PPARD"	5467	"ENSG00000112033"
+"57516_at"	"ZNF764"	92595	"ENSG00000169951"
+"242272_at"	"ZNF785"	146540	"ENSG00000197162"
+"242388_x_at"	"TAGAP"	117289	"ENSG00000164691"
+"45687_at"	"PRR14"	78994	"ENSG00000156858"
+"244519_at"	"ASXL1"	171023	"ENSG00000171456"
+"242438_at"	"ASXL1"	171023	"ENSG00000171456"
+"242439_s_at"	"ASXL1"	171023	"ENSG00000171456"
+"241839_at"	"DLG3-AS1"	100873930	"ENSG00000231651"
+"241408_at"	"UVSSA"	57654	"ENSG00000163945"
+"242217_s_at"	"FBRS"	64319	"ENSG00000156860"
+"244814_at"	"UGGT1"	56886	"ENSG00000136731"
+"244212_at"	"TSTD3"	100130890	"ENSG00000279170"
+"241495_at"	"CCNL1"	57018	"ENSG00000163660"
+"240495_at"	""	NA	"ENSG00000263089"
+"244266_at"	"AKR1C2"	1646	"ENSG00000151632"
+"243579_at"	"MSI2"	124540	"ENSG00000153944"
+"243010_at"	"MSI2"	124540	"ENSG00000153944"
+"241960_at"	"CSMD1"	64478	"ENSG00000183117"
+"241122_s_at"	"MUSK"	4593	"ENSG00000030304"
+"243259_at"	"ATXN7"	6314	"ENSG00000163635"
+"242422_at"	"G3BP1"	10146	"ENSG00000145907"
+"244396_at"	"G3BP1"	10146	"ENSG00000145907"
+"243038_at"	"RBM43"	375287	"ENSG00000184898"
+"242605_at"	"DCN"	1634	"ENSG00000011465"
+"240556_at"	"DCN"	1634	"ENSG00000011465"
+"53912_at"	"SNX11"	29916	"ENSG00000002919"
+"64883_at"	"MOSPD2"	158747	"ENSG00000130150"
+"51226_at"	"CIBAR1"	137392	"ENSG00000188343"
+"241256_at"	"TDRD6-AS1"	101926934	"ENSG00000242973"
+"243741_at"	""	NA	"ENSG00000259720"
+"243511_at"	"HEXA"	3073	"ENSG00000213614"
+"241935_at"	"SHROOM1"	134549	"ENSG00000164403"
+"244092_at"	"ZRANB3"	84083	"ENSG00000121988"
+"39249_at"	"AQP3"	360	"ENSG00000165272"
+"39248_at"	"AQP3"	360	"ENSG00000165272"
+"240827_at"	"GATA3-AS1"	399717	"ENSG00000197308"
+"241368_at"	"PLIN5"	440503	"ENSG00000214456"
+"242613_at"	"PRDM5"	11107	"ENSG00000138738"
+"39891_at"	"ZNF710"	374655	"ENSG00000140548"
+"37590_g_at"	"ZNF710-AS1"	109729181	"ENSG00000259291"
+"242372_s_at"	"MFSD4A"	148808	"ENSG00000174514"
+"40189_at"	"SET"	6418	"ENSG00000119335"
+"243459_x_at"	"CDK14"	5218	"ENSG00000058091"
+"241957_x_at"	"LIN7B"	64130	"ENSG00000104863"
+"41329_at"	"SCYL3"	57147	"ENSG00000000457"
+"244597_at"	"SPATS2L"	26010	"ENSG00000196141"
+"244281_at"	"REXO1"	57455	"ENSG00000079313"
+"242774_at"	"SYNE2"	23224	"ENSG00000054654"
+"243841_at"	"SYNE2"	23224	"ENSG00000054654"
+"240993_at"	""	NA	"ENSG00000290162"
+"243497_at"	""	NA	"ENSG00000279959"
+"50376_at"	"ZNF444"	55311	"ENSG00000167685"
+"38241_at"	"BTN3A3"	10384	"ENSG00000111801"
+"242916_at"	"CNTRL"	11064	"ENSG00000119397"
+"242493_at"	"PTPRD"	5789	"ENSG00000153707"
+"242753_x_at"	"AP1AR"	55435	"ENSG00000138660"
+"40489_at"	"ATN1"	1822	"ENSG00000111676"
+"240771_at"	"CATSPERE"	257044	"ENSG00000179397"
+"38043_at"	"FAM3A"	60343	"ENSG00000071889"
+"243951_at"	"ABCB1"	5243	"ENSG00000085563"
+"243818_at"	"SFTA1P"	207107	"ENSG00000225383"
+"241989_at"	"GRK4"	2868	"ENSG00000125388"
+"243065_at"	"SLC35F5"	80255	"ENSG00000115084"
+"244066_at"	""	NA	"ENSG00000272842"
+"243078_at"	"POLR2G"	5436	"ENSG00000168002"
+"243472_at"	""	NA	"ENSG00000280420"
+"244751_at"	"PCP2"	126006	"ENSG00000174788"
+"243282_at"	"CCDC93"	54520	"ENSG00000125633"
+"243704_at"	"GPATCH2"	55105	"ENSG00000092978"
+"242224_at"	"GPATCH2"	55105	"ENSG00000092978"
+"244258_at"	"PURB"	5814	"ENSG00000146676"
+"244644_at"	"FAM9C"	171484	"ENSG00000187268"
+"241887_at"	"UBE2W"	55284	"ENSG00000104343"
+"242857_at"	"FARP2"	9855	"ENSG00000006607"
+"242027_at"	"ANXA7"	310	"ENSG00000138279"
+"243026_x_at"	"XIAP"	331	"ENSG00000101966"
+"76897_s_at"	"FKBP15"	23307	"ENSG00000119321"
+"31826_at"	"FKBP15"	23307	"ENSG00000119321"
+"51228_at"	"RBM12B"	389677	"ENSG00000183808"
+"244126_at"	"PEX11G"	92960	"ENSG00000104883"
+"241862_x_at"	"TEX45"	374877	"ENSG00000198723"
+"241842_x_at"	"TEX45"	374877	"ENSG00000198723"
+"243869_at"	"CCDC88C"	440193	"ENSG00000015133"
+"49077_at"	"PPME1"	51400	"ENSG00000214517"
+"242944_at"	"FAM83A"	84985	"ENSG00000147689"
+"243443_at"	""	NA	"ENSG00000280269"
+"244661_at"	"SOAT1"	6646	"ENSG00000057252"
+"240720_at"	"RNASET2"	8635	"ENSG00000026297"
+"243444_at"	"SRD5A3"	79644	"ENSG00000128039"
+"38918_at"	"SOX13"	9580	"ENSG00000143842"
+"244686_at"	"TCOF1"	6949	"ENSG00000070814"
+"243153_at"	"CDK5RAP2"	55755	"ENSG00000136861"
+"242923_at"	"ZNF678"	339500	"ENSG00000181450"
+"244614_at"	"TFG"	10342	"ENSG00000114354"
+"244649_at"	""	NA	"ENSG00000280262"
+"241844_x_at"	"TMEM156"	80008	"ENSG00000121895"
+"64486_at"	"CORO1B"	57175	"ENSG00000172725"
+"242271_at"	"SLC26A9"	115019	"ENSG00000174502"
+"242323_at"	"PLA2G12A"	81579	"ENSG00000123739"
+"244117_at"	"PTCHD4"	442213	"ENSG00000244694"
+"241241_at"	"RPS14"	6208	"ENSG00000164587"
+"244184_at"	"ADGRB3"	577	"ENSG00000135298"
+"243975_at"	""	105371485	"ENSG00000228133"
+"244446_at"	"SMAD1-AS2"	101927659	"ENSG00000250582"
+"242702_at"	"MMAA"	166785	"ENSG00000151611"
+"242750_at"	"MMAA"	166785	"ENSG00000151611"
+"241018_at"	"TMEM59"	9528	"ENSG00000116209"
+"56919_at"	"WDR48"	57599	"ENSG00000114742"
+"65591_at"	"WDR48"	57599	"ENSG00000114742"
+"243276_at"	"ALS2CL"	259173	"ENSG00000178038"
+"244533_at"	"PTPN14"	5784	"ENSG00000152104"
+"242321_at"	"PTPN14"	5784	"ENSG00000152104"
+"38964_r_at"	"WAS"	7454	"ENSG00000015285"
+"59644_at"	"BMP2K"	55589	"ENSG00000138756"
+"37170_at"	"BMP2K"	55589	"ENSG00000138756"
+"241196_at"	"LINC02642"	NA	"ENSG00000232591"
+"240578_at"	"LINC00836"	101929052	"ENSG00000280809"
+"242967_at"	"ACE2"	59272	"ENSG00000130234"
+"241966_at"	"MYO5A"	4644	"ENSG00000197535"
+"240746_s_at"	"LINC02944"	101927760	"ENSG00000238276"
+"240745_at"	"LINC02944"	101927760	"ENSG00000238276"
+"241448_at"	"TOMM20"	9804	"ENSG00000173726"
+"243003_at"	""	NA	"ENSG00000289528"
+"48825_at"	"ING4"	51147	"ENSG00000111653"
+"242226_at"	""	100288079	"ENSG00000261024"
+"39729_at"	"PRDX2"	7001	"ENSG00000167815"
+"33494_at"	"ETFDH"	2110	"ENSG00000171503"
+"241202_at"	"MFAP3"	4238	"ENSG00000037749"
+"244393_x_at"	"AKR1E2"	83592	"ENSG00000165568"
+"242552_x_at"	"ZBED5"	58486	"ENSG00000236287"
+"243740_at"	"ZNF639"	51193	"ENSG00000121864"
+"242195_x_at"	"NUMBL"	9253	"ENSG00000105245"
+"240778_at"	"GINS4"	84296	"ENSG00000147536"
+"241469_at"	"HFM1"	164045	"ENSG00000162669"
+"244385_at"	""	NA	"ENSG00000225489"
+"243968_x_at"	"FCRL1"	115350	"ENSG00000163534"
+"241823_at"	""	NA	"ENSG00000289440"
+"242582_at"	""	NA	"ENSG00000272914"
+"244132_x_at"	"ZNF518A"	9849	"ENSG00000177853"
+"244172_at"	"BLNK"	29760	"ENSG00000095585"
+"242146_at"	"SNRPA1"	6627	"ENSG00000131876"
+"242725_at"	"KDELR2"	11014	"ENSG00000136240"
+"59437_at"	"PIERCE1"	138162	"ENSG00000160345"
+"89977_at"	"ACSM5"	54988	"ENSG00000183549"
+"242440_at"	""	NA	"ENSG00000270072"
+"242447_at"	"C3orf70"	285382	"ENSG00000187068"
+"244723_at"	""	NA	"ENSG00000280306"
+"242472_x_at"	"FNBP4"	23360	"ENSG00000109920"
+"242846_at"	"KIAA1217"	56243	"ENSG00000120549"
+"243109_at"	"MCTP2"	55784	"ENSG00000140563"
+"241375_at"	"USP38"	84640	"ENSG00000170185"
+"243248_at"	""	NA	"ENSG00000254143"
+"243831_at"	"MAPK6"	5597	"ENSG00000069956"
+"244653_at"	"SETD7"	80854	"ENSG00000145391"
+"243483_at"	"TRPM8"	79054	"ENSG00000144481"
+"31807_at"	"DDX49"	54555	"ENSG00000105671"
+"240541_at"	""	NA	"ENSG00000265460"
+"243304_at"	"AGO2"	27161	"ENSG00000123908"
+"242230_at"	"ATXN1"	6310	"ENSG00000124788"
+"241387_at"	"PTK2"	5747	"ENSG00000169398"
+"241453_at"	"PTK2"	5747	"ENSG00000169398"
+"240479_at"	"HS3ST5"	222537	"ENSG00000249853"
+"242549_at"	"PRKD3"	23683	"ENSG00000115825"
+"56821_at"	"SLC38A7"	55238	"ENSG00000103042"
+"244505_at"	""	NA	"ENSG00000270147"
+"244777_at"	"DCP2"	167227	"ENSG00000172795"
+"242977_at"	""	NA	"ENSG00000227579"
+"242864_at"	"ZNF554"	115196	"ENSG00000172006"
+"242571_at"	"REPS2"	9185	"ENSG00000169891"
+"244869_at"	"CALM1"	801	"ENSG00000198668"
+"241619_at"	"CALM1"	801	"ENSG00000198668"
+"244502_at"	"EXOC8"	149371	"ENSG00000116903"
+"65517_at"	"AP1M2"	10053	"ENSG00000129354"
+"241766_at"	""	NA	"ENSG00000232537"
+"242286_at"	"GRIN2A"	2903	"ENSG00000183454"
+"242754_at"	"PELP1-DT"	101559451	"ENSG00000244184"
+"244823_at"	"NEK6"	10783	"ENSG00000119408"
+"244043_at"	"TFDP2"	7029	"ENSG00000114126"
+"243198_at"	"TEX9"	374618	"ENSG00000151575"
+"244801_at"	"PSMB7"	5695	"ENSG00000136930"
+"240744_at"	"CPA5"	93979	"ENSG00000158525"
+"243938_x_at"	"DNAH5"	1767	"ENSG00000039139"
+"242479_s_at"	"MCM4"	4173	"ENSG00000104738"
+"240464_at"	"ERCC6L2"	375748	"ENSG00000182150"
+"244752_at"	"ZNF438"	220929	"ENSG00000183621"
+"241894_at"	"VMO1"	284013	"ENSG00000182853"
+"632_at"	"GSK3A"	2931	"ENSG00000105723"
+"242173_at"	"PLD5"	200150	"ENSG00000180287"
+"36612_at"	"FAM168A"	23201	"ENSG00000054965"
+"242023_at"	"ABHD4"	63874	"ENSG00000100439"
+"241915_at"	"ACSM2B"	348158	"ENSG00000066813"
+"242419_at"	""	NA	"ENSG00000235096"
+"243977_at"	"IL6-AS1"	541472	"ENSG00000179428"
+"242361_at"	""	NA	"ENSG00000200241"
+"242608_x_at"	"FAM161B"	145483	"ENSG00000156050"
+"242758_x_at"	"KDM3A"	55818	"ENSG00000115548"
+"241951_at"	"SLCO1C1"	53919	"ENSG00000139155"
+"242186_x_at"	"ADGRL3"	23284	"ENSG00000150471"
+"59705_at"	"SCLY"	51540	"ENSG00000132330"
+"241990_at"	"RHOV"	171177	"ENSG00000104140"
+"243296_at"	"NAMPT"	10135	"ENSG00000105835"
+"241181_x_at"	"NPHS1"	4868	"ENSG00000161270"
+"243324_x_at"	"TNPO1"	3842	"ENSG00000083312"
+"38269_at"	"PRKD2"	25865	"ENSG00000105287"
+"241669_x_at"	"PRKD2"	25865	"ENSG00000105287"
+"243213_at"	"STAT3"	6774	"ENSG00000168610"
+"243141_at"	"SGMS2"	166929	"ENSG00000164023"
+"242963_at"	"SGMS2"	166929	"ENSG00000164023"
+"243328_at"	""	NA	"ENSG00000285103"
+"243468_at"	"PATE1"	160065	"ENSG00000171053"
+"243268_at"	"PATE2"	399967	"ENSG00000196844"
+"244294_at"	"GTF2H5"	404672	"ENSG00000272047"
+"244623_at"	"KCNQ5"	56479	"ENSG00000185760"
+"243881_at"	"SHC3"	53358	"ENSG00000148082"
+"52159_at"	"HEMK1"	51409	"ENSG00000114735"
+"244700_at"	"SEC61B"	10952	"ENSG00000106803"
+"41856_at"	"UNC5B"	219699	"ENSG00000107731"
+"240884_at"	"CCDC14"	64770	"ENSG00000175455"
+"243777_at"	"RAB29"	8934	"ENSG00000117280"
+"243344_at"	""	NA	"ENSG00000261447"
+"243995_at"	"PTAR1"	375743	"ENSG00000188647"
+"65718_at"	"ADGRA2"	25960	"ENSG00000020181"
+"241143_at"	"LINC02622"	NA	"ENSG00000259267"
+"240546_at"	"LINC01120"	NA	"ENSG00000223631"
+"41858_at"	"PGAP2"	27315	"ENSG00000148985"
+"244540_at"	"LINC01677"	NA	"ENSG00000233047"
+"243542_at"	"PREPL"	9581	"ENSG00000138078"
+"240824_at"	"STN1"	79991	"ENSG00000107960"
+"52005_at"	"WIZ"	58525	"ENSG00000011451"
+"244761_at"	"C5orf63"	401207	"ENSG00000164241"
+"240929_at"	"RBPMS-AS1"	100128750	"ENSG00000254109"
+"244057_s_at"	"VSTM4"	196740	"ENSG00000165633"
+"244058_at"	"VSTM4"	196740	"ENSG00000165633"
+"243262_at"	""	NA	"ENSG00000207326"
+"244153_at"	"ZNF207"	7756	"ENSG00000010244"
+"47553_at"	"WHRN"	25861	"ENSG00000095397"
+"243875_at"	"CCDC158"	339965	"ENSG00000163749"
+"244038_at"	"WDR89"	112840	"ENSG00000140006"
+"242015_x_at"	"APEH"	327	"ENSG00000164062"
+"242583_at"	"STON2"	85439	"ENSG00000140022"
+"242535_at"	"STON2"	85439	"ENSG00000140022"
+"242911_at"	"MED13L"	23389	"ENSG00000123066"
+"240584_at"	"SHANK2-AS2"	NA	"ENSG00000236262"
+"242636_at"	"PRCP"	5547	"ENSG00000137509"
+"241447_at"	"ING5"	84289	"ENSG00000168395"
+"241949_at"	"ACOT6"	641372	"ENSG00000205669"
+"242890_at"	"HELLS"	3070	"ENSG00000119969"
+"37020_at"	"CRP"	1401	"ENSG00000132693"
+"243325_at"	"GSTK1"	373156	"ENSG00000197448"
+"240590_at"	"SPATA3-AS1"	348761	"ENSG00000238062"
+"241252_at"	"ESCO2"	157570	"ENSG00000171320"
+"41644_at"	"SASH1"	23328	"ENSG00000111961"
+"34449_at"	"CASP2"	835	"ENSG00000106144"
+"242888_at"	"PRRT3-AS1"	100874032	"ENSG00000230082"
+"243103_at"	"SYNGR2"	9144	"ENSG00000108639"
+"242297_at"	"RREB1"	6239	"ENSG00000124782"
+"242402_x_at"	"ARAP2"	116984	"ENSG00000047365"
+"244343_at"	""	NA	"ENSG00000258168"
+"49327_at"	"SIRT3"	23410	"ENSG00000142082"
+"242426_at"	"NRG4"	145957	"ENSG00000169752"
+"241955_at"	"HECTD1"	25831	"ENSG00000092148"
+"242349_at"	"HECTD1"	25831	"ENSG00000092148"
+"241683_at"	"HECTD1"	25831	"ENSG00000092148"
+"241009_at"	"FOXN4"	121643	"ENSG00000139445"
+"240661_at"	""	NA	"ENSG00000224950"
+"241482_at"	"EPHA1"	2041	"ENSG00000146904"
+"37566_at"	"PHF24"	23349	"ENSG00000122733"
+"52940_at"	"SIGIRR"	59307	"ENSG00000185187"
+"241525_at"	"UICLM"	200772	"ENSG00000233392"
+"241739_at"	"BBS2"	583	"ENSG00000125124"
+"241483_at"	"CLNK"	116449	"ENSG00000109684"
+"244115_at"	"HYCC1"	84668	"ENSG00000122591"
+"241790_at"	"AK3P3"	NA	"ENSG00000230042"
+"242116_x_at"	"ANKRD17"	26057	"ENSG00000132466"
+"56829_at"	"TRAPPC9"	83696	"ENSG00000167632"
+"35436_at"	"GOLGA2"	2801	"ENSG00000167110"
+"243998_at"	"KRT222"	125113	"ENSG00000213424"
+"240948_at"	"TLR4"	7099	"ENSG00000136869"
+"38290_at"	"RGS14"	10636	"ENSG00000169220"
+"242082_at"	"MMAB"	326625	"ENSG00000139428"
+"242794_at"	"MAML3"	55534	"ENSG00000196782"
+"241324_at"	"ST18"	9705	"ENSG00000147488"
+"58916_at"	"KCTD14"	65987	"ENSG00000151364"
+"243445_at"	"BNC2"	54796	"ENSG00000173068"
+"241031_at"	"C2CD4A"	145741	"ENSG00000198535"
+"242034_at"	"FBXL17"	64839	"ENSG00000145743"
+"244315_at"	"PLSCR1"	5359	"ENSG00000188313"
+"243946_at"	"SMOC2"	64094	"ENSG00000112562"
+"242031_at"	"RPL21P94"	NA	"ENSG00000241678"
+"38340_at"	"HIP1R"	9026	"ENSG00000130787"
+"241403_at"	"CLK4"	57396	"ENSG00000113240"
+"244443_at"	"CHASERR"	NA	"ENSG00000272888"
+"41397_at"	"ZNF821"	55565	"ENSG00000102984"
+"241963_at"	"ZNF704"	619279	"ENSG00000164684"
+"243985_at"	"BNIP2"	663	"ENSG00000140299"
+"244127_at"	"HDDC3"	374659	"ENSG00000184508"
+"242209_at"	"ANKRD33"	341405	"ENSG00000167612"
+"244242_at"	""	NA	"ENSG00000230074"
+"242208_at"	"ZNF37BP"	100129482	"ENSG00000234420"
+"240662_at"	""	NA	"ENSG00000239994"
+"241038_at"	"CHRM3-AS2"	100506915	"ENSG00000233355"
+"242488_at"	"CHRM3"	1131	"ENSG00000133019"
+"36552_at"	"C2CD3"	26005	"ENSG00000168014"
+"240633_at"	"DOK7"	285489	"ENSG00000175920"
+"242705_x_at"	"LRPAP1"	4043	"ENSG00000163956"
+"244743_x_at"	"ZNF138"	7697	"ENSG00000197008"
+"44111_at"	"VPS33B"	26276	"ENSG00000184056"
+"242350_s_at"	"ST8SIA6-AS1"	100128098	"ENSG00000204832"
+"242079_at"	"RGS12"	6002	"ENSG00000159788"
+"240837_at"	"FNDC7"	163479	"ENSG00000143107"
+"244717_x_at"	"SV2B"	9899	"ENSG00000185518"
+"241322_at"	"PRPF39-DT"	105370474	"ENSG00000249163"
+"242735_x_at"	"ELF2"	1998	"ENSG00000109381"
+"241816_at"	"MIS18BP1"	55320	"ENSG00000129534"
+"244173_at"	"MIS18BP1"	55320	"ENSG00000129534"
+"244194_at"	"ADAM22"	53616	"ENSG00000008277"
+"242711_x_at"	"FANCM"	57697	"ENSG00000187790"
+"40016_g_at"	"MAST4"	375449	"ENSG00000069020"
+"243575_at"	"MAST4"	375449	"ENSG00000069020"
+"242477_at"	"TTC39B"	158219	"ENSG00000155158"
+"243643_x_at"	"SLC30A6"	55676	"ENSG00000152683"
+"243127_x_at"	"DNASE1"	1773	"ENSG00000213918"
+"241854_at"	"DNASE1"	1773	"ENSG00000213918"
+"240880_at"	""	NA	"ENSG00000283058"
+"242515_x_at"	"AKIP1"	56672	"ENSG00000166452"
+"243400_x_at"	"LTBR"	4055	"ENSG00000111321"
+"240523_at"	"DPH6-DT"	NA	"ENSG00000248079"
+"242341_x_at"	"GLYCTK"	132158	"ENSG00000168237"
+"242162_at"	"DAW1"	164781	"ENSG00000123977"
+"34868_at"	"SMG5"	23381	"ENSG00000198952"
+"242692_at"	"GLYCTK-AS1"	NA	"ENSG00000242797"
+"243602_at"	""	NA	"ENSG00000289723"
+"240838_s_at"	"DRAIC"	145837	"ENSG00000245750"
+"242012_at"	""	NA	"ENSG00000291054"
+"242036_x_at"	"ATP2B3"	492	"ENSG00000067842"
+"240585_at"	""	NA	"ENSG00000287778"
+"240861_at"	""	NA	"ENSG00000287778"
+"241253_at"	"ZGRF1"	55345	"ENSG00000138658"
+"242378_at"	"MYADML2"	255275	"ENSG00000185105"
+"242354_at"	"SPINT1-AS1"	NA	"ENSG00000261183"
+"243758_at"	"CFAP100"	348807	"ENSG00000163885"
+"242615_at"	"CFAP100"	348807	"ENSG00000163885"
+"241385_at"	"LARP7"	51574	"ENSG00000174720"
+"244441_at"	"USP31"	57478	"ENSG00000103404"
+"240592_at"	"LCORL"	254251	"ENSG00000178177"
+"244830_at"	"RASIP1"	54922	"ENSG00000105538"
+"241150_at"	"SPTAN1"	6709	"ENSG00000197694"
+"244681_at"	"NUP210P1"	255330	"ENSG00000198284"
+"244569_at"	"CFAP418"	157657	"ENSG00000156172"
+"37512_at"	"HSD17B6"	8630	"ENSG00000025423"
+"242795_at"	"MYOT"	9499	"ENSG00000120729"
+"242281_at"	"GLUL"	2752	"ENSG00000135821"
+"31799_at"	"COPB2"	9276	"ENSG00000184432"
+"336_at"	"TBXA2R"	6915	"ENSG00000006638"
+"242596_at"	""	NA	"ENSG00000272941"
+"241424_at"	"ELAVL4"	1996	"ENSG00000162374"
+"51158_at"	"FAM174B"	400451	"ENSG00000185442"
+"32259_at"	"EZH1"	2145	"ENSG00000108799"
+"38158_at"	"ESPL1"	9700	"ENSG00000135476"
+"240912_x_at"	"EWSAT1"	283673	"ENSG00000212766"
+"242057_at"	"ARHGEF35-AS1"	NA	"ENSG00000244198"
+"243728_at"	""	101929109	"ENSG00000249713"
+"244808_at"	"GRAMD1A"	57655	"ENSG00000089351"
+"241684_at"	""	NA	"ENSG00000273650"
+"37226_at"	"BNIP1"	662	"ENSG00000113734"
+"243224_at"	"RBM33-DT"	100506302	"ENSG00000216895"
+"243252_at"	"FRRS1"	391059	"ENSG00000156869"
+"242966_x_at"	"RFX2"	5990	"ENSG00000087903"
+"243503_at"	""	NA	"ENSG00000262133"
+"242155_x_at"	"RFFL"	117584	"ENSG00000092871"
+"241767_at"	""	101928087	"ENSG00000277332"
+"241106_at"	"CWC27"	10283	"ENSG00000153015"
+"242035_at"	"LMBR1"	64327	"ENSG00000105983"
+"243813_at"	"LINC00968"	100507632	"ENSG00000246430"
+"243999_at"	"SLFN5"	162394	"ENSG00000166750"
+"242193_at"	"MIR124-2HG"	NA	"ENSG00000254377"
+"240575_at"	"LINC01301"	NA	"ENSG00000251396"
+"243589_at"	"KANSL1"	284058	"ENSG00000120071"
+"242069_at"	"CBX5"	23468	"ENSG00000094916"
+"241875_at"	"CBX5"	23468	"ENSG00000094916"
+"240863_at"	"CYP19A1"	1588	"ENSG00000137869"
+"244627_at"	"TKFC"	26007	"ENSG00000149476"
+"244847_at"	"FAM13B"	51306	"ENSG00000031003"
+"244246_at"	"MIPOL1"	145282	"ENSG00000151338"
+"240554_at"	"AKAP8L"	26993	"ENSG00000011243"
+"242511_at"	"ST3GAL3"	6487	"ENSG00000126091"
+"241265_x_at"	"FAM169A"	26049	"ENSG00000198780"
+"AFFX-HUMGAPDH/M33197_5_at"	"GAPDH"	2597	"ENSG00000111640"
+"AFFX-HUMGAPDH/M33197_3_at"	"GAPDH"	2597	"ENSG00000111640"
+"AFFX-HUMGAPDH/M33197_M_at"	"GAPDH"	2597	"ENSG00000111640"
+"242157_at"	"CHD9"	80205	"ENSG00000177200"
+"242121_at"	"FTX"	100302692	"ENSG00000230590"
+"242370_at"	"MTHFD2L"	441024	"ENSG00000163738"
+"244662_at"	"MBD5"	55777	"ENSG00000204406"
+"240610_at"	"LINC03000"	102546299	"ENSG00000241956"
+"240562_at"	"GSK3B"	2932	"ENSG00000082701"
+"242336_at"	"GSK3B"	2932	"ENSG00000082701"
+"243222_at"	"ALPK1"	80216	"ENSG00000073331"
+"242528_at"	"HOXA-AS2"	NA	"ENSG00000253552"
+"240624_x_at"	""	NA	"ENSG00000253308"
+"241756_at"	"SMARCA2"	6595	"ENSG00000080503"
+"242299_at"	"MIR374C"	100500807	"ENSG00000283534"
+"243712_at"	"XIST"	7503	"ENSG00000229807"
+"241477_at"	"NEIL1"	79661	"ENSG00000140398"
+"241817_at"	"C3orf62"	375341	"ENSG00000188315"
+"244192_x_at"	"USP4"	7375	"ENSG00000114316"
+"242585_at"	"CKMT2-AS1"	100131067	"ENSG00000247572"
+"241462_at"	""	NA	"ENSG00000289540"
+"242690_at"	"ATP11C"	286410	"ENSG00000101974"
+"241366_at"	"RBAK"	57786	"ENSG00000146587"
+"243167_at"	"ABCB5"	340273	"ENSG00000004846"
+"240717_at"	"ABCB5"	340273	"ENSG00000004846"
+"244138_at"	""	NA	"ENSG00000287162"
+"41387_r_at"	"KDM6B"	23135	"ENSG00000132510"
+"41386_i_at"	"KDM6B"	23135	"ENSG00000132510"
+"242727_at"	"ARL5B"	221079	"ENSG00000165997"
+"241981_at"	"FAM20A"	54757	"ENSG00000108950"
+"242945_at"	"FAM20A"	54757	"ENSG00000108950"
+"243776_at"	""	105374428	"ENSG00000250781"
+"36084_at"	"CUL7"	9820	"ENSG00000044090"
+"241747_s_at"	"CUL7"	9820	"ENSG00000044090"
+"243073_at"	"CUL7"	9820	"ENSG00000044090"
+"241746_at"	"CUL7"	9820	"ENSG00000044090"
+"61297_at"	"CASKIN2"	57513	"ENSG00000177303"
+"241402_at"	"TSEN54"	283989	"ENSG00000182173"
+"244424_at"	""	NA	"ENSG00000271755"
+"244783_at"	"YAF2"	10138	"ENSG00000015153"
+"240604_at"	"ERI2"	112479	"ENSG00000196678"
+"240603_s_at"	"ERI2"	112479	"ENSG00000196678"
+"37278_at"	"TAFAZZIN"	6901	"ENSG00000102125"
+"240873_x_at"	"DAB2"	1601	"ENSG00000153071"
+"40225_at"	"GAK"	2580	"ENSG00000178950"
+"242533_at"	""	NA	"ENSG00000276931"
+"242019_at"	"CERS6"	253782	"ENSG00000172292"
+"243680_at"	"MIDEAS-AS1"	NA	"ENSG00000259065"
+"36030_at"	"IFFO1"	25900	"ENSG00000010295"
+"240762_at"	"HNRNPK"	3190	"ENSG00000165119"
+"241980_at"	"MAP6"	4135	"ENSG00000171533"
+"242806_at"	"CACNA2D2"	9254	"ENSG00000007402"
+"243720_at"	"CMIP"	80790	"ENSG00000153815"
+"243356_at"	""	89838	"ENSG00000291023"
+"240646_at"	"GIMAP8"	155038	"ENSG00000171115"
+"243661_at"	"ZNF273"	10793	"ENSG00000198039"
+"240840_s_at"	"SETD9"	133383	"ENSG00000155542"
+"244704_at"	"NFYB"	4801	"ENSG00000120837"
+"242912_at"	"POTEM"	641455	"ENSG00000222036"
+"241911_at"	"CDKL3"	51265	"ENSG00000006837"
+"41220_at"	"SEPTIN9"	10801	"ENSG00000184640"
+"243164_s_at"	""	NA	"ENSG00000279469"
+"48531_at"	"TNIP2"	79155	"ENSG00000168884"
+"243916_x_at"	"UBLCP1"	134510	"ENSG00000164332"
+"244774_at"	"PHACTR2"	9749	"ENSG00000112419"
+"243166_at"	"SLC30A5"	64924	"ENSG00000145740"
+"241370_at"	"TMEM65"	157378	"ENSG00000164983"
+"241342_at"	"TMEM65"	157378	"ENSG00000164983"
+"38447_at"	"GRK2"	156	"ENSG00000173020"
+"244756_at"	"ANKRD13D"	338692	"ENSG00000172932"
+"242441_at"	""	NA	"ENSG00000274330"
+"51192_at"	"SSH3"	54961	"ENSG00000172830"
+"244827_at"	""	NA	"ENSG00000250681"
+"244884_at"	"LINC02600"	NA	"ENSG00000250986"
+"243199_at"	""	NA	"ENSG00000261238"
+"240716_at"	"TTC23"	64927	"ENSG00000103852"
+"243061_at"	"LINC01551"	387978	"ENSG00000186960"
+"242548_x_at"	"ANKRD37"	353322	"ENSG00000186352"
+"242356_at"	"VTI1A"	143187	"ENSG00000151532"
+"241740_at"	"CREM"	1390	"ENSG00000095794"
+"64900_at"	"TMEM231"	79583	"ENSG00000205084"
+"242667_at"	"TLR3"	7098	"ENSG00000164342"
+"53076_at"	"B4GALT7"	11285	"ENSG00000027847"
+"48659_at"	"MIIP"	60672	"ENSG00000116691"
+"243565_at"	"CCDC150"	284992	"ENSG00000144395"
+"241819_at"	"TNFSF8"	944	"ENSG00000106952"
+"243804_at"	"MTMR7"	9108	"ENSG00000003987"
+"244321_at"	"PGAP1"	80055	"ENSG00000197121"
+"241801_at"	"PGAP1"	80055	"ENSG00000197121"
+"240834_at"	"OTULIN"	90268	"ENSG00000154124"
+"242037_at"	"ASPH"	444	"ENSG00000198363"
+"242809_at"	"IL1RL1"	9173	"ENSG00000115602"
+"242423_x_at"	"MFSD14CP"	84278	"ENSG00000290770"
+"243751_at"	"CHD2"	1106	"ENSG00000173575"
+"40850_at"	"FKBP8"	23770	"ENSG00000105701"
+"58900_at"	"UBE2D4"	51619	"ENSG00000078967"
+"51774_s_at"	"UBE2D4"	51619	"ENSG00000078967"
+"65521_at"	"UBE2D4"	51619	"ENSG00000078967"
+"243887_at"	"MRPL30"	51263	"ENSG00000185414"
+"243801_x_at"	"MRPL30"	51263	"ENSG00000185414"
+"243953_at"	"FADS2"	9415	"ENSG00000134824"
+"243312_at"	"ZNF107"	51427	"ENSG00000196247"
+"244409_at"	""	NA	"ENSG00000279930"
+"241825_at"	"TYW5"	129450	"ENSG00000162971"
+"241737_x_at"	"VRK1"	7443	"ENSG00000100749"
+"241348_at"	"ZNF654"	55279	"ENSG00000175105"
+"242017_at"	"ZNF654"	55279	"ENSG00000175105"
+"51200_at"	"REX1BD"	55049	"ENSG00000006015"
+"240581_at"	""	101928373	"ENSG00000286313"
+"241808_at"	"ZC2HC1A"	51101	"ENSG00000104427"
+"244552_at"	""	NA	"ENSG00000286132"
+"242550_at"	"EIF3B"	8662	"ENSG00000106263"
+"243309_at"	"PIERCE2"	145788	"ENSG00000261652"
+"244411_at"	"MINCR"	100507316	"ENSG00000253716"
+"242290_at"	"TACC1"	6867	"ENSG00000147526"
+"243446_at"	"AJUBA"	84962	"ENSG00000129474"
+"243372_at"	"HSPD1"	3329	"ENSG00000144381"
+"241716_at"	"HSPD1"	3329	"ENSG00000144381"
+"241388_at"	"RAB33B-AS1"	NA	"ENSG00000273247"
+"241313_at"	"DOCK4"	9732	"ENSG00000128512"
+"243423_at"	"TNIP1"	10318	"ENSG00000145901"
+"243337_at"	"FREM3"	166752	"ENSG00000183090"
+"241455_at"	"C6orf132"	647024	"ENSG00000188112"
+"240708_at"	"PEX5L-AS2"	101928790	"ENSG00000244302"
+"240823_at"	"BUD13-DT"	NA	"ENSG00000226645"
+"244154_at"	"DDHD1"	80821	"ENSG00000100523"
+"243705_at"	"DDHD1"	80821	"ENSG00000100523"
+"44783_s_at"	"HEY1"	23462	"ENSG00000164683"
+"242927_at"	"DCLRE1C"	64421	"ENSG00000152457"
+"45288_at"	"ABHD6"	57406	"ENSG00000163686"
+"242845_at"	"RUNX1T1"	862	"ENSG00000079102"
+"241382_at"	"PCP4L1"	654790	"ENSG00000248485"
+"240872_at"	""	NA	"ENSG00000236267"
+"243413_at"	"TTC30B"	150737	"ENSG00000196659"
+"242777_at"	"ANAPC10"	10393	"ENSG00000164162"
+"241959_at"	"ANAPC10"	10393	"ENSG00000164162"
+"37996_s_at"	"DMPK"	1760	"ENSG00000104936"
+"39705_at"	"SIN3B"	23309	"ENSG00000127511"
+"242129_at"	"SIN3B"	23309	"ENSG00000127511"
+"244788_at"	""	NA	"ENSG00000274565"
+"37408_at"	"MRC2"	9902	"ENSG00000011028"
+"241300_at"	"IDE"	3416	"ENSG00000119912"
+"242747_at"	""	NA	"ENSG00000285578"
+"33646_g_at"	"GM2A"	2760	"ENSG00000196743"
+"35820_at"	"GM2A"	2760	"ENSG00000196743"
+"242196_at"	"ARHGAP32"	9743	"ENSG00000134909"
+"244864_at"	"ITGB1-DT"	NA	"ENSG00000229656"
+"241833_at"	"PEX5L"	51555	"ENSG00000114757"
+"242289_at"	"MRPL42"	28977	"ENSG00000198015"
+"241892_at"	"NCL"	4691	"ENSG00000115053"
+"244712_at"	"MEX3D"	399664	"ENSG00000181588"
+"91816_f_at"	"MEX3D"	399664	"ENSG00000181588"
+"241545_x_at"	""	NA	"ENSG00000289171"
+"242883_at"	"OTOS"	150677	"ENSG00000178602"
+"241429_at"	"SGMS1-AS1"	NA	"ENSG00000226200"
+"241547_at"	"A1CF"	29974	"ENSG00000148584"
+"242123_at"	"PAQR7"	164091	"ENSG00000182749"
+"44822_s_at"	"MIER2"	54531	"ENSG00000105556"
+"242594_at"	"BOD1L1"	259282	"ENSG00000038219"
+"243139_at"	"SV2C"	22987	"ENSG00000122012"
+"242530_at"	"SV2C"	22987	"ENSG00000122012"
+"242520_s_at"	"ARMH1"	339541	"ENSG00000198520"
+"243971_x_at"	""	NA	"ENSG00000290423"
+"243362_s_at"	"LEF1-AS1"	641518	"ENSG00000232021"
+"243363_at"	"LEF1-AS1"	641518	"ENSG00000232021"
+"243063_at"	""	NA	"ENSG00000289532"
+"244047_at"	"PRKRA"	8575	"ENSG00000180228"
+"45749_at"	"RIPOR1"	79567	"ENSG00000039523"
+"241001_at"	"NOP14-AS1"	NA	"ENSG00000249673"
+"244760_at"	"PPM1K-DT"	105369192	"ENSG00000246375"
+"240793_at"	""	NA	"ENSG00000270574"
+"242729_at"	""	NA	"ENSG00000271141"
+"241606_s_at"	"TRUB1"	142940	"ENSG00000165832"
+"31835_at"	"HRG"	3273	"ENSG00000113905"
+"242062_at"	"SAMD8"	142891	"ENSG00000156671"
+"243195_s_at"	"ZNF551"	90233	"ENSG00000204519"
+"243194_at"	"ZNF551"	90233	"ENSG00000204519"
+"243590_at"	"WDR41"	55255	"ENSG00000164253"
+"240637_at"	"WDR41"	55255	"ENSG00000164253"
+"53987_at"	"RANBP10"	57610	"ENSG00000141084"
+"244381_at"	""	NA	"ENSG00000230325"
+"244544_at"	""	NA	"ENSG00000287244"
+"244462_at"	"ZNF224"	7767	"ENSG00000267680"
+"241192_at"	"TBCA"	6902	"ENSG00000171530"
+"242953_at"	"ZNF234"	10780	"ENSG00000263002"
+"242749_at"	"SEC63"	11231	"ENSG00000025796"
+"244593_at"	"HID1"	283987	"ENSG00000167861"
+"242632_at"	"FGD2"	221472	"ENSG00000146192"
+"243871_at"	"WAKMAR2"	100130476	"ENSG00000237499"
+"40612_at"	"DOP1A"	23033	"ENSG00000083097"
+"241727_x_at"	"DHFR2"	200895	"ENSG00000178700"
+"243711_at"	""	NA	"ENSG00000282057"
+"241601_at"	"WIPF3"	644150	"ENSG00000122574"
+"241703_at"	"RUNDC3B"	154661	"ENSG00000105784"
+"244694_at"	"IGLON5"	402665	"ENSG00000142549"
+"243825_at"	"BCL6B"	255877	"ENSG00000161940"
+"240933_at"	""	NA	"ENSG00000268520"
+"47550_at"	"LZTS1"	11178	"ENSG00000061337"
+"47105_at"	"DUS2"	54920	"ENSG00000167264"
+"244650_at"	"OTULINL"	54491	"ENSG00000145569"
+"241908_at"	"BROX"	148362	"ENSG00000162819"
+"241138_at"	""	NA	"ENSG00000280323"
+"243368_at"	""	NA	"ENSG00000288728"
+"242934_at"	""	NA	"ENSG00000286039"
+"243541_at"	"IL31RA"	133396	"ENSG00000164509"
+"242282_at"	"ZFPM1"	161882	"ENSG00000179588"
+"241111_at"	"HSD3B1"	3283	"ENSG00000203857"
+"242317_at"	"HIGD1A"	25994	"ENSG00000181061"
+"244074_at"	"ST3GAL1-DT"	NA	"ENSG00000261220"
+"243520_x_at"	"ADAM30"	11085	"ENSG00000134249"
+"242326_at"	"COL22A1"	169044	"ENSG00000169436"
+"243301_at"	"COL22A1"	169044	"ENSG00000169436"
+"241689_at"	"METTL14"	57721	"ENSG00000145388"
+"244680_at"	"GLRB"	2743	"ENSG00000109738"
+"241568_at"	"LINC01988"	100506319	"ENSG00000283036"
+"241249_at"	"CUTALP"	253039	"ENSG00000226752"
+"242043_s_at"	"ZNF8"	7554	"ENSG00000278129"
+"242044_at"	"ZNF8"	7554	"ENSG00000278129"
+"244466_at"	"ZNF544"	27300	"ENSG00000198131"
+"242309_at"	""	NA	"ENSG00000271151"
+"242084_at"	""	100507527	"ENSG00000267465"
+"244889_at"	""	400499	"ENSG00000188897"
+"241580_at"	"ZNF518B"	85460	"ENSG00000178163"
+"243893_at"	"KCNC3"	3748	"ENSG00000131398"
+"243023_at"	""	NA	"ENSG00000273156"
+"57532_at"	"DVL2"	1856	"ENSG00000004975"
+"240947_at"	"ANO6"	196527	"ENSG00000177119"
+"243933_at"	""	NA	"ENSG00000288876"
+"243157_at"	"CTSB"	1508	"ENSG00000164733"
+"242512_at"	"MYO9A"	4649	"ENSG00000066933"
+"244656_at"	"RASL10B"	91608	"ENSG00000270885"
+"35671_at"	"GTF3C1"	2975	"ENSG00000077235"
+"243111_at"	"ENTPD1-AS1"	728558	"ENSG00000226688"
+"243407_at"	"MFSD8"	256471	"ENSG00000164073"
+"243534_at"	"CC2D2B"	387707	"ENSG00000188649"
+"244391_at"	"TSEN2"	80746	"ENSG00000154743"
+"244582_at"	""	NA	"ENSG00000241409"
+"242643_x_at"	""	NA	"ENSG00000262038"
+"243556_at"	"NGEF"	25791	"ENSG00000066248"
+"243425_at"	""	101928557	"ENSG00000270159"
+"243696_at"	"CEP104"	9731	"ENSG00000116198"
+"244284_at"	""	NA	"ENSG00000268505"
+"242249_at"	""	NA	"ENSG00000291075"
+"243689_s_at"	""	NA	"ENSG00000291075"
+"243176_at"	"ARL5A"	26225	"ENSG00000162980"
+"244784_at"	"DHX57"	90957	"ENSG00000163214"
+"242270_at"	"ACP6"	51205	"ENSG00000162836"
+"242153_at"	"LARP1B"	55132	"ENSG00000138709"
+"32837_at"	"AGPAT2"	10555	"ENSG00000169692"
+"244193_at"	"DNAJC22"	79962	"ENSG00000178401"
+"244052_at"	"CBR4"	84869	"ENSG00000145439"
+"242902_at"	"CYMP"	643160	"ENSG00000240194"
+"241787_at"	"FOXCUT"	NA	"ENSG00000280916"
+"244730_x_at"	"ZSCAN16-AS1"	100129195	"ENSG00000269293"
+"241047_at"	"CASC15"	NA	"ENSG00000272168"
+"241671_x_at"	"CASC15"	NA	"ENSG00000272168"
+"243140_at"	"ACTA2"	59	"ENSG00000107796"
+"244811_at"	"PHIP"	55023	"ENSG00000146247"
+"242211_x_at"	"WDR90"	197335	"ENSG00000161996"
+"244252_at"	""	NA	"ENSG00000244953"
+"242731_x_at"	"BMPR1A"	657	"ENSG00000107779"
+"40020_at"	"CELSR3"	1951	"ENSG00000008300"
+"242839_at"	"MDN1"	23195	"ENSG00000112159"
+"242010_at"	""	NA	"ENSG00000272817"
+"244234_at"	"ESYT1"	23344	"ENSG00000139641"
+"244635_s_at"	""	NA	"ENSG00000287811"
+"244570_at"	"ATXN1-AS1"	NA	"ENSG00000229931"
+"241745_at"	"EPM2A-DT"	NA	"ENSG00000235652"
+"240677_at"	"ZC3H10"	84872	"ENSG00000135482"
+"243662_at"	"ZC3H10"	84872	"ENSG00000135482"
+"37586_at"	"ZNF142"	7701	"ENSG00000115568"
+"240913_at"	"FGFR2"	2263	"ENSG00000066468"
+"242782_x_at"	"TMEM198"	130612	"ENSG00000188760"
+"65770_at"	"RHOT2"	89941	"ENSG00000140983"
+"242972_at"	"HCG18"	414777	"ENSG00000231074"
+"241846_at"	"HCG18"	414777	"ENSG00000231074"
+"244227_at"	"SYT6"	148281	"ENSG00000134207"
+"242305_at"	""	NA	"ENSG00000291203"
+"242425_at"	"MKRN2"	23609	"ENSG00000075975"
+"44040_at"	"FBXO41"	150726	"ENSG00000163013"
+"244287_at"	"SREK1"	140890	"ENSG00000153914"
+"243361_at"	"SREK1"	140890	"ENSG00000153914"
+"242184_s_at"	""	NA	"ENSG00000253744"
+"242185_at"	""	NA	"ENSG00000253744"
+"38703_at"	"DNPEP"	23549	"ENSG00000123992"
+"241744_x_at"	"HULC"	100506207	"ENSG00000285219"
+"59631_at"	"TXNRD3"	114112	"ENSG00000197763"
+"244567_at"	"HAVCR1"	26762	"ENSG00000113249"
+"242429_at"	"ZNF567"	163081	"ENSG00000189042"
+"244509_at"	"GPR155"	151556	"ENSG00000163328"
+"241356_at"	"SDR42E1"	93517	"ENSG00000184860"
+"242714_at"	"MAP3K5-AS2"	NA	"ENSG00000286646"
+"243553_x_at"	"TRAF3IP2-AS1"	643749	"ENSG00000231889"
+"240577_at"	"TRAF3IP2-AS1"	643749	"ENSG00000231889"
+"243562_at"	"KNG1"	3827	"ENSG00000113889"
+"240475_at"	"EGOT"	100126791	"ENSG00000235947"
+"244029_at"	"CPNE5"	57699	"ENSG00000124772"
+"45653_at"	"KCTD13"	253980	"ENSG00000174943"
+"242183_at"	"IRGQ"	126298	"ENSG00000167378"
+"64488_at"	"IRGQ"	126298	"ENSG00000167378"
+"242855_at"	"KCP"	375616	"ENSG00000135253"
+"243185_at"	""	NA	"ENSG00000271046"
+"244250_at"	"ANXA6"	309	"ENSG00000197043"
+"242813_at"	"ELP6"	54859	"ENSG00000163832"
+"241433_at"	"RCOR3"	55758	"ENSG00000117625"
+"65630_at"	"TMEM80"	283232	"ENSG00000177042"
+"241519_at"	"H2BC1"	255626	"ENSG00000146047"
+"39966_at"	"CSPG5"	10675	"ENSG00000114646"
+"240712_s_at"	"MLF1-DT"	100996447	"ENSG00000243150"
+"240711_at"	"MLF1-DT"	100996447	"ENSG00000243150"
+"34726_at"	"CACNB3"	784	"ENSG00000167535"
+"243883_at"	"MMP15"	4324	"ENSG00000102996"
+"37462_i_at"	"SF3A2"	8175	"ENSG00000104897"
+"243155_at"	""	115308161	"ENSG00000271551"
+"242203_at"	"CHRM4"	1132	"ENSG00000180720"
+"242248_at"	"PHKB"	5257	"ENSG00000102893"
+"244070_at"	"SYNE1"	23345	"ENSG00000131018"
+"244144_at"	"SYNE1"	23345	"ENSG00000131018"
+"32094_at"	"CHST3"	9469	"ENSG00000122863"
+"34260_at"	"TELO2"	9894	"ENSG00000100726"
+"244180_at"	"ZNF793"	390927	"ENSG00000188227"
+"242541_at"	"ABCA9"	10350	"ENSG00000154258"
+"38069_at"	"CLCN7"	1186	"ENSG00000103249"
+"47083_at"	"INTS15"	79034	"ENSG00000146576"
+"242273_at"	"LLPH"	84298	"ENSG00000139233"
+"52731_at"	"AMBRA1"	55626	"ENSG00000110497"
+"241877_at"	""	NA	"ENSG00000288764"
+"241986_at"	"BMPER"	168667	"ENSG00000164619"
+"55065_at"	"MARK4"	57787	"ENSG00000007047"
+"241850_at"	""	NA	"ENSG00000289493"
+"243604_at"	""	NA	"ENSG00000253736"
+"60794_f_at"	"ZNF814"	730051	"ENSG00000204514"
+"241912_at"	"ZNF814"	730051	"ENSG00000204514"
+"242287_at"	"CLIP1"	6249	"ENSG00000130779"
+"34764_at"	"LARS2"	23395	"ENSG00000011376"
+"58367_s_at"	"ZNF419"	79744	"ENSG00000105136"
+"240882_at"	""	NA	"ENSG00000233760"
+"242168_at"	"NDUFS7"	374291	"ENSG00000115286"
+"240595_at"	""	NA	"ENSG00000271918"
+"244857_at"	""	NA	"ENSG00000253965"
+"243021_at"	"LINC01770"	NA	"ENSG00000225285"
+"240648_at"	"NUP133-DT"	NA	"ENSG00000223635"
+"244769_at"	"SLC12A2-DT"	644873	"ENSG00000245937"
+"244856_at"	"SLC12A2-DT"	644873	"ENSG00000245937"
+"46323_at"	"CANT1"	124583	"ENSG00000171302"
+"243174_at"	""	NA	"ENSG00000289075"
+"240810_at"	"MKNK1-AS1"	100507423	"ENSG00000269956"
+"65635_at"	"ENGASE"	64772	"ENSG00000167280"
+"243256_at"	"MKNK1"	8569	"ENSG00000079277"
+"243331_at"	"LINC02918"	NA	"ENSG00000237950"
+"241652_x_at"	"LIN7A"	8825	"ENSG00000111052"
+"39313_at"	"WNK1"	65125	"ENSG00000060237"
+"243154_at"	"CARD11"	84433	"ENSG00000198286"
+"241487_at"	"NUP93-DT"	105371286	"ENSG00000261302"
+"240537_s_at"	"CDIPTOSP"	440356	"ENSG00000214725"
+"244710_at"	"LRGUK"	136332	"ENSG00000155530"
+"244131_at"	"HNRNPA2B1"	3181	"ENSG00000122566"
+"242898_at"	"EIF2AK2"	5610	"ENSG00000055332"
+"91703_at"	"EHBP1L1"	254102	"ENSG00000173442"
+"242560_at"	"FANCD2"	2177	"ENSG00000144554"
+"243635_at"	"DNAJC10"	54431	"ENSG00000077232"
+"242625_at"	"RSAD2"	91543	"ENSG00000134321"
+"243539_at"	"SANBR"	84542	"ENSG00000162929"
+"242179_s_at"	"TSPAN16"	26526	"ENSG00000130167"
+"242180_at"	"TSPAN16"	26526	"ENSG00000130167"
+"241820_at"	"RIF1"	55183	"ENSG00000080345"
+"34210_at"	"CD52"	1043	"ENSG00000169442"
+"242684_at"	"ZNF425"	155054	"ENSG00000204947"
+"240774_at"	""	NA	"ENSG00000275963"
+"64899_at"	"PLPPR2"	64748	"ENSG00000105520"
+"241090_at"	""	NA	"ENSG00000261240"
+"50965_at"	"RAB26"	25837	"ENSG00000167964"
+"244280_at"	"LINC01013"	NA	"ENSG00000228495"
+"242848_x_at"	""	NA	"ENSG00000272100"
+"244151_at"	"SMLR1"	100507203	"ENSG00000256162"
+"244103_at"	"SDE2"	163859	"ENSG00000143751"
+"242304_at"	"PYM1"	84305	"ENSG00000170473"
+"44669_at"	"SDHAF1"	644096	"ENSG00000205138"
+"242866_x_at"	"POU2F2"	5452	"ENSG00000028277"
+"242601_at"	"HEPACAM2"	253012	"ENSG00000188175"
+"242957_at"	"VWCE"	220001	"ENSG00000167992"
+"241321_at"	"CNNM3"	26505	"ENSG00000168763"
+"243930_x_at"	"KRR1"	11103	"ENSG00000111615"
+"46665_at"	"SEMA4C"	54910	"ENSG00000168758"
+"241401_at"	"WDFY3-AS2"	404201	"ENSG00000180769"
+"243365_s_at"	"AUTS2"	26053	"ENSG00000158321"
+"243364_at"	"AUTS2"	26053	"ENSG00000158321"
+"242473_at"	"TRAF4"	9618	"ENSG00000076604"
+"242726_at"	"ACSL3"	2181	"ENSG00000123983"
+"244500_s_at"	"EVI5L"	115704	"ENSG00000142459"
+"244501_at"	"EVI5L"	115704	"ENSG00000142459"
+"242450_at"	"RGMB"	285704	"ENSG00000174136"
+"244660_at"	"ELAVL1"	1994	"ENSG00000066044"
+"243338_at"	""	NA	"ENSG00000230551"
+"244664_at"	"ZNF530"	348327	"ENSG00000183647"
+"242238_at"	"NUDCD3"	23386	"ENSG00000015676"
+"243430_at"	"SEZ6"	124925	"ENSG00000063015"
+"240970_x_at"	""	102723684	"ENSG00000286477"
+"35254_at"	"TRAFD1"	10906	"ENSG00000135148"
+"243196_s_at"	"TRAFD1"	10906	"ENSG00000135148"
+"38037_at"	"HBEGF"	1839	"ENSG00000113070"
+"242557_at"	""	NA	"ENSG00000237669"
+"241302_at"	"C7"	730	"ENSG00000112936"
+"244305_at"	"GGN"	199720	"ENSG00000179168"
+"242463_x_at"	"ZNF600"	162966	"ENSG00000189190"
+"241704_x_at"	"ZNF320"	162967	"ENSG00000182986"
+"240609_at"	"SEC61G-DT"	100996654	"ENSG00000234707"
+"241399_at"	"TAFA2"	338811	"ENSG00000198673"
+"242661_x_at"	"FLACC1"	130540	"ENSG00000155749"
+"241353_s_at"	"FAM131B-AS2"	NA	"ENSG00000232533"
+"241133_at"	""	NA	"ENSG00000288882"
+"33814_at"	"PAK4"	10298	"ENSG00000130669"
+"243894_at"	"SLC41A2"	84102	"ENSG00000136052"
+"49485_at"	"PRDM4"	11108	"ENSG00000110851"
+"243547_at"	"LINC00921"	283876	"ENSG00000281005"
+"243634_at"	"SMIM14"	201895	"ENSG00000163683"
+"240528_s_at"	"EXOC4"	60412	"ENSG00000131558"
+"244587_at"	"ATF7"	11016	"ENSG00000170653"
+"241809_at"	"INKA2"	55924	"ENSG00000197852"
+"241172_at"	"GRIA2"	2891	"ENSG00000120251"
+"241470_x_at"	"RASSF9"	9182	"ENSG00000198774"
+"240649_at"	"MGAT4C"	25834	"ENSG00000182050"
+"242445_at"	"FGD4"	121512	"ENSG00000139132"
+"243278_at"	"FOXP2"	93986	"ENSG00000128573"
+"33197_at"	"MYO7A"	4647	"ENSG00000137474"
+"241346_at"	"ARHGAP30"	257106	"ENSG00000186517"
+"241395_at"	"NIT1"	4817	"ENSG00000158793"
+"35974_at"	"IRAG2"	4033	"ENSG00000118308"
+"240718_at"	"IRAG2"	4033	"ENSG00000118308"
+"244269_at"	"LINC02218"	102723526	"ENSG00000249662"
+"39763_at"	"HPX"	3263	"ENSG00000110169"
+"36888_at"	"HAUS5"	23354	"ENSG00000249115"
+"244632_at"	"CNTN5"	53942	"ENSG00000149972"
+"44065_at"	"RITA1"	84934	"ENSG00000139405"
+"241885_at"	"TAF15"	8148	"ENSG00000270647"
+"243904_at"	"STXBP5"	134957	"ENSG00000164506"
+"240518_at"	""	NA	"ENSG00000247934"
+"242706_s_at"	"MED23"	9439	"ENSG00000112282"
+"242707_at"	"MED23"	9439	"ENSG00000112282"
+"242353_at"	""	NA	"ENSG00000273329"
+"243189_at"	"NRF1"	4899	"ENSG00000106459"
+"240675_at"	"DCAF7"	10238	"ENSG00000136485"
+"242640_at"	"PROSER3"	148137	"ENSG00000167595"
+"244524_at"	"PAX8-AS1"	654433	"ENSG00000189223"
+"244716_x_at"	"TMIGD2"	126259	"ENSG00000167664"
+"242214_at"	"RPS27A"	6233	"ENSG00000143947"
+"244624_at"	"RPS27A"	6233	"ENSG00000143947"
+"242366_at"	""	NA	"ENSG00000280088"
+"55705_at"	"R3HDM4"	91300	"ENSG00000198858"
+"242791_at"	"FBXO3"	26273	"ENSG00000110429"
+"59625_at"	"NOL3"	8996	"ENSG00000140939"
+"243592_at"	"REV1"	51455	"ENSG00000135945"
+"242517_at"	"KISS1R"	84634	"ENSG00000116014"
+"242861_at"	"NEDD9"	4739	"ENSG00000111859"
+"244461_at"	"SPECC1"	92521	"ENSG00000128487"
+"241239_at"	"EPN2"	22905	"ENSG00000072134"
+"244647_at"	"WBP11"	51729	"ENSG00000084463"
+"38671_at"	"PLXND1"	23129	"ENSG00000004399"
+"243056_at"	"C12orf60"	144608	"ENSG00000182993"
+"242496_at"	"ART4"	420	"ENSG00000111339"
+"46256_at"	"SPSB3"	90864	"ENSG00000162032"
+"34408_at"	"RTN2"	6253	"ENSG00000125744"
+"242918_at"	"NASP"	4678	"ENSG00000132780"
+"241602_at"	"ZNF582"	147948	"ENSG00000018869"
+"240893_at"	""	101928317	"ENSG00000255649"
+"243545_at"	"MLEC"	9761	"ENSG00000110917"
+"243532_at"	"LNPEP"	4012	"ENSG00000113441"
+"40149_at"	"SH2B1"	25970	"ENSG00000178188"
+"241666_at"	"TCAIM"	285343	"ENSG00000179152"
+"243122_at"	"PACRG-AS3"	729658	"ENSG00000225683"
+"241434_at"	""	NA	"ENSG00000230896"
+"242295_at"	"LINC01931"	150596	"ENSG00000162947"
+"241930_x_at"	"PTPN11"	5781	"ENSG00000179295"
+"240697_at"	"LINC02140"	NA	"ENSG00000261803"
+"54632_at"	"THADA"	63892	"ENSG00000115970"
+"242851_at"	"MFSD4B"	91749	"ENSG00000173214"
+"242103_at"	"TMEM86A"	144110	"ENSG00000151117"
+"242951_at"	"TMEM86A"	144110	"ENSG00000151117"
+"242568_s_at"	"SQSTM1"	8878	"ENSG00000161011"
+"244804_at"	"SQSTM1"	8878	"ENSG00000161011"
+"240936_at"	""	NA	"ENSG00000240207"
+"244152_at"	"IQCJ-SCHIP1-AS1"	NA	"ENSG00000241211"
+"244577_at"	"KIF1C-AS1"	102724009	"ENSG00000227495"
+"242242_at"	"USP6"	9098	"ENSG00000129204"
+"241110_at"	""	NA	"ENSG00000291121"
+"242555_at"	"C16orf87"	388272	"ENSG00000155330"
+"240911_at"	"NOS1"	4842	"ENSG00000089250"
+"244867_at"	""	NA	"ENSG00000292246"
+"242091_at"	"KRBOX5"	124411	"ENSG00000197302"
+"36564_at"	"RNF19B"	127544	"ENSG00000116514"
+"242487_at"	"CC2D1B"	200014	"ENSG00000154222"
+"243650_at"	"PLEKHH2"	130271	"ENSG00000152527"
+"242436_at"	"PLEKHH2"	130271	"ENSG00000152527"
+"241779_at"	"MTX3"	345778	"ENSG00000177034"
+"241757_x_at"	"DYNC2LI1"	51626	"ENSG00000138036"
+"243614_s_at"	"PRODH2"	58510	"ENSG00000250799"
+"44654_at"	"G6PC3"	92579	"ENSG00000141349"
+"243681_at"	"SHANK2"	22941	"ENSG00000162105"
+"241710_at"	"C1GALT1C1L"	728819	"ENSG00000223658"
+"242314_at"	"TNRC6C"	57690	"ENSG00000078687"
+"243829_at"	"BRAF"	673	"ENSG00000157764"
+"243582_at"	"SH3RF2"	153769	"ENSG00000156463"
+"242579_at"	"BMPR1B"	658	"ENSG00000138696"
+"242094_at"	"ITGB3"	3690	"ENSG00000259207"
+"242259_at"	"FAM187B"	148109	"ENSG00000177558"
+"241873_at"	"UNC5C-AS1"	NA	"ENSG00000271474"
+"38892_at"	"BICRAL"	23506	"ENSG00000112624"
+"244547_at"	"RSKR"	124923	"ENSG00000167524"
+"47608_at"	"TJAP1"	93643	"ENSG00000137221"
+"243366_s_at"	"ITGA4"	3676	"ENSG00000115232"
+"244599_at"	"ITGA4"	3676	"ENSG00000115232"
+"243685_at"	"ITGA4"	3676	"ENSG00000115232"
+"241430_at"	"TEX37"	200523	"ENSG00000172073"
+"242567_at"	"ABTB1"	80325	"ENSG00000114626"
+"244771_at"	"KBTBD12"	166348	"ENSG00000187715"
+"241024_at"	"KHDC1"	80759	"ENSG00000135314"
+"240591_at"	""	NA	"ENSG00000286318"
+"244888_at"	"HOPX"	84525	"ENSG00000171476"
+"243118_at"	"CEP57L1"	285753	"ENSG00000183137"
+"240756_at"	""	NA	"ENSG00000278997"
+"58308_at"	"TRIM62"	55223	"ENSG00000116525"
+"242935_at"	"SBF2"	81846	"ENSG00000133812"
+"241950_at"	"WWC1"	23286	"ENSG00000113645"
+"244616_x_at"	"MDM2"	4193	"ENSG00000135679"
+"40148_at"	"APBB2"	323	"ENSG00000163697"
+"242002_at"	"NKAIN2"	154215	"ENSG00000188580"
+"36566_at"	"CTNS"	1497	"ENSG00000040531"
+"244071_at"	"FBLL1"	345630	"ENSG00000188573"
+"243585_at"	"ATP13A5"	344905	"ENSG00000187527"
+"243612_at"	"NSD1"	64324	"ENSG00000165671"
+"241513_at"	""	NA	"ENSG00000271320"
+"242907_at"	"GBP2"	2634	"ENSG00000162645"
+"242042_s_at"	"HAGLR"	401022	"ENSG00000224189"
+"243793_at"	"AHDC1"	27245	"ENSG00000126705"
+"49452_at"	"ACACB"	32	"ENSG00000076555"
+"43427_at"	"ACACB"	32	"ENSG00000076555"
+"242078_at"	"AFF3"	3899	"ENSG00000144218"
+"243967_at"	"AFF3"	3899	"ENSG00000144218"
+"243576_at"	"LINC02574"	111216282	"ENSG00000233975"
+"243531_at"	"LTO1"	220064	"ENSG00000149716"
+"240693_at"	"LINC01974"	NA	"ENSG00000262031"
+"243880_at"	"GOSR2"	9570	"ENSG00000108433"
+"243974_at"	""	NA	"ENSG00000279289"
+"243371_at"	"SELENOK"	58515	"ENSG00000113811"
+"242979_at"	"IRS1"	3667	"ENSG00000169047"
+"241880_x_at"	"RNF175"	285533	"ENSG00000145428"
+"243608_at"	"COG2"	22796	"ENSG00000135775"
+"242624_at"	"ABLIM2"	84448	"ENSG00000163995"
+"241783_at"	""	NA	"ENSG00000290015"
+"243408_at"	"LINC02517"	105374374	"ENSG00000249145"
+"243360_at"	"TMED4"	222068	"ENSG00000158604"
+"241968_at"	"ABHD18"	80167	"ENSG00000164074"
+"243802_at"	"DNAH12"	201625	"ENSG00000174844"
+"54970_at"	"ZMIZ2"	83637	"ENSG00000122515"
+"242521_at"	"CARD8-AS1"	100505812	"ENSG00000268001"
+"243175_at"	"UTS2B"	257313	"ENSG00000188958"
+"242765_at"	"MOBP"	4336	"ENSG00000168314"
+"241717_at"	"MOBP"	4336	"ENSG00000168314"
+"243581_at"	""	NA	"ENSG00000229808"
+"241383_at"	"ZNF385C"	201181	"ENSG00000187595"
+"241735_at"	"RASSF8"	11228	"ENSG00000123094"
+"241458_at"	"SETD2"	29072	"ENSG00000181555"
+"34846_at"	"CAMK2B"	816	"ENSG00000058404"
+"244691_at"	"SETD5"	55209	"ENSG00000168137"
+"244403_at"	"CRB1"	23418	"ENSG00000134376"
+"242644_at"	"TMC8"	147138	"ENSG00000167895"
+"240944_at"	"LINC02387"	101929027	"ENSG00000256232"
+"243613_at"	"DENND5B"	160518	"ENSG00000170456"
+"44563_at"	"WRAP53"	55135	"ENSG00000141499"
+"242364_x_at"	"TMC6"	11322	"ENSG00000141524"
+"240559_at"	"IZUMO2"	126123	"ENSG00000161652"
+"243306_s_at"	"GCC1"	79571	"ENSG00000179562"
+"242879_x_at"	"AKT3"	10000	"ENSG00000117020"
+"242484_at"	"TTC9B"	148014	"ENSG00000174521"
+"241730_at"	"MYNN"	55892	"ENSG00000085274"
+"243339_at"	"CNTNAP5"	129684	"ENSG00000155052"
+"241802_x_at"	"GRM2"	2912	"ENSG00000164082"
+"91920_at"	"BCAN"	63827	"ENSG00000132692"
+"242719_at"	"RYBP"	23429	"ENSG00000163602"
+"240557_at"	"TSC22D2"	9819	"ENSG00000196428"
+"242641_at"	"COL6A6"	131873	"ENSG00000206384"
+"240918_at"	""	NA	"ENSG00000253392"
+"242843_at"	"BCAN-AS2"	NA	"ENSG00000229953"
+"240664_at"	""	NA	"ENSG00000233191"
+"240875_at"	"CTC1"	80169	"ENSG00000178971"
+"242358_at"	"RASSF8-AS1"	NA	"ENSG00000246695"
+"244741_s_at"	"ZNF667-AS1"	100128252	"ENSG00000166770"
+"244740_at"	"ZNF667-AS1"	100128252	"ENSG00000166770"
+"242663_at"	"LINC00662"	148189	"ENSG00000261824"
+"242847_at"	"EMSY"	56946	"ENSG00000158636"
+"243961_at"	"POU2F2-AS1"	NA	"ENSG00000254887"
+"242852_at"	"KIDINS220"	57498	"ENSG00000134313"
+"242032_at"	"KIDINS220"	57498	"ENSG00000134313"
+"244687_at"	"DBT"	1629	"ENSG00000137992"
+"242201_at"	""	NA	"ENSG00000291178"
+"242818_x_at"	"YIPF4"	84272	"ENSG00000119820"
+"242620_at"	"NDUFA9"	4704	"ENSG00000139180"
+"55583_at"	"DOCK6"	57572	"ENSG00000130158"
+"242200_at"	"ADAMTSL5"	339366	"ENSG00000185761"
+"244095_at"	"ANKFN1"	162282	"ENSG00000153930"
+"243752_s_at"	"CYTH3"	9265	"ENSG00000008256"
+"244330_at"	"CASR"	846	"ENSG00000036828"
+"242744_s_at"	"CASR"	846	"ENSG00000036828"
+"240886_at"	"CASR"	846	"ENSG00000036828"
+"242745_at"	"CASR"	846	"ENSG00000036828"
+"243747_at"	"ZNF599"	148103	"ENSG00000153896"
+"242919_at"	"ZNF253"	56242	"ENSG00000256771"
+"243644_at"	"PUS7L"	83448	"ENSG00000129317"
+"241687_at"	"WDR12"	55759	"ENSG00000138442"
+"241277_x_at"	"ZNF837"	116412	"ENSG00000152475"
+"243015_at"	"CYP3A5"	1577	"ENSG00000106258"
+"243731_at"	""	NA	"ENSG00000273901"
+"240551_at"	"ZBTB45"	84878	"ENSG00000119574"
+"243753_at"	"ERICH3"	127254	"ENSG00000178965"
+"244145_at"	"FYCO1"	79443	"ENSG00000163820"
+"37028_at"	"PPP1R15A"	23645	"ENSG00000087074"
+"36907_at"	"MVK"	4598	"ENSG00000110921"
+"243519_at"	"UBE3C"	9690	"ENSG00000009335"
+"242540_at"	"DNHD1"	144132	"ENSG00000179532"
+"244322_at"	"LINC-PINT"	378805	"ENSG00000231721"
+"243803_at"	"C11orf97"	643037	"ENSG00000257057"
+"243670_at"	""	NA	"ENSG00000189229"
+"240792_at"	""	NA	"ENSG00000255965"
+"244529_at"	""	NA	"ENSG00000255965"
+"242788_at"	"KDM4D"	55693	"ENSG00000186280"
+"242906_at"	"SESN3"	143686	"ENSG00000149212"
+"242899_at"	"SESN3"	143686	"ENSG00000149212"
+"242715_at"	"ZNF536"	9745	"ENSG00000198597"
+"242124_at"	"CHST1"	8534	"ENSG00000175264"
+"241827_at"	"ZNF615"	284370	"ENSG00000197619"
+"242070_at"	""	728485	"ENSG00000267260"
+"242016_at"	"ZNF568"	374900	"ENSG00000198453"
+"240898_at"	"SPAG16"	79582	"ENSG00000144451"
+"242954_at"	""	101059948	"ENSG00000268655"
+"244881_at"	"LMLN"	89782	"ENSG00000185621"
+"240678_at"	"NRXN1"	9378	"ENSG00000179915"
+"57703_at"	"SENP5"	205564	"ENSG00000119231"
+"244020_at"	""	124902860	"ENSG00000278356"
+"241364_at"	"MACO1"	55219	"ENSG00000204178"
+"41037_at"	"TEAD4"	7004	"ENSG00000197905"
+"32699_s_at"	"PVR"	5817	"ENSG00000073008"
+"52164_at"	"C11orf24"	53838	"ENSG00000171067"
+"240509_s_at"	"GREM2"	64388	"ENSG00000180875"
+"243854_at"	"APLP2"	334	"ENSG00000084234"
+"243205_at"	""	NA	"ENSG00000285128"
+"40093_at"	"BCAM"	4059	"ENSG00000187244"
+"242456_at"	"MRE11"	4361	"ENSG00000020922"
+"242362_at"	"CUL3"	8452	"ENSG00000036257"
+"241485_at"	"MYT1L"	23040	"ENSG00000186487"
+"242417_at"	"PLEKHA7"	144100	"ENSG00000166689"
+"91826_at"	"EPS8L1"	54869	"ENSG00000131037"
+"243905_at"	"LINC00944"	NA	"ENSG00000256128"
+"244429_at"	"BTG1-DT"	NA	"ENSG00000245904"
+"244798_at"	"PARP11-AS1"	105369609	"ENSG00000256862"
+"243285_at"	"TNS2-AS1"	283335	"ENSG00000257337"
+"244413_at"	"CLECL1P"	160365	"ENSG00000184293"
+"242267_x_at"	""	105369595	"ENSG00000256020"
+"241791_at"	"TTN"	7273	"ENSG00000155657"
+"244839_at"	"TTN"	7273	"ENSG00000155657"
+"40465_at"	"DDX23"	9416	"ENSG00000174243"
+"241889_at"	"NFKBID"	84807	"ENSG00000167604"
+"243326_at"	""	NA	"ENSG00000284669"
+"243492_at"	"THEM4"	117145	"ENSG00000159445"
+"241336_at"	"IFT122"	55764	"ENSG00000163913"
+"242253_at"	""	100506012	"ENSG00000291145"
+"240986_at"	"MADD-AS1"	101928943	"ENSG00000256746"
+"242612_at"	"NPEPPS"	9520	"ENSG00000141279"
+"243475_at"	"CBL"	867	"ENSG00000110395"
+"243645_at"	"NFASC"	23114	"ENSG00000163531"
+"241499_at"	"ZNF621"	285268	"ENSG00000172888"
+"242646_at"	"KMT5B"	51111	"ENSG00000110066"
+"32099_at"	"SAFB2"	9667	"ENSG00000130254"
+"244374_at"	"TINCR"	257000	"ENSG00000223573"
+"244428_at"	"DNMT3A"	1788	"ENSG00000119772"
+"244708_at"	"SCN8A"	6334	"ENSG00000196876"
+"244640_at"	"ZNF850"	342892	"ENSG00000267041"
+"242786_at"	"SBF2-AS1"	283104	"ENSG00000246273"
+"244398_x_at"	"ZNF684"	127396	"ENSG00000117010"
+"243208_x_at"	"ACTL9"	284382	"ENSG00000181786"
+"243188_at"	"ZNF283"	284349	"ENSG00000167637"
+"244361_at"	"DPF2"	5977	"ENSG00000133884"
+"242915_at"	"ZNF682"	91120	"ENSG00000197124"
+"244168_s_at"	"ULK4"	54986	"ENSG00000168038"
+"241876_at"	""	NA	"ENSG00000240710"
+"242808_at"	"RPL31P46"	NA	"ENSG00000241170"
+"243570_at"	"SPCS2"	9789	"ENSG00000118363"
+"242346_x_at"	""	NA	"ENSG00000280079"
+"241964_at"	"ZNF865"	100507290	"ENSG00000261221"
+"244244_at"	"CD300LG"	146894	"ENSG00000161649"
+"240627_x_at"	"MSANTD4"	84437	"ENSG00000170903"
+"244002_at"	"RNU4-78P"	NA	"ENSG00000222872"
+"241881_at"	"OR2W3"	343171	"ENSG00000238243"
+"242340_at"	""	NA	"ENSG00000257894"
+"241360_at"	"CCDC15"	80071	"ENSG00000149548"
+"240573_at"	""	NA	"ENSG00000256594"
+"241437_s_at"	""	NA	"ENSG00000291171"
+"244136_at"	"MIR670HG"	100507261	"ENSG00000235661"
+"41657_at"	"STK11"	6794	"ENSG00000118046"
+"40837_at"	"TLE2"	7089	"ENSG00000065717"
+"243263_at"	"LINC00482"	NA	"ENSG00000185168"
+"244765_at"	"POC1B-AS1"	NA	"ENSG00000270344"
+"242685_at"	"NEPRO"	25871	"ENSG00000163608"
+"244807_at"	"SNHG29"	125144	"ENSG00000175061"
+"244584_at"	"KIAA1549L"	25758	"ENSG00000110427"
+"242228_at"	""	NA	"ENSG00000274964"
+"243370_at"	"CAPRIN1"	4076	"ENSG00000135387"
+"241190_at"	"CNTN1"	1272	"ENSG00000018236"
+"240652_at"	"ZEB2"	9839	"ENSG00000169554"
+"243412_at"	""	NA	"ENSG00000268845"
+"32091_at"	"SLC25A44"	9673	"ENSG00000160785"
+"241975_at"	"MIR100HG"	399959	"ENSG00000255248"
+"241541_at"	"MIB2"	142678	"ENSG00000197530"
+"35626_at"	"SGSH"	6448	"ENSG00000181523"
+"242014_at"	"RAB3GAP1"	22930	"ENSG00000115839"
+"243794_at"	"LINC02419"	NA	"ENSG00000256906"
+"243351_at"	"FZD10-AS1"	440119	"ENSG00000250208"
+"240862_at"	"RASGRP4"	115727	"ENSG00000171777"
+"243236_at"	"TRNT1"	51095	"ENSG00000072756"
+"241863_x_at"	"TTC14"	151613	"ENSG00000163728"
+"244745_at"	"RERG"	85004	"ENSG00000134533"
+"242710_at"	"CLIP4"	79745	"ENSG00000115295"
+"242283_at"	"DNAH14"	127602	"ENSG00000185842"
+"242691_at"	""	NA	"ENSG00000268205"
+"240752_at"	""	NA	"ENSG00000277182"
+"240818_at"	"OVCH1-AS1"	NA	"ENSG00000257599"
+"241858_at"	"FPGT"	8790	"ENSG00000254685"
+"244506_at"	"TMTC1"	83857	"ENSG00000133687"
+"243621_at"	"SPACA3"	124912	"ENSG00000141316"
+"244575_at"	"POLA2"	23649	"ENSG00000014138"
+"243732_at"	""	105371734	"ENSG00000265222"
+"59375_at"	"MYO15B"	80022	"ENSG00000266714"
+"65472_at"	"C2orf68"	388969	"ENSG00000168887"
+"37004_at"	"SFTPB"	6439	"ENSG00000168878"
+"37145_at"	"GNLY"	10578	"ENSG00000115523"
+"243231_at"	"SLC38A11"	151258	"ENSG00000169507"
+"242543_at"	"SH2D6"	284948	"ENSG00000152292"
+"244302_at"	"EIF4E2"	9470	"ENSG00000135930"
+"243066_at"	"NPL"	80896	"ENSG00000135838"
+"243811_at"	"HOXB1"	3211	"ENSG00000120094"
+"244512_at"	"HOXB-AS1"	100874362	"ENSG00000230148"
+"243441_at"	"LINC03057"	NA	"ENSG00000272763"
+"244452_at"	"ERLEC1"	27248	"ENSG00000068912"
+"244526_at"	"RASGRP3"	25780	"ENSG00000152689"
+"52651_at"	"COL8A2"	1296	"ENSG00000171812"
+"241832_at"	"FAM98A"	25940	"ENSG00000119812"
+"243039_at"	"COBLL1"	22837	"ENSG00000082438"
+"35265_at"	"FXR2"	9513	"ENSG00000129245"
+"241365_at"	"SATB1"	6304	"ENSG00000182568"
+"244041_at"	""	NA	"ENSG00000243155"
+"242263_at"	"TMED5"	50999	"ENSG00000117500"
+"244013_at"	"SVBP"	374969	"ENSG00000177868"
+"241235_at"	""	NA	"ENSG00000223711"
+"244542_at"	"BCDIN3D-AS1"	100286844	"ENSG00000258057"
+"244543_s_at"	"BCDIN3D-AS1"	100286844	"ENSG00000258057"
+"91580_at"	"LRTM1"	57408	"ENSG00000144771"
+"243334_at"	"CACNA1D"	776	"ENSG00000157388"
+"38398_at"	"MADD"	8567	"ENSG00000110514"
+"244261_at"	"IFNLR1"	163702	"ENSG00000185436"
+"243908_at"	""	NA	"ENSG00000289463"
+"37953_s_at"	"ASIC1"	41	"ENSG00000110881"
+"240979_at"	"YWHAEP7"	NA	"ENSG00000276715"
+"244453_at"	"ANKRD53"	79998	"ENSG00000144031"
+"40665_at"	"FMO3"	2328	"ENSG00000007933"
+"243837_x_at"	""	124906209	"ENSG00000235978"
+"241563_at"	""	NA	"ENSG00000261572"
+"242872_at"	"CIT"	11113	"ENSG00000122966"
+"243399_at"	""	NA	"ENSG00000289082"
+"241394_at"	"SCAT1"	101928710	"ENSG00000267123"
+"244620_at"	"SLC8A1-AS1"	100128590	"ENSG00000227028"
+"243954_at"	"LINC00877"	285286	"ENSG00000241163"
+"243687_at"	"LINC00881"	NA	"ENSG00000241135"
+"243629_x_at"	"MELTF-AS1"	100507057	"ENSG00000228109"
+"242087_x_at"	"MELTF-AS1"	100507057	"ENSG00000228109"
+"241743_at"	"ZBTB47-AS1"	NA	"ENSG00000230084"
+"242988_at"	"DCST2"	127579	"ENSG00000163354"
+"243991_at"	""	NA	"ENSG00000273455"
+"64432_at"	"MAPKAPK5-AS1"	51275	"ENSG00000234608"
+"243611_at"	"MICAL2"	9645	"ENSG00000133816"
+"241347_at"	"RNF213"	57674	"ENSG00000173821"
+"242523_at"	"LINC00938"	NA	"ENSG00000273015"
+"244101_at"	"TPM4P2"	NA	"ENSG00000271943"
+"242630_at"	"RPL39P16"	NA	"ENSG00000227470"
+"241498_at"	"HARBI1"	283254	"ENSG00000180423"
+"241419_at"	"ARHGAP1"	392	"ENSG00000175220"
+"241053_at"	""	NA	"ENSG00000226756"
+"242789_at"	"PDE1A"	5136	"ENSG00000115252"
+"242720_at"	"ITIH4"	3700	"ENSG00000055955"
+"243796_at"	"HEXIM2-AS1"	NA	"ENSG00000224505"
+"242458_at"	"RALGPS2"	55103	"ENSG00000116191"
+"244563_at"	"QSER1"	79832	"ENSG00000060749"
+"38710_at"	"OTUB1"	55611	"ENSG00000167770"
+"243529_at"	"MARS2"	92935	"ENSG00000247626"
+"240492_at"	"TEX41"	401014	"ENSG00000226674"
+"242513_x_at"	"USF3"	205717	"ENSG00000176542"
+"242508_at"	"USF3"	205717	"ENSG00000176542"
+"244214_at"	"DPP3-DT"	101928069	"ENSG00000255517"
+"51146_at"	"PIGV"	55650	"ENSG00000060642"
+"33322_i_at"	"SFN"	2810	"ENSG00000175793"
+"33323_r_at"	"SFN"	2810	"ENSG00000175793"
+"242433_at"	"ZBTB11"	27107	"ENSG00000066422"
+"240628_at"	"CADM1-AS1"	105369507	"ENSG00000256315"
+"244581_at"	"ZBTB20"	26137	"ENSG00000181722"
+"242510_at"	"DHDDS-AS1"	NA	"ENSG00000225891"
+"240922_at"	"CEP112"	201134	"ENSG00000154240"
+"244128_x_at"	"GLIS1"	148979	"ENSG00000174332"
+"240908_at"	""	NA	"ENSG00000289929"
+"244523_at"	"MMD"	23531	"ENSG00000108960"
+"242584_at"	"FAM161A"	84140	"ENSG00000170264"
+"244301_at"	"KMT2A"	4297	"ENSG00000118058"
+"242762_s_at"	"FAM171B"	165215	"ENSG00000144369"
+"34206_at"	"ARAP1"	116985	"ENSG00000186635"
+"243738_at"	"NMNAT3"	349565	"ENSG00000163864"
+"243476_at"	"NF1"	4763	"ENSG00000196712"
+"240931_s_at"	""	NA	"ENSG00000290762"
+"242235_x_at"	"NRDC"	4898	"ENSG00000078618"
+"242990_at"	"PPFIA1"	8500	"ENSG00000131626"
+"38149_at"	"ARHGAP25"	9938	"ENSG00000163219"
+"243628_at"	"COPS7B"	64708	"ENSG00000144524"
+"243011_at"	"NXPE3"	91775	"ENSG00000144815"
+"65493_at"	"HEATR6"	63897	"ENSG00000068097"
+"243_g_at"	"MAP4"	4134	"ENSG00000047849"
+"33850_at"	"MAP4"	4134	"ENSG00000047849"
+"244871_s_at"	"USP32"	84669	"ENSG00000170832"
+"244727_at"	"KCNQ1OT1"	10984	"ENSG00000269821"
+"243428_at"	"KCNQ1OT1"	10984	"ENSG00000269821"
+"243435_at"	"KCNQ1OT1"	10984	"ENSG00000269821"
+"242787_at"	"INCENP"	3619	"ENSG00000149503"
+"40560_at"	"TBX2"	6909	"ENSG00000121068"
+"240570_at"	"PATJ"	10207	"ENSG00000132849"
+"43934_at"	"GPR137"	56834	"ENSG00000173264"
+"241198_s_at"	"CFAP300"	85016	"ENSG00000137691"
+"241836_x_at"	"CEP97"	79598	"ENSG00000182504"
+"244571_s_at"	""	NA	"ENSG00000270179"
+"56256_at"	"SIDT2"	51092	"ENSG00000149577"
+"240889_at"	"CDRT15L2"	256223	"ENSG00000214819"
+"244735_at"	"CCDC54"	84692	"ENSG00000138483"
+"57540_at"	"RBKS"	64080	"ENSG00000171174"
+"241824_at"	""	NA	"ENSG00000270640"
+"244824_at"	"LINC01563"	101060544	"ENSG00000236819"
+"AFFX-HUMISGF3A/M97935_MA_at"	"STAT1"	6772	"ENSG00000115415"
+"AFFX-HUMISGF3A/M97935_5_at"	"STAT1"	6772	"ENSG00000115415"
+"AFFX-HUMISGF3A/M97935_MB_at"	"STAT1"	6772	"ENSG00000115415"
+"AFFX-HUMISGF3A/M97935_3_at"	"STAT1"	6772	"ENSG00000115415"
+"241049_at"	"GRM7"	2917	"ENSG00000196277"
+"243209_at"	"KCNQ4"	9132	"ENSG00000117013"
+"38487_at"	"STAB1"	23166	"ENSG00000010327"
+"244032_at"	"NHEJ1"	79840	"ENSG00000187736"
+"242561_at"	"IPO9"	55705	"ENSG00000198700"
+"244703_x_at"	"IPO9"	55705	"ENSG00000198700"
+"242986_at"	"NAV1"	89796	"ENSG00000134369"
+"244611_at"	"MED13"	9969	"ENSG00000108510"
+"242413_at"	"ITSN2"	50618	"ENSG00000198399"
+"242030_at"	"SLC4A1AP"	22950	"ENSG00000163798"
+"240781_x_at"	"DCUN1D1"	54165	"ENSG00000043093"
+"243396_at"	"DCUN1D1"	54165	"ENSG00000043093"
+"242220_at"	"SPTBN1"	6711	"ENSG00000115306"
+"242785_at"	"EML6"	400954	"ENSG00000214595"
+"240806_at"	"RPL15"	6138	"ENSG00000174748"
+"37793_r_at"	"RAD51D"	5892	"ENSG00000185379"
+"241896_at"	"MACF1"	23499	"ENSG00000127603"
+"242243_at"	"TMF1"	7110	"ENSG00000144747"
+"244319_at"	"ITGB1BP1"	9270	"ENSG00000119185"
+"243346_at"	"LMOD3"	56203	"ENSG00000163380"
+"243864_at"	"CCDC80"	151887	"ENSG00000091986"
+"244215_at"	"BTD"	686	"ENSG00000169814"
+"243921_at"	""	NA	"ENSG00000271855"
+"32088_at"	"BLZF1"	8548	"ENSG00000117475"
+"243100_at"	"NT5C1B"	93034	"ENSG00000185013"
+"244159_at"	""	122319436	"ENSG00000288658"
+"242049_s_at"	"NBAS"	51594	"ENSG00000151779"
+"240579_at"	"NBAS"	51594	"ENSG00000151779"
+"241879_at"	"LPP"	4026	"ENSG00000145012"
+"242835_s_at"	"MAP4K3-DT"	NA	"ENSG00000231312"
+"242313_at"	"MAP4K3-DT"	NA	"ENSG00000231312"
+"241234_at"	"THORLNC"	100506797	"ENSG00000226856"
+"243699_at"	""	NA	"ENSG00000225889"
+"244797_at"	"LINC01159"	102682016	"ENSG00000229743"
+"244174_at"	"ERICH2-DT"	101926913	"ENSG00000234350"
+"243355_at"	"DARS1-AS1"	NA	"ENSG00000231890"
+"244448_at"	""	NA	"ENSG00000226622"
+"243549_at"	"SILC1"	NA	"ENSG00000232044"
+"241535_at"	"SNTG2-AS1"	NA	"ENSG00000235688"
+"244728_at"	"ODC1-DT"	NA	"ENSG00000257135"
+"240891_at"	"FSTL1"	11167	"ENSG00000163430"
+"244438_at"	"MYCNUT"	103752554	"ENSG00000223850"
+"241282_at"	""	NA	"ENSG00000226764"
+"242665_at"	"FMNL2"	114793	"ENSG00000157827"
+"244377_at"	"SLC1A4"	6509	"ENSG00000115902"
+"244690_at"	""	NA	"ENSG00000243960"
+"243501_at"	"ATP5PB"	515	"ENSG00000116459"
+"243836_at"	"UNC80"	285175	"ENSG00000144406"
+"242896_at"	"SNAI1P1"	NA	"ENSG00000237194"
+"243052_at"	"MOB3C"	148932	"ENSG00000142961"
+"244675_at"	"RGS8"	85397	"ENSG00000135824"
+"36499_at"	"CELSR2"	1952	"ENSG00000143126"
+"241504_at"	"LINC02580"	NA	"ENSG00000230587"
+"241075_at"	"RIMKLA"	284716	"ENSG00000177181"
+"244352_at"	"CD84"	8832	"ENSG00000066294"
+"241752_at"	"SLC8A1"	6546	"ENSG00000183023"
+"241379_at"	"APLF"	200558	"ENSG00000169621"
+"241526_at"	"APLF"	200558	"ENSG00000169621"
+"243244_at"	"CACNB4"	785	"ENSG00000182389"
+"242569_at"	"STAM2"	10254	"ENSG00000115145"
+"243036_at"	"CCDC30"	728621	"ENSG00000186409"
+"244182_at"	""	101929536	"ENSG00000261798"
+"244419_at"	"FRZB"	2487	"ENSG00000162998"
+"244796_at"	"GLS"	2744	"ENSG00000115419"
+"243087_at"	"DNAI3"	126820	"ENSG00000162643"
+"242308_at"	"MCOLN3"	55283	"ENSG00000055732"
+"242825_at"	"PLPPR5"	163404	"ENSG00000117598"
+"244709_at"	"AMER3"	205147	"ENSG00000178171"
+"243433_at"	""	NA	"ENSG00000289121"
+"241607_at"	"CRYZL2P"	730102	"ENSG00000242193"
+"244732_at"	""	NA	"ENSG00000289294"
+"244744_at"	"LINC01833"	107985879	"ENSG00000259439"
+"243440_at"	"SIX3-AS1"	100506108	"ENSG00000236502"
+"242054_s_at"	"SIX3"	6496	"ENSG00000138083"
+"241859_at"	"PLCL1"	5334	"ENSG00000115896"
+"240821_at"	"PLCL1"	5334	"ENSG00000115896"
+"242013_at"	"BCL2L15"	440603	"ENSG00000188761"
+"241918_at"	"ANO7"	50636	"ENSG00000146205"
+"242459_at"	""	NA	"ENSG00000275678"
+"241612_at"	"FOXD3"	27022	"ENSG00000187140"
+"242284_at"	"LINC00466"	NA	"ENSG00000224209"
+"243093_at"	"C2orf49"	79074	"ENSG00000135974"
+"241372_at"	"ZC3H6"	376940	"ENSG00000188177"
+"244865_at"	"HAX1"	10456	"ENSG00000143575"
+"241389_at"	"CHRNB2"	1141	"ENSG00000160716"
+"244040_at"	"KCNN3"	3782	"ENSG00000143603"
+"240696_at"	"TMEM275"	105378696	"ENSG00000282881"
+"243292_at"	"C1QTNF12"	388581	"ENSG00000184163"
+"52078_at"	"TMEM222"	84065	"ENSG00000186501"
+"243976_at"	"RNF115"	27246	"ENSG00000265491"
+"244313_at"	"CR1"	1378	"ENSG00000203710"
+"241091_at"	"AGO3"	192669	"ENSG00000126070"
+"244504_x_at"	"ARF1"	375	"ENSG00000143761"
+"40829_at"	"WDTC1"	23038	"ENSG00000142784"
+"244422_at"	"S1PR1-DT"	NA	"ENSG00000225938"
+"244718_at"	""	NA	"ENSG00000290045"
+"242038_at"	"LRRC8C-DT"	400761	"ENSG00000231999"
+"243297_at"	""	NA	"ENSG00000290096"
+"240681_at"	""	NA	"ENSG00000230623"
+"32625_at"	"NPR1"	4881	"ENSG00000169418"
+"244049_at"	"JTB-DT"	NA	"ENSG00000272654"
+"244618_at"	""	NA	"ENSG00000290117"
+"243150_at"	"LINC00115"	NA	"ENSG00000225880"
+"240819_at"	"KIAA1614"	57710	"ENSG00000135835"
+"243463_s_at"	"RIT1"	6016	"ENSG00000143622"
+"240700_at"	"TOR1AIP2"	163590	"ENSG00000169905"
+"37022_at"	"PRELP"	5549	"ENSG00000188783"
+"243558_at"	"HNRNPR"	10236	"ENSG00000125944"
+"37012_at"	"CAPZB"	832	"ENSG00000077549"
+"244472_at"	"TRABD2B"	388630	"ENSG00000269113"
+"241707_at"	"TRABD2B"	388630	"ENSG00000269113"
+"242086_at"	"SPATA6"	54558	"ENSG00000132122"
+"37892_at"	"COL11A1"	1301	"ENSG00000060718"
+"242882_at"	"RNF207"	388591	"ENSG00000158286"
+"64942_at"	"GPR153"	387509	"ENSG00000158292"
+"244489_at"	"THBS3-AS1"	105371450	"ENSG00000231064"
+"242327_x_at"	"ESPN"	83715	"ENSG00000187017"
+"242410_s_at"	"CACNA1E"	777	"ENSG00000198216"
+"243707_at"	"PRKACB-DT"	NA	"ENSG00000271576"
+"241290_at"	""	NA	"ENSG00000225605"
+"39650_s_at"	"PCNX2"	80003	"ENSG00000135749"
+"241450_at"	"RSPO1"	284654	"ENSG00000169218"
+"243717_at"	"EPHA10"	284656	"ENSG00000183317"
+"242381_x_at"	""	NA	"ENSG00000227994"
+"243623_at"	"SLC1A7"	6512	"ENSG00000162383"
+"240692_at"	""	NA	"ENSG00000223920"
+"241853_at"	"RTCA-AS1"	NA	"ENSG00000224616"
+"241456_at"	"FAM78B"	149297	"ENSG00000188859"
+"241544_at"	"FAM78B"	149297	"ENSG00000188859"
+"243873_at"	"TMCC2-AS1"	NA	"ENSG00000225063"
+"244080_at"	""	NA	"ENSG00000260805"
+"244555_at"	""	NA	"ENSG00000288999"
+"241753_at"	""	105373170	"ENSG00000286071"
+"244225_x_at"	"LMNA"	4000	"ENSG00000160789"
+"243042_at"	"MIGA1"	374986	"ENSG00000180488"
+"242947_at"	""	NA	"ENSG00000272510"
-- 
GitLab